diff --git a/.flake8 b/.flake8
new file mode 100644
index 00000000..3dd31e6e
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,4 @@
+[flake8]
+# E203: whitespace before ':'
+# E501: line too long
+extend-ignore = E203,E501
diff --git a/.gitattributes b/.gitattributes
new file mode 100644
index 00000000..47d43017
--- /dev/null
+++ b/.gitattributes
@@ -0,0 +1,13 @@
+# Auto detect text files and perform LF normalization
+* text=auto
+
+# Explicitly declare text files
+*.py text
+
+# Enforce platform-specific encodings
+*.bat text eol=crlf
+*.sh text eol=lf
+*.sha1 text eol=lf
+
+# decomp-toolkit writes files with LF
+config/**/*.txt text eol=lf
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 00000000..32d7f1bc
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,64 @@
+name: Build
+
+on:
+ push:
+ pull_request:
+
+jobs:
+ build:
+ container: ghcr.io/acreteam/ac-build:main
+
+ runs-on: ubuntu-latest
+ strategy:
+ fail-fast: false
+ matrix:
+ version: [GAFE01_00]
+
+ steps:
+ # Checkout the repository
+ - name: Checkout
+ uses: actions/checkout@v4
+ with:
+ submodules: recursive
+
+ # Set Git config
+ - name: Git config
+ run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
+
+ # Copy the original files to the workspace
+ - name: Prepare
+ run: cp -R /orig .
+
+ # Build the project
+ - name: Build
+ run: |
+ python configure.py --map --version ${{ matrix.version }} \
+ --binutils /binutils --compilers /compilers
+ ninja all_source build/${{ matrix.version }}/progress.json \
+ build/${{ matrix.version }}/report.json
+
+ # Upload progress if we're on the main branch
+ - name: Upload progress
+ if: github.ref == 'refs/heads/main'
+ continue-on-error: true
+ env:
+ PROGRESS_SLUG: animalcrossing
+ PROGRESS_API_KEY: ${{ secrets.PROGRESS_API_KEY }}
+ run: |
+ python tools/upload_progress.py -b https://progress.decomp.club/ \
+ -p $PROGRESS_SLUG -v ${{ matrix.version }} \
+ build/${{ matrix.version }}/progress.json
+
+ # Upload map files
+ - name: Upload map
+ uses: actions/upload-artifact@v4
+ with:
+ name: ${{ matrix.version }}_maps
+ path: build/${{ matrix.version }}/**/*.MAP
+
+ # Upload progress report
+ - name: Upload report
+ uses: actions/upload-artifact@v4
+ with:
+ name: ${{ matrix.version }}_report
+ path: build/${{ matrix.version }}/report.json
diff --git a/.gitignore b/.gitignore
index 983c8cb2..b827eb4a 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,30 +1,43 @@
-__pycache__/
-.vscode/
-build/
-expected/
-out/
-dump/*
-!dump/foresta.rel.sha1
-!dump/static.dol.sha1
+# IDE folders
+.idea/
+.vs/
+
+# Caches
+__pycache__
+.mypy_cache
+.cache/
+
+# Original files
+orig/*/*
+!orig/*/.gitkeep
*.dol
*.rel
-*.exe
-*.dll
-*.arc
-*.ctx
-ctx.*
-!tools/orthrus.exe
-!tools/sjiswrap.exe
+*.elf
+*.o
+*.map
+*.MAP
+
+# Build files
+build/
+.ninja_*
build.ninja
-ac-decomp.code-workspace
-assets/
-tools/cli.ini
-tools/cli.py
-src/data/bin1
-src/data/bin2
+
+# decompctx output
+ctx.*
+*.ctx
+
+# Generated configs
objdiff.json
-src/data/item/player_room_floor
-src/data/item/player_room_wall
-tools/1.2.5n/
-tools/1.3.2r/
-tools/1.3.2/
+compile_commands.json
+
+# Miscellaneous
+/*.txt
+!requirements.txt
+*.exe
+
+# For saving work files into (like IDB)
+temp/
+
+# Ignore the N64 SDK headers since we download them
+include/PR/
+include/gcc/
\ No newline at end of file
diff --git a/.gitmodules b/.gitmodules
deleted file mode 100644
index 0567f0e0..00000000
--- a/.gitmodules
+++ /dev/null
@@ -1,3 +0,0 @@
-[submodule "tools/ppcdis"]
- path = tools/ppcdis
- url = https://github.com/SeekyCt/ppcdis
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
new file mode 100644
index 00000000..c20797ff
--- /dev/null
+++ b/.vscode/extensions.json
@@ -0,0 +1,12 @@
+{
+ "recommendations": [
+ "llvm-vs-code-extensions.vscode-clangd",
+ "ms-python.black-formatter",
+ "ms-python.flake8",
+ ],
+ "unwantedRecommendations": [
+ "ms-vscode.cmake-tools",
+ "ms-vscode.cpptools-extension-pack",
+ "ms-vscode.cpptools",
+ ]
+}
diff --git a/.vscode/settings.json b/.vscode/settings.json
new file mode 100644
index 00000000..0c1848a9
--- /dev/null
+++ b/.vscode/settings.json
@@ -0,0 +1,22 @@
+{
+ "[c]": {
+ "files.encoding": "utf8",
+ "editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
+ },
+ "[cpp]": {
+ "files.encoding": "utf8",
+ "editor.defaultFormatter": "llvm-vs-code-extensions.vscode-clangd"
+ },
+ "[python]": {
+ "editor.defaultFormatter": "ms-python.black-formatter"
+ },
+ "editor.tabSize": 2,
+ "files.insertFinalNewline": true,
+ "files.trimFinalNewlines": true,
+ "files.associations": {
+ "*.inc": "c",
+ ".clangd": "yaml"
+ },
+ // Disable C/C++ IntelliSense, use clangd instead
+ "C_Cpp.intelliSenseEngine": "disabled",
+}
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
new file mode 100644
index 00000000..6dc12130
--- /dev/null
+++ b/.vscode/tasks.json
@@ -0,0 +1,16 @@
+{
+ // Use Ctrl+Shift+B to run build tasks.
+ // Or "Run Build Task" in the Command Palette.
+ "version": "2.0.0",
+ "tasks": [
+ {
+ "label": "ninja",
+ "type": "shell",
+ "command": "ninja",
+ "group": {
+ "kind": "build",
+ "isDefault": true
+ }
+ },
+ ]
+}
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644
index f9f0411d..00000000
--- a/Dockerfile
+++ /dev/null
@@ -1,56 +0,0 @@
-FROM ubuntu:24.04 as build
-
-# --- basic package installation ---
-RUN apt-get update && \
- apt-get upgrade -y && \
- apt-get install -y \
- cmake \
- git \
- ninja-build \
- python3 \
- python3-pip \
- wget
-
-# --- python package installation ---
-COPY ./requirements.txt /temp/requirements.txt
-COPY ./tools/ppcdis/requirements.txt /temp/tools/ppcdis/requirements.txt
-# why bother setting up a venv for this, right? ¯\_(ツ)_/¯
-RUN pip install --break-system-packages -r /temp/requirements.txt
-RUN rm -rf /temp
-
-# --- wibo installation ---
-RUN wget https://github.com/decompals/wibo/releases/latest/download/wibo
-RUN install ./wibo /usr/bin
-RUN rm wibo
-
-# --- devkitpro installation ---
-RUN wget https://apt.devkitpro.org/install-devkitpro-pacman
-RUN chmod +x install-devkitpro-pacman
-# assume yes for in-script apt commands
-RUN sed -i 's/^apt-get.*$/& -y/g' install-devkitpro-pacman
-RUN ./install-devkitpro-pacman
-RUN rm install-devkitpro-pacman
-# workaround for a dumb bug that happens with Windows Docker. if we don't do this, devkitPPC installation fails on Windows.
-RUN if [ ! -e /etc/mtab ]; then ln -s /proc/self/mounts /etc/mtab; fi
-RUN dkp-pacman -S devkitPPC --noconfirm
-# dear fucking god this is hacky but it works (needed otherwise next step fails)
-RUN rm /usr/bin/cpp /usr/bin/g++ /lib/cpp
-# set devkitPPC executables as the default ones
-RUN for file in $(find "/opt/devkitpro/devkitPPC/bin" -type f -name 'powerpc-eabi*'); do new_file=$(basename "$file" | sed 's/powerpc-eabi-//g'); update-alternatives --install "/usr/bin/$new_file" "$new_file" "$file" 0; done
-
-# --- stage ultralib headers ---
-RUN git clone https://github.com/decompals/ultralib.git /N64_SDK/ultra/usr/
-# dockerfile does not seem to support extglob, so this monstrous command works around it to delete all of ultralib except the headers we need.
-RUN cd /N64_SDK/ultra/usr/ && find -type f -maxdepth 1 -delete && find . -not -name 'include' -type d -maxdepth 1 -exec rm -r "{}" \;
-# modify Gpopmtx's param member to be unsigned int
-RUN sed -i 's/unsigned char param:8;/unsigned int param:8;/g' /N64_SDK/ultra/usr/include/PR/gbi.h
-
-# --- set up work directory and env vars ---
-RUN mkdir /ac-decomp
-WORKDIR /ac-decomp
-ENV PATH="/ac-decomp/tools:${PATH}"
-ENV N64_SDK="/N64_SDK"
-ENV DEVKITPPC="/opt/devkitpro/devkitPPC"
-
-CMD echo 'Usage: docker run --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py && python3 build.py\n'\
- 'See https://github.com/Prakxo/ac-decomp/blob/master/README.MD for more information'
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 00000000..670154e3
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,116 @@
+CC0 1.0 Universal
+
+Statement of Purpose
+
+The laws of most jurisdictions throughout the world automatically confer
+exclusive Copyright and Related Rights (defined below) upon the creator and
+subsequent owner(s) (each and all, an "owner") of an original work of
+authorship and/or a database (each, a "Work").
+
+Certain owners wish to permanently relinquish those rights to a Work for the
+purpose of contributing to a commons of creative, cultural and scientific
+works ("Commons") that the public can reliably and without fear of later
+claims of infringement build upon, modify, incorporate in other works, reuse
+and redistribute as freely as possible in any form whatsoever and for any
+purposes, including without limitation commercial purposes. These owners may
+contribute to the Commons to promote the ideal of a free culture and the
+further production of creative, cultural and scientific works, or to gain
+reputation or greater distribution for their Work in part through the use and
+efforts of others.
+
+For these and/or other purposes and motivations, and without any expectation
+of additional consideration or compensation, the person associating CC0 with a
+Work (the "Affirmer"), to the extent that he or she is an owner of Copyright
+and Related Rights in the Work, voluntarily elects to apply CC0 to the Work
+and publicly distribute the Work under its terms, with knowledge of his or her
+Copyright and Related Rights in the Work and the meaning and intended legal
+effect of CC0 on those rights.
+
+1. Copyright and Related Rights. A Work made available under CC0 may be
+protected by copyright and related or neighboring rights ("Copyright and
+Related Rights"). Copyright and Related Rights include, but are not limited
+to, the following:
+
+ i. the right to reproduce, adapt, distribute, perform, display, communicate,
+ and translate a Work;
+
+ ii. moral rights retained by the original author(s) and/or performer(s);
+
+ iii. publicity and privacy rights pertaining to a person's image or likeness
+ depicted in a Work;
+
+ iv. rights protecting against unfair competition in regards to a Work,
+ subject to the limitations in paragraph 4(a), below;
+
+ v. rights protecting the extraction, dissemination, use and reuse of data in
+ a Work;
+
+ vi. database rights (such as those arising under Directive 96/9/EC of the
+ European Parliament and of the Council of 11 March 1996 on the legal
+ protection of databases, and under any national implementation thereof,
+ including any amended or successor version of such directive); and
+
+ vii. other similar, equivalent or corresponding rights throughout the world
+ based on applicable law or treaty, and any national implementations thereof.
+
+2. Waiver. To the greatest extent permitted by, but not in contravention of,
+applicable law, Affirmer hereby overtly, fully, permanently, irrevocably and
+unconditionally waives, abandons, and surrenders all of Affirmer's Copyright
+and Related Rights and associated claims and causes of action, whether now
+known or unknown (including existing as well as future claims and causes of
+action), in the Work (i) in all territories worldwide, (ii) for the maximum
+duration provided by applicable law or treaty (including future time
+extensions), (iii) in any current or future medium and for any number of
+copies, and (iv) for any purpose whatsoever, including without limitation
+commercial, advertising or promotional purposes (the "Waiver"). Affirmer makes
+the Waiver for the benefit of each member of the public at large and to the
+detriment of Affirmer's heirs and successors, fully intending that such Waiver
+shall not be subject to revocation, rescission, cancellation, termination, or
+any other legal or equitable action to disrupt the quiet enjoyment of the Work
+by the public as contemplated by Affirmer's express Statement of Purpose.
+
+3. Public License Fallback. Should any part of the Waiver for any reason be
+judged legally invalid or ineffective under applicable law, then the Waiver
+shall be preserved to the maximum extent permitted taking into account
+Affirmer's express Statement of Purpose. In addition, to the extent the Waiver
+is so judged Affirmer hereby grants to each affected person a royalty-free,
+non transferable, non sublicensable, non exclusive, irrevocable and
+unconditional license to exercise Affirmer's Copyright and Related Rights in
+the Work (i) in all territories worldwide, (ii) for the maximum duration
+provided by applicable law or treaty (including future time extensions), (iii)
+in any current or future medium and for any number of copies, and (iv) for any
+purpose whatsoever, including without limitation commercial, advertising or
+promotional purposes (the "License"). The License shall be deemed effective as
+of the date CC0 was applied by Affirmer to the Work. Should any part of the
+License for any reason be judged legally invalid or ineffective under
+applicable law, such partial invalidity or ineffectiveness shall not
+invalidate the remainder of the License, and in such case Affirmer hereby
+affirms that he or she will not (i) exercise any of his or her remaining
+Copyright and Related Rights in the Work or (ii) assert any associated claims
+and causes of action with respect to the Work, in either case contrary to
+Affirmer's express Statement of Purpose.
+
+4. Limitations and Disclaimers.
+
+ a. No trademark or patent rights held by Affirmer are waived, abandoned,
+ surrendered, licensed or otherwise affected by this document.
+
+ b. Affirmer offers the Work as-is and makes no representations or warranties
+ of any kind concerning the Work, express, implied, statutory or otherwise,
+ including without limitation warranties of title, merchantability, fitness
+ for a particular purpose, non infringement, or the absence of latent or
+ other defects, accuracy, or the present or absence of errors, whether or not
+ discoverable, all to the greatest extent permissible under applicable law.
+
+ c. Affirmer disclaims responsibility for clearing rights of other persons
+ that may apply to the Work or any use thereof, including without limitation
+ any person's Copyright and Related Rights in the Work. Further, Affirmer
+ disclaims responsibility for obtaining any necessary consents, permissions
+ or other rights required for any use of the Work.
+
+ d. Affirmer understands and acknowledges that Creative Commons is not a
+ party to this document and has no duty or obligation with respect to this
+ CC0 or use of the Work.
+
+For more information, please see
+
diff --git a/README.MD b/README.MD
deleted file mode 100644
index a4cce4b6..00000000
--- a/README.MD
+++ /dev/null
@@ -1,66 +0,0 @@
-# Animal Crossing Decompilation [![Discord Channel][discord-badge]][discord] ![rel progress] ![dol progress]
-[discord]: https://discord.gg/hKx3FJJgrV
-[discord-badge]: https://img.shields.io/discord/727908905392275526?color=%237289DA&logo=discord&logoColor=%23FFFFFF
-[rel progress]: https://img.shields.io/endpoint?label=rel&url=https%3A%2F%2Fprogress.decomp.club%2Fdata%2Fanimalcrossing%2Fus%2Frel%2F%3Fmode%3Dshield%26measure%3Dcode
-[dol progress]: https://img.shields.io/endpoint?label=dol&url=https%3A%2F%2Fprogress.decomp.club%2Fdata%2Fanimalcrossing%2Fus%2Fdol%2F%3Fmode%3Dshield%26measure%3Dcode
-
-Decompilation in progress of Animal Crossing (GAFE01)
-
-A decompilation of the original N64 version of the game is being worked on [here](https://github.com/zeldaret/af).
-
-## Cloning
-
-Use `--recursive` when cloning to have ppcdis in the repository.
-
-## Building
-
-> [!NOTE]
-> On Windows, the build is known to run disproportionately slow when ran natively, so WSL is recommended.
-
-### Docker
-
-1. [Dump a copy of the game](./docs/extract_game.md) and extract all files.
-2. Place **main.dol**, **foresta.rel.szs**, **forest_1st.arc**, and **forest_2nd.arc** in *dump/*.
-3. Install Docker.
-4. Set up the Docker image. If using MacOS or Linux (including WSL), run `chmod +x docker-setup.sh && ./docker-setup.sh`. If using Windows, run the `docker-setup.bat` file.
-5. Run configure.py (`docker run --rm -v ${PWD}:/ac-decomp ac-decomp python3 configure.py`).
-6. Run build.py (`docker run --rm -v ${PWD}:/ac-decomp ac-decomp python3 build.py`).
-
-### Build manually
-
-> [!TIP]
-> When building manually from a work directory previously used for Docker, `sudo ninja -t clean` will need to be ran for the build to execute properly.
-
-1. [Dump a copy of the game](./docs/extract_game.md) and extract all files.
-2. Place **main.dol**, **foresta.rel.szs**, **forest_1st.arc**, and **forest_2nd.arc** in *dump/*.
-3. Download the [CodeWarrior 1.3.2, 1.3.2r, and 1.2.5n compilers](https://files.decomp.dev/compilers_latest.zip) and extract them to *tools/1.3.2/*, *tools/1.3.2r/*, and *tools/1.2.5n/*, respectively.
-4. Install Python, pip, and [ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages#package-managers) using a package manager of choice.
- - If using an ARM-based device, cmake will also need to be installed.
-5. Install Python modules from requirements.txt (`pip install -r requirements.txt`).
-6. Install [wibo](https://github.com/decompals/wibo)
- - Wibo is a lightweight Wine replacement that's tailor-made for use with decomp projects. Regular Wine can be used if preferred, but for the purposes of this guide, these instructions will use wibo.
- - Download [the latest GitHub release](https://github.com/decompals/wibo/releases/latest) and run `install ./wibo /usr/bin` to install it to the system.
-7. Install devkitPPC.
- - [devkitPro Pacman](https://devkitpro.org/wiki/devkitPro_pacman#Installing_devkitPro_Pacman) is needed to get devkitPPC.
- - Run `dkp-pacman -S devkitPPC` once dkp-pacman is installed to install devkitPPC.
- - Set the `DEVKITPPC` environment variable to */opt/devkitpro/devkitPPC*.
-8. Set the `N64_SDK` environment variable to the path of libultra or equivalent headers. Headers from [ultralib](https://github.com/decompals/ultralib) can be used.
- - Headers should be located at `$N64_SDK/ultra/usr/include`.
- - `Gpopmtx`'s `param` member must be modified to be `unsigned int` in **gbi.h**.
-9. Run `python3 configure.py`.
-10. Run `python3 build.py`.
-
-## Quick Guides
-- [Dumping Game Files](./docs/extract_game.md)
-- [Ghidra Setup](./docs/ghidra_setup.md)
-- [Generating Decomp Context](./docs/generating_decomp_context.md)
-- [decomp.me Basics](./docs/decomp_me_basics.md)
-- [Ghidra Basics](./docs/ghidra_basics.md)
-- [m2c Basics](./docs/m2c_basics.md)
-- [Decomp Basics](./docs/decomp_basics.md)
-
-## Credits
-
-- jamchamb, Cuyler36, NWPlayer123 and fraser125 for past documentation of Animal Crossing.
-- SeekyCt for [ppcdis](https://github.com/SeekyCt/ppcdis/) and helping setting up the project.
-- msg for helping with *tools/map.py*.
diff --git a/README.md b/README.md
new file mode 100644
index 00000000..2198fc51
--- /dev/null
+++ b/README.md
@@ -0,0 +1,126 @@
+Animal Crossing
+[![Build Status]][actions] ![DOL Progress] ![REL Progress] [![Discord Badge]][discord]
+=============
+
+[Build Status]: https://github.com/Prakxo/ac-decomp/actions/workflows/build.yml/badge.svg
+[actions]: https://github.com/Prakxo/ac-decomp/actions/workflows/build.yml
+[DOL Progress]: https://img.shields.io/endpoint?label=DOL&url=https%3A%2F%2Fprogress.decomp.club%2Fdata%2Fanimalcrossing%2Fus%2Fdol%2F%3Fmode%3Dshield%26measure%3Dcode
+[REL Progress]: https://img.shields.io/endpoint?label=REL&url=https%3A%2F%2Fprogress.decomp.club%2Fdata%2Fanimalcrossing%2Fus%2Frel%2F%3Fmode%3Dshield%26measure%3Dcode
+[Discord Badge]: https://img.shields.io/discord/727908905392275526?color=%237289DA&logo=discord&logoColor=%23FFFFFF
+[discord]: https://discord.gg/hKx3FJJgrV
+
+A work-in-progress decompilation of Animal Crossing.
+
+This repository does **not** contain any game assets or assembly whatsoever. An existing copy of the game is required.
+
+Supported versions:
+
+- `GAFE01_00`: Rev 0 (USA)
+
+A decompilation of the original N64 version of the game is being worked on [here](https://github.com/zeldaret/af).
+
+
+
+Dependencies
+============
+
+Windows
+--------
+
+On Windows, it's **highly recommended** to use native tooling. WSL or msys2 are **not** required.
+When running under WSL, [objdiff](#diffing) is unable to get filesystem notifications for automatic rebuilds.
+
+- Install [Python](https://www.python.org/downloads/) and add it to `%PATH%`.
+ - Also available from the [Windows Store](https://apps.microsoft.com/store/detail/python-311/9NRWMJP3717K).
+- Download [ninja](https://github.com/ninja-build/ninja/releases) and add it to `%PATH%`.
+ - Quick install via pip: `pip install ninja`
+
+macOS
+------
+
+- Install [ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages):
+
+ ```sh
+ brew install ninja
+ ```
+
+- Install [wine-crossover](https://github.com/Gcenx/homebrew-wine):
+
+ ```sh
+ brew install --cask --no-quarantine gcenx/wine/wine-crossover
+ ```
+
+After OS upgrades, if macOS complains about `Wine Crossover.app` being unverified, you can unquarantine it using:
+
+```sh
+sudo xattr -rd com.apple.quarantine '/Applications/Wine Crossover.app'
+```
+
+Linux
+------
+
+- Install [ninja](https://github.com/ninja-build/ninja/wiki/Pre-built-Ninja-packages).
+- For non-x86(_64) platforms: Install wine from your package manager.
+ - For x86(_64), [wibo](https://github.com/decompals/wibo), a minimal 32-bit Windows binary wrapper, will be automatically downloaded and used.
+
+Building
+========
+
+- Clone the repository:
+
+ ```sh
+ git clone --recursive https://github.com/Prakxo/ac-decomp.git
+ ```
+
+- Update and Initialize submodules:
+
+ ```sh
+ git submodule update --init --recursive
+ ```
+
+- Copy your game's disc image to `orig/GAFE01_00`.
+ - Supported formats: ISO (GCM), RVZ, WIA, WBFS, CISO, NFS, GCZ, TGC
+ - After the initial build, the disc image can be deleted to save space.
+
+- Configure:
+
+ ```sh
+ python configure.py
+ ```
+
+ To use a version other than `GAFE01_00` (USA), specify it with `--version`.
+
+- Build:
+
+ ```sh
+ ninja
+ ```
+
+Diffing
+=======
+
+Once the initial build succeeds, an `objdiff.json` should exist in the project root.
+
+Download the latest release from [encounter/objdiff](https://github.com/encounter/objdiff). Under project settings, set `Project directory`. The configuration should be loaded automatically.
+
+Select an object from the left sidebar to begin diffing. Changes to the project will rebuild automatically: changes to source files, headers, `configure.py`, `splits.txt` or `symbols.txt`.
+
+
+
+Credits
+=======
+
+- jamchamb, Cuyler36, NWPlayer123 and fraser125 for past documentation of Animal Crossing.
+- SeekyCt for [ppcdis](https://github.com/SeekyCt/ppcdis/) and helping setting up the project.
+- msg for helping with *tools/map.py*.
diff --git a/assets/objdiff.png b/assets/objdiff.png
new file mode 100644
index 00000000..080e335b
Binary files /dev/null and b/assets/objdiff.png differ
diff --git a/build.py b/build.py
deleted file mode 100644
index 61407a5d..00000000
--- a/build.py
+++ /dev/null
@@ -1,106 +0,0 @@
-import subprocess
-import sys
-import os
-import hashlib
-import argparse
-import common as c
-
-# List of Ninja build targets
-NINJA_BUILD_TARGETS = [ ['src/data/bin1', 'out/forest_1st.arc', 'dump/forest_1st.arc'], ['src/data/bin2', 'out/forest_2nd.arc', 'dump/forest_2nd.arc'] ]
-
-def calculate_directory_hash(path, hash_func):
- if not os.path.isdir(path):
- raise NotADirectoryError(f"{path} is not a directory")
-
- hasher = hash_func()
- for root, dirs, files in os.walk(path):
- for names in files:
- filepath = os.path.join(root, names)
- try:
- with open(filepath, 'rb') as f:
- while True:
- data = f.read(65536) # Read in chunks to handle large files
- if not data:
- break
- hasher.update(data)
- except IOError:
- # Handle errors as needed
- pass
- return hasher.hexdigest()
-
-def directory_changed(path, build_dir, hash_func=hashlib.md5):
- hash_file = os.path.join(build_dir, f'{os.path.basename(os.path.normpath(path))}.dirhash')
- current_hash = calculate_directory_hash(path, hash_func)
- try:
- with open(hash_file, 'r') as f:
- stored_hash = f.read()
- except FileNotFoundError:
- stored_hash = None
-
- if current_hash != stored_hash:
- os.makedirs(build_dir, exist_ok=True)
- with open(hash_file, 'w') as f:
- f.write(current_hash)
- return True
- return False
-
-def run_ninja_build(target):
- try:
- subprocess.run(['ninja', '-v', target], check=True)
- except subprocess.CalledProcessError as e:
- print(f"Error running Ninja build for target {target}: {e}")
- sys.exit(1)
-
-def check_and_dump_arc(target, dump, verbose=False):
- if not os.path.exists(target):
- assert os.path.exists(dump), f"Please add missing file: {dump}"
- print(f'Dumping {dump}')
-
- try:
- if verbose:
- subprocess.run(['python3', 'tools/arc_tool.py', dump, os.path.dirname(target)])
- else:
- subprocess.run(['python3', 'tools/arc_tool.py', '-v', dump, os.path.dirname(target)])
- except subprocess.CalledProcessError as e:
- print(f"Error running arc_tool")
- sys.exit(1)
-
-if __name__ == "__main__":
- parser = argparse.ArgumentParser(description='Build Animal Crossing')
- parser.add_argument('--clean', help='Cleans all build artifacts', required=False, action='store_true')
- parser.add_argument('-v', help='Enable verbose logging', required=False, action='store_true')
-
- args = parser.parse_args()
-
- if args.clean:
- for target in NINJA_BUILD_TARGETS:
- rel_path = f'{os.path.basename(os.path.normpath(target[0]))}.dirhash'
- path = os.path.join('build', rel_path)
- if os.path.exists(path):
- os.remove(path)
- try:
- subprocess.run(['ninja', '-t', 'clean'], check=True)
- except subprocess.CalledProcessError as e:
- print(f"Error running ninja -t clean")
- sys.exit(1)
- else:
- for target in NINJA_BUILD_TARGETS:
- check_and_dump_arc(target[0], target[2], args.v)
- if directory_changed(target[0], 'build'):
- if os.path.exists(target[1]):
- os.remove(target[1])
- run_ninja_build(target[1])
- else:
- print(f"No changes in {target[0]}, skipping build.")
- try:
- if args.v:
- subprocess.run(['ninja', '-v'], check=True)
- else:
- subprocess.run(['ninja'], check=True)
- # Compress foresta.rel
- if os.path.exists(c.REL_OUT):
- print("Compressing foresta.rel to foresta.rel.szs")
- subprocess.call([f'./{c.ORTHRUS}', 'ncompress', 'yaz0', '-c', c.REL_OUT, c.REL_SZS_OUT])
- except subprocess.CalledProcessError as e:
- print(f"Error running Ninja build")
- sys.exit(1)
diff --git a/common.py b/common.py
deleted file mode 100644
index 433322cd..00000000
--- a/common.py
+++ /dev/null
@@ -1,537 +0,0 @@
-"""
-Common functions & definitions
-"""
-
-from dataclasses import dataclass
-from enum import Enum
-from hashlib import sha1
-import json
-import os
-from subprocess import PIPE, run
-from sys import executable as PYTHON, platform
-from typing import List, Tuple, Union
-
-import yaml
-try:
- from yaml import CLoader as Loader
-except ImportError:
- from yaml import Loader
-
-#############
-# Functions #
-#############
-
-def get_file_sha1(path: str) -> bytes:
- """Gets the SHA1 hash of a file"""
-
- with open(path, 'rb') as f:
- return sha1(f.read()).digest()
-
-def get_cmd_stdout(cmd: str, text=True) -> str:
- """Run a command and get the stdout output as a string"""
-
- ret = run(cmd.split(), stdout=PIPE, text=text)
- assert ret.returncode == 0, f"Command '{cmd}' returned {ret.returncode}"
- return ret.stdout
-
-class Binary(Enum):
- DOL = 1
- REL = 2
-
-# ppcdis source output
-SourceDesc = Union[str, Tuple[str, int, int]]
-
-def get_containing_slice(addr: int) -> Tuple[Binary, SourceDesc]:
- """Finds the binary containing an address and its source file
- Source file is empty string if not decompiled"""
-
- dol_raw = get_cmd_stdout(f"{SLICES} {DOL_YML} {DOL_SLICES} -p {DOL_SRCDIR}/ --containing {addr:x}")
- containing = json.loads(dol_raw)
- if containing is None:
- rel_raw = get_cmd_stdout(
- f"{SLICES} {REL_YML} {REL_SLICES} -p {REL_SRCDIR}/ --containing {addr:x}"
- )
- containing = json.loads(rel_raw)
- assert containing is not None, f"Unknown address {addr:x}"
- return (Binary.REL, containing)
- else:
- return (Binary.DOL, containing)
-
-def lookup_sym(sym: str, dol: bool = False, rel: bool = False, source_name: str = None) -> int:
- """Takes a symbol as a name or address and returns the address"""
-
- # Get binary
- if dol:
- binary_name = DOL_YML
- elif rel:
- binary_name = REL_YML
- else:
- binary_name = None
-
- # Determine type
- try:
- return int(sym, 16)
- except ValueError:
- return get_address(sym, binary_name, source_name)
-
-def lookup_sym_full(sym: str, dol: bool = False, rel: bool = False, source_name: str = None
- ) -> int:
- """Takes a symbol as a name or address and returns both the name and address"""
-
- # Get binary
- if dol:
- binary_name = DOL_YML
- elif rel:
- binary_name = REL_YML
- else:
- binary_name = None
-
- # Determine type
- try:
- return int(sym, 16), get_name(sym)
- except ValueError:
- return get_address(sym, binary_name, source_name), sym
-
-def get_address(name: str, binary: bool = None, source_name: bool = None) -> int:
- """Finds the address of a symbol"""
-
- args = [name]
- if binary is not None:
- args.append(f"-b {binary}")
- if source_name is not None:
- args.append(f"-n {source_name}")
-
- raw = get_cmd_stdout(f"{SYMBOLS} {GAME_SYMBOLS} --get-addr {' '.join(args)}")
- return json.loads(raw)
-
-def get_name(addr: int, binary: bool = None, source_name: bool = None) -> int:
- """Finds the name of a symbol"""
-
- args = [addr]
- if binary is not None:
- args.append(f"-b {binary}")
- if source_name is not None:
- args.append(f"-n {source_name}")
-
- raw = get_cmd_stdout(f"{SYMBOLS} {GAME_SYMBOLS} --get-name {' '.join(args)}")
- return json.loads(raw)
-
-def find_headers(dirname: str, base=None) -> List[str]:
- """Returns a list of all headers in a folder recursively"""
-
- if base is None:
- base = dirname
-
- ret = []
- for name in os.listdir(dirname):
- path = dirname + '/' + name
- if os.path.isdir(path):
- ret.extend(find_headers(path, base))
- elif name.endswith('.h'):
- ret.append(path[len(base)+1:])
-
- return ret
-
-def load_from_yaml(path: str, default=None):
- """Loads an object from a yaml file"""
-
- if default is None:
- default = {}
- with open(path) as f:
- ret = yaml.load(f.read(), Loader)
- if ret is None:
- ret = default
- return ret
-
-################
-# Project dirs #
-################
-
-# Directory for decompiled dol code
-DOL_SRCDIR = "src/static"
-
-# Directory for decompiled rel code
-REL_SRCDIR = "src"
-
-# Include directory
-INCDIR = "include"
-
-# Directory for forest_1st data
-FOREST_1STDIR = "src/data/bin1"
-
-# Directory for forest_2nd data
-FOREST_2NDDIR = "src/data/bin2"
-
-# Build artifacts directory
-BUILDDIR = "build"
-
-# Build include directory
-BUILD_INCDIR = f"{BUILDDIR}/include"
-
-# Output binaries directory
-OUTDIR = "out"
-
-# Original binaries directory
-ORIG = "dump"
-
-# Tools directory
-TOOLS = "tools"
-
-# Config directory
-CONFIG = "config"
-
-# Extracted assets directory
-ASSETS = "assets"
-
-#########
-# Tools #
-#########
-
-# ppcdis
-PPCDIS = "tools/ppcdis"
-PPCDIS_INCDIR = f"{PPCDIS}/include"
-RELEXTERN = f"{PYTHON} {PPCDIS}/relextern.py"
-ANALYSER = f"{PYTHON} {PPCDIS}/analyser.py"
-DISASSEMBLER = f"{PYTHON} {PPCDIS}/disassembler.py"
-ORDERSTRINGS = f"{PYTHON} {PPCDIS}/orderstrings.py"
-ORDERFLOATS = f"{PYTHON} {PPCDIS}/orderfloats.py"
-ASSETRIP = f"{PYTHON} {PPCDIS}/assetrip.py"
-ASSETINC = f"{PYTHON} {PPCDIS}/assetinc.py"
-BATCHASSETRIP = f"{PYTHON} {PPCDIS}/batchassetrip.py"
-FORCEACTIVEGEN = f"{PYTHON} {PPCDIS}/forceactivegen.py"
-ELF2DOL = f"{PYTHON} {PPCDIS}/elf2dol.py"
-ELF2REL = f"{PYTHON} {PPCDIS}/elf2rel.py"
-SLICES = f"{PYTHON} {PPCDIS}/slices.py"
-PROGRESS = f"{PYTHON} {PPCDIS}/progress.py"
-SYMBOLS = f"{PYTHON} {PPCDIS}/symbols.py"
-FORCEFILESGEN = f"{PYTHON} {PPCDIS}/forcefilesgen.py"
-
-# Codewarrior
-TOOLS = "tools"
-CODEWARRIOR = os.path.join(TOOLS, "1.3.2")
-CODEWARRIOR_RODATA_POOL_FIX = os.path.join(TOOLS, "1.3.2r")
-ORTHRUS = os.path.join(TOOLS, "orthrus")
-SDK_CW = os.path.join(TOOLS, "1.2.5n")
-CC = os.path.join(CODEWARRIOR, "mwcceppc.exe")
-CC_R = os.path.join(CODEWARRIOR_RODATA_POOL_FIX, "mwcceppc.exe")
-OCC = os.path.join(SDK_CW, "mwcceppc.exe")
-LD = os.path.join(CODEWARRIOR, "mwldeppc.exe")
-if platform != "win32":
- LD = f"wibo {LD}"
- SJISWRAP = f"wibo {TOOLS}/sjiswrap.exe"
-else:
- ORTHRUS = os.path.join(TOOLS, "orthrus.exe")
- SJISWRAP = os.path.join(TOOLS, "sjiswrap.exe")
-
-# DevkitPPC
-DEVKITPPC = os.environ.get("DEVKITPPC")
-AS = os.path.join(DEVKITPPC, "bin", "powerpc-eabi-as")
-OBJDUMP = os.path.join(DEVKITPPC, "bin", "powerpc-eabi-objdump")
-CPP = os.path.join(DEVKITPPC, "bin", "powerpc-eabi-cpp")
-
-# Asset Converters
-VTXDIS = f"{PYTHON} {TOOLS}/converters/vtxdis.py"
-PAL16DIS = f"{PYTHON} {TOOLS}/converters/pal16dis.py"
-
-# JSystem JKernel archive tool
-ARC_TOOL = f"{PYTHON} {TOOLS}/arc_tool.py"
-
-# N64 SDK path for GBI
-N64SDK = os.environ.get("N64_SDK")
-assert N64SDK != None, "N64_SDK is not defined as a system environment variable"
-
-#########
-# Files #
-#########
-
-# Slices
-DOL_SLICES = f"{CONFIG}/dol_slices.yml"
-REL_SLICES = f"{CONFIG}/rel_slices.yml"
-
-# Overrides
-ANALYSIS_OVERRIDES = f"{CONFIG}/analysis_overrides.yml"
-DOL_DISASM_OVERRIDES = f"{CONFIG}/disasm_overrides.yml"
-REL_DISASM_OVERRIDES = f"{CONFIG}/rel_disasm_overrides.yml"
-
-# Binaries
-DOL = f"{ORIG}/static.dol" # read in python code
-REL = f"{ORIG}/foresta.rel" # read in python code
-REL_SZS = f"{ORIG}/foresta.rel.szs"
-DOL_YML = f"{CONFIG}/dol.yml"
-REL_YML = f"{CONFIG}/rel.yml"
-DOL_SHA = f"{ORIG}/static.dol.sha1"
-REL_SHA = f"{ORIG}/foresta.rel.sha1"
-DOL_OK = f"{BUILDDIR}/static.dol.ok"
-REL_OK = f"{BUILDDIR}/foresta.rel.ok"
-DOL_ASM_LIST = f"{BUILDDIR}/static.dol.asml"
-REL_ASM_LIST = f"{BUILDDIR}/foresta.rel.asml"
-
-# Symbols
-GAME_SYMBOLS = f"{CONFIG}/symbols.yml"
-
-# Assets
-ASSETS_YML = f"{CONFIG}/assets.yml"
-
-# Analysis outputs
-EXTERNS = f"{BUILDDIR}/externs.pickle"
-DOL_LABELS = f"{BUILDDIR}/labels.pickle"
-DOL_RELOCS = f"{BUILDDIR}/relocs.pickle"
-REL_LABELS = f"{BUILDDIR}/rel_labels.pickle"
-REL_RELOCS = f"{BUILDDIR}/rel_relocs.pickle"
-
-# Linker
-DOL_LCF_TEMPLATE = f"{CONFIG}/dol.lcf"
-DOL_LCF_TEMP = f"{BUILDDIR}/dol_temp.lcf"
-DOL_LCF = f"{BUILDDIR}/dol.lcf"
-REL_LCF = f"{CONFIG}/rel.lcf"
-
-# Outputs
-DOL_ELF = f"{BUILDDIR}/static.elf"
-REL_PLF = f"{BUILDDIR}/foresta.plf"
-DOL_OUT = f"{OUTDIR}/static.dol"
-REL_OUT = f"{OUTDIR}/foresta.rel"
-REL_SZS_OUT = f"{OUTDIR}/foresta.rel.szs"
-DOL_MAP = f"{OUTDIR}/static.map"
-REL_MAP = f"{OUTDIR}/foresta.map"
-
-# Optional full disassembly
-DOL_FULL = f"{OUTDIR}/dol.s"
-REL_FULL = f"{OUTDIR}/rel.s"
-
-##############
-# Tool Flags #
-##############
-
-ASFLAGS = ' '.join([
- "-m gekko",
- f"-I {INCDIR}",
- f"-I {PPCDIS_INCDIR}",
- f"-I orig",
- f"-I {N64SDK}/ultra/usr/include"
-])
-
-CPPFLAGS = ' '.join([
- "-nostdinc",
- f"-I {INCDIR}",
- f"-I {PPCDIS_INCDIR}",
- f"-I {BUILD_INCDIR}",
- f"-I {N64SDK}/ultra/usr/include"
-])
-
-DOL_SDATA2_SIZE = 8
-REL_SDATA2_SIZE = 0
-
-CFLAGS = [
- "-O4",
- "-char unsigned",
- "-fp hard"
-]
-CPLFLAGS = [
- "-lang=c++",
- "-O0"
-]
-COMMON_DEFINES = [
- "-d _LANGUAGE_C",
- "-d F3DEX_GBI_2",
- "-d NDEBUG",
- "-d DEBUG=0",
- "-d MUST_MATCH"
-]
-DOL_DEFINES = COMMON_DEFINES + []
-REL_DEFINES = COMMON_DEFINES + [
- #"-d OPTIMIZED_SQRTF",
- "-d IS_REL"
-]
-BASE_DOL_CFLAGS = CFLAGS + [
- "-inline on",
- "-sdata 8",
- f"-sdata2 {DOL_SDATA2_SIZE}"
-] + DOL_DEFINES
-BOOT_CFLAGS = CFLAGS + [
- "-inline on",
- "-sdata 0",
- "-sdata2 0"
-] + DOL_DEFINES
-DOL_CFLAGS_NO_SDATA = CFLAGS + [
- "-inline on",
- "-enum int",
- "-sdata 0",
- "-sdata2 0"
-] + DOL_DEFINES
-DVDERR_CFLAGS = CFLAGS + [
- "-inline on",
- "-sdata 0",
- "-sdata2 0",
- "-pool off"
-] + DOL_DEFINES
-TRK_CFLAGS = [
- "-O4,p",
- "-sdata 0",
- "-sdata2 0",
- "-fp hard",
- "-enum int",
- "-char unsigned",
- "-inline deferred",
- "-rostr"
-] + DOL_DEFINES
-BASE_REL_CFLAGS = CFLAGS + [
- "-sdata 0",
- f"-sdata2 {REL_SDATA2_SIZE}",
- "-enum int",
- "-requireprotos",
- #"-pool off",
- "-sym on"
-] + REL_DEFINES
-
-LOCAL_CFLAGS = [
- "-nostdinc",
- "-proc gekko",
- "-maxerrors 1",
- "-Cpp_exceptions off",
- "-I-",
- f"-i {INCDIR}",
- f"-i {PPCDIS_INCDIR}",
- f"-i {BUILD_INCDIR}",
- f"-ir {N64SDK}/ultra/usr/include"
-]
-
-PREPROCESSOR_CFLAGS = [
- "-E",
- "-P"
-]
-
-SDK_CFLAG = [
- "-O4,p",
- "-inline all",
- "-sdata 8",
- f"-sdata2 {DOL_SDATA2_SIZE}",
- "-fp hard"
-]
-ALIGN16_CFLAG = [
- "-func_align 16",
-]
-JSYSTEM_BASE = [
- "-lang=c++",
- "-inline on",
- "-fp fmadd",
- #"-fp_contract on",
- #"-pool off", # this is wrong
- "-Cpp_exceptions off",
- "-RTTI on",
- "-char signed",
- "-enum int",
- "-sym on", # might also be on for base flags?
- "-O4,s" # in mkdd some libraries use O4,p, might be the case here too
-]
-JSYSTEM_JGADGET_BASE = [
- "-lang=c++",
- "-inline on",
- "-fp fmadd",
- #"-fp_contract on",
- #"-pool off", # this is wrong
- "-Cpp_exceptions off",
- "-RTTI on",
- "-char signed",
- "-enum int",
- # "-sym on", # might also be on for base flags?
- "-O4,s" # in mkdd some libraries use O4,p, might be the case here too
-]
-FAMICOM_BASE = CFLAGS + [
- "-lang=c++",
- "-sdata 0",
- "-sdata2 0",
- "-enum int",
- "-sym on"
-] + DOL_DEFINES
-JAUDIO_BASE = CFLAGS + [
- "-lang=c++",
- "-char signed",
- "-sdata 8",
- "-sdata2 8",
- "-enum int",
- "-common on"
-] + DOL_DEFINES
-JAUDIO_FUNC_ALIGN_32 = [
- "-func_align 32",
- "-str readonly",
- "-inline off"
-]
-JAUDIO_USER = [
- "-d _LANGUAGE_C_PLUS_PLUS",
- "-O0",
- "-char unsigned",
- "-fp hard",
- "-lang=c++",
- "-sdata 8",
- "-sdata2 8",
- "-enum int",
- "-common on"
-]
-
-JSYSTEM_CFLAGS = ' '.join(JSYSTEM_BASE + LOCAL_CFLAGS)
-JSYSTEM_JGADGET_CFLAGS = ' '.join(JSYSTEM_JGADGET_BASE + LOCAL_CFLAGS)
-DOL_CFLAGS = ' '.join(BASE_DOL_CFLAGS + LOCAL_CFLAGS)
-DOL_BOOT_CFLAGS = ' '.join(BOOT_CFLAGS + LOCAL_CFLAGS)
-DOL_DVDERR_CFLAGS = ' '.join(DVDERR_CFLAGS + LOCAL_CFLAGS)
-DOL_CFLAGS_SDATA0_CFLAGS = ' '.join(DOL_CFLAGS_NO_SDATA + LOCAL_CFLAGS)
-DOL_TRK_CFLAGS = ' '.join(TRK_CFLAGS + LOCAL_CFLAGS)
-SDK_FLAGS = ' '.join(SDK_CFLAG + LOCAL_CFLAGS)
-ALIGN16 = ' '.join(BASE_DOL_CFLAGS + LOCAL_CFLAGS + ALIGN16_CFLAG)
-DOL_CPPFLAGS = ' '.join(CPLFLAGS + BASE_DOL_CFLAGS + LOCAL_CFLAGS)
-REL_CFLAGS = ' '.join(BASE_REL_CFLAGS + LOCAL_CFLAGS)
-EXTERNAL_DOL_CFLAGS = ' '.join(BASE_DOL_CFLAGS)
-EXTERNAL_REL_CFLAGS = ' '.join(BASE_REL_CFLAGS)
-PREPROCESS_CFLAGS = ' '.join(PREPROCESSOR_CFLAGS)
-FAMICOM_CLFAGS = ' '.join(FAMICOM_BASE + LOCAL_CFLAGS)
-JAUDIO_CFLAGS = ' '.join(JAUDIO_BASE + LOCAL_CFLAGS)
-JAUDIO_FUNC_ALIGN_32_CFLAGS = ' '.join(JAUDIO_BASE + JAUDIO_FUNC_ALIGN_32 + LOCAL_CFLAGS)
-JAUDIO_USER_CFLAGS = ' '.join(JAUDIO_USER + LOCAL_CFLAGS)
-
-DOL_LDFLAGS = ' '.join([
- "-maxerrors 1",
- "-mapunused",
- "-fp hardware"
-])
-
-LDFLAGS = ' '.join([
- "-maxerrors 1",
- "-mapunused",
- "-opt_partial",
- "-strip_partial",
- "-fp hardware"
-])
-
-PPCDIS_ANALYSIS_FLAGS = ' '.join([
- f"-o {ANALYSIS_OVERRIDES}",
- f"-l {EXTERNS}"
-])
-
-
-############
-# Contexts #
-############
-
-@dataclass
-class SourceContext:
- srcdir: str
- cflags: str
- binary: str
- labels: str
- relocs: str
- slices: str
- compiler: str
- sdata2_threshold: int
- disasm_overrides: int
-
-DOL_CTX = SourceContext(DOL_SRCDIR, DOL_CFLAGS, DOL_YML, DOL_LABELS, DOL_RELOCS, DOL_SLICES,
- CC, DOL_SDATA2_SIZE, DOL_DISASM_OVERRIDES)
-REL_CTX = SourceContext(REL_SRCDIR, REL_CFLAGS, REL_YML, REL_LABELS, REL_RELOCS, REL_SLICES,
- CC, REL_SDATA2_SIZE, REL_DISASM_OVERRIDES)
-
-####################
-# diff.py Expected #
-####################
-
-EXPECTED = "expected"
-DOL_EXPECTED = f"{EXPECTED}/build/main.elf"
-REL_EXPECTED = f"{EXPECTED}/build/foresta.plf"
diff --git a/config/GAFE01_00/build.sha1 b/config/GAFE01_00/build.sha1
new file mode 100644
index 00000000..47886139
--- /dev/null
+++ b/config/GAFE01_00/build.sha1
@@ -0,0 +1,2 @@
+2AE8F56E7791D37E165BD5900921F2269F9515BF build/GAFE01_00/static.dol
+C59D278AD8542BB05D6CBB632F60A0DB05BEF203 build/GAFE01_00/foresta/foresta.rel
diff --git a/config/GAFE01_00/config.yml b/config/GAFE01_00/config.yml
new file mode 100644
index 00000000..1bedf27a
--- /dev/null
+++ b/config/GAFE01_00/config.yml
@@ -0,0 +1,24281 @@
+object_base: orig/GAFE01_00
+object: sys/main.dol
+hash: 2AE8F56E7791D37E165BD5900921F2269F9515BF
+name: static
+symbols: config/GAFE01_00/symbols.txt
+splits: config/GAFE01_00/splits.txt
+common_start: 0x8020D78C
+mw_comment_version: 10
+symbols_known: true
+fill_gaps: false
+
+block_relocations:
+# emu64
+- source: 0x8004F4F4
+- source: 0x8004F4F8
+- source: 0x8004F6B4
+- source: 0x8004F6B8
+- source: 0x80052D54
+- source: 0x80052D58
+
+extract:
+- symbol: JUTResFONT_Ascfont_fix12
+ binary: assets/JSystem/JUtility/FontData/Ascfont_fix12.bfn
+
+- symbol: __Creator__
+ binary: assets/__Creator__.bin
+ header: assets/__Creator__.inc
+ header_type: raw
+
+- symbol: __DateTime__
+ binary: assets/__DateTime__.bin
+ header: assets/__DateTime__.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji1_1_tex
+ binary: assets/dvd_keikoku_moji1_1_tex.bin
+ header: assets/dvd_keikoku_moji1_1_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji1_2_tex
+ binary: assets/dvd_keikoku_moji1_2_tex.bin
+ header: assets/dvd_keikoku_moji1_2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji1_3_tex
+ binary: assets/dvd_keikoku_moji1_3_tex.bin
+ header: assets/dvd_keikoku_moji1_3_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji1_4_tex
+ binary: assets/dvd_keikoku_moji1_4_tex.bin
+ header: assets/dvd_keikoku_moji1_4_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w1_tex
+ binary: assets/ctl_att_w1_tex.bin
+ header: assets/ctl_att_w1_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w2_tex
+ binary: assets/ctl_att_w2_tex.bin
+ header: assets/ctl_att_w2_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w3_tex
+ binary: assets/ctl_att_w3_tex.bin
+ header: assets/ctl_att_w3_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w4_tex
+ binary: assets/ctl_att_w4_tex.bin
+ header: assets/ctl_att_w4_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w5_tex
+ binary: assets/ctl_att_w5_tex.bin
+ header: assets/ctl_att_w5_tex.inc
+ header_type: raw
+
+- symbol: ctl_att_w6_tex
+ binary: assets/ctl_att_w6_tex.bin
+ header: assets/ctl_att_w6_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku1_v
+ binary: assets/dvd_keikoku1_v.bin
+ header: assets/dvd_keikoku1_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: dvd_keikoku_moji2_tex
+ binary: assets/dvd_keikoku_moji2_tex.bin
+ header: assets/dvd_keikoku_moji2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji2_2_tex
+ binary: assets/dvd_keikoku_moji2_2_tex.bin
+ header: assets/dvd_keikoku_moji2_2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji2_3_tex
+ binary: assets/dvd_keikoku_moji2_3_tex.bin
+ header: assets/dvd_keikoku_moji2_3_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku2_v
+ binary: assets/dvd_keikoku2_v.bin
+ header: assets/dvd_keikoku2_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: dvd_keikoku_moji4_tex
+ binary: assets/dvd_keikoku_moji4_tex.bin
+ header: assets/dvd_keikoku_moji4_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji3_1_tex
+ binary: assets/dvd_keikoku_moji3_1_tex.bin
+ header: assets/dvd_keikoku_moji3_1_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji3_2_tex
+ binary: assets/dvd_keikoku_moji3_2_tex.bin
+ header: assets/dvd_keikoku_moji3_2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji3_3_tex
+ binary: assets/dvd_keikoku_moji3_3_tex.bin
+ header: assets/dvd_keikoku_moji3_3_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku3_v
+ binary: assets/dvd_keikoku3_v.bin
+ header: assets/dvd_keikoku3_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: dvd_keikoku_moji5_tex
+ binary: assets/dvd_keikoku_moji5_tex.bin
+ header: assets/dvd_keikoku_moji5_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_2_tex
+ binary: assets/dvd_keikoku_moji6_2_tex.bin
+ header: assets/dvd_keikoku_moji6_2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_3_tex
+ binary: assets/dvd_keikoku_moji6_3_tex.bin
+ header: assets/dvd_keikoku_moji6_3_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_tex
+ binary: assets/dvd_keikoku_moji6_tex.bin
+ header: assets/dvd_keikoku_moji6_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_1_tex
+ binary: assets/dvd_keikoku_moji6_1_tex.bin
+ header: assets/dvd_keikoku_moji6_1_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_new1_tex
+ binary: assets/dvd_keikoku_moji6_new1_tex.bin
+ header: assets/dvd_keikoku_moji6_new1_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji6_new2_tex
+ binary: assets/dvd_keikoku_moji6_new2_tex.bin
+ header: assets/dvd_keikoku_moji6_new2_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku4_v
+ binary: assets/dvd_keikoku4_v.bin
+ header: assets/dvd_keikoku4_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: dvd_keikoku_moji7_tex
+ binary: assets/dvd_keikoku_moji7_tex.bin
+ header: assets/dvd_keikoku_moji7_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji8_tex
+ binary: assets/dvd_keikoku_moji8_tex.bin
+ header: assets/dvd_keikoku_moji8_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji10_tex
+ binary: assets/dvd_keikoku_moji10_tex.bin
+ header: assets/dvd_keikoku_moji10_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji11_tex
+ binary: assets/dvd_keikoku_moji11_tex.bin
+ header: assets/dvd_keikoku_moji11_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji12_tex
+ binary: assets/dvd_keikoku_moji12_tex.bin
+ header: assets/dvd_keikoku_moji12_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku_moji9_tex
+ binary: assets/dvd_keikoku_moji9_tex.bin
+ header: assets/dvd_keikoku_moji9_tex.inc
+ header_type: raw
+
+- symbol: dvd_keikoku5_v
+ binary: assets/dvd_keikoku5_v.bin
+ header: assets/dvd_keikoku5_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: gam_win_moji1_tex
+ binary: assets/bootdata/win1/gam_win_moji1_tex.bin
+ header: assets/bootdata/win1/gam_win_moji1_tex.inc
+ header_type: symbol
+
+- symbol: gam_win_moji2_tex
+ binary: assets/bootdata/win1/gam_win_moji2_tex.bin
+ header: assets/bootdata/win1/gam_win_moji2_tex.inc
+ header_type: symbol
+
+- symbol: yes!.data:0x800B98C0
+ binary: assets/bootdata/win1/yes.bin
+ header: assets/bootdata/win1/yes.inc
+ header_type: symbol
+
+- symbol: no!.data:0x800B99C0
+ binary: assets/bootdata/win1/no.bin
+ header: assets/bootdata/win1/no.inc
+ header_type: symbol
+
+- symbol: att_win_waku1_tex!.data:0x800B9A40
+ binary: assets/bootdata/win1/att_win_waku1_tex.bin
+ header: assets/bootdata/win1/att_win_waku1_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku2_tex!.data:0x800B9E40
+ binary: assets/bootdata/win1/att_win_waku2_tex.bin
+ header: assets/bootdata/win1/att_win_waku2_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku3_tex!.data:0x800BA240
+ binary: assets/bootdata/win1/att_win_waku3_tex.bin
+ header: assets/bootdata/win1/att_win_waku3_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku4_tex!.data:0x800BA640
+ binary: assets/bootdata/win1/att_win_waku4_tex.bin
+ header: assets/bootdata/win1/att_win_waku4_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku5_tex!.data:0x800BAA40
+ binary: assets/bootdata/win1/att_win_waku5_tex.bin
+ header: assets/bootdata/win1/att_win_waku5_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku6_tex!.data:0x800BAE40
+ binary: assets/bootdata/win1/att_win_waku6_tex.bin
+ header: assets/bootdata/win1/att_win_waku6_tex.inc
+ header_type: symbol
+
+- symbol: gam_win1_v
+ binary: assets/bootdata/win1/gam_win1_v.bin
+ header: assets/bootdata/win1/gam_win1_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: gam_win_moji3_tex!.data:0x800BB500
+ binary: assets/bootdata/win2/gam_win_moji3_tex.bin
+ header: assets/bootdata/win2/gam_win_moji3_tex.inc
+ header_type: symbol
+
+- symbol: gam_win_moji4_tex
+ binary: assets/bootdata/win2/gam_win_moji4_tex.bin
+ header: assets/bootdata/win2/gam_win_moji4_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku1_tex!.data:0x800BBF00
+ binary: assets/bootdata/win2/att_win_waku1_tex.bin
+ header: assets/bootdata/win2/att_win_waku1_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku2_tex!.data:0x800BC300
+ binary: assets/bootdata/win2/att_win_waku2_tex.bin
+ header: assets/bootdata/win2/att_win_waku2_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku3_tex!.data:0x800BC700
+ binary: assets/bootdata/win2/att_win_waku3_tex.bin
+ header: assets/bootdata/win2/att_win_waku3_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku4_tex!.data:0x800BCB00
+ binary: assets/bootdata/win2/att_win_waku4_tex.bin
+ header: assets/bootdata/win2/att_win_waku4_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku5_tex!.data:0x800BCF00
+ binary: assets/bootdata/win2/att_win_waku5_tex.bin
+ header: assets/bootdata/win2/att_win_waku5_tex.inc
+ header_type: symbol
+
+- symbol: att_win_waku6_tex!.data:0x800BD300
+ binary: assets/bootdata/win2/att_win_waku6_tex.bin
+ header: assets/bootdata/win2/att_win_waku6_tex.inc
+ header_type: symbol
+
+- symbol: gam_win2_v
+ binary: assets/bootdata/win2/gam_win2_v.bin
+ header: assets/bootdata/win2/gam_win2_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: gam_win_moji3_tex!.data:0x800BD820
+ binary: assets/bootdata/win3/gam_win_moji3_tex.bin
+ header: assets/bootdata/win3/gam_win_moji3_tex.inc
+ header_type: symbol
+
+- symbol: gam_win_moji5_tex
+ binary: assets/bootdata/win3/gam_win_moji5_tex.bin
+ header: assets/bootdata/win3/gam_win_moji5_tex.inc
+ header_type: symbol
+
+- symbol: gam_win3_v
+ binary: assets/bootdata/win3/gam_win3_v.bin
+ header: assets/bootdata/win3/gam_win3_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: nintendo_376x104
+ binary: assets/bootdata/nintendo_376x104.bin
+ header: assets/bootdata/nintendo_376x104.inc
+ header_type: symbol
+
+- symbol: logo_nin_v
+ binary: assets/bootdata/logo_nin_v.bin
+ header: assets/bootdata/logo_nin_v.inc
+ header_type: none
+ custom_type: vtx
+
+- symbol: nintendo_hi_0
+ binary: assets/nintendo_hi_0.bin
+ header: assets/nintendo_hi_0.inc
+ header_type: symbol
+
+modules:
+- object: files/foresta.rel.szs
+ hash: C59D278AD8542BB05D6CBB632F60A0DB05BEF203
+ symbols: config/GAFE01_00/foresta/symbols.txt
+ splits: config/GAFE01_00/foresta/splits.txt
+ extract:
+ - symbol: con_waku_swaku3_tex
+ binary: assets/con_waku_swaku3_tex.bin
+ header: assets/con_waku_swaku3_tex.inc
+ header_type: raw
+
+ - symbol: con_sentaku2_v
+ binary: assets/con_sentaku2_v.bin
+ header: assets/con_sentaku2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: wipe1_v!.data:0x000055D0
+ binary: assets/wipe1_v.bin
+ header: assets/wipe1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: g_wipe1_txt
+ binary: assets/g_wipe1_txt.bin
+ header: assets/g_wipe1_txt.inc
+ header_type: raw
+
+ - symbol: con_kaiwa2_w1_tex
+ binary: assets/msg/con_kaiwa2_w1_tex.bin
+ header: assets/msg/con_kaiwa2_w1_tex.inc
+ header_type: raw
+
+ - symbol: con_kaiwa2_w2_tex
+ binary: assets/msg/con_kaiwa2_w2_tex.bin
+ header: assets/msg/con_kaiwa2_w2_tex.inc
+ header_type: raw
+
+ - symbol: con_kaiwa2_w3_tex
+ binary: assets/msg/con_kaiwa2_w3_tex.bin
+ header: assets/msg/con_kaiwa2_w3_tex.inc
+ header_type: raw
+
+ - symbol: con_kaiwa2_v
+ binary: assets/msg/con_kaiwa2_v.bin
+ header: assets/msg/con_kaiwa2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: con_namefuti_TXT
+ binary: assets/msg/con_namefuti_TXT.bin
+ header: assets/msg/con_namefuti_TXT.inc
+ header_type: raw
+
+ - symbol: con_kaiwaname_v
+ binary: assets/msg/con_kaiwaname_v.bin
+ header: assets/msg/con_kaiwaname_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: aBTD_island_prg
+ binary: assets/aBTD_island_prg.bin
+ header: assets/aBTD_island_prg.inc
+ header_type: raw
+
+ - symbol: aBTD_island_ldr
+ binary: assets/aBTD_island_ldr.bin
+ header: assets/aBTD_island_ldr.inc
+ header_type: raw
+
+ - symbol: mbg_v
+ binary: assets/mbg_v.bin
+ header: assets/mbg_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tol_sponge_1_v
+ binary: assets/tol_sponge_1_v.bin
+ header: assets/tol_sponge_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tol_sponge_1_pal
+ binary: assets/tol_sponge_1_pal.bin
+ header: assets/tol_sponge_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tol_sponge_1_main1_tex_txt
+ binary: assets/tol_sponge_1_main1_tex_txt.bin
+ header: assets/tol_sponge_1_main1_tex_txt.inc
+ header_type: raw
+
+ - symbol: aKOI_obj_e_koinobori_a_pal
+ binary: assets/aKOI_obj_e_koinobori_a_pal.bin
+ header: assets/aKOI_obj_e_koinobori_a_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_e_koinobori_b_pal
+ binary: assets/obj_e_koinobori_b_pal.bin
+ header: assets/obj_e_koinobori_b_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: aLOT_obj_01_lotus_pal
+ binary: assets/aLOT_obj_01_lotus_pal.bin
+ header: assets/aLOT_obj_01_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_02_lotus_pal
+ binary: assets/obj_02_lotus_pal.bin
+ header: assets/obj_02_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_03_lotus_pal
+ binary: assets/obj_03_lotus_pal.bin
+ header: assets/obj_03_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_04_lotus_pal
+ binary: assets/obj_04_lotus_pal.bin
+ header: assets/obj_04_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_05_lotus_pal
+ binary: assets/obj_05_lotus_pal.bin
+ header: assets/obj_05_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_06_lotus_pal
+ binary: assets/obj_06_lotus_pal.bin
+ header: assets/obj_06_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_07_lotus_pal
+ binary: assets/obj_07_lotus_pal.bin
+ header: assets/obj_07_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_08_lotus_pal
+ binary: assets/obj_08_lotus_pal.bin
+ header: assets/obj_08_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: obj_09_lotus_pal
+ binary: assets/obj_09_lotus_pal.bin
+ header: assets/obj_09_lotus_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ef_coin_gold_pal
+ binary: assets/ef_coin_gold_pal.bin
+ header: assets/ef_coin_gold_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ef_coin_silver_pal
+ binary: assets/ef_coin_silver_pal.bin
+ header: assets/ef_coin_silver_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_kamakura_off_pal
+ binary: assets/int_nog_kamakura_off_pal.bin
+ header: assets/int_nog_kamakura_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_kamakura_on_pal
+ binary: assets/int_nog_kamakura_on_pal.bin
+ header: assets/int_nog_kamakura_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_kouban_on_pal
+ binary: assets/int_nog_kouban_on_pal.bin
+ header: assets/int_nog_kouban_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_kouban_off_pal
+ binary: assets/int_nog_kouban_off_pal.bin
+ header: assets/int_nog_kouban_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_museum_off_pal
+ binary: assets/int_nog_museum_off_pal.bin
+ header: assets/int_nog_museum_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_museum_on_pal
+ binary: assets/int_nog_museum_on_pal.bin
+ header: assets/int_nog_museum_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station1_a_pal
+ binary: assets/int_nog_station1_a_pal.bin
+ header: assets/int_nog_station1_a_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station1_b_pal
+ binary: assets/int_nog_station1_b_pal.bin
+ header: assets/int_nog_station1_b_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station1_c_pal
+ binary: assets/int_nog_station1_c_pal.bin
+ header: assets/int_nog_station1_c_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station1_d_pal
+ binary: assets/int_nog_station1_d_pal.bin
+ header: assets/int_nog_station1_d_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station1_e_pal
+ binary: assets/int_nog_station1_e_pal.bin
+ header: assets/int_nog_station1_e_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station2_a_pal
+ binary: assets/int_nog_station2_a_pal.bin
+ header: assets/int_nog_station2_a_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station2_b_pal
+ binary: assets/int_nog_station2_b_pal.bin
+ header: assets/int_nog_station2_b_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station2_c_pal
+ binary: assets/int_nog_station2_c_pal.bin
+ header: assets/int_nog_station2_c_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station2_d_pal
+ binary: assets/int_nog_station2_d_pal.bin
+ header: assets/int_nog_station2_d_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station2_e_pal
+ binary: assets/int_nog_station2_e_pal.bin
+ header: assets/int_nog_station2_e_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station3_a_pal
+ binary: assets/int_nog_station3_a_pal.bin
+ header: assets/int_nog_station3_a_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station3_b_pal
+ binary: assets/int_nog_station3_b_pal.bin
+ header: assets/int_nog_station3_b_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station3_c_pal
+ binary: assets/int_nog_station3_c_pal.bin
+ header: assets/int_nog_station3_c_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station3_d_pal
+ binary: assets/int_nog_station3_d_pal.bin
+ header: assets/int_nog_station3_d_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_station3_e_pal
+ binary: assets/int_nog_station3_e_pal.bin
+ header: assets/int_nog_station3_e_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_shop1_on_pal
+ binary: assets/int_nog_shop1_on_pal.bin
+ header: assets/int_nog_shop1_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_shop1_off_pal
+ binary: assets/int_nog_shop1_off_pal.bin
+ header: assets/int_nog_shop1_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_uranai_off_pal
+ binary: assets/int_nog_uranai_off_pal.bin
+ header: assets/int_nog_uranai_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_uranai_on_pal
+ binary: assets/int_nog_uranai_on_pal.bin
+ header: assets/int_nog_uranai_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_yamishop_off_pal
+ binary: assets/int_nog_yamishop_off_pal.bin
+ header: assets/int_nog_yamishop_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_yamishop_on_pal
+ binary: assets/int_nog_yamishop_on_pal.bin
+ header: assets/int_nog_yamishop_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_yubin_on_pal
+ binary: assets/int_nog_yubin_on_pal.bin
+ header: assets/int_nog_yubin_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_yubin_off_pal
+ binary: assets/int_nog_yubin_off_pal.bin
+ header: assets/int_nog_yubin_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_tak_tailor_on_pal
+ binary: assets/int_tak_tailor_on_pal.bin
+ header: assets/int_tak_tailor_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_tak_tailor_off_pal
+ binary: assets/int_tak_tailor_off_pal.bin
+ header: assets/int_tak_tailor_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: radio_pal$6603
+ binary: assets/radio_pal.bin
+ header: assets/radio_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_yaz_fish_trophy_pal
+ binary: assets/int_yaz_fish_trophy_pal.bin
+ header: assets/int_yaz_fish_trophy_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_tak_tent_on_pal
+ binary: assets/int_tak_tent_on_pal.bin
+ header: assets/int_tak_tent_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_tak_tent_off_pal
+ binary: assets/int_tak_tent_off_pal.bin
+ header: assets/int_tak_tent_off_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_yaz_fish_trophy2_pal
+ binary: assets/int_yaz_fish_trophy2_pal.bin
+ header: assets/int_yaz_fish_trophy2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_flower_a_pal
+ binary: assets/int_nog_flower_a_pal.bin
+ header: assets/int_nog_flower_a_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_flower_b_pal
+ binary: assets/int_nog_flower_b_pal.bin
+ header: assets/int_nog_flower_b_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: int_nog_flower_c_pal
+ binary: assets/int_nog_flower_c_pal.bin
+ header: assets/int_nog_flower_c_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bev_1_v
+ binary: assets/npc/mdl/bev_1_v.bin
+ header: assets/npc/mdl/bev_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: bev_1_pal
+ binary: assets/npc/tex/bev_1_pal.bin
+ header: assets/npc/tex/bev_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bev_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/bev_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bev_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bev_1_tmem_txt
+ binary: assets/npc/tex/bev_1_tmem_txt.bin
+ header: assets/npc/tex/bev_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_v
+ binary: assets/npc/mdl/ant_1_v.bin
+ header: assets/npc/mdl/ant_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: ant_1_pal
+ binary: assets/npc/tex/ant_1_pal.bin
+ header: assets/npc/tex/ant_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ant_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/ant_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ant_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_1_tmem_txt
+ binary: assets/npc/tex/ant_1_tmem_txt.bin
+ header: assets/npc/tex/ant_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_pal
+ binary: assets/npc/tex/ant_2_pal.bin
+ header: assets/npc/tex/ant_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ant_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/ant_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ant_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_2_tmem_txt
+ binary: assets/npc/tex/ant_2_tmem_txt.bin
+ header: assets/npc/tex/ant_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_pal
+ binary: assets/npc/tex/ant_3_pal.bin
+ header: assets/npc/tex/ant_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ant_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/ant_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ant_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_3_tmem_txt
+ binary: assets/npc/tex/ant_3_tmem_txt.bin
+ header: assets/npc/tex/ant_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_pal
+ binary: assets/npc/tex/ant_4_pal.bin
+ header: assets/npc/tex/ant_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ant_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/ant_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ant_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_4_tmem_txt
+ binary: assets/npc/tex/ant_4_tmem_txt.bin
+ header: assets/npc/tex/ant_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_pal
+ binary: assets/npc/tex/ant_5_pal.bin
+ header: assets/npc/tex/ant_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ant_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/ant_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ant_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ant_5_tmem_txt
+ binary: assets/npc/tex/ant_5_tmem_txt.bin
+ header: assets/npc/tex/ant_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_v
+ binary: assets/npc/mdl/wls_1_v.bin
+ header: assets/npc/mdl/wls_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: wls_1_pal
+ binary: assets/npc/tex/wls_1_pal.bin
+ header: assets/npc/tex/wls_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wls_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/wls_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wls_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wls_1_tmem_txt
+ binary: assets/npc/tex/wls_1_tmem_txt.bin
+ header: assets/npc/tex/wls_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_v
+ binary: assets/npc/mdl/bea_1_v.bin
+ header: assets/npc/mdl/bea_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: bea_1_pal
+ binary: assets/npc/tex/bea_1_pal.bin
+ header: assets/npc/tex/bea_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_1_tmem_txt
+ binary: assets/npc/tex/bea_1_tmem_txt.bin
+ header: assets/npc/tex/bea_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_pal
+ binary: assets/npc/tex/bea_2_pal.bin
+ header: assets/npc/tex/bea_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_2_tmem_txt
+ binary: assets/npc/tex/bea_2_tmem_txt.bin
+ header: assets/npc/tex/bea_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_pal
+ binary: assets/npc/tex/bea_3_pal.bin
+ header: assets/npc/tex/bea_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_3_tmem_txt
+ binary: assets/npc/tex/bea_3_tmem_txt.bin
+ header: assets/npc/tex/bea_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_pal
+ binary: assets/npc/tex/bea_5_pal.bin
+ header: assets/npc/tex/bea_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_5_tmem_txt
+ binary: assets/npc/tex/bea_5_tmem_txt.bin
+ header: assets/npc/tex/bea_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_pal
+ binary: assets/npc/tex/bea_6_pal.bin
+ header: assets/npc/tex/bea_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_6_tmem_txt
+ binary: assets/npc/tex/bea_6_tmem_txt.bin
+ header: assets/npc/tex/bea_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_pal
+ binary: assets/npc/tex/bea_7_pal.bin
+ header: assets/npc/tex/bea_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_7_tmem_txt
+ binary: assets/npc/tex/bea_7_tmem_txt.bin
+ header: assets/npc/tex/bea_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_pal
+ binary: assets/npc/tex/bea_8_pal.bin
+ header: assets/npc/tex/bea_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_8_tmem_txt
+ binary: assets/npc/tex/bea_8_tmem_txt.bin
+ header: assets/npc/tex/bea_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_pal
+ binary: assets/npc/tex/bea_9_pal.bin
+ header: assets/npc/tex/bea_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_9_tmem_txt
+ binary: assets/npc/tex/bea_9_tmem_txt.bin
+ header: assets/npc/tex/bea_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_pal
+ binary: assets/npc/tex/bea_10_pal.bin
+ header: assets/npc/tex/bea_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bea_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/bea_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bea_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bea_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bea_10_tmem_txt
+ binary: assets/npc/tex/bea_10_tmem_txt.bin
+ header: assets/npc/tex/bea_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: obj_flower_tex!.data:0x00102980
+ binary: assets/flower/obj_flower_tex.bin
+ header: assets/flower/obj_flower_tex.inc
+ header_type: raw
+
+ - symbol: obj_flower_a_v
+ binary: assets/flower/obj_flower_a_v.bin
+ header: assets/flower/obj_flower_a_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: obj_flower_b_v
+ binary: assets/flower/obj_flower_b_v.bin
+ header: assets/flower/obj_flower_b_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: obj_flower_c_v
+ binary: assets/flower/obj_flower_c_v.bin
+ header: assets/flower/obj_flower_c_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: obj_flower_tex!.data:0x001033C0
+ binary: assets/flower/obj_flower_leaf_tex.bin
+ header: assets/flower/obj_flower_leaf_tex.inc
+ header_type: raw
+
+ - symbol: obj_flower_leaf_v
+ binary: assets/flower/obj_flower_leaf_v.bin
+ header: assets/flower/obj_flower_leaf_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pbr_1_v
+ binary: assets/npc/mdl/pbr_1_v.bin
+ header: assets/npc/mdl/pbr_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pbr_1_pal
+ binary: assets/npc/tex/pbr_1_pal.bin
+ header: assets/npc/tex/pbr_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pbr_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pbr_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_1_tmem_txt
+ binary: assets/npc/tex/pbr_1_tmem_txt.bin
+ header: assets/npc/tex/pbr_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_pal
+ binary: assets/npc/tex/pbr_2_pal.bin
+ header: assets/npc/tex/pbr_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pbr_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/pbr_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_2_tmem_txt
+ binary: assets/npc/tex/pbr_2_tmem_txt.bin
+ header: assets/npc/tex/pbr_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_pal
+ binary: assets/npc/tex/pbr_3_pal.bin
+ header: assets/npc/tex/pbr_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pbr_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/pbr_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_3_tmem_txt
+ binary: assets/npc/tex/pbr_3_tmem_txt.bin
+ header: assets/npc/tex/pbr_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_pal
+ binary: assets/npc/tex/pbr_4_pal.bin
+ header: assets/npc/tex/pbr_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pbr_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/pbr_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_4_tmem_txt
+ binary: assets/npc/tex/pbr_4_tmem_txt.bin
+ header: assets/npc/tex/pbr_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_pal
+ binary: assets/npc/tex/pbr_5_pal.bin
+ header: assets/npc/tex/pbr_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pbr_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/pbr_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pbr_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pbr_5_tmem_txt
+ binary: assets/npc/tex/pbr_5_tmem_txt.bin
+ header: assets/npc/tex/pbr_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_v
+ binary: assets/npc/mdl/brd_1_v.bin
+ header: assets/npc/mdl/brd_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: brd_1_pal
+ binary: assets/npc/tex/brd_1_pal.bin
+ header: assets/npc/tex/brd_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_1_tmem_txt
+ binary: assets/npc/tex/brd_1_tmem_txt.bin
+ header: assets/npc/tex/brd_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_pal
+ binary: assets/npc/tex/brd_2_pal.bin
+ header: assets/npc/tex/brd_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_2_tmem_txt
+ binary: assets/npc/tex/brd_2_tmem_txt.bin
+ header: assets/npc/tex/brd_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_pal
+ binary: assets/npc/tex/brd_11_pal.bin
+ header: assets/npc/tex/brd_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_11_tmem_txt
+ binary: assets/npc/tex/brd_11_tmem_txt.bin
+ header: assets/npc/tex/brd_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_pal
+ binary: assets/npc/tex/brd_3_pal.bin
+ header: assets/npc/tex/brd_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_3_tmem_txt
+ binary: assets/npc/tex/brd_3_tmem_txt.bin
+ header: assets/npc/tex/brd_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_pal
+ binary: assets/npc/tex/brd_4_pal.bin
+ header: assets/npc/tex/brd_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_4_tmem_txt
+ binary: assets/npc/tex/brd_4_tmem_txt.bin
+ header: assets/npc/tex/brd_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_pal
+ binary: assets/npc/tex/brd_5_pal.bin
+ header: assets/npc/tex/brd_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_5_tmem_txt
+ binary: assets/npc/tex/brd_5_tmem_txt.bin
+ header: assets/npc/tex/brd_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_pal
+ binary: assets/npc/tex/brd_6_pal.bin
+ header: assets/npc/tex/brd_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_6_tmem_txt
+ binary: assets/npc/tex/brd_6_tmem_txt.bin
+ header: assets/npc/tex/brd_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_pal
+ binary: assets/npc/tex/brd_7_pal.bin
+ header: assets/npc/tex/brd_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_7_tmem_txt
+ binary: assets/npc/tex/brd_7_tmem_txt.bin
+ header: assets/npc/tex/brd_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_pal
+ binary: assets/npc/tex/brd_8_pal.bin
+ header: assets/npc/tex/brd_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_8_tmem_txt
+ binary: assets/npc/tex/brd_8_tmem_txt.bin
+ header: assets/npc/tex/brd_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_pal
+ binary: assets/npc/tex/brd_9_pal.bin
+ header: assets/npc/tex/brd_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_9_tmem_txt
+ binary: assets/npc/tex/brd_9_tmem_txt.bin
+ header: assets/npc/tex/brd_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_pal
+ binary: assets/npc/tex/brd_10_pal.bin
+ header: assets/npc/tex/brd_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: brd_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/brd_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/brd_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: brd_10_tmem_txt
+ binary: assets/npc/tex/brd_10_tmem_txt.bin
+ header: assets/npc/tex/brd_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_v
+ binary: assets/npc/mdl/fox_1_v.bin
+ header: assets/npc/mdl/fox_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: fox_1_pal
+ binary: assets/npc/tex/fox_1_pal.bin
+ header: assets/npc/tex/fox_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: fox_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/fox_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/fox_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fox_1_tmem_txt
+ binary: assets/npc/tex/fox_1_tmem_txt.bin
+ header: assets/npc/tex/fox_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_v
+ binary: assets/npc/mdl/bul_1_v.bin
+ header: assets/npc/mdl/bul_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: bul_1_pal
+ binary: assets/npc/tex/bul_1_pal.bin
+ header: assets/npc/tex/bul_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bul_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/bul_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bul_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_1_tmem_txt
+ binary: assets/npc/tex/bul_1_tmem_txt.bin
+ header: assets/npc/tex/bul_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_pal
+ binary: assets/npc/tex/bul_2_pal.bin
+ header: assets/npc/tex/bul_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bul_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/bul_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bul_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_2_tmem_txt
+ binary: assets/npc/tex/bul_2_tmem_txt.bin
+ header: assets/npc/tex/bul_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_pal
+ binary: assets/npc/tex/bul_3_pal.bin
+ header: assets/npc/tex/bul_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bul_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/bul_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bul_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_3_tmem_txt
+ binary: assets/npc/tex/bul_3_tmem_txt.bin
+ header: assets/npc/tex/bul_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_pal
+ binary: assets/npc/tex/bul_4_pal.bin
+ header: assets/npc/tex/bul_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bul_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/bul_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/bul_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/bul_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bul_4_tmem_txt
+ binary: assets/npc/tex/bul_4_tmem_txt.bin
+ header: assets/npc/tex/bul_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_v
+ binary: assets/npc/mdl/cml_1_v.bin
+ header: assets/npc/mdl/cml_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: cml_1_pal
+ binary: assets/npc/tex/cml_1_pal.bin
+ header: assets/npc/tex/cml_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cml_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/cml_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cml_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cml_1_tmem_txt
+ binary: assets/npc/tex/cml_1_tmem_txt.bin
+ header: assets/npc/tex/cml_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_v
+ binary: assets/npc/mdl/cat_1_v.bin
+ header: assets/npc/mdl/cat_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: cat_1_pal
+ binary: assets/npc/tex/cat_1_pal.bin
+ header: assets/npc/tex/cat_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_1_tmem_txt
+ binary: assets/npc/tex/cat_1_tmem_txt.bin
+ header: assets/npc/tex/cat_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_pal
+ binary: assets/npc/tex/cat_2_pal.bin
+ header: assets/npc/tex/cat_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_2_tmem_txt
+ binary: assets/npc/tex/cat_2_tmem_txt.bin
+ header: assets/npc/tex/cat_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_pal
+ binary: assets/npc/tex/cat_11_pal.bin
+ header: assets/npc/tex/cat_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_11_tmem_txt
+ binary: assets/npc/tex/cat_11_tmem_txt.bin
+ header: assets/npc/tex/cat_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_pal
+ binary: assets/npc/tex/cat_12_pal.bin
+ header: assets/npc/tex/cat_12_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_12_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_12_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_12_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_12_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_12_tmem_txt
+ binary: assets/npc/tex/cat_12_tmem_txt.bin
+ header: assets/npc/tex/cat_12_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_pal
+ binary: assets/npc/tex/cat_13_pal.bin
+ header: assets/npc/tex/cat_13_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_13_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_13_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_13_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_13_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_13_tmem_txt
+ binary: assets/npc/tex/cat_13_tmem_txt.bin
+ header: assets/npc/tex/cat_13_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_pal
+ binary: assets/npc/tex/cat_14_pal.bin
+ header: assets/npc/tex/cat_14_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_14_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_14_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_14_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_14_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_14_tmem_txt
+ binary: assets/npc/tex/cat_14_tmem_txt.bin
+ header: assets/npc/tex/cat_14_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_pal
+ binary: assets/npc/tex/cat_15_pal.bin
+ header: assets/npc/tex/cat_15_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_15_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_15_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_15_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_15_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_15_tmem_txt
+ binary: assets/npc/tex/cat_15_tmem_txt.bin
+ header: assets/npc/tex/cat_15_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_pal
+ binary: assets/npc/tex/cat_3_pal.bin
+ header: assets/npc/tex/cat_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_3_tmem_txt
+ binary: assets/npc/tex/cat_3_tmem_txt.bin
+ header: assets/npc/tex/cat_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_pal
+ binary: assets/npc/tex/cat_4_pal.bin
+ header: assets/npc/tex/cat_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_4_tmem_txt
+ binary: assets/npc/tex/cat_4_tmem_txt.bin
+ header: assets/npc/tex/cat_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_pal
+ binary: assets/npc/tex/cat_5_pal.bin
+ header: assets/npc/tex/cat_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_5_tmem_txt
+ binary: assets/npc/tex/cat_5_tmem_txt.bin
+ header: assets/npc/tex/cat_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_pal
+ binary: assets/npc/tex/cat_6_pal.bin
+ header: assets/npc/tex/cat_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_6_tmem_txt
+ binary: assets/npc/tex/cat_6_tmem_txt.bin
+ header: assets/npc/tex/cat_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_pal
+ binary: assets/npc/tex/cat_7_pal.bin
+ header: assets/npc/tex/cat_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_7_tmem_txt
+ binary: assets/npc/tex/cat_7_tmem_txt.bin
+ header: assets/npc/tex/cat_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_pal
+ binary: assets/npc/tex/cat_8_pal.bin
+ header: assets/npc/tex/cat_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_8_tmem_txt
+ binary: assets/npc/tex/cat_8_tmem_txt.bin
+ header: assets/npc/tex/cat_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_pal
+ binary: assets/npc/tex/cat_9_pal.bin
+ header: assets/npc/tex/cat_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_9_tmem_txt
+ binary: assets/npc/tex/cat_9_tmem_txt.bin
+ header: assets/npc/tex/cat_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_pal
+ binary: assets/npc/tex/cat_10_pal.bin
+ header: assets/npc/tex/cat_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cat_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/cat_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cat_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cat_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cat_10_tmem_txt
+ binary: assets/npc/tex/cat_10_tmem_txt.bin
+ header: assets/npc/tex/cat_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_v
+ binary: assets/npc/mdl/chn_1_v.bin
+ header: assets/npc/mdl/chn_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: chn_1_pal
+ binary: assets/npc/tex/chn_1_pal.bin
+ header: assets/npc/tex/chn_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_1_tmem_txt
+ binary: assets/npc/tex/chn_1_tmem_txt.bin
+ header: assets/npc/tex/chn_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_pal
+ binary: assets/npc/tex/chn_2_pal.bin
+ header: assets/npc/tex/chn_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_2_tmem_txt
+ binary: assets/npc/tex/chn_2_tmem_txt.bin
+ header: assets/npc/tex/chn_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_pal
+ binary: assets/npc/tex/chn_3_pal.bin
+ header: assets/npc/tex/chn_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_3_tmem_txt
+ binary: assets/npc/tex/chn_3_tmem_txt.bin
+ header: assets/npc/tex/chn_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_pal
+ binary: assets/npc/tex/chn_4_pal.bin
+ header: assets/npc/tex/chn_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_4_tmem_txt
+ binary: assets/npc/tex/chn_4_tmem_txt.bin
+ header: assets/npc/tex/chn_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_pal
+ binary: assets/npc/tex/chn_5_pal.bin
+ header: assets/npc/tex/chn_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_5_tmem_txt
+ binary: assets/npc/tex/chn_5_tmem_txt.bin
+ header: assets/npc/tex/chn_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_pal
+ binary: assets/npc/tex/chn_6_pal.bin
+ header: assets/npc/tex/chn_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_6_tmem_txt
+ binary: assets/npc/tex/chn_6_tmem_txt.bin
+ header: assets/npc/tex/chn_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_pal
+ binary: assets/npc/tex/chn_7_pal.bin
+ header: assets/npc/tex/chn_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_7_tmem_txt
+ binary: assets/npc/tex/chn_7_tmem_txt.bin
+ header: assets/npc/tex/chn_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_pal
+ binary: assets/npc/tex/chn_8_pal.bin
+ header: assets/npc/tex/chn_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_8_tmem_txt
+ binary: assets/npc/tex/chn_8_tmem_txt.bin
+ header: assets/npc/tex/chn_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_pal
+ binary: assets/npc/tex/chn_9_pal.bin
+ header: assets/npc/tex/chn_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: chn_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/chn_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/chn_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: chn_9_tmem_txt
+ binary: assets/npc/tex/chn_9_tmem_txt.bin
+ header: assets/npc/tex/chn_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_v
+ binary: assets/npc/mdl/cbr_1_v.bin
+ header: assets/npc/mdl/cbr_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: cbr_1_pal
+ binary: assets/npc/tex/cbr_1_pal.bin
+ header: assets/npc/tex/cbr_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_1_tmem_txt
+ binary: assets/npc/tex/cbr_1_tmem_txt.bin
+ header: assets/npc/tex/cbr_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_pal
+ binary: assets/npc/tex/cbr_2_pal.bin
+ header: assets/npc/tex/cbr_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_2_tmem_txt
+ binary: assets/npc/tex/cbr_2_tmem_txt.bin
+ header: assets/npc/tex/cbr_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_pal
+ binary: assets/npc/tex/cbr_11_pal.bin
+ header: assets/npc/tex/cbr_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_11_tmem_txt
+ binary: assets/npc/tex/cbr_11_tmem_txt.bin
+ header: assets/npc/tex/cbr_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_pal
+ binary: assets/npc/tex/cbr_3_pal.bin
+ header: assets/npc/tex/cbr_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_3_tmem_txt
+ binary: assets/npc/tex/cbr_3_tmem_txt.bin
+ header: assets/npc/tex/cbr_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_pal
+ binary: assets/npc/tex/cbr_4_pal.bin
+ header: assets/npc/tex/cbr_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_4_tmem_txt
+ binary: assets/npc/tex/cbr_4_tmem_txt.bin
+ header: assets/npc/tex/cbr_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_pal
+ binary: assets/npc/tex/cbr_5_pal.bin
+ header: assets/npc/tex/cbr_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_5_tmem_txt
+ binary: assets/npc/tex/cbr_5_tmem_txt.bin
+ header: assets/npc/tex/cbr_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_pal
+ binary: assets/npc/tex/cbr_6_pal.bin
+ header: assets/npc/tex/cbr_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_6_tmem_txt
+ binary: assets/npc/tex/cbr_6_tmem_txt.bin
+ header: assets/npc/tex/cbr_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_pal
+ binary: assets/npc/tex/cbr_7_pal.bin
+ header: assets/npc/tex/cbr_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_7_tmem_txt
+ binary: assets/npc/tex/cbr_7_tmem_txt.bin
+ header: assets/npc/tex/cbr_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_pal
+ binary: assets/npc/tex/cbr_8_pal.bin
+ header: assets/npc/tex/cbr_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_8_tmem_txt
+ binary: assets/npc/tex/cbr_8_tmem_txt.bin
+ header: assets/npc/tex/cbr_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_pal
+ binary: assets/npc/tex/cbr_9_pal.bin
+ header: assets/npc/tex/cbr_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_9_tmem_txt
+ binary: assets/npc/tex/cbr_9_tmem_txt.bin
+ header: assets/npc/tex/cbr_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_pal
+ binary: assets/npc/tex/cbr_10_pal.bin
+ header: assets/npc/tex/cbr_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cbr_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cbr_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cbr_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cbr_10_tmem_txt
+ binary: assets/npc/tex/cbr_10_tmem_txt.bin
+ header: assets/npc/tex/cbr_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_v
+ binary: assets/npc/mdl/rcc_1_v.bin
+ header: assets/npc/mdl/rcc_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rcc_1_pal
+ binary: assets/npc/tex/rcc_1_pal.bin
+ header: assets/npc/tex/rcc_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rcc_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rcc_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rcc_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcc_1_tmem_txt
+ binary: assets/npc/tex/rcc_1_tmem_txt.bin
+ header: assets/npc/tex/rcc_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_v
+ binary: assets/npc/mdl/cow_1_v.bin
+ header: assets/npc/mdl/cow_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: cow_1_pal
+ binary: assets/npc/tex/cow_1_pal.bin
+ header: assets/npc/tex/cow_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cow_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/cow_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cow_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_1_tmem_txt
+ binary: assets/npc/tex/cow_1_tmem_txt.bin
+ header: assets/npc/tex/cow_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_pal
+ binary: assets/npc/tex/cow_2_pal.bin
+ header: assets/npc/tex/cow_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cow_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/cow_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cow_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_2_tmem_txt
+ binary: assets/npc/tex/cow_2_tmem_txt.bin
+ header: assets/npc/tex/cow_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_pal
+ binary: assets/npc/tex/cow_3_pal.bin
+ header: assets/npc/tex/cow_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cow_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/cow_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cow_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_3_tmem_txt
+ binary: assets/npc/tex/cow_3_tmem_txt.bin
+ header: assets/npc/tex/cow_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_pal
+ binary: assets/npc/tex/cow_4_pal.bin
+ header: assets/npc/tex/cow_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: cow_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/cow_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/cow_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/cow_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: cow_4_tmem_txt
+ binary: assets/npc/tex/cow_4_tmem_txt.bin
+ header: assets/npc/tex/cow_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_v
+ binary: assets/npc/mdl/crd_1_v.bin
+ header: assets/npc/mdl/crd_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: crd_1_pal
+ binary: assets/npc/tex/crd_1_pal.bin
+ header: assets/npc/tex/crd_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: crd_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/crd_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/crd_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_1_tmem_txt
+ binary: assets/npc/tex/crd_1_tmem_txt.bin
+ header: assets/npc/tex/crd_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_pal
+ binary: assets/npc/tex/crd_2_pal.bin
+ header: assets/npc/tex/crd_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: crd_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/crd_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/crd_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_2_tmem_txt
+ binary: assets/npc/tex/crd_2_tmem_txt.bin
+ header: assets/npc/tex/crd_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_pal
+ binary: assets/npc/tex/crd_3_pal.bin
+ header: assets/npc/tex/crd_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: crd_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/crd_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/crd_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_3_tmem_txt
+ binary: assets/npc/tex/crd_3_tmem_txt.bin
+ header: assets/npc/tex/crd_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_pal
+ binary: assets/npc/tex/crd_4_pal.bin
+ header: assets/npc/tex/crd_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: crd_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/crd_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/crd_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: crd_4_tmem_txt
+ binary: assets/npc/tex/crd_4_tmem_txt.bin
+ header: assets/npc/tex/crd_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_v
+ binary: assets/npc/mdl/owl_1_v.bin
+ header: assets/npc/mdl/owl_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: owl_1_pal
+ binary: assets/npc/tex/owl_1_pal.bin
+ header: assets/npc/tex/owl_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: owl_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/owl_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/owl_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: owl_1_tmem_txt
+ binary: assets/npc/tex/owl_1_tmem_txt.bin
+ header: assets/npc/tex/owl_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_v
+ binary: assets/npc/mdl/rcd_1_v.bin
+ header: assets/npc/mdl/rcd_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rcd_1_pal
+ binary: assets/npc/tex/rcd_1_pal.bin
+ header: assets/npc/tex/rcd_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rcd_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rcd_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rcd_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcd_1_tmem_txt
+ binary: assets/npc/tex/rcd_1_tmem_txt.bin
+ header: assets/npc/tex/rcd_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_v
+ binary: assets/npc/mdl/grf_1_v.bin
+ header: assets/npc/mdl/grf_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grf_1_pal
+ binary: assets/npc/tex/grf_1_pal.bin
+ header: assets/npc/tex/grf_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: grf_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/grf_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/grf_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: grf_1_tmem_txt
+ binary: assets/npc/tex/grf_1_tmem_txt.bin
+ header: assets/npc/tex/grf_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_v
+ binary: assets/npc/mdl/dog_1_v.bin
+ header: assets/npc/mdl/dog_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: dog_1_pal
+ binary: assets/npc/tex/dog_1_pal.bin
+ header: assets/npc/tex/dog_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_1_tmem_txt
+ binary: assets/npc/tex/dog_1_tmem_txt.bin
+ header: assets/npc/tex/dog_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_pal
+ binary: assets/npc/tex/dog_2_pal.bin
+ header: assets/npc/tex/dog_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_2_tmem_txt
+ binary: assets/npc/tex/dog_2_tmem_txt.bin
+ header: assets/npc/tex/dog_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_pal
+ binary: assets/npc/tex/dog_3_pal.bin
+ header: assets/npc/tex/dog_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_3_tmem_txt
+ binary: assets/npc/tex/dog_3_tmem_txt.bin
+ header: assets/npc/tex/dog_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_pal
+ binary: assets/npc/tex/dog_4_pal.bin
+ header: assets/npc/tex/dog_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_4_tmem_txt
+ binary: assets/npc/tex/dog_4_tmem_txt.bin
+ header: assets/npc/tex/dog_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_pal
+ binary: assets/npc/tex/dog_5_pal.bin
+ header: assets/npc/tex/dog_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_5_tmem_txt
+ binary: assets/npc/tex/dog_5_tmem_txt.bin
+ header: assets/npc/tex/dog_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_pal
+ binary: assets/npc/tex/dog_6_pal.bin
+ header: assets/npc/tex/dog_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_6_tmem_txt
+ binary: assets/npc/tex/dog_6_tmem_txt.bin
+ header: assets/npc/tex/dog_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_pal
+ binary: assets/npc/tex/dog_7_pal.bin
+ header: assets/npc/tex/dog_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_7_tmem_txt
+ binary: assets/npc/tex/dog_7_tmem_txt.bin
+ header: assets/npc/tex/dog_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_pal
+ binary: assets/npc/tex/dog_8_pal.bin
+ header: assets/npc/tex/dog_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_8_tmem_txt
+ binary: assets/npc/tex/dog_8_tmem_txt.bin
+ header: assets/npc/tex/dog_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_pal
+ binary: assets/npc/tex/dog_9_pal.bin
+ header: assets/npc/tex/dog_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_9_tmem_txt
+ binary: assets/npc/tex/dog_9_tmem_txt.bin
+ header: assets/npc/tex/dog_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_pal
+ binary: assets/npc/tex/dog_10_pal.bin
+ header: assets/npc/tex/dog_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: dog_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/dog_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/dog_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/dog_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: dog_10_tmem_txt
+ binary: assets/npc/tex/dog_10_tmem_txt.bin
+ header: assets/npc/tex/dog_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_v
+ binary: assets/npc/mdl/seg_1_v.bin
+ header: assets/npc/mdl/seg_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: seg_1_pal
+ binary: assets/npc/tex/seg_1_pal.bin
+ header: assets/npc/tex/seg_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: seg_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/seg_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/seg_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: seg_1_tmem_txt
+ binary: assets/npc/tex/seg_1_tmem_txt.bin
+ header: assets/npc/tex/seg_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_v
+ binary: assets/npc/mdl/duk_1_v.bin
+ header: assets/npc/mdl/duk_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: duk_1_pal
+ binary: assets/npc/tex/duk_1_pal.bin
+ header: assets/npc/tex/duk_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_1_tmem_txt
+ binary: assets/npc/tex/duk_1_tmem_txt.bin
+ header: assets/npc/tex/duk_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_pal
+ binary: assets/npc/tex/duk_2_pal.bin
+ header: assets/npc/tex/duk_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_2_tmem_txt
+ binary: assets/npc/tex/duk_2_tmem_txt.bin
+ header: assets/npc/tex/duk_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_pal
+ binary: assets/npc/tex/duk_11_pal.bin
+ header: assets/npc/tex/duk_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_11_tmem_txt
+ binary: assets/npc/tex/duk_11_tmem_txt.bin
+ header: assets/npc/tex/duk_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_pal
+ binary: assets/npc/tex/duk_3_pal.bin
+ header: assets/npc/tex/duk_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_3_tmem_txt
+ binary: assets/npc/tex/duk_3_tmem_txt.bin
+ header: assets/npc/tex/duk_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_pal
+ binary: assets/npc/tex/duk_4_pal.bin
+ header: assets/npc/tex/duk_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_4_tmem_txt
+ binary: assets/npc/tex/duk_4_tmem_txt.bin
+ header: assets/npc/tex/duk_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_pal
+ binary: assets/npc/tex/duk_5_pal.bin
+ header: assets/npc/tex/duk_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_5_tmem_txt
+ binary: assets/npc/tex/duk_5_tmem_txt.bin
+ header: assets/npc/tex/duk_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_pal
+ binary: assets/npc/tex/duk_6_pal.bin
+ header: assets/npc/tex/duk_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_6_tmem_txt
+ binary: assets/npc/tex/duk_6_tmem_txt.bin
+ header: assets/npc/tex/duk_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_pal
+ binary: assets/npc/tex/duk_7_pal.bin
+ header: assets/npc/tex/duk_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_7_tmem_txt
+ binary: assets/npc/tex/duk_7_tmem_txt.bin
+ header: assets/npc/tex/duk_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_pal
+ binary: assets/npc/tex/duk_8_pal.bin
+ header: assets/npc/tex/duk_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_8_tmem_txt
+ binary: assets/npc/tex/duk_8_tmem_txt.bin
+ header: assets/npc/tex/duk_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_pal
+ binary: assets/npc/tex/duk_9_pal.bin
+ header: assets/npc/tex/duk_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_9_tmem_txt
+ binary: assets/npc/tex/duk_9_tmem_txt.bin
+ header: assets/npc/tex/duk_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_pal
+ binary: assets/npc/tex/duk_10_pal.bin
+ header: assets/npc/tex/duk_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: duk_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/duk_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/duk_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/duk_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: duk_10_tmem_txt
+ binary: assets/npc/tex/duk_10_tmem_txt.bin
+ header: assets/npc/tex/duk_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_v
+ binary: assets/npc/mdl/elp_1_v.bin
+ header: assets/npc/mdl/elp_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: elp_1_pal
+ binary: assets/npc/tex/elp_1_pal.bin
+ header: assets/npc/tex/elp_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_1_tmem_txt
+ binary: assets/npc/tex/elp_1_tmem_txt.bin
+ header: assets/npc/tex/elp_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_pal
+ binary: assets/npc/tex/elp_2_pal.bin
+ header: assets/npc/tex/elp_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_2_tmem_txt
+ binary: assets/npc/tex/elp_2_tmem_txt.bin
+ header: assets/npc/tex/elp_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_pal
+ binary: assets/npc/tex/elp_3_pal.bin
+ header: assets/npc/tex/elp_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_3_tmem_txt
+ binary: assets/npc/tex/elp_3_tmem_txt.bin
+ header: assets/npc/tex/elp_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_pal
+ binary: assets/npc/tex/elp_4_pal.bin
+ header: assets/npc/tex/elp_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_4_tmem_txt
+ binary: assets/npc/tex/elp_4_tmem_txt.bin
+ header: assets/npc/tex/elp_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_pal
+ binary: assets/npc/tex/elp_5_pal.bin
+ header: assets/npc/tex/elp_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_5_tmem_txt
+ binary: assets/npc/tex/elp_5_tmem_txt.bin
+ header: assets/npc/tex/elp_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_pal
+ binary: assets/npc/tex/elp_6_pal.bin
+ header: assets/npc/tex/elp_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_6_tmem_txt
+ binary: assets/npc/tex/elp_6_tmem_txt.bin
+ header: assets/npc/tex/elp_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_pal
+ binary: assets/npc/tex/elp_7_pal.bin
+ header: assets/npc/tex/elp_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: elp_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/elp_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/elp_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/elp_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: elp_7_tmem_txt
+ binary: assets/npc/tex/elp_7_tmem_txt.bin
+ header: assets/npc/tex/elp_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_v
+ binary: assets/npc/mdl/flg_1_v.bin
+ header: assets/npc/mdl/flg_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: flg_1_pal
+ binary: assets/npc/tex/flg_1_pal.bin
+ header: assets/npc/tex/flg_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_1_tmem_txt
+ binary: assets/npc/tex/flg_1_tmem_txt.bin
+ header: assets/npc/tex/flg_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_pal
+ binary: assets/npc/tex/flg_2_pal.bin
+ header: assets/npc/tex/flg_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_2_tmem_txt
+ binary: assets/npc/tex/flg_2_tmem_txt.bin
+ header: assets/npc/tex/flg_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_pal
+ binary: assets/npc/tex/flg_11_pal.bin
+ header: assets/npc/tex/flg_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_11_tmem_txt
+ binary: assets/npc/tex/flg_11_tmem_txt.bin
+ header: assets/npc/tex/flg_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_pal
+ binary: assets/npc/tex/flg_12_pal.bin
+ header: assets/npc/tex/flg_12_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_12_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_12_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_12_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_12_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_12_tmem_txt
+ binary: assets/npc/tex/flg_12_tmem_txt.bin
+ header: assets/npc/tex/flg_12_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_pal
+ binary: assets/npc/tex/flg_13_pal.bin
+ header: assets/npc/tex/flg_13_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_13_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_13_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_13_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_13_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_13_tmem_txt
+ binary: assets/npc/tex/flg_13_tmem_txt.bin
+ header: assets/npc/tex/flg_13_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_pal
+ binary: assets/npc/tex/flg_3_pal.bin
+ header: assets/npc/tex/flg_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_3_tmem_txt
+ binary: assets/npc/tex/flg_3_tmem_txt.bin
+ header: assets/npc/tex/flg_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_pal
+ binary: assets/npc/tex/flg_4_pal.bin
+ header: assets/npc/tex/flg_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_4_tmem_txt
+ binary: assets/npc/tex/flg_4_tmem_txt.bin
+ header: assets/npc/tex/flg_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_pal
+ binary: assets/npc/tex/flg_5_pal.bin
+ header: assets/npc/tex/flg_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_5_tmem_txt
+ binary: assets/npc/tex/flg_5_tmem_txt.bin
+ header: assets/npc/tex/flg_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_pal
+ binary: assets/npc/tex/flg_6_pal.bin
+ header: assets/npc/tex/flg_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_6_tmem_txt
+ binary: assets/npc/tex/flg_6_tmem_txt.bin
+ header: assets/npc/tex/flg_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_pal
+ binary: assets/npc/tex/flg_7_pal.bin
+ header: assets/npc/tex/flg_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_7_tmem_txt
+ binary: assets/npc/tex/flg_7_tmem_txt.bin
+ header: assets/npc/tex/flg_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_pal
+ binary: assets/npc/tex/flg_8_pal.bin
+ header: assets/npc/tex/flg_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_8_tmem_txt
+ binary: assets/npc/tex/flg_8_tmem_txt.bin
+ header: assets/npc/tex/flg_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_pal
+ binary: assets/npc/tex/flg_9_pal.bin
+ header: assets/npc/tex/flg_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_9_tmem_txt
+ binary: assets/npc/tex/flg_9_tmem_txt.bin
+ header: assets/npc/tex/flg_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_pal
+ binary: assets/npc/tex/flg_10_pal.bin
+ header: assets/npc/tex/flg_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: flg_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/flg_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/flg_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/flg_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: flg_10_tmem_txt
+ binary: assets/npc/tex/flg_10_tmem_txt.bin
+ header: assets/npc/tex/flg_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_v
+ binary: assets/npc/mdl/rcf_1_v.bin
+ header: assets/npc/mdl/rcf_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rcf_1_pal
+ binary: assets/npc/tex/rcf_1_pal.bin
+ header: assets/npc/tex/rcf_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rcf_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rcf_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rcf_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcf_1_tmem_txt
+ binary: assets/npc/tex/rcf_1_tmem_txt.bin
+ header: assets/npc/tex/rcf_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_v
+ binary: assets/npc/mdl/gst_1_v.bin
+ header: assets/npc/mdl/gst_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: gst_1_pal
+ binary: assets/npc/tex/gst_1_pal.bin
+ header: assets/npc/tex/gst_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gst_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/gst_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gst_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gst_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gst_1_tmem_txt
+ binary: assets/npc/tex/gst_1_tmem_txt.bin
+ header: assets/npc/tex/gst_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_v
+ binary: assets/npc/mdl/goa_1_v.bin
+ header: assets/npc/mdl/goa_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: goa_1_pal
+ binary: assets/npc/tex/goa_1_pal.bin
+ header: assets/npc/tex/goa_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_1_tmem_txt
+ binary: assets/npc/tex/goa_1_tmem_txt.bin
+ header: assets/npc/tex/goa_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_pal
+ binary: assets/npc/tex/goa_2_pal.bin
+ header: assets/npc/tex/goa_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_2_tmem_txt
+ binary: assets/npc/tex/goa_2_tmem_txt.bin
+ header: assets/npc/tex/goa_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_pal
+ binary: assets/npc/tex/goa_3_pal.bin
+ header: assets/npc/tex/goa_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_3_tmem_txt
+ binary: assets/npc/tex/goa_3_tmem_txt.bin
+ header: assets/npc/tex/goa_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_pal
+ binary: assets/npc/tex/goa_4_pal.bin
+ header: assets/npc/tex/goa_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_4_tmem_txt
+ binary: assets/npc/tex/goa_4_tmem_txt.bin
+ header: assets/npc/tex/goa_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_pal
+ binary: assets/npc/tex/goa_5_pal.bin
+ header: assets/npc/tex/goa_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_5_tmem_txt
+ binary: assets/npc/tex/goa_5_tmem_txt.bin
+ header: assets/npc/tex/goa_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_pal
+ binary: assets/npc/tex/goa_6_pal.bin
+ header: assets/npc/tex/goa_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: goa_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/goa_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/goa_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/goa_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: goa_6_tmem_txt
+ binary: assets/npc/tex/goa_6_tmem_txt.bin
+ header: assets/npc/tex/goa_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_v
+ binary: assets/npc/mdl/gor_1_v.bin
+ header: assets/npc/mdl/gor_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: gor_1_pal
+ binary: assets/npc/tex/gor_1_pal.bin
+ header: assets/npc/tex/gor_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gor_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/gor_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gor_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_1_tmem_txt
+ binary: assets/npc/tex/gor_1_tmem_txt.bin
+ header: assets/npc/tex/gor_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_pal
+ binary: assets/npc/tex/gor_2_pal.bin
+ header: assets/npc/tex/gor_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gor_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/gor_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gor_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_2_tmem_txt
+ binary: assets/npc/tex/gor_2_tmem_txt.bin
+ header: assets/npc/tex/gor_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_pal
+ binary: assets/npc/tex/gor_3_pal.bin
+ header: assets/npc/tex/gor_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gor_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/gor_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gor_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_3_tmem_txt
+ binary: assets/npc/tex/gor_3_tmem_txt.bin
+ header: assets/npc/tex/gor_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_pal
+ binary: assets/npc/tex/gor_4_pal.bin
+ header: assets/npc/tex/gor_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gor_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/gor_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gor_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_4_tmem_txt
+ binary: assets/npc/tex/gor_4_tmem_txt.bin
+ header: assets/npc/tex/gor_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_pal
+ binary: assets/npc/tex/gor_5_pal.bin
+ header: assets/npc/tex/gor_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: gor_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/gor_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/gor_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/gor_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: gor_5_tmem_txt
+ binary: assets/npc/tex/gor_5_tmem_txt.bin
+ header: assets/npc/tex/gor_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_v
+ binary: assets/npc/mdl/xct_1_v.bin
+ header: assets/npc/mdl/xct_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: xct_1_pal
+ binary: assets/npc/tex/xct_1_pal.bin
+ header: assets/npc/tex/xct_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: xct_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/xct_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/xct_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/xct_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xct_1_tmem_txt
+ binary: assets/npc/tex/xct_1_tmem_txt.bin
+ header: assets/npc/tex/xct_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_v
+ binary: assets/npc/mdl/bpt_1_v.bin
+ header: assets/npc/mdl/bpt_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: bpt_1_pal
+ binary: assets/npc/tex/bpt_1_pal.bin
+ header: assets/npc/tex/bpt_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: bpt_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/bpt_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/bpt_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: bpt_1_tmem_txt
+ binary: assets/npc/tex/bpt_1_tmem_txt.bin
+ header: assets/npc/tex/bpt_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pkn_1_v
+ binary: assets/npc/mdl/pkn_1_v.bin
+ header: assets/npc/mdl/pkn_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pkn_1_pal
+ binary: assets/npc/tex/pkn_1_pal.bin
+ header: assets/npc/tex/pkn_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pkn_1_tmem_txt
+ binary: assets/npc/tex/pkn_1_tmem_txt.bin
+ header: assets/npc/tex/pkn_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hem_1_v
+ binary: assets/npc/mdl/hem_1_v.bin
+ header: assets/npc/mdl/hem_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hem_1_pal
+ binary: assets/npc/tex/hem_1_pal.bin
+ header: assets/npc/tex/hem_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hem_1_tmem_txt
+ binary: assets/npc/tex/hem_1_tmem_txt.bin
+ header: assets/npc/tex/hem_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_v
+ binary: assets/npc/mdl/hip_1_v.bin
+ header: assets/npc/mdl/hip_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hip_1_pal
+ binary: assets/npc/tex/hip_1_pal.bin
+ header: assets/npc/tex/hip_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_1_tmem_txt
+ binary: assets/npc/tex/hip_1_tmem_txt.bin
+ header: assets/npc/tex/hip_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_pal
+ binary: assets/npc/tex/hip_2_pal.bin
+ header: assets/npc/tex/hip_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_2_tmem_txt
+ binary: assets/npc/tex/hip_2_tmem_txt.bin
+ header: assets/npc/tex/hip_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_pal
+ binary: assets/npc/tex/hip_3_pal.bin
+ header: assets/npc/tex/hip_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_3_tmem_txt
+ binary: assets/npc/tex/hip_3_tmem_txt.bin
+ header: assets/npc/tex/hip_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_pal
+ binary: assets/npc/tex/hip_4_pal.bin
+ header: assets/npc/tex/hip_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_4_tmem_txt
+ binary: assets/npc/tex/hip_4_tmem_txt.bin
+ header: assets/npc/tex/hip_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_pal
+ binary: assets/npc/tex/hip_5_pal.bin
+ header: assets/npc/tex/hip_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_5_tmem_txt
+ binary: assets/npc/tex/hip_5_tmem_txt.bin
+ header: assets/npc/tex/hip_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_pal
+ binary: assets/npc/tex/hip_6_pal.bin
+ header: assets/npc/tex/hip_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_6_tmem_txt
+ binary: assets/npc/tex/hip_6_tmem_txt.bin
+ header: assets/npc/tex/hip_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_pal
+ binary: assets/npc/tex/hip_7_pal.bin
+ header: assets/npc/tex/hip_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hip_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/hip_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hip_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hip_7_tmem_txt
+ binary: assets/npc/tex/hip_7_tmem_txt.bin
+ header: assets/npc/tex/hip_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_v
+ binary: assets/npc/mdl/hrs_1_v.bin
+ header: assets/npc/mdl/hrs_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hrs_1_pal
+ binary: assets/npc/tex/hrs_1_pal.bin
+ header: assets/npc/tex/hrs_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_1_tmem_txt
+ binary: assets/npc/tex/hrs_1_tmem_txt.bin
+ header: assets/npc/tex/hrs_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_pal
+ binary: assets/npc/tex/hrs_2_pal.bin
+ header: assets/npc/tex/hrs_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_2_tmem_txt
+ binary: assets/npc/tex/hrs_2_tmem_txt.bin
+ header: assets/npc/tex/hrs_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_pal
+ binary: assets/npc/tex/hrs_3_pal.bin
+ header: assets/npc/tex/hrs_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_3_tmem_txt
+ binary: assets/npc/tex/hrs_3_tmem_txt.bin
+ header: assets/npc/tex/hrs_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_pal
+ binary: assets/npc/tex/hrs_4_pal.bin
+ header: assets/npc/tex/hrs_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_4_tmem_txt
+ binary: assets/npc/tex/hrs_4_tmem_txt.bin
+ header: assets/npc/tex/hrs_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_pal
+ binary: assets/npc/tex/hrs_5_pal.bin
+ header: assets/npc/tex/hrs_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_5_tmem_txt
+ binary: assets/npc/tex/hrs_5_tmem_txt.bin
+ header: assets/npc/tex/hrs_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_pal
+ binary: assets/npc/tex/hrs_6_pal.bin
+ header: assets/npc/tex/hrs_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_6_tmem_txt
+ binary: assets/npc/tex/hrs_6_tmem_txt.bin
+ header: assets/npc/tex/hrs_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_pal
+ binary: assets/npc/tex/hrs_7_pal.bin
+ header: assets/npc/tex/hrs_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_7_tmem_txt
+ binary: assets/npc/tex/hrs_7_tmem_txt.bin
+ header: assets/npc/tex/hrs_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_pal
+ binary: assets/npc/tex/hrs_8_pal.bin
+ header: assets/npc/tex/hrs_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hrs_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/hrs_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hrs_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hrs_8_tmem_txt
+ binary: assets/npc/tex/hrs_8_tmem_txt.bin
+ header: assets/npc/tex/hrs_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_v
+ binary: assets/npc/mdl/plj_1_v.bin
+ header: assets/npc/mdl/plj_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: plj_1_pal
+ binary: assets/npc/tex/plj_1_pal.bin
+ header: assets/npc/tex/plj_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: plj_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/plj_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/plj_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/plj_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plj_1_tmem_txt
+ binary: assets/npc/tex/plj_1_tmem_txt.bin
+ header: assets/npc/tex/plj_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_v
+ binary: assets/npc/mdl/xsq_1_v.bin
+ header: assets/npc/mdl/xsq_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: xsq_1_pal
+ binary: assets/npc/tex/xsq_1_pal.bin
+ header: assets/npc/tex/xsq_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: xsq_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/xsq_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/xsq_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: xsq_1_tmem_txt
+ binary: assets/npc/tex/xsq_1_tmem_txt.bin
+ header: assets/npc/tex/xsq_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: itemName_paper
+ binary: assets/itemName_paper.bin
+ header: assets/itemName_paper.inc
+ header_type: raw
+
+ - symbol: itemName_money
+ binary: assets/itemName_money.bin
+ header: assets/itemName_money.inc
+ header_type: raw
+
+ - symbol: itemName_tool
+ binary: assets/itemName_tool.bin
+ header: assets/itemName_tool.inc
+ header_type: raw
+
+ - symbol: itemName_fish
+ binary: assets/itemName_fish.bin
+ header: assets/itemName_fish.inc
+ header_type: raw
+
+ - symbol: itemName_cloth
+ binary: assets/itemName_cloth.bin
+ header: assets/itemName_cloth.inc
+ header_type: raw
+
+ - symbol: itemName_etc
+ binary: assets/itemName_etc.bin
+ header: assets/itemName_etc.inc
+ header_type: raw
+
+ - symbol: itemName_carpet
+ binary: assets/itemName_carpet.bin
+ header: assets/itemName_carpet.inc
+ header_type: raw
+
+ - symbol: itemName_wall
+ binary: assets/itemName_wall.bin
+ header: assets/itemName_wall.inc
+ header_type: raw
+
+ - symbol: itemName_fruit
+ binary: assets/itemName_fruit.bin
+ header: assets/itemName_fruit.inc
+ header_type: raw
+
+ - symbol: itemName_plant
+ binary: assets/itemName_plant.bin
+ header: assets/itemName_plant.inc
+ header_type: raw
+
+ - symbol: itemName_minidisk
+ binary: assets/itemName_minidisk.bin
+ header: assets/itemName_minidisk.inc
+ header_type: raw
+
+ - symbol: itemName_dummy
+ binary: assets/itemName_dummy.bin
+ header: assets/itemName_dummy.inc
+ header_type: raw
+
+ - symbol: itemName_ticket
+ binary: assets/itemName_ticket.bin
+ header: assets/itemName_ticket.inc
+ header_type: raw
+
+ - symbol: itemName_insect
+ binary: assets/itemName_insect.bin
+ header: assets/itemName_insect.inc
+ header_type: raw
+
+ - symbol: itemName_hukubukuro
+ binary: assets/itemName_hukubukuro.bin
+ header: assets/itemName_hukubukuro.inc
+ header_type: raw
+
+ - symbol: itemName_kabu
+ binary: assets/itemName_kabu.bin
+ header: assets/itemName_kabu.inc
+ header_type: raw
+
+ - symbol: ftrName_table
+ binary: assets/ftrName_table.bin
+ header: assets/ftrName_table.inc
+ header_type: raw
+
+ - symbol: ftrName2_table
+ binary: assets/ftrName2_table.bin
+ header: assets/ftrName2_table.inc
+ header_type: raw
+
+ - symbol: boa_1_v
+ binary: assets/npc/mdl/boa_1_v.bin
+ header: assets/npc/mdl/boa_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: boa_1_pal
+ binary: assets/npc/tex/boa_1_pal.bin
+ header: assets/npc/tex/boa_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: boa_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/boa_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/boa_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: boa_1_tmem_txt
+ binary: assets/npc/tex/boa_1_tmem_txt.bin
+ header: assets/npc/tex/boa_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_v
+ binary: assets/npc/mdl/kgr_1_v.bin
+ header: assets/npc/mdl/kgr_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: kgr_1_pal
+ binary: assets/npc/tex/kgr_1_pal.bin
+ header: assets/npc/tex/kgr_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_1_tmem_txt
+ binary: assets/npc/tex/kgr_1_tmem_txt.bin
+ header: assets/npc/tex/kgr_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_pal
+ binary: assets/npc/tex/kgr_2_pal.bin
+ header: assets/npc/tex/kgr_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_2_tmem_txt
+ binary: assets/npc/tex/kgr_2_tmem_txt.bin
+ header: assets/npc/tex/kgr_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_pal
+ binary: assets/npc/tex/kgr_3_pal.bin
+ header: assets/npc/tex/kgr_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_3_tmem_txt
+ binary: assets/npc/tex/kgr_3_tmem_txt.bin
+ header: assets/npc/tex/kgr_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_pal
+ binary: assets/npc/tex/kgr_4_pal.bin
+ header: assets/npc/tex/kgr_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_4_tmem_txt
+ binary: assets/npc/tex/kgr_4_tmem_txt.bin
+ header: assets/npc/tex/kgr_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_pal
+ binary: assets/npc/tex/kgr_5_pal.bin
+ header: assets/npc/tex/kgr_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_5_tmem_txt
+ binary: assets/npc/tex/kgr_5_tmem_txt.bin
+ header: assets/npc/tex/kgr_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_pal
+ binary: assets/npc/tex/kgr_6_pal.bin
+ header: assets/npc/tex/kgr_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kgr_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/kgr_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kgr_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kgr_6_tmem_txt
+ binary: assets/npc/tex/kgr_6_tmem_txt.bin
+ header: assets/npc/tex/kgr_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_v
+ binary: assets/npc/mdl/fob_1_v.bin
+ header: assets/npc/mdl/fob_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: fob_1_pal
+ binary: assets/npc/tex/fob_1_pal.bin
+ header: assets/npc/tex/fob_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: fob_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/fob_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/fob_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: fob_1_tmem_txt
+ binary: assets/npc/tex/fob_1_tmem_txt.bin
+ header: assets/npc/tex/fob_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_v
+ binary: assets/npc/mdl/kal_1_v.bin
+ header: assets/npc/mdl/kal_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: kal_1_pal
+ binary: assets/npc/tex/kal_1_pal.bin
+ header: assets/npc/tex/kal_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_1_tmem_txt
+ binary: assets/npc/tex/kal_1_tmem_txt.bin
+ header: assets/npc/tex/kal_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_pal
+ binary: assets/npc/tex/kal_2_pal.bin
+ header: assets/npc/tex/kal_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_2_tmem_txt
+ binary: assets/npc/tex/kal_2_tmem_txt.bin
+ header: assets/npc/tex/kal_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_pal
+ binary: assets/npc/tex/kal_3_pal.bin
+ header: assets/npc/tex/kal_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_3_tmem_txt
+ binary: assets/npc/tex/kal_3_tmem_txt.bin
+ header: assets/npc/tex/kal_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_pal
+ binary: assets/npc/tex/kal_4_pal.bin
+ header: assets/npc/tex/kal_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_4_tmem_txt
+ binary: assets/npc/tex/kal_4_tmem_txt.bin
+ header: assets/npc/tex/kal_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_pal
+ binary: assets/npc/tex/kal_5_pal.bin
+ header: assets/npc/tex/kal_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_5_tmem_txt
+ binary: assets/npc/tex/kal_5_tmem_txt.bin
+ header: assets/npc/tex/kal_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_pal
+ binary: assets/npc/tex/kal_6_pal.bin
+ header: assets/npc/tex/kal_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kal_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/kal_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/kal_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/kal_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kal_6_tmem_txt
+ binary: assets/npc/tex/kal_6_tmem_txt.bin
+ header: assets/npc/tex/kal_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_v
+ binary: assets/npc/mdl/lon_1_v.bin
+ header: assets/npc/mdl/lon_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: lon_1_pal
+ binary: assets/npc/tex/lon_1_pal.bin
+ header: assets/npc/tex/lon_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: lon_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/lon_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/lon_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_1_tmem_txt
+ binary: assets/npc/tex/lon_1_tmem_txt.bin
+ header: assets/npc/tex/lon_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_pal
+ binary: assets/npc/tex/lon_2_pal.bin
+ header: assets/npc/tex/lon_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: lon_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/lon_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/lon_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_2_tmem_txt
+ binary: assets/npc/tex/lon_2_tmem_txt.bin
+ header: assets/npc/tex/lon_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_pal
+ binary: assets/npc/tex/lon_3_pal.bin
+ header: assets/npc/tex/lon_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: lon_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/lon_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/lon_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_3_tmem_txt
+ binary: assets/npc/tex/lon_3_tmem_txt.bin
+ header: assets/npc/tex/lon_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_pal
+ binary: assets/npc/tex/lon_4_pal.bin
+ header: assets/npc/tex/lon_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: lon_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/lon_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/lon_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/lon_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lon_4_tmem_txt
+ binary: assets/npc/tex/lon_4_tmem_txt.bin
+ header: assets/npc/tex/lon_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_v
+ binary: assets/npc/mdl/mos_1_v.bin
+ header: assets/npc/mdl/mos_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mos_1_pal
+ binary: assets/npc/tex/mos_1_pal.bin
+ header: assets/npc/tex/mos_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mos_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/mos_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mos_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mos_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mos_1_tmem_txt
+ binary: assets/npc/tex/mos_1_tmem_txt.bin
+ header: assets/npc/tex/mos_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_v
+ binary: assets/npc/mdl/mol_1_v.bin
+ header: assets/npc/mdl/mol_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mol_1_pal
+ binary: assets/npc/tex/mol_1_pal.bin
+ header: assets/npc/tex/mol_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mol_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/mol_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mol_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mol_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mol_1_tmem_txt
+ binary: assets/npc/tex/mol_1_tmem_txt.bin
+ header: assets/npc/tex/mol_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_v
+ binary: assets/npc/mdl/lrc_1_v.bin
+ header: assets/npc/mdl/lrc_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: lrc_1_pal
+ binary: assets/npc/tex/lrc_1_pal.bin
+ header: assets/npc/tex/lrc_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: lrc_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/lrc_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/lrc_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: lrc_1_tmem_txt
+ binary: assets/npc/tex/lrc_1_tmem_txt.bin
+ header: assets/npc/tex/lrc_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mka_1_v
+ binary: assets/npc/mdl/mka_1_v.bin
+ header: assets/npc/mdl/mka_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mka_1_pal
+ binary: assets/npc/tex/mka_1_pal.bin
+ header: assets/npc/tex/mka_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mka_1_tmem_txt
+ binary: assets/npc/tex/mka_1_tmem_txt.bin
+ header: assets/npc/tex/mka_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_v
+ binary: assets/npc/mdl/mus_1_v.bin
+ header: assets/npc/mdl/mus_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mus_1_pal
+ binary: assets/npc/tex/mus_1_pal.bin
+ header: assets/npc/tex/mus_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_1_tmem_txt
+ binary: assets/npc/tex/mus_1_tmem_txt.bin
+ header: assets/npc/tex/mus_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_pal
+ binary: assets/npc/tex/mus_2_pal.bin
+ header: assets/npc/tex/mus_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_2_tmem_txt
+ binary: assets/npc/tex/mus_2_tmem_txt.bin
+ header: assets/npc/tex/mus_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_pal
+ binary: assets/npc/tex/mus_3_pal.bin
+ header: assets/npc/tex/mus_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_3_tmem_txt
+ binary: assets/npc/tex/mus_3_tmem_txt.bin
+ header: assets/npc/tex/mus_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_pal
+ binary: assets/npc/tex/mus_4_pal.bin
+ header: assets/npc/tex/mus_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_4_tmem_txt
+ binary: assets/npc/tex/mus_4_tmem_txt.bin
+ header: assets/npc/tex/mus_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_pal
+ binary: assets/npc/tex/mus_5_pal.bin
+ header: assets/npc/tex/mus_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_5_tmem_txt
+ binary: assets/npc/tex/mus_5_tmem_txt.bin
+ header: assets/npc/tex/mus_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_pal
+ binary: assets/npc/tex/mus_6_pal.bin
+ header: assets/npc/tex/mus_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_6_tmem_txt
+ binary: assets/npc/tex/mus_6_tmem_txt.bin
+ header: assets/npc/tex/mus_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_pal
+ binary: assets/npc/tex/mus_7_pal.bin
+ header: assets/npc/tex/mus_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_7_tmem_txt
+ binary: assets/npc/tex/mus_7_tmem_txt.bin
+ header: assets/npc/tex/mus_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_pal
+ binary: assets/npc/tex/mus_8_pal.bin
+ header: assets/npc/tex/mus_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_8_tmem_txt
+ binary: assets/npc/tex/mus_8_tmem_txt.bin
+ header: assets/npc/tex/mus_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_pal
+ binary: assets/npc/tex/mus_9_pal.bin
+ header: assets/npc/tex/mus_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_9_tmem_txt
+ binary: assets/npc/tex/mus_9_tmem_txt.bin
+ header: assets/npc/tex/mus_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_pal
+ binary: assets/npc/tex/mus_10_pal.bin
+ header: assets/npc/tex/mus_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mus_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/mus_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mus_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mus_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mus_10_tmem_txt
+ binary: assets/npc/tex/mus_10_tmem_txt.bin
+ header: assets/npc/tex/mus_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: obj_mural_v
+ binary: assets/obj_mural_v.bin
+ header: assets/obj_mural_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hgh_1_v
+ binary: assets/npc/mdl/hgh_1_v.bin
+ header: assets/npc/mdl/hgh_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hgh_1_pal
+ binary: assets/npc/tex/hgh_1_pal.bin
+ header: assets/npc/tex/hgh_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hgh_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/hgh_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hgh_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgh_1_tmem_txt
+ binary: assets/npc/tex/hgh_1_tmem_txt.bin
+ header: assets/npc/tex/hgh_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_v
+ binary: assets/npc/mdl/hgs_1_v.bin
+ header: assets/npc/mdl/hgs_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: hgs_1_pal
+ binary: assets/npc/tex/hgs_1_pal.bin
+ header: assets/npc/tex/hgs_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: hgs_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/hgs_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/hgs_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: hgs_1_tmem_txt
+ binary: assets/npc/tex/hgs_1_tmem_txt.bin
+ header: assets/npc/tex/hgs_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_v
+ binary: assets/npc/mdl/oct_1_v.bin
+ header: assets/npc/mdl/oct_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: oct_1_pal
+ binary: assets/npc/tex/oct_1_pal.bin
+ header: assets/npc/tex/oct_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: oct_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/oct_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/oct_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: oct_1_tmem_txt
+ binary: assets/npc/tex/oct_1_tmem_txt.bin
+ header: assets/npc/tex/oct_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_v
+ binary: assets/npc/mdl/ost_1_v.bin
+ header: assets/npc/mdl/ost_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: ost_1_pal
+ binary: assets/npc/tex/ost_1_pal.bin
+ header: assets/npc/tex/ost_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ost_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/ost_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ost_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_1_tmem_txt
+ binary: assets/npc/tex/ost_1_tmem_txt.bin
+ header: assets/npc/tex/ost_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_pal
+ binary: assets/npc/tex/ost_2_pal.bin
+ header: assets/npc/tex/ost_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ost_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/ost_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ost_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_2_tmem_txt
+ binary: assets/npc/tex/ost_2_tmem_txt.bin
+ header: assets/npc/tex/ost_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_pal
+ binary: assets/npc/tex/ost_3_pal.bin
+ header: assets/npc/tex/ost_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ost_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/ost_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ost_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_3_tmem_txt
+ binary: assets/npc/tex/ost_3_tmem_txt.bin
+ header: assets/npc/tex/ost_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_pal
+ binary: assets/npc/tex/ost_4_pal.bin
+ header: assets/npc/tex/ost_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ost_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/ost_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ost_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ost_4_tmem_txt
+ binary: assets/npc/tex/ost_4_tmem_txt.bin
+ header: assets/npc/tex/ost_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_v
+ binary: assets/npc/mdl/pgn_1_v.bin
+ header: assets/npc/mdl/pgn_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pgn_1_pal
+ binary: assets/npc/tex/pgn_1_pal.bin
+ header: assets/npc/tex/pgn_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_1_tmem_txt
+ binary: assets/npc/tex/pgn_1_tmem_txt.bin
+ header: assets/npc/tex/pgn_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_pal
+ binary: assets/npc/tex/pgn_2_pal.bin
+ header: assets/npc/tex/pgn_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_2_tmem_txt
+ binary: assets/npc/tex/pgn_2_tmem_txt.bin
+ header: assets/npc/tex/pgn_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_pal
+ binary: assets/npc/tex/pgn_3_pal.bin
+ header: assets/npc/tex/pgn_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_3_tmem_txt
+ binary: assets/npc/tex/pgn_3_tmem_txt.bin
+ header: assets/npc/tex/pgn_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_pal
+ binary: assets/npc/tex/pgn_4_pal.bin
+ header: assets/npc/tex/pgn_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_4_tmem_txt
+ binary: assets/npc/tex/pgn_4_tmem_txt.bin
+ header: assets/npc/tex/pgn_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_pal
+ binary: assets/npc/tex/pgn_5_pal.bin
+ header: assets/npc/tex/pgn_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_5_tmem_txt
+ binary: assets/npc/tex/pgn_5_tmem_txt.bin
+ header: assets/npc/tex/pgn_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_pal
+ binary: assets/npc/tex/pgn_6_pal.bin
+ header: assets/npc/tex/pgn_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_6_tmem_txt
+ binary: assets/npc/tex/pgn_6_tmem_txt.bin
+ header: assets/npc/tex/pgn_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_pal
+ binary: assets/npc/tex/pgn_7_pal.bin
+ header: assets/npc/tex/pgn_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_7_tmem_txt
+ binary: assets/npc/tex/pgn_7_tmem_txt.bin
+ header: assets/npc/tex/pgn_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_pal
+ binary: assets/npc/tex/pgn_8_pal.bin
+ header: assets/npc/tex/pgn_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgn_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgn_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgn_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgn_8_tmem_txt
+ binary: assets/npc/tex/pgn_8_tmem_txt.bin
+ header: assets/npc/tex/pgn_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_v
+ binary: assets/npc/mdl/pig_1_v.bin
+ header: assets/npc/mdl/pig_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pig_1_pal
+ binary: assets/npc/tex/pig_1_pal.bin
+ header: assets/npc/tex/pig_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_1_tmem_txt
+ binary: assets/npc/tex/pig_1_tmem_txt.bin
+ header: assets/npc/tex/pig_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_pal
+ binary: assets/npc/tex/pig_2_pal.bin
+ header: assets/npc/tex/pig_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_2_tmem_txt
+ binary: assets/npc/tex/pig_2_tmem_txt.bin
+ header: assets/npc/tex/pig_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_pal
+ binary: assets/npc/tex/pig_11_pal.bin
+ header: assets/npc/tex/pig_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_11_tmem_txt
+ binary: assets/npc/tex/pig_11_tmem_txt.bin
+ header: assets/npc/tex/pig_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_pal
+ binary: assets/npc/tex/pig_3_pal.bin
+ header: assets/npc/tex/pig_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_3_tmem_txt
+ binary: assets/npc/tex/pig_3_tmem_txt.bin
+ header: assets/npc/tex/pig_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_pal
+ binary: assets/npc/tex/pig_4_pal.bin
+ header: assets/npc/tex/pig_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_4_tmem_txt
+ binary: assets/npc/tex/pig_4_tmem_txt.bin
+ header: assets/npc/tex/pig_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_pal
+ binary: assets/npc/tex/pig_5_pal.bin
+ header: assets/npc/tex/pig_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_5_tmem_txt
+ binary: assets/npc/tex/pig_5_tmem_txt.bin
+ header: assets/npc/tex/pig_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_pal
+ binary: assets/npc/tex/pig_6_pal.bin
+ header: assets/npc/tex/pig_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_6_tmem_txt
+ binary: assets/npc/tex/pig_6_tmem_txt.bin
+ header: assets/npc/tex/pig_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_pal
+ binary: assets/npc/tex/pig_7_pal.bin
+ header: assets/npc/tex/pig_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_7_tmem_txt
+ binary: assets/npc/tex/pig_7_tmem_txt.bin
+ header: assets/npc/tex/pig_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_pal
+ binary: assets/npc/tex/pig_8_pal.bin
+ header: assets/npc/tex/pig_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_8_tmem_txt
+ binary: assets/npc/tex/pig_8_tmem_txt.bin
+ header: assets/npc/tex/pig_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_pal
+ binary: assets/npc/tex/pig_9_pal.bin
+ header: assets/npc/tex/pig_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_9_tmem_txt
+ binary: assets/npc/tex/pig_9_tmem_txt.bin
+ header: assets/npc/tex/pig_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_pal
+ binary: assets/npc/tex/pig_10_pal.bin
+ header: assets/npc/tex/pig_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pig_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/pig_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pig_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pig_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pig_10_tmem_txt
+ binary: assets/npc/tex/pig_10_tmem_txt.bin
+ header: assets/npc/tex/pig_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_v
+ binary: assets/npc/mdl/pla_1_v.bin
+ header: assets/npc/mdl/pla_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: plc_1_v
+ binary: assets/npc/mdl/plc_1_v.bin
+ header: assets/npc/mdl/plc_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: plc_1_pal
+ binary: assets/npc/tex/plc_1_pal.bin
+ header: assets/npc/tex/plc_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: plc_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/plc_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/plc_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/plc_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plc_1_tmem_txt
+ binary: assets/npc/tex/plc_1_tmem_txt.bin
+ header: assets/npc/tex/plc_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_pal
+ binary: assets/npc/tex/pla_1_pal.bin
+ header: assets/npc/tex/pla_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pla_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pla_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/pla_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/pla_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pla_1_tmem_txt
+ binary: assets/npc/tex/pla_1_tmem_txt.bin
+ header: assets/npc/tex/pla_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_v
+ binary: assets/npc/mdl/pga_1_v.bin
+ header: assets/npc/mdl/pga_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pga_1_pal
+ binary: assets/npc/tex/pga_1_pal.bin
+ header: assets/npc/tex/pga_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pga_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pga_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pga_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pga_1_tmem_txt
+ binary: assets/npc/tex/pga_1_tmem_txt.bin
+ header: assets/npc/tex/pga_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_v
+ binary: assets/npc/mdl/pgb_1_v.bin
+ header: assets/npc/mdl/pgb_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: pgb_1_pal
+ binary: assets/npc/tex/pgb_1_pal.bin
+ header: assets/npc/tex/pgb_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: pgb_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/pgb_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/pgb_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: pgb_1_tmem_txt
+ binary: assets/npc/tex/pgb_1_tmem_txt.bin
+ header: assets/npc/tex/pgb_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_v
+ binary: assets/npc/mdl/plb_1_v.bin
+ header: assets/npc/mdl/plb_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: plb_1_pal
+ binary: assets/npc/tex/plb_1_pal.bin
+ header: assets/npc/tex/plb_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: plb_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/plb_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/plb_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: plb_1_tmem_txt
+ binary: assets/npc/tex/plb_1_tmem_txt.bin
+ header: assets/npc/tex/plb_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_v
+ binary: assets/npc/mdl/rbt_1_v.bin
+ header: assets/npc/mdl/rbt_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rbt_1_pal
+ binary: assets/npc/tex/rbt_1_pal.bin
+ header: assets/npc/tex/rbt_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_1_tmem_txt
+ binary: assets/npc/tex/rbt_1_tmem_txt.bin
+ header: assets/npc/tex/rbt_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_pal
+ binary: assets/npc/tex/rbt_2_pal.bin
+ header: assets/npc/tex/rbt_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_2_tmem_txt
+ binary: assets/npc/tex/rbt_2_tmem_txt.bin
+ header: assets/npc/tex/rbt_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_pal
+ binary: assets/npc/tex/rbt_11_pal.bin
+ header: assets/npc/tex/rbt_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_11_tmem_txt
+ binary: assets/npc/tex/rbt_11_tmem_txt.bin
+ header: assets/npc/tex/rbt_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_pal
+ binary: assets/npc/tex/rbt_3_pal.bin
+ header: assets/npc/tex/rbt_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_3_tmem_txt
+ binary: assets/npc/tex/rbt_3_tmem_txt.bin
+ header: assets/npc/tex/rbt_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_pal
+ binary: assets/npc/tex/rbt_4_pal.bin
+ header: assets/npc/tex/rbt_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_4_tmem_txt
+ binary: assets/npc/tex/rbt_4_tmem_txt.bin
+ header: assets/npc/tex/rbt_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_pal
+ binary: assets/npc/tex/rbt_5_pal.bin
+ header: assets/npc/tex/rbt_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_5_tmem_txt
+ binary: assets/npc/tex/rbt_5_tmem_txt.bin
+ header: assets/npc/tex/rbt_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_pal
+ binary: assets/npc/tex/rbt_6_pal.bin
+ header: assets/npc/tex/rbt_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_6_tmem_txt
+ binary: assets/npc/tex/rbt_6_tmem_txt.bin
+ header: assets/npc/tex/rbt_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_pal
+ binary: assets/npc/tex/rbt_7_pal.bin
+ header: assets/npc/tex/rbt_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_7_tmem_txt
+ binary: assets/npc/tex/rbt_7_tmem_txt.bin
+ header: assets/npc/tex/rbt_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_pal
+ binary: assets/npc/tex/rbt_8_pal.bin
+ header: assets/npc/tex/rbt_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_8_tmem_txt
+ binary: assets/npc/tex/rbt_8_tmem_txt.bin
+ header: assets/npc/tex/rbt_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_pal
+ binary: assets/npc/tex/rbt_9_pal.bin
+ header: assets/npc/tex/rbt_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_9_tmem_txt
+ binary: assets/npc/tex/rbt_9_tmem_txt.bin
+ header: assets/npc/tex/rbt_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_pal
+ binary: assets/npc/tex/rbt_10_pal.bin
+ header: assets/npc/tex/rbt_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rbt_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rbt_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rbt_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rbt_10_tmem_txt
+ binary: assets/npc/tex/rbt_10_tmem_txt.bin
+ header: assets/npc/tex/rbt_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_v
+ binary: assets/npc/mdl/mob_1_v.bin
+ header: assets/npc/mdl/mob_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mob_1_pal
+ binary: assets/npc/tex/mob_1_pal.bin
+ header: assets/npc/tex/mob_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mob_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/mob_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mob_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mob_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mob_1_tmem_txt
+ binary: assets/npc/tex/mob_1_tmem_txt.bin
+ header: assets/npc/tex/mob_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_v
+ binary: assets/npc/mdl/rhn_1_v.bin
+ header: assets/npc/mdl/rhn_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rhn_1_pal
+ binary: assets/npc/tex/rhn_1_pal.bin
+ header: assets/npc/tex/rhn_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rhn_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rhn_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_1_tmem_txt
+ binary: assets/npc/tex/rhn_1_tmem_txt.bin
+ header: assets/npc/tex/rhn_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_pal
+ binary: assets/npc/tex/rhn_2_pal.bin
+ header: assets/npc/tex/rhn_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rhn_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rhn_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_2_tmem_txt
+ binary: assets/npc/tex/rhn_2_tmem_txt.bin
+ header: assets/npc/tex/rhn_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_pal
+ binary: assets/npc/tex/rhn_3_pal.bin
+ header: assets/npc/tex/rhn_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rhn_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rhn_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_3_tmem_txt
+ binary: assets/npc/tex/rhn_3_tmem_txt.bin
+ header: assets/npc/tex/rhn_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_pal
+ binary: assets/npc/tex/rhn_4_pal.bin
+ header: assets/npc/tex/rhn_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rhn_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/rhn_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/rhn_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rhn_4_tmem_txt
+ binary: assets/npc/tex/rhn_4_tmem_txt.bin
+ header: assets/npc/tex/rhn_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_v
+ binary: assets/npc/mdl/snt_1_v.bin
+ header: assets/npc/mdl/snt_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: snt_1_pal
+ binary: assets/npc/tex/snt_1_pal.bin
+ header: assets/npc/tex/snt_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: snt_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/snt_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/snt_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/snt_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: snt_1_tmem_txt
+ binary: assets/npc/tex/snt_1_tmem_txt.bin
+ header: assets/npc/tex/snt_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_v
+ binary: assets/npc/mdl/wip_1_v.bin
+ header: assets/npc/mdl/wip_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: wip_1_pal
+ binary: assets/npc/tex/wip_1_pal.bin
+ header: assets/npc/tex/wip_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wip_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/wip_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/wip_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/wip_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wip_1_tmem_txt
+ binary: assets/npc/tex/wip_1_tmem_txt.bin
+ header: assets/npc/tex/wip_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_v
+ binary: assets/npc/mdl/shp_1_v.bin
+ header: assets/npc/mdl/shp_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: shp_1_pal
+ binary: assets/npc/tex/shp_1_pal.bin
+ header: assets/npc/tex/shp_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_1_tmem_txt
+ binary: assets/npc/tex/shp_1_tmem_txt.bin
+ header: assets/npc/tex/shp_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_pal
+ binary: assets/npc/tex/shp_2_pal.bin
+ header: assets/npc/tex/shp_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_2_tmem_txt
+ binary: assets/npc/tex/shp_2_tmem_txt.bin
+ header: assets/npc/tex/shp_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_pal
+ binary: assets/npc/tex/shp_3_pal.bin
+ header: assets/npc/tex/shp_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_3_tmem_txt
+ binary: assets/npc/tex/shp_3_tmem_txt.bin
+ header: assets/npc/tex/shp_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_pal
+ binary: assets/npc/tex/shp_4_pal.bin
+ header: assets/npc/tex/shp_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_4_tmem_txt
+ binary: assets/npc/tex/shp_4_tmem_txt.bin
+ header: assets/npc/tex/shp_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_pal
+ binary: assets/npc/tex/shp_5_pal.bin
+ header: assets/npc/tex/shp_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_5_tmem_txt
+ binary: assets/npc/tex/shp_5_tmem_txt.bin
+ header: assets/npc/tex/shp_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_pal
+ binary: assets/npc/tex/shp_6_pal.bin
+ header: assets/npc/tex/shp_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: shp_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/shp_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/shp_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/shp_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: shp_6_tmem_txt
+ binary: assets/npc/tex/shp_6_tmem_txt.bin
+ header: assets/npc/tex/shp_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_v
+ binary: assets/npc/mdl/rcn_1_v.bin
+ header: assets/npc/mdl/rcn_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rcn_1_pal
+ binary: assets/npc/tex/rcn_1_pal.bin
+ header: assets/npc/tex/rcn_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rcn_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rcn_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rcn_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcn_1_tmem_txt
+ binary: assets/npc/tex/rcn_1_tmem_txt.bin
+ header: assets/npc/tex/rcn_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_v
+ binary: assets/npc/mdl/kab_1_v.bin
+ header: assets/npc/mdl/kab_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: kab_1_pal
+ binary: assets/npc/tex/kab_1_pal.bin
+ header: assets/npc/tex/kab_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: kab_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/kab_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/kab_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kab_1_tmem_txt
+ binary: assets/npc/tex/kab_1_tmem_txt.bin
+ header: assets/npc/tex/kab_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_v
+ binary: assets/npc/mdl/ttl_1_v.bin
+ header: assets/npc/mdl/ttl_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: ttl_1_pal
+ binary: assets/npc/tex/ttl_1_pal.bin
+ header: assets/npc/tex/ttl_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: ttl_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/ttl_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/ttl_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: ttl_1_tmem_txt
+ binary: assets/npc/tex/ttl_1_tmem_txt.bin
+ header: assets/npc/tex/ttl_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_v
+ binary: assets/npc/mdl/squ_1_v.bin
+ header: assets/npc/mdl/squ_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: squ_1_pal
+ binary: assets/npc/tex/squ_1_pal.bin
+ header: assets/npc/tex/squ_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_1_tmem_txt
+ binary: assets/npc/tex/squ_1_tmem_txt.bin
+ header: assets/npc/tex/squ_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_pal
+ binary: assets/npc/tex/squ_2_pal.bin
+ header: assets/npc/tex/squ_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_2_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_2_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_2_tmem_txt
+ binary: assets/npc/tex/squ_2_tmem_txt.bin
+ header: assets/npc/tex/squ_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_pal
+ binary: assets/npc/tex/squ_11_pal.bin
+ header: assets/npc/tex/squ_11_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_11_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_11_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_11_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_11_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_11_tmem_txt
+ binary: assets/npc/tex/squ_11_tmem_txt.bin
+ header: assets/npc/tex/squ_11_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_pal
+ binary: assets/npc/tex/squ_3_pal.bin
+ header: assets/npc/tex/squ_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_3_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_3_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_3_tmem_txt
+ binary: assets/npc/tex/squ_3_tmem_txt.bin
+ header: assets/npc/tex/squ_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_pal
+ binary: assets/npc/tex/squ_4_pal.bin
+ header: assets/npc/tex/squ_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_4_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_4_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_4_tmem_txt
+ binary: assets/npc/tex/squ_4_tmem_txt.bin
+ header: assets/npc/tex/squ_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_pal
+ binary: assets/npc/tex/squ_5_pal.bin
+ header: assets/npc/tex/squ_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_5_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_5_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_5_tmem_txt
+ binary: assets/npc/tex/squ_5_tmem_txt.bin
+ header: assets/npc/tex/squ_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_pal
+ binary: assets/npc/tex/squ_6_pal.bin
+ header: assets/npc/tex/squ_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_6_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_6_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_6_tmem_txt
+ binary: assets/npc/tex/squ_6_tmem_txt.bin
+ header: assets/npc/tex/squ_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_pal
+ binary: assets/npc/tex/squ_7_pal.bin
+ header: assets/npc/tex/squ_7_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_7_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_7_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_7_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_7_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_7_tmem_txt
+ binary: assets/npc/tex/squ_7_tmem_txt.bin
+ header: assets/npc/tex/squ_7_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_pal
+ binary: assets/npc/tex/squ_8_pal.bin
+ header: assets/npc/tex/squ_8_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_8_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_8_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_8_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_8_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_8_tmem_txt
+ binary: assets/npc/tex/squ_8_tmem_txt.bin
+ header: assets/npc/tex/squ_8_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_pal
+ binary: assets/npc/tex/squ_9_pal.bin
+ header: assets/npc/tex/squ_9_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_9_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_9_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_9_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_9_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_9_tmem_txt
+ binary: assets/npc/tex/squ_9_tmem_txt.bin
+ header: assets/npc/tex/squ_9_tmem_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_pal
+ binary: assets/npc/tex/squ_10_pal.bin
+ header: assets/npc/tex/squ_10_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: squ_10_eye1_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye2_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye3_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye4_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye5_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye6_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye7_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_eye8_TA_tex_txt
+ binary: assets/npc/tex/squ_10_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth1_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth2_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth3_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth4_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth5_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_mouth6_TA_tex_txt
+ binary: assets/npc/tex/squ_10_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/squ_10_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: squ_10_tmem_txt
+ binary: assets/npc/tex/squ_10_tmem_txt.bin
+ header: assets/npc/tex/squ_10_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_v
+ binary: assets/npc/mdl/mnk_1_v.bin
+ header: assets/npc/mdl/mnk_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mnk_1_pal
+ binary: assets/npc/tex/mnk_1_pal.bin
+ header: assets/npc/tex/mnk_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: mnk_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/mnk_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/mnk_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: mnk_1_tmem_txt
+ binary: assets/npc/tex/mnk_1_tmem_txt.bin
+ header: assets/npc/tex/mnk_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_v
+ binary: assets/npc/mdl/rcs_1_v.bin
+ header: assets/npc/mdl/rcs_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rcs_1_pal
+ binary: assets/npc/tex/rcs_1_pal.bin
+ header: assets/npc/tex/rcs_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rcs_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/rcs_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/rcs_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rcs_1_tmem_txt
+ binary: assets/npc/tex/rcs_1_tmem_txt.bin
+ header: assets/npc/tex/rcs_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_v
+ binary: assets/npc/mdl/tig_1_v.bin
+ header: assets/npc/mdl/tig_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tig_1_pal
+ binary: assets/npc/tex/tig_1_pal.bin
+ header: assets/npc/tex/tig_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tig_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/tig_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/tig_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_1_tmem_txt
+ binary: assets/npc/tex/tig_1_tmem_txt.bin
+ header: assets/npc/tex/tig_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_pal
+ binary: assets/npc/tex/tig_2_pal.bin
+ header: assets/npc/tex/tig_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tig_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/tig_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/tig_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_2_tmem_txt
+ binary: assets/npc/tex/tig_2_tmem_txt.bin
+ header: assets/npc/tex/tig_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_pal
+ binary: assets/npc/tex/tig_3_pal.bin
+ header: assets/npc/tex/tig_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tig_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/tig_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/tig_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_3_tmem_txt
+ binary: assets/npc/tex/tig_3_tmem_txt.bin
+ header: assets/npc/tex/tig_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_pal
+ binary: assets/npc/tex/tig_4_pal.bin
+ header: assets/npc/tex/tig_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tig_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/tig_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/tig_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tig_4_tmem_txt
+ binary: assets/npc/tex/tig_4_tmem_txt.bin
+ header: assets/npc/tex/tig_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: end_1_v
+ binary: assets/npc/mdl/end_1_v.bin
+ header: assets/npc/mdl/end_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: end_1_pal
+ binary: assets/npc/tex/end_1_pal.bin
+ header: assets/npc/tex/end_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: end_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/end_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth1_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth1_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth2_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth2_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth3_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth3_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth4_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth4_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth5_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth5_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_mouth6_TA_tex_txt
+ binary: assets/npc/tex/end_1_mouth6_TA_tex_txt.bin
+ header: assets/npc/tex/end_1_mouth6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: end_1_tmem_txt
+ binary: assets/npc/tex/end_1_tmem_txt.bin
+ header: assets/npc/tex/end_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: rom_train_3_pal!.data:0x005FC700
+ binary: assets/field/bg/rom_train_3_pal.bin
+ header: assets/field/bg/rom_train_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tuk_1_v
+ binary: assets/npc/mdl/tuk_1_v.bin
+ header: assets/npc/mdl/tuk_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tuk_1_pal
+ binary: assets/npc/tex/tuk_1_pal.bin
+ header: assets/npc/tex/tuk_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: tuk_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/tuk_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/tuk_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: tuk_1_tmem_txt
+ binary: assets/npc/tex/tuk_1_tmem_txt.bin
+ header: assets/npc/tex/tuk_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_v
+ binary: assets/npc/mdl/wol_1_v.bin
+ header: assets/npc/mdl/wol_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: wol_1_pal
+ binary: assets/npc/tex/wol_1_pal.bin
+ header: assets/npc/tex/wol_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_1_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_1_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_1_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_1_tmem_txt
+ binary: assets/npc/tex/wol_1_tmem_txt.bin
+ header: assets/npc/tex/wol_1_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_pal
+ binary: assets/npc/tex/wol_2_pal.bin
+ header: assets/npc/tex/wol_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_2_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_2_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_2_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_2_tmem_txt
+ binary: assets/npc/tex/wol_2_tmem_txt.bin
+ header: assets/npc/tex/wol_2_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_pal
+ binary: assets/npc/tex/wol_3_pal.bin
+ header: assets/npc/tex/wol_3_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_3_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_3_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_3_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_3_tmem_txt
+ binary: assets/npc/tex/wol_3_tmem_txt.bin
+ header: assets/npc/tex/wol_3_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_pal
+ binary: assets/npc/tex/wol_4_pal.bin
+ header: assets/npc/tex/wol_4_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_4_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_4_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_4_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_4_tmem_txt
+ binary: assets/npc/tex/wol_4_tmem_txt.bin
+ header: assets/npc/tex/wol_4_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_pal
+ binary: assets/npc/tex/wol_5_pal.bin
+ header: assets/npc/tex/wol_5_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_5_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_5_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_5_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_5_tmem_txt
+ binary: assets/npc/tex/wol_5_tmem_txt.bin
+ header: assets/npc/tex/wol_5_tmem_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_pal
+ binary: assets/npc/tex/wol_6_pal.bin
+ header: assets/npc/tex/wol_6_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: wol_6_eye1_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye1_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye2_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye2_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye3_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye3_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye4_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye4_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye5_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye5_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye6_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye6_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye7_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye7_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_eye8_TA_tex_txt
+ binary: assets/npc/tex/wol_6_eye8_TA_tex_txt.bin
+ header: assets/npc/tex/wol_6_eye8_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: wol_6_tmem_txt
+ binary: assets/npc/tex/wol_6_tmem_txt.bin
+ header: assets/npc/tex/wol_6_tmem_txt.inc
+ header_type: raw
+
+ - symbol: mFM_beach_pal
+ binary: assets/mFM_beach_pal.bin
+ header: assets/mFM_beach_pal.inc
+ header_type: none
+ custom_type: pal16c
+
+ - symbol: rom_yami_wall_pal
+ binary: assets/field/bg/rom_yami_wall_pal.bin
+ header: assets/field/bg/rom_yami_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_floor_pal
+ binary: assets/field/bg/rom_yami_floor_pal.bin
+ header: assets/field/bg/rom_yami_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_box_pal
+ binary: assets/field/bg/rom_yami_box_pal.bin
+ header: assets/field/bg/rom_yami_box_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_mono01_pal
+ binary: assets/field/bg/rom_yami_mono01_pal.bin
+ header: assets/field/bg/rom_yami_mono01_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_mono02_pal
+ binary: assets/field/bg/rom_yami_mono02_pal.bin
+ header: assets/field/bg/rom_yami_mono02_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_mono03_pal
+ binary: assets/field/bg/rom_yami_mono03_pal.bin
+ header: assets/field/bg/rom_yami_mono03_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_qup_pal
+ binary: assets/field/bg/rom_yami_qup_pal.bin
+ header: assets/field/bg/rom_yami_qup_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_hyou_pal
+ binary: assets/field/bg/rom_yami_hyou_pal.bin
+ header: assets/field/bg/rom_yami_hyou_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_step_tex_pal
+ binary: assets/field/bg/rom_yami_step_tex_pal.bin
+ header: assets/field/bg/rom_yami_step_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_hugu_pal
+ binary: assets/field/bg/rom_yami_hugu_pal.bin
+ header: assets/field/bg/rom_yami_hugu_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_tama_pal
+ binary: assets/field/bg/rom_yami_tama_pal.bin
+ header: assets/field/bg/rom_yami_tama_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_yami_wall_tex
+ binary: assets/field/bg/rom_yami_wall_tex.bin
+ header: assets/field/bg/rom_yami_wall_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_floor_tex
+ binary: assets/field/bg/rom_yami_floor_tex.bin
+ header: assets/field/bg/rom_yami_floor_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_poll_tex
+ binary: assets/field/bg/rom_yami_poll_tex.bin
+ header: assets/field/bg/rom_yami_poll_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_box01_tex
+ binary: assets/field/bg/rom_yami_box01_tex.bin
+ header: assets/field/bg/rom_yami_box01_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_box02_tex
+ binary: assets/field/bg/rom_yami_box02_tex.bin
+ header: assets/field/bg/rom_yami_box02_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_mono01_tex
+ binary: assets/field/bg/rom_yami_mono01_tex.bin
+ header: assets/field/bg/rom_yami_mono01_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_mono02_tex
+ binary: assets/field/bg/rom_yami_mono02_tex.bin
+ header: assets/field/bg/rom_yami_mono02_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_mono03_tex
+ binary: assets/field/bg/rom_yami_mono03_tex.bin
+ header: assets/field/bg/rom_yami_mono03_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_qup_tex
+ binary: assets/field/bg/rom_yami_qup_tex.bin
+ header: assets/field/bg/rom_yami_qup_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_hyou_tex
+ binary: assets/field/bg/rom_yami_hyou_tex.bin
+ header: assets/field/bg/rom_yami_hyou_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_hyou02_tex
+ binary: assets/field/bg/rom_yami_hyou02_tex.bin
+ header: assets/field/bg/rom_yami_hyou02_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_step_tex!.data:0x0060E6A0
+ binary: assets/field/bg/rom_yami_step_tex.bin
+ header: assets/field/bg/rom_yami_step_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_hugu_tex
+ binary: assets/field/bg/rom_yami_hugu_tex.bin
+ header: assets/field/bg/rom_yami_hugu_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_tama_tex
+ binary: assets/field/bg/rom_yami_tama_tex.bin
+ header: assets/field/bg/rom_yami_tama_tex.inc
+ header_type: raw
+
+ - symbol: rom_yami_shadow01_tex
+ binary: assets/field/bg/rom_yami_shadow01_tex.bin
+ header: assets/field/bg/rom_yami_shadow01_tex.inc
+ header_type: raw
+
+ - symbol: grd_yamishop_v
+ binary: assets/field/bg/grd_yamishop_v.bin
+ header: assets/field/bg/grd_yamishop_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: yubin_k_pal
+ binary: assets/field/bg/yubin_k_pal.bin
+ header: assets/field/bg/yubin_k_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_k2_pal
+ binary: assets/field/bg/yubin_k2_pal.bin
+ header: assets/field/bg/yubin_k2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_floor_pal
+ binary: assets/field/bg/yubin_floor_pal.bin
+ header: assets/field/bg/yubin_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_hakari_pal
+ binary: assets/field/bg/yubin_hakari_pal.bin
+ header: assets/field/bg/yubin_hakari_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_wall_pal
+ binary: assets/field/bg/yubin_wall_pal.bin
+ header: assets/field/bg/yubin_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_letter_pal
+ binary: assets/field/bg/yubin_letter_pal.bin
+ header: assets/field/bg/yubin_letter_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_us_bag_pal
+ binary: assets/field/bg/yubin_us_bag_pal.bin
+ header: assets/field/bg/yubin_us_bag_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: zzzyubin_tree_pal
+ binary: assets/field/bg/zzzyubin_tree_pal.bin
+ header: assets/field/bg/zzzyubin_tree_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_t_pal
+ binary: assets/field/bg/yubin_t_pal.bin
+ header: assets/field/bg/yubin_t_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yubin_us_card_pal
+ binary: assets/field/bg/yubin_us_card_pal.bin
+ header: assets/field/bg/yubin_us_card_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: yuibn_kaunta01_tex
+ binary: assets/field/bg/yuibn_kaunta01_tex.bin
+ header: assets/field/bg/yuibn_kaunta01_tex.inc
+ header_type: raw
+
+ - symbol: yuibn_kaunta02_tex
+ binary: assets/field/bg/yuibn_kaunta02_tex.bin
+ header: assets/field/bg/yuibn_kaunta02_tex.inc
+ header_type: raw
+
+ - symbol: yuibn_desk01_tex
+ binary: assets/field/bg/yuibn_desk01_tex.bin
+ header: assets/field/bg/yuibn_desk01_tex.inc
+ header_type: raw
+
+ - symbol: yubin_ark01_tex
+ binary: assets/field/bg/yubin_ark01_tex.bin
+ header: assets/field/bg/yubin_ark01_tex.inc
+ header_type: raw
+
+ - symbol: yuibn_kaunta03_tex
+ binary: assets/field/bg/yuibn_kaunta03_tex.bin
+ header: assets/field/bg/yuibn_kaunta03_tex.inc
+ header_type: raw
+
+ - symbol: yuibn_kaunta04_tex
+ binary: assets/field/bg/yuibn_kaunta04_tex.bin
+ header: assets/field/bg/yuibn_kaunta04_tex.inc
+ header_type: raw
+
+ - symbol: yubin_floor01_tex
+ binary: assets/field/bg/yubin_floor01_tex.bin
+ header: assets/field/bg/yubin_floor01_tex.inc
+ header_type: raw
+
+ - symbol: yubin_floor02_tex
+ binary: assets/field/bg/yubin_floor02_tex.bin
+ header: assets/field/bg/yubin_floor02_tex.inc
+ header_type: raw
+
+ - symbol: yubin_floor03_tex
+ binary: assets/field/bg/yubin_floor03_tex.bin
+ header: assets/field/bg/yubin_floor03_tex.inc
+ header_type: raw
+
+ - symbol: yubin_hakari01_tex
+ binary: assets/field/bg/yubin_hakari01_tex.bin
+ header: assets/field/bg/yubin_hakari01_tex.inc
+ header_type: raw
+
+ - symbol: yubin_hakari02_tex
+ binary: assets/field/bg/yubin_hakari02_tex.bin
+ header: assets/field/bg/yubin_hakari02_tex.inc
+ header_type: raw
+
+ - symbol: yubin_hakari03_tex
+ binary: assets/field/bg/yubin_hakari03_tex.bin
+ header: assets/field/bg/yubin_hakari03_tex.inc
+ header_type: raw
+
+ - symbol: yubin_wall04_tex
+ binary: assets/field/bg/yubin_wall04_tex.bin
+ header: assets/field/bg/yubin_wall04_tex.inc
+ header_type: raw
+
+ - symbol: yubin_letter01_tex
+ binary: assets/field/bg/yubin_letter01_tex.bin
+ header: assets/field/bg/yubin_letter01_tex.inc
+ header_type: raw
+
+ - symbol: yubin_window_tex
+ binary: assets/field/bg/yubin_window_tex.bin
+ header: assets/field/bg/yubin_window_tex.inc
+ header_type: raw
+
+ - symbol: yubin_us_bag_tex
+ binary: assets/field/bg/yubin_us_bag_tex.bin
+ header: assets/field/bg/yubin_us_bag_tex.inc
+ header_type: raw
+
+ - symbol: yubin_tree2_tex
+ binary: assets/field/bg/yubin_tree2_tex.bin
+ header: assets/field/bg/yubin_tree2_tex.inc
+ header_type: raw
+
+ - symbol: yubin_tree_tex
+ binary: assets/field/bg/yubin_tree_tex.bin
+ header: assets/field/bg/yubin_tree_tex.inc
+ header_type: raw
+
+ - symbol: yubin_tree3_tex
+ binary: assets/field/bg/yubin_tree3_tex.bin
+ header: assets/field/bg/yubin_tree3_tex.inc
+ header_type: raw
+
+ - symbol: yubin_tree4_tex
+ binary: assets/field/bg/yubin_tree4_tex.bin
+ header: assets/field/bg/yubin_tree4_tex.inc
+ header_type: raw
+
+ - symbol: yubin_step_tex
+ binary: assets/field/bg/yubin_step_tex.bin
+ header: assets/field/bg/yubin_step_tex.inc
+ header_type: raw
+
+ - symbol: rom_yubinkyoku_akril_tex
+ binary: assets/field/bg/rom_yubinkyoku_akril_tex.bin
+ header: assets/field/bg/rom_yubinkyoku_akril_tex.inc
+ header_type: raw
+
+ - symbol: rom_yubinkyoku_shede_tex
+ binary: assets/field/bg/rom_yubinkyoku_shede_tex.bin
+ header: assets/field/bg/rom_yubinkyoku_shede_tex.inc
+ header_type: raw
+
+ - symbol: yubin_us_card_tex
+ binary: assets/field/bg/yubin_us_card_tex.bin
+ header: assets/field/bg/yubin_us_card_tex.inc
+ header_type: raw
+
+ - symbol: yubin_us_mat_tex
+ binary: assets/field/bg/yubin_us_mat_tex.bin
+ header: assets/field/bg/yubin_us_mat_tex.inc
+ header_type: raw
+
+ - symbol: rom_yubinkyoku_shadow_tex
+ binary: assets/field/bg/rom_yubinkyoku_shadow_tex.bin
+ header: assets/field/bg/rom_yubinkyoku_shadow_tex.inc
+ header_type: raw
+
+ - symbol: yubin_us_card2_tex
+ binary: assets/field/bg/yubin_us_card2_tex.bin
+ header: assets/field/bg/yubin_us_card2_tex.inc
+ header_type: raw
+
+ - symbol: grd_post_office_v
+ binary: assets/field/bg/grd_post_office_v.bin
+ header: assets/field/bg/grd_post_office_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmp4_v
+ binary: assets/field/bg/tmp4_v.bin
+ header: assets/field/bg/tmp4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmpr4_v
+ binary: assets/field/bg/tmpr4_v.bin
+ header: assets/field/bg/tmpr4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmp3_v
+ binary: assets/field/bg/tmp3_v.bin
+ header: assets/field/bg/tmp3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmpr3_v
+ binary: assets/field/bg/tmpr3_v.bin
+ header: assets/field/bg/tmpr3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmp_v
+ binary: assets/field/bg/tmp_v.bin
+ header: assets/field/bg/tmp_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: tmpr_v
+ binary: assets/field/bg/tmpr_v.bin
+ header: assets/field/bg/tmpr_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_cliff_pal
+ binary: assets/field/bg/grd_s_cliff_pal.bin
+ header: assets/field/bg/grd_s_cliff_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: grd_s_earth_pal
+ binary: assets/field/bg/grd_s_earth_pal.bin
+ header: assets/field/bg/grd_s_earth_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: grd_s_cliff_tex!.data:0x0061D408
+ binary: assets/field/bg/grd_s_cliff_tex.bin
+ header: assets/field/bg/grd_s_cliff_tex.inc
+ header_type: raw
+
+ - symbol: grd_s_earth_tex!.data:0x0061DC08
+ binary: assets/field/bg/grd_s_earth_tex.bin
+ header: assets/field/bg/grd_s_earth_tex.inc
+ header_type: raw
+
+ - symbol: grd_s_grass_tex!.data:0x0061E408
+ binary: assets/field/bg/grd_s_grass_tex.bin
+ header: assets/field/bg/grd_s_grass_tex.inc
+ header_type: raw
+
+ - symbol: tmp2_v
+ binary: assets/field/bg/tmp2_v.bin
+ header: assets/field/bg/tmp2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_1_earth_pal
+ binary: assets/field/bg/grd_1_earth_pal.bin
+ header: assets/field/bg/grd_1_earth_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: grd_s_river_tex!.data:0x0061F998
+ binary: assets/field/bg/grd_s_river_tex.bin
+ header: assets/field/bg/grd_s_river_tex.inc
+ header_type: raw
+
+ - symbol: grd_water1_tex!.data:0x0061FD98
+ binary: assets/field/bg/grd_water1_tex.bin
+ header: assets/field/bg/grd_water1_tex.inc
+ header_type: raw
+
+ - symbol: grd_s_grass_tex!.data:0x0061FF98
+ binary: assets/field/bg/grd_s_grass_tex2.bin
+ header: assets/field/bg/grd_s_grass_tex2.inc
+ header_type: raw
+
+ - symbol: tmpr2_v
+ binary: assets/field/bg/tmpr2_v.bin
+ header: assets/field/bg/tmpr2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mFM_bush_pal
+ binary: assets/mFM_bush_pal.bin
+ header: assets/mFM_bush_pal.inc
+ header_type: none
+ custom_type: pal16c
+
+ - symbol: mFM_cliff_pal
+ binary: assets/mFM_cliff_pal.bin
+ header: assets/mFM_cliff_pal.inc
+ header_type: none
+ custom_type: pal16c
+
+ - symbol: mFM_earth_pal
+ binary: assets/mFM_earth_pal.bin
+ header: assets/mFM_earth_pal.inc
+ header_type: none
+ custom_type: pal16c
+
+ - symbol: grd_s_c1_1_v
+ binary: assets/field/bg/grd_s_c1_1_v.bin
+ header: assets/field/bg/grd_s_c1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_2_v
+ binary: assets/field/bg/grd_s_c1_2_v.bin
+ header: assets/field/bg/grd_s_c1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_3_v
+ binary: assets/field/bg/grd_s_c1_3_v.bin
+ header: assets/field/bg/grd_s_c1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_4_v
+ binary: assets/field/bg/grd_s_c1_4_v.bin
+ header: assets/field/bg/grd_s_c1_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_5_v
+ binary: assets/field/bg/grd_s_c1_5_v.bin
+ header: assets/field/bg/grd_s_c1_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r1_1_v
+ binary: assets/field/bg/grd_s_c1_r1_1_v.bin
+ header: assets/field/bg/grd_s_c1_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r1_2_v
+ binary: assets/field/bg/grd_s_c1_r1_2_v.bin
+ header: assets/field/bg/grd_s_c1_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r1_3_v
+ binary: assets/field/bg/grd_s_c1_r1_3_v.bin
+ header: assets/field/bg/grd_s_c1_r1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r2_1_v
+ binary: assets/field/bg/grd_s_c1_r2_1_v.bin
+ header: assets/field/bg/grd_s_c1_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r2_2_v
+ binary: assets/field/bg/grd_s_c1_r2_2_v.bin
+ header: assets/field/bg/grd_s_c1_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r2_3_v
+ binary: assets/field/bg/grd_s_c1_r2_3_v.bin
+ header: assets/field/bg/grd_s_c1_r2_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r3_1_v
+ binary: assets/field/bg/grd_s_c1_r3_1_v.bin
+ header: assets/field/bg/grd_s_c1_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r3_2_v
+ binary: assets/field/bg/grd_s_c1_r3_2_v.bin
+ header: assets/field/bg/grd_s_c1_r3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_r3_3_v
+ binary: assets/field/bg/grd_s_c1_r3_3_v.bin
+ header: assets/field/bg/grd_s_c1_r3_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_s_1_v
+ binary: assets/field/bg/grd_s_c1_s_1_v.bin
+ header: assets/field/bg/grd_s_c1_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_s_2_v
+ binary: assets/field/bg/grd_s_c1_s_2_v.bin
+ header: assets/field/bg/grd_s_c1_s_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_s_3_v
+ binary: assets/field/bg/grd_s_c1_s_3_v.bin
+ header: assets/field/bg/grd_s_c1_s_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c1_s_4_v
+ binary: assets/field/bg/grd_s_c1_s_4_v.bin
+ header: assets/field/bg/grd_s_c1_s_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_1_v
+ binary: assets/field/bg/grd_s_c2_1_v.bin
+ header: assets/field/bg/grd_s_c2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_2_v
+ binary: assets/field/bg/grd_s_c2_2_v.bin
+ header: assets/field/bg/grd_s_c2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_3_v
+ binary: assets/field/bg/grd_s_c2_3_v.bin
+ header: assets/field/bg/grd_s_c2_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_r1_1_v
+ binary: assets/field/bg/grd_s_c2_r1_1_v.bin
+ header: assets/field/bg/grd_s_c2_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_r1_2_v
+ binary: assets/field/bg/grd_s_c2_r1_2_v.bin
+ header: assets/field/bg/grd_s_c2_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_r2_1_v
+ binary: assets/field/bg/grd_s_c2_r2_1_v.bin
+ header: assets/field/bg/grd_s_c2_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_r2_2_v
+ binary: assets/field/bg/grd_s_c2_r2_2_v.bin
+ header: assets/field/bg/grd_s_c2_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_s_1_v
+ binary: assets/field/bg/grd_s_c2_s_1_v.bin
+ header: assets/field/bg/grd_s_c2_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_s_2_v
+ binary: assets/field/bg/grd_s_c2_s_2_v.bin
+ header: assets/field/bg/grd_s_c2_s_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c2_s_3_v
+ binary: assets/field/bg/grd_s_c2_s_3_v.bin
+ header: assets/field/bg/grd_s_c2_s_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_1_v
+ binary: assets/field/bg/grd_s_c3_1_v.bin
+ header: assets/field/bg/grd_s_c3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_2_v
+ binary: assets/field/bg/grd_s_c3_2_v.bin
+ header: assets/field/bg/grd_s_c3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_3_v
+ binary: assets/field/bg/grd_s_c3_3_v.bin
+ header: assets/field/bg/grd_s_c3_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_r1_1_v
+ binary: assets/field/bg/grd_s_c3_r1_1_v.bin
+ header: assets/field/bg/grd_s_c3_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_r1_2_v
+ binary: assets/field/bg/grd_s_c3_r1_2_v.bin
+ header: assets/field/bg/grd_s_c3_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_r2_1_v
+ binary: assets/field/bg/grd_s_c3_r2_1_v.bin
+ header: assets/field/bg/grd_s_c3_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_r2_2_v
+ binary: assets/field/bg/grd_s_c3_r2_2_v.bin
+ header: assets/field/bg/grd_s_c3_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c3_s_1_v
+ binary: assets/field/bg/grd_s_c3_s_1_v.bin
+ header: assets/field/bg/grd_s_c3_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_1_v
+ binary: assets/field/bg/grd_s_c4_1_v.bin
+ header: assets/field/bg/grd_s_c4_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_2_v
+ binary: assets/field/bg/grd_s_c4_2_v.bin
+ header: assets/field/bg/grd_s_c4_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_3_v
+ binary: assets/field/bg/grd_s_c4_3_v.bin
+ header: assets/field/bg/grd_s_c4_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r1_1_v
+ binary: assets/field/bg/grd_s_c4_r1_1_v.bin
+ header: assets/field/bg/grd_s_c4_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r1_2_v
+ binary: assets/field/bg/grd_s_c4_r1_2_v.bin
+ header: assets/field/bg/grd_s_c4_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r2_1_v
+ binary: assets/field/bg/grd_s_c4_r2_1_v.bin
+ header: assets/field/bg/grd_s_c4_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r2_2_v
+ binary: assets/field/bg/grd_s_c4_r2_2_v.bin
+ header: assets/field/bg/grd_s_c4_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r3_1_v
+ binary: assets/field/bg/grd_s_c4_r3_1_v.bin
+ header: assets/field/bg/grd_s_c4_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_r3_2_v
+ binary: assets/field/bg/grd_s_c4_r3_2_v.bin
+ header: assets/field/bg/grd_s_c4_r3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_s_1_v
+ binary: assets/field/bg/grd_s_c4_s_1_v.bin
+ header: assets/field/bg/grd_s_c4_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c4_s_2_v
+ binary: assets/field/bg/grd_s_c4_s_2_v.bin
+ header: assets/field/bg/grd_s_c4_s_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_1_v
+ binary: assets/field/bg/grd_s_c5_1_v.bin
+ header: assets/field/bg/grd_s_c5_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_2_v
+ binary: assets/field/bg/grd_s_c5_2_v.bin
+ header: assets/field/bg/grd_s_c5_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_3_v
+ binary: assets/field/bg/grd_s_c5_3_v.bin
+ header: assets/field/bg/grd_s_c5_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r1_1_v
+ binary: assets/field/bg/grd_s_c5_r1_1_v.bin
+ header: assets/field/bg/grd_s_c5_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r1_2_v
+ binary: assets/field/bg/grd_s_c5_r1_2_v.bin
+ header: assets/field/bg/grd_s_c5_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r2_1_v
+ binary: assets/field/bg/grd_s_c5_r2_1_v.bin
+ header: assets/field/bg/grd_s_c5_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r2_2_v
+ binary: assets/field/bg/grd_s_c5_r2_2_v.bin
+ header: assets/field/bg/grd_s_c5_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r3_1_v
+ binary: assets/field/bg/grd_s_c5_r3_1_v.bin
+ header: assets/field/bg/grd_s_c5_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_r3_2_v
+ binary: assets/field/bg/grd_s_c5_r3_2_v.bin
+ header: assets/field/bg/grd_s_c5_r3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_s_1_v
+ binary: assets/field/bg/grd_s_c5_s_1_v.bin
+ header: assets/field/bg/grd_s_c5_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c5_s_2_v
+ binary: assets/field/bg/grd_s_c5_s_2_v.bin
+ header: assets/field/bg/grd_s_c5_s_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_1_v
+ binary: assets/field/bg/grd_s_c6_1_v.bin
+ header: assets/field/bg/grd_s_c6_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_2_v
+ binary: assets/field/bg/grd_s_c6_2_v.bin
+ header: assets/field/bg/grd_s_c6_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_3_v
+ binary: assets/field/bg/grd_s_c6_3_v.bin
+ header: assets/field/bg/grd_s_c6_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_r1_1_v
+ binary: assets/field/bg/grd_s_c6_r1_1_v.bin
+ header: assets/field/bg/grd_s_c6_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_r1_2_v
+ binary: assets/field/bg/grd_s_c6_r1_2_v.bin
+ header: assets/field/bg/grd_s_c6_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_r3_1_v
+ binary: assets/field/bg/grd_s_c6_r3_1_v.bin
+ header: assets/field/bg/grd_s_c6_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c6_s_1_v
+ binary: assets/field/bg/grd_s_c6_s_1_v.bin
+ header: assets/field/bg/grd_s_c6_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_1_v
+ binary: assets/field/bg/grd_s_c7_1_v.bin
+ header: assets/field/bg/grd_s_c7_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_2_v
+ binary: assets/field/bg/grd_s_c7_2_v.bin
+ header: assets/field/bg/grd_s_c7_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_3_v
+ binary: assets/field/bg/grd_s_c7_3_v.bin
+ header: assets/field/bg/grd_s_c7_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_r1_1_v
+ binary: assets/field/bg/grd_s_c7_r1_1_v.bin
+ header: assets/field/bg/grd_s_c7_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_r1_2_v
+ binary: assets/field/bg/grd_s_c7_r1_2_v.bin
+ header: assets/field/bg/grd_s_c7_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_r3_1_v
+ binary: assets/field/bg/grd_s_c7_r3_1_v.bin
+ header: assets/field/bg/grd_s_c7_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_r3_2_v
+ binary: assets/field/bg/grd_s_c7_r3_2_v.bin
+ header: assets/field/bg/grd_s_c7_r3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_s_1_v
+ binary: assets/field/bg/grd_s_c7_s_1_v.bin
+ header: assets/field/bg/grd_s_c7_s_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_s_2_v
+ binary: assets/field/bg/grd_s_c7_s_2_v.bin
+ header: assets/field/bg/grd_s_c7_s_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_c7_s_3_v
+ binary: assets/field/bg/grd_s_c7_s_3_v.bin
+ header: assets/field/bg/grd_s_c7_s_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e1_1_v
+ binary: assets/field/bg/grd_s_e1_1_v.bin
+ header: assets/field/bg/grd_s_e1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e1_r1_1_v
+ binary: assets/field/bg/grd_s_e1_r1_1_v.bin
+ header: assets/field/bg/grd_s_e1_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e2_1_v
+ binary: assets/field/bg/grd_s_e2_1_v.bin
+ header: assets/field/bg/grd_s_e2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e2_c1_1_v
+ binary: assets/field/bg/grd_s_e2_c1_1_v.bin
+ header: assets/field/bg/grd_s_e2_c1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e2_m_1_v
+ binary: assets/field/bg/grd_s_e2_m_1_v.bin
+ header: assets/field/bg/grd_s_e2_m_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e2_o_1_v
+ binary: assets/field/bg/grd_s_e2_o_1_v.bin
+ header: assets/field/bg/grd_s_e2_o_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e2_t_1_v
+ binary: assets/field/bg/grd_s_e2_t_1_v.bin
+ header: assets/field/bg/grd_s_e2_t_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e3_1_v
+ binary: assets/field/bg/grd_s_e3_1_v.bin
+ header: assets/field/bg/grd_s_e3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e3_c1_1_v
+ binary: assets/field/bg/grd_s_e3_c1_1_v.bin
+ header: assets/field/bg/grd_s_e3_c1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e3_m_1_v
+ binary: assets/field/bg/grd_s_e3_m_1_v.bin
+ header: assets/field/bg/grd_s_e3_m_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e3_o_1_v
+ binary: assets/field/bg/grd_s_e3_o_1_v.bin
+ header: assets/field/bg/grd_s_e3_o_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e3_t_1_v
+ binary: assets/field/bg/grd_s_e3_t_1_v.bin
+ header: assets/field/bg/grd_s_e3_t_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e4_1_v
+ binary: assets/field/bg/grd_s_e4_1_v.bin
+ header: assets/field/bg/grd_s_e4_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_e5_1_v
+ binary: assets/field/bg/grd_s_e5_1_v.bin
+ header: assets/field/bg/grd_s_e5_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_1_v
+ binary: assets/field/bg/grd_s_f_1_v.bin
+ header: assets/field/bg/grd_s_f_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_10_v
+ binary: assets/field/bg/grd_s_f_10_v.bin
+ header: assets/field/bg/grd_s_f_10_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_2_v
+ binary: assets/field/bg/grd_s_f_2_v.bin
+ header: assets/field/bg/grd_s_f_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_3_v
+ binary: assets/field/bg/grd_s_f_3_v.bin
+ header: assets/field/bg/grd_s_f_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_4_v
+ binary: assets/field/bg/grd_s_f_4_v.bin
+ header: assets/field/bg/grd_s_f_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_5_v
+ binary: assets/field/bg/grd_s_f_5_v.bin
+ header: assets/field/bg/grd_s_f_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_6_v
+ binary: assets/field/bg/grd_s_f_6_v.bin
+ header: assets/field/bg/grd_s_f_6_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_7_v
+ binary: assets/field/bg/grd_s_f_7_v.bin
+ header: assets/field/bg/grd_s_f_7_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_8_v
+ binary: assets/field/bg/grd_s_f_8_v.bin
+ header: assets/field/bg/grd_s_f_8_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_9_v
+ binary: assets/field/bg/grd_s_f_9_v.bin
+ header: assets/field/bg/grd_s_f_9_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_ko_1_v
+ binary: assets/field/bg/grd_s_f_ko_1_v.bin
+ header: assets/field/bg/grd_s_f_ko_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_ko_2_v
+ binary: assets/field/bg/grd_s_f_ko_2_v.bin
+ header: assets/field/bg/grd_s_f_ko_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_ko_3_v
+ binary: assets/field/bg/grd_s_f_ko_3_v.bin
+ header: assets/field/bg/grd_s_f_ko_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mh_1_v
+ binary: assets/field/bg/grd_s_f_mh_1_v.bin
+ header: assets/field/bg/grd_s_f_mh_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mh_2_v
+ binary: assets/field/bg/grd_s_f_mh_2_v.bin
+ header: assets/field/bg/grd_s_f_mh_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mh_3_v
+ binary: assets/field/bg/grd_s_f_mh_3_v.bin
+ header: assets/field/bg/grd_s_f_mh_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mu_1_v
+ binary: assets/field/bg/grd_s_f_mu_1_v.bin
+ header: assets/field/bg/grd_s_f_mu_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mu_2_v
+ binary: assets/field/bg/grd_s_f_mu_2_v.bin
+ header: assets/field/bg/grd_s_f_mu_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_mu_3_v
+ binary: assets/field/bg/grd_s_f_mu_3_v.bin
+ header: assets/field/bg/grd_s_f_mu_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_pk_1_v
+ binary: assets/field/bg/grd_s_f_pk_1_v.bin
+ header: assets/field/bg/grd_s_f_pk_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_pk_2_v
+ binary: assets/field/bg/grd_s_f_pk_2_v.bin
+ header: assets/field/bg/grd_s_f_pk_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_f_pk_3_v
+ binary: assets/field/bg/grd_s_f_pk_3_v.bin
+ header: assets/field/bg/grd_s_f_pk_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_hole_test_v
+ binary: assets/field/bg/grd_s_hole_test_v.bin
+ header: assets/field/bg/grd_s_hole_test_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_il_1_v
+ binary: assets/field/bg/grd_s_il_1_v.bin
+ header: assets/field/bg/grd_s_il_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_il_2_v
+ binary: assets/field/bg/grd_s_il_2_v.bin
+ header: assets/field/bg/grd_s_il_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_il_3_v
+ binary: assets/field/bg/grd_s_il_3_v.bin
+ header: assets/field/bg/grd_s_il_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_il_4_v
+ binary: assets/field/bg/grd_s_il_4_v.bin
+ header: assets/field/bg/grd_s_il_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_ir_1_v
+ binary: assets/field/bg/grd_s_ir_1_v.bin
+ header: assets/field/bg/grd_s_ir_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_ir_2_v
+ binary: assets/field/bg/grd_s_ir_2_v.bin
+ header: assets/field/bg/grd_s_ir_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_ir_3_v
+ binary: assets/field/bg/grd_s_ir_3_v.bin
+ header: assets/field/bg/grd_s_ir_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_ir_4_v
+ binary: assets/field/bg/grd_s_ir_4_v.bin
+ header: assets/field/bg/grd_s_ir_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_1_v
+ binary: assets/field/bg/grd_s_m_1_v.bin
+ header: assets/field/bg/grd_s_m_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_10_v
+ binary: assets/field/bg/grd_s_m_10_v.bin
+ header: assets/field/bg/grd_s_m_10_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_2_v
+ binary: assets/field/bg/grd_s_m_2_v.bin
+ header: assets/field/bg/grd_s_m_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_3_v
+ binary: assets/field/bg/grd_s_m_3_v.bin
+ header: assets/field/bg/grd_s_m_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_4_v
+ binary: assets/field/bg/grd_s_m_4_v.bin
+ header: assets/field/bg/grd_s_m_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_5_v
+ binary: assets/field/bg/grd_s_m_5_v.bin
+ header: assets/field/bg/grd_s_m_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_6_v
+ binary: assets/field/bg/grd_s_m_6_v.bin
+ header: assets/field/bg/grd_s_m_6_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_7_v
+ binary: assets/field/bg/grd_s_m_7_v.bin
+ header: assets/field/bg/grd_s_m_7_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_8_v
+ binary: assets/field/bg/grd_s_m_8_v.bin
+ header: assets/field/bg/grd_s_m_8_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_9_v
+ binary: assets/field/bg/grd_s_m_9_v.bin
+ header: assets/field/bg/grd_s_m_9_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_1_v
+ binary: assets/field/bg/grd_s_m_r1_1_v.bin
+ header: assets/field/bg/grd_s_m_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_2_v
+ binary: assets/field/bg/grd_s_m_r1_2_v.bin
+ header: assets/field/bg/grd_s_m_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_3_v
+ binary: assets/field/bg/grd_s_m_r1_3_v.bin
+ header: assets/field/bg/grd_s_m_r1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_4_v
+ binary: assets/field/bg/grd_s_m_r1_4_v.bin
+ header: assets/field/bg/grd_s_m_r1_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_5_v
+ binary: assets/field/bg/grd_s_m_r1_5_v.bin
+ header: assets/field/bg/grd_s_m_r1_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_b_1_v
+ binary: assets/field/bg/grd_s_m_r1_b_1_v.bin
+ header: assets/field/bg/grd_s_m_r1_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_b_2_v
+ binary: assets/field/bg/grd_s_m_r1_b_2_v.bin
+ header: assets/field/bg/grd_s_m_r1_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_r1_b_3_v
+ binary: assets/field/bg/grd_s_m_r1_b_3_v.bin
+ header: assets/field/bg/grd_s_m_r1_b_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_ta_1_v
+ binary: assets/field/bg/grd_s_m_ta_1_v.bin
+ header: assets/field/bg/grd_s_m_ta_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_ta_2_v
+ binary: assets/field/bg/grd_s_m_ta_2_v.bin
+ header: assets/field/bg/grd_s_m_ta_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_ta_3_v
+ binary: assets/field/bg/grd_s_m_ta_3_v.bin
+ header: assets/field/bg/grd_s_m_ta_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_wf_1_v
+ binary: assets/field/bg/grd_s_m_wf_1_v.bin
+ header: assets/field/bg/grd_s_m_wf_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_wf_2_v
+ binary: assets/field/bg/grd_s_m_wf_2_v.bin
+ header: assets/field/bg/grd_s_m_wf_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_m_wf_3_v
+ binary: assets/field/bg/grd_s_m_wf_3_v.bin
+ header: assets/field/bg/grd_s_m_wf_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_1_v
+ binary: assets/field/bg/grd_s_o_1_v.bin
+ header: assets/field/bg/grd_s_o_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_10_v
+ binary: assets/field/bg/grd_s_o_10_v.bin
+ header: assets/field/bg/grd_s_o_10_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_2_v
+ binary: assets/field/bg/grd_s_o_2_v.bin
+ header: assets/field/bg/grd_s_o_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_3_v
+ binary: assets/field/bg/grd_s_o_3_v.bin
+ header: assets/field/bg/grd_s_o_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_4_v
+ binary: assets/field/bg/grd_s_o_4_v.bin
+ header: assets/field/bg/grd_s_o_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_5_v
+ binary: assets/field/bg/grd_s_o_5_v.bin
+ header: assets/field/bg/grd_s_o_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_6_v
+ binary: assets/field/bg/grd_s_o_6_v.bin
+ header: assets/field/bg/grd_s_o_6_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_7_v
+ binary: assets/field/bg/grd_s_o_7_v.bin
+ header: assets/field/bg/grd_s_o_7_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_8_v
+ binary: assets/field/bg/grd_s_o_8_v.bin
+ header: assets/field/bg/grd_s_o_8_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_9_v
+ binary: assets/field/bg/grd_s_o_9_v.bin
+ header: assets/field/bg/grd_s_o_9_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_i_1_v
+ binary: assets/field/bg/grd_s_o_i_1_v.bin
+ header: assets/field/bg/grd_s_o_i_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_i_2_v
+ binary: assets/field/bg/grd_s_o_i_2_v.bin
+ header: assets/field/bg/grd_s_o_i_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_1_v
+ binary: assets/field/bg/grd_s_o_r1_1_v.bin
+ header: assets/field/bg/grd_s_o_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_2_v
+ binary: assets/field/bg/grd_s_o_r1_2_v.bin
+ header: assets/field/bg/grd_s_o_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_3_v
+ binary: assets/field/bg/grd_s_o_r1_3_v.bin
+ header: assets/field/bg/grd_s_o_r1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_4_v
+ binary: assets/field/bg/grd_s_o_r1_4_v.bin
+ header: assets/field/bg/grd_s_o_r1_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_5_v
+ binary: assets/field/bg/grd_s_o_r1_5_v.bin
+ header: assets/field/bg/grd_s_o_r1_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_b_1_v
+ binary: assets/field/bg/grd_s_o_r1_b_1_v.bin
+ header: assets/field/bg/grd_s_o_r1_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_b_2_v
+ binary: assets/field/bg/grd_s_o_r1_b_2_v.bin
+ header: assets/field/bg/grd_s_o_r1_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_r1_b_3_v
+ binary: assets/field/bg/grd_s_o_r1_b_3_v.bin
+ header: assets/field/bg/grd_s_o_r1_b_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_ta_1_v
+ binary: assets/field/bg/grd_s_o_ta_1_v.bin
+ header: assets/field/bg/grd_s_o_ta_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_ta_2_v
+ binary: assets/field/bg/grd_s_o_ta_2_v.bin
+ header: assets/field/bg/grd_s_o_ta_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_ta_3_v
+ binary: assets/field/bg/grd_s_o_ta_3_v.bin
+ header: assets/field/bg/grd_s_o_ta_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_wf_1_v
+ binary: assets/field/bg/grd_s_o_wf_1_v.bin
+ header: assets/field/bg/grd_s_o_wf_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_wf_2_v
+ binary: assets/field/bg/grd_s_o_wf_2_v.bin
+ header: assets/field/bg/grd_s_o_wf_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_o_wf_3_v
+ binary: assets/field/bg/grd_s_o_wf_3_v.bin
+ header: assets/field/bg/grd_s_o_wf_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_1_v
+ binary: assets/field/bg/grd_s_r1_1_v.bin
+ header: assets/field/bg/grd_s_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_2_v
+ binary: assets/field/bg/grd_s_r1_2_v.bin
+ header: assets/field/bg/grd_s_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_3_v
+ binary: assets/field/bg/grd_s_r1_3_v.bin
+ header: assets/field/bg/grd_s_r1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_4_v
+ binary: assets/field/bg/grd_s_r1_4_v.bin
+ header: assets/field/bg/grd_s_r1_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_b_1_v
+ binary: assets/field/bg/grd_s_r1_b_1_v.bin
+ header: assets/field/bg/grd_s_r1_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_b_2_v
+ binary: assets/field/bg/grd_s_r1_b_2_v.bin
+ header: assets/field/bg/grd_s_r1_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_b_3_v
+ binary: assets/field/bg/grd_s_r1_b_3_v.bin
+ header: assets/field/bg/grd_s_r1_b_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r1_p_1_v
+ binary: assets/field/bg/grd_s_r1_p_1_v.bin
+ header: assets/field/bg/grd_s_r1_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_1_v
+ binary: assets/field/bg/grd_s_r2_1_v.bin
+ header: assets/field/bg/grd_s_r2_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_2_v
+ binary: assets/field/bg/grd_s_r2_2_v.bin
+ header: assets/field/bg/grd_s_r2_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_3_v
+ binary: assets/field/bg/grd_s_r2_3_v.bin
+ header: assets/field/bg/grd_s_r2_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_4_v
+ binary: assets/field/bg/grd_s_r2_4_v.bin
+ header: assets/field/bg/grd_s_r2_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_b_1_v
+ binary: assets/field/bg/grd_s_r2_b_1_v.bin
+ header: assets/field/bg/grd_s_r2_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_b_2_v
+ binary: assets/field/bg/grd_s_r2_b_2_v.bin
+ header: assets/field/bg/grd_s_r2_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_b_3_v
+ binary: assets/field/bg/grd_s_r2_b_3_v.bin
+ header: assets/field/bg/grd_s_r2_b_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r2_p_1_v
+ binary: assets/field/bg/grd_s_r2_p_1_v.bin
+ header: assets/field/bg/grd_s_r2_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_1_v
+ binary: assets/field/bg/grd_s_r3_1_v.bin
+ header: assets/field/bg/grd_s_r3_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_2_v
+ binary: assets/field/bg/grd_s_r3_2_v.bin
+ header: assets/field/bg/grd_s_r3_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_3_v
+ binary: assets/field/bg/grd_s_r3_3_v.bin
+ header: assets/field/bg/grd_s_r3_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_4_v
+ binary: assets/field/bg/grd_s_r3_4_v.bin
+ header: assets/field/bg/grd_s_r3_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_b_1_v
+ binary: assets/field/bg/grd_s_r3_b_1_v.bin
+ header: assets/field/bg/grd_s_r3_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_b_2_v
+ binary: assets/field/bg/grd_s_r3_b_2_v.bin
+ header: assets/field/bg/grd_s_r3_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_b_3_v
+ binary: assets/field/bg/grd_s_r3_b_3_v.bin
+ header: assets/field/bg/grd_s_r3_b_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r3_p_1_v
+ binary: assets/field/bg/grd_s_r3_p_1_v.bin
+ header: assets/field/bg/grd_s_r3_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_1_v
+ binary: assets/field/bg/grd_s_r4_1_v.bin
+ header: assets/field/bg/grd_s_r4_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_2_v
+ binary: assets/field/bg/grd_s_r4_2_v.bin
+ header: assets/field/bg/grd_s_r4_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_3_v
+ binary: assets/field/bg/grd_s_r4_3_v.bin
+ header: assets/field/bg/grd_s_r4_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_b_1_v
+ binary: assets/field/bg/grd_s_r4_b_1_v.bin
+ header: assets/field/bg/grd_s_r4_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_b_2_v
+ binary: assets/field/bg/grd_s_r4_b_2_v.bin
+ header: assets/field/bg/grd_s_r4_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r4_p_1_v
+ binary: assets/field/bg/grd_s_r4_p_1_v.bin
+ header: assets/field/bg/grd_s_r4_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_1_v
+ binary: assets/field/bg/grd_s_r5_1_v.bin
+ header: assets/field/bg/grd_s_r5_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_2_v
+ binary: assets/field/bg/grd_s_r5_2_v.bin
+ header: assets/field/bg/grd_s_r5_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_3_v
+ binary: assets/field/bg/grd_s_r5_3_v.bin
+ header: assets/field/bg/grd_s_r5_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_b_1_v
+ binary: assets/field/bg/grd_s_r5_b_1_v.bin
+ header: assets/field/bg/grd_s_r5_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_b_2_v
+ binary: assets/field/bg/grd_s_r5_b_2_v.bin
+ header: assets/field/bg/grd_s_r5_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r5_p_1_v
+ binary: assets/field/bg/grd_s_r5_p_1_v.bin
+ header: assets/field/bg/grd_s_r5_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_1_v
+ binary: assets/field/bg/grd_s_r6_1_v.bin
+ header: assets/field/bg/grd_s_r6_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_2_v
+ binary: assets/field/bg/grd_s_r6_2_v.bin
+ header: assets/field/bg/grd_s_r6_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_3_v
+ binary: assets/field/bg/grd_s_r6_3_v.bin
+ header: assets/field/bg/grd_s_r6_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_b_1_v
+ binary: assets/field/bg/grd_s_r6_b_1_v.bin
+ header: assets/field/bg/grd_s_r6_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_b_2_v
+ binary: assets/field/bg/grd_s_r6_b_2_v.bin
+ header: assets/field/bg/grd_s_r6_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r6_p_1_v
+ binary: assets/field/bg/grd_s_r6_p_1_v.bin
+ header: assets/field/bg/grd_s_r6_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_1_v
+ binary: assets/field/bg/grd_s_r7_1_v.bin
+ header: assets/field/bg/grd_s_r7_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_2_v
+ binary: assets/field/bg/grd_s_r7_2_v.bin
+ header: assets/field/bg/grd_s_r7_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_3_v
+ binary: assets/field/bg/grd_s_r7_3_v.bin
+ header: assets/field/bg/grd_s_r7_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_b_1_v
+ binary: assets/field/bg/grd_s_r7_b_1_v.bin
+ header: assets/field/bg/grd_s_r7_b_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_b_2_v
+ binary: assets/field/bg/grd_s_r7_b_2_v.bin
+ header: assets/field/bg/grd_s_r7_b_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_r7_p_1_v
+ binary: assets/field/bg/grd_s_r7_p_1_v.bin
+ header: assets/field/bg/grd_s_r7_p_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_1_v
+ binary: assets/field/bg/grd_s_t_1_v.bin
+ header: assets/field/bg/grd_s_t_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_10_v
+ binary: assets/field/bg/grd_s_t_10_v.bin
+ header: assets/field/bg/grd_s_t_10_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_2_v
+ binary: assets/field/bg/grd_s_t_2_v.bin
+ header: assets/field/bg/grd_s_t_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_3_v
+ binary: assets/field/bg/grd_s_t_3_v.bin
+ header: assets/field/bg/grd_s_t_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_4_v
+ binary: assets/field/bg/grd_s_t_4_v.bin
+ header: assets/field/bg/grd_s_t_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_5_v
+ binary: assets/field/bg/grd_s_t_5_v.bin
+ header: assets/field/bg/grd_s_t_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_6_v
+ binary: assets/field/bg/grd_s_t_6_v.bin
+ header: assets/field/bg/grd_s_t_6_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_7_v
+ binary: assets/field/bg/grd_s_t_7_v.bin
+ header: assets/field/bg/grd_s_t_7_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_8_v
+ binary: assets/field/bg/grd_s_t_8_v.bin
+ header: assets/field/bg/grd_s_t_8_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_9_v
+ binary: assets/field/bg/grd_s_t_9_v.bin
+ header: assets/field/bg/grd_s_t_9_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_po_1_v
+ binary: assets/field/bg/grd_s_t_po_1_v.bin
+ header: assets/field/bg/grd_s_t_po_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_po_2_v
+ binary: assets/field/bg/grd_s_t_po_2_v.bin
+ header: assets/field/bg/grd_s_t_po_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_po_3_v
+ binary: assets/field/bg/grd_s_t_po_3_v.bin
+ header: assets/field/bg/grd_s_t_po_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_r1_1_v
+ binary: assets/field/bg/grd_s_t_r1_1_v.bin
+ header: assets/field/bg/grd_s_t_r1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_r1_2_v
+ binary: assets/field/bg/grd_s_t_r1_2_v.bin
+ header: assets/field/bg/grd_s_t_r1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_r1_3_v
+ binary: assets/field/bg/grd_s_t_r1_3_v.bin
+ header: assets/field/bg/grd_s_t_r1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_r1_4_v
+ binary: assets/field/bg/grd_s_t_r1_4_v.bin
+ header: assets/field/bg/grd_s_t_r1_4_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_r1_5_v
+ binary: assets/field/bg/grd_s_t_r1_5_v.bin
+ header: assets/field/bg/grd_s_t_r1_5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_sh_1_v
+ binary: assets/field/bg/grd_s_t_sh_1_v.bin
+ header: assets/field/bg/grd_s_t_sh_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_sh_2_v
+ binary: assets/field/bg/grd_s_t_sh_2_v.bin
+ header: assets/field/bg/grd_s_t_sh_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_sh_3_v
+ binary: assets/field/bg/grd_s_t_sh_3_v.bin
+ header: assets/field/bg/grd_s_t_sh_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_st1_1_v
+ binary: assets/field/bg/grd_s_t_st1_1_v.bin
+ header: assets/field/bg/grd_s_t_st1_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_st1_2_v
+ binary: assets/field/bg/grd_s_t_st1_2_v.bin
+ header: assets/field/bg/grd_s_t_st1_2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: grd_s_t_st1_3_v
+ binary: assets/field/bg/grd_s_t_st1_3_v.bin
+ header: assets/field/bg/grd_s_t_st1_3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_toudai_yuka_pal
+ binary: assets/field/bg/rom_toudai_yuka_pal.bin
+ header: assets/field/bg/rom_toudai_yuka_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_toudai_kabe_pal
+ binary: assets/field/bg/rom_toudai_kabe_pal.bin
+ header: assets/field/bg/rom_toudai_kabe_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_toudai_step_pal
+ binary: assets/field/bg/rom_toudai_step_pal.bin
+ header: assets/field/bg/rom_toudai_step_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_toudai_meka_pal
+ binary: assets/field/bg/rom_toudai_meka_pal.bin
+ header: assets/field/bg/rom_toudai_meka_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_toudai_ukiwa_pal
+ binary: assets/field/bg/rom_toudai_ukiwa_pal.bin
+ header: assets/field/bg/rom_toudai_ukiwa_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_toudai_yuka_tex
+ binary: assets/field/bg/rom_toudai_yuka_tex.bin
+ header: assets/field/bg/rom_toudai_yuka_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_kabeA_tex
+ binary: assets/field/bg/rom_toudai_kabeA_tex.bin
+ header: assets/field/bg/rom_toudai_kabeA_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_kabeB_tex
+ binary: assets/field/bg/rom_toudai_kabeB_tex.bin
+ header: assets/field/bg/rom_toudai_kabeB_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_step_tex
+ binary: assets/field/bg/rom_toudai_step_tex.bin
+ header: assets/field/bg/rom_toudai_step_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_mekaA_tex
+ binary: assets/field/bg/rom_toudai_mekaA_tex.bin
+ header: assets/field/bg/rom_toudai_mekaA_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_ukiwa_tex
+ binary: assets/field/bg/rom_toudai_ukiwa_tex.bin
+ header: assets/field/bg/rom_toudai_ukiwa_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_kage1_tex
+ binary: assets/field/bg/rom_toudai_kage1_tex.bin
+ header: assets/field/bg/rom_toudai_kage1_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_mekaC_tex
+ binary: assets/field/bg/rom_toudai_mekaC_tex.bin
+ header: assets/field/bg/rom_toudai_mekaC_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_kage2_tex
+ binary: assets/field/bg/rom_toudai_kage2_tex.bin
+ header: assets/field/bg/rom_toudai_kage2_tex.inc
+ header_type: raw
+
+ - symbol: rom_toudai_v
+ binary: assets/field/bg/rom_toudai_v.bin
+ header: assets/field/bg/rom_toudai_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: kan_tizu_c1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c1r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c1r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c1r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c1s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c1s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c1s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c2r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c2r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c2r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c3r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c3r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c3r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c5r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c5r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c5r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c6_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c6_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c6r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c6r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c6r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c6s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c6s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c6s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c7_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c7_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c7r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c7r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c7r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_f_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_f_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_f_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r4_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r4_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r5_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r5_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r6_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r6_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r7_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r7_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c5_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c5_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c3_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c3_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r7b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r7b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r7b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c1r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c1r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c1r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c2r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c2r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c2r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c3r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c3r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c3r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c5r2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c5r2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c5r2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c6r3_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c6r3_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c6r3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c7r3_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c7r3_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c7r3_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c2s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c2s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c2s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c3s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c3s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c3s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c5s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c5s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c5s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c7s_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c7s_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c7s_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r2b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r2b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r2b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r4b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r4b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r4b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r5b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r5b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r5b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_r6b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_r6b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_r6b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr2_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr2_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr2_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr4_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr4_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr4_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr5_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr5_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr5_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr6_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr6_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr6_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_pr7_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_pr7_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_pr7_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c3r1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c3r1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c3r1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4r1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4r1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4r1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c1r2b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c1r2b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c1r2b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c4r2b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c4r2b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c4r2b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c5r2b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c5r2b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c5r2b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c6r1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c6r1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c6r1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_c7r1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_c7r1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_c7r1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_tst1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_tst1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_tst1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_tr1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_tr1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_tr1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_t_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_t_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_t_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fsh_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fsh_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fsh_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fpo_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fpo_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fpo_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fpk_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fpk_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fpk_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fmh_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fmh_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fmh_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fko_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fko_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fko_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_mr1_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_mr1_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_mr1_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_m_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_m_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_m_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_mr1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_mr1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_mr1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_tr1b_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_tr1b_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_tr1b_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fta_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fta_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fta_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_mwf_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_mwf_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_mwf_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: kan_tizu_fmu_TA_tex_txt
+ binary: assets/submenu/map/kan_tizu_fmu_TA_tex_txt.bin
+ header: assets/submenu/map/kan_tizu_fmu_TA_tex_txt.inc
+ header_type: raw
+
+ - symbol: rom_museum1_mado_pal
+ binary: assets/field/bg/rom_museum1_mado_pal.bin
+ header: assets/field/bg/rom_museum1_mado_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum1_step_pal
+ binary: assets/field/bg/rom_museum1_step_pal.bin
+ header: assets/field/bg/rom_museum1_step_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum1_floor_pal
+ binary: assets/field/bg/rom_museum1_floor_pal.bin
+ header: assets/field/bg/rom_museum1_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum1_wall_pal
+ binary: assets/field/bg/rom_museum1_wall_pal.bin
+ header: assets/field/bg/rom_museum1_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum1_mado1_tex
+ binary: assets/field/bg/rom_museum1_mado1_tex.bin
+ header: assets/field/bg/rom_museum1_mado1_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_step1_tex
+ binary: assets/field/bg/rom_museum1_step1_tex.bin
+ header: assets/field/bg/rom_museum1_step1_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_step2_tex
+ binary: assets/field/bg/rom_museum1_step2_tex.bin
+ header: assets/field/bg/rom_museum1_step2_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_floorA_tex
+ binary: assets/field/bg/rom_museum1_floorA_tex.bin
+ header: assets/field/bg/rom_museum1_floorA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_floorB_tex
+ binary: assets/field/bg/rom_museum1_floorB_tex.bin
+ header: assets/field/bg/rom_museum1_floorB_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_mado2_tex
+ binary: assets/field/bg/rom_museum1_mado2_tex.bin
+ header: assets/field/bg/rom_museum1_mado2_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_sign1_tex
+ binary: assets/field/bg/rom_museum1_sign1_tex.bin
+ header: assets/field/bg/rom_museum1_sign1_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_wallA_tex
+ binary: assets/field/bg/rom_museum1_wallA_tex.bin
+ header: assets/field/bg/rom_museum1_wallA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_wallB_tex
+ binary: assets/field/bg/rom_museum1_wallB_tex.bin
+ header: assets/field/bg/rom_museum1_wallB_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_sign2_tex
+ binary: assets/field/bg/rom_museum1_sign2_tex.bin
+ header: assets/field/bg/rom_museum1_sign2_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_sign3_tex
+ binary: assets/field/bg/rom_museum1_sign3_tex.bin
+ header: assets/field/bg/rom_museum1_sign3_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_sign4_tex
+ binary: assets/field/bg/rom_museum1_sign4_tex.bin
+ header: assets/field/bg/rom_museum1_sign4_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum1_v
+ binary: assets/field/bg/rom_museum1_v.bin
+ header: assets/field/bg/rom_museum1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_museum5_on_pal
+ binary: assets/field/bg/rom_museum5_on_pal.bin
+ header: assets/field/bg/rom_museum5_on_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum5_wall_pal!.data:0x008CC8E0
+ binary: assets/field/bg/rom_museum5_wall_pal.bin
+ header: assets/field/bg/rom_museum5_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum5_floor_pal
+ binary: assets/field/bg/rom_museum5_floor_pal.bin
+ header: assets/field/bg/rom_museum5_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum5_step_pal
+ binary: assets/field/bg/rom_museum5_step_pal.bin
+ header: assets/field/bg/rom_museum5_step_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum5_ki_tex
+ binary: assets/field/bg/rom_museum5_ki_tex.bin
+ header: assets/field/bg/rom_museum5_ki_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_wallA_tex!.data:0x008CCB40
+ binary: assets/field/bg/rom_museum5_wallA_tex.bin
+ header: assets/field/bg/rom_museum5_wallA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_floor_tex
+ binary: assets/field/bg/rom_museum5_floor_tex.bin
+ header: assets/field/bg/rom_museum5_floor_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_step_tex
+ binary: assets/field/bg/rom_museum5_step_tex.bin
+ header: assets/field/bg/rom_museum5_step_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_isi_tex
+ binary: assets/field/bg/rom_museum5_isi_tex.bin
+ header: assets/field/bg/rom_museum5_isi_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_plate_tex
+ binary: assets/field/bg/rom_museum5_plate_tex.bin
+ header: assets/field/bg/rom_museum5_plate_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum5_v
+ binary: assets/field/bg/rom_museum5_v.bin
+ header: assets/field/bg/rom_museum5_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_museum2_wall_pal
+ binary: assets/field/bg/rom_museum2_wall_pal.bin
+ header: assets/field/bg/rom_museum2_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum2_floor_pal
+ binary: assets/field/bg/rom_museum2_floor_pal.bin
+ header: assets/field/bg/rom_museum2_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum2_step1_pal
+ binary: assets/field/bg/rom_museum2_step1_pal.bin
+ header: assets/field/bg/rom_museum2_step1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum2_wallA_tex
+ binary: assets/field/bg/rom_museum2_wallA_tex.bin
+ header: assets/field/bg/rom_museum2_wallA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum2_wallB_tex
+ binary: assets/field/bg/rom_museum2_wallB_tex.bin
+ header: assets/field/bg/rom_museum2_wallB_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum2_floorA_tex
+ binary: assets/field/bg/rom_museum2_floorA_tex.bin
+ header: assets/field/bg/rom_museum2_floorA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum2_step1_tex
+ binary: assets/field/bg/rom_museum2_step1_tex.bin
+ header: assets/field/bg/rom_museum2_step1_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum2_plate_tex
+ binary: assets/field/bg/rom_museum2_plate_tex.bin
+ header: assets/field/bg/rom_museum2_plate_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum2_v
+ binary: assets/field/bg/rom_museum2_v.bin
+ header: assets/field/bg/rom_museum2_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_museum3_wall_pal
+ binary: assets/field/bg/rom_museum3_wall_pal.bin
+ header: assets/field/bg/rom_museum3_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum3_back_pal
+ binary: assets/field/bg/rom_museum3_back_pal.bin
+ header: assets/field/bg/rom_museum3_back_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum3_floor_pal
+ binary: assets/field/bg/rom_museum3_floor_pal.bin
+ header: assets/field/bg/rom_museum3_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_museum3_wallA_tex
+ binary: assets/field/bg/rom_museum3_wallA_tex.bin
+ header: assets/field/bg/rom_museum3_wallA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_wallB_tex
+ binary: assets/field/bg/rom_museum3_wallB_tex.bin
+ header: assets/field/bg/rom_museum3_wallB_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_back_tex
+ binary: assets/field/bg/rom_museum3_back_tex.bin
+ header: assets/field/bg/rom_museum3_back_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_floorA_tex
+ binary: assets/field/bg/rom_museum3_floorA_tex.bin
+ header: assets/field/bg/rom_museum3_floorA_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_step_tex
+ binary: assets/field/bg/rom_museum3_step_tex.bin
+ header: assets/field/bg/rom_museum3_step_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_hasira_tex
+ binary: assets/field/bg/rom_museum3_hasira_tex.bin
+ header: assets/field/bg/rom_museum3_hasira_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_backside_tex
+ binary: assets/field/bg/rom_museum3_backside_tex.bin
+ header: assets/field/bg/rom_museum3_backside_tex.inc
+ header_type: raw
+
+ - symbol: rom_museum3_v
+ binary: assets/field/bg/rom_museum3_v.bin
+ header: assets/field/bg/rom_museum3_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_tailor_wall_pal
+ binary: assets/field/bg/rom_tailor_wall_pal.bin
+ header: assets/field/bg/rom_tailor_wall_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_floor_pal
+ binary: assets/field/bg/rom_tailor_floor_pal.bin
+ header: assets/field/bg/rom_tailor_floor_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_mado_pal
+ binary: assets/field/bg/rom_tailor_mado_pal.bin
+ header: assets/field/bg/rom_tailor_mado_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_reji_pal
+ binary: assets/field/bg/rom_tailor_reji_pal.bin
+ header: assets/field/bg/rom_tailor_reji_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_dogu_pal
+ binary: assets/field/bg/rom_tailor_dogu_pal.bin
+ header: assets/field/bg/rom_tailor_dogu_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_misin_pal
+ binary: assets/field/bg/rom_tailor_misin_pal.bin
+ header: assets/field/bg/rom_tailor_misin_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_table_pal
+ binary: assets/field/bg/rom_tailor_table_pal.bin
+ header: assets/field/bg/rom_tailor_table_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_box_pal
+ binary: assets/field/bg/rom_tailor_box_pal.bin
+ header: assets/field/bg/rom_tailor_box_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_quilt_pal
+ binary: assets/field/bg/rom_tailor_quilt_pal.bin
+ header: assets/field/bg/rom_tailor_quilt_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_ent_pal
+ binary: assets/field/bg/rom_tailor_ent_pal.bin
+ header: assets/field/bg/rom_tailor_ent_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tailor_wallA_tex
+ binary: assets/field/bg/rom_tailor_wallA_tex.bin
+ header: assets/field/bg/rom_tailor_wallA_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_wallB_tex
+ binary: assets/field/bg/rom_tailor_wallB_tex.bin
+ header: assets/field/bg/rom_tailor_wallB_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_floorA_tex
+ binary: assets/field/bg/rom_tailor_floorA_tex.bin
+ header: assets/field/bg/rom_tailor_floorA_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_floorB_tex
+ binary: assets/field/bg/rom_tailor_floorB_tex.bin
+ header: assets/field/bg/rom_tailor_floorB_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_floorC_tex
+ binary: assets/field/bg/rom_tailor_floorC_tex.bin
+ header: assets/field/bg/rom_tailor_floorC_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_floorD_tex
+ binary: assets/field/bg/rom_tailor_floorD_tex.bin
+ header: assets/field/bg/rom_tailor_floorD_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_kage1_tex
+ binary: assets/field/bg/rom_tailor_kage1_tex.bin
+ header: assets/field/bg/rom_tailor_kage1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_mado_tex
+ binary: assets/field/bg/rom_tailor_mado_tex.bin
+ header: assets/field/bg/rom_tailor_mado_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic1_tex
+ binary: assets/field/bg/rom_tailor_pic1_tex.bin
+ header: assets/field/bg/rom_tailor_pic1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic2_tex
+ binary: assets/field/bg/rom_tailor_pic2_tex.bin
+ header: assets/field/bg/rom_tailor_pic2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic3_tex
+ binary: assets/field/bg/rom_tailor_pic3_tex.bin
+ header: assets/field/bg/rom_tailor_pic3_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic4_tex
+ binary: assets/field/bg/rom_tailor_pic4_tex.bin
+ header: assets/field/bg/rom_tailor_pic4_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic5_tex
+ binary: assets/field/bg/rom_tailor_pic5_tex.bin
+ header: assets/field/bg/rom_tailor_pic5_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic6_tex
+ binary: assets/field/bg/rom_tailor_pic6_tex.bin
+ header: assets/field/bg/rom_tailor_pic6_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic7_tex
+ binary: assets/field/bg/rom_tailor_pic7_tex.bin
+ header: assets/field/bg/rom_tailor_pic7_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_pic8_tex
+ binary: assets/field/bg/rom_tailor_pic8_tex.bin
+ header: assets/field/bg/rom_tailor_pic8_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_tyoki_tex
+ binary: assets/field/bg/rom_tailor_tyoki_tex.bin
+ header: assets/field/bg/rom_tailor_tyoki_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_cloth1_tex
+ binary: assets/field/bg/rom_tailor_cloth1_tex.bin
+ header: assets/field/bg/rom_tailor_cloth1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_misin2_tex
+ binary: assets/field/bg/rom_tailor_misin2_tex.bin
+ header: assets/field/bg/rom_tailor_misin2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_mae_tex
+ binary: assets/field/bg/rom_tailor_table_mae_tex.bin
+ header: assets/field/bg/rom_tailor_table_mae_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_yoko_tex
+ binary: assets/field/bg/rom_tailor_table_yoko_tex.bin
+ header: assets/field/bg/rom_tailor_table_yoko_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_ue_tex
+ binary: assets/field/bg/rom_tailor_table_ue_tex.bin
+ header: assets/field/bg/rom_tailor_table_ue_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_ito_tex
+ binary: assets/field/bg/rom_tailor_ito_tex.bin
+ header: assets/field/bg/rom_tailor_ito_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_reji_tex
+ binary: assets/field/bg/rom_tailor_table_reji_tex.bin
+ header: assets/field/bg/rom_tailor_table_reji_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_misin1_tex
+ binary: assets/field/bg/rom_tailor_misin1_tex.bin
+ header: assets/field/bg/rom_tailor_misin1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_misindai_tex
+ binary: assets/field/bg/rom_tailor_misindai_tex.bin
+ header: assets/field/bg/rom_tailor_misindai_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_misin1_tex
+ binary: assets/field/bg/rom_tailor_table_misin1_tex.bin
+ header: assets/field/bg/rom_tailor_table_misin1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_reji_tex
+ binary: assets/field/bg/rom_tailor_reji_tex.bin
+ header: assets/field/bg/rom_tailor_reji_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_table_misin2_tex
+ binary: assets/field/bg/rom_tailor_table_misin2_tex.bin
+ header: assets/field/bg/rom_tailor_table_misin2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box_tex
+ binary: assets/field/bg/rom_tailor_box_tex.bin
+ header: assets/field/bg/rom_tailor_box_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box1_tex
+ binary: assets/field/bg/rom_tailor_box1_tex.bin
+ header: assets/field/bg/rom_tailor_box1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box2_tex
+ binary: assets/field/bg/rom_tailor_box2_tex.bin
+ header: assets/field/bg/rom_tailor_box2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box3_tex
+ binary: assets/field/bg/rom_tailor_box3_tex.bin
+ header: assets/field/bg/rom_tailor_box3_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box4_tex
+ binary: assets/field/bg/rom_tailor_box4_tex.bin
+ header: assets/field/bg/rom_tailor_box4_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box5_tex
+ binary: assets/field/bg/rom_tailor_box5_tex.bin
+ header: assets/field/bg/rom_tailor_box5_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box6_tex
+ binary: assets/field/bg/rom_tailor_box6_tex.bin
+ header: assets/field/bg/rom_tailor_box6_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box7_tex
+ binary: assets/field/bg/rom_tailor_box7_tex.bin
+ header: assets/field/bg/rom_tailor_box7_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_box8_tex
+ binary: assets/field/bg/rom_tailor_box8_tex.bin
+ header: assets/field/bg/rom_tailor_box8_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_kage2_tex
+ binary: assets/field/bg/rom_tailor_kage2_tex.bin
+ header: assets/field/bg/rom_tailor_kage2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_quilt_tex
+ binary: assets/field/bg/rom_tailor_quilt_tex.bin
+ header: assets/field/bg/rom_tailor_quilt_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_ent_tex
+ binary: assets/field/bg/rom_tailor_ent_tex.bin
+ header: assets/field/bg/rom_tailor_ent_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_misinbari1_tex
+ binary: assets/field/bg/rom_tailor_misinbari1_tex.bin
+ header: assets/field/bg/rom_tailor_misinbari1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_misinbari2_tex
+ binary: assets/field/bg/rom_tailor_misinbari2_tex.bin
+ header: assets/field/bg/rom_tailor_misinbari2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_tape_tex
+ binary: assets/field/bg/rom_tailor_tape_tex.bin
+ header: assets/field/bg/rom_tailor_tape_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_dogu1_tex
+ binary: assets/field/bg/rom_tailor_dogu1_tex.bin
+ header: assets/field/bg/rom_tailor_dogu1_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_dogu2_tex
+ binary: assets/field/bg/rom_tailor_dogu2_tex.bin
+ header: assets/field/bg/rom_tailor_dogu2_tex.inc
+ header_type: raw
+
+ - symbol: rom_tailor_v
+ binary: assets/field/bg/rom_tailor_v.bin
+ header: assets/field/bg/rom_tailor_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: myr_kotei_pal
+ binary: assets/field/bg/myr_kotei_pal.bin
+ header: assets/field/bg/myr_kotei_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: myr_enter
+ binary: assets/field/bg/myr_enter.bin
+ header: assets/field/bg/myr_enter.inc
+ header_type: raw
+
+ - symbol: myr_window
+ binary: assets/field/bg/myr_window.bin
+ header: assets/field/bg/myr_window.inc
+ header_type: raw
+
+ - symbol: myr_kotei_v
+ binary: assets/field/bg/myr_kotei_v.bin
+ header: assets/field/bg/myr_kotei_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_open_pal
+ binary: assets/field/bg/rom_open_pal.bin
+ header: assets/field/bg/rom_open_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_open_floor_tex
+ binary: assets/field/bg/rom_open_floor_tex.bin
+ header: assets/field/bg/rom_open_floor_tex.inc
+ header_type: raw
+
+ - symbol: rom_open_shade_tex
+ binary: assets/field/bg/rom_open_shade_tex.bin
+ header: assets/field/bg/rom_open_shade_tex.inc
+ header_type: raw
+
+ - symbol: rom_open_spot2_tex_rgb_i4
+ binary: assets/field/bg/rom_open_spot2_tex_rgb_i4.bin
+ header: assets/field/bg/rom_open_spot2_tex_rgb_i4.inc
+ header_type: raw
+
+ - symbol: rom_open_spot_tex
+ binary: assets/field/bg/rom_open_spot_tex.bin
+ header: assets/field/bg/rom_open_spot_tex.inc
+ header_type: raw
+
+ - symbol: grd_player_select_v
+ binary: assets/field/bg/grd_player_select_v.bin
+ header: assets/field/bg/grd_player_select_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_koban_tel_pal
+ binary: assets/field/bg/rom_koban_tel_pal.bin
+ header: assets/field/bg/rom_koban_tel_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_win_pal
+ binary: assets/field/bg/rom_koban_win_pal.bin
+ header: assets/field/bg/rom_koban_win_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_us_pos_pal
+ binary: assets/field/bg/rom_koban_us_pos_pal.bin
+ header: assets/field/bg/rom_koban_us_pos_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_jim_pal
+ binary: assets/field/bg/rom_koban_jim_pal.bin
+ header: assets/field/bg/rom_koban_jim_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_kabe_pal
+ binary: assets/field/bg/rom_koban_kabe_pal.bin
+ header: assets/field/bg/rom_koban_kabe_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_roc_pal
+ binary: assets/field/bg/rom_koban_roc_pal.bin
+ header: assets/field/bg/rom_koban_roc_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_koban_tel!.data:0x00939B60
+ binary: assets/field/bg/rom_koban_tel.bin
+ header: assets/field/bg/rom_koban_tel.inc
+ header_type: raw
+
+ - symbol: rom_koban_win!.data:0x00939D60
+ binary: assets/field/bg/rom_koban_win.bin
+ header: assets/field/bg/rom_koban_win.inc
+ header_type: raw
+
+ - symbol: rom_koban_desk_front
+ binary: assets/field/bg/rom_koban_desk_front.bin
+ header: assets/field/bg/rom_koban_desk_front.inc
+ header_type: raw
+
+ - symbol: rom_koban_desk_side
+ binary: assets/field/bg/rom_koban_desk_side.bin
+ header: assets/field/bg/rom_koban_desk_side.inc
+ header_type: raw
+
+ - symbol: rom_koban_desk_top
+ binary: assets/field/bg/rom_koban_desk_top.bin
+ header: assets/field/bg/rom_koban_desk_top.inc
+ header_type: raw
+
+ - symbol: rom_koban_yuka
+ binary: assets/field/bg/rom_koban_yuka.bin
+ header: assets/field/bg/rom_koban_yuka.inc
+ header_type: raw
+
+ - symbol: rom_koban_us_pos1
+ binary: assets/field/bg/rom_koban_us_pos1.bin
+ header: assets/field/bg/rom_koban_us_pos1.inc
+ header_type: raw
+
+ - symbol: rom_koban_us_pos2
+ binary: assets/field/bg/rom_koban_us_pos2.bin
+ header: assets/field/bg/rom_koban_us_pos2.inc
+ header_type: raw
+
+ - symbol: rom_koban_kage1
+ binary: assets/field/bg/rom_koban_kage1.bin
+ header: assets/field/bg/rom_koban_kage1.inc
+ header_type: raw
+
+ - symbol: rom_koban_kage2
+ binary: assets/field/bg/rom_koban_kage2.bin
+ header: assets/field/bg/rom_koban_kage2.inc
+ header_type: raw
+
+ - symbol: rom_koban_ent
+ binary: assets/field/bg/rom_koban_ent.bin
+ header: assets/field/bg/rom_koban_ent.inc
+ header_type: raw
+
+ - symbol: rom_koban_jim_front
+ binary: assets/field/bg/rom_koban_jim_front.bin
+ header: assets/field/bg/rom_koban_jim_front.inc
+ header_type: raw
+
+ - symbol: rom_koban_jim_side
+ binary: assets/field/bg/rom_koban_jim_side.bin
+ header: assets/field/bg/rom_koban_jim_side.inc
+ header_type: raw
+
+ - symbol: rom_koban_jim_top
+ binary: assets/field/bg/rom_koban_jim_top.bin
+ header: assets/field/bg/rom_koban_jim_top.inc
+ header_type: raw
+
+ - symbol: rom_koban_kabe1
+ binary: assets/field/bg/rom_koban_kabe1.bin
+ header: assets/field/bg/rom_koban_kabe1.inc
+ header_type: raw
+
+ - symbol: rom_koban_telcode
+ binary: assets/field/bg/rom_koban_telcode.bin
+ header: assets/field/bg/rom_koban_telcode.inc
+ header_type: raw
+
+ - symbol: rom_koban_book
+ binary: assets/field/bg/rom_koban_book.bin
+ header: assets/field/bg/rom_koban_book.inc
+ header_type: raw
+
+ - symbol: rom_koban_roc_s
+ binary: assets/field/bg/rom_koban_roc_s.bin
+ header: assets/field/bg/rom_koban_roc_s.inc
+ header_type: raw
+
+ - symbol: rom_koban_roc_t
+ binary: assets/field/bg/rom_koban_roc_t.bin
+ header: assets/field/bg/rom_koban_roc_t.inc
+ header_type: raw
+
+ - symbol: rom_koban_kabe3
+ binary: assets/field/bg/rom_koban_kabe3.bin
+ header: assets/field/bg/rom_koban_kabe3.inc
+ header_type: raw
+
+ - symbol: rom_koban_isu
+ binary: assets/field/bg/rom_koban_isu.bin
+ header: assets/field/bg/rom_koban_isu.inc
+ header_type: raw
+
+ - symbol: rom_koban_roc_i
+ binary: assets/field/bg/rom_koban_roc_i.bin
+ header: assets/field/bg/rom_koban_roc_i.inc
+ header_type: raw
+
+ - symbol: rom_koban_roc_f3
+ binary: assets/field/bg/rom_koban_roc_f3.bin
+ header: assets/field/bg/rom_koban_roc_f3.inc
+ header_type: raw
+
+ - symbol: police_indoor_v
+ binary: assets/field/bg/police_indoor_v.bin
+ header: assets/field/bg/police_indoor_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: mFM_rail_pal
+ binary: assets/mFM_rail_pal.bin
+ header: assets/mFM_rail_pal.inc
+ header_type: none
+ custom_type: pal16c
+
+ - symbol: rom_shop_kouhaku_pal!.data:0x0094F8C0
+ binary: assets/field/bg/rom_shop_kouhaku_pal.bin
+ header: assets/field/bg/rom_shop_kouhaku_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop_kouhaku_tex!.data:0x0094FD60
+ binary: assets/field/bg/rom_shop_kouhaku_tex.bin
+ header: assets/field/bg/rom_shop_kouhaku_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor_tex_pal!.data:0x00952A80
+ binary: assets/field/bg/rom_shop4_1_floor_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_floor_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_lamp_tex_pal
+ binary: assets/field/bg/rom_shop4_1_lamp_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_lamp_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_base_tex_pal!.data:0x00952AC0
+ binary: assets/field/bg/rom_shop4_1_base_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_base_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_stair_tex_pal!.data:0x00952AE0
+ binary: assets/field/bg/rom_shop4_1_stair_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_stair_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_table_tex_pal!.data:0x00952B00
+ binary: assets/field/bg/rom_shop4_1_table_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_table_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_wall_tex_pal!.data:0x00952B20
+ binary: assets/field/bg/rom_shop4_1_wall_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_wall_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_sign01_tex_pal!.data:0x00952B40
+ binary: assets/field/bg/rom_shop4_1_sign01_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_sign01_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_kaunta_tex_pal!.data:0x00952B60
+ binary: assets/field/bg/rom_shop4_1_kaunta_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_kaunta_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_us_sign01_tex_pal
+ binary: assets/field/bg/rom_shop4_1_us_sign01_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_us_sign01_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_us_sign02_tex_pal!.data:0x00952BA0
+ binary: assets/field/bg/rom_shop4_1_us_sign02_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_us_sign02_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_us_sign03_tex_pal
+ binary: assets/field/bg/rom_shop4_1_us_sign03_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_us_sign03_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_sign03_tex_pal!.data:0x00952BE0
+ binary: assets/field/bg/rom_shop4_1_sign03_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_sign03_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_reji_tex_pal!.data:0x00952C00
+ binary: assets/field/bg/rom_shop4_1_reji_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_reji_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_floor01_tex!.data:0x00952C20
+ binary: assets/field/bg/rom_shop4_1_floor01_tex.bin
+ header: assets/field/bg/rom_shop4_1_floor01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_lamp_tex!.data:0x00953420
+ binary: assets/field/bg/rom_shop4_1_lamp_tex.bin
+ header: assets/field/bg/rom_shop4_1_lamp_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_base_tex!.data:0x009534A0
+ binary: assets/field/bg/rom_shop4_1_base_tex.bin
+ header: assets/field/bg/rom_shop4_1_base_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_stair01_tex!.data:0x009536A0
+ binary: assets/field/bg/rom_shop4_1_stair01_tex.bin
+ header: assets/field/bg/rom_shop4_1_stair01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_table01_tex!.data:0x009537A0
+ binary: assets/field/bg/rom_shop4_1_table01_tex.bin
+ header: assets/field/bg/rom_shop4_1_table01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_table02_tex!.data:0x009538A0
+ binary: assets/field/bg/rom_shop4_1_table02_tex.bin
+ header: assets/field/bg/rom_shop4_1_table02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_wall01_tex!.data:0x009539A0
+ binary: assets/field/bg/rom_shop4_1_wall01_tex.bin
+ header: assets/field/bg/rom_shop4_1_wall01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_wall02_tex!.data:0x009541A0
+ binary: assets/field/bg/rom_shop4_1_wall02_tex.bin
+ header: assets/field/bg/rom_shop4_1_wall02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_sign05_tex!.data:0x009543A0
+ binary: assets/field/bg/rom_shop4_1_sign05_tex.bin
+ header: assets/field/bg/rom_shop4_1_sign05_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_kaunta01_tex!.data:0x00954420
+ binary: assets/field/bg/rom_shop4_1_kaunta01_tex.bin
+ header: assets/field/bg/rom_shop4_1_kaunta01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_kaunta02_tex!.data:0x00954620
+ binary: assets/field/bg/rom_shop4_1_kaunta02_tex.bin
+ header: assets/field/bg/rom_shop4_1_kaunta02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_us_sign01_tex!.data:0x009546A0
+ binary: assets/field/bg/rom_shop4_1_us_sign01_tex.bin
+ header: assets/field/bg/rom_shop4_1_us_sign01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_us_sign02_tex!.data:0x00954AA0
+ binary: assets/field/bg/rom_shop4_1_us_sign02_tex.bin
+ header: assets/field/bg/rom_shop4_1_us_sign02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_us_sign03_tex!.data:0x00954BA0
+ binary: assets/field/bg/rom_shop4_1_us_sign03_tex.bin
+ header: assets/field/bg/rom_shop4_1_us_sign03_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_sign04_tex!.data:0x009551A0
+ binary: assets/field/bg/rom_shop4_1_sign04_tex.bin
+ header: assets/field/bg/rom_shop4_1_sign04_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji01_tex!.data:0x009552A0
+ binary: assets/field/bg/rom_shop4_1_reji01_tex.bin
+ header: assets/field/bg/rom_shop4_1_reji01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji02_tex!.data:0x009555A0
+ binary: assets/field/bg/rom_shop4_1_reji02_tex.bin
+ header: assets/field/bg/rom_shop4_1_reji02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji03_tex!.data:0x009556A0
+ binary: assets/field/bg/rom_shop4_1_reji03_tex.bin
+ header: assets/field/bg/rom_shop4_1_reji03_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor02_tex!.data:0x009557A0
+ binary: assets/field/bg/rom_shop4_1_floor02_tex.bin
+ header: assets/field/bg/rom_shop4_1_floor02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor03_tex!.data:0x00955FA0
+ binary: assets/field/bg/rom_shop4_1_floor03_tex.bin
+ header: assets/field/bg/rom_shop4_1_floor03_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor04_tex!.data:0x009567A0
+ binary: assets/field/bg/rom_shop4_1_floor04_tex.bin
+ header: assets/field/bg/rom_shop4_1_floor04_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_shadow01_tex
+ binary: assets/field/bg/rom_shop4_1_shadow01_tex.bin
+ header: assets/field/bg/rom_shop4_1_shadow01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_shadow02_tex!.data:0x009570A0
+ binary: assets/field/bg/rom_shop4_1_shadow02_tex.bin
+ header: assets/field/bg/rom_shop4_1_shadow02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_lamp02_tex
+ binary: assets/field/bg/rom_shop4_1_lamp02_tex.bin
+ header: assets/field/bg/rom_shop4_1_lamp02_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_shadow03_tex
+ binary: assets/field/bg/rom_shop4_1_shadow03_tex.bin
+ header: assets/field/bg/rom_shop4_1_shadow03_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_v
+ binary: assets/field/bg/rom_shop4_1_v.bin
+ header: assets/field/bg/rom_shop4_1_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_shop4_1_floor_tex_pal!.data:0x00958F00
+ binary: assets/field/bg/rom_shop4_1_floor_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_floor_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_base_tex_pal!.data:0x00958F20
+ binary: assets/field/bg/rom_shop4_1_base_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_base_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_stair_tex_pal!.data:0x00958F40
+ binary: assets/field/bg/rom_shop4_1_stair_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_stair_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_table_tex_pal!.data:0x00958F60
+ binary: assets/field/bg/rom_shop4_1_table_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_table_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_wall_tex_pal!.data:0x00958F80
+ binary: assets/field/bg/rom_shop4_1_wall_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_wall_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_sign01_tex_pal!.data:0x00958FA0
+ binary: assets/field/bg/rom_shop4_1_sign01_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_sign01_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_kaunta_tex_pal!.data:0x00958FC0
+ binary: assets/field/bg/rom_shop4_1_kaunta_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_kaunta_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_2_sign01_us_tex_pal!.data:0x00958FE0
+ binary: assets/field/bg/rom_shop4_2_sign01_us_tex_pal.bin
+ header: assets/field/bg/rom_shop4_2_sign01_us_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_us_sign02_tex_pal!.data:0x00959000
+ binary: assets/field/bg/rom_shop4_1_us_sign02_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_us_sign02_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_us_sign0_tex_pal
+ binary: assets/field/bg/rom_shop4_1_us_sign0_tex_pal.bin
+ header: assets/field/bg/rom_shop4_1_us_sign0_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_sign03_tex_pal!.data:0x00959040
+ binary: assets/field/bg/rom_shop4_1_sign03_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_sign03_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_reji_tex_pal!.data:0x00959060
+ binary: assets/field/bg/rom_shop4_1_reji_tex_pal2.bin
+ header: assets/field/bg/rom_shop4_1_reji_tex_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop_kouhaku_pal!.data:0x00959080
+ binary: assets/field/bg/rom_shop_kouhaku_pal2.bin
+ header: assets/field/bg/rom_shop_kouhaku_pal2.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_shop4_1_floor01_tex!.data:0x009590A0
+ binary: assets/field/bg/rom_shop4_1_floor01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_floor01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_base_tex!.data:0x009598A0
+ binary: assets/field/bg/rom_shop4_1_base_tex2.bin
+ header: assets/field/bg/rom_shop4_1_base_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_stair01_tex!.data:0x00959AA0
+ binary: assets/field/bg/rom_shop4_1_stair01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_stair01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_table01_tex!.data:0x00959BA0
+ binary: assets/field/bg/rom_shop4_1_table01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_table01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_table02_tex!.data:0x00959CA0
+ binary: assets/field/bg/rom_shop4_1_table02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_table02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_wall01_tex!.data:0x00959DA0
+ binary: assets/field/bg/rom_shop4_1_wall01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_wall01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_wall02_tex!.data:0x0095A5A0
+ binary: assets/field/bg/rom_shop4_1_wall02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_wall02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_sign05_tex!.data:0x0095A7A0
+ binary: assets/field/bg/rom_shop4_1_sign05_tex2.bin
+ header: assets/field/bg/rom_shop4_1_sign05_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_kaunta01_tex!.data:0x0095A820
+ binary: assets/field/bg/rom_shop4_1_kaunta01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_kaunta01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_kaunta02_tex!.data:0x0095AA20
+ binary: assets/field/bg/rom_shop4_1_kaunta02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_kaunta02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_2_us_sign01_tex!.data:0x0095AAA0
+ binary: assets/field/bg/rom_shop4_2_us_sign01_tex.bin
+ header: assets/field/bg/rom_shop4_2_us_sign01_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_us_sign02_tex!.data:0x0095AEA0
+ binary: assets/field/bg/rom_shop4_1_us_sign02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_us_sign02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_us_sign0_tex!.data:0x0095AFA0
+ binary: assets/field/bg/rom_shop4_1_us_sign0_tex.bin
+ header: assets/field/bg/rom_shop4_1_us_sign0_tex.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_sign04_tex!.data:0x0095B5A0
+ binary: assets/field/bg/rom_shop4_1_sign04_tex2.bin
+ header: assets/field/bg/rom_shop4_1_sign04_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji01_tex!.data:0x0095B6A0
+ binary: assets/field/bg/rom_shop4_1_reji01_tex2.bin
+ header: assets/field/bg/rom_shop4_1_reji01_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji02_tex!.data:0x0095B9A0
+ binary: assets/field/bg/rom_shop4_1_reji02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_reji02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_reji03_tex!.data:0x0095BAA0
+ binary: assets/field/bg/rom_shop4_1_reji03_tex2.bin
+ header: assets/field/bg/rom_shop4_1_reji03_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor02_tex!.data:0x0095BBA0
+ binary: assets/field/bg/rom_shop4_1_floor02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_floor02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor03_tex!.data:0x0095C3A0
+ binary: assets/field/bg/rom_shop4_1_floor03_tex2.bin
+ header: assets/field/bg/rom_shop4_1_floor03_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_floor04_tex!.data:0x0095CBA0
+ binary: assets/field/bg/rom_shop4_1_floor04_tex2.bin
+ header: assets/field/bg/rom_shop4_1_floor04_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_1_shadow02_tex!.data:0x0095D3A0
+ binary: assets/field/bg/rom_shop4_1_shadow02_tex2.bin
+ header: assets/field/bg/rom_shop4_1_shadow02_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop_kouhaku_tex!.data:0x0095D4A0
+ binary: assets/field/bg/rom_shop_kouhaku_tex2.bin
+ header: assets/field/bg/rom_shop_kouhaku_tex2.inc
+ header_type: raw
+
+ - symbol: rom_shop4_fuku_v
+ binary: assets/field/bg/rom_shop4_fuku_v.bin
+ header: assets/field/bg/rom_shop4_fuku_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_tent_box_pal
+ binary: assets/field/bg/rom_tent_box_pal.bin
+ header: assets/field/bg/rom_tent_box_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tent_can_pal
+ binary: assets/field/bg/rom_tent_can_pal.bin
+ header: assets/field/bg/rom_tent_can_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tent_mono1_pal
+ binary: assets/field/bg/rom_tent_mono1_pal.bin
+ header: assets/field/bg/rom_tent_mono1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tent_gas_pal
+ binary: assets/field/bg/rom_tent_gas_pal.bin
+ header: assets/field/bg/rom_tent_gas_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_tent_enter
+ binary: assets/field/bg/rom_tent_enter.bin
+ header: assets/field/bg/rom_tent_enter.inc
+ header_type: raw
+
+ - symbol: rom_tent_floor
+ binary: assets/field/bg/rom_tent_floor.bin
+ header: assets/field/bg/rom_tent_floor.inc
+ header_type: raw
+
+ - symbol: rom_tent_wall1
+ binary: assets/field/bg/rom_tent_wall1.bin
+ header: assets/field/bg/rom_tent_wall1.inc
+ header_type: raw
+
+ - symbol: rom_tent_wall2
+ binary: assets/field/bg/rom_tent_wall2.bin
+ header: assets/field/bg/rom_tent_wall2.inc
+ header_type: raw
+
+ - symbol: rom_tent_bou
+ binary: assets/field/bg/rom_tent_bou.bin
+ header: assets/field/bg/rom_tent_bou.inc
+ header_type: raw
+
+ - symbol: rom_tent_mono1!.data:0x00AB4F40
+ binary: assets/field/bg/rom_tent_mono1.bin
+ header: assets/field/bg/rom_tent_mono1.inc
+ header_type: raw
+
+ - symbol: rom_tent_can!.data:0x00AB5740
+ binary: assets/field/bg/rom_tent_can.bin
+ header: assets/field/bg/rom_tent_can.inc
+ header_type: raw
+
+ - symbol: rom_tent_conpas
+ binary: assets/field/bg/rom_tent_conpas.bin
+ header: assets/field/bg/rom_tent_conpas.inc
+ header_type: raw
+
+ - symbol: rom_tent_box!.data:0x00AB58C0
+ binary: assets/field/bg/rom_tent_box.bin
+ header: assets/field/bg/rom_tent_box.inc
+ header_type: raw
+
+ - symbol: rom_tent_kage_m
+ binary: assets/field/bg/rom_tent_kage_m.bin
+ header: assets/field/bg/rom_tent_kage_m.inc
+ header_type: raw
+
+ - symbol: rom_tent_gas!.data:0x00AB5D40
+ binary: assets/field/bg/rom_tent_gas.bin
+ header: assets/field/bg/rom_tent_gas.inc
+ header_type: raw
+
+ - symbol: rom_tent_kage_s
+ binary: assets/field/bg/rom_tent_kage_s.bin
+ header: assets/field/bg/rom_tent_kage_s.inc
+ header_type: raw
+
+ - symbol: rom_tent_kage_b
+ binary: assets/field/bg/rom_tent_kage_b.bin
+ header: assets/field/bg/rom_tent_kage_b.inc
+ header_type: raw
+
+ - symbol: rom_tent_v
+ binary: assets/field/bg/rom_tent_v.bin
+ header: assets/field/bg/rom_tent_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: room!.data:0x00AB7AE0
+ binary: assets/field/bg/room.bin
+ header: assets/field/bg/room.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: room_floor
+ binary: assets/field/bg/room_floor.bin
+ header: assets/field/bg/room_floor.inc
+ header_type: raw
+
+ - symbol: room_wall!.data:0x00AB7F00
+ binary: assets/field/bg/room_wall.bin
+ header: assets/field/bg/room_wall.inc
+ header_type: raw
+
+ - symbol: room_window
+ binary: assets/field/bg/room_window.bin
+ header: assets/field/bg/room_window.inc
+ header_type: raw
+
+ - symbol: room01_v
+ binary: assets/field/bg/room01_v.bin
+ header: assets/field/bg/room01_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_train_1_pal
+ binary: assets/field/bg/rom_train_1_pal.bin
+ header: assets/field/bg/rom_train_1_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_train_2_pal
+ binary: assets/field/bg/rom_train_2_pal.bin
+ header: assets/field/bg/rom_train_2_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_train_seat1_tex
+ binary: assets/field/bg/rom_train_seat1_tex.bin
+ header: assets/field/bg/rom_train_seat1_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_seat2_tex
+ binary: assets/field/bg/rom_train_seat2_tex.bin
+ header: assets/field/bg/rom_train_seat2_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_floor_tex
+ binary: assets/field/bg/rom_train_floor_tex.bin
+ header: assets/field/bg/rom_train_floor_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_wall1_tex
+ binary: assets/field/bg/rom_train_wall1_tex.bin
+ header: assets/field/bg/rom_train_wall1_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_roof_tex
+ binary: assets/field/bg/rom_train_roof_tex.bin
+ header: assets/field/bg/rom_train_roof_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_wall2_tex
+ binary: assets/field/bg/rom_train_wall2_tex.bin
+ header: assets/field/bg/rom_train_wall2_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_net_tex
+ binary: assets/field/bg/rom_train_net_tex.bin
+ header: assets/field/bg/rom_train_net_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_glass_tex!.data:0x00ABD0A0
+ binary: assets/field/bg/rom_train_glass_tex.bin
+ header: assets/field/bg/rom_train_glass_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_light_tex
+ binary: assets/field/bg/rom_train_light_tex.bin
+ header: assets/field/bg/rom_train_light_tex.inc
+ header_type: raw
+
+ - symbol: rom_train_in_v
+ binary: assets/field/bg/rom_train_in_v.bin
+ header: assets/field/bg/rom_train_in_v.inc
+ header_type: none
+ custom_type: vtx
+
+ - symbol: rom_uranai_floor_tex_pal
+ binary: assets/field/bg/rom_uranai_floor_tex_pal.bin
+ header: assets/field/bg/rom_uranai_floor_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_wall_tex_pal
+ binary: assets/field/bg/rom_uranai_wall_tex_pal.bin
+ header: assets/field/bg/rom_uranai_wall_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_table_tex_pal
+ binary: assets/field/bg/rom_uranai_table_tex_pal.bin
+ header: assets/field/bg/rom_uranai_table_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_tubo_tex_pal
+ binary: assets/field/bg/rom_uranai_tubo_tex_pal.bin
+ header: assets/field/bg/rom_uranai_tubo_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_stand_tex_pal
+ binary: assets/field/bg/rom_uranai_stand_tex_pal.bin
+ header: assets/field/bg/rom_uranai_stand_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_tex_nuno_pal
+ binary: assets/field/bg/rom_uranai_tex_nuno_pal.bin
+ header: assets/field/bg/rom_uranai_tex_nuno_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_tex_bace_pal
+ binary: assets/field/bg/rom_uranai_tex_bace_pal.bin
+ header: assets/field/bg/rom_uranai_tex_bace_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_card_tex_pal
+ binary: assets/field/bg/rom_uranai_card_tex_pal.bin
+ header: assets/field/bg/rom_uranai_card_tex_pal.inc
+ header_type: none
+ custom_type: pal16
+
+ - symbol: rom_uranai_floor_tex!.data:0x00AC2220
+ binary: assets/field/bg/rom_uranai_floor_tex.bin
+ header: assets/field/bg/rom_uranai_floor_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_wall01_tex
+ binary: assets/field/bg/rom_uranai_wall01_tex.bin
+ header: assets/field/bg/rom_uranai_wall01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_wall02_tex
+ binary: assets/field/bg/rom_uranai_wall02_tex.bin
+ header: assets/field/bg/rom_uranai_wall02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_wall03_tex
+ binary: assets/field/bg/rom_uranai_wall03_tex.bin
+ header: assets/field/bg/rom_uranai_wall03_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_table01_tex
+ binary: assets/field/bg/rom_uranai_table01_tex.bin
+ header: assets/field/bg/rom_uranai_table01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_table02_tex
+ binary: assets/field/bg/rom_uranai_table02_tex.bin
+ header: assets/field/bg/rom_uranai_table02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_tubo_tex!.data:0x00AC3920
+ binary: assets/field/bg/rom_uranai_tubo_tex.bin
+ header: assets/field/bg/rom_uranai_tubo_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_shadow01_tex
+ binary: assets/field/bg/rom_uranai_shadow01_tex.bin
+ header: assets/field/bg/rom_uranai_shadow01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_vell_tex
+ binary: assets/field/bg/rom_uranai_vell_tex.bin
+ header: assets/field/bg/rom_uranai_vell_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_vell02_tex
+ binary: assets/field/bg/rom_uranai_vell02_tex.bin
+ header: assets/field/bg/rom_uranai_vell02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_stand01_tex
+ binary: assets/field/bg/rom_uranai_stand01_tex.bin
+ header: assets/field/bg/rom_uranai_stand01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_nuno01_tex
+ binary: assets/field/bg/rom_uranai_nuno01_tex.bin
+ header: assets/field/bg/rom_uranai_nuno01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_nuno02_tex
+ binary: assets/field/bg/rom_uranai_nuno02_tex.bin
+ header: assets/field/bg/rom_uranai_nuno02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_bace_tex
+ binary: assets/field/bg/rom_uranai_bace_tex.bin
+ header: assets/field/bg/rom_uranai_bace_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_card01_tex
+ binary: assets/field/bg/rom_uranai_card01_tex.bin
+ header: assets/field/bg/rom_uranai_card01_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_shadow02_tex
+ binary: assets/field/bg/rom_uranai_shadow02_tex.bin
+ header: assets/field/bg/rom_uranai_shadow02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_card02_tex
+ binary: assets/field/bg/rom_uranai_card02_tex.bin
+ header: assets/field/bg/rom_uranai_card02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_cris02_tex
+ binary: assets/field/bg/rom_uranai_cris02_tex.bin
+ header: assets/field/bg/rom_uranai_cris02_tex.inc
+ header_type: raw
+
+ - symbol: rom_uranai_cris01_tex_rgb_ia8
+ binary: assets/field/bg/rom_uranai_cris01_tex_rgb_ia8.bin
+ header: assets/field/bg/rom_uranai_cris01_tex_rgb_ia8.inc
+ header_type: raw
+
+ - symbol: rom_uranai_hi02_tex_rgb_i4
+ binary: assets/field/bg/rom_uranai_hi02_tex_rgb_i4.bin
+ header: assets/field/bg/rom_uranai_hi02_tex_rgb_i4.inc
+ header_type: raw
+
+ - symbol: rom_uranai_hi03_tex_rgb_i4
+ binary: assets/field/bg/rom_uranai_hi03_tex_rgb_i4.bin
+ header: assets/field/bg/rom_uranai_hi03_tex_rgb_i4.inc
+ header_type: raw
+
+ - symbol: rom_uranai_v!.data:0x00AC60A0
+ binary: assets/field/bg/rom_uranai_v.bin
+ header: assets/field/bg/rom_uranai_v.inc
+ header_type: none
+ custom_type: vtx
diff --git a/config/GAFE01_00/foresta/splits.txt b/config/GAFE01_00/foresta/splits.txt
new file mode 100644
index 00000000..0c8df493
--- /dev/null
+++ b/config/GAFE01_00/foresta/splits.txt
@@ -0,0 +1,8622 @@
+Sections:
+ .text type:code align:4
+ .ctors type:rodata align:4
+ .dtors type:rodata align:4
+ .rodata type:rodata align:8
+ .data type:data align:32
+ .bss type:bss align:32
+
+executor.c:
+ .text start:0x00000000 end:0x00000150
+ .data start:0x00000000 end:0x00000080
+ .bss start:0x00000000 end:0x00000008
+
+system/sys_vimgr.c:
+ .text start:0x00000150 end:0x00000170
+
+c_keyframe.c:
+ .text start:0x00000170 end:0x000029E4
+ .rodata start:0x00000000 end:0x00000048
+
+evw_anime.c:
+ .text start:0x000029E4 end:0x00003428
+ .rodata start:0x00000048 end:0x00000060
+ .data start:0x00000080 end:0x00000098
+
+game/m_all_grow.c:
+ .text start:0x00003428 end:0x00004010
+ .rodata start:0x00000060 end:0x00000088
+ .data start:0x00000098 end:0x00000100
+ .bss start:0x00000008 end:0x00000028
+
+game/m_actor.c:
+ .text start:0x00004010 end:0x00005EF4
+ .rodata start:0x00000088 end:0x000000C8
+ .data start:0x00000100 end:0x00000128
+ .bss start:0x00000028 end:0x00000068
+
+game/m_actor_dlftbls.c:
+ .text start:0x00005EF4 end:0x00005F14
+ .data start:0x00000128 end:0x00001FE8
+ .bss start:0x00000068 end:0x00000070
+
+game/m_actor_shadow.c:
+ .text start:0x00005F14 end:0x00006E6C
+ .rodata start:0x000000C8 end:0x00000128
+ .data start:0x00001FE8 end:0x00002048
+
+game/m_banti.c:
+ .text start:0x00006E6C end:0x000085B0
+ .rodata start:0x00000128 end:0x00000180
+ .data start:0x00002048 end:0x00002158
+ .bss start:0x00000070 end:0x000004C0
+
+game/m_bg_tex.c:
+ .text start:0x000085B0 end:0x000085B0
+ .bss start:0x000004C0 end:0x000088C0
+
+game/m_bg_item.c:
+ .text start:0x000085B0 end:0x00008750
+ .rodata start:0x00000180 end:0x00000190
+ .bss start:0x000088C0 end:0x000088C8
+
+game/m_bgm.c:
+ .text start:0x00008750 end:0x0000CEE8
+ .rodata start:0x00000190 end:0x000001D8
+ .data start:0x00002158 end:0x00002318
+ .bss start:0x000088C8 end:0x00008BE0
+
+game/m_calendar.c:
+ .text start:0x0000CEE8 end:0x0000D7AC
+
+game/m_camera2.c:
+ .text start:0x0000D7AC end:0x000131A4
+ .rodata start:0x000001D8 end:0x000005C8
+ .data start:0x00002318 end:0x00002360
+
+game/m_choice.c:
+ .text start:0x000131A4 end:0x00013380
+ .text start:0x00013380 end:0x00014338
+ .text start:0x00014338 end:0x000143F4
+ .text start:0x000143F4 end:0x00014434
+ .text start:0x00014434 end:0x000145E8
+ .text start:0x000145E8 end:0x00014ACC
+ .text start:0x00014ACC end:0x00014CD0
+ .text start:0x00014CD0 end:0x0001515C
+ .rodata start:0x000005C8 end:0x00000830
+ .data start:0x00002360 end:0x00003460
+ .bss start:0x00008BE0 end:0x00008C50
+
+game/m_clip.c:
+ .text start:0x0001515C end:0x00015188
+
+game/m_cockroach.c:
+ .text start:0x00015188 end:0x000157D8
+
+game/m_collision_bg.c:
+ .text start:0x000157D8 end:0x00019FE8
+ .text start:0x00019FE8 end:0x0001B1D0
+ .text start:0x0001B1D0 end:0x0001C8EC
+ .text start:0x0001C8EC end:0x0001D810
+ .text start:0x0001D810 end:0x0001F4F8
+ .text start:0x0001F4F8 end:0x00021784
+ .text start:0x00021784 end:0x00021ED0
+ .text start:0x00021ED0 end:0x00022350
+ .text start:0x00022350 end:0x00022350
+ .text start:0x00022350 end:0x00023CB0
+ .text start:0x00023CB0 end:0x00024270
+ .rodata start:0x00000830 end:0x00000A88
+ .data start:0x00003460 end:0x00003D08
+ .bss start:0x00008C50 end:0x0000BC10
+
+game/m_collision_obj.c:
+ .text start:0x00024270 end:0x0002587C
+ .rodata start:0x00000A88 end:0x00000AC0
+ .data start:0x00003D08 end:0x00003DD8
+ .bss start:0x0000BC10 end:0x0000BC40
+
+game/m_common_data.c:
+ .text start:0x0002587C end:0x00025940
+ .bss start:0x0000BC40 end:0x00039840
+
+game/m_controller.c:
+ .text start:0x00025940 end:0x00025E78
+ .rodata start:0x00000AC0 end:0x00000AF0
+
+game/m_debug.c:
+ .text start:0x00025E78 end:0x00025EF0
+ .bss start:0x00039840 end:0x00039848
+
+game/m_debug_display.c:
+ .text start:0x00025EF0 end:0x0002633C
+ .data start:0x00003DD8 end:0x00003E28
+ .bss start:0x00039848 end:0x00039850
+
+game/m_debug_hayakawa.c:
+ .text start:0x0002633C end:0x00027140
+ .rodata start:0x00000AF0 end:0x00000B30
+ .data start:0x00003E28 end:0x00003E58
+
+game/m_debug_mode.c:
+ .text start:0x00027140 end:0x0002820C
+ .rodata start:0x00000B30 end:0x00000B48
+ .data start:0x00003E58 end:0x00004288
+ .bss start:0x00039850 end:0x0003A658
+
+game/m_demo.c:
+ .text start:0x0002820C end:0x0002A298
+ .rodata start:0x00000B48 end:0x00000CA0
+ .data start:0x00004288 end:0x00004418
+ .bss start:0x0003A658 end:0x0003A990
+
+game/m_diary.c:
+ .text start:0x0002A298 end:0x0002A338
+
+game/m_eappli.c:
+ .text start:0x0002A338 end:0x0002A6B8
+ .bss start:0x0003A990 end:0x0003AD90
+
+game/m_event.c:
+ .text start:0x0002A6B8 end:0x0002F268
+ .rodata start:0x00000CA0 end:0x00000CD8
+ .data start:0x00004418 end:0x00004DF8
+ .bss start:0x0003AD90 end:0x0003AFD0
+
+game/m_event_map_npc.c:
+ .text start:0x0002F268 end:0x000300A8
+ .rodata start:0x00000CD8 end:0x00000CE0
+ .data start:0x00004DF8 end:0x000055A0
+
+game/m_fbdemo.c:
+ .text start:0x000300A8 end:0x00030814
+ .rodata start:0x00000CE0 end:0x00000D00
+ .data start:0x000055A0 end:0x000055D0
+
+game/m_fbdemo_triforce.c:
+ .text start:0x00030814 end:0x00030C58
+ .rodata start:0x00000D00 end:0x00000D40
+
+game/m_fbdemo_wipe1.c:
+ .text start:0x00030C58 end:0x00031050
+ .rodata start:0x00000D40 end:0x00000D60
+ .data start:0x000055D0 end:0x00006058
+
+game/m_fbdemo_fade.c:
+ .text start:0x00031050 end:0x00031260
+ .rodata start:0x00000D60 end:0x00000D78
+ .data start:0x00006058 end:0x000060A0
+
+game/m_field_assessment.c:
+ .text start:0x00031260 end:0x0003201C
+ .rodata start:0x00000D78 end:0x00000D80
+ .data start:0x000060A0 end:0x00006120
+ .bss start:0x0003AFD0 end:0x0003AFE0
+
+game/m_field_make.c:
+ .text start:0x0003201C end:0x00034AC0
+ .rodata start:0x00000D80 end:0x00000DA8
+ .data start:0x00006120 end:0x00006928
+ .bss start:0x0003AFE0 end:0x0003B2C8
+
+game/m_field_info.c:
+ .text start:0x00034AC0 end:0x0003B3F0
+ .rodata start:0x00000DA8 end:0x00000E08
+ .data start:0x00006928 end:0x00006C80
+ .bss start:0x0003B2C8 end:0x0003B410
+
+game/m_fishrecord.c:
+ .text start:0x0003B3F0 end:0x0003C320
+ .rodata start:0x00000E08 end:0x00000E20
+ .data start:0x00006C80 end:0x00006C88
+ .bss start:0x0003B410 end:0x0003B418
+
+game/m_flashrom.c:
+ .text start:0x0003C320 end:0x0003C850
+ .text start:0x0003C850 end:0x0003DB80
+ .text start:0x0003DB80 end:0x0003DB88
+ .text start:0x0003DB88 end:0x0003E438
+ .text start:0x0003E438 end:0x0003EB90
+ .text start:0x0003EB90 end:0x0003EE00
+ .text start:0x0003EE00 end:0x0003F098
+ .text start:0x0003F098 end:0x0003F1E4
+ .data start:0x00006C88 end:0x00006D98
+ .bss start:0x0003B418 end:0x0003B470
+
+game/m_font.c:
+ .text start:0x0003F1E4 end:0x0003F4BC
+ .text start:0x0003F4BC end:0x0003F4D0
+ .text start:0x0003F4D0 end:0x000410D4
+ .text start:0x000410D4 end:0x00041314
+ .text start:0x00041314 end:0x00041338
+ .rodata start:0x00000E20 end:0x00000FF8
+ .data start:0x00006D98 end:0x00006FD0
+ .bss start:0x0003B470 end:0x0003B4B0
+
+game/m_fuusen.c:
+ .text start:0x00041338 end:0x00041660
+ .rodata start:0x00000FF8 end:0x00001028
+ .bss start:0x0003B4B0 end:0x0003B4C0
+
+game/m_game_dlftbls.c:
+ .text start:0x00041660 end:0x00041660
+ .data start:0x00006FD0 end:0x000071B0
+
+game/m_huusui_room.c:
+ .text start:0x00041660 end:0x000416C0
+
+game/m_handbill.c:
+ .text start:0x000416C0 end:0x00042BE0
+ .rodata start:0x00001028 end:0x00001218
+ .data start:0x000071B0 end:0x000071C8
+ .bss start:0x0003B4C0 end:0x0003B968
+
+game/m_home.c:
+ .text start:0x00042BE0 end:0x000433E0
+ .data start:0x000071C8 end:0x00007E40
+
+game/m_house.c:
+ .text start:0x000433E0 end:0x000435D8
+
+game/m_land.c:
+ .text start:0x000435D8 end:0x00043A10
+ .rodata start:0x00001218 end:0x00001220
+ .bss start:0x0003B968 end:0x0003B980
+
+game/m_island.c:
+ .text start:0x00043A10 end:0x000457C0
+ .data start:0x00007E40 end:0x00007E88
+ .bss start:0x0003B980 end:0x0003D2A8
+
+game/m_item_name.c:
+ .text start:0x000457C0 end:0x00045A1C
+ .data start:0x00007E88 end:0x00008848
+
+game/m_kabu_manager.c:
+ .text start:0x00045A1C end:0x00045FD8
+ .rodata start:0x00001220 end:0x00001260
+ .data start:0x00008848 end:0x00008878
+
+game/m_kankyo.c:
+ .text start:0x00045FD8 end:0x0004999C
+ .text start:0x0004999C end:0x0004A864
+ .rodata start:0x00001260 end:0x000013E0
+ .data start:0x00008878 end:0x00009170
+ .bss start:0x0003D2A8 end:0x0003D358
+
+game/m_lib.c:
+ .text start:0x0004A864 end:0x0004B6B8
+ .rodata start:0x000013E0 end:0x00001420
+
+game/m_lights.c:
+ .text start:0x0004B6B8 end:0x0004C268
+ .rodata start:0x00001420 end:0x00001478
+ .bss start:0x0003D358 end:0x0003D4E0
+
+game/m_malloc.c:
+ .text start:0x0004C268 end:0x0004C464
+ .bss start:0x0003D4E0 end:0x0003D510
+
+game/m_mail.c:
+ .text start:0x0004C464 end:0x0004CF88
+ .data start:0x00009170 end:0x000091C0
+ .bss start:0x0003D510 end:0x0003D6A8
+
+game/m_mail_check.c:
+ .text start:0x0004CF88 end:0x0004CFA8
+
+game/m_mail_password_check.c:
+ .text start:0x0004CFA8 end:0x0004CFA8
+ .text start:0x0004CFA8 end:0x0004E9F4
+ .data start:0x000091C0 end:0x00009CD8
+
+game/m_mark_room.c:
+ .text start:0x0004E9F4 end:0x0004EF68
+ .rodata start:0x00001478 end:0x00001488
+
+game/m_melody.c:
+ .text start:0x0004EF68 end:0x0004F1BC
+ .data start:0x00009CD8 end:0x00009D00
+ .bss start:0x0003D6A8 end:0x0003D6C0
+
+game/m_msg.c:
+ .text start:0x0004F1BC end:0x0004F4E8
+ .text start:0x0004F4E8 end:0x0004FE88
+ .text start:0x0004FE88 end:0x00051BC0
+ .text start:0x00051BC0 end:0x000524D4
+ .text start:0x000524D4 end:0x0005251C
+ .text start:0x0005251C end:0x000527D4
+ .text start:0x000527D4 end:0x00052C38
+ .text start:0x00052C38 end:0x000553DC
+ .text start:0x000553DC end:0x00055598
+ .text start:0x00055598 end:0x000556F0
+ .text start:0x000556F0 end:0x0005575C
+ .text start:0x0005575C end:0x00055854
+ .text start:0x00055854 end:0x00055CF0
+ .text start:0x00055CF0 end:0x00055F80
+ .rodata start:0x00001488 end:0x000016D8
+ .data start:0x00009D00 end:0x0000CD80
+ .bss start:0x0003D6C0 end:0x0003E240
+
+game/m_museum.c:
+ .text start:0x00055F80 end:0x00057218
+ .rodata start:0x000016D8 end:0x000016F0
+ .data start:0x0000CD80 end:0x0000CE08
+ .bss start:0x0003E240 end:0x0003E380
+
+game/m_museum_display.c:
+ .text start:0x00057218 end:0x00057DE8
+ .data start:0x0000CE08 end:0x0000CEF8
+
+game/m_mushroom.c:
+ .text start:0x00057DE8 end:0x00058E00
+ .rodata start:0x000016F0 end:0x00001700
+ .data start:0x0000CEF8 end:0x0000CF30
+ .bss start:0x0003E380 end:0x0003E7A0
+
+game/m_name_table.c:
+ .text start:0x00058E00 end:0x00059644
+ .rodata start:0x00001700 end:0x00001718
+ .data start:0x0000CF30 end:0x0000D6C0
+
+game/m_needlework.c:
+ .text start:0x00059644 end:0x00059CD4
+ .data start:0x0000D6C0 end:0x0000D930
+ .bss start:0x0003E7A0 end:0x0003E9C0
+
+game/m_notice.c:
+ .text start:0x00059CD4 end:0x00059CD4
+ .text start:0x00059CD4 end:0x0005B098
+ .rodata start:0x00001718 end:0x00001758
+ .data start:0x0000D930 end:0x0000D9E8
+ .bss start:0x0003E9C0 end:0x0003EA80
+
+game/m_npc.c:
+ .text start:0x0005B098 end:0x000672C8
+ .rodata start:0x00001758 end:0x00001790
+ .data start:0x0000D9E8 end:0x0000E138
+ .bss start:0x0003EA80 end:0x00042488
+
+game/m_npc_schedule.c:
+ .text start:0x000672C8 end:0x000675E8
+ .data start:0x0000E138 end:0x0000E2F0
+
+game/m_npc_walk.c:
+ .text start:0x000675E8 end:0x00068640
+ .rodata start:0x00001790 end:0x000017A0
+ .data start:0x0000E2F0 end:0x0000E4A0
+ .bss start:0x00042488 end:0x000424D8
+
+game/m_olib.c:
+ .text start:0x00068640 end:0x0006878C
+ .rodata start:0x000017A0 end:0x000017B0
+
+game/m_pause.c:
+ .text start:0x0006878C end:0x00068844
+
+game/m_player_call.c:
+ .text start:0x00068844 end:0x00068A44
+ .data start:0x0000E4A0 end:0x0000E4C8
+ .bss start:0x000424D8 end:0x000424E8
+
+game/m_player_lib.c:
+ .text start:0x00068A44 end:0x0006E5F8
+ .rodata start:0x000017B0 end:0x00001F68
+ .data start:0x0000E4C8 end:0x0000E998
+ .bss start:0x000424E8 end:0x00042580
+
+game/m_police_box.c:
+ .text start:0x0006E5F8 end:0x0006EB90
+ .rodata start:0x00001F68 end:0x00001F78
+ .data start:0x0000E998 end:0x0000E9F0
+
+game/m_post_office.c:
+ .text start:0x0006EB90 end:0x0006FCD4
+ .data start:0x0000E9F0 end:0x0000EA00
+
+game/m_private.c:
+ .text start:0x0006FCD4 end:0x000726E8
+ .rodata start:0x00001F78 end:0x00001FA8
+ .data start:0x0000EA00 end:0x0000EB30
+ .bss start:0x00042580 end:0x00044AF0
+
+game/m_quest.c:
+ .text start:0x000726E8 end:0x00074878
+ .rodata start:0x00001FA8 end:0x00001FB8
+ .data start:0x0000EB30 end:0x0000EB98
+ .bss start:0x00044AF0 end:0x00044B28
+
+game/m_random_field.c:
+ .text start:0x00074878 end:0x00074E3C
+ .rodata start:0x00001FB8 end:0x00001FE0
+ .data start:0x0000EB98 end:0x0000F088
+
+game/m_rcp.c:
+ .text start:0x00074E3C end:0x00075A5C
+ .data start:0x0000F088 end:0x0000F410
+ .bss start:0x00044B28 end:0x00044B30
+
+game/m_room_type.c:
+ .text start:0x00075A5C end:0x000776F0
+ .rodata start:0x00001FE0 end:0x00002010
+ .data start:0x0000F410 end:0x00010190
+ .bss start:0x00044B30 end:0x00044B48
+
+game/m_scene_ftr.c:
+ .text start:0x000776F0 end:0x000777D4
+
+game/m_shop.c:
+ .text start:0x000777D4 end:0x0007BB84
+ .text start:0x0007BB84 end:0x0007BF98
+ .rodata start:0x00002010 end:0x00002070
+ .data start:0x00010190 end:0x000106F8
+ .bss start:0x00044B48 end:0x00044B60
+
+game/m_soncho.c:
+ .text start:0x0007BF98 end:0x0007DC18
+ .rodata start:0x00002070 end:0x00002080
+ .data start:0x000106F8 end:0x00010870
+
+game/m_start_data_init.c:
+ .text start:0x0007DC18 end:0x0007EA88
+ .rodata start:0x00002080 end:0x00002090
+ .data start:0x00010870 end:0x000108D0
+
+game/m_string.c:
+ .text start:0x0007EA88 end:0x0007EFE8
+ .bss start:0x00044B60 end:0x00044C40
+
+game/m_submenu.c:
+ .text start:0x0007EFE8 end:0x00080368
+ .rodata start:0x00002090 end:0x00002098
+ .data start:0x000108D0 end:0x00010980
+ .bss start:0x00044C40 end:0x00044C48
+
+game/m_scene.c:
+ .text start:0x00080368 end:0x00081280
+ .rodata start:0x00002098 end:0x000020B0
+ .data start:0x00010980 end:0x000109C8
+
+game/m_scene_table.c:
+ .text start:0x00081280 end:0x00081280
+ .data start:0x000109C8 end:0x00010DD8
+
+game/m_skin_matrix.c:
+ .text start:0x00081280 end:0x0008190C
+ .rodata start:0x000020B0 end:0x000020B8
+
+game/m_snowman.c:
+ .text start:0x0008190C end:0x00081CEC
+ .rodata start:0x000020B8 end:0x000020D0
+
+game/m_titledemo.c:
+ .text start:0x00081CEC end:0x00082180
+ .rodata start:0x000020D0 end:0x000020F0
+ .data start:0x00010DD8 end:0x00010DF0
+ .bss start:0x00044C48 end:0x00044C50
+
+game/m_train_control.c:
+ .text start:0x00082180 end:0x00083134
+ .rodata start:0x000020F0 end:0x00002150
+ .data start:0x00010DF0 end:0x00010E78
+
+game/m_time.c:
+ .text start:0x00083134 end:0x00083BB0
+ .rodata start:0x00002150 end:0x00002178
+ .data start:0x00010E78 end:0x00010F38
+ .bss start:0x00044C50 end:0x00044C60
+
+game/m_view.c:
+ .text start:0x00083BB0 end:0x00084B60
+ .rodata start:0x00002178 end:0x000021A8
+
+game/m_watch_my_step.c:
+ .text start:0x00084B60 end:0x000862C8
+ .rodata start:0x000021A8 end:0x00002278
+ .data start:0x00010F38 end:0x00010F70
+ .bss start:0x00044C60 end:0x00044CC0
+
+game/m_roll_lib.c:
+ .text start:0x000862C8 end:0x00087448
+ .rodata start:0x00002278 end:0x000022D8
+
+game/m_card.c:
+ .text start:0x00087448 end:0x0009345C
+ .text start:0x0009345C end:0x00093588
+ .rodata start:0x000022D8 end:0x000022F0
+ .data start:0x00010F70 end:0x00011798
+ .bss start:0x00044CC0 end:0x00098880
+
+game/m_cpak.c:
+ .text start:0x00093588 end:0x000935CC
+ .data start:0x00011798 end:0x000117A0
+ .bss start:0x00098880 end:0x000988D8
+
+s_cpak.c:
+ .text start:0x000935CC end:0x000935D4
+
+game/m_vibctl.c:
+ .text start:0x000935D4 end:0x00093E48
+ .rodata start:0x000022F0 end:0x00002468
+ .bss start:0x000988D8 end:0x000989F8
+
+PreRender.c:
+ .text start:0x00093E48 end:0x00094838
+ .rodata start:0x00002468 end:0x00002488
+
+THA_GA.c:
+ .text start:0x00094838 end:0x00094898
+
+TwoHeadArena.c:
+ .text start:0x00094898 end:0x000949C0
+
+game.c:
+ .text start:0x000949C0 end:0x000950C8
+ .rodata start:0x00002488 end:0x00002498
+ .data start:0x000117A0 end:0x000117A8
+ .bss start:0x000989F8 end:0x00098A28
+
+gamealloc.c:
+ .text start:0x000950C8 end:0x00095208
+
+gfxalloc.c:
+ .text start:0x00095208 end:0x00095270
+
+graph.c:
+ .text start:0x00095270 end:0x00095C20
+ .data start:0x000117A8 end:0x000117B0
+ .bss start:0x00098A28 end:0x00098DA0
+
+irqmgr.c:
+ .text start:0x00095C20 end:0x000961D8
+ .data start:0x000117B0 end:0x000117D0
+ .bss start:0x00098DA0 end:0x0009A4F0
+
+lb_rtc.c:
+ .text start:0x000961D8 end:0x00097284
+ .rodata start:0x00002498 end:0x00002540
+ .data start:0x000117D0 end:0x000117D8
+ .bss start:0x0009A4F0 end:0x0009A500
+
+lb_reki.c:
+ .text start:0x00097284 end:0x00097840
+ .rodata start:0x00002540 end:0x00002560
+ .data start:0x000117D8 end:0x00011C10
+
+main.c:
+ .text start:0x00097840 end:0x00097A4C
+ .data start:0x00011C10 end:0x00011C38
+ .bss start:0x0009A500 end:0x0009A878
+
+padmgr.c:
+ .text start:0x00097A4C end:0x00098698
+ .data start:0x00011C38 end:0x00011C50
+ .bss start:0x0009A878 end:0x0009ACE0
+
+system/sys_math.c:
+ .text start:0x00098698 end:0x0009879C
+ .rodata start:0x00002560 end:0x00002570
+
+system/sys_math3d.c:
+ .text start:0x0009879C end:0x0009BDC4
+ .rodata start:0x00002570 end:0x000025B0
+ .data start:0x00011C50 end:0x00011C68
+ .bss start:0x0009ACE0 end:0x0009AEA8
+
+system/sys_math_atan.c:
+ .text start:0x0009BDC4 end:0x0009BFDC
+ .rodata start:0x000025B0 end:0x000025C8
+ .data start:0x00011C68 end:0x00012470
+
+system/sys_matrix.c:
+ .text start:0x0009BFDC end:0x0009E890
+ .rodata start:0x000025C8 end:0x00002600
+ .data start:0x00012470 end:0x000124F0
+ .bss start:0x0009AEA8 end:0x0009AEB0
+
+system/sys_stacks.c:
+ .text start:0x0009E890 end:0x0009E890
+ .bss start:0x0009AEB0 end:0x0009EEB0
+
+zurumode.c:
+ .text start:0x0009E890 end:0x0009ED60
+ .data start:0x000124F0 end:0x00012530
+ .bss start:0x0009EEB0 end:0x0009EEC0
+
+system/sys_ucode.c:
+ .text start:0x0009ED60 end:0x0009EDA0
+ .data start:0x00012530 end:0x00012540
+ .bss start:0x0009EEC0 end:0x0009EEE0
+
+actor/ac_sample.c:
+ .text start:0x0009EDA0 end:0x0009F36C
+ .rodata start:0x00002600 end:0x00002608
+ .data start:0x00012540 end:0x000125A0
+ .bss start:0x0009EEE0 end:0x0009EF20
+
+actor/ac_airplane.c:
+ .text start:0x0009F36C end:0x0009F5A0
+ .text start:0x0009F5A0 end:0x000A0204
+ .rodata start:0x00002608 end:0x000026B8
+ .data start:0x000125A0 end:0x00012668
+
+actor/ac_animal_logo.c:
+ .text start:0x000A0204 end:0x000A0204
+ .text start:0x000A0204 end:0x000A152C
+ .text start:0x000A152C end:0x000A17B8
+ .rodata start:0x000026B8 end:0x00002828
+ .data start:0x00012668 end:0x000126A8
+
+actor/ac_arrange_ftr.c:
+ .text start:0x000A17B8 end:0x000A17C8
+ .data start:0x000126A8 end:0x000126D0
+
+actor/ac_arrange_room.c:
+ .text start:0x000A17C8 end:0x000A1CBC
+ .rodata start:0x00002828 end:0x00002830
+ .data start:0x000126D0 end:0x000126F8
+
+actor/ac_ball.c:
+ .text start:0x000A1CBC end:0x000A3B2C
+ .rodata start:0x00002830 end:0x00002900
+ .data start:0x000126F8 end:0x00012758
+ .bss start:0x0009EF20 end:0x0009EF28
+
+actor/ac_balloon.c:
+ .text start:0x000A3B2C end:0x000A42F0
+ .rodata start:0x00002900 end:0x00002930
+ .data start:0x00012758 end:0x000127B0
+
+actor/ac_birth_control.c:
+ .text start:0x000A42F0 end:0x000A4C1C
+ .rodata start:0x00002930 end:0x00002938
+ .data start:0x000127B0 end:0x00012828
+
+actor/ac_boat_demo.c:
+ .text start:0x000A4C1C end:0x000A4D00
+ .text start:0x000A4D00 end:0x000A5930
+ .rodata start:0x00002938 end:0x00002940
+ .data start:0x00012828 end:0x000343A0
+ .bss start:0x0009EF28 end:0x0009EF30
+
+actor/ac_boxManager.c:
+ .text start:0x000A5930 end:0x000A5940
+ .data start:0x000343A0 end:0x000343C8
+
+actor/ac_boxMove.c:
+ .text start:0x000A5940 end:0x000A5950
+ .data start:0x000343C8 end:0x000343F0
+
+actor/ac_boxTrick01.c:
+ .text start:0x000A5950 end:0x000A595C
+ .data start:0x000343F0 end:0x00034418
+
+actor/ac_broker_design.c:
+ .text start:0x000A595C end:0x000A5C5C
+ .data start:0x00034418 end:0x00034458
+
+actor/ac_cottage.c:
+ .text start:0x000A5C5C end:0x000A721C
+ .rodata start:0x00002940 end:0x00002B50
+ .data start:0x00034458 end:0x00034598
+
+actor/ac_effectbg.c:
+ .text start:0x000A721C end:0x000A92F8
+ .rodata start:0x00002B50 end:0x00002BB8
+ .data start:0x00034598 end:0x00034908
+ .bss start:0x0009EF30 end:0x0009EF38
+
+actor/ac_event_manager.c:
+ .text start:0x000A92F8 end:0x000B2B00
+ .rodata start:0x00002BB8 end:0x00002CA0
+ .data start:0x00034908 end:0x000354E0
+ .bss start:0x0009EF38 end:0x0009F100
+
+actor/ac_field_draw.c:
+ .text start:0x000B2B00 end:0x000B3B78
+ .rodata start:0x00002CA0 end:0x00002D28
+ .data start:0x000354E0 end:0x00035668
+ .bss start:0x0009F100 end:0x0009F468
+
+actor/ac_fieldm_draw.c:
+ .text start:0x000B3B78 end:0x000B3B88
+ .data start:0x00035668 end:0x00035690
+
+actor/ac_flag.c:
+ .text start:0x000B3B88 end:0x000B48E0
+ .rodata start:0x00002D28 end:0x00002D60
+ .data start:0x00035690 end:0x00035700
+
+actor/ac_garagara.c:
+ .text start:0x000B48E0 end:0x000B4EB8
+ .text start:0x000B4EB8 end:0x000B53E8
+ .rodata start:0x00002D60 end:0x00002DA8
+ .data start:0x00035700 end:0x00035758
+
+actor/ac_gyo_kage.c:
+ .text start:0x000B53E8 end:0x000B5B8C
+ .rodata start:0x00002DA8 end:0x00002DD0
+ .data start:0x00035758 end:0x000357F8
+
+actor/ac_gyo_release.c:
+ .text start:0x000B5B8C end:0x000B67A8
+ .rodata start:0x00002DD0 end:0x00002E40
+ .data start:0x000357F8 end:0x00035DC0
+
+actor/ac_handOverItem.c:
+ .text start:0x000B67A8 end:0x000B67E8
+ .text start:0x000B67E8 end:0x000B6A60
+ .text start:0x000B6A60 end:0x000B6F50
+ .text start:0x000B6F50 end:0x000B737C
+ .rodata start:0x00002E40 end:0x00002E58
+ .data start:0x00035DC0 end:0x00036808
+ .bss start:0x0009F468 end:0x0009F490
+
+actor/ac_haniwa.c:
+ .text start:0x000B737C end:0x000B75D8
+ .text start:0x000B75D8 end:0x000B8CBC
+ .rodata start:0x00002E58 end:0x00002E98
+ .data start:0x00036808 end:0x00036998
+
+actor/ac_hatumode_control.c:
+ .text start:0x000B8CBC end:0x000B8D94
+ .text start:0x000B8D94 end:0x000B92D8
+ .text start:0x000B92D8 end:0x000B991C
+ .text start:0x000B991C end:0x000BA010
+ .rodata start:0x00002E98 end:0x00002EB0
+ .data start:0x00036998 end:0x00036B78
+
+actor/ac_house_clock.c:
+ .text start:0x000BA010 end:0x000BA6D4
+ .rodata start:0x00002EB0 end:0x00002EC8
+ .data start:0x00036B78 end:0x00036D08
+
+actor/ac_intro_demo.c:
+ .text start:0x000BA6D4 end:0x000BA834
+ .text start:0x000BA834 end:0x000BB3B4
+ .rodata start:0x00002EC8 end:0x00002EF8
+ .data start:0x00036D08 end:0x00036DE0
+ .bss start:0x0009F490 end:0x0009F4A0
+
+actor/ac_kamakura_indoor.c:
+ .text start:0x000BB3B4 end:0x000BBD70
+ .rodata start:0x00002EF8 end:0x00002F28
+ .data start:0x00036DE0 end:0x00037508
+
+actor/ac_lighthouse_switch.c:
+ .text start:0x000BBD70 end:0x000BCF58
+ .rodata start:0x00002F28 end:0x00002F90
+ .data start:0x00037508 end:0x00037550
+
+actor/ac_mailbox.c:
+ .text start:0x000BCF58 end:0x000BD1F8
+ .text start:0x000BD1F8 end:0x000BD9F8
+ .rodata start:0x00002F90 end:0x00002FB8
+ .data start:0x00037550 end:0x000376B0
+
+actor/ac_mbg.c:
+ .text start:0x000BD9F8 end:0x000BDC20
+ .rodata start:0x00002FB8 end:0x00002FD8
+ .data start:0x000376B0 end:0x000377B8
+
+actor/ac_misin.c:
+ .text start:0x000BDC20 end:0x000BE838
+ .rodata start:0x00002FD8 end:0x00003028
+ .data start:0x000377B8 end:0x00037820
+
+actor/ac_mural.c:
+ .text start:0x000BE838 end:0x000BEB18
+ .rodata start:0x00003028 end:0x00003040
+ .data start:0x00037820 end:0x00037848
+ .bss start:0x0009F4A0 end:0x000A16A0
+
+actor/ac_museum_fossil.c:
+ .text start:0x000BEB18 end:0x000BEEC8
+ .rodata start:0x00003040 end:0x00003070
+ .data start:0x00037848 end:0x00037938
+ .bss start:0x000A16A0 end:0x000A16B0
+
+actor/ac_museum_picture.c:
+ .text start:0x000BEEC8 end:0x000BF554
+ .rodata start:0x00003070 end:0x000030D0
+ .data start:0x00037938 end:0x00037A58
+ .bss start:0x000A16B0 end:0x000A16C0
+
+actor/ac_museum_fish.c:
+ .text start:0x000BF554 end:0x000C1428
+ .text start:0x000C1428 end:0x000C869C
+ .text start:0x000C869C end:0x000CA20C
+ .text start:0x000CA20C end:0x000CC160
+ .text start:0x000CC160 end:0x000CF450
+ .text start:0x000CF450 end:0x000D0D24
+ .text start:0x000D0D24 end:0x000D3110
+ .text start:0x000D3110 end:0x000D46C8
+ .text start:0x000D46C8 end:0x000D6128
+ .text start:0x000D6128 end:0x000D7650
+ .text start:0x000D7650 end:0x000D8EAC
+ .text start:0x000D8EAC end:0x000DA238
+ .text start:0x000DA238 end:0x000DC1B8
+ .text start:0x000DC1B8 end:0x000DD860
+ .text start:0x000DD860 end:0x000DE3AC
+ .text start:0x000DE3AC end:0x000DFE04
+ .text start:0x000DFE04 end:0x000E0DF4
+ .text start:0x000E0DF4 end:0x000E39E4
+ .text start:0x000E39E4 end:0x000E5DD8
+ .text start:0x000E5DD8 end:0x000E7788
+ .text start:0x000E7788 end:0x000E8F9C
+ .text start:0x000E8F9C end:0x000E9F58
+ .rodata start:0x000030D0 end:0x00003410
+ .data start:0x00037A58 end:0x00038F08
+ .bss start:0x000A16C0 end:0x000A16D8
+
+actor/ac_museum_indoor.c:
+ .text start:0x000E9F58 end:0x000EA278
+ .rodata start:0x00003410 end:0x00003420
+ .data start:0x00038F08 end:0x00038F48
+
+actor/ac_museum_insect.c:
+ .text start:0x000EA278 end:0x000EAA24
+ .text start:0x000EAA24 end:0x000EC6CC
+ .text start:0x000EC6CC end:0x000EDE80
+ .text start:0x000EDE80 end:0x000EE5C4
+ .text start:0x000EE5C4 end:0x000F11E4
+ .text start:0x000F11E4 end:0x000F21F8
+ .text start:0x000F21F8 end:0x000F3E48
+ .text start:0x000F3E48 end:0x000F5244
+ .text start:0x000F5244 end:0x000F5C90
+ .text start:0x000F5C90 end:0x000F7220
+ .text start:0x000F7220 end:0x000F8CF4
+ .text start:0x000F8CF4 end:0x000FA5FC
+ .text start:0x000FA5FC end:0x000FB188
+ .text start:0x000FB188 end:0x000FC81C
+ .text start:0x000FC81C end:0x000FD418
+ .text start:0x000FD418 end:0x000FE3D4
+ .text start:0x000FE3D4 end:0x000FEB90
+ .rodata start:0x00003420 end:0x00003828
+ .data start:0x00038F48 end:0x00039BF0
+ .bss start:0x000A16D8 end:0x000A16F0
+
+actor/ac_my_indoor.c:
+ .text start:0x000FEB90 end:0x000FFFE0
+ .rodata start:0x00003828 end:0x00003838
+ .data start:0x00039BF0 end:0x00039EE8
+
+actor/ac_my_room.c:
+ .text start:0x000FFFE0 end:0x00103E6C
+ .text start:0x00103E6C end:0x00106DF4
+ .text start:0x00106DF4 end:0x00107590
+ .text start:0x00107590 end:0x0010763C
+ .text start:0x0010763C end:0x0010E560
+ .text start:0x0010E560 end:0x001119B4
+ .text start:0x001119B4 end:0x00112AF4
+ .rodata start:0x00003838 end:0x000039C8
+ .data start:0x00039EE8 end:0x0003CE78
+ .bss start:0x000A16F0 end:0x000A1E20
+
+actor/ac_needlework_indoor.c:
+ .text start:0x00112AF4 end:0x001137E8
+ .rodata start:0x000039C8 end:0x000039D0
+ .data start:0x0003CE78 end:0x0003CF10
+ .bss start:0x000A1E20 end:0x000A1E28
+
+actor/ac_present_demo.c:
+ .text start:0x001137E8 end:0x00113888
+ .text start:0x00113888 end:0x00113DF0
+ .data start:0x0003CF10 end:0x0003CF58
+ .bss start:0x000A1E28 end:0x000A1E30
+
+actor/ac_psnowman.c:
+ .text start:0x00113DF0 end:0x001143EC
+ .rodata start:0x000039D0 end:0x00003A00
+ .data start:0x0003CF58 end:0x0003CF80
+
+actor/ac_pterminal.c:
+ .text start:0x001143EC end:0x00115260
+ .rodata start:0x00003A00 end:0x00003A40
+ .data start:0x0003CF80 end:0x0003D020
+ .bss start:0x000A1E30 end:0x000A2160
+
+actor/ac_quest_manager.c:
+ .text start:0x00115260 end:0x0011704C
+ .text start:0x0011704C end:0x0011727C
+ .text start:0x0011727C end:0x001177D0
+ .data start:0x0003D020 end:0x0003D8F8
+ .bss start:0x000A2160 end:0x000A2178
+
+actor/ac_quest_talk_fj_init.c:
+ .text start:0x001177D0 end:0x001181CC
+ .data start:0x0003D8F8 end:0x0003D940
+ .bss start:0x000A2178 end:0x000A22A8
+
+actor/ac_quest_talk_greeting.c:
+ .text start:0x001181CC end:0x0011978C
+ .rodata start:0x00003A40 end:0x00003A48
+ .data start:0x0003D940 end:0x0003DB48
+ .bss start:0x000A22A8 end:0x000A22E8
+
+actor/ac_quest_talk_init.c:
+ .text start:0x0011978C end:0x0011D4C0
+ .rodata start:0x00003A48 end:0x00003AB0
+ .data start:0x0003DB48 end:0x0003DE10
+
+actor/ac_quest_talk_island.c:
+ .text start:0x0011D4C0 end:0x00121208
+ .rodata start:0x00003AB0 end:0x00003AF0
+ .data start:0x0003DE10 end:0x0003E060
+ .bss start:0x000A22E8 end:0x000A2338
+
+actor/ac_quest_talk_normal_init.c:
+ .text start:0x00121208 end:0x00125AB0
+ .rodata start:0x00003AF0 end:0x00003B28
+ .data start:0x0003E060 end:0x0003E5E0
+ .bss start:0x000A2338 end:0x000A2510
+
+actor/ac_reset_demo.c:
+ .text start:0x00125AB0 end:0x00125F70
+ .rodata start:0x00003B28 end:0x00003B30
+ .data start:0x0003E5E0 end:0x0003E628
+ .bss start:0x000A2510 end:0x000A2518
+
+actor/ac_ride_off_demo.c:
+ .text start:0x00125F70 end:0x00126010
+ .text start:0x00126010 end:0x001264FC
+ .rodata start:0x00003B30 end:0x00003B50
+ .data start:0x0003E628 end:0x0003E680
+ .bss start:0x000A2518 end:0x000A2520
+
+actor/ac_rope.c:
+ .text start:0x001264FC end:0x00126810
+ .rodata start:0x00003B50 end:0x00003B58
+ .data start:0x0003E680 end:0x0003E6E0
+
+actor/ac_set_manager.c:
+ .text start:0x00126810 end:0x00126CA8
+ .rodata start:0x00003B58 end:0x00003B68
+ .data start:0x0003E6E0 end:0x0003E718
+
+actor/ac_set_npc_manager.c:
+ .text start:0x00126CA8 end:0x0012932C
+ .rodata start:0x00003B68 end:0x00003B70
+ .data start:0x0003E718 end:0x0003E7F0
+ .bss start:0x000A2520 end:0x000A2540
+
+actor/ac_set_ovl_gyoei.c:
+ .text start:0x0012932C end:0x0012A73C
+ .rodata start:0x00003B70 end:0x00003BA0
+ .data start:0x0003E7F0 end:0x0003F8E8
+ .bss start:0x000A2540 end:0x000A2888
+
+actor/ac_set_ovl_insect.c:
+ .text start:0x0012A73C end:0x0012C4A0
+ .rodata start:0x00003BA0 end:0x00003BC8
+ .data start:0x0003F8E8 end:0x00040EC0
+ .bss start:0x000A2888 end:0x000A2AB0
+
+actor/ac_shop_design.c:
+ .text start:0x0012C4A0 end:0x0012D274
+ .data start:0x00040EC0 end:0x00040F30
+
+actor/ac_shop_goods.c:
+ .text start:0x0012D274 end:0x0012E44C
+ .rodata start:0x00003BC8 end:0x00004A50
+ .data start:0x00040F30 end:0x00040F58
+ .bss start:0x000A2AB0 end:0x000A2CC0
+
+actor/ac_shop_indoor.c:
+ .text start:0x0012E44C end:0x0012F164
+ .rodata start:0x00004A50 end:0x00004A70
+ .data start:0x00040F58 end:0x00041020
+ .bss start:0x000A2CC0 end:0x000A2CC8
+
+actor/ac_shop_level.c:
+ .text start:0x0012F164 end:0x0012FC1C
+ .data start:0x00041020 end:0x00041208
+
+actor/ac_shop_manekin.c:
+ .text start:0x0012FC1C end:0x00130730
+ .rodata start:0x00004A70 end:0x00004A90
+ .data start:0x00041208 end:0x00041240
+ .bss start:0x000A2CC8 end:0x000A2CD0
+
+actor/ac_shop_umbrella.c:
+ .text start:0x00130730 end:0x00130FD4
+ .rodata start:0x00004A90 end:0x00004AB8
+ .data start:0x00041240 end:0x00041380
+ .bss start:0x000A2CD0 end:0x000A2CD8
+
+actor/ac_sign.c:
+ .text start:0x00130FD4 end:0x00133080
+ .rodata start:0x00004AB8 end:0x00004B18
+ .data start:0x00041380 end:0x000413E8
+
+actor/ac_snowman.c:
+ .text start:0x00133080 end:0x001374A8
+ .rodata start:0x00004B18 end:0x00004C48
+ .data start:0x000413E8 end:0x000414C8
+
+actor/tool/ac_t_anrium1.c:
+ .text start:0x001374A8 end:0x001375FC
+ .data start:0x000414C8 end:0x00041508
+
+actor/tool/ac_t_bag1.c:
+ .text start:0x001375FC end:0x00137750
+ .data start:0x00041508 end:0x00041548
+
+actor/tool/ac_t_bag2.c:
+ .text start:0x00137750 end:0x001378A4
+ .data start:0x00041548 end:0x00041588
+
+actor/tool/ac_t_biscus1.c:
+ .text start:0x001378A4 end:0x001379F8
+ .data start:0x00041588 end:0x000415C8
+
+actor/tool/ac_t_biscus2.c:
+ .text start:0x001379F8 end:0x00137B4C
+ .data start:0x000415C8 end:0x00041608
+
+actor/tool/ac_t_biscus3.c:
+ .text start:0x00137B4C end:0x00137CA0
+ .data start:0x00041608 end:0x00041648
+
+actor/tool/ac_t_biscus4.c:
+ .text start:0x00137CA0 end:0x00137DF4
+ .data start:0x00041648 end:0x00041688
+
+actor/tool/ac_t_cobra1.c:
+ .text start:0x00137DF4 end:0x00137F48
+ .data start:0x00041688 end:0x000416C8
+
+actor/tool/ac_t_cracker.c:
+ .text start:0x00137F48 end:0x001381AC
+ .rodata start:0x00004C48 end:0x00004C50
+ .data start:0x000416C8 end:0x00041728
+
+actor/tool/ac_t_flag.c:
+ .text start:0x001381AC end:0x0013858C
+ .rodata start:0x00004C50 end:0x00004C68
+ .data start:0x00041728 end:0x00041750
+
+actor/tool/ac_t_hanabi.c:
+ .text start:0x0013858C end:0x001387F4
+ .rodata start:0x00004C68 end:0x00004C70
+ .data start:0x00041750 end:0x000417B0
+
+actor/tool/ac_t_hasu1.c:
+ .text start:0x001387F4 end:0x00138948
+ .data start:0x000417B0 end:0x000417F0
+
+actor/tool/ac_t_hat1.c:
+ .text start:0x00138948 end:0x00138A9C
+ .data start:0x000417F0 end:0x00041830
+
+actor/tool/ac_t_hat2.c:
+ .text start:0x00138A9C end:0x00138BF0
+ .data start:0x00041830 end:0x00041870
+
+actor/tool/ac_t_hat3.c:
+ .text start:0x00138BF0 end:0x00138D44
+ .data start:0x00041870 end:0x000418B0
+
+actor/tool/ac_t_keitai.c:
+ .text start:0x00138D44 end:0x001390A0
+ .rodata start:0x00004C70 end:0x00004C80
+ .data start:0x000418B0 end:0x00041958
+
+actor/tool/ac_t_npc_sao.c:
+ .text start:0x001390A0 end:0x0013934C
+ .rodata start:0x00004C80 end:0x00004C98
+ .data start:0x00041958 end:0x00041998
+
+actor/tool/ac_t_pistol.c:
+ .text start:0x0013934C end:0x001395B0
+ .rodata start:0x00004C98 end:0x00004CA0
+ .data start:0x00041998 end:0x000419F8
+
+actor/tool/ac_t_rei1.c:
+ .text start:0x001395B0 end:0x00139704
+ .data start:0x000419F8 end:0x00041A38
+
+actor/tool/ac_t_rei2.c:
+ .text start:0x00139704 end:0x00139858
+ .data start:0x00041A38 end:0x00041A78
+
+actor/tool/ac_t_tama.c:
+ .text start:0x00139858 end:0x00139A1C
+ .rodata start:0x00004CA0 end:0x00004CB0
+ .data start:0x00041A78 end:0x00041AE0
+
+actor/tool/ac_t_tumbler.c:
+ .text start:0x00139A1C end:0x00139C7C
+ .rodata start:0x00004CB0 end:0x00004CB8
+ .data start:0x00041AE0 end:0x00041B40
+
+actor/tool/ac_t_umbrella.c:
+ .text start:0x00139C7C end:0x0013A220
+ .rodata start:0x00004CB8 end:0x00004CD0
+ .data start:0x00041B40 end:0x00041E10
+
+actor/tool/ac_t_utiwa.c:
+ .text start:0x0013A220 end:0x0013A484
+ .rodata start:0x00004CD0 end:0x00004CD8
+ .data start:0x00041E10 end:0x00041E70
+
+actor/tool/ac_t_zinnia1.c:
+ .text start:0x0013A484 end:0x0013A5D8
+ .data start:0x00041E70 end:0x00041EB0
+
+actor/tool/ac_t_zinnia2.c:
+ .text start:0x0013A5D8 end:0x0013A72C
+ .data start:0x00041EB0 end:0x00041EF0
+
+actor/ac_tokyoso_control.c:
+ .text start:0x0013A72C end:0x0013AD98
+ .text start:0x0013AD98 end:0x0013BD8C
+ .rodata start:0x00004CD8 end:0x00004D30
+ .data start:0x00041EF0 end:0x00042010
+
+actor/ac_tools.c:
+ .text start:0x0013BD8C end:0x0013BDD0
+ .text start:0x0013BDD0 end:0x0013C030
+ .rodata start:0x00004D30 end:0x00004D38
+ .data start:0x00042010 end:0x000420C0
+ .bss start:0x000A2CD8 end:0x000A2CE8
+
+actor/ac_train_door.c:
+ .text start:0x0013C030 end:0x0013C268
+ .rodata start:0x00004D38 end:0x00004D48
+ .data start:0x000420C0 end:0x00042100
+
+actor/ac_train_window.c:
+ .text start:0x0013C268 end:0x0013D180
+ .rodata start:0x00004D48 end:0x00004D98
+ .data start:0x00042100 end:0x00042330
+
+actor/ac_tunahiki_control.c:
+ .text start:0x0013D180 end:0x0013D39C
+ .rodata start:0x00004D98 end:0x00004DB0
+ .data start:0x00042330 end:0x00042358
+
+actor/ac_uki.c:
+ .text start:0x0013D39C end:0x0013D540
+ .text start:0x0013D540 end:0x0013F340
+ .text start:0x0013F340 end:0x0013F96C
+ .rodata start:0x00004DB0 end:0x00004E78
+ .data start:0x00042358 end:0x00042768
+
+bg_cherry_item.c:
+ .text start:0x0013F96C end:0x0013FBCC
+ .text start:0x0013FBCC end:0x0013FF40
+ .text start:0x0013FF40 end:0x00146BD8
+ .text start:0x00146BD8 end:0x00146CD8
+ .text start:0x00146CD8 end:0x00146D0C
+ .rodata start:0x00004E78 end:0x00004F18
+ .data start:0x00042768 end:0x000456E0
+ .bss start:0x000A2CE8 end:0x000A3178
+
+bg_item.c:
+ .text start:0x00146D0C end:0x00146F50
+ .text start:0x00146F50 end:0x001472C4
+ .text start:0x001472C4 end:0x0014DF5C
+ .text start:0x0014DF5C end:0x0014E05C
+ .text start:0x0014E05C end:0x0014E090
+ .rodata start:0x00004F18 end:0x00004FB8
+ .data start:0x000456E0 end:0x00048638
+ .bss start:0x000A3178 end:0x000A3608
+
+bg_police_item.c:
+ .text start:0x0014E090 end:0x0014E090
+ .text start:0x0014E090 end:0x0014E444
+ .text start:0x0014E444 end:0x0014E5E8
+ .rodata start:0x00004FB8 end:0x00004FC0
+ .data start:0x00048638 end:0x00048860
+ .bss start:0x000A3608 end:0x000A3628
+
+bg_post_item.c:
+ .text start:0x0014E5E8 end:0x0014E754
+ .rodata start:0x00004FC0 end:0x00004FC8
+ .data start:0x00048860 end:0x00048898
+
+bg_winter_item.c:
+ .text start:0x0014E754 end:0x0014EA48
+ .text start:0x0014EA48 end:0x0014EDBC
+ .text start:0x0014EDBC end:0x00155A54
+ .text start:0x00155A54 end:0x00155B54
+ .text start:0x00155B54 end:0x00155B88
+ .rodata start:0x00004FC8 end:0x00005068
+ .data start:0x00048898 end:0x0004B810
+ .bss start:0x000A3628 end:0x000A3AB8
+
+bg_xmas_item.c:
+ .text start:0x00155B88 end:0x00155E60
+ .text start:0x00155E60 end:0x001561D4
+ .text start:0x001561D4 end:0x0015CE6C
+ .text start:0x0015CE6C end:0x0015CFBC
+ .text start:0x0015CFBC end:0x0015D1CC
+ .rodata start:0x00005068 end:0x00005108
+ .data start:0x0004B810 end:0x0004E810
+ .bss start:0x000A3AB8 end:0x000A3F48
+
+effect/ef_effect_control.c:
+ .text start:0x0015D1CC end:0x0015DCCC
+ .text start:0x0015DCCC end:0x0015E9B4
+ .rodata start:0x00005108 end:0x00005168
+ .data start:0x0004E810 end:0x0004EAD0
+ .bss start:0x000A3F48 end:0x000A6410
+
+effect/ef_lamp_light.c:
+ .text start:0x0015E9B4 end:0x0015EC84
+ .rodata start:0x00005168 end:0x00005178
+ .data start:0x0004EAD0 end:0x0004EB28
+
+effect/ef_room_sunshine.c:
+ .text start:0x0015EC84 end:0x0015F4DC
+ .rodata start:0x00005178 end:0x000051C0
+ .data start:0x0004EB28 end:0x0004EB50
+
+effect/ef_room_sunshine_police.c:
+ .text start:0x0015F4DC end:0x0015FCE4
+ .rodata start:0x000051C0 end:0x00005210
+ .data start:0x0004EB50 end:0x0004EB78
+
+effect/ef_room_sunshine_posthouse.c:
+ .text start:0x0015FCE4 end:0x0016045C
+ .rodata start:0x00005210 end:0x00005258
+ .data start:0x0004EB78 end:0x0004EBA0
+
+effect/ef_room_sunshine_museum.c:
+ .text start:0x0016045C end:0x00160C94
+ .rodata start:0x00005258 end:0x000052A8
+ .data start:0x0004EBA0 end:0x0004EBC8
+
+effect/ef_room_sunshine_minsect.c:
+ .text start:0x00160C94 end:0x00161914
+ .rodata start:0x000052A8 end:0x000052F8
+ .data start:0x0004EBC8 end:0x0004EBF0
+ .bss start:0x000A6410 end:0x000A6418
+
+game/m_huusui_room_ovl.c:
+ .text start:0x00161914 end:0x00161EBC
+ .rodata start:0x000052F8 end:0x00005368
+ .data start:0x0004EBF0 end:0x0004F5F0
+
+game/m_mark_room_ovl.c:
+ .text start:0x00161EBC end:0x0016387C
+ .rodata start:0x00005368 end:0x00005370
+ .data start:0x0004F5F0 end:0x00051080
+ .bss start:0x000A6418 end:0x000A6910
+
+game/m_player.c:
+ .text start:0x0016387C end:0x00164324
+ .text start:0x00164324 end:0x00164B60
+ .text start:0x00164B60 end:0x00164E20
+ .text start:0x00164E20 end:0x0016EFE4
+ .text start:0x0016EFE4 end:0x0016FAC8
+ .text start:0x0016FAC8 end:0x001706F0
+ .text start:0x001706F0 end:0x00171234
+ .text start:0x00171234 end:0x001712D8
+ .text start:0x001712D8 end:0x00171BF8
+ .text start:0x00171BF8 end:0x00171C74
+ .text start:0x00171C74 end:0x001727FC
+ .text start:0x001727FC end:0x00172890
+ .text start:0x00172890 end:0x001732CC
+ .text start:0x001732CC end:0x00173A7C
+ .text start:0x00173A7C end:0x00173AF4
+ .text start:0x00173AF4 end:0x00173D4C
+ .text start:0x00173D4C end:0x00174768
+ .text start:0x00174768 end:0x00174A00
+ .text start:0x00174A00 end:0x00174CB8
+ .text start:0x00174CB8 end:0x00174EAC
+ .text start:0x00174EAC end:0x001751C4
+ .text start:0x001751C4 end:0x0017548C
+ .text start:0x0017548C end:0x00175754
+ .text start:0x00175754 end:0x00175A3C
+ .text start:0x00175A3C end:0x00175E90
+ .text start:0x00175E90 end:0x00176A48
+ .text start:0x00176A48 end:0x00176F30
+ .text start:0x00176F30 end:0x001778C0
+ .text start:0x001778C0 end:0x00177F34
+ .text start:0x00177F34 end:0x00178340
+ .text start:0x00178340 end:0x001787EC
+ .text start:0x001787EC end:0x00178AF4
+ .text start:0x00178AF4 end:0x00178F6C
+ .text start:0x00178F6C end:0x0017946C
+ .text start:0x0017946C end:0x00179720
+ .text start:0x00179720 end:0x00179A88
+ .text start:0x00179A88 end:0x00179CA4
+ .text start:0x00179CA4 end:0x0017A3C4
+ .text start:0x0017A3C4 end:0x0017A7A0
+ .text start:0x0017A7A0 end:0x0017ACE0
+ .text start:0x0017ACE0 end:0x0017B0E8
+ .text start:0x0017B0E8 end:0x0017B4A0
+ .text start:0x0017B4A0 end:0x0017B71C
+ .text start:0x0017B71C end:0x0017BAEC
+ .text start:0x0017BAEC end:0x0017C264
+ .text start:0x0017C264 end:0x0017C688
+ .text start:0x0017C688 end:0x0017CA0C
+ .text start:0x0017CA0C end:0x0017D1D0
+ .text start:0x0017D1D0 end:0x0017D7CC
+ .text start:0x0017D7CC end:0x0017E028
+ .text start:0x0017E028 end:0x0017E82C
+ .text start:0x0017E82C end:0x0017ED7C
+ .text start:0x0017ED7C end:0x0017F1A8
+ .text start:0x0017F1A8 end:0x0017F3C0
+ .text start:0x0017F3C0 end:0x0017F800
+ .text start:0x0017F800 end:0x00180500
+ .text start:0x00180500 end:0x001808CC
+ .text start:0x001808CC end:0x001810D4
+ .text start:0x001810D4 end:0x00181878
+ .text start:0x00181878 end:0x00181D64
+ .text start:0x00181D64 end:0x0018206C
+ .text start:0x0018206C end:0x00182828
+ .text start:0x00182828 end:0x001834DC
+ .text start:0x001834DC end:0x00183BC4
+ .text start:0x00183BC4 end:0x00183E0C
+ .text start:0x00183E0C end:0x00184600
+ .text start:0x00184600 end:0x00184A28
+ .text start:0x00184A28 end:0x00184F1C
+ .text start:0x00184F1C end:0x0018529C
+ .text start:0x0018529C end:0x00185654
+ .text start:0x00185654 end:0x001859DC
+ .text start:0x001859DC end:0x00185D68
+ .text start:0x00185D68 end:0x00185FE8
+ .text start:0x00185FE8 end:0x001862F4
+ .text start:0x001862F4 end:0x00186D38
+ .text start:0x00186D38 end:0x001870D0
+ .text start:0x001870D0 end:0x00187B14
+ .text start:0x00187B14 end:0x001882CC
+ .text start:0x001882CC end:0x001891D4
+ .text start:0x001891D4 end:0x001894D4
+ .text start:0x001894D4 end:0x00189930
+ .text start:0x00189930 end:0x00189CE4
+ .text start:0x00189CE4 end:0x0018A6DC
+ .text start:0x0018A6DC end:0x0018AE18
+ .text start:0x0018AE18 end:0x0018B0EC
+ .text start:0x0018B0EC end:0x0018B3E0
+ .text start:0x0018B3E0 end:0x0018B70C
+ .text start:0x0018B70C end:0x0018BA54
+ .text start:0x0018BA54 end:0x0018BE10
+ .text start:0x0018BE10 end:0x0018C18C
+ .text start:0x0018C18C end:0x0018C6E0
+ .text start:0x0018C6E0 end:0x0018CB80
+ .text start:0x0018CB80 end:0x0018D038
+ .text start:0x0018D038 end:0x0018D858
+ .text start:0x0018D858 end:0x0018DB8C
+ .text start:0x0018DB8C end:0x0018DD04
+ .text start:0x0018DD04 end:0x0018E05C
+ .text start:0x0018E05C end:0x0018E2D8
+ .text start:0x0018E2D8 end:0x0018E6F0
+ .text start:0x0018E6F0 end:0x0018E7A8
+ .text start:0x0018E7A8 end:0x0018E96C
+ .text start:0x0018E96C end:0x0018F58C
+ .text start:0x0018F58C end:0x0018F9FC
+ .text start:0x0018F9FC end:0x0018FCF0
+ .text start:0x0018FCF0 end:0x00190080
+ .text start:0x00190080 end:0x00190534
+ .text start:0x00190534 end:0x001908C8
+ .text start:0x001908C8 end:0x001911E8
+ .text start:0x001911E8 end:0x001914E0
+ .text start:0x001914E0 end:0x0019180C
+ .text start:0x0019180C end:0x00191BC0
+ .text start:0x00191BC0 end:0x00191EE8
+ .text start:0x00191EE8 end:0x0019236C
+ .text start:0x0019236C end:0x0019278C
+ .text start:0x0019278C end:0x00192C78
+ .text start:0x00192C78 end:0x00193184
+ .text start:0x00193184 end:0x0019360C
+ .text start:0x0019360C end:0x00193C3C
+ .text start:0x00193C3C end:0x00194070
+ .text start:0x00194070 end:0x00194710
+ .text start:0x00194710 end:0x00194A0C
+ .text start:0x00194A0C end:0x00194D6C
+ .text start:0x00194D6C end:0x00195288
+ .text start:0x00195288 end:0x0019562C
+ .text start:0x0019562C end:0x00195914
+ .text start:0x00195914 end:0x00195E28
+ .text start:0x00195E28 end:0x0019623C
+ .text start:0x0019623C end:0x00196634
+ .text start:0x00196634 end:0x00196950
+ .text start:0x00196950 end:0x00196E68
+ .text start:0x00196E68 end:0x001973E8
+ .text start:0x001973E8 end:0x001975FC
+ .text start:0x001975FC end:0x00197924
+ .text start:0x00197924 end:0x00197DDC
+ .text start:0x00197DDC end:0x00198264
+ .text start:0x00198264 end:0x001988F4
+ .text start:0x001988F4 end:0x00198980
+ .text start:0x00198980 end:0x00198BB0
+ .rodata start:0x00005370 end:0x00007C70
+ .data start:0x00051080 end:0x00051418
+
+game/m_random_field_ovl.c:
+ .text start:0x00198BB0 end:0x0019B128
+ .rodata start:0x00007C70 end:0x00007C78
+ .data start:0x00051418 end:0x00051B70
+ .bss start:0x000A6910 end:0x000A6C20
+
+ev_cherry_manager.c:
+ .text start:0x0019B128 end:0x0019B15C
+ .data start:0x00051B70 end:0x00051B98
+
+actor/ac_house_goki.c:
+ .text start:0x0019B15C end:0x0019C0AC
+ .rodata start:0x00007C78 end:0x00007CE0
+ .data start:0x00051B98 end:0x00051BF0
+
+actor/ac_ant.c:
+ .text start:0x0019C0AC end:0x0019C640
+ .rodata start:0x00007CE0 end:0x00007D00
+ .data start:0x00051BF0 end:0x00051C30
+
+actor/ac_bee.c:
+ .text start:0x0019C640 end:0x0019D81C
+ .rodata start:0x00007D00 end:0x00007D88
+ .data start:0x00051C30 end:0x00051C90
+
+actor/ac_fuusen.c:
+ .text start:0x0019D81C end:0x0019EDC4
+ .rodata start:0x00007D88 end:0x00007E38
+ .data start:0x00051C90 end:0x00051E20
+
+game/m_mail_check_ovl.c:
+ .text start:0x0019EDC4 end:0x0019F590
+ .data start:0x00051E20 end:0x00052540
+
+actor/ac_dummy.c:
+ .text start:0x0019F590 end:0x0019F5A0
+ .data start:0x00052540 end:0x00052568
+
+game/m_all_grow_ovl.c:
+ .text start:0x0019F5A0 end:0x001A5098
+ .rodata start:0x00007E38 end:0x00007EB0
+ .data start:0x00052568 end:0x00052808
+ .bss start:0x000A6C20 end:0x000A7060
+
+actor/ac_aprilfool_control.c:
+ .text start:0x001A5098 end:0x001A5320
+ .data start:0x00052808 end:0x00052888
+
+actor/ac_groundhog_control.c:
+ .text start:0x001A5320 end:0x001A59A0
+ .data start:0x00052888 end:0x000528D0
+
+actor/ac_mscore_control.c:
+ .text start:0x001A59A0 end:0x001A616C
+ .data start:0x000528D0 end:0x00052938
+
+actor/ac_countdown_npc0.c:
+ .text start:0x001A616C end:0x001A6308
+ .text start:0x001A6308 end:0x001A6354
+ .text start:0x001A6354 end:0x001A6DA4
+ .rodata start:0x00007EB0 end:0x00007EB8
+ .data start:0x00052938 end:0x000529F8
+
+actor/ac_countdown_npc1.c:
+ .text start:0x001A6DA4 end:0x001A6F40
+ .text start:0x001A6F40 end:0x001A6F8C
+ .text start:0x001A6F8C end:0x001A7EF4
+ .rodata start:0x00007EB8 end:0x00007EE8
+ .data start:0x000529F8 end:0x00052AF0
+
+actor/ac_ev_angler.c:
+ .text start:0x001A7EF4 end:0x001A80A4
+ .text start:0x001A80A4 end:0x001A911C
+ .rodata start:0x00007EE8 end:0x00007F00
+ .data start:0x00052AF0 end:0x00052B80
+
+actor/ac_ev_artist.c:
+ .text start:0x001A911C end:0x001A92B8
+ .text start:0x001A92B8 end:0x001A9AA4
+ .data start:0x00052B80 end:0x00052C28
+
+actor/ac_ev_broker.c:
+ .text start:0x001A9AA4 end:0x001A9CFC
+ .text start:0x001A9CFC end:0x001AA5D8
+ .rodata start:0x00007F00 end:0x00007F18
+ .data start:0x00052C28 end:0x00052CB0
+
+actor/ac_ev_broker2.c:
+ .text start:0x001AA5D8 end:0x001AA7A8
+ .text start:0x001AA7A8 end:0x001ABAB8
+ .rodata start:0x00007F18 end:0x00007F50
+ .data start:0x00052CB0 end:0x00052DB0
+
+actor/ac_ev_carpetPeddler.c:
+ .text start:0x001ABAB8 end:0x001ABC34
+ .text start:0x001ABC34 end:0x001AC81C
+ .data start:0x00052DB0 end:0x00052EA0
+
+actor/ac_ev_castaway.c:
+ .text start:0x001AC81C end:0x001ACB24
+ .rodata start:0x00007F50 end:0x00007F58
+ .data start:0x00052EA0 end:0x00052EF8
+
+actor/ac_ev_designer.c:
+ .text start:0x001ACB24 end:0x001ACCE4
+ .text start:0x001ACCE4 end:0x001ACE4C
+ .text start:0x001ACE4C end:0x001AD734
+ .text start:0x001AD734 end:0x001ADD4C
+ .rodata start:0x00007F58 end:0x00007F78
+ .data start:0x00052EF8 end:0x000530C8
+
+actor/ac_ev_dokutu.c:
+ .text start:0x001ADD4C end:0x001ADEC4
+ .text start:0x001ADEC4 end:0x001ADF80
+ .data start:0x000530C8 end:0x00053108
+
+actor/ac_ev_dozaemon.c:
+ .text start:0x001ADF80 end:0x001AE2F0
+ .text start:0x001AE2F0 end:0x001AEA20
+ .text start:0x001AEA20 end:0x001AEE64
+ .rodata start:0x00007F78 end:0x00007F88
+ .data start:0x00053108 end:0x000531A0
+
+actor/ac_ev_ghost.c:
+ .text start:0x001AEE64 end:0x001AF3F0
+ .text start:0x001AF3F0 end:0x001B0014
+ .text start:0x001B0014 end:0x001B0AD0
+ .rodata start:0x00007F88 end:0x00007FC8
+ .data start:0x000531A0 end:0x00053438
+ .bss start:0x000A7060 end:0x000A7070
+
+actor/ac_ev_gypsy.c:
+ .text start:0x001B0AD0 end:0x001B0C78
+ .text start:0x001B0C78 end:0x001B116C
+ .rodata start:0x00007FC8 end:0x00007FD8
+ .data start:0x00053438 end:0x000534F8
+
+actor/ac_ev_kabuPeddler.c:
+ .text start:0x001B116C end:0x001B12E8
+ .text start:0x001B12E8 end:0x001B1A8C
+ .data start:0x000534F8 end:0x000535D8
+
+actor/ac_ev_miko.c:
+ .text start:0x001B1A8C end:0x001B1CA0
+ .text start:0x001B1CA0 end:0x001B2424
+ .rodata start:0x00007FD8 end:0x00007FF0
+ .data start:0x000535D8 end:0x00053660
+ .bss start:0x000A7070 end:0x000A7080
+
+actor/ac_ev_pumpkin.c:
+ .text start:0x001B2424 end:0x001B25F8
+ .text start:0x001B25F8 end:0x001B31F0
+ .rodata start:0x00007FF0 end:0x00008008
+ .data start:0x00053660 end:0x000536E0
+
+actor/ac_ev_santa.c:
+ .text start:0x001B31F0 end:0x001B33C8
+ .text start:0x001B33C8 end:0x001B3D64
+ .rodata start:0x00008008 end:0x00008010
+ .data start:0x000536E0 end:0x00053838
+
+actor/ac_ev_soncho.c:
+ .text start:0x001B3D64 end:0x001B3F70
+ .text start:0x001B3F70 end:0x001B44B4
+ .rodata start:0x00008010 end:0x00008018
+ .data start:0x00053838 end:0x00053888
+
+actor/ac_ev_soncho2.c:
+ .text start:0x001B44B4 end:0x001B477C
+ .text start:0x001B477C end:0x001B4D58
+ .text start:0x001B4D58 end:0x001B55FC
+ .rodata start:0x00008018 end:0x00008030
+ .data start:0x00053888 end:0x00053978
+
+actor/ac_ev_speech_soncho.c:
+ .text start:0x001B55FC end:0x001B57F4
+ .text start:0x001B57F4 end:0x001B5E98
+ .rodata start:0x00008030 end:0x00008040
+ .data start:0x00053978 end:0x00053A28
+
+actor/ac_ev_yomise.c:
+ .text start:0x001B5E98 end:0x001B6168
+ .text start:0x001B6168 end:0x001B6CA0
+ .rodata start:0x00008040 end:0x00008058
+ .data start:0x00053A28 end:0x00053AB8
+
+actor/ac_go_home_npc.c:
+ .text start:0x001B6CA0 end:0x001B6E30
+ .text start:0x001B6E30 end:0x001B7030
+ .rodata start:0x00008058 end:0x00008060
+ .data start:0x00053AB8 end:0x00053AF8
+
+actor/ac_halloween_npc.c:
+ .text start:0x001B7030 end:0x001B719C
+ .text start:0x001B719C end:0x001B7270
+ .text start:0x001B7270 end:0x001B7DC4
+ .text start:0x001B7DC4 end:0x001B826C
+ .rodata start:0x00008060 end:0x00008080
+ .data start:0x00053AF8 end:0x00053BB0
+
+actor/ac_hanabi_npc0.c:
+ .text start:0x001B826C end:0x001B8408
+ .text start:0x001B8408 end:0x001B8460
+ .text start:0x001B8460 end:0x001B8D8C
+ .rodata start:0x00008080 end:0x000080A0
+ .data start:0x00053BB0 end:0x00053C58
+
+actor/ac_hanabi_npc1.c:
+ .text start:0x001B8D8C end:0x001B8F30
+ .text start:0x001B8F30 end:0x001B8F88
+ .text start:0x001B8F88 end:0x001B96D4
+ .rodata start:0x000080A0 end:0x000080B8
+ .data start:0x00053C58 end:0x00053D68
+
+actor/ac_hanami_npc0.c:
+ .text start:0x001B96D4 end:0x001B9870
+ .text start:0x001B9870 end:0x001B98BC
+ .text start:0x001B98BC end:0x001B9EC8
+ .rodata start:0x000080B8 end:0x000080C8
+ .data start:0x00053D68 end:0x00053E28
+
+actor/ac_hanami_npc1.c:
+ .text start:0x001B9EC8 end:0x001BA064
+ .text start:0x001BA064 end:0x001BA0B0
+ .text start:0x001BA0B0 end:0x001BA8AC
+ .rodata start:0x000080C8 end:0x000080E8
+ .data start:0x00053E28 end:0x00053EC8
+
+actor/ac_hatumode_npc0.c:
+ .text start:0x001BA8AC end:0x001BAB98
+ .text start:0x001BAB98 end:0x001BAE44
+ .text start:0x001BAE44 end:0x001BBA90
+ .rodata start:0x000080E8 end:0x00008100
+ .data start:0x00053EC8 end:0x00053F80
+
+actor/ac_kamakura_npc0.c:
+ .text start:0x001BBA90 end:0x001BBC34
+ .text start:0x001BBC34 end:0x001BBCF8
+ .data start:0x00053F80 end:0x00053FC0
+
+actor/ac_normal_npc.c:
+ .text start:0x001BBCF8 end:0x001BBE88
+ .data start:0x00053FC0 end:0x00054000
+
+actor/ac_npc.c:
+ .text start:0x001BBE88 end:0x001BBE88
+ .text start:0x001BBE88 end:0x001BC680
+ .text start:0x001BC680 end:0x001BD604
+ .text start:0x001BD604 end:0x001BD710
+ .text start:0x001BD710 end:0x001BDB44
+ .text start:0x001BDB44 end:0x001BE0D8
+ .text start:0x001BE0D8 end:0x001BEB58
+ .text start:0x001BEB58 end:0x001BFE38
+ .text start:0x001BFE38 end:0x001C0654
+ .text start:0x001C0654 end:0x001C08F8
+ .text start:0x001C08F8 end:0x001C1520
+ .text start:0x001C1520 end:0x001C1678
+ .text start:0x001C1678 end:0x001C1860
+ .text start:0x001C1860 end:0x001C1A30
+ .text start:0x001C1A30 end:0x001C1D60
+ .text start:0x001C1D60 end:0x001C2F18
+ .text start:0x001C2F18 end:0x001C32F8
+ .text start:0x001C32F8 end:0x001C36DC
+ .text start:0x001C36DC end:0x001C3924
+ .text start:0x001C3924 end:0x001C3A60
+ .text start:0x001C3A60 end:0x001C3B44
+ .text start:0x001C3B44 end:0x001C3F40
+ .text start:0x001C3F40 end:0x001C4888
+ .text start:0x001C4888 end:0x001C4914
+ .text start:0x001C4914 end:0x001C4B40
+ .text start:0x001C4B40 end:0x001C4C44
+ .text start:0x001C4C44 end:0x001C4EE8
+ .text start:0x001C4EE8 end:0x001C4FAC
+ .text start:0x001C4FAC end:0x001C677C
+ .text start:0x001C677C end:0x001C6E90
+ .text start:0x001C6E90 end:0x001C7118
+ .text start:0x001C7118 end:0x001C71B0
+ .text start:0x001C71B0 end:0x001C72D8
+ .text start:0x001C72D8 end:0x001C77A4
+ .text start:0x001C77A4 end:0x001C7940
+ .text start:0x001C7940 end:0x001C7AD0
+ .text start:0x001C7AD0 end:0x001C8070
+ .text start:0x001C8070 end:0x001C8244
+ .text start:0x001C8244 end:0x001C8464
+ .text start:0x001C8464 end:0x001C8670
+ .text start:0x001C8670 end:0x001C88C4
+ .text start:0x001C88C4 end:0x001C9058
+ .text start:0x001C9058 end:0x001C9174
+ .text start:0x001C9174 end:0x001C9370
+ .text start:0x001C9370 end:0x001CAA98
+ .rodata start:0x00008100 end:0x00008200
+ .data start:0x00054000 end:0x00055778
+ .bss start:0x000A7080 end:0x000BF438
+
+actor/ac_npc2.c:
+ .text start:0x001CAA98 end:0x001CAA98
+ .text start:0x001CAA98 end:0x001CB290
+ .text start:0x001CB290 end:0x001CC1FC
+ .text start:0x001CC1FC end:0x001CC2A8
+ .text start:0x001CC2A8 end:0x001CC620
+ .text start:0x001CC620 end:0x001CCBAC
+ .text start:0x001CCBAC end:0x001CD6D0
+ .text start:0x001CD6D0 end:0x001CDE14
+ .text start:0x001CDE14 end:0x001CE630
+ .text start:0x001CE630 end:0x001CE8D4
+ .text start:0x001CE8D4 end:0x001CF2C4
+ .text start:0x001CF2C4 end:0x001CF41C
+ .text start:0x001CF41C end:0x001CF5D8
+ .text start:0x001CF5D8 end:0x001CF7A0
+ .text start:0x001CF7A0 end:0x001CFB7C
+ .text start:0x001CFB7C end:0x001CFBDC
+ .text start:0x001CFBDC end:0x001CFCC0
+ .text start:0x001CFCC0 end:0x001D00BC
+ .text start:0x001D00BC end:0x001D07F0
+ .text start:0x001D07F0 end:0x001D0B1C
+ .text start:0x001D0B1C end:0x001D0CFC
+ .text start:0x001D0CFC end:0x001D0D78
+ .text start:0x001D0D78 end:0x001D2520
+ .text start:0x001D2520 end:0x001D27C8
+ .text start:0x001D27C8 end:0x001D2A78
+ .text start:0x001D2A78 end:0x001D2D38
+ .text start:0x001D2D38 end:0x001D2E94
+ .text start:0x001D2E94 end:0x001D32C0
+ .text start:0x001D32C0 end:0x001D3450
+ .text start:0x001D3450 end:0x001D35DC
+ .text start:0x001D35DC end:0x001D3830
+ .text start:0x001D3830 end:0x001D4154
+ .text start:0x001D4154 end:0x001D4250
+ .text start:0x001D4250 end:0x001D43C8
+ .text start:0x001D43C8 end:0x001D53F8
+ .rodata start:0x00008200 end:0x000082F0
+ .data start:0x00055778 end:0x00056DD0
+ .bss start:0x000BF438 end:0x000BF900
+
+actor/ac_npc_conv_master.c:
+ .text start:0x001D53F8 end:0x001D558C
+ .text start:0x001D558C end:0x001D58D4
+ .text start:0x001D58D4 end:0x001DADC4
+ .rodata start:0x000082F0 end:0x00008350
+ .data start:0x00056DD0 end:0x00057AB0
+
+actor/ac_npc_curator.c:
+ .text start:0x001DADC4 end:0x001DAF8C
+ .text start:0x001DAF8C end:0x001DCC80
+ .rodata start:0x00008350 end:0x00008358
+ .data start:0x00057AB0 end:0x00058030
+
+actor/ac_npc_depart_master.c:
+ .text start:0x001DCC80 end:0x001DCE70
+ .text start:0x001DCE70 end:0x001DD1EC
+ .text start:0x001DD1EC end:0x001E26DC
+ .rodata start:0x00008358 end:0x000083C0
+ .data start:0x00058030 end:0x00058CC8
+
+actor/ac_npc_engineer.c:
+ .text start:0x001E26DC end:0x001E28B4
+ .data start:0x00058CC8 end:0x00058D08
+
+actor/ac_npc_guide.c:
+ .text start:0x001E28B4 end:0x001E2AFC
+ .text start:0x001E2AFC end:0x001E2B84
+ .text start:0x001E2B84 end:0x001E4858
+ .rodata start:0x000083C0 end:0x00008440
+ .data start:0x00058D08 end:0x00059008
+
+actor/ac_npc_guide2.c:
+ .text start:0x001E4858 end:0x001E4A44
+ .text start:0x001E4A44 end:0x001E4A94
+ .text start:0x001E4A94 end:0x001E646C
+ .rodata start:0x00008440 end:0x000084C0
+ .data start:0x00059008 end:0x000592E0
+
+actor/ac_npc_majin.c:
+ .text start:0x001E646C end:0x001E66CC
+ .text start:0x001E66CC end:0x001E6ACC
+ .text start:0x001E6ACC end:0x001E7070
+ .rodata start:0x000084C0 end:0x000084E0
+ .data start:0x000592E0 end:0x00059428
+
+actor/ac_npc_majin2.c:
+ .text start:0x001E7070 end:0x001E72D0
+ .text start:0x001E72D0 end:0x001E759C
+ .text start:0x001E759C end:0x001E7C7C
+ .rodata start:0x000084E0 end:0x000084F0
+ .data start:0x00059428 end:0x00059590
+
+actor/ac_npc_majin3.c:
+ .text start:0x001E7C7C end:0x001E7EDC
+ .text start:0x001E7EDC end:0x001E83D8
+ .text start:0x001E83D8 end:0x001E89D8
+ .rodata start:0x000084F0 end:0x00008508
+ .data start:0x00059590 end:0x000596E8
+
+actor/ac_npc_majin4.c:
+ .text start:0x001E89D8 end:0x001E8E7C
+ .text start:0x001E8E7C end:0x001E903C
+ .text start:0x001E903C end:0x001E96F8
+ .rodata start:0x00008508 end:0x00008530
+ .data start:0x000596E8 end:0x00059820
+ .bss start:0x000BF900 end:0x000BF910
+
+actor/ac_npc_majin5.c:
+ .text start:0x001E96F8 end:0x001E9A40
+ .text start:0x001E9A40 end:0x001E9C18
+ .rodata start:0x00008530 end:0x00008538
+ .data start:0x00059820 end:0x00059860
+
+actor/ac_npc_mamedanuki.c:
+ .text start:0x001E9C18 end:0x001E9E5C
+ .text start:0x001E9E5C end:0x001EA244
+ .text start:0x001EA244 end:0x001EEC78
+ .rodata start:0x00008538 end:0x00008590
+ .data start:0x00059860 end:0x0005CE70
+ .bss start:0x000BF910 end:0x000BF920
+
+actor/ac_npc_mask_cat.c:
+ .text start:0x001EEC78 end:0x001EEE20
+ .text start:0x001EEE20 end:0x001EEFDC
+ .rodata start:0x00008590 end:0x00008598
+ .data start:0x0005CE70 end:0x0005CEB0
+
+actor/ac_npc_mask_cat2.c:
+ .text start:0x001EEFDC end:0x001EF2B8
+ .text start:0x001EF2B8 end:0x001F0D44
+ .rodata start:0x00008598 end:0x00008608
+ .data start:0x0005CEB0 end:0x0005D110
+
+actor/ac_npc_needlework.c:
+ .text start:0x001F0D44 end:0x001F0F7C
+ .text start:0x001F0F7C end:0x001F1518
+ .text start:0x001F1518 end:0x001F49F8
+ .text start:0x001F49F8 end:0x001F6018
+ .rodata start:0x00008608 end:0x00008660
+ .data start:0x0005D110 end:0x00070EF0
+ .bss start:0x000BF920 end:0x000C0A28
+
+actor/ac_npc_p_sel.c:
+ .text start:0x001F6018 end:0x001F63A4
+ .text start:0x001F63A4 end:0x001F66C4
+ .text start:0x001F66C4 end:0x001F6D58
+ .rodata start:0x00008660 end:0x00008698
+ .data start:0x00070EF0 end:0x00070F80
+
+actor/ac_npc_p_sel2.c:
+ .text start:0x001F6D58 end:0x001F7098
+ .text start:0x001F7098 end:0x001F720C
+ .text start:0x001F720C end:0x001F9DC0
+ .rodata start:0x00008698 end:0x000086B8
+ .data start:0x00070F80 end:0x00071348
+ .bss start:0x000C0A28 end:0x000C0A88
+
+actor/ac_npc_police.c:
+ .text start:0x001F9DC0 end:0x001FA02C
+ .text start:0x001FA02C end:0x001FADE0
+ .rodata start:0x000086B8 end:0x000086D0
+ .data start:0x00071348 end:0x00071460
+
+actor/ac_npc_police2.c:
+ .text start:0x001FADE0 end:0x001FAF6C
+ .text start:0x001FAF6C end:0x001FC058
+ .rodata start:0x000086D0 end:0x00008700
+ .data start:0x00071460 end:0x00071540
+
+actor/ac_npc_post_girl.c:
+ .text start:0x001FC058 end:0x001FC2A4
+ .text start:0x001FC2A4 end:0x001FD874
+ .rodata start:0x00008700 end:0x00008708
+ .data start:0x00071540 end:0x00071708
+
+actor/ac_npc_post_man.c:
+ .text start:0x001FD874 end:0x001FDAF4
+ .text start:0x001FDAF4 end:0x001FDB44
+ .text start:0x001FDB44 end:0x001FEC28
+ .rodata start:0x00008708 end:0x00008760
+ .data start:0x00071708 end:0x00071920
+
+actor/ac_npc_rcn_guide.c:
+ .text start:0x001FEC28 end:0x001FEE28
+ .text start:0x001FEE28 end:0x001FEFBC
+ .text start:0x001FEFBC end:0x001FF464
+ .text start:0x001FF464 end:0x001FFD48
+ .rodata start:0x00008760 end:0x00008788
+ .data start:0x00071920 end:0x00071B28
+
+actor/ac_npc_rcn_guide2.c:
+ .text start:0x001FFD48 end:0x001FFF0C
+ .text start:0x001FFF0C end:0x00200060
+ .text start:0x00200060 end:0x002015D4
+ .text start:0x002015D4 end:0x00201DA8
+ .rodata start:0x00008788 end:0x00008790
+ .data start:0x00071B28 end:0x00071FF8
+
+actor/ac_npc_restart.c:
+ .text start:0x00201DA8 end:0x00202094
+ .text start:0x00202094 end:0x0020237C
+ .text start:0x0020237C end:0x00202D9C
+ .rodata start:0x00008790 end:0x000087A8
+ .data start:0x00071FF8 end:0x00072148
+ .bss start:0x000C0A88 end:0x000C0A98
+
+actor/ac_npc_rtc.c:
+ .text start:0x00202D9C end:0x002030F4
+ .text start:0x002030F4 end:0x0020353C
+ .text start:0x0020353C end:0x00203E8C
+ .rodata start:0x000087A8 end:0x000087E0
+ .data start:0x00072148 end:0x00072288
+
+actor/ac_npc_sendo.c:
+ .text start:0x00203E8C end:0x00204048
+ .text start:0x00204048 end:0x002061C0
+ .rodata start:0x000087E0 end:0x000087F8
+ .data start:0x00072288 end:0x00072580
+ .bss start:0x000C0A98 end:0x000C0AD8
+
+actor/ac_npc_shasho.c:
+ .text start:0x002061C0 end:0x0020639C
+ .text start:0x0020639C end:0x002069FC
+ .rodata start:0x000087F8 end:0x00008828
+ .data start:0x00072580 end:0x00072678
+
+actor/ac_npc_shop_master.c:
+ .text start:0x002069FC end:0x00206B90
+ .text start:0x00206B90 end:0x00206E6C
+ .text start:0x00206E6C end:0x0020C35C
+ .rodata start:0x00008828 end:0x00008890
+ .data start:0x00072678 end:0x00073288
+
+actor/ac_npc_shop_mastersp.c:
+ .text start:0x0020C35C end:0x0020C4BC
+ .text start:0x0020C4BC end:0x0020C8B8
+ .text start:0x0020C8B8 end:0x0020D680
+ .text start:0x0020D680 end:0x0020E210
+ .rodata start:0x00008890 end:0x000088B0
+ .data start:0x00073288 end:0x000735A8
+
+actor/ac_npc_sleep_obaba.c:
+ .text start:0x0020E210 end:0x0020E3DC
+ .text start:0x0020E3DC end:0x0020E428
+ .text start:0x0020E428 end:0x0020E790
+ .rodata start:0x000088B0 end:0x000088C0
+ .data start:0x000735A8 end:0x00073620
+
+actor/ac_npc_soncho.c:
+ .text start:0x0020E790 end:0x0020E9EC
+ .text start:0x0020E9EC end:0x0020EBB8
+ .text start:0x0020EBB8 end:0x0020EE84
+ .rodata start:0x000088C0 end:0x000088C8
+ .data start:0x00073620 end:0x00073690
+
+actor/ac_npc_station_master.c:
+ .text start:0x0020EE84 end:0x0020F040
+ .text start:0x0020F040 end:0x0020F10C
+ .text start:0x0020F10C end:0x0020F4B4
+ .text start:0x0020F4B4 end:0x0021039C
+ .rodata start:0x000088C8 end:0x000088E8
+ .data start:0x00073690 end:0x00073818
+
+actor/ac_npc_super_master.c:
+ .text start:0x0021039C end:0x00210530
+ .text start:0x00210530 end:0x00210978
+ .text start:0x00210978 end:0x00215E68
+ .rodata start:0x000088E8 end:0x00008960
+ .data start:0x00073818 end:0x000747D0
+
+actor/ac_npc_totakeke.c:
+ .text start:0x00215E68 end:0x00216278
+ .text start:0x00216278 end:0x00216CE0
+ .text start:0x00216CE0 end:0x00217630
+ .rodata start:0x00008960 end:0x00008980
+ .data start:0x000747D0 end:0x000748A0
+
+actor/ac_present_npc.c:
+ .text start:0x00217630 end:0x002177CC
+ .text start:0x002177CC end:0x0021830C
+ .rodata start:0x00008980 end:0x000089A0
+ .data start:0x000748A0 end:0x000749A0
+
+actor/ac_taisou_npc0.c:
+ .text start:0x0021830C end:0x00218624
+ .text start:0x00218624 end:0x0021872C
+ .text start:0x0021872C end:0x00219468
+ .rodata start:0x000089A0 end:0x000089D0
+ .data start:0x000749A0 end:0x00074BF8
+ .bss start:0x000C0AD8 end:0x000C0AE8
+
+actor/ac_tamaire_npc0.c:
+ .text start:0x00219468 end:0x002196D8
+ .text start:0x002196D8 end:0x002198A8
+ .text start:0x002198A8 end:0x00219F14
+ .rodata start:0x000089D0 end:0x000089E0
+ .data start:0x00074BF8 end:0x00074CB8
+
+actor/ac_tamaire_npc1.c:
+ .text start:0x00219F14 end:0x0021A330
+ .text start:0x0021A330 end:0x0021A4D0
+ .text start:0x0021A4D0 end:0x0021B27C
+ .rodata start:0x000089E0 end:0x00008A28
+ .data start:0x00074CB8 end:0x00074DC8
+ .bss start:0x000C0AE8 end:0x000C0AF0
+
+actor/ac_tokyoso_npc0.c:
+ .text start:0x0021B27C end:0x0021B628
+ .text start:0x0021B628 end:0x0021B7C8
+ .text start:0x0021B7C8 end:0x0021BFC8
+ .rodata start:0x00008A28 end:0x00008A38
+ .data start:0x00074DC8 end:0x00074EA8
+
+actor/ac_tokyoso_npc1.c:
+ .text start:0x0021BFC8 end:0x0021C28C
+ .text start:0x0021C28C end:0x0021C464
+ .text start:0x0021C464 end:0x0021D5A0
+ .rodata start:0x00008A38 end:0x00008A50
+ .data start:0x00074EA8 end:0x00074FC8
+
+actor/ac_tukimi_npc0.c:
+ .text start:0x0021D5A0 end:0x0021D73C
+ .text start:0x0021D73C end:0x0021D77C
+ .text start:0x0021D77C end:0x0021DC80
+ .rodata start:0x00008A50 end:0x00008A60
+ .data start:0x00074FC8 end:0x000750A0
+
+actor/ac_tukimi_npc1.c:
+ .text start:0x0021DC80 end:0x0021DE1C
+ .text start:0x0021DE1C end:0x0021DE68
+ .text start:0x0021DE68 end:0x0021E450
+ .rodata start:0x00008A60 end:0x00008A70
+ .data start:0x000750A0 end:0x000751B0
+
+actor/ac_tunahiki_npc0.c:
+ .text start:0x0021E450 end:0x0021E7F0
+ .text start:0x0021E7F0 end:0x0021E994
+ .text start:0x0021E994 end:0x0021EDB8
+ .rodata start:0x00008A70 end:0x00008A88
+ .data start:0x000751B0 end:0x00075238
+
+actor/ac_tunahiki_npc1.c:
+ .text start:0x0021EDB8 end:0x0021F13C
+ .text start:0x0021F13C end:0x0021F3C0
+ .text start:0x0021F3C0 end:0x0021FE08
+ .rodata start:0x00008A88 end:0x00008AE8
+ .data start:0x00075238 end:0x000752E8
+
+actor/ac_turi_npc0.c:
+ .text start:0x0021FE08 end:0x0022004C
+ .text start:0x0022004C end:0x002200C8
+ .text start:0x002200C8 end:0x00220698
+ .rodata start:0x00008AE8 end:0x00008AF0
+ .data start:0x000752E8 end:0x000753D0
+ .bss start:0x000C0AF0 end:0x000C0B08
+
+actor/ac_groundhog_npc0.c:
+ .text start:0x00220698 end:0x002208A0
+ .text start:0x002208A0 end:0x0022098C
+ .text start:0x0022098C end:0x00221008
+ .rodata start:0x00008AF0 end:0x00008B18
+ .data start:0x000753D0 end:0x00075480
+
+actor/ac_harvest_npc0.c:
+ .text start:0x00221008 end:0x00221234
+ .text start:0x00221234 end:0x00221908
+ .rodata start:0x00008B18 end:0x00008B28
+ .data start:0x00075480 end:0x00075558
+
+actor/ac_harvest_npc1.c:
+ .text start:0x00221908 end:0x00221B10
+ .text start:0x00221B10 end:0x00221FD4
+ .rodata start:0x00008B28 end:0x00008B30
+ .data start:0x00075558 end:0x000755E0
+
+actor/ac_npc_hem.c:
+ .text start:0x00221FD4 end:0x00222138
+ .text start:0x00222138 end:0x00222798
+ .rodata start:0x00008B30 end:0x00008B38
+ .data start:0x000755E0 end:0x00075650
+
+actor/ac_ev_majin.c:
+ .text start:0x00222798 end:0x002229F8
+ .text start:0x002229F8 end:0x00222EB0
+ .rodata start:0x00008B38 end:0x00008B40
+ .data start:0x00075650 end:0x000756D0
+
+actor/ac_ev_turkey.c:
+ .text start:0x00222EB0 end:0x0022409C
+ .rodata start:0x00008B40 end:0x00008BA0
+ .data start:0x000756D0 end:0x00075780
+
+actor/ac_insect.c:
+ .text start:0x0022409C end:0x00224140
+ .text start:0x00224140 end:0x00224A9C
+ .text start:0x00224A9C end:0x00225538
+ .text start:0x00225538 end:0x002259CC
+ .rodata start:0x00008BA0 end:0x00008C10
+ .data start:0x00075780 end:0x00075D00
+ .bss start:0x000C0B08 end:0x000C5F78
+
+actor/ac_ins_amenbo.c:
+ .text start:0x002259CC end:0x002260E0
+ .rodata start:0x00008C10 end:0x00008C68
+ .data start:0x00075D00 end:0x00075D30
+
+actor/ac_ins_batta.c:
+ .text start:0x002260E0 end:0x00227460
+ .rodata start:0x00008C68 end:0x00008D00
+ .data start:0x00075D30 end:0x00075DB8
+
+actor/ac_ins_dango.c:
+ .text start:0x00227460 end:0x00228150
+ .rodata start:0x00008D00 end:0x00008D48
+ .data start:0x00075DB8 end:0x00075E08
+
+actor/ac_ins_chou.c:
+ .text start:0x00228150 end:0x00229784
+ .rodata start:0x00008D48 end:0x00008DC8
+ .data start:0x00075E08 end:0x00075EC8
+
+actor/ac_ins_goki.c:
+ .text start:0x00229784 end:0x0022A640
+ .rodata start:0x00008DC8 end:0x00008E30
+ .data start:0x00075EC8 end:0x00075F60
+
+actor/ac_ins_hitodama.c:
+ .text start:0x0022A640 end:0x0022B0AC
+ .rodata start:0x00008E30 end:0x00008EA8
+ .data start:0x00075F60 end:0x00075FB0
+
+actor/ac_ins_hotaru.c:
+ .text start:0x0022B0AC end:0x0022BECC
+ .rodata start:0x00008EA8 end:0x00008F48
+ .data start:0x00075FB0 end:0x00076050
+
+actor/ac_ins_ka.c:
+ .text start:0x0022BECC end:0x0022C744
+ .rodata start:0x00008F48 end:0x00008F90
+ .data start:0x00076050 end:0x00076080
+
+actor/ac_ins_kabuto.c:
+ .text start:0x0022C744 end:0x0022CF4C
+ .rodata start:0x00008F90 end:0x00008FC8
+ .data start:0x00076080 end:0x000760E0
+
+actor/ac_ins_kera.c:
+ .text start:0x0022CF4C end:0x0022DC70
+ .rodata start:0x00008FC8 end:0x00009010
+ .data start:0x000760E0 end:0x00076138
+
+actor/ac_ins_mino.c:
+ .text start:0x0022DC70 end:0x0022EEF0
+ .rodata start:0x00009010 end:0x00009090
+ .data start:0x00076138 end:0x000761D8
+
+actor/ac_ins_semi.c:
+ .text start:0x0022EEF0 end:0x0022F794
+ .rodata start:0x00009090 end:0x000090D8
+ .data start:0x000761D8 end:0x00076210
+
+actor/ac_ins_tentou.c:
+ .text start:0x0022F794 end:0x00230344
+ .rodata start:0x000090D8 end:0x00009140
+ .data start:0x00076210 end:0x00076280
+
+actor/ac_ins_tonbo.c:
+ .text start:0x00230344 end:0x00231AC8
+ .rodata start:0x00009140 end:0x000091D8
+ .data start:0x00076280 end:0x000762D8
+
+actor/ac_gyoei.c:
+ .text start:0x00231AC8 end:0x00231BA0
+ .text start:0x00231BA0 end:0x00232284
+ .text start:0x00232284 end:0x002325BC
+ .text start:0x002325BC end:0x00232C00
+ .rodata start:0x000091D8 end:0x00009250
+ .data start:0x000762D8 end:0x00076858
+ .bss start:0x000C5F78 end:0x000CD780
+
+actor/ac_gyo_test.c:
+ .text start:0x00232C00 end:0x00234BB0
+ .rodata start:0x00009250 end:0x000092D0
+ .data start:0x00076858 end:0x00076BA8
+
+actor/ac_gyo_kaseki.c:
+ .text start:0x00234BB0 end:0x00236A4C
+ .rodata start:0x000092D0 end:0x00009350
+ .data start:0x00076BA8 end:0x00076F40
+
+actor/ac_boat.c:
+ .text start:0x00236A4C end:0x00236F30
+ .text start:0x00236F30 end:0x002382C4
+ .rodata start:0x00009350 end:0x000093D0
+ .data start:0x00076F40 end:0x00077060
+
+actor/ac_br_shop.c:
+ .text start:0x002382C4 end:0x002384C0
+ .text start:0x002384C0 end:0x00238F18
+ .text start:0x00238F18 end:0x002391CC
+ .rodata start:0x000093D0 end:0x00009400
+ .data start:0x00077060 end:0x00077188
+
+actor/ac_bridge_a.c:
+ .text start:0x002391CC end:0x002399F8
+ .rodata start:0x00009400 end:0x00009470
+ .data start:0x00077188 end:0x00077230
+
+actor/ac_buggy.c:
+ .text start:0x002399F8 end:0x00239B70
+ .text start:0x00239B70 end:0x0023A5B8
+ .text start:0x0023A5B8 end:0x0023A894
+ .rodata start:0x00009470 end:0x000094A8
+ .data start:0x00077230 end:0x00077358
+
+actor/ac_conveni.c:
+ .text start:0x0023A894 end:0x0023AA3C
+ .text start:0x0023AA3C end:0x0023B374
+ .text start:0x0023B374 end:0x0023B610
+ .rodata start:0x000094A8 end:0x000094F0
+ .data start:0x00077358 end:0x00077538
+
+actor/ac_count02.c:
+ .text start:0x0023B610 end:0x0023B704
+ .text start:0x0023B704 end:0x0023BB7C
+ .text start:0x0023BB7C end:0x0023BE04
+ .rodata start:0x000094F0 end:0x00009518
+ .data start:0x00077538 end:0x000775A8
+
+actor/ac_countdown.c:
+ .text start:0x0023BE04 end:0x0023BEA0
+ .text start:0x0023BEA0 end:0x0023BF20
+ .text start:0x0023BF20 end:0x0023C3BC
+ .text start:0x0023C3BC end:0x0023C664
+ .rodata start:0x00009518 end:0x00009520
+ .data start:0x000775A8 end:0x000776A8
+ .bss start:0x000CD780 end:0x000CD788
+
+actor/ac_depart.c:
+ .text start:0x0023C664 end:0x0023C818
+ .text start:0x0023C818 end:0x0023D150
+ .text start:0x0023D150 end:0x0023D430
+ .rodata start:0x00009520 end:0x00009560
+ .data start:0x000776A8 end:0x000778F0
+
+actor/ac_douzou.c:
+ .text start:0x0023D430 end:0x0023D560
+ .text start:0x0023D560 end:0x0023E0D8
+ .text start:0x0023E0D8 end:0x0023E45C
+ .rodata start:0x00009560 end:0x00009588
+ .data start:0x000778F0 end:0x00077B18
+
+actor/ac_dump.c:
+ .text start:0x0023E45C end:0x0023E4D8
+ .text start:0x0023E4D8 end:0x0023E918
+ .text start:0x0023E918 end:0x0023EA40
+ .rodata start:0x00009588 end:0x000095A8
+ .data start:0x00077B18 end:0x00077C20
+
+actor/ac_fallS.c:
+ .text start:0x0023EA40 end:0x0023EA9C
+ .text start:0x0023EA9C end:0x0023ECDC
+ .rodata start:0x000095A8 end:0x000095D0
+ .data start:0x00077C20 end:0x00077C48
+
+actor/ac_fallSESW.c:
+ .text start:0x0023ECDC end:0x0023ED38
+ .text start:0x0023ED38 end:0x0023EFD0
+ .rodata start:0x000095D0 end:0x000095F8
+ .data start:0x00077C48 end:0x00077CB0
+
+actor/ac_ghog.c:
+ .text start:0x0023EFD0 end:0x0023F21C
+ .rodata start:0x000095F8 end:0x00009608
+ .data start:0x00077CB0 end:0x00077D00
+
+actor/ac_goza.c:
+ .text start:0x0023F21C end:0x0023F268
+ .text start:0x0023F268 end:0x0023F558
+ .text start:0x0023F558 end:0x0023F67C
+ .rodata start:0x00009608 end:0x00009618
+ .data start:0x00077D00 end:0x00077E40
+
+actor/ac_house.c:
+ .text start:0x0023F67C end:0x0023F858
+ .text start:0x0023F858 end:0x00240680
+ .text start:0x00240680 end:0x00240DF8
+ .rodata start:0x00009618 end:0x00009648
+ .data start:0x00077E40 end:0x00078120
+
+actor/ac_htable.c:
+ .text start:0x00240DF8 end:0x00241760
+ .rodata start:0x00009648 end:0x000096E8
+ .data start:0x00078120 end:0x00078250
+
+actor/ac_kago.c:
+ .text start:0x00241760 end:0x002417C0
+ .text start:0x002417C0 end:0x002419B0
+ .text start:0x002419B0 end:0x00241AA8
+ .data start:0x00078250 end:0x000782A8
+
+actor/ac_kamakura.c:
+ .text start:0x00241AA8 end:0x00241B3C
+ .text start:0x00241B3C end:0x002422E8
+ .text start:0x002422E8 end:0x00242510
+ .rodata start:0x000096E8 end:0x00009718
+ .data start:0x000782A8 end:0x000783A0
+
+actor/ac_koinobori.c:
+ .text start:0x00242510 end:0x002425AC
+ .text start:0x002425AC end:0x00242720
+ .text start:0x00242720 end:0x00242838
+ .rodata start:0x00009718 end:0x00009730
+ .data start:0x000783A0 end:0x00078440
+
+actor/ac_lotus.c:
+ .text start:0x00242838 end:0x0024293C
+ .text start:0x0024293C end:0x00242C1C
+ .text start:0x00242C1C end:0x00242D68
+ .rodata start:0x00009730 end:0x00009750
+ .data start:0x00078440 end:0x00078658
+ .bss start:0x000CD788 end:0x000CD7A8
+
+actor/ac_mikanbox.c:
+ .text start:0x00242D68 end:0x00242E54
+ .text start:0x00242E54 end:0x00243BB0
+ .text start:0x00243BB0 end:0x00243C10
+ .text start:0x00243C10 end:0x00243EA4
+ .rodata start:0x00009750 end:0x000097A0
+ .data start:0x00078658 end:0x00078710
+ .bss start:0x000CD7A8 end:0x000CD8F0
+
+actor/ac_mikuji.c:
+ .text start:0x00243EA4 end:0x00243EC8
+ .text start:0x00243EC8 end:0x0024414C
+ .text start:0x0024414C end:0x0024421C
+ .data start:0x00078710 end:0x000787A0
+
+actor/ac_museum.c:
+ .text start:0x0024421C end:0x00244A4C
+ .rodata start:0x000097A0 end:0x000097F0
+ .data start:0x000787A0 end:0x000788C0
+
+actor/ac_my_house.c:
+ .text start:0x00244A4C end:0x00244CE8
+ .text start:0x00244CE8 end:0x00245A94
+ .text start:0x00245A94 end:0x00246154
+ .rodata start:0x000097F0 end:0x00009840
+ .data start:0x000788C0 end:0x00078C10
+ .bss start:0x000CD8F0 end:0x000CD900
+
+actor/ac_nameplate.c:
+ .text start:0x00246154 end:0x0024631C
+ .data start:0x00078C10 end:0x00078C38
+
+actor/ac_needlework_shop.c:
+ .text start:0x0024631C end:0x002464B0
+ .text start:0x002464B0 end:0x00246DB8
+ .text start:0x00246DB8 end:0x00247090
+ .rodata start:0x00009840 end:0x00009888
+ .data start:0x00078C38 end:0x00078DD0
+
+actor/ac_police_box.c:
+ .text start:0x00247090 end:0x002470F8
+ .text start:0x002470F8 end:0x002475EC
+ .text start:0x002475EC end:0x00247864
+ .rodata start:0x00009888 end:0x000098B8
+ .data start:0x00078DD0 end:0x00078EC0
+
+actor/ac_post_office.c:
+ .text start:0x00247864 end:0x002479D4
+ .text start:0x002479D4 end:0x00248208
+ .text start:0x00248208 end:0x002485D4
+ .rodata start:0x000098B8 end:0x000098F8
+ .data start:0x00078EC0 end:0x00079058
+
+actor/ac_radio.c:
+ .text start:0x002485D4 end:0x00248618
+ .text start:0x00248618 end:0x002488F0
+ .text start:0x002488F0 end:0x002489D4
+ .rodata start:0x000098F8 end:0x00009908
+ .data start:0x00079058 end:0x000790A0
+
+actor/ac_reserve.c:
+ .text start:0x002489D4 end:0x00248A30
+ .text start:0x00248A30 end:0x00248C94
+ .text start:0x00248C94 end:0x00248DF0
+ .data start:0x000790A0 end:0x00079108
+
+actor/ac_s_car.c:
+ .text start:0x00248DF0 end:0x00248E78
+ .text start:0x00248E78 end:0x002491A8
+ .text start:0x002491A8 end:0x0024939C
+ .rodata start:0x00009908 end:0x00009928
+ .data start:0x00079108 end:0x000791D0
+
+actor/ac_shop.c:
+ .text start:0x0024939C end:0x0024958C
+ .text start:0x0024958C end:0x00249EDC
+ .text start:0x00249EDC end:0x0024A230
+ .rodata start:0x00009928 end:0x00009970
+ .data start:0x000791D0 end:0x00079338
+
+actor/ac_shrine.c:
+ .text start:0x0024A230 end:0x0024A3C4
+ .text start:0x0024A3C4 end:0x0024A44C
+ .text start:0x0024A44C end:0x0024B054
+ .text start:0x0024B054 end:0x0024B628
+ .rodata start:0x00009970 end:0x000099B8
+ .data start:0x00079338 end:0x00079430
+ .bss start:0x000CD900 end:0x000CD928
+
+actor/ac_station.c:
+ .text start:0x0024B628 end:0x0024B760
+ .text start:0x0024B760 end:0x0024B8AC
+ .text start:0x0024B8AC end:0x0024BAB4
+ .text start:0x0024BAB4 end:0x0024C758
+ .rodata start:0x000099B8 end:0x000099D0
+ .data start:0x00079430 end:0x00079700
+ .bss start:0x000CD928 end:0x000CD930
+
+actor/ac_structure.c:
+ .text start:0x0024C758 end:0x0024C8A0
+ .text start:0x0024C8A0 end:0x0024CDC4
+ .rodata start:0x000099D0 end:0x000099D8
+ .data start:0x00079700 end:0x000799D0
+ .bss start:0x000CD930 end:0x000E36F0
+
+actor/ac_super.c:
+ .text start:0x0024CDC4 end:0x0024CF78
+ .text start:0x0024CF78 end:0x0024D8B0
+ .text start:0x0024D8B0 end:0x0024DB4C
+ .rodata start:0x000099D8 end:0x00009A18
+ .data start:0x000799D0 end:0x00079C10
+
+actor/ac_tama.c:
+ .text start:0x0024DB4C end:0x0024DB74
+ .text start:0x0024DB74 end:0x0024DCDC
+ .text start:0x0024DCDC end:0x0024DDC4
+ .rodata start:0x00009A18 end:0x00009A20
+ .data start:0x00079C10 end:0x00079C40
+
+actor/ac_tent.c:
+ .text start:0x0024DDC4 end:0x0024E758
+ .rodata start:0x00009A20 end:0x00009A50
+ .data start:0x00079C40 end:0x00079D00
+
+actor/ac_toudai.c:
+ .text start:0x0024E758 end:0x0024EACC
+ .text start:0x0024EACC end:0x0024F684
+ .text start:0x0024F684 end:0x0024F980
+ .rodata start:0x00009A50 end:0x00009AC8
+ .data start:0x00079D00 end:0x00079DD0
+
+actor/ac_train0.c:
+ .text start:0x0024F980 end:0x0024FAB8
+ .text start:0x0024FAB8 end:0x00250238
+ .text start:0x00250238 end:0x0025036C
+ .rodata start:0x00009AC8 end:0x00009B20
+ .data start:0x00079DD0 end:0x00079E00
+
+actor/ac_train1.c:
+ .text start:0x0025036C end:0x00250434
+ .text start:0x00250434 end:0x0025095C
+ .text start:0x0025095C end:0x00250A20
+ .rodata start:0x00009B20 end:0x00009B50
+ .data start:0x00079E00 end:0x00079E88
+
+actor/ac_tukimi.c:
+ .text start:0x00250A20 end:0x00250AD8
+ .text start:0x00250AD8 end:0x00250D0C
+ .text start:0x00250D0C end:0x00250F00
+ .rodata start:0x00009B50 end:0x00009B60
+ .data start:0x00079E88 end:0x00079F00
+
+actor/ac_turi.c:
+ .text start:0x00250F00 end:0x00250F88
+ .text start:0x00250F88 end:0x002513F0
+ .text start:0x002513F0 end:0x0025170C
+ .text start:0x0025170C end:0x00251810
+ .data start:0x00079F00 end:0x0007A0D0
+ .bss start:0x000E36F0 end:0x000E3700
+
+actor/ac_windmill.c:
+ .text start:0x00251810 end:0x00251848
+ .text start:0x00251848 end:0x00251A88
+ .text start:0x00251A88 end:0x00251A8C
+ .data start:0x0007A0D0 end:0x0007A1B8
+
+actor/ac_yatai.c:
+ .text start:0x00251A8C end:0x00251AC0
+ .text start:0x00251AC0 end:0x00251DBC
+ .text start:0x00251DBC end:0x00251ED4
+ .rodata start:0x00009B60 end:0x00009B68
+ .data start:0x0007A1B8 end:0x0007A2E0
+
+game/m_address_ovl.c:
+ .text start:0x00251ED4 end:0x0025363C
+ .rodata start:0x00009B68 end:0x00009BF8
+ .data start:0x0007A2E0 end:0x0007A690
+ .bss start:0x000E3700 end:0x000E38E8
+
+game/m_bank_ovl.c:
+ .text start:0x0025363C end:0x0025446C
+ .rodata start:0x00009BF8 end:0x00009C30
+ .data start:0x0007A690 end:0x0007A6E0
+ .bss start:0x000E38E8 end:0x000E3900
+
+game/m_birthday_ovl.c:
+ .text start:0x0025446C end:0x00254BEC
+ .rodata start:0x00009C30 end:0x00009C58
+ .data start:0x0007A6E0 end:0x0007A760
+ .bss start:0x000E3900 end:0x000E3908
+
+game/m_board_ovl.c:
+ .text start:0x00254BEC end:0x00254BEC
+ .text start:0x00254BEC end:0x00256534
+ .rodata start:0x00009C58 end:0x00009CC8
+ .data start:0x0007A760 end:0x0007B380
+ .bss start:0x000E3908 end:0x000E3A50
+
+game/m_calendar_ovl.c:
+ .text start:0x00256534 end:0x00258094
+ .text start:0x00258094 end:0x00258FAC
+ .rodata start:0x00009CC8 end:0x00009D30
+ .data start:0x0007B380 end:0x0007B5B0
+
+game/m_catalog_ovl.c:
+ .text start:0x00258FAC end:0x0025BF4C
+ .rodata start:0x00009D30 end:0x00009E30
+ .data start:0x0007B5B0 end:0x0007E338
+
+game/m_cpedit_ovl.c:
+ .text start:0x0025BF4C end:0x0025C140
+ .data start:0x0007E338 end:0x0007E350
+ .bss start:0x000E3A50 end:0x000E3A58
+
+game/m_cpmail_ovl.c:
+ .text start:0x0025C140 end:0x0025D030
+ .rodata start:0x00009E30 end:0x00009E88
+ .data start:0x0007E350 end:0x0007E408
+ .bss start:0x000E3A58 end:0x000E4620
+
+game/m_cporiginal_ovl.c:
+ .text start:0x0025D030 end:0x0025E9C0
+ .rodata start:0x00009E88 end:0x00009ED0
+ .data start:0x0007E408 end:0x0007E518
+ .bss start:0x000E4620 end:0x000E46B8
+
+game/m_cpwarning_ovl.c:
+ .text start:0x0025E9C0 end:0x0025F1B0
+ .rodata start:0x00009ED0 end:0x00009F38
+ .data start:0x0007E518 end:0x0007E570
+ .bss start:0x000E46B8 end:0x000E46C8
+
+game/m_diary_ovl.c:
+ .text start:0x0025F1B0 end:0x0025F1B0
+ .text start:0x0025F1B0 end:0x00261074
+ .rodata start:0x00009F38 end:0x00009FA8
+ .data start:0x0007E570 end:0x0007E610
+ .bss start:0x000E46C8 end:0x000E4720
+
+game/m_design_ovl.c:
+ .text start:0x00261074 end:0x002677BC
+ .rodata start:0x00009FA8 end:0x0000A060
+ .data start:0x0007E610 end:0x0007F3B8
+ .bss start:0x000E4720 end:0x000E4E00
+
+game/m_editEndChk_ovl.c:
+ .text start:0x002677BC end:0x002681F0
+ .rodata start:0x0000A060 end:0x0000A0A0
+ .data start:0x0007F3B8 end:0x0007F4D8
+ .bss start:0x000E4E00 end:0x000E4E08
+
+game/m_editor_ovl.c:
+ .text start:0x002681F0 end:0x002681F0
+ .text start:0x002681F0 end:0x0026C124
+ .rodata start:0x0000A0A0 end:0x0000A108
+ .data start:0x0007F4D8 end:0x0007FB68
+ .bss start:0x000E4E08 end:0x000E4E40
+
+game/m_gba_ovl.c:
+ .text start:0x0026C124 end:0x0026CE5C
+ .rodata start:0x0000A108 end:0x0000A128
+ .data start:0x0007FB68 end:0x0007FBA0
+ .bss start:0x000E4E40 end:0x000E4E48
+
+game/m_hand_ovl.c:
+ .text start:0x0026CE5C end:0x0026F758
+ .rodata start:0x0000A128 end:0x0000A1B8
+ .data start:0x0007FBA0 end:0x0007FD60
+ .bss start:0x000E4E48 end:0x000E51C0
+
+game/m_haniwaPortrait_ovl.c:
+ .text start:0x0026F758 end:0x0026FBA0
+ .rodata start:0x0000A1B8 end:0x0000A1E8
+ .bss start:0x000E51C0 end:0x000E52E0
+
+game/m_haniwa_ovl.c:
+ .text start:0x0026FBA0 end:0x0026FBA0
+ .text start:0x0026FBA0 end:0x00270820
+ .rodata start:0x0000A1E8 end:0x0000A220
+ .data start:0x0007FD60 end:0x0007FEB0
+ .bss start:0x000E52E0 end:0x000E5320
+
+game/m_hboard_ovl.c:
+ .text start:0x00270820 end:0x00270820
+ .text start:0x00270820 end:0x002710F0
+ .rodata start:0x0000A220 end:0x0000A258
+ .data start:0x0007FEB0 end:0x0007FEC8
+
+game/m_inventory_ovl.c:
+ .text start:0x002710F0 end:0x002710F0
+ .text start:0x002710F0 end:0x00274B54
+ .rodata start:0x0000A258 end:0x0000A368
+ .data start:0x0007FEC8 end:0x000802B8
+ .bss start:0x000E5320 end:0x000E5910
+
+game/m_ledit_ovl.c:
+ .text start:0x00274B54 end:0x00275368
+ .rodata start:0x0000A368 end:0x0000A3A0
+ .data start:0x000802B8 end:0x000804A8
+ .bss start:0x000E5910 end:0x000E5C90
+
+game/m_mailbox_ovl.c:
+ .text start:0x00275368 end:0x00275C54
+ .rodata start:0x0000A3A0 end:0x0000A3C8
+ .data start:0x000804A8 end:0x000804C0
+ .bss start:0x000E5C90 end:0x000E5CA8
+
+game/m_map_ovl.c:
+ .text start:0x00275C54 end:0x00275C54
+ .text start:0x00275C54 end:0x002777AC
+ .rodata start:0x0000A3C8 end:0x0000A450
+ .data start:0x000804C0 end:0x00080B08
+ .bss start:0x000E5CA8 end:0x000E5CC8
+
+game/m_mscore_ovl.c:
+ .text start:0x002777AC end:0x00278A50
+ .rodata start:0x0000A450 end:0x0000A4D8
+ .data start:0x00080B08 end:0x00080E38
+ .bss start:0x000E5CC8 end:0x000E5CF0
+
+game/m_music_ovl.c:
+ .text start:0x00278A50 end:0x002794C0
+ .rodata start:0x0000A4D8 end:0x0000A518
+ .data start:0x00080E38 end:0x00080E50
+ .bss start:0x000E5CF0 end:0x000E5D10
+
+game/m_needlework_ovl.c:
+ .text start:0x002794C0 end:0x0027A818
+ .rodata start:0x0000A518 end:0x0000A548
+ .data start:0x00080E50 end:0x00080EC8
+
+game/m_notice_ovl.c:
+ .text start:0x0027A818 end:0x0027A818
+ .text start:0x0027A818 end:0x0027C2A8
+ .rodata start:0x0000A548 end:0x0000A5D0
+ .data start:0x00080EC8 end:0x00080FE0
+ .bss start:0x000E5D10 end:0x000E5DE8
+
+game/m_repay_ovl.c:
+ .text start:0x0027C2A8 end:0x0027CE54
+ .rodata start:0x0000A5D0 end:0x0000A610
+ .data start:0x00080FE0 end:0x00081050
+ .bss start:0x000E5DE8 end:0x000E5E00
+
+game/m_submenu_ovl.c:
+ .text start:0x0027CE54 end:0x0027F424
+ .rodata start:0x0000A610 end:0x0000A6A0
+ .data start:0x00081050 end:0x00082428
+ .bss start:0x000E5E00 end:0x000E6808
+
+game/m_tag_ovl.c:
+ .text start:0x0027F424 end:0x0028F11C
+ .rodata start:0x0000A6A0 end:0x0000A7A0
+ .data start:0x00082428 end:0x00083E20
+ .bss start:0x000E6808 end:0x000E6BD0
+
+game/m_timeIn_ovl.c:
+ .text start:0x0028F11C end:0x0028F11C
+ .text start:0x0028F11C end:0x002900C8
+ .rodata start:0x0000A7A0 end:0x0000A7F8
+ .data start:0x00083E20 end:0x00083EE8
+ .bss start:0x000E6BD0 end:0x000E6BF0
+
+game/m_warning_ovl.c:
+ .text start:0x002900C8 end:0x00290858
+ .rodata start:0x0000A7F8 end:0x0000A818
+ .data start:0x00083EE8 end:0x000847D0
+ .bss start:0x000E6BF0 end:0x000E6BF8
+
+game/m_passwordMake_ovl.c:
+ .text start:0x00290858 end:0x00290FE8
+ .rodata start:0x0000A818 end:0x0000A850
+ .data start:0x000847D0 end:0x00084818
+ .bss start:0x000E6BF8 end:0x000E6C10
+
+game/m_passwordChk_ovl.c:
+ .text start:0x00290FE8 end:0x00291694
+ .rodata start:0x0000A850 end:0x0000A888
+ .data start:0x00084818 end:0x00084850
+ .bss start:0x000E6C10 end:0x000E6C38
+
+actor/ac_weather.c:
+ .text start:0x00291694 end:0x00292BC8
+ .rodata start:0x0000A888 end:0x0000A8A8
+ .data start:0x00084850 end:0x000848A0
+
+actor/ac_weather_fine.c:
+ .text start:0x00292BC8 end:0x00292BC8
+ .data start:0x000848A0 end:0x000848B8
+
+actor/ac_weather_rain.c:
+ .text start:0x00292BC8 end:0x002931EC
+ .rodata start:0x0000A8A8 end:0x0000A8D0
+ .data start:0x000848B8 end:0x000848F8
+
+actor/ac_weather_snow.c:
+ .text start:0x002931EC end:0x0029389C
+ .rodata start:0x0000A8D0 end:0x0000A928
+ .data start:0x000848F8 end:0x00084910
+
+actor/ac_weather_sakura.c:
+ .text start:0x0029389C end:0x00293F64
+ .rodata start:0x0000A928 end:0x0000A988
+ .data start:0x00084910 end:0x00084928
+
+actor/ac_weather_leaf.c:
+ .text start:0x00293F64 end:0x00294610
+ .rodata start:0x0000A988 end:0x0000A9E0
+ .data start:0x00084928 end:0x00084948
+
+effect/ef_ami_mizu.c:
+ .text start:0x00294610 end:0x002949F4
+ .rodata start:0x0000A9E0 end:0x0000AA18
+ .data start:0x00084948 end:0x00084960
+
+effect/ef_anahikari.c:
+ .text start:0x002949F4 end:0x00294CD0
+ .rodata start:0x0000AA18 end:0x0000AA30
+ .data start:0x00084960 end:0x00084988
+
+effect/ef_ase.c:
+ .text start:0x00294CD0 end:0x00294E3C
+ .rodata start:0x0000AA30 end:0x0000AA38
+ .data start:0x00084988 end:0x000849A0
+
+effect/ef_ase2.c:
+ .text start:0x00294E3C end:0x00295000
+ .rodata start:0x0000AA38 end:0x0000AA48
+ .data start:0x000849A0 end:0x000849C8
+
+effect/ef_ase_ch.c:
+ .text start:0x00295000 end:0x00295248
+ .rodata start:0x0000AA48 end:0x0000AA60
+ .data start:0x000849C8 end:0x00084A08
+
+effect/ef_break_axe.c:
+ .text start:0x00295248 end:0x00296484
+ .rodata start:0x0000AA60 end:0x0000AB00
+ .data start:0x00084A08 end:0x00084A20
+
+effect/ef_bubu.c:
+ .text start:0x00296484 end:0x002965D0
+ .rodata start:0x0000AB00 end:0x0000AB08
+ .data start:0x00084A20 end:0x00084A38
+
+effect/ef_buruburu.c:
+ .text start:0x002965D0 end:0x002967C0
+ .rodata start:0x0000AB08 end:0x0000AB18
+ .data start:0x00084A38 end:0x00084A68
+
+effect/ef_bush_happa.c:
+ .text start:0x002967C0 end:0x00297034
+ .rodata start:0x0000AB18 end:0x0000AB78
+ .data start:0x00084A68 end:0x00084A80
+
+effect/ef_bush_yuki.c:
+ .text start:0x00297034 end:0x00297314
+ .rodata start:0x0000AB78 end:0x0000ABA0
+ .data start:0x00084A80 end:0x00084A98
+
+effect/ef_car_blight.c:
+ .text start:0x00297314 end:0x00297724
+ .rodata start:0x0000ABA0 end:0x0000ABB8
+ .data start:0x00084A98 end:0x00084B70
+
+effect/ef_car_light.c:
+ .text start:0x00297724 end:0x002978F4
+ .rodata start:0x0000ABB8 end:0x0000ABC0
+ .data start:0x00084B70 end:0x00084B88
+
+effect/ef_clacker.c:
+ .text start:0x002978F4 end:0x00297DB8
+ .rodata start:0x0000ABC0 end:0x0000ABE8
+ .data start:0x00084B88 end:0x00084BC0
+
+effect/ef_coin.c:
+ .text start:0x00297DB8 end:0x00298544
+ .rodata start:0x0000ABE8 end:0x0000AC40
+ .data start:0x00084BC0 end:0x00084C28
+
+effect/ef_dash_asimoto.c:
+ .text start:0x00298544 end:0x00298D88
+ .rodata start:0x0000AC40 end:0x0000AC58
+ .data start:0x00084C28 end:0x00084CB0
+
+effect/ef_dig_hole.c:
+ .text start:0x00298D88 end:0x00299668
+ .rodata start:0x0000AC58 end:0x0000ACC0
+ .data start:0x00084CB0 end:0x00084D20
+
+effect/ef_dig_mud.c:
+ .text start:0x00299668 end:0x00299CC4
+ .rodata start:0x0000ACC0 end:0x0000AD10
+ .data start:0x00084D20 end:0x00084D68
+
+effect/ef_dig_scoop.c:
+ .text start:0x00299CC4 end:0x0029A560
+ .rodata start:0x0000AD10 end:0x0000AD30
+ .data start:0x00084D68 end:0x00084D80
+
+effect/ef_douzou_light.c:
+ .text start:0x0029A560 end:0x0029A82C
+ .rodata start:0x0000AD30 end:0x0000AD48
+ .data start:0x00084D80 end:0x00084D98
+
+effect/ef_doyon.c:
+ .text start:0x0029A82C end:0x0029ADC0
+ .rodata start:0x0000AD48 end:0x0000ADA0
+ .data start:0x00084D98 end:0x00084DB0
+
+effect/ef_dust.c:
+ .text start:0x0029ADC0 end:0x0029B50C
+ .rodata start:0x0000ADA0 end:0x0000AE18
+ .data start:0x00084DB0 end:0x00084E50
+
+effect/ef_flash.c:
+ .text start:0x0029B50C end:0x0029BA08
+ .rodata start:0x0000AE18 end:0x0000AE50
+ .data start:0x00084E50 end:0x00084F30
+
+effect/ef_footprint.c:
+ .text start:0x0029BA08 end:0x0029BF74
+ .rodata start:0x0000AE50 end:0x0000AE80
+ .data start:0x00084F30 end:0x00084F70
+
+effect/ef_furo_yuge.c:
+ .text start:0x0029BF74 end:0x0029C528
+ .rodata start:0x0000AE80 end:0x0000AEB0
+ .data start:0x00084F70 end:0x00084FE0
+
+effect/ef_gimonhu.c:
+ .text start:0x0029C528 end:0x0029C824
+ .rodata start:0x0000AEB0 end:0x0000AED8
+ .data start:0x00084FE0 end:0x000850C8
+
+effect/ef_goki.c:
+ .text start:0x0029C824 end:0x0029CDE4
+ .rodata start:0x0000AED8 end:0x0000AF38
+ .data start:0x000850C8 end:0x000850E0
+
+effect/ef_ha.c:
+ .text start:0x0029CDE4 end:0x0029D1A4
+ .rodata start:0x0000AF38 end:0x0000AF60
+ .data start:0x000850E0 end:0x00085100
+
+effect/ef_halloween.c:
+ .text start:0x0029D1A4 end:0x0029D3AC
+ .rodata start:0x0000AF60 end:0x0000AF70
+ .data start:0x00085100 end:0x00085118
+
+effect/ef_halloween_smoke.c:
+ .text start:0x0029D3AC end:0x0029D630
+ .rodata start:0x0000AF70 end:0x0000AF80
+ .data start:0x00085118 end:0x00085160
+
+effect/ef_hanabi_botan1.c:
+ .text start:0x0029D630 end:0x0029DCB0
+ .rodata start:0x0000AF80 end:0x0000AFE0
+ .data start:0x00085160 end:0x00085260
+
+effect/ef_hanabi_botan2.c:
+ .text start:0x0029DCB0 end:0x0029E430
+ .rodata start:0x0000AFE0 end:0x0000B040
+ .data start:0x00085260 end:0x00085358
+
+effect/ef_hanabi_dummy.c:
+ .text start:0x0029E430 end:0x0029E710
+ .rodata start:0x0000B040 end:0x0000B060
+ .data start:0x00085358 end:0x00085388
+
+effect/ef_hanabi_hoshi.c:
+ .text start:0x0029E710 end:0x0029ED90
+ .rodata start:0x0000B060 end:0x0000B0C0
+ .data start:0x00085388 end:0x00085488
+
+effect/ef_hanabi_set.c:
+ .text start:0x0029ED90 end:0x0029F220
+ .rodata start:0x0000B0C0 end:0x0000B0F8
+ .data start:0x00085488 end:0x000855D0
+
+effect/ef_hanabi_switch.c:
+ .text start:0x0029F220 end:0x0029F5A0
+ .rodata start:0x0000B0F8 end:0x0000B108
+ .data start:0x000855D0 end:0x000855E8
+
+effect/ef_hanabi_yanagi.c:
+ .text start:0x0029F5A0 end:0x0029FCC8
+ .rodata start:0x0000B108 end:0x0000B168
+ .data start:0x000855E8 end:0x000856E0
+
+effect/ef_hanabira.c:
+ .text start:0x0029FCC8 end:0x002A01D0
+ .rodata start:0x0000B168 end:0x0000B1A0
+ .data start:0x000856E0 end:0x00085708
+
+effect/ef_hanatiri.c:
+ .text start:0x002A01D0 end:0x002A0374
+ .data start:0x00085708 end:0x00085720
+
+effect/ef_hirameki_den.c:
+ .text start:0x002A0374 end:0x002A0674
+ .rodata start:0x0000B1A0 end:0x0000B1B0
+ .data start:0x00085720 end:0x00085740
+
+effect/ef_hirameki_hikari.c:
+ .text start:0x002A0674 end:0x002A0888
+ .rodata start:0x0000B1B0 end:0x0000B1C8
+ .data start:0x00085740 end:0x00085758
+
+effect/ef_ikigire.c:
+ .text start:0x002A0888 end:0x002A0A04
+ .rodata start:0x0000B1C8 end:0x0000B1D8
+ .data start:0x00085758 end:0x00085770
+
+effect/ef_impact_star.c:
+ .text start:0x002A0A04 end:0x002A0FC8
+ .rodata start:0x0000B1D8 end:0x0000B218
+ .data start:0x00085770 end:0x00085788
+
+effect/ef_kagu_happa.c:
+ .text start:0x002A0FC8 end:0x002A1504
+ .rodata start:0x0000B218 end:0x0000B268
+ .data start:0x00085788 end:0x000857A0
+
+effect/ef_kamifubuki.c:
+ .text start:0x002A1504 end:0x002A1C08
+ .rodata start:0x0000B268 end:0x0000B2C0
+ .data start:0x000857A0 end:0x000857E0
+
+effect/ef_kangaeru.c:
+ .text start:0x002A1C08 end:0x002A1C08
+ .text start:0x002A1C08 end:0x002A2254
+ .rodata start:0x0000B2C0 end:0x0000B310
+ .data start:0x000857E0 end:0x000857F8
+
+effect/ef_kantanhu.c:
+ .text start:0x002A2254 end:0x002A2514
+ .rodata start:0x0000B310 end:0x0000B338
+ .data start:0x000857F8 end:0x000858E0
+
+effect/ef_kasamizu.c:
+ .text start:0x002A2514 end:0x002A26B8
+ .data start:0x000858E0 end:0x00085908
+
+effect/ef_kasamizutama.c:
+ .text start:0x002A26B8 end:0x002A2994
+ .rodata start:0x0000B338 end:0x0000B350
+ .data start:0x00085908 end:0x00085948
+
+effect/ef_kaze.c:
+ .text start:0x002A2994 end:0x002A2E20
+ .rodata start:0x0000B350 end:0x0000B380
+ .data start:0x00085948 end:0x00085960
+
+effect/ef_kaze_happa.c:
+ .text start:0x002A2E20 end:0x002A3370
+ .rodata start:0x0000B380 end:0x0000B3C0
+ .data start:0x00085960 end:0x00085978
+
+effect/ef_kigae.c:
+ .text start:0x002A3370 end:0x002A3598
+ .rodata start:0x0000B3C0 end:0x0000B3D0
+ .data start:0x00085978 end:0x00085990
+
+effect/ef_kigae_light.c:
+ .text start:0x002A3598 end:0x002A396C
+ .rodata start:0x0000B3D0 end:0x0000B3E8
+ .data start:0x00085990 end:0x000859A8
+
+effect/ef_kikuzu.c:
+ .text start:0x002A396C end:0x002A3ED0
+ .rodata start:0x0000B3E8 end:0x0000B420
+ .data start:0x000859A8 end:0x000859C0
+
+effect/ef_killer.c:
+ .text start:0x002A3ED0 end:0x002A4574
+ .rodata start:0x0000B420 end:0x0000B460
+ .data start:0x000859C0 end:0x00085A90
+
+effect/ef_kisha_kemuri.c:
+ .text start:0x002A4574 end:0x002A4898
+ .rodata start:0x0000B460 end:0x0000B488
+ .data start:0x00085A90 end:0x00085AA8
+
+effect/ef_konpu.c:
+ .text start:0x002A4898 end:0x002A5080
+ .rodata start:0x0000B488 end:0x0000B510
+ .data start:0x00085AA8 end:0x00085B00
+
+effect/ef_kpun.c:
+ .text start:0x002A5080 end:0x002A55C0
+ .rodata start:0x0000B510 end:0x0000B550
+ .data start:0x00085B00 end:0x00085C00
+
+effect/ef_kyousou_onpu.c:
+ .text start:0x002A55C0 end:0x002A56C4
+ .data start:0x00085C00 end:0x00085C18
+
+effect/ef_lovelove.c:
+ .text start:0x002A56C4 end:0x002A5834
+ .rodata start:0x0000B550 end:0x0000B558
+ .data start:0x00085C18 end:0x00085C30
+
+effect/ef_lovelove2.c:
+ .text start:0x002A5834 end:0x002A5C24
+ .rodata start:0x0000B558 end:0x0000B588
+ .data start:0x00085C30 end:0x00085C48
+
+effect/ef_lovelove_heart.c:
+ .text start:0x002A5C24 end:0x002A6008
+ .rodata start:0x0000B588 end:0x0000B5B8
+ .data start:0x00085C48 end:0x00085C60
+
+effect/ef_make_hem.c:
+ .text start:0x002A6008 end:0x002A6E64
+ .rodata start:0x0000B5B8 end:0x0000B600
+ .data start:0x00085C60 end:0x00085CB8
+
+effect/ef_mizutama.c:
+ .text start:0x002A6E64 end:0x002A7470
+ .rodata start:0x0000B600 end:0x0000B628
+ .data start:0x00085CB8 end:0x00085D68
+
+effect/ef_motiyuge.c:
+ .text start:0x002A7470 end:0x002A7820
+ .rodata start:0x0000B628 end:0x0000B648
+ .data start:0x00085D68 end:0x00085D90
+
+effect/ef_muka.c:
+ .text start:0x002A7820 end:0x002A7AFC
+ .rodata start:0x0000B648 end:0x0000B670
+ .data start:0x00085D90 end:0x00085DA8
+
+effect/ef_naku.c:
+ .text start:0x002A7AFC end:0x002A7D20
+ .rodata start:0x0000B670 end:0x0000B688
+ .data start:0x00085DA8 end:0x00085DC0
+
+effect/ef_namida.c:
+ .text start:0x002A7D20 end:0x002A8114
+ .rodata start:0x0000B688 end:0x0000B6B8
+ .data start:0x00085DC0 end:0x00085DD8
+
+effect/ef_neboke.c:
+ .text start:0x002A8114 end:0x002A8330
+ .data start:0x00085DD8 end:0x00085DF0
+
+effect/ef_neboke_akubi.c:
+ .text start:0x002A8330 end:0x002A8774
+ .rodata start:0x0000B6B8 end:0x0000B6F8
+ .data start:0x00085DF0 end:0x00085E10
+
+effect/ef_neboke_awa.c:
+ .text start:0x002A8774 end:0x002A8774
+ .text start:0x002A8774 end:0x002A8C14
+ .rodata start:0x0000B6F8 end:0x0000B738
+ .data start:0x00085E10 end:0x00085E28
+
+effect/ef_night13_moon.c:
+ .text start:0x002A8C14 end:0x002A92AC
+ .rodata start:0x0000B738 end:0x0000B7A0
+ .data start:0x00085E28 end:0x00085E40
+
+effect/ef_night15_moon.c:
+ .text start:0x002A92AC end:0x002A9920
+ .rodata start:0x0000B7A0 end:0x0000B800
+ .data start:0x00085E40 end:0x00085E58
+
+effect/ef_ongen.c:
+ .text start:0x002A9920 end:0x002A9AF8
+ .data start:0x00085E58 end:0x00085E90
+
+effect/ef_otikomi.c:
+ .text start:0x002A9AF8 end:0x002A9AF8
+ .text start:0x002A9AF8 end:0x002AA238
+ .rodata start:0x0000B800 end:0x0000B858
+ .data start:0x00085E90 end:0x00085EB8
+
+effect/ef_otosiana.c:
+ .text start:0x002AA238 end:0x002AA3A8
+ .data start:0x00085EB8 end:0x00085ED8
+
+effect/ef_pun.c:
+ .text start:0x002AA3A8 end:0x002AA57C
+ .rodata start:0x0000B858 end:0x0000B860
+ .data start:0x00085ED8 end:0x00085EF0
+
+effect/ef_pun_sekimen.c:
+ .text start:0x002AA57C end:0x002AA778
+ .rodata start:0x0000B860 end:0x0000B878
+ .data start:0x00085EF0 end:0x00085F08
+
+effect/ef_pun_yuge.c:
+ .text start:0x002AA778 end:0x002AABF4
+ .rodata start:0x0000B878 end:0x0000B8A8
+ .data start:0x00085F08 end:0x00085F78
+
+effect/ef_reset_hole.c:
+ .text start:0x002AABF4 end:0x002AB1C4
+ .rodata start:0x0000B8A8 end:0x0000B8C8
+ .data start:0x00085F78 end:0x00085FA0
+
+effect/ef_sandsplash.c:
+ .text start:0x002AB1C4 end:0x002AB694
+ .rodata start:0x0000B8C8 end:0x0000B910
+ .data start:0x00085FA0 end:0x00085FD8
+
+effect/ef_shock.c:
+ .text start:0x002AB694 end:0x002AB91C
+ .rodata start:0x0000B910 end:0x0000B928
+ .data start:0x00085FD8 end:0x00086060
+
+effect/ef_shooting.c:
+ .text start:0x002AB91C end:0x002ABC78
+ .rodata start:0x0000B928 end:0x0000B948
+ .data start:0x00086060 end:0x00086078
+
+effect/ef_shooting_kira.c:
+ .text start:0x002ABC78 end:0x002AC2B8
+ .rodata start:0x0000B948 end:0x0000B978
+ .data start:0x00086078 end:0x000860A0
+
+effect/ef_shooting_set.c:
+ .text start:0x002AC2B8 end:0x002AC8E8
+ .rodata start:0x0000B978 end:0x0000B9C8
+ .data start:0x000860A0 end:0x000860B8
+
+effect/ef_siawase_hana.c:
+ .text start:0x002AC8E8 end:0x002ACB44
+ .rodata start:0x0000B9C8 end:0x0000B9D0
+ .data start:0x000860B8 end:0x000860D0
+
+effect/ef_siawase_hana_ch.c:
+ .text start:0x002ACB44 end:0x002ACFC4
+ .rodata start:0x0000B9D0 end:0x0000B9F0
+ .data start:0x000860D0 end:0x00086108
+
+effect/ef_siawase_hikari.c:
+ .text start:0x002ACFC4 end:0x002AD2EC
+ .rodata start:0x0000B9F0 end:0x0000BA00
+ .data start:0x00086108 end:0x00086120
+
+effect/ef_sibuki.c:
+ .text start:0x002AD2EC end:0x002AD620
+ .rodata start:0x0000BA00 end:0x0000BA20
+ .data start:0x00086120 end:0x00086150
+
+effect/ef_situren.c:
+ .text start:0x002AD620 end:0x002ADAAC
+ .rodata start:0x0000BA20 end:0x0000BA58
+ .data start:0x00086150 end:0x00086168
+
+effect/ef_slip.c:
+ .text start:0x002ADAAC end:0x002AE098
+ .rodata start:0x0000BA58 end:0x0000BA70
+ .data start:0x00086168 end:0x00086180
+
+effect/ef_slip_footprint.c:
+ .text start:0x002AE098 end:0x002AE544
+ .rodata start:0x0000BA70 end:0x0000BA90
+ .data start:0x00086180 end:0x000861C0
+
+effect/ef_soba_yuge.c:
+ .text start:0x002AE544 end:0x002AEC10
+ .rodata start:0x0000BA90 end:0x0000BAC0
+ .data start:0x000861C0 end:0x00086230
+
+effect/ef_steam.c:
+ .text start:0x002AEC10 end:0x002AF048
+ .rodata start:0x0000BAC0 end:0x0000BAF0
+ .data start:0x00086230 end:0x00086288
+
+effect/ef_string.c:
+ .text start:0x002AF048 end:0x002AF1D8
+ .rodata start:0x0000BAF0 end:0x0000BB08
+ .data start:0x00086288 end:0x000862D8
+
+effect/ef_suisou_awa.c:
+ .text start:0x002AF1D8 end:0x002AF95C
+ .rodata start:0x0000BB08 end:0x0000BB68
+ .data start:0x000862D8 end:0x00086330
+
+effect/ef_swing_axe.c:
+ .text start:0x002AF95C end:0x002AFD48
+ .data start:0x00086330 end:0x00086348
+
+effect/ef_swing_net.c:
+ .text start:0x002AFD48 end:0x002B03EC
+ .rodata start:0x0000BB68 end:0x0000BB88
+ .data start:0x00086348 end:0x00086360
+
+effect/ef_swing_rod.c:
+ .text start:0x002B03EC end:0x002B0584
+ .data start:0x00086360 end:0x00086378
+
+effect/ef_taberu.c:
+ .text start:0x002B0584 end:0x002B07D4
+ .rodata start:0x0000BB88 end:0x0000BBA0
+ .data start:0x00086378 end:0x000863A0
+
+effect/ef_takurami.c:
+ .text start:0x002B07D4 end:0x002B0C38
+ .rodata start:0x0000BBA0 end:0x0000BBE0
+ .data start:0x000863A0 end:0x000863C0
+
+effect/ef_takurami_kira.c:
+ .text start:0x002B0C38 end:0x002B0FA8
+ .rodata start:0x0000BBE0 end:0x0000BC08
+ .data start:0x000863C0 end:0x000863D8
+
+effect/ef_tamaire.c:
+ .text start:0x002B0FA8 end:0x002B1AB8
+ .rodata start:0x0000BC08 end:0x0000BC70
+ .data start:0x000863D8 end:0x000863F8
+
+effect/ef_tape.c:
+ .text start:0x002B1AB8 end:0x002B205C
+ .rodata start:0x0000BC70 end:0x0000BCB0
+ .data start:0x000863F8 end:0x00086410
+
+effect/ef_tent_lamp.c:
+ .text start:0x002B205C end:0x002B2364
+ .rodata start:0x0000BCB0 end:0x0000BCD8
+ .data start:0x00086410 end:0x00086428
+
+effect/ef_tumble.c:
+ .text start:0x002B2364 end:0x002B2C38
+ .rodata start:0x0000BCD8 end:0x0000BCF0
+ .data start:0x00086428 end:0x000864A0
+
+effect/ef_tumble_bodyprint.c:
+ .text start:0x002B2C38 end:0x002B318C
+ .rodata start:0x0000BCF0 end:0x0000BD10
+ .data start:0x000864A0 end:0x000864B8
+
+effect/ef_tumble_dust.c:
+ .text start:0x002B318C end:0x002B383C
+ .rodata start:0x0000BD10 end:0x0000BD70
+ .data start:0x000864B8 end:0x00086510
+
+effect/ef_turi_hamon.c:
+ .text start:0x002B383C end:0x002B3DA0
+ .rodata start:0x0000BD70 end:0x0000BDE0
+ .data start:0x00086510 end:0x00086528
+
+effect/ef_turi_hane0.c:
+ .text start:0x002B3DA0 end:0x002B3FB8
+ .rodata start:0x0000BDE0 end:0x0000BDF8
+ .data start:0x00086528 end:0x00086560
+
+effect/ef_turi_hane1.c:
+ .text start:0x002B3FB8 end:0x002B4174
+ .rodata start:0x0000BDF8 end:0x0000BE00
+ .data start:0x00086560 end:0x00086598
+
+effect/ef_turi_mizu.c:
+ .text start:0x002B4174 end:0x002B486C
+ .rodata start:0x0000BE00 end:0x0000BE18
+ .data start:0x00086598 end:0x000865B0
+
+effect/ef_turi_suiteki.c:
+ .text start:0x002B486C end:0x002B4CCC
+ .rodata start:0x0000BE18 end:0x0000BE48
+ .data start:0x000865B0 end:0x000865E0
+
+effect/ef_turn_asimoto.c:
+ .text start:0x002B4CCC end:0x002B54D4
+ .rodata start:0x0000BE48 end:0x0000BE50
+ .data start:0x000865E0 end:0x000865F8
+
+effect/ef_turn_footprint.c:
+ .text start:0x002B54D4 end:0x002B5938
+ .rodata start:0x0000BE50 end:0x0000BE70
+ .data start:0x000865F8 end:0x00086638
+
+effect/ef_uranai.c:
+ .text start:0x002B5938 end:0x002B5CA4
+ .rodata start:0x0000BE70 end:0x0000BE88
+ .data start:0x00086638 end:0x00086650
+
+effect/ef_wait_asimoto.c:
+ .text start:0x002B5CA4 end:0x002B5DBC
+ .data start:0x00086650 end:0x00086668
+
+effect/ef_walk_asimoto.c:
+ .text start:0x002B5DBC end:0x002B6260
+ .rodata start:0x0000BE88 end:0x0000BEA0
+ .data start:0x00086668 end:0x00086690
+
+effect/ef_warau.c:
+ .text start:0x002B6260 end:0x002B6468
+ .rodata start:0x0000BEA0 end:0x0000BEA8
+ .data start:0x00086690 end:0x000866D8
+
+effect/ef_yajirushi.c:
+ .text start:0x002B6468 end:0x002B66AC
+ .rodata start:0x0000BEA8 end:0x0000BEB0
+ .data start:0x000866D8 end:0x000866F0
+
+effect/ef_young_tree.c:
+ .text start:0x002B66AC end:0x002B7044
+ .rodata start:0x0000BEB0 end:0x0000BEF0
+ .data start:0x000866F0 end:0x00086708
+
+effect/ef_yukidama.c:
+ .text start:0x002B7044 end:0x002B766C
+ .rodata start:0x0000BEF0 end:0x0000BF20
+ .data start:0x00086708 end:0x000867A8
+
+effect/ef_yukidaruma.c:
+ .text start:0x002B766C end:0x002B7A10
+ .rodata start:0x0000BF20 end:0x0000BF30
+ .data start:0x000867A8 end:0x000867D0
+
+effect/ef_yukihane.c:
+ .text start:0x002B7A10 end:0x002B7CE0
+ .rodata start:0x0000BF30 end:0x0000BF50
+ .data start:0x000867D0 end:0x00086808
+
+system/sys_dynamic.c:
+ .text start:0x002B7CE0 end:0x002B7CE0
+ .bss start:0x000E6C38 end:0x00107060
+
+game/m_select.c:
+ .text start:0x002B7CE0 end:0x002B9A00
+ .rodata start:0x0000BF50 end:0x0000BF58
+ .data start:0x00086808 end:0x000871D0
+
+first_game.c:
+ .text start:0x002B9A00 end:0x002B9AA4
+
+system/sys_romcheck.c:
+ .text start:0x002B9AA4 end:0x002B9AE4
+
+game/m_play.c:
+ .text start:0x002B9AE4 end:0x002BB388
+ .rodata start:0x0000BF58 end:0x0000BF60
+ .data start:0x000871D0 end:0x00087458
+ .bss start:0x00107060 end:0x002332A0
+
+second_game.c:
+ .text start:0x002BB388 end:0x002BB5A0
+ .bss start:0x002332A0 end:0x002332A8
+
+game/m_trademark.c:
+ .text start:0x002BB5A0 end:0x002BBDA0
+ .rodata start:0x0000BF60 end:0x0000BF68
+ .data start:0x00087458 end:0x00087618
+
+player_select.c:
+ .text start:0x002BBDA0 end:0x002BC7B4
+ .rodata start:0x0000BF68 end:0x0000BF98
+ .data start:0x00087618 end:0x00087680
+
+save_menu.c:
+ .text start:0x002BC7B4 end:0x002BD0F4
+ .rodata start:0x0000BF98 end:0x0000C0B8
+ .data start:0x00087680 end:0x00087698
+
+famicom_emu.c:
+ .text start:0x002BD0F4 end:0x002BD654
+ .data start:0x00087698 end:0x000877B0
+ .bss start:0x002332A8 end:0x002332B8
+
+game/m_prenmi.c:
+ .text start:0x002BD654 end:0x002BD95C
+ .rodata start:0x0000C0B8 end:0x0000C0E0
+
+audio.c:
+ .text start:0x002BD95C end:0x002BE6C4
+ .rodata start:0x0000C0E0 end:0x0000C100
+ .data start:0x000877B0 end:0x00087840
+ .bss start:0x002332B8 end:0x002332BC
+
+f_furniture.c:
+ .text start:0x002BE6C4 end:0x002BE9E4
+ .text start:0x002BE9E4 end:0x002BEB8C
+ .text start:0x002BEB8C end:0x002BEC58
+ .text start:0x002BEC58 end:0x002BECC4
+ .text start:0x002BECC4 end:0x002BF38C
+ .text start:0x002BF38C end:0x002BF94C
+ .text start:0x002BF94C end:0x002BF990
+ .text start:0x002BF990 end:0x002BFB60
+ .text start:0x002BFB60 end:0x002C0018
+ .text start:0x002C0018 end:0x002C02FC
+ .text start:0x002C02FC end:0x002C0600
+ .text start:0x002C0600 end:0x002C078C
+ .text start:0x002C078C end:0x002C093C
+ .text start:0x002C093C end:0x002C0AA4
+ .text start:0x002C0AA4 end:0x002C0B18
+ .text start:0x002C0B18 end:0x002C0B80
+ .text start:0x002C0B80 end:0x002C0CC0
+ .text start:0x002C0CC0 end:0x002C0DD4
+ .text start:0x002C0DD4 end:0x002C0EEC
+ .text start:0x002C0EEC end:0x002C0EFC
+ .text start:0x002C0EFC end:0x002C1044
+ .text start:0x002C1044 end:0x002C1240
+ .text start:0x002C1240 end:0x002C13B4
+ .text start:0x002C13B4 end:0x002C1434
+ .text start:0x002C1434 end:0x002C16A4
+ .text start:0x002C16A4 end:0x002C17EC
+ .text start:0x002C17EC end:0x002C18C0
+ .text start:0x002C18C0 end:0x002C1A34
+ .text start:0x002C1A34 end:0x002C1B24
+ .text start:0x002C1B24 end:0x002C1C6C
+ .text start:0x002C1C6C end:0x002C1D44
+ .text start:0x002C1D44 end:0x002C1E98
+ .text start:0x002C1E98 end:0x002C20AC
+ .text start:0x002C20AC end:0x002C2200
+ .text start:0x002C2200 end:0x002C23C8
+ .text start:0x002C23C8 end:0x002C24E8
+ .text start:0x002C24E8 end:0x002C25E4
+ .text start:0x002C25E4 end:0x002C26E0
+ .text start:0x002C26E0 end:0x002C28FC
+ .text start:0x002C28FC end:0x002C2A28
+ .text start:0x002C2A28 end:0x002C2EA4
+ .text start:0x002C2EA4 end:0x002C2EF0
+ .text start:0x002C2EF0 end:0x002C2F3C
+ .text start:0x002C2F3C end:0x002C30C0
+ .text start:0x002C30C0 end:0x002C310C
+ .text start:0x002C310C end:0x002C3290
+ .text start:0x002C3290 end:0x002C3414
+ .text start:0x002C3414 end:0x002C3694
+ .text start:0x002C3694 end:0x002C3760
+ .text start:0x002C3760 end:0x002C3D44
+ .text start:0x002C3D44 end:0x002C3FEC
+ .text start:0x002C3FEC end:0x002C4294
+ .text start:0x002C4294 end:0x002C442C
+ .text start:0x002C442C end:0x002C4604
+ .text start:0x002C4604 end:0x002C4788
+ .text start:0x002C4788 end:0x002C47D8
+ .text start:0x002C47D8 end:0x002C492C
+ .text start:0x002C492C end:0x002C4A80
+ .text start:0x002C4A80 end:0x002C4BD4
+ .text start:0x002C4BD4 end:0x002C4D1C
+ .text start:0x002C4D1C end:0x002C4EA0
+ .text start:0x002C4EA0 end:0x002C5024
+ .text start:0x002C5024 end:0x002C51A8
+ .text start:0x002C51A8 end:0x002C52EC
+ .text start:0x002C52EC end:0x002C5440
+ .text start:0x002C5440 end:0x002C5594
+ .text start:0x002C5594 end:0x002C55E4
+ .text start:0x002C55E4 end:0x002C5634
+ .text start:0x002C5634 end:0x002C5798
+ .text start:0x002C5798 end:0x002C57E8
+ .text start:0x002C57E8 end:0x002C593C
+ .text start:0x002C593C end:0x002C5A90
+ .text start:0x002C5A90 end:0x002C5B2C
+ .text start:0x002C5B2C end:0x002C5C80
+ .text start:0x002C5C80 end:0x002C5DD4
+ .text start:0x002C5DD4 end:0x002C62DC
+ .text start:0x002C62DC end:0x002C6430
+ .text start:0x002C6430 end:0x002C6488
+ .text start:0x002C6488 end:0x002C64D8
+ .text start:0x002C64D8 end:0x002C6528
+ .text start:0x002C6528 end:0x002C6578
+ .text start:0x002C6578 end:0x002C66CC
+ .text start:0x002C66CC end:0x002C6820
+ .text start:0x002C6820 end:0x002C6870
+ .text start:0x002C6870 end:0x002C68C8
+ .text start:0x002C68C8 end:0x002C6918
+ .text start:0x002C6918 end:0x002C6A6C
+ .text start:0x002C6A6C end:0x002C6BC0
+ .text start:0x002C6BC0 end:0x002C6C40
+ .text start:0x002C6C40 end:0x002C6D94
+ .text start:0x002C6D94 end:0x002C6EE8
+ .text start:0x002C6EE8 end:0x002C7030
+ .text start:0x002C7030 end:0x002C71F8
+ .text start:0x002C71F8 end:0x002C7454
+ .text start:0x002C7454 end:0x002C75A8
+ .text start:0x002C75A8 end:0x002C76FC
+ .text start:0x002C76FC end:0x002C777C
+ .text start:0x002C777C end:0x002C77CC
+ .text start:0x002C77CC end:0x002C781C
+ .text start:0x002C781C end:0x002C786C
+ .text start:0x002C786C end:0x002C7A50
+ .text start:0x002C7A50 end:0x002C7BA4
+ .text start:0x002C7BA4 end:0x002C7CF8
+ .text start:0x002C7CF8 end:0x002C8090
+ .text start:0x002C8090 end:0x002C8110
+ .text start:0x002C8110 end:0x002C8190
+ .text start:0x002C8190 end:0x002C81E0
+ .text start:0x002C81E0 end:0x002C8324
+ .text start:0x002C8324 end:0x002C8374
+ .text start:0x002C8374 end:0x002C84B8
+ .text start:0x002C84B8 end:0x002C8838
+ .text start:0x002C8838 end:0x002C897C
+ .text start:0x002C897C end:0x002C8AD0
+ .text start:0x002C8AD0 end:0x002C8C24
+ .text start:0x002C8C24 end:0x002C8CA4
+ .text start:0x002C8CA4 end:0x002C8CF4
+ .text start:0x002C8CF4 end:0x002C8E48
+ .text start:0x002C8E48 end:0x002C8F9C
+ .text start:0x002C8F9C end:0x002C9560
+ .text start:0x002C9560 end:0x002C95B0
+ .text start:0x002C95B0 end:0x002C96F4
+ .text start:0x002C96F4 end:0x002C974C
+ .text start:0x002C974C end:0x002C98C4
+ .text start:0x002C98C4 end:0x002C9A08
+ .text start:0x002C9A08 end:0x002C9A74
+ .text start:0x002C9A74 end:0x002C9C2C
+ .text start:0x002C9C2C end:0x002C9E28
+ .text start:0x002C9E28 end:0x002C9F6C
+ .text start:0x002C9F6C end:0x002C9FBC
+ .text start:0x002C9FBC end:0x002CA014
+ .text start:0x002CA014 end:0x002CA06C
+ .text start:0x002CA06C end:0x002CA1C0
+ .text start:0x002CA1C0 end:0x002CA314
+ .text start:0x002CA314 end:0x002CA394
+ .text start:0x002CA394 end:0x002CA51C
+ .text start:0x002CA51C end:0x002CA6A0
+ .text start:0x002CA6A0 end:0x002CA878
+ .text start:0x002CA878 end:0x002CA8D0
+ .text start:0x002CA8D0 end:0x002CAB2C
+ .text start:0x002CAB2C end:0x002CAB84
+ .text start:0x002CAB84 end:0x002CABDC
+ .text start:0x002CABDC end:0x002CAC5C
+ .text start:0x002CAC5C end:0x002CADA0
+ .text start:0x002CADA0 end:0x002CAEE4
+ .text start:0x002CAEE4 end:0x002CAF34
+ .text start:0x002CAF34 end:0x002CAF84
+ .text start:0x002CAF84 end:0x002CAFD4
+ .text start:0x002CAFD4 end:0x002CB118
+ .text start:0x002CB118 end:0x002CB25C
+ .text start:0x002CB25C end:0x002CB424
+ .text start:0x002CB424 end:0x002CB5EC
+ .text start:0x002CB5EC end:0x002CB63C
+ .text start:0x002CB63C end:0x002CB790
+ .text start:0x002CB790 end:0x002CB8E4
+ .text start:0x002CB8E4 end:0x002CB964
+ .text start:0x002CB964 end:0x002CB9E4
+ .text start:0x002CB9E4 end:0x002CBB38
+ .text start:0x002CBB38 end:0x002CBC8C
+ .text start:0x002CBC8C end:0x002CC194
+ .text start:0x002CC194 end:0x002CC1DC
+ .text start:0x002CC1DC end:0x002CC650
+ .text start:0x002CC650 end:0x002CC970
+ .text start:0x002CC970 end:0x002CCA1C
+ .text start:0x002CCA1C end:0x002CCD08
+ .text start:0x002CCD08 end:0x002CD150
+ .text start:0x002CD150 end:0x002CD3DC
+ .text start:0x002CD3DC end:0x002CD560
+ .text start:0x002CD560 end:0x002CD85C
+ .text start:0x002CD85C end:0x002CD998
+ .text start:0x002CD998 end:0x002CDB34
+ .text start:0x002CDB34 end:0x002CDC5C
+ .text start:0x002CDC5C end:0x002CDD10
+ .text start:0x002CDD10 end:0x002CDDA4
+ .text start:0x002CDDA4 end:0x002CDECC
+ .text start:0x002CDECC end:0x002CDF24
+ .text start:0x002CDF24 end:0x002CDF80
+ .text start:0x002CDF80 end:0x002CE0A4
+ .text start:0x002CE0A4 end:0x002CE0FC
+ .text start:0x002CE0FC end:0x002CE23C
+ .text start:0x002CE23C end:0x002CE294
+ .text start:0x002CE294 end:0x002CE3E4
+ .text start:0x002CE3E4 end:0x002CE570
+ .text start:0x002CE570 end:0x002CE728
+ .text start:0x002CE728 end:0x002CE818
+ .text start:0x002CE818 end:0x002CEA40
+ .text start:0x002CEA40 end:0x002CEDCC
+ .text start:0x002CEDCC end:0x002CEEB4
+ .text start:0x002CEEB4 end:0x002CEF68
+ .text start:0x002CEF68 end:0x002CF09C
+ .text start:0x002CF09C end:0x002CF1F0
+ .text start:0x002CF1F0 end:0x002CF344
+ .text start:0x002CF344 end:0x002CF48C
+ .text start:0x002CF48C end:0x002CF604
+ .text start:0x002CF604 end:0x002CF6F4
+ .text start:0x002CF6F4 end:0x002CF74C
+ .text start:0x002CF74C end:0x002CF93C
+ .text start:0x002CF93C end:0x002CFADC
+ .text start:0x002CFADC end:0x002CFB90
+ .text start:0x002CFB90 end:0x002CFDC8
+ .text start:0x002CFDC8 end:0x002D0000
+ .text start:0x002D0000 end:0x002D03AC
+ .text start:0x002D03AC end:0x002D075C
+ .text start:0x002D075C end:0x002D0828
+ .text start:0x002D0828 end:0x002D0A54
+ .text start:0x002D0A54 end:0x002D0C74
+ .text start:0x002D0C74 end:0x002D0FAC
+ .rodata start:0x0000C100 end:0x0000C28C
+ .data start:0x00087840 end:0x00092DA0
+
+data/dataobject/dataobject_92DA0:
+ .data start:0x00092DA0 end:0x00092EA0
+
+data/npc/model/mdl/bev_1.c:
+ .data start:0x00092EA0 end:0x000952E0
+
+data/npc/model/tex/bev_1.c:
+ .data start:0x000952E0 end:0x00096000
+
+data/dataobject/dataobject_96000:
+ .data start:0x00096000 end:0x00096328
+ .data start:0x00096328 end:0x00096338
+
+data/npc/model/mdl/ant_1.c:
+ .data start:0x00096338 end:0x00098420
+
+data/npc/model/tex/ant_1.c:
+ .data start:0x00098420 end:0x00099140
+
+data/npc/model/tex/ant_2.c:
+ .data start:0x00099140 end:0x00099E60
+
+data/npc/model/tex/ant_3.c:
+ .data start:0x00099E60 end:0x0009AB80
+
+data/npc/model/tex/ant_4.c:
+ .data start:0x0009AB80 end:0x0009B8A0
+
+data/npc/model/tex/ant_5.c:
+ .data start:0x0009B8A0 end:0x0009C5C0
+
+data/npc/model/mdl/wls_1.c:
+ .data start:0x0009C5C0 end:0x0009EB00
+
+data/npc/model/tex/wls_1.c:
+ .data start:0x0009EB00 end:0x0009FAA0
+
+data/scene/BG_TEST01.c:
+ .data start:0x0009FAA0 end:0x0009FAF0
+
+data/scene/BG_TEST01_XLU.c:
+ .data start:0x0009FAF0 end:0x0009FB40
+
+data/scene/broker_shop.c:
+ .data start:0x0009FB40 end:0x0009FBC0
+
+data/scene/buggy.c:
+ .data start:0x0009FBC0 end:0x0009FC28
+
+data/dataobject/dataobject_9FC28:
+ .data start:0x0009FC28 end:0x0009FFD8
+ .data start:0x0009FFD8 end:0x000A0738
+ .data start:0x000A0738 end:0x000A1120
+ .data start:0x000A1120 end:0x000A1B78
+
+data/npc/model/mdl/bea_1.c:
+ .data start:0x000A1B78 end:0x000A3B40
+
+data/npc/model/tex/bea_1.c:
+ .data start:0x000A3B40 end:0x000A4D60
+
+data/npc/model/tex/bea_2.c:
+ .data start:0x000A4D60 end:0x000A5F80
+
+data/npc/model/tex/bea_3.c:
+ .data start:0x000A5F80 end:0x000A71A0
+
+data/npc/model/tex/bea_5.c:
+ .data start:0x000A71A0 end:0x000A83C0
+
+data/npc/model/tex/bea_6.c:
+ .data start:0x000A83C0 end:0x000A95E0
+
+data/npc/model/tex/bea_7.c:
+ .data start:0x000A95E0 end:0x000AA800
+
+data/npc/model/tex/bea_8.c:
+ .data start:0x000AA800 end:0x000ABA20
+
+data/npc/model/tex/bea_9.c:
+ .data start:0x000ABA20 end:0x000ACC40
+
+data/npc/model/tex/bea_10.c:
+ .data start:0x000ACC40 end:0x000ADE60
+
+data/dataobject/dataobject_ADE60:
+ .data start:0x000ADE60 end:0x000AE620
+ .data start:0x000AE620 end:0x000AE920
+ .data start:0x000AE920 end:0x000AEB40
+ .data start:0x000AEB40 end:0x000AECE0
+ .data start:0x000AECE0 end:0x000AF5C0
+ .data start:0x000AF5C0 end:0x000AFF40
+ .data start:0x000AFF40 end:0x000B0918
+ .data start:0x000B0918 end:0x000B0B48
+
+data/field/bg/acre/bg_data.c:
+ .data start:0x000B0B48 end:0x000FE340
+
+data/dataobject/dataobject_FE340:
+ .data start:0x000FE340 end:0x000FE6A0
+ .data start:0x000FE6A0 end:0x000FE860
+ .data start:0x000FE860 end:0x000FE980
+ .data start:0x000FE980 end:0x000FE9F0
+ .data start:0x000FE9F0 end:0x000FEA60
+ .data start:0x000FEA60 end:0x000FECD0
+ .data start:0x000FECD0 end:0x000FED40
+ .data start:0x000FED40 end:0x000FEDC0
+ .data start:0x000FEDC0 end:0x000FF040
+ .data start:0x000FF040 end:0x000FF240
+ .data start:0x000FF240 end:0x000FF3B8
+ .data start:0x000FF3B8 end:0x000FF480
+ .data start:0x000FF480 end:0x00100700
+ .data start:0x00100700 end:0x00101308
+ .data start:0x00101308 end:0x00101880
+ .data start:0x00101880 end:0x00101930
+ .data start:0x00101930 end:0x001019E0
+ .data start:0x001019E0 end:0x00101E90
+ .data start:0x00101E90 end:0x00101F40
+ .data start:0x00101F40 end:0x00102180
+ .data start:0x00102180 end:0x00102620
+ .data start:0x00102620 end:0x00102890
+ .data start:0x00102890 end:0x00102910
+ .data start:0x00102910 end:0x00102980
+
+data/field/bg/flower/obj_flower.c:
+ .data start:0x00102980 end:0x001033C0
+
+data/field/bg/flower/obj_flower_leaf.c:
+ .data start:0x001033C0 end:0x00103C40
+
+data/dataobject/dataobject_103C40:
+ .data start:0x00103C40 end:0x001040B8
+ .data start:0x001040B8 end:0x00104110
+ .data start:0x00104110 end:0x00104180
+ .data start:0x00104180 end:0x00104EC0
+ .data start:0x00104EC0 end:0x00104F00
+ .data start:0x00104F00 end:0x00105200
+ .data start:0x00105200 end:0x00105B00
+ .data start:0x00105B00 end:0x00105D80
+ .data start:0x00105D80 end:0x00106680
+ .data start:0x00106680 end:0x00106900
+ .data start:0x00106900 end:0x00106B70
+ .data start:0x00106B70 end:0x00106BE0
+ .data start:0x00106BE0 end:0x00106C60
+ .data start:0x00106C60 end:0x00106EE0
+ .data start:0x00106EE0 end:0x00107160
+ .data start:0x00107160 end:0x001073E0
+ .data start:0x001073E0 end:0x001075E0
+ .data start:0x001075E0 end:0x00107760
+ .data start:0x00107760 end:0x00108020
+ .data start:0x00108020 end:0x00109220
+ .data start:0x00109220 end:0x0010A520
+ .data start:0x0010A520 end:0x0010B960
+ .data start:0x0010B960 end:0x0010BA00
+ .data start:0x0010BA00 end:0x0010C2C0
+ .data start:0x0010C2C0 end:0x0010CB80
+ .data start:0x0010CB80 end:0x0010D040
+ .data start:0x0010D040 end:0x0010D500
+ .data start:0x0010D500 end:0x0010DE00
+ .data start:0x0010DE00 end:0x0010E080
+ .data start:0x0010E080 end:0x0010E3A0
+ .data start:0x0010E3A0 end:0x0010E500
+ .data start:0x0010E500 end:0x0010E5F0
+ .data start:0x0010E5F0 end:0x0010E6D0
+ .data start:0x0010E6D0 end:0x0010E7C0
+ .data start:0x0010E7C0 end:0x0010E8A0
+ .data start:0x0010E8A0 end:0x0010E9C8
+ .data start:0x0010E9C8 end:0x0010EA60
+ .data start:0x0010EA60 end:0x0010EB88
+ .data start:0x0010EB88 end:0x0010EC48
+ .data start:0x0010EC48 end:0x0010ED18
+ .data start:0x0010ED18 end:0x0010EE00
+ .data start:0x0010EE00 end:0x0010F080
+ .data start:0x0010F080 end:0x0010F550
+ .data start:0x0010F550 end:0x0010F5C0
+ .data start:0x0010F5C0 end:0x0010F690
+ .data start:0x0010F690 end:0x0010F700
+ .data start:0x0010F700 end:0x0010F820
+ .data start:0x0010F820 end:0x0010FA40
+ .data start:0x0010FA40 end:0x0010FBE0
+ .data start:0x0010FBE0 end:0x001104A0
+ .data start:0x001104A0 end:0x00110E00
+ .data start:0x00110E00 end:0x00111080
+ .data start:0x00111080 end:0x00111A18
+ .data start:0x00111A18 end:0x00111AA0
+ .data start:0x00111AA0 end:0x00111CD0
+ .data start:0x00111CD0 end:0x00111DB0
+ .data start:0x00111DB0 end:0x00111E20
+ .data start:0x00111E20 end:0x00111FE0
+ .data start:0x00111FE0 end:0x001121A0
+ .data start:0x001121A0 end:0x00112360
+ .data start:0x00112360 end:0x00112560
+ .data start:0x00112560 end:0x001126D8
+ .data start:0x001126D8 end:0x001127A0
+ .data start:0x001127A0 end:0x00113A20
+ .data start:0x00113A20 end:0x00114628
+ .data start:0x00114628 end:0x00114BA0
+ .data start:0x00114BA0 end:0x00114C50
+ .data start:0x00114C50 end:0x00114D00
+ .data start:0x00114D00 end:0x001151B0
+ .data start:0x001151B0 end:0x00115260
+ .data start:0x00115260 end:0x001156E0
+ .data start:0x001156E0 end:0x00115760
+ .data start:0x00115760 end:0x00115A60
+ .data start:0x00115A60 end:0x00116360
+ .data start:0x00116360 end:0x00116C60
+ .data start:0x00116C60 end:0x00116E60
+ .data start:0x00116E60 end:0x00116FE0
+ .data start:0x00116FE0 end:0x001178A0
+ .data start:0x001178A0 end:0x00118AA0
+ .data start:0x00118AA0 end:0x00119DC0
+ .data start:0x00119DC0 end:0x0011B200
+ .data start:0x0011B200 end:0x0011B2A0
+ .data start:0x0011B2A0 end:0x0011BB60
+ .data start:0x0011BB60 end:0x0011C420
+ .data start:0x0011C420 end:0x0011C8E0
+ .data start:0x0011C8E0 end:0x0011CDA0
+ .data start:0x0011CDA0 end:0x0011D6A0
+ .data start:0x0011D6A0 end:0x0011D9B0
+ .data start:0x0011D9B0 end:0x0011DAA0
+ .data start:0x0011DAA0 end:0x0011DB90
+ .data start:0x0011DB90 end:0x0011DCB8
+ .data start:0x0011DCB8 end:0x0011DDE0
+ .data start:0x0011DDE0 end:0x0011E000
+ .data start:0x0011E000 end:0x0011E1A0
+ .data start:0x0011E1A0 end:0x0011EA80
+ .data start:0x0011EA80 end:0x0011F400
+ .data start:0x0011F400 end:0x0011FDD8
+ .data start:0x0011FDD8 end:0x00120020
+ .data start:0x00120020 end:0x00120488
+ .data start:0x00120488 end:0x00120780
+ .data start:0x00120780 end:0x00120AA8
+
+data/npc/model/mdl/pbr_1.c:
+ .data start:0x00120AA8 end:0x00122C80
+
+data/npc/model/tex/pbr_1.c:
+ .data start:0x00122C80 end:0x001239A0
+
+data/npc/model/tex/pbr_2.c:
+ .data start:0x001239A0 end:0x001246C0
+
+data/npc/model/tex/pbr_3.c:
+ .data start:0x001246C0 end:0x001253E0
+
+data/npc/model/tex/pbr_4.c:
+ .data start:0x001253E0 end:0x00126100
+
+data/npc/model/tex/pbr_5.c:
+ .data start:0x00126100 end:0x00126E20
+
+data/npc/model/mdl/brd_1.c:
+ .data start:0x00126E20 end:0x00128E60
+
+data/npc/model/tex/brd_1.c:
+ .data start:0x00128E60 end:0x00129B80
+
+data/npc/model/tex/brd_2.c:
+ .data start:0x00129B80 end:0x0012A8A0
+
+data/npc/model/tex/brd_11.c:
+ .data start:0x0012A8A0 end:0x0012B5C0
+
+data/npc/model/tex/brd_3.c:
+ .data start:0x0012B5C0 end:0x0012C2E0
+
+data/npc/model/tex/brd_4.c:
+ .data start:0x0012C2E0 end:0x0012D000
+
+data/npc/model/tex/brd_5.c:
+ .data start:0x0012D000 end:0x0012DD20
+
+data/npc/model/tex/brd_6.c:
+ .data start:0x0012DD20 end:0x0012EA40
+
+data/npc/model/tex/brd_7.c:
+ .data start:0x0012EA40 end:0x0012F760
+
+data/npc/model/tex/brd_8.c:
+ .data start:0x0012F760 end:0x00130480
+
+data/npc/model/tex/brd_9.c:
+ .data start:0x00130480 end:0x001311A0
+
+data/npc/model/tex/brd_10.c:
+ .data start:0x001311A0 end:0x00131EC0
+
+data/dataobject/dataobject_131EC0:
+ .data start:0x00131EC0 end:0x001346F8
+ .data start:0x001346F8 end:0x00171E00
+ .data start:0x00171E00 end:0x00188A60
+
+data/player/BOY_part_data.c:
+ .data start:0x00188A60 end:0x00188AE8
+
+data/npc/model/mdl/fox_1.c:
+ .data start:0x00188AE8 end:0x0018ABA0
+
+data/npc/model/tex/fox_1.c:
+ .data start:0x0018ABA0 end:0x0018BAC0
+
+data/npc/model/mdl/bul_1.c:
+ .data start:0x0018BAC0 end:0x0018DAC0
+
+data/npc/model/tex/bul_1.c:
+ .data start:0x0018DAC0 end:0x0018ECE0
+
+data/npc/model/tex/bul_2.c:
+ .data start:0x0018ECE0 end:0x0018FF00
+
+data/npc/model/tex/bul_3.c:
+ .data start:0x0018FF00 end:0x00191120
+
+data/npc/model/tex/bul_4.c:
+ .data start:0x00191120 end:0x00192340
+
+data/npc/model/mdl/cml_1.c:
+ .data start:0x00192340 end:0x001949C0
+
+data/npc/model/tex/cml_1.c:
+ .data start:0x001949C0 end:0x00195960
+
+data/npc/model/mdl/cat_1.c:
+ .data start:0x00195960 end:0x001976C0
+
+data/npc/model/tex/cat_1.c:
+ .data start:0x001976C0 end:0x001988E0
+
+data/npc/model/tex/cat_2.c:
+ .data start:0x001988E0 end:0x00199B00
+
+data/npc/model/tex/cat_11.c:
+ .data start:0x00199B00 end:0x0019AD20
+
+data/npc/model/tex/cat_12.c:
+ .data start:0x0019AD20 end:0x0019BF40
+
+data/npc/model/tex/cat_13.c:
+ .data start:0x0019BF40 end:0x0019D160
+
+data/npc/model/tex/cat_14.c:
+ .data start:0x0019D160 end:0x0019E380
+
+data/npc/model/tex/cat_15.c:
+ .data start:0x0019E380 end:0x0019F5A0
+
+data/npc/model/tex/cat_3.c:
+ .data start:0x0019F5A0 end:0x001A07C0
+
+data/npc/model/tex/cat_4.c:
+ .data start:0x001A07C0 end:0x001A19E0
+
+data/npc/model/tex/cat_5.c:
+ .data start:0x001A19E0 end:0x001A2C00
+
+data/npc/model/tex/cat_6.c:
+ .data start:0x001A2C00 end:0x001A3E20
+
+data/npc/model/tex/cat_7.c:
+ .data start:0x001A3E20 end:0x001A5040
+
+data/npc/model/tex/cat_8.c:
+ .data start:0x001A5040 end:0x001A6260
+
+data/npc/model/tex/cat_9.c:
+ .data start:0x001A6260 end:0x001A7480
+
+data/npc/model/tex/cat_10.c:
+ .data start:0x001A7480 end:0x001A86A0
+
+data/npc/model/mdl/chn_1.c:
+ .data start:0x001A86A0 end:0x001AAE60
+
+data/npc/model/tex/chn_1.c:
+ .data start:0x001AAE60 end:0x001ABB40
+
+data/npc/model/tex/chn_2.c:
+ .data start:0x001ABB40 end:0x001AC820
+
+data/npc/model/tex/chn_3.c:
+ .data start:0x001AC820 end:0x001AD500
+
+data/npc/model/tex/chn_4.c:
+ .data start:0x001AD500 end:0x001AE1E0
+
+data/npc/model/tex/chn_5.c:
+ .data start:0x001AE1E0 end:0x001AEEC0
+
+data/npc/model/tex/chn_6.c:
+ .data start:0x001AEEC0 end:0x001AFBA0
+
+data/npc/model/tex/chn_7.c:
+ .data start:0x001AFBA0 end:0x001B0880
+
+data/npc/model/tex/chn_8.c:
+ .data start:0x001B0880 end:0x001B1560
+
+data/npc/model/tex/chn_9.c:
+ .data start:0x001B1560 end:0x001B2240
+
+data/npc/model/mdl/cbr_1.c:
+ .data start:0x001B2240 end:0x001B4120
+
+data/npc/model/tex/cbr_1.c:
+ .data start:0x001B4120 end:0x001B5340
+
+data/npc/model/tex/cbr_2.c:
+ .data start:0x001B5340 end:0x001B6560
+
+data/npc/model/tex/cbr_11.c:
+ .data start:0x001B6560 end:0x001B7780
+
+data/npc/model/tex/cbr_3.c:
+ .data start:0x001B7780 end:0x001B89A0
+
+data/npc/model/tex/cbr_4.c:
+ .data start:0x001B89A0 end:0x001B9BC0
+
+data/npc/model/tex/cbr_5.c:
+ .data start:0x001B9BC0 end:0x001BADE0
+
+data/npc/model/tex/cbr_6.c:
+ .data start:0x001BADE0 end:0x001BC000
+
+data/npc/model/tex/cbr_7.c:
+ .data start:0x001BC000 end:0x001BD220
+
+data/npc/model/tex/cbr_8.c:
+ .data start:0x001BD220 end:0x001BE440
+
+data/npc/model/tex/cbr_9.c:
+ .data start:0x001BE440 end:0x001BF660
+
+data/npc/model/tex/cbr_10.c:
+ .data start:0x001BF660 end:0x001C0880
+
+data/combi/data_combi.c:
+ .data start:0x001C0880 end:0x001C1128
+
+data/npc/model/mdl/rcc_1.c:
+ .data start:0x001C1128 end:0x001C3120
+
+data/npc/model/tex/rcc_1.c:
+ .data start:0x001C3120 end:0x001C4000
+
+data/npc/model/mdl/cow_1.c:
+ .data start:0x001C4000 end:0x001C5FE0
+
+data/npc/model/tex/cow_1.c:
+ .data start:0x001C5FE0 end:0x001C7200
+
+data/npc/model/tex/cow_2.c:
+ .data start:0x001C7200 end:0x001C8420
+
+data/npc/model/tex/cow_3.c:
+ .data start:0x001C8420 end:0x001C9640
+
+data/npc/model/tex/cow_4.c:
+ .data start:0x001C9640 end:0x001CA860
+
+data/npc/model/mdl/crd_1.c:
+ .data start:0x001CA860 end:0x001CCA00
+
+data/npc/model/tex/crd_1.c:
+ .data start:0x001CCA00 end:0x001CD720
+
+data/npc/model/tex/crd_2.c:
+ .data start:0x001CD720 end:0x001CE440
+
+data/npc/model/tex/crd_3.c:
+ .data start:0x001CE440 end:0x001CF160
+
+data/npc/model/tex/crd_4.c:
+ .data start:0x001CF160 end:0x001CFE80
+
+data/npc/model/mdl/owl_1.c:
+ .data start:0x001CFE80 end:0x001D24C0
+
+data/npc/model/tex/owl_1.c:
+ .data start:0x001D24C0 end:0x001D3320
+
+data/npc/model/mdl/rcd_1.c:
+ .data start:0x001D3320 end:0x001D5220
+
+data/npc/model/tex/rcd_1.c:
+ .data start:0x001D5220 end:0x001D6080
+
+data/npc/model/mdl/grf_1.c:
+ .data start:0x001D6080 end:0x001D8640
+
+data/npc/model/tex/grf_1.c:
+ .data start:0x001D8640 end:0x001D9560
+
+data/npc/model/mdl/dog_1.c:
+ .data start:0x001D9560 end:0x001DB540
+
+data/npc/model/tex/dog_1.c:
+ .data start:0x001DB540 end:0x001DC760
+
+data/npc/model/tex/dog_2.c:
+ .data start:0x001DC760 end:0x001DD980
+
+data/npc/model/tex/dog_3.c:
+ .data start:0x001DD980 end:0x001DEBA0
+
+data/npc/model/tex/dog_4.c:
+ .data start:0x001DEBA0 end:0x001DFDC0
+
+data/npc/model/tex/dog_5.c:
+ .data start:0x001DFDC0 end:0x001E0FE0
+
+data/npc/model/tex/dog_6.c:
+ .data start:0x001E0FE0 end:0x001E2200
+
+data/npc/model/tex/dog_7.c:
+ .data start:0x001E2200 end:0x001E3420
+
+data/npc/model/tex/dog_8.c:
+ .data start:0x001E3420 end:0x001E4640
+
+data/npc/model/tex/dog_9.c:
+ .data start:0x001E4640 end:0x001E5860
+
+data/npc/model/tex/dog_10.c:
+ .data start:0x001E5860 end:0x001E6A80
+
+data/npc/model/mdl/seg_1.c:
+ .data start:0x001E6A80 end:0x001E8E00
+
+data/npc/model/tex/seg_1.c:
+ .data start:0x001E8E00 end:0x001E9C60
+
+data/npc/model/mdl/duk_1.c:
+ .data start:0x001E9C60 end:0x001EBB80
+
+data/npc/model/tex/duk_1.c:
+ .data start:0x001EBB80 end:0x001ECDA0
+
+data/npc/model/tex/duk_2.c:
+ .data start:0x001ECDA0 end:0x001EDFC0
+
+data/npc/model/tex/duk_11.c:
+ .data start:0x001EDFC0 end:0x001EF1E0
+
+data/npc/model/tex/duk_3.c:
+ .data start:0x001EF1E0 end:0x001F0400
+
+data/npc/model/tex/duk_4.c:
+ .data start:0x001F0400 end:0x001F1620
+
+data/npc/model/tex/duk_5.c:
+ .data start:0x001F1620 end:0x001F2840
+
+data/npc/model/tex/duk_6.c:
+ .data start:0x001F2840 end:0x001F3A60
+
+data/npc/model/tex/duk_7.c:
+ .data start:0x001F3A60 end:0x001F4C80
+
+data/npc/model/tex/duk_8.c:
+ .data start:0x001F4C80 end:0x001F5EA0
+
+data/npc/model/tex/duk_9.c:
+ .data start:0x001F5EA0 end:0x001F70C0
+
+data/npc/model/tex/duk_10.c:
+ .data start:0x001F70C0 end:0x001F82E0
+
+data/scene/event_notification.c:
+ .data start:0x001F82E0 end:0x001F8330
+
+data/npc/model/mdl/elp_1.c:
+ .data start:0x001F8330 end:0x001FA4A0
+
+data/npc/model/tex/elp_1.c:
+ .data start:0x001FA4A0 end:0x001FB6C0
+
+data/npc/model/tex/elp_2.c:
+ .data start:0x001FB6C0 end:0x001FC8E0
+
+data/npc/model/tex/elp_3.c:
+ .data start:0x001FC8E0 end:0x001FDB00
+
+data/npc/model/tex/elp_4.c:
+ .data start:0x001FDB00 end:0x001FED20
+
+data/npc/model/tex/elp_5.c:
+ .data start:0x001FED20 end:0x001FFF40
+
+data/npc/model/tex/elp_6.c:
+ .data start:0x001FFF40 end:0x00201160
+
+data/npc/model/tex/elp_7.c:
+ .data start:0x00201160 end:0x00202380
+
+data/scene/fg_tool_in.c:
+ .data start:0x00202380 end:0x00202440
+
+data/scene/field_tool_field.c:
+ .data start:0x00202440 end:0x002024B0
+
+data/dataobject/dataobject_2024B0:
+ .data start:0x002024B0 end:0x00204600
+ .data start:0x00204600 end:0x00204680
+ .data start:0x00204680 end:0x00204700
+ .data start:0x00204700 end:0x0020A700
+ .data start:0x0020A700 end:0x0020A780
+ .data start:0x0020A780 end:0x0020A800
+ .data start:0x0020A800 end:0x0020A880
+
+data/npc/model/mdl/flg_1.c:
+ .data start:0x0020A880 end:0x0020C2E0
+
+data/npc/model/tex/flg_1.c:
+ .data start:0x0020C2E0 end:0x0020D500
+
+data/npc/model/tex/flg_2.c:
+ .data start:0x0020D500 end:0x0020E720
+
+data/npc/model/tex/flg_11.c:
+ .data start:0x0020E720 end:0x0020F940
+
+data/npc/model/tex/flg_12.c:
+ .data start:0x0020F940 end:0x00210AE0
+
+data/npc/model/tex/flg_13.c:
+ .data start:0x00210AE0 end:0x00211D00
+
+data/npc/model/tex/flg_3.c:
+ .data start:0x00211D00 end:0x00212F20
+
+data/npc/model/tex/flg_4.c:
+ .data start:0x00212F20 end:0x00214140
+
+data/npc/model/tex/flg_5.c:
+ .data start:0x00214140 end:0x00215360
+
+data/npc/model/tex/flg_6.c:
+ .data start:0x00215360 end:0x00216580
+
+data/npc/model/tex/flg_7.c:
+ .data start:0x00216580 end:0x002177A0
+
+data/npc/model/tex/flg_8.c:
+ .data start:0x002177A0 end:0x002189C0
+
+data/npc/model/tex/flg_9.c:
+ .data start:0x002189C0 end:0x00219BE0
+
+data/npc/model/tex/flg_10.c:
+ .data start:0x00219BE0 end:0x0021AE00
+
+data/npc/model/mdl/rcf_1.c:
+ .data start:0x0021AE00 end:0x0021D4A0
+
+data/npc/model/tex/rcf_1.c:
+ .data start:0x0021D4A0 end:0x0021E3C0
+
+data/dataobject/dataobject_21E3C0:
+ .data start:0x0021E3C0 end:0x0021F608
+
+data/npc/model/mdl/gst_1.c:
+ .data start:0x0021F608 end:0x00220C80
+
+data/npc/model/tex/gst_1.c:
+ .data start:0x00220C80 end:0x00221C20
+
+data/dataobject/dataobject_221C20:
+ .data start:0x00221C20 end:0x00224230
+
+data/npc/model/mdl/goa_1.c:
+ .data start:0x00224230 end:0x00226200
+
+data/npc/model/tex/goa_1.c:
+ .data start:0x00226200 end:0x00227420
+
+data/npc/model/tex/goa_2.c:
+ .data start:0x00227420 end:0x00228640
+
+data/npc/model/tex/goa_3.c:
+ .data start:0x00228640 end:0x00229860
+
+data/npc/model/tex/goa_4.c:
+ .data start:0x00229860 end:0x0022AA80
+
+data/npc/model/tex/goa_5.c:
+ .data start:0x0022AA80 end:0x0022BCA0
+
+data/npc/model/tex/goa_6.c:
+ .data start:0x0022BCA0 end:0x0022CEC0
+
+data/npc/model/mdl/gor_1.c:
+ .data start:0x0022CEC0 end:0x0022F460
+
+data/npc/model/tex/gor_1.c:
+ .data start:0x0022F460 end:0x00230680
+
+data/npc/model/tex/gor_2.c:
+ .data start:0x00230680 end:0x002318A0
+
+data/npc/model/tex/gor_3.c:
+ .data start:0x002318A0 end:0x00232AC0
+
+data/npc/model/tex/gor_4.c:
+ .data start:0x00232AC0 end:0x00233CE0
+
+data/npc/model/tex/gor_5.c:
+ .data start:0x00233CE0 end:0x00234F00
+
+data/npc/model/mdl/xct_1.c:
+ .data start:0x00234F00 end:0x00236B80
+
+data/npc/model/tex/xct_1.c:
+ .data start:0x00236B80 end:0x00237F20
+
+data/dataobject/dataobject_237F20:
+ .data start:0x00237F20 end:0x00238100
+ .data start:0x00238100 end:0x00238720
+ .data start:0x00238720 end:0x00238D40
+ .data start:0x00238D40 end:0x00239360
+ .data start:0x00239360 end:0x00239980
+ .data start:0x00239980 end:0x00239FA0
+ .data start:0x00239FA0 end:0x0023A4C0
+ .data start:0x0023A4C0 end:0x0023A9E0
+ .data start:0x0023A9E0 end:0x0023AF00
+ .data start:0x0023AF00 end:0x0023B320
+ .data start:0x0023B320 end:0x0023B840
+ .data start:0x0023B840 end:0x0023BD60
+ .data start:0x0023BD60 end:0x0023C280
+ .data start:0x0023C280 end:0x0023C8A0
+ .data start:0x0023C8A0 end:0x0023CEC0
+ .data start:0x0023CEC0 end:0x0023D5E0
+ .data start:0x0023D5E0 end:0x0023DCA0
+ .data start:0x0023DCA0 end:0x0023E140
+ .data start:0x0023E140 end:0x0023E880
+ .data start:0x0023E880 end:0x0023EDA0
+ .data start:0x0023EDA0 end:0x0023F3C0
+ .data start:0x0023F3C0 end:0x0023F9E0
+ .data start:0x0023F9E0 end:0x0023FE00
+ .data start:0x0023FE00 end:0x002400E0
+ .data start:0x002400E0 end:0x00240700
+ .data start:0x00240700 end:0x00240D20
+ .data start:0x00240D20 end:0x00241340
+ .data start:0x00241340 end:0x00241960
+ .data start:0x00241960 end:0x00241E80
+ .data start:0x00241E80 end:0x002424A0
+ .data start:0x002424A0 end:0x00242BC0
+ .data start:0x00242BC0 end:0x002432E0
+ .data start:0x002432E0 end:0x00243800
+ .data start:0x00243800 end:0x00243F40
+ .data start:0x00243F40 end:0x00244560
+ .data start:0x00244560 end:0x00244B80
+ .data start:0x00244B80 end:0x002451A0
+ .data start:0x002451A0 end:0x00245580
+ .data start:0x00245580 end:0x00245AA0
+ .data start:0x00245AA0 end:0x002460C0
+ .data start:0x002460C0 end:0x002465E0
+ .data start:0x002465E0 end:0x00246A00
+ .data start:0x00246A00 end:0x00247020
+ .data start:0x00247020 end:0x00247428
+
+data/npc/model/mdl/bpt_1.c:
+ .data start:0x00247428 end:0x00249580
+
+data/npc/model/tex/bpt_1.c:
+ .data start:0x00249580 end:0x0024A4A0
+
+data/npc/model/mdl/pkn_1.c:
+ .data start:0x0024A4A0 end:0x0024BEE0
+
+data/npc/model/tex/pkn_1.c:
+ .data start:0x0024BEE0 end:0x0024C580
+
+data/dataobject/dataobject_24C580:
+ .data start:0x0024C580 end:0x0024DC50
+ .data start:0x0024DC50 end:0x0024DD60
+ .data start:0x0024DD60 end:0x0024E580
+
+data/npc/model/mdl/hem_1.c:
+ .data start:0x0024E580 end:0x002501E0
+
+data/npc/model/tex/hem_1.c:
+ .data start:0x002501E0 end:0x00250940
+
+data/npc/model/mdl/hip_1.c:
+ .data start:0x00250940 end:0x00253060
+
+data/npc/model/tex/hip_1.c:
+ .data start:0x00253060 end:0x00253D80
+
+data/npc/model/tex/hip_2.c:
+ .data start:0x00253D80 end:0x00254AA0
+
+data/npc/model/tex/hip_3.c:
+ .data start:0x00254AA0 end:0x002557C0
+
+data/npc/model/tex/hip_4.c:
+ .data start:0x002557C0 end:0x002564E0
+
+data/npc/model/tex/hip_5.c:
+ .data start:0x002564E0 end:0x00257200
+
+data/npc/model/tex/hip_6.c:
+ .data start:0x00257200 end:0x00257F20
+
+data/npc/model/tex/hip_7.c:
+ .data start:0x00257F20 end:0x00258C40
+
+data/npc/model/mdl/hrs_1.c:
+ .data start:0x00258C40 end:0x0025B020
+
+data/npc/model/tex/hrs_1.c:
+ .data start:0x0025B020 end:0x0025BDC0
+
+data/npc/model/tex/hrs_2.c:
+ .data start:0x0025BDC0 end:0x0025CB60
+
+data/npc/model/tex/hrs_3.c:
+ .data start:0x0025CB60 end:0x0025D900
+
+data/npc/model/tex/hrs_4.c:
+ .data start:0x0025D900 end:0x0025E6A0
+
+data/npc/model/tex/hrs_5.c:
+ .data start:0x0025E6A0 end:0x0025F440
+
+data/npc/model/tex/hrs_6.c:
+ .data start:0x0025F440 end:0x002601E0
+
+data/npc/model/tex/hrs_7.c:
+ .data start:0x002601E0 end:0x00260F80
+
+data/npc/model/tex/hrs_8.c:
+ .data start:0x00260F80 end:0x00261D20
+
+data/dataobject/dataobject_261D20:
+ .data start:0x00261D20 end:0x002620C0
+ .data start:0x002620C0 end:0x00262560
+ .data start:0x00262560 end:0x00262940
+ .data start:0x00262940 end:0x00262C80
+ .data start:0x00262C80 end:0x00262E60
+ .data start:0x00262E60 end:0x00263180
+ .data start:0x00263180 end:0x00263520
+ .data start:0x00263520 end:0x00263980
+ .data start:0x00263980 end:0x00263D60
+ .data start:0x00263D60 end:0x00264100
+ .data start:0x00264100 end:0x002645A0
+ .data start:0x002645A0 end:0x00264940
+ .data start:0x00264940 end:0x00264E60
+ .data start:0x00264E60 end:0x002652A0
+ .data start:0x002652A0 end:0x00265660
+ .data start:0x00265660 end:0x00265A60
+ .data start:0x00265A60 end:0x00265E00
+ .data start:0x00265E00 end:0x00265FE0
+ .data start:0x00265FE0 end:0x00266380
+ .data start:0x00266380 end:0x002667A0
+ .data start:0x002667A0 end:0x00266A40
+ .data start:0x00266A40 end:0x00266EE0
+ .data start:0x00266EE0 end:0x002672A0
+ .data start:0x002672A0 end:0x00267640
+ .data start:0x00267640 end:0x002678E0
+ .data start:0x002678E0 end:0x00267D80
+ .data start:0x00267D80 end:0x00268200
+ .data start:0x00268200 end:0x002685A0
+ .data start:0x002685A0 end:0x002687C0
+ .data start:0x002687C0 end:0x002689E0
+ .data start:0x002689E0 end:0x00268DC0
+ .data start:0x00268DC0 end:0x00269160
+ .data start:0x00269160 end:0x00269500
+ .data start:0x00269500 end:0x002698A0
+ .data start:0x002698A0 end:0x00269C80
+ .data start:0x00269C80 end:0x0026A060
+ .data start:0x0026A060 end:0x0026A3E0
+ .data start:0x0026A3E0 end:0x0026A7E0
+ .data start:0x0026A7E0 end:0x0026AB80
+ .data start:0x0026AB80 end:0x0026AF60
+ .data start:0x0026AF60 end:0x0026B360
+ .data start:0x0026B360 end:0x0026B800
+
+data/npc/model/mdl/plj_1.c:
+ .data start:0x0026B800 end:0x0026D800
+
+data/npc/model/tex/plj_1.c:
+ .data start:0x0026D800 end:0x0026ECA0
+
+data/npc/model/mdl/xsq_1.c:
+ .data start:0x0026ECA0 end:0x00270D40
+
+data/npc/model/tex/xsq_1.c:
+ .data start:0x00270D40 end:0x00272160
+
+data/item/item_name.c:
+ .data start:0x00272160 end:0x0027B330
+
+data/scene/kamakura.c:
+ .data start:0x0027B330 end:0x0027B3A8
+
+data/npc/model/mdl/boa_1.c:
+ .data start:0x0027B3A8 end:0x0027DA60
+
+data/npc/model/tex/boa_1.c:
+ .data start:0x0027DA60 end:0x0027E840
+
+data/npc/model/mdl/kgr_1.c:
+ .data start:0x0027E840 end:0x00280EE0
+
+data/npc/model/tex/kgr_1.c:
+ .data start:0x00280EE0 end:0x00281B40
+
+data/npc/model/tex/kgr_2.c:
+ .data start:0x00281B40 end:0x002827A0
+
+data/npc/model/tex/kgr_3.c:
+ .data start:0x002827A0 end:0x00283400
+
+data/npc/model/tex/kgr_4.c:
+ .data start:0x00283400 end:0x00284060
+
+data/npc/model/tex/kgr_5.c:
+ .data start:0x00284060 end:0x00284CC0
+
+data/npc/model/tex/kgr_6.c:
+ .data start:0x00284CC0 end:0x00285920
+
+data/npc/model/mdl/fob_1.c:
+ .data start:0x00285920 end:0x00287E60
+
+data/npc/model/tex/fob_1.c:
+ .data start:0x00287E60 end:0x00288DC0
+
+data/npc/model/mdl/kal_1.c:
+ .data start:0x00288DC0 end:0x0028ACE0
+
+data/npc/model/tex/kal_1.c:
+ .data start:0x0028ACE0 end:0x0028BF80
+
+data/npc/model/tex/kal_2.c:
+ .data start:0x0028BF80 end:0x0028D220
+
+data/npc/model/tex/kal_3.c:
+ .data start:0x0028D220 end:0x0028E4C0
+
+data/npc/model/tex/kal_4.c:
+ .data start:0x0028E4C0 end:0x0028F760
+
+data/npc/model/tex/kal_5.c:
+ .data start:0x0028F760 end:0x00290A00
+
+data/npc/model/tex/kal_6.c:
+ .data start:0x00290A00 end:0x00291CA0
+
+data/scene/lighthouse.c:
+ .data start:0x00291CA0 end:0x00291D20
+
+data/dataobject/dataobject_291D20:
+ .data start:0x00291D20 end:0x00292080
+ .data start:0x00292080 end:0x00294260
+ .data start:0x00294260 end:0x00294510
+
+data/npc/model/mdl/lon_1.c:
+ .data start:0x00294510 end:0x00296A80
+
+data/npc/model/tex/lon_1.c:
+ .data start:0x00296A80 end:0x00297D60
+
+data/npc/model/tex/lon_2.c:
+ .data start:0x00297D60 end:0x00299040
+
+data/npc/model/tex/lon_3.c:
+ .data start:0x00299040 end:0x0029A320
+
+data/npc/model/tex/lon_4.c:
+ .data start:0x0029A320 end:0x0029B600
+
+data/scene/museum_entrance.c:
+ .data start:0x0029B600 end:0x0029B708
+
+data/scene/museum_fish.c:
+ .data start:0x0029B708 end:0x0029B7B0
+
+data/scene/museum_fossil.c:
+ .data start:0x0029B7B0 end:0x0029B830
+
+data/scene/museum_insect.c:
+ .data start:0x0029B830 end:0x0029B8F0
+
+data/scene/museum_picture.c:
+ .data start:0x0029B8F0 end:0x0029B9A0
+
+data/dataobject/dataobject_29B9A0:
+ .data start:0x0029B9A0 end:0x0029B9E8
+ .data start:0x0029B9E8 end:0x0029BAD8
+ .data start:0x0029BAD8 end:0x0029BB98
+ .data start:0x0029BB98 end:0x0029BC70
+ .data start:0x0029BC70 end:0x0029BCB0
+ .data start:0x0029BCB0 end:0x0029BD80
+ .data start:0x0029BD80 end:0x0029CB00
+ .data start:0x0029CB00 end:0x0029CBD0
+ .data start:0x0029CBD0 end:0x0029CC20
+ .data start:0x0029CC20 end:0x0029D9A0
+
+data/npc/model/mdl/mos_1.c:
+ .data start:0x0029D9A0 end:0x0029F5E0
+
+data/npc/model/tex/mos_1.c:
+ .data start:0x0029F5E0 end:0x002A0A80
+
+data/npc/model/mdl/mol_1.c:
+ .data start:0x002A0A80 end:0x002A26C0
+
+data/npc/model/tex/mol_1.c:
+ .data start:0x002A26C0 end:0x002A3B60
+
+data/npc/model/mdl/lrc_1.c:
+ .data start:0x002A3B60 end:0x002A5A60
+
+data/npc/model/tex/lrc_1.c:
+ .data start:0x002A5A60 end:0x002A6900
+
+data/npc/model/mdl/mka_1.c:
+ .data start:0x002A6900 end:0x002A86C0
+
+data/npc/model/tex/mka_1.c:
+ .data start:0x002A86C0 end:0x002A8B60
+
+data/dataobject/dataobject_2A8B60:
+ .data start:0x002A8B60 end:0x002A8C00
+ .data start:0x002A8C00 end:0x002A99A8
+
+data/npc/model/mdl/mus_1.c:
+ .data start:0x002A99A8 end:0x002ABBC0
+
+data/npc/model/tex/mus_1.c:
+ .data start:0x002ABBC0 end:0x002ACDE0
+
+data/npc/model/tex/mus_2.c:
+ .data start:0x002ACDE0 end:0x002AE000
+
+data/npc/model/tex/mus_3.c:
+ .data start:0x002AE000 end:0x002AF220
+
+data/npc/model/tex/mus_4.c:
+ .data start:0x002AF220 end:0x002B0440
+
+data/npc/model/tex/mus_5.c:
+ .data start:0x002B0440 end:0x002B1660
+
+data/npc/model/tex/mus_6.c:
+ .data start:0x002B1660 end:0x002B2880
+
+data/npc/model/tex/mus_7.c:
+ .data start:0x002B2880 end:0x002B3AA0
+
+data/npc/model/tex/mus_8.c:
+ .data start:0x002B3AA0 end:0x002B4CC0
+
+data/npc/model/tex/mus_9.c:
+ .data start:0x002B4CC0 end:0x002B5EE0
+
+data/npc/model/tex/mus_10.c:
+ .data start:0x002B5EE0 end:0x002B7100
+
+data/model/mural/obj_mural.c:
+ .data start:0x002B7100 end:0x002B7200
+
+data/dataobject/dataobject_2B7200:
+ .data start:0x002B7200 end:0x002B7B00
+ .data start:0x002B7B00 end:0x002B8F20
+ .data start:0x002B8F20 end:0x002B9600
+ .data start:0x002B9600 end:0x002BA380
+ .data start:0x002BA380 end:0x002BAD00
+ .data start:0x002BAD00 end:0x002BC180
+ .data start:0x002BC180 end:0x002BCAC0
+ .data start:0x002BCAC0 end:0x002BDE20
+ .data start:0x002BDE20 end:0x002BE760
+ .data start:0x002BE760 end:0x002BFAC0
+ .data start:0x002BFAC0 end:0x002C0440
+ .data start:0x002C0440 end:0x002C1A40
+ .data start:0x002C1A40 end:0x002C45D0
+ .data start:0x002C45D0 end:0x002C4680
+ .data start:0x002C4680 end:0x002C4730
+ .data start:0x002C4730 end:0x002C4768
+
+data/scene/NEEDLEWORK.c:
+ .data start:0x002C4768 end:0x002C4820
+
+data/scene/npc_room01.c:
+ .data start:0x002C4820 end:0x002C48C8
+
+data/scene/npc_room_island.c:
+ .data start:0x002C48C8 end:0x002C4970
+
+data/npc/model/mdl/hgh_1.c:
+ .data start:0x002C4970 end:0x002C7120
+
+data/npc/model/tex/hgh_1.c:
+ .data start:0x002C7120 end:0x002C8000
+
+data/npc/model/mdl/hgs_1.c:
+ .data start:0x002C8000 end:0x002CA780
+
+data/npc/model/tex/hgs_1.c:
+ .data start:0x002CA780 end:0x002CB660
+
+data/dataobject/dataobject_2CB660:
+ .data start:0x002CB660 end:0x002CBAE0
+ .data start:0x002CBAE0 end:0x002CBEF0
+ .data start:0x002CBEF0 end:0x002CC2F8
+ .data start:0x002CC2F8 end:0x002CC6E0
+ .data start:0x002CC6E0 end:0x002CCAD8
+ .data start:0x002CCAD8 end:0x002CCEE0
+ .data start:0x002CCEE0 end:0x002CD2B0
+ .data start:0x002CD2B0 end:0x002CD908
+ .data start:0x002CD908 end:0x002CDE70
+ .data start:0x002CDE70 end:0x002CE4A0
+ .data start:0x002CE4A0 end:0x002CEA50
+ .data start:0x002CEA50 end:0x002CEE80
+ .data start:0x002CEE80 end:0x002CEF80
+ .data start:0x002CEF80 end:0x002CF420
+ .data start:0x002CF420 end:0x002CFA68
+ .data start:0x002CFA68 end:0x002CFF08
+ .data start:0x002CFF08 end:0x002D0590
+ .data start:0x002D0590 end:0x002D0A30
+ .data start:0x002D0A30 end:0x002D1030
+ .data start:0x002D1030 end:0x002D14A0
+ .data start:0x002D14A0 end:0x002D19C8
+ .data start:0x002D19C8 end:0x002D1DB0
+ .data start:0x002D1DB0 end:0x002D22C0
+ .data start:0x002D22C0 end:0x002D2988
+ .data start:0x002D2988 end:0x002D2FA0
+ .data start:0x002D2FA0 end:0x002D3400
+ .data start:0x002D3400 end:0x002D3AB8
+ .data start:0x002D3AB8 end:0x002D3F98
+ .data start:0x002D3F98 end:0x002D4750
+ .data start:0x002D4750 end:0x002D4DF8
+ .data start:0x002D4DF8 end:0x002D4EF8
+ .data start:0x002D4EF8 end:0x002D54E0
+ .data start:0x002D54E0 end:0x002D60E0
+ .data start:0x002D60E0 end:0x002D6590
+ .data start:0x002D6590 end:0x002D6D70
+ .data start:0x002D6D70 end:0x002D72C0
+ .data start:0x002D72C0 end:0x002D73C0
+ .data start:0x002D73C0 end:0x002D7878
+ .data start:0x002D7878 end:0x002D7DA0
+ .data start:0x002D7DA0 end:0x002D82B0
+ .data start:0x002D82B0 end:0x002D8690
+ .data start:0x002D8690 end:0x002D8A48
+ .data start:0x002D8A48 end:0x002D8FE8
+ .data start:0x002D8FE8 end:0x002D9A28
+ .data start:0x002D9A28 end:0x002D9DD0
+ .data start:0x002D9DD0 end:0x002DA848
+ .data start:0x002DA848 end:0x002DB088
+ .data start:0x002DB088 end:0x002DB430
+ .data start:0x002DB430 end:0x002DB848
+ .data start:0x002DB848 end:0x002DBC08
+ .data start:0x002DBC08 end:0x002DC020
+ .data start:0x002DC020 end:0x002DC448
+ .data start:0x002DC448 end:0x002DCA70
+ .data start:0x002DCA70 end:0x002DD0B0
+ .data start:0x002DD0B0 end:0x002DD4C8
+ .data start:0x002DD4C8 end:0x002DD888
+ .data start:0x002DD888 end:0x002DDC20
+ .data start:0x002DDC20 end:0x002DE058
+ .data start:0x002DE058 end:0x002DE440
+ .data start:0x002DE440 end:0x002DE8D0
+ .data start:0x002DE8D0 end:0x002DECD8
+ .data start:0x002DECD8 end:0x002DF100
+ .data start:0x002DF100 end:0x002DF4C0
+ .data start:0x002DF4C0 end:0x002DF8F0
+ .data start:0x002DF8F0 end:0x002DFD08
+ .data start:0x002DFD08 end:0x002E0110
+ .data start:0x002E0110 end:0x002E0510
+ .data start:0x002E0510 end:0x002E0C30
+ .data start:0x002E0C30 end:0x002E1078
+ .data start:0x002E1078 end:0x002E1230
+ .data start:0x002E1230 end:0x002E1DC8
+ .data start:0x002E1DC8 end:0x002E23E8
+ .data start:0x002E23E8 end:0x002E2B58
+ .data start:0x002E2B58 end:0x002E2FB0
+ .data start:0x002E2FB0 end:0x002E3358
+ .data start:0x002E3358 end:0x002E3A00
+ .data start:0x002E3A00 end:0x002E3DB0
+ .data start:0x002E3DB0 end:0x002E4448
+ .data start:0x002E4448 end:0x002E47F8
+ .data start:0x002E47F8 end:0x002E4DE8
+ .data start:0x002E4DE8 end:0x002E51F8
+ .data start:0x002E51F8 end:0x002E55F8
+ .data start:0x002E55F8 end:0x002E59F0
+ .data start:0x002E59F0 end:0x002E5DF8
+ .data start:0x002E5DF8 end:0x002E61B0
+ .data start:0x002E61B0 end:0x002E65C8
+ .data start:0x002E65C8 end:0x002E6A88
+ .data start:0x002E6A88 end:0x002E72E0
+ .data start:0x002E72E0 end:0x002E7800
+ .data start:0x002E7800 end:0x002E7C48
+ .data start:0x002E7C48 end:0x002E82A0
+ .data start:0x002E82A0 end:0x002E83A0
+ .data start:0x002E83A0 end:0x002E88B0
+ .data start:0x002E88B0 end:0x002E89B0
+ .data start:0x002E89B0 end:0x002E90C8
+ .data start:0x002E90C8 end:0x002E96C0
+ .data start:0x002E96C0 end:0x002E9C60
+ .data start:0x002E9C60 end:0x002EA2C8
+ .data start:0x002EA2C8 end:0x002EA858
+ .data start:0x002EA858 end:0x002EAAE8
+ .data start:0x002EAAE8 end:0x002EAF58
+ .data start:0x002EAF58 end:0x002EB3A0
+ .data start:0x002EB3A0 end:0x002EB7C8
+ .data start:0x002EB7C8 end:0x002EBBD8
+ .data start:0x002EBBD8 end:0x002EBFD0
+ .data start:0x002EBFD0 end:0x002EC3B0
+ .data start:0x002EC3B0 end:0x002EC8B0
+ .data start:0x002EC8B0 end:0x002ECCE8
+ .data start:0x002ECCE8 end:0x002ED370
+ .data start:0x002ED370 end:0x002EDAA0
+ .data start:0x002EDAA0 end:0x002EDE90
+ .data start:0x002EDE90 end:0x002EE318
+ .data start:0x002EE318 end:0x002EE738
+ .data start:0x002EE738 end:0x002EEB58
+ .data start:0x002EEB58 end:0x002EEF80
+ .data start:0x002EEF80 end:0x002EF8C0
+ .data start:0x002EF8C0 end:0x002EFF78
+ .data start:0x002EFF78 end:0x002F09C0
+ .data start:0x002F09C0 end:0x002F0E08
+ .data start:0x002F0E08 end:0x002F1260
+ .data start:0x002F1260 end:0x002F16B0
+ .data start:0x002F16B0 end:0x002F1D40
+ .data start:0x002F1D40 end:0x002F23B0
+ .data start:0x002F23B0 end:0x002F2830
+ .data start:0x002F2830 end:0x002F2C90
+ .data start:0x002F2C90 end:0x002F30C8
+ .data start:0x002F30C8 end:0x002F3258
+ .data start:0x002F3258 end:0x002F3400
+ .data start:0x002F3400 end:0x002F3908
+ .data start:0x002F3908 end:0x002F3D48
+ .data start:0x002F3D48 end:0x002F4298
+ .data start:0x002F4298 end:0x002F46B8
+ .data start:0x002F46B8 end:0x002F4C08
+ .data start:0x002F4C08 end:0x002F5350
+ .data start:0x002F5350 end:0x002F58A0
+ .data start:0x002F58A0 end:0x002F6010
+ .data start:0x002F6010 end:0x002F6650
+ .data start:0x002F6650 end:0x002F6C18
+ .data start:0x002F6C18 end:0x002F7110
+ .data start:0x002F7110 end:0x002F7528
+ .data start:0x002F7528 end:0x002F78A0
+ .data start:0x002F78A0 end:0x002F8030
+ .data start:0x002F8030 end:0x002F8560
+ .data start:0x002F8560 end:0x002F88D0
+ .data start:0x002F88D0 end:0x002F8D38
+ .data start:0x002F8D38 end:0x002F9560
+ .data start:0x002F9560 end:0x002F9C10
+ .data start:0x002F9C10 end:0x002FA120
+ .data start:0x002FA120 end:0x002FA628
+ .data start:0x002FA628 end:0x002FAB40
+ .data start:0x002FAB40 end:0x002FB230
+ .data start:0x002FB230 end:0x002FB898
+ .data start:0x002FB898 end:0x002FBFF0
+ .data start:0x002FBFF0 end:0x002FC2E8
+ .data start:0x002FC2E8 end:0x002FC750
+ .data start:0x002FC750 end:0x002FCB98
+ .data start:0x002FCB98 end:0x002FCFF8
+ .data start:0x002FCFF8 end:0x002FD4F0
+ .data start:0x002FD4F0 end:0x002FDA88
+ .data start:0x002FDA88 end:0x002FDE90
+ .data start:0x002FDE90 end:0x002FE3F0
+ .data start:0x002FE3F0 end:0x002FE7F8
+ .data start:0x002FE7F8 end:0x002FED18
+ .data start:0x002FED18 end:0x002FF120
+ .data start:0x002FF120 end:0x002FF770
+ .data start:0x002FF770 end:0x002FFC48
+ .data start:0x002FFC48 end:0x00300128
+ .data start:0x00300128 end:0x00300628
+ .data start:0x00300628 end:0x00300B18
+ .data start:0x00300B18 end:0x00300EF0
+ .data start:0x00300EF0 end:0x00301668
+ .data start:0x00301668 end:0x003020E0
+ .data start:0x003020E0 end:0x003029E8
+ .data start:0x003029E8 end:0x00302FF8
+ .data start:0x00302FF8 end:0x00303440
+ .data start:0x00303440 end:0x00303B48
+ .data start:0x00303B48 end:0x003042F8
+ .data start:0x003042F8 end:0x00304A68
+ .data start:0x00304A68 end:0x00305248
+ .data start:0x00305248 end:0x003056B8
+ .data start:0x003056B8 end:0x00305B30
+ .data start:0x00305B30 end:0x00305FD8
+ .data start:0x00305FD8 end:0x00306408
+ .data start:0x00306408 end:0x00306838
+ .data start:0x00306838 end:0x00306C20
+ .data start:0x00306C20 end:0x003074F0
+ .data start:0x003074F0 end:0x00307BD8
+ .data start:0x00307BD8 end:0x00308238
+ .data start:0x00308238 end:0x00308338
+ .data start:0x00308338 end:0x00308920
+ .data start:0x00308920 end:0x00308A20
+ .data start:0x00308A20 end:0x00308FA0
+ .data start:0x00308FA0 end:0x003093C8
+ .data start:0x003093C8 end:0x003098F0
+ .data start:0x003098F0 end:0x00309DE8
+ .data start:0x00309DE8 end:0x0030A7B8
+ .data start:0x0030A7B8 end:0x0030B0D0
+ .data start:0x0030B0D0 end:0x0030BA18
+ .data start:0x0030BA18 end:0x0030C088
+ .data start:0x0030C088 end:0x0030C7E0
+ .data start:0x0030C7E0 end:0x0030CEB8
+ .data start:0x0030CEB8 end:0x0030D9B0
+ .data start:0x0030D9B0 end:0x0030E4A8
+ .data start:0x0030E4A8 end:0x0030ECF8
+ .data start:0x0030ECF8 end:0x0030F548
+ .data start:0x0030F548 end:0x0030FF48
+ .data start:0x0030FF48 end:0x00310948
+ .data start:0x00310948 end:0x00311140
+ .data start:0x00311140 end:0x00311930
+ .data start:0x00311930 end:0x003122D0
+ .data start:0x003122D0 end:0x00312C40
+ .data start:0x00312C40 end:0x003132C8
+ .data start:0x003132C8 end:0x00313848
+ .data start:0x00313848 end:0x00313D40
+ .data start:0x00313D40 end:0x00314308
+ .data start:0x00314308 end:0x003149E8
+ .data start:0x003149E8 end:0x00314EC0
+ .data start:0x00314EC0 end:0x00315328
+ .data start:0x00315328 end:0x003157F8
+ .data start:0x003157F8 end:0x003160D8
+ .data start:0x003160D8 end:0x00316518
+ .data start:0x00316518 end:0x00316AF0
+ .data start:0x00316AF0 end:0x00317138
+ .data start:0x00317138 end:0x003178E0
+ .data start:0x003178E0 end:0x00317D60
+ .data start:0x00317D60 end:0x00318538
+ .data start:0x00318538 end:0x00318950
+ .data start:0x00318950 end:0x00318D68
+ .data start:0x00318D68 end:0x00319690
+ .data start:0x00319690 end:0x00319FC0
+ .data start:0x00319FC0 end:0x0031A348
+ .data start:0x0031A348 end:0x0031AC08
+ .data start:0x0031AC08 end:0x0031B118
+ .data start:0x0031B118 end:0x0031B9F8
+ .data start:0x0031B9F8 end:0x0031BFA0
+ .data start:0x0031BFA0 end:0x0031C698
+ .data start:0x0031C698 end:0x0031CCE0
+ .data start:0x0031CCE0 end:0x0031D178
+ .data start:0x0031D178 end:0x0031DCD8
+ .data start:0x0031DCD8 end:0x0031E4D0
+ .data start:0x0031E4D0 end:0x0031ED68
+ .data start:0x0031ED68 end:0x0031EE68
+ .data start:0x0031EE68 end:0x0031F268
+ .data start:0x0031F268 end:0x0031F890
+
+data/npc/default_list.c:
+ .data start:0x0031F890 end:0x0031FE28
+
+data/npc/npc_draw_data.c:
+ .data start:0x0031FE28 end:0x00329F50
+
+data/npc/grow_list.c:
+ .data start:0x00329F50 end:0x0032A040
+
+data/npc/house_list.c:
+ .data start:0x0032A040 end:0x0032A7B0
+
+data/npc/model/mdl/oct_1.c:
+ .data start:0x0032A7B0 end:0x0032CF60
+
+data/npc/model/tex/oct_1.c:
+ .data start:0x0032CF60 end:0x0032D980
+
+data/npc/model/mdl/ost_1.c:
+ .data start:0x0032D980 end:0x0032FC00
+
+data/npc/model/tex/ost_1.c:
+ .data start:0x0032FC00 end:0x00330960
+
+data/npc/model/tex/ost_2.c:
+ .data start:0x00330960 end:0x003316C0
+
+data/npc/model/tex/ost_3.c:
+ .data start:0x003316C0 end:0x00332420
+
+data/npc/model/tex/ost_4.c:
+ .data start:0x00332420 end:0x00333180
+
+data/scene/player_room_island.c:
+ .data start:0x00333180 end:0x00333228
+
+data/scene/player_room_ll1.c:
+ .data start:0x00333228 end:0x003332E8
+
+data/scene/player_room_ll2.c:
+ .data start:0x003332E8 end:0x00333390
+
+data/scene/player_room_l.c:
+ .data start:0x00333390 end:0x00333438
+
+data/scene/player_room_m.c:
+ .data start:0x00333438 end:0x003334E0
+
+data/scene/player_room_s.c:
+ .data start:0x003334E0 end:0x00333588
+
+data/scene/PLAYER_SELECT2.c:
+ .data start:0x00333588 end:0x003335D0
+
+data/scene/PLAYER_SELECT3.c:
+ .data start:0x003335D0 end:0x00333618
+
+data/scene/PLAYER_SELECT4.c:
+ .data start:0x00333618 end:0x00333660
+
+data/scene/player_select.c:
+ .data start:0x00333660 end:0x003336A8
+
+data/scene/police_box.c:
+ .data start:0x003336A8 end:0x00333748
+
+data/scene/post_office.c:
+ .data start:0x00333748 end:0x00333800
+
+data/scene/p_room_bm_ll1.c:
+ .data start:0x00333800 end:0x00333880
+
+data/scene/p_room_bm_l.c:
+ .data start:0x00333880 end:0x00333900
+
+data/scene/p_room_bm_m.c:
+ .data start:0x00333900 end:0x00333980
+
+data/scene/p_room_bm_s.c:
+ .data start:0x00333980 end:0x00333A00
+
+data/dataobject/dataobject_333A00:
+ .data start:0x00333A00 end:0x00333A28
+
+data/npc/model/mdl/pgn_1.c:
+ .data start:0x00333A28 end:0x00335C40
+
+data/npc/model/tex/pgn_1.c:
+ .data start:0x00335C40 end:0x003369E0
+
+data/npc/model/tex/pgn_2.c:
+ .data start:0x003369E0 end:0x00337780
+
+data/npc/model/tex/pgn_3.c:
+ .data start:0x00337780 end:0x00338520
+
+data/npc/model/tex/pgn_4.c:
+ .data start:0x00338520 end:0x003392C0
+
+data/npc/model/tex/pgn_5.c:
+ .data start:0x003392C0 end:0x0033A060
+
+data/npc/model/tex/pgn_6.c:
+ .data start:0x0033A060 end:0x0033AE00
+
+data/npc/model/tex/pgn_7.c:
+ .data start:0x0033AE00 end:0x0033BBA0
+
+data/npc/model/tex/pgn_8.c:
+ .data start:0x0033BBA0 end:0x0033C940
+
+data/npc/model/mdl/pig_1.c:
+ .data start:0x0033C940 end:0x0033E5C0
+
+data/npc/model/tex/pig_1.c:
+ .data start:0x0033E5C0 end:0x0033F760
+
+data/npc/model/tex/pig_2.c:
+ .data start:0x0033F760 end:0x00340900
+
+data/npc/model/tex/pig_11.c:
+ .data start:0x00340900 end:0x00341AA0
+
+data/npc/model/tex/pig_3.c:
+ .data start:0x00341AA0 end:0x00342C40
+
+data/npc/model/tex/pig_4.c:
+ .data start:0x00342C40 end:0x00343DE0
+
+data/npc/model/tex/pig_5.c:
+ .data start:0x00343DE0 end:0x00344F80
+
+data/npc/model/tex/pig_6.c:
+ .data start:0x00344F80 end:0x00346120
+
+data/npc/model/tex/pig_7.c:
+ .data start:0x00346120 end:0x003472C0
+
+data/npc/model/tex/pig_8.c:
+ .data start:0x003472C0 end:0x00348460
+
+data/npc/model/tex/pig_9.c:
+ .data start:0x00348460 end:0x00349600
+
+data/npc/model/tex/pig_10.c:
+ .data start:0x00349600 end:0x0034A7A0
+
+data/npc/model/mdl/pla_1.c:
+ .data start:0x0034A7A0 end:0x0034CE18
+
+data/npc/model/mdl/plc_1.c:
+ .data start:0x0034CE18 end:0x0034EF20
+
+data/npc/model/tex/plc_1.c:
+ .data start:0x0034EF20 end:0x00350400
+
+data/npc/model/tex/pla_1.c:
+ .data start:0x00350400 end:0x003517A0
+
+data/npc/model/mdl/pga_1.c:
+ .data start:0x003517A0 end:0x00353CA0
+
+data/npc/model/tex/pga_1.c:
+ .data start:0x00353CA0 end:0x00354B00
+
+data/npc/model/mdl/pgb_1.c:
+ .data start:0x00354B00 end:0x00356F60
+
+data/npc/model/tex/pgb_1.c:
+ .data start:0x00356F60 end:0x00357F00
+
+data/npc/model/mdl/plb_1.c:
+ .data start:0x00357F00 end:0x0035A480
+
+data/npc/model/tex/plb_1.c:
+ .data start:0x0035A480 end:0x0035B420
+
+data/npc/model/mdl/rbt_1.c:
+ .data start:0x0035B420 end:0x0035D2C0
+
+data/npc/model/tex/rbt_1.c:
+ .data start:0x0035D2C0 end:0x0035E4E0
+
+data/npc/model/tex/rbt_2.c:
+ .data start:0x0035E4E0 end:0x0035F700
+
+data/npc/model/tex/rbt_11.c:
+ .data start:0x0035F700 end:0x00360920
+
+data/npc/model/tex/rbt_3.c:
+ .data start:0x00360920 end:0x00361B40
+
+data/npc/model/tex/rbt_4.c:
+ .data start:0x00361B40 end:0x00362D60
+
+data/npc/model/tex/rbt_5.c:
+ .data start:0x00362D60 end:0x00363F80
+
+data/npc/model/tex/rbt_6.c:
+ .data start:0x00363F80 end:0x003651A0
+
+data/npc/model/tex/rbt_7.c:
+ .data start:0x003651A0 end:0x003663C0
+
+data/npc/model/tex/rbt_8.c:
+ .data start:0x003663C0 end:0x003675E0
+
+data/npc/model/tex/rbt_9.c:
+ .data start:0x003675E0 end:0x00368800
+
+data/npc/model/tex/rbt_10.c:
+ .data start:0x00368800 end:0x00369A20
+
+data/npc/model/mdl/mob_1.c:
+ .data start:0x00369A20 end:0x0036B5A0
+
+data/npc/model/tex/mob_1.c:
+ .data start:0x0036B5A0 end:0x0036CA40
+
+data/dataobject/dataobject_36CA40:
+ .data start:0x0036CA40 end:0x0036CE40
+
+data/npc/model/mdl/rhn_1.c:
+ .data start:0x0036CE40 end:0x0036F600
+
+data/npc/model/tex/rhn_1.c:
+ .data start:0x0036F600 end:0x00370820
+
+data/npc/model/tex/rhn_2.c:
+ .data start:0x00370820 end:0x00371A40
+
+data/npc/model/tex/rhn_3.c:
+ .data start:0x00371A40 end:0x00372C60
+
+data/npc/model/tex/rhn_4.c:
+ .data start:0x00372C60 end:0x00373E80
+
+data/dataobject/dataobject_373E80:
+ .data start:0x00373E80 end:0x00374140
+ .data start:0x00374140 end:0x003749E0
+ .data start:0x003749E0 end:0x003794C8
+ .data start:0x003794C8 end:0x0037A450
+ .data start:0x0037A450 end:0x0037A890
+ .data start:0x0037A890 end:0x0037AD00
+ .data start:0x0037AD00 end:0x0037B3A0
+ .data start:0x0037B3A0 end:0x0037B698
+
+data/scene/shop01.c:
+ .data start:0x0037B698 end:0x0037B720
+
+data/scene/shop02.c:
+ .data start:0x0037B720 end:0x0037B7A8
+
+data/scene/shop03.c:
+ .data start:0x0037B7A8 end:0x0037B828
+
+data/scene/shop04_1f.c:
+ .data start:0x0037B828 end:0x0037B8B0
+
+data/scene/shop04_2f.c:
+ .data start:0x0037B8B0 end:0x0037B938
+
+data/scene/start_demo1.c:
+ .data start:0x0037B938 end:0x0037B9A8
+
+data/scene/start_demo2.c:
+ .data start:0x0037B9A8 end:0x0037BA18
+
+data/scene/start_demo3.c:
+ .data start:0x0037BA18 end:0x0037BAA0
+
+data/dataobject/dataobject_37BAA0:
+ .data start:0x0037BAA0 end:0x0037BC48
+
+data/npc/model/mdl/snt_1.c:
+ .data start:0x0037BC48 end:0x0037D840
+
+data/npc/model/tex/snt_1.c:
+ .data start:0x0037D840 end:0x0037ECE0
+
+data/npc/model/mdl/wip_1.c:
+ .data start:0x0037ECE0 end:0x00380C80
+
+data/npc/model/tex/wip_1.c:
+ .data start:0x00380C80 end:0x00382060
+
+data/npc/model/mdl/shp_1.c:
+ .data start:0x00382060 end:0x00383CA0
+
+data/npc/model/tex/shp_1.c:
+ .data start:0x00383CA0 end:0x00384EC0
+
+data/npc/model/tex/shp_2.c:
+ .data start:0x00384EC0 end:0x003860E0
+
+data/npc/model/tex/shp_3.c:
+ .data start:0x003860E0 end:0x00387300
+
+data/npc/model/tex/shp_4.c:
+ .data start:0x00387300 end:0x00388520
+
+data/npc/model/tex/shp_5.c:
+ .data start:0x00388520 end:0x00389740
+
+data/npc/model/tex/shp_6.c:
+ .data start:0x00389740 end:0x0038A960
+
+data/npc/model/mdl/rcn_1.c:
+ .data start:0x0038A960 end:0x0038C980
+
+data/npc/model/tex/rcn_1.c:
+ .data start:0x0038C980 end:0x0038D7E0
+
+data/dataobject/dataobject_38D7E0:
+ .data start:0x0038D7E0 end:0x0038DAA0
+ .data start:0x0038DAA0 end:0x0038DEE0
+ .data start:0x0038DEE0 end:0x0038E3E0
+ .data start:0x0038E3E0 end:0x0038E9B8
+ .data start:0x0038E9B8 end:0x0038ECD0
+ .data start:0x0038ECD0 end:0x0038ECE0
+ .data start:0x0038ECE0 end:0x0038F120
+ .data start:0x0038F120 end:0x0038F660
+ .data start:0x0038F660 end:0x0038F920
+ .data start:0x0038F920 end:0x0038FCA0
+ .data start:0x0038FCA0 end:0x00390620
+ .data start:0x00390620 end:0x00390FA0
+ .data start:0x00390FA0 end:0x00391920
+ .data start:0x00391920 end:0x003922A0
+ .data start:0x003922A0 end:0x00392C20
+ .data start:0x00392C20 end:0x003935A0
+ .data start:0x003935A0 end:0x00394700
+ .data start:0x00394700 end:0x00395720
+ .data start:0x00395720 end:0x003959E0
+ .data start:0x003959E0 end:0x00395CA0
+ .data start:0x00395CA0 end:0x00396080
+ .data start:0x00396080 end:0x003964E0
+ .data start:0x003964E0 end:0x003968A0
+ .data start:0x003968A0 end:0x00396B60
+ .data start:0x00396B60 end:0x00397440
+ .data start:0x00397440 end:0x003978E0
+ .data start:0x003978E0 end:0x00397C00
+ .data start:0x00397C00 end:0x00397FE0
+ .data start:0x00397FE0 end:0x003981A0
+ .data start:0x003981A0 end:0x003983E0
+ .data start:0x003983E0 end:0x00398560
+ .data start:0x00398560 end:0x003986E0
+ .data start:0x003986E0 end:0x00398900
+ .data start:0x00398900 end:0x00398C00
+ .data start:0x00398C00 end:0x00398E20
+ .data start:0x00398E20 end:0x00399260
+ .data start:0x00399260 end:0x003995C0
+ .data start:0x003995C0 end:0x00399820
+ .data start:0x00399820 end:0x00399C60
+ .data start:0x00399C60 end:0x0039A020
+ .data start:0x0039A020 end:0x0039A4C0
+ .data start:0x0039A4C0 end:0x0039A900
+ .data start:0x0039A900 end:0x0039AF00
+ .data start:0x0039AF00 end:0x0039B480
+ .data start:0x0039B480 end:0x0039BA20
+ .data start:0x0039BA20 end:0x0039BF40
+ .data start:0x0039BF40 end:0x0039C460
+ .data start:0x0039C460 end:0x0039C980
+ .data start:0x0039C980 end:0x0039CEA0
+ .data start:0x0039CEA0 end:0x0039D3C0
+ .data start:0x0039D3C0 end:0x0039D8E0
+ .data start:0x0039D8E0 end:0x0039DE00
+ .data start:0x0039DE00 end:0x0039E308
+ .data start:0x0039E308 end:0x0039E320
+ .data start:0x0039E320 end:0x0039E840
+ .data start:0x0039E840 end:0x0039F060
+ .data start:0x0039F060 end:0x003B1FA0
+ .data start:0x003B1FA0 end:0x003B2CB0
+
+data/npc/model/mdl/kab_1.c:
+ .data start:0x003B2CB0 end:0x003B4EA0
+
+data/npc/model/tex/kab_1.c:
+ .data start:0x003B4EA0 end:0x003B5AC0
+
+data/dataobject/dataobject_3B5AC0:
+ .data start:0x003B5AC0 end:0x003B5D60
+ .data start:0x003B5D60 end:0x003B6200
+ .data start:0x003B6200 end:0x003BBA40
+ .data start:0x003BBA40 end:0x003C0780
+ .data start:0x003C0780 end:0x003C0870
+ .data start:0x003C0870 end:0x003C08D0
+ .data start:0x003C08D0 end:0x003C0A08
+ .data start:0x003C0A08 end:0x003C0A20
+ .data start:0x003C0A20 end:0x003C0CC0
+ .data start:0x003C0CC0 end:0x003C9940
+ .data start:0x003C9940 end:0x003CB200
+ .data start:0x003CB200 end:0x003CF1C0
+ .data start:0x003CF1C0 end:0x003D1320
+ .data start:0x003D1320 end:0x003D14C0
+ .data start:0x003D14C0 end:0x003D15C0
+ .data start:0x003D15C0 end:0x003D1780
+ .data start:0x003D1780 end:0x003D1E20
+ .data start:0x003D1E20 end:0x003D2180
+ .data start:0x003D2180 end:0x003E2340
+ .data start:0x003E2340 end:0x003E4A00
+ .data start:0x003E4A00 end:0x003E4D40
+ .data start:0x003E4D40 end:0x003E4E60
+ .data start:0x003E4E60 end:0x003E5AF0
+ .data start:0x003E5AF0 end:0x003E5B50
+ .data start:0x003E5B50 end:0x003E5E60
+ .data start:0x003E5E60 end:0x003E5F60
+ .data start:0x003E5F60 end:0x003E6CF0
+ .data start:0x003E6CF0 end:0x003E6E80
+ .data start:0x003E6E80 end:0x003EF880
+ .data start:0x003EF880 end:0x003EF980
+ .data start:0x003EF980 end:0x003EFC20
+ .data start:0x003EFC20 end:0x003EFEA0
+ .data start:0x003EFEA0 end:0x003F7260
+ .data start:0x003F7260 end:0x003F7360
+ .data start:0x003F7360 end:0x003F9280
+ .data start:0x003F9280 end:0x003FA540
+ .data start:0x003FA540 end:0x003FA7B0
+ .data start:0x003FA7B0 end:0x003FA840
+ .data start:0x003FA840 end:0x003FAF20
+ .data start:0x003FAF20 end:0x00400680
+ .data start:0x00400680 end:0x00401D80
+ .data start:0x00401D80 end:0x004059A0
+ .data start:0x004059A0 end:0x004076E0
+ .data start:0x004076E0 end:0x0040ABA0
+ .data start:0x0040ABA0 end:0x0040AE20
+ .data start:0x0040AE20 end:0x0040B100
+ .data start:0x0040B100 end:0x0040B620
+ .data start:0x0040B620 end:0x0040C780
+ .data start:0x0040C780 end:0x0040D8C0
+ .data start:0x0040D8C0 end:0x00420AA0
+ .data start:0x00420AA0 end:0x00421520
+ .data start:0x00421520 end:0x00421B60
+ .data start:0x00421B60 end:0x00423340
+ .data start:0x00423340 end:0x004237E0
+ .data start:0x004237E0 end:0x00427010
+ .data start:0x00427010 end:0x0042AC00
+ .data start:0x0042AC00 end:0x0042D400
+ .data start:0x0042D400 end:0x00433FC0
+ .data start:0x00433FC0 end:0x00438B40
+ .data start:0x00438B40 end:0x0043ED80
+ .data start:0x0043ED80 end:0x004440D0
+ .data start:0x004440D0 end:0x00444490
+ .data start:0x00444490 end:0x00444860
+ .data start:0x00444860 end:0x00445080
+ .data start:0x00445080 end:0x004452A0
+ .data start:0x004452A0 end:0x004454C0
+ .data start:0x004454C0 end:0x00445900
+ .data start:0x00445900 end:0x00446180
+ .data start:0x00446180 end:0x00446BA0
+ .data start:0x00446BA0 end:0x0044B3A0
+ .data start:0x0044B3A0 end:0x0044FBA0
+ .data start:0x0044FBA0 end:0x0044FC60
+ .data start:0x0044FC60 end:0x0044FE80
+ .data start:0x0044FE80 end:0x004500A0
+ .data start:0x004500A0 end:0x004502C0
+ .data start:0x004502C0 end:0x004504E0
+ .data start:0x004504E0 end:0x00450FA0
+ .data start:0x00450FA0 end:0x00451C60
+ .data start:0x00451C60 end:0x00451E80
+ .data start:0x00451E80 end:0x004520A0
+ .data start:0x004520A0 end:0x00452900
+ .data start:0x00452900 end:0x00452D40
+ .data start:0x00452D40 end:0x00454280
+ .data start:0x00454280 end:0x004546C0
+ .data start:0x004546C0 end:0x00454F40
+ .data start:0x00454F40 end:0x00455BA0
+ .data start:0x00455BA0 end:0x00456420
+ .data start:0x00456420 end:0x00456A40
+ .data start:0x00456A40 end:0x00457260
+ .data start:0x00457260 end:0x00457480
+ .data start:0x00457480 end:0x00458360
+ .data start:0x00458360 end:0x004584D0
+ .data start:0x004584D0 end:0x004585A0
+ .data start:0x004585A0 end:0x004587C0
+ .data start:0x004587C0 end:0x004589E0
+ .data start:0x004589E0 end:0x00458C00
+ .data start:0x00458C00 end:0x00459260
+ .data start:0x00459260 end:0x0045A460
+ .data start:0x0045A460 end:0x0045A680
+ .data start:0x0045A680 end:0x0045AA80
+ .data start:0x0045AA80 end:0x0045B520
+ .data start:0x0045B520 end:0x0045C720
+ .data start:0x0045C720 end:0x0045C940
+ .data start:0x0045C940 end:0x0045CB60
+ .data start:0x0045CB60 end:0x0045FFE0
+ .data start:0x0045FFE0 end:0x00464DA0
+ .data start:0x00464DA0 end:0x0046A000
+ .data start:0x0046A000 end:0x0046F060
+ .data start:0x0046F060 end:0x00472FE0
+ .data start:0x00472FE0 end:0x00476120
+ .data start:0x00476120 end:0x0047A040
+ .data start:0x0047A040 end:0x0047A490
+ .data start:0x0047A490 end:0x0047AAC8
+ .data start:0x0047AAC8 end:0x0047B0C0
+ .data start:0x0047B0C0 end:0x0047B4E0
+ .data start:0x0047B4E0 end:0x0047B7D0
+ .data start:0x0047B7D0 end:0x0047BE38
+ .data start:0x0047BE38 end:0x0047C1D0
+ .data start:0x0047C1D0 end:0x0047C578
+ .data start:0x0047C578 end:0x0047C928
+ .data start:0x0047C928 end:0x0047CDA0
+ .data start:0x0047CDA0 end:0x0047CF00
+ .data start:0x0047CF00 end:0x0047D068
+ .data start:0x0047D068 end:0x0047D368
+ .data start:0x0047D368 end:0x0047D540
+ .data start:0x0047D540 end:0x0047D648
+ .data start:0x0047D648 end:0x0047D7B8
+ .data start:0x0047D7B8 end:0x0047D8A8
+ .data start:0x0047D8A8 end:0x0047DC18
+ .data start:0x0047DC18 end:0x0047DE48
+ .data start:0x0047DE48 end:0x0047DF40
+ .data start:0x0047DF40 end:0x0047E0C0
+ .data start:0x0047E0C0 end:0x0047E3C0
+ .data start:0x0047E3C0 end:0x0047E680
+ .data start:0x0047E680 end:0x0047E8E8
+ .data start:0x0047E8E8 end:0x0047ED70
+ .data start:0x0047ED70 end:0x0047F5E8
+ .data start:0x0047F5E8 end:0x0047F808
+ .data start:0x0047F808 end:0x0047FC08
+ .data start:0x0047FC08 end:0x0047FF40
+ .data start:0x0047FF40 end:0x004804C8
+ .data start:0x004804C8 end:0x00480738
+ .data start:0x00480738 end:0x004808E0
+ .data start:0x004808E0 end:0x00480B00
+ .data start:0x00480B00 end:0x00480ED8
+ .data start:0x00480ED8 end:0x004811C0
+ .data start:0x004811C0 end:0x004815F8
+ .data start:0x004815F8 end:0x004819D8
+ .data start:0x004819D8 end:0x00481AB8
+ .data start:0x00481AB8 end:0x00481D80
+ .data start:0x00481D80 end:0x004820A0
+ .data start:0x004820A0 end:0x00482330
+ .data start:0x00482330 end:0x004825C0
+ .data start:0x004825C0 end:0x004826A8
+ .data start:0x004826A8 end:0x00482958
+ .data start:0x00482958 end:0x00482E38
+ .data start:0x00482E38 end:0x00483000
+ .data start:0x00483000 end:0x004830E8
+ .data start:0x004830E8 end:0x00483490
+ .data start:0x00483490 end:0x004835C8
+ .data start:0x004835C8 end:0x00483828
+ .data start:0x00483828 end:0x00483AD0
+ .data start:0x00483AD0 end:0x00483D78
+ .data start:0x00483D78 end:0x00483F88
+ .data start:0x00483F88 end:0x00484070
+ .data start:0x00484070 end:0x004845E8
+ .data start:0x004845E8 end:0x004848D8
+ .data start:0x004848D8 end:0x00484A30
+ .data start:0x00484A30 end:0x00484C98
+ .data start:0x00484C98 end:0x00484DA8
+ .data start:0x00484DA8 end:0x00485418
+ .data start:0x00485418 end:0x00485988
+ .data start:0x00485988 end:0x00485D90
+ .data start:0x00485D90 end:0x00486578
+ .data start:0x00486578 end:0x004868C0
+ .data start:0x004868C0 end:0x0049F8C0
+ .data start:0x0049F8C0 end:0x004A2500
+ .data start:0x004A2500 end:0x004A4180
+ .data start:0x004A4180 end:0x004A9580
+ .data start:0x004A9580 end:0x004ADCC8
+ .data start:0x004ADCC8 end:0x004AE1A0
+ .data start:0x004AE1A0 end:0x004AE340
+ .data start:0x004AE340 end:0x004AE4E0
+ .data start:0x004AE4E0 end:0x004AE5E0
+ .data start:0x004AE5E0 end:0x004AE6E0
+ .data start:0x004AE6E0 end:0x004AF100
+ .data start:0x004AF100 end:0x004AF300
+ .data start:0x004AF300 end:0x004AF3A0
+ .data start:0x004AF3A0 end:0x004B45C0
+ .data start:0x004B45C0 end:0x004BA0D8
+ .data start:0x004BA0D8 end:0x004BAA60
+ .data start:0x004BAA60 end:0x004BAC40
+ .data start:0x004BAC40 end:0x004BAF00
+ .data start:0x004BAF00 end:0x004BE760
+ .data start:0x004BE760 end:0x004BEC00
+ .data start:0x004BEC00 end:0x004C3880
+ .data start:0x004C3880 end:0x004C3A20
+ .data start:0x004C3A20 end:0x004CD1E0
+ .data start:0x004CD1E0 end:0x004D0540
+ .data start:0x004D0540 end:0x004D4180
+ .data start:0x004D4180 end:0x004D43C0
+ .data start:0x004D43C0 end:0x004D7E60
+ .data start:0x004D7E60 end:0x004DB9E0
+ .data start:0x004DB9E0 end:0x004DC980
+ .data start:0x004DC980 end:0x004DDE20
+ .data start:0x004DDE20 end:0x004E1320
+ .data start:0x004E1320 end:0x004E1EA0
+ .data start:0x004E1EA0 end:0x004E9600
+ .data start:0x004E9600 end:0x004EAEE0
+ .data start:0x004EAEE0 end:0x004EB000
+ .data start:0x004EB000 end:0x004EB588
+ .data start:0x004EB588 end:0x004EBAC0
+
+data/npc/model/mdl/ttl_1.c:
+ .data start:0x004EBAC0 end:0x004ED8E0
+
+data/npc/model/tex/ttl_1.c:
+ .data start:0x004ED8E0 end:0x004EE840
+
+data/npc/model/mdl/squ_1.c:
+ .data start:0x004EE840 end:0x004F08E0
+
+data/npc/model/tex/squ_1.c:
+ .data start:0x004F08E0 end:0x004F1B00
+
+data/npc/model/tex/squ_2.c:
+ .data start:0x004F1B00 end:0x004F2D20
+
+data/npc/model/tex/squ_11.c:
+ .data start:0x004F2D20 end:0x004F3F40
+
+data/npc/model/tex/squ_3.c:
+ .data start:0x004F3F40 end:0x004F5160
+
+data/npc/model/tex/squ_4.c:
+ .data start:0x004F5160 end:0x004F6380
+
+data/npc/model/tex/squ_5.c:
+ .data start:0x004F6380 end:0x004F75A0
+
+data/npc/model/tex/squ_6.c:
+ .data start:0x004F75A0 end:0x004F87C0
+
+data/npc/model/tex/squ_7.c:
+ .data start:0x004F87C0 end:0x004F99E0
+
+data/npc/model/tex/squ_8.c:
+ .data start:0x004F99E0 end:0x004FAC00
+
+data/npc/model/tex/squ_9.c:
+ .data start:0x004FAC00 end:0x004FBE20
+
+data/npc/model/tex/squ_10.c:
+ .data start:0x004FBE20 end:0x004FD040
+
+data/npc/model/mdl/mnk_1.c:
+ .data start:0x004FD040 end:0x004FF300
+
+data/npc/model/tex/mnk_1.c:
+ .data start:0x004FF300 end:0x00500720
+
+data/dataobject/dataobject_500720:
+ .data start:0x00500720 end:0x00501BC0
+ .data start:0x00501BC0 end:0x00501EE0
+ .data start:0x00501EE0 end:0x005021C0
+ .data start:0x005021C0 end:0x00502500
+ .data start:0x00502500 end:0x005027A0
+ .data start:0x005027A0 end:0x00502980
+ .data start:0x00502980 end:0x00502F20
+ .data start:0x00502F20 end:0x00503200
+ .data start:0x00503200 end:0x00503340
+ .data start:0x00503340 end:0x00503A00
+ .data start:0x00503A00 end:0x00503CC0
+ .data start:0x00503CC0 end:0x00504000
+ .data start:0x00504000 end:0x005043C0
+ .data start:0x005043C0 end:0x005046A0
+ .data start:0x005046A0 end:0x00504980
+ .data start:0x00504980 end:0x00504C60
+ .data start:0x00504C60 end:0x00504EA0
+ .data start:0x00504EA0 end:0x00506320
+ .data start:0x00506320 end:0x00508020
+ .data start:0x00508020 end:0x005083E0
+ .data start:0x005083E0 end:0x00508720
+ .data start:0x00508720 end:0x00508A00
+ .data start:0x00508A00 end:0x00508F20
+ .data start:0x00508F20 end:0x00509300
+ .data start:0x00509300 end:0x00509F00
+ .data start:0x00509F00 end:0x0050A260
+ .data start:0x0050A260 end:0x0050B4A0
+ .data start:0x0050B4A0 end:0x0050B5E0
+ .data start:0x0050B5E0 end:0x0050B8A0
+ .data start:0x0050B8A0 end:0x0050BA20
+ .data start:0x0050BA20 end:0x0050BFE0
+ .data start:0x0050BFE0 end:0x0050C560
+ .data start:0x0050C560 end:0x0050C720
+ .data start:0x0050C720 end:0x0050E760
+ .data start:0x0050E760 end:0x005116C0
+ .data start:0x005116C0 end:0x00514F80
+ .data start:0x00514F80 end:0x00517E40
+ .data start:0x00517E40 end:0x00519EC0
+ .data start:0x00519EC0 end:0x0051B520
+ .data start:0x0051B520 end:0x005208A0
+ .data start:0x005208A0 end:0x00523360
+ .data start:0x00523360 end:0x005245E0
+ .data start:0x005245E0 end:0x00525860
+ .data start:0x00525860 end:0x005278A0
+ .data start:0x005278A0 end:0x005283E0
+ .data start:0x005283E0 end:0x0052AEC0
+ .data start:0x0052AEC0 end:0x0052D240
+ .data start:0x0052D240 end:0x00531980
+ .data start:0x00531980 end:0x005356C0
+ .data start:0x005356C0 end:0x005376E0
+ .data start:0x005376E0 end:0x00539E60
+ .data start:0x00539E60 end:0x0053B400
+ .data start:0x0053B400 end:0x0053DBA0
+ .data start:0x0053DBA0 end:0x0053E9E0
+ .data start:0x0053E9E0 end:0x00543160
+ .data start:0x00543160 end:0x00545680
+ .data start:0x00545680 end:0x0055D300
+ .data start:0x0055D300 end:0x00571440
+ .data start:0x00571440 end:0x00575200
+ .data start:0x00575200 end:0x005791C0
+ .data start:0x005791C0 end:0x0057A520
+ .data start:0x0057A520 end:0x0057B960
+ .data start:0x0057B960 end:0x0057DA60
+ .data start:0x0057DA60 end:0x0058EDA0
+ .data start:0x0058EDA0 end:0x00597D20
+ .data start:0x00597D20 end:0x005A4640
+ .data start:0x005A4640 end:0x005A8B80
+ .data start:0x005A8B80 end:0x005AA4E0
+ .data start:0x005AA4E0 end:0x005AD3E0
+ .data start:0x005AD3E0 end:0x005B0400
+ .data start:0x005B0400 end:0x005B2740
+ .data start:0x005B2740 end:0x005B69C0
+ .data start:0x005B69C0 end:0x005B8F60
+ .data start:0x005B8F60 end:0x005BC5C0
+
+data/npc/model/mdl/rcs_1.c:
+ .data start:0x005BC5C0 end:0x005BE6C0
+
+data/npc/model/tex/rcs_1.c:
+ .data start:0x005BE6C0 end:0x005BF460
+
+data/scene/tent.c:
+ .data start:0x005BF460 end:0x005BF4D8
+
+data/scene/test_fd_npc_land.c:
+ .data start:0x005BF4D8 end:0x005BF568
+
+data/scene/water_test.c:
+ .data start:0x005BF568 end:0x005BF5E8
+
+data/scene/test_step01.c:
+ .data start:0x005BF5E8 end:0x005BF618
+
+data/scene/title_demo.c:
+ .data start:0x005BF618 end:0x005BF6A0
+
+data/dataobject/dataobject_5BF6A0:
+ .data start:0x005BF6A0 end:0x005BFBE0
+ .data start:0x005BFBE0 end:0x005C0460
+ .data start:0x005C0460 end:0x005C0AE0
+ .data start:0x005C0AE0 end:0x005C13E0
+ .data start:0x005C13E0 end:0x005C1CE0
+ .data start:0x005C1CE0 end:0x005C25E0
+ .data start:0x005C25E0 end:0x005C2EE0
+ .data start:0x005C2EE0 end:0x005C34C0
+ .data start:0x005C34C0 end:0x005C3920
+ .data start:0x005C3920 end:0x005C3C78
+ .data start:0x005C3C78 end:0x005C3CC0
+ .data start:0x005C3CC0 end:0x005C4560
+ .data start:0x005C4560 end:0x005C4BC0
+ .data start:0x005C4BC0 end:0x005C5220
+ .data start:0x005C5220 end:0x005C5880
+ .data start:0x005C5880 end:0x005C5E80
+ .data start:0x005C5E80 end:0x005C5F38
+ .data start:0x005C5F38 end:0x005C5FC0
+ .data start:0x005C5FC0 end:0x005C6700
+ .data start:0x005C6700 end:0x005C6DE0
+ .data start:0x005C6DE0 end:0x005C75A0
+ .data start:0x005C75A0 end:0x005C8780
+ .data start:0x005C8780 end:0x005C9960
+ .data start:0x005C9960 end:0x005C9E00
+ .data start:0x005C9E00 end:0x005CAAC0
+ .data start:0x005CAAC0 end:0x005CB360
+ .data start:0x005CB360 end:0x005CBE80
+ .data start:0x005CBE80 end:0x005CC920
+ .data start:0x005CC920 end:0x005CD1C0
+ .data start:0x005CD1C0 end:0x005CDA60
+ .data start:0x005CDA60 end:0x005CE580
+ .data start:0x005CE580 end:0x005CF020
+ .data start:0x005CF020 end:0x005CF920
+ .data start:0x005CF920 end:0x005D0220
+ .data start:0x005D0220 end:0x005D0B20
+ .data start:0x005D0B20 end:0x005D1420
+ .data start:0x005D1420 end:0x005D1F20
+ .data start:0x005D1F20 end:0x005D2820
+ .data start:0x005D2820 end:0x005D30C0
+ .data start:0x005D30C0 end:0x005D3AA0
+ .data start:0x005D3AA0 end:0x005D4340
+ .data start:0x005D4340 end:0x005D4D40
+ .data start:0x005D4D40 end:0x005D5540
+ .data start:0x005D5540 end:0x005D5F00
+ .data start:0x005D5F00 end:0x005D6720
+ .data start:0x005D6720 end:0x005D71C0
+ .data start:0x005D71C0 end:0x005D7A80
+ .data start:0x005D7A80 end:0x005D8580
+ .data start:0x005D8580 end:0x005D8E60
+ .data start:0x005D8E60 end:0x005D96E0
+ .data start:0x005D96E0 end:0x005DA0E0
+ .data start:0x005DA0E0 end:0x005DAB60
+ .data start:0x005DAB60 end:0x005DB3E0
+ .data start:0x005DB3E0 end:0x005DBC80
+ .data start:0x005DBC80 end:0x005DC520
+ .data start:0x005DC520 end:0x005DCE20
+ .data start:0x005DCE20 end:0x005DD6C0
+ .data start:0x005DD6C0 end:0x005DDD60
+ .data start:0x005DDD60 end:0x005DE280
+ .data start:0x005DE280 end:0x005DEAC0
+ .data start:0x005DEAC0 end:0x005DF300
+
+data/scene/test01.c:
+ .data start:0x005DF300 end:0x005DF388
+
+data/scene/test02.c:
+ .data start:0x005DF388 end:0x005DF3D8
+
+data/scene/test03.c:
+ .data start:0x005DF3D8 end:0x005DF460
+
+data/scene/test04.c:
+ .data start:0x005DF460 end:0x005DF4B0
+
+data/scene/test05.c:
+ .data start:0x005DF4B0 end:0x005DF4F8
+
+data/npc/model/mdl/tig_1.c:
+ .data start:0x005DF4F8 end:0x005E19A0
+
+data/npc/model/tex/tig_1.c:
+ .data start:0x005E19A0 end:0x005E2740
+
+data/npc/model/tex/tig_2.c:
+ .data start:0x005E2740 end:0x005E34E0
+
+data/npc/model/tex/tig_3.c:
+ .data start:0x005E34E0 end:0x005E4280
+
+data/npc/model/tex/tig_4.c:
+ .data start:0x005E4280 end:0x005E5020
+
+data/dataobject/dataobject_5E5020:
+ .data start:0x005E5020 end:0x005E5420
+ .data start:0x005E5420 end:0x005E5820
+ .data start:0x005E5820 end:0x005E5C20
+ .data start:0x005E5C20 end:0x005E6020
+ .data start:0x005E6020 end:0x005E6420
+ .data start:0x005E6420 end:0x005E6A20
+ .data start:0x005E6A20 end:0x005EA2E0
+ .data start:0x005EA2E0 end:0x005EE480
+ .data start:0x005EE480 end:0x005EEB40
+ .data start:0x005EEB40 end:0x005F1040
+ .data start:0x005F1040 end:0x005F1760
+ .data start:0x005F1760 end:0x005F3A60
+ .data start:0x005F3A60 end:0x005F3CD8
+
+data/titledemo/pact0.c:
+ .data start:0x005F3CD8 end:0x005F4B38
+
+data/titledemo/pact1.c:
+ .data start:0x005F4B38 end:0x005F5998
+
+data/titledemo/pact2.c:
+ .data start:0x005F5998 end:0x005F6818
+
+data/titledemo/pact3.c:
+ .data start:0x005F6818 end:0x005F7698
+
+data/titledemo/pact4.c:
+ .data start:0x005F7698 end:0x005F8508
+
+data/npc/model/mdl/end_1.c:
+ .data start:0x005F8508 end:0x005FABC0
+
+data/npc/model/tex/end_1.c:
+ .data start:0x005FABC0 end:0x005FBEA0
+
+data/dataobject/dataobject_5FBEA0:
+ .data start:0x005FBEA0 end:0x005FBF80
+ .data start:0x005FBF80 end:0x005FC6E0
+ .data start:0x005FC6E0 end:0x005FE210
+
+data/npc/model/mdl/tuk_1.c:
+ .data start:0x005FE210 end:0x00600B80
+
+data/npc/model/tex/tuk_1.c:
+ .data start:0x00600B80 end:0x00601A20
+
+data/dataobject/dataobject_601A20:
+ .data start:0x00601A20 end:0x00601D60
+ .data start:0x00601D60 end:0x00602088
+
+data/npc/model/mdl/wol_1.c:
+ .data start:0x00602088 end:0x00604160
+
+data/npc/model/tex/wol_1.c:
+ .data start:0x00604160 end:0x00604D80
+
+data/npc/model/tex/wol_2.c:
+ .data start:0x00604D80 end:0x006059A0
+
+data/npc/model/tex/wol_3.c:
+ .data start:0x006059A0 end:0x006065C0
+
+data/npc/model/tex/wol_4.c:
+ .data start:0x006065C0 end:0x006071E0
+
+data/npc/model/tex/wol_5.c:
+ .data start:0x006071E0 end:0x00607E00
+
+data/npc/model/tex/wol_6.c:
+ .data start:0x00607E00 end:0x00608A20
+
+data/dataobject/dataobject_608A20:
+ .data start:0x00608A20 end:0x00608A68
+ .data start:0x00608A68 end:0x00608A98
+ .data start:0x00608A98 end:0x00608AB0
+ .data start:0x00608AB0 end:0x00608B28
+ .data start:0x00608B28 end:0x00608C30
+ .data start:0x00608C30 end:0x00608CF0
+ .data start:0x00608CF0 end:0x00608D50
+ .data start:0x00608D50 end:0x00608DB0
+ .data start:0x00608DB0 end:0x00608DC8
+ .data start:0x00608DC8 end:0x00608DF8
+ .data start:0x00608DF8 end:0x00608E10
+ .data start:0x00608E10 end:0x00608E40
+ .data start:0x00608E40 end:0x00608E70
+ .data start:0x00608E70 end:0x00608EA0
+ .data start:0x00608EA0 end:0x00608ED0
+ .data start:0x00608ED0 end:0x00608F00
+ .data start:0x00608F00 end:0x00608F30
+ .data start:0x00608F30 end:0x00608F60
+ .data start:0x00608F60 end:0x00608F90
+ .data start:0x00608F90 end:0x00608FC0
+ .data start:0x00608FC0 end:0x00609008
+ .data start:0x00609008 end:0x00609050
+ .data start:0x00609050 end:0x00609098
+ .data start:0x00609098 end:0x006090E0
+ .data start:0x006090E0 end:0x00609140
+ .data start:0x00609140 end:0x006091A0
+ .data start:0x006091A0 end:0x00609200
+ .data start:0x00609200 end:0x00609260
+ .data start:0x00609260 end:0x00609290
+ .data start:0x00609290 end:0x00609410
+ .data start:0x00609410 end:0x00609440
+ .data start:0x00609440 end:0x00609FA0
+ .data start:0x00609FA0 end:0x0060AA40
+ .data start:0x0060AA40 end:0x0060B560
+ .data start:0x0060B560 end:0x0060C2A8
+ .data start:0x0060C2A8 end:0x0060C6A8
+ .data start:0x0060C6A8 end:0x0060C7A8
+
+data/field/bg/beach_pal.c:
+ .data start:0x0060C7A8 end:0x0060C928
+
+data/dataobject/dataobject_60C928:
+ .data start:0x0060C928 end:0x0060CD28
+ .data start:0x0060CD28 end:0x0060CD40
+
+data/field/bg/acre/grd_yamishop/grd_yamishop.c:
+ .data start:0x0060CD40 end:0x006106A0
+
+data/field/bg/acre/grd_post_office/grd_post_office.c:
+ .data start:0x006106A0 end:0x00615F08
+
+data/field/bg/acre/tmp4/tmp4.c:
+ .data start:0x00615F08 end:0x00617198
+
+data/field/bg/acre/tmpr4/tmpr4_evw_anime.c:
+ .data start:0x00617198 end:0x006171D8
+
+data/field/bg/acre/tmpr4/tmpr4.c:
+ .data start:0x006171D8 end:0x00618D78
+
+data/field/bg/acre/tmp3/tmp3.c:
+ .data start:0x00618D78 end:0x0061A2F8
+
+data/field/bg/acre/tmpr3/tmpr3_evw_anime.c:
+ .data start:0x0061A2F8 end:0x0061A338
+
+data/field/bg/acre/tmpr3/tmpr3.c:
+ .data start:0x0061A338 end:0x0061BE38
+
+data/field/bg/acre/tmp/tmp.c:
+ .data start:0x0061BE38 end:0x0061C0E0
+
+data/field/bg/acre/tmpr/tmpr_evw_anime.c:
+ .data start:0x0061C0E0 end:0x0061C0F0
+
+data/field/bg/acre/tmpr/tmpr.c:
+ .data start:0x0061C0F0 end:0x0061D3C8
+
+data/field/bg/acre/tmp2/tmp2.c:
+ .data start:0x0061D3C8 end:0x0061F968
+
+data/field/bg/acre/tmpr2/tmpr2_evw_anime.c:
+ .data start:0x0061F968 end:0x0061F978
+
+data/field/bg/acre/tmpr2/tmpr2.c:
+ .data start:0x0061F978 end:0x006207C0
+
+data/dataobject/dataobject_6207C0:
+ .data start:0x006207C0 end:0x006208A8
+ .data start:0x006208A8 end:0x00620930
+ .data start:0x00620930 end:0x00620950
+ .data start:0x00620950 end:0x00620960
+ .data start:0x00620960 end:0x00622160
+ .data start:0x00622160 end:0x00623960
+ .data start:0x00623960 end:0x00623980
+ .data start:0x00623980 end:0x00625180
+ .data start:0x00625180 end:0x00626980
+ .data start:0x00626980 end:0x00628180
+ .data start:0x00628180 end:0x00629980
+ .data start:0x00629980 end:0x0062A580
+ .data start:0x0062A580 end:0x0062B180
+
+data/field/bg/bush_pal.c:
+ .data start:0x0062B180 end:0x0062B300
+
+data/dataobject/dataobject_62B300:
+ .data start:0x0062B300 end:0x0062B400
+ .data start:0x0062B400 end:0x0062B488
+
+data/field/bg/cliff_pal.c:
+ .data start:0x0062B488 end:0x0062B620
+
+data/dataobject/dataobject_62B620:
+ .data start:0x0062B620 end:0x0062CE20
+ .data start:0x0062CE20 end:0x0062E620
+ .data start:0x0062E620 end:0x0062E878
+ .data start:0x0062E878 end:0x0062EA78
+ .data start:0x0062EA78 end:0x0062EAA0
+ .data start:0x0062EAA0 end:0x0062F960
+ .data start:0x0062F960 end:0x00630480
+ .data start:0x00630480 end:0x00631200
+ .data start:0x00631200 end:0x00631520
+ .data start:0x00631520 end:0x00632120
+ .data start:0x00632120 end:0x006328C0
+ .data start:0x006328C0 end:0x006332A0
+ .data start:0x006332A0 end:0x00633CE0
+ .data start:0x00633CE0 end:0x00634920
+ .data start:0x00634920 end:0x00634C40
+ .data start:0x00634C40 end:0x00635940
+ .data start:0x00635940 end:0x006361C0
+ .data start:0x006361C0 end:0x00637040
+ .data start:0x00637040 end:0x00637360
+ .data start:0x00637360 end:0x00637F60
+ .data start:0x00637F60 end:0x006387C0
+ .data start:0x006387C0 end:0x00639040
+ .data start:0x00639040 end:0x00639360
+ .data start:0x00639360 end:0x0063A180
+ .data start:0x0063A180 end:0x0063AF20
+ .data start:0x0063AF20 end:0x0063B240
+ .data start:0x0063B240 end:0x0063B560
+ .data start:0x0063B560 end:0x0063BF20
+ .data start:0x0063BF20 end:0x0063C940
+ .data start:0x0063C940 end:0x0063D400
+ .data start:0x0063D400 end:0x0063E200
+ .data start:0x0063E200 end:0x0063E520
+ .data start:0x0063E520 end:0x0063F100
+ .data start:0x0063F100 end:0x0063FAE0
+ .data start:0x0063FAE0 end:0x00640840
+ .data start:0x00640840 end:0x00640B60
+ .data start:0x00640B60 end:0x00641780
+ .data start:0x00641780 end:0x006421C0
+ .data start:0x006421C0 end:0x00642C00
+
+data/field/bg/earth_pal.c:
+ .data start:0x00642C00 end:0x00642D80
+
+data/dataobject/dataobject_642D80:
+ .data start:0x00642D80 end:0x00644580
+ .data start:0x00644580 end:0x00645D80
+ .data start:0x00645D80 end:0x00645FC0
+ .data start:0x00645FC0 end:0x00646108
+ .data start:0x00646108 end:0x00646348
+ .data start:0x00646348 end:0x00646490
+ .data start:0x00646490 end:0x00646540
+ .data start:0x00646540 end:0x00646590
+ .data start:0x00646590 end:0x006465F8
+ .data start:0x006465F8 end:0x00646690
+ .data start:0x00646690 end:0x006468D0
+ .data start:0x006468D0 end:0x00646A78
+ .data start:0x00646A78 end:0x00646CB8
+ .data start:0x00646CB8 end:0x00646E60
+ .data start:0x00646E60 end:0x00646F10
+ .data start:0x00646F10 end:0x00646F60
+ .data start:0x00646F60 end:0x00646FC8
+ .data start:0x00646FC8 end:0x006470C0
+ .data start:0x006470C0 end:0x00647300
+ .data start:0x00647300 end:0x00647508
+ .data start:0x00647508 end:0x00647748
+ .data start:0x00647748 end:0x00647950
+ .data start:0x00647950 end:0x006479F0
+ .data start:0x006479F0 end:0x00647A40
+ .data start:0x00647A40 end:0x00647AA8
+ .data start:0x00647AA8 end:0x00647C00
+ .data start:0x00647C00 end:0x00647C60
+ .data start:0x00647C60 end:0x00648C60
+ .data start:0x00648C60 end:0x00648EA0
+ .data start:0x00648EA0 end:0x00649110
+ .data start:0x00649110 end:0x00649350
+ .data start:0x00649350 end:0x006495C0
+ .data start:0x006495C0 end:0x00649660
+ .data start:0x00649660 end:0x006496B0
+ .data start:0x006496B0 end:0x00649720
+ .data start:0x00649720 end:0x006498E0
+ .data start:0x006498E0 end:0x00649B20
+ .data start:0x00649B20 end:0x00649F30
+ .data start:0x00649F30 end:0x0064A170
+ .data start:0x0064A170 end:0x0064A580
+ .data start:0x0064A580 end:0x0064A620
+ .data start:0x0064A620 end:0x0064A670
+ .data start:0x0064A670 end:0x0064A6E0
+ .data start:0x0064A6E0 end:0x0064AA40
+ .data start:0x0064AA40 end:0x0064AC80
+ .data start:0x0064AC80 end:0x0064B200
+ .data start:0x0064B200 end:0x0064B440
+ .data start:0x0064B440 end:0x0064B9C0
+ .data start:0x0064B9C0 end:0x0064BA60
+ .data start:0x0064BA60 end:0x0064BAB0
+ .data start:0x0064BAB0 end:0x0064BB20
+ .data start:0x0064BB20 end:0x0064BFF0
+ .data start:0x0064BFF0 end:0x0064C060
+ .data start:0x0064C060 end:0x0064D060
+ .data start:0x0064D060 end:0x0064D2C0
+ .data start:0x0064D2C0 end:0x0064D4C0
+ .data start:0x0064D4C0 end:0x0064D720
+ .data start:0x0064D720 end:0x0064D920
+ .data start:0x0064D920 end:0x0064D9D0
+ .data start:0x0064D9D0 end:0x0064DA20
+ .data start:0x0064DA20 end:0x0064DAA0
+ .data start:0x0064DAA0 end:0x0064DBF0
+ .data start:0x0064DBF0 end:0x0064DE50
+ .data start:0x0064DE50 end:0x0064E160
+ .data start:0x0064E160 end:0x0064E3C0
+ .data start:0x0064E3C0 end:0x0064E6D0
+ .data start:0x0064E6D0 end:0x0064E780
+ .data start:0x0064E780 end:0x0064E7D0
+ .data start:0x0064E7D0 end:0x0064E838
+ .data start:0x0064E838 end:0x0064EA98
+ .data start:0x0064EA98 end:0x0064ECF8
+ .data start:0x0064ECF8 end:0x0064F128
+ .data start:0x0064F128 end:0x0064F388
+ .data start:0x0064F388 end:0x0064F7B8
+ .data start:0x0064F7B8 end:0x0064F868
+ .data start:0x0064F868 end:0x0064F8F0
+ .data start:0x0064F8F0 end:0x0064F958
+ .data start:0x0064F958 end:0x0064FCD8
+ .data start:0x0064FCD8 end:0x0064FD40
+ .data start:0x0064FD40 end:0x00650D40
+ .data start:0x00650D40 end:0x00650F80
+ .data start:0x00650F80 end:0x006510C8
+ .data start:0x006510C8 end:0x00651308
+ .data start:0x00651308 end:0x00651450
+ .data start:0x00651450 end:0x00651500
+ .data start:0x00651500 end:0x00651550
+ .data start:0x00651550 end:0x006515B8
+ .data start:0x006515B8 end:0x00651650
+ .data start:0x00651650 end:0x00651890
+ .data start:0x00651890 end:0x00651A38
+ .data start:0x00651A38 end:0x00651C78
+ .data start:0x00651C78 end:0x00651E20
+ .data start:0x00651E20 end:0x00651ED0
+ .data start:0x00651ED0 end:0x00651F20
+ .data start:0x00651F20 end:0x00651F88
+ .data start:0x00651F88 end:0x00652080
+ .data start:0x00652080 end:0x006522C0
+ .data start:0x006522C0 end:0x006524C8
+ .data start:0x006524C8 end:0x00652708
+ .data start:0x00652708 end:0x00652910
+ .data start:0x00652910 end:0x006529B0
+ .data start:0x006529B0 end:0x00652A00
+ .data start:0x00652A00 end:0x00652A68
+ .data start:0x00652A68 end:0x00652BC0
+ .data start:0x00652BC0 end:0x00652C20
+ .data start:0x00652C20 end:0x00653C20
+ .data start:0x00653C20 end:0x00653E60
+ .data start:0x00653E60 end:0x006540D0
+ .data start:0x006540D0 end:0x00654310
+ .data start:0x00654310 end:0x00654580
+ .data start:0x00654580 end:0x00654620
+ .data start:0x00654620 end:0x00654670
+ .data start:0x00654670 end:0x006546E0
+ .data start:0x006546E0 end:0x006548A0
+ .data start:0x006548A0 end:0x00654AE0
+ .data start:0x00654AE0 end:0x00654EF0
+ .data start:0x00654EF0 end:0x00655130
+ .data start:0x00655130 end:0x00655540
+ .data start:0x00655540 end:0x006555E0
+ .data start:0x006555E0 end:0x00655630
+ .data start:0x00655630 end:0x006556A0
+ .data start:0x006556A0 end:0x00655A00
+ .data start:0x00655A00 end:0x00655C48
+ .data start:0x00655C48 end:0x006563C0
+ .data start:0x006563C0 end:0x00656608
+ .data start:0x00656608 end:0x00656D80
+ .data start:0x00656D80 end:0x00656E28
+ .data start:0x00656E28 end:0x00656E80
+ .data start:0x00656E80 end:0x00656EF8
+ .data start:0x00656EF8 end:0x006575C0
+ .data start:0x006575C0 end:0x00657660
+ .data start:0x00657660 end:0x00658880
+ .data start:0x00658880 end:0x00658AE0
+ .data start:0x00658AE0 end:0x00658CE0
+ .data start:0x00658CE0 end:0x00658F40
+ .data start:0x00658F40 end:0x00659140
+ .data start:0x00659140 end:0x006591F0
+ .data start:0x006591F0 end:0x00659240
+ .data start:0x00659240 end:0x006592C0
+ .data start:0x006592C0 end:0x00659410
+ .data start:0x00659410 end:0x00659670
+ .data start:0x00659670 end:0x00659980
+ .data start:0x00659980 end:0x00659BE0
+ .data start:0x00659BE0 end:0x00659EF0
+ .data start:0x00659EF0 end:0x00659FA0
+ .data start:0x00659FA0 end:0x00659FF0
+ .data start:0x00659FF0 end:0x0065A058
+ .data start:0x0065A058 end:0x0065A2B8
+ .data start:0x0065A2B8 end:0x0065A518
+ .data start:0x0065A518 end:0x0065A948
+ .data start:0x0065A948 end:0x0065ABA8
+ .data start:0x0065ABA8 end:0x0065AFD8
+ .data start:0x0065AFD8 end:0x0065B088
+ .data start:0x0065B088 end:0x0065B110
+ .data start:0x0065B110 end:0x0065B178
+ .data start:0x0065B178 end:0x0065B4F8
+ .data start:0x0065B4F8 end:0x0065B560
+ .data start:0x0065B560 end:0x0065C560
+ .data start:0x0065C560 end:0x0065C7A0
+ .data start:0x0065C7A0 end:0x0065C8E8
+ .data start:0x0065C8E8 end:0x0065CB28
+ .data start:0x0065CB28 end:0x0065CC70
+ .data start:0x0065CC70 end:0x0065CD20
+ .data start:0x0065CD20 end:0x0065CD70
+ .data start:0x0065CD70 end:0x0065CDD8
+ .data start:0x0065CDD8 end:0x0065CE70
+ .data start:0x0065CE70 end:0x0065D0B0
+ .data start:0x0065D0B0 end:0x0065D258
+ .data start:0x0065D258 end:0x0065D498
+ .data start:0x0065D498 end:0x0065D640
+ .data start:0x0065D640 end:0x0065D6F0
+ .data start:0x0065D6F0 end:0x0065D740
+ .data start:0x0065D740 end:0x0065D7A8
+ .data start:0x0065D7A8 end:0x0065D8A0
+ .data start:0x0065D8A0 end:0x0065D938
+ .data start:0x0065D938 end:0x0065DB80
+ .data start:0x0065DB80 end:0x0065DE88
+ .data start:0x0065DE88 end:0x0065E0D0
+ .data start:0x0065E0D0 end:0x0065E3D8
+ .data start:0x0065E3D8 end:0x0065E480
+ .data start:0x0065E480 end:0x0065E4D8
+ .data start:0x0065E4D8 end:0x0065E548
+ .data start:0x0065E548 end:0x0065E7A0
+ .data start:0x0065E7A0 end:0x0065F9C0
+ .data start:0x0065F9C0 end:0x0065FFA0
+ .data start:0x0065FFA0 end:0x00660140
+ .data start:0x00660140 end:0x00660860
+ .data start:0x00660860 end:0x00661700
+ .data start:0x00661700 end:0x006618A0
+ .data start:0x006618A0 end:0x00661B38
+ .data start:0x00661B38 end:0x00661B40
+ .data start:0x00661B40 end:0x006623C0
+ .data start:0x006623C0 end:0x00662C30
+ .data start:0x00662C30 end:0x00662EC0
+ .data start:0x00662EC0 end:0x00663480
+ .data start:0x00663480 end:0x00663D80
+ .data start:0x00663D80 end:0x00664A60
+ .data start:0x00664A60 end:0x00664F00
+ .data start:0x00664F00 end:0x00665260
+ .data start:0x00665260 end:0x00665700
+ .data start:0x00665700 end:0x006659C0
+ .data start:0x006659C0 end:0x00665E60
+ .data start:0x00665E60 end:0x00666360
+ .data start:0x00666360 end:0x00666C00
+ .data start:0x00666C00 end:0x006674A0
+ .data start:0x006674A0 end:0x00667D40
+ .data start:0x00667D40 end:0x00668100
+ .data start:0x00668100 end:0x006685A0
+ .data start:0x006685A0 end:0x00668A40
+ .data start:0x00668A40 end:0x00668EE0
+ .data start:0x00668EE0 end:0x00669380
+ .data start:0x00669380 end:0x006697C0
+ .data start:0x006697C0 end:0x00669960
+ .data start:0x00669960 end:0x00669DC0
+ .data start:0x00669DC0 end:0x00669F60
+ .data start:0x00669F60 end:0x0066A240
+ .data start:0x0066A240 end:0x0066A4E0
+ .data start:0x0066A4E0 end:0x0066A680
+ .data start:0x0066A680 end:0x0066AB20
+ .data start:0x0066AB20 end:0x0066ADC0
+ .data start:0x0066ADC0 end:0x0066B3E0
+ .data start:0x0066B3E0 end:0x0066B620
+ .data start:0x0066B620 end:0x0066B8C0
+ .data start:0x0066B8C0 end:0x0066BAE0
+ .data start:0x0066BAE0 end:0x0066BF80
+ .data start:0x0066BF80 end:0x0066C120
+ .data start:0x0066C120 end:0x0066C2C0
+ .data start:0x0066C2C0 end:0x0066CDA0
+ .data start:0x0066CDA0 end:0x0066D880
+ .data start:0x0066D880 end:0x0066DD60
+ .data start:0x0066DD60 end:0x0066E280
+ .data start:0x0066E280 end:0x0066E980
+ .data start:0x0066E980 end:0x0066EAA0
+ .data start:0x0066EAA0 end:0x0066F538
+ .data start:0x0066F538 end:0x0066F540
+ .data start:0x0066F540 end:0x0066FD60
+ .data start:0x0066FD60 end:0x00670200
+ .data start:0x00670200 end:0x00670B40
+ .data start:0x00670B40 end:0x00670FA0
+ .data start:0x00670FA0 end:0x006716E0
+ .data start:0x006716E0 end:0x00671F40
+ .data start:0x00671F40 end:0x006723E0
+ .data start:0x006723E0 end:0x00672500
+ .data start:0x00672500 end:0x00672CA0
+ .data start:0x00672CA0 end:0x006731C0
+ .data start:0x006731C0 end:0x006738E0
+ .data start:0x006738E0 end:0x006744A0
+ .data start:0x006744A0 end:0x006745C0
+ .data start:0x006745C0 end:0x00674E60
+ .data start:0x00674E60 end:0x00675700
+ .data start:0x00675700 end:0x006758A0
+ .data start:0x006758A0 end:0x00675DF8
+ .data start:0x00675DF8 end:0x00675E00
+ .data start:0x00675E00 end:0x00676980
+ .data start:0x00676980 end:0x00677CC0
+ .data start:0x00677CC0 end:0x00678160
+ .data start:0x00678160 end:0x00678600
+ .data start:0x00678600 end:0x006786E0
+ .data start:0x006786E0 end:0x00679720
+ .data start:0x00679720 end:0x00679800
+ .data start:0x00679800 end:0x00679F68
+ .data start:0x00679F68 end:0x0067A040
+ .data start:0x0067A040 end:0x0067A890
+ .data start:0x0067A890 end:0x0067A960
+ .data start:0x0067A960 end:0x0067B028
+ .data start:0x0067B028 end:0x0067B100
+ .data start:0x0067B100 end:0x0067B8C8
+ .data start:0x0067B8C8 end:0x0067B9A0
+ .data start:0x0067B9A0 end:0x0067C168
+ .data start:0x0067C168 end:0x0067C240
+ .data start:0x0067C240 end:0x0067CC90
+ .data start:0x0067CC90 end:0x0067CD60
+ .data start:0x0067CD60 end:0x0067D368
+ .data start:0x0067D368 end:0x0067D460
+ .data start:0x0067D460 end:0x0067DB20
+ .data start:0x0067DB20 end:0x0067DC00
+ .data start:0x0067DC00 end:0x0067E2A0
+ .data start:0x0067E2A0 end:0x0067E380
+ .data start:0x0067E380 end:0x0067EA20
+ .data start:0x0067EA20 end:0x0067EB00
+ .data start:0x0067EB00 end:0x0067F1E8
+ .data start:0x0067F1E8 end:0x0067F2C0
+ .data start:0x0067F2C0 end:0x0067FAF0
+ .data start:0x0067FAF0 end:0x0067FBC0
+ .data start:0x0067FBC0 end:0x00680410
+ .data start:0x00680410 end:0x00680500
+ .data start:0x00680500 end:0x00680F30
+ .data start:0x00680F30 end:0x00681000
+ .data start:0x00681000 end:0x00681830
+ .data start:0x00681830 end:0x00681888
+ .data start:0x00681888 end:0x00681900
+ .data start:0x00681900 end:0x00683258
+ .data start:0x00683258 end:0x006833A0
+ .data start:0x006833A0 end:0x00683ED8
+ .data start:0x00683ED8 end:0x00683FC0
+ .data start:0x00683FC0 end:0x00684990
+ .data start:0x00684990 end:0x00684A60
+ .data start:0x00684A60 end:0x00685260
+ .data start:0x00685260 end:0x006858C0
+ .data start:0x006858C0 end:0x006859A0
+ .data start:0x006859A0 end:0x00685EC0
+ .data start:0x00685EC0 end:0x00685FA0
+ .data start:0x00685FA0 end:0x006869D8
+ .data start:0x006869D8 end:0x00686AC0
+ .data start:0x00686AC0 end:0x006872F8
+ .data start:0x006872F8 end:0x006873E0
+ .data start:0x006873E0 end:0x00687BF0
+ .data start:0x00687BF0 end:0x00687CC0
+ .data start:0x00687CC0 end:0x006884A8
+ .data start:0x006884A8 end:0x006885A0
+ .data start:0x006885A0 end:0x00688C40
+ .data start:0x00688C40 end:0x00688D20
+ .data start:0x00688D20 end:0x006898A0
+ .data start:0x006898A0 end:0x006899E0
+ .data start:0x006899E0 end:0x0068A688
+ .data start:0x0068A688 end:0x0068A760
+ .data start:0x0068A760 end:0x0068ADF8
+ .data start:0x0068ADF8 end:0x0068AF00
+ .data start:0x0068AF00 end:0x0068B758
+ .data start:0x0068B758 end:0x0068B840
+ .data start:0x0068B840 end:0x0068C058
+ .data start:0x0068C058 end:0x0068C140
+ .data start:0x0068C140 end:0x0068C920
+ .data start:0x0068C920 end:0x0068CA00
+ .data start:0x0068CA00 end:0x0068D1E8
+ .data start:0x0068D1E8 end:0x0068D2C0
+ .data start:0x0068D2C0 end:0x0068D920
+ .data start:0x0068D920 end:0x0068DA00
+ .data start:0x0068DA00 end:0x0068E100
+ .data start:0x0068E100 end:0x0068EE80
+ .data start:0x0068EE80 end:0x0068EF08
+ .data start:0x0068EF08 end:0x0068F000
+ .data start:0x0068F000 end:0x0068F608
+ .data start:0x0068F608 end:0x0068F6E0
+ .data start:0x0068F6E0 end:0x0068FF38
+ .data start:0x0068FF38 end:0x006900A0
+ .data start:0x006900A0 end:0x00690A40
+ .data start:0x00690A40 end:0x006949E0
+ .data start:0x006949E0 end:0x006949F0
+ .data start:0x006949F0 end:0x00694AA0
+ .data start:0x00694AA0 end:0x00694FD0
+ .data start:0x00694FD0 end:0x00695080
+ .data start:0x00695080 end:0x00695A20
+ .data start:0x00695A20 end:0x00695AC0
+ .data start:0x00695AC0 end:0x00695FE8
+ .data start:0x00695FE8 end:0x00696080
+ .data start:0x00696080 end:0x00696860
+ .data start:0x00696860 end:0x006981A0
+ .data start:0x006981A0 end:0x006981B0
+ .data start:0x006981B0 end:0x00698208
+ .data start:0x00698208 end:0x00698220
+ .data start:0x00698220 end:0x006986F8
+ .data start:0x006986F8 end:0x006990E0
+ .data start:0x006990E0 end:0x00699220
+ .data start:0x00699220 end:0x00699820
+ .data start:0x00699820 end:0x00699E20
+
+data/field/bg/acre/grd_s_c1_1/grd_s_c1_1.c:
+ .data start:0x00699E20 end:0x0069AEC0
+
+data/field/bg/acre/grd_s_c1_2/grd_s_c1_2.c:
+ .data start:0x0069AEC0 end:0x0069C010
+
+data/field/bg/acre/grd_s_c1_3/grd_s_c1_3.c:
+ .data start:0x0069C010 end:0x0069D098
+
+data/field/bg/acre/grd_s_c1_4/grd_s_c1_4.c:
+ .data start:0x0069D098 end:0x0069E368
+
+data/field/bg/acre/grd_s_c1_5/grd_s_c1_5.c:
+ .data start:0x0069E368 end:0x0069F238
+
+data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1_evw_anime.c:
+ .data start:0x0069F238 end:0x0069F248
+
+data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1.c:
+ .data start:0x0069F248 end:0x006A07F0
+
+data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2_evw_anime.c:
+ .data start:0x006A07F0 end:0x006A0800
+
+data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2.c:
+ .data start:0x006A0800 end:0x006A1C28
+
+data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3_evw_anime.c:
+ .data start:0x006A1C28 end:0x006A1C38
+
+data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3.c:
+ .data start:0x006A1C38 end:0x006A3038
+
+data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1_evw_anime.c:
+ .data start:0x006A3038 end:0x006A3048
+
+data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1.c:
+ .data start:0x006A3048 end:0x006A4460
+
+data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2_evw_anime.c:
+ .data start:0x006A4460 end:0x006A4470
+
+data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2.c:
+ .data start:0x006A4470 end:0x006A58C8
+
+data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3_evw_anime.c:
+ .data start:0x006A58C8 end:0x006A58D8
+
+data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3.c:
+ .data start:0x006A58D8 end:0x006A6F40
+
+data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1_evw_anime.c:
+ .data start:0x006A6F40 end:0x006A6F50
+
+data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1.c:
+ .data start:0x006A6F50 end:0x006A8008
+
+data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2_evw_anime.c:
+ .data start:0x006A8008 end:0x006A8018
+
+data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2.c:
+ .data start:0x006A8018 end:0x006A9310
+
+data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3_evw_anime.c:
+ .data start:0x006A9310 end:0x006A9320
+
+data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3.c:
+ .data start:0x006A9320 end:0x006AA758
+
+data/field/bg/acre/grd_s_c1_s_1/grd_s_c1_s_1.c:
+ .data start:0x006AA758 end:0x006AB638
+
+data/field/bg/acre/grd_s_c1_s_2/grd_s_c1_s_2.c:
+ .data start:0x006AB638 end:0x006AC760
+
+data/field/bg/acre/grd_s_c1_s_3/grd_s_c1_s_3.c:
+ .data start:0x006AC760 end:0x006AD9A0
+
+data/field/bg/acre/grd_s_c1_s_4/grd_s_c1_s_4.c:
+ .data start:0x006AD9A0 end:0x006AECB0
+
+data/field/bg/acre/grd_s_c2_1/grd_s_c2_1.c:
+ .data start:0x006AECB0 end:0x006AFCD0
+
+data/field/bg/acre/grd_s_c2_2/grd_s_c2_2.c:
+ .data start:0x006AFCD0 end:0x006B0D20
+
+data/field/bg/acre/grd_s_c2_3/grd_s_c2_3_evw_anime.c:
+ .data start:0x006B0D20 end:0x006B0D30
+
+data/field/bg/acre/grd_s_c2_3/grd_s_c2_3.c:
+ .data start:0x006B0D30 end:0x006B20A8
+
+data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1_evw_anime.c:
+ .data start:0x006B20A8 end:0x006B20B8
+
+data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1.c:
+ .data start:0x006B20B8 end:0x006B34A0
+
+data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2_evw_anime.c:
+ .data start:0x006B34A0 end:0x006B34B0
+
+data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2.c:
+ .data start:0x006B34B0 end:0x006B4970
+
+data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1_evw_anime.c:
+ .data start:0x006B4970 end:0x006B4980
+
+data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1.c:
+ .data start:0x006B4980 end:0x006B5C40
+
+data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2_evw_anime.c:
+ .data start:0x006B5C40 end:0x006B5C50
+
+data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2.c:
+ .data start:0x006B5C50 end:0x006B7180
+
+data/field/bg/acre/grd_s_c2_s_1/grd_s_c2_s_1.c:
+ .data start:0x006B7180 end:0x006B8520
+
+data/field/bg/acre/grd_s_c2_s_2/grd_s_c2_s_2.c:
+ .data start:0x006B8520 end:0x006B95F0
+
+data/field/bg/acre/grd_s_c2_s_3/grd_s_c2_s_3.c:
+ .data start:0x006B95F0 end:0x006BA5F0
+
+data/field/bg/acre/grd_s_c3_1/grd_s_c3_1.c:
+ .data start:0x006BA5F0 end:0x006BB780
+
+data/field/bg/acre/grd_s_c3_2/grd_s_c3_2_evw_anime.c:
+ .data start:0x006BB780 end:0x006BB790
+
+data/field/bg/acre/grd_s_c3_2/grd_s_c3_2.c:
+ .data start:0x006BB790 end:0x006BC880
+
+data/field/bg/acre/grd_s_c3_3/grd_s_c3_3.c:
+ .data start:0x006BC880 end:0x006BD7F0
+
+data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1_evw_anime.c:
+ .data start:0x006BD7F0 end:0x006BD800
+
+data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1.c:
+ .data start:0x006BD800 end:0x006BE948
+
+data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2_evw_anime.c:
+ .data start:0x006BE948 end:0x006BE958
+
+data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2.c:
+ .data start:0x006BE958 end:0x006BFC48
+
+data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1_evw_anime.c:
+ .data start:0x006BFC48 end:0x006BFC58
+
+data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1.c:
+ .data start:0x006BFC58 end:0x006C12C8
+
+data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2_evw_anime.c:
+ .data start:0x006C12C8 end:0x006C12D8
+
+data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2.c:
+ .data start:0x006C12D8 end:0x006C2950
+
+data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1_evw_anime.c:
+ .data start:0x006C2950 end:0x006C2960
+
+data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1.c:
+ .data start:0x006C2960 end:0x006C4128
+
+data/field/bg/acre/grd_s_c4_1/grd_s_c4_1.c:
+ .data start:0x006C4128 end:0x006C4F30
+
+data/field/bg/acre/grd_s_c4_2/grd_s_c4_2.c:
+ .data start:0x006C4F30 end:0x006C60B0
+
+data/field/bg/acre/grd_s_c4_3/grd_s_c4_3.c:
+ .data start:0x006C60B0 end:0x006C7098
+
+data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1_evw_anime.c:
+ .data start:0x006C7098 end:0x006C70A8
+
+data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1.c:
+ .data start:0x006C70A8 end:0x006C83B0
+
+data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2_evw_anime.c:
+ .data start:0x006C83B0 end:0x006C83C0
+
+data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2.c:
+ .data start:0x006C83C0 end:0x006C9680
+
+data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1_evw_anime.c:
+ .data start:0x006C9680 end:0x006C9690
+
+data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1.c:
+ .data start:0x006C9690 end:0x006CA9F8
+
+data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2_evw_anime.c:
+ .data start:0x006CA9F8 end:0x006CAA08
+
+data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2.c:
+ .data start:0x006CAA08 end:0x006CBAB0
+
+data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1_evw_anime.c:
+ .data start:0x006CBAB0 end:0x006CBAC0
+
+data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1.c:
+ .data start:0x006CBAC0 end:0x006CCBC8
+
+data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2_evw_anime.c:
+ .data start:0x006CCBC8 end:0x006CCBD8
+
+data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2.c:
+ .data start:0x006CCBD8 end:0x006CDB88
+
+data/field/bg/acre/grd_s_c4_s_1/grd_s_c4_s_1.c:
+ .data start:0x006CDB88 end:0x006CEB30
+
+data/field/bg/acre/grd_s_c4_s_2/grd_s_c4_s_2.c:
+ .data start:0x006CEB30 end:0x006CFDA8
+
+data/field/bg/acre/grd_s_c5_1/grd_s_c5_1.c:
+ .data start:0x006CFDA8 end:0x006D0AA8
+
+data/field/bg/acre/grd_s_c5_2/grd_s_c5_2.c:
+ .data start:0x006D0AA8 end:0x006D1CB8
+
+data/field/bg/acre/grd_s_c5_3/grd_s_c5_3.c:
+ .data start:0x006D1CB8 end:0x006D2A20
+
+data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1_evw_anime.c:
+ .data start:0x006D2A20 end:0x006D2A30
+
+data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1.c:
+ .data start:0x006D2A30 end:0x006D4010
+
+data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2_evw_anime.c:
+ .data start:0x006D4010 end:0x006D4020
+
+data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2.c:
+ .data start:0x006D4020 end:0x006D55B0
+
+data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1_evw_anime.c:
+ .data start:0x006D55B0 end:0x006D55C0
+
+data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1.c:
+ .data start:0x006D55C0 end:0x006D6CC0
+
+data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2_evw_anime.c:
+ .data start:0x006D6CC0 end:0x006D6CD0
+
+data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2.c:
+ .data start:0x006D6CD0 end:0x006D8138
+
+data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1_evw_anime.c:
+ .data start:0x006D8138 end:0x006D8148
+
+data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1.c:
+ .data start:0x006D8148 end:0x006D9478
+
+data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2_evw_anime.c:
+ .data start:0x006D9478 end:0x006D9488
+
+data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2.c:
+ .data start:0x006D9488 end:0x006DA678
+
+data/field/bg/acre/grd_s_c5_s_1/grd_s_c5_s_1.c:
+ .data start:0x006DA678 end:0x006DB620
+
+data/field/bg/acre/grd_s_c5_s_2/grd_s_c5_s_2.c:
+ .data start:0x006DB620 end:0x006DC5C8
+
+data/field/bg/acre/grd_s_c6_1/grd_s_c6_1.c:
+ .data start:0x006DC5C8 end:0x006DD700
+
+data/field/bg/acre/grd_s_c6_2/grd_s_c6_2.c:
+ .data start:0x006DD700 end:0x006DE900
+
+data/field/bg/acre/grd_s_c6_3/grd_s_c6_3.c:
+ .data start:0x006DE900 end:0x006DF8A0
+
+data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1_evw_anime.c:
+ .data start:0x006DF8A0 end:0x006DF8B0
+
+data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1.c:
+ .data start:0x006DF8B0 end:0x006E0B88
+
+data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2_evw_anime.c:
+ .data start:0x006E0B88 end:0x006E0B98
+
+data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2.c:
+ .data start:0x006E0B98 end:0x006E1EE8
+
+data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1_evw_anime.c:
+ .data start:0x006E1EE8 end:0x006E1EF8
+
+data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1.c:
+ .data start:0x006E1EF8 end:0x006E36B0
+
+data/field/bg/acre/grd_s_c6_s_1/grd_s_c6_s_1.c:
+ .data start:0x006E36B0 end:0x006E4790
+
+data/field/bg/acre/grd_s_c7_1/grd_s_c7_1.c:
+ .data start:0x006E4790 end:0x006E57C8
+
+data/field/bg/acre/grd_s_c7_2/grd_s_c7_2.c:
+ .data start:0x006E57C8 end:0x006E6B80
+
+data/field/bg/acre/grd_s_c7_3/grd_s_c7_3_evw_anime.c:
+ .data start:0x006E6B80 end:0x006E6B90
+
+data/field/bg/acre/grd_s_c7_3/grd_s_c7_3.c:
+ .data start:0x006E6B90 end:0x006E7F50
+
+data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1_evw_anime.c:
+ .data start:0x006E7F50 end:0x006E7F60
+
+data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1.c:
+ .data start:0x006E7F60 end:0x006E90A0
+
+data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2_evw_anime.c:
+ .data start:0x006E90A0 end:0x006E90B0
+
+data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2.c:
+ .data start:0x006E90B0 end:0x006EA1F8
+
+data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1_evw_anime.c:
+ .data start:0x006EA1F8 end:0x006EA208
+
+data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1.c:
+ .data start:0x006EA208 end:0x006EB748
+
+data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2_evw_anime.c:
+ .data start:0x006EB748 end:0x006EB758
+
+data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2.c:
+ .data start:0x006EB758 end:0x006ECE18
+
+data/field/bg/acre/grd_s_c7_s_1/grd_s_c7_s_1.c:
+ .data start:0x006ECE18 end:0x006EE438
+
+data/field/bg/acre/grd_s_c7_s_2/grd_s_c7_s_2.c:
+ .data start:0x006EE438 end:0x006EF300
+
+data/field/bg/acre/grd_s_c7_s_3/grd_s_c7_s_3.c:
+ .data start:0x006EF300 end:0x006F0430
+
+data/field/bg/acre/grd_s_e1_1/grd_s_e1_1.c:
+ .data start:0x006F0430 end:0x006F0AE0
+
+data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1_evw_anime.c:
+ .data start:0x006F0AE0 end:0x006F0AF0
+
+data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1.c:
+ .data start:0x006F0AF0 end:0x006F2270
+
+data/field/bg/acre/grd_s_e2_1/grd_s_e2_1.c:
+ .data start:0x006F2270 end:0x006F2A08
+
+data/field/bg/acre/grd_s_e2_c1_1/grd_s_e2_c1_1.c:
+ .data start:0x006F2A08 end:0x006F31C8
+
+data/field/bg/acre/grd_s_e2_m_1/grd_s_e2_m_1.c:
+ .data start:0x006F31C8 end:0x006F3AA0
+
+data/field/bg/acre/grd_s_e2_o_1/grd_s_e2_o_1.c:
+ .data start:0x006F3AA0 end:0x006F3D80
+
+data/field/bg/acre/grd_s_e2_t_1/grd_s_e2_t_1.c:
+ .data start:0x006F3D80 end:0x006F48F0
+
+data/field/bg/acre/grd_s_e3_1/grd_s_e3_1.c:
+ .data start:0x006F48F0 end:0x006F50D8
+
+data/field/bg/acre/grd_s_e3_c1_1/grd_s_e3_c1_1.c:
+ .data start:0x006F50D8 end:0x006F58B0
+
+data/field/bg/acre/grd_s_e3_m_1/grd_s_e3_m_1.c:
+ .data start:0x006F58B0 end:0x006F61F8
+
+data/field/bg/acre/grd_s_e3_o_1/grd_s_e3_o_1.c:
+ .data start:0x006F61F8 end:0x006F64D8
+
+data/field/bg/acre/grd_s_e3_t_1/grd_s_e3_t_1.c:
+ .data start:0x006F64D8 end:0x006F6F68
+
+data/field/bg/acre/grd_s_e4_1/grd_s_e4_1.c:
+ .data start:0x006F6F68 end:0x006F7170
+
+data/field/bg/acre/grd_s_e5_1/grd_s_e5_1.c:
+ .data start:0x006F7170 end:0x006F73A0
+
+data/field/bg/acre/grd_s_f_1/grd_s_f_1.c:
+ .data start:0x006F73A0 end:0x006F80F0
+
+data/field/bg/acre/grd_s_f_10/grd_s_f_10.c:
+ .data start:0x006F80F0 end:0x006F8ED8
+
+data/field/bg/acre/grd_s_f_2/grd_s_f_2.c:
+ .data start:0x006F8ED8 end:0x006F9E20
+
+data/field/bg/acre/grd_s_f_3/grd_s_f_3.c:
+ .data start:0x006F9E20 end:0x006FA778
+
+data/field/bg/acre/grd_s_f_4/grd_s_f_4_evw_anime.c:
+ .data start:0x006FA778 end:0x006FA788
+
+data/field/bg/acre/grd_s_f_4/grd_s_f_4.c:
+ .data start:0x006FA788 end:0x006FB560
+
+data/field/bg/acre/grd_s_f_5/grd_s_f_5_evw_anime.c:
+ .data start:0x006FB560 end:0x006FB570
+
+data/field/bg/acre/grd_s_f_5/grd_s_f_5.c:
+ .data start:0x006FB570 end:0x006FC750
+
+data/field/bg/acre/grd_s_f_6/grd_s_f_6_evw_anime.c:
+ .data start:0x006FC750 end:0x006FC760
+
+data/field/bg/acre/grd_s_f_6/grd_s_f_6.c:
+ .data start:0x006FC760 end:0x006FD988
+
+data/field/bg/acre/grd_s_f_7/grd_s_f_7.c:
+ .data start:0x006FD988 end:0x006FF140
+
+data/field/bg/acre/grd_s_f_8/grd_s_f_8.c:
+ .data start:0x006FF140 end:0x00700068
+
+data/field/bg/acre/grd_s_f_9/grd_s_f_9.c:
+ .data start:0x00700068 end:0x00701208
+
+data/field/bg/acre/grd_s_f_ko_1/grd_s_f_ko_1.c:
+ .data start:0x00701208 end:0x00702308
+
+data/field/bg/acre/grd_s_f_ko_2/grd_s_f_ko_2.c:
+ .data start:0x00702308 end:0x00702F90
+
+data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3_evw_anime.c:
+ .data start:0x00702F90 end:0x00702FA0
+
+data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3.c:
+ .data start:0x00702FA0 end:0x00704208
+
+data/field/bg/acre/grd_s_f_mh_1/grd_s_f_mh_1.c:
+ .data start:0x00704208 end:0x00705088
+
+data/field/bg/acre/grd_s_f_mh_2/grd_s_f_mh_2.c:
+ .data start:0x00705088 end:0x00705FF0
+
+data/field/bg/acre/grd_s_f_mh_3/grd_s_f_mh_3.c:
+ .data start:0x00705FF0 end:0x00706C90
+
+data/field/bg/acre/grd_s_f_mu_1/grd_s_f_mu_1.c:
+ .data start:0x00706C90 end:0x00707860
+
+data/field/bg/acre/grd_s_f_mu_2/grd_s_f_mu_2.c:
+ .data start:0x00707860 end:0x00708420
+
+data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3_evw_anime.c:
+ .data start:0x00708420 end:0x00708430
+
+data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3.c:
+ .data start:0x00708430 end:0x00708FB8
+
+data/field/bg/acre/grd_s_f_pk_1/grd_s_f_pk_1.c:
+ .data start:0x00708FB8 end:0x0070A0B8
+
+data/field/bg/acre/grd_s_f_pk_2/grd_s_f_pk_2.c:
+ .data start:0x0070A0B8 end:0x0070B080
+
+data/field/bg/acre/grd_s_f_pk_3/grd_s_f_pk_3.c:
+ .data start:0x0070B080 end:0x0070C310
+
+data/field/bg/acre/grd_s_hole_test/grd_s_hole_test.c:
+ .data start:0x0070C310 end:0x0070D4A8
+
+data/field/bg/acre/grd_s_il_1/grd_s_il_1.c:
+ .data start:0x0070D4A8 end:0x0070E518
+
+data/field/bg/acre/grd_s_il_2/grd_s_il_2.c:
+ .data start:0x0070E518 end:0x0070FE58
+
+data/field/bg/acre/grd_s_il_3/grd_s_il_3.c:
+ .data start:0x0070FE58 end:0x00710FF8
+
+data/field/bg/acre/grd_s_il_4/grd_s_il_4.c:
+ .data start:0x00710FF8 end:0x007120E8
+
+data/field/bg/acre/grd_s_ir_1/grd_s_ir_1.c:
+ .data start:0x007120E8 end:0x00713560
+
+data/field/bg/acre/grd_s_ir_2/grd_s_ir_2.c:
+ .data start:0x00713560 end:0x00714CF8
+
+data/field/bg/acre/grd_s_ir_3/grd_s_ir_3.c:
+ .data start:0x00714CF8 end:0x007166B0
+
+data/field/bg/acre/grd_s_ir_4/grd_s_ir_4.c:
+ .data start:0x007166B0 end:0x00717C58
+
+data/field/bg/acre/grd_s_m_1/grd_s_m_1.c:
+ .data start:0x00717C58 end:0x00718DB0
+
+data/field/bg/acre/grd_s_m_10/grd_s_m_10.c:
+ .data start:0x00718DB0 end:0x00719F38
+
+data/field/bg/acre/grd_s_m_2/grd_s_m_2.c:
+ .data start:0x00719F38 end:0x0071B218
+
+data/field/bg/acre/grd_s_m_3/grd_s_m_3.c:
+ .data start:0x0071B218 end:0x0071C3C8
+
+data/field/bg/acre/grd_s_m_4/grd_s_m_4.c:
+ .data start:0x0071C3C8 end:0x0071D3A0
+
+data/field/bg/acre/grd_s_m_5/grd_s_m_5.c:
+ .data start:0x0071D3A0 end:0x0071E770
+
+data/field/bg/acre/grd_s_m_6/grd_s_m_6.c:
+ .data start:0x0071E770 end:0x0071FA60
+
+data/field/bg/acre/grd_s_m_7/grd_s_m_7.c:
+ .data start:0x0071FA60 end:0x00720A60
+
+data/field/bg/acre/grd_s_m_8/grd_s_m_8.c:
+ .data start:0x00720A60 end:0x00721AE8
+
+data/field/bg/acre/grd_s_m_9/grd_s_m_9.c:
+ .data start:0x00721AE8 end:0x00722A58
+
+data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1_evw_anime.c:
+ .data start:0x00722A58 end:0x00722A78
+
+data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1.c:
+ .data start:0x00722A78 end:0x00723ED8
+
+data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2_evw_anime.c:
+ .data start:0x00723ED8 end:0x00723EF8
+
+data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2.c:
+ .data start:0x00723EF8 end:0x007252B8
+
+data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3_evw_anime.c:
+ .data start:0x007252B8 end:0x007252D8
+
+data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3.c:
+ .data start:0x007252D8 end:0x00726530
+
+data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4_evw_anime.c:
+ .data start:0x00726530 end:0x00726550
+
+data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4.c:
+ .data start:0x00726550 end:0x00727AD8
+
+data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5_evw_anime.c:
+ .data start:0x00727AD8 end:0x00727AF8
+
+data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5.c:
+ .data start:0x00727AF8 end:0x00729160
+
+data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1_evw_anime.c:
+ .data start:0x00729160 end:0x00729180
+
+data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1.c:
+ .data start:0x00729180 end:0x0072A408
+
+data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2_evw_anime.c:
+ .data start:0x0072A408 end:0x0072A428
+
+data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2.c:
+ .data start:0x0072A428 end:0x0072BA10
+
+data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3_evw_anime.c:
+ .data start:0x0072BA10 end:0x0072BA30
+
+data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3.c:
+ .data start:0x0072BA30 end:0x0072CE50
+
+data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1_evw_anime.c:
+ .data start:0x0072CE50 end:0x0072CE70
+
+data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1.c:
+ .data start:0x0072CE70 end:0x0072E1C8
+
+data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2_evw_anime.c:
+ .data start:0x0072E1C8 end:0x0072E1E8
+
+data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2.c:
+ .data start:0x0072E1E8 end:0x0072F400
+
+data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3_evw_anime.c:
+ .data start:0x0072F400 end:0x0072F420
+
+data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3.c:
+ .data start:0x0072F420 end:0x00730770
+
+data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1_evw_anime.c:
+ .data start:0x00730770 end:0x007307B0
+
+data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1.c:
+ .data start:0x007307B0 end:0x00731E10
+
+data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2_evw_anime.c:
+ .data start:0x00731E10 end:0x00731E50
+
+data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2.c:
+ .data start:0x00731E50 end:0x00733B08
+
+data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3_evw_anime.c:
+ .data start:0x00733B08 end:0x00733B48
+
+data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3.c:
+ .data start:0x00733B48 end:0x00735280
+
+data/field/bg/acre/grd_s_o_1/grd_s_o_1_evw_anime.c:
+ .data start:0x00735280 end:0x007352C0
+
+data/field/bg/acre/grd_s_o_1/grd_s_o_1.c:
+ .data start:0x007352C0 end:0x007357A0
+
+data/field/bg/acre/grd_s_o_10/grd_s_o_10_evw_anime.c:
+ .data start:0x007357A0 end:0x007357E0
+
+data/field/bg/acre/grd_s_o_10/grd_s_o_10.c:
+ .data start:0x007357E0 end:0x00735C78
+
+data/field/bg/acre/grd_s_o_2/grd_s_o_2_evw_anime.c:
+ .data start:0x00735C78 end:0x00735CB8
+
+data/field/bg/acre/grd_s_o_2/grd_s_o_2.c:
+ .data start:0x00735CB8 end:0x00736158
+
+data/field/bg/acre/grd_s_o_3/grd_s_o_3_evw_anime.c:
+ .data start:0x00736158 end:0x00736198
+
+data/field/bg/acre/grd_s_o_3/grd_s_o_3.c:
+ .data start:0x00736198 end:0x00736600
+
+data/field/bg/acre/grd_s_o_4/grd_s_o_4_evw_anime.c:
+ .data start:0x00736600 end:0x00736640
+
+data/field/bg/acre/grd_s_o_4/grd_s_o_4.c:
+ .data start:0x00736640 end:0x00736AD0
+
+data/field/bg/acre/grd_s_o_5/grd_s_o_5_evw_anime.c:
+ .data start:0x00736AD0 end:0x00736B10
+
+data/field/bg/acre/grd_s_o_5/grd_s_o_5.c:
+ .data start:0x00736B10 end:0x00736F90
+
+data/field/bg/acre/grd_s_o_6/grd_s_o_6_evw_anime.c:
+ .data start:0x00736F90 end:0x00736FD0
+
+data/field/bg/acre/grd_s_o_6/grd_s_o_6.c:
+ .data start:0x00736FD0 end:0x00737438
+
+data/field/bg/acre/grd_s_o_7/grd_s_o_7_evw_anime.c:
+ .data start:0x00737438 end:0x00737478
+
+data/field/bg/acre/grd_s_o_7/grd_s_o_7.c:
+ .data start:0x00737478 end:0x00737908
+
+data/field/bg/acre/grd_s_o_8/grd_s_o_8_evw_anime.c:
+ .data start:0x00737908 end:0x00737948
+
+data/field/bg/acre/grd_s_o_8/grd_s_o_8.c:
+ .data start:0x00737948 end:0x00737E38
+
+data/field/bg/acre/grd_s_o_9/grd_s_o_9_evw_anime.c:
+ .data start:0x00737E38 end:0x00737E78
+
+data/field/bg/acre/grd_s_o_9/grd_s_o_9.c:
+ .data start:0x00737E78 end:0x00738350
+
+data/field/bg/acre/grd_s_o_i_1/grd_s_o_i_1.c:
+ .data start:0x00738350 end:0x007387B0
+
+data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2_evw_anime.c:
+ .data start:0x007387B0 end:0x007387F0
+
+data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2.c:
+ .data start:0x007387F0 end:0x00738AD0
+
+data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1_evw_anime.c:
+ .data start:0x00738AD0 end:0x00738B10
+
+data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1.c:
+ .data start:0x00738B10 end:0x00739020
+
+data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2_evw_anime.c:
+ .data start:0x00739020 end:0x00739060
+
+data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2.c:
+ .data start:0x00739060 end:0x00739540
+
+data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3_evw_anime.c:
+ .data start:0x00739540 end:0x00739580
+
+data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3.c:
+ .data start:0x00739580 end:0x00739A78
+
+data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4_evw_anime.c:
+ .data start:0x00739A78 end:0x00739AB8
+
+data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4.c:
+ .data start:0x00739AB8 end:0x00739F78
+
+data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5_evw_anime.c:
+ .data start:0x00739F78 end:0x00739FB8
+
+data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5.c:
+ .data start:0x00739FB8 end:0x0073A390
+
+data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1_evw_anime.c:
+ .data start:0x0073A390 end:0x0073A3D0
+
+data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1.c:
+ .data start:0x0073A3D0 end:0x0073A6B0
+
+data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2_evw_anime.c:
+ .data start:0x0073A6B0 end:0x0073A6F0
+
+data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2.c:
+ .data start:0x0073A6F0 end:0x0073A9C8
+
+data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3_evw_anime.c:
+ .data start:0x0073A9C8 end:0x0073AA08
+
+data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3.c:
+ .data start:0x0073AA08 end:0x0073ACE0
+
+data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1_evw_anime.c:
+ .data start:0x0073ACE0 end:0x0073AD20
+
+data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1.c:
+ .data start:0x0073AD20 end:0x0073B228
+
+data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2_evw_anime.c:
+ .data start:0x0073B228 end:0x0073B268
+
+data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2.c:
+ .data start:0x0073B268 end:0x0073B670
+
+data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3_evw_anime.c:
+ .data start:0x0073B670 end:0x0073B6B0
+
+data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3.c:
+ .data start:0x0073B6B0 end:0x0073BAC8
+
+data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1_evw_anime.c:
+ .data start:0x0073BAC8 end:0x0073BB08
+
+data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1.c:
+ .data start:0x0073BB08 end:0x0073C038
+
+data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2_evw_anime.c:
+ .data start:0x0073C038 end:0x0073C078
+
+data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2.c:
+ .data start:0x0073C078 end:0x0073C5D8
+
+data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3_evw_anime.c:
+ .data start:0x0073C5D8 end:0x0073C618
+
+data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3.c:
+ .data start:0x0073C618 end:0x0073CB30
+
+data/field/bg/acre/grd_s_r1_1/grd_s_r1_1_evw_anime.c:
+ .data start:0x0073CB30 end:0x0073CB40
+
+data/field/bg/acre/grd_s_r1_1/grd_s_r1_1.c:
+ .data start:0x0073CB40 end:0x0073D928
+
+data/field/bg/acre/grd_s_r1_2/grd_s_r1_2_evw_anime.c:
+ .data start:0x0073D928 end:0x0073D938
+
+data/field/bg/acre/grd_s_r1_2/grd_s_r1_2.c:
+ .data start:0x0073D938 end:0x0073E860
+
+data/field/bg/acre/grd_s_r1_3/grd_s_r1_3_evw_anime.c:
+ .data start:0x0073E860 end:0x0073E870
+
+data/field/bg/acre/grd_s_r1_3/grd_s_r1_3.c:
+ .data start:0x0073E870 end:0x0073F890
+
+data/field/bg/acre/grd_s_r1_4/grd_s_r1_4_evw_anime.c:
+ .data start:0x0073F890 end:0x0073F8A0
+
+data/field/bg/acre/grd_s_r1_4/grd_s_r1_4.c:
+ .data start:0x0073F8A0 end:0x007405A8
+
+data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1_evw_anime.c:
+ .data start:0x007405A8 end:0x007405B8
+
+data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1.c:
+ .data start:0x007405B8 end:0x007415E0
+
+data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2_evw_anime.c:
+ .data start:0x007415E0 end:0x007415F0
+
+data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2.c:
+ .data start:0x007415F0 end:0x00742A20
+
+data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3_evw_anime.c:
+ .data start:0x00742A20 end:0x00742A30
+
+data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3.c:
+ .data start:0x00742A30 end:0x00743D10
+
+data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1_evw_anime.c:
+ .data start:0x00743D10 end:0x00743D20
+
+data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1.c:
+ .data start:0x00743D20 end:0x00744FB0
+
+data/field/bg/acre/grd_s_r2_1/grd_s_r2_1_evw_anime.c:
+ .data start:0x00744FB0 end:0x00744FC0
+
+data/field/bg/acre/grd_s_r2_1/grd_s_r2_1.c:
+ .data start:0x00744FC0 end:0x00745DD8
+
+data/field/bg/acre/grd_s_r2_2/grd_s_r2_2_evw_anime.c:
+ .data start:0x00745DD8 end:0x00745DE8
+
+data/field/bg/acre/grd_s_r2_2/grd_s_r2_2.c:
+ .data start:0x00745DE8 end:0x00746C38
+
+data/field/bg/acre/grd_s_r2_3/grd_s_r2_3_evw_anime.c:
+ .data start:0x00746C38 end:0x00746C48
+
+data/field/bg/acre/grd_s_r2_3/grd_s_r2_3.c:
+ .data start:0x00746C48 end:0x00747CA8
+
+data/field/bg/acre/grd_s_r2_4/grd_s_r2_4_evw_anime.c:
+ .data start:0x00747CA8 end:0x00747CB8
+
+data/field/bg/acre/grd_s_r2_4/grd_s_r2_4.c:
+ .data start:0x00747CB8 end:0x00748CC0
+
+data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1_evw_anime.c:
+ .data start:0x00748CC0 end:0x00748CD0
+
+data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1.c:
+ .data start:0x00748CD0 end:0x0074A300
+
+data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2_evw_anime.c:
+ .data start:0x0074A300 end:0x0074A310
+
+data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2.c:
+ .data start:0x0074A310 end:0x0074B668
+
+data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3_evw_anime.c:
+ .data start:0x0074B668 end:0x0074B678
+
+data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3.c:
+ .data start:0x0074B678 end:0x0074CB60
+
+data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1_evw_anime.c:
+ .data start:0x0074CB60 end:0x0074CB70
+
+data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1.c:
+ .data start:0x0074CB70 end:0x0074E3D0
+
+data/field/bg/acre/grd_s_r3_1/grd_s_r3_1_evw_anime.c:
+ .data start:0x0074E3D0 end:0x0074E3E0
+
+data/field/bg/acre/grd_s_r3_1/grd_s_r3_1.c:
+ .data start:0x0074E3E0 end:0x0074F478
+
+data/field/bg/acre/grd_s_r3_2/grd_s_r3_2_evw_anime.c:
+ .data start:0x0074F478 end:0x0074F488
+
+data/field/bg/acre/grd_s_r3_2/grd_s_r3_2.c:
+ .data start:0x0074F488 end:0x00750378
+
+data/field/bg/acre/grd_s_r3_3/grd_s_r3_3_evw_anime.c:
+ .data start:0x00750378 end:0x00750388
+
+data/field/bg/acre/grd_s_r3_3/grd_s_r3_3.c:
+ .data start:0x00750388 end:0x007512C0
+
+data/field/bg/acre/grd_s_r3_4/grd_s_r3_4_evw_anime.c:
+ .data start:0x007512C0 end:0x007512D0
+
+data/field/bg/acre/grd_s_r3_4/grd_s_r3_4.c:
+ .data start:0x007512D0 end:0x00752120
+
+data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1_evw_anime.c:
+ .data start:0x00752120 end:0x00752130
+
+data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1.c:
+ .data start:0x00752130 end:0x00753318
+
+data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2_evw_anime.c:
+ .data start:0x00753318 end:0x00753328
+
+data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2.c:
+ .data start:0x00753328 end:0x00754840
+
+data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3_evw_anime.c:
+ .data start:0x00754840 end:0x00754850
+
+data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3.c:
+ .data start:0x00754850 end:0x00755C70
+
+data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1_evw_anime.c:
+ .data start:0x00755C70 end:0x00755C80
+
+data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1.c:
+ .data start:0x00755C80 end:0x00757320
+
+data/field/bg/acre/grd_s_r4_1/grd_s_r4_1_evw_anime.c:
+ .data start:0x00757320 end:0x00757330
+
+data/field/bg/acre/grd_s_r4_1/grd_s_r4_1.c:
+ .data start:0x00757330 end:0x00758258
+
+data/field/bg/acre/grd_s_r4_2/grd_s_r4_2_evw_anime.c:
+ .data start:0x00758258 end:0x00758268
+
+data/field/bg/acre/grd_s_r4_2/grd_s_r4_2.c:
+ .data start:0x00758268 end:0x007591D0
+
+data/field/bg/acre/grd_s_r4_3/grd_s_r4_3_evw_anime.c:
+ .data start:0x007591D0 end:0x007591E0
+
+data/field/bg/acre/grd_s_r4_3/grd_s_r4_3.c:
+ .data start:0x007591E0 end:0x00759FF8
+
+data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1_evw_anime.c:
+ .data start:0x00759FF8 end:0x0075A008
+
+data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1.c:
+ .data start:0x0075A008 end:0x0075ACF8
+
+data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2_evw_anime.c:
+ .data start:0x0075ACF8 end:0x0075AD08
+
+data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2.c:
+ .data start:0x0075AD08 end:0x0075BED8
+
+data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1_evw_anime.c:
+ .data start:0x0075BED8 end:0x0075BEE8
+
+data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1.c:
+ .data start:0x0075BEE8 end:0x0075D428
+
+data/field/bg/acre/grd_s_r5_1/grd_s_r5_1_evw_anime.c:
+ .data start:0x0075D428 end:0x0075D438
+
+data/field/bg/acre/grd_s_r5_1/grd_s_r5_1.c:
+ .data start:0x0075D438 end:0x0075E420
+
+data/field/bg/acre/grd_s_r5_2/grd_s_r5_2_evw_anime.c:
+ .data start:0x0075E420 end:0x0075E430
+
+data/field/bg/acre/grd_s_r5_2/grd_s_r5_2.c:
+ .data start:0x0075E430 end:0x0075F510
+
+data/field/bg/acre/grd_s_r5_3/grd_s_r5_3_evw_anime.c:
+ .data start:0x0075F510 end:0x0075F520
+
+data/field/bg/acre/grd_s_r5_3/grd_s_r5_3.c:
+ .data start:0x0075F520 end:0x007605C8
+
+data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1_evw_anime.c:
+ .data start:0x007605C8 end:0x007605D8
+
+data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1.c:
+ .data start:0x007605D8 end:0x00761898
+
+data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2_evw_anime.c:
+ .data start:0x00761898 end:0x007618A8
+
+data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2.c:
+ .data start:0x007618A8 end:0x00762BA0
+
+data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1_evw_anime.c:
+ .data start:0x00762BA0 end:0x00762BB0
+
+data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1.c:
+ .data start:0x00762BB0 end:0x00764030
+
+data/field/bg/acre/grd_s_r6_1/grd_s_r6_1_evw_anime.c:
+ .data start:0x00764030 end:0x00764040
+
+data/field/bg/acre/grd_s_r6_1/grd_s_r6_1.c:
+ .data start:0x00764040 end:0x00764D58
+
+data/field/bg/acre/grd_s_r6_2/grd_s_r6_2_evw_anime.c:
+ .data start:0x00764D58 end:0x00764D68
+
+data/field/bg/acre/grd_s_r6_2/grd_s_r6_2.c:
+ .data start:0x00764D68 end:0x00765AE8
+
+data/field/bg/acre/grd_s_r6_3/grd_s_r6_3_evw_anime.c:
+ .data start:0x00765AE8 end:0x00765AF8
+
+data/field/bg/acre/grd_s_r6_3/grd_s_r6_3.c:
+ .data start:0x00765AF8 end:0x00766860
+
+data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1_evw_anime.c:
+ .data start:0x00766860 end:0x00766870
+
+data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1.c:
+ .data start:0x00766870 end:0x007676D8
+
+data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2_evw_anime.c:
+ .data start:0x007676D8 end:0x007676E8
+
+data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2.c:
+ .data start:0x007676E8 end:0x00768C28
+
+data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1_evw_anime.c:
+ .data start:0x00768C28 end:0x00768C38
+
+data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1.c:
+ .data start:0x00768C38 end:0x0076A2A8
+
+data/field/bg/acre/grd_s_r7_1/grd_s_r7_1_evw_anime.c:
+ .data start:0x0076A2A8 end:0x0076A2B8
+
+data/field/bg/acre/grd_s_r7_1/grd_s_r7_1.c:
+ .data start:0x0076A2B8 end:0x0076B1A0
+
+data/field/bg/acre/grd_s_r7_2/grd_s_r7_2_evw_anime.c:
+ .data start:0x0076B1A0 end:0x0076B1B0
+
+data/field/bg/acre/grd_s_r7_2/grd_s_r7_2.c:
+ .data start:0x0076B1B0 end:0x0076BFB0
+
+data/field/bg/acre/grd_s_r7_3/grd_s_r7_3_evw_anime.c:
+ .data start:0x0076BFB0 end:0x0076BFC0
+
+data/field/bg/acre/grd_s_r7_3/grd_s_r7_3.c:
+ .data start:0x0076BFC0 end:0x0076CD58
+
+data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1_evw_anime.c:
+ .data start:0x0076CD58 end:0x0076CD68
+
+data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1.c:
+ .data start:0x0076CD68 end:0x0076DD18
+
+data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2_evw_anime.c:
+ .data start:0x0076DD18 end:0x0076DD28
+
+data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2.c:
+ .data start:0x0076DD28 end:0x0076F2C0
+
+data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1_evw_anime.c:
+ .data start:0x0076F2C0 end:0x0076F2D0
+
+data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1.c:
+ .data start:0x0076F2D0 end:0x007706E8
+
+data/field/bg/acre/grd_s_t_1/grd_s_t_1_evw_anime.c:
+ .data start:0x007706E8 end:0x007706F8
+
+data/field/bg/acre/grd_s_t_1/grd_s_t_1.c:
+ .data start:0x007706F8 end:0x00771358
+
+data/field/bg/acre/grd_s_t_10/grd_s_t_10.c:
+ .data start:0x00771358 end:0x007723F8
+
+data/field/bg/acre/grd_s_t_2/grd_s_t_2.c:
+ .data start:0x007723F8 end:0x00773308
+
+data/field/bg/acre/grd_s_t_3/grd_s_t_3.c:
+ .data start:0x00773308 end:0x00773E68
+
+data/field/bg/acre/grd_s_t_4/grd_s_t_4_evw_anime.c:
+ .data start:0x00773E68 end:0x00773E78
+
+data/field/bg/acre/grd_s_t_4/grd_s_t_4.c:
+ .data start:0x00773E78 end:0x00774FF0
+
+data/field/bg/acre/grd_s_t_5/grd_s_t_5_evw_anime.c:
+ .data start:0x00774FF0 end:0x00775000
+
+data/field/bg/acre/grd_s_t_5/grd_s_t_5.c:
+ .data start:0x00775000 end:0x00776270
+
+data/field/bg/acre/grd_s_t_6/grd_s_t_6.c:
+ .data start:0x00776270 end:0x00777678
+
+data/field/bg/acre/grd_s_t_7/grd_s_t_7.c:
+ .data start:0x00777678 end:0x00778A48
+
+data/field/bg/acre/grd_s_t_8/grd_s_t_8.c:
+ .data start:0x00778A48 end:0x007798A8
+
+data/field/bg/acre/grd_s_t_9/grd_s_t_9.c:
+ .data start:0x007798A8 end:0x0077A788
+
+data/field/bg/acre/grd_s_t_po_1/grd_s_t_po_1.c:
+ .data start:0x0077A788 end:0x0077B418
+
+data/field/bg/acre/grd_s_t_po_2/grd_s_t_po_2.c:
+ .data start:0x0077B418 end:0x0077C068
+
+data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3_evw_anime.c:
+ .data start:0x0077C068 end:0x0077C078
+
+data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3.c:
+ .data start:0x0077C078 end:0x0077D1D0
+
+data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1_evw_anime.c:
+ .data start:0x0077D1D0 end:0x0077D1E0
+
+data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1.c:
+ .data start:0x0077D1E0 end:0x0077E3D8
+
+data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2_evw_anime.c:
+ .data start:0x0077E3D8 end:0x0077E3E8
+
+data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2.c:
+ .data start:0x0077E3E8 end:0x0077F868
+
+data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3_evw_anime.c:
+ .data start:0x0077F868 end:0x0077F878
+
+data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3.c:
+ .data start:0x0077F878 end:0x00780D20
+
+data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4_evw_anime.c:
+ .data start:0x00780D20 end:0x00780D30
+
+data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4.c:
+ .data start:0x00780D30 end:0x00782078
+
+data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5_evw_anime.c:
+ .data start:0x00782078 end:0x00782088
+
+data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5.c:
+ .data start:0x00782088 end:0x00783538
+
+data/field/bg/acre/grd_s_t_sh_1/grd_s_t_sh_1.c:
+ .data start:0x00783538 end:0x00784168
+
+data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2_evw_anime.c:
+ .data start:0x00784168 end:0x00784178
+
+data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2.c:
+ .data start:0x00784178 end:0x00785110
+
+data/field/bg/acre/grd_s_t_sh_3/grd_s_t_sh_3.c:
+ .data start:0x00785110 end:0x00785D70
+
+data/field/bg/acre/grd_s_t_st1_1/grd_s_t_st1_1.c:
+ .data start:0x00785D70 end:0x00786BF0
+
+data/field/bg/acre/grd_s_t_st1_2/grd_s_t_st1_2.c:
+ .data start:0x00786BF0 end:0x00787D80
+
+data/field/bg/acre/grd_s_t_st1_3/grd_s_t_st1_3.c:
+ .data start:0x00787D80 end:0x00788CA0
+
+data/dataobject/dataobject_788CA0:
+ .data start:0x00788CA0 end:0x00789CA0
+ .data start:0x00789CA0 end:0x0078ACA0
+ .data start:0x0078ACA0 end:0x0078BCA0
+ .data start:0x0078BCA0 end:0x0078CD20
+ .data start:0x0078CD20 end:0x0078DDC0
+ .data start:0x0078DDC0 end:0x0078EE20
+ .data start:0x0078EE20 end:0x0078FEE0
+ .data start:0x0078FEE0 end:0x00790FA0
+ .data start:0x00790FA0 end:0x00792000
+ .data start:0x00792000 end:0x00793020
+ .data start:0x00793020 end:0x007940C0
+ .data start:0x007940C0 end:0x007951C0
+ .data start:0x007951C0 end:0x007962C0
+ .data start:0x007962C0 end:0x007973E0
+ .data start:0x007973E0 end:0x00798560
+ .data start:0x00798560 end:0x00799600
+ .data start:0x00799600 end:0x0079A640
+ .data start:0x0079A640 end:0x0079B660
+ .data start:0x0079B660 end:0x0079C900
+ .data start:0x0079C900 end:0x0079D8A0
+ .data start:0x0079D8A0 end:0x0079E860
+ .data start:0x0079E860 end:0x0079F840
+ .data start:0x0079F840 end:0x007A0880
+ .data start:0x007A0880 end:0x007A18A0
+ .data start:0x007A18A0 end:0x007A28C0
+ .data start:0x007A28C0 end:0x007A38C0
+ .data start:0x007A38C0 end:0x007A48C0
+ .data start:0x007A48C0 end:0x007A5960
+ .data start:0x007A5960 end:0x007A6940
+ .data start:0x007A6940 end:0x007A7900
+ .data start:0x007A7900 end:0x007A8940
+ .data start:0x007A8940 end:0x007A9940
+ .data start:0x007A9940 end:0x007AA960
+ .data start:0x007AA960 end:0x007ABA20
+ .data start:0x007ABA20 end:0x007ACA00
+ .data start:0x007ACA00 end:0x007AD9E0
+ .data start:0x007AD9E0 end:0x007AEA60
+ .data start:0x007AEA60 end:0x007AFB20
+ .data start:0x007AFB20 end:0x007B0BC0
+ .data start:0x007B0BC0 end:0x007B1C80
+ .data start:0x007B1C80 end:0x007B2D00
+ .data start:0x007B2D00 end:0x007B3D40
+ .data start:0x007B3D40 end:0x007B4D40
+ .data start:0x007B4D40 end:0x007B5D60
+ .data start:0x007B5D60 end:0x007B6D80
+ .data start:0x007B6D80 end:0x007B7D80
+ .data start:0x007B7D80 end:0x007B8EC0
+ .data start:0x007B8EC0 end:0x007BA080
+ .data start:0x007BA080 end:0x007BB240
+ .data start:0x007BB240 end:0x007BC3A0
+ .data start:0x007BC3A0 end:0x007BD540
+ .data start:0x007BD540 end:0x007BE560
+ .data start:0x007BE560 end:0x007BF5A0
+ .data start:0x007BF5A0 end:0x007C05A0
+ .data start:0x007C05A0 end:0x007C1680
+ .data start:0x007C1680 end:0x007C2760
+ .data start:0x007C2760 end:0x007C3860
+ .data start:0x007C3860 end:0x007C4880
+ .data start:0x007C4880 end:0x007C5920
+ .data start:0x007C5920 end:0x007C6AA0
+ .data start:0x007C6AA0 end:0x007C7C40
+ .data start:0x007C7C40 end:0x007C8D20
+ .data start:0x007C8D20 end:0x007C9E00
+ .data start:0x007C9E00 end:0x007CAF00
+ .data start:0x007CAF00 end:0x007CBFE0
+ .data start:0x007CBFE0 end:0x007CD0E0
+ .data start:0x007CD0E0 end:0x007CE1E0
+ .data start:0x007CE1E0 end:0x007CF2A0
+ .data start:0x007CF2A0 end:0x007D0380
+ .data start:0x007D0380 end:0x007D1440
+ .data start:0x007D1440 end:0x007D2500
+ .data start:0x007D2500 end:0x007D3740
+ .data start:0x007D3740 end:0x007D4840
+ .data start:0x007D4840 end:0x007D5920
+ .data start:0x007D5920 end:0x007D6A20
+ .data start:0x007D6A20 end:0x007D7AA0
+ .data start:0x007D7AA0 end:0x007D8C40
+ .data start:0x007D8C40 end:0x007D9CC0
+ .data start:0x007D9CC0 end:0x007DAEC0
+ .data start:0x007DAEC0 end:0x007DBF20
+ .data start:0x007DBF20 end:0x007DCF80
+ .data start:0x007DCF80 end:0x007DDFE0
+ .data start:0x007DDFE0 end:0x007DF060
+ .data start:0x007DF060 end:0x007E00E0
+ .data start:0x007E00E0 end:0x007E1120
+ .data start:0x007E1120 end:0x007E2120
+ .data start:0x007E2120 end:0x007E3100
+ .data start:0x007E3100 end:0x007E4140
+ .data start:0x007E4140 end:0x007E5180
+ .data start:0x007E5180 end:0x007E61E0
+ .data start:0x007E61E0 end:0x007E72A0
+ .data start:0x007E72A0 end:0x007E8380
+ .data start:0x007E8380 end:0x007E94C0
+ .data start:0x007E94C0 end:0x007EA5C0
+ .data start:0x007EA5C0 end:0x007EB6A0
+ .data start:0x007EB6A0 end:0x007EC780
+ .data start:0x007EC780 end:0x007ED840
+ .data start:0x007ED840 end:0x007EE860
+ .data start:0x007EE860 end:0x007EF8A0
+ .data start:0x007EF8A0 end:0x007F08C0
+ .data start:0x007F08C0 end:0x007F1980
+ .data start:0x007F1980 end:0x007F2A60
+ .data start:0x007F2A60 end:0x007F3B40
+ .data start:0x007F3B40 end:0x007F4C20
+ .data start:0x007F4C20 end:0x007F5C00
+ .data start:0x007F5C00 end:0x007F6BE0
+ .data start:0x007F6BE0 end:0x007F7C40
+ .data start:0x007F7C40 end:0x007F8C60
+ .data start:0x007F8C60 end:0x007F9C00
+ .data start:0x007F9C00 end:0x007FAC00
+ .data start:0x007FAC00 end:0x007FBBC0
+ .data start:0x007FBBC0 end:0x007FCB60
+ .data start:0x007FCB60 end:0x007FDCA0
+ .data start:0x007FDCA0 end:0x007FEE00
+ .data start:0x007FEE00 end:0x007FFF60
+ .data start:0x007FFF60 end:0x00801080
+ .data start:0x00801080 end:0x008021C0
+ .data start:0x008021C0 end:0x00803320
+ .data start:0x00803320 end:0x00804400
+ .data start:0x00804400 end:0x00805500
+ .data start:0x00805500 end:0x00806640
+ .data start:0x00806640 end:0x00807640
+ .data start:0x00807640 end:0x008086A0
+ .data start:0x008086A0 end:0x008096E0
+ .data start:0x008096E0 end:0x0080A7E0
+ .data start:0x0080A7E0 end:0x0080B900
+ .data start:0x0080B900 end:0x0080CAA0
+ .data start:0x0080CAA0 end:0x0080D4E0
+ .data start:0x0080D4E0 end:0x0080E240
+ .data start:0x0080E240 end:0x0080F0E0
+ .data start:0x0080F0E0 end:0x00810020
+ .data start:0x00810020 end:0x00810F60
+ .data start:0x00810F60 end:0x008116C0
+ .data start:0x008116C0 end:0x00811E40
+ .data start:0x00811E40 end:0x00812DC0
+ .data start:0x00812DC0 end:0x00814060
+ .data start:0x00814060 end:0x008147C0
+ .data start:0x008147C0 end:0x00814F20
+ .data start:0x00814F20 end:0x008156C0
+ .data start:0x008156C0 end:0x00815EC0
+ .data start:0x00815EC0 end:0x008176C0
+ .data start:0x008176C0 end:0x00819B00
+ .data start:0x00819B00 end:0x0081B120
+ .data start:0x0081B120 end:0x0081BE00
+ .data start:0x0081BE00 end:0x0081CAA0
+ .data start:0x0081CAA0 end:0x0081D8E0
+ .data start:0x0081D8E0 end:0x0081E580
+ .data start:0x0081E580 end:0x00820340
+ .data start:0x00820340 end:0x00821540
+ .data start:0x00821540 end:0x00822120
+ .data start:0x00822120 end:0x00822CC0
+ .data start:0x00822CC0 end:0x008240C0
+ .data start:0x008240C0 end:0x00824E20
+ .data start:0x00824E20 end:0x00825E60
+ .data start:0x00825E60 end:0x00827180
+ .data start:0x00827180 end:0x00827BC0
+ .data start:0x00827BC0 end:0x00829080
+ .data start:0x00829080 end:0x00829760
+ .data start:0x00829760 end:0x0082A560
+ .data start:0x0082A560 end:0x0082B5C0
+ .data start:0x0082B5C0 end:0x0082C680
+ .data start:0x0082C680 end:0x0082D520
+ .data start:0x0082D520 end:0x0082E2E0
+ .data start:0x0082E2E0 end:0x0082F0A0
+ .data start:0x0082F0A0 end:0x008305E0
+ .data start:0x008305E0 end:0x00831700
+ .data start:0x00831700 end:0x00832500
+ .data start:0x00832500 end:0x00833240
+ .data start:0x00833240 end:0x00833B00
+ .data start:0x00833B00 end:0x00835340
+ .data start:0x00835340 end:0x00836A20
+ .data start:0x00836A20 end:0x00837B20
+ .data start:0x00837B20 end:0x00838520
+ .data start:0x00838520 end:0x00839480
+ .data start:0x00839480 end:0x00839CE0
+ .data start:0x00839CE0 end:0x0083A680
+ .data start:0x0083A680 end:0x0083B500
+ .data start:0x0083B500 end:0x0083CFC0
+ .data start:0x0083CFC0 end:0x0083E980
+ .data start:0x0083E980 end:0x0083EF00
+ .data start:0x0083EF00 end:0x0083F480
+ .data start:0x0083F480 end:0x0083FA00
+ .data start:0x0083FA00 end:0x0083FF80
+ .data start:0x0083FF80 end:0x00840500
+ .data start:0x00840500 end:0x00840CE0
+ .data start:0x00840CE0 end:0x00841BE0
+ .data start:0x00841BE0 end:0x008423A0
+ .data start:0x008423A0 end:0x00842FC0
+ .data start:0x00842FC0 end:0x00843C80
+ .data start:0x00843C80 end:0x00844940
+ .data start:0x00844940 end:0x00844E20
+ .data start:0x00844E20 end:0x00845A60
+ .data start:0x00845A60 end:0x00846B00
+ .data start:0x00846B00 end:0x00847740
+ .data start:0x00847740 end:0x00848280
+ .data start:0x00848280 end:0x00848A80
+ .data start:0x00848A80 end:0x00849D60
+ .data start:0x00849D60 end:0x0084B500
+ .data start:0x0084B500 end:0x0084C8A0
+ .data start:0x0084C8A0 end:0x0084D3A0
+ .data start:0x0084D3A0 end:0x0084E280
+ .data start:0x0084E280 end:0x0084E980
+ .data start:0x0084E980 end:0x0084F5C0
+ .data start:0x0084F5C0 end:0x00850380
+ .data start:0x00850380 end:0x00851000
+ .data start:0x00851000 end:0x00851EE0
+ .data start:0x00851EE0 end:0x00852F40
+ .data start:0x00852F40 end:0x00853BA0
+ .data start:0x00853BA0 end:0x00854860
+ .data start:0x00854860 end:0x00855320
+ .data start:0x00855320 end:0x00855DE0
+ .data start:0x00855DE0 end:0x00856DC0
+ .data start:0x00856DC0 end:0x00857C40
+ .data start:0x00857C40 end:0x00858980
+ .data start:0x00858980 end:0x00859780
+ .data start:0x00859780 end:0x0085A2E0
+ .data start:0x0085A2E0 end:0x0085B460
+ .data start:0x0085B460 end:0x0085C180
+ .data start:0x0085C180 end:0x0085C820
+ .data start:0x0085C820 end:0x0085CF00
+ .data start:0x0085CF00 end:0x0085D6A0
+ .data start:0x0085D6A0 end:0x0085E1E0
+ .data start:0x0085E1E0 end:0x0085EDE0
+ .data start:0x0085EDE0 end:0x0085F3C0
+ .data start:0x0085F3C0 end:0x0085F780
+ .data start:0x0085F780 end:0x008607A0
+ .data start:0x008607A0 end:0x00861300
+ .data start:0x00861300 end:0x00861CC0
+ .data start:0x00861CC0 end:0x00862C60
+ .data start:0x00862C60 end:0x00863EA0
+ .data start:0x00863EA0 end:0x00864540
+ .data start:0x00864540 end:0x00865320
+ .data start:0x00865320 end:0x00865DE0
+ .data start:0x00865DE0 end:0x00866A20
+ .data start:0x00866A20 end:0x00867C40
+ .data start:0x00867C40 end:0x00868A20
+ .data start:0x00868A20 end:0x00869640
+ .data start:0x00869640 end:0x0086A520
+ .data start:0x0086A520 end:0x0086AFE0
+ .data start:0x0086AFE0 end:0x0086BAA0
+ .data start:0x0086BAA0 end:0x0086BFB0
+ .data start:0x0086BFB0 end:0x0086C4C8
+ .data start:0x0086C4C8 end:0x0086C8D8
+ .data start:0x0086C8D8 end:0x0086CB20
+ .data start:0x0086CB20 end:0x0086CF00
+ .data start:0x0086CF00 end:0x0086D380
+ .data start:0x0086D380 end:0x0086D560
+ .data start:0x0086D560 end:0x0086DAC0
+ .data start:0x0086DAC0 end:0x0086DFD8
+ .data start:0x0086DFD8 end:0x0086E380
+ .data start:0x0086E380 end:0x0086E958
+ .data start:0x0086E958 end:0x0086EE68
+ .data start:0x0086EE68 end:0x0086F210
+ .data start:0x0086F210 end:0x0086F2C0
+ .data start:0x0086F2C0 end:0x0086FE10
+ .data start:0x0086FE10 end:0x00870388
+ .data start:0x00870388 end:0x00870758
+ .data start:0x00870758 end:0x00870C68
+ .data start:0x00870C68 end:0x00871010
+ .data start:0x00871010 end:0x00871258
+ .data start:0x00871258 end:0x008716C8
+ .data start:0x008716C8 end:0x00871BB8
+ .data start:0x00871BB8 end:0x00871F80
+ .data start:0x00871F80 end:0x00872470
+ .data start:0x00872470 end:0x00872880
+ .data start:0x00872880 end:0x00872C48
+ .data start:0x00872C48 end:0x00873158
+ .data start:0x00873158 end:0x00873700
+ .data start:0x00873700 end:0x00873AA8
+ .data start:0x00873AA8 end:0x00873B58
+ .data start:0x00873B58 end:0x008746A8
+ .data start:0x008746A8 end:0x00874998
+ .data start:0x00874998 end:0x00874C88
+ .data start:0x00874C88 end:0x00875168
+ .data start:0x00875168 end:0x00875510
+ .data start:0x00875510 end:0x008755C0
+ .data start:0x008755C0 end:0x00876110
+ .data start:0x00876110 end:0x00876580
+ .data start:0x00876580 end:0x00876928
+ .data start:0x00876928 end:0x008769E0
+ .data start:0x008769E0 end:0x00877530
+ .data start:0x00877530 end:0x00877A48
+ .data start:0x00877A48 end:0x00877B10
+ .data start:0x00877B10 end:0x00878028
+ .data start:0x00878028 end:0x00878470
+ .data start:0x00878470 end:0x00878938
+ .data start:0x00878938 end:0x00878CE0
+ .data start:0x00878CE0 end:0x008791C0
+ .data start:0x008791C0 end:0x00879698
+ .data start:0x00879698 end:0x00879BA8
+ .data start:0x00879BA8 end:0x0087A0B8
+ .data start:0x0087A0B8 end:0x0087A0C8
+ .data start:0x0087A0C8 end:0x0087A140
+ .data start:0x0087A140 end:0x0087EA40
+ .data start:0x0087EA40 end:0x008805D8
+ .data start:0x008805D8 end:0x00880640
+ .data start:0x00880640 end:0x00888420
+ .data start:0x00888420 end:0x00888480
+ .data start:0x00888480 end:0x00889160
+ .data start:0x00889160 end:0x0088B870
+ .data start:0x0088B870 end:0x0088C260
+ .data start:0x0088C260 end:0x0088C7D0
+ .data start:0x0088C7D0 end:0x0088CD28
+ .data start:0x0088CD28 end:0x0088D278
+ .data start:0x0088D278 end:0x0088D440
+ .data start:0x0088D440 end:0x0088D740
+ .data start:0x0088D740 end:0x0088DA00
+ .data start:0x0088DA00 end:0x0088DCC0
+ .data start:0x0088DCC0 end:0x0088DF80
+ .data start:0x0088DF80 end:0x0088E240
+ .data start:0x0088E240 end:0x0088E500
+ .data start:0x0088E500 end:0x0088E7C0
+ .data start:0x0088E7C0 end:0x0088EA80
+ .data start:0x0088EA80 end:0x0088ED40
+ .data start:0x0088ED40 end:0x0088F000
+ .data start:0x0088F000 end:0x0088F2C0
+ .data start:0x0088F2C0 end:0x0088F580
+ .data start:0x0088F580 end:0x0088F840
+ .data start:0x0088F840 end:0x0088FB00
+ .data start:0x0088FB00 end:0x0088FDC0
+ .data start:0x0088FDC0 end:0x00890080
+ .data start:0x00890080 end:0x00890340
+ .data start:0x00890340 end:0x00890600
+ .data start:0x00890600 end:0x008908C0
+ .data start:0x008908C0 end:0x00890B80
+ .data start:0x00890B80 end:0x00890E40
+ .data start:0x00890E40 end:0x00891100
+ .data start:0x00891100 end:0x008913C0
+ .data start:0x008913C0 end:0x008916A0
+ .data start:0x008916A0 end:0x00891960
+ .data start:0x00891960 end:0x00891C20
+ .data start:0x00891C20 end:0x00891EE0
+ .data start:0x00891EE0 end:0x00892200
+ .data start:0x00892200 end:0x008924C0
+ .data start:0x008924C0 end:0x00892780
+ .data start:0x00892780 end:0x00892A40
+ .data start:0x00892A40 end:0x00892D00
+ .data start:0x00892D00 end:0x00892FC0
+ .data start:0x00892FC0 end:0x00893280
+ .data start:0x00893280 end:0x00893540
+ .data start:0x00893540 end:0x00893800
+ .data start:0x00893800 end:0x00893AC0
+ .data start:0x00893AC0 end:0x00893D80
+ .data start:0x00893D80 end:0x00894040
+ .data start:0x00894040 end:0x00894300
+ .data start:0x00894300 end:0x008945C0
+ .data start:0x008945C0 end:0x00894880
+ .data start:0x00894880 end:0x00894B40
+ .data start:0x00894B40 end:0x00894E00
+ .data start:0x00894E00 end:0x008950C0
+ .data start:0x008950C0 end:0x00895200
+ .data start:0x00895200 end:0x00895340
+ .data start:0x00895340 end:0x00895480
+ .data start:0x00895480 end:0x008955C0
+ .data start:0x008955C0 end:0x00895880
+ .data start:0x00895880 end:0x00895B40
+ .data start:0x00895B40 end:0x00895E00
+ .data start:0x00895E00 end:0x008966A0
+ .data start:0x008966A0 end:0x00897340
+ .data start:0x00897340 end:0x00897C40
+ .data start:0x00897C40 end:0x00898D00
+ .data start:0x00898D00 end:0x00899DA0
+ .data start:0x00899DA0 end:0x0089AB40
+ .data start:0x0089AB40 end:0x0089B6E0
+ .data start:0x0089B6E0 end:0x0089C200
+ .data start:0x0089C200 end:0x0089D0A0
+ .data start:0x0089D0A0 end:0x0089DCC0
+ .data start:0x0089DCC0 end:0x0089E680
+ .data start:0x0089E680 end:0x0089F560
+ .data start:0x0089F560 end:0x0089FF20
+ .data start:0x0089FF20 end:0x008A0C40
+ .data start:0x008A0C40 end:0x008A1BE0
+ .data start:0x008A1BE0 end:0x008A2620
+ .data start:0x008A2620 end:0x008A3460
+ .data start:0x008A3460 end:0x008A3CA0
+ .data start:0x008A3CA0 end:0x008A4740
+ .data start:0x008A4740 end:0x008A5480
+ .data start:0x008A5480 end:0x008A5BA0
+ .data start:0x008A5BA0 end:0x008A65C0
+ .data start:0x008A65C0 end:0x008A7100
+ .data start:0x008A7100 end:0x008A7D20
+ .data start:0x008A7D20 end:0x008A8760
+ .data start:0x008A8760 end:0x008A93C0
+ .data start:0x008A93C0 end:0x008AA1A0
+ .data start:0x008AA1A0 end:0x008AACA0
+ .data start:0x008AACA0 end:0x008ABA00
+ .data start:0x008ABA00 end:0x008AC9E0
+ .data start:0x008AC9E0 end:0x008AD6E0
+ .data start:0x008AD6E0 end:0x008AE3E0
+ .data start:0x008AE3E0 end:0x008AF1A0
+ .data start:0x008AF1A0 end:0x008AFDC0
+ .data start:0x008AFDC0 end:0x008B0C40
+ .data start:0x008B0C40 end:0x008B1B00
+ .data start:0x008B1B00 end:0x008B2760
+ .data start:0x008B2760 end:0x008B3360
+ .data start:0x008B3360 end:0x008B3EE0
+ .data start:0x008B3EE0 end:0x008B4B80
+ .data start:0x008B4B80 end:0x008B59E0
+ .data start:0x008B59E0 end:0x008B6640
+ .data start:0x008B6640 end:0x008B7080
+ .data start:0x008B7080 end:0x008B7B80
+ .data start:0x008B7B80 end:0x008B87C0
+ .data start:0x008B87C0 end:0x008B9200
+ .data start:0x008B9200 end:0x008B9FC0
+ .data start:0x008B9FC0 end:0x008BB020
+
+data/field/bg/acre/rom_toudai/rom_toudai.c:
+ .data start:0x008BB020 end:0x008BDB20
+
+data/submenu/map/kan_tizu.c:
+ .data start:0x008BDB20 end:0x008C4720
+
+data/submenu/map/kan_tizu2.c:
+ .data start:0x008C4720 end:0x008C6520
+
+data/dataobject/dataobject_8C6520:
+ .data start:0x008C6520 end:0x008C65A0
+
+data/field/bg/acre/rom_museum1/rom_museum1.c:
+ .data start:0x008C65A0 end:0x008CC868
+
+data/dataobject/dataobject_8CC868:
+ .data start:0x008CC868 end:0x008CC8C0
+
+data/field/bg/acre/rom_museum5/rom_museum5.c:
+ .data start:0x008CC8C0 end:0x008CF7A0
+
+data/dataobject/dataobject_8CF7A0:
+ .data start:0x008CF7A0 end:0x008D0088
+ .data start:0x008D0088 end:0x008D00C0
+
+data/field/bg/acre/rom_museum2/rom_museum2.c:
+ .data start:0x008D00C0 end:0x008D3658
+
+data/dataobject/dataobject_8D3658:
+ .data start:0x008D3658 end:0x008D36A0
+ .data start:0x008D36A0 end:0x008D6620
+ .data start:0x008D6620 end:0x008D6908
+ .data start:0x008D6908 end:0x008D6940
+
+data/field/bg/acre/rom_museum3/rom_museum3.c:
+ .data start:0x008D6940 end:0x008DA918
+
+data/dataobject/dataobject_8DA918:
+ .data start:0x008DA918 end:0x008DA960
+ .data start:0x008DA960 end:0x008DB378
+ .data start:0x008DB378 end:0x008DB380
+ .data start:0x008DB380 end:0x008DBD60
+
+data/field/bg/acre/rom_tailor/rom_tailor.c:
+ .data start:0x008DBD60 end:0x008E4AB0
+
+data/dataobject/dataobject_8E4AB0:
+ .data start:0x008E4AB0 end:0x008E4B20
+ .data start:0x008E4B20 end:0x008E5A80
+ .data start:0x008E5A80 end:0x008E67A0
+ .data start:0x008E67A0 end:0x008E77A0
+ .data start:0x008E77A0 end:0x008E87A0
+ .data start:0x008E87A0 end:0x008E97A0
+ .data start:0x008E97A0 end:0x008EA7A0
+ .data start:0x008EA7A0 end:0x008EB7A0
+ .data start:0x008EB7A0 end:0x008ED060
+ .data start:0x008ED060 end:0x008EE920
+ .data start:0x008EE920 end:0x008F01E0
+ .data start:0x008F01E0 end:0x008F0C40
+ .data start:0x008F0C40 end:0x008F24B8
+ .data start:0x008F24B8 end:0x008F24C0
+ .data start:0x008F24C0 end:0x008F2D00
+ .data start:0x008F2D00 end:0x008F3540
+ .data start:0x008F3540 end:0x008F44A0
+ .data start:0x008F44A0 end:0x008F4D60
+ .data start:0x008F4D60 end:0x008F5980
+ .data start:0x008F5980 end:0x008F5FE0
+ .data start:0x008F5FE0 end:0x008F6D20
+ .data start:0x008F6D20 end:0x008F82A0
+ .data start:0x008F82A0 end:0x008F8560
+ .data start:0x008F8560 end:0x008F92A0
+ .data start:0x008F92A0 end:0x008FA0C0
+ .data start:0x008FA0C0 end:0x008FA200
+ .data start:0x008FA200 end:0x008FADE0
+ .data start:0x008FADE0 end:0x008FB4E0
+ .data start:0x008FB4E0 end:0x008FC300
+ .data start:0x008FC300 end:0x008FD1E0
+ .data start:0x008FD1E0 end:0x008FF4E0
+ .data start:0x008FF4E0 end:0x008FFE80
+ .data start:0x008FFE80 end:0x00900CA0
+ .data start:0x00900CA0 end:0x00901660
+ .data start:0x00901660 end:0x00902020
+ .data start:0x00902020 end:0x00902980
+ .data start:0x00902980 end:0x009032E0
+ .data start:0x009032E0 end:0x00903FC0
+ .data start:0x00903FC0 end:0x00904F80
+ .data start:0x00904F80 end:0x00905DA0
+ .data start:0x00905DA0 end:0x009070A0
+ .data start:0x009070A0 end:0x00907F60
+ .data start:0x00907F60 end:0x00908CE0
+ .data start:0x00908CE0 end:0x00909300
+ .data start:0x00909300 end:0x0090A1E0
+ .data start:0x0090A1E0 end:0x0090B260
+ .data start:0x0090B260 end:0x0090BE40
+ .data start:0x0090BE40 end:0x0090CD20
+ .data start:0x0090CD20 end:0x0090DC20
+ .data start:0x0090DC20 end:0x0090E260
+ .data start:0x0090E260 end:0x0090E960
+ .data start:0x0090E960 end:0x0090F060
+ .data start:0x0090F060 end:0x0090FFA0
+ .data start:0x0090FFA0 end:0x00910740
+ .data start:0x00910740 end:0x00910EE0
+ .data start:0x00910EE0 end:0x00911100
+ .data start:0x00911100 end:0x00911880
+ .data start:0x00911880 end:0x00912000
+ .data start:0x00912000 end:0x00912D40
+ .data start:0x00912D40 end:0x00913600
+ .data start:0x00913600 end:0x00914380
+ .data start:0x00914380 end:0x009154A0
+ .data start:0x009154A0 end:0x00915D20
+ .data start:0x00915D20 end:0x00916E20
+ .data start:0x00916E20 end:0x009185E0
+ .data start:0x009185E0 end:0x0091A380
+ .data start:0x0091A380 end:0x0091B7E0
+ .data start:0x0091B7E0 end:0x0091C660
+ .data start:0x0091C660 end:0x0091CE60
+ .data start:0x0091CE60 end:0x0091DC80
+ .data start:0x0091DC80 end:0x0091E660
+ .data start:0x0091E660 end:0x0091F260
+ .data start:0x0091F260 end:0x0091FF40
+ .data start:0x0091FF40 end:0x00920CA0
+ .data start:0x00920CA0 end:0x00921C00
+ .data start:0x00921C00 end:0x00922940
+ .data start:0x00922940 end:0x00923880
+ .data start:0x00923880 end:0x00924560
+ .data start:0x00924560 end:0x00925200
+ .data start:0x00925200 end:0x00925D40
+ .data start:0x00925D40 end:0x00926AA0
+ .data start:0x00926AA0 end:0x009272E0
+ .data start:0x009272E0 end:0x00927D20
+ .data start:0x00927D20 end:0x00928E40
+ .data start:0x00928E40 end:0x00929C60
+ .data start:0x00929C60 end:0x0092A640
+ .data start:0x0092A640 end:0x0092B140
+ .data start:0x0092B140 end:0x0092BDA0
+ .data start:0x0092BDA0 end:0x0092C768
+ .data start:0x0092C768 end:0x0092C780
+ .data start:0x0092C780 end:0x0092CF20
+ .data start:0x0092CF20 end:0x0092D5C0
+ .data start:0x0092D5C0 end:0x0092DC90
+ .data start:0x0092DC90 end:0x0092E418
+ .data start:0x0092E418 end:0x0092EBA0
+ .data start:0x0092EBA0 end:0x0092F340
+ .data start:0x0092F340 end:0x0092FB88
+ .data start:0x0092FB88 end:0x00930310
+ .data start:0x00930310 end:0x00930A98
+ .data start:0x00930A98 end:0x00931220
+ .data start:0x00931220 end:0x009319C0
+ .data start:0x009319C0 end:0x00932060
+ .data start:0x00932060 end:0x009327E8
+ .data start:0x009327E8 end:0x00932F70
+ .data start:0x00932F70 end:0x009336F8
+ .data start:0x009336F8 end:0x00933E80
+ .data start:0x00933E80 end:0x00934620
+ .data start:0x00934620 end:0x00934CC0
+ .data start:0x00934CC0 end:0x00935448
+ .data start:0x00935448 end:0x00935BD0
+ .data start:0x00935BD0 end:0x00936358
+ .data start:0x00936358 end:0x00936AE0
+ .data start:0x00936AE0 end:0x00937268
+ .data start:0x00937268 end:0x00937280
+
+data/field/bg/acre/myr_etc/myr_etc.c:
+ .data start:0x00937280 end:0x00938220
+
+data/field/bg/acre/grd_player_select/grd_player_select_evw_anime.c:
+ .data start:0x00938220 end:0x00938240
+
+data/field/bg/acre/grd_player_select/grd_player_select.c:
+ .data start:0x00938240 end:0x00939AA0
+
+data/field/bg/acre/police_indoor/police_indoor.c:
+ .data start:0x00939AA0 end:0x0093EDC8
+
+data/field/bg/rail_pal.c:
+ .data start:0x0093EDC8 end:0x0093EF60
+
+data/dataobject/dataobject_93EF60:
+ .data start:0x0093EF60 end:0x00940760
+ .data start:0x00940760 end:0x00941F60
+ .data start:0x00941F60 end:0x00942B60
+ .data start:0x00942B60 end:0x00943760
+ .data start:0x00943760 end:0x00944360
+ .data start:0x00944360 end:0x00944F60
+ .data start:0x00944F60 end:0x00945830
+ .data start:0x00945830 end:0x00947800
+ .data start:0x00947800 end:0x00948850
+ .data start:0x00948850 end:0x009498B0
+ .data start:0x009498B0 end:0x00949FC0
+ .data start:0x00949FC0 end:0x0094A800
+ .data start:0x0094A800 end:0x0094B7D8
+ .data start:0x0094B7D8 end:0x0094C260
+ .data start:0x0094C260 end:0x0094F3A0
+ .data start:0x0094F3A0 end:0x0094F880
+ .data start:0x0094F880 end:0x00952A80
+
+data/field/bg/acre/rom_shop4_1/rom_shop4_1.c:
+ .data start:0x00952A80 end:0x00958F00
+
+data/field/bg/acre/rom_shop4_fuku/rom_shop4_fuku.c:
+ .data start:0x00958F00 end:0x0095F920
+
+data/dataobject/dataobject_95F920:
+ .data start:0x0095F920 end:0x00964830
+ .data start:0x00964830 end:0x00964CA0
+ .data start:0x00964CA0 end:0x00969A20
+ .data start:0x00969A20 end:0x00969D60
+ .data start:0x00969D60 end:0x0096ED80
+ .data start:0x0096ED80 end:0x00971A98
+ .data start:0x00971A98 end:0x00972180
+ .data start:0x00972180 end:0x00977E40
+ .data start:0x00977E40 end:0x00978040
+ .data start:0x00978040 end:0x00978240
+ .data start:0x00978240 end:0x00978260
+ .data start:0x00978260 end:0x00979A60
+ .data start:0x00979A60 end:0x0097B260
+ .data start:0x0097B260 end:0x0097CA60
+ .data start:0x0097CA60 end:0x0097E260
+ .data start:0x0097E260 end:0x0097EEA0
+ .data start:0x0097EEA0 end:0x009803A0
+ .data start:0x009803A0 end:0x009810C0
+ .data start:0x009810C0 end:0x00982230
+ .data start:0x00982230 end:0x00982240
+ .data start:0x00982240 end:0x00983140
+ .data start:0x00983140 end:0x00984520
+ .data start:0x00984520 end:0x009855E0
+ .data start:0x009855E0 end:0x00986560
+ .data start:0x00986560 end:0x00987420
+ .data start:0x00987420 end:0x00988180
+ .data start:0x00988180 end:0x00988E20
+ .data start:0x00988E20 end:0x00989AC0
+ .data start:0x00989AC0 end:0x0098A760
+ .data start:0x0098A760 end:0x0098B400
+ .data start:0x0098B400 end:0x0098C0A0
+ .data start:0x0098C0A0 end:0x0098CD40
+ .data start:0x0098CD40 end:0x0098D9E0
+ .data start:0x0098D9E0 end:0x0098E680
+ .data start:0x0098E680 end:0x0098F320
+ .data start:0x0098F320 end:0x0098FFC0
+ .data start:0x0098FFC0 end:0x00990C60
+ .data start:0x00990C60 end:0x00991900
+ .data start:0x00991900 end:0x009925A0
+ .data start:0x009925A0 end:0x009932C0
+ .data start:0x009932C0 end:0x00993EA0
+ .data start:0x00993EA0 end:0x00994A80
+ .data start:0x00994A80 end:0x009955A0
+ .data start:0x009955A0 end:0x00996460
+ .data start:0x00996460 end:0x009969C0
+ .data start:0x009969C0 end:0x00996F00
+ .data start:0x00996F00 end:0x009978E0
+ .data start:0x009978E0 end:0x009982C0
+ .data start:0x009982C0 end:0x009989E0
+ .data start:0x009989E0 end:0x009998A0
+ .data start:0x009998A0 end:0x0099A3C0
+ .data start:0x0099A3C0 end:0x0099B120
+ .data start:0x0099B120 end:0x0099BE60
+ .data start:0x0099BE60 end:0x0099CD20
+ .data start:0x0099CD20 end:0x0099DC00
+ .data start:0x0099DC00 end:0x0099EAB0
+ .data start:0x0099EAB0 end:0x0099EAC0
+ .data start:0x0099EAC0 end:0x0099F780
+ .data start:0x0099F780 end:0x009A0420
+ .data start:0x009A0420 end:0x009A0F60
+ .data start:0x009A0F60 end:0x009A1B60
+ .data start:0x009A1B60 end:0x009A2660
+ .data start:0x009A2660 end:0x009A33A0
+ .data start:0x009A33A0 end:0x009A4160
+ .data start:0x009A4160 end:0x009A4D60
+ .data start:0x009A4D60 end:0x009A5640
+ .data start:0x009A5640 end:0x009A6240
+ .data start:0x009A6240 end:0x009A6D20
+ .data start:0x009A6D20 end:0x009A75A0
+ .data start:0x009A75A0 end:0x009A8100
+ .data start:0x009A8100 end:0x009A8AC0
+ .data start:0x009A8AC0 end:0x009A9820
+ .data start:0x009A9820 end:0x009AA720
+ .data start:0x009AA720 end:0x009AAE60
+ .data start:0x009AAE60 end:0x009AB9C0
+ .data start:0x009AB9C0 end:0x009AC440
+ .data start:0x009AC440 end:0x009AD2C0
+ .data start:0x009AD2C0 end:0x009ADF40
+ .data start:0x009ADF40 end:0x009AE7C0
+ .data start:0x009AE7C0 end:0x009AF4E0
+ .data start:0x009AF4E0 end:0x009B0340
+ .data start:0x009B0340 end:0x009B1200
+ .data start:0x009B1200 end:0x009B2000
+ .data start:0x009B2000 end:0x009B2DE0
+ .data start:0x009B2DE0 end:0x009B3E80
+ .data start:0x009B3E80 end:0x009B4E00
+ .data start:0x009B4E00 end:0x009B5C00
+ .data start:0x009B5C00 end:0x009B69A0
+ .data start:0x009B69A0 end:0x009B76E0
+ .data start:0x009B76E0 end:0x009B8260
+ .data start:0x009B8260 end:0x009B8EC0
+ .data start:0x009B8EC0 end:0x009B9C00
+ .data start:0x009B9C00 end:0x009BA8C0
+ .data start:0x009BA8C0 end:0x009BB320
+ .data start:0x009BB320 end:0x009BC020
+ .data start:0x009BC020 end:0x009BCE40
+ .data start:0x009BCE40 end:0x009BDA60
+ .data start:0x009BDA60 end:0x009BE9E0
+ .data start:0x009BE9E0 end:0x009BF6C0
+ .data start:0x009BF6C0 end:0x009C0060
+ .data start:0x009C0060 end:0x009C0E60
+ .data start:0x009C0E60 end:0x009C1A80
+ .data start:0x009C1A80 end:0x009C2760
+ .data start:0x009C2760 end:0x009C3540
+ .data start:0x009C3540 end:0x009C3E60
+ .data start:0x009C3E60 end:0x009C4780
+ .data start:0x009C4780 end:0x009C50A0
+ .data start:0x009C50A0 end:0x009C5FE0
+ .data start:0x009C5FE0 end:0x009C67E0
+ .data start:0x009C67E0 end:0x009C74C0
+ .data start:0x009C74C0 end:0x009C8380
+ .data start:0x009C8380 end:0x009C8FA0
+ .data start:0x009C8FA0 end:0x009C9DE0
+ .data start:0x009C9DE0 end:0x009CA980
+ .data start:0x009CA980 end:0x009CB760
+ .data start:0x009CB760 end:0x009CC600
+ .data start:0x009CC600 end:0x009CD220
+ .data start:0x009CD220 end:0x009CE000
+ .data start:0x009CE000 end:0x009CEDE0
+ .data start:0x009CEDE0 end:0x009CF720
+ .data start:0x009CF720 end:0x009D0120
+ .data start:0x009D0120 end:0x009D0D80
+ .data start:0x009D0D80 end:0x009D1E40
+ .data start:0x009D1E40 end:0x009D2A20
+ .data start:0x009D2A20 end:0x009D38C0
+ .data start:0x009D38C0 end:0x009D4440
+ .data start:0x009D4440 end:0x009D53C0
+ .data start:0x009D53C0 end:0x009D6160
+ .data start:0x009D6160 end:0x009D6F00
+ .data start:0x009D6F00 end:0x009D7CA0
+ .data start:0x009D7CA0 end:0x009D86C0
+ .data start:0x009D86C0 end:0x009D90E0
+ .data start:0x009D90E0 end:0x009D9B00
+ .data start:0x009D9B00 end:0x009DA520
+ .data start:0x009DA520 end:0x009DAF40
+ .data start:0x009DAF40 end:0x009DB960
+ .data start:0x009DB960 end:0x009DC380
+ .data start:0x009DC380 end:0x009DD140
+ .data start:0x009DD140 end:0x009DDB80
+ .data start:0x009DDB80 end:0x009DE580
+ .data start:0x009DE580 end:0x009DEF80
+ .data start:0x009DEF80 end:0x009DF7C0
+ .data start:0x009DF7C0 end:0x009E0000
+ .data start:0x009E0000 end:0x009E0D60
+ .data start:0x009E0D60 end:0x009E1CC0
+ .data start:0x009E1CC0 end:0x009E2880
+ .data start:0x009E2880 end:0x009E3320
+ .data start:0x009E3320 end:0x009E3D60
+ .data start:0x009E3D60 end:0x009E4480
+ .data start:0x009E4480 end:0x009E5460
+ .data start:0x009E5460 end:0x009E6260
+ .data start:0x009E6260 end:0x009E71A0
+ .data start:0x009E71A0 end:0x009E7E20
+ .data start:0x009E7E20 end:0x009E8DA0
+ .data start:0x009E8DA0 end:0x009E9920
+ .data start:0x009E9920 end:0x009EA8A0
+ .data start:0x009EA8A0 end:0x009EB860
+ .data start:0x009EB860 end:0x009EC7E0
+ .data start:0x009EC7E0 end:0x009ED740
+ .data start:0x009ED740 end:0x009EE460
+ .data start:0x009EE460 end:0x009EF100
+ .data start:0x009EF100 end:0x009EFDC0
+ .data start:0x009EFDC0 end:0x009F09E0
+ .data start:0x009F09E0 end:0x009F1860
+ .data start:0x009F1860 end:0x009F24A0
+ .data start:0x009F24A0 end:0x009F32C0
+ .data start:0x009F32C0 end:0x009F3C60
+ .data start:0x009F3C60 end:0x009F48E0
+ .data start:0x009F48E0 end:0x009F5300
+ .data start:0x009F5300 end:0x009F6080
+ .data start:0x009F6080 end:0x009F6E00
+ .data start:0x009F6E00 end:0x009F7BE0
+ .data start:0x009F7BE0 end:0x009F89A0
+ .data start:0x009F89A0 end:0x009F9980
+ .data start:0x009F9980 end:0x009FA5C0
+ .data start:0x009FA5C0 end:0x009FB480
+ .data start:0x009FB480 end:0x009FC2A0
+ .data start:0x009FC2A0 end:0x009FCFA0
+ .data start:0x009FCFA0 end:0x009FDF20
+ .data start:0x009FDF20 end:0x009FEE60
+ .data start:0x009FEE60 end:0x009FFDC0
+ .data start:0x009FFDC0 end:0x00A00820
+ .data start:0x00A00820 end:0x00A01660
+ .data start:0x00A01660 end:0x00A02180
+ .data start:0x00A02180 end:0x00A02F20
+ .data start:0x00A02F20 end:0x00A03CE0
+ .data start:0x00A03CE0 end:0x00A04A20
+ .data start:0x00A04A20 end:0x00A058A0
+ .data start:0x00A058A0 end:0x00A06A00
+ .data start:0x00A06A00 end:0x00A077C0
+ .data start:0x00A077C0 end:0x00A085C0
+ .data start:0x00A085C0 end:0x00A09320
+ .data start:0x00A09320 end:0x00A09EA0
+ .data start:0x00A09EA0 end:0x00A0ABC0
+ .data start:0x00A0ABC0 end:0x00A0B9E0
+ .data start:0x00A0B9E0 end:0x00A0C780
+ .data start:0x00A0C780 end:0x00A0D580
+ .data start:0x00A0D580 end:0x00A0E540
+ .data start:0x00A0E540 end:0x00A0F140
+ .data start:0x00A0F140 end:0x00A10100
+ .data start:0x00A10100 end:0x00A112A0
+ .data start:0x00A112A0 end:0x00A11EC0
+ .data start:0x00A11EC0 end:0x00A127A0
+ .data start:0x00A127A0 end:0x00A13560
+ .data start:0x00A13560 end:0x00A14340
+ .data start:0x00A14340 end:0x00A153C0
+ .data start:0x00A153C0 end:0x00A15FA0
+ .data start:0x00A15FA0 end:0x00A16AC0
+ .data start:0x00A16AC0 end:0x00A17A20
+ .data start:0x00A17A20 end:0x00A186E0
+ .data start:0x00A186E0 end:0x00A19040
+ .data start:0x00A19040 end:0x00A19D40
+ .data start:0x00A19D40 end:0x00A1A6E0
+ .data start:0x00A1A6E0 end:0x00A1B280
+ .data start:0x00A1B280 end:0x00A1C0C0
+ .data start:0x00A1C0C0 end:0x00A1CDA0
+ .data start:0x00A1CDA0 end:0x00A1D660
+ .data start:0x00A1D660 end:0x00A1E1A0
+ .data start:0x00A1E1A0 end:0x00A1EF20
+ .data start:0x00A1EF20 end:0x00A1F900
+ .data start:0x00A1F900 end:0x00A202A0
+ .data start:0x00A202A0 end:0x00A210A0
+ .data start:0x00A210A0 end:0x00A21F60
+ .data start:0x00A21F60 end:0x00A22E00
+ .data start:0x00A22E00 end:0x00A23FE0
+ .data start:0x00A23FE0 end:0x00A24A40
+ .data start:0x00A24A40 end:0x00A25560
+ .data start:0x00A25560 end:0x00A26320
+ .data start:0x00A26320 end:0x00A27380
+ .data start:0x00A27380 end:0x00A27D00
+ .data start:0x00A27D00 end:0x00A28BC0
+ .data start:0x00A28BC0 end:0x00A29D20
+ .data start:0x00A29D20 end:0x00A2ACC0
+ .data start:0x00A2ACC0 end:0x00A2BA80
+ .data start:0x00A2BA80 end:0x00A2C780
+ .data start:0x00A2C780 end:0x00A2D5C0
+ .data start:0x00A2D5C0 end:0x00A2E3A0
+ .data start:0x00A2E3A0 end:0x00A2F200
+ .data start:0x00A2F200 end:0x00A30000
+ .data start:0x00A30000 end:0x00A30EC0
+ .data start:0x00A30EC0 end:0x00A31D80
+ .data start:0x00A31D80 end:0x00A32AA0
+ .data start:0x00A32AA0 end:0x00A33880
+ .data start:0x00A33880 end:0x00A34840
+ .data start:0x00A34840 end:0x00A35760
+ .data start:0x00A35760 end:0x00A36260
+ .data start:0x00A36260 end:0x00A37060
+ .data start:0x00A37060 end:0x00A37F40
+ .data start:0x00A37F40 end:0x00A38C20
+ .data start:0x00A38C20 end:0x00A39B80
+ .data start:0x00A39B80 end:0x00A3A960
+ .data start:0x00A3A960 end:0x00A3B940
+ .data start:0x00A3B940 end:0x00A3C780
+ .data start:0x00A3C780 end:0x00A3D560
+ .data start:0x00A3D560 end:0x00A3E000
+ .data start:0x00A3E000 end:0x00A3EBC0
+ .data start:0x00A3EBC0 end:0x00A3F500
+ .data start:0x00A3F500 end:0x00A3FE20
+ .data start:0x00A3FE20 end:0x00A407E0
+ .data start:0x00A407E0 end:0x00A41260
+ .data start:0x00A41260 end:0x00A41FE0
+ .data start:0x00A41FE0 end:0x00A42BE0
+ .data start:0x00A42BE0 end:0x00A43920
+ .data start:0x00A43920 end:0x00A44500
+ .data start:0x00A44500 end:0x00A452C0
+ .data start:0x00A452C0 end:0x00A45FA0
+ .data start:0x00A45FA0 end:0x00A469E0
+ .data start:0x00A469E0 end:0x00A47640
+ .data start:0x00A47640 end:0x00A48380
+ .data start:0x00A48380 end:0x00A48E60
+ .data start:0x00A48E60 end:0x00A49940
+ .data start:0x00A49940 end:0x00A4A420
+ .data start:0x00A4A420 end:0x00A4AD80
+ .data start:0x00A4AD80 end:0x00A4B6E0
+ .data start:0x00A4B6E0 end:0x00A4C040
+ .data start:0x00A4C040 end:0x00A4CAA0
+ .data start:0x00A4CAA0 end:0x00A4D4E0
+ .data start:0x00A4D4E0 end:0x00A4E380
+ .data start:0x00A4E380 end:0x00A4EF00
+ .data start:0x00A4EF00 end:0x00A4FA80
+ .data start:0x00A4FA80 end:0x00A50780
+ .data start:0x00A50780 end:0x00A51460
+ .data start:0x00A51460 end:0x00A520E0
+ .data start:0x00A520E0 end:0x00A52CE0
+ .data start:0x00A52CE0 end:0x00A534C0
+ .data start:0x00A534C0 end:0x00A541E0
+ .data start:0x00A541E0 end:0x00A54580
+ .data start:0x00A54580 end:0x00A54D00
+ .data start:0x00A54D00 end:0x00A55940
+ .data start:0x00A55940 end:0x00A56AC0
+ .data start:0x00A56AC0 end:0x00A579E0
+ .data start:0x00A579E0 end:0x00A58300
+ .data start:0x00A58300 end:0x00A58B00
+ .data start:0x00A58B00 end:0x00A59220
+ .data start:0x00A59220 end:0x00A59F80
+ .data start:0x00A59F80 end:0x00A5AF00
+ .data start:0x00A5AF00 end:0x00A5BA40
+ .data start:0x00A5BA40 end:0x00A5CAE0
+ .data start:0x00A5CAE0 end:0x00A5D860
+ .data start:0x00A5D860 end:0x00A5E680
+ .data start:0x00A5E680 end:0x00A5F3A0
+ .data start:0x00A5F3A0 end:0x00A60260
+ .data start:0x00A60260 end:0x00A60F40
+ .data start:0x00A60F40 end:0x00A61C40
+ .data start:0x00A61C40 end:0x00A628C0
+ .data start:0x00A628C0 end:0x00A639A0
+ .data start:0x00A639A0 end:0x00A649C0
+ .data start:0x00A649C0 end:0x00A65620
+ .data start:0x00A65620 end:0x00A66280
+ .data start:0x00A66280 end:0x00A67040
+ .data start:0x00A67040 end:0x00A67E00
+ .data start:0x00A67E00 end:0x00A688C0
+ .data start:0x00A688C0 end:0x00A69380
+ .data start:0x00A69380 end:0x00A6A2A0
+ .data start:0x00A6A2A0 end:0x00A6B0A0
+ .data start:0x00A6B0A0 end:0x00A6BF20
+ .data start:0x00A6BF20 end:0x00A6CF60
+ .data start:0x00A6CF60 end:0x00A6DB20
+ .data start:0x00A6DB20 end:0x00A6E720
+ .data start:0x00A6E720 end:0x00A6F360
+ .data start:0x00A6F360 end:0x00A6FE80
+ .data start:0x00A6FE80 end:0x00A70AA0
+ .data start:0x00A70AA0 end:0x00A719C0
+ .data start:0x00A719C0 end:0x00A72920
+ .data start:0x00A72920 end:0x00A73860
+ .data start:0x00A73860 end:0x00A74AE0
+ .data start:0x00A74AE0 end:0x00A75720
+ .data start:0x00A75720 end:0x00A76738
+ .data start:0x00A76738 end:0x00A76740
+ .data start:0x00A76740 end:0x00A774C0
+ .data start:0x00A774C0 end:0x00A78140
+ .data start:0x00A78140 end:0x00A78C60
+ .data start:0x00A78C60 end:0x00A79460
+ .data start:0x00A79460 end:0x00A79D20
+ .data start:0x00A79D20 end:0x00A7A860
+ .data start:0x00A7A860 end:0x00A7B220
+ .data start:0x00A7B220 end:0x00A7BF20
+ .data start:0x00A7BF20 end:0x00A7CBE0
+ .data start:0x00A7CBE0 end:0x00A7DAE0
+ .data start:0x00A7DAE0 end:0x00A7EA20
+ .data start:0x00A7EA20 end:0x00A7F660
+ .data start:0x00A7F660 end:0x00A802C0
+ .data start:0x00A802C0 end:0x00A81040
+ .data start:0x00A81040 end:0x00A81C40
+ .data start:0x00A81C40 end:0x00A82A80
+ .data start:0x00A82A80 end:0x00A83740
+ .data start:0x00A83740 end:0x00A84500
+ .data start:0x00A84500 end:0x00A85280
+ .data start:0x00A85280 end:0x00A86220
+ .data start:0x00A86220 end:0x00A870E0
+ .data start:0x00A870E0 end:0x00A87FC0
+ .data start:0x00A87FC0 end:0x00A88EC0
+ .data start:0x00A88EC0 end:0x00A89C00
+ .data start:0x00A89C00 end:0x00A8AB20
+ .data start:0x00A8AB20 end:0x00A8B940
+ .data start:0x00A8B940 end:0x00A8C580
+ .data start:0x00A8C580 end:0x00A8D300
+ .data start:0x00A8D300 end:0x00A8E120
+ .data start:0x00A8E120 end:0x00A8F220
+ .data start:0x00A8F220 end:0x00A90280
+ .data start:0x00A90280 end:0x00A910A0
+ .data start:0x00A910A0 end:0x00A919E0
+ .data start:0x00A919E0 end:0x00A91F00
+ .data start:0x00A91F00 end:0x00A92420
+ .data start:0x00A92420 end:0x00A93040
+ .data start:0x00A93040 end:0x00A937C0
+ .data start:0x00A937C0 end:0x00A945C0
+ .data start:0x00A945C0 end:0x00A95300
+ .data start:0x00A95300 end:0x00A955E0
+ .data start:0x00A955E0 end:0x00A96760
+ .data start:0x00A96760 end:0x00A96EA0
+ .data start:0x00A96EA0 end:0x00A97E20
+ .data start:0x00A97E20 end:0x00A994A0
+ .data start:0x00A994A0 end:0x00A99E60
+ .data start:0x00A99E60 end:0x00A9A9A0
+ .data start:0x00A9A9A0 end:0x00A9B6C0
+ .data start:0x00A9B6C0 end:0x00A9C460
+ .data start:0x00A9C460 end:0x00A9D160
+ .data start:0x00A9D160 end:0x00A9DF60
+ .data start:0x00A9DF60 end:0x00AA18A0
+ .data start:0x00AA18A0 end:0x00AA2240
+ .data start:0x00AA2240 end:0x00AA2A80
+ .data start:0x00AA2A80 end:0x00AA3840
+ .data start:0x00AA3840 end:0x00AA4660
+ .data start:0x00AA4660 end:0x00AA4F00
+ .data start:0x00AA4F00 end:0x00AA5900
+ .data start:0x00AA5900 end:0x00AA6B00
+ .data start:0x00AA6B00 end:0x00AA7540
+ .data start:0x00AA7540 end:0x00AA8000
+ .data start:0x00AA8000 end:0x00AA8640
+ .data start:0x00AA8640 end:0x00AA9060
+ .data start:0x00AA9060 end:0x00AA9F80
+ .data start:0x00AA9F80 end:0x00AAA8E0
+ .data start:0x00AAA8E0 end:0x00AAB720
+ .data start:0x00AAB720 end:0x00AAC0C0
+ .data start:0x00AAC0C0 end:0x00AAC820
+ .data start:0x00AAC820 end:0x00AAD0E0
+ .data start:0x00AAD0E0 end:0x00AADF40
+ .data start:0x00AADF40 end:0x00AAEA00
+ .data start:0x00AAEA00 end:0x00AAEFA0
+ .data start:0x00AAEFA0 end:0x00AB02A0
+ .data start:0x00AB02A0 end:0x00AB1AA0
+ .data start:0x00AB1AA0 end:0x00AB32A0
+
+data/field/bg/acre/rom_tent/rom_tent.c:
+ .data start:0x00AB32A0 end:0x00AB7AE0
+
+data/field/bg/acre/room01/room01.c:
+ .data start:0x00AB7AE0 end:0x00AB9768
+
+data/dataobject/dataobject_AB9768:
+ .data start:0x00AB9768 end:0x00AB9840
+
+data/field/bg/acre/rom_train_in/rom_train_in.c:
+ .data start:0x00AB9840 end:0x00ABF900
+
+data/dataobject/dataobject_ABF900:
+ .data start:0x00ABF900 end:0x00AC1100
+ .data start:0x00AC1100 end:0x00AC2100
+
+data/field/bg/acre/rom_uranai/rom_uranai_evw_anime.c:
+ .data start:0x00AC2100 end:0x00AC2120
+
+data/field/bg/acre/rom_uranai/rom_uranai.c:
+ .data start:0x00AC2120 end:0x00AC8368
+
+data/dataobject/dataobject_AC8368:
+ .data start:0x00AC8368 end:0x00AC8468
+ .data start:0x00AC8468 end:0x00AC84F0
+ .data start:0x00AC84F0 end:0x00AC86F0
+ .data start:0x00AC86F0 end:0x00AC88F0
+ .data start:0x00AC88F0 end:0x00AC8CF0
+ .data start:0x00AC8CF0 end:0x00AC94F0
+ .data start:0x00AC94F0 end:0x00AC9900
+ .data start:0x00AC9900 end:0x00ACA520
+ .data start:0x00ACA520 end:0x00ACB3A0
+ .data start:0x00ACB3A0 end:0x00ACC340
+ .data start:0x00ACC340 end:0x00ACD040
+ .data start:0x00ACD040 end:0x00ACD8C0
+ .data start:0x00ACD8C0 end:0x00ACE4E0
+ .data start:0x00ACE4E0 end:0x00ACF1E0
+ .data start:0x00ACF1E0 end:0x00ACFFA0
+ .data start:0x00ACFFA0 end:0x00AD0E60
+ .data start:0x00AD0E60 end:0x00AD1E80
+ .data start:0x00AD1E80 end:0x00AD2EA0
+ .data start:0x00AD2EA0 end:0x00AD3E20
+ .data start:0x00AD3E20 end:0x00AD4BA0
+ .data start:0x00AD4BA0 end:0x00AD5400
+ .data start:0x00AD5400 end:0x00AD6180
+ .data start:0x00AD6180 end:0x00AD6F00
+ .data start:0x00AD6F00 end:0x00AD7D00
+ .data start:0x00AD7D00 end:0x00AD8440
+ .data start:0x00AD8440 end:0x00AD9480
+ .data start:0x00AD9480 end:0x00ADA0E0
+ .data start:0x00ADA0E0 end:0x00ADB0A0
+ .data start:0x00ADB0A0 end:0x00ADC040
+ .data start:0x00ADC040 end:0x00ADCF80
+ .data start:0x00ADCF80 end:0x00ADDF60
+ .data start:0x00ADDF60 end:0x00ADEBC0
+ .data start:0x00ADEBC0 end:0x00ADF4F8
diff --git a/config/GAFE01_00/foresta/symbols.txt b/config/GAFE01_00/foresta/symbols.txt
new file mode 100644
index 00000000..88417bf8
--- /dev/null
+++ b/config/GAFE01_00/foresta/symbols.txt
@@ -0,0 +1,64000 @@
+_prolog = .text:0x00000000; // type:function size:0x60 scope:global align:4
+_epilog = .text:0x00000060; // type:function size:0x4C scope:global align:4
+_unresolved = .text:0x000000AC; // type:function size:0xA4 scope:global align:4
+viBlack = .text:0x00000150; // type:function size:0x20 scope:global align:4
+cKF_FrameControl_zeroClera = .text:0x00000170; // type:function size:0x54 scope:global align:4
+cKF_FrameControl_ct = .text:0x000001C4; // type:function size:0x20 scope:global align:4
+cKF_FrameControl_setFrame = .text:0x000001E4; // type:function size:0x34 scope:global align:4
+cKF_FrameControl_passCheck = .text:0x00000218; // type:function size:0xB0 scope:global align:4
+cKF_FrameControl_passCheck_now = .text:0x000002C8; // type:function size:0x98 scope:global align:4
+cKF_FrameControl_stop_proc = .text:0x00000360; // type:function size:0x8C scope:global align:4
+cKF_FrameControl_repeat_proc = .text:0x000003EC; // type:function size:0x88 scope:global align:4
+cKF_FrameControl_play = .text:0x00000474; // type:function size:0xB4 scope:global align:4
+cKF_HermitCalc = .text:0x00000528; // type:function size:0x6C scope:global align:4
+cKF_KeyCalc = .text:0x00000594; // type:function size:0x1D0 scope:global align:4
+cKF_SkeletonInfo_subRotInterpolation = .text:0x00000764; // type:function size:0xCC scope:global align:4
+cKF_SkeletonInfo_morphST = .text:0x00000830; // type:function size:0x80 scope:global align:4
+cKF_SkeletonInfo_R_zeroClear = .text:0x000008B0; // type:function size:0x24 scope:global align:4
+cKF_SkeletonInfo_R_ct = .text:0x000008D4; // type:function size:0x5C scope:global align:4
+cKF_SkeletonInfo_R_dt = .text:0x00000930; // type:function size:0x4 scope:global align:4
+cKF_SkeletonInfo_R_init_standard_stop = .text:0x00000934; // type:function size:0x7C scope:global align:4
+cKF_SkeletonInfo_R_init_standard_stop_morph = .text:0x000009B0; // type:function size:0x74 scope:global align:4
+cKF_SkeletonInfo_R_init_standard_repeat = .text:0x00000A24; // type:function size:0x7C scope:global align:4
+cKF_SkeletonInfo_R_init_standard_repeat_morph = .text:0x00000AA0; // type:function size:0x74 scope:global align:4
+cKF_SkeletonInfo_R_init = .text:0x00000B14; // type:function size:0x7C scope:global align:4
+cKF_SkeletonInfo_R_morphJoint = .text:0x00000B90; // type:function size:0x2C4 scope:global align:4
+cKF_SkeletonInfo_R_play = .text:0x00000E54; // type:function size:0x3A8 scope:global align:4
+cKF_Si3_draw_SV_R_child = .text:0x000011FC; // type:function size:0x37C scope:global align:4
+cKF_Si3_draw_R_SV = .text:0x00001578; // type:function size:0x80 scope:global align:4
+cKF_SkeletonInfo_R_init_standard_repeat_speedsetandmorph = .text:0x000015F8; // type:function size:0x6C scope:global align:4
+cKF_SkeletonInfo_R_init_standard_repeat_setframeandspeedandmorph = .text:0x00001664; // type:function size:0x70 scope:global align:4
+cKF_SkeletonInfo_R_init_standard_setframeandspeedandmorphandmode = .text:0x000016D4; // type:function size:0x6C scope:global align:4
+cKF_SkeletonInfo_R_init_reverse_setspeedandmorphandmode = .text:0x00001740; // type:function size:0x78 scope:global align:4
+cKF_SkeletonInfo_R_combine_work_set = .text:0x000017B8; // type:function size:0x48 scope:global align:4
+cKF_SkeletonInfo_R_combine_translation = .text:0x00001800; // type:function size:0x29C scope:global align:4
+cKF_SkeletonInfo_R_combine_rotation = .text:0x00001A9C; // type:function size:0x3A4 scope:global align:4
+cKF_SkeletonInfo_R_combine_play = .text:0x00001E40; // type:function size:0x250 scope:global align:4
+cKF_SkeletonInfo_R_T_combine_play = .text:0x00002090; // type:function size:0x2A0 scope:global align:4
+cKF_SkeletonInfo_R_Animation_Set_base_shape_trs = .text:0x00002330; // type:function size:0x28 scope:global align:4
+cKF_SkeletonInfo_R_AnimationMove_ct_base = .text:0x00002358; // type:function size:0x11C scope:global align:4
+cKF_SkeletonInfo_R_AnimationMove_dt = .text:0x00002474; // type:function size:0x8C scope:global align:4
+cKF_SkeletonInfo_R_AnimationMove_base = .text:0x00002500; // type:function size:0x374 scope:global align:4
+cKF_SkeletonInfo_R_AnimationMove_CulcTransToWorld = .text:0x00002874; // type:function size:0x170 scope:global align:4
+evw_tex_scroll_set = .text:0x000029E4; // type:function size:0x4C scope:global align:4
+evw_anime_scroll1 = .text:0x00002A30; // type:function size:0x84 scope:global align:4
+evw_two_tex_scroll_set = .text:0x00002AB4; // type:function size:0x88 scope:global align:4
+evw_anime_scroll2 = .text:0x00002B3C; // type:function size:0x84 scope:global align:4
+evw_color_set = .text:0x00002BC0; // type:function size:0xC8 scope:global align:4
+evw_anime_colreg_manual = .text:0x00002C88; // type:function size:0x50 scope:global align:4
+morf_calc = .text:0x00002CD8; // type:function size:0x44 scope:global align:4
+evw_anime_colreg_linear = .text:0x00002D1C; // type:function size:0x1BC scope:global align:4
+RagrangeInt = .text:0x00002ED8; // type:function size:0x144 scope:global align:4
+RagrangeInt_Color = .text:0x0000301C; // type:function size:0x30 scope:global align:4
+evw_anime_colreg_nonlinear = .text:0x0000304C; // type:function size:0x2D0 scope:global align:4
+evw_anime_texanime = .text:0x0000331C; // type:function size:0x80 scope:global align:4
+Evw_Anime_Set = .text:0x0000339C; // type:function size:0x8C scope:global align:4
+mAGrw_ClearDebugData = .text:0x00003428; // type:function size:0x50 scope:global align:4
+mAGrw_CheckRegistedData_debug = .text:0x00003478; // type:function size:0x3C scope:global align:4
+mAGrw_SetBlockData_debug = .text:0x000034B4; // type:function size:0x80 scope:global align:4
+mAGrw_SetDebugDataBlock = .text:0x00003534; // type:function size:0xF0 scope:global align:4
+mAGrw_SetDebugData = .text:0x00003624; // type:function size:0xAC scope:global align:4
+mAGrw_PrintFossilHaniwa_debug = .text:0x000036D0; // type:function size:0x100 scope:global align:4
+mAGrw_CheckKabuPeddler = .text:0x000037D0; // type:function size:0xA4 scope:global align:4
+mAGrw_OrderSetHaniwa = .text:0x00003874; // type:function size:0x18 scope:global align:4
+mAGrw_ChangeItemBlock = .text:0x0000388C; // type:function size:0xA4 scope:global align:4
+mAGrw_ChangeItemBlock2 = .text:0x00003930; // type:function size:0xD0 scope:local align:4
+mAGrw_CheckPutXmasTree = .text:0x00003A00; // type:function size:0x30 scope:global align:4
+mAGrw_SetXmasTreeBlock = .text:0x00003A30; // type:function size:0xD0 scope:global align:4
+mAGrw_ClearXmasTreeBlock = .text:0x00003B00; // type:function size:0x3C scope:global align:4
+mAGrw_XmasTreeField = .text:0x00003B3C; // type:function size:0x6C scope:global align:4
+mAGrw_SetXmasTree = .text:0x00003BA8; // type:function size:0x40 scope:global align:4
+mAGrw_RenewalFgItem = .text:0x00003BE8; // type:function size:0x68 scope:global align:4
+mAGrw_ChangeTree2OtherBlock = .text:0x00003C50; // type:function size:0x7C scope:global align:4
+mAGrw_ChangeTree2FruitTreeBlock = .text:0x00003CCC; // type:function size:0x28 scope:global align:4
+mAGrw_ChangeTree2FruitTreeLine = .text:0x00003CF4; // type:function size:0x98 scope:global align:4
+mAGrw_ChangeTree2FruitTree = .text:0x00003D8C; // type:function size:0x94 scope:global align:4
+mAGrw_ChangeTree2Cedar = .text:0x00003E20; // type:function size:0x84 scope:global align:4
+mAGrw_ChangeCedar2Tree = .text:0x00003EA4; // type:function size:0x16C scope:global align:4
+Actor_world_to_eye = .text:0x00004010; // type:function size:0x38 scope:global align:4
+Actor_position_move = .text:0x00004048; // type:function size:0x9C scope:global align:4
+Actor_position_speed_set = .text:0x000040E4; // type:function size:0x70 scope:global align:4
+Actor_position_moveF = .text:0x00004154; // type:function size:0x34 scope:global align:4
+Actor_player_look_direction_check = .text:0x00004188; // type:function size:0x7C scope:global align:4
+Actor_data_bank_dma_end_check = .text:0x00004204; // type:function size:0x2C scope:global align:4
+Shape_Info_init = .text:0x00004230; // type:function size:0x50 scope:global align:4
+Actor_delete = .text:0x00004280; // type:function size:0x18 scope:global align:4
+Actor_ct = .text:0x00004298; // type:function size:0x1E8 scope:global align:4
+Actor_dt = .text:0x00004480; // type:function size:0x108 scope:global align:4
+Actor_draw_ta_set = .text:0x00004588; // type:function size:0xA0 scope:global align:4
+Actor_draw_ta_clr = .text:0x00004628; // type:function size:0x9C scope:global align:4
+Actor_draw = .text:0x000046C4; // type:function size:0x100 scope:global align:4
+Actor_draw_actor_no_culling_check = .text:0x000047C4; // type:function size:0x28 scope:global align:4
+Actor_draw_actor_no_culling_check2 = .text:0x000047EC; // type:function size:0xA8 scope:global align:4
+Actor_cull_check = .text:0x00004894; // type:function size:0x50 scope:global align:4
+Actor_delete_check = .text:0x000048E4; // type:function size:0x78 scope:global align:4
+Actor_info_ct = .text:0x0000495C; // type:function size:0x400 scope:global align:4
+Actor_info_dt = .text:0x00004D5C; // type:function size:0x70 scope:global align:4
+Actor_info_call_actor = .text:0x00004DCC; // type:function size:0x274 scope:global align:4
+Actor_info_draw_actor = .text:0x00005040; // type:function size:0x110 scope:global align:4
+Actor_info_part_new = .text:0x00005150; // type:function size:0x40 scope:global align:4
+Actor_info_part_delete = .text:0x00005190; // type:function size:0x74 scope:global align:4
+Actor_free_overlay_area = .text:0x00005204; // type:function size:0x58 scope:global align:4
+actor_free_check = .text:0x0000525C; // type:function size:0x98 scope:global align:4
+Actor_get_overlay_area = .text:0x000052F4; // type:function size:0x50 scope:global align:4
+Actor_data_bank_regist_check_npc = .text:0x00005344; // type:function size:0x8 scope:global align:4
+Actor_data_bank_regist_check = .text:0x0000534C; // type:function size:0x4C scope:global align:4
+Actor_malloc_actor_class = .text:0x00005398; // type:function size:0xF4 scope:global align:4
+Actor_init_actor_class = .text:0x0000548C; // type:function size:0xFC scope:global align:4
+Actor_info_make_actor = .text:0x00005588; // type:function size:0x174 scope:global align:4
+Actor_info_make_child_actor = .text:0x000056FC; // type:function size:0x7C scope:global align:4
+restore_fgdata = .text:0x00005778; // type:function size:0xD4 scope:global align:4
+restore_fgdata_one = .text:0x0000584C; // type:function size:0x50 scope:global align:4
+restore_fgdata_all = .text:0x0000589C; // type:function size:0xC0 scope:global align:4
+Actor_info_save_actor = .text:0x0000595C; // type:function size:0x90 scope:global align:4
+Actor_info_delete = .text:0x000059EC; // type:function size:0x110 scope:global align:4
+Actor_info_name_search_sub = .text:0x00005AFC; // type:function size:0x24 scope:global align:4
+Actor_info_name_search = .text:0x00005B20; // type:function size:0x3C scope:global align:4
+Actor_info_fgName_search_sub = .text:0x00005B5C; // type:function size:0x24 scope:global align:4
+Actor_info_fgName_search = .text:0x00005B80; // type:function size:0x3C scope:global align:4
+HiliteReflect_new = .text:0x00005BBC; // type:function size:0x188 scope:global align:4
+HiliteReflect_init = .text:0x00005D44; // type:function size:0x3C scope:global align:4
+HiliteReflect_xlu_init = .text:0x00005D80; // type:function size:0x3C scope:global align:4
+Setpos_HiliteReflect_init = .text:0x00005DBC; // type:function size:0x9C scope:global align:4
+Setpos_HiliteReflect_xlu_init = .text:0x00005E58; // type:function size:0x9C scope:global align:4
+actor_dlftbls_init = .text:0x00005EF4; // type:function size:0x10 scope:global align:4
+actor_dlftbls_cleanup = .text:0x00005F04; // type:function size:0x10 scope:global align:4
+mActorShadow_OperateScrollLimit = .text:0x00005F14; // type:function size:0x38 scope:global align:4
+mActorShadow_TileScroll2 = .text:0x00005F4C; // type:function size:0xEC scope:global align:4
+mActorShadow_AdjustRate = .text:0x00006038; // type:function size:0x34 scope:global align:4
+mActorShadow_GetTimeAngleY_TimeAlpha = .text:0x0000606C; // type:function size:0x12C scope:global align:4
+mActorShadow_GetGroundAverageAngle = .text:0x00006198; // type:function size:0x120 scope:global align:4
+mActorShadow_GetDistanceRate = .text:0x000062B8; // type:function size:0x84 scope:global align:4
+mActorShadow_GetAbsBigger = .text:0x0000633C; // type:function size:0x48 scope:global align:4
+mActorShadow_RadiusScaleRate = .text:0x00006384; // type:function size:0x50 scope:global align:4
+mActorShadow_GetShadowTopPos_GetSlideS = .text:0x000063D4; // type:function size:0x114 scope:global align:4
+mActorShadow_SetTexScroll = .text:0x000064E8; // type:function size:0xB8 scope:global align:4
+mActorShadow_GetLastAlphaScale = .text:0x000065A0; // type:function size:0x6C scope:global align:4
+mActorShadow_DrawActorShadow = .text:0x0000660C; // type:function size:0x348 scope:global align:4
+mActorShadow_GetShadowPosition = .text:0x00006954; // type:function size:0x44 scope:global align:4
+mActorShadow_GetShadowKind = .text:0x00006998; // type:function size:0x2C scope:global align:4
+mAc_GetShadowGroundY_NoneForce = .text:0x000069C4; // type:function size:0x4C scope:global align:4
+mAc_GetShadowGroundY_Force = .text:0x00006A10; // type:function size:0x44 scope:global align:4
+mAc_DecideShadowRadius_IamNotFish = .text:0x00006A54; // type:function size:0x44 scope:global align:4
+mAc_DecideShadowRadius_IamFish = .text:0x00006A98; // type:function size:0x34 scope:global align:4
+mAc_ActorShadowDraw_ShadowDrawFlagOff = .text:0x00006ACC; // type:function size:0x4 scope:global align:4
+mAc_ActorShadowDraw_ShadowDrawFlagOn = .text:0x00006AD0; // type:function size:0x138 scope:global align:4
+mAc_ActorShadowDraw = .text:0x00006C08; // type:function size:0xB0 scope:global align:4
+mActorShadow_SetForceShadowPos = .text:0x00006CB8; // type:function size:0x10 scope:global align:4
+mActorShadow_UnSetForceShadowPos = .text:0x00006CC8; // type:function size:0x14 scope:global align:4
+mAc_NormalActorShadow = .text:0x00006CDC; // type:function size:0x48 scope:global align:4
+mAc_UnagiActorShadow = .text:0x00006D24; // type:function size:0x4C scope:global align:4
+mAc_ActorShadowCircle = .text:0x00006D70; // type:function size:0x58 scope:global align:4
+mAc_ActorShadowEllipse = .text:0x00006DC8; // type:function size:0xA4 scope:global align:4
+banti_ct = .text:0x00006E6C; // type:function size:0x218 scope:global align:4
+banti_dt = .text:0x00007084; // type:function size:0x7C scope:global align:4
+banti_chk_disp_left = .text:0x00007100; // type:function size:0x198 scope:global align:4
+banti_calc_disp_alpha_rate = .text:0x00007298; // type:function size:0x27C scope:global align:4
+banti_animation_init_hiduke = .text:0x00007514; // type:function size:0x60 scope:global align:4
+banti_animation_init_jikan = .text:0x00007574; // type:function size:0x60 scope:global align:4
+banti_anime_proc = .text:0x000075D4; // type:function size:0x1B4 scope:global align:4
+banti_chk_anime_start = .text:0x00007788; // type:function size:0x23C scope:global align:4
+banti_time_check = .text:0x000079C4; // type:function size:0xE0 scope:global align:4
+banti_move = .text:0x00007AA4; // type:function size:0xD0 scope:global align:4
+banti_draw_before = .text:0x00007B74; // type:function size:0xDC scope:global align:4
+banti_draw_hiduke_sub = .text:0x00007C50; // type:function size:0x114 scope:global align:4
+banti_draw_hiduke = .text:0x00007D64; // type:function size:0xC8 scope:global align:4
+banti_draw_jikan_sub = .text:0x00007E2C; // type:function size:0x138 scope:global align:4
+banti_draw_jikan = .text:0x00007F64; // type:function size:0x1B8 scope:global align:4
+banti_draw = .text:0x0000811C; // type:function size:0x494 scope:global align:4
+mBI_search_bg_item = .text:0x000085B0; // type:function size:0x68 scope:global align:4
+mBI_make_bg_item = .text:0x00008618; // type:function size:0xA0 scope:global align:4
+mBI_change_bg_item = .text:0x000086B8; // type:function size:0x54 scope:global align:4
+mBI_ct = .text:0x0000870C; // type:function size:0x10 scope:global align:4
+mBI_move = .text:0x0000871C; // type:function size:0x34 scope:global align:4
+mBGM_check_MD = .text:0x00008750; // type:function size:0x38 scope:global align:4
+mBGM_check_ignore_talk_volume = .text:0x00008788; // type:function size:0x38 scope:global align:4
+mBGM_check_ignore_collect_insects_volume = .text:0x000087C0; // type:function size:0x14 scope:global align:4
+mBGMElem_default_set = .text:0x000087D4; // type:function size:0x30 scope:global align:4
+mBGMClock_after_time_check = .text:0x00008804; // type:function size:0x1C scope:global align:4
+mBGMClock_over_time_check = .text:0x00008820; // type:function size:0x54 scope:global align:4
+mBGMClock_range_time_check = .text:0x00008874; // type:function size:0x50 scope:global align:4
+mBGMClock_now_set = .text:0x000088C4; // type:function size:0x44 scope:global align:4
+mBGMClock_move = .text:0x00008908; // type:function size:0x20 scope:global align:4
+mBGMClock_ct = .text:0x00008928; // type:function size:0x40 scope:global align:4
+mBGMDemo_make_scene_bgm = .text:0x00008968; // type:function size:0xD0 scope:global align:4
+mBGMDemo_delete_scene_bgm = .text:0x00008A38; // type:function size:0x44 scope:global align:4
+mBGMDemo_move = .text:0x00008A7C; // type:function size:0x58 scope:global align:4
+mBGMDemo_scene_bgm_make_req = .text:0x00008AD4; // type:function size:0x14 scope:global align:4
+mBGMDemo_scene_bgm_delete_req = .text:0x00008AE8; // type:function size:0x14 scope:global align:4
+mBGMDemo_ct = .text:0x00008AFC; // type:function size:0x38 scope:global align:4
+mBGMRoom_shop_close_time_set = .text:0x00008B34; // type:function size:0xC0 scope:global align:4
+mBGMRoom_make_scene_bgm_shop_get = .text:0x00008BF4; // type:function size:0xD4 scope:global align:4
+mBGMRoom_make_scene_bgm = .text:0x00008CC8; // type:function size:0x118 scope:global align:4
+mBGMRoom_delete_scene_bgm = .text:0x00008DE0; // type:function size:0x44 scope:global align:4
+mBGMRoom_shop_close_check = .text:0x00008E24; // type:function size:0x128 scope:global align:4
+mBGMRoom_move = .text:0x00008F4C; // type:function size:0x74 scope:global align:4
+mBGMRoom_scene_bgm_make_req = .text:0x00008FC0; // type:function size:0x14 scope:global align:4
+mBGMRoom_scene_bgm_delete_req = .text:0x00008FD4; // type:function size:0x14 scope:global align:4
+mBGMRoom_ct = .text:0x00008FE8; // type:function size:0x38 scope:global align:4
+mBGMTime_signal_melody = .text:0x00009020; // type:function size:0x110 scope:global align:4
+mBGMTime_silent_check = .text:0x00009130; // type:function size:0x48 scope:global align:4
+mBGMTime_new_year_ev_flag_set = .text:0x00009178; // type:function size:0x14 scope:global align:4
+mBGMTime_new_year_ev_flag_clr = .text:0x0000918C; // type:function size:0x14 scope:global align:4
+mBGMTime_move_wait = .text:0x000091A0; // type:function size:0x44 scope:global align:4
+mBGMTime_move_change = .text:0x000091E4; // type:function size:0x80 scope:global align:4
+mBGMTime_move = .text:0x00009264; // type:function size:0x28 scope:global align:4
+mBGMTime_ct = .text:0x0000928C; // type:function size:0x3C scope:global align:4
+mBGMFieldSuddenEv_flag_check_island = .text:0x000092C8; // type:function size:0x20 scope:global align:4
+mBGMFieldSuddenEv_flag_check_arbeit = .text:0x000092E8; // type:function size:0x20 scope:global align:4
+mBGMFieldSuddenEv_flag_set = .text:0x00009308; // type:function size:0xB4 scope:global align:4
+mBGMFieldSuddenEv_ps_compose = .text:0x000093BC; // type:function size:0xB0 scope:global align:4
+mBGMFieldSuddenEv_move = .text:0x0000946C; // type:function size:0x44 scope:global align:4
+mBGMFieldSuddenEv_ct = .text:0x000094B0; // type:function size:0x24 scope:global align:4
+mBGMFieldSchedEv_bl_attr_get = .text:0x000094D4; // type:function size:0xD0 scope:global align:4
+mBGMFieldSchedEv_bl_attr_evdata_get = .text:0x000095A4; // type:function size:0x134 scope:global align:4
+mBGMFieldSchedEv_Info_old_copy = .text:0x000096D8; // type:function size:0x4C scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_standard = .text:0x00009724; // type:function size:0x6C scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_Silence_0 = .text:0x00009790; // type:function size:0x114 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_1 = .text:0x000098A4; // type:function size:0x80 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_2 = .text:0x00009924; // type:function size:0x80 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_3 = .text:0x000099A4; // type:function size:0x80 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_4 = .text:0x00009A24; // type:function size:0x80 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_5 = .text:0x00009AA4; // type:function size:0x144 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_CountDown_6 = .text:0x00009BE8; // type:function size:0x144 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_Hotaru = .text:0x00009D2C; // type:function size:0x6C scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_NewYear01 = .text:0x00009D98; // type:function size:0x74 scope:global align:4
+mBGMFieldSchedEv_Info_ev_now_set_NewYear02 = .text:0x00009E0C; // type:function size:0x6C scope:global align:4
+mBGMFieldSchedEv_Info_attr_now_set = .text:0x00009E78; // type:function size:0x54 scope:global align:4
+mBGMFieldSchedEv_info_set = .text:0x00009ECC; // type:function size:0xF0 scope:global align:4
+mBGMFieldSchedEv_Info_ps_delete = .text:0x00009FBC; // type:function size:0x64 scope:global align:4
+mBGMFieldSchedEv_Info_ps_make = .text:0x0000A020; // type:function size:0xAC scope:global align:4
+mBGMFieldSchedEv_Info_ps_volume_change = .text:0x0000A0CC; // type:function size:0x54 scope:global align:4
+mBGMFieldSchedEv_ps_compose = .text:0x0000A120; // type:function size:0x15C scope:global align:4
+mBGMFieldSchedEv_sp_flag = .text:0x0000A27C; // type:function size:0x88 scope:global align:4
+mBGMFieldSchedEv_move = .text:0x0000A304; // type:function size:0x4C scope:global align:4
+mBGMFieldSchedEv_ct = .text:0x0000A350; // type:function size:0x58 scope:global align:4
+mBGMFieldNorm_bgm_num_get = .text:0x0000A3A8; // type:function size:0x10 scope:global align:4
+mBGMFieldNorm_elem_set = .text:0x0000A3B8; // type:function size:0x60 scope:global align:4
+mBGMFieldNorm_make_bgm = .text:0x0000A418; // type:function size:0x44 scope:global align:4
+mBGMFieldNorm_delete_bgm = .text:0x0000A45C; // type:function size:0x44 scope:global align:4
+mBGMFieldNorm_move = .text:0x0000A4A0; // type:function size:0xB0 scope:global align:4
+mBGMFieldNorm_make_req = .text:0x0000A550; // type:function size:0x14 scope:global align:4
+mBGMFieldNorm_delete_req = .text:0x0000A564; // type:function size:0x14 scope:global align:4
+mBGMFieldNorm_ct = .text:0x0000A578; // type:function size:0x38 scope:global align:4
+mBGMPs_counter_dec = .text:0x0000A5B0; // type:function size:0x30 scope:global align:4
+mBGMPsComp_ps_remove = .text:0x0000A5E0; // type:function size:0xB4 scope:global align:4
+mBGMPsComp_search_insert_pos_kategorie = .text:0x0000A694; // type:function size:0x68 scope:global align:4
+mBGMPsComp_search_pos_kategorie_bgm_num = .text:0x0000A6FC; // type:function size:0xC8 scope:global align:4
+mBGMPsComp_shift_behind = .text:0x0000A7C4; // type:function size:0x90 scope:global align:4
+mBGMPsComp_all_ps_bitclr = .text:0x0000A854; // type:function size:0x30 scope:global align:4
+mBGMPsComp_execute_ps_pos_get = .text:0x0000A884; // type:function size:0x40 scope:global align:4
+mBGMPsComp_high_ps_not_delete = .text:0x0000A8C4; // type:function size:0x34 scope:global align:4
+mBGMPsComp_main_req_stop = .text:0x0000A8F8; // type:function size:0xA0 scope:global align:4
+mBGMPsComp_main_remove = .text:0x0000A998; // type:function size:0x74 scope:global align:4
+mBGMPsComp_main_req_start = .text:0x0000AA0C; // type:function size:0xA4 scope:global align:4
+mBGMPsComp_main_req_pause = .text:0x0000AAB0; // type:function size:0x5C scope:global align:4
+mBGMPsComp_main_req_md = .text:0x0000AB0C; // type:function size:0x18 scope:global align:4
+mBGMPsComp_main_md_move = .text:0x0000AB24; // type:function size:0x38 scope:global align:4
+mBGMPsComp_main_req_volume_ps = .text:0x0000AB5C; // type:function size:0xB0 scope:global align:4
+mBGMPsComp_main_req_volume_fishing = .text:0x0000AC0C; // type:function size:0xA4 scope:global align:4
+mBGMPsComp_main_req_volume_collect_insects = .text:0x0000ACB0; // type:function size:0xA4 scope:global align:4
+mBGMPsComp_main_req_volume_talk = .text:0x0000AD54; // type:function size:0x94 scope:global align:4
+mBGMPsComp_main_req_volume_boat = .text:0x0000ADE8; // type:function size:0x94 scope:global align:4
+mBGMPsComp_main_req_volume_pause = .text:0x0000AE7C; // type:function size:0x104 scope:global align:4
+mBGMPsComp_main_req_volume = .text:0x0000AF80; // type:function size:0x3A8 scope:global align:4
+mBGMPsComp_MDPlayerPos_main_inform_sound = .text:0x0000B328; // type:function size:0x50 scope:global align:4
+mBGMPsComp_Arm_main_inform_sound = .text:0x0000B378; // type:function size:0x60 scope:global align:4
+mBGMPsComp_Stop_main_inform_sound = .text:0x0000B3D8; // type:function size:0x44 scope:global align:4
+mBGMPsComp_Start_main_inform_sound = .text:0x0000B41C; // type:function size:0x90 scope:global align:4
+mBGMPsComp_Volume_main_inform_sound = .text:0x0000B4AC; // type:function size:0x48 scope:global align:4
+mBGMPsComp_Pause_main_inform_sound = .text:0x0000B4F4; // type:function size:0x44 scope:global align:4
+mBGMPsComp_Museum_main_inform_sound = .text:0x0000B538; // type:function size:0x44 scope:global align:4
+mBGMPsComp_main_inform_sound = .text:0x0000B57C; // type:function size:0x60 scope:global align:4
+mBGMPsComp_main_counter_dec = .text:0x0000B5DC; // type:function size:0x54 scope:global align:4
+mBGMPsComp_main_fo_check = .text:0x0000B630; // type:function size:0xB8 scope:global align:4
+mBGMPsComp_main_lost = .text:0x0000B6E8; // type:function size:0x30 scope:global align:4
+mBGMPsComp_make_ps = .text:0x0000B718; // type:function size:0x90 scope:global align:4
+_mBGMPsComp_make_ps_fanfare = .text:0x0000B7A8; // type:function size:0x68 scope:global align:4
+mBGMPsComp_make_ps_fanfare = .text:0x0000B810; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_lost_fanfare = .text:0x0000B830; // type:function size:0x68 scope:global align:4
+mBGMPsComp_make_ps_lost_fanfare = .text:0x0000B898; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_wipe = .text:0x0000B8B8; // type:function size:0x94 scope:global align:4
+mBGMPsComp_make_ps_wipe = .text:0x0000B94C; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_quiet = .text:0x0000B96C; // type:function size:0x58 scope:global align:4
+mBGMPsComp_make_ps_quiet = .text:0x0000B9C4; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_co_quiet = .text:0x0000B9E4; // type:function size:0x64 scope:global align:4
+mBGMPsComp_make_ps_co_quiet = .text:0x0000BA48; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_fc_quiet = .text:0x0000BA68; // type:function size:0x58 scope:global align:4
+mBGMPsComp_make_ps_fc_quiet = .text:0x0000BAC0; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_demo = .text:0x0000BAE0; // type:function size:0x68 scope:global align:4
+mBGMPsComp_make_ps_demo = .text:0x0000BB48; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_happening = .text:0x0000BB68; // type:function size:0x68 scope:global align:4
+mBGMPsComp_make_ps_happening = .text:0x0000BBD0; // type:function size:0x20 scope:global align:4
+mBGMPsComp_make_ps_quietRoom = .text:0x0000BBF0; // type:function size:0x58 scope:global align:4
+_mBGMPsComp_make_ps_room = .text:0x0000BC48; // type:function size:0x68 scope:global align:4
+mBGMPsComp_make_ps_room = .text:0x0000BCB0; // type:function size:0x20 scope:global align:4
+mBGMPsComp_make_ps_time = .text:0x0000BCD0; // type:function size:0x50 scope:global align:4
+_mBGMPsComp_make_ps_quietField = .text:0x0000BD20; // type:function size:0x58 scope:global align:4
+mBGMPsComp_make_ps_quietField = .text:0x0000BD78; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_fc_quietField = .text:0x0000BD98; // type:function size:0x58 scope:global align:4
+mBGMPsComp_make_ps_fc_quietField = .text:0x0000BDF0; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_make_ps_fieldSuddenEv = .text:0x0000BE10; // type:function size:0x6C scope:global align:4
+mBGMPsComp_make_ps_fieldSuddenEv = .text:0x0000BE7C; // type:function size:0x20 scope:global align:4
+mBGMPsComp_make_ps_fieldSchedEv = .text:0x0000BE9C; // type:function size:0xC0 scope:global align:4
+mBGMPsComp_make_ps_fieldNorm = .text:0x0000BF5C; // type:function size:0x68 scope:global align:4
+mBGMPsComp_delete_ps = .text:0x0000BFC4; // type:function size:0x70 scope:global align:4
+_mBGMPsComp_delete_ps_fanfare = .text:0x0000C034; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_fanfare = .text:0x0000C070; // type:function size:0x20 scope:global align:4
+mBGMPsComp_delete_ps_wipe = .text:0x0000C090; // type:function size:0x3C scope:global align:4
+_mBGMPsComp_delete_ps_quiet = .text:0x0000C0CC; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_quiet = .text:0x0000C108; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_delete_ps_demo = .text:0x0000C128; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_demo = .text:0x0000C164; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_delete_ps_happening = .text:0x0000C184; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_happening = .text:0x0000C1C0; // type:function size:0x20 scope:global align:4
+mBGMPsComp_delete_ps_quietRoom = .text:0x0000C1E0; // type:function size:0x3C scope:global align:4
+_mBGMPsComp_delete_ps_room = .text:0x0000C21C; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_room = .text:0x0000C258; // type:function size:0x20 scope:global align:4
+mBGMPsComp_delete_ps_time = .text:0x0000C278; // type:function size:0x3C scope:global align:4
+_mBGMPsComp_delete_ps_quietField = .text:0x0000C2B4; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_quietField = .text:0x0000C2F0; // type:function size:0x20 scope:global align:4
+_mBGMPsComp_delete_ps_fieldSuddenEv = .text:0x0000C310; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_fieldSuddenEv = .text:0x0000C34C; // type:function size:0x20 scope:global align:4
+mBGMPsComp_delete_ps_fieldSchedEv = .text:0x0000C36C; // type:function size:0x3C scope:global align:4
+mBGMPsComp_delete_ps_fieldNorm = .text:0x0000C3A8; // type:function size:0x3C scope:global align:4
+mBGMPsComp_volume_change_fieldSchedEv = .text:0x0000C3E4; // type:function size:0xB0 scope:global align:4
+mBGMPsComp_search_cf_set_field = .text:0x0000C494; // type:function size:0x98 scope:global align:4
+mBGMPsComp_volume_fishing_start = .text:0x0000C52C; // type:function size:0x14 scope:global align:4
+mBGMPsComp_volume_fishing_end = .text:0x0000C540; // type:function size:0x14 scope:global align:4
+mBGMPsComp_volume_collect_insects_start = .text:0x0000C554; // type:function size:0x14 scope:global align:4
+mBGMPsComp_volume_collect_insects_end = .text:0x0000C568; // type:function size:0x14 scope:global align:4
+mBGMPsComp_volume_talk_start = .text:0x0000C57C; // type:function size:0x14 scope:global align:4
+mBGMPsComp_volume_talk_end = .text:0x0000C590; // type:function size:0x20 scope:global align:4
+mBGMPsComp_volume_boat_end = .text:0x0000C5B0; // type:function size:0x20 scope:global align:4
+mBGMPsComp_pause = .text:0x0000C5D0; // type:function size:0x10 scope:global align:4
+mBGMPsComp_MDPlayerPos_make = .text:0x0000C5E0; // type:function size:0x14 scope:global align:4
+mBGMPsComp_MDPlayerPos_delete = .text:0x0000C5F4; // type:function size:0x14 scope:global align:4
+mBGMPsComp_MDPlayerPos_param_set = .text:0x0000C608; // type:function size:0x58 scope:global align:4
+mBGMPsComp_scene_mode = .text:0x0000C660; // type:function size:0x20 scope:global align:4
+mBGMPsComp_arm_make = .text:0x0000C680; // type:function size:0x18 scope:global align:4
+mBGMPsComp_arm_delete = .text:0x0000C698; // type:function size:0x18 scope:global align:4
+mBGMPsComp_museum_status = .text:0x0000C6B0; // type:function size:0x2C scope:global align:4
+mBGMPsComp_execute_bgm_num_get = .text:0x0000C6DC; // type:function size:0x68 scope:global align:4
+mBGMPsComp_ct = .text:0x0000C744; // type:function size:0x78 scope:global align:4
+mBGMForce_wipe_ps_make_permit = .text:0x0000C7BC; // type:function size:0x10 scope:global align:4
+mBGMForce_move_inform = .text:0x0000C7CC; // type:function size:0xBC scope:global align:4
+mBGMForce_move_room_nonstop = .text:0x0000C888; // type:function size:0x2C scope:global align:4
+mBGMForce_move = .text:0x0000C8B4; // type:function size:0x34 scope:global align:4
+mBGMForce_ct = .text:0x0000C8E8; // type:function size:0x24 scope:global align:4
+mBGMForce_inform_cleanup = .text:0x0000C90C; // type:function size:0x2C scope:global align:4
+mBGMForce_room_nonstop_cleanup = .text:0x0000C938; // type:function size:0x18 scope:global align:4
+mBGMForce_cleanup = .text:0x0000C950; // type:function size:0x34 scope:global align:4
+mBGMForce_inform_start = .text:0x0000C984; // type:function size:0x14 scope:global align:4
+mBGMForce_inform_end = .text:0x0000C998; // type:function size:0x14 scope:global align:4
+_mBGMForce_room_nonstop_start = .text:0x0000C9AC; // type:function size:0x14 scope:global align:4
+mBGMForce_room_nonstop_start = .text:0x0000C9C0; // type:function size:0x20 scope:global align:4
+mBGM_main_control = .text:0x0000C9E0; // type:function size:0x80 scope:global align:4
+mBGM_weather_set = .text:0x0000CA60; // type:function size:0x50 scope:global align:4
+mBGM_main = .text:0x0000CAB0; // type:function size:0xD0 scope:global align:4
+mBGM_ct = .text:0x0000CB80; // type:function size:0xA8 scope:global align:4
+mBGM_init = .text:0x0000CC28; // type:function size:0xEC scope:global align:4
+mBGM_cleanup = .text:0x0000CD14; // type:function size:0xE0 scope:global align:4
+mBGM_reset = .text:0x0000CDF4; // type:function size:0xF4 scope:global align:4
+mCD_calendar_clear_interval = .text:0x0000CEE8; // type:function size:0x170 scope:global align:4
+mCD_calendar_clear_day = .text:0x0000D058; // type:function size:0x210 scope:global align:4
+mCD_GetIntervalMonths = .text:0x0000D268; // type:function size:0x24 scope:global align:4
+mCD_calendar_clear = .text:0x0000D28C; // type:function size:0x58 scope:global align:4
+mCD_calendar_check_harvest_moon_viewing = .text:0x0000D2E4; // type:function size:0x4C scope:global align:4
+mCD_calendar_check_delete = .text:0x0000D330; // type:function size:0xD8 scope:global align:4
+mCD_calendar_wellcome_on = .text:0x0000D408; // type:function size:0x98 scope:global align:4
+mCD_calendar_event_on = .text:0x0000D4A0; // type:function size:0x184 scope:global align:4
+mCD_calendar_event_check = .text:0x0000D624; // type:function size:0x188 scope:global align:4
+Camera2_DirectionCalc = .text:0x0000D7AC; // type:function size:0xF8 scope:global align:4
+Camera2_InDoorCheck = .text:0x0000D8A4; // type:function size:0x44 scope:global align:4
+Camera2_CheckInDoorNearFar = .text:0x0000D8E8; // type:function size:0x3C scope:global align:4
+Camera2_GetUnderBorderAdjust = .text:0x0000D924; // type:function size:0x3C scope:global align:4
+Camera2_PolaPosCalc = .text:0x0000D960; // type:function size:0x124 scope:global align:4
+Camera2_SetEyePos_fromCenterPosCalc = .text:0x0000DA84; // type:function size:0x50 scope:global align:4
+Camera2_SetEyePos_fromCenterPos = .text:0x0000DAD4; // type:function size:0x28 scope:global align:4
+Camera2_MoveDirectionAngleXYZ_morph = .text:0x0000DAFC; // type:function size:0x118 scope:global align:4
+Camera2_MoveDirectionAngleXYZ = .text:0x0000DC14; // type:function size:0xFC scope:global align:4
+Camera2_SetDirectionAngleXYZ = .text:0x0000DD10; // type:function size:0x6C scope:global align:4
+Camera2_SetView = .text:0x0000DD7C; // type:function size:0x19C scope:global align:4
+Camera2_BorderSize = .text:0x0000DF18; // type:function size:0x48 scope:global align:4
+Camera2_GetBorderScale = .text:0x0000DF60; // type:function size:0x180 scope:global align:4
+Camera2_GetLongBorderScale = .text:0x0000E0E0; // type:function size:0x2C scope:global align:4
+Camera2_GetBorder = .text:0x0000E10C; // type:function size:0x64 scope:global align:4
+Camera2_MoveCenterPosAndSpeed_fromEndCenterPos = .text:0x0000E170; // type:function size:0x118 scope:global align:4
+Camera2_SetCenterPosAndSpeed = .text:0x0000E288; // type:function size:0x6C scope:global align:4
+Camera2_SetDistancePosAndSpeed = .text:0x0000E2F4; // type:function size:0x34 scope:global align:4
+Camera2_MoveDistancePosAndSpeed = .text:0x0000E328; // type:function size:0xA4 scope:global align:4
+Camera2_Get_PosBlockRatio = .text:0x0000E3CC; // type:function size:0x160 scope:global align:4
+Camera2_Normal_Swing = .text:0x0000E52C; // type:function size:0xBC scope:global align:4
+Camera2_Get_GoalDistanceAndDirection = .text:0x0000E5E8; // type:function size:0x164 scope:global align:4
+Camera2_SetPos_fromStartEnd = .text:0x0000E74C; // type:function size:0x188 scope:global align:4
+Camera2_setup_main_Base = .text:0x0000E8D4; // type:function size:0x1C scope:global align:4
+getCamera2AngleY = .text:0x0000E8F0; // type:function size:0x8 scope:global align:4
+Camera2_check_request_main_priority = .text:0x0000E8F8; // type:function size:0xC scope:global align:4
+Camera2_change_priority = .text:0x0000E904; // type:function size:0xC scope:global align:4
+Camera2_request_main_index = .text:0x0000E910; // type:function size:0x14 scope:global align:4
+Camera2_ChangeCameraPos_inBlock = .text:0x0000E924; // type:function size:0x2D4 scope:global align:4
+Camera2_getEyePos_p = .text:0x0000EBF8; // type:function size:0x14 scope:global align:4
+Camera2_getCenterPos_p = .text:0x0000EC0C; // type:function size:0x14 scope:global align:4
+Camera2_SetCameraParameter = .text:0x0000EC20; // type:function size:0x74 scope:global align:4
+Camera2_CheckCullingMode = .text:0x0000EC94; // type:function size:0xE0 scope:global align:4
+pos_cull_check = .text:0x0000ED74; // type:function size:0x7C scope:global align:4
+Camera2_CheckEnterCullingArea = .text:0x0000EDF0; // type:function size:0x1A0 scope:global align:4
+Camera2_ClearActorTalking_Cull = .text:0x0000EF90; // type:function size:0x34 scope:global align:4
+Camera2_AddCullTimer = .text:0x0000EFC4; // type:function size:0x28 scope:global align:4
+Camera2_Check_main_index = .text:0x0000EFEC; // type:function size:0x14 scope:global align:4
+Camera2_getMicPos_p = .text:0x0000F000; // type:function size:0x8 scope:global align:4
+Camera2_Check_MicPosFix = .text:0x0000F008; // type:function size:0x38 scope:global align:4
+Camera2_SetMicPos = .text:0x0000F040; // type:function size:0x1F8 scope:global align:4
+Camera2NormalState_get = .text:0x0000F238; // type:function size:0xAC scope:global align:4
+Camera2_sound_Set_Ground = .text:0x0000F2E4; // type:function size:0x4 scope:global align:4
+Camera2_process_other_func2 = .text:0x0000F2E8; // type:function size:0x4 scope:global align:4
+Camera2_setup_main_Stop = .text:0x0000F2EC; // type:function size:0x4 scope:global align:4
+Camera2_main_Stop = .text:0x0000F2F0; // type:function size:0x4 scope:global align:4
+Camera2_request_main_wade = .text:0x0000F2F4; // type:function size:0x9C scope:global align:4
+Camera2_setup_main_Wade = .text:0x0000F390; // type:function size:0x78 scope:global align:4
+Camera2_SetPos_Wade = .text:0x0000F408; // type:function size:0x30 scope:global align:4
+Camera2_request_proc_index_fromWade = .text:0x0000F438; // type:function size:0x54 scope:global align:4
+Camera2_main_Wade = .text:0x0000F48C; // type:function size:0x4C scope:global align:4
+Camera2_request_main_talk = .text:0x0000F4D8; // type:function size:0xA0 scope:global align:4
+Camera2_request_main_talk_pos = .text:0x0000F578; // type:function size:0xD4 scope:global align:4
+Camera2_setup_main_Talk = .text:0x0000F64C; // type:function size:0x80 scope:global align:4
+Camera2_Talk_ChangeCameraCenterPos_BetweenSpeakerToListener = .text:0x0000F6CC; // type:function size:0x110 scope:global align:4
+Camera2_TalkCheckCliffLRRange = .text:0x0000F7DC; // type:function size:0xE0 scope:global align:4
+Camera2_Talk_CheckCliffLR = .text:0x0000F8BC; // type:function size:0xE4 scope:global align:4
+Camera2_Talk_NoLowAngleCheck = .text:0x0000F9A0; // type:function size:0x8C scope:global align:4
+Camera2_Talk_GetAngleY = .text:0x0000FA2C; // type:function size:0x12C scope:global align:4
+Camera2_Talk_GetGoalDirectionAngleXYZAndSetDistance_BetweenSpeakerToListener = .text:0x0000FB58; // type:function size:0x144 scope:global align:4
+Camera2_SetPos_Talk = .text:0x0000FC9C; // type:function size:0xF0 scope:global align:4
+Camera2_Talk_AddCullTimer = .text:0x0000FD8C; // type:function size:0x2C scope:global align:4
+Camera2_Talk_SetTalking_Cull = .text:0x0000FDB8; // type:function size:0x15C scope:global align:4
+Camera2_main_Talk = .text:0x0000FF14; // type:function size:0x54 scope:global align:4
+Camera2_main_Normal_SetEndCenterPos_fromPlayer = .text:0x0000FF68; // type:function size:0x2CC scope:global align:4
+Camera2_MoveVparamCenter = .text:0x00010234; // type:function size:0x90 scope:global align:4
+Camera2_MoveDistancePosAndSpeedVParam = .text:0x000102C4; // type:function size:0x30 scope:global align:4
+Camera2_MoveDirectionAngleXYZVParam = .text:0x000102F4; // type:function size:0xC4 scope:global align:4
+Camera2_main_Normal_SetPos_fromPlayer = .text:0x000103B8; // type:function size:0x130 scope:global align:4
+Camera2_main_Normal_AdjustDistanceAndDirection = .text:0x000104E8; // type:function size:0x30 scope:global align:4
+Camera2_request_main_normal = .text:0x00010518; // type:function size:0x68 scope:global align:4
+Camera2_setup_main_Normal = .text:0x00010580; // type:function size:0x84 scope:global align:4
+Camera2_main_Normal = .text:0x00010604; // type:function size:0x48 scope:global align:4
+Camera2_request_main_demo = .text:0x0001064C; // type:function size:0xF8 scope:global align:4
+Camera2_request_main_demo_fromNowPos = .text:0x00010744; // type:function size:0x54 scope:global align:4
+Camera2_request_main_demo_fromNowPos2 = .text:0x00010798; // type:function size:0x54 scope:global align:4
+Camera2_CalcPos_Demo = .text:0x000107EC; // type:function size:0x1CC scope:global align:4
+Camera2_SetPos_Demo = .text:0x000109B8; // type:function size:0x58 scope:global align:4
+Camera2_main_Demo = .text:0x00010A10; // type:function size:0x34 scope:global align:4
+Camera2_setup_main_Demo = .text:0x00010A44; // type:function size:0xD8 scope:global align:4
+Camera2_request_main_item = .text:0x00010B1C; // type:function size:0x68 scope:global align:4
+Camera2_SetPos_Item = .text:0x00010B84; // type:function size:0x104 scope:global align:4
+Camera2_Item_AddCullTimer = .text:0x00010C88; // type:function size:0x2C scope:global align:4
+Camera2_Item_SetTalking_Cull = .text:0x00010CB4; // type:function size:0x20 scope:global align:4
+Camera2_main_Item = .text:0x00010CD4; // type:function size:0x54 scope:global align:4
+Camera2_setup_main_Item = .text:0x00010D28; // type:function size:0x48 scope:global align:4
+Camera2_request_main_lock = .text:0x00010D70; // type:function size:0xC8 scope:global align:4
+Camera2_setup_main_Lock = .text:0x00010E38; // type:function size:0x70 scope:global align:4
+Camera2_Lock_SetCenterPos = .text:0x00010EA8; // type:function size:0xB4 scope:global align:4
+Camera2_Lock_SetEyePos = .text:0x00010F5C; // type:function size:0x68 scope:global align:4
+Camera2_Lock_SetFovy = .text:0x00010FC4; // type:function size:0x24 scope:global align:4
+Camera2_Lock_SetNearFar = .text:0x00010FE8; // type:function size:0x58 scope:global align:4
+Camera2_Lock_MorphCounterProc = .text:0x00011040; // type:function size:0x24 scope:global align:4
+Camera2_SetPos_Lock = .text:0x00011064; // type:function size:0xC8 scope:global align:4
+Camera2_main_Lock = .text:0x0001112C; // type:function size:0x44 scope:global align:4
+Camera2_request_main_door = .text:0x00011170; // type:function size:0x7C scope:global align:4
+Camera2_setup_main_Door = .text:0x000111EC; // type:function size:0x6C scope:global align:4
+Camera2_Door_SetCenterPos = .text:0x00011258; // type:function size:0xC4 scope:global align:4
+Camera2_Door_SetEyePos = .text:0x0001131C; // type:function size:0x13C scope:global align:4
+Camera2_Door_MorphCounterProc = .text:0x00011458; // type:function size:0x24 scope:global align:4
+Camera2_SetPos_Door = .text:0x0001147C; // type:function size:0x58 scope:global align:4
+Camera2_Door_SetTalking_Cull = .text:0x000114D4; // type:function size:0x20 scope:global align:4
+Camera2_main_Door = .text:0x000114F4; // type:function size:0x4C scope:global align:4
+Camera2_request_main_simple2 = .text:0x00011540; // type:function size:0xB0 scope:global align:4
+Camera2_request_main_simple_kirin = .text:0x000115F0; // type:function size:0xC4 scope:global align:4
+Camera2_request_main_simple_fishing = .text:0x000116B4; // type:function size:0x148 scope:global align:4
+Camera2_request_main_simple_fishing_return = .text:0x000117FC; // type:function size:0x68 scope:global align:4
+Camera2_request_main_simple = .text:0x00011864; // type:function size:0xB0 scope:global align:4
+Camera2_setup_main_Simple = .text:0x00011914; // type:function size:0x6C scope:global align:4
+Camera2_main_Simple_AngleDistStd = .text:0x00011980; // type:function size:0x84 scope:global align:4
+Camera2_Simple_MorphDistance = .text:0x00011A04; // type:function size:0x78 scope:global align:4
+Camera2_Simple_AngleCalc = .text:0x00011A7C; // type:function size:0x128 scope:global align:4
+Camera2_SetPos_Simple = .text:0x00011BA4; // type:function size:0x84 scope:global align:4
+Camera2_Simple_AddCullTimer = .text:0x00011C28; // type:function size:0x2C scope:global align:4
+Camera2_main_Simple = .text:0x00011C54; // type:function size:0x60 scope:global align:4
+Camera2_request_main_listen_front_low_talk = .text:0x00011CB4; // type:function size:0x8C scope:global align:4
+Camera2_request_main_needlework_talk = .text:0x00011D40; // type:function size:0x90 scope:global align:4
+Camera2_request_main_cust_talk = .text:0x00011DD0; // type:function size:0xA0 scope:global align:4
+Camera2_setup_main_Cust_talk = .text:0x00011E70; // type:function size:0x70 scope:global align:4
+Camera2_Cust_Talk_ChangeCameraCenterPos_BetweenSpeakerToListener = .text:0x00011EE0; // type:function size:0xB0 scope:global align:4
+Camera2_Cust_Talk_SetAngleDist = .text:0x00011F90; // type:function size:0x98 scope:global align:4
+Camera2_SetPos_Cust_Talk = .text:0x00012028; // type:function size:0xE8 scope:global align:4
+Camera2_Cust_Talk_AddCullTimer = .text:0x00012110; // type:function size:0x2C scope:global align:4
+Camera2_main_Cust_talk = .text:0x0001213C; // type:function size:0x54 scope:global align:4
+Camera2_request_BuySikimono_WallPaper = .text:0x00012190; // type:function size:0x4C scope:global align:4
+Camera2_Inter_set_reverse_mode = .text:0x000121DC; // type:function size:0x4C scope:global align:4
+Camera2_request_main_inter = .text:0x00012228; // type:function size:0x100 scope:global align:4
+Camera2_setup_main_Inter = .text:0x00012328; // type:function size:0x108 scope:global align:4
+Camera2_Inter_SetPosCenter = .text:0x00012430; // type:function size:0x6C scope:global align:4
+Camera2_Inter_SetPosEye = .text:0x0001249C; // type:function size:0x2C scope:global align:4
+Camera2_Inter_CounterProc = .text:0x000124C8; // type:function size:0x144 scope:global align:4
+Camera2_SetPos_Inter = .text:0x0001260C; // type:function size:0xE0 scope:global align:4
+Camera2_main_Inter = .text:0x000126EC; // type:function size:0x44 scope:global align:4
+Camera2_request_main_staff_roll = .text:0x00012730; // type:function size:0x70 scope:global align:4
+Camera2_setup_main_Staff_roll = .text:0x000127A0; // type:function size:0xB8 scope:global align:4
+Camera2_Staff_Roll_Center = .text:0x00012858; // type:function size:0x314 scope:global align:4
+Camera2_Staff_Roll_DistAngle = .text:0x00012B6C; // type:function size:0x1AC scope:global align:4
+Camera2_main_Staff_Roll_SetPos = .text:0x00012D18; // type:function size:0x34C scope:global align:4
+Camera2_main_Staff_roll = .text:0x00013064; // type:function size:0x44 scope:global align:4
+Init_Camera2 = .text:0x000130A8; // type:function size:0x30 scope:global align:4
+Camera2_change_main_index = .text:0x000130D8; // type:function size:0x60 scope:global align:4
+Camera2_process = .text:0x00013138; // type:function size:0x68 scope:global align:4
+Camera2_draw = .text:0x000131A0; // type:function size:0x4 scope:global align:4
+mChoice_MainSetup = .text:0x000131A4; // type:function size:0x58 scope:global align:4
+mChoice_Main = .text:0x000131FC; // type:function size:0x54 scope:global align:4
+mChoice_Draw = .text:0x00013250; // type:function size:0xAC scope:global align:4
+mChoice_aram_init = .text:0x000132FC; // type:function size:0x3C scope:global align:4
+mChoice_ct = .text:0x00013338; // type:function size:0x44 scope:global align:4
+mChoice_dt = .text:0x0001337C; // type:function size:0x4 scope:global align:4
+mChoice_Get_base_window_p = .text:0x00013380; // type:function size:0x24 scope:global align:4
+mChoice_init = .text:0x000133A4; // type:function size:0x108 scope:global align:4
+mChoice_Change_request_main_index = .text:0x000134AC; // type:function size:0x8 scope:global align:4
+mChoice_check_main_index = .text:0x000134B4; // type:function size:0x8 scope:global align:4
+mChoice_check_main_normal = .text:0x000134BC; // type:function size:0x2C scope:global align:4
+mChoice_Init_choice_data = .text:0x000134E8; // type:function size:0xC scope:global align:4
+mChoice_Add_choice_data = .text:0x000134F4; // type:function size:0xB0 scope:global align:4
+mChoice_Set_choice_data = .text:0x000135A4; // type:function size:0x154 scope:global align:4
+mChoice_Get_MaxStringDotWidth = .text:0x000136F8; // type:function size:0x84 scope:global align:4
+mChoice_Get_MaxStringDotHeight = .text:0x0001377C; // type:function size:0xC scope:global align:4
+mChoice_Set_DisplayScaleAndDisplayPos = .text:0x00013788; // type:function size:0x224 scope:global align:4
+mChoice_Get_ChoseNum = .text:0x000139AC; // type:function size:0x8 scope:global align:4
+mChoice_Clear_ChoseNum = .text:0x000139B4; // type:function size:0xC scope:global align:4
+mChoice_check_ct = .text:0x000139C0; // type:function size:0x4 scope:global align:4
+mChoice_Get_StringDataAddressAndSize = .text:0x000139C4; // type:function size:0x48 scope:global align:4
+mChoice_Put_String_PLAYER_NAME = .text:0x00013A0C; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_TALK_NAME = .text:0x00013A30; // type:function size:0x40 scope:global align:4
+mChoice_Put_String_TAIL = .text:0x00013A70; // type:function size:0x40 scope:global align:4
+mChoice_Put_String_YEAR = .text:0x00013AB0; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_MONTH = .text:0x00013AD0; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_WEEK = .text:0x00013AF0; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_DAY = .text:0x00013B10; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_HOUR = .text:0x00013B30; // type:function size:0x80 scope:global align:4
+mChoice_Put_String_MIN = .text:0x00013BB0; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_SEC = .text:0x00013BD0; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_FREE = .text:0x00013BF0; // type:function size:0x5C scope:global align:4
+mChoice_Put_String_FREE0 = .text:0x00013C4C; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE1 = .text:0x00013C70; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE2 = .text:0x00013C94; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE3 = .text:0x00013CB8; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE4 = .text:0x00013CDC; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE5 = .text:0x00013D00; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE6 = .text:0x00013D24; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE7 = .text:0x00013D48; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE8 = .text:0x00013D6C; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE9 = .text:0x00013D90; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE10 = .text:0x00013DB4; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE11 = .text:0x00013DD8; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE12 = .text:0x00013DFC; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE13 = .text:0x00013E20; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE14 = .text:0x00013E44; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE15 = .text:0x00013E68; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE16 = .text:0x00013E8C; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE17 = .text:0x00013EB0; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE18 = .text:0x00013ED4; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_FREE19 = .text:0x00013EF8; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_DETERMINATION = .text:0x00013F1C; // type:function size:0x4C scope:global align:4
+mChoice_Put_String_COUNTRY_NAME = .text:0x00013F68; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_RAMDOM_NUMBER2 = .text:0x00013F8C; // type:function size:0x20 scope:global align:4
+mChoice_Put_String_ITEM = .text:0x00013FAC; // type:function size:0x5C scope:global align:4
+mChoice_Put_String_ITEM0 = .text:0x00014008; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_ITEM1 = .text:0x0001402C; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_ITEM2 = .text:0x00014050; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_ITEM3 = .text:0x00014074; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_ITEM4 = .text:0x00014098; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_ISLAND_NAME = .text:0x000140BC; // type:function size:0x24 scope:global align:4
+mChoice_Put_String_AMPM = .text:0x000140E0; // type:function size:0x4C scope:global align:4
+mChoice_Put_String = .text:0x0001412C; // type:function size:0x5C scope:global align:4
+mChoice_Change_ControlCode = .text:0x00014188; // type:function size:0x78 scope:global align:4
+mChoice_Load_ChoseStringFromRom = .text:0x00014200; // type:function size:0x11C scope:global align:4
+mChoice_no_b_set = .text:0x0001431C; // type:function size:0xC scope:global align:4
+mChoice_no_b_close_set = .text:0x00014328; // type:function size:0x10 scope:global align:4
+mChoice_sound_SENTAKU_KETTEI = .text:0x00014338; // type:function size:0x24 scope:global align:4
+mChoice_sound_SENTAKU_OPEN = .text:0x0001435C; // type:function size:0x24 scope:global align:4
+mChoice_sound_CURSOL = .text:0x00014380; // type:function size:0x24 scope:global align:4
+mChoice_sound_ZOOMDOWN_SHORT = .text:0x000143A4; // type:function size:0x28 scope:global align:4
+mChoice_sound_ZOOMDOWN_LONG = .text:0x000143CC; // type:function size:0x28 scope:global align:4
+mChoice_Main_Hide = .text:0x000143F4; // type:function size:0x20 scope:global align:4
+mChoice_MainSetup_Hide = .text:0x00014414; // type:function size:0x20 scope:global align:4
+mChoice_Main_Appear_SetScale = .text:0x00014434; // type:function size:0xD0 scope:global align:4
+mChoice_request_main_index_fromAppear = .text:0x00014504; // type:function size:0x2C scope:global align:4
+mChoice_Main_Appear = .text:0x00014530; // type:function size:0x58 scope:global align:4
+mChoice_MainSetup_Appear = .text:0x00014588; // type:function size:0x60 scope:global align:4
+mChoice_determimation_set = .text:0x000145E8; // type:function size:0x5C scope:global align:4
+mChoice_Main_Normal_SetChoice = .text:0x00014644; // type:function size:0x3CC scope:global align:4
+mChoice_request_main_index_fromNormal = .text:0x00014A10; // type:function size:0x2C scope:global align:4
+mChoice_Main_Normal = .text:0x00014A3C; // type:function size:0x58 scope:global align:4
+mChoice_MainSetup_Normal = .text:0x00014A94; // type:function size:0x38 scope:global align:4
+mChoice_Main_Disappear_SetScale = .text:0x00014ACC; // type:function size:0xD0 scope:global align:4
+mChoice_request_main_index_fromDisappear = .text:0x00014B9C; // type:function size:0x2C scope:global align:4
+mChoice_Main_Disappear = .text:0x00014BC8; // type:function size:0x58 scope:global align:4
+mChoice_MainSetup_Disappear = .text:0x00014C20; // type:function size:0xB0 scope:global align:4
+mChoice_SetMatrix = .text:0x00014CD0; // type:function size:0x120 scope:global align:4
+mChoice_SetMatrixDisplay = .text:0x00014DF0; // type:function size:0xCC scope:global align:4
+mChoice_UnSetMatrix = .text:0x00014EBC; // type:function size:0x20 scope:global align:4
+mChoice_UnSetMatrixDisplay = .text:0x00014EDC; // type:function size:0x8C scope:global align:4
+mChoice_DrawWindowBody = .text:0x00014F68; // type:function size:0x8C scope:global align:4
+mChoice_DrawFont = .text:0x00014FF4; // type:function size:0x168 scope:global align:4
+clip_clear = .text:0x0001515C; // type:function size:0x2C scope:global align:4
+mCkRh_GokiFamilyCount2Good = .text:0x00015188; // type:function size:0x28 scope:global align:4
+mCkRh_InitGokiSaveData_InitNewPlayer = .text:0x000151B0; // type:function size:0x4C scope:global align:4
+mCkRh_InitGokiSaveData_1Room = .text:0x000151FC; // type:function size:0x38 scope:global align:4
+mCkRh_InitGokiSaveData_1Room_ByHomeData = .text:0x00015234; // type:function size:0x2C scope:global align:4
+mCkRh_InitGokiSaveData_IslandPlayerRoom = .text:0x00015260; // type:function size:0x34 scope:global align:4
+mCkRh_InitGokiSaveData_AllRoom = .text:0x00015294; // type:function size:0x3C scope:global align:4
+mCkRh_SetGoingOutCottageTime = .text:0x000152D0; // type:function size:0x30 scope:global align:4
+mCkRh_SavePlayTime = .text:0x00015300; // type:function size:0x54 scope:global align:4
+mCkRh_DaysGapCompareWithSaveTime = .text:0x00015354; // type:function size:0x90 scope:global align:4
+mCkRh_DaysGapCompareWithCottageSaveTime = .text:0x000153E4; // type:function size:0x70 scope:global align:4
+mCkRh_DecideNowGokiFamilyCount = .text:0x00015454; // type:function size:0xC4 scope:global align:4
+mCkRh_PlussGokiN_NowRoom = .text:0x00015518; // type:function size:0xE0 scope:global align:4
+mCkRh_MinusGokiN_NowRoom = .text:0x000155F8; // type:function size:0xE0 scope:global align:4
+mCkRh_NowSceneGokiFamilyCount = .text:0x000156D8; // type:function size:0x88 scope:global align:4
+mCkRh_InitCanLookGokiCount = .text:0x00015760; // type:function size:0x18 scope:global align:4
+mCkRh_CalcCanLookGokiCount = .text:0x00015778; // type:function size:0x4C scope:global align:4
+mCkRh_GetCanLookGokiCount = .text:0x000157C4; // type:function size:0x14 scope:global align:4
+mCoBG_PlussDirectOffset = .text:0x000157D8; // type:function size:0x5C scope:global align:4
+mCoBG_SetXyz_t = .text:0x00015834; // type:function size:0x10 scope:global align:4
+mCoBG_SetXZ = .text:0x00015844; // type:function size:0xC scope:global align:4
+mCoBG_Wpos2Upos = .text:0x00015850; // type:function size:0x88 scope:global align:4
+mCoBG_Unit2UnitInfo_OutOfUnitPos = .text:0x000158D8; // type:function size:0x170 scope:global align:4
+mCoBG_Wpos2UnitInfo = .text:0x00015A48; // type:function size:0xC8 scope:global align:4
+mCoBG_GetUnitArea = .text:0x00015B10; // type:function size:0x58 scope:global align:4
+mCoBG_GetGroundAngleFromVtx3 = .text:0x00015B68; // type:function size:0x1A8 scope:global align:4
+mCoBG_GetArea3Point = .text:0x00015D10; // type:function size:0x2B4 scope:global align:4
+mCoBG_GetNormTriangle = .text:0x00015FC4; // type:function size:0xD8 scope:global align:4
+mCoBG_AdjustActorY = .text:0x0001609C; // type:function size:0x1CC scope:global align:4
+mCoBG_GroundPolygonInfo2BgHeight = .text:0x00016268; // type:function size:0x74 scope:global align:4
+mCoBG_GetSpeedByWpos = .text:0x000162DC; // type:function size:0x24 scope:global align:4
+mCoBG_CarryOutReverse = .text:0x00016300; // type:function size:0xEC scope:global align:4
+mCoBG_InitRevpos = .text:0x000163EC; // type:function size:0x18 scope:global align:4
+mCoBG_MakeSizeUnitInfo = .text:0x00016404; // type:function size:0x84 scope:global align:4
+mCoBG_MakeTab2MoveTail = .text:0x00016488; // type:function size:0x110 scope:global align:4
+mCoBG_SearchAttribute = .text:0x00016598; // type:function size:0x80 scope:global align:4
+mCoBG_RegistCollisionWallInfo = .text:0x00016618; // type:function size:0x80 scope:global align:4
+mCoBG_JudgeWallFromVector = .text:0x00016698; // type:function size:0x5C scope:global align:4
+mCoBG_RoughCheckWallHeight = .text:0x000166F4; // type:function size:0x3C scope:global align:4
+mCoBG_GetWallHeight = .text:0x00016730; // type:function size:0xCC scope:global align:4
+mCoBG_CheckHeightExactly = .text:0x000167FC; // type:function size:0x210 scope:global align:4
+mCoBG_SearchWallFront = .text:0x00016A0C; // type:function size:0x30 scope:global align:4
+mCoBG_Check45Angle = .text:0x00016A3C; // type:function size:0x4C scope:global align:4
+mCoBG_RegistWallCount = .text:0x00016A88; // type:function size:0x184 scope:global align:4
+mCoBG_MakeHitWallFalg = .text:0x00016C0C; // type:function size:0x64 scope:global align:4
+mCoBG_SearchColOwnPart = .text:0x00016C70; // type:function size:0x1A0 scope:global align:4
+mCoBG_MakePartDirectHitWallFlag = .text:0x00016E10; // type:function size:0xF0 scope:global align:4
+mCoBG_GetWallKind = .text:0x00016F00; // type:function size:0x28 scope:global align:4
+mCoBG_Cross2Reverse_NormalWall = .text:0x00016F28; // type:function size:0x120 scope:global align:4
+mCoBG_Cross2Reverse_AttributeWall = .text:0x00017048; // type:function size:0xAC scope:global align:4
+mCoBG_Cross2Reverse = .text:0x000170F4; // type:function size:0xCC scope:global align:4
+mCoBG_Distance2Reverse_NormalWall = .text:0x000171C0; // type:function size:0x1D8 scope:global align:4
+mCoBG_GetSpecialDistanceReverse = .text:0x00017398; // type:function size:0xB4 scope:global align:4
+mCoBG_CheckDistSPCheck = .text:0x0001744C; // type:function size:0x130 scope:global align:4
+mCoBG_Distance2Reverse_NormalWall_Special = .text:0x0001757C; // type:function size:0x264 scope:global align:4
+mCoBG_Distance2Reverse_AttributeWall = .text:0x000177E0; // type:function size:0x100 scope:global align:4
+mCoBG_Distance2Reverse_AttributeWall_Special = .text:0x000178E0; // type:function size:0x1C0 scope:global align:4
+mCoBG_Distance2Reverse = .text:0x00017AA0; // type:function size:0x100 scope:global align:4
+mCoBG_MergeSortFloat = .text:0x00017BA0; // type:function size:0x1E8 scope:global align:4
+mCoBG_GetWallPriority = .text:0x00017D88; // type:function size:0x1A0 scope:global align:4
+mCoBG_GetWallReverse = .text:0x00017F28; // type:function size:0x440 scope:global align:4
+mCoBG_WallCheck = .text:0x00018368; // type:function size:0x370 scope:global align:4
+mCoBG_GetAreaYSlatingUnit = .text:0x000186D8; // type:function size:0x150 scope:global align:4
+mCoBG_GetCurrentCenterPosition = .text:0x00018828; // type:function size:0x1C scope:global align:4
+mCoBG_GetOldCenterPosition = .text:0x00018844; // type:function size:0x1C scope:global align:4
+mCoBG_GetBGHeight_Normal_NormalGround = .text:0x00018860; // type:function size:0x130 scope:global align:4
+mCoBG_GetBGHeight_Normal_SlateGround = .text:0x00018990; // type:function size:0xDC scope:global align:4
+mCoBG_GetBGHeight_Normal = .text:0x00018A6C; // type:function size:0x3C scope:global align:4
+mCoBG_MakeJumpFlag_NotOldOnGround = .text:0x00018AA8; // type:function size:0x4 scope:global align:4
+mCoBG_MakeJumpFlag_OldOnGround = .text:0x00018AAC; // type:function size:0x34 scope:global align:4
+mCoBG_MakeJumpFlag = .text:0x00018AE0; // type:function size:0x38 scope:global align:4
+mCoBG_Pos2UnitPos = .text:0x00018B18; // type:function size:0xC0 scope:global align:4
+mCoBG_CheckWaveAtrDetail = .text:0x00018BD8; // type:function size:0x274 scope:global align:4
+mCoBG_GetWaveDynamicAttr = .text:0x00018E4C; // type:function size:0xA0 scope:global align:4
+mCoBG_Wpos2Attribute = .text:0x00018EEC; // type:function size:0x2B8 scope:global align:4
+mCoBG_SearchWaterAttributeFrom4Area = .text:0x000191A4; // type:function size:0x58 scope:global align:4
+mCoBG_GetBGHeight_NormalColumn = .text:0x000191FC; // type:function size:0xDC scope:global align:4
+mCoBG_GroundCheck = .text:0x000192D8; // type:function size:0x2FC scope:global align:4
+mCoBG_InitBgCheckResult = .text:0x000195D4; // type:function size:0x98 scope:global align:4
+mCoBG_InitBgCheckClass = .text:0x0001966C; // type:function size:0x30 scope:global align:4
+mCoBG_ActorFearture2CheckRange = .text:0x0001969C; // type:function size:0x44 scope:global align:4
+mCoBG_MakeActorInf = .text:0x000196E0; // type:function size:0x154 scope:global align:4
+mCoBG_GiveRevposToActor = .text:0x00019834; // type:function size:0x24 scope:global align:4
+mCoBG_MoveActorWithMoveBg_NotOnMoveBg = .text:0x00019858; // type:function size:0x4 scope:global align:4
+mCoBG_MoveActorWithMoveBg_OnMoveBg = .text:0x0001985C; // type:function size:0x98 scope:global align:4
+mCoBG_MoveActorWithMoveBg = .text:0x000198F4; // type:function size:0x38 scope:global align:4
+mCoBG_RoomScopeCheck = .text:0x0001992C; // type:function size:0xDC scope:global align:4
+mCoBG_BgCheckControll_RemoveDirectedUnitColumn = .text:0x00019A08; // type:function size:0x1D8 scope:global align:4
+mCoBG_BgCheckControll = .text:0x00019BE0; // type:function size:0x28 scope:global align:4
+mCoBG_WallCheckOnly = .text:0x00019C08; // type:function size:0x164 scope:global align:4
+mCoBG_GroundCheckOnly = .text:0x00019D6C; // type:function size:0x154 scope:global align:4
+mCoBG_VirtualBGCheck = .text:0x00019EC0; // type:function size:0x128 scope:global align:4
+mCoBG_RotateY = .text:0x00019FE8; // type:function size:0x88 scope:global align:4
+mCoBG_GetVectorProductin2D = .text:0x0001A070; // type:function size:0x20 scope:global align:4
+mCoBG_JudgeCrossTriangleAndLine2D_XY = .text:0x0001A090; // type:function size:0x74 scope:global align:4
+mCoBG_JudgeCrossTriangleAndLine2D_XZ = .text:0x0001A104; // type:function size:0x74 scope:global align:4
+mCoBG_JudgeCrossTriangleAndLine2D_YZ = .text:0x0001A178; // type:function size:0x74 scope:global align:4
+mCoBG_JudgeCrossTriangleAndLine2D = .text:0x0001A1EC; // type:function size:0x224 scope:global align:4
+mCoBG_GetDimension2Idx = .text:0x0001A410; // type:function size:0x98 scope:global align:4
+mCoBG_GetCrossTriangleAndLine3D = .text:0x0001A4A8; // type:function size:0x1B4 scope:global align:4
+mCoBG_GetVectorScalar2D = .text:0x0001A65C; // type:function size:0x20 scope:global align:4
+mCoBG_GetCrossJudge_2Vector = .text:0x0001A67C; // type:function size:0x160 scope:global align:4
+mCoBG_GetCross2Line = .text:0x0001A7DC; // type:function size:0x74 scope:global align:4
+mCoBG_Get2VectorAngleF = .text:0x0001A850; // type:function size:0x108 scope:global align:4
+mCoBG_GetCrossLineAndPerpendicular = .text:0x0001A958; // type:function size:0x90 scope:global align:4
+mCoBG_GetPointInfoFrontLine = .text:0x0001A9E8; // type:function size:0x54 scope:global align:4
+mCoBG_GetDistPointAndLine2D_Norm = .text:0x0001AA3C; // type:function size:0x64 scope:global align:4
+mCoBG_GetCrossCircleAndLine2Dvector = .text:0x0001AAA0; // type:function size:0x29C scope:global align:4
+mCoBG_GetCrossCircleAndLine2DvectorPlaneXZ_Xyz = .text:0x0001AD3C; // type:function size:0xE8 scope:global align:4
+mCoBG_JudgePointInCircle_Xyz = .text:0x0001AE24; // type:function size:0x3C scope:global align:4
+mCoBG_JudgePointInCircle = .text:0x0001AE60; // type:function size:0x3C scope:global align:4
+mCoBG_GetDeffVec = .text:0x0001AE9C; // type:function size:0x64 scope:global align:4
+mCoBG_GetNorm_By2Vector = .text:0x0001AF00; // type:function size:0x6C scope:global align:4
+mCoBG_GetNorm_By3Point = .text:0x0001AF6C; // type:function size:0x68 scope:global align:4
+mCoBG_SelectBiggerUnint = .text:0x0001AFD4; // type:function size:0x14 scope:global align:4
+mCoBG_SelectSmallerUnint = .text:0x0001AFE8; // type:function size:0x14 scope:global align:4
+mCoBG_GetMaxOffset = .text:0x0001AFFC; // type:function size:0x64 scope:global align:4
+mCoBG_GetMinOffset = .text:0x0001B060; // type:function size:0x64 scope:global align:4
+mCoBG_RangeCheckLinePoint = .text:0x0001B0C4; // type:function size:0xB0 scope:global align:4
+mCoBG_SetLinePos = .text:0x0001B174; // type:function size:0xC scope:global align:4
+mCoBG_PlusLinePos = .text:0x0001B180; // type:function size:0x1C scope:global align:4
+mCoBG_PlusEqualPos = .text:0x0001B19C; // type:function size:0x34 scope:global align:4
+mCoBG_UnitNoName2StartEnd = .text:0x0001B1D0; // type:function size:0x21C scope:global align:4
+mCoBG_SearchSlateDetail = .text:0x0001B3EC; // type:function size:0x44 scope:global align:4
+mCoBG_SearchWallFlag = .text:0x0001B430; // type:function size:0x29C scope:global align:4
+mCoBG_SetTopBtm = .text:0x0001B6CC; // type:function size:0x14 scope:global align:4
+mCoBG_GetUnitVecInf_SlatingWall = .text:0x0001B6E0; // type:function size:0x1B8 scope:global align:4
+mCoBG_JudgeTopAndSet = .text:0x0001B898; // type:function size:0x24 scope:global align:4
+mCoBG_UtInf2NormalWallVector = .text:0x0001B8BC; // type:function size:0x2CC scope:global align:4
+mCoBG_UtInf2NormalSlateWallVector = .text:0x0001BB88; // type:function size:0x268 scope:global align:4
+mCoBG_RegistNormalWallVector_AttributeOn = .text:0x0001BDF0; // type:function size:0x4C scope:global align:4
+mCoBG_UnitInf2NormalVector = .text:0x0001BE3C; // type:function size:0x40 scope:global align:4
+mCoBG_RegistNormalWallVector_AttributeOff = .text:0x0001BE7C; // type:function size:0x1F8 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOn_NoSlate = .text:0x0001C074; // type:function size:0x4 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOn_Slate = .text:0x0001C078; // type:function size:0x90 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOn = .text:0x0001C108; // type:function size:0x38 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOff_Slate_NoOldInWater = .text:0x0001C140; // type:function size:0x70 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOff_Slate_OldInWater = .text:0x0001C1B0; // type:function size:0x84 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOff_Slate = .text:0x0001C234; // type:function size:0x5C scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOff_NoSlate = .text:0x0001C290; // type:function size:0x4 scope:global align:4
+mCoBG_RegistSlatingWallVector_AttributeOff = .text:0x0001C294; // type:function size:0x38 scope:global align:4
+mCoBG_GetUnitInfSearchData = .text:0x0001C2CC; // type:function size:0x4C scope:global align:4
+mCoBG_MakeForbidVectorData = .text:0x0001C318; // type:function size:0x148 scope:global align:4
+mCoBG_MakeForbidAttrVector_DUMMY = .text:0x0001C460; // type:function size:0x4 scope:global align:4
+mCoBG_MakeForbidAttrVector = .text:0x0001C464; // type:function size:0x34 scope:global align:4
+mCoBG_MakeUnitVector = .text:0x0001C498; // type:function size:0x21C scope:global align:4
+mCoBG_CircleDefenceWallIdx = .text:0x0001C6B4; // type:function size:0x88 scope:global align:4
+mCoBG_MakeCircleDefenceWall = .text:0x0001C73C; // type:function size:0x1B0 scope:global align:4
+mCoBG_JudgeMoveBgGroundCheck = .text:0x0001C8EC; // type:function size:0x70 scope:global align:4
+mCoBG_GetMoveBgHeight = .text:0x0001C95C; // type:function size:0x288 scope:global align:4
+mCoBG_RegistMoveBg = .text:0x0001CBE4; // type:function size:0x118 scope:global align:4
+mCoBG_Idx2RegistPointer = .text:0x0001CCFC; // type:function size:0x38 scope:global align:4
+mCoBG_CrossOffMoveBg = .text:0x0001CD34; // type:function size:0x84 scope:global align:4
+mCoBG_InitMoveBgData = .text:0x0001CDB8; // type:function size:0x2C scope:global align:4
+mCoBG_SetBaseOffset = .text:0x0001CDE4; // type:function size:0x54 scope:global align:4
+mCoBG_MakeCommonData = .text:0x0001CE38; // type:function size:0x10 scope:global align:4
+mCoBG_GetNorm = .text:0x0001CE48; // type:function size:0x24 scope:global align:4
+mCoBG_SetMoveBgHeightInf = .text:0x0001CE6C; // type:function size:0x28 scope:global align:4
+mCoBG_SetMoveBgContactSide = .text:0x0001CE94; // type:function size:0x44 scope:global align:4
+mCoBG_SetMoveBgContactOn = .text:0x0001CED8; // type:function size:0x38 scope:global align:4
+mCoBG_MoveBgGroundCheck = .text:0x0001CF10; // type:function size:0x150 scope:global align:4
+mCoBG_RotateMoveBgCollisionData = .text:0x0001D060; // type:function size:0xAC scope:global align:4
+mCoBG_SizeData2CollisionData = .text:0x0001D10C; // type:function size:0x4B4 scope:global align:4
+mCoBG_MakeMoveBgVector = .text:0x0001D5C0; // type:function size:0xB4 scope:global align:4
+mCoBG_InitBoatCollision = .text:0x0001D674; // type:function size:0x74 scope:global align:4
+mCoBG_MakeBoatCollision = .text:0x0001D6E8; // type:function size:0xBC scope:global align:4
+mCoBG_DeleteBoatCollision = .text:0x0001D7A4; // type:function size:0x6C scope:global align:4
+mCoBG_CalcAdjust = .text:0x0001D810; // type:function size:0x8C scope:global align:4
+mCoBG_CalcTimerDecalCircleOne = .text:0x0001D89C; // type:function size:0x108 scope:global align:4
+mCoBG_CalcTimerDecalCircle = .text:0x0001D9A4; // type:function size:0x6C scope:global align:4
+mCoBG_RegistDecalCircle = .text:0x0001DA10; // type:function size:0xF4 scope:global align:4
+mCoBG_InitDecalCircle = .text:0x0001DB04; // type:function size:0x4C scope:global align:4
+mCoBG_MakeOneColumnCollisionData = .text:0x0001DB50; // type:function size:0xD04 scope:global align:4
+mCoBG_MakeColumnCollisionData = .text:0x0001E854; // type:function size:0xA4 scope:global align:4
+mCoBG_ColumnCheck_NormalWall = .text:0x0001E8F8; // type:function size:0x23C scope:global align:4
+mCoBG_ColumnCheckOldOnGround_AttrWall = .text:0x0001EB34; // type:function size:0x1F8 scope:global align:4
+mCoBG_ColumnCheckNotOldOnGround_AttrWall = .text:0x0001ED2C; // type:function size:0x4 scope:global align:4
+mCoBG_ColumnCheck_AttrWall = .text:0x0001ED30; // type:function size:0x40 scope:global align:4
+mCoBG_ColumnWallCheck = .text:0x0001ED70; // type:function size:0x140 scope:global align:4
+mCoBG_GetBGHeight_Column = .text:0x0001EEB0; // type:function size:0x70 scope:global align:4
+mCoBG_LineWallCheck_Column = .text:0x0001EF20; // type:function size:0x4C0 scope:global align:4
+mCoBG_LineGroundCheck_Column = .text:0x0001F3E0; // type:function size:0x118 scope:global align:4
+mCoBG_GetBgY_AngleS_FromWpos = .text:0x0001F4F8; // type:function size:0x168 scope:global align:4
+mCoBG_GetBgY_OnlyCenter_FromWpos = .text:0x0001F660; // type:function size:0xB8 scope:global align:4
+mCoBG_Wpos2BgUtCenterHeight_AddColumn = .text:0x0001F718; // type:function size:0xC0 scope:global align:4
+mCoBG_GetBgY_OnlyCenter_FromWpos2 = .text:0x0001F7D8; // type:function size:0xBC scope:global align:4
+mCoBG_GetBgNorm_FromWpos = .text:0x0001F894; // type:function size:0x180 scope:global align:4
+mCoBG_ScrollCheck = .text:0x0001FA14; // type:function size:0x2F0 scope:global align:4
+mCoBG_CheckPlace_OrgAttr = .text:0x0001FD04; // type:function size:0x14 scope:global align:4
+mCoBG_CheckPlace = .text:0x0001FD18; // type:function size:0x48 scope:global align:4
+mCoBG_Attribute2CheckPlant = .text:0x0001FD60; // type:function size:0xCC scope:global align:4
+mCoBG_CheckPlant = .text:0x0001FE2C; // type:function size:0x58 scope:global align:4
+mCoBG_Wpos2CheckNpc = .text:0x0001FE84; // type:function size:0x48 scope:global align:4
+mCoBG_Attr2CheckPlaceNpc = .text:0x0001FECC; // type:function size:0x18 scope:global align:4
+mCoBG_UtNum2BgAttr = .text:0x0001FEE4; // type:function size:0x38 scope:global align:4
+mCoBG_UtNum2UtCenterY = .text:0x0001FF1C; // type:function size:0xB8 scope:global align:4
+mCoBG_UtNum2UtCenterY_Keep = .text:0x0001FFD4; // type:function size:0xB0 scope:global align:4
+mCoBG_Wpos2BgAttribute_Original = .text:0x00020084; // type:function size:0x44 scope:global align:4
+mCoBG_GetHoleNumber_ClData = .text:0x000200C8; // type:function size:0x10C scope:global align:4
+mCoBG_GetHoleNumber = .text:0x000201D4; // type:function size:0x40 scope:global align:4
+mCoBG_BnumUnum2HoleNumber = .text:0x00020214; // type:function size:0x44 scope:global align:4
+mCoBG_CheckHole_OrgAttr = .text:0x00020258; // type:function size:0x90 scope:global align:4
+mCoBG_CheckSandUt_ForFish = .text:0x000202E8; // type:function size:0x8C scope:global align:4
+mCoBG_CheckSandHole_ClData = .text:0x00020374; // type:function size:0x4C scope:global align:4
+mCoBG_CheckHole = .text:0x000203C0; // type:function size:0x1A0 scope:global align:4
+mCoBG_CheckSkySwing = .text:0x00020560; // type:function size:0xB0 scope:global align:4
+mCoBG_CheckGrassX_ClData = .text:0x00020610; // type:function size:0x34 scope:global align:4
+mCoBG_CheckGrassX = .text:0x00020644; // type:function size:0x40 scope:global align:4
+mCoBG_CheckWave_ClData = .text:0x00020684; // type:function size:0x4C scope:global align:4
+mCoBG_CheckWave = .text:0x000206D0; // type:function size:0x40 scope:global align:4
+mCoBG_CheckAcceptDesignSign = .text:0x00020710; // type:function size:0x1A8 scope:global align:4
+mCoBG_GetBgHeightGapBetweenNowDefault = .text:0x000208B8; // type:function size:0x70 scope:global align:4
+mCoBG_ExistHeightGap_KeepAndNow = .text:0x00020928; // type:function size:0x50 scope:global align:4
+mCoBG_SearchWaterLimitDistN = .text:0x00020978; // type:function size:0x284 scope:global align:4
+mCoBG_GetBalloonGroundY = .text:0x00020BFC; // type:function size:0x138 scope:global align:4
+mCoBG_CheckAttribute_BallRolling = .text:0x00020D34; // type:function size:0xD8 scope:global align:4
+mCoBG_CheckBallRollingAreaRate = .text:0x00020E0C; // type:function size:0x208 scope:global align:4
+mCoBG_CheckBallRollingArea = .text:0x00021014; // type:function size:0x190 scope:global align:4
+mCoBG_Wpos2GroundCheckOnly = .text:0x000211A4; // type:function size:0x68 scope:global align:4
+mCoBG_ExistHeightGap_KeepAndNow_Detail = .text:0x0002120C; // type:function size:0x178 scope:global align:4
+mCoBG_Wpos2CheckSlateCol = .text:0x00021384; // type:function size:0xBC scope:global align:4
+mCoBG_WoodSoundEffect = .text:0x00021440; // type:function size:0x64 scope:global align:4
+mCoBG_CheckCliffAttr = .text:0x000214A4; // type:function size:0x3C scope:global align:4
+mCoBG_GetShadowBgY_AngleS_FromWpos = .text:0x000214E0; // type:function size:0x154 scope:global align:4
+mCoBG_CheckUtFlat = .text:0x00021634; // type:function size:0x90 scope:global align:4
+mCoBG_Height2GetLayer = .text:0x000216C4; // type:function size:0x78 scope:global align:4
+mCoBG_GetLayer = .text:0x0002173C; // type:function size:0x48 scope:global align:4
+mCoBG_OffsetInRule = .text:0x00021784; // type:function size:0x1C scope:global align:4
+mCoBG_SetBestBgY = .text:0x000217A0; // type:function size:0x80 scope:global align:4
+mCoBG_TidyChangeOffset = .text:0x00021820; // type:function size:0xBC scope:global align:4
+mCoBG_SetPlussOffset = .text:0x000218DC; // type:function size:0x1A4 scope:global align:4
+mCoBG_SetAttribute = .text:0x00021A80; // type:function size:0x80 scope:global align:4
+mCoBG_Ut2SetPluss5PointOffset_file = .text:0x00021B00; // type:function size:0xB8 scope:global align:4
+mCoBG_SetPluss5PointOffset_file = .text:0x00021BB8; // type:function size:0x26C scope:global align:4
+mCoBG_Change2PoorAttr = .text:0x00021E24; // type:function size:0x5C scope:global align:4
+mCoBG_Ut2SetDefaultOffset = .text:0x00021E80; // type:function size:0x50 scope:global align:4
+mCoBG_InitBlockBgCheckMode = .text:0x00021ED0; // type:function size:0x10 scope:global align:4
+mCoBG_ChangeBlockBgCheckMode = .text:0x00021EE0; // type:function size:0x10 scope:global align:4
+mCoBG_GetBlockBgCheckMode = .text:0x00021EF0; // type:function size:0x10 scope:global align:4
+mCoBG_UniqueWallCheck = .text:0x00021F00; // type:function size:0x1F8 scope:global align:4
+mCoBG_ScopeWallCheck = .text:0x000220F8; // type:function size:0x258 scope:global align:4
+mCoBG_GetSpeedXZ = .text:0x00022350; // type:function size:0x24 scope:global align:4
+mCoBG_TransCenter = .text:0x00022374; // type:function size:0x98 scope:global align:4
+mCoBG_UvecInf2PolygonVtx = .text:0x0002240C; // type:function size:0xE4 scope:global align:4
+mCoBG_GetRevWallPlaneAndVector = .text:0x000224F0; // type:function size:0x188 scope:global align:4
+mCoBG_LineWallCheck = .text:0x00022678; // type:function size:0x118 scope:global align:4
+mCoBG_GetAreaPolygon = .text:0x00022790; // type:function size:0x408 scope:global align:4
+mCoBG_GetFlatGroundPolygon = .text:0x00022B98; // type:function size:0x6C scope:global align:4
+mCoBG_GetRevGroundAndLine = .text:0x00022C04; // type:function size:0x458 scope:global align:4
+mCoBG_LineGroundCheck_Move = .text:0x0002305C; // type:function size:0x578 scope:global align:4
+mCoBG_LineGroundCheck = .text:0x000235D4; // type:function size:0x140 scope:global align:4
+mCoBG_MakeLineCheckCollisionData = .text:0x00023714; // type:function size:0xB4 scope:global align:4
+mCoBG_JudgeStartLineCheck = .text:0x000237C8; // type:function size:0xA8 scope:global align:4
+mCoBG_SetWallGroundReverse = .text:0x00023870; // type:function size:0x6C scope:global align:4
+mCoBG_LineCheck_RemoveFg = .text:0x000238DC; // type:function size:0x3D4 scope:global align:4
+mCoBG_GetBgY_AngleS_FromWpos2 = .text:0x00023CB0; // type:function size:0x148 scope:global align:4
+mCoBG_GetWaterHeight_File = .text:0x00023DF8; // type:function size:0x314 scope:global align:4
+mCoBG_CheckWaterAttribute = .text:0x0002410C; // type:function size:0x30 scope:global align:4
+mCoBG_CheckWaterAttribute_OutOfSea = .text:0x0002413C; // type:function size:0x20 scope:global align:4
+mCoBG_WaveCos2BgCheck = .text:0x0002415C; // type:function size:0xC scope:global align:4
+mCoBG_WaveCos = .text:0x00024168; // type:function size:0xC scope:global align:4
+mCoBG_GetWaterFlow = .text:0x00024174; // type:function size:0xCC scope:global align:4
+mCoBG_CheckWaveAttr = .text:0x00024240; // type:function size:0x30 scope:global align:4
+CollisionCheck_workTrisElemCenter = .text:0x00024270; // type:function size:0x60 scope:global align:4
+ClObj_ct = .text:0x000242D0; // type:function size:0x28 scope:global align:4
+ClObj_dt = .text:0x000242F8; // type:function size:0x8 scope:global align:4
+ClObj_set4 = .text:0x00024300; // type:function size:0x24 scope:global align:4
+ClObj_OCClear = .text:0x00024324; // type:function size:0x24 scope:global align:4
+ClObjElem_ct = .text:0x00024348; // type:function size:0x10 scope:global align:4
+ClObjElem_set = .text:0x00024358; // type:function size:0x10 scope:global align:4
+ClObjElem_OCClear = .text:0x00024368; // type:function size:0x10 scope:global align:4
+ClObjJntSphElem_OCClear = .text:0x00024378; // type:function size:0x24 scope:global align:4
+ClObjJntSph_OCClear = .text:0x0002439C; // type:function size:0x6C scope:global align:4
+ClObjPipeAttr_ct = .text:0x00024408; // type:function size:0x28 scope:global align:4
+ClObjPipeAttr_dt = .text:0x00024430; // type:function size:0x8 scope:global align:4
+ClObjPipeAttr_set = .text:0x00024438; // type:function size:0x20 scope:global align:4
+ClObjPipe_ct = .text:0x00024458; // type:function size:0x50 scope:global align:4
+ClObjPipe_dt = .text:0x000244A8; // type:function size:0x48 scope:global align:4
+ClObjPipe_set5 = .text:0x000244F0; // type:function size:0x5C scope:global align:4
+ClObjPipe_OCClear = .text:0x0002454C; // type:function size:0x48 scope:global align:4
+ClObjTrisElemAttr_ct = .text:0x00024594; // type:function size:0x34 scope:global align:4
+ClObjTrisElemAttr_dt = .text:0x000245C8; // type:function size:0x8 scope:global align:4
+ClObjTrisElemAttr_set = .text:0x000245D0; // type:function size:0xB8 scope:global align:4
+ClObjTrisElem_ct = .text:0x00024688; // type:function size:0x4C scope:global align:4
+ClObjTrisElem_dt = .text:0x000246D4; // type:function size:0x28 scope:global align:4
+ClObjTrisElem_set = .text:0x000246FC; // type:function size:0x58 scope:global align:4
+ClObjTrisElem_OCClear = .text:0x00024754; // type:function size:0x24 scope:global align:4
+ClObjTris_ct = .text:0x00024778; // type:function size:0x3C scope:global align:4
+ClObjTris_dt_nzf = .text:0x000247B4; // type:function size:0x78 scope:global align:4
+ClObjTris_set5_nzm = .text:0x0002482C; // type:function size:0x98 scope:global align:4
+ClObjTris_OCClear = .text:0x000248C4; // type:function size:0x6C scope:global align:4
+CollisionCheck_ct = .text:0x00024930; // type:function size:0x28 scope:global align:4
+CollisionCheck_dt = .text:0x00024958; // type:function size:0x4 scope:global align:4
+CollisionCheck_clear = .text:0x0002495C; // type:function size:0x80 scope:global align:4
+CollisionCheck_setOC = .text:0x000249DC; // type:function size:0xD0 scope:global align:4
+get_type = .text:0x00024AAC; // type:function size:0x28 scope:global align:4
+CollisionCheck_setOC_HitInfo = .text:0x00024AD4; // type:function size:0x3AC scope:global align:4
+CollisionCheck_OC_JntSph_Vs_JntSph = .text:0x00024E80; // type:function size:0x118 scope:global align:4
+CollisionCheck_OC_JntSph_Vs_Pipe = .text:0x00024F98; // type:function size:0xF4 scope:global align:4
+CollisionCheck_OC_Pipe_Vs_JntSph = .text:0x0002508C; // type:function size:0x2C scope:global align:4
+CollisionCheck_OC_Pipe_Vs_Pipe = .text:0x000250B8; // type:function size:0xB8 scope:global align:4
+CollisionCheck_Check1ClObjNoOC = .text:0x00025170; // type:function size:0x10 scope:global align:4
+CollisionCheck_Check2ClObjNoOC = .text:0x00025180; // type:function size:0x48 scope:global align:4
+CollisionCheck_OC = .text:0x000251C8; // type:function size:0x10C scope:global align:4
+CollisionCheck_setOCC_HitInfo = .text:0x000252D4; // type:function size:0x30 scope:global align:4
+CollisionCheck_OCC_Tris_Vs_JntSph = .text:0x00025304; // type:function size:0x114 scope:global align:4
+CollisionCheck_OCC_Tris_Vs_Pipe = .text:0x00025418; // type:function size:0xF4 scope:global align:4
+CollisionCheck_Check1ClObjNoOCC = .text:0x0002550C; // type:function size:0x10 scope:global align:4
+CollisionCheck_OCC = .text:0x0002551C; // type:function size:0x100 scope:global align:4
+ClObjTrisElem_OCCClear = .text:0x0002561C; // type:function size:0x1C scope:global align:4
+ClObj_OCCClear = .text:0x00025638; // type:function size:0x18 scope:global align:4
+ClObjTris_OCCClear = .text:0x00025650; // type:function size:0x6C scope:global align:4
+CollisionCheck_setOCC = .text:0x000256BC; // type:function size:0xF0 scope:global align:4
+CollisionCheck_Status_ct = .text:0x000257AC; // type:function size:0x30 scope:global align:4
+CollisionCheck_Status_Clear = .text:0x000257DC; // type:function size:0x2C scope:global align:4
+CollisionCheck_Status_set3 = .text:0x00025808; // type:function size:0x2C scope:global align:4
+CollisionCheck_Uty_ActorWorldPosSetPipeC = .text:0x00025834; // type:function size:0x48 scope:global align:4
+common_data_reinit = .text:0x0002587C; // type:function size:0x84 scope:global align:4
+common_data_init = .text:0x00025900; // type:function size:0x20 scope:global align:4
+common_data_clear = .text:0x00025920; // type:function size:0x20 scope:global align:4
+mCon_ct = .text:0x00025940; // type:function size:0x4 scope:global align:4
+mCon_dt = .text:0x00025944; // type:function size:0x4 scope:global align:4
+mCon_calc = .text:0x00025948; // type:function size:0x2DC scope:global align:4
+mCon_main = .text:0x00025C24; // type:function size:0x8C scope:global align:4
+chkButton = .text:0x00025CB0; // type:function size:0x60 scope:global align:4
+getButton = .text:0x00025D10; // type:function size:0x40 scope:global align:4
+chkTrigger = .text:0x00025D50; // type:function size:0x60 scope:global align:4
+getTrigger = .text:0x00025DB0; // type:function size:0x40 scope:global align:4
+getJoystick_X = .text:0x00025DF0; // type:function size:0x44 scope:global align:4
+getJoystick_Y = .text:0x00025E34; // type:function size:0x44 scope:global align:4
+new_Debug_mode = .text:0x00025E78; // type:function size:0x78 scope:global align:4
+Debug_Display_init = .text:0x00025EF0; // type:function size:0x10 scope:global align:4
+Debug_Display_new = .text:0x00025F00; // type:function size:0xAC scope:global align:4
+Debug_Display_output = .text:0x00025FAC; // type:function size:0x88 scope:global align:4
+debug_display_output_sprite_16x16_I8 = .text:0x00026034; // type:function size:0x1CC scope:global align:4
+debug_display_output_polygon = .text:0x00026200; // type:function size:0x13C scope:global align:4
+debug_hayakawa_bitset = .text:0x0002633C; // type:function size:0xE4 scope:global align:4
+debug_hayakawa_move = .text:0x00026420; // type:function size:0x75C scope:global align:4
+pad_disp = .text:0x00026B7C; // type:function size:0x130 scope:global align:4
+debug_hayakawa_draw_safetyframe = .text:0x00026CAC; // type:function size:0xFC scope:global align:4
+debug_hayakawa_draw = .text:0x00026DA8; // type:function size:0x33C scope:global align:4
+hreg_init_check = .text:0x000270E4; // type:function size:0x5C scope:global align:4
+Debug_Print_output = .text:0x00027140; // type:function size:0xA4 scope:global align:4
+Debug_Print2_output = .text:0x000271E4; // type:function size:0xBC scope:global align:4
+Debug_console = .text:0x000272A0; // type:function size:0x2FC scope:global align:4
+Debug_mode_input = .text:0x0002759C; // type:function size:0x5DC scope:global align:4
+Debug_mode_output_sub = .text:0x00027B78; // type:function size:0x170 scope:global align:4
+Debug_mode_zelda_malloc_info_output = .text:0x00027CE8; // type:function size:0xF8 scope:global align:4
+DebugHaniwaTempo = .text:0x00027DE0; // type:function size:0xE4 scope:global align:4
+Debug_mode_output = .text:0x00027EC4; // type:function size:0x348 scope:global align:4
+mDemo_Check_talk_type = .text:0x0002820C; // type:function size:0x2C scope:global align:4
+mDemo_Get_talk_actor = .text:0x00028238; // type:function size:0x40 scope:global align:4
+mDemo_Set_OrderValue = .text:0x00028278; // type:function size:0x44 scope:global align:4
+mDemo_Get_OrderValue = .text:0x000282BC; // type:function size:0x4C scope:global align:4
+mDemo_Init_OrderValue = .text:0x00028308; // type:function size:0x4C scope:global align:4
+mDemo_Set_msg_num = .text:0x00028354; // type:function size:0x44 scope:global align:4
+mDemo_Get_Talk_Actors = .text:0x00028398; // type:function size:0x74 scope:global align:4
+mDemo_Set_change_player_destiny = .text:0x0002840C; // type:function size:0x14 scope:global align:4
+mDemo_Get_change_player_destiny = .text:0x00028420; // type:function size:0x18 scope:global align:4
+mDemo_Clear_change_player_destiny = .text:0x00028438; // type:function size:0x24 scope:global align:4
+mDemo_Copy_change_player_destiny = .text:0x0002845C; // type:function size:0x84 scope:global align:4
+mDemo_Set_use_zoom_sound = .text:0x000284E0; // type:function size:0x48 scope:global align:4
+mDemo_Get_use_zoom_sound = .text:0x00028528; // type:function size:0x40 scope:global align:4
+mDemo_Set_talk_display_name = .text:0x00028568; // type:function size:0x48 scope:global align:4
+mDemo_Set_talk_change_player = .text:0x000285B0; // type:function size:0x48 scope:global align:4
+mDemo_Set_talk_return_demo_wait = .text:0x000285F8; // type:function size:0x48 scope:global align:4
+mDemo_Set_talk_return_get_golden_axe_demo = .text:0x00028640; // type:function size:0x48 scope:global align:4
+mDemo_Set_talk_turn = .text:0x00028688; // type:function size:0x48 scope:global align:4
+mDemo_Get_talk_turn = .text:0x000286D0; // type:function size:0x40 scope:global align:4
+mDemo_Set_talk_window_color = .text:0x00028710; // type:function size:0x50 scope:global align:4
+mDemo_Set_camera = .text:0x00028760; // type:function size:0x18 scope:global align:4
+mDemo_Get_camera = .text:0x00028778; // type:function size:0x14 scope:global align:4
+mDemo_CheckDemoType = .text:0x0002878C; // type:function size:0x40 scope:global align:4
+change_camera = .text:0x000287CC; // type:function size:0x318 scope:global align:4
+set_speak_default = .text:0x00028AE4; // type:function size:0x9C scope:global align:4
+set_report_default = .text:0x00028B80; // type:function size:0x98 scope:global align:4
+set_talk_default = .text:0x00028C18; // type:function size:0x9C scope:global align:4
+wait_talk_start = .text:0x00028CB4; // type:function size:0x1BC scope:global align:4
+wait_talk_end = .text:0x00028E70; // type:function size:0xAC scope:global align:4
+set_speech_default = .text:0x00028F1C; // type:function size:0x9C scope:global align:4
+wait_scroll_start = .text:0x00028FB8; // type:function size:0x8 scope:global align:4
+set_door_default = .text:0x00028FC0; // type:function size:0x34 scope:global align:4
+wait_door_start = .text:0x00028FF4; // type:function size:0x13C scope:global align:4
+mDemo_Set_house_info = .text:0x00029130; // type:function size:0x40 scope:global align:4
+wait_door2_start = .text:0x00029170; // type:function size:0x13C scope:global align:4
+get_title_no_for_event = .text:0x000292AC; // type:function size:0xB4 scope:global align:4
+set_emsg_default = .text:0x00029360; // type:function size:0x110 scope:global align:4
+wait_emsg_start = .text:0x00029470; // type:function size:0x7C scope:global align:4
+wait_emsg_end = .text:0x000294EC; // type:function size:0xCC scope:global align:4
+set_emsg2_default = .text:0x000295B8; // type:function size:0x74 scope:global align:4
+wait_emsg2_start = .text:0x0002962C; // type:function size:0x1C scope:global align:4
+wait_emsg2_end = .text:0x00029648; // type:function size:0xB8 scope:global align:4
+weight_of_talk_position = .text:0x00029700; // type:function size:0x150 scope:global align:4
+allways_true = .text:0x00029850; // type:function size:0x8 scope:global align:4
+allways_false = .text:0x00029858; // type:function size:0x8 scope:global align:4
+scroll_check = .text:0x00029860; // type:function size:0x2C scope:global align:4
+scroll2_check = .text:0x0002988C; // type:function size:0x2C scope:global align:4
+scroll3_check = .text:0x000298B8; // type:function size:0x2C scope:global align:4
+door_check = .text:0x000298E4; // type:function size:0x2C scope:global align:4
+door2_check = .text:0x00029910; // type:function size:0x2C scope:global align:4
+outdoor_check = .text:0x0002993C; // type:function size:0x2C scope:global align:4
+talk_check = .text:0x00029968; // type:function size:0x34 scope:global align:4
+speak_check = .text:0x0002999C; // type:function size:0x34 scope:global align:4
+choice_demo_sub = .text:0x000299D0; // type:function size:0x140 scope:global align:4
+choice_demo = .text:0x00029B10; // type:function size:0xB8 scope:global align:4
+check_speech_request = .text:0x00029BC8; // type:function size:0x54 scope:global align:4
+emsg_set = .text:0x00029C1C; // type:function size:0x28 scope:global align:4
+init_demo = .text:0x00029C44; // type:function size:0xCC scope:global align:4
+run_demo = .text:0x00029D10; // type:function size:0xC4 scope:global align:4
+main_proc = .text:0x00029DD4; // type:function size:0x1AC scope:global align:4
+mDemo_stock_clear = .text:0x00029F80; // type:function size:0x1C scope:global align:4
+mDemo_Request = .text:0x00029F9C; // type:function size:0x108 scope:global align:4
+mDemo_Check = .text:0x0002A0A4; // type:function size:0x34 scope:global align:4
+mDemo_Start = .text:0x0002A0D8; // type:function size:0x8 scope:global align:4
+mDemo_End = .text:0x0002A0E0; // type:function size:0x30 scope:global align:4
+mDemo_Main = .text:0x0002A110; // type:function size:0x20 scope:global align:4
+mDemo_Init = .text:0x0002A130; // type:function size:0x48 scope:global align:4
+mDemo_CheckDemo = .text:0x0002A178; // type:function size:0x1C scope:global align:4
+mDemo_CheckDemo4Event = .text:0x0002A194; // type:function size:0x48 scope:global align:4
+mDemo_Set_SpeakerAble = .text:0x0002A1DC; // type:function size:0x18 scope:global align:4
+mDemo_Set_ListenAble = .text:0x0002A1F4; // type:function size:0x18 scope:global align:4
+mDemo_Unset_SpeakerAble = .text:0x0002A20C; // type:function size:0x18 scope:global align:4
+mDemo_Unset_ListenAble = .text:0x0002A224; // type:function size:0x18 scope:global align:4
+mDemo_Check_SpeakerAble = .text:0x0002A23C; // type:function size:0x14 scope:global align:4
+mDemo_Check_ListenAble = .text:0x0002A250; // type:function size:0x14 scope:global align:4
+mDemo_Check_DiffAngle_forTalk = .text:0x0002A264; // type:function size:0x20 scope:global align:4
+mDemo_KeepCamera = .text:0x0002A284; // type:function size:0x14 scope:global align:4
+mDi_strlen = .text:0x0002A298; // type:function size:0x40 scope:global align:4
+mDi_clear_diary = .text:0x0002A2D8; // type:function size:0x40 scope:global align:4
+mDi_init_diary = .text:0x0002A318; // type:function size:0x20 scope:global align:4
+getcrc = .text:0x0002A338; // type:function size:0x44 scope:global align:4
+crcgen = .text:0x0002A37C; // type:function size:0x4C scope:global align:4
+mEA_GetCRC = .text:0x0002A3C8; // type:function size:0x44 scope:global align:4
+putLEWord = .text:0x0002A40C; // type:function size:0x20 scope:global align:4
+mEA_InitLetterCardE = .text:0x0002A42C; // type:function size:0x64 scope:global align:4
+mEA_CheckLetterCardE = .text:0x0002A490; // type:function size:0x70 scope:global align:4
+mEA_SetLetterCardE = .text:0x0002A500; // type:function size:0x6C scope:global align:4
+mEA_GetCardDLProgram = .text:0x0002A56C; // type:function size:0xCC scope:global align:4
+mEA_CleanCardDLProgram = .text:0x0002A638; // type:function size:0x58 scope:global align:4
+mEA_dl_carde_program_p = .text:0x0002A690; // type:function size:0x14 scope:global align:4
+mEA_dl_carde_program_size = .text:0x0002A6A4; // type:function size:0x14 scope:global align:4
+mEv_ClearSpecialEvent = .text:0x0002A6B8; // type:function size:0x48 scope:global align:4
+mEv_ClearEventKabuPeddler = .text:0x0002A700; // type:function size:0x2C scope:global align:4
+mEv_ClearEventSaveInfo = .text:0x0002A72C; // type:function size:0x3C scope:global align:4
+mEv_ClearEventInfo = .text:0x0002A768; // type:function size:0x50 scope:global align:4
+mEv_EventON = .text:0x0002A7B8; // type:function size:0x50 scope:global align:4
+mEv_EventOFF = .text:0x0002A808; // type:function size:0x50 scope:global align:4
+mEv_CheckEvent = .text:0x0002A858; // type:function size:0x44 scope:global align:4
+mEv_ClearPersonalEventFlag = .text:0x0002A89C; // type:function size:0x90 scope:global align:4
+mEv_SetFirstJob = .text:0x0002A92C; // type:function size:0x44 scope:global align:4
+mEv_CheckRealArbeit = .text:0x0002A970; // type:function size:0x78 scope:global align:4
+mEv_CheckArbeit = .text:0x0002A9E8; // type:function size:0x8C scope:global align:4
+mEv_CheckFirstJob = .text:0x0002AA74; // type:function size:0x60 scope:global align:4
+mEv_UnSetFirstJob = .text:0x0002AAD4; // type:function size:0x54 scope:global align:4
+mEv_SetFirstIntro = .text:0x0002AB28; // type:function size:0x44 scope:global align:4
+mEv_CheckFirstIntro = .text:0x0002AB6C; // type:function size:0x60 scope:global align:4
+mEv_UnSetFirstIntro = .text:0x0002ABCC; // type:function size:0x44 scope:global align:4
+mEv_SetGateway = .text:0x0002AC10; // type:function size:0x44 scope:global align:4
+mEv_CheckGateway = .text:0x0002AC54; // type:function size:0x60 scope:global align:4
+mEv_UnSetGateway = .text:0x0002ACB4; // type:function size:0x44 scope:global align:4
+mEv_CheckTitleDemo = .text:0x0002ACF8; // type:function size:0x10 scope:global align:4
+mEv_SetTitleDemo = .text:0x0002AD08; // type:function size:0xC scope:global align:4
+mEv_RenewalDataEveryDay = .text:0x0002AD14; // type:function size:0x78 scope:global align:4
+mEv_GetEventWeather = .text:0x0002AD8C; // type:function size:0x8C scope:global align:4
+last_day_of_month = .text:0x0002AE18; // type:function size:0x7C scope:global align:4
+init_weekday1st = .text:0x0002AE94; // type:function size:0x14C scope:global align:4
+check_date_range = .text:0x0002AFE0; // type:function size:0x50 scope:global align:4
+check_ymdh_range = .text:0x0002B030; // type:function size:0x20 scope:global align:4
+after_n_day = .text:0x0002B050; // type:function size:0xE0 scope:global align:4
+mEv_get_next_weekday = .text:0x0002B130; // type:function size:0x8C scope:global align:4
+m_weekday2day = .text:0x0002B1BC; // type:function size:0x158 scope:global align:4
+mEv_weekday2day = .text:0x0002B314; // type:function size:0x144 scope:global align:4
+get_end_time = .text:0x0002B458; // type:function size:0x38 scope:global align:4
+mEv_get_end_time = .text:0x0002B490; // type:function size:0x50 scope:global align:4
+search_empty_event_today = .text:0x0002B4E0; // type:function size:0x34 scope:global align:4
+add_event_today = .text:0x0002B514; // type:function size:0x174 scope:global align:4
+check_and_clear_event_today = .text:0x0002B688; // type:function size:0x10C scope:global align:4
+delete_too_short_event = .text:0x0002B794; // type:function size:0xF0 scope:global align:4
+init_today_event = .text:0x0002B884; // type:function size:0x70 scope:global align:4
+init_time_seat = .text:0x0002B8F4; // type:function size:0x44 scope:global align:4
+get_special_event_end_time = .text:0x0002B938; // type:function size:0x6C scope:global align:4
+init_special_event = .text:0x0002B9A4; // type:function size:0x3D0 scope:global align:4
+update_special_event = .text:0x0002BD74; // type:function size:0xA4 scope:global align:4
+mEv_get_bargain_day = .text:0x0002BE18; // type:function size:0x24 scope:global align:4
+is_special_event_valid = .text:0x0002BE3C; // type:function size:0x50 scope:global align:4
+mEv_get_special_event_day = .text:0x0002BE8C; // type:function size:0x48 scope:global align:4
+mEv_get_special_event_type = .text:0x0002BED4; // type:function size:0x48 scope:global align:4
+mEv_get_event_place = .text:0x0002BF1C; // type:function size:0x78 scope:global align:4
+mEv_bridge_time_check = .text:0x0002BF94; // type:function size:0x54 scope:global align:4
+init_weekly_event = .text:0x0002BFE8; // type:function size:0x2EC scope:global align:4
+update_soncho_event = .text:0x0002C2D4; // type:function size:0xC0 scope:global align:4
+update_soncho_event2 = .text:0x0002C394; // type:function size:0x74 scope:global align:4
+update_sports_fair = .text:0x0002C408; // type:function size:0x190 scope:global align:4
+update_event_rumor = .text:0x0002C598; // type:function size:0x188 scope:global align:4
+update_weekly_event = .text:0x0002C720; // type:function size:0x140 scope:global align:4
+update_active = .text:0x0002C860; // type:function size:0x2E0 scope:global align:4
+decode_date = .text:0x0002CB40; // type:function size:0x150 scope:global align:4
+set_one_time_active = .text:0x0002CC90; // type:function size:0x40 scope:global align:4
+first_enter_check = .text:0x0002CCD0; // type:function size:0x6C scope:global align:4
+effective_scene = .text:0x0002CD3C; // type:function size:0x68 scope:global align:4
+update_schedule_today = .text:0x0002CDA4; // type:function size:0x3C4 scope:global align:4
+calc_start_block = .text:0x0002D168; // type:function size:0x78 scope:global align:4
+init_event = .text:0x0002D1E0; // type:function size:0x118 scope:global align:4
+mEv_init = .text:0x0002D2F8; // type:function size:0x5C scope:global align:4
+mEv_init_force = .text:0x0002D354; // type:function size:0x50 scope:global align:4
+mEv_2nd_init = .text:0x0002D3A4; // type:function size:0x80 scope:global align:4
+mEv_PlayerOK = .text:0x0002D424; // type:function size:0x48 scope:global align:4
+mEv_run = .text:0x0002D46C; // type:function size:0x1DC scope:global align:4
+mEv_finish = .text:0x0002D648; // type:function size:0xFC scope:global align:4
+mEv_check_schedule = .text:0x0002D744; // type:function size:0x7C scope:global align:4
+mEv_check_run_today = .text:0x0002D7C0; // type:function size:0x50 scope:global align:4
+mEv_set_status = .text:0x0002D810; // type:function size:0x58 scope:global align:4
+set_active = .text:0x0002D868; // type:function size:0x58 scope:global align:4
+mEv_clear_status = .text:0x0002D8C0; // type:function size:0x34 scope:global align:4
+clear_active = .text:0x0002D8F4; // type:function size:0x4C scope:global align:4
+mEv_check_status = .text:0x0002D940; // type:function size:0x64 scope:global align:4
+mEv_check_status_edge = .text:0x0002D9A4; // type:function size:0x20 scope:global align:4
+mEv_set_keep = .text:0x0002D9C4; // type:function size:0x34 scope:global align:4
+mEv_clear_keep = .text:0x0002D9F8; // type:function size:0x34 scope:global align:4
+mEv_check_keep = .text:0x0002DA2C; // type:function size:0x38 scope:global align:4
+mEv_reserve_save_area = .text:0x0002DA64; // type:function size:0x1A8 scope:global align:4
+mEv_get_save_area = .text:0x0002DC0C; // type:function size:0x70 scope:global align:4
+mEv_clear_save_area = .text:0x0002DC7C; // type:function size:0x78 scope:global align:4
+update_save_area = .text:0x0002DCF4; // type:function size:0x140 scope:global align:4
+mEv_reserve_common_area = .text:0x0002DE34; // type:function size:0xE8 scope:global align:4
+mEv_get_common_area = .text:0x0002DF1C; // type:function size:0x70 scope:global align:4
+mEv_clear_common_area = .text:0x0002DF8C; // type:function size:0x78 scope:global align:4
+mEv_reserve_common_place = .text:0x0002E004; // type:function size:0xE8 scope:global align:4
+mEv_get_common_place = .text:0x0002E0EC; // type:function size:0x70 scope:global align:4
+mEv_clear_common_place = .text:0x0002E15C; // type:function size:0x78 scope:global align:4
+mEv_use_block_by_other_event = .text:0x0002E1D4; // type:function size:0x80 scope:global align:4
+mEv_erase_FG_all_in_common_place = .text:0x0002E254; // type:function size:0x98 scope:global align:4
+mEv_clear_rumor = .text:0x0002E2EC; // type:function size:0x10 scope:global align:4
+mEv_spread_rumor = .text:0x0002E2FC; // type:function size:0x2C scope:global align:4
+mEv_get_rumor = .text:0x0002E328; // type:function size:0x4C scope:global align:4
+mEv_actor_dying_message = .text:0x0002E374; // type:function size:0x130 scope:global align:4
+mEv_LiveSonchoPresent = .text:0x0002E4A4; // type:function size:0x4C scope:global align:4
+mEv_LivePlayer = .text:0x0002E4F0; // type:function size:0xC4 scope:global align:4
+mEv_ArbeitPlayer_kari = .text:0x0002E5B4; // type:function size:0x44 scope:global align:4
+mEv_ArbeitPlayer = .text:0x0002E5F8; // type:function size:0x64 scope:global align:4
+mEv_make_new_special_event = .text:0x0002E65C; // type:function size:0xFC scope:global align:4
+mEv_GetMonth = .text:0x0002E758; // type:function size:0x8 scope:global align:4
+mEv_GetDay = .text:0x0002E760; // type:function size:0x8 scope:global align:4
+mEv_GetHour = .text:0x0002E768; // type:function size:0x8 scope:global align:4
+mEv_debug_print4f = .text:0x0002E770; // type:function size:0x168 scope:global align:4
+mEv_sp_debug_print4f = .text:0x0002E8D8; // type:function size:0x180 scope:global align:4
+mEv_change = .text:0x0002EA58; // type:function size:0x8 scope:global align:4
+mEv_get_special_event_state = .text:0x0002EA60; // type:function size:0x168 scope:global align:4
+mEv_snowman_born_check = .text:0x0002EBC8; // type:function size:0x104 scope:global align:4
+mEv_someone_died = .text:0x0002ECCC; // type:function size:0x10 scope:global align:4
+mEv_special_event_soldout = .text:0x0002ECDC; // type:function size:0xB8 scope:global align:4
+mEv_toland_clear_common = .text:0x0002ED94; // type:function size:0x80 scope:global align:4
+mGH_animal_return_init = .text:0x0002EE14; // type:function size:0x4C scope:global align:4
+mGH_check_birth2 = .text:0x0002EE60; // type:function size:0x84 scope:global align:4
+mGH_check_birth = .text:0x0002EEE4; // type:function size:0x4C scope:global align:4
+mGH_check_delete = .text:0x0002EF30; // type:function size:0x11C scope:global align:4
+mMC_mask_cat_init = .text:0x0002F04C; // type:function size:0x68 scope:global align:4
+mMC_check_birth = .text:0x0002F0B4; // type:function size:0x58 scope:global align:4
+mMC_check_birth_day = .text:0x0002F10C; // type:function size:0x64 scope:global align:4
+mMC_check_delete = .text:0x0002F170; // type:function size:0xC4 scope:global align:4
+mMC_set_time = .text:0x0002F234; // type:function size:0x34 scope:global align:4
+mEvMN_GetMapIdx_sub = .text:0x0002F268; // type:function size:0x40 scope:global align:4
+mEvMN_GetMapIdx = .text:0x0002F2A8; // type:function size:0x44 scope:global align:4
+mEvMN_GetEventTypeMap = .text:0x0002F2EC; // type:function size:0x70 scope:global align:4
+mEvMN_GetDataBaseIdx = .text:0x0002F35C; // type:function size:0x2C scope:global align:4
+mEvMN_GetEventBlockKind = .text:0x0002F388; // type:function size:0x24 scope:global align:4
+mEvMN_GetJointAllNpcMax = .text:0x0002F3AC; // type:function size:0x24 scope:global align:4
+mEvMN_GetJointNpcMax = .text:0x0002F3D0; // type:function size:0x24 scope:global align:4
+mEvMN_GetEventSetUtInBlockMapIdx = .text:0x0002F3F4; // type:function size:0x98 scope:global align:4
+mEvMN_GetEventSetUtInBlock = .text:0x0002F48C; // type:function size:0xAC scope:global align:4
+mEvMN_CheckCanJointEvent = .text:0x0002F538; // type:function size:0x4C scope:global align:4
+mEvMN_GetNpcIdxRandom = .text:0x0002F584; // type:function size:0x1FC scope:global align:4
+mEvMN_GetNpcIdx = .text:0x0002F780; // type:function size:0x34 scope:global align:4
+mEvMN_GetNpcJointEv = .text:0x0002F7B4; // type:function size:0x60 scope:global align:4
+mEvMN_ClearRemoveNpcJoint = .text:0x0002F814; // type:function size:0x8C scope:global align:4
+mEvMN_SetNpcJointEvRandom = .text:0x0002F8A0; // type:function size:0x224 scope:global align:4
+mEvMN_SetNpcJointEv = .text:0x0002FAC4; // type:function size:0x70 scope:global align:4
+mEvMN_CheckEventNpcList = .text:0x0002FB34; // type:function size:0x48 scope:global align:4
+mEvMN_GetFireWorksNpcName = .text:0x0002FB7C; // type:function size:0x128 scope:global align:4
+mEvMN_GetHalloweenNpcName = .text:0x0002FCA4; // type:function size:0x7C scope:global align:4
+mEvMN_GetEventNpcName = .text:0x0002FD20; // type:function size:0x70 scope:global align:4
+mEvMN_GetNpcIdxListJointEvent = .text:0x0002FD90; // type:function size:0x90 scope:global align:4
+mEvNM_CheckJointEvent = .text:0x0002FE20; // type:function size:0xCC scope:global align:4
+mEvMN_GetJointEventRandomNpc = .text:0x0002FEEC; // type:function size:0xB0 scope:global align:4
+mEvMN_CheckLapPlayer = .text:0x0002FF9C; // type:function size:0x10C scope:global align:4
+fbdemo_init_gfx = .text:0x000300A8; // type:function size:0x2D4 scope:global align:4
+fbdemo_init_data = .text:0x0003037C; // type:function size:0xC8 scope:global align:4
+fbdemo_cleanup = .text:0x00030444; // type:function size:0x90 scope:global align:4
+fbdemo_init = .text:0x000304D4; // type:function size:0x15C scope:global align:4
+fbdemo_update = .text:0x00030630; // type:function size:0xEC scope:global align:4
+fbdemo_draw = .text:0x0003071C; // type:function size:0xF4 scope:global align:4
+fbdemo_move = .text:0x00030810; // type:function size:0x4 scope:global align:4
+fbdemo_triforce_startup = .text:0x00030814; // type:function size:0xD0 scope:global align:4
+fbdemo_triforce_init = .text:0x000308E4; // type:function size:0x34 scope:global align:4
+fbdemo_triforce_move = .text:0x00030918; // type:function size:0x120 scope:global align:4
+fbdemo_triforce_draw = .text:0x00030A38; // type:function size:0x1D8 scope:global align:4
+fbdemo_triforce_is_finish = .text:0x00030C10; // type:function size:0x8 scope:global align:4
+fbdemo_triforce_settype = .text:0x00030C18; // type:function size:0x3C scope:global align:4
+fbdemo_triforce_setcolor_rgba8888 = .text:0x00030C54; // type:function size:0x4 scope:global align:4
+fbdemo_wipe1_init = .text:0x00030C58; // type:function size:0x34 scope:global align:4
+fbdemo_wipe1_move = .text:0x00030C8C; // type:function size:0x94 scope:global align:4
+fbdemo_wipe1_draw = .text:0x00030D20; // type:function size:0x21C scope:global align:4
+fbdemo_wipe1_startup = .text:0x00030F3C; // type:function size:0xD4 scope:global align:4
+fbdemo_wipe1_settype = .text:0x00031010; // type:function size:0x30 scope:global align:4
+fbdemo_wipe1_setcolor_rgba8888 = .text:0x00031040; // type:function size:0x8 scope:global align:4
+fbdemo_wipe1_is_finish = .text:0x00031048; // type:function size:0x8 scope:global align:4
+fbdemo_fade_init = .text:0x00031050; // type:function size:0x34 scope:global align:4
+fbdemo_fade_move = .text:0x00031084; // type:function size:0xF4 scope:global align:4
+fbdemo_fade_draw = .text:0x00031178; // type:function size:0x84 scope:global align:4
+fbdemo_fade_startup = .text:0x000311FC; // type:function size:0x4C scope:global align:4
+fbdemo_fade_settype = .text:0x00031248; // type:function size:0x8 scope:global align:4
+fbdemo_fade_setcolor_rgba8888 = .text:0x00031250; // type:function size:0x8 scope:global align:4
+fbdemo_fade_is_finish = .text:0x00031258; // type:function size:0x8 scope:global align:4
+mFAs_ClearGoodField_common = .text:0x00031260; // type:function size:0x3C scope:global align:4
+mFAs_ClearGoodField = .text:0x0003129C; // type:function size:0x30 scope:global align:4
+mFAs_CheckGoodField = .text:0x000312CC; // type:function size:0x24 scope:global align:4
+mFAs_SetGoodField = .text:0x000312F0; // type:function size:0xF8 scope:global align:4
+mFAs_GetIdx = .text:0x000313E8; // type:function size:0x40 scope:global align:4
+mFAs_CheckDust = .text:0x00031428; // type:function size:0x2C scope:global align:4
+mFAs_GetBlockTreeNum2 = .text:0x00031454; // type:function size:0x2A4 scope:global align:4
+mFAs_CheckDustOver = .text:0x000316F8; // type:function size:0x8 scope:global align:4
+mFAs_CheckTreeLess = .text:0x00031700; // type:function size:0x1C scope:global align:4
+mFAs_CheckTreeOver = .text:0x0003171C; // type:function size:0x20 scope:global align:4
+mFAs_CheckGrassOver = .text:0x0003173C; // type:function size:0x18 scope:global align:4
+mFAs_CheckNoCase = .text:0x00031754; // type:function size:0x8 scope:global align:4
+mFAs_CheckCondition = .text:0x0003175C; // type:function size:0x88 scope:global align:4
+mFAs_CheckBlockNum = .text:0x000317E4; // type:function size:0x5C scope:global align:4
+mFAs_GetFieldGoodBlockNum_common = .text:0x00031840; // type:function size:0x31C scope:global align:4
+mFAs_GetFieldGoodBlockNum = .text:0x00031B5C; // type:function size:0x3C scope:global align:4
+mFAs_GetFieldRankbyFGoodBlock = .text:0x00031B98; // type:function size:0x30 scope:global align:4
+mFAs_GetDustNum = .text:0x00031BC8; // type:function size:0x1C8 scope:global align:4
+mFAs_GetFieldRank_Condition = .text:0x00031D90; // type:function size:0x108 scope:global align:4
+mFAs_SetFieldRank = .text:0x00031E98; // type:function size:0x98 scope:global align:4
+mFAs_GetFieldRank = .text:0x00031F30; // type:function size:0x10 scope:global align:4
+mFAs_PrintFieldAssessment = .text:0x00031F40; // type:function size:0xDC scope:global align:4
+mFM_SortBGData = .text:0x0003201C; // type:function size:0x48 scope:global align:4
+mFM_SortFGData = .text:0x00032064; // type:function size:0x50 scope:global align:4
+mFM_BgUtDataSet = .text:0x000320B4; // type:function size:0x40 scope:global align:4
+mFM_FgUtDataSet = .text:0x000320F4; // type:function size:0x30 scope:global align:4
+mFM_SetFgUtPtoSaveData = .text:0x00032124; // type:function size:0x12C scope:global align:4
+mFM_SetFgUtPtoHomeInfo = .text:0x00032250; // type:function size:0x5C scope:global align:4
+mFM_SetFgUtPtoCottageInfo = .text:0x000322AC; // type:function size:0x48 scope:global align:4
+mFM_ChangeFGName = .text:0x000322F4; // type:function size:0xF4 scope:global align:4
+mFM_ChangeBGName = .text:0x000323E8; // type:function size:0x78 scope:global align:4
+mFM_SetSoundSource = .text:0x00032460; // type:function size:0xF0 scope:global align:4
+mFM_SetBG = .text:0x00032550; // type:function size:0xC4 scope:global align:4
+mFM_SetFG = .text:0x00032614; // type:function size:0x144 scope:global align:4
+mFM_SetFG2 = .text:0x00032758; // type:function size:0x100 scope:global align:4
+mFM_BlockDataSet = .text:0x00032858; // type:function size:0x144 scope:global align:4
+mFM_KeepPolicePos = .text:0x0003299C; // type:function size:0x18 scope:global align:4
+mFM_GetPolicePos = .text:0x000329B4; // type:function size:0x28 scope:global align:4
+mFM_SetMoveActorInfo = .text:0x000329DC; // type:function size:0x1B0 scope:global align:4
+mFM_SetCombiTable = .text:0x00032B8C; // type:function size:0x64 scope:global align:4
+mFM_SetBlockInfo = .text:0x00032BF0; // type:function size:0x194 scope:global align:4
+mFM_set_pal_p = .text:0x00032D84; // type:function size:0x98 scope:global align:4
+mFM_SetFGPal = .text:0x00032E1C; // type:function size:0x13C scope:global align:4
+mFM_SetFieldPal = .text:0x00032F58; // type:function size:0xEC scope:global align:4
+mFM_SetFgDepositP = .text:0x00033044; // type:function size:0x194 scope:global align:4
+mFM_MakeField = .text:0x000331D8; // type:function size:0x41C scope:global align:4
+mFM_LoadBGCommonMonthlyPal = .text:0x000335F4; // type:function size:0xBC scope:global align:4
+mFM_DecideBgTexIdx = .text:0x000336B0; // type:function size:0x48 scope:global align:4
+mFM_LoadBGCommonTex = .text:0x000336F8; // type:function size:0x12C scope:global align:4
+set_field_type = .text:0x00033824; // type:function size:0xC0 scope:global align:4
+mFM_PoorTreeBlock = .text:0x000338E4; // type:function size:0x54 scope:global align:4
+mFM_PoorTree = .text:0x00033938; // type:function size:0xA8 scope:global align:4
+mFM_PoorTreeUnderPlayerBlock = .text:0x000339E0; // type:function size:0x98 scope:global align:4
+mFM_SetFruit_title_demo = .text:0x00033A78; // type:function size:0x44 scope:global align:4
+mFM_SetFieldInitData = .text:0x00033ABC; // type:function size:0x14 scope:global align:4
+mFM_FieldInit = .text:0x00033AD0; // type:function size:0x2F8 scope:global align:4
+mFM_Field_dt = .text:0x00033DC8; // type:function size:0x138 scope:global align:4
+mFM_SetBlockKind = .text:0x00033F00; // type:function size:0x80 scope:global align:4
+mFM_SetBlockKindLoadCombi = .text:0x00033F80; // type:function size:0x54 scope:global align:4
+mFM_SetIslandFg = .text:0x00033FD4; // type:function size:0xBC scope:global align:4
+mFM_InitFgCombiSaveData = .text:0x00034090; // type:function size:0x240 scope:global align:4
+mFM_AddIdx = .text:0x000342D0; // type:function size:0x2C scope:global align:4
+mFM_GetNextReseve = .text:0x000342FC; // type:function size:0x30 scope:global align:4
+mFM_RenewalReserveBlock = .text:0x0003432C; // type:function size:0xD4 scope:global align:4
+mFM_RenewalReserve = .text:0x00034400; // type:function size:0xAC scope:global align:4
+mFM_GetReseveName = .text:0x000344AC; // type:function size:0x26C scope:global align:4
+mFM_toSummer = .text:0x00034718; // type:function size:0x60 scope:global align:4
+mFM_returnSeason = .text:0x00034778; // type:function size:0x5C scope:global align:4
+mFM_RestoreIslandBG = .text:0x000347D4; // type:function size:0x13C scope:global align:4
+mFM_SetIslandNpcRoomData = .text:0x00034910; // type:function size:0x1B0 scope:global align:4
+mFI_ClearFieldData = .text:0x00034AC0; // type:function size:0x10 scope:global align:4
+mFI_CheckFieldData = .text:0x00034AD0; // type:function size:0x1C scope:global align:4
+mFI_GetBlockTopP = .text:0x00034AEC; // type:function size:0x20 scope:global align:4
+mFI_GetFieldId = .text:0x00034B0C; // type:function size:0x48 scope:global align:4
+mFI_CheckShopFieldName = .text:0x00034B54; // type:function size:0x38 scope:global align:4
+mFI_CheckShop = .text:0x00034B8C; // type:function size:0x44 scope:global align:4
+mFI_GetBlockXMax = .text:0x00034BD0; // type:function size:0x48 scope:global align:4
+mFI_GetBlockZMax = .text:0x00034C18; // type:function size:0x48 scope:global align:4
+mFI_GetBlockWidth = .text:0x00034C60; // type:function size:0x1CC scope:global align:4
+mFI_GetBlockHeight = .text:0x00034E2C; // type:function size:0x1CC scope:global align:4
+mFI_GetBlockNum = .text:0x00034FF8; // type:function size:0x44 scope:global align:4
+mFI_GetUtNum = .text:0x0003503C; // type:function size:0xC scope:global align:4
+mFI_BlockCheck = .text:0x00035048; // type:function size:0x9C scope:global align:4
+mFI_UtNumCheck = .text:0x000350E4; // type:function size:0x38 scope:global align:4
+mFI_WposCheck = .text:0x0003511C; // type:function size:0x44 scope:global align:4
+mFI_WposX2UtNumX = .text:0x00035160; // type:function size:0x24 scope:global align:4
+mFI_WposZ2UtNumZ = .text:0x00035184; // type:function size:0x24 scope:global align:4
+mFI_Wpos2UtNum = .text:0x000351A8; // type:function size:0x114 scope:global align:4
+mFI_UtNum2CenterWpos = .text:0x000352BC; // type:function size:0xC0 scope:global align:4
+mFI_Wpos2UtCenterWpos = .text:0x0003537C; // type:function size:0xD0 scope:global align:4
+mFI_Wpos2UtNum_inBlock = .text:0x0003544C; // type:function size:0x154 scope:global align:4
+mFI_Wpos2BlockNum = .text:0x000355A0; // type:function size:0x60 scope:global align:4
+mFI_Wpos2BkandUtNuminBlock = .text:0x00035600; // type:function size:0xB0 scope:global align:4
+mFI_UtNum2BlockNum = .text:0x000356B0; // type:function size:0x58 scope:global align:4
+mFI_GetUtNumInBK = .text:0x00035708; // type:function size:0x84 scope:global align:4
+mFI_WpostoLposInBK = .text:0x0003578C; // type:function size:0xC8 scope:global align:4
+mFI_LposInBKtoWpos = .text:0x00035854; // type:function size:0x84 scope:global align:4
+mFI_ScrollCheck = .text:0x000358D8; // type:function size:0xE0 scope:global align:4
+mFI_BkNum2WposXZ = .text:0x000359B8; // type:function size:0x9C scope:global align:4
+mFI_UtNum2PosXZInBk = .text:0x00035A54; // type:function size:0x50 scope:global align:4
+mFI_BkandUtNum2Wpos = .text:0x00035AA4; // type:function size:0x90 scope:global align:4
+mFI_BkandUtNum2CenterWpos = .text:0x00035B34; // type:function size:0x4C scope:global align:4
+mFI_BGDisplayListTop = .text:0x00035B80; // type:function size:0x14 scope:global align:4
+mFI_GetFieldPal = .text:0x00035B94; // type:function size:0x14 scope:global align:4
+mFI_GetPlayerHouseFloorNo = .text:0x00035BA8; // type:function size:0x64 scope:global align:4
+mFI_GetNowPlayerHouseFloorNo = .text:0x00035C0C; // type:function size:0x2C scope:global align:4
+mFI_ClearRegisterBgInfo = .text:0x00035C38; // type:function size:0x1C scope:global align:4
+mFI_ClearRegisterBgInfoIdx = .text:0x00035C54; // type:function size:0x30 scope:global align:4
+mFI_InitRegisterBgInfo = .text:0x00035C84; // type:function size:0x54 scope:global align:4
+mFI_CheckFreeRegisterBgInfo = .text:0x00035CD8; // type:function size:0x18 scope:global align:4
+mFI_GetFreeRegisterBgInfo = .text:0x00035CF0; // type:function size:0x6C scope:global align:4
+mFI_SetRegisterBgInfo = .text:0x00035D5C; // type:function size:0x28 scope:global align:4
+mFI_CheckFinishBgDma = .text:0x00035D84; // type:function size:0x34 scope:global align:4
+mFI_DmaBg_sub = .text:0x00035DB8; // type:function size:0x24 scope:global align:4
+mFI_DmaBg = .text:0x00035DDC; // type:function size:0x88 scope:global align:4
+mFI_CheckBgDma = .text:0x00035E64; // type:function size:0x88 scope:global align:4
+mFI_UtNum2BaseHeight = .text:0x00035EEC; // type:function size:0x98 scope:global align:4
+mFI_BkNum2BaseHeight = .text:0x00035F84; // type:function size:0xA0 scope:global align:4
+mFI_BkNum2BlockType = .text:0x00036024; // type:function size:0x80 scope:global align:4
+mFI_GetPuleTypeIdx = .text:0x000360A4; // type:function size:0x44 scope:global align:4
+mFI_GetPuleIdx = .text:0x000360E8; // type:function size:0x40 scope:global align:4
+mFI_BkNum2BlockKind = .text:0x00036128; // type:function size:0x84 scope:global align:4
+mFI_CheckBlockKind = .text:0x000361AC; // type:function size:0x4C scope:global align:4
+mFI_CheckBlockKind_OR = .text:0x000361F8; // type:function size:0x48 scope:global align:4
+mFI_BlockKind2BkNum = .text:0x00036240; // type:function size:0x74 scope:global align:4
+mFI_GetSpecialBlockNum = .text:0x000362B4; // type:function size:0x64 scope:global align:4
+mFI_GetIslandBlockNumX = .text:0x00036318; // type:function size:0x94 scope:global align:4
+mFI_GetBkNum2ColTop = .text:0x000363AC; // type:function size:0x84 scope:global align:4
+mFI_UtNum2UtCol = .text:0x00036430; // type:function size:0xE4 scope:global align:4
+mFI_ClearColKeep = .text:0x00036514; // type:function size:0x38 scope:global align:4
+mFI_GetUnitCol = .text:0x0003654C; // type:function size:0x64 scope:global align:4
+mFI_UtNum2UtKeepH = .text:0x000365B0; // type:function size:0xD8 scope:global align:4
+mFI_GetSoundSourcePBlockNum = .text:0x00036688; // type:function size:0x70 scope:global align:4
+mFI_GetBGDisplayListRom = .text:0x000366F8; // type:function size:0x74 scope:global align:4
+mFI_GetBGDisplayListRom_XLU = .text:0x0003676C; // type:function size:0x74 scope:global align:4
+mFI_GetBGTexAnimInfo = .text:0x000367E0; // type:function size:0x90 scope:global align:4
+mFI_BGDispMatch = .text:0x00036870; // type:function size:0x68 scope:global align:4
+mFI_SearchNullDisp = .text:0x000368D8; // type:function size:0x64 scope:global align:4
+mFI_BGDispMake = .text:0x0003693C; // type:function size:0xFC scope:global align:4
+mFI_InitAreaInfo = .text:0x00036A38; // type:function size:0x40 scope:global align:4
+mFI_WhereisInBlock = .text:0x00036A78; // type:function size:0x114 scope:global align:4
+mFI_BGDisplayListRefresh = .text:0x00036B8C; // type:function size:0x318 scope:global align:4
+mFI_SetPlayerBlockKind = .text:0x00036EA4; // type:function size:0x74 scope:global align:4
+mFI_CheckInIsland = .text:0x00036F18; // type:function size:0x38 scope:global align:4
+mFI_CheckInJustIslandOutdoor = .text:0x00036F50; // type:function size:0x34 scope:global align:4
+mFI_CheckPlayerBlockInfo = .text:0x00036F84; // type:function size:0x10 scope:global align:4
+mFI_BkNumtoUtFGTop = .text:0x00036F94; // type:function size:0x84 scope:global align:4
+mFI_BkNum2UtFGTop_layer = .text:0x00037018; // type:function size:0xA8 scope:global align:4
+mFI_UtNum2UtFG = .text:0x000370C0; // type:function size:0xEC scope:global align:4
+mFI_UtNum2UtFG2 = .text:0x000371AC; // type:function size:0xC4 scope:global align:4
+mFI_GetUnitFG = .text:0x00037270; // type:function size:0x60 scope:global align:4
+mFI_GetUnitFG2 = .text:0x000372D0; // type:function size:0x60 scope:global align:4
+mFI_GetBlockUtNum2FG = .text:0x00037330; // type:function size:0xD0 scope:global align:4
+mFI_BlockUtNumtoFGSet = .text:0x00037400; // type:function size:0x8C scope:global align:4
+mFI_UtNumtoFGSet_common = .text:0x0003748C; // type:function size:0x114 scope:global align:4
+mFI_UtNum2FGSet_layer = .text:0x000375A0; // type:function size:0xD0 scope:global align:4
+mFI_SetFG_common = .text:0x00037670; // type:function size:0x80 scope:global align:4
+mFI_SetFG2 = .text:0x000376F0; // type:function size:0x80 scope:global align:4
+mFI_InitItemTable = .text:0x00037770; // type:function size:0x38 scope:global align:4
+mFI_SetOldItemTableIdx = .text:0x000377A8; // type:function size:0x1C scope:global align:4
+mFI_GetOldItemTableIdx = .text:0x000377C4; // type:function size:0x1C scope:global align:4
+mFI_MakeOldItemTableIdxTable = .text:0x000377E0; // type:function size:0xDC scope:global align:4
+mFI_SetBlockTable = .text:0x000378BC; // type:function size:0xA0 scope:global align:4
+mFI_GetItemTable_NoReset = .text:0x0003795C; // type:function size:0x27C scope:global align:4
+mFI_GetItemTable = .text:0x00037BD8; // type:function size:0x58 scope:global align:4
+mFI_FGisUpDate = .text:0x00037C30; // type:function size:0x44 scope:global align:4
+mFI_SetFGUpData = .text:0x00037C74; // type:function size:0x3C scope:global align:4
+mFI_BornItemON = .text:0x00037CB0; // type:function size:0x3C scope:global align:4
+mFI_ItemisBorn = .text:0x00037CEC; // type:function size:0x18 scope:global align:4
+mFI_ActorisBorn = .text:0x00037D04; // type:function size:0x18 scope:global align:4
+mFI_SetBearActor = .text:0x00037D1C; // type:function size:0xAC scope:global align:4
+mFI_search_unit_around = .text:0x00037DC8; // type:function size:0xD0 scope:global align:4
+mFI_GetItemNumOnBlock = .text:0x00037E98; // type:function size:0x78 scope:global align:4
+mFI_GetItemNumOnBlockInField = .text:0x00037F10; // type:function size:0x90 scope:global align:4
+mFI_GetItemNumField_BCT = .text:0x00037FA0; // type:function size:0x70 scope:global align:4
+mFI_GetItemNumField = .text:0x00038010; // type:function size:0x98 scope:global align:4
+mFI_GetItemNumInBlock = .text:0x000380A8; // type:function size:0x38 scope:global align:4
+mFI_SearchFGInBlock = .text:0x000380E0; // type:function size:0x94 scope:global align:4
+mFI_CheckFGExist = .text:0x00038174; // type:function size:0xD4 scope:global align:4
+mFI_GetHaniwaStepBlock = .text:0x00038248; // type:function size:0x70 scope:global align:4
+mFI_GetMoveActorBitData = .text:0x000382B8; // type:function size:0x70 scope:global align:4
+mFI_MakeMoveActorBitData = .text:0x00038328; // type:function size:0x84 scope:global align:4
+mFI_SetMoveActorBitData = .text:0x000383AC; // type:function size:0x6C scope:global align:4
+mFI_SetMoveActorBitData_ON = .text:0x00038418; // type:function size:0x9C scope:global align:4
+mFI_SetMoveActorBitData_OFF = .text:0x000384B4; // type:function size:0x9C scope:global align:4
+mFI_MyMoveActorBitData_ON = .text:0x00038550; // type:function size:0x3C scope:global align:4
+mFI_GetMoveActorListIdx = .text:0x0003858C; // type:function size:0x40 scope:global align:4
+mFI_RegistMoveActorList = .text:0x000385CC; // type:function size:0xC4 scope:global align:4
+mFI_UnregistMoveActorList = .text:0x00038690; // type:function size:0xA4 scope:global align:4
+mFI_AddMoveActorList = .text:0x00038734; // type:function size:0x90 scope:global align:4
+mFI_MoveActorListDma = .text:0x000387C4; // type:function size:0x88 scope:global align:4
+mFI_InitMoveActorBitData = .text:0x0003884C; // type:function size:0x84 scope:global align:4
+mFI_SetPlayerWade = .text:0x000388D0; // type:function size:0xAC scope:global align:4
+mFI_CheckPlayerWade = .text:0x0003897C; // type:function size:0x20 scope:global align:4
+mFI_GetPlayerWade = .text:0x0003899C; // type:function size:0x10 scope:global align:4
+mFI_GetNextBlockNum = .text:0x000389AC; // type:function size:0xC4 scope:global align:4
+mFI_GetDepositP = .text:0x00038A70; // type:function size:0xE4 scope:global align:4
+mFI_ClearDeposit = .text:0x00038B54; // type:function size:0x40 scope:global align:4
+mFI_LineDepositON = .text:0x00038B94; // type:function size:0x1C scope:global align:4
+mFI_LineDepositOFF = .text:0x00038BB0; // type:function size:0x1C scope:global align:4
+mFI_GetLineDeposit = .text:0x00038BCC; // type:function size:0x10 scope:global align:4
+mFI_SetDeposit = .text:0x00038BDC; // type:function size:0x70 scope:global align:4
+mFI_BlockDepositOFF = .text:0x00038C4C; // type:function size:0x24 scope:global align:4
+mFI_GetBlockDeposit = .text:0x00038C70; // type:function size:0x24 scope:global align:4
+mFI_BkUtNum2SetDeposit = .text:0x00038C94; // type:function size:0x60 scope:global align:4
+mFI_BkUtNum2DepositOFF = .text:0x00038CF4; // type:function size:0x24 scope:global align:4
+mFI_UtNum2SetDeposit = .text:0x00038D18; // type:function size:0x94 scope:global align:4
+mFI_UtNum2DepositON = .text:0x00038DAC; // type:function size:0x24 scope:global align:4
+mFI_UtNum2DepositOFF = .text:0x00038DD0; // type:function size:0x24 scope:global align:4
+mFI_UtNum2DepositGet = .text:0x00038DF4; // type:function size:0x24 scope:global align:4
+mFI_Wpos2DepositON = .text:0x00038E18; // type:function size:0x50 scope:global align:4
+mFI_Wpos2DepositOFF = .text:0x00038E68; // type:function size:0x50 scope:global align:4
+mFI_Wpos2DepositGet = .text:0x00038EB8; // type:function size:0x50 scope:global align:4
+mFI_CheckItemNoHole = .text:0x00038F08; // type:function size:0x30 scope:global align:4
+mFI_CheckNothing = .text:0x00038F38; // type:function size:0x8 scope:global align:4
+mFI_CheckDigHole = .text:0x00038F40; // type:function size:0x74 scope:global align:4
+mFI_CheckDigHoleFillin = .text:0x00038FB4; // type:function size:0x74 scope:global align:4
+mFI_CheckDigNoItem = .text:0x00039028; // type:function size:0x18 scope:global align:4
+mFI_CheckDigRemoveItem = .text:0x00039040; // type:function size:0xF8 scope:global align:4
+mFI_CheckDigGetItem = .text:0x00039138; // type:function size:0xB0 scope:global align:4
+mFI_CheckDigDiffPosArea = .text:0x000391E8; // type:function size:0x58 scope:global align:4
+mFI_GetDigStatus = .text:0x00039240; // type:function size:0x1D8 scope:global align:4
+mFI_ClearHoleBlock_sub = .text:0x00039418; // type:function size:0x48 scope:global align:4
+mFI_ClearHoleBlock = .text:0x00039460; // type:function size:0x24 scope:global align:4
+mFI_ClearBeecomb = .text:0x00039484; // type:function size:0x4C scope:global align:4
+mFI_SetFGStructureKeep = .text:0x000394D0; // type:function size:0x48 scope:global align:4
+mFI_SetStructure11 = .text:0x00039518; // type:function size:0x98 scope:global align:4
+mFI_SetStructure21 = .text:0x000395B0; // type:function size:0xCC scope:global align:4
+mFI_SetStructure22 = .text:0x0003967C; // type:function size:0xE0 scope:global align:4
+mFI_SetStructure23 = .text:0x0003975C; // type:function size:0xE0 scope:global align:4
+mFI_SetStructure32 = .text:0x0003983C; // type:function size:0xE0 scope:global align:4
+mFI_SetStructure33 = .text:0x0003991C; // type:function size:0xE0 scope:global align:4
+mFI_SetStructure33_main_back = .text:0x000399FC; // type:function size:0xE0 scope:global align:4
+mFI_SetFGStructure_common = .text:0x00039ADC; // type:function size:0x188 scope:global align:4
+mFI_CheckStructureArea = .text:0x00039C64; // type:function size:0xC4 scope:global align:4
+mFI_GetOtherFruit = .text:0x00039D28; // type:function size:0x60 scope:global align:4
+mFI_CheckFGNpcOn = .text:0x00039D88; // type:function size:0xDC scope:global align:4
+mFI_CheckLapPolice = .text:0x00039E64; // type:function size:0xA4 scope:global align:4
+mFI_GetWaveUtinBlock = .text:0x00039F08; // type:function size:0x118 scope:global align:4
+mFI_ClearBlockItemRandom_common = .text:0x0003A020; // type:function size:0x278 scope:global align:4
+mFI_SetFirstSetShell = .text:0x0003A298; // type:function size:0x10 scope:global align:4
+mFI_CheckSetShell = .text:0x0003A2A8; // type:function size:0x30 scope:global align:4
+mFI_GetCanSetShellNum = .text:0x0003A2D8; // type:function size:0x120 scope:global align:4
+mFI_ResearchShell = .text:0x0003A3F8; // type:function size:0x130 scope:global align:4
+mFI_DivideShellSameSum = .text:0x0003A528; // type:function size:0xA0 scope:global align:4
+mFI_DivideShellRandom = .text:0x0003A5C8; // type:function size:0x110 scope:global align:4
+mFI_DivideShell = .text:0x0003A6D8; // type:function size:0x64 scope:global align:4
+mFI_GetShell = .text:0x0003A73C; // type:function size:0xA4 scope:global align:4
+mFI_SetShellBlock = .text:0x0003A7E0; // type:function size:0x124 scope:global align:4
+mFI_SetShellSandyBeachBlock = .text:0x0003A904; // type:function size:0xB4 scope:global align:4
+mFI_SetShellWave = .text:0x0003A9B8; // type:function size:0xE0 scope:global align:4
+mFI_SetShell = .text:0x0003AA98; // type:function size:0xE0 scope:global align:4
+mFI_FieldMove = .text:0x0003AB78; // type:function size:0x124 scope:global align:4
+mFI_PrintNowBGNum = .text:0x0003AC9C; // type:function size:0x6C scope:global align:4
+mFI_PrintFgAttr = .text:0x0003AD08; // type:function size:0x150 scope:global align:4
+mFI_SetOyasiroPos = .text:0x0003AE58; // type:function size:0xEC scope:global align:4
+mFI_CheckBlockSetTreasure = .text:0x0003AF44; // type:function size:0x38 scope:global align:4
+mFI_SetTreasure = .text:0x0003AF7C; // type:function size:0x1EC scope:global align:4
+mFI_GetClimate = .text:0x0003B168; // type:function size:0x2C scope:global align:4
+mFI_SetClimate = .text:0x0003B194; // type:function size:0x48 scope:global align:4
+mFI_CheckBeforeScenePerpetual = .text:0x0003B1DC; // type:function size:0x38 scope:global align:4
+mFI_ChangeClimate_ForEventNotice = .text:0x0003B214; // type:function size:0x7C scope:global align:4
+mFI_PullTanukiPathTrees = .text:0x0003B290; // type:function size:0x160 scope:global align:4
+mFR_delete_record = .text:0x0003B3F0; // type:function size:0x28 scope:global align:4
+mFR_delete_after_record = .text:0x0003B418; // type:function size:0x88 scope:global align:4
+mFR_delete_npc_record = .text:0x0003B4A0; // type:function size:0xAC scope:global align:4
+mFR_get_record = .text:0x0003B54C; // type:function size:0x8C scope:global align:4
+mFR_get_free_record = .text:0x0003B5D8; // type:function size:0x3C scope:global align:4
+mFR_recycle_record = .text:0x0003B614; // type:function size:0x94 scope:global align:4
+mFR_new_record = .text:0x0003B6A8; // type:function size:0x48 scope:global align:4
+mEv_fishRecord_set = .text:0x0003B6F0; // type:function size:0x98 scope:global align:4
+mFR_fish_rndsize = .text:0x0003B788; // type:function size:0xF0 scope:global align:4
+mFR_make_NpcRecord = .text:0x0003B878; // type:function size:0x80 scope:global align:4
+mEv_fishRecord_local = .text:0x0003B8F8; // type:function size:0x12C scope:global align:4
+mEv_fishRecord_holder1 = .text:0x0003BA24; // type:function size:0xAC scope:global align:4
+mEv_fishRecord_holder2 = .text:0x0003BAD0; // type:function size:0x74 scope:global align:4
+mEv_fishRecord_holder = .text:0x0003BB44; // type:function size:0x84 scope:global align:4
+mEv_fishday_day = .text:0x0003BBC8; // type:function size:0x88 scope:global align:4
+mEv_fishday = .text:0x0003BC50; // type:function size:0x210 scope:global align:4
+mFR_swap_record = .text:0x0003BE60; // type:function size:0x60 scope:global align:4
+mFR_sort_record = .text:0x0003BEC0; // type:function size:0xC4 scope:global align:4
+mFR_Fishmail_send_post = .text:0x0003BF84; // type:function size:0x88 scope:global align:4
+mFR_Fishmail_send_postoffice = .text:0x0003C00C; // type:function size:0x4C scope:global align:4
+mFR_GetFishPresentMail = .text:0x0003C058; // type:function size:0xD0 scope:global align:4
+mFR_Fishmail_send = .text:0x0003C128; // type:function size:0xF8 scope:global align:4
+mFR_fishRecord_last_holder = .text:0x0003C220; // type:function size:0xB0 scope:global align:4
+mFR_fishmail = .text:0x0003C2D0; // type:function size:0x50 scope:global align:4
+mFRm_set_msg_idx = .text:0x0003C320; // type:function size:0xC scope:global align:4
+mFRm_get_msg_idx = .text:0x0003C32C; // type:function size:0x10 scope:global align:4
+mFRm_ReturnCheckSum = .text:0x0003C33C; // type:function size:0x30 scope:global align:4
+mFRm_GetFlatCheckSum = .text:0x0003C36C; // type:function size:0x44 scope:global align:4
+mFRm_CheckSaveData_ID = .text:0x0003C3B0; // type:function size:0x1C scope:global align:4
+mFRm_CheckSaveData_common = .text:0x0003C3CC; // type:function size:0x68 scope:global align:4
+mFRm_CheckSaveData = .text:0x0003C434; // type:function size:0x30 scope:global align:4
+mFRm_ClearSaveCheckData = .text:0x0003C464; // type:function size:0x58 scope:global align:4
+mFRm_SetSaveCheckData = .text:0x0003C4BC; // type:function size:0x50 scope:global align:4
+mFRm_PrintSavedDebug = .text:0x0003C50C; // type:function size:0x78 scope:global align:4
+mFRm_clear_err_info = .text:0x0003C584; // type:function size:0x50 scope:global align:4
+mFRm_get_free_errInfo = .text:0x0003C5D4; // type:function size:0x34 scope:global align:4
+mFRm_set_errInfo = .text:0x0003C608; // type:function size:0x4C scope:global align:4
+mFRm_get_errInfoNum = .text:0x0003C654; // type:function size:0x30 scope:global align:4
+mFRm_save_data_check = .text:0x0003C684; // type:function size:0xB0 scope:global align:4
+mFRm_display_errInfo = .text:0x0003C734; // type:function size:0x11C scope:global align:4
+sChk_block_num_sub = .text:0x0003C850; // type:function size:0xB4 scope:global align:4
+sChk_ut_num_sub = .text:0x0003C904; // type:function size:0x90 scope:global align:4
+sChk_ItemFG_sub = .text:0x0003C994; // type:function size:0x60 scope:global align:4
+sChk_cloth_sub = .text:0x0003C9F4; // type:function size:0x78 scope:global align:4
+sChk_fruit_sub = .text:0x0003CA6C; // type:function size:0x54 scope:global align:4
+sChk_OSRTCTime_sub = .text:0x0003CAC0; // type:function size:0x138 scope:global align:4
+sChk_lbRTC_ymd_c_sub = .text:0x0003CBF8; // type:function size:0xE8 scope:global align:4
+sChk_Mail_nm_c_sub = .text:0x0003CCE0; // type:function size:0x54 scope:global align:4
+sChk_Mail_hdr_c_sub = .text:0x0003CD34; // type:function size:0x54 scope:global align:4
+sChk_font_sub = .text:0x0003CD88; // type:function size:0x60 scope:global align:4
+sChk_header_back_start_sub = .text:0x0003CDE8; // type:function size:0x4C scope:global align:4
+sChk_paper_type_sub = .text:0x0003CE34; // type:function size:0x4C scope:global align:4
+sChk_Mail_ct_c_sub = .text:0x0003CE80; // type:function size:0x80 scope:global align:4
+sChk_Mail_c_sub = .text:0x0003CF00; // type:function size:0x60 scope:global align:4
+sChk_mHm_rmsz_c_sub = .text:0x0003CF60; // type:function size:0xA8 scope:global align:4
+sChk_Haniwa_Item_c_sub = .text:0x0003D008; // type:function size:0x5C scope:global align:4
+sChk_Haniwa_c_sub = .text:0x0003D064; // type:function size:0x64 scope:global align:4
+sChk_outlook_pal_sub = .text:0x0003D0C8; // type:function size:0x4C scope:global align:4
+sChk_mHm_goki_c_sub = .text:0x0003D114; // type:function size:0x20 scope:global align:4
+sChk_mHm_hs_c_sub = .text:0x0003D134; // type:function size:0xC4 scope:global align:4
+sChk_AnmPersonalID_c_sub = .text:0x0003D1F8; // type:function size:0x90 scope:global align:4
+sChk_Anmplmail_c_sub = .text:0x0003D288; // type:function size:0x6C scope:global align:4
+sChk_Anmmem_c_sub = .text:0x0003D2F4; // type:function size:0x54 scope:global align:4
+sChk_Anmhome_c_sub = .text:0x0003D348; // type:function size:0x84 scope:global align:4
+sChk_Animal_c_sub = .text:0x0003D3CC; // type:function size:0xF0 scope:global align:4
+sChk_Kabu_price_c_sub = .text:0x0003D4BC; // type:function size:0xBC scope:global align:4
+sChk_PostOffice_c_sub = .text:0x0003D578; // type:function size:0x178 scope:global align:4
+sChk_PoliceBox_c_sub = .text:0x0003D6F0; // type:function size:0x5C scope:global align:4
+sChk_Config_c_sub = .text:0x0003D74C; // type:function size:0xB0 scope:global align:4
+sChk_mMsr_time_c_sub = .text:0x0003D7FC; // type:function size:0xE4 scope:global align:4
+sChk_MaskCat_c_sub = .text:0x0003D8E0; // type:function size:0xE8 scope:global align:4
+sChk_check_save_data = .text:0x0003D9C8; // type:function size:0x1B8 scope:global align:4
+sChk_check_save_gen = .text:0x0003DB80; // type:function size:0x8 scope:global align:4
+sSC_CheckSaveData_Weather = .text:0x0003DB88; // type:function size:0x90 scope:global align:4
+sSC_CheckSaveData_Shop = .text:0x0003DC18; // type:function size:0x100 scope:global align:4
+sSC_CheckHouseSize = .text:0x0003DD18; // type:function size:0x14 scope:global align:4
+sSC_CheckHappyRoom = .text:0x0003DD2C; // type:function size:0x8 scope:global align:4
+sSC_CheckDoorOriginal = .text:0x0003DD34; // type:function size:0x24 scope:global align:4
+sSCCheckOneFloorData = .text:0x0003DD58; // type:function size:0x8 scope:global align:4
+sSC_CheckHouseInterior = .text:0x0003DD60; // type:function size:0x68 scope:global align:4
+sSC_CheckSaveData_House = .text:0x0003DDC8; // type:function size:0x12C scope:global align:4
+sSC_CheckSaveData_Cattage = .text:0x0003DEF4; // type:function size:0x9C scope:global align:4
+sSC_CheckMuseumBitData = .text:0x0003DF90; // type:function size:0x7C scope:global align:4
+sSC_CheckSaveData_MuseumDisplay = .text:0x0003E00C; // type:function size:0x130 scope:global align:4
+sSC_CheckOneOriginalData = .text:0x0003E13C; // type:function size:0x50 scope:global align:4
+sSC_CheckSaveData_Needlework = .text:0x0003E18C; // type:function size:0x100 scope:global align:4
+sSC_BlockInfo2Count = .text:0x0003E28C; // type:function size:0xC8 scope:global align:4
+sSC_CheckSaveData_Map = .text:0x0003E354; // type:function size:0x84 scope:global align:4
+sChk_CheckSaveData_MYK = .text:0x0003E3D8; // type:function size:0x60 scope:global align:4
+sChk_lbRTC_ymd_c_NSW = .text:0x0003E438; // type:function size:0xEC scope:global align:4
+sCck_CheckSaveData_radiocard_NSW = .text:0x0003E524; // type:function size:0x90 scope:global align:4
+sCck_CheckSaveData_calendar_NSW = .text:0x0003E5B4; // type:function size:0xE0 scope:global align:4
+sCck_CheckSaveData_deposit_NSW = .text:0x0003E694; // type:function size:0x60 scope:global align:4
+sCck_CheckSaveData_nw_visitor_NSW = .text:0x0003E6F4; // type:function size:0x6C scope:global align:4
+sCck_CheckSaveData_my_org_no_table_NSW = .text:0x0003E760; // type:function size:0x9C scope:global align:4
+sCck_CheckSaveData_bridge_NSW = .text:0x0003E7FC; // type:function size:0x104 scope:global align:4
+sCck_CheckSaveData_fishRecord_NSW = .text:0x0003E900; // type:function size:0xD0 scope:global align:4
+sCck_CheckSaveData_Anmret_NSW = .text:0x0003E9D0; // type:function size:0xA8 scope:global align:4
+sCck_CheckSaveData_LightHouse_NSW = .text:0x0003EA78; // type:function size:0x60 scope:global align:4
+sChk_CheckSaveData_NSW = .text:0x0003EAD8; // type:function size:0xB8 scope:global align:4
+sChk_board_save_check = .text:0x0003EB90; // type:function size:0xE0 scope:global align:4
+sChk_weather_save_check = .text:0x0003EC70; // type:function size:0x6C scope:global align:4
+sChk_snowman_save_check = .text:0x0003ECDC; // type:function size:0xD8 scope:global align:4
+sChk_check_save_take = .text:0x0003EDB4; // type:function size:0x4C scope:global align:4
+sCck_CheckSaveData_diary_body_YSD = .text:0x0003EE00; // type:function size:0x8 scope:global align:4
+sCCk_Check_ItemName = .text:0x0003EE08; // type:function size:0x9C scope:global align:4
+sCCk_Check_ItemName_Possession = .text:0x0003EEA4; // type:function size:0xB8 scope:global align:4
+sCck_CheckSaveData_Item_YSD = .text:0x0003EF5C; // type:function size:0x58 scope:global align:4
+sCck_CheckSaveData_Mail_YSD = .text:0x0003EFB4; // type:function size:0x64 scope:global align:4
+sChk_CheckSaveData_YSD = .text:0x0003F018; // type:function size:0x80 scope:global align:4
+sChk_CheckSaveData_komatu = .text:0x0003F098; // type:function size:0x14C scope:global align:4
+mFont_ct = .text:0x0003F1E4; // type:function size:0x4 scope:global align:4
+mMsg_CutLeftSpace = .text:0x0003F1E8; // type:function size:0x98 scope:global align:4
+mFont_suji_check = .text:0x0003F280; // type:function size:0x38 scope:global align:4
+mFont_UnintToString = .text:0x0003F2B8; // type:function size:0x1AC scope:global align:4
+mFont_char_save_data_check = .text:0x0003F464; // type:function size:0x24 scope:global align:4
+mFont_small_to_capital = .text:0x0003F488; // type:function size:0x34 scope:global align:4
+mFont_Get_FontOffset = .text:0x0003F4BC; // type:function size:0x14 scope:global align:4
+mFont_Get_FontTex_p = .text:0x0003F4D0; // type:function size:0xC scope:global align:4
+mFont_GetCodeWidth = .text:0x0003F4DC; // type:function size:0x34 scope:global align:4
+mFont_GetStringWidth = .text:0x0003F510; // type:function size:0x68 scope:global align:4
+mFont_GetStringWidth2 = .text:0x0003F578; // type:function size:0x78 scope:global align:4
+mFont_CodeSize_get = .text:0x0003F5F0; // type:function size:0x58 scope:global align:4
+mFont_CodeSize_idx_get = .text:0x0003F648; // type:function size:0x24 scope:global align:4
+mFont_cont_attr_get = .text:0x0003F66C; // type:function size:0x1C scope:global align:4
+mFont_gppSetMode = .text:0x0003F688; // type:function size:0x24 scope:global align:4
+mFont_SetMode = .text:0x0003F6AC; // type:function size:0x64 scope:global align:4
+mFont_gfxSetPrimColor = .text:0x0003F710; // type:function size:0x28 scope:global align:4
+mFont_gppSetPrimColor = .text:0x0003F738; // type:function size:0x40 scope:global align:4
+mFont_SetPrimColor = .text:0x0003F778; // type:function size:0x4C scope:global align:4
+mFont_gfxSetCombineMode = .text:0x0003F7C4; // type:function size:0x64 scope:global align:4
+mFont_gppSetCombineMode = .text:0x0003F828; // type:function size:0x6C scope:global align:4
+mFont_SetCombineMode = .text:0x0003F894; // type:function size:0x54 scope:global align:4
+mFont_gppLoadTexture = .text:0x0003F8E8; // type:function size:0x98 scope:global align:4
+mFont_SetVertex_dol = .text:0x0003F980; // type:function size:0x34 scope:global align:4
+mFont_SetVertexRectangle = .text:0x0003F9B4; // type:function size:0x3B8 scope:global align:4
+mFont_SetLineStrings_AndSpace_new = .text:0x0003FD6C; // type:function size:0x144 scope:global align:4
+mFont_SetLineStrings_AndSpace = .text:0x0003FEB0; // type:function size:0x38 scope:global align:4
+mFont_SetLineStrings = .text:0x0003FEE8; // type:function size:0x38 scope:global align:4
+mFont_CulcOrthoMatrix = .text:0x0003FF20; // type:function size:0x58 scope:global align:4
+mFont_SetMatrix = .text:0x0003FF78; // type:function size:0x100 scope:global align:4
+mFont_UnSetMatrix = .text:0x00040078; // type:function size:0x20 scope:global align:4
+mFont_Main_start = .text:0x00040098; // type:function size:0x24 scope:global align:4
+mFont_gppDrawCharRect = .text:0x000400BC; // type:function size:0xB8 scope:global align:4
+mFont_gppDrawCharPoly = .text:0x00040174; // type:function size:0x254 scope:global align:4
+mFontChar_gppDraw_sentence_restore = .text:0x000403C8; // type:function size:0xA8 scope:global align:4
+mFontChar_total_scale_reset = .text:0x00040470; // type:function size:0x7C scope:global align:4
+mFontChar_ContProc_set_color_char = .text:0x000404EC; // type:function size:0x64 scope:global align:4
+mFontChar_ContProc_set_char_scale = .text:0x00040550; // type:function size:0x6C scope:global align:4
+mFontChar_cont_proc_get = .text:0x000405BC; // type:function size:0x2C scope:global align:4
+mFontChar_set = .text:0x000405E8; // type:function size:0xAC scope:global align:4
+mFontChar_gppDrawRect = .text:0x00040694; // type:function size:0x198 scope:global align:4
+mFontChar_gppDrawPoly = .text:0x0004082C; // type:function size:0x1B4 scope:global align:4
+mFontChar_gppDraw = .text:0x000409E0; // type:function size:0x34 scope:global align:4
+mFontSentence_line_offset_calc = .text:0x00040A14; // type:function size:0x14 scope:global align:4
+mFontSentence_ContProc_set_line_offset = .text:0x00040A28; // type:function size:0x54 scope:global align:4
+mFontSentence_ContProc_set_line_type = .text:0x00040A7C; // type:function size:0x48 scope:global align:4
+mFontSentence_ContProc_set_line_scale = .text:0x00040AC4; // type:function size:0x6C scope:global align:4
+mFontSentence_ContProc_space = .text:0x00040B30; // type:function size:0x50 scope:global align:4
+mFontSentence_cont_proc_get = .text:0x00040B80; // type:function size:0x54 scope:global align:4
+mFontSentence_animal_voice_se = .text:0x00040BD4; // type:function size:0x170 scope:global align:4
+mFontSentence_set = .text:0x00040D44; // type:function size:0x13C scope:global align:4
+mFontSentence_gppDraw_before = .text:0x00040E80; // type:function size:0x90 scope:global align:4
+mFontSentence_gppDraw_main = .text:0x00040F10; // type:function size:0x150 scope:global align:4
+mFontSentence_gppDraw_after = .text:0x00041060; // type:function size:0x4 scope:global align:4
+mFontSentence_gppDraw = .text:0x00041064; // type:function size:0x70 scope:global align:4
+mFont_Get_MarkTex_p = .text:0x000410D4; // type:function size:0x30 scope:global align:4
+mFont_Get_MarkTex_sizeW = .text:0x00041104; // type:function size:0x30 scope:global align:4
+mFont_Get_MarkTex_sizeH = .text:0x00041134; // type:function size:0x30 scope:global align:4
+mFont_SetMarkChar = .text:0x00041164; // type:function size:0x1B0 scope:global align:4
+mFont_gppSetRectMode = .text:0x00041314; // type:function size:0x24 scope:global align:4
+Balloon_init = .text:0x00041338; // type:function size:0x28 scope:global align:4
+Balloon_make_fuusen = .text:0x00041360; // type:function size:0xD0 scope:global align:4
+Balloon_chk_make_fuusen = .text:0x00041430; // type:function size:0x10C scope:global align:4
+Balloon_move = .text:0x0004153C; // type:function size:0xF4 scope:global align:4
+Balloon_kill = .text:0x00041630; // type:function size:0x18 scope:global align:4
+Balloon_look_up = .text:0x00041648; // type:function size:0x18 scope:global align:4
+mHsRm_GetHuusuiRoom = .text:0x00041660; // type:function size:0x60 scope:global align:4
+mHandbill_aram_init = .text:0x000416C0; // type:function size:0x8C scope:global align:4
+mHandbill_clr_force_art = .text:0x0004174C; // type:function size:0x14 scope:global align:4
+mHandbill_clr_capital_flag = .text:0x00041760; // type:function size:0x14 scope:global align:4
+mHandbill_load_init = .text:0x00041774; // type:function size:0x24 scope:global align:4
+mHandbill_Set_free_str = .text:0x00041798; // type:function size:0x98 scope:global align:4
+mHandbill_Set_free_str_art = .text:0x00041830; // type:function size:0x4C scope:global align:4
+mHandbill_CopyString = .text:0x0004187C; // type:function size:0x24 scope:global align:4
+mHandbill_MoveDataCut = .text:0x000418A0; // type:function size:0xE8 scope:global align:4
+mHandbill_Put_String_FREE = .text:0x00041988; // type:function size:0x194 scope:global align:4
+mHandbill_Put_String_FREE0 = .text:0x00041B1C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE1 = .text:0x00041B44; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE2 = .text:0x00041B6C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE3 = .text:0x00041B94; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE4 = .text:0x00041BBC; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE5 = .text:0x00041BE4; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE6 = .text:0x00041C0C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE7 = .text:0x00041C34; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE8 = .text:0x00041C5C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE9 = .text:0x00041C84; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE10 = .text:0x00041CAC; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE11 = .text:0x00041CD4; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE12 = .text:0x00041CFC; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE13 = .text:0x00041D24; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE14 = .text:0x00041D4C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE15 = .text:0x00041D74; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE16 = .text:0x00041D9C; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE17 = .text:0x00041DC4; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE18 = .text:0x00041DEC; // type:function size:0x28 scope:global align:4
+mHandbill_Put_String_FREE19 = .text:0x00041E14; // type:function size:0x28 scope:global align:4
+mHandbill_Cut_Article = .text:0x00041E3C; // type:function size:0x74 scope:global align:4
+mHandbill_Capital_Letter = .text:0x00041EB0; // type:function size:0x74 scope:global align:4
+mHandbill_Put_String = .text:0x00041F24; // type:function size:0x5C scope:global align:4
+mHandbill_Change_ControlCode = .text:0x00041F80; // type:function size:0x88 scope:global align:4
+mHandbill_Change_ControlCode2 = .text:0x00042008; // type:function size:0xA8 scope:global align:4
+mHandbill_Get_SuperStringDataAddressAndSize = .text:0x000420B0; // type:function size:0x48 scope:global align:4
+mHandbill_Get_PsStringDataAddressAndSize = .text:0x000420F8; // type:function size:0x48 scope:global align:4
+mHandbill_Get_MailStringDataAddressAndSize = .text:0x00042140; // type:function size:0x48 scope:global align:4
+mHandbill_CheckSuperStringBorderAndCopy = .text:0x00042188; // type:function size:0x60 scope:global align:4
+mHandbill_Load_SuperStringFromRom = .text:0x000421E8; // type:function size:0x154 scope:global align:4
+mHandbill_Load_PsStringFromRom = .text:0x0004233C; // type:function size:0x120 scope:global align:4
+mHandbill_Load_MailFromRom = .text:0x0004245C; // type:function size:0x118 scope:global align:4
+mHandbill_Load_HandbillFromRom = .text:0x00042574; // type:function size:0x74 scope:global align:4
+mHandbill_Load_HandbillFromRom2 = .text:0x000425E8; // type:function size:0x7C scope:global align:4
+mHandbillz_aram_init = .text:0x00042664; // type:function size:0xDC scope:global align:4
+mHandbillzDMA_body_addr_set = .text:0x00042740; // type:function size:0x7C scope:global align:4
+mHandbillzDMA_body_load = .text:0x000427BC; // type:function size:0xB8 scope:global align:4
+mHandbillz_super_load = .text:0x00042874; // type:function size:0xF8 scope:global align:4
+mHandbillz_mail_load = .text:0x0004296C; // type:function size:0x138 scope:global align:4
+mHandbillz_ps_load = .text:0x00042AA4; // type:function size:0xC4 scope:global align:4
+mHandbillz_load = .text:0x00042B68; // type:function size:0x78 scope:global align:4
+mHm_ClearHomeInfo = .text:0x00042BE0; // type:function size:0x194 scope:global align:4
+mHm_ClearAllHomeInfo = .text:0x00042D74; // type:function size:0x3C scope:global align:4
+mHm_SetNowHome = .text:0x00042DB0; // type:function size:0x64 scope:global align:4
+mHm_SetDefaultPlayerRoomData = .text:0x00042E14; // type:function size:0x90 scope:global align:4
+mHm_InitHomeInfo = .text:0x00042EA4; // type:function size:0x34 scope:global align:4
+mHm_ChangeWallDoorFG = .text:0x00042ED8; // type:function size:0x60 scope:global align:4
+mHm_EraseWallDoor = .text:0x00042F38; // type:function size:0x24 scope:global align:4
+mHm_SetWallDoor = .text:0x00042F5C; // type:function size:0x24 scope:global align:4
+mHm_RehouseWallDoor = .text:0x00042F80; // type:function size:0x8C scope:global align:4
+mHm_CheckRehouseOrder = .text:0x0004300C; // type:function size:0x1D4 scope:global align:4
+mHm_KeepHouseSize = .text:0x000431E0; // type:function size:0x98 scope:global align:4
+mHm_CheckKeepHouseSize = .text:0x00043278; // type:function size:0xA0 scope:global align:4
+mHm_SetBasement = .text:0x00043318; // type:function size:0x4C scope:global align:4
+mHm_SetDefaultCottageData = .text:0x00043364; // type:function size:0x30 scope:global align:4
+mHm_InitCottage = .text:0x00043394; // type:function size:0x4C scope:global align:4
+mHS_house_init = .text:0x000433E0; // type:function size:0x18 scope:global align:4
+mHS_get_arrange_idx = .text:0x000433F8; // type:function size:0x20 scope:global align:4
+mHS_get_pl_no = .text:0x00043418; // type:function size:0x3C scope:global align:4
+mHS_get_pl_no_detail = .text:0x00043454; // type:function size:0x9C scope:global align:4
+mHS_set_use = .text:0x000434F0; // type:function size:0xE8 scope:global align:4
+mLd_StartFlagOn = .text:0x000435D8; // type:function size:0x10 scope:global align:4
+mLd_CheckStartFlag = .text:0x000435E8; // type:function size:0x10 scope:global align:4
+mLd_NullCheckLandName = .text:0x000435F8; // type:function size:0x3C scope:global align:4
+mLd_CheckId = .text:0x00043634; // type:function size:0x18 scope:global align:4
+mLd_CheckCmpLandName = .text:0x0004364C; // type:function size:0x6C scope:global align:4
+mLd_CheckCmpLand = .text:0x000436B8; // type:function size:0x50 scope:global align:4
+mLd_ClearLandName = .text:0x00043708; // type:function size:0x28 scope:global align:4
+mLd_CopyLandName = .text:0x00043730; // type:function size:0x24 scope:global align:4
+mLd_AddMuraString = .text:0x00043754; // type:function size:0x6C scope:global align:4
+mLd_GetLandNameStringAddMura = .text:0x000437C0; // type:function size:0x88 scope:global align:4
+mLd_SetFreeStrLandMuraName = .text:0x00043848; // type:function size:0x94 scope:global align:4
+mLd_GetLandName = .text:0x000438DC; // type:function size:0x14 scope:global align:4
+mLd_MakeLandId = .text:0x000438F0; // type:function size:0x40 scope:global align:4
+mLd_PlayerManKindCheckNo = .text:0x00043930; // type:function size:0x18 scope:global align:4
+mLd_PlayerManKindCheck = .text:0x00043948; // type:function size:0x30 scope:global align:4
+mLd_CheckThisLand = .text:0x00043978; // type:function size:0x34 scope:global align:4
+mLd_LandInfoInit = .text:0x000439AC; // type:function size:0x40 scope:global align:4
+mLd_LandDataInit = .text:0x000439EC; // type:function size:0x24 scope:global align:4
+mISL_ClearKeepIsland = .text:0x00043A10; // type:function size:0x2C scope:global align:4
+mISL_KeepIsland = .text:0x00043A3C; // type:function size:0x50 scope:global align:4
+mISL_KeepIslandComb = .text:0x00043A8C; // type:function size:0x38 scope:global align:4
+mISL_RestoreIslandComb_com = .text:0x00043AC4; // type:function size:0x3C scope:global align:4
+mISL_RestoreIslandComb = .text:0x00043B00; // type:function size:0x64 scope:global align:4
+mISL_ChangeBG = .text:0x00043B64; // type:function size:0x74 scope:global align:4
+mISL_RestoreIsland = .text:0x00043BD8; // type:function size:0x84 scope:global align:4
+mISL_init = .text:0x00043C5C; // type:function size:0x6C scope:global align:4
+mISL_GetCheckP = .text:0x00043CC8; // type:function size:0x7C scope:global align:4
+mISL_ClearNowPlayerAction = .text:0x00043D44; // type:function size:0x58 scope:global align:4
+mISL_SetPlayerAction = .text:0x00043D9C; // type:function size:0xBC scope:global align:4
+mISL_SetNowPlayerAction = .text:0x00043E58; // type:function size:0x3C scope:global align:4
+mISL_CheckPlayerAction = .text:0x00043E94; // type:function size:0x5C scope:global align:4
+mISL_CheckNowPlayerAction = .text:0x00043EF0; // type:function size:0x48 scope:global align:4
+mISL_int = .text:0x00043F38; // type:function size:0x24 scope:global align:4
+mISL_short = .text:0x00043F5C; // type:function size:0x24 scope:global align:4
+mISL_u64 = .text:0x00043F80; // type:function size:0x9C scope:global align:4
+mISL_get_npc_idx = .text:0x0004401C; // type:function size:0x50 scope:global align:4
+mISL_get_npc_tex = .text:0x0004406C; // type:function size:0x7C scope:global align:4
+mISL_get_npc_pal = .text:0x000440E8; // type:function size:0x7C scope:global align:4
+mISL_get_earth_tex = .text:0x00044164; // type:function size:0x7C scope:global align:4
+mISL_gc_to_agb_iandinfo = .text:0x000441E0; // type:function size:0x5C scope:global align:4
+mISL_agb_to_gc_iandinfo = .text:0x0004423C; // type:function size:0x5C scope:global align:4
+mISL_gc_to_agb_fg = .text:0x00044298; // type:function size:0x24 scope:global align:4
+mISL_gc_to_agb_fg2 = .text:0x000442BC; // type:function size:0xE8 scope:global align:4
+mISL_agb_to_gc_fg = .text:0x000443A4; // type:function size:0x24 scope:global align:4
+mISL_gc_to_agb_fgblock = .text:0x000443C8; // type:function size:0x58 scope:global align:4
+mISL_agb_to_gc_fgblock = .text:0x00044420; // type:function size:0x58 scope:global align:4
+mISL_gc_to_agb_layer = .text:0x00044478; // type:function size:0x78 scope:global align:4
+mISL_gc_to_agb_fllot_bit = .text:0x000444F0; // type:function size:0x6C scope:global align:4
+mISL_agb_to_gc_fllot_bit = .text:0x0004455C; // type:function size:0x68 scope:global align:4
+mISL_gc_to_agb_cottage_floor = .text:0x000445C4; // type:function size:0x64 scope:global align:4
+mISL_agb_to_gc_cottage_floor = .text:0x00044628; // type:function size:0x64 scope:global align:4
+mISL_gc_to_agb_ymd = .text:0x0004468C; // type:function size:0x4C scope:global align:4
+mISL_gc_to_agb_time = .text:0x000446D8; // type:function size:0x64 scope:global align:4
+mISL_gc_to_agb_goki = .text:0x0004473C; // type:function size:0x40 scope:global align:4
+mISL_agb_to_gc_goki = .text:0x0004477C; // type:function size:0x40 scope:global align:4
+mISL_gc_to_agb_cottage = .text:0x000447BC; // type:function size:0x8C scope:global align:4
+mISL_agb_to_gc_cottage = .text:0x00044848; // type:function size:0x8C scope:global align:4
+mISL_gc_to_agb_mail = .text:0x000448D4; // type:function size:0x90 scope:global align:4
+mISL_agb_to_gc_mail = .text:0x00044964; // type:function size:0x90 scope:global align:4
+mIS_gc_to_agb_anmpersonal = .text:0x000449F4; // type:function size:0x6C scope:global align:4
+mIS_agb_to_gc_anmpersonal = .text:0x00044A60; // type:function size:0x6C scope:global align:4
+mISL_gc_to_agb_personal = .text:0x00044ACC; // type:function size:0x74 scope:global align:4
+mISL_gc_to_agb_memuni = .text:0x00044B40; // type:function size:0x24 scope:global align:4
+mISL_agb_to_gc_memuni = .text:0x00044B64; // type:function size:0x24 scope:global align:4
+mISL_gc_to_agb_memletter = .text:0x00044B88; // type:function size:0x90 scope:global align:4
+mISL_agb_to_gc_memletter = .text:0x00044C18; // type:function size:0xA0 scope:global align:4
+mISL_gc_to_agb_memory = .text:0x00044CB8; // type:function size:0x70 scope:global align:4
+mISL_agb_to_gc_memory = .text:0x00044D28; // type:function size:0x80 scope:global align:4
+mISL_gc_to_agb_qclass = .text:0x00044DA8; // type:function size:0xA0 scope:global align:4
+mISL_agb_to_gc_qclass = .text:0x00044E48; // type:function size:0xAC scope:global align:4
+mISL_gc_to_agb_qdata = .text:0x00044EF4; // type:function size:0x24 scope:global align:4
+mISL_agb_to_gc_qdata = .text:0x00044F18; // type:function size:0x24 scope:global align:4
+mISL_gc_to_agb_quest = .text:0x00044F3C; // type:function size:0x68 scope:global align:4
+mISL_agb_to_gc_quest = .text:0x00044FA4; // type:function size:0x68 scope:global align:4
+mISL_gc_to_agb_anmuni = .text:0x0004500C; // type:function size:0x24 scope:global align:4
+mISL_agb_to_gc_anmuni = .text:0x00045030; // type:function size:0x24 scope:global align:4
+mISL_gc_to_agb_hp_mail = .text:0x00045054; // type:function size:0x48 scope:global align:4
+mISL_agb_to_gc_hp_mail = .text:0x0004509C; // type:function size:0x48 scope:global align:4
+mISL_gc_to_agb_animal = .text:0x000450E4; // type:function size:0x160 scope:global align:4
+mISL_agb_to_gc_animal = .text:0x00045244; // type:function size:0x160 scope:global align:4
+mISL_ReturnCheckSum = .text:0x000453A4; // type:function size:0x28 scope:global align:4
+mISL_GetFlatCheckSum = .text:0x000453CC; // type:function size:0x58 scope:global align:4
+mISL_gc_to_agb = .text:0x00045424; // type:function size:0x1B8 scope:global align:4
+mISL_toHole = .text:0x000455DC; // type:function size:0xC4 scope:global align:4
+mISL_agb_to_gc = .text:0x000456A0; // type:function size:0x120 scope:global align:4
+mIN_dma_itemName = .text:0x000457C0; // type:function size:0x24 scope:global align:4
+mIN_copy_name_str = .text:0x000457E4; // type:function size:0x174 scope:global align:4
+mIN_get_item_article = .text:0x00045958; // type:function size:0xC4 scope:global align:4
+Kabu_set_schedule_day = .text:0x00045A1C; // type:function size:0x68 scope:global align:4
+Kabu_decide_trade_market = .text:0x00045A84; // type:function size:0x90 scope:global align:4
+Kabu_decide_price_schedule_typeA = .text:0x00045B14; // type:function size:0xB0 scope:global align:4
+Kabu_decide_price_schedule_typeB = .text:0x00045BC4; // type:function size:0x150 scope:global align:4
+Kabu_decide_price_schedule_typeC = .text:0x00045D14; // type:function size:0xD4 scope:global align:4
+Kabu_decide_price_sunday = .text:0x00045DE8; // type:function size:0x78 scope:global align:4
+Kabu_decide_price_without_sunday = .text:0x00045E60; // type:function size:0x44 scope:global align:4
+Kabu_decide_price_schedule_without_sunday = .text:0x00045EA4; // type:function size:0x28 scope:global align:4
+Kabu_decide_price_schedule = .text:0x00045ECC; // type:function size:0x24 scope:global align:4
+Kabu_get_price = .text:0x00045EF0; // type:function size:0x20 scope:global align:4
+Kabu_manager = .text:0x00045F10; // type:function size:0xC8 scope:global align:4
+mEnv_DiffuseLightEffectRate = .text:0x00045FD8; // type:function size:0x70 scope:global align:4
+mEnv_regist_nature = .text:0x00046048; // type:function size:0xC scope:global align:4
+mEnv_unregist_nature = .text:0x00046054; // type:function size:0x44 scope:global align:4
+mEnv_GetNowRoomPointLightInfo = .text:0x00046098; // type:function size:0x48C scope:global align:4
+mEnv_RoomTypePointLightSet = .text:0x00046524; // type:function size:0x168 scope:global align:4
+mEnv_RoomTypediffuseLightSet = .text:0x0004668C; // type:function size:0x94 scope:global align:4
+mEnv_RoomTypeLightSet = .text:0x00046720; // type:function size:0x44 scope:global align:4
+mEnv_rainbow_check_set = .text:0x00046764; // type:function size:0x134 scope:global align:4
+Global_kankyo_ct = .text:0x00046898; // type:function size:0x1C4 scope:global align:4
+mEnv_MakeShadowInfo = .text:0x00046A5C; // type:function size:0x5F8 scope:global align:4
+mEnv_set_time = .text:0x00047054; // type:function size:0x1B4 scope:global align:4
+mEnv_ChangeRGBLight = .text:0x00047208; // type:function size:0xFC scope:global align:4
+mEnv_ChangeDiffuseVctlSet = .text:0x00047304; // type:function size:0x20C scope:global align:4
+mEnv_ChangeDiffuseLight = .text:0x00047510; // type:function size:0x370 scope:global align:4
+mEnv_ChangeFogLight = .text:0x00047880; // type:function size:0x234 scope:global align:4
+mEnv_CalcSetLight_train = .text:0x00047AB4; // type:function size:0xC0 scope:global align:4
+mEnv_CalcSetLight = .text:0x00047B74; // type:function size:0x174 scope:global align:4
+mEnv_GetNowTerm = .text:0x00047CE8; // type:function size:0x4C scope:global align:4
+mEnv_SetBaseLight = .text:0x00047D34; // type:function size:0x4B4 scope:global align:4
+mEnv_LimitChkRGBColor = .text:0x000481E8; // type:function size:0x24 scope:global align:4
+mEnv_AddAndSetRGBColor = .text:0x0004820C; // type:function size:0x68 scope:global align:4
+mEnv_SetDiffuseLight = .text:0x00048274; // type:function size:0x80 scope:global align:4
+mEnv_SetFog = .text:0x000482F4; // type:function size:0xA8 scope:global align:4
+mEnv_PermitCheckDiffuseLight = .text:0x0004839C; // type:function size:0x5C scope:global align:4
+mEnv_GetRoomPrimColor = .text:0x000483F8; // type:function size:0x160 scope:global align:4
+Global_kankyo_set_room_prim = .text:0x00048558; // type:function size:0x11C scope:global align:4
+mEnv_check_countdown_start = .text:0x00048674; // type:function size:0xA4 scope:global align:4
+mEnv_countdown_proc = .text:0x00048718; // type:function size:0xF4 scope:global align:4
+mEnv_RequestChangeLightON = .text:0x0004880C; // type:function size:0x94 scope:global align:4
+mEnv_RequestChangeLightOFF = .text:0x000488A0; // type:function size:0xB0 scope:global align:4
+mEnv_LightAnimeToSwitchON = .text:0x00048950; // type:function size:0x5C scope:global align:4
+mEnv_ManagePointLight = .text:0x000489AC; // type:function size:0x224 scope:global align:4
+mEnv_ManageChangeWeatherEnvRate = .text:0x00048BD0; // type:function size:0xBC scope:global align:4
+mEnv_JudgeSwitchStatus = .text:0x00048C8C; // type:function size:0xA4 scope:global align:4
+mEnv_rainbow_power_calc = .text:0x00048D30; // type:function size:0x114 scope:global align:4
+Global_kankyo_set = .text:0x00048E44; // type:function size:0xBC scope:global align:4
+mEnv_CheckNpcRoomPointLightNiceStatus = .text:0x00048F00; // type:function size:0xEC scope:global align:4
+mEnv_TaimatuPointLightWaveMoveProc = .text:0x00048FEC; // type:function size:0xBC scope:global align:4
+mEnv_CheckNpcLight_ToSwitchON = .text:0x000490A8; // type:function size:0x4 scope:global align:4
+mEnv_PointLightSet = .text:0x000490AC; // type:function size:0x104 scope:global align:4
+staffroll_light_init = .text:0x000491B0; // type:function size:0x58 scope:global align:4
+mEnv_DecideStaffrollFadeOutRate = .text:0x00049208; // type:function size:0xA4 scope:global align:4
+mEnv_DecideStaffrollFadeInRate = .text:0x000492AC; // type:function size:0xA0 scope:global align:4
+staffroll_light_proc_start = .text:0x0004934C; // type:function size:0x40 scope:global align:4
+staffroll_light_proc_end = .text:0x0004938C; // type:function size:0x58 scope:global align:4
+staffroll_light_dt = .text:0x000493E4; // type:function size:0x30 scope:global align:4
+mEnv_GetShadowPrimColor_Light = .text:0x00049414; // type:function size:0x1C scope:global align:4
+mEnv_Pointlight_on_check = .text:0x00049430; // type:function size:0x28 scope:global align:4
+mEnv_PointLightMin = .text:0x00049458; // type:function size:0x20 scope:global align:4
+mEnv_MakeWindowLightAlpha = .text:0x00049478; // type:function size:0x218 scope:global align:4
+mKK_windowlight_alpha_get = .text:0x00049690; // type:function size:0x10 scope:global align:4
+mEnv_ReqeustChangeWeatherEnviroment = .text:0x000496A0; // type:function size:0x6C scope:global align:4
+mEnv_ReservePointLight = .text:0x0004970C; // type:function size:0x108 scope:global align:4
+mEnv_OperateReservedPointLight_Position = .text:0x00049814; // type:function size:0x6C scope:global align:4
+mEnv_OperateReservedPointLight_Color = .text:0x00049880; // type:function size:0x34 scope:global align:4
+mEnv_OperateReservedPointLight_Power = .text:0x000498B4; // type:function size:0x28 scope:global align:4
+mEnv_OperateReservedPointLight = .text:0x000498DC; // type:function size:0x64 scope:global align:4
+mEnv_CancelReservedPointLight = .text:0x00049940; // type:function size:0x5C scope:global align:4
+mEnv_DecideWindDirect = .text:0x0004999C; // type:function size:0x18C scope:global align:4
+mEnv_GetWeatherChangeStep = .text:0x00049B28; // type:function size:0x60 scope:global align:4
+mEnv_RandomWeather = .text:0x00049B88; // type:function size:0x134 scope:global align:4
+mEnv_GetWindAngleS = .text:0x00049CBC; // type:function size:0x24 scope:global align:4
+mEnv_GetWindPowerF = .text:0x00049CE0; // type:function size:0x34 scope:global align:4
+mEnv_GetWindPowerF_Windmill = .text:0x00049D14; // type:function size:0x10 scope:global align:4
+mEnv_GetWindPowerTableTerm = .text:0x00049D24; // type:function size:0x50 scope:global align:4
+mEnv_GetWindPowerPercent = .text:0x00049D74; // type:function size:0x90 scope:global align:4
+mEnv_DecideTodayWindPowerRange = .text:0x00049E04; // type:function size:0xEC scope:global align:4
+mEnv_ChangeWind = .text:0x00049EF0; // type:function size:0xE4 scope:global align:4
+mEnv_InitWind = .text:0x00049FD4; // type:function size:0xD8 scope:global align:4
+mEnv_WindMove = .text:0x0004A0AC; // type:function size:0x468 scope:global align:4
+mEnv_DecideWeather_GameStart = .text:0x0004A514; // type:function size:0x9C scope:global align:4
+mEnv_DecideWeather_FirstGameStart = .text:0x0004A5B0; // type:function size:0x5C scope:global align:4
+mEnv_Rainbow_reserve = .text:0x0004A60C; // type:function size:0x28 scope:global align:4
+mEnv_PreRainNowFine_Init = .text:0x0004A634; // type:function size:0x24 scope:global align:4
+mEnv_DecideWeather_NormalGameStart = .text:0x0004A658; // type:function size:0x180 scope:global align:4
+mEnv_NowWeather = .text:0x0004A7D8; // type:function size:0x8C scope:global align:4
+mem_copy = .text:0x0004A864; // type:function size:0x24 scope:global align:4
+mem_clear = .text:0x0004A888; // type:function size:0x1C scope:global align:4
+mem_cmp = .text:0x0004A8A4; // type:function size:0x38 scope:global align:4
+cos_s = .text:0x0004A8DC; // type:function size:0x54 scope:global align:4
+sin_s = .text:0x0004A930; // type:function size:0x54 scope:global align:4
+chase_angle = .text:0x0004A984; // type:function size:0xB4 scope:global align:4
+chase_s = .text:0x0004AA38; // type:function size:0x70 scope:global align:4
+chase_f = .text:0x0004AAA8; // type:function size:0x74 scope:global align:4
+chase_xyz_t = .text:0x0004AB1C; // type:function size:0xC4 scope:global align:4
+chase_angle2 = .text:0x0004ABE0; // type:function size:0x58 scope:global align:4
+inter_float = .text:0x0004AC38; // type:function size:0x50 scope:global align:4
+get_random_timer = .text:0x0004AC88; // type:function size:0x74 scope:global align:4
+xyz_t_move = .text:0x0004ACFC; // type:function size:0x1C scope:global align:4
+xyz_t_move_s_xyz = .text:0x0004AD18; // type:function size:0x6C scope:global align:4
+xyz_t_add = .text:0x0004AD84; // type:function size:0x34 scope:global align:4
+xyz_t_sub = .text:0x0004ADB8; // type:function size:0x34 scope:global align:4
+xyz_t_mult_v = .text:0x0004ADEC; // type:function size:0x28 scope:global align:4
+search_position_distance = .text:0x0004AE14; // type:function size:0xB8 scope:global align:4
+search_position_distanceXZ = .text:0x0004AECC; // type:function size:0xA4 scope:global align:4
+search_position_angleY = .text:0x0004AF70; // type:function size:0x38 scope:global align:4
+search_position_angleX = .text:0x0004AFA8; // type:function size:0x48 scope:global align:4
+add_calc = .text:0x0004AFF0; // type:function size:0xE4 scope:global align:4
+add_calc2 = .text:0x0004B0D4; // type:function size:0x44 scope:global align:4
+add_calc0 = .text:0x0004B118; // type:function size:0x38 scope:global align:4
+add_calc_short_angle2 = .text:0x0004B150; // type:function size:0x12C scope:global align:4
+add_calc_short_angle3 = .text:0x0004B27C; // type:function size:0xEC scope:global align:4
+rgba_t_move = .text:0x0004B368; // type:function size:0x24 scope:global align:4
+none_proc1 = .text:0x0004B38C; // type:function size:0x8 scope:global align:4
+none_proc2 = .text:0x0004B394; // type:function size:0x4 scope:global align:4
+_Game_play_isPause = .text:0x0004B398; // type:function size:0x10 scope:global align:4
+check_percent_abs = .text:0x0004B3A8; // type:function size:0x94 scope:global align:4
+get_percent_forAccelBrake = .text:0x0004B43C; // type:function size:0x128 scope:global align:4
+Game_play_Projection_Trans = .text:0x0004B564; // type:function size:0xC0 scope:global align:4
+get_percent = .text:0x0004B624; // type:function size:0x94 scope:global align:4
+point_data_set = .text:0x0004B6B8; // type:function size:0x48 scope:global align:4
+Light_point_ct = .text:0x0004B700; // type:function size:0x28 scope:global align:4
+Light_point_color_set = .text:0x0004B728; // type:function size:0x14 scope:global align:4
+Light_diffuse_ct = .text:0x0004B73C; // type:function size:0x24 scope:global align:4
+LightsN_disp_BG = .text:0x0004B760; // type:function size:0xD8 scope:global align:4
+LightsN_disp = .text:0x0004B838; // type:function size:0xDC scope:global align:4
+LightsN_new_diffuse = .text:0x0004B914; // type:function size:0x30 scope:global align:4
+LightsN__point_proc = .text:0x0004B944; // type:function size:0x2B4 scope:global align:4
+LightsN__P_point_proc = .text:0x0004BBF8; // type:function size:0x108 scope:global align:4
+LightsN__diffuse_proc = .text:0x0004BD00; // type:function size:0x70 scope:global align:4
+LightsN_list_check = .text:0x0004BD70; // type:function size:0xB8 scope:global align:4
+Light_list_buf_new = .text:0x0004BE28; // type:function size:0x80 scope:global align:4
+Light_list_buf_delete = .text:0x0004BEA8; // type:function size:0x40 scope:global align:4
+Global_light_ct = .text:0x0004BEE8; // type:function size:0x6C scope:global align:4
+Global_light_ambient_set = .text:0x0004BF54; // type:function size:0x10 scope:global align:4
+Global_light_fog_set = .text:0x0004BF64; // type:function size:0x18 scope:global align:4
+Global_light_read = .text:0x0004BF7C; // type:function size:0x34 scope:global align:4
+Global_light_list_ct = .text:0x0004BFB0; // type:function size:0xC scope:global align:4
+Global_light_list_new = .text:0x0004BFBC; // type:function size:0x68 scope:global align:4
+Global_light_list_delete = .text:0x0004C024; // type:function size:0x60 scope:global align:4
+new_LightsN = .text:0x0004C084; // type:function size:0x34 scope:global align:4
+Light_list_point_draw = .text:0x0004C0B8; // type:function size:0x1B0 scope:global align:4
+zelda_malloc_align = .text:0x0004C268; // type:function size:0x34 scope:global align:4
+zelda_malloc = .text:0x0004C29C; // type:function size:0x2C scope:global align:4
+zelda_malloc_r = .text:0x0004C2C8; // type:function size:0x2C scope:global align:4
+zelda_free = .text:0x0004C2F4; // type:function size:0x2C scope:global align:4
+zelda_GetFreeArena = .text:0x0004C320; // type:function size:0x38 scope:global align:4
+zelda_GetTotalFreeSize = .text:0x0004C358; // type:function size:0x28 scope:global align:4
+zelda_GetMemBlockSize = .text:0x0004C380; // type:function size:0x2C scope:global align:4
+zelda_InitArena = .text:0x0004C3AC; // type:function size:0x34 scope:global align:4
+zelda_AddBlockArena = .text:0x0004C3E0; // type:function size:0x34 scope:global align:4
+zelda_CleanupArena = .text:0x0004C414; // type:function size:0x28 scope:global align:4
+zelda_MallocIsInitalized = .text:0x0004C43C; // type:function size:0x28 scope:global align:4
+mMl_strlen = .text:0x0004C464; // type:function size:0x40 scope:global align:4
+mMl_strlen2 = .text:0x0004C4A4; // type:function size:0x58 scope:global align:4
+mMl_clear_mail_header = .text:0x0004C4FC; // type:function size:0x44 scope:global align:4
+mMl_clear_mail = .text:0x0004C540; // type:function size:0x50 scope:global align:4
+mMl_clear_mail_box = .text:0x0004C590; // type:function size:0x50 scope:global align:4
+mMl_check_not_used_mail = .text:0x0004C5E0; // type:function size:0x18 scope:global align:4
+mMl_copy_header_name = .text:0x0004C5F8; // type:function size:0x28 scope:global align:4
+mMl_set_to_plname = .text:0x0004C620; // type:function size:0x34 scope:global align:4
+mMl_set_playername = .text:0x0004C654; // type:function size:0x38 scope:global align:4
+mMl_init_mail = .text:0x0004C68C; // type:function size:0x58 scope:global align:4
+mMl_chk_mail_free_space = .text:0x0004C6E4; // type:function size:0x68 scope:global align:4
+mMl_count_use_mail_space = .text:0x0004C74C; // type:function size:0x68 scope:global align:4
+mMl_copy_mail = .text:0x0004C7B4; // type:function size:0x24 scope:global align:4
+mMl_clear_mail_header_common = .text:0x0004C7D8; // type:function size:0x58 scope:global align:4
+mMl_set_mail_name_npcinfo = .text:0x0004C830; // type:function size:0x74 scope:global align:4
+mMl_get_npcinfo_from_mail_name = .text:0x0004C8A4; // type:function size:0x80 scope:global align:4
+mMl_hunt_for_send_address = .text:0x0004C924; // type:function size:0x8C scope:global align:4
+mMl_check_send_mail = .text:0x0004C9B0; // type:function size:0x14 scope:global align:4
+mMl_check_set_present_myself = .text:0x0004C9C4; // type:function size:0x2C scope:global align:4
+mMl_load_mail_data = .text:0x0004C9F0; // type:function size:0x48 scope:global align:4
+mMl_load_mail_data2 = .text:0x0004CA38; // type:function size:0x80 scope:global align:4
+mMl_get_mail_to_player_com = .text:0x0004CAB8; // type:function size:0xD0 scope:global align:4
+mMl_send_mail_box_com = .text:0x0004CB88; // type:function size:0xDC scope:global align:4
+mMl_send_mail_box = .text:0x0004CC64; // type:function size:0x28 scope:global align:4
+mMl_send_mail_postoffice_com = .text:0x0004CC8C; // type:function size:0x94 scope:global align:4
+mMl_send_mail_postoffice = .text:0x0004CD20; // type:function size:0x74 scope:global align:4
+mMl_send_mail_com = .text:0x0004CD94; // type:function size:0xA4 scope:global align:4
+mMl_send_mail = .text:0x0004CE38; // type:function size:0x24 scope:global align:4
+mMl_send_postoffice_mail = .text:0x0004CE5C; // type:function size:0x10C scope:global align:4
+mMl_start_send_mail = .text:0x0004CF68; // type:function size:0x20 scope:global align:4
+mMC_get_mail_hit_rate = .text:0x0004CF88; // type:function size:0x20 scope:global align:4
+mMpswd_bit_shift = .text:0x0004CFA8; // type:function size:0x204 scope:global align:4
+mMpswd_bit_reverse = .text:0x0004D1AC; // type:function size:0x30 scope:global align:4
+mMpswd_bit_arrange_reverse = .text:0x0004D1DC; // type:function size:0xC0 scope:global align:4
+mMpswd_check_opening_sentence = .text:0x0004D29C; // type:function size:0x18 scope:global align:4
+mMpswd_get_password_pointer = .text:0x0004D2B4; // type:function size:0x3C scope:global align:4
+mMpswd_except_return_code = .text:0x0004D2F0; // type:function size:0x30 scope:global align:4
+mMpswd_adjust_letter = .text:0x0004D320; // type:function size:0x44 scope:global align:4
+mMpswd_make_passcode = .text:0x0004D364; // type:function size:0x148 scope:global align:4
+mMpswd_chg_6bits_code = .text:0x0004D4AC; // type:function size:0x6C scope:global align:4
+mMpswd_chg_8bits_code = .text:0x0004D518; // type:function size:0x6C scope:global align:4
+mMpswd_get_RSA_key_code = .text:0x0004D584; // type:function size:0xB8 scope:global align:4
+mMpswd_chg_RSA_cipher = .text:0x0004D63C; // type:function size:0xB8 scope:global align:4
+mMpswd_decode_RSA_cipher = .text:0x0004D6F4; // type:function size:0xEC scope:global align:4
+mMpswd_bit_mix_code = .text:0x0004D7E0; // type:function size:0xAC scope:global align:4
+mMpswd_decode_bit_code = .text:0x0004D88C; // type:function size:0xAC scope:global align:4
+mMpswd_substitution_cipher = .text:0x0004D938; // type:function size:0x28 scope:global align:4
+mMpswd_decode_substitution_cipher = .text:0x0004D960; // type:function size:0x54 scope:global align:4
+mMpswd_transposition_cipher = .text:0x0004D9B4; // type:function size:0x90 scope:global align:4
+mMpswd_bit_shuffle = .text:0x0004DA44; // type:function size:0x12C scope:global align:4
+mMpswd_decode_bit_shuffle = .text:0x0004DB70; // type:function size:0x12C scope:global align:4
+mMpswd_chg_common_font_code = .text:0x0004DC9C; // type:function size:0x58 scope:global align:4
+mMpswd_chg_password_font_code_sub = .text:0x0004DCF4; // type:function size:0x40 scope:global align:4
+mMpswd_chg_password_font_code = .text:0x0004DD34; // type:function size:0x90 scope:global align:4
+mMpswd_make_password = .text:0x0004DDC4; // type:function size:0xE0 scope:global align:4
+mMpswd_decode_code = .text:0x0004DEA4; // type:function size:0xBC scope:global align:4
+mMpswd_restore_code = .text:0x0004DF60; // type:function size:0x74 scope:global align:4
+mMpswd_password = .text:0x0004DFD4; // type:function size:0x10C scope:global align:4
+mMpswd_password_zuru_check = .text:0x0004E0E0; // type:function size:0x80 scope:global align:4
+mMpswd_check_present_famicom = .text:0x0004E160; // type:function size:0x88 scope:global align:4
+mMpswd_check_present_user = .text:0x0004E1E8; // type:function size:0x54C scope:global align:4
+mMpswd_check_present_other = .text:0x0004E734; // type:function size:0x17C scope:global align:4
+mMpswd_check_present = .text:0x0004E8B0; // type:function size:0x6C scope:global align:4
+mMpswd_get_sp_npc_num = .text:0x0004E91C; // type:function size:0x28 scope:global align:4
+mMpswd_check_npc_code = .text:0x0004E944; // type:function size:0x3C scope:global align:4
+mMpswd_check_name = .text:0x0004E980; // type:function size:0x74 scope:global align:4
+mMkRm_GetMarkOrder = .text:0x0004E9F4; // type:function size:0xA8 scope:global align:4
+mMkRm_ReportMarkEnd = .text:0x0004EA9C; // type:function size:0x80 scope:global align:4
+mMkRm_ReportChangePlayerRoom = .text:0x0004EB1C; // type:function size:0xE4 scope:global align:4
+mMkRm_NoMarkLetter = .text:0x0004EC00; // type:function size:0xD4 scope:global align:4
+mMkRm_NoMarkLetter_Hint = .text:0x0004ECD4; // type:function size:0x158 scope:global align:4
+mMkRm_MarkRoom = .text:0x0004EE2C; // type:function size:0x13C scope:global align:4
+mMld_SetDefaultMelody = .text:0x0004EF68; // type:function size:0x28 scope:global align:4
+mMld_TransformMelodyData_u64_2_u8 = .text:0x0004EF90; // type:function size:0x70 scope:global align:4
+mMld_TransformMelodyData_u8_2_u64 = .text:0x0004F000; // type:function size:0x84 scope:global align:4
+mMld_GetMelody = .text:0x0004F084; // type:function size:0x34 scope:global align:4
+mMld_SetSaveMelody = .text:0x0004F0B8; // type:function size:0x34 scope:global align:4
+mMld_MakeMelody = .text:0x0004F0EC; // type:function size:0x44 scope:global align:4
+mMld_ActorMakeThisMelody = .text:0x0004F130; // type:function size:0x48 scope:global align:4
+mMld_ActorMakeMelody = .text:0x0004F178; // type:function size:0x44 scope:global align:4
+mMsg_MainSetup_Window = .text:0x0004F1BC; // type:function size:0x54 scope:global align:4
+mMsg_Main_Window = .text:0x0004F210; // type:function size:0x54 scope:global align:4
+mMsg_Draw_Window = .text:0x0004F264; // type:function size:0xB4 scope:global align:4
+mMsg_aram_init = .text:0x0004F318; // type:function size:0x28 scope:global align:4
+mMsg_aram_init2 = .text:0x0004F340; // type:function size:0x3C scope:global align:4
+mMsg_ct = .text:0x0004F37C; // type:function size:0x40 scope:global align:4
+mMsg_dt = .text:0x0004F3BC; // type:function size:0x30 scope:global align:4
+mMsg_debug_draw = .text:0x0004F3EC; // type:function size:0x84 scope:global align:4
+mMsg_Main = .text:0x0004F470; // type:function size:0x4C scope:global align:4
+mMsg_Draw = .text:0x0004F4BC; // type:function size:0x2C scope:global align:4
+mMsg_Get_base_window_p = .text:0x0004F4E8; // type:function size:0xC scope:global align:4
+mMsg_Check_request_priority = .text:0x0004F4F4; // type:function size:0x1C scope:global align:4
+mMsg_Change_request_main_index = .text:0x0004F510; // type:function size:0x5C scope:global align:4
+mMsg_Check_main_index = .text:0x0004F56C; // type:function size:0x14 scope:global align:4
+mMsg_Check_main_wait = .text:0x0004F580; // type:function size:0x24 scope:global align:4
+mMsg_Check_not_series_main_wait = .text:0x0004F5A4; // type:function size:0x74 scope:global align:4
+mMsg_Check_main_hide = .text:0x0004F618; // type:function size:0x24 scope:global align:4
+mMsg_Set_client_actor_p = .text:0x0004F63C; // type:function size:0xD8 scope:global align:4
+mMsg_request_main_forceoff = .text:0x0004F714; // type:function size:0x2C scope:global align:4
+mMsg_request_main_disappear = .text:0x0004F740; // type:function size:0x20 scope:global align:4
+mMsg_request_main_appear = .text:0x0004F760; // type:function size:0x74 scope:global align:4
+mMsg_request_main_disappear_wait = .text:0x0004F7D4; // type:function size:0x54 scope:global align:4
+mMsg_request_main_disappear_wait_sub = .text:0x0004F828; // type:function size:0x5C scope:global align:4
+mMsg_request_main_disappear_wait_type1 = .text:0x0004F884; // type:function size:0x24 scope:global align:4
+mMsg_request_main_disappear_wait_type2 = .text:0x0004F8A8; // type:function size:0x24 scope:global align:4
+mMsg_request_main_wait = .text:0x0004F8CC; // type:function size:0x54 scope:global align:4
+mMsg_request_main_appear_wait = .text:0x0004F920; // type:function size:0x60 scope:global align:4
+mMsg_request_main_appear_wait_type2 = .text:0x0004F980; // type:function size:0x48 scope:global align:4
+mMsg_request_main_appear_wait_type1 = .text:0x0004F9C8; // type:function size:0x24 scope:global align:4
+mMsg_request_main_normal = .text:0x0004F9EC; // type:function size:0x54 scope:global align:4
+mMsg_request_main_cursol = .text:0x0004FA40; // type:function size:0x54 scope:global align:4
+mMsg_Set_free_str = .text:0x0004FA94; // type:function size:0xB4 scope:global align:4
+mMsg_Set_free_str_cl = .text:0x0004FB48; // type:function size:0x24 scope:global align:4
+mMsg_Set_free_str_art = .text:0x0004FB6C; // type:function size:0x28 scope:global align:4
+mMsg_Set_free_str_cl_art = .text:0x0004FB94; // type:function size:0x80 scope:global align:4
+mMsg_Set_item_str = .text:0x0004FC14; // type:function size:0x7C scope:global align:4
+mMsg_Set_item_str_art = .text:0x0004FC90; // type:function size:0x48 scope:global align:4
+mMsg_Set_mail_str = .text:0x0004FCD8; // type:function size:0x12C scope:global align:4
+mMsg_Set_continue_msg_num = .text:0x0004FE04; // type:function size:0x8 scope:global align:4
+mMsg_Get_msg_num = .text:0x0004FE0C; // type:function size:0x2C scope:global align:4
+mMsg_Check_give_item = .text:0x0004FE38; // type:function size:0x30 scope:global align:4
+mMsg_set_cursol_just = .text:0x0004FE68; // type:function size:0x10 scope:global align:4
+mMsg_unset_cursol_just = .text:0x0004FE78; // type:function size:0x10 scope:global align:4
+mMsg_Set_SizeCode = .text:0x0004FE88; // type:function size:0x28 scope:global align:4
+mMsg_Count_SameCode = .text:0x0004FEB0; // type:function size:0x7C scope:global align:4
+mMsg_Check_LastCode_forData = .text:0x0004FF2C; // type:function size:0x2C scope:global align:4
+mMsg_Check_LastCode = .text:0x0004FF58; // type:function size:0x28 scope:global align:4
+mMsg_Check_ContinueCode_forData = .text:0x0004FF80; // type:function size:0x2C scope:global align:4
+mMsg_Check_ContinueCode = .text:0x0004FFAC; // type:function size:0x28 scope:global align:4
+mMsg_Check_NextIndex_ContinueCode = .text:0x0004FFD4; // type:function size:0x2C scope:global align:4
+mMsg_Check_NextIndex_LastCode = .text:0x00050000; // type:function size:0x2C scope:global align:4
+mMsg_Check_NextIndex_SetSelectWindowCode = .text:0x0005002C; // type:function size:0x38 scope:global align:4
+mMsg_Get_CursolSetTimeCode_forData = .text:0x00050064; // type:function size:0x64 scope:global align:4
+mMsg_Get_CursolSetTimeCode = .text:0x000500C8; // type:function size:0x28 scope:global align:4
+mMsg_Get_ColorCode_forData = .text:0x000500F0; // type:function size:0x44 scope:global align:4
+mMsg_Get_ColorCode = .text:0x00050134; // type:function size:0x28 scope:global align:4
+mMsg_Get_OrderCode_forData = .text:0x0005015C; // type:function size:0x58 scope:global align:4
+mMsg_Get_OrderCode = .text:0x000501B4; // type:function size:0x28 scope:global align:4
+mMsg_Get_SoundCutCode_forData = .text:0x000501DC; // type:function size:0x2C scope:global align:4
+mMsg_Get_SoundCutCode = .text:0x00050208; // type:function size:0x28 scope:global align:4
+mMsg_Get_bgm_make_forData = .text:0x00050230; // type:function size:0x58 scope:global align:4
+mMsg_Get_bgm_make = .text:0x00050288; // type:function size:0x28 scope:global align:4
+mMsg_Get_bgm_delete_forData = .text:0x000502B0; // type:function size:0x58 scope:global align:4
+mMsg_Get_bgm_delete = .text:0x00050308; // type:function size:0x28 scope:global align:4
+mMsg_Get_MsgTimeEnd_time_forData = .text:0x00050330; // type:function size:0x2C scope:global align:4
+mMsg_Get_MsgTimeEnd_time = .text:0x0005035C; // type:function size:0x28 scope:global align:4
+mMsg_Check_MsgTimeEndCode_forData = .text:0x00050384; // type:function size:0x28 scope:global align:4
+mMsg_Check_MsgTimeEndCode = .text:0x000503AC; // type:function size:0x28 scope:global align:4
+mMsg_Check_NextIndex_MsgTimeEndCode = .text:0x000503D4; // type:function size:0x24 scope:global align:4
+mMsg_Get_sound_trg_sys_forData = .text:0x000503F8; // type:function size:0x3C scope:global align:4
+mMsg_Get_sound_trg_sys = .text:0x00050434; // type:function size:0x28 scope:global align:4
+mMsg_Set_LineFontColor = .text:0x0005045C; // type:function size:0x30 scope:global align:4
+mMsg_init_FontColor = .text:0x0005048C; // type:function size:0x5C scope:global align:4
+mMsg_init_NowDisplayLIne = .text:0x000504E8; // type:function size:0xC scope:global align:4
+mMsg_Clear_CursolIndex = .text:0x000504F4; // type:function size:0x3C scope:global align:4
+mMsg_SetTimer = .text:0x00050530; // type:function size:0x8 scope:global align:4
+mMsg_Get_BodyParam = .text:0x00050538; // type:function size:0xCC scope:global align:4
+mMsg_Get_MsgDataAddressAndSize = .text:0x00050604; // type:function size:0x48 scope:global align:4
+mMsg_Count_MsgData = .text:0x0005064C; // type:function size:0xA4 scope:global align:4
+mMsg_LoadMsgData = .text:0x000506F0; // type:function size:0xE8 scope:global align:4
+mMsg_ChangeMsgData = .text:0x000507D8; // type:function size:0x78 scope:global align:4
+mMsg_Unset_NowUtter = .text:0x00050850; // type:function size:0xC scope:global align:4
+mMsg_Set_NowUtter = .text:0x0005085C; // type:function size:0xC scope:global align:4
+mMsg_Check_NowUtter = .text:0x00050868; // type:function size:0x24 scope:global align:4
+mMsg_init = .text:0x0005088C; // type:function size:0x218 scope:global align:4
+mMsg_Get_Length_String = .text:0x00050AA4; // type:function size:0x34 scope:global align:4
+mMsg_Check_MainNormalContinue = .text:0x00050AD8; // type:function size:0x40 scope:global align:4
+mMsg_Check_MainNormal = .text:0x00050B18; // type:function size:0x14 scope:global align:4
+mMsg_Check_MainHide = .text:0x00050B2C; // type:function size:0x10 scope:global align:4
+mMsg_Check_MainDisappear = .text:0x00050B3C; // type:function size:0x14 scope:global align:4
+mMsg_Set_CancelNormalContinue = .text:0x00050B50; // type:function size:0xC scope:global align:4
+mMsg_Unset_CancelNormalContinue = .text:0x00050B5C; // type:function size:0xC scope:global align:4
+mMsg_Set_ForceNext = .text:0x00050B68; // type:function size:0xC scope:global align:4
+mMsg_Unset_ForceNext = .text:0x00050B74; // type:function size:0xC scope:global align:4
+mMsg_Set_LockContinue = .text:0x00050B80; // type:function size:0xC scope:global align:4
+mMsg_Unset_LockContinue = .text:0x00050B8C; // type:function size:0xC scope:global align:4
+mMsg_Set_idling_req = .text:0x00050B98; // type:function size:0x10 scope:global align:4
+mMsg_Check_idling_now = .text:0x00050BA8; // type:function size:0xC scope:global align:4
+mMsg_MoveDataCut = .text:0x00050BB4; // type:function size:0xC8 scope:global align:4
+mMsg_CopyString = .text:0x00050C7C; // type:function size:0x24 scope:global align:4
+mMsg_Set_PlayerNameColor = .text:0x00050CA0; // type:function size:0xE4 scope:global align:4
+mMsg_CopyPlayerName = .text:0x00050D84; // type:function size:0xB0 scope:global align:4
+mMsg_CopyTalkName = .text:0x00050E34; // type:function size:0xC4 scope:global align:4
+mMsg_CopyTail = .text:0x00050EF8; // type:function size:0xD0 scope:global align:4
+mMsg_CopyYear = .text:0x00050FC8; // type:function size:0x90 scope:global align:4
+mMsg_CopyMonth = .text:0x00051058; // type:function size:0x90 scope:global align:4
+mMsg_CopyWeek = .text:0x000510E8; // type:function size:0x90 scope:global align:4
+mMsg_CopyDay = .text:0x00051178; // type:function size:0x90 scope:global align:4
+mMsg_CopyHour = .text:0x00051208; // type:function size:0x90 scope:global align:4
+mMsg_CopyMin = .text:0x00051298; // type:function size:0x90 scope:global align:4
+mMsg_CopySec = .text:0x00051328; // type:function size:0x90 scope:global align:4
+mMsg_CopyFree = .text:0x000513B8; // type:function size:0x154 scope:global align:4
+mMsg_Set_PfColor = .text:0x0005150C; // type:function size:0x108 scope:global align:4
+mMsg_CopyDetermination = .text:0x00051614; // type:function size:0x80 scope:global align:4
+mMsg_CopyCountryName = .text:0x00051694; // type:function size:0xF8 scope:global align:4
+mMsg_CopyIslandName = .text:0x0005178C; // type:function size:0xB0 scope:global align:4
+mMsg_CopyAmPm = .text:0x0005183C; // type:function size:0xAC scope:global align:4
+mMsg_CopyRamdomNumber2 = .text:0x000518E8; // type:function size:0xB8 scope:global align:4
+mMsg_CopyItem = .text:0x000519A0; // type:function size:0x154 scope:global align:4
+mMsg_CopyMail = .text:0x00051AF4; // type:function size:0xCC scope:global align:4
+mMsg_sound_voice_get = .text:0x00051BC0; // type:function size:0x28 scope:global align:4
+mMsg_sound_voice_get_for_editor = .text:0x00051BE8; // type:function size:0x50 scope:global align:4
+mMsg_sound_voice_get2 = .text:0x00051C38; // type:function size:0x30 scope:global align:4
+mMsg_check_sound_special = .text:0x00051C68; // type:function size:0x44 scope:global align:4
+mMsg_check_sound_shasho = .text:0x00051CAC; // type:function size:0x24 scope:global align:4
+mMsg_check_sound_animal = .text:0x00051CD0; // type:function size:0x78 scope:global align:4
+mMsg_sound_npc_id_get = .text:0x00051D48; // type:function size:0x24 scope:global align:4
+mMsg_sound_voice_entry = .text:0x00051D6C; // type:function size:0xE0 scope:global align:4
+mMsg_sound_voice_endcode_set = .text:0x00051E4C; // type:function size:0x68 scope:global align:4
+mMsg_sound_CodeVoice = .text:0x00051EB4; // type:function size:0xE0 scope:global align:4
+mMsg_sound_PAGE_OKURI = .text:0x00051F94; // type:function size:0x24 scope:global align:4
+mMsg_sound_ZOOMUP = .text:0x00051FB8; // type:function size:0x28 scope:global align:4
+mMsg_sound_ZOOMDOWN_SHORT = .text:0x00051FE0; // type:function size:0x34 scope:global align:4
+mMsg_sound_ZOOMDOWN_LONG = .text:0x00052014; // type:function size:0x34 scope:global align:4
+mMsg_sound_MessageSpeedForce = .text:0x00052048; // type:function size:0x84 scope:global align:4
+mMsg_sound_MessageSpeedClear = .text:0x000520CC; // type:function size:0x60 scope:global align:4
+mMsg_sound_MessageStatus = .text:0x0005212C; // type:function size:0x20 scope:global align:4
+mMsg_sound_bgm_make = .text:0x0005214C; // type:function size:0x7C scope:global align:4
+mMsg_sound_bgm_delete = .text:0x000521C8; // type:function size:0x4C scope:global align:4
+mMsg_sound_sound_trg_sys = .text:0x00052214; // type:function size:0x40 scope:global align:4
+mMsg_sound_voice_mode_get = .text:0x00052254; // type:function size:0x74 scope:global align:4
+mMsg_sound_voice_mode = .text:0x000522C8; // type:function size:0x24 scope:global align:4
+mMsg_sound_spec_change_voice_force = .text:0x000522EC; // type:function size:0x68 scope:global align:4
+mMsg_sound_spec_change_voice = .text:0x00052354; // type:function size:0x48 scope:global align:4
+mMsg_sound_spec_change_scene = .text:0x0005239C; // type:function size:0x18 scope:global align:4
+mMsg_sound_spec_change_true = .text:0x000523B4; // type:function size:0x54 scope:global align:4
+mMsg_sound_spec_change_false = .text:0x00052408; // type:function size:0x54 scope:global align:4
+mMsg_sound_set_voice_click = .text:0x0005245C; // type:function size:0x10 scope:global align:4
+mMsg_sound_set_voice_silent = .text:0x0005246C; // type:function size:0x34 scope:global align:4
+mMsg_sound_unset_voice_silent = .text:0x000524A0; // type:function size:0x34 scope:global align:4
+mMsg_Main_Hide = .text:0x000524D4; // type:function size:0x20 scope:global align:4
+mMsg_MainSetup_Hide = .text:0x000524F4; // type:function size:0x28 scope:global align:4
+mMsg_Main_Appear_SetScale = .text:0x0005251C; // type:function size:0x98 scope:global align:4
+mMsg_request_main_index_fromAppear = .text:0x000525B4; // type:function size:0x54 scope:global align:4
+mMsg_Main_Appear = .text:0x00052608; // type:function size:0x58 scope:global align:4
+mMsg_MainSetup_Appear = .text:0x00052660; // type:function size:0x174 scope:global align:4
+mMsg_Check_ScrollOrder = .text:0x000527D4; // type:function size:0x54 scope:global align:4
+mMsg_MsgTimeEnd_dec = .text:0x00052828; // type:function size:0x34 scope:global align:4
+mMsg_end_to_disappear = .text:0x0005285C; // type:function size:0x58 scope:global align:4
+mMsg_request_main_index_fromNormal = .text:0x000528B4; // type:function size:0x1DC scope:global align:4
+mMsg_Set_display_button_turn_color = .text:0x00052A90; // type:function size:0xD0 scope:global align:4
+mMsg_Main_Normal = .text:0x00052B60; // type:function size:0x68 scope:global align:4
+mMsg_MainSetup_Normal = .text:0x00052BC8; // type:function size:0x70 scope:global align:4
+mMsg_Check_CancelOrder = .text:0x00052C38; // type:function size:0x70 scope:global align:4
+mMsg_Main_Cursol_Check_ControlCursol = .text:0x00052CA8; // type:function size:0x1C scope:global align:4
+mMsg_Main_Cursol_Last_ControlCursol = .text:0x00052CC4; // type:function size:0x34 scope:global align:4
+mMsg_Main_Cursol_Continue_ControlCursol = .text:0x00052CF8; // type:function size:0x34 scope:global align:4
+mMsg_Main_Cursol_Clear_ControlCursol = .text:0x00052D2C; // type:function size:0x6C scope:global align:4
+mMsg_Main_Cursol_CursolSetTime_ControlCursol = .text:0x00052D98; // type:function size:0xD0 scope:global align:4
+mMsg_Main_Cursol_Button_ControlCursol = .text:0x00052E68; // type:function size:0x80 scope:global align:4
+mMsg_Main_Cursol_Color_ControlCursol = .text:0x00052EE8; // type:function size:0x8C scope:global align:4
+mMsg_Main_Cursol_AbleCancel_ControlCursol = .text:0x00052F74; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_UnableCancel_ControlCursol = .text:0x00052FC8; // type:function size:0x58 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrder_ControlCursol = .text:0x00053020; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrderPlayer_ControlCursol = .text:0x00053094; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrderNpc0_ControlCursol = .text:0x000530B8; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrderNpc1_ControlCursol = .text:0x000530DC; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrderNpc2_ControlCursol = .text:0x00053100; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetDemoOrderQuest_ControlCursol = .text:0x00053124; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectWindow_ControlCursol = .text:0x00053148; // type:function size:0x60 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage_ControlCursol = .text:0x000531A8; // type:function size:0xA8 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageF_ControlCursol = .text:0x00053250; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage0_ControlCursol = .text:0x00053274; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage1_ControlCursol = .text:0x00053298; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage2_ControlCursol = .text:0x000532BC; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage3_ControlCursol = .text:0x000532E0; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage4_ControlCursol = .text:0x00053304; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessage5_ControlCursol = .text:0x00053328; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageRamdomCommon_ControlCursol = .text:0x0005334C; // type:function size:0xD8 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageRamdom2_ControlCursol = .text:0x00053424; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageRamdom3_ControlCursol = .text:0x00053448; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageRamdom4_ControlCursol = .text:0x0005346C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectString_ControlCursol = .text:0x00053490; // type:function size:0x20C scope:global align:4
+mMsg_Main_Cursol_SetSelectString2_ControlCursol = .text:0x0005369C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectString3_ControlCursol = .text:0x000536C0; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectString4_ControlCursol = .text:0x000536E4; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectString5_ControlCursol = .text:0x00053708; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetSelectString6_ControlCursol = .text:0x0005372C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetForceNext_ControlCursol = .text:0x00053750; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_PutString_PlayerName_ControlCursol = .text:0x000537A4; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_PutString_TalkName_ControlCursol = .text:0x00053818; // type:function size:0x60 scope:global align:4
+mMsg_Main_Cursol_PutString_Tail_ControlCursol = .text:0x00053878; // type:function size:0x60 scope:global align:4
+mMsg_Main_Cursol_PutString_Year_ControlCursol = .text:0x000538D8; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Month_ControlCursol = .text:0x00053920; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Week_ControlCursol = .text:0x00053968; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Day_ControlCursol = .text:0x000539B0; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Hour_ControlCursol = .text:0x000539F8; // type:function size:0x7C scope:global align:4
+mMsg_Main_Cursol_PutString_Min_ControlCursol = .text:0x00053A74; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Sec_ControlCursol = .text:0x00053ABC; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Free = .text:0x00053B04; // type:function size:0x84 scope:global align:4
+mMsg_Main_Cursol_PutString_Free_cl = .text:0x00053B88; // type:function size:0x94 scope:global align:4
+mMsg_Main_Cursol_PutString_Free0_ControlCursol = .text:0x00053C1C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free1_ControlCursol = .text:0x00053C44; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free2_ControlCursol = .text:0x00053C6C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free3_ControlCursol = .text:0x00053C94; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free4_ControlCursol = .text:0x00053CBC; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free5_ControlCursol = .text:0x00053CE4; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free6_ControlCursol = .text:0x00053D0C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free7_ControlCursol = .text:0x00053D34; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free8_ControlCursol = .text:0x00053D5C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free9_ControlCursol = .text:0x00053D84; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free10_ControlCursol = .text:0x00053DAC; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free11_ControlCursol = .text:0x00053DD4; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free12_ControlCursol = .text:0x00053DFC; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free13_ControlCursol = .text:0x00053E24; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free14_ControlCursol = .text:0x00053E4C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free15_ControlCursol = .text:0x00053E74; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free16_ControlCursol = .text:0x00053E9C; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free17_ControlCursol = .text:0x00053EC4; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free18_ControlCursol = .text:0x00053EEC; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Free19_ControlCursol = .text:0x00053F14; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Determination_ControlCursol = .text:0x00053F3C; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_CountryName_ControlCursol = .text:0x00053F84; // type:function size:0x58 scope:global align:4
+mMsg_Main_Cursol_PutString_RamdomNumber2_ControlCursol = .text:0x00053FDC; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_PutString_Item = .text:0x00054024; // type:function size:0x84 scope:global align:4
+mMsg_Main_Cursol_PutString_Item0_ControlCursol = .text:0x000540A8; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Item1_ControlCursol = .text:0x000540D0; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Item2_ControlCursol = .text:0x000540F8; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Item3_ControlCursol = .text:0x00054120; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Item4_ControlCursol = .text:0x00054148; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_PutString_Mail = .text:0x00054170; // type:function size:0x5C scope:global align:4
+mMsg_Main_Cursol_PutString_Mail0_ControlCursol = .text:0x000541CC; // type:function size:0x28 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny_ControlCursol = .text:0x000541F4; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny0_ControlCursol = .text:0x00054248; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny1_ControlCursol = .text:0x0005426C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny2_ControlCursol = .text:0x00054290; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny3_ControlCursol = .text:0x000542B4; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny4_ControlCursol = .text:0x000542D8; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny5_ControlCursol = .text:0x000542FC; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny6_ControlCursol = .text:0x00054320; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny7_ControlCursol = .text:0x00054344; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny8_ControlCursol = .text:0x00054368; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetPlayerDestiny9_ControlCursol = .text:0x0005438C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetMessageContents_ControlCursol = .text:0x000543B0; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsNormal_ControlCursol = .text:0x00054404; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsAngry_ControlCursol = .text:0x00054428; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsSad_ControlCursol = .text:0x0005444C; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsFun_ControlCursol = .text:0x00054470; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsSleepy_ControlCursol = .text:0x00054494; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SetColorChar_ControlCursol = .text:0x000544B8; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_SoundCut_ControlCursol = .text:0x000544F8; // type:function size:0x84 scope:global align:4
+mMsg_Main_Cursol_SetLineOffset_ControlCursol = .text:0x0005457C; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_SetLineType_ControlCursol = .text:0x000545BC; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_SetCharScale_ControlCursol = .text:0x000545FC; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_Button2_ControlCursol = .text:0x0005463C; // type:function size:0x8C scope:global align:4
+mMsg_Main_Cursol_BgmMake_ControlCursol = .text:0x000546C8; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_BgmDelete_ControlCursol = .text:0x0005473C; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_MsgTimeEnd_ControlCursol = .text:0x000547B0; // type:function size:0x7C scope:global align:4
+mMsg_Main_Cursol_SoundTrgSys_ControlCursol = .text:0x0005482C; // type:function size:0x6C scope:global align:4
+mMsg_Main_Cursol_SetLineScale_ControlCursol = .text:0x00054898; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_SoundNoPage_ControlCursol = .text:0x000548D8; // type:function size:0x58 scope:global align:4
+mMsg_Main_Cursol_VoiceTrue_ControlCursol = .text:0x00054930; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_VoiceFalse_ControlCursol = .text:0x00054984; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_SelectNoB_ControlCursol = .text:0x000549D8; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_GiveOpen_ControlCursol = .text:0x00054A20; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_GiveClose_ControlCursol = .text:0x00054A94; // type:function size:0x74 scope:global align:4
+mMsg_Main_Cursol_SetMessageContentsGloomy_ControlCursol = .text:0x00054B08; // type:function size:0x24 scope:global align:4
+mMsg_Main_Cursol_SelectNoBClose_ControlCursol = .text:0x00054B2C; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_SetNextMessageRamdomSection_ControlCursol = .text:0x00054B74; // type:function size:0x98 scope:global align:4
+mMsg_Main_Cursol_AgbDummy_ControlCursol = .text:0x00054C0C; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_Space_ControlCursol = .text:0x00054C4C; // type:function size:0x40 scope:global align:4
+mMsg_Main_Cursol_MaleFemaleCheck_ControlCursol = .text:0x00054C8C; // type:function size:0xA8 scope:global align:4
+mMsg_Main_Cursol_PutString_IslandName_ControlCursol = .text:0x00054D34; // type:function size:0x50 scope:global align:4
+mMsg_Main_Cursol_SetCursolJust_ControlCursol = .text:0x00054D84; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_ClrCursolJust_ControlCursol = .text:0x00054DD8; // type:function size:0x54 scope:global align:4
+mMsg_Main_Cursol_CutArticle_ControlCursol = .text:0x00054E2C; // type:function size:0x58 scope:global align:4
+mMsg_Main_Cursol_CapitalLetter_ControlCursol = .text:0x00054E84; // type:function size:0x58 scope:global align:4
+mMsg_Main_Cursol_PutString_AmPm_ControlCursol = .text:0x00054EDC; // type:function size:0x48 scope:global align:4
+mMsg_Main_Cursol_Proc_ControlCursol = .text:0x00054F24; // type:function size:0x7C scope:global align:4
+mMsg_Main_Cursol_ControlCursol = .text:0x00054FA0; // type:function size:0x330 scope:global align:4
+mMsg_request_main_index_fromCursol = .text:0x000552D0; // type:function size:0x30 scope:global align:4
+mMsg_Main_Cursol = .text:0x00055300; // type:function size:0x6C scope:global align:4
+mMsg_MainSetup_Cursol = .text:0x0005536C; // type:function size:0x70 scope:global align:4
+mMsg_Main_Disappear_SetScale = .text:0x000553DC; // type:function size:0x98 scope:global align:4
+mMsg_request_main_index_fromDisappear = .text:0x00055474; // type:function size:0x30 scope:global align:4
+mMsg_Main_Disappear = .text:0x000554A4; // type:function size:0x54 scope:global align:4
+mMsg_MainSetup_Disappear = .text:0x000554F8; // type:function size:0xA0 scope:global align:4
+mMsg_request_main_index_fromAppear_wait = .text:0x00055598; // type:function size:0x4C scope:global align:4
+mMsg_Main_Appear_wait = .text:0x000555E4; // type:function size:0x88 scope:global align:4
+mMsg_MainSetup_Appear_wait = .text:0x0005566C; // type:function size:0x84 scope:global align:4
+mMsg_Main_Wait = .text:0x000556F0; // type:function size:0x20 scope:global align:4
+mMsg_MainSetup_Wait = .text:0x00055710; // type:function size:0x4C scope:global align:4
+mMsg_request_main_index_fromDisappear_wait = .text:0x0005575C; // type:function size:0x30 scope:global align:4
+mMsg_Main_Disappear_wait = .text:0x0005578C; // type:function size:0x54 scope:global align:4
+mMsg_MainSetup_Disappear_wait = .text:0x000557E0; // type:function size:0x74 scope:global align:4
+mMsg_SetMatrix = .text:0x00055854; // type:function size:0x11C scope:global align:4
+mMsg_UnSetMatrix = .text:0x00055970; // type:function size:0x20 scope:global align:4
+mMsg_DrawNameWindow = .text:0x00055990; // type:function size:0xC4 scope:global align:4
+mMsg_DrawWindowClientName = .text:0x00055A54; // type:function size:0x8C scope:global align:4
+mMsg_DrawWindowTurnButton = .text:0x00055AE0; // type:function size:0x78 scope:global align:4
+mMsg_DrawWindowBody = .text:0x00055B58; // type:function size:0x198 scope:global align:4
+mMsg_draw_font = .text:0x00055CF0; // type:function size:0x290 scope:global align:4
+mMsm_ClearRecord = .text:0x00055F80; // type:function size:0x24 scope:global align:4
+mMsm_GetMuseumMailName = .text:0x00055FA4; // type:function size:0x44 scope:global align:4
+mMsm_OrderInformationMail = .text:0x00055FE8; // type:function size:0x7C scope:global align:4
+mMsm_SendInformationMail = .text:0x00056064; // type:function size:0xC0 scope:global align:4
+mMsm_GetFossil = .text:0x00056124; // type:function size:0x5C scope:global align:4
+mMsm_GetFossilMailNo = .text:0x00056180; // type:function size:0x48 scope:global align:4
+mMsm_GetRemailAddIdx = .text:0x000561C8; // type:function size:0x24 scope:global align:4
+mMsm_Idx2RemailKind = .text:0x000561EC; // type:function size:0x74 scope:global align:4
+mMsm_GetRemailFreeIdx = .text:0x00056260; // type:function size:0x70 scope:global align:4
+mMsm_Idx2SetRemailInfo = .text:0x000562D0; // type:function size:0xAC scope:global align:4
+mMsm_Idx2ClearRemailInfo = .text:0x0005637C; // type:function size:0x28 scope:global align:4
+mMsm_PushRemailInfo = .text:0x000563A4; // type:function size:0xB8 scope:global align:4
+mMsm_SetRemailInfo = .text:0x0005645C; // type:function size:0xC4 scope:global align:4
+mMsm_SendResultMail = .text:0x00056520; // type:function size:0x2EC scope:global align:4
+mMsm_SendMuseumMail = .text:0x0005680C; // type:function size:0x114 scope:global align:4
+mMsm_GetDepositAbleNum = .text:0x00056920; // type:function size:0x84 scope:global align:4
+mMsm_GetDepositAbleNum_cancel = .text:0x000569A4; // type:function size:0xB0 scope:global align:4
+mMsm_DepositItemBlock_cancel = .text:0x00056A54; // type:function size:0x10C scope:global align:4
+mMsm_DepositItemBlock = .text:0x00056B60; // type:function size:0x120 scope:global align:4
+mMsm_DepositFossilBlock = .text:0x00056C80; // type:function size:0x3C scope:global align:4
+mMsm_DepositFossilBlockLine = .text:0x00056CBC; // type:function size:0x19C scope:global align:4
+mMsm_RecordDepositFossil = .text:0x00056E58; // type:function size:0x30 scope:global align:4
+mMsm_GetDepositBlockNum = .text:0x00056E88; // type:function size:0x40 scope:global align:4
+mMsm_DepositFossil = .text:0x00056EC8; // type:function size:0x12C scope:global align:4
+mMsm_SetPrivateCompMail = .text:0x00056FF4; // type:function size:0x18 scope:global align:4
+mMsm_CheckSendCompMail = .text:0x0005700C; // type:function size:0x78 scope:global align:4
+mMsm_SetSendCompMail = .text:0x00057084; // type:function size:0x68 scope:global align:4
+mMsm_SetCompMail = .text:0x000570EC; // type:function size:0x5C scope:global align:4
+mMsm_SendCompMail = .text:0x00057148; // type:function size:0xD0 scope:global align:4
+mMmd_FossilInfo = .text:0x00057218; // type:function size:0x50 scope:global align:4
+mMmd_ArtInfo = .text:0x00057268; // type:function size:0x50 scope:global align:4
+mMmd_InsectInfo = .text:0x000572B8; // type:function size:0x50 scope:global align:4
+mMmd_FishInfo = .text:0x00057308; // type:function size:0x50 scope:global align:4
+mMmd_SetFossil = .text:0x00057358; // type:function size:0x88 scope:global align:4
+mMmd_SetArt = .text:0x000573E0; // type:function size:0x88 scope:global align:4
+mMmd_SetInsect = .text:0x00057468; // type:function size:0x88 scope:global align:4
+mMmd_SetFish = .text:0x000574F0; // type:function size:0x88 scope:global align:4
+mMmd_GetDisplayInfo = .text:0x00057578; // type:function size:0x1F0 scope:global align:4
+mMmd_RequestMuseumDisplay = .text:0x00057768; // type:function size:0x200 scope:global align:4
+mMmd_MuseumFossilProcess_MakeFgData = .text:0x00057968; // type:function size:0xD4 scope:global align:4
+mMmd_dummy_process = .text:0x00057A3C; // type:function size:0x4 scope:global align:4
+mMmd_MakeMuseumDisplayData = .text:0x00057A40; // type:function size:0x6C scope:global align:4
+mMmd_DeletePresentedByPlayer = .text:0x00057AAC; // type:function size:0x1BC scope:global align:4
+mMmd_CountDisplayedFossil = .text:0x00057C68; // type:function size:0x60 scope:global align:4
+mMmd_CountDisplayedArt = .text:0x00057CC8; // type:function size:0x60 scope:global align:4
+mMmd_CountDisplayedInsect = .text:0x00057D28; // type:function size:0x60 scope:global align:4
+mMmd_CountDisplayedFish = .text:0x00057D88; // type:function size:0x60 scope:global align:4
+mMsr_Mushtime2Rtc = .text:0x00057DE8; // type:function size:0x84 scope:global align:4
+mMsr_Rtc2MushTime = .text:0x00057E6C; // type:function size:0x5C scope:global align:4
+mMsr_CheckMushroomDay = .text:0x00057EC8; // type:function size:0x34 scope:global align:4
+mMsr_Set15Minites = .text:0x00057EFC; // type:function size:0x5C scope:global align:4
+mMsr_GetFirstClearMushroomNum = .text:0x00057F58; // type:function size:0x9C scope:global align:4
+mMsr_GetBlockClearAbleMushroomNum = .text:0x00057FF4; // type:function size:0xB8 scope:global align:4
+mMsr_SetShareNum = .text:0x000580AC; // type:function size:0x17C scope:global align:4
+mMsr_ClearBlockCandidateMushroom = .text:0x00058228; // type:function size:0x7C scope:global align:4
+mMsr_ClearCandidateMushroom = .text:0x000582A4; // type:function size:0x6C scope:global align:4
+mMsr_ClearMushrooms = .text:0x00058310; // type:function size:0x1EC scope:global align:4
+mMsr_FirstClearMushroom = .text:0x000584FC; // type:function size:0xCC scope:global align:4
+mMsr_GetMushroomNum = .text:0x000585C8; // type:function size:0x98 scope:global align:4
+mMsr_CheckAroundTree = .text:0x00058660; // type:function size:0xD0 scope:global align:4
+mMsr_GetBlockSetAbleMushroomTreeNum = .text:0x00058730; // type:function size:0x90 scope:global align:4
+mMsr_SetMushroomAroundTree = .text:0x000587C0; // type:function size:0xEC scope:global align:4
+mMsr_SetBlockMashroom = .text:0x000588AC; // type:function size:0xD0 scope:global align:4
+mMsr_SetLineMushroom = .text:0x0005897C; // type:function size:0xD8 scope:global align:4
+mMsr_SetMushroomNum = .text:0x00058A54; // type:function size:0x210 scope:global align:4
+mMsr_SetMushroom = .text:0x00058C64; // type:function size:0x19C scope:global align:4
+mNT_get_itemTableNo = .text:0x00058E00; // type:function size:0xA8 scope:global align:4
+mNT_FishIdx2FishItemNo = .text:0x00058EA8; // type:function size:0x24 scope:global align:4
+bg_item_fg_sub = .text:0x00058ECC; // type:function size:0x2D0 scope:global align:4
+bg_item_fg_sub_tree_grow = .text:0x0005919C; // type:function size:0x118 scope:global align:4
+bg_item_fg_sub_dig2take_conv = .text:0x000592B4; // type:function size:0x108 scope:global align:4
+obj_hight_table_item0_nogrow = .text:0x000593BC; // type:function size:0x6C scope:global align:4
+FGTreeType_check = .text:0x00059428; // type:function size:0xE0 scope:global align:4
+mNT_ItIsStump = .text:0x00059508; // type:function size:0x60 scope:global align:4
+mNT_ItIsStoneCoin10 = .text:0x00059568; // type:function size:0x28 scope:global align:4
+mNT_ItIsReserveDummy = .text:0x00059590; // type:function size:0x20 scope:global align:4
+mNT_check_unknown = .text:0x000595B0; // type:function size:0x94 scope:global align:4
+mNW_InitMyOriginalPallet = .text:0x00059644; // type:function size:0x4C scope:global align:4
+mNW_InitMyOriginalName = .text:0x00059690; // type:function size:0x6C scope:global align:4
+mNW_InitMyOriginalTexture = .text:0x000596FC; // type:function size:0x7C scope:global align:4
+mNW_InitMyOriginal = .text:0x00059778; // type:function size:0x3C scope:global align:4
+mNW_InitOneMyOriginal = .text:0x000597B4; // type:function size:0x80 scope:global align:4
+mNW_CopyNeedleworkDefaultTexture = .text:0x00059834; // type:function size:0x50 scope:global align:4
+mNW_InitNeedleworkTexture = .text:0x00059884; // type:function size:0x60 scope:global align:4
+mNW_InitNeedleworkPelatteNo = .text:0x000598E4; // type:function size:0x44 scope:global align:4
+mNW_InitNeedleworkTextureName = .text:0x00059928; // type:function size:0x64 scope:global align:4
+mNW_InitNeedleworkData = .text:0x0005998C; // type:function size:0x28 scope:global align:4
+mNW_AGB_to_GC_texture = .text:0x000599B4; // type:function size:0x28 scope:global align:4
+mNW_GC_to_Agb_texture = .text:0x000599DC; // type:function size:0x20 scope:global align:4
+mNW_PaletteIdx2Palette = .text:0x000599FC; // type:function size:0x14 scope:global align:4
+mNW_CopyOriginalTextureClass = .text:0x00059A10; // type:function size:0x44 scope:global align:4
+mNW_CopyOriginalTexture = .text:0x00059A54; // type:function size:0x48 scope:global align:4
+mNW_CopyOriginalPalette = .text:0x00059A9C; // type:function size:0x4C scope:global align:4
+mNW_OverWriteOriginalTexture = .text:0x00059AE8; // type:function size:0x4C scope:global align:4
+mNW_OverWriteOriginalName = .text:0x00059B34; // type:function size:0x38 scope:global align:4
+mNW_SwapOriginalData = .text:0x00059B6C; // type:function size:0x84 scope:global align:4
+mNW_InitOriginalData = .text:0x00059BF0; // type:function size:0x64 scope:global align:4
+mNW_InitPrivateOriginalData = .text:0x00059C54; // type:function size:0x80 scope:global align:4
+mNtc_copy_data_list = .text:0x00059CD4; // type:function size:0x34 scope:global align:4
+mNtc_operate_data_list = .text:0x00059D08; // type:function size:0xC0 scope:global align:4
+mNtc_sort_data_list = .text:0x00059DC8; // type:function size:0x94 scope:global align:4
+mNtc_make_auto_nwrite_data_list = .text:0x00059E5C; // type:function size:0x28 scope:global align:4
+mNtc_get_auto_nwrite_data_last_idx = .text:0x00059E84; // type:function size:0x44 scope:global align:4
+mNtc_ClearPage = .text:0x00059EC8; // type:function size:0x70 scope:global align:4
+mNtc_SetInitData = .text:0x00059F38; // type:function size:0xC4 scope:global align:4
+mNtc_notice_write_num = .text:0x00059FFC; // type:function size:0x74 scope:global align:4
+mNtc_notice_write = .text:0x0005A070; // type:function size:0xA8 scope:global align:4
+mNtc_set_landname_string = .text:0x0005A118; // type:function size:0x50 scope:global align:4
+mNtc_set_treasure_string = .text:0x0005A168; // type:function size:0xCC scope:global align:4
+mNtc_check_treasure = .text:0x0005A234; // type:function size:0x360 scope:global align:4
+mNtc_set_near_old_nwrite_data = .text:0x0005A594; // type:function size:0xA8 scope:global align:4
+mNtc_make_auto_nwrite_day_string = .text:0x0005A63C; // type:function size:0x90 scope:global align:4
+mNtc_set_auto_nwrite_common_string = .text:0x0005A6CC; // type:function size:0x5C scope:global align:4
+mNtc_set_auto_nwrite_fishing_string = .text:0x0005A728; // type:function size:0xF8 scope:global align:4
+mNtc_set_auto_nwrite_string = .text:0x0005A820; // type:function size:0x84 scope:global align:4
+mNtc_auto_nwrite_time_ct = .text:0x0005A8A4; // type:function size:0xA0 scope:global align:4
+mNtc_get_fishing_day = .text:0x0005A944; // type:function size:0x180 scope:global align:4
+mNtc_set_fishing_term = .text:0x0005AAC4; // type:function size:0xE0 scope:global align:4
+mNtc_decide_nwrite_data = .text:0x0005ABA4; // type:function size:0x19C scope:global align:4
+mNtc_set_auto_nwrite = .text:0x0005AD40; // type:function size:0x194 scope:global align:4
+mNtc_set_auto_nwrite_data = .text:0x0005AED4; // type:function size:0x1C4 scope:global align:4
+mNpc_MakeRandTable = .text:0x0005B098; // type:function size:0xD8 scope:global align:4
+mNpc_ClearBufSpace1 = .text:0x0005B170; // type:function size:0x24 scope:global align:4
+mNpc_AddNowNpcMax = .text:0x0005B194; // type:function size:0x18 scope:global align:4
+mNpc_SubNowNpcMax = .text:0x0005B1AC; // type:function size:0x18 scope:global align:4
+mNpc_ClearAnimalPersonalID = .text:0x0005B1C4; // type:function size:0x58 scope:global align:4
+mNpc_CheckFreeAnimalPersonalID = .text:0x0005B21C; // type:function size:0x34 scope:global align:4
+mNpc_CopyAnimalPersonalID = .text:0x0005B250; // type:function size:0x60 scope:global align:4
+mNpc_CheckCmpAnimalPersonalID = .text:0x0005B2B0; // type:function size:0x84 scope:global align:4
+mNpc_GetAnimalNum = .text:0x0005B334; // type:function size:0x6C scope:global align:4
+mNpc_CheckRemoveExp = .text:0x0005B3A0; // type:function size:0xC scope:global align:4
+mNpc_GetRemoveTime = .text:0x0005B3AC; // type:function size:0xC scope:global align:4
+mNpc_SetParentName = .text:0x0005B3B8; // type:function size:0x64 scope:global align:4
+mNpc_SetParentNameAllAnimal = .text:0x0005B41C; // type:function size:0x6C scope:global align:4
+mNpc_ClearAnimalMail = .text:0x0005B488; // type:function size:0x6C scope:global align:4
+mNpc_ClearAnimalMemory = .text:0x0005B4F4; // type:function size:0xBC scope:global align:4
+mNpc_ClearIslandAnimalMemory = .text:0x0005B5B0; // type:function size:0xBC scope:global align:4
+mNpc_AddFriendship = .text:0x0005B66C; // type:function size:0x44 scope:global align:4
+mNpc_CheckFreeAnimalMemory = .text:0x0005B6B0; // type:function size:0x3C scope:global align:4
+mNpc_RenewalAnimalMemory = .text:0x0005B6EC; // type:function size:0xE0 scope:global align:4
+mNpc_GetFreeAnimalMemoryIdx = .text:0x0005B7CC; // type:function size:0x6C scope:global align:4
+mNpc_GetOldPlayerAnimalMemoryIdx = .text:0x0005B838; // type:function size:0xD0 scope:global align:4
+mNpc_ForceGetFreeAnimalMemoryIdx = .text:0x0005B908; // type:function size:0x180 scope:global align:4
+mNpc_ResetAnimalRelation = .text:0x0005BA88; // type:function size:0x64 scope:global align:4
+mNpc_SetAnimalMemory_NotSetDay = .text:0x0005BAEC; // type:function size:0x78 scope:global align:4
+mNpc_SetAnimalMemory = .text:0x0005BB64; // type:function size:0x54 scope:global align:4
+mNpc_GetAnimalMemoryIdx = .text:0x0005BBB8; // type:function size:0x74 scope:global align:4
+mNpc_SetAnimalLastTalk = .text:0x0005BC2C; // type:function size:0x110 scope:global align:4
+mNpc_SetAnimalPersonalID2Memory = .text:0x0005BD3C; // type:function size:0xB0 scope:global align:4
+mNpc_GetHighestFriendshipIdx = .text:0x0005BDEC; // type:function size:0x84 scope:global align:4
+mNpc_SelectBestFriend = .text:0x0005BE70; // type:function size:0xC8 scope:global align:4
+mNpc_GetAnimalMemoryBestFriend = .text:0x0005BF38; // type:function size:0xB4 scope:global align:4
+mNpc_GetAnimalMemoryFriend_Land_Sex = .text:0x0005BFEC; // type:function size:0xC0 scope:global align:4
+mNpc_GetAnimalMemoryNum = .text:0x0005C0AC; // type:function size:0x68 scope:global align:4
+mNpc_GetAnimalMemoryLetterNum = .text:0x0005C114; // type:function size:0x78 scope:global align:4
+mNpc_GetAnimalMemoryLandKindNum = .text:0x0005C18C; // type:function size:0xF0 scope:global align:4
+mNpc_ClearAnimalInfo = .text:0x0005C27C; // type:function size:0x9C scope:global align:4
+mNpc_ClearIslandAnimalInfo = .text:0x0005C318; // type:function size:0x90 scope:global align:4
+mNpc_ClearAnyAnimalInfo = .text:0x0005C3A8; // type:function size:0x54 scope:global align:4
+mNpc_CheckFreeAnimalInfo = .text:0x0005C3FC; // type:function size:0x38 scope:global align:4
+mNpc_GetFreeAnimalInfo = .text:0x0005C434; // type:function size:0x6C scope:global align:4
+mNpc_UseFreeAnimalInfo = .text:0x0005C4A0; // type:function size:0x58 scope:global align:4
+mNpc_CopyAnimalInfo = .text:0x0005C4F8; // type:function size:0x24 scope:global align:4
+mNpc_SearchAnimalinfo = .text:0x0005C51C; // type:function size:0x44 scope:global align:4
+mNpc_GetAnimalInfoP = .text:0x0005C560; // type:function size:0x68 scope:global align:4
+mNpc_SearchAnimalPersonalID = .text:0x0005C5C8; // type:function size:0x88 scope:global align:4
+mNpc_GetOtherAnimalPersonalIDOtherBlock = .text:0x0005C650; // type:function size:0x28C scope:global align:4
+mNpc_GetOtherAnimalPersonalID = .text:0x0005C8DC; // type:function size:0x2C scope:global align:4
+mNpc_SetAnimalThisLand = .text:0x0005C908; // type:function size:0x7C scope:global align:4
+mNpc_GetSameLooksNum = .text:0x0005C984; // type:function size:0x44 scope:global align:4
+mNpc_CheckNpcExistBlock = .text:0x0005C9C8; // type:function size:0xAC scope:global align:4
+mNpc_Mail2AnimalMail = .text:0x0005CA74; // type:function size:0x84 scope:global align:4
+mNpc_AnimalMail2Mail = .text:0x0005CAF8; // type:function size:0xBC scope:global align:4
+mNpc_CheckMailChar = .text:0x0005CBB4; // type:function size:0x60 scope:global align:4
+mNpc_CheckNormalMail_sub = .text:0x0005CC14; // type:function size:0xF4 scope:global align:4
+mNpc_CheckNormalMail_length = .text:0x0005CD08; // type:function size:0xA4 scope:global align:4
+mNpc_CheckNormalMail_nes = .text:0x0005CDAC; // type:function size:0x4C scope:global align:4
+mNpc_CheckNormalMail = .text:0x0005CDF8; // type:function size:0x20 scope:global align:4
+mNpc_SetMailCondThisLand = .text:0x0005CE18; // type:function size:0x80 scope:global align:4
+mNpc_SetMailCondOtherLand = .text:0x0005CE98; // type:function size:0xAC scope:global align:4
+mNpc_SetRemailCond = .text:0x0005CF44; // type:function size:0x60 scope:global align:4
+mNpc_SetPresentCloth = .text:0x0005CFA4; // type:function size:0x110 scope:global align:4
+mNpc_SendMailtoNpc = .text:0x0005D0B4; // type:function size:0x1DC scope:global align:4
+mNpc_ClearRemail = .text:0x0005D290; // type:function size:0x64 scope:global align:4
+mNpc_GetRemailPresent = .text:0x0005D2F4; // type:function size:0x78 scope:global align:4
+mNpc_GetHandbillz = .text:0x0005D36C; // type:function size:0xC4 scope:global align:4
+mNpc_SetRemailFreeString = .text:0x0005D430; // type:function size:0x160 scope:global align:4
+mNpc_GetRemailGoodData = .text:0x0005D590; // type:function size:0x164 scope:global align:4
+mNpc_GetRemailWrongData = .text:0x0005D6F4; // type:function size:0xF0 scope:global align:4
+mNpc_GetRemailData = .text:0x0005D7E4; // type:function size:0xF4 scope:global align:4
+mNpc_SendRemailPostOffice = .text:0x0005D8D8; // type:function size:0x94 scope:global align:4
+mNpc_CheckLetterTime = .text:0x0005D96C; // type:function size:0x48 scope:global align:4
+mNpc_Remail = .text:0x0005D9B4; // type:function size:0x13C scope:global align:4
+mNpc_GetPaperType = .text:0x0005DAF0; // type:function size:0x60 scope:global align:4
+mNpc_LoadMailDataCommon2 = .text:0x0005DB50; // type:function size:0xC4 scope:global align:4
+mNpc_GetEventPresent = .text:0x0005DC14; // type:function size:0x54 scope:global align:4
+mNpc_GetEventMail = .text:0x0005DC68; // type:function size:0xA4 scope:global align:4
+mNpc_SendEventPresentMail = .text:0x0005DD0C; // type:function size:0x10C scope:global align:4
+mNpc_SendEventPresentMailSex = .text:0x0005DE18; // type:function size:0xB8 scope:global align:4
+mNpc_SendVtdayMail = .text:0x0005DED0; // type:function size:0x170 scope:global align:4
+mNpc_GetBirthdayPresent = .text:0x0005E040; // type:function size:0x88 scope:global align:4
+mNpc_GetBirthdayCard = .text:0x0005E0C8; // type:function size:0xDC scope:global align:4
+mNpc_SendBirthdayCard = .text:0x0005E1A4; // type:function size:0x104 scope:global align:4
+mNpc_CheckFriendship = .text:0x0005E2A8; // type:function size:0xA4 scope:global align:4
+mNpc_SendEventBirthdayCard2 = .text:0x0005E34C; // type:function size:0xDC scope:global align:4
+mNpc_GetXmasCardData = .text:0x0005E428; // type:function size:0x88 scope:global align:4
+mNpc_SendEventXmasCard = .text:0x0005E4B0; // type:function size:0xCC scope:global align:4
+mNpc_GetPresentClothMemoryIdx = .text:0x0005E57C; // type:function size:0x44 scope:global align:4
+mNpc_GetPresentClothMemoryIdx_rnd = .text:0x0005E5C0; // type:function size:0x104 scope:global align:4
+mNpc_CheckTalkPresentCloth = .text:0x0005E6C4; // type:function size:0x48 scope:global align:4
+mNpc_ChangePresentCloth = .text:0x0005E70C; // type:function size:0xE0 scope:global align:4
+mNpc_GetWordEnding = .text:0x0005E7EC; // type:function size:0x58 scope:global align:4
+mNpc_ResetWordEnding = .text:0x0005E844; // type:function size:0x64 scope:global align:4
+mNpc_GetFreeEventNpcIdx = .text:0x0005E8A8; // type:function size:0x3C scope:global align:4
+mNpc_RegistEventNpc = .text:0x0005E8E4; // type:function size:0xC0 scope:global align:4
+mNpc_UnRegistEventNpc = .text:0x0005E9A4; // type:function size:0x50 scope:global align:4
+mNpc_ClearEventNpc = .text:0x0005E9F4; // type:function size:0x34 scope:global align:4
+mNpc_GetSameEventNpc = .text:0x0005EA28; // type:function size:0x38 scope:global align:4
+mNpc_GetFreeMaskNpcIdx = .text:0x0005EA60; // type:function size:0x3C scope:global align:4
+mNpc_RegistMaskNpc = .text:0x0005EA9C; // type:function size:0x144 scope:global align:4
+mNpc_UnRegistMaskNpc = .text:0x0005EBE0; // type:function size:0x50 scope:global align:4
+mNpc_ClearMaskNpc = .text:0x0005EC30; // type:function size:0x34 scope:global align:4
+mNpc_GetSameMaskNpc = .text:0x0005EC64; // type:function size:0x38 scope:global align:4
+mNpc_GetLooks = .text:0x0005EC9C; // type:function size:0x28 scope:global align:4
+mNpc_SetDefAnimalInfo = .text:0x0005ECC4; // type:function size:0x88 scope:global align:4
+mNpc_SetDefAnimalCloth = .text:0x0005ED4C; // type:function size:0x40 scope:global align:4
+mNpc_SetDefAnimalUmbrella = .text:0x0005ED8C; // type:function size:0x3C scope:global align:4
+mNpc_SetDefAnimal = .text:0x0005EDC8; // type:function size:0x48 scope:global align:4
+mNpc_SetHaveAppeared = .text:0x0005EE10; // type:function size:0x50 scope:global align:4
+mNpc_GetHaveAppeared_idx = .text:0x0005EE60; // type:function size:0x3C scope:global align:4
+mNpc_GetDefGrowPermission = .text:0x0005EE9C; // type:function size:0x1C scope:global align:4
+mNpc_GetLooks2NotHaveAppearedNum = .text:0x0005EEB8; // type:function size:0xB0 scope:global align:4
+mNpc_ResetHaveAppeared_common = .text:0x0005EF68; // type:function size:0x64 scope:global align:4
+mNpc_ResetHaveAppeared = .text:0x0005EFCC; // type:function size:0x98 scope:global align:4
+mNpc_DecideLivingNpcMax = .text:0x0005F064; // type:function size:0x14C scope:global align:4
+mNpc_SetAnimalTitleDemo = .text:0x0005F1B0; // type:function size:0x90 scope:global align:4
+mNpc_MakeReservedListBeforeFieldct = .text:0x0005F240; // type:function size:0x128 scope:global align:4
+mNpc_MakeReservedListAfterFieldct = .text:0x0005F368; // type:function size:0x138 scope:global align:4
+mNpc_BuildHouseBeforeFieldct = .text:0x0005F4A0; // type:function size:0x130 scope:global align:4
+mNpc_DestroyHouse = .text:0x0005F5D0; // type:function size:0xE0 scope:global align:4
+mNpc_SetNpcHome = .text:0x0005F6B0; // type:function size:0x160 scope:global align:4
+mNpc_InitNpcData = .text:0x0005F810; // type:function size:0x58 scope:global align:4
+mNpc_InitNpcList = .text:0x0005F868; // type:function size:0x90 scope:global align:4
+mNpc_SetNpcList = .text:0x0005F8F8; // type:function size:0x170 scope:global align:4
+mNpc_SetNpcinfo = .text:0x0005FA68; // type:function size:0x144 scope:global align:4
+mNpc_AddNpc_inNpcRoom = .text:0x0005FBAC; // type:function size:0xC0 scope:global align:4
+mNpc_AddNpc_inNpcRoomIsland = .text:0x0005FC6C; // type:function size:0x60 scope:global align:4
+mNpc_AddNpc_inKamakura = .text:0x0005FCCC; // type:function size:0xB8 scope:global align:4
+mNpc_AddNpc_inBlock = .text:0x0005FD84; // type:function size:0xF0 scope:global align:4
+mNpc_RenewalNpcRoom = .text:0x0005FE74; // type:function size:0x114 scope:global align:4
+mNpc_RenewalSetNpc = .text:0x0005FF88; // type:function size:0x18C scope:global align:4
+mNpc_GetFriendAnimalNum = .text:0x00060114; // type:function size:0x8C scope:global align:4
+mNpc_CheckFriendAllAnimal = .text:0x000601A0; // type:function size:0x44 scope:global align:4
+mNpc_CheckSelectFurniture = .text:0x000601E4; // type:function size:0x9C scope:global align:4
+mNpc_DecideNpcFurniture = .text:0x00060280; // type:function size:0x150 scope:global align:4
+mNpc_SetNpcFurnitureRandom = .text:0x000603D0; // type:function size:0x88 scope:global align:4
+mNpc_GetNpcFurniture = .text:0x00060458; // type:function size:0x50 scope:global align:4
+mNpc_ClearInAnimal = .text:0x000604A8; // type:function size:0x28 scope:global align:4
+mNpc_GetInAnimalP = .text:0x000604D0; // type:function size:0xC scope:global align:4
+mNpc_RenewRemoveHistory = .text:0x000604DC; // type:function size:0x38 scope:global align:4
+mNpc_DecideRemoveAnimalNo_Friend = .text:0x00060514; // type:function size:0x1BC scope:global align:4
+mNpc_DecideRemoveAnimalNo = .text:0x000606D0; // type:function size:0xD4 scope:global align:4
+mNpc_SetRemoveAnimalNo = .text:0x000607A4; // type:function size:0xA4 scope:global align:4
+mNpc_CheckGoodbyAnimalMemoryNum = .text:0x00060848; // type:function size:0xFC scope:global align:4
+mNpc_GetGoodbyAnimalIdx = .text:0x00060944; // type:function size:0x290 scope:global align:4
+mNpc_ClearGoodbyMail = .text:0x00060BD4; // type:function size:0x34 scope:global align:4
+mNpc_FirstClearGoodbyMail = .text:0x00060C08; // type:function size:0x28 scope:global align:4
+mNpc_SetGoodbyAnimalMail = .text:0x00060C30; // type:function size:0xA0 scope:global align:4
+mNpc_SetGoodbyMailData = .text:0x00060CD0; // type:function size:0xD4 scope:global align:4
+mNpc_SendGoodbyAnimalMailOne = .text:0x00060DA4; // type:function size:0x104 scope:global align:4
+mNpc_SendGoodbyAnimalMail = .text:0x00060EA8; // type:function size:0xC4 scope:global align:4
+mNpc_SendRegisteredGoodbyMail = .text:0x00060F6C; // type:function size:0x28 scope:global align:4
+mNpc_GetRemoveAnimal = .text:0x00060F94; // type:function size:0x268 scope:global align:4
+mNpc_CheckBuildHouse = .text:0x000611FC; // type:function size:0x88 scope:global align:4
+mNpc_SetReturnAnimal = .text:0x00061284; // type:function size:0x278 scope:global align:4
+mNpc_AddActor_inBlock = .text:0x000614FC; // type:function size:0x20 scope:global align:4
+mNpc_SetNpcNameID = .text:0x0006151C; // type:function size:0x34 scope:global align:4
+mNpc_LoadNpcNameString = .text:0x00061550; // type:function size:0xA8 scope:global align:4
+mNpc_GetNpcWorldNamePTableNo = .text:0x000615F8; // type:function size:0x54 scope:global align:4
+mNpc_GetNpcWorldNameTableNo = .text:0x0006164C; // type:function size:0x4C scope:global align:4
+mNpc_ClearCacheName = .text:0x00061698; // type:function size:0x44 scope:global align:4
+mNpc_GetCacheName = .text:0x000616DC; // type:function size:0x5C scope:global align:4
+mNpc_SetCacheName = .text:0x00061738; // type:function size:0x58 scope:global align:4
+mNpc_GetNpcWorldNameAnm = .text:0x00061790; // type:function size:0xA4 scope:global align:4
+mNpc_GetActorWorldNameP = .text:0x00061834; // type:function size:0x104 scope:global align:4
+mNpc_GetActorWorldName = .text:0x00061938; // type:function size:0x4C scope:global align:4
+mNpc_GetNpcWorldNameP = .text:0x00061984; // type:function size:0x4C scope:global align:4
+mNpc_GetNpcWorldName = .text:0x000619D0; // type:function size:0x134 scope:global align:4
+mNpc_GetRandomAnimalName = .text:0x00061B04; // type:function size:0x10C scope:global align:4
+mNpc_GetAnimalPlateName = .text:0x00061C10; // type:function size:0x130 scope:global align:4
+mNpc_GetNpcLooks = .text:0x00061D40; // type:function size:0x30 scope:global align:4
+mNpc_GetActorSex = .text:0x00061D70; // type:function size:0x38 scope:global align:4
+mNpc_GetLooks2Sex = .text:0x00061DA8; // type:function size:0x3C scope:global align:4
+mNpc_GetAnimalSex = .text:0x00061DE4; // type:function size:0x38 scope:global align:4
+mNpc_GetNpcSex = .text:0x00061E1C; // type:function size:0x44 scope:global align:4
+mNpc_GetNpcSoundSpecNotAnimal = .text:0x00061E60; // type:function size:0x38 scope:global align:4
+mNpc_GetNpcSoundSpec = .text:0x00061E98; // type:function size:0x84 scope:global align:4
+mNpc_InitRemoveHistory = .text:0x00061F1C; // type:function size:0x28 scope:global align:4
+mNpc_InitNpcAllInfo = .text:0x00061F44; // type:function size:0x90 scope:global align:4
+mNpc_CheckGrowFieldRank = .text:0x00061FD4; // type:function size:0x80 scope:global align:4
+mNpc_CheckGrow = .text:0x00062054; // type:function size:0xF4 scope:global align:4
+mNpc_GetMinLooks = .text:0x00062148; // type:function size:0x15C scope:global align:4
+mNpc_GetMinSex = .text:0x000622A4; // type:function size:0xA4 scope:global align:4
+mNpc_GrowLooksNpcIdx = .text:0x00062348; // type:function size:0x1F8 scope:global align:4
+mNpc_SetAnimalInfoNpcIdx = .text:0x00062540; // type:function size:0x54 scope:global align:4
+mNpc_SetGrowNpc = .text:0x00062594; // type:function size:0x98 scope:global align:4
+mNpc_Grow = .text:0x0006262C; // type:function size:0x1D0 scope:global align:4
+mNpc_ForceRemove = .text:0x000627FC; // type:function size:0x140 scope:global align:4
+mNpc_DecideMaskNpc_summercamp = .text:0x0006293C; // type:function size:0xBC scope:global align:4
+mNpc_RegistMaskNpc_summercamp = .text:0x000629F8; // type:function size:0x134 scope:global align:4
+mNpc_CheckNpcSet_fgcol = .text:0x00062B2C; // type:function size:0x50 scope:global align:4
+mNpc_CheckNpcSet_fgcol_hard = .text:0x00062B7C; // type:function size:0x68 scope:global align:4
+mNpc_CheckNpcSet = .text:0x00062BE4; // type:function size:0x90 scope:global align:4
+mNpc_GetMakeUtNuminBlock_hard_area = .text:0x00062C74; // type:function size:0x180 scope:global align:4
+mNpc_GetMakeUtNuminBlock_area = .text:0x00062DF4; // type:function size:0x1E0 scope:global align:4
+mNpc_GetMakeUtNuminBlock = .text:0x00062FD4; // type:function size:0x24 scope:global align:4
+mNpc_CheckNpcSet_height = .text:0x00062FF8; // type:function size:0xA8 scope:global align:4
+mNpc_GetMakeUtNuminBlock33 = .text:0x000630A0; // type:function size:0x118 scope:global align:4
+mNpc_GetMakeUtNuminBlock_hide_hard_area = .text:0x000631B8; // type:function size:0x1C4 scope:global align:4
+mNpc_ClearTalkInfo = .text:0x0006337C; // type:function size:0x50 scope:global align:4
+mNpc_TimerCountDown = .text:0x000633CC; // type:function size:0x18 scope:global align:4
+mNpc_SetUnlockTimer = .text:0x000633E4; // type:function size:0x20 scope:global align:4
+mNpc_CountTalkNum = .text:0x00063404; // type:function size:0x64 scope:global align:4
+mNpc_CheckOverImpatient = .text:0x00063468; // type:function size:0x50 scope:global align:4
+mNpc_GetOverImpatient = .text:0x000634B8; // type:function size:0x64 scope:global align:4
+mNpc_CheckQuestRequest = .text:0x0006351C; // type:function size:0x3C scope:global align:4
+mNpc_SetQuestRequestOFF = .text:0x00063558; // type:function size:0x68 scope:global align:4
+mNpc_UnlockTimerCountDown = .text:0x000635C0; // type:function size:0x30 scope:global align:4
+mNpc_TalkInfoMove = .text:0x000635F0; // type:function size:0xBC scope:global align:4
+mNpc_TalkEndMove = .text:0x000636AC; // type:function size:0x98 scope:global align:4
+mNpc_GetNpcFloorNo = .text:0x00063744; // type:function size:0x78 scope:global align:4
+mNpc_GetNpcWallNo = .text:0x000637BC; // type:function size:0x78 scope:global align:4
+mNpc_SetTalkBee = .text:0x00063834; // type:function size:0xC4 scope:global align:4
+mNpc_GetFishCompleteTalk = .text:0x000638F8; // type:function size:0x1C scope:global align:4
+mNpc_GetInsectCompleteTalk = .text:0x00063914; // type:function size:0x1C scope:global align:4
+mNpc_SetFishCompleteTalk = .text:0x00063930; // type:function size:0x1C scope:global align:4
+mNpc_SetInsectCompleteTalk = .text:0x0006394C; // type:function size:0x1C scope:global align:4
+mNpc_SetNpcHomeYpos = .text:0x00063968; // type:function size:0x9C scope:global align:4
+mNpc_SetIslandAnimalHouse = .text:0x00063A04; // type:function size:0xD0 scope:global align:4
+mNpc_DecideIslandNpc = .text:0x00063AD4; // type:function size:0x118 scope:global align:4
+mNpc_ClearIslandItemList = .text:0x00063BEC; // type:function size:0x24 scope:global align:4
+mNpc_GetFreeIslandItemListIdx = .text:0x00063C10; // type:function size:0x3C scope:global align:4
+mNpc_SetIslandItemList = .text:0x00063C4C; // type:function size:0x54 scope:global align:4
+mNpc_SetIslandRoomFtr = .text:0x00063CA0; // type:function size:0x98 scope:global align:4
+mNpc_GetIslandFtrIdx = .text:0x00063D38; // type:function size:0x1B8 scope:global align:4
+mNpc_SetIslandGetFtr = .text:0x00063EF0; // type:function size:0x248 scope:global align:4
+mNpc_SetIslandGetFtrtoRoom = .text:0x00064138; // type:function size:0xA4 scope:global align:4
+mNpc_SetIslandGetLetter = .text:0x000641DC; // type:function size:0xC scope:global align:4
+mNpc_GetIslandGetLetter = .text:0x000641E8; // type:function size:0x10 scope:global align:4
+mNpc_SetIslandCheckFtrMsg = .text:0x000641F8; // type:function size:0xC scope:global align:4
+mNpc_GetIslandCheckFtrMsg = .text:0x00064204; // type:function size:0x10 scope:global align:4
+mNpc_ClearIslandNpcRoomData = .text:0x00064214; // type:function size:0x2C scope:global align:4
+mNpc_IslandNpcRoomDataSet = .text:0x00064240; // type:function size:0xE4 scope:global align:4
+mNpc_GetIslandRoomInfoP = .text:0x00064324; // type:function size:0x50 scope:global align:4
+mNpc_GetIslandRoomP = .text:0x00064374; // type:function size:0x3C scope:global align:4
+mNpc_GetIslandWallFloorIdx = .text:0x000643B0; // type:function size:0x70 scope:global align:4
+mNpc_getNormalFtr = .text:0x00064420; // type:function size:0x5C scope:global align:4
+mNpc_CheckIslandNpcRoomFtrIdx = .text:0x0006447C; // type:function size:0xAC scope:global align:4
+mNpc_CheckIslandNpcRoomFtrItemNo_keep = .text:0x00064528; // type:function size:0x204 scope:global align:4
+mNpc_ChangeIslandRoom = .text:0x0006472C; // type:function size:0xE4 scope:global align:4
+mNpc_CheckFtrIsIslandBestFtr = .text:0x00064810; // type:function size:0x98 scope:global align:4
+mNpc_CheckFtrIsIslandNormalFtr = .text:0x000648A8; // type:function size:0x50 scope:global align:4
+mNpc_SetIslandFtr = .text:0x000648F8; // type:function size:0x2A4 scope:global align:4
+mNpc_EraseIslandFtr = .text:0x00064B9C; // type:function size:0x228 scope:global align:4
+mNpc_EraseIslandFtr_keep = .text:0x00064DC4; // type:function size:0x214 scope:global align:4
+mNpc_ClearIslandPresentFtrInfo_common = .text:0x00064FD8; // type:function size:0x34 scope:global align:4
+mNpc_ClearIslandPresentFtrInfo = .text:0x0006500C; // type:function size:0x28 scope:global align:4
+mNpc_SetIslandPresentFtr = .text:0x00065034; // type:function size:0x1D4 scope:global align:4
+mNpc_RestoreIslandPresentFtr = .text:0x00065208; // type:function size:0x70 scope:global align:4
+mNpc_GetIslandRoomFtrNum = .text:0x00065278; // type:function size:0x58 scope:global align:4
+mNpc_CheckIslandPresentFtrIs = .text:0x000652D0; // type:function size:0x50 scope:global align:4
+mNpc_GetIslandPresentFtr = .text:0x00065320; // type:function size:0x10 scope:global align:4
+mNpc_GetIslandPresentFtrPersonalID = .text:0x00065330; // type:function size:0x44 scope:global align:4
+mNpc_GetRandomBestFtr = .text:0x00065374; // type:function size:0x1D0 scope:global align:4
+mNpc_GetOtherBestFtr = .text:0x00065544; // type:function size:0x1EC scope:global align:4
+mNpc_GetPlayerBestFtr = .text:0x00065730; // type:function size:0x1C8 scope:global align:4
+mNpc_GetPlayerFtr = .text:0x000658F8; // type:function size:0x1B0 scope:global align:4
+mNpc_CheckIslandAnimalTableNo = .text:0x00065AA8; // type:function size:0x40 scope:global align:4
+mNpc_CheckIslandAnimalID = .text:0x00065AE8; // type:function size:0x54 scope:global align:4
+mNpc_CheckIslandAnimal = .text:0x00065B3C; // type:function size:0x34 scope:global align:4
+mNpc_GetMDIdx = .text:0x00065B70; // type:function size:0x54 scope:global align:4
+mNpc_GetIslandMDIdx = .text:0x00065BC4; // type:function size:0x30 scope:global align:4
+mNpc_ClearHPMail = .text:0x00065BF4; // type:function size:0x24 scope:global align:4
+mNpc_AllClearHPMailPlayerIdx = .text:0x00065C18; // type:function size:0x74 scope:global align:4
+mNpc_ReceiveHPMail = .text:0x00065C8C; // type:function size:0xF8 scope:global align:4
+mNpc_SendHPMailNum_famicom = .text:0x00065D84; // type:function size:0x1BC scope:global align:4
+mNpc_SendHPMailNum_popular = .text:0x00065F40; // type:function size:0x2DC scope:global align:4
+mNpc_CheckHit_Rate = .text:0x0006621C; // type:function size:0x4C scope:global align:4
+mNpc_GetHit = .text:0x00066268; // type:function size:0x80 scope:global align:4
+mNPC_get_gobi_str_from_name = .text:0x000662E8; // type:function size:0x64 scope:global align:4
+mNpc_GetHit_cardE = .text:0x0006634C; // type:function size:0x80 scope:global align:4
+mNpc_SendHPMailNum_cardE = .text:0x000663CC; // type:function size:0x424 scope:global align:4
+mNpc_SendHPMailNum_NG = .text:0x000667F0; // type:function size:0xDC scope:global align:4
+mNpc_SendHPMailNum_cardE_mini_user_password_common = .text:0x000668CC; // type:function size:0xCC scope:global align:4
+mNpc_SendHPMailNum_user_password = .text:0x00066998; // type:function size:0x84 scope:global align:4
+mNpc_SendHPMailNum_cardE_mini = .text:0x00066A1C; // type:function size:0x60 scope:global align:4
+mNpc_SendHPMailNum_magazine = .text:0x00066A7C; // type:function size:0x1DC scope:global align:4
+mNpc_SendHPMail_analysis = .text:0x00066C58; // type:function size:0x80 scope:global align:4
+mNpc_SendHPMail = .text:0x00066CD8; // type:function size:0x110 scope:global align:4
+mNpc_PrintRemoveInfo = .text:0x00066DE8; // type:function size:0x11C scope:global align:4
+mNpc_PrintFriendship_fdebug_1 = .text:0x00066F04; // type:function size:0x1F4 scope:global align:4
+mNpc_SetTalkAnimalIdx_fdebug = .text:0x000670F8; // type:function size:0x30 scope:global align:4
+mNpc_PrintFriendship_fdebug_0 = .text:0x00067128; // type:function size:0x164 scope:global align:4
+mNpc_PrintFriendship_fdebug = .text:0x0006728C; // type:function size:0x3C scope:global align:4
+mNPS_get_schedule_area = .text:0x000672C8; // type:function size:0x3C scope:global align:4
+mNPS_set_schedule_area = .text:0x00067304; // type:function size:0x5C scope:global align:4
+mNPS_set_island_schedule_area = .text:0x00067360; // type:function size:0x40 scope:global align:4
+mNPS_reset_schedule_area = .text:0x000673A0; // type:function size:0x30 scope:global align:4
+mNPS_schedule_manager_sub = .text:0x000673D0; // type:function size:0x74 scope:global align:4
+mNPS_schedule_manager_sub0 = .text:0x00067444; // type:function size:0x38 scope:global align:4
+mNPS_schedule_manager_sub1 = .text:0x0006747C; // type:function size:0x64 scope:global align:4
+mNPS_island_schedule_manager = .text:0x000674E0; // type:function size:0x38 scope:global align:4
+mNPS_schedule_manager = .text:0x00067518; // type:function size:0x64 scope:global align:4
+mNPS_set_all_schedule_area = .text:0x0006757C; // type:function size:0x6C scope:global align:4
+mNpcW_GetGoalDataInfo = .text:0x000675E8; // type:function size:0x5C scope:global align:4
+mNpcW_ClearNpcWalkAppear = .text:0x00067644; // type:function size:0x14 scope:global align:4
+mNpcW_ClearNpcWalkInfo = .text:0x00067658; // type:function size:0x84 scope:global align:4
+mNpcW_ClearNpcWalk = .text:0x000676DC; // type:function size:0x3C scope:global align:4
+mNpcW_CheckFreeNpcWalkInfo = .text:0x00067718; // type:function size:0x34 scope:global align:4
+mNpcW_GetFreeNpcWalkInfoIdx = .text:0x0006774C; // type:function size:0x6C scope:global align:4
+mNpcW_GetNpcWalkInfoIdx = .text:0x000677B8; // type:function size:0x88 scope:global align:4
+mNpcW_DecideNpc = .text:0x00067840; // type:function size:0x138 scope:global align:4
+mNpcW_SetNpcWalkInfo = .text:0x00067978; // type:function size:0xC8 scope:global align:4
+mNpcW_ChangeNpcWalk = .text:0x00067A40; // type:function size:0x130 scope:global align:4
+mNpcW_GetAloneBlock = .text:0x00067B70; // type:function size:0x184 scope:global align:4
+mNpcW_GetBlockXZNumExceptHome = .text:0x00067CF4; // type:function size:0x1F4 scope:global align:4
+mNpcW_CheckDiffBlockWalkNpcHome = .text:0x00067EE8; // type:function size:0x6C scope:global align:4
+mNpcW_SetHomeBlockSource = .text:0x00067F54; // type:function size:0x1A8 scope:global align:4
+mNpcW_InitGoalBlockSource = .text:0x000680FC; // type:function size:0x80 scope:global align:4
+mNpcW_SetGoalBlock = .text:0x0006817C; // type:function size:0x118 scope:global align:4
+mNpcW_InitNpcWalk = .text:0x00068294; // type:function size:0xE0 scope:global align:4
+mNpcW_GetAppearStatusWay = .text:0x00068374; // type:function size:0x98 scope:global align:4
+mNpcW_GetArriveStayCountP = .text:0x0006840C; // type:function size:0x2C scope:global align:4
+mNpcW_GetWalkInfoStatusGoalAnimalIdx = .text:0x00068438; // type:function size:0xAC scope:global align:4
+mNpcW_GetNearGate = .text:0x000684E4; // type:function size:0x15C scope:global align:4
+radianxy_by_2pos = .text:0x00068640; // type:function size:0x9C scope:global align:4
+sanglexy_by_2pos = .text:0x000686DC; // type:function size:0xB0 scope:global align:4
+Pause_ct = .text:0x0006878C; // type:function size:0x10 scope:global align:4
+Pause_proc = .text:0x0006879C; // type:function size:0xA8 scope:global align:4
+initfunc = .text:0x00068844; // type:function size:0x98 scope:global align:4
+Player_actor_ct_call = .text:0x000688DC; // type:function size:0x60 scope:global align:4
+Player_actor_dt_call = .text:0x0006893C; // type:function size:0x58 scope:global align:4
+Player_actor_move_call = .text:0x00068994; // type:function size:0x58 scope:global align:4
+Player_actor_draw_call = .text:0x000689EC; // type:function size:0x58 scope:global align:4
+mPlib_Get_Pointer_Animation = .text:0x00068A44; // type:function size:0x30 scope:global align:4
+mPlib_Get_BasicPlayerAnimeIndex_fromItemKind = .text:0x00068A74; // type:function size:0x28 scope:global align:4
+mPlib_Get_BasicPartTableIndex_fromAnimeIndex = .text:0x00068A9C; // type:function size:0x2C scope:global align:4
+mPlib_Get_Item_DataPointer = .text:0x00068AC8; // type:function size:0x2C scope:global align:4
+mPlib_Get_BasicItemShapeIndex_fromItemKind = .text:0x00068AF4; // type:function size:0x2C scope:global align:4
+mPlib_Get_BasicItemAnimeIndex_fromItemKind = .text:0x00068B20; // type:function size:0x2C scope:global align:4
+mPlib_Get_Item_DataPointerType = .text:0x00068B4C; // type:function size:0x28 scope:global align:4
+mPlib_Get_UseFaceRom_index = .text:0x00068B74; // type:function size:0x50 scope:global align:4
+mPlib_Get_UseFaceTexRom_p_common = .text:0x00068BC4; // type:function size:0x40 scope:global align:4
+mPlib_Get_UseFaceTexRom_p = .text:0x00068C04; // type:function size:0x54 scope:global align:4
+mPlib_Get_UseFacePalletRom_p = .text:0x00068C58; // type:function size:0xB4 scope:global align:4
+mPlib_Object_Exchange_keep_new_PlayerMdl = .text:0x00068D0C; // type:function size:0x48 scope:global align:4
+mPlib_Object_Exchange_keep_new = .text:0x00068D54; // type:function size:0xD4 scope:global align:4
+Change_Player_bank_ID_Index = .text:0x00068E28; // type:function size:0x18 scope:global align:4
+Change_Player_face_bank_ID_Index = .text:0x00068E40; // type:function size:0x18 scope:global align:4
+mPlib_Get_PlayerTexRom_p = .text:0x00068E58; // type:function size:0x7C scope:global align:4
+mPlib_Get_UseTexRom_p = .text:0x00068ED4; // type:function size:0x34 scope:global align:4
+mPlib_Object_Exchange_keep_new_PlayerTex = .text:0x00068F08; // type:function size:0x84 scope:global align:4
+mPlib_Get_PlayerPalletRom_p = .text:0x00068F8C; // type:function size:0x80 scope:global align:4
+mPlib_Get_UsePalletRom_p = .text:0x0006900C; // type:function size:0x34 scope:global align:4
+mPlib_Object_Exchange_keep_new_PlayerPallet = .text:0x00069040; // type:function size:0x84 scope:global align:4
+mPlib_Check_PlayerClothInAram = .text:0x000690C4; // type:function size:0x1C scope:global align:4
+mPlib_Object_Exchange_keep_new_PlayerFaceTex = .text:0x000690E0; // type:function size:0x38 scope:global align:4
+mPlib_Object_Exchange_keep_new_PlayerFacePallet = .text:0x00069118; // type:function size:0x5C scope:global align:4
+mPlib_Object_Exchange_keep_Player_dt = .text:0x00069174; // type:function size:0x50 scope:global align:4
+mPlib_get_player_tex_p = .text:0x000691C4; // type:function size:0x48 scope:global align:4
+mPlib_get_player_pallet_p = .text:0x0006920C; // type:function size:0x2C scope:global align:4
+mPlib_get_player_face_p = .text:0x00069238; // type:function size:0x38 scope:global align:4
+mPlib_get_player_face_pallet_p = .text:0x00069270; // type:function size:0x48 scope:global align:4
+mPlib_change_player_cloth = .text:0x000692B8; // type:function size:0xF8 scope:global align:4
+mPlib_change_player_face_pallet = .text:0x000693B0; // type:function size:0x64 scope:global align:4
+mPlib_change_player_face = .text:0x00069414; // type:function size:0x6C scope:global align:4
+get_player_actor_withoutCheck = .text:0x00069480; // type:function size:0x8 scope:global align:4
+mPlib_check_DynamicLinkFile_m_player = .text:0x00069488; // type:function size:0x28 scope:global align:4
+mPlib_get_player_actor_main_index = .text:0x000694B0; // type:function size:0x24 scope:global align:4
+mPlib_get_player_actor_request_main_index = .text:0x000694D4; // type:function size:0x38 scope:global align:4
+mPlib_get_player_mdl_p = .text:0x0006950C; // type:function size:0x30 scope:global align:4
+mPlib_get_player_Object_Bank = .text:0x0006953C; // type:function size:0x28 scope:global align:4
+mPlib_DMA_player_Part_Table = .text:0x00069564; // type:function size:0x48 scope:global align:4
+mPlib_change_player_cloth_info = .text:0x000695AC; // type:function size:0x3C scope:global align:4
+mPlib_change_player_cloth_info_lv2 = .text:0x000695E8; // type:function size:0x24 scope:global align:4
+mPlib_Load_PlayerTexAndPallet = .text:0x0006960C; // type:function size:0xE0 scope:global align:4
+mPlib_Get_change_data_from_submenu_p = .text:0x000696EC; // type:function size:0xC scope:global align:4
+mPlib_Clear_change_data_from_submenu = .text:0x000696F8; // type:function size:0x2C scope:global align:4
+mPlib_request_main_give_from_submenu = .text:0x00069724; // type:function size:0x60 scope:global align:4
+mPlib_request_main_putin_scoop_from_submenu = .text:0x00069784; // type:function size:0x6C scope:global align:4
+mPlib_request_main_release_creature_gyoei_from_submenu = .text:0x000697F0; // type:function size:0x5C scope:global align:4
+mPlib_request_main_release_creature_insect_from_submenu = .text:0x0006984C; // type:function size:0xC8 scope:global align:4
+mPlib_Get_ItemNoToItemKind = .text:0x00069914; // type:function size:0x2A8 scope:global align:4
+mPlib_Get_ItemKindTOBalloonShapeType = .text:0x00069BBC; // type:function size:0x2C scope:global align:4
+mPlib_Get_itemNOTOBalloonShapeType = .text:0x00069BE8; // type:function size:0x28 scope:global align:4
+mPlib_request_main_release_creature_balloon_from_submenu = .text:0x00069C10; // type:function size:0x74 scope:global align:4
+mPlib_request_main_wait_from_submenu = .text:0x00069C84; // type:function size:0x30 scope:global align:4
+mPlib_request_main_demo_get_golden_item_from_submenu = .text:0x00069CB4; // type:function size:0x30 scope:global align:4
+mPlib_request_main_mail_land_from_submenu = .text:0x00069CE4; // type:function size:0x30 scope:global align:4
+mPlib_request_main_demo_wait_from_submenu = .text:0x00069D14; // type:function size:0x58 scope:global align:4
+mPlib_Set_unable_wade = .text:0x00069D6C; // type:function size:0x14 scope:global align:4
+mPlib_Get_unable_wade = .text:0x00069D80; // type:function size:0x18 scope:global align:4
+mPlib_Check_able_force_speak_label = .text:0x00069D98; // type:function size:0x6C scope:global align:4
+mPlib_Set_able_force_speak_label = .text:0x00069E04; // type:function size:0x54 scope:global align:4
+mPlib_Reset_able_force_speak_label = .text:0x00069E58; // type:function size:0x24 scope:global align:4
+mPlib_Get_PlayerEyeTexAnimation_p = .text:0x00069E7C; // type:function size:0x2C scope:global align:4
+mPlib_Get_PlayerMouthTexAnimation_p = .text:0x00069EA8; // type:function size:0x2C scope:global align:4
+mPlib_Get_eye_tex_p = .text:0x00069ED4; // type:function size:0x5C scope:global align:4
+mPlib_Get_mouth_tex_p = .text:0x00069F30; // type:function size:0x60 scope:global align:4
+mPlib_request_main_invade_type1 = .text:0x00069F90; // type:function size:0x40 scope:global align:4
+mPlib_request_main_refuse_type1 = .text:0x00069FD0; // type:function size:0x40 scope:global align:4
+mPlib_request_main_wait_type3 = .text:0x0006A010; // type:function size:0x50 scope:global align:4
+mPlib_request_main_demo_get_golden_item2_type1 = .text:0x0006A060; // type:function size:0x50 scope:global align:4
+mPlib_request_main_talk_end_type1 = .text:0x0006A0B0; // type:function size:0x8C scope:global align:4
+mPlib_request_main_talk_type1 = .text:0x0006A13C; // type:function size:0x6C scope:global align:4
+mPlib_request_main_hold_type1 = .text:0x0006A1A8; // type:function size:0x70 scope:global align:4
+mPlib_request_main_recieve_wait_type1 = .text:0x0006A218; // type:function size:0x88 scope:global align:4
+mPlib_request_main_give_type1 = .text:0x0006A2A0; // type:function size:0xA0 scope:global align:4
+mPlib_request_main_sitdown_type1 = .text:0x0006A340; // type:function size:0x60 scope:global align:4
+mPlib_request_main_close_furniture_type1 = .text:0x0006A3A0; // type:function size:0x40 scope:global align:4
+mPlib_request_main_lie_bed_type1 = .text:0x0006A3E0; // type:function size:0x68 scope:global align:4
+mPlib_request_main_hide_type1 = .text:0x0006A448; // type:function size:0x40 scope:global align:4
+mPlib_request_main_groundhog_type1 = .text:0x0006A488; // type:function size:0x40 scope:global align:4
+mPlib_request_main_door_type1 = .text:0x0006A4C8; // type:function size:0x70 scope:global align:4
+mPlib_request_main_door_type2 = .text:0x0006A538; // type:function size:0x68 scope:global align:4
+mPlib_request_main_outdoor_type1 = .text:0x0006A5A0; // type:function size:0x58 scope:global align:4
+mPlib_request_main_wash_car_type1 = .text:0x0006A5F8; // type:function size:0x68 scope:global align:4
+mPlib_request_main_rotate_octagon_type1 = .text:0x0006A660; // type:function size:0xD8 scope:global align:4
+mPlib_request_main_throw_money_type1 = .text:0x0006A738; // type:function size:0x58 scope:global align:4
+mPlib_request_main_pray_type1 = .text:0x0006A790; // type:function size:0x58 scope:global align:4
+mPlib_request_main_mail_jump_type1 = .text:0x0006A7E8; // type:function size:0x58 scope:global align:4
+mPlib_request_main_stung_bee_type1 = .text:0x0006A840; // type:function size:0x40 scope:global align:4
+mPlib_request_main_stung_mosquito_type1 = .text:0x0006A880; // type:function size:0x58 scope:global align:4
+mPlib_request_main_switch_on_lighthouse_type1 = .text:0x0006A8D8; // type:function size:0x64 scope:global align:4
+mPlib_request_main_demo_geton_boat_type1 = .text:0x0006A93C; // type:function size:0xA0 scope:global align:4
+mPlib_request_main_demo_getoff_boat_standup_type1 = .text:0x0006A9DC; // type:function size:0x60 scope:global align:4
+mPlib_request_main_shock_type1 = .text:0x0006AA3C; // type:function size:0x6C scope:global align:4
+mPlib_request_main_change_cloth_forNPC_type1 = .text:0x0006AAA8; // type:function size:0x5C scope:global align:4
+mPlib_request_main_push_snowball_type1 = .text:0x0006AB04; // type:function size:0x54 scope:global align:4
+mPlib_request_main_push_snowball_end_type1 = .text:0x0006AB58; // type:function size:0x6C scope:global align:4
+mPlib_request_main_demo_wait_type1 = .text:0x0006ABC4; // type:function size:0x58 scope:global align:4
+mPlib_request_main_demo_walk_type1 = .text:0x0006AC1C; // type:function size:0x78 scope:global align:4
+mPlib_request_main_demo_geton_train_type1 = .text:0x0006AC94; // type:function size:0x54 scope:global align:4
+mPlib_request_main_demo_getoff_train_type1 = .text:0x0006ACE8; // type:function size:0x68 scope:global align:4
+mPlib_request_main_demo_standing_train_type1 = .text:0x0006AD50; // type:function size:0x40 scope:global align:4
+mPlib_check_request_main_talk_type1_priority = .text:0x0006AD90; // type:function size:0xDC scope:global align:4
+mPlib_check_request_main_speak_type1_priority = .text:0x0006AE6C; // type:function size:0x7C scope:global align:4
+mPlib_check_request_main_door_type1_priority = .text:0x0006AEE8; // type:function size:0x7C scope:global align:4
+mPlib_check_request_main_door_type2_priority = .text:0x0006AF64; // type:function size:0x7C scope:global align:4
+mPlib_check_request_main_wade_priority = .text:0x0006AFE0; // type:function size:0xDC scope:global align:4
+mPlib_check_request_main_demo_wade_priority = .text:0x0006B0BC; // type:function size:0x7C scope:global align:4
+mPlib_check_request_main_demo_geton_boat_wade_priority = .text:0x0006B138; // type:function size:0x7C scope:global align:4
+mPlib_strength_request_main_index_priority = .text:0x0006B1B4; // type:function size:0x48 scope:global align:4
+mPlib_strength_request_main_wade_priority = .text:0x0006B1FC; // type:function size:0x64 scope:global align:4
+mPlib_strength_request_main_demo_wade_priority = .text:0x0006B260; // type:function size:0x64 scope:global align:4
+mPlib_strength_request_main_wade_snowball_priority = .text:0x0006B2C4; // type:function size:0x64 scope:global align:4
+mPlib_strength_request_main_demo_geton_boat_wade_priority = .text:0x0006B328; // type:function size:0x64 scope:global align:4
+mPlib_strength_request_main_door_priority = .text:0x0006B38C; // type:function size:0x64 scope:global align:4
+mPlib_check_request_main_outdoor_priority = .text:0x0006B3F0; // type:function size:0x8 scope:global align:4
+mPlib_Check_SetOrderSubmenu = .text:0x0006B3F8; // type:function size:0x2C scope:global align:4
+mPlib_check_request_change_item = .text:0x0006B424; // type:function size:0x94 scope:global align:4
+mPlib_CheckScene_AbleSubmenu = .text:0x0006B4B8; // type:function size:0x6C scope:global align:4
+mPlib_able_submenu_type1 = .text:0x0006B524; // type:function size:0xAC scope:global align:4
+mPlib_check_priority_event_type1 = .text:0x0006B5D0; // type:function size:0x4C scope:global align:4
+mPlib_check_player_open_umbrella = .text:0x0006B61C; // type:function size:0x44 scope:global align:4
+mPlib_check_player_outdoor_start = .text:0x0006B660; // type:function size:0x54 scope:global align:4
+mPlib_check_label_player_demo_wait = .text:0x0006B6B4; // type:function size:0x60 scope:global align:4
+mPlib_Set_goal_player_demo_walk = .text:0x0006B714; // type:function size:0xA8 scope:global align:4
+mPlib_Get_goal_player_demo_walk = .text:0x0006B7BC; // type:function size:0xE0 scope:global align:4
+mPlib_Set_continue_player_after_demo_walk = .text:0x0006B89C; // type:function size:0x30 scope:global align:4
+mPlib_Get_continue_player_after_demo_walk = .text:0x0006B8CC; // type:function size:0x2C scope:global align:4
+mPlib_Set_end_player_demo_walk = .text:0x0006B8F8; // type:function size:0x30 scope:global align:4
+mPlib_Get_end_player_demo_walk = .text:0x0006B928; // type:function size:0x2C scope:global align:4
+mPlib_Get_space_putin_item = .text:0x0006B954; // type:function size:0x38 scope:global align:4
+mPlib_Get_space_putin_item_forTICKET = .text:0x0006B98C; // type:function size:0x144 scope:global align:4
+mPlib_Get_space_putin_item_forHITODAMA = .text:0x0006BAD0; // type:function size:0xBC scope:global align:4
+mPlib_able_player_warp_forEvent = .text:0x0006BB8C; // type:function size:0x1E4 scope:global align:4
+mPlib_request_player_warp_forEvent = .text:0x0006BD70; // type:function size:0x1C scope:global align:4
+mPlib_cancel_player_warp_forEvent = .text:0x0006BD8C; // type:function size:0x1C scope:global align:4
+mPlib_check_player_warp_forEvent = .text:0x0006BDA8; // type:function size:0x18 scope:global align:4
+mPlib_Check_HitAxe = .text:0x0006BDC0; // type:function size:0x68 scope:global align:4
+mPlib_Check_VibUnit_OneFrame = .text:0x0006BE28; // type:function size:0x68 scope:global align:4
+mPlib_Check_StopNet = .text:0x0006BE90; // type:function size:0x68 scope:global align:4
+mPlib_Get_item_net_catch_label = .text:0x0006BEF8; // type:function size:0x58 scope:global align:4
+mPlib_Change_item_net_catch_label = .text:0x0006BF50; // type:function size:0x70 scope:global align:4
+mPlib_Check_HitScoop = .text:0x0006BFC0; // type:function size:0x68 scope:global align:4
+mPlib_Check_DigScoop = .text:0x0006C028; // type:function size:0x68 scope:global align:4
+mPlib_Get_address_able_display = .text:0x0006C090; // type:function size:0x34 scope:global align:4
+mPlib_Search_exist_npc_inCircle_forScoop = .text:0x0006C0C4; // type:function size:0xA8 scope:global align:4
+mPlib_Search_exist_psnowman_inCircle_forScoop = .text:0x0006C16C; // type:function size:0xA8 scope:global align:4
+mPlib_Search_exist_snowball_forScoop = .text:0x0006C214; // type:function size:0x13C scope:global align:4
+mPlib_Search_exist_ball_forScoop = .text:0x0006C350; // type:function size:0xE8 scope:global align:4
+mPlib_Check_scoop_after = .text:0x0006C438; // type:function size:0x1240 scope:global align:4
+mPlib_Check_scene_able_change_camera_pos = .text:0x0006D678; // type:function size:0x7C scope:global align:4
+mPlib_Check_RotateOctagon = .text:0x0006D6F4; // type:function size:0x44 scope:global align:4
+mPlib_Set_EndWashCar = .text:0x0006D738; // type:function size:0x58 scope:global align:4
+mPlib_Set_AnimeSpeedWashCar = .text:0x0006D790; // type:function size:0x64 scope:global align:4
+mPlib_Check_now_handin_item_kind = .text:0x0006D7F4; // type:function size:0x34 scope:global align:4
+mPlib_Check_now_handin_item = .text:0x0006D828; // type:function size:0x3C scope:global align:4
+mPlib_Set_able_hand_all_item_in_demo = .text:0x0006D864; // type:function size:0x3C scope:global align:4
+mPlib_Get_status_for_bee = .text:0x0006D8A0; // type:function size:0x58 scope:global align:4
+mPlib_Check_end_stung_bee = .text:0x0006D8F8; // type:function size:0x58 scope:global align:4
+mPlib_Check_Label_main_push_snowball = .text:0x0006D950; // type:function size:0x54 scope:global align:4
+mPlib_Check_Label_main_wade_snowball = .text:0x0006D9A4; // type:function size:0x54 scope:global align:4
+mPlib_Set_ScrollDemo_forWade_snowball = .text:0x0006D9F8; // type:function size:0x70 scope:global align:4
+mPlib_GetSnowballPos_forWadeSnowball = .text:0x0006DA68; // type:function size:0x68 scope:global align:4
+mPlib_CheckCondition_forWadeSnowball = .text:0x0006DAD0; // type:function size:0x5C scope:global align:4
+mPlib_SetParam_for_push_snowball = .text:0x0006DB2C; // type:function size:0x6C scope:global align:4
+mPlib_Set_crash_snowball_for_wade = .text:0x0006DB98; // type:function size:0x3C scope:global align:4
+mPlib_Get_controller_data_for_title_demo_p = .text:0x0006DBD4; // type:function size:0xC scope:global align:4
+mPlib_Clear_controller_data_for_title_demo = .text:0x0006DBE0; // type:function size:0x3C scope:global align:4
+mPlib_SetData1_controller_data_for_title_demo = .text:0x0006DC1C; // type:function size:0xB0 scope:global align:4
+mPlib_SetData2_controller_data_for_title_demo = .text:0x0006DCCC; // type:function size:0x10 scope:global align:4
+mPlib_Check_CorrectPlayerPos_forEvent = .text:0x0006DCDC; // type:function size:0x80 scope:global align:4
+mPlib_Check_UKI_COMEBACK_STATUS = .text:0x0006DD5C; // type:function size:0x68 scope:global align:4
+mPlib_Check_tree_shaken = .text:0x0006DDC4; // type:function size:0x68 scope:global align:4
+mPlib_Check_tree_shaken_little = .text:0x0006DE2C; // type:function size:0x68 scope:global align:4
+mPlib_Check_tree_shaken_big = .text:0x0006DE94; // type:function size:0x68 scope:global align:4
+mPlib_Get_itemNo_forWindow = .text:0x0006DEFC; // type:function size:0x8C scope:global align:4
+mPlib_able_birth_bee = .text:0x0006DF88; // type:function size:0x64 scope:global align:4
+mPlib_check_able_change_camera_normal_index = .text:0x0006DFEC; // type:function size:0x8C scope:global align:4
+mPlib_check_player_actor_main_index_Furniture_Move = .text:0x0006E078; // type:function size:0x58 scope:global align:4
+mPlib_check_player_actor_main_index_RecieveMove = .text:0x0006E0D0; // type:function size:0x78 scope:global align:4
+mPlib_check_player_actor_main_index_Pitfall = .text:0x0006E148; // type:function size:0x78 scope:global align:4
+mPlib_check_player_actor_main_index_OutDoorMove = .text:0x0006E1C0; // type:function size:0xA0 scope:global align:4
+mPlib_check_player_actor_main_index_OutDoorMove2 = .text:0x0006E260; // type:function size:0x90 scope:global align:4
+mPlib_check_player_actor_main_index_AllWade = .text:0x0006E2F0; // type:function size:0x70 scope:global align:4
+mPlib_check_player_actor_main_index_catch_insect = .text:0x0006E360; // type:function size:0x88 scope:global align:4
+mPlib_check_player_actor_main_index_catch_fish = .text:0x0006E3E8; // type:function size:0x68 scope:global align:4
+mPlib_check_player_actor_start_switch_on_lighthouse = .text:0x0006E450; // type:function size:0x5C scope:global align:4
+mPlib_Check_stung_mosquito = .text:0x0006E4AC; // type:function size:0x54 scope:global align:4
+mPlib_Set_boat_angleZ = .text:0x0006E500; // type:function size:0x3C scope:global align:4
+mPlib_CheckButtonOnly_forDush = .text:0x0006E53C; // type:function size:0x60 scope:global align:4
+mPlib_Check_golden_item_get_demo_end = .text:0x0006E59C; // type:function size:0x28 scope:global align:4
+mPlib_Set_change_color_request = .text:0x0006E5C4; // type:function size:0x34 scope:global align:4
+mPB_copy_itemBuf = .text:0x0006E5F8; // type:function size:0x60 scope:global align:4
+mPB_get_keep_item_sum = .text:0x0006E658; // type:function size:0x38 scope:global align:4
+mPB_keep_item = .text:0x0006E690; // type:function size:0x94 scope:global align:4
+mPB_keep_all_item_in_block = .text:0x0006E724; // type:function size:0x190 scope:global align:4
+mPB_get_force_set_item_goods = .text:0x0006E8B4; // type:function size:0xB8 scope:global align:4
+mPB_get_force_set_item_item = .text:0x0006E96C; // type:function size:0x48 scope:global align:4
+mPB_get_force_set_item_flower = .text:0x0006E9B4; // type:function size:0x40 scope:global align:4
+mPB_get_force_set_item_umbrella = .text:0x0006E9F4; // type:function size:0x2C scope:global align:4
+mPB_get_force_set_item = .text:0x0006EA20; // type:function size:0x94 scope:global align:4
+mPB_force_set_keep_item = .text:0x0006EAB4; // type:function size:0x3C scope:global align:4
+mPB_police_box_init = .text:0x0006EAF0; // type:function size:0xA0 scope:global align:4
+mPO_keep_contents = .text:0x0006EB90; // type:function size:0x84 scope:global align:4
+mPO_count_mail = .text:0x0006EC14; // type:function size:0x90 scope:global align:4
+mPO_get_keep_mail_sum = .text:0x0006ECA4; // type:function size:0x1C scope:global align:4
+mPO_adjust_keep_mail = .text:0x0006ECC0; // type:function size:0xB4 scope:global align:4
+mPO_receipt_check_mail = .text:0x0006ED74; // type:function size:0x12C scope:global align:4
+mPO_receipt_proc = .text:0x0006EEA0; // type:function size:0xB8 scope:global align:4
+mPO_copy_contents = .text:0x0006EF58; // type:function size:0x7C scope:global align:4
+mPO_delivery_mail_with_item = .text:0x0006EFD4; // type:function size:0x80 scope:global align:4
+mPO_delivery_mail_with_order_ftr_sub = .text:0x0006F054; // type:function size:0x80 scope:global align:4
+mPO_delivery_mail_with_order_ftr = .text:0x0006F0D4; // type:function size:0x94 scope:global align:4
+mPO_delivery_mail_with_ticket_set_free_str = .text:0x0006F168; // type:function size:0x84 scope:global align:4
+mPO_delivery_mail_with_ticket_sub = .text:0x0006F1EC; // type:function size:0x60 scope:global align:4
+mPO_delivery_mail_with_ticket = .text:0x0006F24C; // type:function size:0xBC scope:global align:4
+mPO_delivery_mail_sub = .text:0x0006F308; // type:function size:0xF8 scope:global align:4
+mPO_delivery_one_address_mail = .text:0x0006F400; // type:function size:0x5C scope:global align:4
+mPO_delivery_one_address_special_mail = .text:0x0006F45C; // type:function size:0x54 scope:global align:4
+mPO_delivery_one_address_leaflet = .text:0x0006F4B0; // type:function size:0xD0 scope:global align:4
+mPO_delivery_one_address_event_leaflet = .text:0x0006F580; // type:function size:0x9C scope:global align:4
+mPO_delivery_one_address = .text:0x0006F61C; // type:function size:0x54 scope:global align:4
+mPO_delivery_mail = .text:0x0006F670; // type:function size:0x28 scope:global align:4
+mPO_delivery_leaflet = .text:0x0006F698; // type:function size:0x68 scope:global align:4
+mPO_delivery_all_address_proc = .text:0x0006F700; // type:function size:0x24 scope:global align:4
+mPO_make_post_man = .text:0x0006F724; // type:function size:0x208 scope:global align:4
+mPO_set_next_delivery_time = .text:0x0006F92C; // type:function size:0x88 scope:global align:4
+mPO_delivery_proc = .text:0x0006F9B4; // type:function size:0xA4 scope:global align:4
+mPO_first_delivery_proc = .text:0x0006FA58; // type:function size:0xD4 scope:global align:4
+mPO_business_proc = .text:0x0006FB2C; // type:function size:0x94 scope:global align:4
+mPO_first_work = .text:0x0006FBC0; // type:function size:0x78 scope:global align:4
+mPO_post_office_init = .text:0x0006FC38; // type:function size:0x9C scope:global align:4
+mPr_ClearPlayerName = .text:0x0006FCD4; // type:function size:0x28 scope:global align:4
+mPr_CopyPlayerName = .text:0x0006FCFC; // type:function size:0x24 scope:global align:4
+mPr_NullCheckPlayerName = .text:0x0006FD20; // type:function size:0x3C scope:global align:4
+mPr_CheckCmpPlayerName = .text:0x0006FD5C; // type:function size:0x6C scope:global align:4
+mPr_GetPlayerName = .text:0x0006FDC8; // type:function size:0xBC scope:global align:4
+mPr_NullCheckPersonalID = .text:0x0006FE84; // type:function size:0x48 scope:global align:4
+mPr_ClearPersonalID = .text:0x0006FECC; // type:function size:0x44 scope:global align:4
+mPr_ClearAnyPersonalID = .text:0x0006FF10; // type:function size:0x50 scope:global align:4
+mPr_CopyPersonalID = .text:0x0006FF60; // type:function size:0x24 scope:global align:4
+mPr_CheckCmpPersonalID = .text:0x0006FF84; // type:function size:0x88 scope:global align:4
+mPr_ClearPrivateBirthday = .text:0x0007000C; // type:function size:0x1C scope:global align:4
+mPr_ClearAnimalMemory = .text:0x00070028; // type:function size:0x30 scope:global align:4
+mPr_ClearPrivateInfo = .text:0x00070058; // type:function size:0xBC scope:global align:4
+mPr_GetRandomFace = .text:0x00070114; // type:function size:0x38 scope:global align:4
+mPr_GetRandomOriginalFace = .text:0x0007014C; // type:function size:0x110 scope:global align:4
+mPr_GetRandomCloth = .text:0x0007025C; // type:function size:0x94 scope:global align:4
+mPr_SetNowPrivateCloth = .text:0x000702F0; // type:function size:0x50 scope:global align:4
+mPr_InitPrivateInfo = .text:0x00070340; // type:function size:0x120 scope:global align:4
+mPr_CopyPrivateInfo = .text:0x00070460; // type:function size:0x30 scope:global align:4
+mPr_CheckPrivate = .text:0x00070490; // type:function size:0x1C scope:global align:4
+mPr_CheckCmpPrivate = .text:0x000704AC; // type:function size:0x3C scope:global align:4
+mPr_GetPrivateIdx = .text:0x000704E8; // type:function size:0x80 scope:global align:4
+mPr_GetPossessionItemIdx = .text:0x00070568; // type:function size:0x48 scope:global align:4
+mPr_GetPossessionItemIdxWithCond = .text:0x000705B0; // type:function size:0x64 scope:global align:4
+mPr_GetPossessionItemIdxFGTypeWithCond_cancel = .text:0x00070614; // type:function size:0x74 scope:global align:4
+mPr_GetPossessionItemIdxItem1Category = .text:0x00070688; // type:function size:0x58 scope:global align:4
+mPr_GetPossessionItemIdxItem1CategoryWithCond_cancel = .text:0x000706E0; // type:function size:0x80 scope:global align:4
+mPr_GetPossessionItemIdxKindWithCond = .text:0x00070760; // type:function size:0x70 scope:global align:4
+mPr_GetPossessionItemSum = .text:0x000707D0; // type:function size:0x3C scope:global align:4
+mPr_GetPossessionItemSumWithCond = .text:0x0007080C; // type:function size:0x58 scope:global align:4
+mPr_GetPossessionItemSumFGTypeWithCond_cancel = .text:0x00070864; // type:function size:0x68 scope:global align:4
+mPr_GetPossessionItemSumItemCategoryWithCond_cancel = .text:0x000708CC; // type:function size:0x74 scope:global align:4
+mPr_GetPossessionItemSumItemCategoryWithCond = .text:0x00070940; // type:function size:0x68 scope:global align:4
+mPr_GetPossessionItemSumKindWithCond = .text:0x000709A8; // type:function size:0x64 scope:global align:4
+mPr_SetItemCollectBit = .text:0x00070A0C; // type:function size:0x1D8 scope:global align:4
+mPr_DummyPresentToTruePresent = .text:0x00070BE4; // type:function size:0x84 scope:global align:4
+mPr_SetPossessionItem = .text:0x00070C68; // type:function size:0xE0 scope:global align:4
+mPr_SetFreePossessionItem = .text:0x00070D48; // type:function size:0x68 scope:global align:4
+mPr_AddFirstJobHint = .text:0x00070DB0; // type:function size:0x20 scope:global align:4
+mPr_GetFirstJobHintTime = .text:0x00070DD0; // type:function size:0xC scope:global align:4
+mPr_CheckFirstJobHint = .text:0x00070DDC; // type:function size:0xC scope:global align:4
+mPr_GetMoneyPower = .text:0x00070DE8; // type:function size:0x5C scope:global align:4
+mPr_GetGoodsPower = .text:0x00070E44; // type:function size:0x74 scope:global align:4
+mPr_CheckMuseumAddress = .text:0x00070EB8; // type:function size:0x24 scope:global align:4
+mPr_CheckMuseumInfoMail = .text:0x00070EDC; // type:function size:0x24 scope:global align:4
+mPr_GetForeignerP = .text:0x00070F00; // type:function size:0xC scope:global align:4
+mPr_LoadPak_and_SetPrivateInfo2 = .text:0x00070F0C; // type:function size:0x1D8 scope:global align:4
+mPr_ClearMotherMailInfo = .text:0x000710E4; // type:function size:0x3C scope:global align:4
+mPr_GetMotherMailPaperType = .text:0x00071120; // type:function size:0x90 scope:global align:4
+mPr_GetMotherMail = .text:0x000711B0; // type:function size:0x88 scope:global align:4
+mPr_SendMotherMailPost = .text:0x00071238; // type:function size:0x104 scope:global align:4
+mPr_SendMotherMailDate = .text:0x0007133C; // type:function size:0x210 scope:global align:4
+mPr_CheckMotherMailMonthly = .text:0x0007154C; // type:function size:0x48 scope:global align:4
+mPr_GetMotherMailMonthlyNotSendNum = .text:0x00071594; // type:function size:0x80 scope:global align:4
+mPr_SetMotherMailMonthly = .text:0x00071614; // type:function size:0x58 scope:global align:4
+mPr_GetMotherMailMonthlyData = .text:0x0007166C; // type:function size:0x1E4 scope:global align:4
+mPr_GetMotherMailNormalNotSendNum = .text:0x00071850; // type:function size:0x48 scope:global align:4
+mPr_SetMotherMailNormal = .text:0x00071898; // type:function size:0x28 scope:global align:4
+mPr_CheckMotherMailNormal = .text:0x000718C0; // type:function size:0x20 scope:global align:4
+mPr_GetMotherMailNormalData = .text:0x000718E0; // type:function size:0x154 scope:global align:4
+mPr_SendMotherMailNormal = .text:0x00071A34; // type:function size:0x170 scope:global align:4
+mPr_SendMotherMail = .text:0x00071BA4; // type:function size:0x4C scope:global align:4
+mPr_SendMailFromMother = .text:0x00071BF0; // type:function size:0xF0 scope:global align:4
+mPr_GetForeingerAnimalMail = .text:0x00071CE0; // type:function size:0x168 scope:global align:4
+mPr_SendForeingerAnimalMail = .text:0x00071E48; // type:function size:0x9C scope:global align:4
+mPr_StartSetCompleteTalkInfo = .text:0x00071EE4; // type:function size:0x6C scope:global align:4
+mPr_SetCompleteTalk = .text:0x00071F50; // type:function size:0x20 scope:global align:4
+mPr_GetCompleteTalk = .text:0x00071F70; // type:function size:0x18 scope:global align:4
+mPr_SetFishCompleteTalk = .text:0x00071F88; // type:function size:0x38 scope:global align:4
+mPr_CheckFishCompleteTalk = .text:0x00071FC0; // type:function size:0x60 scope:global align:4
+mPr_SetInsectCompleteTalk = .text:0x00072020; // type:function size:0x38 scope:global align:4
+mPr_CheckInsectCompleteTalk = .text:0x00072058; // type:function size:0x60 scope:global align:4
+mPr_GetTalkPermission = .text:0x000720B8; // type:function size:0x30 scope:global align:4
+mPr_GetFishCompTalkPermission = .text:0x000720E8; // type:function size:0x58 scope:global align:4
+mPr_GetInsectCompTalkPermission = .text:0x00072140; // type:function size:0x58 scope:global align:4
+mPr_ClearMapInfo = .text:0x00072198; // type:function size:0x58 scope:global align:4
+mPr_CopyMapInfo = .text:0x000721F0; // type:function size:0x24 scope:global align:4
+mPr_SetMapThisLand = .text:0x00072214; // type:function size:0x54 scope:global align:4
+mPr_GetMapFreeIdx = .text:0x00072268; // type:function size:0x7C scope:global align:4
+mPr_GetLandMapIdx = .text:0x000722E4; // type:function size:0x88 scope:global align:4
+mPr_GetThisLandMapIdx = .text:0x0007236C; // type:function size:0x30 scope:global align:4
+mPr_PushMapInfo = .text:0x0007239C; // type:function size:0x68 scope:global align:4
+mPr_SetNewMap = .text:0x00072404; // type:function size:0x8C scope:global align:4
+mPr_RenewalMapInfo = .text:0x00072490; // type:function size:0x88 scope:global align:4
+mPr_RandomSetPlayerData_title_demo = .text:0x00072518; // type:function size:0xA8 scope:global align:4
+mPr_PrintMapInfo_debug = .text:0x000725C0; // type:function size:0x128 scope:global align:4
+mQst_ClearQuestInfo = .text:0x000726E8; // type:function size:0x40 scope:global align:4
+mQst_ClearDelivery = .text:0x00072728; // type:function size:0x64 scope:global align:4
+mQst_ClearErrand = .text:0x0007278C; // type:function size:0x94 scope:global align:4
+mQst_ClearContest = .text:0x00072820; // type:function size:0x50 scope:global align:4
+mQst_ClearNotSaveQuest = .text:0x00072870; // type:function size:0x24 scope:global align:4
+mQst_CopyQuestInfo = .text:0x00072894; // type:function size:0x80 scope:global align:4
+mQst_CopyDelivery = .text:0x00072914; // type:function size:0x50 scope:global align:4
+mQst_CopyErrand = .text:0x00072964; // type:function size:0xAC scope:global align:4
+mQst_CheckFreeQuest = .text:0x00072A10; // type:function size:0x1C scope:global align:4
+mQst_CheckLimitOver = .text:0x00072A2C; // type:function size:0x124 scope:global align:4
+mQst_GetOccuredDeliveryIdx = .text:0x00072B50; // type:function size:0x90 scope:global align:4
+mQst_GetDeliveryIdxbyItemIdx = .text:0x00072BE0; // type:function size:0x70 scope:global align:4
+mQst_GetErrandIdxbyItemIdx = .text:0x00072C50; // type:function size:0xC4 scope:global align:4
+mQst_ClearQuestbyPossessionIdx = .text:0x00072D14; // type:function size:0xB4 scope:global align:4
+mQst_CheckLimitbyPossessionIdx = .text:0x00072DC8; // type:function size:0x100 scope:global align:4
+mQst_ClearGrabItemInfo_common = .text:0x00072EC8; // type:function size:0x48 scope:global align:4
+mQst_ClearGrabItemInfo = .text:0x00072F10; // type:function size:0x28 scope:global align:4
+mQst_CheckGrabItem = .text:0x00072F38; // type:function size:0x140 scope:global align:4
+mQst_CheckPutItem = .text:0x00073078; // type:function size:0x10C scope:global align:4
+mQst_CheckNpcExistbyItemIdx = .text:0x00073184; // type:function size:0x108 scope:global align:4
+mQst_GetToFromName = .text:0x0007328C; // type:function size:0x118 scope:global align:4
+mQst_GetOccuredContestIdx = .text:0x000733A4; // type:function size:0x58 scope:global align:4
+mQst_GetFlowerSeedNum = .text:0x000733FC; // type:function size:0x28 scope:global align:4
+mQst_GetFlowerNum = .text:0x00073424; // type:function size:0x28 scope:global align:4
+mQst_GetNullNoNum = .text:0x0007344C; // type:function size:0x28 scope:global align:4
+mQst_SetItemNameStr = .text:0x00073474; // type:function size:0x6C scope:global align:4
+mQst_SetItemNameFreeStr = .text:0x000734E0; // type:function size:0x6C scope:global align:4
+mQst_GetPresent = .text:0x0007354C; // type:function size:0x130 scope:global align:4
+mQst_GetRemailData = .text:0x0007367C; // type:function size:0x114 scope:global align:4
+mQst_SendRemail = .text:0x00073790; // type:function size:0xD8 scope:global align:4
+mQst_GetMailRank = .text:0x00073868; // type:function size:0x90 scope:global align:4
+mQst_SetReceiveLetter = .text:0x000738F8; // type:function size:0xB0 scope:global align:4
+mQst_GetFirstJobData = .text:0x000739A8; // type:function size:0xC0 scope:global align:4
+mQst_CheckFirstJobQuest = .text:0x00073A68; // type:function size:0x40 scope:global align:4
+mQst_CheckFirstJobQuestbyItemIdx = .text:0x00073AA8; // type:function size:0x6C scope:global align:4
+mQst_CheckFirstJobFin = .text:0x00073B14; // type:function size:0x18 scope:global align:4
+mQst_CheckRemoveTarget = .text:0x00073B2C; // type:function size:0x5C scope:global align:4
+mQst_SetFirstJobStart = .text:0x00073B88; // type:function size:0x9C scope:global align:4
+mQst_SetFirstJobChangeCloth = .text:0x00073C24; // type:function size:0x68 scope:global align:4
+mQst_SetFirstJobSeed = .text:0x00073C8C; // type:function size:0x64 scope:global align:4
+mQst_SetFirstJobHello = .text:0x00073CF0; // type:function size:0x64 scope:global align:4
+mQst_SetFirstJobFurniture = .text:0x00073D54; // type:function size:0xD4 scope:global align:4
+mQst_SetFirstJobLetter_common = .text:0x00073E28; // type:function size:0xB8 scope:global align:4
+mQst_SetFirstJobLetter = .text:0x00073EE0; // type:function size:0x24 scope:global align:4
+mQst_SetFirstJobLetter2 = .text:0x00073F04; // type:function size:0x24 scope:global align:4
+mQst_SetFirstJobOpenQuest = .text:0x00073F28; // type:function size:0xAC scope:global align:4
+mQst_SetFirstJobCarpet = .text:0x00073FD4; // type:function size:0xB4 scope:global align:4
+mQst_SetFirstJobAxe_common = .text:0x00074088; // type:function size:0xB0 scope:global align:4
+mQst_SetFirstJobAxe = .text:0x00074138; // type:function size:0x24 scope:global align:4
+mQst_SetFirstJobAxe2 = .text:0x0007415C; // type:function size:0x24 scope:global align:4
+mQst_SetFirstJobNotice = .text:0x00074180; // type:function size:0x90 scope:global align:4
+mQst_GetRandom = .text:0x00074210; // type:function size:0x5C scope:global align:4
+mQst_GetGoods_common = .text:0x0007426C; // type:function size:0xD4 scope:global align:4
+mQst_CheckSoccerTarget = .text:0x00074340; // type:function size:0x8C scope:global align:4
+mQst_NextSoccer = .text:0x000743CC; // type:function size:0xD8 scope:global align:4
+mQst_NextSnowman = .text:0x000744A4; // type:function size:0xD4 scope:global align:4
+mQst_BackSnowman = .text:0x00074578; // type:function size:0xC4 scope:global align:4
+mQst_PrintQuestInfo = .text:0x0007463C; // type:function size:0x23C scope:global align:4
+mRF_MakeRandomField = .text:0x00074878; // type:function size:0x20 scope:global align:4
+mRF_Type2BlockInfo = .text:0x00074898; // type:function size:0x28 scope:global align:4
+mRF_GateType2GateCount = .text:0x000748C0; // type:function size:0x20 scope:global align:4
+mRF_SearchPond = .text:0x000748E0; // type:function size:0xA4 scope:global align:4
+mRF_Attr2BeastRoadAttr = .text:0x00074984; // type:function size:0x38 scope:global align:4
+mRF_BlockTypeDirect2GateType = .text:0x000749BC; // type:function size:0x18 scope:global align:4
+mRF_BlockTypeDirect2GateData = .text:0x000749D4; // type:function size:0x64 scope:global align:4
+mRF_BlockInf2CheckBeastRoad = .text:0x00074A38; // type:function size:0x148 scope:global align:4
+mRF_CheckBeastRoad = .text:0x00074B80; // type:function size:0xA8 scope:global align:4
+mRF_RiverIdx2NextDirect = .text:0x00074C28; // type:function size:0x28 scope:global align:4
+mRF_BlockType2RiverNextDirect = .text:0x00074C50; // type:function size:0x90 scope:global align:4
+mRF_FindBgNameTypeCombiNum = .text:0x00074CE0; // type:function size:0x5C scope:global align:4
+mRF_IslandBgData_To_VillageData = .text:0x00074D3C; // type:function size:0xDC scope:global align:4
+mRF_CheckFieldStep3 = .text:0x00074E18; // type:function size:0x24 scope:global align:4
+gfx_set_fog_position = .text:0x00074E3C; // type:function size:0x64 scope:global align:4
+gfx_set_fog_nosync = .text:0x00074EA0; // type:function size:0x58 scope:global align:4
+texture_z_light_prim_xlu_disp = .text:0x00074EF8; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim_bg = .text:0x00074F20; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim = .text:0x00074F48; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim_shadow = .text:0x00074F70; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim_xlu = .text:0x00074F98; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim_light = .text:0x00074FC0; // type:function size:0x28 scope:global align:4
+_texture_z_light_fog_prim_npc = .text:0x00074FE8; // type:function size:0x64 scope:global align:4
+texture_z_light_fog_prim_bb_pal_opa = .text:0x0007504C; // type:function size:0x38 scope:global align:4
+texture_z_light_fog_prim_bb_pal_xlu = .text:0x00075084; // type:function size:0x38 scope:global align:4
+texture_z_fog_lod_alpha_shadow = .text:0x000750BC; // type:function size:0x24 scope:global align:4
+gfx_rect_moji = .text:0x000750E0; // type:function size:0x24 scope:global align:4
+rect_moji = .text:0x00075104; // type:function size:0x28 scope:global align:4
+polygon_z_light_prim = .text:0x0007512C; // type:function size:0x24 scope:global align:4
+softsprite_prim = .text:0x00075150; // type:function size:0x28 scope:global align:4
+gfx_softsprite_prim_xlu = .text:0x00075178; // type:function size:0x38 scope:global align:4
+gfx_tex_scroll2 = .text:0x000751B0; // type:function size:0x98 scope:global align:4
+tex_scroll2 = .text:0x00075248; // type:function size:0x70 scope:global align:4
+tex_scroll2_dolphin = .text:0x000752B8; // type:function size:0x58 scope:global align:4
+two_tex_scroll = .text:0x00075310; // type:function size:0xF0 scope:global align:4
+two_tex_scroll_dolphin = .text:0x00075400; // type:function size:0xCC scope:global align:4
+DisplayList_initialize = .text:0x000754CC; // type:function size:0x278 scope:global align:4
+fade_rgba8888_draw = .text:0x00075744; // type:function size:0x94 scope:global align:4
+fade_black_draw = .text:0x000757D8; // type:function size:0x20 scope:global align:4
+gfx_gDPFillRectangle1 = .text:0x000757F8; // type:function size:0x2C scope:global align:4
+gfx_gDPFillRectangleF = .text:0x00075824; // type:function size:0x3C scope:global align:4
+gfx_gSPTextureRectangle1 = .text:0x00075860; // type:function size:0x60 scope:global align:4
+gfx_gSPScisTextureRectangle1 = .text:0x000758C0; // type:function size:0x19C scope:global align:4
+mRmTp_InitFtrPlaceInfo = .text:0x00075A5C; // type:function size:0x24 scope:global align:4
+mRmTp_ItemNo2FtrSize = .text:0x00075A80; // type:function size:0x30 scope:global align:4
+mRmTp_GetFtrUnitPlaceData = .text:0x00075AB0; // type:function size:0x54 scope:global align:4
+mRmTp_GetFurnitureData = .text:0x00075B04; // type:function size:0xC8 scope:global align:4
+mRmTp_MakeFtrNoTable = .text:0x00075BCC; // type:function size:0xEC scope:global align:4
+mRmTp_GetFtrActionSE = .text:0x00075CB8; // type:function size:0x104 scope:global align:4
+mRmTp_CheckFtrBirthInfoTop = .text:0x00075DBC; // type:function size:0xC scope:global align:4
+mRmTp_PrintFloorIndex = .text:0x00075DC8; // type:function size:0x4 scope:global align:4
+mRmTp_GetFloorIdx = .text:0x00075DCC; // type:function size:0x254 scope:global align:4
+mRmTp_GetWallIdx = .text:0x00076020; // type:function size:0xC4 scope:global align:4
+mRmTp_Item1ItemNo2FtrItemNo_AtPlayerRoom = .text:0x000760E4; // type:function size:0x280 scope:global align:4
+mRmTp_FtrItemNo2Item1ItemNo = .text:0x00076364; // type:function size:0x298 scope:global align:4
+mRmTp_MakeMelodyData = .text:0x000765FC; // type:function size:0x3C scope:global align:4
+mRmTp_GetMelodyData = .text:0x00076638; // type:function size:0xC scope:global align:4
+mRmTp_DrawFamicomInfo = .text:0x00076644; // type:function size:0xD0 scope:global align:4
+mRmTp_MakeFamicom_Fdebug = .text:0x00076714; // type:function size:0xE8 scope:global align:4
+mRmTp_GetPlayerRoomCollisionIdx = .text:0x000767FC; // type:function size:0xCC scope:global align:4
+mRmTp_FurnitureIdx2FurnitureKind = .text:0x000768C8; // type:function size:0x28 scope:global align:4
+mRmTp_GetPlayerRoomIdx = .text:0x000768F0; // type:function size:0x40 scope:global align:4
+mRmTp_CopyWallData = .text:0x00076930; // type:function size:0x168 scope:global align:4
+mRmTp_CopyFloorData = .text:0x00076A98; // type:function size:0x180 scope:global align:4
+mRmTp_CheckTalkAble = .text:0x00076C18; // type:function size:0x148 scope:global align:4
+mRmTp_CheckWallIsMyOriginalInThisScene = .text:0x00076D60; // type:function size:0xA0 scope:global align:4
+mRmTp_CheckFloorIsMyOriginalInThisScene = .text:0x00076E00; // type:function size:0xA0 scope:global align:4
+mRmTp_GetEntranceBasePosition = .text:0x00076EA0; // type:function size:0x4C scope:global align:4
+mRmTp_GetNowSceneLightSwitchIndex = .text:0x00076EEC; // type:function size:0xB4 scope:global align:4
+mRmTp_PleaseDrawLightSwitch = .text:0x00076FA0; // type:function size:0x44 scope:global align:4
+mRmTp_NowSceneLightSwitchON = .text:0x00076FE4; // type:function size:0x58 scope:global align:4
+mRmTp_IndexLightSwitchON = .text:0x0007703C; // type:function size:0x3C scope:global align:4
+mRmTp_NowSceneLightSwitchOFF = .text:0x00077078; // type:function size:0x58 scope:global align:4
+mRmTp_IndexLightSwitchOFF = .text:0x000770D0; // type:function size:0x3C scope:global align:4
+mRmTp_Index2LightSwitchStatus = .text:0x0007710C; // type:function size:0x3C scope:global align:4
+mRmTp_CheckExistMyRoomOwner = .text:0x00077148; // type:function size:0x48 scope:global align:4
+mRmTp_CheckMyRoomLightON = .text:0x00077190; // type:function size:0x8C scope:global align:4
+mRmTp_SetDefaultLightSwitchData = .text:0x0007721C; // type:function size:0x1D4 scope:global align:4
+mRmTp_DecideCottageDefaultLightSwitch = .text:0x000773F0; // type:function size:0x58 scope:global align:4
+mRmTp_GetNowSceneFloorBitInfoP = .text:0x00077448; // type:function size:0x98 scope:global align:4
+mRmTp_GetNowSceneOriginalWallStatus = .text:0x000774E0; // type:function size:0x38 scope:global align:4
+mRmTp_GetNowSceneOriginalFloorStatus = .text:0x00077518; // type:function size:0x38 scope:global align:4
+mRmTp_SetNowSceneOriginalWallStatus = .text:0x00077550; // type:function size:0x40 scope:global align:4
+mRmTp_SetNowSceneOriginalFloorStatus = .text:0x00077590; // type:function size:0x40 scope:global align:4
+mRmTp_FtrItemNo2FtrIdx = .text:0x000775D0; // type:function size:0x44 scope:global align:4
+mRmTp_FtrIdx2FtrItemNo = .text:0x00077614; // type:function size:0x48 scope:global align:4
+mRmTp_SoundStepWalkSE = .text:0x0007765C; // type:function size:0x94 scope:global align:4
+mScn_KeepMyRoomBankNew = .text:0x000776F0; // type:function size:0x54 scope:global align:4
+mScn_ObtainCarpetBank = .text:0x00077744; // type:function size:0x70 scope:global align:4
+mScn_ObtainMyRoomBank = .text:0x000777B4; // type:function size:0x20 scope:global align:4
+mSP_InitItemTable = .text:0x000777D4; // type:function size:0x28 scope:global align:4
+mSP_SelectListFromPriority = .text:0x000777FC; // type:function size:0x138 scope:global align:4
+mSP_SetSeasonFTR_local_december = .text:0x00077934; // type:function size:0x6C scope:global align:4
+mSP_SetSeasonFTR = .text:0x000779A0; // type:function size:0x7C scope:global align:4
+mSP_GetItemList = .text:0x00077A1C; // type:function size:0xC8 scope:global align:4
+mSP_GoodsExistAlready = .text:0x00077AE4; // type:function size:0x40 scope:global align:4
+mSP_CollectCheck = .text:0x00077B24; // type:function size:0x170 scope:global align:4
+mSP_CountElementInCommonList = .text:0x00077C94; // type:function size:0x24 scope:global align:4
+mSP_CountElementInCommonList_collect = .text:0x00077CB8; // type:function size:0x140 scope:global align:4
+mSP_get_cloth_season = .text:0x00077DF8; // type:function size:0xE0 scope:global align:4
+mSP_CountElementInClothList = .text:0x00077ED8; // type:function size:0xCC scope:global align:4
+mSP_CountElementInClothList_collect = .text:0x00077FA4; // type:function size:0x1F0 scope:global align:4
+mSP_NoList = .text:0x00078194; // type:function size:0x34 scope:global align:4
+mSP_SetDummyItem = .text:0x000781C8; // type:function size:0x54 scope:global align:4
+mSP_SelectRandomItem_New = .text:0x0007821C; // type:function size:0x1EC scope:global align:4
+mSP_CountPriceTableElement = .text:0x00078408; // type:function size:0x24 scope:global align:4
+mSP_ShopSaleReport = .text:0x0007842C; // type:function size:0xB4 scope:global align:4
+mSP_ItemNo2ItemPrice = .text:0x000784E0; // type:function size:0x220 scope:global align:4
+mSP_SearchItemCategoryPriority = .text:0x00078700; // type:function size:0xA0 scope:global align:4
+mSP_ItemNo2GoodsListCategory = .text:0x000787A0; // type:function size:0xB0 scope:global align:4
+mSP_MakeRandomGoodsList = .text:0x00078850; // type:function size:0x264 scope:global align:4
+mSP_CountElementInGoodsList = .text:0x00078AB4; // type:function size:0x3C scope:global align:4
+mSP_SelectTool = .text:0x00078AF0; // type:function size:0x1B8 scope:global align:4
+mSP_SelectPlant = .text:0x00078CA8; // type:function size:0x14C scope:global align:4
+mSP_MakeGoodsList = .text:0x00078DF4; // type:function size:0x130 scope:global align:4
+mSP_MakeLotteryList = .text:0x00078F24; // type:function size:0xC0 scope:global align:4
+mSP_CheckExchangeDay2 = .text:0x00078FE4; // type:function size:0x50 scope:global align:4
+mSP_CheckExchangeMonth = .text:0x00079034; // type:function size:0x50 scope:global align:4
+mSP_NewExchangeDay = .text:0x00079084; // type:function size:0x20 scope:global align:4
+mSP_ShopItsumoChirashi = .text:0x000790A4; // type:function size:0x16C scope:global align:4
+mSP_SetShopRareFurnitureChirashi = .text:0x00079210; // type:function size:0x2A4 scope:global align:4
+mSP_SetRenewalChiraswhi_AppoDay = .text:0x000794B4; // type:function size:0x164 scope:global align:4
+mSP_ExchangeLineUp_InGame = .text:0x00079618; // type:function size:0x84 scope:global align:4
+mSP_PlusSales = .text:0x0007969C; // type:function size:0xAC scope:global align:4
+mSP_SetNewVisitor = .text:0x00079748; // type:function size:0x48 scope:global align:4
+mSP_GetSalesSum = .text:0x00079790; // type:function size:0x14 scope:global align:4
+mSP_GetShopLevel = .text:0x000797A4; // type:function size:0x18 scope:global align:4
+mSP_RenewShopLevel = .text:0x000797BC; // type:function size:0x64 scope:global align:4
+mSP_GetRealShopLevel = .text:0x00079820; // type:function size:0x78 scope:global align:4
+mSP_GetGoodsPercent = .text:0x00079898; // type:function size:0xA0 scope:global align:4
+mSP_PrintNowShopSalesSum = .text:0x00079938; // type:function size:0x420 scope:global align:4
+mSP_GetGoodsPriority = .text:0x00079D58; // type:function size:0x44 scope:global align:4
+mSP_SetExchangeDay = .text:0x00079D9C; // type:function size:0x20 scope:global align:4
+mSP_InitGoods = .text:0x00079DBC; // type:function size:0x2C scope:global align:4
+mSP_ExchangeLineUp_ZeldaMalloc = .text:0x00079DE8; // type:function size:0x2C scope:global align:4
+mSP_LotteryLineUp_ZeldaMalloc = .text:0x00079E14; // type:function size:0x24 scope:global align:4
+mSP_ExchangeLineUp_GameAlloc = .text:0x00079E38; // type:function size:0x38 scope:global align:4
+mSP_LotteryLineUp_GameAlloc = .text:0x00079E70; // type:function size:0x20 scope:global align:4
+mSP_InitShopSaveData = .text:0x00079E90; // type:function size:0xE4 scope:global align:4
+mSP_DecideUniqueCommonList = .text:0x00079F74; // type:function size:0x54 scope:global align:4
+mSP_DecideGoodsCommonList = .text:0x00079FC8; // type:function size:0x5C scope:global align:4
+mSP_ShopGameStartCt = .text:0x0007A024; // type:function size:0x38 scope:global align:4
+mSP_GetNowShopBgNum = .text:0x0007A05C; // type:function size:0xB0 scope:global align:4
+mSP_WhatSpecialSale = .text:0x0007A10C; // type:function size:0x10 scope:global align:4
+mSP_GetNowShopFgNum = .text:0x0007A11C; // type:function size:0x2D0 scope:global align:4
+mSP_GetShopOpenTime = .text:0x0007A3EC; // type:function size:0x74 scope:global align:4
+mSP_GetShopCloseTime = .text:0x0007A460; // type:function size:0x2C scope:global align:4
+mSP_GetShopCloseTime_Bgm = .text:0x0007A48C; // type:function size:0x2C scope:global align:4
+mSP_InRenewal = .text:0x0007A4B8; // type:function size:0x98 scope:global align:4
+mSP_ShopOpen = .text:0x0007A550; // type:function size:0x1E4 scope:global align:4
+mSP_RandomHaniwaSelect = .text:0x0007A734; // type:function size:0xE8 scope:global align:4
+mSP_RandomMDSelect = .text:0x0007A81C; // type:function size:0xE4 scope:global align:4
+mSP_RandomUmbSelect = .text:0x0007A900; // type:function size:0xE4 scope:global align:4
+mSP_CountBirth = .text:0x0007A9E4; // type:function size:0x60 scope:global align:4
+mSP_FtrBirthIdx2ItemNo = .text:0x0007AA44; // type:function size:0x84 scope:global align:4
+mSP_RandomOneFossilSelect = .text:0x0007AAC8; // type:function size:0x88 scope:global align:4
+mSP_Chk_HukubukuroSail = .text:0x0007AB50; // type:function size:0x7C scope:global align:4
+mSP_CheckFukubikiDay = .text:0x0007ABCC; // type:function size:0x58 scope:global align:4
+mSP_SetGoods2ReservedPoint = .text:0x0007AC24; // type:function size:0x9C scope:global align:4
+mSP_CheckHallowinDay = .text:0x0007ACC0; // type:function size:0x50 scope:global align:4
+mSP_SetTanukiShopStatus = .text:0x0007AD10; // type:function size:0xC0 scope:global align:4
+mSP_money_check = .text:0x0007ADD0; // type:function size:0xB8 scope:global align:4
+mSP_get_sell_price_sub = .text:0x0007AE88; // type:function size:0xD8 scope:global align:4
+mSP_get_sell_price = .text:0x0007AF60; // type:function size:0x58 scope:global align:4
+mSP_GetNonePossessionItemCount_InList = .text:0x0007AFB8; // type:function size:0xA8 scope:global align:4
+mSP_GetNonePossessionItem_InList = .text:0x0007B060; // type:function size:0xF4 scope:global align:4
+mSP_GetNonePossessionItem_InLotteryFurniture = .text:0x0007B154; // type:function size:0x7C scope:global align:4
+mSP_GetNonePossessionItem_InEventFurniture = .text:0x0007B1D0; // type:function size:0x7C scope:global align:4
+mSP_CarryOutAlternativeRandomSelect = .text:0x0007B24C; // type:function size:0xD0 scope:global align:4
+mSP_CarryOutAlternativeRandomSelect_NoneNULL = .text:0x0007B31C; // type:function size:0xB4 scope:global align:4
+mSP_SelectFishginPresent = .text:0x0007B3D0; // type:function size:0x54 scope:global align:4
+mSP_AGBRandomFamicomSelect = .text:0x0007B424; // type:function size:0x4C scope:global align:4
+mSP_GetRandomTrash = .text:0x0007B470; // type:function size:0x48 scope:global align:4
+mSP_SelectRandomItemToAGB_Unit = .text:0x0007B4B8; // type:function size:0x3E4 scope:global align:4
+mSP_SelectRandomItemToAGB = .text:0x0007B89C; // type:function size:0x274 scope:global align:4
+mSP_ShopStatus2String = .text:0x0007BB10; // type:function size:0x30 scope:global align:4
+mSP_GetRandomStationToyItemNo = .text:0x0007BB40; // type:function size:0x44 scope:global align:4
+mItemDebug_FurnitureCanUse = .text:0x0007BB84; // type:function size:0x60 scope:global align:4
+mItemDebug_ItemDebugMain = .text:0x0007BBE4; // type:function size:0x298 scope:global align:4
+mItemDebug_ItemDebugDraw = .text:0x0007BE7C; // type:function size:0x11C scope:global align:4
+mSC_get_soncho_event = .text:0x0007BF98; // type:function size:0xDC scope:global align:4
+mSC_get_soncho_field_event = .text:0x0007C074; // type:function size:0x6C scope:global align:4
+mSC_delete_soncho = .text:0x0007C0E0; // type:function size:0x154 scope:global align:4
+mSC_trophy_get = .text:0x0007C234; // type:function size:0x7C scope:global align:4
+mSC_trophy_set = .text:0x0007C2B0; // type:function size:0x6C scope:global align:4
+mSC_trophy_item = .text:0x0007C31C; // type:function size:0xF4 scope:global align:4
+mSC_item_string_set = .text:0x0007C410; // type:function size:0x68 scope:global align:4
+mSC_get_event_name_str = .text:0x0007C478; // type:function size:0x34 scope:global align:4
+mSC_event_name_set = .text:0x0007C4AC; // type:function size:0x94 scope:global align:4
+mSC_set_free_str_number = .text:0x0007C540; // type:function size:0x88 scope:global align:4
+mSC_Radio_many_taisou_card = .text:0x0007C5C8; // type:function size:0x6C scope:global align:4
+mSC_Radio_have_taisou_card = .text:0x0007C634; // type:function size:0x78 scope:global align:4
+mSC_Radio_time_check = .text:0x0007C6AC; // type:function size:0x98 scope:global align:4
+mSC_Radio_limit_check = .text:0x0007C744; // type:function size:0x34 scope:global align:4
+mSC_Radio_delete_taisou_card = .text:0x0007C778; // type:function size:0x98 scope:global align:4
+mSC_Radio_change_taisou_card = .text:0x0007C810; // type:function size:0x68 scope:global align:4
+mSC_Radio_stamp_card = .text:0x0007C878; // type:function size:0x30 scope:global align:4
+mSC_Radio_msg = .text:0x0007C8A8; // type:function size:0x14 scope:global align:4
+mSC_Radio_Set_Talk_Proc = .text:0x0007C8BC; // type:function size:0x640 scope:global align:4
+mSCR_talk_pickup_all = .text:0x0007CEFC; // type:function size:0xDC scope:global align:4
+mSCR_talk_inspection = .text:0x0007CFD8; // type:function size:0x1E0 scope:global align:4
+mSCR_talk_newcard = .text:0x0007D1B8; // type:function size:0xBC scope:global align:4
+mSCR_talk_before_give = .text:0x0007D274; // type:function size:0xAC scope:global align:4
+mSCR_talk_give = .text:0x0007D320; // type:function size:0xB8 scope:global align:4
+mSCR_talk_next = .text:0x0007D3D8; // type:function size:0x6C scope:global align:4
+mSC_Radio_Talk_Proc = .text:0x0007D444; // type:function size:0x38 scope:global align:4
+mSC_LightHouse_get_period = .text:0x0007D47C; // type:function size:0x118 scope:global align:4
+mSC_LightHouse_day = .text:0x0007D594; // type:function size:0x9C scope:global align:4
+mSC_LightHouse_Event_Check = .text:0x0007D630; // type:function size:0x118 scope:global align:4
+mSC_LightHouse_Event_Clear = .text:0x0007D748; // type:function size:0x78 scope:global align:4
+mSC_LightHouse_Event_Present_Item = .text:0x0007D7C0; // type:function size:0x24 scope:global align:4
+mSC_LightHouse_clear_data = .text:0x0007D7E4; // type:function size:0x38 scope:global align:4
+mSC_LightHouse_Event_Start = .text:0x0007D81C; // type:function size:0x5C scope:global align:4
+mSC_LightHouse_Talk_After_Check = .text:0x0007D878; // type:function size:0x5C scope:global align:4
+mSC_LightHouse_Quest_Start = .text:0x0007D8D4; // type:function size:0x78 scope:global align:4
+mSC_LightHouse_Switch_Check = .text:0x0007D94C; // type:function size:0x98 scope:global align:4
+mSC_LightHouse_In_Check = .text:0x0007D9E4; // type:function size:0xD8 scope:global align:4
+mSC_LightHouse_Switch_On = .text:0x0007DABC; // type:function size:0x80 scope:global align:4
+mSC_LightHouse_Delete_Player = .text:0x0007DB3C; // type:function size:0x2C scope:global align:4
+mSC_LightHouse_travel_check = .text:0x0007DB68; // type:function size:0x48 scope:global align:4
+mSC_change_player_freeze = .text:0x0007DBB0; // type:function size:0x44 scope:global align:4
+mSC_check_ArbeitPlayer = .text:0x0007DBF4; // type:function size:0x24 scope:global align:4
+famicom_emu_initial_common_data = .text:0x0007DC18; // type:function size:0x4 scope:global align:4
+decide_fruit = .text:0x0007DC1C; // type:function size:0x4C scope:global align:4
+decide_fish_location = .text:0x0007DC68; // type:function size:0x48 scope:global align:4
+title_game_haniwa_data_init = .text:0x0007DCB0; // type:function size:0xF8 scope:global align:4
+mSDI_ClearMoneyPlayerHomeStationBlock = .text:0x0007DDA8; // type:function size:0xF0 scope:global align:4
+mSDI_PullTreeUT = .text:0x0007DE98; // type:function size:0x50 scope:global align:4
+mSDI_PullTreeBlock = .text:0x0007DEE8; // type:function size:0x54 scope:global align:4
+mSDI_PullTree = .text:0x0007DF3C; // type:function size:0x70 scope:global align:4
+mSDI_PullTreeUnderPlayerBlock = .text:0x0007DFAC; // type:function size:0x58 scope:global align:4
+mSDI_StartInitNew = .text:0x0007E004; // type:function size:0x354 scope:global align:4
+mSDI_StartInitFrom = .text:0x0007E358; // type:function size:0x1D8 scope:global align:4
+mSDI_StartInitNewPlayer = .text:0x0007E530; // type:function size:0x150 scope:global align:4
+mSDI_StartInitPak = .text:0x0007E680; // type:function size:0xEC scope:global align:4
+mSDI_StartInitErr = .text:0x0007E76C; // type:function size:0x8 scope:global align:4
+mSDI_StartInitAfter = .text:0x0007E774; // type:function size:0x230 scope:global align:4
+mSDI_StartInitBefore = .text:0x0007E9A4; // type:function size:0x64 scope:global align:4
+mSDI_StartDataInit = .text:0x0007EA08; // type:function size:0x80 scope:global align:4
+mString_aram_init = .text:0x0007EA88; // type:function size:0x3C scope:global align:4
+mString_Get_StringDataAddressAndSize = .text:0x0007EAC4; // type:function size:0x48 scope:global align:4
+mString_Load_StringFromRom = .text:0x0007EB0C; // type:function size:0x10C scope:global align:4
+mString_Load_YearStringFromRom = .text:0x0007EC18; // type:function size:0x50 scope:global align:4
+mString_Load_MonthStringFromRom = .text:0x0007EC68; // type:function size:0x60 scope:global align:4
+mString_Load_WeekStringFromRom = .text:0x0007ECC8; // type:function size:0x58 scope:global align:4
+mString_Load_DayStringFromRom = .text:0x0007ED20; // type:function size:0x60 scope:global align:4
+mString_Load_HourStringFromRom = .text:0x0007ED80; // type:function size:0xDC scope:global align:4
+mString_Load_HourStringFromRom2 = .text:0x0007EE5C; // type:function size:0x78 scope:global align:4
+mString_Load_MinStringFromRom = .text:0x0007EED4; // type:function size:0x48 scope:global align:4
+mString_Load_SecStringFromRom = .text:0x0007EF1C; // type:function size:0x48 scope:global align:4
+mString_Load_NumberStringAddUnitFromRom = .text:0x0007EF64; // type:function size:0x84 scope:global align:4
+mSM_COLLECT_INSECT_GET = .text:0x0007EFE8; // type:function size:0x40 scope:global align:4
+mSM_COLLECT_INSECT_SET = .text:0x0007F028; // type:function size:0x3C scope:global align:4
+mSM_CHECK_ALL_INSECT_GET_SUB = .text:0x0007F064; // type:function size:0x58 scope:global align:4
+mSM_CHECK_ALL_INSECT_GET = .text:0x0007F0BC; // type:function size:0x2C scope:global align:4
+mSM_CHECK_LAST_INSECT_GET = .text:0x0007F0E8; // type:function size:0x58 scope:global align:4
+mSM_COLLECT_FISH_GET = .text:0x0007F140; // type:function size:0x40 scope:global align:4
+mSM_COLLECT_FISH_SET = .text:0x0007F180; // type:function size:0x3C scope:global align:4
+mSM_CHECK_ALL_FISH_GET_SUB = .text:0x0007F1BC; // type:function size:0x58 scope:global align:4
+mSM_CHECK_ALL_FISH_GET = .text:0x0007F214; // type:function size:0x2C scope:global align:4
+mSM_CHECK_LAST_FISH_GET = .text:0x0007F240; // type:function size:0x58 scope:global align:4
+SubmenuArea_IsPlayer = .text:0x0007F298; // type:function size:0x28 scope:global align:4
+mSM_load_player_anime = .text:0x0007F2C0; // type:function size:0x4 scope:global align:4
+SubmenuArea_DoLink = .text:0x0007F2C4; // type:function size:0x34 scope:global align:4
+SubmenuArea_DoUnlink = .text:0x0007F2F8; // type:function size:0x30 scope:global align:4
+mSM_ovlptr_dllcnv_sub = .text:0x0007F328; // type:function size:0x48 scope:global align:4
+mSM_ovlptr_dllcnv = .text:0x0007F370; // type:function size:0x60 scope:global align:4
+mSM_submenu_ovlptr_init = .text:0x0007F3D0; // type:function size:0x1C scope:global align:4
+mSM_submenu_ovlptr_cleanup = .text:0x0007F3EC; // type:function size:0x50 scope:global align:4
+load_player = .text:0x0007F43C; // type:function size:0x6C scope:global align:4
+mSM_submenu_ct = .text:0x0007F4A8; // type:function size:0x70 scope:global align:4
+mSM_submenu_dt = .text:0x0007F518; // type:function size:0x4 scope:global align:4
+mSM_open_submenu = .text:0x0007F51C; // type:function size:0x28 scope:global align:4
+mSM_open_submenu_new = .text:0x0007F544; // type:function size:0x24 scope:global align:4
+mSM_open_submenu_new2 = .text:0x0007F568; // type:function size:0x18 scope:global align:4
+mSM_Reset_player_btn_type1 = .text:0x0007F580; // type:function size:0x38 scope:global align:4
+mSM_Reset_player_btn_type2 = .text:0x0007F5B8; // type:function size:0x30 scope:global align:4
+mSM_check_open_map_new = .text:0x0007F5E8; // type:function size:0xE8 scope:global align:4
+mSM_submenu_ctrl = .text:0x0007F6D0; // type:function size:0x244 scope:global align:4
+mSM_move_Wait = .text:0x0007F914; // type:function size:0x2C scope:global align:4
+mSM_move_PREWait = .text:0x0007F940; // type:function size:0x18 scope:global align:4
+mSM_move_LINKWait = .text:0x0007F958; // type:function size:0x150 scope:global align:4
+mSM_move_Play = .text:0x0007FAA8; // type:function size:0x28 scope:global align:4
+mSM_move_End = .text:0x0007FAD0; // type:function size:0xF8 scope:local align:4
+mSM_submenu_move = .text:0x0007FBC8; // type:function size:0x38 scope:global align:4
+mSM_submenu_draw = .text:0x0007FC00; // type:function size:0x5C scope:global align:4
+mSM_check_item_for_furniture = .text:0x0007FC5C; // type:function size:0x80 scope:global align:4
+mSM_check_item_for_quest = .text:0x0007FCDC; // type:function size:0x58 scope:global align:4
+mSM_check_item_for_sell = .text:0x0007FD34; // type:function size:0x80 scope:global align:4
+mSM_check_item_for_give = .text:0x0007FDB4; // type:function size:0x68 scope:global align:4
+mSM_check_item_for_take = .text:0x0007FE1C; // type:function size:0xA0 scope:global align:4
+mSM_check_item_for_minidisk = .text:0x0007FEBC; // type:function size:0x54 scope:global align:4
+mSM_check_item_for_shrine = .text:0x0007FF10; // type:function size:0x5C scope:global align:4
+mSM_check_item_for_entrust = .text:0x0007FF6C; // type:function size:0x80 scope:global align:4
+mSM_check_item_for_exchange = .text:0x0007FFEC; // type:function size:0x11C scope:global align:4
+mSM_check_item_for_curator = .text:0x00080108; // type:function size:0x58 scope:global align:4
+mSM_check_open_inventory_itemlist = .text:0x00080160; // type:function size:0x94 scope:global align:4
+mSM_Object_Exchange_keep_new = .text:0x000801F4; // type:function size:0x5C scope:global align:4
+mSM_Object_Exchange_keep_new_MenuTexAndPallet = .text:0x00080250; // type:function size:0x8C scope:global align:4
+mSM_Object_Exchange_keep_new_Menu = .text:0x000802DC; // type:function size:0x44 scope:global align:4
+mSM_Get_ground_tex_p = .text:0x00080320; // type:function size:0x24 scope:global align:4
+mSM_Get_ground_pallet_p = .text:0x00080344; // type:function size:0x24 scope:global align:4
+mSc_set_bank_status_after = .text:0x00080368; // type:function size:0x2C scope:global align:4
+mSc_clear_bank_status = .text:0x00080394; // type:function size:0x18 scope:global align:4
+Object_Exchange_keep_new_Player = .text:0x000803AC; // type:function size:0x94 scope:global align:4
+mSc_secure_exchange_keep_bank = .text:0x00080440; // type:function size:0x80 scope:global align:4
+mSc_background_dmacopy_controller = .text:0x000804C0; // type:function size:0xA8 scope:global align:4
+mSc_dmacopy_data_bank = .text:0x00080568; // type:function size:0x4 scope:global align:4
+mSc_bank_regist_check = .text:0x0008056C; // type:function size:0x50 scope:global align:4
+mSc_regist_initial_exchange_bank = .text:0x000805BC; // type:function size:0x98 scope:global align:4
+mSc_dmacopy_all_exchange_bank_sub = .text:0x00080654; // type:function size:0xE4 scope:global align:4
+mSc_dmacopy_all_exchange_bank = .text:0x00080738; // type:function size:0x218 scope:global align:4
+mSc_data_bank_ct = .text:0x00080950; // type:function size:0x80 scope:global align:4
+mSc_decide_exchange_bank = .text:0x000809D0; // type:function size:0x14 scope:global align:4
+Scene_player_select = .text:0x000809E4; // type:function size:0x210 scope:global align:4
+Scene_ct = .text:0x00080BF4; // type:function size:0x1C8 scope:global align:4
+Scene_Proc_Player_Ptr = .text:0x00080DBC; // type:function size:0xA8 scope:global align:4
+Scene_Proc_Ctrl_Actor_Ptr = .text:0x00080E64; // type:function size:0x14 scope:global align:4
+Scene_Proc_Actor_Ptr = .text:0x00080E78; // type:function size:0x14 scope:global align:4
+Scene_Proc_Object_Exchange_Bank_Ptr = .text:0x00080E8C; // type:function size:0x14 scope:global align:4
+Scene_Proc_Door_Data_Ptr = .text:0x00080EA0; // type:function size:0x14 scope:global align:4
+Door_info_ct = .text:0x00080EB4; // type:function size:0xC scope:global align:4
+Scene_Proc_Sound = .text:0x00080EC0; // type:function size:0x4 scope:global align:4
+set_item_info = .text:0x00080EC4; // type:function size:0x58 scope:global align:4
+Scene_Proc_Field_ct = .text:0x00080F1C; // type:function size:0x74 scope:global align:4
+Scene_Proc_MyRoom_ct = .text:0x00080F90; // type:function size:0x20 scope:global align:4
+Scene_Proc_ArrangeRoom_ct = .text:0x00080FB0; // type:function size:0x20 scope:global align:4
+Scene_Proc_ArrangeFurniture_ct = .text:0x00080FD0; // type:function size:0x18 scope:global align:4
+goto_other_scene = .text:0x00080FE8; // type:function size:0x110 scope:global align:4
+goto_next_scene = .text:0x000810F8; // type:function size:0x44 scope:global align:4
+goto_emu_game = .text:0x0008113C; // type:function size:0xC0 scope:global align:4
+return_emu_game = .text:0x000811FC; // type:function size:0x84 scope:global align:4
+Skin_Matrix_PrjMulVector = .text:0x00081280; // type:function size:0xE4 scope:global align:4
+Skin_Matrix_MulMatrix = .text:0x00081364; // type:function size:0x344 scope:global align:4
+Skin_Matrix_SetScale = .text:0x000816A8; // type:function size:0x54 scope:global align:4
+Skin_Matrix_SetRotateXyz_s = .text:0x000816FC; // type:function size:0x1BC scope:global align:4
+Skin_Matrix_SetTranslate = .text:0x000818B8; // type:function size:0x54 scope:global align:4
+mSN_check_life = .text:0x0008190C; // type:function size:0x50 scope:global align:4
+mSN_ClearSnowmanData = .text:0x0008195C; // type:function size:0x50 scope:global align:4
+mSN_ClearSnowman = .text:0x000819AC; // type:function size:0x50 scope:global align:4
+mSN_MeltSnowman = .text:0x000819FC; // type:function size:0x148 scope:global align:4
+mSN_get_free_space = .text:0x00081B44; // type:function size:0x3C scope:global align:4
+mSN_regist_snowman_society = .text:0x00081B80; // type:function size:0xEC scope:global align:4
+mSN_decide_msg = .text:0x00081C6C; // type:function size:0x48 scope:global align:4
+mSN_snowman_init = .text:0x00081CB4; // type:function size:0x38 scope:global align:4
+get_demo_header = .text:0x00081CEC; // type:function size:0x1C scope:global align:4
+mTD_demono_get = .text:0x00081D08; // type:function size:0x48 scope:global align:4
+mTD_player_keydata_init = .text:0x00081D50; // type:function size:0xA0 scope:global align:4
+get_tdemo_keydata = .text:0x00081DF0; // type:function size:0x74 scope:global align:4
+set_player_demo_keydata = .text:0x00081E64; // type:function size:0x1AC scope:global align:4
+mTD_game_end_init = .text:0x00082010; // type:function size:0x38 scope:global align:4
+title_demo_move = .text:0x00082048; // type:function size:0x68 scope:global align:4
+mTD_rtc_set = .text:0x000820B0; // type:function size:0x84 scope:global align:4
+mTD_rtc_reserve = .text:0x00082134; // type:function size:0x10 scope:global align:4
+mTD_get_titledemo_no = .text:0x00082144; // type:function size:0x20 scope:global align:4
+mTD_tdemo_button_ok_check = .text:0x00082164; // type:function size:0x1C scope:global align:4
+mTRC_SetMicPos = .text:0x00082180; // type:function size:0x110 scope:global align:4
+mTRC_KishaStatusLevel = .text:0x00082290; // type:function size:0x240 scope:global align:4
+mTRC_KishaStatusTrg = .text:0x000824D0; // type:function size:0x40 scope:global align:4
+aTRC_area_check = .text:0x00082510; // type:function size:0x94 scope:global align:4
+mTRC_go_process = .text:0x000825A4; // type:function size:0x6C scope:global align:4
+mTRC_get_depart_time = .text:0x00082610; // type:function size:0x68 scope:global align:4
+mTRC_time_check = .text:0x00082678; // type:function size:0x40 scope:global align:4
+mTRC_mati_init = .text:0x000826B8; // type:function size:0x74 scope:global align:4
+mTRC_demo_init = .text:0x0008272C; // type:function size:0xAC scope:global align:4
+mTRC_call_init = .text:0x000827D8; // type:function size:0x7C scope:global align:4
+mTRC_norm_init = .text:0x00082854; // type:function size:0x7C scope:global align:4
+mTRC_schedule = .text:0x000828D0; // type:function size:0x184 scope:global align:4
+mTRC_trainControl = .text:0x00082A54; // type:function size:0x38C scope:global align:4
+mTRC_trainSet = .text:0x00082DE0; // type:function size:0x248 scope:global align:4
+mTRC_init = .text:0x00083028; // type:function size:0x88 scope:global align:4
+mTRC_move = .text:0x000830B0; // type:function size:0x84 scope:global align:4
+mTM_get_termIdx = .text:0x00083134; // type:function size:0x9C scope:global align:4
+mTM_set_season_com = .text:0x000831D0; // type:function size:0x3C scope:global align:4
+mTM_set_season = .text:0x0008320C; // type:function size:0x24 scope:global align:4
+mTM_clear_renew_is = .text:0x00083230; // type:function size:0x10 scope:global align:4
+mTM_check_renew_time = .text:0x00083240; // type:function size:0x2C scope:global align:4
+mTM_off_renew_time = .text:0x0008326C; // type:function size:0x24 scope:global align:4
+mTM_set_renew_is = .text:0x00083290; // type:function size:0x10 scope:global align:4
+mTM_set_renew_time = .text:0x000832A0; // type:function size:0x1C scope:global align:4
+mTM_ymd_2_time = .text:0x000832BC; // type:function size:0x68 scope:global align:4
+mTM_renewal_renew_time = .text:0x00083324; // type:function size:0x6C scope:global align:4
+mTM_disp_time = .text:0x00083390; // type:function size:0x260 scope:global align:4
+mTM_TimestepControl = .text:0x000835F0; // type:function size:0x114 scope:global align:4
+mTM_time_init = .text:0x00083704; // type:function size:0x1C8 scope:global align:4
+mTM_time = .text:0x000838CC; // type:function size:0x288 scope:global align:4
+mTM_rtcTime_limit_check = .text:0x00083B54; // type:function size:0x5C scope:global align:4
+set_viewport = .text:0x00083BB0; // type:function size:0x64 scope:global align:4
+initView = .text:0x00083C14; // type:function size:0xDC scope:global align:4
+setLookAtView = .text:0x00083CF0; // type:function size:0x88 scope:global align:4
+setScaleView = .text:0x00083D78; // type:function size:0x14 scope:global align:4
+setPerspectiveView = .text:0x00083D8C; // type:function size:0x1C scope:global align:4
+setScissorView = .text:0x00083DA8; // type:function size:0x30 scope:global align:4
+setScissorX = .text:0x00083DD8; // type:function size:0x108 scope:global align:4
+setScissor = .text:0x00083EE0; // type:function size:0xE0 scope:global align:4
+stretchViewInit = .text:0x00083FC0; // type:function size:0x64 scope:global align:4
+do_stretch_view = .text:0x00084024; // type:function size:0x208 scope:global align:4
+showView = .text:0x0008422C; // type:function size:0x40 scope:global align:4
+showPerspectiveView = .text:0x0008426C; // type:function size:0x38C scope:global align:4
+showOrthoView = .text:0x000845F8; // type:function size:0x248 scope:global align:4
+showView1 = .text:0x00084840; // type:function size:0x320 scope:global align:4
+watch_my_step_ct = .text:0x00084B60; // type:function size:0x44 scope:global align:4
+watch_my_step_move = .text:0x00084BA4; // type:function size:0x5B8 scope:global align:4
+watch_my_step_draw = .text:0x0008515C; // type:function size:0x4F8 scope:global align:4
+navigate_camera_ct = .text:0x00085654; // type:function size:0x2C scope:global align:4
+navigate_camera_move = .text:0x00085680; // type:function size:0x290 scope:global align:4
+navigate_camera_draw = .text:0x00085910; // type:function size:0x1F4 scope:global align:4
+mWt_set_coin_se = .text:0x00085B04; // type:function size:0xA0 scope:global align:4
+mWt_mybell_confirmation_ct = .text:0x00085BA4; // type:function size:0x44 scope:global align:4
+mWt_mybell_confirmation_move = .text:0x00085BE8; // type:function size:0x3E0 scope:global align:4
+mWt_mybell_confirmation_draw = .text:0x00085FC8; // type:function size:0x270 scope:global align:4
+get_all_money = .text:0x00086238; // type:function size:0x90 scope:global align:4
+mRlib_spdXZ_to_spdF_Angle = .text:0x000862C8; // type:function size:0xBC scope:global align:4
+mRlib_spdF_Angle_to_spdXZ = .text:0x00086384; // type:function size:0x60 scope:global align:4
+mRlib_position_move_for_sloop = .text:0x000863E4; // type:function size:0x158 scope:global align:4
+mRlib_Get_norm_Clif = .text:0x0008653C; // type:function size:0x168 scope:global align:4
+mRlib_Roll_Matrix_to_s_xyz = .text:0x000866A4; // type:function size:0xA0 scope:global align:4
+mRlib_Get_HitWallAngleY = .text:0x00086744; // type:function size:0x60 scope:global align:4
+mRlib_Station_step_modify_to_wall = .text:0x000867A4; // type:function size:0xDC scope:global align:4
+mRlib_Set_Position_Check = .text:0x00086880; // type:function size:0x138 scope:global align:4
+mRlib_HeightGapCheck_And_ReversePos = .text:0x000869B8; // type:function size:0x120 scope:global align:4
+mRlib_Hole_check = .text:0x00086AD8; // type:function size:0x6C scope:global align:4
+mRlib_Get_ground_norm_inHole = .text:0x00086B44; // type:function size:0x190 scope:global align:4
+mRlib_PSnowmanTouchCheck = .text:0x00086CD4; // type:function size:0xA0 scope:global align:4
+mRlib_PSnowmanBreakCheck = .text:0x00086D74; // type:function size:0x2E8 scope:global align:4
+mRlib_PSnowmanBreakNeckSwing = .text:0x0008705C; // type:function size:0x130 scope:global align:4
+mRlib_PSnowman_NormalTalk = .text:0x0008718C; // type:function size:0x160 scope:global align:4
+mRlib_snowman_ball_unit_check_from_pos = .text:0x000872EC; // type:function size:0x15C scope:global align:4
+mCD_ClearErrInfo = .text:0x00087448; // type:function size:0x38 scope:global align:4
+mCD_OnErrInfo = .text:0x00087480; // type:function size:0x28 scope:global align:4
+mCD_OffErrInfo = .text:0x000874A8; // type:function size:0x28 scope:global align:4
+mCD_SetErrResult = .text:0x000874D0; // type:function size:0xC scope:global align:4
+mCD_PrintErrInfo = .text:0x000874DC; // type:function size:0x158 scope:global align:4
+mCD_malloc_32 = .text:0x00087634; // type:function size:0x24 scope:global align:4
+mCD_check_card_common = .text:0x00087658; // type:function size:0x88 scope:global align:4
+mCD_check_card = .text:0x000876E0; // type:function size:0x8C scope:global align:4
+mCD_check_sector_size = .text:0x0008776C; // type:function size:0xAC scope:global align:4
+mCD_get_file_num_com = .text:0x00087818; // type:function size:0x6C scope:global align:4
+mCD_get_file_num = .text:0x00087884; // type:function size:0xB4 scope:global align:4
+mCD_init_card = .text:0x00087938; // type:function size:0x20 scope:global align:4
+mCD_ClearCardBgInfo = .text:0x00087958; // type:function size:0x24 scope:global align:4
+mCD_StartSetCardBgInfo = .text:0x0008797C; // type:function size:0x28 scope:global align:4
+mCD_get_space_bg_get_slot = .text:0x000879A4; // type:function size:0x104 scope:global align:4
+mCD_get_space_bg_main = .text:0x00087AA8; // type:function size:0xD4 scope:global align:4
+mCD_get_space_bg = .text:0x00087B7C; // type:function size:0xD8 scope:global align:4
+mCD_close_and_unmount = .text:0x00087C54; // type:function size:0x34 scope:global align:4
+mCD_bg_check_slot = .text:0x00087C88; // type:function size:0x98 scope:global align:4
+mCD_bg_init_com = .text:0x00087D20; // type:function size:0x138 scope:global align:4
+mCD_bg_init = .text:0x00087E58; // type:function size:0x2C scope:global align:4
+mCD_bg_check_filesystem = .text:0x00087E84; // type:function size:0xA4 scope:global align:4
+mCD_write_bg_open_file = .text:0x00087F28; // type:function size:0x140 scope:global align:4
+mCD_write_bg_write = .text:0x00088068; // type:function size:0xC0 scope:global align:4
+mCD_write_bg_cleanup = .text:0x00088128; // type:function size:0x74 scope:global align:4
+mCD_bg_init_write_comp = .text:0x0008819C; // type:function size:0x78 scope:global align:4
+mCD_write_comp_bg_open_file = .text:0x00088214; // type:function size:0x144 scope:global align:4
+mCD_write_comp_bg_read = .text:0x00088358; // type:function size:0x19C scope:global align:4
+mCD_write_comp_bg_write = .text:0x000884F4; // type:function size:0x134 scope:global align:4
+mCD_write_comp_bg = .text:0x00088628; // type:function size:0x1B4 scope:global align:4
+mCD_read_bg_open_file = .text:0x000887DC; // type:function size:0x108 scope:global align:4
+mCD_read_bg_cleanup = .text:0x000888E4; // type:function size:0x74 scope:global align:4
+mCD_read_fg = .text:0x00088958; // type:function size:0x164 scope:global align:4
+mCD_find_fg = .text:0x00088ABC; // type:function size:0xFC scope:global align:4
+mCD_format_bg_mount = .text:0x00088BB8; // type:function size:0xA8 scope:global align:4
+mCD_format_bg_open_file = .text:0x00088C60; // type:function size:0xB4 scope:global align:4
+mCD_format_bg_cleanup = .text:0x00088D14; // type:function size:0x80 scope:global align:4
+mCD_format_bg = .text:0x00088D94; // type:function size:0x134 scope:global align:4
+mCD_set_file_status_bg_open_file = .text:0x00088EC8; // type:function size:0xF0 scope:global align:4
+mCD_set_file_status_bg_cleanup = .text:0x00088FB8; // type:function size:0x84 scope:global align:4
+mCD_set_file_status_bg = .text:0x0008903C; // type:function size:0x134 scope:global align:4
+mCD_get_file_status_bg_open_file = .text:0x00089170; // type:function size:0xEC scope:global align:4
+mCD_get_file_status_bg = .text:0x0008925C; // type:function size:0x134 scope:global align:4
+mCD_create_file_bg_create = .text:0x00089390; // type:function size:0xB8 scope:global align:4
+mCD_create_file_bg_set_not_copy = .text:0x00089448; // type:function size:0xF0 scope:global align:4
+mCD_create_file_bg = .text:0x00089538; // type:function size:0x190 scope:global align:4
+mCD_set_file_permission_bg_set = .text:0x000896C8; // type:function size:0x124 scope:global align:4
+mCD_set_file_permission_bg = .text:0x000897EC; // type:function size:0x19C scope:global align:4
+mCD_erase_file_bg_erase = .text:0x00089988; // type:function size:0xAC scope:global align:4
+mCD_erase_file_bg = .text:0x00089A34; // type:function size:0x128 scope:global align:4
+mCD_erase_file_fg = .text:0x00089B5C; // type:function size:0xE8 scope:global align:4
+mCD_rename_file_fg = .text:0x00089C44; // type:function size:0xEC scope:global align:4
+mCD_clear_aram_access_bit = .text:0x00089D30; // type:function size:0x10 scope:global align:4
+mCD_save_data_aram_malloc = .text:0x00089D40; // type:function size:0x60 scope:global align:4
+mCD_save_data_aram_to_main = .text:0x00089DA0; // type:function size:0x7C scope:global align:4
+mCD_save_data_main_to_aram = .text:0x00089E1C; // type:function size:0x7C scope:global align:4
+mCD_get_aram_save_data_max_size = .text:0x00089E98; // type:function size:0x34 scope:global align:4
+mCD_set_init_mail_data = .text:0x00089ECC; // type:function size:0x7C scope:global align:4
+mCD_set_init_original_data = .text:0x00089F48; // type:function size:0x8C scope:global align:4
+mCD_set_init_diary_data = .text:0x00089FD4; // type:function size:0x6C scope:global align:4
+mCD_set_aram_save_data = .text:0x0008A040; // type:function size:0xB4 scope:global align:4
+mCD_TransErrorCode = .text:0x0008A0F4; // type:function size:0xA4 scope:global align:4
+mCD_TransErrorCode_nes = .text:0x0008A198; // type:function size:0xB8 scope:global align:4
+mCD_get_offset = .text:0x0008A250; // type:function size:0x48 scope:global align:4
+mCD_get_size = .text:0x0008A298; // type:function size:0x30 scope:global align:4
+mCD_ClearMemMgr_com = .text:0x0008A2C8; // type:function size:0x44 scope:global align:4
+mCD_ClearMemMgr_com2 = .text:0x0008A30C; // type:function size:0x60 scope:global align:4
+mCD_ClearKeepLand = .text:0x0008A36C; // type:function size:0x3C scope:global align:4
+mCD_ClearMemMgr = .text:0x0008A3A8; // type:function size:0x28 scope:global align:4
+mCD_ClearCardPrivateTable_com = .text:0x0008A3D0; // type:function size:0x60 scope:global align:4
+mCD_ClearCardPrivateTable = .text:0x0008A430; // type:function size:0x2C scope:global align:4
+mCD_SetCardPrivateTable = .text:0x0008A45C; // type:function size:0x48 scope:global align:4
+mCD_ClearForeignerFile = .text:0x0008A4A4; // type:function size:0x54 scope:global align:4
+mCD_ClearNoLandProtectCode = .text:0x0008A4F8; // type:function size:0x24 scope:global align:4
+mCD_CheckInitProtectCode = .text:0x0008A51C; // type:function size:0x3C scope:global align:4
+mCD_CheckProtectCode = .text:0x0008A558; // type:function size:0x4C scope:global align:4
+mCD_MakeProtectCode = .text:0x0008A5A4; // type:function size:0x88 scope:global align:4
+mCD_CompNoLandCode = .text:0x0008A62C; // type:function size:0x80 scope:global align:4
+mCD_SetForeignerFile = .text:0x0008A6AC; // type:function size:0x60 scope:global align:4
+mCD_InitAll = .text:0x0008A70C; // type:function size:0x6C scope:global align:4
+mCD_save_file = .text:0x0008A778; // type:function size:0x88 scope:global align:4
+mCD_load_file = .text:0x0008A800; // type:function size:0x84 scope:global align:4
+mCD_clear_write_control_common = .text:0x0008A884; // type:function size:0x60 scope:global align:4
+mCD_clear_all_control = .text:0x0008A8E4; // type:function size:0x28 scope:global align:4
+mCD_GetHighPriority_common = .text:0x0008A90C; // type:function size:0x24 scope:global align:4
+mCD_check_Land_exist_com = .text:0x0008A930; // type:function size:0x58 scope:global align:4
+mCD_check_Land_exist = .text:0x0008A988; // type:function size:0xC8 scope:global align:4
+mCD_CheckFilename = .text:0x0008AA50; // type:function size:0x5C scope:global align:4
+mCD_CheckPresentFilename = .text:0x0008AAAC; // type:function size:0x2C scope:global align:4
+mCD_CheckPresentFileStatus = .text:0x0008AAD8; // type:function size:0x44 scope:global align:4
+mCD_CheckPassportFilename = .text:0x0008AB1C; // type:function size:0x2C scope:global align:4
+mCD_CheckPassportFileStatus = .text:0x0008AB48; // type:function size:0x44 scope:global align:4
+mCD_set_to_num = .text:0x0008AB8C; // type:function size:0x80 scope:global align:4
+mCD_GetPassportFileIdx = .text:0x0008AC0C; // type:function size:0x24 scope:global align:4
+mCD_CheckPassportFile_slot = .text:0x0008AC30; // type:function size:0x100 scope:global align:4
+mCD_GetSpaceSlot_bg2 = .text:0x0008AD30; // type:function size:0x1EC scope:global align:4
+mCD_check_noLand_file = .text:0x0008AF1C; // type:function size:0x84 scope:global align:4
+mCD_GetNoLandSlot_bg = .text:0x0008AFA0; // type:function size:0x120 scope:global align:4
+mCD_CheckThisLandSlot = .text:0x0008B0C0; // type:function size:0x118 scope:global align:4
+mCD_set_1byte = .text:0x0008B1D8; // type:function size:0x14 scope:global align:4
+mCD_set_number_str = .text:0x0008B1EC; // type:function size:0xBC scope:global align:4
+mCD_get_land_comment1 = .text:0x0008B2A8; // type:function size:0xD0 scope:global align:4
+mCD_get_passport_comment1 = .text:0x0008B378; // type:function size:0xD0 scope:global align:4
+mCD_get_present_comment1 = .text:0x0008B448; // type:function size:0x8C scope:global align:4
+mCD_card_format_bg = .text:0x0008B4D4; // type:function size:0x24 scope:global align:4
+mCD_get_this_land_slot_no = .text:0x0008B4F8; // type:function size:0xD4 scope:global align:4
+mCD_get_this_land_slot_no_game_start = .text:0x0008B5CC; // type:function size:0xDC scope:global align:4
+mCD_get_this_land_slot_no_nes = .text:0x0008B6A8; // type:function size:0x10C scope:global align:4
+mCD_check_copyProtect = .text:0x0008B7B4; // type:function size:0xB4 scope:global align:4
+mCD_bg_get_area_common = .text:0x0008B868; // type:function size:0x12C scope:global align:4
+mCD_SaveHome_bg_get_area = .text:0x0008B994; // type:function size:0x38 scope:global align:4
+mCD_SaveHome_bg_erase_dummy = .text:0x0008B9CC; // type:function size:0x74 scope:global align:4
+mCD_send_present = .text:0x0008BA40; // type:function size:0x140 scope:global align:4
+mCD_SaveHome_bg_check_slot = .text:0x0008BB80; // type:function size:0x220 scope:global align:4
+mCD_CheckPresentFile = .text:0x0008BDA0; // type:function size:0x12C scope:global align:4
+mCD_SaveHome_bg_read_send_present = .text:0x0008BECC; // type:function size:0x264 scope:global align:4
+mCD_write_common = .text:0x0008C130; // type:function size:0x80 scope:global align:4
+mCD_SaveHome_bg_write_present = .text:0x0008C1B0; // type:function size:0x160 scope:global align:4
+mCD_SaveHome_bg_get_slot = .text:0x0008C310; // type:function size:0x210 scope:global align:4
+mCD_SaveHome_bg_create_file = .text:0x0008C520; // type:function size:0xA4 scope:global align:4
+mCD_check_broken_land = .text:0x0008C5C4; // type:function size:0xE4 scope:global align:4
+mCD_repair_load_land = .text:0x0008C6A8; // type:function size:0xB4 scope:global align:4
+mCD_repair_land = .text:0x0008C75C; // type:function size:0x58 scope:global align:4
+mCD_SaveHome_bg_check_repair_land = .text:0x0008C7B4; // type:function size:0x78 scope:global align:4
+mCD_SaveHome_bg_repair_land = .text:0x0008C82C; // type:function size:0x54 scope:global align:4
+mCD_get_status_common = .text:0x0008C880; // type:function size:0x10C scope:global align:4
+mCD_SaveHome_bg_set_file_permission = .text:0x0008C98C; // type:function size:0xB0 scope:global align:4
+mCD_ClearResetCode = .text:0x0008CA3C; // type:function size:0x38 scope:global align:4
+mCD_CheckResetCode = .text:0x0008CA74; // type:function size:0x30 scope:global align:4
+mCD_SetResetCode = .text:0x0008CAA4; // type:function size:0x4C scope:global align:4
+mCD_SetResetInfo = .text:0x0008CAF0; // type:function size:0x74 scope:global align:4
+mCD_get_land_copyProtect = .text:0x0008CB64; // type:function size:0x40 scope:global align:4
+mCD_SaveHome_bg_set_data = .text:0x0008CBA4; // type:function size:0x190 scope:global align:4
+mCD_SaveHome_bg_write_main_2 = .text:0x0008CD34; // type:function size:0x100 scope:global align:4
+mCD_SaveHome_bg_write_bk = .text:0x0008CE34; // type:function size:0x15C scope:global align:4
+mCD_SaveHome_bg_set_others = .text:0x0008CF90; // type:function size:0x1B4 scope:global align:4
+mCD_SaveHome_bg_write_others = .text:0x0008D144; // type:function size:0xDC scope:global align:4
+mCD_SaveHome_bg_get_status_2 = .text:0x0008D220; // type:function size:0x60 scope:global align:4
+mCD_SaveHome_bg_set_status_2 = .text:0x0008D280; // type:function size:0x8C scope:global align:4
+mCD_SaveHome_bg_rename = .text:0x0008D30C; // type:function size:0xAC scope:global align:4
+mCD_SaveHome_ChangeErrCode = .text:0x0008D3B8; // type:function size:0x3C scope:global align:4
+mCD_create_famicom_file = .text:0x0008D3F4; // type:function size:0x2C scope:global align:4
+mCD_load_famicom_file = .text:0x0008D420; // type:function size:0x2C scope:global align:4
+mCD_SaveHome_bg = .text:0x0008D44C; // type:function size:0x21C scope:global align:4
+mCD_TransErrCodeToCond = .text:0x0008D668; // type:function size:0x58 scope:global align:4
+mCD_load_set_others_common = .text:0x0008D6C0; // type:function size:0x11C scope:global align:4
+mCD_LoadLand = .text:0x0008D7DC; // type:function size:0x434 scope:global align:4
+mCD_ReCheckLoadLand = .text:0x0008DC10; // type:function size:0xF4 scope:global align:4
+mCD_EraseLand_ChangeErrCode = .text:0x0008DD04; // type:function size:0x34 scope:global align:4
+mCD_EraseLand_bg_get_area = .text:0x0008DD38; // type:function size:0x28 scope:global align:4
+mCD_EraseLand_bg_get_slot = .text:0x0008DD60; // type:function size:0xC8 scope:global align:4
+mCD_EraseLand_bg_set_data = .text:0x0008DE28; // type:function size:0xBC scope:global align:4
+mCD_EraseLand_bg_write_main = .text:0x0008DEE4; // type:function size:0xC4 scope:global align:4
+mCD_EraseLand_bg_write_bk = .text:0x0008DFA8; // type:function size:0xDC scope:global align:4
+mCD_EraseLand_bg_load_icon = .text:0x0008E084; // type:function size:0xA0 scope:global align:4
+mCD_EraseLand_bg_write_icon = .text:0x0008E124; // type:function size:0x40 scope:global align:4
+mCD_EraseLand_bg = .text:0x0008E164; // type:function size:0x184 scope:global align:4
+mCD_EraseBrokenLand_bg_get_slot = .text:0x0008E2E8; // type:function size:0x19C scope:global align:4
+mCD_EraseBrokenLand_bg = .text:0x0008E484; // type:function size:0x184 scope:global align:4
+mCD_CheckPassportFile = .text:0x0008E608; // type:function size:0x84 scope:global align:4
+mCD_CheckBrokenPassportFile = .text:0x0008E68C; // type:function size:0x1BC scope:global align:4
+mCD_ErasePassport_bg_get_area = .text:0x0008E848; // type:function size:0x28 scope:global align:4
+mCD_ErasePassport_bg_mount_card = .text:0x0008E870; // type:function size:0xF4 scope:global align:4
+mCD_ErasePassportFile_bg_get_broken_Passport = .text:0x0008E964; // type:function size:0x1AC scope:global align:4
+mCD_ErasePassportFile_bg_erase = .text:0x0008EB10; // type:function size:0xE8 scope:global align:4
+mCD_ErasePassportFile_bg = .text:0x0008EBF8; // type:function size:0x134 scope:global align:4
+mCD_GameStart_ChangeErrCode = .text:0x0008ED2C; // type:function size:0x34 scope:global align:4
+mCD_SetCopyProtect = .text:0x0008ED60; // type:function size:0x6C scope:global align:4
+mCD_GetSaveFilePrivateP = .text:0x0008EDCC; // type:function size:0x10 scope:global align:4
+mCD_InitGameStart_bg_get_area = .text:0x0008EDDC; // type:function size:0x5C scope:global align:4
+mCD_InitGameStart_bg_get_slot = .text:0x0008EE38; // type:function size:0xF8 scope:global align:4
+mCD_InitGameStart_bg_check_repair_land = .text:0x0008EF30; // type:function size:0x78 scope:global align:4
+mCD_LoadPrivate_idx = .text:0x0008EFA8; // type:function size:0x124 scope:global align:4
+mCD_InitGameStart_bg_make_data = .text:0x0008F0CC; // type:function size:0x364 scope:global align:4
+mCD_InitGameStart_bg_set_data = .text:0x0008F430; // type:function size:0xD0 scope:global align:4
+mCD_set_passport_icon = .text:0x0008F500; // type:function size:0xD8 scope:global align:4
+mCD_InitGameStart_bg_write_main = .text:0x0008F5D8; // type:function size:0x120 scope:global align:4
+mCD_InitGameStart_erase_passport = .text:0x0008F6F8; // type:function size:0x1E4 scope:global align:4
+mCD_InitGameStart_write_passport = .text:0x0008F8DC; // type:function size:0x208 scope:global align:4
+mCD_InitGameStart_bg_write_bk = .text:0x0008FAE4; // type:function size:0xFC scope:global align:4
+mCD_InitGameStart_bg = .text:0x0008FBE0; // type:function size:0x288 scope:global align:4
+mCD_SaveHome_bg_write_main = .text:0x0008FE68; // type:function size:0x54 scope:global align:4
+mCD_SaveErasePlayer_bg_write_bk = .text:0x0008FEBC; // type:function size:0x40 scope:global align:4
+mCD_SaveErasePlayer_bg = .text:0x0008FEFC; // type:function size:0x184 scope:global align:4
+mCD_GetPlayerNum = .text:0x00090080; // type:function size:0x240 scope:global align:4
+mCD_GetCardPrivateNameCopy = .text:0x000902C0; // type:function size:0x5C scope:global align:4
+mCD_CheckCardPlayerNative = .text:0x0009031C; // type:function size:0xAC scope:global align:4
+mCD_GetThisLandSlotNo = .text:0x000903C8; // type:function size:0x74 scope:global align:4
+mCD_GetSaveHomeSlotNo = .text:0x0009043C; // type:function size:0x134 scope:global align:4
+mCD_GetLandSlotNo_code_com = .text:0x00090570; // type:function size:0x1C0 scope:global align:4
+mCD_GetThisLandSlotNo_code = .text:0x00090730; // type:function size:0x80 scope:global align:4
+mCD_CheckStation_get_area = .text:0x000907B0; // type:function size:0x44 scope:global align:4
+mCD_CheckStation_check_this_land = .text:0x000907F4; // type:function size:0xE0 scope:global align:4
+mCD_CheckStation_check_next_land = .text:0x000908D4; // type:function size:0x23C scope:global align:4
+mCD_CheckStation_check_foreigner = .text:0x00090B10; // type:function size:0x128 scope:global align:4
+mCD_CheckStation_check_passport = .text:0x00090C38; // type:function size:0x310 scope:global align:4
+mCD_CheckStation_bg = .text:0x00090F48; // type:function size:0xE0 scope:global align:4
+mCD_SaveStation_NextLand_get_area = .text:0x00091028; // type:function size:0xE4 scope:global align:4
+mCD_SaveStation_NextLand_check_repair_land = .text:0x0009110C; // type:function size:0xC0 scope:global align:4
+mCD_SaveStatoin_NextLand_repair_land = .text:0x000911CC; // type:function size:0x7C scope:global align:4
+mCD_SaveStation_NextLand_get_next_land_data = .text:0x00091248; // type:function size:0x21C scope:global align:4
+mCD_SaveStation_NextLand_load_others = .text:0x00091464; // type:function size:0x178 scope:global align:4
+mCD_CopyKeep = .text:0x000915DC; // type:function size:0x150 scope:global align:4
+mCD_ClearPrivateItem = .text:0x0009172C; // type:function size:0x140 scope:global align:4
+mCD_ReplaceKeep = .text:0x0009186C; // type:function size:0xD4 scope:global align:4
+mCD_SaveStation_NextLand_set_data = .text:0x00091940; // type:function size:0x214 scope:global align:4
+mCD_SaveStation_NextLand_write_main = .text:0x00091B54; // type:function size:0xD0 scope:global align:4
+mCD_SaveStation_NextLand_write_bk = .text:0x00091C24; // type:function size:0xC8 scope:global align:4
+mCD_SaveStation_NextLand_write_others = .text:0x00091CEC; // type:function size:0x15C scope:global align:4
+mCD_SaveStation_NextLand_bg = .text:0x00091E48; // type:function size:0x21C scope:global align:4
+mCD_SaveStation_Passport_check_slot = .text:0x00092064; // type:function size:0xD8 scope:global align:4
+mCD_SaveStation_Passport_set_data = .text:0x0009213C; // type:function size:0x1EC scope:global align:4
+mCD_SaveStation_Passport_write_main = .text:0x00092328; // type:function size:0x1D0 scope:global align:4
+mCD_SaveStation_Passport_rewrite_main = .text:0x000924F8; // type:function size:0x184 scope:global align:4
+mCD_SaveStation_Passport_make_file_name = .text:0x0009267C; // type:function size:0x1C4 scope:global align:4
+mCD_SaveStation_Passport_create_file = .text:0x00092840; // type:function size:0xC4 scope:global align:4
+mCD_SaveStation_Passport_set_icon_data = .text:0x00092904; // type:function size:0x13C scope:global align:4
+mCD_SaveStation_Passport_write_passport = .text:0x00092A40; // type:function size:0x1C4 scope:global align:4
+mCD_SaveStation_Passport_get_status = .text:0x00092C04; // type:function size:0x6C scope:global align:4
+mCD_SaveStation_Passport_set_status = .text:0x00092C70; // type:function size:0xEC scope:global align:4
+mCD_SaveStation_Passport_write_bk = .text:0x00092D5C; // type:function size:0xAC scope:global align:4
+mCD_SaveStation_Passport_bg = .text:0x00092E08; // type:function size:0x238 scope:global align:4
+mCD_toNextLand = .text:0x00093040; // type:function size:0x41C scope:global align:4
+mCD_set_bti_data = .text:0x0009345C; // type:function size:0x12C scope:global align:4
+mCPk_PakOpen = .text:0x00093588; // type:function size:0x24 scope:global align:4
+mCPk_InitPak = .text:0x000935AC; // type:function size:0x8 scope:global align:4
+mCPk_SavePak = .text:0x000935B4; // type:function size:0x8 scope:global align:4
+mCPk_get_pkinfo = .text:0x000935BC; // type:function size:0x10 scope:global align:4
+sCPk_PakOpen = .text:0x000935CC; // type:function size:0x8 scope:global align:4
+mVibElem_move = .text:0x000935D4; // type:function size:0x184 scope:global align:4
+mVibInfo_elem_entry = .text:0x00093758; // type:function size:0x238 scope:global align:4
+mVibInfo_elem_delete = .text:0x00093990; // type:function size:0x94 scope:global align:4
+mVibInfo_set_force_stop = .text:0x00093A24; // type:function size:0x10 scope:global align:4
+mVibInfo_clr_force_stop = .text:0x00093A34; // type:function size:0x10 scope:global align:4
+mVibInfo_set_target_elem = .text:0x00093A44; // type:function size:0x44 scope:global align:4
+mVibInfo_force = .text:0x00093A88; // type:function size:0x94 scope:global align:4
+mVibInfo_set_motor = .text:0x00093B1C; // type:function size:0x44 scope:global align:4
+mVibInfo_move = .text:0x00093B60; // type:function size:0xB4 scope:global align:4
+mVibctl_check_title_demo = .text:0x00093C14; // type:function size:0x54 scope:global align:4
+mVibctl_callback = .text:0x00093C68; // type:function size:0x2C scope:global align:4
+mVibctl_ct = .text:0x00093C94; // type:function size:0x2C scope:global align:4
+mVibctl_init0 = .text:0x00093CC0; // type:function size:0x20 scope:global align:4
+mVibctl_init = .text:0x00093CE0; // type:function size:0x20 scope:global align:4
+mVibctl_cleanup = .text:0x00093D00; // type:function size:0x38 scope:global align:4
+mVibctl_reset = .text:0x00093D38; // type:function size:0x2C scope:global align:4
+mVibctl_entry = .text:0x00093D64; // type:function size:0x48 scope:global align:4
+mVibctl_simple_entry = .text:0x00093DAC; // type:function size:0x44 scope:global align:4
+mVibctl_set_force_stop = .text:0x00093DF0; // type:function size:0x2C scope:global align:4
+mVibctl_clr_force_stop = .text:0x00093E1C; // type:function size:0x2C scope:global align:4
+wallpaper_draw1 = .text:0x00093E48; // type:function size:0x39C scope:global align:4
+wallpaper_draw = .text:0x000941E4; // type:function size:0x64 scope:global align:4
+gfx_SetUpCFB = .text:0x00094248; // type:function size:0xA8 scope:global align:4
+PreRender_setup_savebuf = .text:0x000942F0; // type:function size:0x34 scope:global align:4
+PreRender_init = .text:0x00094324; // type:function size:0x24 scope:global align:4
+PreRender_setup_renderbuf = .text:0x00094348; // type:function size:0x30 scope:global align:4
+PreRender_cleanup = .text:0x00094378; // type:function size:0x4 scope:global align:4
+PreRender_ShowCoveredge = .text:0x0009437C; // type:function size:0xA0 scope:global align:4
+PreRender_CopyRGBC = .text:0x0009441C; // type:function size:0x41C scope:global align:4
+THA_GA_ct = .text:0x00094838; // type:function size:0x20 scope:global align:4
+THA_GA_isCrash = .text:0x00094858; // type:function size:0x20 scope:global align:4
+THA_GA_getFreeBytes = .text:0x00094878; // type:function size:0x20 scope:global align:4
+THA_alloc16 = .text:0x00094898; // type:function size:0x1C scope:global align:4
+THA_allocAlign = .text:0x000948B4; // type:function size:0x1C scope:global align:4
+THA_getFreeBytesAlign = .text:0x000948D0; // type:function size:0x1C scope:global align:4
+THA_getFreeBytes16 = .text:0x000948EC; // type:function size:0x24 scope:global align:4
+THA_getFreeBytes = .text:0x00094910; // type:function size:0x24 scope:global align:4
+THA_isCrash = .text:0x00094934; // type:function size:0x24 scope:global align:4
+THA_init = .text:0x00094958; // type:function size:0x1C scope:global align:4
+THA_ct = .text:0x00094974; // type:function size:0x28 scope:global align:4
+THA_dt = .text:0x0009499C; // type:function size:0x24 scope:global align:4
+game_move_first = .text:0x000949C0; // type:function size:0x74 scope:global align:4
+game_debug_draw_last = .text:0x00094A34; // type:function size:0x164 scope:global align:4
+game_draw_first = .text:0x00094B98; // type:function size:0x20 scope:global align:4
+game_draw_last = .text:0x00094BB8; // type:function size:0x7C scope:global align:4
+game_get_controller = .text:0x00094C34; // type:function size:0x40 scope:global align:4
+SetGameFrame = .text:0x00094C74; // type:function size:0xC0 scope:global align:4
+game_main = .text:0x00094D34; // type:function size:0xCC scope:global align:4
+game_init_hyral = .text:0x00094E00; // type:function size:0x78 scope:global align:4
+game_resize_hyral = .text:0x00094E78; // type:function size:0xD4 scope:global align:4
+game_ct = .text:0x00094F4C; // type:function size:0xC0 scope:global align:4
+game_dt = .text:0x0009500C; // type:function size:0x68 scope:global align:4
+game_get_next_game_init = .text:0x00095074; // type:function size:0x8 scope:global align:4
+game_is_doing = .text:0x0009507C; // type:function size:0x8 scope:global align:4
+game_getFreeBytes = .text:0x00095084; // type:function size:0x24 scope:global align:4
+game_goto_next_game_play = .text:0x000950A8; // type:function size:0x20 scope:global align:4
+gamealloc_malloc = .text:0x000950C8; // type:function size:0x78 scope:global align:4
+gamealloc_free = .text:0x00095140; // type:function size:0x50 scope:global align:4
+gamealloc_cleanup = .text:0x00095190; // type:function size:0x60 scope:global align:4
+gamealloc_init = .text:0x000951F0; // type:function size:0x18 scope:global align:4
+gfxopen = .text:0x00095208; // type:function size:0x8 scope:global align:4
+gfxclose = .text:0x00095210; // type:function size:0x34 scope:global align:4
+gfxalloc = .text:0x00095244; // type:function size:0x2C scope:global align:4
+graph_setup_double_buffer = .text:0x00095270; // type:function size:0x1A4 scope:global align:4
+game_get_next_game_dlftbl = .text:0x00095414; // type:function size:0x140 scope:global align:4
+graph_ct = .text:0x00095554; // type:function size:0x70 scope:global align:4
+graph_dt = .text:0x000955C4; // type:function size:0x28 scope:global align:4
+graph_task_set00 = .text:0x000955EC; // type:function size:0xD8 scope:global align:4
+graph_draw_finish = .text:0x000956C4; // type:function size:0x230 scope:global align:4
+do_soft_reset = .text:0x000958F4; // type:function size:0x54 scope:global align:4
+reset_check = .text:0x00095948; // type:function size:0x44 scope:global align:4
+graph_main = .text:0x0009598C; // type:function size:0x188 scope:global align:4
+graph_proc = .text:0x00095B14; // type:function size:0x10C scope:global align:4
+irqmgr_AddClient = .text:0x00095C20; // type:function size:0xA4 scope:global align:4
+irqmgr_SendMesgForClient = .text:0x00095CC4; // type:function size:0x70 scope:global align:4
+irqmgr_JamMesgForClient = .text:0x00095D34; // type:function size:0x70 scope:global align:4
+irqmgr_HandlePreNMI = .text:0x00095DA4; // type:function size:0xBC scope:global align:4
+irqmgr_HandlePreNMI450 = .text:0x00095E60; // type:function size:0xA8 scope:global align:4
+irqmgr_HandlePreNMI480 = .text:0x00095F08; // type:function size:0x7C scope:global align:4
+irqmgr_HandlePreNMI500 = .text:0x00095F84; // type:function size:0x4 scope:global align:4
+irqmgr_HandleRetrace = .text:0x00095F88; // type:function size:0xAC scope:global align:4
+irqmgr_Main = .text:0x00096034; // type:function size:0x88 scope:global align:4
+CreateIRQManager = .text:0x000960BC; // type:function size:0x104 scope:global align:4
+osViSetEvent = .text:0x000961C0; // type:function size:0x18 scope:global align:4
+lbRTC_GetHardTime = .text:0x000961D8; // type:function size:0x20 scope:global align:4
+lbRTC_HardTime = .text:0x000961F8; // type:function size:0x20 scope:global align:4
+lbRTC_CalenderTimeToRTCTime = .text:0x00096218; // type:function size:0x40 scope:global align:4
+lbRTC_RTCTimeToTicks = .text:0x00096258; // type:function size:0xCC scope:global align:4
+lbRTC_GetGameTime = .text:0x00096324; // type:function size:0x5C scope:global align:4
+lbRTC_Initial = .text:0x00096380; // type:function size:0x20 scope:global align:4
+lbRTC_IsOki = .text:0x000963A0; // type:function size:0x48 scope:global align:4
+lbRTC_IsAbnormal = .text:0x000963E8; // type:function size:0x74 scope:global align:4
+lbRTC_Sampling = .text:0x0009645C; // type:function size:0x60 scope:global align:4
+lbRTC_SetTime = .text:0x000964BC; // type:function size:0xA0 scope:global align:4
+lbRTC_GetTime = .text:0x0009655C; // type:function size:0x5C scope:global align:4
+lbRTC_GetDaysByMonth = .text:0x000965B8; // type:function size:0x74 scope:global align:4
+lbRTC_IsEqualDate = .text:0x0009662C; // type:function size:0x4C scope:global align:4
+lbRTC_IsEqualTime = .text:0x00096678; // type:function size:0xDC scope:global align:4
+lbRTC_IsOverTime = .text:0x00096754; // type:function size:0xAC scope:global align:4
+lbRTC_IsOverRTC = .text:0x00096800; // type:function size:0x48 scope:global align:4
+lbRTC_IntervalTime_sub = .text:0x00096848; // type:function size:0x74 scope:global align:4
+lbRTC_IntervalTime = .text:0x000968BC; // type:function size:0x20 scope:global align:4
+lbRTC_GetIntervalDays = .text:0x000968DC; // type:function size:0x184 scope:global align:4
+lbRTC_GetIntervalDays2 = .text:0x00096A60; // type:function size:0x90 scope:global align:4
+lbRTC_Add_YY = .text:0x00096AF0; // type:function size:0x14 scope:global align:4
+lbRTC_Add_MM = .text:0x00096B04; // type:function size:0x60 scope:global align:4
+lbRTC_Add_DD = .text:0x00096B64; // type:function size:0x68 scope:global align:4
+lbRTC_Add_hh = .text:0x00096BCC; // type:function size:0x60 scope:global align:4
+lbRTC_Add_mm = .text:0x00096C2C; // type:function size:0x60 scope:global align:4
+lbRTC_Add_ss = .text:0x00096C8C; // type:function size:0x60 scope:global align:4
+lbRTC_Add_Date = .text:0x00096CEC; // type:function size:0x78 scope:global align:4
+lbRTC_Sub_YY = .text:0x00096D64; // type:function size:0x14 scope:global align:4
+lbRTC_Sub_MM = .text:0x00096D78; // type:function size:0x84 scope:global align:4
+lbRTC_Sub_DD = .text:0x00096DFC; // type:function size:0x98 scope:global align:4
+lbRTC_Sub_hh = .text:0x00096E94; // type:function size:0x7C scope:global align:4
+lbRTC_Sub_mm = .text:0x00096F10; // type:function size:0x7C scope:global align:4
+lbRTC_Sub_ss = .text:0x00096F8C; // type:function size:0x7C scope:global align:4
+lbRTC_Week = .text:0x00097008; // type:function size:0x6C scope:global align:4
+lbRTC_TimeCopy = .text:0x00097074; // type:function size:0x14 scope:global align:4
+lbRTC_IsValidTime = .text:0x00097088; // type:function size:0xE4 scope:global align:4
+lbRTC_time_c_save_data_check = .text:0x0009716C; // type:function size:0x80 scope:global align:4
+lbRTC_Weekly_day = .text:0x000971EC; // type:function size:0x98 scope:global align:4
+lbRk_SeirekiDays = .text:0x00097284; // type:function size:0x38 scope:global align:4
+lbRk_ToSeiyoMonthAndDay = .text:0x000972BC; // type:function size:0x24 scope:global align:4
+lbRk_KyuurekiLeapDays = .text:0x000972E0; // type:function size:0x18 scope:global align:4
+lbRk_IsKyuurekiLeapYear = .text:0x000972F8; // type:function size:0x20 scope:global align:4
+lbRk_IsLeapMonth = .text:0x00097318; // type:function size:0x10 scope:global align:4
+lbRk_IsLeapOnNextMonth = .text:0x00097328; // type:function size:0x58 scope:global align:4
+lbRk_KyuurekiDays = .text:0x00097380; // type:function size:0x118 scope:global align:4
+lbRk_ToSeiyouReki = .text:0x00097498; // type:function size:0x118 scope:global align:4
+lbRk_ToKyuuReki = .text:0x000975B0; // type:function size:0x158 scope:global align:4
+lbRk_VernalEquinoxDay = .text:0x00097708; // type:function size:0x64 scope:global align:4
+lbRk_AutumnalEquinoxDay = .text:0x0009776C; // type:function size:0x64 scope:global align:4
+lbRk_HarvestMoonDay = .text:0x000977D0; // type:function size:0x70 scope:global align:4
+mainproc = .text:0x00097840; // type:function size:0x188 scope:global align:4
+entry = .text:0x000979C8; // type:function size:0x48 scope:global align:4
+main = .text:0x00097A10; // type:function size:0x3C scope:global align:4
+padmgr_LockSerialMesgQ = .text:0x00097A4C; // type:function size:0x3C scope:global align:4
+padmgr_UnlockSerialMesgQ = .text:0x00097A88; // type:function size:0x34 scope:global align:4
+padmgr_LockContData = .text:0x00097ABC; // type:function size:0x38 scope:global align:4
+padmgr_UnlockContData = .text:0x00097AF4; // type:function size:0x38 scope:global align:4
+padmgr_RumbleControl = .text:0x00097B2C; // type:function size:0xE0 scope:global align:4
+padmgr_RumbleStop = .text:0x00097C0C; // type:function size:0x74 scope:global align:4
+padmgr_force_stop_ON = .text:0x00097C80; // type:function size:0x18 scope:global align:4
+padmgr_force_stop_OFF = .text:0x00097C98; // type:function size:0x18 scope:global align:4
+padmgr_RumbleReset = .text:0x00097CB0; // type:function size:0x18 scope:global align:4
+padmgr_RumbleSet = .text:0x00097CC8; // type:function size:0x2C scope:global align:4
+padmgr_PakConnectCheck = .text:0x00097CF4; // type:function size:0xD0 scope:global align:4
+padmgr_HandleDoneReadPadMsg = .text:0x00097DC4; // type:function size:0x1EC scope:global align:4
+padmgr_ConnectCheck = .text:0x00097FB0; // type:function size:0x13C scope:global align:4
+padmgr_HandleRetraceMsg = .text:0x000980EC; // type:function size:0x1A8 scope:global align:4
+padmgr_HandlePreNMIMsg = .text:0x00098294; // type:function size:0x34 scope:global align:4
+padmgr_RequestPadData_NonLock = .text:0x000982C8; // type:function size:0x12C scope:global align:4
+padmgr_RequestPadData = .text:0x000983F4; // type:function size:0x48 scope:global align:4
+padmgr_ClearPadData = .text:0x0009843C; // type:function size:0x6C scope:global align:4
+padmgr_MainProc = .text:0x000984A8; // type:function size:0x88 scope:global align:4
+padmgr_Init = .text:0x00098530; // type:function size:0xB0 scope:global align:4
+padmgr_Create = .text:0x000985E0; // type:function size:0x98 scope:global align:4
+padmgr_isConnectedController = .text:0x00098678; // type:function size:0x20 scope:global align:4
+init_rnd = .text:0x00098698; // type:function size:0x24 scope:global align:4
+sinf_table = .text:0x000986BC; // type:function size:0x70 scope:global align:4
+cosf_table = .text:0x0009872C; // type:function size:0x70 scope:global align:4
+Math3d_normalizeXyz_t = .text:0x0009879C; // type:function size:0x80 scope:global align:4
+Math3DInDivPos1 = .text:0x0009881C; // type:function size:0x40 scope:global align:4
+Math3DInDivPos2 = .text:0x0009885C; // type:function size:0x64 scope:global align:4
+Math3DCheck3PointMinMaxAreaInside2D = .text:0x000988C0; // type:function size:0xC8 scope:global align:4
+Math3DCheck3PointMinMaxAreaInside3D = .text:0x00098988; // type:function size:0x150 scope:global align:4
+Math3DVecLengthSquare2D = .text:0x00098AD8; // type:function size:0x10 scope:global align:4
+Math3DVecLength2D = .text:0x00098AE8; // type:function size:0x94 scope:global align:4
+Math3DLengthSquare2D = .text:0x00098B7C; // type:function size:0x28 scope:global align:4
+Math3DLength2D = .text:0x00098BA4; // type:function size:0x94 scope:global align:4
+Math3DVecLengthSquare = .text:0x00098C38; // type:function size:0x24 scope:global align:4
+Math3DVecLength = .text:0x00098C5C; // type:function size:0xCC scope:global align:4
+Math3DLengthSquare = .text:0x00098D28; // type:function size:0x2C scope:global align:4
+Math3DLength = .text:0x00098D54; // type:function size:0x20 scope:global align:4
+Math3DLength_s_f = .text:0x00098D74; // type:function size:0x9C scope:global align:4
+Math3DVectorProduct2Vec = .text:0x00098E10; // type:function size:0x64 scope:global align:4
+Math3DVectorProductXYZ = .text:0x00098E74; // type:function size:0x78 scope:global align:4
+Math3DPlane = .text:0x00098EEC; // type:function size:0x188 scope:global align:4
+Math3DPlaneFunc = .text:0x00099074; // type:function size:0x28 scope:global align:4
+Math3DLengthPlaneAndPos = .text:0x0009909C; // type:function size:0x28 scope:global align:4
+Math3DSignedLengthPlaneAndPos = .text:0x000990C4; // type:function size:0xE0 scope:global align:4
+Math3DTriangleCrossYCheck_general = .text:0x000991A4; // type:function size:0x294 scope:global align:4
+Math3DTriangleCrossYCheck_chparam = .text:0x00099438; // type:function size:0x2C scope:global align:4
+Math3DTriangleCrossYLine_scope = .text:0x00099464; // type:function size:0x1C0 scope:global align:4
+Math3DTriangleCrossXCheck_general = .text:0x00099624; // type:function size:0x294 scope:global align:4
+Math3DTriangleCrossXCheck_chparam = .text:0x000998B8; // type:function size:0x2C scope:global align:4
+Math3DTriangleCrossZCheck_general = .text:0x000998E4; // type:function size:0x2AC scope:global align:4
+Math3DTriangleCrossZCheck_chparam = .text:0x00099B90; // type:function size:0x2C scope:global align:4
+Math3D_sphereCollisionPoint = .text:0x00099BBC; // type:function size:0x5C scope:global align:4
+Math3D_pointVsLineSegmentLengthSquare2D = .text:0x00099C18; // type:function size:0xC4 scope:global align:4
+Math3D_sphereCrossLineSegment = .text:0x00099CDC; // type:function size:0x20C scope:global align:4
+Math3D_sphereCrossTriangleCalc_cp = .text:0x00099EE8; // type:function size:0x16C scope:global align:4
+Math3D_sphereCrossTriangle3_cp = .text:0x0009A054; // type:function size:0x3F0 scope:global align:4
+Math3D_pipeVsPos = .text:0x0009A444; // type:function size:0x108 scope:global align:4
+Math3D_pipeCrossLine = .text:0x0009A54C; // type:function size:0xAE0 scope:global align:4
+Math3D_pipeCrossTriangle_cp = .text:0x0009B02C; // type:function size:0x4B0 scope:global align:4
+Math3D_sphereCrossSphere_cl = .text:0x0009B4DC; // type:function size:0x24 scope:global align:4
+Math3D_sphereCrossSphere_cl_cc = .text:0x0009B500; // type:function size:0x200 scope:global align:4
+Math3D_sphereVsPipe_cl = .text:0x0009B700; // type:function size:0x24 scope:global align:4
+Math3D_sphereVsPipe_cl_cc = .text:0x0009B724; // type:function size:0x24C scope:global align:4
+Math3D_pipeVsPipe_cl = .text:0x0009B970; // type:function size:0x24 scope:global align:4
+Math3D_pipeVsPipe_cl_cc = .text:0x0009B994; // type:function size:0x258 scope:global align:4
+sMath_RotateY = .text:0x0009BBEC; // type:function size:0xA0 scope:global align:4
+sMath_RotateX = .text:0x0009BC8C; // type:function size:0x9C scope:global align:4
+sMath_RotateZ = .text:0x0009BD28; // type:function size:0x9C scope:global align:4
+U_GetAtanTable = .text:0x0009BDC4; // type:function size:0x7C scope:global align:4
+atans_table = .text:0x0009BE40; // type:function size:0x148 scope:global align:4
+atanf_table = .text:0x0009BF88; // type:function size:0x54 scope:global align:4
+new_Matrix = .text:0x0009BFDC; // type:function size:0x38 scope:global align:4
+Matrix_push = .text:0x0009C014; // type:function size:0x40 scope:global align:4
+Matrix_pull = .text:0x0009C054; // type:function size:0x18 scope:global align:4
+Matrix_get = .text:0x0009C06C; // type:function size:0x2C scope:global align:4
+Matrix_put = .text:0x0009C098; // type:function size:0x30 scope:global align:4
+get_Matrix_now = .text:0x0009C0C8; // type:function size:0x10 scope:global align:4
+Matrix_mult = .text:0x0009C0D8; // type:function size:0x68 scope:global align:4
+Matrix_translate = .text:0x0009C140; // type:function size:0xEC scope:global align:4
+Matrix_scale = .text:0x0009C22C; // type:function size:0xCC scope:global align:4
+Matrix_RotateX = .text:0x0009C2F8; // type:function size:0x1A4 scope:global align:4
+Matrix_RotateY = .text:0x0009C49C; // type:function size:0x194 scope:global align:4
+Matrix_RotateZ = .text:0x0009C630; // type:function size:0x1A4 scope:global align:4
+Matrix_rotateXYZ = .text:0x0009C7D4; // type:function size:0x2BC scope:global align:4
+Matrix_softcv3_mult = .text:0x0009CA90; // type:function size:0x358 scope:global align:4
+Matrix_softcv3_load = .text:0x0009CDE8; // type:function size:0x1E4 scope:global align:4
+_MtxF_to_Mtx = .text:0x0009CFCC; // type:function size:0x218 scope:global align:4
+_Matrix_to_Mtx = .text:0x0009D1E4; // type:function size:0x30 scope:global align:4
+_Matrix_to_Mtx_new = .text:0x0009D214; // type:function size:0x30 scope:global align:4
+Matrix_Position = .text:0x0009D244; // type:function size:0xB8 scope:global align:4
+Matrix_Position_Zero = .text:0x0009D2FC; // type:function size:0x28 scope:global align:4
+Matrix_Position_VecX = .text:0x0009D324; // type:function size:0x4C scope:global align:4
+Matrix_Position_VecZ = .text:0x0009D370; // type:function size:0x4C scope:global align:4
+Matrix_copy_MtxF = .text:0x0009D3BC; // type:function size:0x84 scope:global align:4
+Matrix_MtxtoMtxF = .text:0x0009D440; // type:function size:0x2E8 scope:global align:4
+Matrix_reverse = .text:0x0009D728; // type:function size:0x34 scope:global align:4
+Matrix_to_rotate_new = .text:0x0009D75C; // type:function size:0x2E8 scope:global align:4
+Matrix_to_rotate2_new = .text:0x0009DA44; // type:function size:0x2E8 scope:global align:4
+Matrix_RotateVector = .text:0x0009DD2C; // type:function size:0x3F8 scope:global align:4
+suMtxMakeTS = .text:0x0009E124; // type:function size:0xF4 scope:global align:4
+suMtxMakeSRT = .text:0x0009E218; // type:function size:0x338 scope:global align:4
+suMtxMakeSRT_ZXY = .text:0x0009E550; // type:function size:0x340 scope:global align:4
+zerucheck_init = .text:0x0009E890; // type:function size:0x18 scope:global align:4
+zerucheck_key_check = .text:0x0009E8A8; // type:function size:0x258 scope:global align:4
+zurumode_update = .text:0x0009EB00; // type:function size:0xCC scope:global align:4
+zurumode_callback = .text:0x0009EBCC; // type:function size:0xE4 scope:global align:4
+zurumode_init = .text:0x0009ECB0; // type:function size:0x6C scope:global align:4
+zurumode_cleanup = .text:0x0009ED1C; // type:function size:0x44 scope:global align:4
+ucode_GetPolyTextStart = .text:0x0009ED60; // type:function size:0x10 scope:global align:4
+ucode_GetPolyDataStart = .text:0x0009ED70; // type:function size:0x10 scope:global align:4
+ucode_GetSpriteTextStart = .text:0x0009ED80; // type:function size:0x10 scope:global align:4
+ucode_GetSpriteDataStart = .text:0x0009ED90; // type:function size:0x10 scope:global align:4
+Ac_Sample_ct_forCorect = .text:0x0009EDA0; // type:function size:0x58 scope:global align:4
+Ac_Sample_Excute_Corect = .text:0x0009EDF8; // type:function size:0x4C scope:global align:4
+Ac_Sample_Actor_dt = .text:0x0009EE44; // type:function size:0x5C scope:global align:4
+Ac_Sample_Animation_Base = .text:0x0009EEA0; // type:function size:0x24 scope:global align:4
+Ac_Sample_Actor_wait_demo_ct = .text:0x0009EEC4; // type:function size:0x9C scope:global align:4
+Ac_Sample_Actor_main_wait = .text:0x0009EF60; // type:function size:0x88 scope:global align:4
+Ac_Sample_Actor_main_talk = .text:0x0009EFE8; // type:function size:0xC0 scope:global align:4
+Ac_Sample_Actor_main = .text:0x0009F0A8; // type:function size:0x54 scope:global align:4
+Ac_Sample_Actor_ct = .text:0x0009F0FC; // type:function size:0x94 scope:global align:4
+Ac_Sample_Actor_draw_normal = .text:0x0009F190; // type:function size:0x188 scope:global align:4
+Ac_Sample_Actor_draw = .text:0x0009F318; // type:function size:0x54 scope:global align:4
+Airplane_Actor_ct = .text:0x0009F36C; // type:function size:0x120 scope:global align:4
+Airplane_Actor_dt = .text:0x0009F48C; // type:function size:0x4 scope:global align:4
+Airplane_Actor_draw = .text:0x0009F490; // type:function size:0x110 scope:global align:4
+aAp_RubberMove = .text:0x0009F5A0; // type:function size:0x18 scope:global align:4
+aAp_FallByWall = .text:0x0009F5B8; // type:function size:0x18 scope:global align:4
+aAp_GroundFriction = .text:0x0009F5D0; // type:function size:0xF8 scope:global align:4
+aAp_FreeFlyMove = .text:0x0009F6C8; // type:function size:0x98 scope:global align:4
+aAp_SomerFlyMove = .text:0x0009F760; // type:function size:0x13C scope:global align:4
+aAp_SelectFly = .text:0x0009F89C; // type:function size:0x90 scope:global align:4
+aAp_StartFlyMove = .text:0x0009F92C; // type:function size:0x210 scope:global align:4
+aAp_PlayerCatch = .text:0x0009FB3C; // type:function size:0x4 scope:global align:4
+aAp_StopFlyMove = .text:0x0009FB40; // type:function size:0x68 scope:global align:4
+aAp_FallFlyMove = .text:0x0009FBA8; // type:function size:0xE4 scope:global align:4
+aAp_FallFlyMove2 = .text:0x0009FC8C; // type:function size:0xE4 scope:global align:4
+aAp_LeanAirplane = .text:0x0009FD70; // type:function size:0x94 scope:global align:4
+aAp_WindSystem = .text:0x0009FE04; // type:function size:0x150 scope:global align:4
+aAp_CommonHandle = .text:0x0009FF54; // type:function size:0x160 scope:global align:4
+aAp_ZbuttonChangeStatus = .text:0x000A00B4; // type:function size:0x80 scope:global align:4
+aAp_GetBgCheckOffsetY = .text:0x000A0134; // type:function size:0x2C scope:global align:4
+Airplane_Actor_move = .text:0x000A0160; // type:function size:0xA4 scope:global align:4
+aAL_actor_ct = .text:0x000A0204; // type:function size:0xF8 scope:global align:4
+aAL_actor_dt = .text:0x000A02FC; // type:function size:0x90 scope:global align:4
+aAL_title_game_data_init_start_select = .text:0x000A038C; // type:function size:0x44 scope:global align:4
+aAL_title_decide_p_sel_npc = .text:0x000A03D0; // type:function size:0xCC scope:global align:4
+aAL_wipe_end_check = .text:0x000A049C; // type:function size:0x48 scope:global align:4
+aAL_chk_start_key = .text:0x000A04E4; // type:function size:0x6C scope:global align:4
+aAL_chk_start_key2 = .text:0x000A0550; // type:function size:0x5C scope:global align:4
+aAL_logo_in = .text:0x000A05AC; // type:function size:0x88 scope:global align:4
+aAL_back_fadein = .text:0x000A0634; // type:function size:0x6C scope:global align:4
+aAL_start_key_chk_start_wait = .text:0x000A06A0; // type:function size:0x6C scope:global align:4
+aAL_game_start_wait = .text:0x000A070C; // type:function size:0x140 scope:global align:4
+aAL_fade_out_start_wait = .text:0x000A084C; // type:function size:0x54 scope:global align:4
+aAL_logo_in_init = .text:0x000A08A0; // type:function size:0x150 scope:global align:4
+aAL_back_fadein_init = .text:0x000A09F0; // type:function size:0xC scope:global align:4
+aAL_start_key_chk_start_wait_init = .text:0x000A09FC; // type:function size:0x70 scope:global align:4
+aAL_fade_out_start_wait_init = .text:0x000A0A6C; // type:function size:0x44 scope:global align:4
+aAL_setupAction = .text:0x000A0AB0; // type:function size:0x60 scope:global align:4
+aAL_actor_move = .text:0x000A0B10; // type:function size:0x60 scope:global align:4
+aAL_copyright_draw = .text:0x000A0B70; // type:function size:0x32C scope:global align:4
+aAL_tm_draw = .text:0x000A0E9C; // type:function size:0xC0 scope:global align:4
+aAL_back_draw = .text:0x000A0F5C; // type:function size:0x110 scope:global align:4
+aAL_press_start_draw = .text:0x000A106C; // type:function size:0x294 scope:global align:4
+aAL_skl_draw = .text:0x000A1300; // type:function size:0x4C scope:global align:4
+aAL_title_draw = .text:0x000A134C; // type:function size:0xF8 scope:global align:4
+aAL_actor_draw = .text:0x000A1444; // type:function size:0xE8 scope:global align:4
+flash_rom_and_player_info_clear = .text:0x000A152C; // type:function size:0x88 scope:global align:4
+decide_next_scene_no = .text:0x000A15B4; // type:function size:0x148 scope:global align:4
+title_action_data_init_start_select = .text:0x000A16FC; // type:function size:0xBC scope:global align:4
+Arrange_Furniture_Actor_ct = .text:0x000A17B8; // type:function size:0x4 scope:global align:4
+Arrange_Furniture_Actor_dt = .text:0x000A17BC; // type:function size:0x4 scope:global align:4
+Arrange_Furniture_Actor_draw = .text:0x000A17C0; // type:function size:0x4 scope:global align:4
+Arrange_Furniture_Actor_move = .text:0x000A17C4; // type:function size:0x4 scope:global align:4
+aAR_SecureDmaRam = .text:0x000A17C8; // type:function size:0x28 scope:global align:4
+aAR_SetClip = .text:0x000A17F0; // type:function size:0x48 scope:global align:4
+Arrange_Room_Actor_ct = .text:0x000A1838; // type:function size:0x118 scope:global align:4
+Arrange_Room_Actor_dt = .text:0x000A1950; // type:function size:0x50 scope:global align:4
+aAR_DrawFloor = .text:0x000A19A0; // type:function size:0x144 scope:global align:4
+aAR_DrawWall = .text:0x000A1AE4; // type:function size:0x128 scope:global align:4
+Arrange_Room_Actor_draw = .text:0x000A1C0C; // type:function size:0x54 scope:global align:4
+Arrange_Room_Actor_move = .text:0x000A1C60; // type:function size:0x4 scope:global align:4
+aAR_Redma = .text:0x000A1C64; // type:function size:0x58 scope:global align:4
+aBALL_Random_pos_set = .text:0x000A1CBC; // type:function size:0x160 scope:global align:4
+aBALL_actor_ct = .text:0x000A1E1C; // type:function size:0x260 scope:global align:4
+aBALL_actor_dt = .text:0x000A207C; // type:function size:0xC8 scope:global align:4
+aBALL_position_move = .text:0x000A2144; // type:function size:0xD0 scope:global align:4
+aBALL_BGcheck = .text:0x000A2214; // type:function size:0x380 scope:global align:4
+aBALL_OBJcheck = .text:0x000A2594; // type:function size:0x574 scope:global align:4
+aBALL_House_Tree_Rev_Check = .text:0x000A2B08; // type:function size:0x48 scope:global align:4
+aBALL_process_air_init = .text:0x000A2B50; // type:function size:0xA0 scope:global align:4
+aBALL_process_air = .text:0x000A2BF0; // type:function size:0xCC scope:global align:4
+aBALL_process_ground_init = .text:0x000A2CBC; // type:function size:0x3C scope:global align:4
+aBALL_process_ground = .text:0x000A2CF8; // type:function size:0x3E0 scope:global align:4
+aBALL_set_spd_relations_in_water = .text:0x000A30D8; // type:function size:0x1CC scope:global align:4
+aBALL_process_air_water_init = .text:0x000A32A4; // type:function size:0x18 scope:global align:4
+aBALL_process_air_water = .text:0x000A32BC; // type:function size:0x114 scope:global align:4
+aBALL_process_ground_water_init = .text:0x000A33D0; // type:function size:0x1C scope:global align:4
+aBALL_process_ground_water = .text:0x000A33EC; // type:function size:0x150 scope:global align:4
+aBALL_calc_axis = .text:0x000A353C; // type:function size:0x10C scope:global align:4
+aBALL_player_angle_distance_check = .text:0x000A3648; // type:function size:0xA0 scope:global align:4
+aBALL_status_check = .text:0x000A36E8; // type:function size:0x284 scope:global align:4
+aBALL_actor_move = .text:0x000A396C; // type:function size:0xFC scope:global align:4
+aBALL_actor_draw = .text:0x000A3A68; // type:function size:0xC4 scope:global align:4
+Ac_Balloon_dt = .text:0x000A3B2C; // type:function size:0x4 scope:global align:4
+Ac_Balloon_request_hide = .text:0x000A3B30; // type:function size:0xC scope:global align:4
+Ac_Balloon_setup_hide = .text:0x000A3B3C; // type:function size:0x14 scope:global align:4
+Ac_Balloon_Movement_hide = .text:0x000A3B50; // type:function size:0x50 scope:global align:4
+Ac_Balloon_main_hide = .text:0x000A3BA0; // type:function size:0x20 scope:global align:4
+Ac_Balloon_request_fly = .text:0x000A3BC0; // type:function size:0x44 scope:global align:4
+Ac_Balloon_setup_fly = .text:0x000A3C04; // type:function size:0x194 scope:global align:4
+Ac_Balloon_CulcAnimation_fly = .text:0x000A3D98; // type:function size:0x24 scope:global align:4
+Ac_Balloon_Movement_fly = .text:0x000A3DBC; // type:function size:0x1C8 scope:global align:4
+Ac_Balloon_request_change_mode_fromFly = .text:0x000A3F84; // type:function size:0x6C scope:global align:4
+Ac_Balloon_main_fly = .text:0x000A3FF0; // type:function size:0x4C scope:global align:4
+Ac_Balloon_main = .text:0x000A403C; // type:function size:0xA4 scope:global align:4
+Ac_Balloon_ct = .text:0x000A40E0; // type:function size:0x20 scope:global align:4
+Ac_Balloon_draw_Before = .text:0x000A4100; // type:function size:0x54 scope:global align:4
+Ac_Balloon_draw_After = .text:0x000A4154; // type:function size:0x54 scope:global align:4
+Ac_Balloon_draw_normal = .text:0x000A41A8; // type:function size:0x11C scope:global align:4
+Ac_Balloon_draw = .text:0x000A42C4; // type:function size:0x2C scope:global align:4
+aBC_deleteActor_part = .text:0x000A42F0; // type:function size:0xB0 scope:global align:4
+aBC_setupOtherActor = .text:0x000A43A0; // type:function size:0x108 scope:global align:4
+aBC_setupActor = .text:0x000A44A8; // type:function size:0x1C4 scope:global align:4
+aBC_setupCommonMvActor = .text:0x000A466C; // type:function size:0xE0 scope:global align:4
+aBC_setupMvActor = .text:0x000A474C; // type:function size:0x1F4 scope:global align:4
+aBC_chk_near_boat_block = .text:0x000A4940; // type:function size:0x98 scope:global align:4
+aBC_set_boat = .text:0x000A49D8; // type:function size:0xAC scope:global align:4
+aBC_actor_move = .text:0x000A4A84; // type:function size:0x198 scope:global align:4
+aBTD_actor_ct = .text:0x000A4C1C; // type:function size:0xC0 scope:global align:4
+aBTD_actor_dt = .text:0x000A4CDC; // type:function size:0x24 scope:global align:4
+aBTD_check_sendo_and_boat = .text:0x000A4D00; // type:function size:0x6C scope:global align:4
+aBTD_regist_island_npc_info = .text:0x000A4D6C; // type:function size:0x8C scope:global align:4
+aBTD_unregist_island_npc_info = .text:0x000A4DF8; // type:function size:0x7C scope:global align:4
+aBTD_chg_regist_island_npc_info = .text:0x000A4E74; // type:function size:0x78 scope:global align:4
+aBTD_setup_castaway = .text:0x000A4EEC; // type:function size:0x11C scope:global align:4
+aBTD_change_season = .text:0x000A5008; // type:function size:0xAC scope:global align:4
+aBTD_sendo_birth_wait = .text:0x000A50B4; // type:function size:0xE0 scope:global align:4
+aBTD_pl_ride_on_start_wait = .text:0x000A5194; // type:function size:0x68 scope:global align:4
+aBTD_pl_ride_on_end_wait = .text:0x000A51FC; // type:function size:0x30 scope:global align:4
+aBTD_start_call_end_wait = .text:0x000A522C; // type:function size:0x30 scope:global align:4
+aBTD_song_bgm_start_wait = .text:0x000A525C; // type:function size:0x3C scope:global align:4
+aBTD_sing_sendo_start_wait = .text:0x000A5298; // type:function size:0x3C scope:global align:4
+aBTD_sing_sendo_msg_set_wait = .text:0x000A52D4; // type:function size:0x58 scope:global align:4
+aBTD_sendo_dialogue_start_wait = .text:0x000A532C; // type:function size:0x58 scope:global align:4
+aBTD_sing_sendo_start_wait2 = .text:0x000A5384; // type:function size:0x60 scope:global align:4
+aBTD_move_boat_end_wait = .text:0x000A53E4; // type:function size:0x30 scope:global align:4
+aBTD_touch_wharf_end_wait = .text:0x000A5414; // type:function size:0x8C scope:global align:4
+aBTD_pl_ride_off_start_wait = .text:0x000A54A0; // type:function size:0x30 scope:global align:4
+aBTD_pl_ride_off_end_wait = .text:0x000A54D0; // type:function size:0x30 scope:global align:4
+aBTD_anchor = .text:0x000A5500; // type:function size:0x3C scope:global align:4
+aBTD_start_call_end_wait_init = .text:0x000A553C; // type:function size:0x24 scope:global align:4
+aBTD_song_bgm_start_wait_init = .text:0x000A5560; // type:function size:0xC scope:global align:4
+aBTD_sing_sendo_start_wait_init = .text:0x000A556C; // type:function size:0x140 scope:global align:4
+aBTD_sendo_dialogue_start_wait_init = .text:0x000A56AC; // type:function size:0x78 scope:global align:4
+aBTD_sing_sendo_start_wait2_init = .text:0x000A5724; // type:function size:0x88 scope:global align:4
+aBTD_move_boat_end_wait_init = .text:0x000A57AC; // type:function size:0x28 scope:global align:4
+aBTD_touch_wharf_end_wait_init = .text:0x000A57D4; // type:function size:0x14 scope:global align:4
+aBTD_pl_ride_off_start_wait_init = .text:0x000A57E8; // type:function size:0x28 scope:global align:4
+aBTD_anchor_init = .text:0x000A5810; // type:function size:0x3C scope:global align:4
+aBTD_init_proc = .text:0x000A584C; // type:function size:0x34 scope:global align:4
+aBTD_setupAction = .text:0x000A5880; // type:function size:0x38 scope:global align:4
+aBTD_actor_move = .text:0x000A58B8; // type:function size:0x78 scope:global align:4
+BoxManager_Actor_ct = .text:0x000A5930; // type:function size:0x4 scope:global align:4
+BoxManager_Actor_dt = .text:0x000A5934; // type:function size:0x4 scope:global align:4
+BoxManager_Actor_move = .text:0x000A5938; // type:function size:0x4 scope:global align:4
+BoxManager_Actor_draw = .text:0x000A593C; // type:function size:0x4 scope:global align:4
+BoxMove_Actor_ct = .text:0x000A5940; // type:function size:0x4 scope:global align:4
+BoxMove_Actor_dt = .text:0x000A5944; // type:function size:0x4 scope:global align:4
+BoxMove_Actor_move = .text:0x000A5948; // type:function size:0x4 scope:global align:4
+BoxMove_Actor_draw = .text:0x000A594C; // type:function size:0x4 scope:global align:4
+BoxTrick01_Actor_ct = .text:0x000A5950; // type:function size:0x4 scope:global align:4
+BoxTrick01_Actor_dt = .text:0x000A5954; // type:function size:0x4 scope:global align:4
+BoxTrick01_Actor_move = .text:0x000A5958; // type:function size:0x4 scope:global align:4
+aBD_SetFurnitureFg = .text:0x000A595C; // type:function size:0xC0 scope:global align:4
+Broker_Design_Actor_ct = .text:0x000A5A1C; // type:function size:0x6C scope:global align:4
+Broker_Design_Actor_dt = .text:0x000A5A88; // type:function size:0x18 scope:global align:4
+Broker_Design_Actor_draw = .text:0x000A5AA0; // type:function size:0x4 scope:global align:4
+Broker_Design_Actor_move = .text:0x000A5AA4; // type:function size:0x4 scope:global align:4
+aBD_UnitNo2FtrNo = .text:0x000A5AA8; // type:function size:0x98 scope:global align:4
+aBD_ReportFtrSales = .text:0x000A5B40; // type:function size:0x11C scope:global align:4
+Cottage_data_get = .text:0x000A5C5C; // type:function size:0x18 scope:global align:4
+Cottage_my_light_aim = .text:0x000A5C74; // type:function size:0x40 scope:global align:4
+Cottage_npc_light_aim = .text:0x000A5CB4; // type:function size:0xB0 scope:global align:4
+Cottage_my_ctrl_light = .text:0x000A5D64; // type:function size:0x30 scope:global align:4
+Cottage_npc_ctrl_light = .text:0x000A5D94; // type:function size:0x3C scope:global align:4
+Cottage_set_doorSE = .text:0x000A5DD0; // type:function size:0xB4 scope:global align:4
+Cottage_my_check_door_pl_in = .text:0x000A5E84; // type:function size:0xC4 scope:global align:4
+Cottage_npc_check_door_pl_in = .text:0x000A5F48; // type:function size:0x7C scope:global align:4
+Cottage_my_check_go_out = .text:0x000A5FC4; // type:function size:0x8 scope:global align:4
+Cottage_npc_check_go_out = .text:0x000A5FCC; // type:function size:0x68 scope:global align:4
+Cottage_check_door_action = .text:0x000A6034; // type:function size:0xE0 scope:global align:4
+Cottage_reset_door_action = .text:0x000A6114; // type:function size:0x10 scope:global align:4
+Cottage_my_set_bgOffset = .text:0x000A6124; // type:function size:0x150 scope:global align:4
+Cottage_npc_set_bgOffset = .text:0x000A6274; // type:function size:0x16C scope:global align:4
+Cottage_change_FGUnit = .text:0x000A63E0; // type:function size:0x80 scope:global align:4
+Cottage_my_rewrite_door = .text:0x000A6460; // type:function size:0x11C scope:global align:4
+Cottage_npc_rewrite_door = .text:0x000A657C; // type:function size:0x114 scope:global align:4
+Cottage_my_demo_door_open = .text:0x000A6690; // type:function size:0x34 scope:global align:4
+Cottage_npc_demo_door_open = .text:0x000A66C4; // type:function size:0x34 scope:global align:4
+Cottage_demo_speak_go_out = .text:0x000A66F8; // type:function size:0x64 scope:global align:4
+Cottage_actor_ct = .text:0x000A675C; // type:function size:0xCC scope:global align:4
+Cottage_my_actor_ct = .text:0x000A6828; // type:function size:0x80 scope:global align:4
+Cottage_npc_actor_ct = .text:0x000A68A8; // type:function size:0x70 scope:global align:4
+Cottage_actor_dt = .text:0x000A6918; // type:function size:0x24 scope:global align:4
+Cottage_my_actor_dt = .text:0x000A693C; // type:function size:0x20 scope:global align:4
+Cottage_npc_actor_dt = .text:0x000A695C; // type:function size:0x48 scope:global align:4
+Cottage_move_closed_init = .text:0x000A69A4; // type:function size:0x38 scope:global align:4
+Cottage_move_closed = .text:0x000A69DC; // type:function size:0x118 scope:global align:4
+Cottage_move_wait_pl_in_init = .text:0x000A6AF4; // type:function size:0x10 scope:global align:4
+Cottage_move_wait_pl_in = .text:0x000A6B04; // type:function size:0x68 scope:global align:4
+Cottage_move_wait_pl_out_init = .text:0x000A6B6C; // type:function size:0x10 scope:global align:4
+Cottage_move_wait_pl_out = .text:0x000A6B7C; // type:function size:0x40 scope:global align:4
+Cottage_move_open_in_init = .text:0x000A6BBC; // type:function size:0x8C scope:global align:4
+Cottage_move_open_in = .text:0x000A6C48; // type:function size:0xA8 scope:global align:4
+Cottage_move_open_pl_out_init = .text:0x000A6CF0; // type:function size:0x8C scope:global align:4
+Cottage_move_open_npc_out_init = .text:0x000A6D7C; // type:function size:0x8C scope:global align:4
+Cottage_move_open_out = .text:0x000A6E08; // type:function size:0x44 scope:global align:4
+Cottage_move_next_init = .text:0x000A6E4C; // type:function size:0x10 scope:global align:4
+Cottage_move_next = .text:0x000A6E5C; // type:function size:0x4 scope:global align:4
+Cottage_actor_move = .text:0x000A6E60; // type:function size:0x60 scope:global align:4
+Cottage_actor_init = .text:0x000A6EC0; // type:function size:0x78 scope:global align:4
+Cottage_actor_draw_before = .text:0x000A6F38; // type:function size:0x9C scope:global align:4
+Cottage_actor_draw_after = .text:0x000A6FD4; // type:function size:0x14C scope:global align:4
+Cottage_actor_draw = .text:0x000A7120; // type:function size:0xFC scope:global align:4
+Effectbg_actor_ct = .text:0x000A721C; // type:function size:0xA8 scope:global align:4
+Effectbg_actor_dt = .text:0x000A72C4; // type:function size:0x4 scope:global align:4
+EfbgBgitemTreeCheck = .text:0x000A72C8; // type:function size:0x390 scope:global align:4
+EffectBG_Make_Leafs = .text:0x000A7658; // type:function size:0x438 scope:global align:4
+EffectBG_object_ct = .text:0x000A7A90; // type:function size:0x480 scope:global align:4
+EffectBG_object_dt = .text:0x000A7F10; // type:function size:0xC scope:global align:4
+EffectBG_object_move = .text:0x000A7F1C; // type:function size:0x4EC scope:global align:4
+Effectbg_actor_move = .text:0x000A8408; // type:function size:0x64 scope:global align:4
+EffectBG_object_before_display = .text:0x000A846C; // type:function size:0x228 scope:global align:4
+EffectBG_object_before_display_xlu = .text:0x000A8694; // type:function size:0x298 scope:global align:4
+EffectBG_object_after_display = .text:0x000A892C; // type:function size:0xC4 scope:global align:4
+EffectBG_object_draw = .text:0x000A89F0; // type:function size:0x250 scope:global align:4
+Effectbg_actor_draw = .text:0x000A8C40; // type:function size:0x244 scope:global align:4
+Make_EffectBG = .text:0x000A8E84; // type:function size:0x474 scope:global align:4
+get_forward_block = .text:0x000A92F8; // type:function size:0xBC scope:global align:4
+aEvMgr_actor_renewal_player_pos = .text:0x000A93B4; // type:function size:0x5C scope:global align:4
+aEvMgr_actor_regist_handbill = .text:0x000A9410; // type:function size:0x88 scope:global align:4
+aEvMgr_actor_set_shop_handbill_str = .text:0x000A9498; // type:function size:0x130 scope:global align:4
+aEvMgr_actor_set_broker_handbill_str = .text:0x000A95C8; // type:function size:0xAC scope:global align:4
+aEvMgr_actor_regist_broker_handbill = .text:0x000A9674; // type:function size:0x68 scope:global align:4
+aEvMgr_actor_init_field_info = .text:0x000A96DC; // type:function size:0x9C scope:global align:4
+aEvMgr_move = .text:0x000A9778; // type:function size:0x40 scope:global align:4
+aEvMgr_draw = .text:0x000A97B8; // type:function size:0x4 scope:global align:4
+aEvMgr_actor_player_pos_init = .text:0x000A97BC; // type:function size:0x18 scope:global align:4
+aEvMgr_ct = .text:0x000A97D4; // type:function size:0x80 scope:global align:4
+aEvMgr_dt = .text:0x000A9854; // type:function size:0x18 scope:global align:4
+aEvMgr_save = .text:0x000A986C; // type:function size:0x64 scope:global align:4
+w_guide_arrow = .text:0x000A98D0; // type:function size:0x1BC scope:global align:4
+sp_guide_arrow = .text:0x000A9A8C; // type:function size:0x1BC scope:global align:4
+day_guide_arrow = .text:0x000A9C48; // type:function size:0x1BC scope:global align:4
+turkey_guide_arrow = .text:0x000A9E04; // type:function size:0x1BC scope:global align:4
+init_sp_bargain = .text:0x000A9FC0; // type:function size:0x310 scope:global align:4
+init_sp_broker = .text:0x000AA2D0; // type:function size:0x26C scope:global align:4
+init_sp_artist = .text:0x000AA53C; // type:function size:0x74 scope:global align:4
+init_sp_arabian = .text:0x000AA5B0; // type:function size:0x20 scope:global align:4
+init_sp_gypsy = .text:0x000AA5D0; // type:function size:0x1C scope:global align:4
+init_sp_designer = .text:0x000AA5EC; // type:function size:0x8 scope:global align:4
+special_type2kind = .text:0x000AA5F4; // type:function size:0x54 scope:global align:4
+set_special_event_save = .text:0x000AA648; // type:function size:0xFC scope:global align:4
+neighbor_check = .text:0x000AA744; // type:function size:0x208 scope:global align:4
+search_select_unit_cancel_check = .text:0x000AA94C; // type:function size:0xF4 scope:global align:4
+search_free_unit_cancel_check = .text:0x000AAA40; // type:function size:0x12C scope:global align:4
+search_free_unit = .text:0x000AAB6C; // type:function size:0x140 scope:global align:4
+search_select_unit = .text:0x000AACAC; // type:function size:0xD0 scope:global align:4
+search_empty_unit = .text:0x000AAD7C; // type:function size:0x264 scope:global align:4
+be_flat_unit = .text:0x000AAFE0; // type:function size:0x134 scope:global align:4
+search_seaside_unit = .text:0x000AB114; // type:function size:0x1EC scope:global align:4
+get_unit_lot4sale = .text:0x000AB300; // type:function size:0x1AC scope:global align:4
+search_empty_hide_unit = .text:0x000AB4AC; // type:function size:0x234 scope:global align:4
+search_empty_hide_unit_sub = .text:0x000AB6E0; // type:function size:0x1B4 scope:global align:4
+search_empty_hide_unit_player = .text:0x000AB894; // type:function size:0x28 scope:global align:4
+search_empty_hide_unit_toudai = .text:0x000AB8BC; // type:function size:0x78 scope:global align:4
+delete_FG = .text:0x000AB934; // type:function size:0xA8 scope:global align:4
+delete_FG2 = .text:0x000AB9DC; // type:function size:0x8C scope:global align:4
+clean_FG = .text:0x000ABA68; // type:function size:0xB4 scope:global align:4
+make_FG_somewhere_lot4sale = .text:0x000ABB1C; // type:function size:0x1E4 scope:global align:4
+make_actor_in_seaside_block = .text:0x000ABD00; // type:function size:0xEC scope:global align:4
+make_actor_in_free_block = .text:0x000ABDEC; // type:function size:0xF8 scope:global align:4
+make_actor_in_select_block = .text:0x000ABEE4; // type:function size:0xF4 scope:global align:4
+make_move_actor_in_free_block = .text:0x000ABFD8; // type:function size:0x128 scope:global align:4
+make_actor_in_free_block_hide = .text:0x000AC100; // type:function size:0x12C scope:global align:4
+make_actor_in_fixed_block = .text:0x000AC22C; // type:function size:0x114 scope:global align:4
+make_actor_in_fixed_block_checkless = .text:0x000AC340; // type:function size:0xD0 scope:global align:4
+make_control_actor = .text:0x000AC410; // type:function size:0x84 scope:global align:4
+make_control_actor_without_indoor = .text:0x000AC494; // type:function size:0x44 scope:global align:4
+make_actor_in_reserved_block = .text:0x000AC4D8; // type:function size:0x194 scope:global align:4
+make_FG_in_reserved_block = .text:0x000AC66C; // type:function size:0x184 scope:global align:4
+show_actor_at_wade = .text:0x000AC7F0; // type:function size:0x200 scope:global align:4
+show_actor_at_wade_checkless = .text:0x000AC9F0; // type:function size:0x134 scope:global align:4
+show_actor_at_wade_checkfgcol = .text:0x000ACB24; // type:function size:0x1B4 scope:global align:4
+walk_actor_at_wade = .text:0x000ACCD8; // type:function size:0x140 scope:global align:4
+walk_actor_at_wade_hide = .text:0x000ACE18; // type:function size:0x174 scope:global align:4
+walk_FG_somewhere_lot4sale = .text:0x000ACF8C; // type:function size:0x170 scope:global align:4
+make_effect = .text:0x000AD0FC; // type:function size:0xB0 scope:global align:4
+delete_effect = .text:0x000AD1AC; // type:function size:0x40 scope:global align:4
+set_escape_unit = .text:0x000AD1EC; // type:function size:0x6C scope:global align:4
+lap_fixed_actor = .text:0x000AD258; // type:function size:0x7C scope:global align:4
+is_need2escape_unit = .text:0x000AD2D4; // type:function size:0x98 scope:global align:4
+player_lap_check = .text:0x000AD36C; // type:function size:0x550 scope:global align:4
+title_fade = .text:0x000AD8BC; // type:function size:0x39C scope:global align:4
+wait_culling = .text:0x000ADC58; // type:function size:0x30 scope:global align:4
+artist_start = .text:0x000ADC88; // type:function size:0x8C scope:global align:4
+artist_stop = .text:0x000ADD14; // type:function size:0x70 scope:global align:4
+artist_in = .text:0x000ADD84; // type:function size:0x40 scope:global align:4
+artist_behind = .text:0x000ADDC4; // type:function size:0x78 scope:global align:4
+broker_start = .text:0x000ADE3C; // type:function size:0xC4 scope:global align:4
+broker_stop = .text:0x000ADF00; // type:function size:0x7C scope:global align:4
+broker_in = .text:0x000ADF7C; // type:function size:0x40 scope:global align:4
+prebroker_start = .text:0x000ADFBC; // type:function size:0x8 scope:global align:4
+designer_start = .text:0x000ADFC4; // type:function size:0xC4 scope:global align:4
+designer_stop = .text:0x000AE088; // type:function size:0x7C scope:global align:4
+designer_in = .text:0x000AE104; // type:function size:0x40 scope:global align:4
+designer_behind = .text:0x000AE144; // type:function size:0xB8 scope:global align:4
+arabian_start = .text:0x000AE1FC; // type:function size:0x8C scope:global align:4
+arabian_stop = .text:0x000AE288; // type:function size:0x70 scope:global align:4
+arabian_in = .text:0x000AE2F8; // type:function size:0x40 scope:global align:4
+arabian_behind = .text:0x000AE338; // type:function size:0x78 scope:global align:4
+gypsy_start = .text:0x000AE3B0; // type:function size:0x6C scope:global align:4
+gypsy_stop = .text:0x000AE41C; // type:function size:0x7C scope:global align:4
+gypsy_in = .text:0x000AE498; // type:function size:0x8 scope:global align:4
+gypsy_out = .text:0x000AE4A0; // type:function size:0x8 scope:global align:4
+prebargain_start = .text:0x000AE4A8; // type:function size:0x8 scope:global align:4
+bargain_start = .text:0x000AE4B0; // type:function size:0x58 scope:global align:4
+bargain_stop = .text:0x000AE508; // type:function size:0x60 scope:global align:4
+bargain_out = .text:0x000AE568; // type:function size:0x8 scope:global align:4
+staffroll_start = .text:0x000AE570; // type:function size:0x90 scope:global align:4
+staffroll_stop = .text:0x000AE600; // type:function size:0x64 scope:global align:4
+staffroll_in = .text:0x000AE664; // type:function size:0x60 scope:global align:4
+turnipbuyer_start = .text:0x000AE6C4; // type:function size:0x90 scope:global align:4
+turnipbuyer_stop = .text:0x000AE754; // type:function size:0x64 scope:global align:4
+turnipbuyer_in = .text:0x000AE7B8; // type:function size:0x40 scope:global align:4
+turnipbuyer_behind = .text:0x000AE7F8; // type:function size:0x78 scope:global align:4
+downing_start = .text:0x000AE870; // type:function size:0x80 scope:global align:4
+downing_stop = .text:0x000AE8F0; // type:function size:0x64 scope:global align:4
+downing_in = .text:0x000AE954; // type:function size:0x40 scope:global align:4
+aprilfool_start = .text:0x000AE994; // type:function size:0x88 scope:global align:4
+aprilfool_stop = .text:0x000AEA1C; // type:function size:0x54 scope:global align:4
+christmas_start = .text:0x000AEA70; // type:function size:0xAC scope:global align:4
+christmas_stop = .text:0x000AEB1C; // type:function size:0x88 scope:global align:4
+christmas_in = .text:0x000AEBA4; // type:function size:0x40 scope:global align:4
+christmas_behind = .text:0x000AEBE4; // type:function size:0x78 scope:global align:4
+halloween_start = .text:0x000AEC5C; // type:function size:0xAC scope:global align:4
+halloween_stop = .text:0x000AED08; // type:function size:0x8C scope:global align:4
+halloween_in = .text:0x000AED94; // type:function size:0x40 scope:global align:4
+halloween_behind = .text:0x000AEDD4; // type:function size:0x78 scope:global align:4
+anglingtournament_start = .text:0x000AEE4C; // type:function size:0xFC scope:global align:4
+anglingtournament_stop = .text:0x000AEF48; // type:function size:0x90 scope:global align:4
+anglingtournament_in = .text:0x000AEFD8; // type:function size:0x40 scope:global align:4
+countdown_start = .text:0x000AF018; // type:function size:0x118 scope:global align:4
+countdown_stop = .text:0x000AF130; // type:function size:0x9C scope:global align:4
+countdown_in = .text:0x000AF1CC; // type:function size:0x40 scope:global align:4
+firework_start = .text:0x000AF20C; // type:function size:0x104 scope:global align:4
+firework_stop = .text:0x000AF310; // type:function size:0x98 scope:global align:4
+firework_in = .text:0x000AF3A8; // type:function size:0x40 scope:global align:4
+flowerviewing_start = .text:0x000AF3E8; // type:function size:0x104 scope:global align:4
+flowerviewing_stop = .text:0x000AF4EC; // type:function size:0x9C scope:global align:4
+flowerviewing_in = .text:0x000AF588; // type:function size:0x40 scope:global align:4
+radiogymnastic_start = .text:0x000AF5C8; // type:function size:0x104 scope:global align:4
+radiogymnastic_stop = .text:0x000AF6CC; // type:function size:0x90 scope:global align:4
+radiogymnastic_in = .text:0x000AF75C; // type:function size:0x8C scope:global align:4
+field_day_ct = .text:0x000AF7E8; // type:function size:0x150 scope:global align:4
+field_day_delete = .text:0x000AF938; // type:function size:0xF0 scope:global align:4
+fdgymnastic_start = .text:0x000AFA28; // type:function size:0xC8 scope:global align:4
+fdgymnastic_stop = .text:0x000AFAF0; // type:function size:0x54 scope:global align:4
+fdgymnastic_in = .text:0x000AFB44; // type:function size:0x8C scope:global align:4
+fdrace_start = .text:0x000AFBD0; // type:function size:0xC8 scope:global align:4
+fdrace_stop = .text:0x000AFC98; // type:function size:0x54 scope:global align:4
+fdrace_in = .text:0x000AFCEC; // type:function size:0x40 scope:global align:4
+fdbasket_start = .text:0x000AFD2C; // type:function size:0xCC scope:global align:4
+fdbasket_stop = .text:0x000AFDF8; // type:function size:0x54 scope:global align:4
+fdbasket_in = .text:0x000AFE4C; // type:function size:0x40 scope:global align:4
+fdtug_start = .text:0x000AFE8C; // type:function size:0xC8 scope:global align:4
+fdtug_stop = .text:0x000AFF54; // type:function size:0xA8 scope:global align:4
+fdtug_in = .text:0x000AFFFC; // type:function size:0x40 scope:global align:4
+fdwp_start = .text:0x000B003C; // type:function size:0xC0 scope:global align:4
+fdwp_stop = .text:0x000B00FC; // type:function size:0x5C scope:global align:4
+harvestmoon_start = .text:0x000B0158; // type:function size:0xE8 scope:global align:4
+harvestmoon_stop = .text:0x000B0240; // type:function size:0x8C scope:global align:4
+harvestmoon_in = .text:0x000B02CC; // type:function size:0x40 scope:global align:4
+meteor_shower_viewing_start = .text:0x000B030C; // type:function size:0xE8 scope:global align:4
+meteor_shower_viewing_stop = .text:0x000B03F4; // type:function size:0x8C scope:global align:4
+meteor_shower_viewing_in = .text:0x000B0480; // type:function size:0x40 scope:global align:4
+snowman_start = .text:0x000B04C0; // type:function size:0xA0 scope:global align:4
+kamakura_start = .text:0x000B0560; // type:function size:0x78 scope:global align:4
+kamakura_stop = .text:0x000B05D8; // type:function size:0x60 scope:global align:4
+kamakura_in = .text:0x000B0638; // type:function size:0x8 scope:global align:4
+kamakura_out = .text:0x000B0640; // type:function size:0x8 scope:global align:4
+newyear_start = .text:0x000B0648; // type:function size:0x10C scope:global align:4
+newyear_stop = .text:0x000B0754; // type:function size:0x90 scope:global align:4
+newyear_in = .text:0x000B07E4; // type:function size:0x8C scope:global align:4
+ghost_start = .text:0x000B0870; // type:function size:0x220 scope:global align:4
+ghost_delete_hitodama = .text:0x000B0A90; // type:function size:0x98 scope:global align:4
+ghost_stop = .text:0x000B0B28; // type:function size:0x68 scope:global align:4
+ghost_in = .text:0x000B0B90; // type:function size:0x40 scope:global align:4
+river_start_block = .text:0x000B0BD0; // type:function size:0x60 scope:global align:4
+river_stream = .text:0x000B0C30; // type:function size:0x114 scope:global align:4
+bridge_stand_river = .text:0x000B0D44; // type:function size:0xCC scope:global align:4
+bridge_man_start = .text:0x000B0E10; // type:function size:0x124 scope:global align:4
+bridge_man_stop = .text:0x000B0F34; // type:function size:0x64 scope:global align:4
+bridge_man_in = .text:0x000B0F98; // type:function size:0x40 scope:global align:4
+bridge_make_start = .text:0x000B0FD8; // type:function size:0x54 scope:global align:4
+bridge_make_stop = .text:0x000B102C; // type:function size:0x54 scope:global align:4
+bridge_make_in = .text:0x000B1080; // type:function size:0x118 scope:global align:4
+groundhog_start = .text:0x000B1198; // type:function size:0xF4 scope:global align:4
+groundhog_stop = .text:0x000B128C; // type:function size:0x90 scope:global align:4
+groundhog_in = .text:0x000B131C; // type:function size:0xB8 scope:global align:4
+harvestfestival_start = .text:0x000B13D4; // type:function size:0x11C scope:global align:4
+harvestfestival_stop = .text:0x000B14F0; // type:function size:0x7C scope:global align:4
+harvestfestival_in = .text:0x000B156C; // type:function size:0x40 scope:global align:4
+harvestfestival_turkey_start = .text:0x000B15AC; // type:function size:0xAC scope:global align:4
+harvestfestival_turkey_stop = .text:0x000B1658; // type:function size:0x60 scope:global align:4
+harvestfestival_turkey_in = .text:0x000B16B8; // type:function size:0x40 scope:global align:4
+turkey_behind = .text:0x000B16F8; // type:function size:0x78 scope:global align:4
+summercamp_start = .text:0x000B1770; // type:function size:0xF8 scope:global align:4
+summercamp_stop = .text:0x000B1868; // type:function size:0x60 scope:global align:4
+summercamp_in = .text:0x000B18C8; // type:function size:0x8 scope:global align:4
+summercamp_out = .text:0x000B18D0; // type:function size:0x8 scope:global align:4
+check_masknpc_reregist = .text:0x000B18D8; // type:function size:0x40 scope:global align:4
+regist_mask_gohome = .text:0x000B1918; // type:function size:0x78 scope:global align:4
+regist_mask_maskcat = .text:0x000B1990; // type:function size:0x78 scope:global align:4
+gohome_mask_start = .text:0x000B1A08; // type:function size:0x118 scope:global align:4
+gohome_mask_stop = .text:0x000B1B20; // type:function size:0x64 scope:global align:4
+gohome_mask_in = .text:0x000B1B84; // type:function size:0xA0 scope:global align:4
+gohome_mask_behind = .text:0x000B1C24; // type:function size:0x78 scope:global align:4
+soncho_start = .text:0x000B1C9C; // type:function size:0x84 scope:global align:4
+soncho_stop = .text:0x000B1D20; // type:function size:0x54 scope:global align:4
+soncho_in = .text:0x000B1D74; // type:function size:0x40 scope:global align:4
+sonchohalloween_start = .text:0x000B1DB4; // type:function size:0x84 scope:global align:4
+sonchowandar_start = .text:0x000B1E38; // type:function size:0x84 scope:global align:4
+sonchowandar_stop = .text:0x000B1EBC; // type:function size:0x64 scope:global align:4
+sonchowandar_in = .text:0x000B1F20; // type:function size:0x40 scope:global align:4
+event_at_oclock = .text:0x000B1F60; // type:function size:0x114 scope:global align:4
+event_at_wade = .text:0x000B2074; // type:function size:0x188 scope:global align:4
+check_past_day = .text:0x000B21FC; // type:function size:0x2C scope:global align:4
+set_today_event = .text:0x000B2228; // type:function size:0xA4 scope:global align:4
+mail_event_check = .text:0x000B22CC; // type:function size:0x2C8 scope:global align:4
+vt_wt_mail_check = .text:0x000B2594; // type:function size:0xAC scope:global align:4
+schedule_init = .text:0x000B2640; // type:function size:0x168 scope:global align:4
+schedule_main = .text:0x000B27A8; // type:function size:0x358 scope:global align:4
+aFD_MakeEnvSetDisplayList = .text:0x000B2B00; // type:function size:0x54 scope:global align:4
+aFD_OperateWaterSound = .text:0x000B2B54; // type:function size:0x378 scope:global align:4
+aFD_SetActorPosition = .text:0x000B2ECC; // type:function size:0x5C scope:global align:4
+aFD_PrepareFieldDraw = .text:0x000B2F28; // type:function size:0xFC scope:global align:4
+aFD_SetPositionOffset = .text:0x000B3024; // type:function size:0xC scope:global align:4
+aFD_SetDefaultPositionOffset = .text:0x000B3030; // type:function size:0x28 scope:global align:4
+Bg_Draw_Actor_ct = .text:0x000B3058; // type:function size:0x24 scope:global align:4
+Bg_Draw_Actor_dt = .text:0x000B307C; // type:function size:0x4 scope:global align:4
+Bg_Draw_Actor_move = .text:0x000B3080; // type:function size:0x2CC scope:global align:4
+aFD_SetRiverFlow = .text:0x000B334C; // type:function size:0x28 scope:global align:4
+aFD_SetViewerData = .text:0x000B3374; // type:function size:0x3C scope:global align:4
+aFD_SetBeachColorOpaSegment = .text:0x000B33B0; // type:function size:0x94 scope:global align:4
+aFD_SetMarinScrollXluSegment = .text:0x000B3444; // type:function size:0x124 scope:global align:4
+aFD_DrawBg = .text:0x000B3568; // type:function size:0x4C scope:global align:4
+aFD_DrawXluBg = .text:0x000B35B4; // type:function size:0x74 scope:global align:4
+aFD_DrawBlock = .text:0x000B3628; // type:function size:0x228 scope:global align:4
+aFD_MakeMarinScrollInfo = .text:0x000B3850; // type:function size:0x230 scope:global align:4
+Bg_Draw_Actor_draw = .text:0x000B3A80; // type:function size:0xF8 scope:global align:4
+Fieldm_Actor_ct = .text:0x000B3B78; // type:function size:0x4 scope:global align:4
+Fieldm_Actor_dt = .text:0x000B3B7C; // type:function size:0x4 scope:global align:4
+Fieldm_Actor_move = .text:0x000B3B80; // type:function size:0x4 scope:global align:4
+Fieldm_Actor_draw = .text:0x000B3B84; // type:function size:0x4 scope:global align:4
+aFLAG_actor_ct = .text:0x000B3B88; // type:function size:0xB0 scope:global align:4
+aFLAG_actor_dt = .text:0x000B3C38; // type:function size:0x24 scope:global align:4
+aFLAG_set_talk_info = .text:0x000B3C5C; // type:function size:0x68 scope:global align:4
+aFLAG_talk_end = .text:0x000B3CC4; // type:function size:0x48 scope:global align:4
+aFLAG_talk = .text:0x000B3D0C; // type:function size:0x130 scope:global align:4
+aFLAG_wait = .text:0x000B3E3C; // type:function size:0x7C scope:global align:4
+aFLAG_menu_open_wait = .text:0x000B3EB8; // type:function size:0x54 scope:global align:4
+aFLAG_menu_end_wait = .text:0x000B3F0C; // type:function size:0xE8 scope:global align:4
+aFLAG_up = .text:0x000B3FF4; // type:function size:0x3F4 scope:global align:4
+aFLAG_down = .text:0x000B43E8; // type:function size:0x270 scope:global align:4
+aFLAG_setup_action = .text:0x000B4658; // type:function size:0x18 scope:global align:4
+aFLAG_actor_move = .text:0x000B4670; // type:function size:0x9C scope:global align:4
+aFLAG_actor_init = .text:0x000B470C; // type:function size:0x78 scope:global align:4
+aFLAG_before_draw = .text:0x000B4784; // type:function size:0x24 scope:global align:4
+aFLAG_actor_draw = .text:0x000B47A8; // type:function size:0x138 scope:global align:4
+aGRGR_AnimeCt = .text:0x000B48E0; // type:function size:0x70 scope:global align:4
+aGaragara_RequestStatus = .text:0x000B4950; // type:function size:0x38 scope:global align:4
+aGaragara_GaragaraAnimeStart = .text:0x000B4988; // type:function size:0x74 scope:global align:4
+aGaragara_DeleteBall = .text:0x000B49FC; // type:function size:0x34 scope:global align:4
+aGRGR_DecideGaragaraMode = .text:0x000B4A30; // type:function size:0x30 scope:global align:4
+aGRGR_CommonCt = .text:0x000B4A60; // type:function size:0x34 scope:global align:4
+aGRGR_FukubikiDayCt = .text:0x000B4A94; // type:function size:0x6C scope:global align:4
+aGRGR_DummyCt = .text:0x000B4B00; // type:function size:0x4 scope:global align:4
+Garagara_Actor_ct = .text:0x000B4B04; // type:function size:0x68 scope:global align:4
+Garagara_Actor_dt = .text:0x000B4B6C; // type:function size:0x40 scope:global align:4
+Garagara_Actor_draw_dummy = .text:0x000B4BAC; // type:function size:0x4 scope:global align:4
+Garagara_Actor_draw = .text:0x000B4BB0; // type:function size:0xCC scope:global align:4
+aGaragara_WaitInit = .text:0x000B4C7C; // type:function size:0x4C scope:global align:4
+aGaragara_RotateInit = .text:0x000B4CC8; // type:function size:0x60 scope:global align:4
+aGaragara_WaitMove = .text:0x000B4D28; // type:function size:0x24 scope:global align:4
+aGaragara_RotateMove = .text:0x000B4D4C; // type:function size:0x9C scope:global align:4
+Garagara_Actor_move_dummy = .text:0x000B4DE8; // type:function size:0x4 scope:global align:4
+Garagara_Actor_move = .text:0x000B4DEC; // type:function size:0xCC scope:global align:4
+aGRBL_make = .text:0x000B4EB8; // type:function size:0x140 scope:global align:4
+aGRBL_bgCheck = .text:0x000B4FF8; // type:function size:0xF0 scope:global align:4
+aGRBL_move_position = .text:0x000B50E8; // type:function size:0x94 scope:global align:4
+aGRBL_NoneMove = .text:0x000B517C; // type:function size:0x4 scope:global align:4
+aGRBL_StartMove = .text:0x000B5180; // type:function size:0x3C scope:global align:4
+aGRBL_KorokoroMove = .text:0x000B51BC; // type:function size:0xC0 scope:global align:4
+aGRBL_DeleteMove = .text:0x000B527C; // type:function size:0x4 scope:global align:4
+aGRBL_move = .text:0x000B5280; // type:function size:0x5C scope:global align:4
+aGRBL_draw = .text:0x000B52DC; // type:function size:0x10C scope:global align:4
+aGYO_KAGE_Get_flow_angle = .text:0x000B53E8; // type:function size:0x3C scope:global align:4
+aGYO_KAGE_effect_hamon = .text:0x000B5424; // type:function size:0xEC scope:global align:4
+aGYO_KAGE_Wall_Check = .text:0x000B5510; // type:function size:0x94 scope:global align:4
+aGYO_KAGE_actor_ct = .text:0x000B55A4; // type:function size:0x128 scope:global align:4
+aGYO_KAGE_actor_dt = .text:0x000B56CC; // type:function size:0x34 scope:global align:4
+aGYO_KAGE_BGcheck = .text:0x000B5700; // type:function size:0x44 scope:global align:4
+aGYO_KAGE_Cullcheck = .text:0x000B5744; // type:function size:0x50 scope:global align:4
+aGYO_KAGE_position_move = .text:0x000B5794; // type:function size:0x98 scope:global align:4
+aGYO_KAGE_actor_move = .text:0x000B582C; // type:function size:0x16C scope:global align:4
+aGYO_KAGE_actor_draw = .text:0x000B5998; // type:function size:0x1F4 scope:global align:4
+aGYR_actor_ct = .text:0x000B5B8C; // type:function size:0x2AC scope:global align:4
+aGYR_actor_dt = .text:0x000B5E38; // type:function size:0x4C scope:global align:4
+aGYR_anime_frame = .text:0x000B5E84; // type:function size:0x7C scope:global align:4
+aGYR_empty_area = .text:0x000B5F00; // type:function size:0x40 scope:global align:4
+aGYR_Get_flow_angle = .text:0x000B5F40; // type:function size:0x54 scope:global align:4
+aGYR_effect_hamon = .text:0x000B5F94; // type:function size:0xEC scope:global align:4
+aGYR_cull_check = .text:0x000B6080; // type:function size:0x50 scope:global align:4
+aGYR_Shadow_size = .text:0x000B60D0; // type:function size:0x120 scope:global align:4
+aGYR_position_move = .text:0x000B61F0; // type:function size:0xE8 scope:global align:4
+aGYR_check_timer = .text:0x000B62D8; // type:function size:0x9C scope:global align:4
+aGYR_in_water_move = .text:0x000B6374; // type:function size:0xA4 scope:global align:4
+aGYR_move_sub = .text:0x000B6418; // type:function size:0x170 scope:global align:4
+aGYR_actor_move = .text:0x000B6588; // type:function size:0x94 scope:global align:4
+aGYR_actor_draw = .text:0x000B661C; // type:function size:0x18C scope:global align:4
+aHOI_actor_ct = .text:0x000B67A8; // type:function size:0x20 scope:global align:4
+aHOI_actor_dt = .text:0x000B67C8; // type:function size:0x20 scope:global align:4
+aHOI_birth_proc = .text:0x000B67E8; // type:function size:0x100 scope:global align:4
+aHOI_chg_master_proc = .text:0x000B68E8; // type:function size:0x74 scope:global align:4
+aHOI_chg_request_mode_proc = .text:0x000B695C; // type:function size:0x30 scope:global align:4
+aHOI_init_clip_area = .text:0x000B698C; // type:function size:0xB0 scope:global align:4
+aHOI_free_clip_area = .text:0x000B6A3C; // type:function size:0x24 scope:global align:4
+aHOI_set_se = .text:0x000B6A60; // type:function size:0x88 scope:global align:4
+aHOI_calc_trans = .text:0x000B6AE8; // type:function size:0x134 scope:global align:4
+aHOI_calc_scale = .text:0x000B6C1C; // type:function size:0xA4 scope:global align:4
+aHOI_anime_proc = .text:0x000B6CC0; // type:function size:0xF8 scope:global align:4
+aHOI_get_item_type = .text:0x000B6DB8; // type:function size:0x4C scope:global align:4
+aHOI_actor_move = .text:0x000B6E04; // type:function size:0x14C scope:global align:4
+aHOI_chase_pos = .text:0x000B6F50; // type:function size:0x1D0 scope:global align:4
+aHOI_actor_draw = .text:0x000B7120; // type:function size:0x25C scope:global align:4
+aHNW_actor_ct = .text:0x000B737C; // type:function size:0xC4 scope:global align:4
+aHNW_actor_dt = .text:0x000B7440; // type:function size:0x60 scope:global align:4
+aHNW_actor_draw = .text:0x000B74A0; // type:function size:0x138 scope:global align:4
+aHNW_set_save_permission = .text:0x000B75D8; // type:function size:0xB0 scope:global align:4
+aHNW_search_player = .text:0x000B7688; // type:function size:0x2C scope:global align:4
+aHNW_search_front = .text:0x000B76B4; // type:function size:0x4C scope:global align:4
+aHNW_check_keep_item = .text:0x000B7700; // type:function size:0x48 scope:global align:4
+aHNW_set_proceeds_str = .text:0x000B7748; // type:function size:0x54 scope:global align:4
+aHNW_check_handOver_proceeds = .text:0x000B779C; // type:function size:0xFC scope:global align:4
+aHNW_check_house_door = .text:0x000B7898; // type:function size:0x100 scope:global align:4
+aHNW_wait = .text:0x000B7998; // type:function size:0x38 scope:global align:4
+aHNW_decide_msg_idx_dance = .text:0x000B79D0; // type:function size:0x100 scope:global align:4
+aHNW_set_talk_info_dance = .text:0x000B7AD0; // type:function size:0xA8 scope:global align:4
+aHNW_dance = .text:0x000B7B78; // type:function size:0xD0 scope:global align:4
+aHNW_check_proceeds = .text:0x000B7C48; // type:function size:0xC8 scope:global align:4
+aHNW_talk_with_master = .text:0x000B7D10; // type:function size:0xE4 scope:global align:4
+aHNW_talk_with_master2 = .text:0x000B7DF4; // type:function size:0xE4 scope:global align:4
+aHNW_talk_end_wait = .text:0x000B7ED8; // type:function size:0x58 scope:global align:4
+aHNW_menu_open_wait = .text:0x000B7F30; // type:function size:0xC8 scope:global align:4
+aHNW_menu_end_wait = .text:0x000B7FF8; // type:function size:0xBC scope:global align:4
+aHNW_talk_with_guest = .text:0x000B80B4; // type:function size:0xE4 scope:global align:4
+aHNW_menu_open_wait_for_guest = .text:0x000B8198; // type:function size:0x78 scope:global align:4
+aHNW_menu_end_wait_for_guest = .text:0x000B8210; // type:function size:0x60 scope:global align:4
+aHNW_save_check = .text:0x000B8270; // type:function size:0xD4 scope:global align:4
+aHNW_roof_check = .text:0x000B8344; // type:function size:0x100 scope:global align:4
+aHNW_save_end_wait = .text:0x000B8444; // type:function size:0x8C scope:global align:4
+aHNW_pl_approach_door = .text:0x000B84D0; // type:function size:0x16C scope:global align:4
+aHNW_door_open_wait = .text:0x000B863C; // type:function size:0xB0 scope:global align:4
+aHNW_door_open_timer = .text:0x000B86EC; // type:function size:0xC0 scope:global align:4
+aHNW_menu_open_wait_init = .text:0x000B87AC; // type:function size:0x24 scope:global align:4
+aHNW_menu_end_wait_init = .text:0x000B87D0; // type:function size:0x24 scope:global align:4
+aHNW_talk_with_guest_init = .text:0x000B87F4; // type:function size:0x54 scope:global align:4
+aHNW_pl_approach_door_init = .text:0x000B8848; // type:function size:0x18 scope:global align:4
+aHNW_init_proc = .text:0x000B8860; // type:function size:0x34 scope:global align:4
+aHNW_setupAction = .text:0x000B8894; // type:function size:0x1C4 scope:global align:4
+aHNW_common_process = .text:0x000B8A58; // type:function size:0x12C scope:global align:4
+aHNW_actor_move = .text:0x000B8B84; // type:function size:0x8C scope:global align:4
+aHNW_actor_init = .text:0x000B8C10; // type:function size:0xAC scope:global align:4
+aHTC_actor_ct = .text:0x000B8CBC; // type:function size:0x74 scope:global align:4
+aHTC_actor_dt = .text:0x000B8D30; // type:function size:0x3C scope:global align:4
+aHTC_actor_move = .text:0x000B8D6C; // type:function size:0x28 scope:global align:4
+aHTC_ready = .text:0x000B8D94; // type:function size:0xBC scope:global align:4
+aHTC_wait = .text:0x000B8E50; // type:function size:0x4C scope:global align:4
+aHTC_set_talk_info_local = .text:0x000B8E9C; // type:function size:0x54 scope:global align:4
+aHTC_request = .text:0x000B8EF0; // type:function size:0x9C scope:global align:4
+aHTC_select = .text:0x000B8F8C; // type:function size:0x7C scope:global align:4
+aHTC_nomoney = .text:0x000B9008; // type:function size:0x48 scope:global align:4
+aHTC_inori = .text:0x000B9050; // type:function size:0xD8 scope:global align:4
+aHTC_inori_end = .text:0x000B9128; // type:function size:0x6C scope:global align:4
+aHTC_pay = .text:0x000B9194; // type:function size:0x50 scope:global align:4
+aHTC_saisen = .text:0x000B91E4; // type:function size:0xD8 scope:global align:4
+aHTC_setup_move_proc = .text:0x000B92BC; // type:function size:0x1C scope:global align:4
+aHN0_set_request_act = .text:0x000B92D8; // type:function size:0x94 scope:local align:4
+aHN0_make_msg = .text:0x000B936C; // type:function size:0x11C scope:global align:4
+aHN0_talk_stop_player = .text:0x000B9488; // type:function size:0x5C scope:global align:4
+aHN0_talk_saisen_suru = .text:0x000B94E4; // type:function size:0x9C scope:global align:4
+aHN0_change_talk_proc = .text:0x000B9580; // type:function size:0x1C scope:global align:4
+aHTC_clip_talk_info = .text:0x000B959C; // type:function size:0xF0 scope:global align:4
+aHTMD_clip_set_start = .text:0x000B968C; // type:function size:0x88 scope:global align:4
+aHTMD_next_position = .text:0x000B9714; // type:function size:0xB0 scope:global align:4
+aHTMD_clip_player_move = .text:0x000B97C4; // type:function size:0xDC scope:global align:4
+aHTMD_clip_look_player = .text:0x000B98A0; // type:function size:0x7C scope:global align:4
+aHN0_aisatu_local = .text:0x000B991C; // type:function size:0x10C scope:global align:4
+aHN0_normal_wait_init = .text:0x000B9A28; // type:function size:0x38 scope:global align:4
+aHN0_move_init = .text:0x000B9A60; // type:function size:0x54 scope:global align:4
+aHN0_turn_f_init = .text:0x000B9AB4; // type:function size:0x5C scope:global align:4
+aHN0_saisen_init = .text:0x000B9B10; // type:function size:0xBC scope:global align:4
+aHN0_omairi_af_init = .text:0x000B9BCC; // type:function size:0x5C scope:global align:4
+aHN0_turn_move_init = .text:0x000B9C28; // type:function size:0x38 scope:global align:4
+aHN0_next_pos_init = .text:0x000B9C60; // type:function size:0x104 scope:global align:4
+aHN0_move_bf_init = .text:0x000B9D64; // type:function size:0x54 scope:global align:4
+aHN0_turn_aisatu_init = .text:0x000B9DB8; // type:function size:0xB0 scope:global align:4
+aHN0_aisatu_init = .text:0x000B9E68; // type:function size:0x54 scope:global align:4
+aHN0_aisatu2_init = .text:0x000B9EBC; // type:function size:0x54 scope:global align:4
+aHN0_haigo_init = .text:0x000B9F10; // type:function size:0x64 scope:global align:4
+aHTMD_clip_think_init = .text:0x000B9F74; // type:function size:0x9C scope:global align:4
+House_Clock_Actor_no_draw = .text:0x000BA010; // type:function size:0x4 scope:global align:4
+aHC_dummy = .text:0x000BA014; // type:function size:0x4 scope:global align:4
+aHC_SetClockNum = .text:0x000BA018; // type:function size:0x94 scope:global align:4
+aHC_InitClockAnimation = .text:0x000BA0AC; // type:function size:0x84 scope:global align:4
+House_Clock_Actor_ct = .text:0x000BA130; // type:function size:0x98 scope:global align:4
+House_Clock_Actor_dt = .text:0x000BA1C8; // type:function size:0x2C scope:global align:4
+aHC_SetEnvMapping = .text:0x000BA1F4; // type:function size:0x90 scope:global align:4
+aHC_DrawClockBefore = .text:0x000BA284; // type:function size:0x3C scope:global align:4
+aHC_DrawClockAfter = .text:0x000BA2C0; // type:function size:0x1F4 scope:global align:4
+aHC_DrawClock = .text:0x000BA4B4; // type:function size:0xC8 scope:global align:4
+House_Clock_Actor_draw = .text:0x000BA57C; // type:function size:0x44 scope:global align:4
+aHC_OperateAnime = .text:0x000BA5C0; // type:function size:0xB8 scope:global align:4
+House_Clock_Actor_move = .text:0x000BA678; // type:function size:0x5C scope:global align:4
+aID_actor_ct = .text:0x000BA6D4; // type:function size:0x10C scope:global align:4
+aID_actor_dt = .text:0x000BA7E0; // type:function size:0x54 scope:global align:4
+aID_change_player_demo_standing_train = .text:0x000BA834; // type:function size:0x3C scope:global align:4
+aID_set_first_field_bgm = .text:0x000BA870; // type:function size:0x48 scope:global align:4
+aID_check_set_first_field_bgm = .text:0x000BA8B8; // type:function size:0x4C scope:global align:4
+aID_first_set = .text:0x000BA904; // type:function size:0x60 scope:global align:4
+aID_train_birth_wait = .text:0x000BA964; // type:function size:0x74 scope:global align:4
+aID_ride_train = .text:0x000BA9D8; // type:function size:0x5C scope:global align:4
+aID_ride_off_player = .text:0x000BAA34; // type:function size:0x80 scope:global align:4
+aID_walk_one_unit = .text:0x000BAAB4; // type:function size:0x84 scope:global align:4
+aID_go_out_of_station = .text:0x000BAB38; // type:function size:0x84 scope:global align:4
+aID_birth_rcn_guide = .text:0x000BABBC; // type:function size:0x180 scope:global align:4
+aID_first_talk_end_wait = .text:0x000BAD3C; // type:function size:0x38 scope:global align:4
+aID_walk_after_rcn_guide = .text:0x000BAD74; // type:function size:0x98 scope:global align:4
+aID_decide_house = .text:0x000BAE0C; // type:function size:0x30 scope:global align:4
+aID_retire_rcn_guide_wait = .text:0x000BAE3C; // type:function size:0x114 scope:global align:4
+aID_first_job = .text:0x000BAF50; // type:function size:0x84 scope:global align:4
+aID_first_set_init = .text:0x000BAFD4; // type:function size:0x4C scope:global align:4
+aID_train_birth_wait_init = .text:0x000BB020; // type:function size:0x94 scope:global align:4
+aID_ride_off_player_init = .text:0x000BB0B4; // type:function size:0x94 scope:global align:4
+aID_walk_one_unit_init = .text:0x000BB148; // type:function size:0x4C scope:global align:4
+aID_go_out_of_station_init = .text:0x000BB194; // type:function size:0x40 scope:global align:4
+aID_walk_after_rcn_guide_init = .text:0x000BB1D4; // type:function size:0x44 scope:global align:4
+aID_decide_house_init = .text:0x000BB218; // type:function size:0x2C scope:global align:4
+aID_retire_rcn_guide_wait_init = .text:0x000BB244; // type:function size:0x54 scope:global align:4
+aID_first_job_init = .text:0x000BB298; // type:function size:0x88 scope:global align:4
+aID_init_proc = .text:0x000BB320; // type:function size:0x34 scope:global align:4
+aID_setupAction = .text:0x000BB354; // type:function size:0x38 scope:global align:4
+aID_actor_move = .text:0x000BB38C; // type:function size:0x28 scope:global align:4
+Kamakura_Indoor_Actor_ct = .text:0x000BB3B4; // type:function size:0xC4 scope:global align:4
+Kamakura_Indoor_Actor_dt = .text:0x000BB478; // type:function size:0x24 scope:global align:4
+aKI_DrawKamakuraIndoorCandleRing = .text:0x000BB49C; // type:function size:0x178 scope:global align:4
+aKI_MakePrimEnvColorXluDisp = .text:0x000BB614; // type:function size:0x9C scope:global align:4
+aKI_DrawKamakuraIndoorBG = .text:0x000BB6B0; // type:function size:0x284 scope:global align:4
+Kamakura_Indoor_Actor_draw = .text:0x000BB934; // type:function size:0x44 scope:global align:4
+aKI_MakeSinPointHalf = .text:0x000BB978; // type:function size:0x164 scope:global align:4
+Kamakura_Indoor_Actor_move = .text:0x000BBADC; // type:function size:0x294 scope:global align:4
+aLS_CheckLightHousePeriod = .text:0x000BBD70; // type:function size:0x48 scope:global align:4
+aLS_NiceSwitchOnTime = .text:0x000BBDB8; // type:function size:0x30 scope:global align:4
+aLS_GetNiceStatus = .text:0x000BBDE8; // type:function size:0x40 scope:global align:4
+aLS_RequestPoleToStop = .text:0x000BBE28; // type:function size:0x4C scope:global align:4
+aLS_RequestPoleToMove = .text:0x000BBE74; // type:function size:0x64 scope:global align:4
+aLS_RequestSwitchON = .text:0x000BBED8; // type:function size:0x58 scope:global align:4
+aLS_RequestSwitchOFF = .text:0x000BBF30; // type:function size:0x58 scope:global align:4
+aLS_PoleCt = .text:0x000BBF88; // type:function size:0xF0 scope:global align:4
+aLS_SwitchCt = .text:0x000BC078; // type:function size:0xD4 scope:global align:4
+Lighthouse_Switch_Actor_ct = .text:0x000BC14C; // type:function size:0xF8 scope:global align:4
+Lighthouse_Switch_Actor_dt = .text:0x000BC244; // type:function size:0x30 scope:global align:4
+aLS_PoleDrawBefore = .text:0x000BC274; // type:function size:0x18 scope:global align:4
+aLS_PoleDrawAfter = .text:0x000BC28C; // type:function size:0x80 scope:global align:4
+aLS_MakePrimcolorDisplayList = .text:0x000BC30C; // type:function size:0x54 scope:global align:4
+aLS_MakeRoomPrimcolorDisplayList = .text:0x000BC360; // type:function size:0x58 scope:global align:4
+aLS_PoleDraw = .text:0x000BC3B8; // type:function size:0x114 scope:global align:4
+aLS_SwitchDraw = .text:0x000BC4CC; // type:function size:0xF4 scope:global align:4
+Lighthouse_Switch_Actor_draw = .text:0x000BC5C0; // type:function size:0x48 scope:global align:4
+aLS_GetNowPoleAnimeSpeed = .text:0x000BC608; // type:function size:0x508 scope:global align:4
+aLS_PolePlayKeyAnime = .text:0x000BCB10; // type:function size:0x4C scope:global align:4
+aLS_PoleMove = .text:0x000BCB5C; // type:function size:0x44 scope:global align:4
+aLS_SwitchMove = .text:0x000BCBA0; // type:function size:0xE8 scope:global align:4
+aLS_CheckPlayerSwitchPositionAngle = .text:0x000BCC88; // type:function size:0xF8 scope:global align:4
+aLS_CheckPlayerAction = .text:0x000BCD80; // type:function size:0xF0 scope:global align:4
+aLS_AutoSwitch = .text:0x000BCE70; // type:function size:0x84 scope:global align:4
+Lighthouse_Switch_Actor_move = .text:0x000BCEF4; // type:function size:0x64 scope:global align:4
+aMBX_actor_ct = .text:0x000BCF58; // type:function size:0xE0 scope:global align:4
+aMBX_actor_dt = .text:0x000BD038; // type:function size:0x24 scope:global align:4
+aMBX_actor_draw_before = .text:0x000BD05C; // type:function size:0x4C scope:global align:4
+aMBX_actor_draw = .text:0x000BD0A8; // type:function size:0x150 scope:global align:4
+aMBX_anime_proc = .text:0x000BD1F8; // type:function size:0x40 scope:global align:4
+aMBX_setup_flag_anime = .text:0x000BD238; // type:function size:0x90 scope:global align:4
+aMBX_check_take_mail = .text:0x000BD2C8; // type:function size:0x144 scope:global align:4
+aMBX_check_flag = .text:0x000BD40C; // type:function size:0x98 scope:global align:4
+aMBX_setup_flag_se_sub = .text:0x000BD4A4; // type:function size:0x50 scope:global align:4
+aMBX_setup_flag_se = .text:0x000BD4F4; // type:function size:0x70 scope:global align:4
+aMBX_wait = .text:0x000BD564; // type:function size:0xA0 scope:global align:4
+aMBX_pl_wait = .text:0x000BD604; // type:function size:0xA4 scope:global align:4
+aMBX_open_and_close = .text:0x000BD6A8; // type:function size:0xC4 scope:global align:4
+aMBX_pl_open = .text:0x000BD76C; // type:function size:0x84 scope:global align:4
+aMBX_pl_close = .text:0x000BD7F0; // type:function size:0x74 scope:global align:4
+aMBX_setupAction = .text:0x000BD864; // type:function size:0x98 scope:global align:4
+aMBX_actor_move = .text:0x000BD8FC; // type:function size:0x54 scope:global align:4
+aMBX_actor_init = .text:0x000BD950; // type:function size:0xA8 scope:global align:4
+Mbg_Actor_ct = .text:0x000BD9F8; // type:function size:0xAC scope:global align:4
+Mbg_Actor_dt = .text:0x000BDAA4; // type:function size:0x24 scope:global align:4
+Mbg_Actor_draw = .text:0x000BDAC8; // type:function size:0xBC scope:global align:4
+Mbg_Actor_move = .text:0x000BDB84; // type:function size:0x9C scope:global align:4
+aMSN_SetDustclothSwitch = .text:0x000BDC20; // type:function size:0x24 scope:global align:4
+aMSN_RequestDustclothMove = .text:0x000BDC44; // type:function size:0x24 scope:global align:4
+aMSN_RequestDustclothStop = .text:0x000BDC68; // type:function size:0x24 scope:global align:4
+aMSN_DustclothCT = .text:0x000BDC8C; // type:function size:0x184 scope:global align:4
+aMSN_SetMisinStatus = .text:0x000BDE10; // type:function size:0x24 scope:global align:4
+aMSN_RequestMisinStop = .text:0x000BDE34; // type:function size:0x24 scope:global align:4
+aMSN_ReqeustMisinMove = .text:0x000BDE58; // type:function size:0x24 scope:global align:4
+aMSN_MisinCT = .text:0x000BDE7C; // type:function size:0xA0 scope:global align:4
+aMSN_SetClipInfo = .text:0x000BDF1C; // type:function size:0x4C scope:global align:4
+Misin_Actor_ct = .text:0x000BDF68; // type:function size:0x54 scope:global align:4
+Misin_Actor_dt = .text:0x000BDFBC; // type:function size:0x5C scope:global align:4
+aMSN_DrawDustcloth = .text:0x000BE018; // type:function size:0x160 scope:global align:4
+aMSN_DrawMisinBefore = .text:0x000BE178; // type:function size:0x18 scope:global align:4
+aMSN_DrawMisinAfter = .text:0x000BE190; // type:function size:0xE4 scope:global align:4
+aMSN_MakeBeltGFX = .text:0x000BE274; // type:function size:0x54 scope:global align:4
+aMSN_DrawMisin = .text:0x000BE2C8; // type:function size:0x100 scope:global align:4
+Misin_Actor_draw = .text:0x000BE3C8; // type:function size:0x48 scope:global align:4
+aMSN_MoveDustcloth = .text:0x000BE410; // type:function size:0x1F4 scope:global align:4
+aMSN_SetNeedleOffsetPosition = .text:0x000BE604; // type:function size:0xE0 scope:global align:4
+aMSN_MoveMisin = .text:0x000BE6E4; // type:function size:0x104 scope:global align:4
+Misin_Actor_move = .text:0x000BE7E8; // type:function size:0x50 scope:global align:4
+Mural_Actor_ct = .text:0x000BE838; // type:function size:0x94 scope:global align:4
+Mural_Actor_dt = .text:0x000BE8CC; // type:function size:0x4 scope:global align:4
+Mural_Actor_move = .text:0x000BE8D0; // type:function size:0xB0 scope:global align:4
+Mural_Actor_draw = .text:0x000BE980; // type:function size:0x198 scope:global align:4
+Museum_Fossil_Actor_ct = .text:0x000BEB18; // type:function size:0x4 scope:global align:4
+Museum_Fossil_Actor_dt = .text:0x000BEB1C; // type:function size:0x4 scope:global align:4
+Museum_Fossil_Actor_draw = .text:0x000BEB20; // type:function size:0x4 scope:global align:4
+aMF_SetTalkInfo = .text:0x000BEB24; // type:function size:0x58 scope:global align:4
+Museum_Fossil_Actor_move = .text:0x000BEB7C; // type:function size:0x34C scope:global align:4
+Museum_Picture_Actor_ct = .text:0x000BEEC8; // type:function size:0x4 scope:global align:4
+Museum_Picture_Actor_dt = .text:0x000BEECC; // type:function size:0x4 scope:global align:4
+aMP_DrawOneArt = .text:0x000BEED0; // type:function size:0x124 scope:global align:4
+Museum_Picture_Actor_draw = .text:0x000BEFF4; // type:function size:0x8C scope:global align:4
+aMP_CheckTalkAble = .text:0x000BF080; // type:function size:0x128 scope:global align:4
+aMP_CheckTalkAbleDist = .text:0x000BF1A8; // type:function size:0xD4 scope:global align:4
+aMP_SetTalkInfo = .text:0x000BF27C; // type:function size:0x58 scope:global align:4
+Museum_Picture_Actor_move = .text:0x000BF2D4; // type:function size:0x280 scope:global align:4
+Museum_Fish_Prv_data_init = .text:0x000BF554; // type:function size:0x170 scope:global align:4
+Museum_Fish_Actor_ct = .text:0x000BF6C4; // type:function size:0x274 scope:global align:4
+Museum_Fish_Actor_dt = .text:0x000BF938; // type:function size:0x20 scope:global align:4
+Museum_Fish_GetMsgNo = .text:0x000BF958; // type:function size:0x114 scope:global align:4
+Museum_Fish_Check_Talk_Distance = .text:0x000BFA6C; // type:function size:0xD8 scope:global align:4
+Museum_Fish_Set_MsgFishInfo = .text:0x000BFB44; // type:function size:0xC4 scope:global align:4
+Museum_Fish_set_talk_info = .text:0x000BFC08; // type:function size:0x80 scope:global align:4
+Museum_Fish_Talk_process = .text:0x000BFC88; // type:function size:0x184 scope:global align:4
+Museum_Fish_Actor_move = .text:0x000BFE0C; // type:function size:0x7C8 scope:global align:4
+Museum_Fish_Suisou_draw = .text:0x000C05D4; // type:function size:0x2C4 scope:global align:4
+kusa_before_disp = .text:0x000C0898; // type:function size:0x134 scope:global align:4
+Museum_Fish_Kusa_Draw = .text:0x000C09CC; // type:function size:0x134 scope:global align:4
+Museum_Fish_Actor_draw = .text:0x000C0B00; // type:function size:0x290 scope:global align:4
+mfish_cull_check = .text:0x000C0D90; // type:function size:0xB4 scope:global align:4
+mfish_point_ligh_pos_get = .text:0x000C0E44; // type:function size:0x344 scope:global align:4
+mfish_point_light_ct = .text:0x000C1188; // type:function size:0xA8 scope:global align:4
+mfish_point_light_dt = .text:0x000C1230; // type:function size:0x60 scope:global align:4
+mfish_point_light_mv = .text:0x000C1290; // type:function size:0x118 scope:global align:4
+mfish_normal_light_set = .text:0x000C13A8; // type:function size:0x80 scope:global align:4
+Rnd_EX_f = .text:0x000C1428; // type:function size:0x170 scope:global align:4
+Rnd_EX_fx = .text:0x000C1598; // type:function size:0x164 scope:global align:4
+mfish_base_FishMove = .text:0x000C16FC; // type:function size:0x23C scope:global align:4
+mfish_PosWallCheck = .text:0x000C1938; // type:function size:0xF4 scope:global align:4
+mfish_WallCheck = .text:0x000C1A2C; // type:function size:0x11C scope:global align:4
+mfish_get_hide_camera_angle = .text:0x000C1B48; // type:function size:0x12C scope:global align:4
+mfish_dummy_process_init = .text:0x000C1C74; // type:function size:0xC0 scope:global align:4
+mfish_dummy_process = .text:0x000C1D34; // type:function size:0x39C scope:global align:4
+mfish_normal_process_init = .text:0x000C20D0; // type:function size:0x280 scope:global align:4
+mfish_normal_process = .text:0x000C2350; // type:function size:0x5E0 scope:global align:4
+mfish_turn_process_init = .text:0x000C2930; // type:function size:0x21C scope:global align:4
+mfish_turn_process = .text:0x000C2B4C; // type:function size:0x4E0 scope:global align:4
+mfish_peck_process_init = .text:0x000C302C; // type:function size:0x24C scope:global align:4
+mfish_peck_process = .text:0x000C3278; // type:function size:0x684 scope:global align:4
+mfish_ground_peck_process_init = .text:0x000C38FC; // type:function size:0x1CC scope:global align:4
+mfish_ground_peck_process = .text:0x000C3AC8; // type:function size:0x2F8 scope:global align:4
+mfish_base_ct = .text:0x000C3DC0; // type:function size:0x11C scope:global align:4
+mfish_base_mv = .text:0x000C3EDC; // type:function size:0x46C scope:global align:4
+mfish_onefish_ct = .text:0x000C4348; // type:function size:0xF4 scope:global align:4
+mfish_onefish_mv = .text:0x000C443C; // type:function size:0x24 scope:global align:4
+mfish_before_disp = .text:0x000C4460; // type:function size:0xE4 scope:global align:4
+mfish_onefish_dw = .text:0x000C4544; // type:function size:0x190 scope:global align:4
+mfish_ani_base_ct = .text:0x000C46D4; // type:function size:0x58 scope:global align:4
+mfish_ani_base_mv = .text:0x000C472C; // type:function size:0x200 scope:global align:4
+mfish_ani_base_dw = .text:0x000C492C; // type:function size:0x20 scope:global align:4
+Museum_Fish_BigFishObjCheck = .text:0x000C494C; // type:function size:0x5E0 scope:global align:4
+Museum_Fish_ObjBGCheck = .text:0x000C4F2C; // type:function size:0x498 scope:global align:4
+Museum_Fish_DonkoBGCheck = .text:0x000C53C4; // type:function size:0x694 scope:global align:4
+Museum_Fish_objchk_pos_set = .text:0x000C5A58; // type:function size:0x78 scope:global align:4
+Museum_Fish_BGCheck = .text:0x000C5AD0; // type:function size:0x7B0 scope:global align:4
+Museum_Fish_Kusa_Check = .text:0x000C6280; // type:function size:0x4B0 scope:global align:4
+Museum_Fish_Object_Check = .text:0x000C6730; // type:function size:0x7A0 scope:global align:4
+mfish_body_wind_anime_play = .text:0x000C6ED0; // type:function size:0x12C scope:global align:4
+mfish_get_player_angle = .text:0x000C6FFC; // type:function size:0x160 scope:global align:4
+mfish_peck_check = .text:0x000C715C; // type:function size:0xD8 scope:global align:4
+mfish_peck_wall_check = .text:0x000C7234; // type:function size:0xA4 scope:global align:4
+mfish_ground_peck_before_check = .text:0x000C72D8; // type:function size:0x1C8 scope:global align:4
+mfish_get_player_area = .text:0x000C74A0; // type:function size:0x144 scope:global align:4
+mfish_get_flow_vec = .text:0x000C75E4; // type:function size:0x900 scope:global align:4
+mfish_get_escape_angle = .text:0x000C7EE4; // type:function size:0x174 scope:global align:4
+mfish_move_smooth = .text:0x000C8058; // type:function size:0x550 scope:global align:4
+mfish_hamon_make = .text:0x000C85A8; // type:function size:0xF4 scope:global align:4
+mfish_afish_ct = .text:0x000C869C; // type:function size:0x6C scope:global align:4
+mfish_afish_dummy_process_init = .text:0x000C8708; // type:function size:0x15C scope:global align:4
+mfish_afish_dummy_process = .text:0x000C8864; // type:function size:0x33C scope:global align:4
+mfish_afish_normal_process_init = .text:0x000C8BA0; // type:function size:0x28C scope:global align:4
+mfish_afish_normal_process = .text:0x000C8E2C; // type:function size:0x580 scope:global align:4
+mfish_afish_turn_process_init = .text:0x000C93AC; // type:function size:0x218 scope:global align:4
+mfish_afish_turn_process = .text:0x000C95C4; // type:function size:0x4D8 scope:global align:4
+mfish_afish_base_FishMove = .text:0x000C9A9C; // type:function size:0x2B8 scope:global align:4
+mfish_afish_base_mv = .text:0x000C9D54; // type:function size:0x3B8 scope:global align:4
+mfish_afish_mv = .text:0x000CA10C; // type:function size:0xE0 scope:global align:4
+mfish_afish_dw = .text:0x000CA1EC; // type:function size:0x20 scope:global align:4
+mfish_aroana_ct = .text:0x000CA20C; // type:function size:0x58 scope:global align:4
+mfish_aroana_dummy_process_init = .text:0x000CA264; // type:function size:0x28 scope:global align:4
+mfish_aroana_dummy_process = .text:0x000CA28C; // type:function size:0x290 scope:global align:4
+mfish_aroana_normal_process_init = .text:0x000CA51C; // type:function size:0x250 scope:global align:4
+mfish_aroana_normal_process = .text:0x000CA76C; // type:function size:0x674 scope:global align:4
+mfish_aroana_turn_process_init = .text:0x000CADE0; // type:function size:0x218 scope:global align:4
+mfish_aroana_turn_process = .text:0x000CAFF8; // type:function size:0x4D4 scope:global align:4
+mfish_aroana_long_move_process_init = .text:0x000CB4CC; // type:function size:0x3C scope:global align:4
+mfish_aroana_long_move_process = .text:0x000CB508; // type:function size:0x2A8 scope:global align:4
+mfish_aroana_base_FishMove = .text:0x000CB7B0; // type:function size:0x2F8 scope:global align:4
+mfish_aroana_base_mv = .text:0x000CBAA8; // type:function size:0x3A0 scope:global align:4
+mfish_aroana_mv = .text:0x000CBE48; // type:function size:0x80 scope:global align:4
+mfish_aroana_before_disp = .text:0x000CBEC8; // type:function size:0x1A0 scope:global align:4
+mfish_aroana_dw = .text:0x000CC068; // type:function size:0xF8 scope:global align:4
+mfish_koi_tail_anim_set = .text:0x000CC160; // type:function size:0x118 scope:global align:4
+mfish_koi_move_smooth = .text:0x000CC278; // type:function size:0x514 scope:global align:4
+mfish_koi_ct = .text:0x000CC78C; // type:function size:0x6C scope:global align:4
+mfish_koi_dummy_process_init = .text:0x000CC7F8; // type:function size:0x15C scope:global align:4
+mfish_koi_dummy_process = .text:0x000CC954; // type:function size:0x398 scope:global align:4
+mfish_koi_normal_process_init = .text:0x000CCCEC; // type:function size:0x2A8 scope:global align:4
+mfish_koi_normal_process = .text:0x000CCF94; // type:function size:0x5BC scope:global align:4
+mfish_koi_turn_process_init = .text:0x000CD550; // type:function size:0x20C scope:global align:4
+mfish_koi_turn_process = .text:0x000CD75C; // type:function size:0x4FC scope:global align:4
+mfish_koi_peck_process_init = .text:0x000CDC58; // type:function size:0x25C scope:global align:4
+mfish_koi_peck_process = .text:0x000CDEB4; // type:function size:0x5B4 scope:global align:4
+mfish_koi_long_move_process_init = .text:0x000CE468; // type:function size:0x68 scope:global align:4
+mfish_koi_long_move_process = .text:0x000CE4D0; // type:function size:0x274 scope:global align:4
+mfish_koi_base_FishMove = .text:0x000CE744; // type:function size:0x348 scope:global align:4
+mfish_koi_base_mv = .text:0x000CEA8C; // type:function size:0x3F8 scope:global align:4
+mfish_koi_mv = .text:0x000CEE84; // type:function size:0x2A0 scope:global align:4
+mfish_koi_before_disp = .text:0x000CF124; // type:function size:0x1A4 scope:global align:4
+mfish_koi_dw = .text:0x000CF2C8; // type:function size:0x188 scope:global align:4
+mfish_kaseki_ct = .text:0x000CF450; // type:function size:0x13C scope:global align:4
+mfish_kaseki_normal_init = .text:0x000CF58C; // type:function size:0x90 scope:global align:4
+mfish_kaseki_normal = .text:0x000CF61C; // type:function size:0xA30 scope:global align:4
+mfish_kaseki_move_wall_smooth = .text:0x000D004C; // type:function size:0x138 scope:global align:4
+mfish_kaseki_mv = .text:0x000D0184; // type:function size:0x4F8 scope:global align:4
+mfish_kaseki_before_disp = .text:0x000D067C; // type:function size:0x5B8 scope:global align:4
+mfish_kaseki_dw = .text:0x000D0C34; // type:function size:0xF0 scope:global align:4
+mfish_bass_tail_anim_set = .text:0x000D0D24; // type:function size:0x4C scope:global align:4
+mfish_bass_base_FishMove = .text:0x000D0D70; // type:function size:0x348 scope:global align:4
+mfish_bass_dummy_process_init = .text:0x000D10B8; // type:function size:0x108 scope:global align:4
+mfish_bass_dummy_process = .text:0x000D11C0; // type:function size:0x344 scope:global align:4
+mfish_bass_normal_process_init = .text:0x000D1504; // type:function size:0x3E0 scope:global align:4
+mfish_bass_normal_process = .text:0x000D18E4; // type:function size:0x8BC scope:global align:4
+mfish_bass_turn_process_init = .text:0x000D21A0; // type:function size:0x2A4 scope:global align:4
+mfish_bass_turn_process = .text:0x000D2444; // type:function size:0x518 scope:global align:4
+mfish_bass_ct = .text:0x000D295C; // type:function size:0x98 scope:global align:4
+mfish_bass_mv = .text:0x000D29F4; // type:function size:0x594 scope:global align:4
+mfish_bass_dw = .text:0x000D2F88; // type:function size:0x188 scope:global align:4
+mfish_seafish_ct = .text:0x000D3110; // type:function size:0x14C scope:global align:4
+mfish_seafish_normal_init = .text:0x000D325C; // type:function size:0xB4 scope:global align:4
+mfish_seafish_normal = .text:0x000D3310; // type:function size:0x8D8 scope:global align:4
+mfish_seafish_turn_init = .text:0x000D3BE8; // type:function size:0xCC scope:global align:4
+mfish_seafish_turn = .text:0x000D3CB4; // type:function size:0x2DC scope:global align:4
+mfish_seafish_mv = .text:0x000D3F90; // type:function size:0x3A4 scope:global align:4
+mfish_seafish_before_disp = .text:0x000D4334; // type:function size:0x2A4 scope:global align:4
+mfish_seafish_dw = .text:0x000D45D8; // type:function size:0xF0 scope:global align:4
+mfish_tai_ct = .text:0x000D46C8; // type:function size:0x13C scope:global align:4
+mfish_tai_normal_init = .text:0x000D4804; // type:function size:0xAC scope:global align:4
+mfish_tai_normal = .text:0x000D48B0; // type:function size:0xA38 scope:global align:4
+mfish_tai_turn_init = .text:0x000D52E8; // type:function size:0xB4 scope:global align:4
+mfish_tai_turn = .text:0x000D539C; // type:function size:0x430 scope:global align:4
+mfish_tai_mv = .text:0x000D57CC; // type:function size:0x750 scope:global align:4
+mfish_tai_before_disp = .text:0x000D5F1C; // type:function size:0x11C scope:global align:4
+mfish_tai_dw = .text:0x000D6038; // type:function size:0xF0 scope:global align:4
+mfish_small_fish_ct = .text:0x000D6128; // type:function size:0x180 scope:global align:4
+mfish_sfish_normal_init = .text:0x000D62A8; // type:function size:0x7C scope:global align:4
+mfish_sfish_normal = .text:0x000D6324; // type:function size:0x6C0 scope:global align:4
+mfish_sfish_turn_init = .text:0x000D69E4; // type:function size:0xC8 scope:global align:4
+mfish_sfish_turn = .text:0x000D6AAC; // type:function size:0x374 scope:global align:4
+mfish_small_fish_mv = .text:0x000D6E20; // type:function size:0x5AC scope:global align:4
+mfish_sfish_before_disp = .text:0x000D73CC; // type:function size:0x124 scope:global align:4
+mfish_small_fish_dw = .text:0x000D74F0; // type:function size:0x160 scope:global align:4
+mfish_gupi_ct = .text:0x000D7650; // type:function size:0x180 scope:global align:4
+mfish_gupi_normal_init = .text:0x000D77D0; // type:function size:0x4C scope:global align:4
+mfish_gupi_normal = .text:0x000D781C; // type:function size:0x6A4 scope:global align:4
+mfish_gupi_turn_init = .text:0x000D7EC0; // type:function size:0x48 scope:global align:4
+mfish_gupi_turn = .text:0x000D7F08; // type:function size:0x374 scope:global align:4
+mfish_gupi_mv = .text:0x000D827C; // type:function size:0x7B4 scope:global align:4
+mfish_gupi_before_disp = .text:0x000D8A30; // type:function size:0x31C scope:global align:4
+mfish_gupi_dw = .text:0x000D8D4C; // type:function size:0x160 scope:global align:4
+mfish_medaka_ct = .text:0x000D8EAC; // type:function size:0x180 scope:global align:4
+mfish_medaka_normal_init = .text:0x000D902C; // type:function size:0x7C scope:global align:4
+mfish_medaka_normal = .text:0x000D90A8; // type:function size:0x66C scope:global align:4
+mfish_medaka_turn_init = .text:0x000D9714; // type:function size:0x48 scope:global align:4
+mfish_medaka_turn = .text:0x000D975C; // type:function size:0x374 scope:global align:4
+mfish_medaka_mv = .text:0x000D9AD0; // type:function size:0x4A8 scope:global align:4
+mfish_medaka_before_disp = .text:0x000D9F78; // type:function size:0x124 scope:global align:4
+mfish_medaka_dw = .text:0x000DA09C; // type:function size:0x19C scope:global align:4
+mfish_kingyo_ct = .text:0x000DA238; // type:function size:0x1A8 scope:global align:4
+mfish_kingyo_normal_init = .text:0x000DA3E0; // type:function size:0x4C scope:global align:4
+mfish_kingyo_normal = .text:0x000DA42C; // type:function size:0x698 scope:global align:4
+mfish_kingyo_turn_init = .text:0x000DAAC4; // type:function size:0x48 scope:global align:4
+mfish_kingyo_turn = .text:0x000DAB0C; // type:function size:0x33C scope:global align:4
+mfish_kingyo_peck_init = .text:0x000DAE48; // type:function size:0x8C scope:global align:4
+mfish_kingyo_peck = .text:0x000DAED4; // type:function size:0x5DC scope:global align:4
+mfish_kingyo_mv = .text:0x000DB4B0; // type:function size:0x7CC scope:global align:4
+mfish_kingyo_before_disp = .text:0x000DBC7C; // type:function size:0x3A0 scope:global align:4
+mfish_kingyo_dw = .text:0x000DC01C; // type:function size:0x19C scope:global align:4
+mfish_dojou_ct = .text:0x000DC1B8; // type:function size:0x194 scope:global align:4
+mfish_dojou_normal_init = .text:0x000DC34C; // type:function size:0x4C scope:global align:4
+mfish_dojou_normal = .text:0x000DC398; // type:function size:0x53C scope:global align:4
+mfish_dojou_turn_init = .text:0x000DC8D4; // type:function size:0x48 scope:global align:4
+mfish_dojou_turn = .text:0x000DC91C; // type:function size:0x3FC scope:global align:4
+mfish_dojou_mv = .text:0x000DCD18; // type:function size:0x7E0 scope:global align:4
+mfish_dojou_before_disp = .text:0x000DD4F8; // type:function size:0x1D0 scope:global align:4
+mfish_dojou_dw = .text:0x000DD6C8; // type:function size:0x198 scope:global align:4
+mfish_donko_ct = .text:0x000DD860; // type:function size:0x1B4 scope:global align:4
+mfish_donko_mv = .text:0x000DDA14; // type:function size:0x78C scope:global align:4
+mfish_donko_before_disp = .text:0x000DE1A0; // type:function size:0xE8 scope:global align:4
+mfish_donko_dw = .text:0x000DE288; // type:function size:0x124 scope:global align:4
+mfish_big_fish_ct = .text:0x000DE3AC; // type:function size:0x19C scope:global align:4
+mfish_big_fish_mv = .text:0x000DE548; // type:function size:0x1278 scope:global align:4
+mfish_bfish_before_disp = .text:0x000DF7C0; // type:function size:0x554 scope:global align:4
+mfish_big_fish_dw = .text:0x000DFD14; // type:function size:0xF0 scope:global align:4
+mfish_ito_ct = .text:0x000DFE04; // type:function size:0x124 scope:global align:4
+mfish_ito_mv = .text:0x000DFF28; // type:function size:0x9EC scope:global align:4
+mfish_ito_before_disp = .text:0x000E0914; // type:function size:0x3E8 scope:global align:4
+mfish_ito_dw = .text:0x000E0CFC; // type:function size:0xF8 scope:global align:4
+mfish_unagi_ct = .text:0x000E0DF4; // type:function size:0x178 scope:global align:4
+mfish_unagi_get_next_rail_type = .text:0x000E0F6C; // type:function size:0x64 scope:global align:4
+mfish_unagi_aim_wind_angle_calc = .text:0x000E0FD0; // type:function size:0x374 scope:global align:4
+mfish_unagi_rail_move_init = .text:0x000E1344; // type:function size:0x1B4 scope:global align:4
+mfish_unagi_rail_move = .text:0x000E14F8; // type:function size:0x3E8 scope:global align:4
+mfish_unagi_normal_to_reverse_init = .text:0x000E18E0; // type:function size:0x1A8 scope:global align:4
+mfish_unagi_normal_to_reverse = .text:0x000E1A88; // type:function size:0x398 scope:global align:4
+mfish_unagi_rail_move_reverse_init = .text:0x000E1E20; // type:function size:0x1CC scope:global align:4
+mfish_unagi_rail_move_reverse = .text:0x000E1FEC; // type:function size:0x3F0 scope:global align:4
+mfish_unagi_reverse_to_normal_init = .text:0x000E23DC; // type:function size:0x1AC scope:global align:4
+mfish_unagi_reverse_to_normal = .text:0x000E2588; // type:function size:0x3A4 scope:global align:4
+mfish_unagi_mv = .text:0x000E292C; // type:function size:0x9AC scope:global align:4
+mfish_unagi_before_disp = .text:0x000E32D8; // type:function size:0x60C scope:global align:4
+mfish_unagi_dw = .text:0x000E38E4; // type:function size:0x100 scope:global align:4
+mfish_namazu_ct = .text:0x000E39E4; // type:function size:0x104 scope:global align:4
+mfish_namazu_body_wind_anime_play = .text:0x000E3AE8; // type:function size:0xA8 scope:global align:4
+mfish_namazu_normal_process_init = .text:0x000E3B90; // type:function size:0x208 scope:global align:4
+mfish_namazu_normal_process = .text:0x000E3D98; // type:function size:0x50C scope:global align:4
+mfish_namazu_dummy_process_init = .text:0x000E42A4; // type:function size:0xC8 scope:global align:4
+mfish_namazu_dummy_process = .text:0x000E436C; // type:function size:0x358 scope:global align:4
+mfish_namazu_turn_process_init = .text:0x000E46C4; // type:function size:0x198 scope:global align:4
+mfish_namazu_turn_process = .text:0x000E485C; // type:function size:0x3A8 scope:global align:4
+mfish_namazu_ground_sweep_process_init = .text:0x000E4C04; // type:function size:0x118 scope:global align:4
+mfish_namazu_ground_sweep_process = .text:0x000E4D1C; // type:function size:0x504 scope:global align:4
+mfish_namazu_base_FishMove = .text:0x000E5220; // type:function size:0x1E4 scope:global align:4
+mfish_namazu_mv = .text:0x000E5404; // type:function size:0x5BC scope:global align:4
+mfish_namazu_before_disp = .text:0x000E59C0; // type:function size:0x328 scope:global align:4
+mfish_namazu_dw = .text:0x000E5CE8; // type:function size:0xF0 scope:global align:4
+mfish_zarigani_ct = .text:0x000E5DD8; // type:function size:0x158 scope:global align:4
+mfish_zarigani_normal_process_init = .text:0x000E5F30; // type:function size:0x10 scope:global align:4
+mfish_zarigani_normal_process = .text:0x000E5F40; // type:function size:0x654 scope:global align:4
+mfish_zarigani_wait_process_init = .text:0x000E6594; // type:function size:0x10 scope:global align:4
+mfish_zarigani_wait_process = .text:0x000E65A4; // type:function size:0x210 scope:global align:4
+mfish_zarigani_stand_process_init = .text:0x000E67B4; // type:function size:0xBC scope:global align:4
+mfish_zarigani_stand_process = .text:0x000E6870; // type:function size:0x434 scope:global align:4
+mfish_zarigani_jump_process_init = .text:0x000E6CA4; // type:function size:0xBC scope:global align:4
+mfish_zarigani_jump_process = .text:0x000E6D60; // type:function size:0x3F8 scope:global align:4
+mfish_zarigani_mv = .text:0x000E7158; // type:function size:0x1C0 scope:global align:4
+mfish_zarigani_before_disp = .text:0x000E7318; // type:function size:0x354 scope:global align:4
+mfish_zarigani_dw = .text:0x000E766C; // type:function size:0x11C scope:global align:4
+mfish_kurage_ct = .text:0x000E7788; // type:function size:0x184 scope:global align:4
+mfish_kurage_normal_init = .text:0x000E790C; // type:function size:0x98 scope:global align:4
+mfish_kurage_normal = .text:0x000E79A4; // type:function size:0x30C scope:global align:4
+mfish_kurage_turn_init = .text:0x000E7CB0; // type:function size:0xC4 scope:global align:4
+mfish_kurage_turn = .text:0x000E7D74; // type:function size:0xC0 scope:global align:4
+mfish_kurage_mv = .text:0x000E7E34; // type:function size:0xDC8 scope:global align:4
+mfish_kurage_dw = .text:0x000E8BFC; // type:function size:0x3A0 scope:global align:4
+mfish_hasu_ct = .text:0x000E8F9C; // type:function size:0x68 scope:global align:4
+mfish_hasu_mv = .text:0x000E9004; // type:function size:0x20 scope:global align:4
+mfish_hasu_dw = .text:0x000E9024; // type:function size:0x130 scope:global align:4
+mfish_kaeru_ct = .text:0x000E9154; // type:function size:0x19C scope:global align:4
+mfish_kaeru_mv = .text:0x000E92F0; // type:function size:0x95C scope:global align:4
+hasu_before_disp = .text:0x000E9C4C; // type:function size:0xAC scope:global align:4
+hasu_after_disp = .text:0x000E9CF8; // type:function size:0x70 scope:global align:4
+mfish_kaeru_dw = .text:0x000E9D68; // type:function size:0x1F0 scope:global align:4
+aMI_AlphaToON = .text:0x000E9F58; // type:function size:0x48 scope:global align:4
+aMI_AlphaToOFF = .text:0x000E9FA0; // type:function size:0x48 scope:global align:4
+aMI_GetThisSceneCullIndex = .text:0x000E9FE8; // type:function size:0x44 scope:global align:4
+Museum_Indoor_Actor_ct = .text:0x000EA02C; // type:function size:0x3C scope:global align:4
+Museum_Indoor_Actor_dt = .text:0x000EA068; // type:function size:0x4 scope:global align:4
+Museum_Indoor_Actor_draw = .text:0x000EA06C; // type:function size:0x12C scope:global align:4
+aMI_SetAlpha = .text:0x000EA198; // type:function size:0xC0 scope:global align:4
+Museum_Indoor_Actor_move = .text:0x000EA258; // type:function size:0x20 scope:global align:4
+Museum_Insect_GetMsgNo = .text:0x000EA278; // type:function size:0x10C scope:global align:4
+Museum_Insect_Check_Talk_Distance = .text:0x000EA384; // type:function size:0xD8 scope:global align:4
+Museum_Insect_Set_MsgInsectInfo = .text:0x000EA45C; // type:function size:0xB4 scope:global align:4
+Museum_Insect_set_talk_info = .text:0x000EA510; // type:function size:0x88 scope:global align:4
+Museum_Insect_Talk_process = .text:0x000EA598; // type:function size:0x180 scope:global align:4
+Museum_Insect_Actor_ct = .text:0x000EA718; // type:function size:0xDC scope:global align:4
+Museum_Insect_Actor_dt = .text:0x000EA7F4; // type:function size:0x4 scope:global align:4
+Museum_Insect_Actor_move = .text:0x000EA7F8; // type:function size:0x90 scope:global align:4
+Museum_Insect_Actor_draw = .text:0x000EA888; // type:function size:0x19C scope:global align:4
+mID_insect_moveF = .text:0x000EAA24; // type:function size:0x60 scope:global align:4
+minsect_amenbo_ct = .text:0x000EAA84; // type:function size:0xD0 scope:global align:4
+minsect_amenbo_mv = .text:0x000EAB54; // type:function size:0x3B4 scope:global align:4
+minsect_amenbo_dw = .text:0x000EAF08; // type:function size:0xF8 scope:global align:4
+ari_alone_ct = .text:0x000EB000; // type:function size:0xFC scope:global align:4
+ari_alone_make = .text:0x000EB0FC; // type:function size:0x40 scope:global align:4
+ari_alone_dt = .text:0x000EB13C; // type:function size:0x10 scope:global align:4
+ari_alone_move = .text:0x000EB14C; // type:function size:0x3AC scope:global align:4
+ari_alone_draw = .text:0x000EB4F8; // type:function size:0xC8 scope:global align:4
+minsect_ari_ct = .text:0x000EB5C0; // type:function size:0x88 scope:global align:4
+minsect_ari_mv = .text:0x000EB648; // type:function size:0xBC scope:global align:4
+minsect_ari_dw = .text:0x000EB704; // type:function size:0x6C scope:global align:4
+minsect_draw_shadow = .text:0x000EB770; // type:function size:0x268 scope:global align:4
+minsect_fly_BGCheck = .text:0x000EB9D8; // type:function size:0x90 scope:global align:4
+minsect_garden_BGCheck = .text:0x000EBA68; // type:function size:0xC8 scope:global align:4
+minsect_flower_BGCheck = .text:0x000EBB30; // type:function size:0x16C scope:global align:4
+minsect_goki_BGCheck = .text:0x000EBC9C; // type:function size:0x238 scope:global align:4
+minsect_kanban_BGCheck = .text:0x000EBED4; // type:function size:0xC0 scope:global align:4
+minsect_tree_ObjCheck = .text:0x000EBF94; // type:function size:0x180 scope:global align:4
+minsect_rock_ObjCheck = .text:0x000EC114; // type:function size:0x180 scope:global align:4
+minsect_batta_ObjCheck = .text:0x000EC294; // type:function size:0x224 scope:global align:4
+get_now_mind_flag = .text:0x000EC4B8; // type:function size:0x8C scope:global align:4
+set_relax_active_time = .text:0x000EC544; // type:function size:0x188 scope:global align:4
+minsect_chou_ct = .text:0x000EC6CC; // type:function size:0x268 scope:global align:4
+minsect_chou_normal_process_init = .text:0x000EC934; // type:function size:0x10 scope:global align:4
+minsect_chou_normal_process = .text:0x000EC944; // type:function size:0x244 scope:global align:4
+minsect_chou_aim_flower_process_init = .text:0x000ECB88; // type:function size:0x118 scope:global align:4
+minsect_chou_aim_flower_process = .text:0x000ECCA0; // type:function size:0x3B4 scope:global align:4
+minsect_chou_flower_process_init = .text:0x000ED054; // type:function size:0x64 scope:global align:4
+minsect_chou_flower_process = .text:0x000ED0B8; // type:function size:0x69C scope:global align:4
+minsect_chou_fly_process_init = .text:0x000ED754; // type:function size:0xE0 scope:global align:4
+minsect_chou_fly_process = .text:0x000ED834; // type:function size:0x2A8 scope:global align:4
+minsect_chou_mv = .text:0x000EDADC; // type:function size:0x1F8 scope:global align:4
+minsect_chou_dw = .text:0x000EDCD4; // type:function size:0x1AC scope:global align:4
+minsect_semi_ct = .text:0x000EDE80; // type:function size:0xB4 scope:global align:4
+mi_semi_hane_anime = .text:0x000EDF34; // type:function size:0xE4 scope:global align:4
+mi_semi_check_player = .text:0x000EE018; // type:function size:0xD0 scope:global align:4
+minsect_semi_mv = .text:0x000EE0E8; // type:function size:0x2C4 scope:global align:4
+minsect_semi_dw = .text:0x000EE3AC; // type:function size:0x218 scope:global align:4
+minsect_tonbo_ct = .text:0x000EE5C4; // type:function size:0x1DC scope:global align:4
+mi_tonbo_check_player = .text:0x000EE7A0; // type:function size:0xD0 scope:global align:4
+minsect_tonbo_bg_check = .text:0x000EE870; // type:function size:0x270 scope:global align:4
+minsect_tonbo_near_target_set = .text:0x000EEAE0; // type:function size:0xD4 scope:global align:4
+minsect_tonbo_rock_target_set = .text:0x000EEBB4; // type:function size:0x254 scope:global align:4
+minsect_tonbo_suprised_rest_player = .text:0x000EEE08; // type:function size:0x40 scope:global align:4
+minsect_tonbo_acc_change = .text:0x000EEE48; // type:function size:0xCC scope:global align:4
+minsect_tonbo_max_speed_set = .text:0x000EEF14; // type:function size:0xEC scope:global align:4
+minsect_tonbo_aim_distance_set = .text:0x000EF000; // type:function size:0x154 scope:global align:4
+minsect_tonbo_aim_angle_check = .text:0x000EF154; // type:function size:0x1C0 scope:global align:4
+minsect_tonbo_normal_process_init = .text:0x000EF314; // type:function size:0x84 scope:global align:4
+minsect_tonbo_normal_process = .text:0x000EF398; // type:function size:0x5A4 scope:global align:4
+minsect_tonbo_aim_rock_process_init = .text:0x000EF93C; // type:function size:0x124 scope:global align:4
+minsect_tonbo_aim_rock_process = .text:0x000EFA60; // type:function size:0x5C0 scope:global align:4
+minsect_tonbo_rock_process_init = .text:0x000F0020; // type:function size:0x70 scope:global align:4
+minsect_tonbo_rock_process = .text:0x000F0090; // type:function size:0x5B0 scope:global align:4
+minsect_tonbo_rock_wait_process_init = .text:0x000F0640; // type:function size:0x64 scope:global align:4
+minsect_tonbo_rock_wait_process = .text:0x000F06A4; // type:function size:0x244 scope:global align:4
+minsect_tonbo_fly_process_init = .text:0x000F08E8; // type:function size:0x188 scope:global align:4
+minsect_tonbo_fly_process = .text:0x000F0A70; // type:function size:0x1FC scope:global align:4
+minsect_tonbo_mv = .text:0x000F0C6C; // type:function size:0x164 scope:global align:4
+minsect_tonbo_dw = .text:0x000F0DD0; // type:function size:0x330 scope:global align:4
+minsect_tonbo_MoveF = .text:0x000F1100; // type:function size:0xE4 scope:global align:4
+mi_batta_check_player = .text:0x000F11E4; // type:function size:0xD0 scope:global align:4
+mi_batta_suzumushi_hane_anime = .text:0x000F12B4; // type:function size:0xE4 scope:global align:4
+mi_batta_hane_anime = .text:0x000F1398; // type:function size:0xE4 scope:global align:4
+minsect_batta_ct = .text:0x000F147C; // type:function size:0x11C scope:global align:4
+minsect_batta_normal_process_init = .text:0x000F1598; // type:function size:0x1C0 scope:global align:4
+minsect_batta_normal_process = .text:0x000F1758; // type:function size:0x270 scope:global align:4
+minsect_batta_silent_process_init = .text:0x000F19C8; // type:function size:0x98 scope:global align:4
+minsect_batta_silent_process = .text:0x000F1A60; // type:function size:0x78 scope:global align:4
+minsect_batta_jump_wait_process_init = .text:0x000F1AD8; // type:function size:0x80 scope:global align:4
+minsect_batta_jump_wait_process = .text:0x000F1B58; // type:function size:0x34 scope:global align:4
+minsect_batta_jump_process_init = .text:0x000F1B8C; // type:function size:0x94 scope:global align:4
+minsect_batta_jump_process = .text:0x000F1C20; // type:function size:0x9C scope:global align:4
+minsect_batta_mv = .text:0x000F1CBC; // type:function size:0x3A8 scope:global align:4
+minsect_batta_dw = .text:0x000F2064; // type:function size:0x194 scope:global align:4
+mi_tentou_check_player = .text:0x000F21F8; // type:function size:0xD0 scope:global align:4
+mi_tentou_kama_anime = .text:0x000F22C8; // type:function size:0x10C scope:global align:4
+mi_tentou_wait_init = .text:0x000F23D4; // type:function size:0x10C scope:global align:4
+mi_tentou_wait = .text:0x000F24E0; // type:function size:0x430 scope:global align:4
+mi_tentou_move_init = .text:0x000F2910; // type:function size:0x88 scope:global align:4
+mi_tentou_move = .text:0x000F2998; // type:function size:0x6DC scope:global align:4
+mi_tentou_menace_init = .text:0x000F3074; // type:function size:0x120 scope:global align:4
+mi_tentou_menace = .text:0x000F3194; // type:function size:0x850 scope:global align:4
+mi_tentou_setupAction = .text:0x000F39E4; // type:function size:0x48 scope:global align:4
+minsect_tentou_ct = .text:0x000F3A2C; // type:function size:0x240 scope:global align:4
+minsect_tentou_mv = .text:0x000F3C6C; // type:function size:0xA8 scope:global align:4
+minsect_tentou_dw = .text:0x000F3D14; // type:function size:0x134 scope:global align:4
+mi_hachi_hane_anime = .text:0x000F3E48; // type:function size:0x10C scope:global align:4
+mi_hachi_mitu_init = .text:0x000F3F54; // type:function size:0x10 scope:global align:4
+mi_hachi_mitu = .text:0x000F3F64; // type:function size:0x22C scope:global align:4
+mi_hachi_wait_init = .text:0x000F4190; // type:function size:0x64 scope:global align:4
+mi_hachi_wait = .text:0x000F41F4; // type:function size:0x2AC scope:global align:4
+mi_hachi_move_init = .text:0x000F44A0; // type:function size:0x4C scope:global align:4
+mi_hachi_move = .text:0x000F44EC; // type:function size:0x3A0 scope:global align:4
+mi_hachi_setupAction = .text:0x000F488C; // type:function size:0x48 scope:global align:4
+minsect_hachi_ct = .text:0x000F48D4; // type:function size:0xD8 scope:global align:4
+minsect_hachi_mv = .text:0x000F49AC; // type:function size:0x578 scope:global align:4
+minsect_hachi_dw = .text:0x000F4F24; // type:function size:0x320 scope:global align:4
+minsect_kabuto_ct = .text:0x000F5244; // type:function size:0x154 scope:global align:4
+minsect_kabuto_mv = .text:0x000F5398; // type:function size:0x76C scope:global align:4
+minsect_kabuto_dw = .text:0x000F5B04; // type:function size:0x18C scope:global align:4
+mi_kuwagata_rensa_init = .text:0x000F5C90; // type:function size:0xC scope:global align:4
+mi_kuwagata_rensa = .text:0x000F5C9C; // type:function size:0x120 scope:global align:4
+mi_kuwagata_wait_init = .text:0x000F5DBC; // type:function size:0x70 scope:global align:4
+mi_kuwagata_wait = .text:0x000F5E2C; // type:function size:0x2D8 scope:global align:4
+mi_kuwagata_move_init = .text:0x000F6104; // type:function size:0x4 scope:global align:4
+mi_kuwagata_move = .text:0x000F6108; // type:function size:0x4 scope:global align:4
+mi_kuwagata_battle_init = .text:0x000F610C; // type:function size:0x84 scope:global align:4
+mi_kuwagata_battle = .text:0x000F6190; // type:function size:0x5A8 scope:global align:4
+mi_kuwagata_menace_init = .text:0x000F6738; // type:function size:0xDC scope:global align:4
+mi_kuwagata_menace = .text:0x000F6814; // type:function size:0x4FC scope:global align:4
+mi_kuwagata_attack_init = .text:0x000F6D10; // type:function size:0x4 scope:global align:4
+mi_kuwagata_attack = .text:0x000F6D14; // type:function size:0x4 scope:global align:4
+mi_kuwagata_setupAction = .text:0x000F6D18; // type:function size:0x48 scope:global align:4
+minsect_kuwagata_ct = .text:0x000F6D60; // type:function size:0x320 scope:global align:4
+minsect_kuwagata_mv = .text:0x000F7080; // type:function size:0x28 scope:global align:4
+minsect_kuwagata_dw = .text:0x000F70A8; // type:function size:0x178 scope:global align:4
+minsect_mino_up_init = .text:0x000F7220; // type:function size:0x6C scope:global align:4
+minsect_mino_up = .text:0x000F728C; // type:function size:0x128 scope:global align:4
+minsect_mino_down_init = .text:0x000F73B4; // type:function size:0xC4 scope:global align:4
+minsect_mino_down = .text:0x000F7478; // type:function size:0x420 scope:global align:4
+minsect_mino_move_init = .text:0x000F7898; // type:function size:0x4 scope:global align:4
+minsect_mino_move = .text:0x000F789C; // type:function size:0x354 scope:global align:4
+minsect_mino_check_dush_player = .text:0x000F7BF0; // type:function size:0xB4 scope:global align:4
+minsect_mino_furiko = .text:0x000F7CA4; // type:function size:0x424 scope:global align:4
+minsect_mino_wait_init = .text:0x000F80C8; // type:function size:0x4C scope:global align:4
+minsect_mino_wait = .text:0x000F8114; // type:function size:0x100 scope:global align:4
+minsect_mino_hineri = .text:0x000F8214; // type:function size:0x260 scope:global align:4
+minsect_mino_setupAction = .text:0x000F8474; // type:function size:0x48 scope:global align:4
+minsect_mino_ct = .text:0x000F84BC; // type:function size:0x11C scope:global align:4
+minsect_mino_mv = .text:0x000F85D8; // type:function size:0x234 scope:global align:4
+minsect_mino_dw = .text:0x000F880C; // type:function size:0x4E8 scope:global align:4
+minsect_kumo_hide_init = .text:0x000F8CF4; // type:function size:0x10 scope:global align:4
+minsect_kumo_hide = .text:0x000F8D04; // type:function size:0x3C scope:global align:4
+minsect_kumo_up_init = .text:0x000F8D40; // type:function size:0x6C scope:global align:4
+minsect_kumo_up = .text:0x000F8DAC; // type:function size:0xC0 scope:global align:4
+minsect_kumo_down_init = .text:0x000F8E6C; // type:function size:0xD0 scope:global align:4
+minsect_kumo_down = .text:0x000F8F3C; // type:function size:0x390 scope:global align:4
+minsect_kumo_move_init = .text:0x000F92CC; // type:function size:0x4 scope:global align:4
+minsect_kumo_move = .text:0x000F92D0; // type:function size:0x354 scope:global align:4
+minsect_kumo_check_player = .text:0x000F9624; // type:function size:0xA4 scope:global align:4
+minsect_kumo_furiko = .text:0x000F96C8; // type:function size:0x424 scope:global align:4
+minsect_kumo_wait_init = .text:0x000F9AEC; // type:function size:0x4C scope:global align:4
+minsect_kumo_wait = .text:0x000F9B38; // type:function size:0x100 scope:global align:4
+minsect_kumo_hineri = .text:0x000F9C38; // type:function size:0xD0 scope:global align:4
+minsect_kumo_setupAction = .text:0x000F9D08; // type:function size:0x48 scope:global align:4
+minsect_kumo_ct = .text:0x000F9D50; // type:function size:0x11C scope:global align:4
+minsect_kumo_mv = .text:0x000F9E6C; // type:function size:0x224 scope:global align:4
+minsect_kumo_dw = .text:0x000FA090; // type:function size:0x56C scope:global align:4
+minsect_goki_ct = .text:0x000FA5FC; // type:function size:0x120 scope:global align:4
+goki_player_check = .text:0x000FA71C; // type:function size:0xCC scope:global align:4
+goki_wall_hit_angle_corect_sub = .text:0x000FA7E8; // type:function size:0x17C scope:global align:4
+goki_wall_hit_angle_corect = .text:0x000FA964; // type:function size:0x6C scope:global align:4
+goki_set_talk_info_init = .text:0x000FA9D0; // type:function size:0xB0 scope:global align:4
+goki_talk_process = .text:0x000FAA80; // type:function size:0x70 scope:global align:4
+goki_talk_process_init = .text:0x000FAAF0; // type:function size:0x50 scope:global align:4
+minsect_goki_mv = .text:0x000FAB40; // type:function size:0x4E8 scope:global align:4
+minsect_goki_dw = .text:0x000FB028; // type:function size:0x160 scope:global align:4
+mi_genji_check_player = .text:0x000FB188; // type:function size:0x13C scope:global align:4
+genji_light_ct = .text:0x000FB2C4; // type:function size:0x150 scope:global align:4
+genji_light_make = .text:0x000FB414; // type:function size:0x188 scope:global align:4
+genji_light_anime = .text:0x000FB59C; // type:function size:0x364 scope:global align:4
+genji_light_move = .text:0x000FB900; // type:function size:0x4D8 scope:global align:4
+genji_light_draw = .text:0x000FBDD8; // type:function size:0x234 scope:global align:4
+minsect_genji_ct = .text:0x000FC00C; // type:function size:0x7C scope:global align:4
+minsect_genji_mv = .text:0x000FC088; // type:function size:0x5D8 scope:global align:4
+minsect_genji_dw = .text:0x000FC660; // type:function size:0x1BC scope:global align:4
+mi_dango_defence_anime = .text:0x000FC81C; // type:function size:0x94 scope:global align:4
+mi_dango_check_player = .text:0x000FC8B0; // type:function size:0xD0 scope:global align:4
+mi_dango_move_init = .text:0x000FC980; // type:function size:0x4C scope:global align:4
+mi_dango_move = .text:0x000FC9CC; // type:function size:0x378 scope:global align:4
+mi_dango_defence_init = .text:0x000FCD44; // type:function size:0x68 scope:global align:4
+mi_dango_defence = .text:0x000FCDAC; // type:function size:0xB0 scope:global align:4
+mi_dango_setupAction = .text:0x000FCE5C; // type:function size:0x48 scope:global align:4
+minsect_dango_ct = .text:0x000FCEA4; // type:function size:0x1C4 scope:global align:4
+minsect_dango_mv = .text:0x000FD068; // type:function size:0x100 scope:global align:4
+minsect_dango_dw = .text:0x000FD168; // type:function size:0x2B0 scope:global align:4
+mi_okera_check_player = .text:0x000FD418; // type:function size:0xD0 scope:global align:4
+minsect_okera_ct = .text:0x000FD4E8; // type:function size:0x20 scope:global align:4
+okera_dig_up_process_init = .text:0x000FD508; // type:function size:0x1A4 scope:global align:4
+okera_dig_up_process = .text:0x000FD6AC; // type:function size:0x84 scope:global align:4
+okera_normal_process_init = .text:0x000FD730; // type:function size:0x94 scope:global align:4
+okera_normal_process = .text:0x000FD7C4; // type:function size:0x558 scope:global align:4
+okera_dig_down_process_init = .text:0x000FDD1C; // type:function size:0x20 scope:global align:4
+okera_dig_down_process = .text:0x000FDD3C; // type:function size:0x240 scope:global align:4
+okera_dig_wait_process_init = .text:0x000FDF7C; // type:function size:0x74 scope:global align:4
+okera_dig_wait_process = .text:0x000FDFF0; // type:function size:0xDC scope:global align:4
+minsect_okera_mv = .text:0x000FE0CC; // type:function size:0x140 scope:global align:4
+minsect_okera_dw = .text:0x000FE20C; // type:function size:0x1C8 scope:global align:4
+minsect_ka_ct = .text:0x000FE3D4; // type:function size:0x154 scope:global align:4
+minsect_ka_mv = .text:0x000FE528; // type:function size:0x518 scope:global align:4
+minsect_ka_dw = .text:0x000FEA40; // type:function size:0x150 scope:global align:4
+aMI_GetPlayerRoomIdx = .text:0x000FEB90; // type:function size:0x40 scope:global align:4
+aMI_SucureBank = .text:0x000FEBD0; // type:function size:0x24 scope:global align:4
+aMI_GetMyIndoorBank = .text:0x000FEBF4; // type:function size:0x8C scope:global align:4
+aMI_CopyFloorTexture = .text:0x000FEC80; // type:function size:0x104 scope:global align:4
+aMI_CopyWallTexture = .text:0x000FED84; // type:function size:0x100 scope:global align:4
+aNI_SetFloorSE = .text:0x000FEE84; // type:function size:0x50 scope:global align:4
+aMI_MyIndoorDma = .text:0x000FEED4; // type:function size:0x8C scope:global align:4
+aMI_SetClipProc = .text:0x000FEF60; // type:function size:0x84 scope:global align:4
+aMR_GetSceneRoomKind = .text:0x000FEFE4; // type:function size:0x44 scope:global align:4
+aMI_CheckFloorWallIndex = .text:0x000FF028; // type:function size:0x5C scope:global align:4
+aMI_MakeStepData = .text:0x000FF084; // type:function size:0xB4 scope:global align:4
+aMI_InitActorMember = .text:0x000FF138; // type:function size:0x108 scope:global align:4
+My_Indoor_Actor_ct = .text:0x000FF240; // type:function size:0x5C scope:global align:4
+My_Indoor_Actor_dt = .text:0x000FF29C; // type:function size:0x74 scope:global align:4
+aMI_DrawMyStep = .text:0x000FF310; // type:function size:0x128 scope:global align:4
+aMI_DrawMyFloor = .text:0x000FF438; // type:function size:0x16C scope:global align:4
+aMI_DrawMyOriginalFloor = .text:0x000FF5A4; // type:function size:0x19C scope:global align:4
+aMI_DrawMyWall = .text:0x000FF740; // type:function size:0x138 scope:global align:4
+aMI_DrawMyOriginalWall = .text:0x000FF878; // type:function size:0x164 scope:global align:4
+My_Indoor_Actor_draw = .text:0x000FF9DC; // type:function size:0x80 scope:global align:4
+aMI_Change2ReservedWall = .text:0x000FFA5C; // type:function size:0xFC scope:global align:4
+aMI_Change2ReservedFloor = .text:0x000FFB58; // type:function size:0x100 scope:global align:4
+My_Indoor_Actor_move = .text:0x000FFC58; // type:function size:0x44 scope:global align:4
+aMI_ChangeCarpet = .text:0x000FFC9C; // type:function size:0xAC scope:global align:4
+aMI_FloorIdx2ChangeFloor = .text:0x000FFD48; // type:function size:0xAC scope:global align:4
+aMI_ChangeWall = .text:0x000FFDF4; // type:function size:0xAC scope:global align:4
+aMI_WallIdx2ChangeWall = .text:0x000FFEA0; // type:function size:0xAC scope:global align:4
+aMI_Change2Default = .text:0x000FFF4C; // type:function size:0x2C scope:global align:4
+aMI_IndoorDmaAgain = .text:0x000FFF78; // type:function size:0x68 scope:global align:4
+aMR_GetFurnitureProfile = .text:0x000FFFE0; // type:function size:0x3C scope:global align:4
+aMR_GetItemCountInFurniture = .text:0x0010001C; // type:function size:0x34 scope:global align:4
+aMR_TidyItemInFurniture = .text:0x00100050; // type:function size:0x68 scope:global align:4
+aMR_ItemPutInFurniture = .text:0x001000B8; // type:function size:0x3C scope:global align:4
+aMR_ItemNo2IconNo = .text:0x001000F4; // type:function size:0xD8 scope:global align:4
+aMR_IconNo2Gfx1 = .text:0x001001CC; // type:function size:0x30 scope:global align:4
+aMR_IconNo2Gfx2 = .text:0x001001FC; // type:function size:0x34 scope:global align:4
+aMR_GetLayerTopFg = .text:0x00100230; // type:function size:0x30 scope:global align:4
+aMR_GetBitSwitchTable = .text:0x00100260; // type:function size:0xE0 scope:global align:4
+aMR_GetHaniwaStepSaveData = .text:0x00100340; // type:function size:0xC4 scope:global align:4
+aMR_ClearBitSwitch = .text:0x00100404; // type:function size:0x14 scope:global align:4
+aMR_GetSwitchBit = .text:0x00100418; // type:function size:0x19C scope:global align:4
+aMR_GetHaniwaStep = .text:0x001005B4; // type:function size:0x13C scope:global align:4
+aMR_OperateSwitchBit = .text:0x001006F0; // type:function size:0x24 scope:global align:4
+aMR_SaveHaniwaStepData = .text:0x00100714; // type:function size:0x140 scope:global align:4
+aMR_SaveOneFtrSwitchData = .text:0x00100854; // type:function size:0xEC scope:global align:4
+aMR_SaveSwitchData = .text:0x00100940; // type:function size:0xD8 scope:global align:4
+aMR_CountFriendFurniture = .text:0x00100A18; // type:function size:0xBC scope:global align:4
+aMR_GetWeight = .text:0x00100AD4; // type:function size:0x8 scope:global align:4
+aMR_PlussWeight = .text:0x00100ADC; // type:function size:0x3C scope:global align:4
+aMR_MinusWeight = .text:0x00100B18; // type:function size:0x3C scope:global align:4
+aMR_WeightPossible = .text:0x00100B54; // type:function size:0x54 scope:global align:4
+aMR_CheckFurnitureBankExist = .text:0x00100BA8; // type:function size:0x20 scope:global align:4
+aMR_GetFtrBankID = .text:0x00100BC8; // type:function size:0x24 scope:global align:4
+aMR_BankNo2BankAddress = .text:0x00100BEC; // type:function size:0x24 scope:global align:4
+aMR_FtrNo2BankAddress = .text:0x00100C10; // type:function size:0x24 scope:global align:4
+aMR_SearchFurnitureBankVacancy = .text:0x00100C34; // type:function size:0x74 scope:global align:4
+aMR_SearchFreeFurnitureBankIdx = .text:0x00100CA8; // type:function size:0x68 scope:global align:4
+aMR_SearchFreeFurnitureActorNumber = .text:0x00100D10; // type:function size:0x40 scope:global align:4
+aMR_CountAppointFurniture = .text:0x00100D50; // type:function size:0x58 scope:global align:4
+aMR_CountFurniture = .text:0x00100DA8; // type:function size:0x4C scope:global align:4
+aMR_UnitNumber2Position = .text:0x00100DF4; // type:function size:0x9C scope:global align:4
+aMR_Wpos2PlaceNumber = .text:0x00100E90; // type:function size:0x94 scope:global align:4
+aMR_GetLayerPlaceTable = .text:0x00100F24; // type:function size:0x3C scope:global align:4
+aMR_Direct2PlussUnit = .text:0x00100F60; // type:function size:0x80 scope:global align:4
+aMR_GetTypeBPlaceInfo = .text:0x00100FE0; // type:function size:0xE4 scope:global align:4
+aMR_SetInfoFurnitureTable = .text:0x001010C4; // type:function size:0xD0 scope:global align:4
+aMR_SetFurnitureType = .text:0x00101194; // type:function size:0x70 scope:global align:4
+aMR_SetFirstScale = .text:0x00101204; // type:function size:0xA0 scope:global align:4
+aMR_DeleteFurnitureBank = .text:0x001012A4; // type:function size:0x48 scope:global align:4
+aMR_InitHaniwaOnTable = .text:0x001012EC; // type:function size:0x20 scope:global align:4
+aMR_GetHaniwaSwitchVac = .text:0x0010130C; // type:function size:0x30 scope:global align:4
+aMR_TidyHaniwaOnTable = .text:0x0010133C; // type:function size:0x68 scope:global align:4
+aMR_HaniwaOffReport = .text:0x001013A4; // type:function size:0x58 scope:global align:4
+aMR_ClearHaniwaSwitch = .text:0x001013FC; // type:function size:0x30 scope:global align:4
+aMR_HaniwaSwitchOn = .text:0x0010142C; // type:function size:0xAC scope:global align:4
+aMR_SetSwitchStepData = .text:0x001014D8; // type:function size:0x13C scope:global align:4
+aMR_SystemAnimeCt_UniqueCt = .text:0x00101614; // type:function size:0xC0 scope:global align:4
+aMR_RegistMoveBg = .text:0x001016D4; // type:function size:0xEC scope:global align:4
+aMR_MiniDiskCommonCt = .text:0x001017C0; // type:function size:0x1A0 scope:global align:4
+aMR_MiniDiskCommonDt = .text:0x00101960; // type:function size:0x88 scope:global align:4
+aMR_RadioCommonCt = .text:0x001019E8; // type:function size:0x48 scope:global align:4
+aMR_RadioCommonDt = .text:0x00101A30; // type:function size:0x6C scope:global align:4
+aMR_ChangeMDBgm = .text:0x00101A9C; // type:function size:0x128 scope:global align:4
+aMR_ReserveBgm = .text:0x00101BC4; // type:function size:0x18 scope:global align:4
+aMR_ReserveDefaultBgm = .text:0x00101BDC; // type:function size:0x20 scope:global align:4
+aMR_AllMDSwitchOff = .text:0x00101BFC; // type:function size:0x94 scope:global align:4
+aMR_OneMDSwitchOn_TheOtherSwitchOff = .text:0x00101C90; // type:function size:0x38 scope:global align:4
+aMR_Status2MoveBgCollisionScale = .text:0x00101CC8; // type:function size:0x2C scope:global align:4
+aMR_FurnitureCt = .text:0x00101CF4; // type:function size:0x254 scope:global align:4
+aMR_DmaFurniture_Common = .text:0x00101F48; // type:function size:0xAC scope:global align:4
+aMR_GetFurnitureBank = .text:0x00101FF4; // type:function size:0x74 scope:global align:4
+aMR_GetFurnitureBank2 = .text:0x00102068; // type:function size:0x64 scope:global align:4
+aMR_MakeOneFurniture = .text:0x001020CC; // type:function size:0xFC scope:global align:4
+aMR_MakeFurnitureActor = .text:0x001021C8; // type:function size:0x88 scope:global align:4
+aMR_InitFurnitureActorExistTable = .text:0x00102250; // type:function size:0x30 scope:global align:4
+aMR_InitFurnitureBankTable = .text:0x00102280; // type:function size:0x24 scope:global align:4
+aMR_InitDummyKeyAnime = .text:0x001022A4; // type:function size:0x40 scope:global align:4
+aMR_GetBankSitu = .text:0x001022E4; // type:function size:0x54 scope:global align:4
+aMR_SecureFurnitureBank = .text:0x00102338; // type:function size:0x104 scope:global align:4
+aMR_GetSceneFurnitureMax = .text:0x0010243C; // type:function size:0x4C scope:global align:4
+aMR_SecureFurnitureRam = .text:0x00102488; // type:function size:0x6C scope:global align:4
+aMR_InitFurnitureTable = .text:0x001024F4; // type:function size:0x60 scope:global align:4
+aMR_SetClip = .text:0x00102554; // type:function size:0x178 scope:global align:4
+aMR_MakeItemDataInFurniture = .text:0x001026CC; // type:function size:0x168 scope:global align:4
+aMR_ClearSwitchSaveData = .text:0x00102834; // type:function size:0x78 scope:global align:4
+aMR_NowSceneWaltzTempo = .text:0x001028AC; // type:function size:0xA0 scope:global align:4
+aMR_GetSavedWaltzTempo = .text:0x0010294C; // type:function size:0x24 scope:global align:4
+aMR_SaveWaltzTempo = .text:0x00102970; // type:function size:0x54 scope:global align:4
+aMR_SaveWaltzTempo2 = .text:0x001029C4; // type:function size:0x58 scope:global align:4
+aMR_CheckRoomOwner = .text:0x00102A1C; // type:function size:0x34 scope:global align:4
+aMR_MakeRoomInfo = .text:0x00102A50; // type:function size:0x8C scope:global align:4
+aMR_OneMDFurnitureSwitchOn = .text:0x00102ADC; // type:function size:0xA8 scope:global align:4
+aMR_InitFurnitureWork = .text:0x00102B84; // type:function size:0x50 scope:global align:4
+aMR_DeleteMusicWhichMusicBoxDontHave = .text:0x00102BD4; // type:function size:0x140 scope:global align:4
+aMR_SetMDIslandNPC = .text:0x00102D14; // type:function size:0xD0 scope:global align:4
+My_Room_Actor_ct = .text:0x00102DE4; // type:function size:0x174 scope:global align:4
+aMR_FreeMallocBank = .text:0x00102F58; // type:function size:0x70 scope:global align:4
+aMR_FreeHeapArea = .text:0x00102FC8; // type:function size:0x80 scope:global align:4
+aMR_KeepItem2Fg = .text:0x00103048; // type:function size:0xC8 scope:global align:4
+aMR_AllFurnitureDestruct = .text:0x00103110; // type:function size:0x110 scope:global align:4
+aMR_LeafPickuped = .text:0x00103220; // type:function size:0x30 scope:global align:4
+aMR_PickupFtrLayer = .text:0x00103250; // type:function size:0x34 scope:global align:4
+aMR_LeafStartPos = .text:0x00103284; // type:function size:0x60 scope:global align:4
+aMR_Ftr2Leaf = .text:0x001032E4; // type:function size:0x34 scope:global align:4
+aMR_SetLeaf = .text:0x00103318; // type:function size:0x6C scope:global align:4
+My_Room_Actor_dt = .text:0x00103384; // type:function size:0x114 scope:global align:4
+aMR_RedmaFtrBank = .text:0x00103498; // type:function size:0x80 scope:global align:4
+aMR_RequestStartEmu = .text:0x00103518; // type:function size:0x84 scope:global align:4
+aMR_RequestStartEmu_MemoryC = .text:0x0010359C; // type:function size:0x170 scope:global align:4
+aMR_FamicomEmuCommonMove = .text:0x0010370C; // type:function size:0x5C scope:global align:4
+aMR_CallSitDownOngenPosSE = .text:0x00103768; // type:function size:0xEC scope:global align:4
+aMR_CheckDannaKill = .text:0x00103854; // type:function size:0x138 scope:global align:4
+aMR_GetFurnitureUnit = .text:0x0010398C; // type:function size:0x7C scope:global align:4
+aMR_CorrespondFurniture = .text:0x00103A08; // type:function size:0x7C scope:global align:4
+aMR_FurnitureFg_to_FurnitureFgWithDirect = .text:0x00103A84; // type:function size:0x48 scope:global align:4
+aMR_RadioCommonMove = .text:0x00103ACC; // type:function size:0xCC scope:global align:4
+aMR_RadioBgmNow = .text:0x00103B98; // type:function size:0x2C scope:global align:4
+aMR_GetContactInfoLayer1 = .text:0x00103BC4; // type:function size:0x34 scope:global align:4
+aMR_GetParentFactor = .text:0x00103BF8; // type:function size:0x68 scope:global align:4
+aMR_GetParentAngleOffset = .text:0x00103C60; // type:function size:0x78 scope:global align:4
+aMR_GetAlphaEdge = .text:0x00103CD8; // type:function size:0x94 scope:global align:4
+aMR_DrawDolphinMode = .text:0x00103D6C; // type:function size:0x40 scope:global align:4
+aMR_ThrowItem_FurnitureLock = .text:0x00103DAC; // type:function size:0x30 scope:global align:4
+aMR_ThrowItem_FurnitureUnlock = .text:0x00103DDC; // type:function size:0x30 scope:global align:4
+aMR_SameFurnitureSwitchOFF = .text:0x00103E0C; // type:function size:0x60 scope:global align:4
+aMR_SetSlotString = .text:0x00103E6C; // type:function size:0x4C scope:global align:4
+aMR_GetCardFamicomCount = .text:0x00103EB8; // type:function size:0x48 scope:global align:4
+aMR_GetNameString = .text:0x00103F00; // type:function size:0x30 scope:global align:4
+aMR_SetMemoryCardGameIndex = .text:0x00103F30; // type:function size:0x14 scope:global align:4
+aMR_ReportDisplayMemoryGameSelectCount = .text:0x00103F44; // type:function size:0x28 scope:global align:4
+aMR_GetNowDemoFtr = .text:0x00103F6C; // type:function size:0x1C scope:global align:4
+aMR_ChangeDemoFtrStatus = .text:0x00103F88; // type:function size:0x30 scope:global align:4
+aMR_GetMusicCountInMusicBox = .text:0x00103FB8; // type:function size:0xB4 scope:global align:4
+aMR_MemoryMusicBoxStatus = .text:0x0010406C; // type:function size:0x8C scope:global align:4
+aMR_SetEmulatorMessage_CanSave = .text:0x001040F8; // type:function size:0x38 scope:global align:4
+aMR_SetEmulatorStartMessage = .text:0x00104130; // type:function size:0x1F8 scope:global align:4
+aMR_NoMsgInit = .text:0x00104328; // type:function size:0x4 scope:global align:4
+aMR_NoMsgControl = .text:0x0010432C; // type:function size:0x4 scope:global align:4
+aMR_MsgControlOwnerNoItem = .text:0x00104330; // type:function size:0xAC scope:global align:4
+aMR_MsgInitOwnerWhichPutOut = .text:0x001043DC; // type:function size:0x224 scope:global align:4
+aMR_MsgControlOwnerWhichPutOut = .text:0x00104600; // type:function size:0x110 scope:global align:4
+aMR_MsgInitOwnerWaitWhichPutOut = .text:0x00104710; // type:function size:0x48 scope:global align:4
+aMR_MsgControlOwnerWaitWhichPutOut = .text:0x00104758; // type:function size:0x20 scope:global align:4
+aMR_MsgInitOwnerExistItem = .text:0x00104778; // type:function size:0x98 scope:global align:4
+aMR_MsgControlOwnerExistItem = .text:0x00104810; // type:function size:0x154 scope:global align:4
+aMR_MsgControlOwnerExistItem_ItemCount2 = .text:0x00104964; // type:function size:0x12C scope:global align:4
+aMR_MsgControlOtherNoItem = .text:0x00104A90; // type:function size:0x40 scope:global align:4
+aMR_MsgControlOtherExistItem = .text:0x00104AD0; // type:function size:0x40 scope:global align:4
+aMR_MsgInitFullPlayerItem = .text:0x00104B10; // type:function size:0x4 scope:global align:4
+aMR_MsgControlFullPlayerItem = .text:0x00104B14; // type:function size:0x44 scope:global align:4
+aMR_MsgControlOpenSubmenu = .text:0x00104B58; // type:function size:0x64 scope:global align:4
+aMR_MsgControlItemPutIn = .text:0x00104BBC; // type:function size:0x88 scope:global align:4
+aMR_MsgControlCanNotClean = .text:0x00104C44; // type:function size:0xC scope:global align:4
+aMR_MsgControlWaitCloseFtr = .text:0x00104C50; // type:function size:0x50 scope:global align:4
+aMR_MsgInitRequestCloseFtr = .text:0x00104CA0; // type:function size:0x4 scope:global align:4
+aMR_MsgControlRequestCloseFtr = .text:0x00104CA4; // type:function size:0x78 scope:global align:4
+aMR_MsgControlOpenSetItemSubmenu = .text:0x00104D1C; // type:function size:0x64 scope:global align:4
+aMR_MsgControlItemSetSubmenu = .text:0x00104D80; // type:function size:0x88 scope:global align:4
+aMR_MsgControlOwnerNoMD = .text:0x00104E08; // type:function size:0x100 scope:global align:4
+aMR_MsgInitOwnerExistMD = .text:0x00104F08; // type:function size:0x70 scope:global align:4
+aMR_MsgControlOwnerExistMD = .text:0x00104F78; // type:function size:0x13C scope:global align:4
+aMR_MsgControlOtherNoMD = .text:0x001050B4; // type:function size:0x40 scope:global align:4
+aMR_MsgControlOtherExistMD = .text:0x001050F4; // type:function size:0x4C scope:global align:4
+aMR_MsgControlFullPlayerMD = .text:0x00105140; // type:function size:0xC scope:global align:4
+aMR_MsgControlOpenMusicBox = .text:0x0010514C; // type:function size:0xA8 scope:global align:4
+aMR_DeleteDirectedMD = .text:0x001051F4; // type:function size:0x170 scope:global align:4
+aMR_MsgControlMusicBoxMDPutIn = .text:0x00105364; // type:function size:0xAC scope:global align:4
+aMR_MsgControlOpenMDSubmenu = .text:0x00105410; // type:function size:0x6C scope:global align:4
+aMR_MsgControlOpenExchangeMDSubmenu = .text:0x0010547C; // type:function size:0x64 scope:global align:4
+aMR_MsgControlMDPutIn = .text:0x001054E0; // type:function size:0xA0 scope:global align:4
+aMR_MsgControlMDExchangeSubmenu = .text:0x00105580; // type:function size:0xC0 scope:global align:4
+aMR_MsgControlWaitCloseMD = .text:0x00105640; // type:function size:0x54 scope:global align:4
+aMR_MsgInitRequestCloseMD = .text:0x00105694; // type:function size:0x4 scope:global align:4
+aMR_MsgControlRequestCloseMD = .text:0x00105698; // type:function size:0x5C scope:global align:4
+aMR_MsgControlCanNotMDClean = .text:0x001056F4; // type:function size:0xC scope:global align:4
+aMR_MsgInitPrepareCommunication = .text:0x00105700; // type:function size:0x28 scope:global align:4
+aMR_MsgControlPrepareCommunication = .text:0x00105728; // type:function size:0xB4 scope:global align:4
+aMR_MsgInitNotConnectAgb = .text:0x001057DC; // type:function size:0x4 scope:global align:4
+aMR_MsgControlNotConnectAgb = .text:0x001057E0; // type:function size:0x54 scope:global align:4
+aMR_MsgInitCheckAgbProgram = .text:0x00105834; // type:function size:0x4 scope:global align:4
+aMR_MsgControlCheckAgbProgram = .text:0x00105838; // type:function size:0x68 scope:global align:4
+aMR_MsgInitDeleteAgbProgramQ = .text:0x001058A0; // type:function size:0x4 scope:global align:4
+aMR_MsgControlDeleteAgbProgramQ = .text:0x001058A4; // type:function size:0x80 scope:global align:4
+aMR_MsgInitStartEmuDownLoad = .text:0x00105924; // type:function size:0x4C scope:global align:4
+aMR_MsgControlStartEmuDownLoad = .text:0x00105970; // type:function size:0xC8 scope:global align:4
+aMR_MsgInitRecheckAgbConnect = .text:0x00105A38; // type:function size:0x34 scope:global align:4
+aMR_MsgControlRecheckAgbConnect = .text:0x00105A6C; // type:function size:0xB0 scope:global align:4
+aMR_MsgInitQqqEmulator = .text:0x00105B1C; // type:function size:0x8C scope:global align:4
+aMR_MsgControlQqqEmulator = .text:0x00105BA8; // type:function size:0xEC scope:global align:4
+aMR_MsgInitWarningCannotMakeSaveFile = .text:0x00105C94; // type:function size:0x4 scope:global align:4
+aMR_MsgControlWarningCannotMakeSaveFile = .text:0x00105C98; // type:function size:0x54 scope:global align:4
+aMR_MsgInitExplainEmulator = .text:0x00105CEC; // type:function size:0x4 scope:global align:4
+aMR_MsgControlExplainEmulator = .text:0x00105CF0; // type:function size:0x48 scope:global align:4
+aMR_MsgInitQqqEmulatorMemory1 = .text:0x00105D38; // type:function size:0x48 scope:global align:4
+aMR_MsgControlQqqEmulatorMemory1 = .text:0x00105D80; // type:function size:0xC8 scope:global align:4
+aMR_MsgInitQqqEmulatorMemory2 = .text:0x00105E48; // type:function size:0xA4 scope:global align:4
+aMR_MsgControlQqqEmulatorMemory2 = .text:0x00105EEC; // type:function size:0xC8 scope:global align:4
+aMR_MsgInitQqqEmulatorMemoryOver3 = .text:0x00105FB4; // type:function size:0xC8 scope:global align:4
+aMR_MsgControlQqqEmulatorMemoryOver3 = .text:0x0010607C; // type:function size:0x130 scope:global align:4
+aMR_MsgInitQqqRepeatDisplay1 = .text:0x001061AC; // type:function size:0xCC scope:global align:4
+aMR_MsgControlQqqRepeatDisplay1 = .text:0x00106278; // type:function size:0x130 scope:global align:4
+aMR_MsgInitQqqRepeatDisplay2 = .text:0x001063A8; // type:function size:0xE0 scope:global align:4
+aMR_MsgControlQqqRepeatDisplay2 = .text:0x00106488; // type:function size:0x154 scope:global align:4
+aMR_MsgInitExplainEmulatorMemory = .text:0x001065DC; // type:function size:0x4 scope:global align:4
+aMR_MsgControlExplainEmulatorMemory = .text:0x001065E0; // type:function size:0x48 scope:global align:4
+aMR_MsgInitNoPackNoData = .text:0x00106628; // type:function size:0x20 scope:global align:4
+aMR_MsgControlNoPackNoData = .text:0x00106648; // type:function size:0x58 scope:global align:4
+aMR_MsgInitWaitFamicomBatu = .text:0x001066A0; // type:function size:0x4 scope:global align:4
+aMR_MsgControlWaitFamicomBatu = .text:0x001066A4; // type:function size:0x54 scope:global align:4
+aMR_MsgInitSaveFamicom = .text:0x001066F8; // type:function size:0x64 scope:global align:4
+aMR_MsgControlSaveFamicom = .text:0x0010675C; // type:function size:0x258 scope:global align:4
+aMR_MsgInitHitokoto = .text:0x001069B4; // type:function size:0x4 scope:global align:4
+aMR_MsgControlHitokoto = .text:0x001069B8; // type:function size:0x44 scope:global align:4
+aMR_GetMessageNum = .text:0x001069FC; // type:function size:0x64 scope:global align:4
+aMR_speak_set = .text:0x00106A60; // type:function size:0x58 scope:global align:4
+aMR_report_set = .text:0x00106AB8; // type:function size:0x70 scope:global align:4
+aMR_MessageControl = .text:0x00106B28; // type:function size:0x2CC scope:global align:4
+aMR_SetSurprise = .text:0x00106DF4; // type:function size:0x18 scope:global align:4
+aMR_MakeIndoorGoki = .text:0x00106E0C; // type:function size:0x74 scope:global align:4
+aMR_RandomMakeIndoorGoki = .text:0x00106E80; // type:function size:0x238 scope:global align:4
+aMR_RequestPlayerBikkuri = .text:0x001070B8; // type:function size:0x7C scope:global align:4
+aMR_GokiInfoCt_Dummy = .text:0x00107134; // type:function size:0x4 scope:global align:4
+aMR_GokiInfoCt = .text:0x00107138; // type:function size:0x268 scope:global align:4
+aMR_MakeGokiburi = .text:0x001073A0; // type:function size:0xA4 scope:global align:4
+aMR_GokiInfoDt = .text:0x00107444; // type:function size:0x54 scope:global align:4
+aMR_CheckFtrAndGoki2 = .text:0x00107498; // type:function size:0x7C scope:global align:4
+aMR_CheckFtrAndGoki = .text:0x00107514; // type:function size:0x7C scope:global align:4
+aMR_SetMelodyData = .text:0x00107590; // type:function size:0x20 scope:global align:4
+aMR_GetMelodyData = .text:0x001075B0; // type:function size:0x20 scope:global align:4
+aMR_SoundMelody = .text:0x001075D0; // type:function size:0x6C scope:global align:4
+aMR_GetFurniturePoccessUnitNo = .text:0x0010763C; // type:function size:0x7C scope:global align:4
+aMR_PosType2FurniturePoccessUnitNo = .text:0x001076B8; // type:function size:0xBC scope:global align:4
+aMR_RegistItemToFitFurniture = .text:0x00107774; // type:function size:0x94 scope:global align:4
+aMR_RequestItemToFitFurniture = .text:0x00107808; // type:function size:0x37C scope:global align:4
+aMR_RequestItemToUnFitFurniture = .text:0x00107B84; // type:function size:0x220 scope:global align:4
+aMR_GetPlayerLookAtUnit = .text:0x00107DA4; // type:function size:0x5C scope:global align:4
+aMR_GetFtrShape4Position = .text:0x00107E00; // type:function size:0x64 scope:global align:4
+aMR_GetFtrShapeCenter = .text:0x00107E64; // type:function size:0xA4 scope:global align:4
+aMR_GetDust4Position = .text:0x00107F08; // type:function size:0x15C scope:global align:4
+aMR_GetDustAngle = .text:0x00108064; // type:function size:0x4C scope:global align:4
+aMR_CheckReserveFlag = .text:0x001080B0; // type:function size:0x34 scope:global align:4
+aMR_SetCleanUpFtrSE = .text:0x001080E4; // type:function size:0x28 scope:global align:4
+aMR_GetPlayerDirect = .text:0x0010810C; // type:function size:0x60 scope:global align:4
+aMR_MoveShapeCenter = .text:0x0010816C; // type:function size:0x7C scope:global align:4
+aMR_Norm2DirectName = .text:0x001081E8; // type:function size:0x68 scope:global align:4
+aMR_RotateY = .text:0x00108250; // type:function size:0x88 scope:global align:4
+aMR_Get3dDirectStatus = .text:0x001082D8; // type:function size:0x1F4 scope:global align:4
+aMR_3DStickNuetral = .text:0x001084CC; // type:function size:0x28 scope:global align:4
+aMR_JudgeStickFull = .text:0x001084F4; // type:function size:0xB4 scope:global align:4
+aMR_JudgeFurnitureMove = .text:0x001085A8; // type:function size:0xB8 scope:global align:4
+aMR_ContactRange = .text:0x00108660; // type:function size:0x124 scope:global align:4
+aMR_SearchContactPartName = .text:0x00108784; // type:function size:0x94 scope:global align:4
+aMR_ContactCheck = .text:0x00108818; // type:function size:0x210 scope:global align:4
+aMR_MakeContactData = .text:0x00108A28; // type:function size:0xF4 scope:global align:4
+aMR_GroundFlat = .text:0x00108B1C; // type:function size:0x90 scope:global align:4
+aMR_AllContactCheck = .text:0x00108BAC; // type:function size:0x108 scope:global align:4
+aMR_SetPullMoveAnime = .text:0x00108CB4; // type:function size:0xE8 scope:global align:4
+aMR_SetPushMoveAnime = .text:0x00108D9C; // type:function size:0xDC scope:global align:4
+aMR_SelectNicePoint = .text:0x00108E78; // type:function size:0x8C scope:global align:4
+aMR_SetNicePos = .text:0x00108F04; // type:function size:0x258 scope:global align:4
+aMR_FtrIdx2ChangeFtrSwitch = .text:0x0010915C; // type:function size:0x1C4 scope:global align:4
+aMR_RequestForceOpenDemo = .text:0x00109320; // type:function size:0x14 scope:global align:4
+aMR_GetPlayerRoomIdx = .text:0x00109334; // type:function size:0x40 scope:global align:4
+aMR_CheckDiaryOnMe = .text:0x00109374; // type:function size:0x1C0 scope:global align:4
+aMR_ManageMoveBottun = .text:0x00109534; // type:function size:0x748 scope:global align:4
+aMR_PullDirect2PushDirect = .text:0x00109C7C; // type:function size:0x14 scope:global align:4
+aMR_MngPullDirectTimer = .text:0x00109C90; // type:function size:0x1A8 scope:global align:4
+aMR_MngPushDirectTimer = .text:0x00109E38; // type:function size:0x1C4 scope:global align:4
+aMR_MngFtrContactAction = .text:0x00109FFC; // type:function size:0x204 scope:global align:4
+aMR_GetDistXZ = .text:0x0010A200; // type:function size:0xA4 scope:global align:4
+aMR_SetFurnitureBaseNorm = .text:0x0010A2A4; // type:function size:0x40 scope:global align:4
+aMR_MakeBaseFurnitureCollisionData = .text:0x0010A2E4; // type:function size:0x190 scope:global align:4
+aMR_PlussPosition = .text:0x0010A474; // type:function size:0x5C scope:global align:4
+aMR_RotateFurnitureCollisionData = .text:0x0010A4D0; // type:function size:0x7C scope:global align:4
+aMR_MakeFurnitureCollisionData = .text:0x0010A54C; // type:function size:0x104 scope:global align:4
+aMR_RewriteFactorInfo = .text:0x0010A650; // type:function size:0x90 scope:global align:4
+aMR_GetBirthFurniture = .text:0x0010A6E0; // type:function size:0x38 scope:global align:4
+aMR_CheckPlaceSituation = .text:0x0010A718; // type:function size:0xE0 scope:global align:4
+aMR_ReserveFurniture = .text:0x0010A7F8; // type:function size:0x100 scope:global align:4
+aMR_PreparePickingUpFurniture = .text:0x0010A8F8; // type:function size:0x74 scope:global align:4
+aMR_JudgePickUpCommon = .text:0x0010A96C; // type:function size:0x21C scope:global align:4
+aMR_SearchPickupFurniture = .text:0x0010AB88; // type:function size:0x50C scope:global align:4
+aMR_Furniture2ItemBag = .text:0x0010B094; // type:function size:0x244 scope:global align:4
+aMR_SearchReserveRam = .text:0x0010B2D8; // type:function size:0x8 scope:global align:4
+aMR_JudgeBreedNewFurniture = .text:0x0010B2E0; // type:function size:0x744 scope:global align:4
+aMR_InitFactorCollisionDirect = .text:0x0010BA24; // type:function size:0x48 scope:global align:4
+aMR_GetSaveAngle = .text:0x0010BA6C; // type:function size:0xC8 scope:global align:4
+aMR_SetFurniture2FG = .text:0x0010BB34; // type:function size:0x2AC scope:global align:4
+aMR_CheckControllerNeutral = .text:0x0010BDE0; // type:function size:0x84 scope:global align:4
+aMR_FtrPull = .text:0x0010BE64; // type:function size:0xFC scope:global align:4
+aMR_FtrPush = .text:0x0010BF60; // type:function size:0x10C scope:global align:4
+aMR_FtrStop = .text:0x0010C06C; // type:function size:0x4 scope:global align:4
+aMR_FtrWaitPush = .text:0x0010C070; // type:function size:0xC scope:global align:4
+aMR_FtrWaitPush2 = .text:0x0010C07C; // type:function size:0xC scope:global align:4
+aMR_FtrWaitPush3 = .text:0x0010C088; // type:function size:0xC scope:global align:4
+aMR_FtrWaitPull = .text:0x0010C094; // type:function size:0xC scope:global align:4
+aMR_FtrWaitPull2 = .text:0x0010C0A0; // type:function size:0xC scope:global align:4
+aMR_GetEllipseSpeed = .text:0x0010C0AC; // type:function size:0x10C scope:global align:4
+aMR_FtrRotate = .text:0x0010C1B8; // type:function size:0x130 scope:global align:4
+aMR_BirthWait = .text:0x0010C2E8; // type:function size:0xE4 scope:global align:4
+aMR_FtrBirth = .text:0x0010C3CC; // type:function size:0x458 scope:global align:4
+aMR_FtrBye = .text:0x0010C824; // type:function size:0x1F4 scope:global align:4
+aMR_FtrDeath = .text:0x0010CA18; // type:function size:0xF4 scope:global align:4
+aMR_FtrWaitRrotate = .text:0x0010CB0C; // type:function size:0x24 scope:global align:4
+aMR_FtrWaitLrotate = .text:0x0010CB30; // type:function size:0x24 scope:global align:4
+aMR_GetItemPosOnMovingFurniture = .text:0x0010CB54; // type:function size:0x10C scope:global align:4
+aMR_FurnitureMoveFunction = .text:0x0010CC60; // type:function size:0x1A8 scope:global align:4
+aMR_ClearChangeSwitchFlag = .text:0x0010CE08; // type:function size:0x50 scope:global align:4
+aMR_SetReserveFurniture = .text:0x0010CE58; // type:function size:0x1F0 scope:global align:4
+aMR_PreparePlayerAction = .text:0x0010D048; // type:function size:0x64 scope:global align:4
+aMR_SetFtrDemoMsg = .text:0x0010D0AC; // type:function size:0x25C scope:global align:4
+aMR_HouseOwnerMove = .text:0x0010D308; // type:function size:0x54 scope:global align:4
+aMR_HouseOtherMove = .text:0x0010D35C; // type:function size:0x54 scope:global align:4
+aMR_MakeClockInfo = .text:0x0010D3B0; // type:function size:0x74 scope:global align:4
+aMR_Fname2ConpoIndex = .text:0x0010D424; // type:function size:0x12C scope:global align:4
+My_Room_Actor_move = .text:0x0010D550; // type:function size:0x1F0 scope:global align:4
+aMR_SetNowPosition = .text:0x0010D740; // type:function size:0x24 scope:global align:4
+aMR_JudgePlayerAction = .text:0x0010D764; // type:function size:0x56C scope:global align:4
+aMR_PlayerMoveFurniture = .text:0x0010DCD0; // type:function size:0x40 scope:global align:4
+aMR_ftrID2Wpos = .text:0x0010DD10; // type:function size:0x70 scope:global align:4
+aMR_UnitNum2FtrItemNoFtrID = .text:0x0010DD80; // type:function size:0x134 scope:global align:4
+aMR_FtrID2ExtinguishFurniture = .text:0x0010DEB4; // type:function size:0x128 scope:global align:4
+aMR_JudgePlace2ndLayer = .text:0x0010DFDC; // type:function size:0x12C scope:global align:4
+aMR_OpenCloseCommonMove = .text:0x0010E108; // type:function size:0x258 scope:global align:4
+aMR_MiniDiskCommonMove = .text:0x0010E360; // type:function size:0x200 scope:global align:4
+aMR_PointDist2 = .text:0x0010E560; // type:function size:0x28 scope:global align:4
+aMR_GokiburiPos_Common = .text:0x0010E588; // type:function size:0x308 scope:global align:4
+aMR_GokiburiPos_Rotate = .text:0x0010E890; // type:function size:0x40 scope:global align:4
+aMR_GokiburiPos_Pull = .text:0x0010E8D0; // type:function size:0x24 scope:global align:4
+aMR_GokiburiPos_Push = .text:0x0010E8F4; // type:function size:0x24 scope:global align:4
+aMR_FtrColCheck = .text:0x0010E918; // type:function size:0x1B8 scope:global align:4
+aMR_SetBubu = .text:0x0010EAD0; // type:function size:0xB0 scope:global align:4
+aMR_ConvertDirectLevel = .text:0x0010EB80; // type:function size:0x2C scope:global align:4
+aMR_SetMoveSE = .text:0x0010EBAC; // type:function size:0x150 scope:global align:4
+aMR_SetRotateSE = .text:0x0010ECFC; // type:function size:0x44 scope:global align:4
+aMR_GetPullSlip = .text:0x0010ED40; // type:function size:0xC8 scope:global align:4
+aMR_CheckSlidePullJudgeType = .text:0x0010EE08; // type:function size:0x40 scope:global align:4
+aMR_CheckPullPlayerObstacle2 = .text:0x0010EE48; // type:function size:0x214 scope:global align:4
+aMR_CheckPullPlayerObstacle = .text:0x0010F05C; // type:function size:0x1AC scope:global align:4
+aMR_PlacePullFurniture = .text:0x0010F208; // type:function size:0x39C scope:global align:4
+aMR_PlacePushFurniture = .text:0x0010F5A4; // type:function size:0x2DC scope:global align:4
+aMR_DecideKurukuruDirect = .text:0x0010F880; // type:function size:0xB8 scope:global align:4
+aMR_SetTargetAngle = .text:0x0010F938; // type:function size:0x3C scope:global align:4
+aMR_GetRotateForbidData = .text:0x0010F974; // type:function size:0x3C scope:global align:4
+aMR_SearchCompleteObstacle = .text:0x0010F9B0; // type:function size:0xCC scope:global align:4
+aMR_SearchFrictionObstacle = .text:0x0010FA7C; // type:function size:0x100 scope:global align:4
+aMR_RotatePermission = .text:0x0010FB7C; // type:function size:0xE8 scope:global align:4
+aMR_ResetFurnitureType = .text:0x0010FC64; // type:function size:0xFC scope:global align:4
+aMR_TypeChangeByRotate = .text:0x0010FD60; // type:function size:0x3C scope:global align:4
+aMR_SearchNextSituation = .text:0x0010FD9C; // type:function size:0x128 scope:global align:4
+aMR_SitDownFurniture = .text:0x0010FEC4; // type:function size:0x340 scope:global align:4
+aMR_GetBedHeadDirect = .text:0x00110204; // type:function size:0x58 scope:global align:4
+aMR_Wpos2FtrInfo = .text:0x0011025C; // type:function size:0x104 scope:global align:4
+aMR_GetUnderfootSidePos = .text:0x00110360; // type:function size:0x318 scope:global align:4
+aMR_GetPillowSidePos = .text:0x00110678; // type:function size:0x31C scope:global align:4
+aMR_CheckBedUnderfoot = .text:0x00110994; // type:function size:0x2B8 scope:global align:4
+aMR_JudgeGoToBed = .text:0x00110C4C; // type:function size:0x350 scope:global align:4
+aMR_CheckHikidashi = .text:0x00110F9C; // type:function size:0x124 scope:global align:4
+aMR_SetOpenFtrDemoData = .text:0x001110C0; // type:function size:0x28 scope:global align:4
+aMR_SetMDFtrDemoData = .text:0x001110E8; // type:function size:0x2C scope:global align:4
+aMR_JudgeDemoStart = .text:0x00111114; // type:function size:0x1C8 scope:global align:4
+aMR_PlaceKurukuruFurniture = .text:0x001112DC; // type:function size:0x348 scope:global align:4
+aMR_GetBedTurnPos = .text:0x00111624; // type:function size:0x44 scope:global align:4
+aMR_GetBedAction = .text:0x00111668; // type:function size:0x34C scope:global align:4
+aMR_SetKankyoMapping = .text:0x001119B4; // type:function size:0x74 scope:global align:4
+aMR_LoadPallet = .text:0x00111A28; // type:function size:0x200 scope:global align:4
+aMR_LoadTexture = .text:0x00111C28; // type:function size:0x258 scope:global align:4
+aMR_SetLoopTextureAnime = .text:0x00111E80; // type:function size:0x54 scope:global align:4
+aMR_DrawRegistModel = .text:0x00111ED4; // type:function size:0x150 scope:global align:4
+aMR_DrawSkelShape = .text:0x00112024; // type:function size:0xBC scope:global align:4
+aMR_DrawUniqueShape = .text:0x001120E0; // type:function size:0xCC scope:global align:4
+aMR_DrawItemOnMovingFurniture = .text:0x001121AC; // type:function size:0x104 scope:global align:4
+aMR_GetFitNo = .text:0x001122B0; // type:function size:0x3C scope:global align:4
+aMR_FurnitureLightSet = .text:0x001122EC; // type:function size:0x64 scope:global align:4
+aMR_DrawOneFurniture = .text:0x00112350; // type:function size:0x3D4 scope:global align:4
+aMR_DrawFurniture = .text:0x00112724; // type:function size:0x27C scope:global align:4
+aMR_DrawLeaf = .text:0x001129A0; // type:function size:0xF4 scope:global align:4
+My_Room_Actor_draw = .text:0x00112A94; // type:function size:0x60 scope:global align:4
+aNI_CopyAllData = .text:0x00112AF4; // type:function size:0xA0 scope:global align:4
+aNI_MallocRam = .text:0x00112B94; // type:function size:0xC0 scope:global align:4
+aNI_SetMoveBg = .text:0x00112C54; // type:function size:0x160 scope:global align:4
+aNI_SetClip = .text:0x00112DB4; // type:function size:0x4C scope:global align:4
+Needlework_Indoor_Actor_ct = .text:0x00112E00; // type:function size:0x54 scope:global align:4
+aNI_FreeRam = .text:0x00112E54; // type:function size:0x78 scope:global align:4
+Needlework_Indoor_Actor_dt = .text:0x00112ECC; // type:function size:0x80 scope:global align:4
+aNI_DrawManekin = .text:0x00112F4C; // type:function size:0x134 scope:global align:4
+aNI_DrawUmbrella = .text:0x00113080; // type:function size:0x134 scope:global align:4
+Needlework_Indoor_Actor_draw = .text:0x001131B4; // type:function size:0x44 scope:global align:4
+Needlework_Indoor_Actor_move = .text:0x001131F8; // type:function size:0xC4 scope:global align:4
+aNI_RequestCopyClothData = .text:0x001132BC; // type:function size:0x6C scope:global align:4
+aNI_CopyClothData = .text:0x00113328; // type:function size:0xDC scope:global align:4
+aNI_RequestExchangeCloth = .text:0x00113404; // type:function size:0x6C scope:global align:4
+aNI_ExchangeCloth = .text:0x00113470; // type:function size:0xE0 scope:global align:4
+aNI_RequestCopyUmbData = .text:0x00113550; // type:function size:0x6C scope:global align:4
+aNI_CopyUmbData = .text:0x001135BC; // type:function size:0xE0 scope:global align:4
+aNI_RequestExchangeUmb = .text:0x0011369C; // type:function size:0x6C scope:global align:4
+aNI_ExchangeUmb = .text:0x00113708; // type:function size:0xE0 scope:global align:4
+aPRD_actor_ct = .text:0x001137E8; // type:function size:0x7C scope:global align:4
+aPRD_actor_dt = .text:0x00113864; // type:function size:0x24 scope:global align:4
+aPRD_setup_present = .text:0x00113888; // type:function size:0x16C scope:global align:4
+aPRD_setup_present_normal_npc_info = .text:0x001139F4; // type:function size:0x7C scope:global align:4
+aPRD_setup_present_soncho_info = .text:0x00113A70; // type:function size:0x30 scope:global align:4
+aPRD_setup_present_npc_info = .text:0x00113AA0; // type:function size:0x34 scope:global align:4
+aPRD_first_set = .text:0x00113AD4; // type:function size:0xDC scope:global align:4
+aPRD_pl_come_out_wait = .text:0x00113BB0; // type:function size:0x54 scope:global align:4
+aPRD_present_wait = .text:0x00113C04; // type:function size:0x30 scope:global align:4
+aPRD_retire_npc_wait = .text:0x00113C34; // type:function size:0xD0 scope:global align:4
+aPRD_first_set_init = .text:0x00113D04; // type:function size:0x20 scope:global align:4
+aPRD_pl_come_out_wait_init = .text:0x00113D24; // type:function size:0xC scope:global align:4
+aPRD_present_wait_init = .text:0x00113D30; // type:function size:0x2C scope:global align:4
+aPRD_init_proc = .text:0x00113D5C; // type:function size:0x34 scope:global align:4
+aPRD_setupAction = .text:0x00113D90; // type:function size:0x38 scope:global align:4
+aPRD_actor_move = .text:0x00113DC8; // type:function size:0x28 scope:global align:4
+aPSM_actor_ct = .text:0x00113DF0; // type:function size:0x220 scope:global align:4
+aPSM_actor_dt = .text:0x00114010; // type:function size:0x44 scope:global align:4
+aPSM_set_talk_info = .text:0x00114054; // type:function size:0x38 scope:global align:4
+aPSMAN_MakeBreakEffect = .text:0x0011408C; // type:function size:0x184 scope:global align:4
+aPSM_actor_move = .text:0x00114210; // type:function size:0xB0 scope:global align:4
+aPSM_actor_draw = .text:0x001142C0; // type:function size:0x12C scope:global align:4
+aPT_CheckMailBoxVac = .text:0x001143EC; // type:function size:0x54 scope:global align:4
+aPT_SendMail = .text:0x00114440; // type:function size:0x2DC scope:global align:4
+Pterminal_Actor_ct = .text:0x0011471C; // type:function size:0x4 scope:global align:4
+Pterminal_Actor_dt = .text:0x00114720; // type:function size:0x4 scope:global align:4
+Pterminal_Actor_draw = .text:0x00114724; // type:function size:0x4 scope:global align:4
+aPT_CheckTalkAble = .text:0x00114728; // type:function size:0x128 scope:global align:4
+aPT_CheckTalkAbleDist = .text:0x00114850; // type:function size:0x70 scope:global align:4
+aPT_SetTalkInfo = .text:0x001148C0; // type:function size:0x7C scope:global align:4
+aPT_SetTransSE = .text:0x0011493C; // type:function size:0xC scope:global align:4
+aPT_SetTransSE_move = .text:0x00114948; // type:function size:0x70 scope:global align:4
+aPT_Wait_Init = .text:0x001149B8; // type:function size:0x4 scope:global align:4
+aPT_Wait = .text:0x001149BC; // type:function size:0x20 scope:global align:4
+aPT_First_Question_Init = .text:0x001149DC; // type:function size:0x24 scope:global align:4
+aPT_First_Question = .text:0x00114A00; // type:function size:0xF8 scope:global align:4
+aPT_Connect_AGB_to_Rcv_Init = .text:0x00114AF8; // type:function size:0x2C scope:global align:4
+aPT_Connect_AGB_to_Rcv = .text:0x00114B24; // type:function size:0xD4 scope:global align:4
+aPT_Connect_AGB_to_Snd_Init = .text:0x00114BF8; // type:function size:0x2C scope:global align:4
+aPT_Connect_AGB_to_Snd = .text:0x00114C24; // type:function size:0xD4 scope:global align:4
+aPT_Send_Init = .text:0x00114CF8; // type:function size:0x20 scope:global align:4
+aPT_Send = .text:0x00114D18; // type:function size:0xD4 scope:global align:4
+aPT_Read_Question_Init = .text:0x00114DEC; // type:function size:0x24 scope:global align:4
+aPT_Read_Question = .text:0x00114E10; // type:function size:0xA8 scope:global align:4
+aPT_Receive_Init = .text:0x00114EB8; // type:function size:0x4 scope:global align:4
+aPT_Receive = .text:0x00114EBC; // type:function size:0x12C scope:global align:4
+aPT_Setup = .text:0x00114FE8; // type:function size:0x68 scope:global align:4
+Pterminal_Actor_move = .text:0x00115050; // type:function size:0x210 scope:global align:4
+aQMgr_actor_set_memory = .text:0x00115260; // type:function size:0x94 scope:global align:4
+aQMgr_actor_set_hello_free_str = .text:0x001152F4; // type:function size:0xA4 scope:global align:4
+aQMgr_take_hello_msg_no = .text:0x00115398; // type:function size:0xA4 scope:global align:4
+aQMgr_set_talk_info = .text:0x0011543C; // type:function size:0xA8 scope:global align:4
+aQMgr_actor_talk_request = .text:0x001154E4; // type:function size:0x88 scope:global align:4
+aQMgr_actor_talk_start = .text:0x0011556C; // type:function size:0x118 scope:global align:4
+aQMgr_actor_talk_check = .text:0x00115684; // type:function size:0x80 scope:global align:4
+aQMgr_get_time_kind = .text:0x00115704; // type:function size:0x50 scope:global align:4
+aQMgr_clear_talk_init_ovl = .text:0x00115754; // type:function size:0xC scope:global align:4
+aQMgr_talk_common_talk_init_ovl = .text:0x00115760; // type:function size:0x34 scope:global align:4
+aQMgr_actor_change_talk_init_ovl = .text:0x00115794; // type:function size:0x60 scope:global align:4
+aQMgr_actor_clear_regist = .text:0x001157F4; // type:function size:0x7C scope:global align:4
+aQMgr_actor_check_fin_item = .text:0x00115870; // type:function size:0x50 scope:global align:4
+aQMgr_actor_free_regist = .text:0x001158C0; // type:function size:0x54 scope:global align:4
+aQMgr_actor_regist_quest = .text:0x00115914; // type:function size:0x1A0 scope:global align:4
+aQMgr_talk_clear_talk_order = .text:0x00115AB4; // type:function size:0x10 scope:global align:4
+aQMgr_talk_common_clear_talk_info = .text:0x00115AC4; // type:function size:0xF0 scope:global align:4
+aQMgr_talk_common_get_item_idx = .text:0x00115BB4; // type:function size:0xCC scope:global align:4
+aQMgr_talk_common_set_choice_str = .text:0x00115C80; // type:function size:0xE8 scope:global align:4
+aQMgr_talk_common_get_set_data_p = .text:0x00115D68; // type:function size:0x38 scope:global align:4
+aQMgr_actor_init_quest = .text:0x00115DA0; // type:function size:0xF4 scope:global align:4
+aQMgr_actor_regist_quest_move = .text:0x00115E94; // type:function size:0x6C scope:global align:4
+aQMgr_actor_move_wait = .text:0x00115F00; // type:function size:0x5C scope:global align:4
+aQMgr_actor_move_talk_fin = .text:0x00115F5C; // type:function size:0x58 scope:global align:4
+aQMgr_actor_get_my_msg = .text:0x00115FB4; // type:function size:0x3C scope:global align:4
+aQMgr_actor_decide_quest_message_no = .text:0x00115FF0; // type:function size:0x14 scope:global align:4
+aQMgr_talk_common_set_msg_no = .text:0x00116004; // type:function size:0x98 scope:global align:4
+aQMgr_talk_common_regist_set_target = .text:0x0011609C; // type:function size:0x90 scope:global align:4
+aQMgr_talk_common_change_talk_normal = .text:0x0011612C; // type:function size:0x44 scope:global align:4
+aQMgr_talk_common_change_talk_island = .text:0x00116170; // type:function size:0x44 scope:global align:4
+aQMgr_set_npc_putaway = .text:0x001161B4; // type:function size:0x50 scope:global align:4
+aQMgr_talk_common_set_npc_takeout = .text:0x00116204; // type:function size:0x6C scope:global align:4
+aQMgr_talk_common_set_npc_takeout_item = .text:0x00116270; // type:function size:0x28 scope:global align:4
+aQMgr_talk_common_set_npc_takeout_reward = .text:0x00116298; // type:function size:0x28 scope:global align:4
+aQMgr_check_npc_hand_item = .text:0x001162C0; // type:function size:0xA0 scope:global align:4
+aQMgr_talk_common_proc = .text:0x00116360; // type:function size:0x34 scope:global align:4
+aQMgr_clear_talk_wait_info = .text:0x00116394; // type:function size:0x24 scope:global align:4
+aQMgr_actor_move_talk_sub_no_wait = .text:0x001163B8; // type:function size:0x8 scope:global align:4
+aQMgr_actor_move_talk_sub_wait = .text:0x001163C0; // type:function size:0x6C scope:global align:4
+aQMgr_actor_move_talk_sub_msg_disappear_wait = .text:0x0011642C; // type:function size:0x40 scope:global align:4
+aQMgr_actor_move_talk_sub_msg_appear_wait = .text:0x0011646C; // type:function size:0x40 scope:global align:4
+aQMgr_actor_move_talk_sub_check_button = .text:0x001164AC; // type:function size:0x40 scope:global align:4
+aQMgr_actor_move_talk_sub_hand_item_wait = .text:0x001164EC; // type:function size:0x84 scope:global align:4
+aQMgr_actor_move_talk_sub_npc_hand_wait = .text:0x00116570; // type:function size:0x20 scope:global align:4
+aQMgr_actor_move_talk_sub_item_wait = .text:0x00116590; // type:function size:0x20 scope:global align:4
+aQMgr_actor_move_talk_sub_demo_order_wait = .text:0x001165B0; // type:function size:0x7C scope:global align:4
+aQMgr_actor_move_talk_sub_npc_hand_wait_msg_wait = .text:0x0011662C; // type:function size:0xA0 scope:global align:4
+aQMgr_actor_move_talk_sub_item_wait_end = .text:0x001166CC; // type:function size:0x88 scope:global align:4
+aQMgr_actor_move_talk_sub_item_player_wait = .text:0x00116754; // type:function size:0x8C scope:global align:4
+aQMgr_select_talk = .text:0x001167E0; // type:function size:0xE0 scope:global align:4
+aQMgr_talk_init = .text:0x001168C0; // type:function size:0x3C scope:global align:4
+aQMgr_talk_sub = .text:0x001168FC; // type:function size:0x54 scope:global align:4
+aQMgr_move_talk = .text:0x00116950; // type:function size:0x1EC scope:global align:4
+aQMgr_talk_start_kamakura_common = .text:0x00116B3C; // type:function size:0x6C scope:global align:4
+aQMgr_talk_start_kamakura_hello = .text:0x00116BA8; // type:function size:0x24 scope:global align:4
+aQMgr_talk_start_kamakura = .text:0x00116BCC; // type:function size:0x24 scope:global align:4
+aQMgr_talk_start_summercamp_hello = .text:0x00116BF0; // type:function size:0x24 scope:global align:4
+aQMgr_talk_start_summercamp = .text:0x00116C14; // type:function size:0x24 scope:global align:4
+aQMgr_actor_move_main = .text:0x00116C38; // type:function size:0x1B8 scope:global align:4
+aQMgr_actor_ct = .text:0x00116DF0; // type:function size:0x174 scope:global align:4
+aQMgr_actor_dt = .text:0x00116F64; // type:function size:0x64 scope:global align:4
+aQMgr_actor_save = .text:0x00116FC8; // type:function size:0x84 scope:global align:4
+aQMgr_move_own_errand_cloth = .text:0x0011704C; // type:function size:0x74 scope:global align:4
+aQMgr_move_own_errand_seed = .text:0x001170C0; // type:function size:0x78 scope:global align:4
+aQMgr_move_own_errand_letter = .text:0x00117138; // type:function size:0xD4 scope:global align:4
+aQMgr_move_own_errand_hello = .text:0x0011720C; // type:function size:0x70 scope:global align:4
+aQMgr_actor_check_limit_and_clear_quest = .text:0x0011727C; // type:function size:0x3C scope:global align:4
+aQMgr_actor_contest_check_limit = .text:0x001172B8; // type:function size:0x24 scope:global align:4
+aQMgr_actor_check_fin_fruit = .text:0x001172DC; // type:function size:0x4C scope:global align:4
+aQMgr_actor_check_fin_soccer = .text:0x00117328; // type:function size:0x1C scope:global align:4
+aQMgr_actor_contest_snowman_clear = .text:0x00117344; // type:function size:0x98 scope:global align:4
+aQMgr_actor_check_fin_snowman = .text:0x001173DC; // type:function size:0x8C scope:global align:4
+aQMgr_actor_contest_flower_clear = .text:0x00117468; // type:function size:0x84 scope:global align:4
+aQMgr_actor_check_flower = .text:0x001174EC; // type:function size:0xA0 scope:global align:4
+aQMgr_actor_check_fin_flower = .text:0x0011758C; // type:function size:0x2C scope:global align:4
+aQMgr_actor_check_fin_quest_have_item1 = .text:0x001175B8; // type:function size:0x7C scope:global align:4
+aQMgr_actor_check_fin_fish = .text:0x00117634; // type:function size:0x24 scope:global align:4
+aQMgr_actor_contest_insect_clear = .text:0x00117658; // type:function size:0x84 scope:global align:4
+aQMgr_actor_check_fin_insect = .text:0x001176DC; // type:function size:0x24 scope:global align:4
+aQMgr_actor_check_fin_contest_letter = .text:0x00117700; // type:function size:0x1C scope:global align:4
+aQMgr_save_contest_flower = .text:0x0011771C; // type:function size:0x78 scope:global align:4
+aQMgr_save_contest = .text:0x00117794; // type:function size:0x3C scope:global align:4
+aQMgr_fj_get_my_msg = .text:0x001177D0; // type:function size:0xC scope:global align:4
+aQMgr_actor_decide_fj_message_no = .text:0x001177DC; // type:function size:0x14 scope:global align:4
+aQMgr_fj_set_msg_no = .text:0x001177F0; // type:function size:0x94 scope:global align:4
+aQMgr_actor_check_to = .text:0x00117884; // type:function size:0x88 scope:global align:4
+aQMgr_fj_check_own_quest = .text:0x0011790C; // type:function size:0xC0 scope:global align:4
+aQMgr_get_select_hellow_no = .text:0x001179CC; // type:function size:0x3C scope:global align:4
+aQMgr_talk_fj_select_talk = .text:0x00117A08; // type:function size:0x190 scope:global align:4
+aQMgr_talk_fj_hint_or_hint = .text:0x00117B98; // type:function size:0x98 scope:global align:4
+aQMgr_talk_fj_hint_or_fj = .text:0x00117C30; // type:function size:0xD0 scope:global align:4
+aQMgr_talk_fj_hand_reward = .text:0x00117D00; // type:function size:0x50 scope:global align:4
+aQMgr_talk_fj_get_item = .text:0x00117D50; // type:function size:0xC8 scope:global align:4
+aQMgr_talk_fj_get_item_wait = .text:0x00117E18; // type:function size:0x68 scope:global align:4
+aQMgr_talk_fj_wait_button = .text:0x00117E80; // type:function size:0x44 scope:global align:4
+aQMgr_talk_fj_reward_to = .text:0x00117EC4; // type:function size:0xB8 scope:global align:4
+aQMgr_talk_fj_letter_before = .text:0x00117F7C; // type:function size:0x54 scope:global align:4
+aQMgr_talk_fj_show_letter = .text:0x00117FD0; // type:function size:0xA0 scope:global align:4
+aQMgr_talk_fj_thanks_letter_open_msg = .text:0x00118070; // type:function size:0xA4 scope:global align:4
+aQMgr_talk_fj_wait_nothing = .text:0x00118114; // type:function size:0x4 scope:global align:4
+aQMgr_talk_fj_finish = .text:0x00118118; // type:function size:0x44 scope:global align:4
+aQMgr_talk_first_job_init = .text:0x0011815C; // type:function size:0x70 scope:global align:4
+aQMgr_actor_set_day_str = .text:0x001181CC; // type:function size:0x64 scope:global align:4
+aQMgr_actor_get_my_hello_msg_com = .text:0x00118230; // type:function size:0x64 scope:global align:4
+aQMgr_get_random_msg_no = .text:0x00118294; // type:function size:0x4C scope:global align:4
+aQMgr_get_hello_msg_npc_feel = .text:0x001182E0; // type:function size:0x7C scope:global align:4
+aQMgr_get_hello_msg_npc_feel_island = .text:0x0011835C; // type:function size:0x7C scope:global align:4
+aQMgr_get_meet_time = .text:0x001183D8; // type:function size:0x1A4 scope:global align:4
+aQMgr_set_memory = .text:0x0011857C; // type:function size:0x8C scope:global align:4
+aQMgr_clear_memory = .text:0x00118608; // type:function size:0x8C scope:global align:4
+aQMgr_get_hello_msg_npc_feel_normal = .text:0x00118694; // type:function size:0x154 scope:global align:4
+aQMgr_get_hello_msg_npc_feel_normal_island = .text:0x001187E8; // type:function size:0xE0 scope:global align:4
+aQMgr_get_thanks_cloth_msg = .text:0x001188C8; // type:function size:0xE8 scope:global align:4
+aQMgr_get_hello_msg_npc_feel_grad = .text:0x001189B0; // type:function size:0xD8 scope:global align:4
+aQMgr_set_feel_normal = .text:0x00118A88; // type:function size:0x3C scope:global align:4
+aQMgr_get_hello_msg_how_do_you_do = .text:0x00118AC4; // type:function size:0x13C scope:global align:4
+aQMgr_check_possession_item = .text:0x00118C00; // type:function size:0xCC scope:global align:4
+aQMgr_get_harvestfestival_msg = .text:0x00118CCC; // type:function size:0x178 scope:global align:4
+aQMgr_get_harvestfestival_island_msg = .text:0x00118E44; // type:function size:0x118 scope:global align:4
+aQMgr_get_hello_msg_no_normal = .text:0x00118F5C; // type:function size:0x388 scope:global align:4
+aQMgr_get_hello_msg_no_kamakura = .text:0x001192E4; // type:function size:0xE8 scope:global align:4
+aQMgr_get_hello_msg_no_summercamp = .text:0x001193CC; // type:function size:0x110 scope:global align:4
+aQMgr_get_hello_msg_no_island = .text:0x001194DC; // type:function size:0x19C scope:global align:4
+aQMgr_get_hello_msg_no = .text:0x00119678; // type:function size:0x114 scope:global align:4
+aQMgr_actor_check_own_quest = .text:0x0011978C; // type:function size:0x9C scope:global align:4
+aQMgr_actor_check_still_reward = .text:0x00119828; // type:function size:0xBC scope:global align:4
+aQMgr_actor_check_fin_step = .text:0x001198E4; // type:function size:0x18 scope:global align:4
+aQMgr_actor_check_finish = .text:0x001198FC; // type:function size:0x5C scope:global align:4
+aQMgr_actor_check_limit = .text:0x00119958; // type:function size:0x38 scope:global align:4
+aQMgr_actor_check_errand_from = .text:0x00119990; // type:function size:0xC8 scope:global align:4
+aQMgr_actor_check_client_quest_info = .text:0x00119A58; // type:function size:0x28 scope:global align:4
+aQMgr_actor_get_errand_next_idx = .text:0x00119A80; // type:function size:0x48 scope:global align:4
+aQMgr_actor_set_errand_next = .text:0x00119AC8; // type:function size:0x50 scope:global align:4
+aQMgr_actor_get_errand_next = .text:0x00119B18; // type:function size:0x50 scope:global align:4
+aQMgr_actor_check_free_quest = .text:0x00119B68; // type:function size:0x28 scope:global align:4
+aQMgr_actor_get_free_quest_p = .text:0x00119B90; // type:function size:0x168 scope:global align:4
+aQMgr_actor_set_client_quest_info = .text:0x00119CF8; // type:function size:0x34 scope:global align:4
+aQMgr_actor_client_quest_set_new = .text:0x00119D2C; // type:function size:0x34 scope:global align:4
+aQMgr_actor_decide_quest_type_kind = .text:0x00119D60; // type:function size:0xBC scope:global align:4
+aQMgr_get_before_quest_idx = .text:0x00119E1C; // type:function size:0x94 scope:global align:4
+aQMgr_actor_check_occur = .text:0x00119EB0; // type:function size:0x28C scope:global align:4
+aQMgr_actor_decide_quest = .text:0x0011A13C; // type:function size:0x128 scope:global align:4
+aQMgr_actor_decide_item = .text:0x0011A264; // type:function size:0x58 scope:global align:4
+aQMgr_actor_decide_cloth = .text:0x0011A2BC; // type:function size:0x44 scope:global align:4
+aQMgr_actor_set_contest_work_data = .text:0x0011A300; // type:function size:0x58 scope:global align:4
+aQMgr_actor_set_work_data = .text:0x0011A358; // type:function size:0x50 scope:global align:4
+aQMgr_actor_set_quest_data = .text:0x0011A3A8; // type:function size:0x348 scope:global align:4
+aQMgr_actor_new_quest = .text:0x0011A6F0; // type:function size:0x260 scope:global align:4
+aQMgr_actor_set_delivery = .text:0x0011A950; // type:function size:0x6C scope:global align:4
+aQMgr_actor_set_errand = .text:0x0011A9BC; // type:function size:0x120 scope:global align:4
+aQMgr_actor_set_contest = .text:0x0011AADC; // type:function size:0xA4 scope:global align:4
+aQMgr_actor_set_quest_info = .text:0x0011AB80; // type:function size:0xB4 scope:global align:4
+aQMgr_actor_clear_client_quest_info = .text:0x0011AC34; // type:function size:0x30 scope:global align:4
+aQMgr_actor_set_free_str = .text:0x0011AC64; // type:function size:0x148 scope:global align:4
+aQMgr_actor_set_free_str_reward = .text:0x0011ADAC; // type:function size:0x6C scope:global align:4
+aQMgr_actor_get_rate = .text:0x0011AE18; // type:function size:0x8C scope:global align:4
+aQMgr_actor_get_pay = .text:0x0011AEA4; // type:function size:0xF4 scope:global align:4
+aQMgr_actor_hand_reward = .text:0x0011AF98; // type:function size:0x19C scope:global align:4
+aQMgr_actor_get_errand_reward = .text:0x0011B134; // type:function size:0x88 scope:global align:4
+aQMgr_actor_get_other_pl_cloth = .text:0x0011B1BC; // type:function size:0x4C scope:global align:4
+aQMgr_actor_set_reward = .text:0x0011B208; // type:function size:0x198 scope:global align:4
+aQMgr_talk_quest_clear_quest = .text:0x0011B3A0; // type:function size:0x7C scope:global align:4
+aQMgr_actor_talk_finish = .text:0x0011B41C; // type:function size:0x84 scope:global align:4
+aQMgr_talk_quest_start_choice_random = .text:0x0011B4A0; // type:function size:0x44 scope:global align:4
+aQMgr_talk_quest_select_get_choice = .text:0x0011B4E4; // type:function size:0x24C scope:global align:4
+aQMgr_talk_quest_select_get_choice_island = .text:0x0011B730; // type:function size:0x58 scope:global align:4
+aQMgr_talk_quest_start_choice = .text:0x0011B788; // type:function size:0x58 scope:global align:4
+aQMgr_talk_quest_finish_firstjob_open_quest = .text:0x0011B7E0; // type:function size:0xC0 scope:global align:4
+aQMgr_talk_quest_set_cancel_msg_com = .text:0x0011B8A0; // type:function size:0x60 scope:global align:4
+aQMgr_talk_quest_change_normal_or_hint = .text:0x0011B900; // type:function size:0x78 scope:global align:4
+aQMgr_talk_quest_get_contest_hoka_msg_no = .text:0x0011B978; // type:function size:0x7C scope:global align:4
+aQMgr_talk_quest_set_work = .text:0x0011B9F4; // type:function size:0x4 scope:global align:4
+aQMgr_actor_talk_select_talk = .text:0x0011B9F8; // type:function size:0x630 scope:global align:4
+aQMgr_actor_talk_select_talk_island = .text:0x0011C028; // type:function size:0x78 scope:global align:4
+aQMgr_actor_talk_select_talk_2 = .text:0x0011C0A0; // type:function size:0x5C scope:global align:4
+aQMgr_actor_talk_reconf_or_normal = .text:0x0011C0FC; // type:function size:0x84 scope:global align:4
+aQMgr_actor_talk_root_reconf_or_normal = .text:0x0011C180; // type:function size:0x7C scope:global align:4
+aQMgr_actor_talk_no_or_normal = .text:0x0011C1FC; // type:function size:0x88 scope:global align:4
+aQMgr_actor_talk_no_or_island = .text:0x0011C284; // type:function size:0x80 scope:global align:4
+aQMgr_actor_talk_full_item_or_normal = .text:0x0011C304; // type:function size:0x94 scope:global align:4
+aQMgr_actor_talk_renew_errand_or_normal = .text:0x0011C398; // type:function size:0xE0 scope:global align:4
+aQMgr_actor_talk_renew_errand_irai_end_give_item = .text:0x0011C478; // type:function size:0x78 scope:global align:4
+aQMgr_actor_talk_renew_errand_irai_end = .text:0x0011C4F0; // type:function size:0x5C scope:global align:4
+aQMgr_actor_talk_new_quest_or_normal = .text:0x0011C54C; // type:function size:0xB0 scope:global align:4
+aQMgr_actor_talk_occur_quest = .text:0x0011C5FC; // type:function size:0x19C scope:global align:4
+aQMgr_talk_quest_wait_talk = .text:0x0011C798; // type:function size:0x80 scope:global align:4
+aQMgr_actor_talk_giveup = .text:0x0011C818; // type:function size:0x64 scope:global align:4
+aQMgr_talk_quest_giveup_wait_button = .text:0x0011C87C; // type:function size:0x70 scope:global align:4
+aQMgr_talk_quest_giveup_open_menu = .text:0x0011C8EC; // type:function size:0x74 scope:global align:4
+aQMgr_talk_quest_giveup_item = .text:0x0011C960; // type:function size:0x100 scope:global align:4
+aQMgr_talk_quest_giveup_npc_item = .text:0x0011CA60; // type:function size:0x3C scope:global align:4
+aQMgr_actor_talk_fin_quest_start = .text:0x0011CA9C; // type:function size:0x9C scope:global align:4
+aQMgr_talk_quest_talk_fin_quest_start_not_hand = .text:0x0011CB38; // type:function size:0x84 scope:global align:4
+aQMgr_talk_quest_open_menu = .text:0x0011CBBC; // type:function size:0x104 scope:global align:4
+aQMgr_talk_quest_get_item = .text:0x0011CCC0; // type:function size:0xE8 scope:global align:4
+aQMgr_talk_quest_npc_get_item_wait = .text:0x0011CDA8; // type:function size:0x14 scope:global align:4
+aQMgr_actor_talk_fin_quest_reward = .text:0x0011CDBC; // type:function size:0x1F4 scope:global align:4
+aQMgr_actor_talk_fin_quest_thanks = .text:0x0011CFB0; // type:function size:0x68 scope:global align:4
+aQMgr_actor_talk_after_reward = .text:0x0011D018; // type:function size:0x154 scope:global align:4
+aQMgr_actor_talk_after_reward_thanks = .text:0x0011D16C; // type:function size:0x70 scope:global align:4
+aQMgr_talk_quest_contest_hoka_or_normal = .text:0x0011D1DC; // type:function size:0x13C scope:global align:4
+aQMgr_talk_quest_change_wait = .text:0x0011D318; // type:function size:0x4C scope:global align:4
+aQMgr_actor_talk_finish_letter = .text:0x0011D364; // type:function size:0xCC scope:global align:4
+aQMgr_actor_move_talk_init = .text:0x0011D430; // type:function size:0x90 scope:global align:4
+aQMgr_init_normal_info = .text:0x0011D4C0; // type:function size:0x3C scope:local align:4
+aQMgr_set_number_free_str = .text:0x0011D4FC; // type:function size:0x64 scope:local align:4
+aQMgr_set_number_item_str = .text:0x0011D560; // type:function size:0x68 scope:local align:4
+aQMgr_set_number_free_str_add_gatu = .text:0x0011D5C8; // type:function size:0x8C scope:local align:4
+aQMgr_set_number_free_str_add_nichi = .text:0x0011D654; // type:function size:0x8C scope:local align:4
+aQMgr_normal_set_free_str = .text:0x0011D6E0; // type:function size:0x68 scope:local align:4
+aQMgr_set_calendar_free_str = .text:0x0011D748; // type:function size:0xA0 scope:local align:4
+aQMgr_get_rnd_no_cut_10 = .text:0x0011D7E8; // type:function size:0x88 scope:local align:4
+aQMgr_GetPossessionItemSumFGTypeWithCond_cancelSPFamicom = .text:0x0011D870; // type:function size:0xA4 scope:global align:4
+aQMgr_get_possession_ftr_cpt_wl_rnd = .text:0x0011D914; // type:function size:0x164 scope:local align:4
+aQMgr_get_possession_item_rnd = .text:0x0011DA78; // type:function size:0x11C scope:local align:4
+aQMgr_check_item_cond = .text:0x0011DB94; // type:function size:0x24 scope:global align:4
+aQMgr_get_best_ftr_idx = .text:0x0011DBB8; // type:function size:0x170 scope:global align:4
+aQMgr_get_normal_ftr_idx = .text:0x0011DD28; // type:function size:0x16C scope:global align:4
+aQMgr_get_cloth = .text:0x0011DE94; // type:function size:0x158 scope:global align:4
+aQMgr_order_decide_trade_common_item = .text:0x0011DFEC; // type:function size:0x1D4 scope:local align:4
+aQMgr_order_decide_trade_common_pay = .text:0x0011E1C0; // type:function size:0x34 scope:local align:4
+aQMgr_order_decide_trade_common = .text:0x0011E1F4; // type:function size:0x4C scope:local align:4
+aQMgr_trade_give_item = .text:0x0011E240; // type:function size:0xC0 scope:local align:4
+aQMgr_trade_take_item = .text:0x0011E300; // type:function size:0x88 scope:local align:4
+aQMgr_trade_take_money = .text:0x0011E388; // type:function size:0x34 scope:local align:4
+aQMgr_trade_give_money = .text:0x0011E3BC; // type:function size:0xE4 scope:local align:4
+aQMgr_set_give_and_take_mode_GIVE = .text:0x0011E4A0; // type:function size:0xA8 scope:local align:4
+aQMgr_set_give_item_and_take_money_mode_GIVE = .text:0x0011E548; // type:function size:0x64 scope:local align:4
+aQMgr_set_give_money_and_take_item_mode_GIVE = .text:0x0011E5AC; // type:function size:0x90 scope:local align:4
+aQMgr_set_give_money_and_take_item_mode_TAKE = .text:0x0011E63C; // type:function size:0x5C scope:local align:4
+aQMgr_set_give_and_take_mode_TAKE = .text:0x0011E698; // type:function size:0x84 scope:local align:4
+aQMgr_order_change_roof_color = .text:0x0011E71C; // type:function size:0xA8 scope:local align:4
+aQMgr_order_change_gobi = .text:0x0011E7C4; // type:function size:0x48 scope:local align:4
+aQMgr_order_cancel_remove = .text:0x0011E80C; // type:function size:0x40 scope:local align:4
+aQMgr_control_animal_info = .text:0x0011E84C; // type:function size:0x64 scope:local align:4
+aQMgr_order_decide_trade_1 = .text:0x0011E8B0; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_2 = .text:0x0011E8F8; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_3 = .text:0x0011E940; // type:function size:0x5C scope:local align:4
+aQMgr_order_decide_trade_4 = .text:0x0011E99C; // type:function size:0x64 scope:local align:4
+aQMgr_order_decide_trade_5 = .text:0x0011EA00; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_6 = .text:0x0011EA48; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_7 = .text:0x0011EA90; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_8 = .text:0x0011EAD8; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_9 = .text:0x0011EB20; // type:function size:0x5C scope:local align:4
+aQMgr_order_decide_trade_10 = .text:0x0011EB7C; // type:function size:0x64 scope:local align:4
+aQMgr_order_decide_trade_11 = .text:0x0011EBE0; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_12 = .text:0x0011EC28; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_13 = .text:0x0011EC70; // type:function size:0x48 scope:local align:4
+aQMgr_order_decide_trade_14 = .text:0x0011ECB8; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_15 = .text:0x0011ECE4; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_16 = .text:0x0011ED10; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_17 = .text:0x0011ED3C; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_18 = .text:0x0011ED68; // type:function size:0x138 scope:global align:4
+aQMgr_order_decide_trade_19 = .text:0x0011EEA0; // type:function size:0x150 scope:global align:4
+aQMgr_order_decide_trade_20 = .text:0x0011EFF0; // type:function size:0x100 scope:global align:4
+aQMgr_order_decide_trade_21 = .text:0x0011F0F0; // type:function size:0x178 scope:global align:4
+aQMgr_order_decide_trade = .text:0x0011F268; // type:function size:0x48 scope:local align:4
+aQMgr_order_move_trade_no_term = .text:0x0011F2B0; // type:function size:0x8C scope:local align:4
+aQMgr_order_move_trade_1 = .text:0x0011F33C; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_2 = .text:0x0011F360; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_3 = .text:0x0011F384; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_4 = .text:0x0011F3A8; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_5 = .text:0x0011F3CC; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_6 = .text:0x0011F3F0; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_7 = .text:0x0011F414; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_8 = .text:0x0011F438; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_9 = .text:0x0011F45C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_10 = .text:0x0011F47C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_11 = .text:0x0011F49C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_12 = .text:0x0011F4BC; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_13 = .text:0x0011F4DC; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_14 = .text:0x0011F4FC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_15 = .text:0x0011F52C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_16 = .text:0x0011F55C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_17 = .text:0x0011F58C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_18 = .text:0x0011F5BC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_19 = .text:0x0011F5EC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_20 = .text:0x0011F61C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_21 = .text:0x0011F64C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_22 = .text:0x0011F67C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_23 = .text:0x0011F69C; // type:function size:0x90 scope:global align:4
+aQMgr_order_move_trade_24 = .text:0x0011F72C; // type:function size:0xBC scope:global align:4
+aQMgr_order_trade = .text:0x0011F7E8; // type:function size:0x50 scope:local align:4
+aQMgr_order_show_letter = .text:0x0011F838; // type:function size:0x48 scope:local align:4
+aQMgr_order_write_letter = .text:0x0011F880; // type:function size:0x48 scope:global align:4
+aQMgr_order_fluctuation_friendship = .text:0x0011F8C8; // type:function size:0x40 scope:local align:4
+aQMgr_order_play_memory_melody = .text:0x0011F908; // type:function size:0x60 scope:local align:4
+aQMgr_order_set_calendar = .text:0x0011F968; // type:function size:0x88 scope:local align:4
+aQMgr_order_input_birthday = .text:0x0011F9F0; // type:function size:0x48 scope:local align:4
+aQMgr_order_input_data = .text:0x0011FA38; // type:function size:0x50 scope:global align:4
+aQMgr_set_random_string = .text:0x0011FA88; // type:function size:0xA0 scope:local align:4
+aQMgr_order_set_string_1 = .text:0x0011FB28; // type:function size:0xC4 scope:local align:4
+aQMgr_set_random_number_item_str = .text:0x0011FBEC; // type:function size:0x78 scope:local align:4
+aQMgr_order_set_string_2 = .text:0x0011FC64; // type:function size:0xB4 scope:local align:4
+aQMgr_order_set_string_3 = .text:0x0011FD18; // type:function size:0x74 scope:local align:4
+aQMgr_order_set_string_4 = .text:0x0011FD8C; // type:function size:0x210 scope:local align:4
+aQMgr_order_set_string = .text:0x0011FF9C; // type:function size:0x40 scope:local align:4
+aQMgr_decide_normal_msg_no_island = .text:0x0011FFDC; // type:function size:0xA4 scope:global align:4
+aQMgr_check_trade_0 = .text:0x00120080; // type:function size:0xC8 scope:global align:4
+aQMgr_check_trade_1 = .text:0x00120148; // type:function size:0xE0 scope:global align:4
+aQMgr_check_trade_2 = .text:0x00120228; // type:function size:0xC4 scope:global align:4
+aQMgr_check_trade_3 = .text:0x001202EC; // type:function size:0xB8 scope:global align:4
+aQMgr_check_trade_4 = .text:0x001203A4; // type:function size:0xB8 scope:global align:4
+aQMgr_check_trade_5 = .text:0x0012045C; // type:function size:0x74 scope:global align:4
+aQMgr_check_trade_6 = .text:0x001204D0; // type:function size:0x64 scope:global align:4
+aQMgr_check_trade_7 = .text:0x00120534; // type:function size:0x9C scope:global align:4
+aQMgr_check_trade_8 = .text:0x001205D0; // type:function size:0xA8 scope:global align:4
+aQMgr_decide_ftr_msg_no = .text:0x00120678; // type:function size:0x158 scope:global align:4
+aQMgr_decide_player_msg_no = .text:0x001207D0; // type:function size:0xA0 scope:global align:4
+aQMgr_get_other_memory = .text:0x00120870; // type:function size:0x154 scope:global align:4
+aQMgr_decide_other_player_msg_no = .text:0x001209C4; // type:function size:0x104 scope:global align:4
+aQMgr_decide_mail_msg_no = .text:0x00120AC8; // type:function size:0x1B4 scope:global align:4
+aQMgr_talk_island_select_talk = .text:0x00120C7C; // type:function size:0x18C scope:global align:4
+aQMgr_talk_island_demo_order = .text:0x00120E08; // type:function size:0x38 scope:global align:4
+aQMgr_talk_normal_open_letter = .text:0x00120E40; // type:function size:0xD4 scope:local align:4
+aQMgr_talk_normal_open_letter_to_write = .text:0x00120F14; // type:function size:0x14C scope:global align:4
+aQMgr_talk_normal_open_birthday = .text:0x00121060; // type:function size:0x4C scope:local align:4
+aQMgr_talk_normal_open_gobi = .text:0x001210AC; // type:function size:0x5C scope:local align:4
+aQMgr_talk_normal_open_msg = .text:0x00121108; // type:function size:0x50 scope:local align:4
+aQMgr_talk_normal_give_item = .text:0x00121158; // type:function size:0x50 scope:local align:4
+aQMgr_talk_normal_to_wait_order = .text:0x001211A8; // type:function size:0x14 scope:local align:4
+aQMgr_talk_island_init = .text:0x001211BC; // type:function size:0x4C scope:global align:4
+aQMgr_decide_idx_prob_table = .text:0x00121208; // type:function size:0x144 scope:global align:4
+aQMgr_init_normal_info = .text:0x0012134C; // type:function size:0x3C scope:local align:4
+aQMgr_set_number_free_str = .text:0x00121388; // type:function size:0x64 scope:local align:4
+aQMgr_set_number_item_str = .text:0x001213EC; // type:function size:0x68 scope:local align:4
+aQMgr_set_number_free_str_add_nen = .text:0x00121454; // type:function size:0x78 scope:global align:4
+aQMgr_set_number_free_str_add_gatu = .text:0x001214CC; // type:function size:0x8C scope:local align:4
+aQMgr_set_number_free_str_add_nichi = .text:0x00121558; // type:function size:0x8C scope:local align:4
+aQMgr_get_possession_ftr_cpt_wl = .text:0x001215E4; // type:function size:0xA4 scope:global align:4
+aQMgr_get_free_possession_idx = .text:0x00121688; // type:function size:0x34 scope:global align:4
+aQMgr_get_free_possession_idx_check_money = .text:0x001216BC; // type:function size:0x48 scope:global align:4
+aQMgr_get_possession_item = .text:0x00121704; // type:function size:0x64 scope:global align:4
+aQMgr_decide_msg_check_possession = .text:0x00121768; // type:function size:0x74 scope:global align:4
+aQMgr_check_client_remove = .text:0x001217DC; // type:function size:0x90 scope:global align:4
+aQMgr_check_not_player_memory = .text:0x0012186C; // type:function size:0x64 scope:global align:4
+aQMgr_check_other_land_memory = .text:0x001218D0; // type:function size:0xA8 scope:global align:4
+aQMgr_get_other_land_memory = .text:0x00121978; // type:function size:0xF8 scope:global align:4
+aQMgr_check_this_land_memory_talk_other_land_player = .text:0x00121A70; // type:function size:0xD8 scope:global align:4
+aQMgr_get_this_land_memory_talk_other_land_player = .text:0x00121B48; // type:function size:0x100 scope:global align:4
+aQMgr_check_this_land_memory_talk_this_land_player = .text:0x00121C48; // type:function size:0xD8 scope:global align:4
+aQMgr_get_this_land_memory_talk_this_land_player = .text:0x00121D20; // type:function size:0xF8 scope:global align:4
+aQMgr_get_memory_rnd = .text:0x00121E18; // type:function size:0x140 scope:global align:4
+aQMgr_get_memory_mail_rnd = .text:0x00121F58; // type:function size:0x140 scope:global align:4
+aQMgr_get_memory_mail_best_friend = .text:0x00122098; // type:function size:0x88 scope:global align:4
+aQMgr_get_memory_mail_more_friend = .text:0x00122120; // type:function size:0x14C scope:global align:4
+aQMgr_get_memory_mail_over_friendship = .text:0x0012226C; // type:function size:0x160 scope:global align:4
+aQMgr_get_memory_mail_less_friendship = .text:0x001223CC; // type:function size:0x198 scope:global align:4
+aQMgr_get_memory_mail_secret = .text:0x00122564; // type:function size:0x9C scope:global align:4
+aQMgr_get_msg_weather_time = .text:0x00122600; // type:function size:0x94 scope:global align:4
+aQMgr_normal_set_free_str = .text:0x00122694; // type:function size:0xAC scope:local align:4
+aQMgr_set_free_str_memory = .text:0x00122740; // type:function size:0x78 scope:global align:4
+aQMgr_set_calendar_free_str = .text:0x001227B8; // type:function size:0xB4 scope:local align:4
+aQMgr_get_rnd_no_cut_10 = .text:0x0012286C; // type:function size:0x88 scope:local align:4
+aQMgr_get_possession_ftr_cpt_wl_rnd = .text:0x001228F4; // type:function size:0x174 scope:local align:4
+aQMgr_get_possession_item_rnd = .text:0x00122A68; // type:function size:0x124 scope:local align:4
+aQMgr_order_decide_trade_common_item = .text:0x00122B8C; // type:function size:0x230 scope:local align:4
+aQMgr_order_decide_trade_common_pay = .text:0x00122DBC; // type:function size:0x34 scope:local align:4
+aQMgr_order_decide_trade_common = .text:0x00122DF0; // type:function size:0x54 scope:local align:4
+aQMgr_trade_give_item = .text:0x00122E44; // type:function size:0x50 scope:local align:4
+aQMgr_trade_take_item = .text:0x00122E94; // type:function size:0x64 scope:local align:4
+aQMgr_trade_take_money = .text:0x00122EF8; // type:function size:0x34 scope:local align:4
+aQMgr_trade_give_money = .text:0x00122F2C; // type:function size:0xE4 scope:local align:4
+aQMgr_set_give_and_take_mode_GIVE = .text:0x00123010; // type:function size:0xA8 scope:local align:4
+aQMgr_set_give_item_and_take_money_mode_GIVE = .text:0x001230B8; // type:function size:0x64 scope:local align:4
+aQMgr_set_give_money_and_take_item_mode_GIVE = .text:0x0012311C; // type:function size:0x90 scope:local align:4
+aQMgr_set_give_money_and_take_item_mode_TAKE = .text:0x001231AC; // type:function size:0x5C scope:local align:4
+aQMgr_set_give_and_take_mode_TAKE = .text:0x00123208; // type:function size:0x8C scope:local align:4
+aQMgr_decide_msg_ki_weather_time = .text:0x00123294; // type:function size:0x3C scope:global align:4
+aQMgr_decide_msg_ki_normal = .text:0x001232D0; // type:function size:0x40 scope:global align:4
+aQMgr_decide_msg_ki_free_item = .text:0x00123310; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_ki_ftr = .text:0x00123360; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_ki_free_item_money = .text:0x001233B0; // type:function size:0x50 scope:global align:4
+aQMgr_decide_ki_msg_no = .text:0x00123400; // type:function size:0xA8 scope:global align:4
+aQMgr_decide_msg_memory = .text:0x001234A8; // type:function size:0x1B4 scope:global align:4
+aQMgr_decide_msg_letter = .text:0x0012365C; // type:function size:0xF8 scope:global align:4
+aQMgr_decide_msg_normal_3_normal = .text:0x00123754; // type:function size:0x40 scope:global align:4
+aQMgr_decide_msg_normal_3_weather_time = .text:0x00123794; // type:function size:0x3C scope:global align:4
+aQMgr_decide_msg_normal_3_weather = .text:0x001237D0; // type:function size:0x90 scope:global align:4
+aQMgr_decide_msg_normal_3_season = .text:0x00123860; // type:function size:0x4C scope:global align:4
+aQMgr_decide_msg_normal_3_msg_no = .text:0x001238AC; // type:function size:0x80 scope:global align:4
+aQMgr_decide_msg_trade_free_item = .text:0x0012392C; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_trade_ftr = .text:0x0012397C; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_trade_free_item_money = .text:0x001239CC; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_trade_item = .text:0x00123A1C; // type:function size:0x50 scope:global align:4
+aQMgr_decide_msg_trade = .text:0x00123A6C; // type:function size:0x80 scope:global align:4
+aQMgr_decide_normal_2_msg_no = .text:0x00123AEC; // type:function size:0x98 scope:global align:4
+aQMgr_decide_msg_game_hint = .text:0x00123B84; // type:function size:0x40 scope:global align:4
+aQMgr_decide_msg_remove = .text:0x00123BC4; // type:function size:0x40 scope:global align:4
+aQMgr_decide_msg_calendar_ev = .text:0x00123C04; // type:function size:0x154 scope:global align:4
+aQMgr_decide_msg_special_ev = .text:0x00123D58; // type:function size:0x1EC scope:global align:4
+aQMgr_decide_msg_ev = .text:0x00123F44; // type:function size:0xB4 scope:global align:4
+aQMgr_decide_msg_game_ev = .text:0x00123FF8; // type:function size:0x6C scope:global align:4
+aQMgr_decide_game_msg_no = .text:0x00124064; // type:function size:0x68 scope:global align:4
+aQMgr_decide_normal_msg_no = .text:0x001240CC; // type:function size:0x80 scope:global align:4
+aQMgr_get_fj_hint_msg = .text:0x0012414C; // type:function size:0x14 scope:global align:4
+aQMgr_decide_fj_hint_msg_no = .text:0x00124160; // type:function size:0x58 scope:global align:4
+aQMgr_order_change_roof_color = .text:0x001241B8; // type:function size:0xA8 scope:local align:4
+aQMgr_order_change_gobi = .text:0x00124260; // type:function size:0x48 scope:local align:4
+aQMgr_order_cancel_remove = .text:0x001242A8; // type:function size:0x40 scope:local align:4
+aQMgr_control_animal_info = .text:0x001242E8; // type:function size:0x64 scope:local align:4
+aQMgr_order_decide_trade_1 = .text:0x0012434C; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_2 = .text:0x0012439C; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_3 = .text:0x001243EC; // type:function size:0x60 scope:local align:4
+aQMgr_order_decide_trade_4 = .text:0x0012444C; // type:function size:0x68 scope:local align:4
+aQMgr_order_decide_trade_5 = .text:0x001244B4; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_6 = .text:0x00124504; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_7 = .text:0x00124554; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_8 = .text:0x001245A4; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_9 = .text:0x001245F4; // type:function size:0x60 scope:local align:4
+aQMgr_order_decide_trade_10 = .text:0x00124654; // type:function size:0x68 scope:local align:4
+aQMgr_order_decide_trade_11 = .text:0x001246BC; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_12 = .text:0x0012470C; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_13 = .text:0x0012475C; // type:function size:0x50 scope:local align:4
+aQMgr_order_decide_trade_14 = .text:0x001247AC; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_15 = .text:0x001247D8; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_16 = .text:0x00124804; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade_17 = .text:0x00124830; // type:function size:0x2C scope:local align:4
+aQMgr_order_decide_trade = .text:0x0012485C; // type:function size:0x4C scope:local align:4
+aQMgr_order_move_trade_no_term = .text:0x001248A8; // type:function size:0x94 scope:local align:4
+aQMgr_order_move_trade_1 = .text:0x0012493C; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_2 = .text:0x00124960; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_3 = .text:0x00124984; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_4 = .text:0x001249A8; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_5 = .text:0x001249CC; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_6 = .text:0x001249F0; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_7 = .text:0x00124A14; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_8 = .text:0x00124A38; // type:function size:0x24 scope:local align:4
+aQMgr_order_move_trade_9 = .text:0x00124A5C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_10 = .text:0x00124A7C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_11 = .text:0x00124A9C; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_12 = .text:0x00124ABC; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_13 = .text:0x00124ADC; // type:function size:0x20 scope:local align:4
+aQMgr_order_move_trade_14 = .text:0x00124AFC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_15 = .text:0x00124B2C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_16 = .text:0x00124B5C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_17 = .text:0x00124B8C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_18 = .text:0x00124BBC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_19 = .text:0x00124BEC; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_20 = .text:0x00124C1C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_21 = .text:0x00124C4C; // type:function size:0x30 scope:local align:4
+aQMgr_order_move_trade_22 = .text:0x00124C7C; // type:function size:0x20 scope:local align:4
+aQMgr_order_trade = .text:0x00124C9C; // type:function size:0x4C scope:local align:4
+aQMgr_order_show_letter = .text:0x00124CE8; // type:function size:0x48 scope:local align:4
+aQMgr_order_fluctuation_friendship = .text:0x00124D30; // type:function size:0x40 scope:local align:4
+aQMgr_order_play_memory_melody = .text:0x00124D70; // type:function size:0x60 scope:local align:4
+aQMgr_order_set_calendar = .text:0x00124DD0; // type:function size:0x88 scope:local align:4
+aQMgr_order_input_birthday = .text:0x00124E58; // type:function size:0x48 scope:local align:4
+aQMgr_set_random_string = .text:0x00124EA0; // type:function size:0xA0 scope:local align:4
+aQMgr_order_set_string_1 = .text:0x00124F40; // type:function size:0xC4 scope:local align:4
+aQMgr_set_random_number_item_str = .text:0x00125004; // type:function size:0x78 scope:local align:4
+aQMgr_order_set_string_2 = .text:0x0012507C; // type:function size:0xDC scope:local align:4
+aQMgr_order_set_string_3 = .text:0x00125158; // type:function size:0x74 scope:local align:4
+aQMgr_order_set_string_4 = .text:0x001251CC; // type:function size:0x210 scope:local align:4
+aQMgr_order_set_string = .text:0x001253DC; // type:function size:0x54 scope:local align:4
+aQMgr_change_NG_msg = .text:0x00125430; // type:function size:0x108 scope:global align:4
+aQMgr_talk_normal_select_talk = .text:0x00125538; // type:function size:0x148 scope:global align:4
+aQMgr_talk_normal_demo_order = .text:0x00125680; // type:function size:0x4C scope:global align:4
+aQMgr_talk_normal_open_letter = .text:0x001256CC; // type:function size:0xF4 scope:local align:4
+aQMgr_talk_normal_open_birthday = .text:0x001257C0; // type:function size:0x4C scope:local align:4
+aQMgr_talk_normal_open_gobi = .text:0x0012580C; // type:function size:0x64 scope:local align:4
+aQMgr_talk_normal_open_msg = .text:0x00125870; // type:function size:0x50 scope:local align:4
+aQMgr_talk_normal_give_item = .text:0x001258C0; // type:function size:0x50 scope:local align:4
+aQMgr_talk_normal_to_wait_order = .text:0x00125910; // type:function size:0x14 scope:local align:4
+aQMgr_talk_normal_kamakura_hello = .text:0x00125924; // type:function size:0x4C scope:global align:4
+aQMgr_talk_normal_kamakura = .text:0x00125970; // type:function size:0x48 scope:global align:4
+aQMgr_talk_normal_summercamp_hello = .text:0x001259B8; // type:function size:0x4C scope:global align:4
+aQMgr_talk_normal_summercamp = .text:0x00125A04; // type:function size:0x48 scope:global align:4
+aQMgr_talk_normal_init = .text:0x00125A4C; // type:function size:0x64 scope:global align:4
+aRSD_actor_ct = .text:0x00125AB0; // type:function size:0x7C scope:global align:4
+aRSD_actor_dt = .text:0x00125B2C; // type:function size:0x54 scope:global align:4
+aRSD_set_point_light = .text:0x00125B80; // type:function size:0x1C0 scope:global align:4
+aRSD_first_set = .text:0x00125D40; // type:function size:0xC0 scope:global align:4
+aRSD_retire_npc_wait = .text:0x00125E00; // type:function size:0x58 scope:global align:4
+aRSD_first_set_init = .text:0x00125E58; // type:function size:0x60 scope:global align:4
+aRSD_retire_npc_wait_init = .text:0x00125EB8; // type:function size:0x24 scope:global align:4
+aRSD_init_proc = .text:0x00125EDC; // type:function size:0x34 scope:global align:4
+aRSD_setupAction = .text:0x00125F10; // type:function size:0x38 scope:global align:4
+aRSD_actor_move = .text:0x00125F48; // type:function size:0x28 scope:global align:4
+aROD_actor_ct = .text:0x00125F70; // type:function size:0x7C scope:global align:4
+aROD_actor_dt = .text:0x00125FEC; // type:function size:0x24 scope:global align:4
+aROD_change_player_demo_standing_train = .text:0x00126010; // type:function size:0x3C scope:global align:4
+aROD_first_set = .text:0x0012604C; // type:function size:0x60 scope:global align:4
+aROD_train_birth_wait = .text:0x001260AC; // type:function size:0x74 scope:global align:4
+aROD_ride_train = .text:0x00126120; // type:function size:0x5C scope:global align:4
+aROD_ride_off_player = .text:0x0012617C; // type:function size:0x80 scope:global align:4
+aROD_walk_one_unit = .text:0x001261FC; // type:function size:0xB4 scope:global align:4
+aROD_first_set_init = .text:0x001262B0; // type:function size:0x44 scope:global align:4
+aROD_train_birth_wait_init = .text:0x001262F4; // type:function size:0x94 scope:global align:4
+aROD_ride_off_player_init = .text:0x00126388; // type:function size:0x94 scope:global align:4
+aROD_walk_one_unit_init = .text:0x0012641C; // type:function size:0x4C scope:global align:4
+aROD_init_proc = .text:0x00126468; // type:function size:0x34 scope:global align:4
+aROD_setupAction = .text:0x0012649C; // type:function size:0x38 scope:global align:4
+aROD_actor_move = .text:0x001264D4; // type:function size:0x28 scope:global align:4
+aRP_actor_ct = .text:0x001264FC; // type:function size:0xB0 scope:global align:4
+aRP_actor_dt = .text:0x001265AC; // type:function size:0xB0 scope:global align:4
+aRP_make_vtx = .text:0x0012665C; // type:function size:0xB8 scope:global align:4
+aRP_actor_draw = .text:0x00126714; // type:function size:0xFC scope:global align:4
+aSetMgr_get_player_block = .text:0x00126810; // type:function size:0x78 scope:global align:4
+aSetMgr_renewal_player_next_pos = .text:0x00126888; // type:function size:0xAC scope:global align:4
+aSetMgr_renewal_player_pos = .text:0x00126934; // type:function size:0x60 scope:global align:4
+aSetMgr_check_player_wade_start = .text:0x00126994; // type:function size:0x24 scope:global align:4
+aSetMgr_check_player_wade_end = .text:0x001269B8; // type:function size:0x24 scope:global align:4
+aSetMgr_clear_set_ovl = .text:0x001269DC; // type:function size:0x38 scope:global align:4
+aSetMgr_ovl = .text:0x00126A14; // type:function size:0x30 scope:global align:4
+aSetMgr_clear_keep = .text:0x00126A44; // type:function size:0x24 scope:global align:4
+aSetMgr_move_check_set = .text:0x00126A68; // type:function size:0x64 scope:global align:4
+aSetMgr_move_check_wait = .text:0x00126ACC; // type:function size:0x50 scope:global align:4
+aSetMgr_move_set = .text:0x00126B1C; // type:function size:0xC0 scope:global align:4
+aSetMgr_move = .text:0x00126BDC; // type:function size:0x5C scope:global align:4
+aSetMgr_ct = .text:0x00126C38; // type:function size:0x6C scope:global align:4
+aSetMgr_dt = .text:0x00126CA4; // type:function size:0x4 scope:global align:4
+aSNMgr_actor_ct = .text:0x00126CA8; // type:function size:0x174 scope:global align:4
+aSNMgr_actor_dt = .text:0x00126E1C; // type:function size:0x20 scope:global align:4
+aSNMgr_init_winfo_p = .text:0x00126E3C; // type:function size:0x80 scope:global align:4
+aSNMgr_set_npc_exist = .text:0x00126EBC; // type:function size:0x70 scope:global align:4
+aSNMgr_clear_event_info = .text:0x00126F2C; // type:function size:0x20 scope:global align:4
+aSNMgr_get_event_npc_idx = .text:0x00126F4C; // type:function size:0x3C scope:global align:4
+aSNMgr_reset_event_npc_pos = .text:0x00126F88; // type:function size:0xA0 scope:global align:4
+aSNMgr_chk_exist_and_appear = .text:0x00127028; // type:function size:0x50 scope:global align:4
+aSNMgr_chk_exist_and_appear_and_event = .text:0x00127078; // type:function size:0x5C scope:global align:4
+aSNMgr_chk_arbeit_and_demo_and_halloween = .text:0x001270D4; // type:function size:0x80 scope:global align:4
+aSNMgr_get_player_pos = .text:0x00127154; // type:function size:0x5C scope:global align:4
+aSNMgr_renewal_player_now_block = .text:0x001271B0; // type:function size:0x48 scope:global align:4
+aSNMgr_renewal_player_next_block = .text:0x001271F8; // type:function size:0x2C scope:global align:4
+aSNMgr_renewal_set_scope = .text:0x00127224; // type:function size:0xDC scope:global align:4
+aSNMgr_check_in = .text:0x00127300; // type:function size:0x2C scope:global align:4
+aSNMgr_check_in_scope = .text:0x0012732C; // type:function size:0x68 scope:global align:4
+aSNMgr_set_in_block_npc_num = .text:0x00127394; // type:function size:0xB0 scope:global align:4
+aSNMgr_check_move_npc_schedule = .text:0x00127444; // type:function size:0x2C scope:global align:4
+aSNMgr_get_block_ut_num_set_npc = .text:0x00127470; // type:function size:0x88 scope:global align:4
+aSNMgr_set_appear_info_regular = .text:0x001274F8; // type:function size:0x88 scope:global align:4
+aSNMgr_set_appear_info_guest = .text:0x00127580; // type:function size:0xBC scope:global align:4
+aSNMgr_check_safe_ut = .text:0x0012763C; // type:function size:0xA8 scope:global align:4
+aSNMgr_get_safe_sp_event_structure_4x4 = .text:0x001276E4; // type:function size:0x78 scope:global align:4
+aSNMgr_get_safe_sp_event_structure = .text:0x0012775C; // type:function size:0x9C scope:global align:4
+aSNMgr_get_safe_utnum_3x3 = .text:0x001277F8; // type:function size:0x118 scope:global align:4
+aSNMgr_get_safe_utnum_in_block = .text:0x00127910; // type:function size:0x1C8 scope:global align:4
+aSNMgr_get_safe_utnum_regular = .text:0x00127AD8; // type:function size:0x88 scope:global align:4
+aSNMgr_get_safe_utnum_guest = .text:0x00127B60; // type:function size:0xC8 scope:global align:4
+aSNMgr_get_safe_utnum = .text:0x00127C28; // type:function size:0x50 scope:global align:4
+aSNMgr_set_event_info = .text:0x00127C78; // type:function size:0xD4 scope:global align:4
+aSNMgr_set_npc_event = .text:0x00127D4C; // type:function size:0x78 scope:global align:4
+aSNMgr_move_event_arrange = .text:0x00127DC4; // type:function size:0xF0 scope:global align:4
+aSNMgr_move_event_set = .text:0x00127EB4; // type:function size:0x84 scope:global align:4
+aSNMgr_get_event_name = .text:0x00127F38; // type:function size:0x7C scope:global align:4
+aSNMgr_clear_make_npc = .text:0x00127FB4; // type:function size:0x3C scope:global align:4
+aSNMgr_get_make_npc_idx = .text:0x00127FF0; // type:function size:0x44 scope:global align:4
+aSNMgr_set_make_npc = .text:0x00128034; // type:function size:0xA0 scope:global align:4
+aSNMgr_make_npc = .text:0x001280D4; // type:function size:0x10C scope:global align:4
+aSNMgr_set_to_block = .text:0x001281E0; // type:function size:0x128 scope:global align:4
+aSNMgr_walk_to_next_block = .text:0x00128308; // type:function size:0x184 scope:global align:4
+aSNMgr_check_set_arrive = .text:0x0012848C; // type:function size:0x90 scope:global align:4
+aSNMgr_go_back_home_sub = .text:0x0012851C; // type:function size:0x8C scope:global align:4
+aSNMgr_go_back_home = .text:0x001285A8; // type:function size:0x78 scope:global align:4
+aSNMgr_check_into_block_npc_sum = .text:0x00128620; // type:function size:0x78 scope:global align:4
+aSNMgr_check_in_block_max = .text:0x00128698; // type:function size:0x4C scope:global align:4
+aSNMgr_walk_to_goal_npc = .text:0x001286E4; // type:function size:0xB8 scope:global align:4
+aSNMgr_walk_npc = .text:0x0012879C; // type:function size:0x19C scope:global align:4
+aSNMgr_set_go_home_status_sub = .text:0x00128938; // type:function size:0xD0 scope:global align:4
+aSNMgr_set_go_home_status = .text:0x00128A08; // type:function size:0xF8 scope:global align:4
+aSNMgr_set_stay_home_status = .text:0x00128B00; // type:function size:0x98 scope:global align:4
+aSNMgr_force_go_home_event_start = .text:0x00128B98; // type:function size:0x154 scope:global align:4
+aSNMgr_force_go_home = .text:0x00128CEC; // type:function size:0x150 scope:global align:4
+aSNMgr_reset_npc = .text:0x00128E3C; // type:function size:0xA4 scope:global align:4
+aSNMgr_set_npc_regular = .text:0x00128EE0; // type:function size:0x1B0 scope:global align:4
+aSNMgr_set_npc_guest = .text:0x00129090; // type:function size:0x15C scope:global align:4
+aSNMgr_setup_set_proc = .text:0x001291EC; // type:function size:0x30 scope:global align:4
+aSNMgr_actor_move = .text:0x0012921C; // type:function size:0x110 scope:global align:4
+aSOG_gyoei_clear_set_data = .text:0x0012932C; // type:function size:0x24 scope:global align:4
+aSOG_get_water_attribute_position = .text:0x00129350; // type:function size:0x10C scope:global align:4
+aSOG_get_fall_attribute_position = .text:0x0012945C; // type:function size:0xB0 scope:global align:4
+aSOG_gyoei_place_check = .text:0x0012950C; // type:function size:0x68 scope:global align:4
+aSOG_gyoei_get_idx_sub = .text:0x00129574; // type:function size:0x134 scope:global align:4
+aSOG_gyoei_get_idx = .text:0x001296A8; // type:function size:0xD8 scope:global align:4
+aSOG_gyoei_set_gyoei_data = .text:0x00129780; // type:function size:0x3CC scope:global align:4
+aSOG_gyoei_decide_gyoei = .text:0x00129B4C; // type:function size:0x80 scope:global align:4
+aSOG_gyoei_make = .text:0x00129BCC; // type:function size:0xE4 scope:global align:4
+aSOG_gyoei_check_water_unit_in_block = .text:0x00129CB0; // type:function size:0x88 scope:global align:4
+aSOG_gyo_chk_live_gyoei = .text:0x00129D38; // type:function size:0x54 scope:global align:4
+aSOG_gyoei_block_check = .text:0x00129D8C; // type:function size:0x7C scope:global align:4
+aSOG_gyoei_set_with_list = .text:0x00129E08; // type:function size:0xBC scope:global align:4
+aSOG_gyoei_get_time_no = .text:0x00129EC4; // type:function size:0x54 scope:global align:4
+aSOG_gyoei_renew_term_info = .text:0x00129F18; // type:function size:0x58 scope:global align:4
+aSOG_gyoei_chk_term_info = .text:0x00129F70; // type:function size:0x1E0 scope:global align:4
+aSOG_gyoei_check_fishing_event = .text:0x0012A150; // type:function size:0xA8 scope:global align:4
+aSOG_gyoei_copy_range_data = .text:0x0012A1F8; // type:function size:0x78 scope:global align:4
+aSOG_add_kaseki_range_data = .text:0x0012A270; // type:function size:0x80 scope:global align:4
+aSOG_gyoei_make_river_range_data = .text:0x0012A2F0; // type:function size:0x48 scope:global align:4
+aSOG_gyoei_make_fishing_event_range_data = .text:0x0012A338; // type:function size:0x3C scope:global align:4
+aSOG_gyoei_make_sea_range_data = .text:0x0012A374; // type:function size:0x74 scope:global align:4
+aSOG_gyoei_make_offing_range_data_sub = .text:0x0012A3E8; // type:function size:0x30 scope:global align:4
+aSOG_gyoei_make_offing_range_data = .text:0x0012A418; // type:function size:0x78 scope:global align:4
+aSOG_gyoei_make_pool_range_data = .text:0x0012A490; // type:function size:0x4C scope:global align:4
+aSOG_gyoei_make_island_range_data = .text:0x0012A4DC; // type:function size:0x68 scope:global align:4
+aSOG_gyoei_make_range_data = .text:0x0012A544; // type:function size:0x15C scope:global align:4
+aSOG_gyoei_set = .text:0x0012A6A0; // type:function size:0x9C scope:global align:4
+aSOI_ins_clear_set_data = .text:0x0012A73C; // type:function size:0x5C scope:global align:4
+aSOI_set_live_ut = .text:0x0012A798; // type:function size:0x64 scope:global align:4
+aSOI_get_live_ut_sub = .text:0x0012A7FC; // type:function size:0x28 scope:global align:4
+aSOI_get_live_ut = .text:0x0012A824; // type:function size:0xF0 scope:global align:4
+aSOI_hour_to_term = .text:0x0012A914; // type:function size:0x60 scope:global align:4
+aSOI_ins_chk_live_insect = .text:0x0012A974; // type:function size:0x54 scope:global align:4
+aSOI_ins_block_check = .text:0x0012A9C8; // type:function size:0x6C scope:global align:4
+aSOI_ins_renewal_time = .text:0x0012AA34; // type:function size:0x54 scope:global align:4
+aSOI_ins_not_cmp_time = .text:0x0012AA88; // type:function size:0x6C scope:global align:4
+aSOI_ins_renew_term_info = .text:0x0012AAF4; // type:function size:0x58 scope:global align:4
+aSOI_ins_chk_term_info = .text:0x0012AB4C; // type:function size:0x1B4 scope:global align:4
+aSOI_ins_add_range_info = .text:0x0012AD00; // type:function size:0x74 scope:global align:4
+aSOI_ins_make_insect_normal_range_data = .text:0x0012AD74; // type:function size:0x90 scope:global align:4
+aSOI_ins_make_insect_island_range_data = .text:0x0012AE04; // type:function size:0x84 scope:global align:4
+aSOI_ins_make_hitodama_range_data = .text:0x0012AE88; // type:function size:0x5C scope:global align:4
+aSOI_check_hitodama_block_data = .text:0x0012AEE4; // type:function size:0x44 scope:global align:4
+aSOI_check_countdown_event = .text:0x0012AF28; // type:function size:0x168 scope:global align:4
+aSOI_check_hitodama_set_block = .text:0x0012B090; // type:function size:0x90 scope:global align:4
+aSOI_ins_renew_check_range_table = .text:0x0012B120; // type:function size:0xEC scope:global align:4
+aSOI_ins_make_range_data = .text:0x0012B20C; // type:function size:0x16C scope:global align:4
+aSOI_ins_field_fg_check_get = .text:0x0012B378; // type:function size:0xD0 scope:global align:4
+aSOI_ins_field_attr_check_get_sub = .text:0x0012B448; // type:function size:0xAC scope:global align:4
+aSOI_ins_field_attr_check_get = .text:0x0012B4F4; // type:function size:0x9C scope:global align:4
+aSOI_ins_field_tree_check_get = .text:0x0012B590; // type:function size:0x118 scope:global align:4
+aSOI_ins_field_attr_and_fg_check_get_sub = .text:0x0012B6A8; // type:function size:0x68 scope:global align:4
+aSOI_ins_field_attr_and_fg_check_get = .text:0x0012B710; // type:function size:0xB0 scope:global align:4
+aSOI_ins_change_how_to_make = .text:0x0012B7C0; // type:function size:0x34 scope:global align:4
+aSOI_ins_clear_prob = .text:0x0012B7F4; // type:function size:0x30 scope:global align:4
+aSOI_ins_limit_insect_data = .text:0x0012B824; // type:function size:0x70 scope:global align:4
+aSOI_ins_get_idx = .text:0x0012B894; // type:function size:0x15C scope:global align:4
+aSOI_ins_set_insect_data = .text:0x0012B9F0; // type:function size:0x174 scope:global align:4
+aSOI_ins_chk_live_area_type_free = .text:0x0012BB64; // type:function size:0x30 scope:global align:4
+aSOI_ins_chk_live_area_type_tree = .text:0x0012BB94; // type:function size:0x24 scope:global align:4
+aSOI_ins_chk_live_area_type_free_without_rain_and_snow = .text:0x0012BBB8; // type:function size:0x54 scope:global align:4
+aSOI_ins_chk_live_area_type_flower = .text:0x0012BC0C; // type:function size:0x4C scope:global align:4
+aSOI_ins_chk_live_area_type_flower_or_free = .text:0x0012BC58; // type:function size:0x88 scope:global align:4
+aSOI_ins_chk_live_area_type_flower_rain = .text:0x0012BCE0; // type:function size:0x4C scope:global align:4
+aSOI_ins_chk_live_area_type_pond = .text:0x0012BD2C; // type:function size:0x88 scope:global align:4
+aSOI_ins_chk_live_area_type_other = .text:0x0012BDB4; // type:function size:0x28 scope:global align:4
+aSOI_ins_chk_live_area_type_dig_hole = .text:0x0012BDDC; // type:function size:0x30 scope:global align:4
+aSOI_ins_chk_live_area_type_nothing = .text:0x0012BE0C; // type:function size:0x8 scope:global align:4
+aSOI_make_live_ut = .text:0x0012BE14; // type:function size:0x210 scope:global align:4
+aSOI_ins_decide_insect = .text:0x0012C024; // type:function size:0x184 scope:global align:4
+aSOI_ins_make_sub = .text:0x0012C1A8; // type:function size:0x128 scope:global align:4
+aSOI_ins_make = .text:0x0012C2D0; // type:function size:0x100 scope:global align:4
+aSOI_insect_set = .text:0x0012C3D0; // type:function size:0xD0 scope:global align:4
+aSD_ItemName2ReservePointName = .text:0x0012C4A0; // type:function size:0x284 scope:global align:4
+aSD_MakeHukubukuroFg = .text:0x0012C724; // type:function size:0xBC scope:global align:4
+aSD_MakePlantFg_normal = .text:0x0012C7E0; // type:function size:0x54 scope:global align:4
+aSD_MakePlantFg_hal = .text:0x0012C834; // type:function size:0x80 scope:global align:4
+aSD_MakePlantFg = .text:0x0012C8B4; // type:function size:0x40 scope:global align:4
+aSD_MakeGoodsFg = .text:0x0012C8F4; // type:function size:0x74 scope:global align:4
+aSD_MakeReaGoodsFg = .text:0x0012C968; // type:function size:0x30 scope:global align:4
+aSD_MakeLotteryGoodsFg = .text:0x0012C998; // type:function size:0x58 scope:global align:4
+aSD_SetClipProc = .text:0x0012C9F0; // type:function size:0x54 scope:global align:4
+aSD_GetGoodsInfo = .text:0x0012CA44; // type:function size:0xA8 scope:global align:4
+aSD_SetReservedPointFill000 = .text:0x0012CAEC; // type:function size:0x5C scope:global align:4
+Shop_Design_Actor_ct = .text:0x0012CB48; // type:function size:0x1A8 scope:global align:4
+Shop_Design_Actor_dt = .text:0x0012CCF0; // type:function size:0x24 scope:global align:4
+Shop_Design_Actor_draw = .text:0x0012CD14; // type:function size:0x4 scope:global align:4
+Shop_Design_Actor_move = .text:0x0012CD18; // type:function size:0x4 scope:global align:4
+aSD_UnitNum2ItemNo = .text:0x0012CD1C; // type:function size:0x1A0 scope:global align:4
+aSD_ReportGoodsSales = .text:0x0012CEBC; // type:function size:0x3B8 scope:global align:4
+Shop_Goods_Actor_single_get_angle_y = .text:0x0012D274; // type:function size:0x2C scope:global align:4
+Shop_Goods_Actor_single_set_angle_y = .text:0x0012D2A0; // type:function size:0x24 scope:global align:4
+Shop_Goods_draw_ta_set = .text:0x0012D2C4; // type:function size:0x3C scope:global align:4
+Shop_Goods_draw_ta_clr = .text:0x0012D300; // type:function size:0x38 scope:global align:4
+Shop_Goods_Actor_player_drop_entry = .text:0x0012D338; // type:function size:0x224 scope:global align:4
+Shop_Goods_Actor_drop_entry = .text:0x0012D55C; // type:function size:0x15C scope:global align:4
+Shop_Goods_Actor_drop_destruct = .text:0x0012D6B8; // type:function size:0xAC scope:global align:4
+Shop_Goods_Actor_drop_move = .text:0x0012D764; // type:function size:0x2EC scope:global align:4
+Shop_Goods_Actor_single_drawR = .text:0x0012DA50; // type:function size:0x25C scope:global align:4
+Shop_Goods_Actor_single_draw = .text:0x0012DCAC; // type:function size:0x80 scope:global align:4
+Shop_Goods_Actor_drop_draw = .text:0x0012DD2C; // type:function size:0xD0 scope:global align:4
+aSG_CountPictureKind = .text:0x0012DDFC; // type:function size:0x38 scope:global align:4
+Shop_Goods_Actor_ct = .text:0x0012DE34; // type:function size:0x158 scope:global align:4
+Shop_Goods_Actor_dt = .text:0x0012DF8C; // type:function size:0x3C scope:global align:4
+Shop_Goods_Actor_move = .text:0x0012DFC8; // type:function size:0x20 scope:global align:4
+aSG_DrawGoods = .text:0x0012DFE8; // type:function size:0x250 scope:global align:4
+aSG_DrawGoodsPicture = .text:0x0012E238; // type:function size:0x1B0 scope:global align:4
+Shop_Goods_Actor_draw = .text:0x0012E3E8; // type:function size:0x64 scope:global align:4
+aSI_GetShopIndoorBank = .text:0x0012E44C; // type:function size:0x84 scope:global align:4
+aSI_CopyFloorTexture = .text:0x0012E4D0; // type:function size:0x88 scope:global align:4
+aSI_CopyWallTexture = .text:0x0012E558; // type:function size:0x88 scope:global align:4
+aSI_ShopIndoorCopy = .text:0x0012E5E0; // type:function size:0x64 scope:global align:4
+aSI_SetClipProc = .text:0x0012E644; // type:function size:0x6C scope:global align:4
+Shop_Indoor_Actor_ct = .text:0x0012E6B0; // type:function size:0x114 scope:global align:4
+Shop_Indoor_Actor_dt = .text:0x0012E7C4; // type:function size:0x74 scope:global align:4
+aSI_DrawShopFloor = .text:0x0012E838; // type:function size:0x28C scope:global align:4
+aSI_DrawShopFukubiki = .text:0x0012EAC4; // type:function size:0x1A4 scope:global align:4
+aSI_DrawShopWall = .text:0x0012EC68; // type:function size:0x250 scope:global align:4
+aSI_DrawShopIndoor = .text:0x0012EEB8; // type:function size:0x58 scope:global align:4
+Shop_Indoor_Actor_draw = .text:0x0012EF10; // type:function size:0x20 scope:global align:4
+Shop_Indoor_Actor_move = .text:0x0012EF30; // type:function size:0x4 scope:global align:4
+aSI_ChangeCarpet = .text:0x0012EF34; // type:function size:0xA0 scope:global align:4
+aSI_ChangeWall = .text:0x0012EFD4; // type:function size:0x90 scope:global align:4
+aSI_Change2Default = .text:0x0012F064; // type:function size:0x98 scope:global align:4
+aSI_IndoorDmaAgain = .text:0x0012F0FC; // type:function size:0x68 scope:global align:4
+aSL_SetShopRenewalChirashi_Notice = .text:0x0012F164; // type:function size:0x19C scope:global align:4
+aSL_SetRenewalChiraswhi_Notice = .text:0x0012F300; // type:function size:0x10C scope:global align:4
+aSL_GroundClean = .text:0x0012F40C; // type:function size:0xD0 scope:global align:4
+aSL_RewriteShopFg = .text:0x0012F4DC; // type:function size:0xAC scope:global align:4
+aSL_RenewShop = .text:0x0012F588; // type:function size:0x134 scope:global align:4
+Shop_Level_Actor_ct = .text:0x0012F6BC; // type:function size:0xE4 scope:global align:4
+Shop_Level_Actor_dt = .text:0x0012F7A0; // type:function size:0x4 scope:global align:4
+Shop_Level_Actor_draw = .text:0x0012F7A4; // type:function size:0x4 scope:global align:4
+aSL_JudgeRenewShop = .text:0x0012F7A8; // type:function size:0x2F4 scope:global align:4
+aSL_ExchangeShopGoodsInGame = .text:0x0012FA9C; // type:function size:0xA4 scope:global align:4
+aSL_ReportShopOpen2Event = .text:0x0012FB40; // type:function size:0x54 scope:global align:4
+Shop_Level_Actor_move = .text:0x0012FB94; // type:function size:0x88 scope:global align:4
+aSM_CountCurrentBlockManekin = .text:0x0012FC1C; // type:function size:0x8C scope:global align:4
+aSM_SucureBank = .text:0x0012FCA8; // type:function size:0x24 scope:global align:4
+aSM_SecureManakinBank = .text:0x0012FCCC; // type:function size:0xEC scope:global align:4
+aSM_SearchManekinPlace = .text:0x0012FDB8; // type:function size:0xC8 scope:global align:4
+aSM_ManekinCt = .text:0x0012FE80; // type:function size:0x244 scope:global align:4
+aSM_SecureManekinSubActor = .text:0x001300C4; // type:function size:0x54 scope:global align:4
+aSM_GetNowBlockNumber = .text:0x00130118; // type:function size:0x74 scope:global align:4
+aSM_DmaManekinTexPal = .text:0x0013018C; // type:function size:0xA8 scope:global align:4
+aSM_SetClipProc = .text:0x00130234; // type:function size:0x60 scope:global align:4
+Shop_Manekin_Actor_ct = .text:0x00130294; // type:function size:0x90 scope:global align:4
+Shop_Manekin_Actor_dt = .text:0x00130324; // type:function size:0x7C scope:global align:4
+Shop_Manekin_Actor_draw = .text:0x001303A0; // type:function size:0x1AC scope:global align:4
+Shop_Manekin_Actor_move = .text:0x0013054C; // type:function size:0x4 scope:global align:4
+aSM_ManekinDmaAgain = .text:0x00130550; // type:function size:0xC0 scope:global align:4
+aSM_Change2NakedManekin = .text:0x00130610; // type:function size:0x90 scope:global align:4
+aSM_Naked2Cloth = .text:0x001306A0; // type:function size:0x90 scope:global align:4
+aShopUmbrella_CountCurrentBlockUmbrella = .text:0x00130730; // type:function size:0x84 scope:global align:4
+aShopUmbrella_SearchUmbrellaPlace = .text:0x001307B4; // type:function size:0xC0 scope:global align:4
+aShopUmbrella_UmbrellaCt = .text:0x00130874; // type:function size:0x270 scope:global align:4
+aShopUmbrella_SecureUmbrellaSubActor = .text:0x00130AE4; // type:function size:0x54 scope:global align:4
+aShopUmbrella_GetNowBlockNumber = .text:0x00130B38; // type:function size:0x74 scope:global align:4
+aShopUmbrella_SetClipProc = .text:0x00130BAC; // type:function size:0x54 scope:global align:4
+Shop_Umbrella_Actor_ct = .text:0x00130C00; // type:function size:0x64 scope:global align:4
+Shop_Umbrella_Actor_dt = .text:0x00130C64; // type:function size:0x7C scope:global align:4
+Shop_Umbrella_Actor_draw = .text:0x00130CE0; // type:function size:0x17C scope:global align:4
+aShopUmbrella_ProcWait = .text:0x00130E5C; // type:function size:0x10 scope:global align:4
+aShopUmbrella_ProcDelete = .text:0x00130E6C; // type:function size:0x5C scope:global align:4
+aShopUmbrella_ProcNone = .text:0x00130EC8; // type:function size:0x10 scope:global align:4
+Shop_Umbrella_Actor_move = .text:0x00130ED8; // type:function size:0x84 scope:global align:4
+aShopUmbrella_UmbrellaDmaAgain = .text:0x00130F5C; // type:function size:0x4 scope:global align:4
+aShopUmbrella_DeleteUmbrella = .text:0x00130F60; // type:function size:0x74 scope:global align:4
+aSIGN_actor_ct = .text:0x00130FD4; // type:function size:0x48 scope:global align:4
+aSIGN_actor_dt = .text:0x0013101C; // type:function size:0x18 scope:global align:4
+aSIGN_no_cull_check = .text:0x00131034; // type:function size:0x160 scope:global align:4
+aSIGN_no_cull_talk_area = .text:0x00131194; // type:function size:0x58 scope:global align:4
+aSIGN_draw_anime_check = .text:0x001311EC; // type:function size:0x4C scope:global align:4
+aSIGN_draw_set = .text:0x00131238; // type:function size:0x1A4 scope:global align:4
+aSIGN_actor_set_draw = .text:0x001313DC; // type:function size:0x220 scope:global align:4
+aSIGN_actor_BkandUtNum_formal = .text:0x001315FC; // type:function size:0xFC scope:global align:4
+aSIGN_actor_set_target = .text:0x001316F8; // type:function size:0x274 scope:global align:4
+aSIGN_search_exist_npc_inCircle_forSign = .text:0x0013196C; // type:function size:0xF8 scope:global align:4
+aSIGN_single_anime_check = .text:0x00131A64; // type:function size:0xA4 scope:global align:4
+aSIGN_set_white_sign = .text:0x00131B08; // type:function size:0xE0 scope:global align:4
+aSIGN_erase_white_sign = .text:0x00131BE8; // type:function size:0x13C scope:global align:4
+aSIGN_set_talk_info = .text:0x00131D24; // type:function size:0xB0 scope:global align:4
+aSIGN_talk = .text:0x00131DD4; // type:function size:0x130 scope:global align:4
+aSIGN_talk_end = .text:0x00131F04; // type:function size:0x48 scope:global align:4
+aSIGN_wait = .text:0x00131F4C; // type:function size:0x94 scope:global align:4
+aSIGN_menu_open_wait = .text:0x00131FE0; // type:function size:0x78 scope:global align:4
+aSIGN_menu_end_wait = .text:0x00132058; // type:function size:0xB8 scope:global align:4
+aSIGN_setup_action = .text:0x00132110; // type:function size:0x18 scope:global align:4
+aSIGN_change_my_original = .text:0x00132128; // type:function size:0xA0 scope:global align:4
+aSIGN_single_birth = .text:0x001321C8; // type:function size:0x1C8 scope:global align:4
+aSIGN_single_erase = .text:0x00132390; // type:function size:0x140 scope:global align:4
+aSIGN_single_all_check = .text:0x001324D0; // type:function size:0x2C8 scope:global align:4
+aSIGN_actor_move = .text:0x00132798; // type:function size:0xC8 scope:global align:4
+aSIGN_random_set = .text:0x00132860; // type:function size:0x148 scope:global align:4
+aSIGN_all_clear = .text:0x001329A8; // type:function size:0xD4 scope:global align:4
+aSIGN_single_all_draw = .text:0x00132A7C; // type:function size:0x208 scope:global align:4
+aSIGN_actor_draw = .text:0x00132C84; // type:function size:0x29C scope:global align:4
+aSIGN_copy_vtx = .text:0x00132F20; // type:function size:0x54 scope:global align:4
+aSIGN_draw_shadow = .text:0x00132F74; // type:function size:0x10C scope:global align:4
+aSMAN_actor_ct = .text:0x00133080; // type:function size:0x1A8 scope:global align:4
+aSNOWMAN_Set_PSnowman_info = .text:0x00133228; // type:function size:0xB8 scope:global align:4
+aSMAN_actor_dt = .text:0x001332E0; // type:function size:0x208 scope:global align:4
+aSMAN_GetSnowmanPresentMail = .text:0x001334E8; // type:function size:0x114 scope:global align:4
+aSMAN_SendPresentMail = .text:0x001335FC; // type:function size:0x74 scope:global align:4
+aSNOWMAN_player_block_check = .text:0x00133670; // type:function size:0xAC scope:global align:4
+aSMAN_FG_Position_Get = .text:0x0013371C; // type:function size:0x274 scope:global align:4
+aSMAN_House_Tree_Rev_Check = .text:0x00133990; // type:function size:0x48 scope:global align:4
+aSMAN_Make_Effect_Ground = .text:0x001339D8; // type:function size:0x208 scope:global align:4
+aSMAN_get_hole_offset = .text:0x00133BE0; // type:function size:0x174 scope:global align:4
+aSMAN_get_ground_norm = .text:0x00133D54; // type:function size:0x370 scope:global align:4
+aSMAN_player_push_free = .text:0x001340C4; // type:function size:0x40 scope:global align:4
+aSMAN_player_push_HitWallCheck = .text:0x00134104; // type:function size:0x94 scope:global align:4
+aSMAN_get_norm_push_angle_distance = .text:0x00134198; // type:function size:0x6C scope:global align:4
+aSMAN_player_push_scroll_request = .text:0x00134204; // type:function size:0xD4 scope:global align:4
+aSMAN_set_speed_relations_norm_player_push = .text:0x001342D8; // type:function size:0x168 scope:global align:4
+aSMAN_get_oc_actor = .text:0x00134440; // type:function size:0x20 scope:global align:4
+aSMAN_MakeBreakEffect = .text:0x00134460; // type:function size:0xE4 scope:global align:4
+aSMAN_status_check_in_move = .text:0x00134544; // type:function size:0xB8 scope:global align:4
+aSMAN_position_move = .text:0x001345FC; // type:function size:0xB8 scope:global align:4
+aSMAN_BGcheck = .text:0x001346B4; // type:function size:0x358 scope:global align:4
+aSMAN_snowman_hit_check = .text:0x00134A0C; // type:function size:0x27C scope:global align:4
+aSMAN_OBJcheck = .text:0x00134C88; // type:function size:0x1B4 scope:global align:4
+aSMAN_set_speed_relations_norm = .text:0x00134E3C; // type:function size:0x13C scope:global align:4
+aSMAN_set_speed_relations_swim = .text:0x00134F78; // type:function size:0x1A4 scope:global align:4
+aSMAN_calc_axis = .text:0x0013511C; // type:function size:0x10C scope:global align:4
+aSMAN_calc_scale = .text:0x00135228; // type:function size:0x130 scope:global align:4
+aSMAN_calc_objChkRange = .text:0x00135358; // type:function size:0x118 scope:global align:4
+aSMAN_Player_push_Request = .text:0x00135470; // type:function size:0x204 scope:global align:4
+aSMAN_process_normal_init = .text:0x00135674; // type:function size:0x28 scope:global align:4
+aSMAN_process_normal = .text:0x0013569C; // type:function size:0x8C scope:global align:4
+aSMAN_process_player_push_init = .text:0x00135728; // type:function size:0xBC scope:global align:4
+aSMAN_process_player_push = .text:0x001357E4; // type:function size:0x670 scope:global align:4
+aSMAN_process_player_push_scroll_init = .text:0x00135E54; // type:function size:0x10 scope:global align:4
+aSMAN_process_player_push_scroll = .text:0x00135E64; // type:function size:0x170 scope:global align:4
+aSMAN_process_swim_init = .text:0x00135FD4; // type:function size:0x28 scope:global align:4
+aSMAN_process_swim = .text:0x00135FFC; // type:function size:0x1E8 scope:global align:4
+aSMAN_process_air_init = .text:0x001361E4; // type:function size:0xF8 scope:global align:4
+aSMAN_process_air = .text:0x001362DC; // type:function size:0x408 scope:global align:4
+aSMAN_process_hole_init = .text:0x001366E4; // type:function size:0x38 scope:global align:4
+aSMAN_process_hole = .text:0x0013671C; // type:function size:0x8 scope:global align:4
+aSMAN_decide_scale_result = .text:0x00136724; // type:function size:0x8C scope:global align:4
+aSMAN_get_snowman_indx = .text:0x001367B0; // type:function size:0x3C scope:global align:4
+aSMAN_process_combine_head_jump_init = .text:0x001367EC; // type:function size:0x21C scope:global align:4
+aSMAN_process_combine_head_jump = .text:0x00136A08; // type:function size:0x380 scope:global align:4
+aSMAN_set_talk_info_combine_head_init = .text:0x00136D88; // type:function size:0x84 scope:global align:4
+aSMAN_set_talk_info_normal_init = .text:0x00136E0C; // type:function size:0x38 scope:global align:4
+aSMAN_process_combine_head_init = .text:0x00136E44; // type:function size:0x148 scope:global align:4
+aSMAN_process_combine_head = .text:0x00136F8C; // type:function size:0x108 scope:global align:4
+aSMAN_process_combine_body_init = .text:0x00137094; // type:function size:0x130 scope:global align:4
+aSMAN_process_combine_body = .text:0x001371C4; // type:function size:0xB0 scope:global align:4
+aSMAN_actor_move = .text:0x00137274; // type:function size:0x12C scope:global align:4
+aSMAN_actor_draw = .text:0x001373A0; // type:function size:0x108 scope:global align:4
+aTA1_actor_ct = .text:0x001374A8; // type:function size:0x24 scope:global align:4
+aTA1_destruct = .text:0x001374CC; // type:function size:0x20 scope:global align:4
+aTA1_setupAction = .text:0x001374EC; // type:function size:0x20 scope:global align:4
+aTA1_actor_move = .text:0x0013750C; // type:function size:0x4C scope:global align:4
+aTA1_actor_draw = .text:0x00137558; // type:function size:0xA4 scope:global align:4
+aTBG1_actor_ct = .text:0x001375FC; // type:function size:0x24 scope:global align:4
+aTBG1_destruct = .text:0x00137620; // type:function size:0x20 scope:global align:4
+aTBG1_setupAction = .text:0x00137640; // type:function size:0x20 scope:global align:4
+aTBG1_actor_move = .text:0x00137660; // type:function size:0x4C scope:global align:4
+aTBG1_actor_draw = .text:0x001376AC; // type:function size:0xA4 scope:global align:4
+aTBG2_actor_ct = .text:0x00137750; // type:function size:0x24 scope:global align:4
+aTBG2_destruct = .text:0x00137774; // type:function size:0x20 scope:global align:4
+aTBG2_setupAction = .text:0x00137794; // type:function size:0x20 scope:global align:4
+aTBG2_actor_move = .text:0x001377B4; // type:function size:0x4C scope:global align:4
+aTBG2_actor_draw = .text:0x00137800; // type:function size:0xA4 scope:global align:4
+aTB1_actor_ct = .text:0x001378A4; // type:function size:0x24 scope:global align:4
+aTB1_destruct = .text:0x001378C8; // type:function size:0x20 scope:global align:4
+aTB1_setupAction = .text:0x001378E8; // type:function size:0x20 scope:global align:4
+aTB1_actor_move = .text:0x00137908; // type:function size:0x4C scope:global align:4
+aTB1_actor_draw = .text:0x00137954; // type:function size:0xA4 scope:global align:4
+aTB2_actor_ct = .text:0x001379F8; // type:function size:0x24 scope:global align:4
+aTB2_destruct = .text:0x00137A1C; // type:function size:0x20 scope:global align:4
+aTB2_setupAction = .text:0x00137A3C; // type:function size:0x20 scope:global align:4
+aTB2_actor_move = .text:0x00137A5C; // type:function size:0x4C scope:global align:4
+aTB2_actor_draw = .text:0x00137AA8; // type:function size:0xA4 scope:global align:4
+aTB3_actor_ct = .text:0x00137B4C; // type:function size:0x24 scope:global align:4
+aTB3_destruct = .text:0x00137B70; // type:function size:0x20 scope:global align:4
+aTB3_setupAction = .text:0x00137B90; // type:function size:0x20 scope:global align:4
+aTB3_actor_move = .text:0x00137BB0; // type:function size:0x4C scope:global align:4
+aTB3_actor_draw = .text:0x00137BFC; // type:function size:0xA4 scope:global align:4
+aTB4_actor_ct = .text:0x00137CA0; // type:function size:0x24 scope:global align:4
+aTB4_destruct = .text:0x00137CC4; // type:function size:0x20 scope:global align:4
+aTB4_setupAction = .text:0x00137CE4; // type:function size:0x20 scope:global align:4
+aTB4_actor_move = .text:0x00137D04; // type:function size:0x4C scope:global align:4
+aTB4_actor_draw = .text:0x00137D50; // type:function size:0xA4 scope:global align:4
+aTCB1_actor_ct = .text:0x00137DF4; // type:function size:0x24 scope:global align:4
+aTCB1_destruct = .text:0x00137E18; // type:function size:0x20 scope:global align:4
+aTCB1_setupAction = .text:0x00137E38; // type:function size:0x20 scope:global align:4
+aTCB1_actor_move = .text:0x00137E58; // type:function size:0x4C scope:global align:4
+aTCB1_actor_draw = .text:0x00137EA4; // type:function size:0xA4 scope:global align:4
+aTCR_actor_ct = .text:0x00137F48; // type:function size:0x24 scope:global align:4
+aTCR_calc_scale = .text:0x00137F6C; // type:function size:0x6C scope:global align:4
+aTCR_takeout = .text:0x00137FD8; // type:function size:0x24 scope:global align:4
+aTCR_putaway = .text:0x00137FFC; // type:function size:0x24 scope:global align:4
+aTCR_destruct = .text:0x00138020; // type:function size:0x20 scope:global align:4
+aTCR_setupAction = .text:0x00138040; // type:function size:0x38 scope:global align:4
+aTCR_actor_move = .text:0x00138078; // type:function size:0x4C scope:global align:4
+aTCR_actor_draw = .text:0x001380C4; // type:function size:0xE8 scope:global align:4
+aTFL_calc_angl = .text:0x001381AC; // type:function size:0x6C scope:global align:4
+aTFL_make_vtx = .text:0x00138218; // type:function size:0x204 scope:global align:4
+aTFL_actor_draw = .text:0x0013841C; // type:function size:0x170 scope:global align:4
+aTHB_actor_ct = .text:0x0013858C; // type:function size:0x24 scope:global align:4
+aTHB_actor_dt = .text:0x001385B0; // type:function size:0x4 scope:global align:4
+aTHB_calc_scale = .text:0x001385B4; // type:function size:0x6C scope:global align:4
+aTHB_takeout = .text:0x00138620; // type:function size:0x24 scope:global align:4
+aTHB_putaway = .text:0x00138644; // type:function size:0x24 scope:global align:4
+aTHB_destruct = .text:0x00138668; // type:function size:0x20 scope:global align:4
+aTHB_setupAction = .text:0x00138688; // type:function size:0x38 scope:global align:4
+aTHB_actor_move = .text:0x001386C0; // type:function size:0x4C scope:global align:4
+aTHB_actor_draw = .text:0x0013870C; // type:function size:0xE8 scope:global align:4
+aTHS1_actor_ct = .text:0x001387F4; // type:function size:0x24 scope:global align:4
+aTHS1_destruct = .text:0x00138818; // type:function size:0x20 scope:global align:4
+aTHS1_setupAction = .text:0x00138838; // type:function size:0x20 scope:global align:4
+aTHS1_actor_move = .text:0x00138858; // type:function size:0x4C scope:global align:4
+aTHS1_actor_draw = .text:0x001388A4; // type:function size:0xA4 scope:global align:4
+aTHT1_actor_ct = .text:0x00138948; // type:function size:0x24 scope:global align:4
+aTHT1_destruct = .text:0x0013896C; // type:function size:0x20 scope:global align:4
+aTHT1_setupAction = .text:0x0013898C; // type:function size:0x20 scope:global align:4
+aTHT1_actor_move = .text:0x001389AC; // type:function size:0x4C scope:global align:4
+aTHT1_actor_draw = .text:0x001389F8; // type:function size:0xA4 scope:global align:4
+aTHT2_actor_ct = .text:0x00138A9C; // type:function size:0x24 scope:global align:4
+aTHT2_destruct = .text:0x00138AC0; // type:function size:0x20 scope:global align:4
+aTHT2_setupAction = .text:0x00138AE0; // type:function size:0x20 scope:global align:4
+aTHT2_actor_move = .text:0x00138B00; // type:function size:0x4C scope:global align:4
+aTHT2_actor_draw = .text:0x00138B4C; // type:function size:0xA4 scope:global align:4
+aTHT3_actor_ct = .text:0x00138BF0; // type:function size:0x24 scope:global align:4
+aTHT3_destruct = .text:0x00138C14; // type:function size:0x20 scope:global align:4
+aTHT3_setupAction = .text:0x00138C34; // type:function size:0x20 scope:global align:4
+aTHT3_actor_move = .text:0x00138C54; // type:function size:0x4C scope:global align:4
+aTHT3_actor_draw = .text:0x00138CA0; // type:function size:0xA4 scope:global align:4
+aTKT_actor_ct = .text:0x00138D44; // type:function size:0x70 scope:global align:4
+aTKT_calc_scale = .text:0x00138DB4; // type:function size:0x78 scope:global align:4
+aTKT_takeout = .text:0x00138E2C; // type:function size:0x24 scope:global align:4
+aTKT_putaway = .text:0x00138E50; // type:function size:0x24 scope:global align:4
+aTKT_destruct = .text:0x00138E74; // type:function size:0x20 scope:global align:4
+aTKT_s_takeout = .text:0x00138E94; // type:function size:0x20 scope:global align:4
+aTKT_setupAction = .text:0x00138EB4; // type:function size:0x88 scope:global align:4
+aTKT_actor_move = .text:0x00138F3C; // type:function size:0x54 scope:global align:4
+aTKT_actor_draw = .text:0x00138F90; // type:function size:0x110 scope:global align:4
+aTNS_actor_ct = .text:0x001390A0; // type:function size:0x24 scope:global align:4
+aTNS_destruct = .text:0x001390C4; // type:function size:0x20 scope:global align:4
+aTNS_setupAction = .text:0x001390E4; // type:function size:0x24 scope:global align:4
+aTNS_actor_move = .text:0x00139108; // type:function size:0x114 scope:global align:4
+aTNS_actor_draw = .text:0x0013921C; // type:function size:0x130 scope:global align:4
+aTPT_actor_ct = .text:0x0013934C; // type:function size:0x24 scope:global align:4
+aTPT_calc_scale = .text:0x00139370; // type:function size:0x6C scope:global align:4
+aTPT_takeout = .text:0x001393DC; // type:function size:0x24 scope:global align:4
+aTPT_putaway = .text:0x00139400; // type:function size:0x24 scope:global align:4
+aTPT_destruct = .text:0x00139424; // type:function size:0x20 scope:global align:4
+aTPT_setupAction = .text:0x00139444; // type:function size:0x38 scope:global align:4
+aTPT_actor_move = .text:0x0013947C; // type:function size:0x4C scope:global align:4
+aTPT_actor_draw = .text:0x001394C8; // type:function size:0xE8 scope:global align:4
+aTRI1_actor_ct = .text:0x001395B0; // type:function size:0x24 scope:global align:4
+aTRI1_destruct = .text:0x001395D4; // type:function size:0x20 scope:global align:4
+aTRI1_setupAction = .text:0x001395F4; // type:function size:0x20 scope:global align:4
+aTRI1_actor_move = .text:0x00139614; // type:function size:0x4C scope:global align:4
+aTRI1_actor_draw = .text:0x00139660; // type:function size:0xA4 scope:global align:4
+aTRI2_actor_ct = .text:0x00139704; // type:function size:0x24 scope:global align:4
+aTRI2_destruct = .text:0x00139728; // type:function size:0x20 scope:global align:4
+aTRI2_setupAction = .text:0x00139748; // type:function size:0x20 scope:global align:4
+aTRI2_actor_move = .text:0x00139768; // type:function size:0x4C scope:global align:4
+aTRI2_actor_draw = .text:0x001397B4; // type:function size:0xA4 scope:global align:4
+aTTM_actor_draw = .text:0x00139858; // type:function size:0x1C4 scope:global align:4
+aTTB_actor_ct = .text:0x00139A1C; // type:function size:0x24 scope:global align:4
+aTTB_calc_scale = .text:0x00139A40; // type:function size:0x6C scope:global align:4
+aTTB_takeout = .text:0x00139AAC; // type:function size:0x24 scope:global align:4
+aTTB_putaway = .text:0x00139AD0; // type:function size:0x24 scope:global align:4
+aTTB_destruct = .text:0x00139AF4; // type:function size:0x20 scope:global align:4
+aTTB_setupAction = .text:0x00139B14; // type:function size:0x34 scope:global align:4
+aTTB_actor_move = .text:0x00139B48; // type:function size:0x4C scope:global align:4
+aTTB_actor_draw = .text:0x00139B94; // type:function size:0xE8 scope:global align:4
+aTUMB_actor_ct = .text:0x00139C7C; // type:function size:0x24 scope:global align:4
+aTUMB_OngenTrgStart_sub = .text:0x00139CA0; // type:function size:0x2C scope:global align:4
+aTUMB_OngenTrgStart = .text:0x00139CCC; // type:function size:0x48 scope:global align:4
+aTUMB_calc_model_scale_sub = .text:0x00139D14; // type:function size:0x104 scope:global align:4
+aTUMB_calc_model_scale = .text:0x00139E18; // type:function size:0x48 scope:global align:4
+aTUMB_anime_proc = .text:0x00139E60; // type:function size:0x70 scope:global align:4
+aTUMB_takeout_before = .text:0x00139ED0; // type:function size:0x30 scope:global align:4
+aTUMB_destruct = .text:0x00139F00; // type:function size:0x20 scope:global align:4
+aTUMB_setupAction = .text:0x00139F20; // type:function size:0x7C scope:global align:4
+aTUMB_actor_move = .text:0x00139F9C; // type:function size:0x60 scope:global align:4
+aTUMB_actor_draw = .text:0x00139FFC; // type:function size:0x224 scope:global align:4
+aTUT_actor_ct = .text:0x0013A220; // type:function size:0x24 scope:global align:4
+aTUT_calc_scale = .text:0x0013A244; // type:function size:0x6C scope:global align:4
+aTUT_takeout = .text:0x0013A2B0; // type:function size:0x24 scope:global align:4
+aTUT_putaway = .text:0x0013A2D4; // type:function size:0x24 scope:global align:4
+aTUT_destruct = .text:0x0013A2F8; // type:function size:0x20 scope:global align:4
+aTUT_setupAction = .text:0x0013A318; // type:function size:0x38 scope:global align:4
+aTUT_actor_move = .text:0x0013A350; // type:function size:0x4C scope:global align:4
+aTUT_actor_draw = .text:0x0013A39C; // type:function size:0xE8 scope:global align:4
+aTZN1_actor_ct = .text:0x0013A484; // type:function size:0x24 scope:global align:4
+aTZN1_destruct = .text:0x0013A4A8; // type:function size:0x20 scope:global align:4
+aTZN1_setupAction = .text:0x0013A4C8; // type:function size:0x20 scope:global align:4
+aTZN1_actor_move = .text:0x0013A4E8; // type:function size:0x4C scope:global align:4
+aTZN1_actor_draw = .text:0x0013A534; // type:function size:0xA4 scope:global align:4
+aTZN2_actor_ct = .text:0x0013A5D8; // type:function size:0x24 scope:global align:4
+aTZN2_destruct = .text:0x0013A5FC; // type:function size:0x20 scope:global align:4
+aTZN2_setupAction = .text:0x0013A61C; // type:function size:0x20 scope:global align:4
+aTZN2_actor_move = .text:0x0013A63C; // type:function size:0x4C scope:global align:4
+aTZN2_actor_draw = .text:0x0013A688; // type:function size:0xA4 scope:global align:4
+aTKC_actor_ct = .text:0x0013A72C; // type:function size:0xF0 scope:global align:4
+aTKC_actor_dt = .text:0x0013A81C; // type:function size:0x3C scope:global align:4
+aTKC_actor_move = .text:0x0013A858; // type:function size:0x7C scope:global align:4
+aTKC_irekae_2 = .text:0x0013A8D4; // type:function size:0x54 scope:global align:4
+aTKC_irekae_1 = .text:0x0013A928; // type:function size:0x70 scope:global align:4
+aTKC_goal = .text:0x0013A998; // type:function size:0xA4 scope:global align:4
+aTKC_go = .text:0x0013AA3C; // type:function size:0xF4 scope:global align:4
+aTKC_set = .text:0x0013AB30; // type:function size:0x84 scope:global align:4
+aTKC_ready = .text:0x0013ABB4; // type:function size:0x7C scope:global align:4
+aTKC_strech = .text:0x0013AC30; // type:function size:0x84 scope:global align:4
+aTKC_wait2 = .text:0x0013ACB4; // type:function size:0x5C scope:global align:4
+aTKC_wait = .text:0x0013AD10; // type:function size:0x6C scope:global align:4
+aTKC_setupAction = .text:0x0013AD7C; // type:function size:0x1C scope:global align:4
+aTKN1_set_request_act = .text:0x0013AD98; // type:function size:0x94 scope:local align:4
+aTKN1_normal_wait_init = .text:0x0013AE2C; // type:function size:0x38 scope:global align:4
+aTKN1_wait_init = .text:0x0013AE64; // type:function size:0x28 scope:global align:4
+aTKN1_run_init = .text:0x0013AE8C; // type:function size:0x5C scope:global align:4
+aTKN1_turn_d_init = .text:0x0013AEE8; // type:function size:0x5C scope:global align:4
+aTKN1_turn_f_init = .text:0x0013AF44; // type:function size:0x5C scope:global align:4
+aTKN1_turn_l_init = .text:0x0013AFA0; // type:function size:0x5C scope:global align:4
+aTKN1_turn_init = .text:0x0013AFFC; // type:function size:0x54 scope:global align:4
+aTKN1_run_turn_init = .text:0x0013B050; // type:function size:0x54 scope:global align:4
+aTKN1_warmup_init = .text:0x0013B0A4; // type:function size:0x94 scope:global align:4
+aTKN1_ready_init = .text:0x0013B138; // type:function size:0x64 scope:global align:4
+aTKN1_kokeru_init = .text:0x0013B19C; // type:function size:0x88 scope:global align:4
+aTKN1_getup_init = .text:0x0013B224; // type:function size:0x70 scope:global align:4
+aTKN1_goal_init = .text:0x0013B294; // type:function size:0x90 scope:global align:4
+aTKN1_goal1_init = .text:0x0013B324; // type:function size:0x5C scope:global align:4
+aTKN1_goal2_init = .text:0x0013B380; // type:function size:0x5C scope:global align:4
+aTKN1_kansen_init = .text:0x0013B3DC; // type:function size:0x38 scope:global align:4
+aTKN1_omedeto_init = .text:0x0013B414; // type:function size:0x68 scope:global align:4
+aTKN1_omedeto_af_init = .text:0x0013B47C; // type:function size:0x40 scope:global align:4
+aTKN1_move_init = .text:0x0013B4BC; // type:function size:0x38 scope:global align:4
+aTKN1_lookl_init = .text:0x0013B4F4; // type:function size:0x74 scope:global align:4
+aTKC_clip_npc1_think_init = .text:0x0013B568; // type:function size:0x34 scope:global align:4
+aTKC_clip_next_run = .text:0x0013B59C; // type:function size:0x2F8 scope:global align:4
+aTKC_clip_get_angle = .text:0x0013B894; // type:function size:0x90 scope:global align:4
+aTKC_clip_run_proc = .text:0x0013B924; // type:function size:0x94 scope:global align:4
+aTKC_clip_run_check = .text:0x0013B9B8; // type:function size:0xD4 scope:global align:4
+aTKC_clip_top_check = .text:0x0013BA8C; // type:function size:0xB4 scope:global align:4
+aTKC_clip_goal_check = .text:0x0013BB40; // type:function size:0x68 scope:global align:4
+aTKC_clip_next_pos = .text:0x0013BBA8; // type:function size:0x74 scope:global align:4
+aTKC_clip_next_warmup = .text:0x0013BC1C; // type:function size:0xE8 scope:global align:4
+aTKC_clip_set_talk_request = .text:0x0013BD04; // type:function size:0x88 scope:global align:4
+aTOL_actor_ct = .text:0x0013BD8C; // type:function size:0x24 scope:global align:4
+aTOL_actor_dt = .text:0x0013BDB0; // type:function size:0x20 scope:global align:4
+aTOL_check_data_bank = .text:0x0013BDD0; // type:function size:0x68 scope:global align:4
+aTOL_birth_proc = .text:0x0013BE38; // type:function size:0xC0 scope:global align:4
+aTOL_chg_request_mode_proc = .text:0x0013BEF8; // type:function size:0x20 scope:global align:4
+aTOL_secure_pl_umbrella_bank_area = .text:0x0013BF18; // type:function size:0x70 scope:global align:4
+aTOL_init_clip_area = .text:0x0013BF88; // type:function size:0x84 scope:global align:4
+aTOL_free_clip_area = .text:0x0013C00C; // type:function size:0x24 scope:global align:4
+aTRD_actor_ct = .text:0x0013C030; // type:function size:0x9C scope:global align:4
+aTRD_actor_dt = .text:0x0013C0CC; // type:function size:0x24 scope:global align:4
+aTRD_set_door_SE = .text:0x0013C0F0; // type:function size:0x80 scope:global align:4
+aTRD_actor_move = .text:0x0013C170; // type:function size:0x74 scope:global align:4
+aTRD_actor_draw = .text:0x0013C1E4; // type:function size:0x84 scope:global align:4
+aTrainWindow_GetTreePalletIdx = .text:0x0013C268; // type:function size:0x60 scope:global align:4
+Train_Window_Actor_ct = .text:0x0013C2C8; // type:function size:0x110 scope:global align:4
+Train_Window_Actor_dt = .text:0x0013C3D8; // type:function size:0x4 scope:global align:4
+aTW_GetNowAlpha = .text:0x0013C3DC; // type:function size:0x1A4 scope:global align:4
+Train_Window_Actor_move = .text:0x0013C580; // type:function size:0x170 scope:global align:4
+aTrainWindow_OperateScrollLimit = .text:0x0013C6F0; // type:function size:0x3C scope:global align:4
+aTrainWindow_TileScroll = .text:0x0013C72C; // type:function size:0x88 scope:global align:4
+aTrainWindow_TileScroll2 = .text:0x0013C7B4; // type:function size:0xEC scope:global align:4
+aTrainWindow_DrawGoneOutTunnel = .text:0x0013C8A0; // type:function size:0x134 scope:global align:4
+aTrainWindow_DrawGoingOutTunnel = .text:0x0013C9D4; // type:function size:0x178 scope:global align:4
+aTrainWindow_NoDraw = .text:0x0013CB4C; // type:function size:0x14 scope:global align:4
+aTrainWindow_DrawInTunnel = .text:0x0013CB60; // type:function size:0x178 scope:global align:4
+aTrainWindow_SetLightPrimColorDetail = .text:0x0013CCD8; // type:function size:0x144 scope:global align:4
+aTrainWindow_SetTreeTextureScroll = .text:0x0013CE1C; // type:function size:0x78 scope:global align:4
+Train_Window_Actor_draw = .text:0x0013CE94; // type:function size:0x2EC scope:global align:4
+aTNC_actor_ct = .text:0x0013D180; // type:function size:0x88 scope:global align:4
+aTNC_actor_dt = .text:0x0013D208; // type:function size:0x28 scope:global align:4
+aTNC_actor_move = .text:0x0013D230; // type:function size:0x28 scope:global align:4
+aTNC_wait = .text:0x0013D258; // type:function size:0x128 scope:global align:4
+aTNC_setupAction = .text:0x0013D380; // type:function size:0x1C scope:global align:4
+aUKI_actor_ct = .text:0x0013D39C; // type:function size:0x178 scope:global align:4
+aUKI_actor_dt = .text:0x0013D514; // type:function size:0x2C scope:global align:4
+set_collision = .text:0x0013D540; // type:function size:0x4C scope:global align:4
+aUKI_set_value = .text:0x0013D58C; // type:function size:0x3C scope:global align:4
+aUKI_get_fish_type = .text:0x0013D5C8; // type:function size:0x2C scope:global align:4
+aUKI_chase_color = .text:0x0013D5F4; // type:function size:0x9C scope:global align:4
+aUKI_BGcheck = .text:0x0013D690; // type:function size:0x228 scope:global align:4
+aUKI_touch_vib_proc = .text:0x0013D8B8; // type:function size:0x68 scope:global align:4
+aUKI_bite_vib_proc = .text:0x0013D920; // type:function size:0x68 scope:global align:4
+aUKI_clear_spd = .text:0x0013D988; // type:function size:0x18 scope:global align:4
+aUKI_parabola_init = .text:0x0013D9A0; // type:function size:0x178 scope:global align:4
+aUKI_parabola_move = .text:0x0013DB18; // type:function size:0xA8 scope:global align:4
+aUKI_Get_flow_angle = .text:0x0013DBC0; // type:function size:0x3C scope:global align:4
+aUKI_effect_sibuki = .text:0x0013DBFC; // type:function size:0xE0 scope:global align:4
+aUKI_effect_hamon = .text:0x0013DCDC; // type:function size:0xE0 scope:global align:4
+aUKI_movement = .text:0x0013DDBC; // type:function size:0x178 scope:global align:4
+aUKI_coast_wave = .text:0x0013DF34; // type:function size:0xA4 scope:global align:4
+aUKI_vib_calc = .text:0x0013DFD8; // type:function size:0x24 scope:global align:4
+aUKI_set_spd_relations_in_water = .text:0x0013DFFC; // type:function size:0x418 scope:global align:4
+aUKI_color = .text:0x0013E414; // type:function size:0xD0 scope:global align:4
+aUKI_force_command = .text:0x0013E4E4; // type:function size:0xCC scope:global align:4
+aUKI_carry = .text:0x0013E5B0; // type:function size:0x8C scope:global align:4
+aUKI_ready = .text:0x0013E63C; // type:function size:0x88 scope:global align:4
+aUKI_air = .text:0x0013E6C4; // type:function size:0x80 scope:global align:4
+aUKI_cast = .text:0x0013E744; // type:function size:0xAC scope:global align:4
+aUKI_wait = .text:0x0013E7F0; // type:function size:0x124 scope:global align:4
+aUKI_hit = .text:0x0013E914; // type:function size:0xA8 scope:global align:4
+aUKI_touch = .text:0x0013E9BC; // type:function size:0xEC scope:global align:4
+aUKI_bite = .text:0x0013EAA8; // type:function size:0x208 scope:global align:4
+aUKI_catch = .text:0x0013ECB0; // type:function size:0x94 scope:global align:4
+aUKI_get = .text:0x0013ED44; // type:function size:0x70 scope:global align:4
+aUKI_force = .text:0x0013EDB4; // type:function size:0x70 scope:global align:4
+aUKI_set_proc_carry = .text:0x0013EE24; // type:function size:0x20 scope:global align:4
+aUKI_set_proc_ready = .text:0x0013EE44; // type:function size:0xC0 scope:global align:4
+aUKI_set_proc_air = .text:0x0013EF04; // type:function size:0x4C scope:global align:4
+aUKI_set_proc_cast = .text:0x0013EF50; // type:function size:0x54 scope:global align:4
+aUKI_set_proc_wait = .text:0x0013EFA4; // type:function size:0x24 scope:global align:4
+aUKI_set_proc_hit = .text:0x0013EFC8; // type:function size:0xA0 scope:global align:4
+aUKI_set_proc_touch = .text:0x0013F068; // type:function size:0x5C scope:global align:4
+aUKI_set_proc_bite = .text:0x0013F0C4; // type:function size:0xD0 scope:global align:4
+aUKI_set_proc_catch = .text:0x0013F194; // type:function size:0x1C scope:global align:4
+aUKI_set_proc_get = .text:0x0013F1B0; // type:function size:0xC scope:global align:4
+aUKI_set_proc = .text:0x0013F1BC; // type:function size:0x54 scope:global align:4
+aUKI_actor_move = .text:0x0013F210; // type:function size:0x130 scope:global align:4
+aUKI_rotate_calc = .text:0x0013F340; // type:function size:0xCC scope:global align:4
+aUKI_actor_draw = .text:0x0013F40C; // type:function size:0x560 scope:global align:4
+bCI_actor_ct = .text:0x0013F96C; // type:function size:0x22C scope:global align:4
+bCI_actor_dt = .text:0x0013FB98; // type:function size:0x34 scope:global align:4
+bIT_copy_vtx = .text:0x0013FBCC; // type:function size:0x54 scope:local align:4
+bIT_draw_shadow = .text:0x0013FC20; // type:function size:0x174 scope:local align:4
+bIT_clip_ct = .text:0x0013FD94; // type:function size:0x164 scope:local align:4
+bIT_clip_dt = .text:0x0013FEF8; // type:function size:0x48 scope:local align:4
+bit_draw_ta_set = .text:0x0013FF40; // type:function size:0x50 scope:local align:4
+bit_draw_ta_clr = .text:0x0013FF90; // type:function size:0x4C scope:local align:4
+bIT_individual_draw_check = .text:0x0013FFDC; // type:function size:0x3C scope:local align:4
+mFI_search_unit_around_high = .text:0x00140018; // type:function size:0x160 scope:local align:4
+bIT_actor_fade_entry = .text:0x00140178; // type:function size:0x134 scope:local align:4
+bIT_actor_fade_move = .text:0x001402AC; // type:function size:0x4C scope:local align:4
+bIT_actor_fade_draw = .text:0x001402F8; // type:function size:0x98 scope:local align:4
+bIT_actor_ten_coin_entryR = .text:0x00140390; // type:function size:0x3F0 scope:local align:4
+bIT_actor_ten_coin_entry = .text:0x00140780; // type:function size:0x80 scope:local align:4
+bg_item_ten_coin_entry_ex = .text:0x00140800; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_move = .text:0x00140844; // type:function size:0x128 scope:local align:4
+bIT_actor_ten_coin_draw_af = .text:0x0014096C; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_draw_bf = .text:0x001409B0; // type:function size:0x60 scope:local align:4
+bIT_actor_ten_coin_draw = .text:0x00140A10; // type:function size:0x200 scope:local align:4
+bIT_actor_ten_coin_destruct = .text:0x00140C10; // type:function size:0x88 scope:local align:4
+bg_item_common_palload = .text:0x00140C98; // type:function size:0x44 scope:local align:4
+bIT_actor_rand_pos_get_blk_correct = .text:0x00140CDC; // type:function size:0x34 scope:local align:4
+bIT_actor_rand_pos_get_plus = .text:0x00140D10; // type:function size:0xE0 scope:local align:4
+bIT_actor_rand_pos_get = .text:0x00140DF0; // type:function size:0xB0 scope:local align:4
+bIT_actor_shin_effect_entry = .text:0x00140EA0; // type:function size:0x148 scope:local align:4
+bIT_actor_shin_effect_check = .text:0x00140FE8; // type:function size:0x3C scope:local align:4
+bIT_actor_shin_effect_move = .text:0x00141024; // type:function size:0x1A8 scope:local align:4
+bIT_actor_drop_move_plant_destruct = .text:0x001411CC; // type:function size:0x6C scope:local align:4
+bIT_common_moneytree_check = .text:0x00141238; // type:function size:0xBC scope:local align:4
+bIT_common_bury_after = .text:0x001412F4; // type:function size:0x1F0 scope:local align:4
+bIT_common_hole_throw = .text:0x001414E4; // type:function size:0x1B0 scope:local align:4
+bIT_actor_drop_move_fly_destruct = .text:0x00141694; // type:function size:0xCC scope:local align:4
+func_calc_spec_drop_time = .text:0x00141760; // type:function size:0x48 scope:local align:4
+bIT_actor_drop_entry_main = .text:0x001417A8; // type:function size:0x288 scope:local align:4
+fruit_set = .text:0x00141A30; // type:function size:0x60C scope:local align:4
+bIT_fruit_set = .text:0x0014203C; // type:function size:0x28 scope:local align:4
+drop_fruit = .text:0x00142064; // type:function size:0x1F0 scope:local align:4
+BIT_actor_tree_cutcount_check = .text:0x00142254; // type:function size:0xD0 scope:local align:4
+bg_item_tree_fruit_drop = .text:0x00142324; // type:function size:0x17C scope:local align:4
+bIT_actor_dig_hole_effect_entry = .text:0x001424A0; // type:function size:0xC8 scope:local align:4
+bIT_actor_bury_hole_effect_entry = .text:0x00142568; // type:function size:0x54 scope:local align:4
+bIT_actor_hole_effect_entry = .text:0x001425BC; // type:function size:0x24C scope:local align:4
+bIT_actor_hole_effect_destruct = .text:0x00142808; // type:function size:0xEC scope:local align:4
+bIT_actor_hole_effect_move = .text:0x001428F4; // type:function size:0x1D0 scope:local align:4
+bIT_actor_hole_effect_draw = .text:0x00142AC4; // type:function size:0x78 scope:local align:4
+bIT_actor_player_drop_entry = .text:0x00142B3C; // type:function size:0x1E4 scope:local align:4
+bIT_drop_entry_v1 = .text:0x00142D20; // type:function size:0x144 scope:local align:4
+bIT_actor_fly_entry = .text:0x00142E64; // type:function size:0x218 scope:local align:4
+bIT_actor_drop_entry = .text:0x0014307C; // type:function size:0x178 scope:local align:4
+bIT_actor_drop_move = .text:0x001431F4; // type:function size:0xD0 scope:local align:4
+bIT_actor_drop_destruct = .text:0x001432C4; // type:function size:0x7C scope:local align:4
+bIT_actor_drop_move_plant = .text:0x00143340; // type:function size:0x238 scope:local align:4
+bIT_actor_drop_move_bury_destruct = .text:0x00143578; // type:function size:0x20 scope:local align:4
+bIT_actor_drop_move_bury = .text:0x00143598; // type:function size:0x4C scope:local align:4
+bIT_actor_drop_move_bury_change = .text:0x001435E4; // type:function size:0x80 scope:local align:4
+bIT_actor_drop_wait_bee = .text:0x00143664; // type:function size:0x6C scope:local align:4
+bIT_actor_drop_move_wait = .text:0x001436D0; // type:function size:0x68 scope:local align:4
+bIT_actor_drop_move_fly = .text:0x00143738; // type:function size:0x590 scope:local align:4
+bIT_actor_drop_draw = .text:0x00143CC8; // type:function size:0x78 scope:local align:4
+bIT_actor_drop_draw_nrm = .text:0x00143D40; // type:function size:0xA4 scope:local align:4
+bit_cmn_s_single_draw_loop_type1 = .text:0x00143DE4; // type:function size:0xBC scope:local align:4
+bit_cmn_single_draw_loop_type1 = .text:0x00143EA0; // type:function size:0x170 scope:local align:4
+bit_cmn_single_draw_item_shadow = .text:0x00144010; // type:function size:0x114 scope:local align:4
+bit_cmn_single_draw_BT_shadow = .text:0x00144124; // type:function size:0x124 scope:local align:4
+fg_no2fg_type = .text:0x00144248; // type:function size:0x1C4 scope:local align:4
+bit_cmn_single_drawS_shadow = .text:0x0014440C; // type:function size:0xD8 scope:local align:4
+bit_cmn_single_draw_item_body = .text:0x001444E4; // type:function size:0xB8 scope:local align:4
+bit_cmn_single_draw = .text:0x0014459C; // type:function size:0xA8 scope:local align:4
+bit_cmn_single_draw_BT = .text:0x00144644; // type:function size:0x1E8 scope:local align:4
+bit_cmn_single_drawS = .text:0x0014482C; // type:function size:0xD8 scope:local align:4
+bIT_common_info_tbl_copy = .text:0x00144904; // type:function size:0x20 scope:local align:4
+bIT_common_clear_treeatr = .text:0x00144924; // type:function size:0xB0 scope:local align:4
+m_GetCItTable_TreeTblChk = .text:0x001449D4; // type:function size:0x308 scope:local align:4
+bIT_actor_pit_entry = .text:0x00144CDC; // type:function size:0x110 scope:local align:4
+bIT_actor_pit_move = .text:0x00144DEC; // type:function size:0x318 scope:local align:4
+bIT_actor_pit_destruct = .text:0x00145104; // type:function size:0x80 scope:local align:4
+bg_item_common_chg_BGDataR_b = .text:0x00145184; // type:function size:0x17C scope:local align:4
+bg_item_common_chg_BGDataR = .text:0x00145300; // type:function size:0x78 scope:local align:4
+bg_item_common_outPutData = .text:0x00145378; // type:function size:0x74 scope:local align:4
+bg_item_common_classifyitemDataTable = .text:0x001453EC; // type:function size:0x348 scope:local align:4
+bg_item_common_set_draw_tbl = .text:0x00145734; // type:function size:0xA0 scope:local align:4
+bg_shin_effect_being_check = .text:0x001457D4; // type:function size:0x1B8 scope:local align:4
+bg_item_common_chg_draw_tbl_perfect = .text:0x0014598C; // type:function size:0x318 scope:local align:4
+bg_item_common_renew_draw_and_crs_data_perfect = .text:0x00145CA4; // type:function size:0x84 scope:local align:4
+bg_item_common_destruct = .text:0x00145D28; // type:function size:0x64 scope:local align:4
+bg_item_common_culling_check = .text:0x00145D8C; // type:function size:0x50 scope:local align:4
+bg_item_common_culling_check_talk = .text:0x00145DDC; // type:function size:0x6C scope:local align:4
+bg_item_common_culling_check_loop = .text:0x00145E48; // type:function size:0x9C scope:local align:4
+bg_item_common_culling_check_talk_loop = .text:0x00145EE4; // type:function size:0x9C scope:local align:4
+bg_item_common_check_talk_tree = .text:0x00145F80; // type:function size:0x58 scope:local align:4
+bg_item_common_draw_check = .text:0x00145FD8; // type:function size:0xA8 scope:local align:4
+bg_item_common_move = .text:0x00146080; // type:function size:0x120 scope:local align:4
+bIT_actor_pit_entry_del = .text:0x001461A0; // type:function size:0x6C scope:local align:4
+bIT_actor_pit_fall = .text:0x0014620C; // type:function size:0xD8 scope:local align:4
+bIT_actor_pit_fall_stop = .text:0x001462E4; // type:function size:0xCC scope:local align:4
+bIT_actor_pit_exit = .text:0x001463B0; // type:function size:0xAC scope:local align:4
+bg_item_common_draw_loop_type1 = .text:0x0014645C; // type:function size:0xE4 scope:local align:4
+bg_item_common_s_draw_loop_type1 = .text:0x00146540; // type:function size:0xE4 scope:local align:4
+bg_item_common_draw_item_body = .text:0x00146624; // type:function size:0x7C scope:local align:4
+bg_item_common_draw_item_shadow = .text:0x001466A0; // type:function size:0x11C scope:local align:4
+bg_item_common_draw_item = .text:0x001467BC; // type:function size:0x154 scope:local align:4
+bIT_actor_pit_draw_nrm = .text:0x00146910; // type:function size:0x64 scope:local align:4
+bIT_actor_pit_draw = .text:0x00146974; // type:function size:0x80 scope:local align:4
+bg_item_common_draw = .text:0x001469F4; // type:function size:0x1BC scope:local align:4
+bg_item_common_construct = .text:0x00146BB0; // type:function size:0x28 scope:local align:4
+bg_cherry_item_talking_display_limit_check = .text:0x00146BD8; // type:function size:0x68 scope:global align:4
+bCI_actor_move = .text:0x00146C40; // type:function size:0x98 scope:global align:4
+bCI_actor_draw = .text:0x00146CD8; // type:function size:0x34 scope:global align:4
+bIT_actor_ct = .text:0x00146D0C; // type:function size:0x210 scope:global align:4
+bIT_actor_dt = .text:0x00146F1C; // type:function size:0x34 scope:global align:4
+bIT_copy_vtx = .text:0x00146F50; // type:function size:0x54 scope:local align:4
+bIT_draw_shadow = .text:0x00146FA4; // type:function size:0x174 scope:local align:4
+bIT_clip_ct = .text:0x00147118; // type:function size:0x164 scope:local align:4
+bIT_clip_dt = .text:0x0014727C; // type:function size:0x48 scope:local align:4
+bit_draw_ta_set = .text:0x001472C4; // type:function size:0x50 scope:local align:4
+bit_draw_ta_clr = .text:0x00147314; // type:function size:0x4C scope:local align:4
+bIT_individual_draw_check = .text:0x00147360; // type:function size:0x3C scope:local align:4
+mFI_search_unit_around_high = .text:0x0014739C; // type:function size:0x160 scope:local align:4
+bIT_actor_fade_entry = .text:0x001474FC; // type:function size:0x134 scope:local align:4
+bIT_actor_fade_move = .text:0x00147630; // type:function size:0x4C scope:local align:4
+bIT_actor_fade_draw = .text:0x0014767C; // type:function size:0x98 scope:local align:4
+bIT_actor_ten_coin_entryR = .text:0x00147714; // type:function size:0x3F0 scope:local align:4
+bIT_actor_ten_coin_entry = .text:0x00147B04; // type:function size:0x80 scope:local align:4
+bg_item_ten_coin_entry_ex = .text:0x00147B84; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_move = .text:0x00147BC8; // type:function size:0x128 scope:local align:4
+bIT_actor_ten_coin_draw_af = .text:0x00147CF0; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_draw_bf = .text:0x00147D34; // type:function size:0x60 scope:local align:4
+bIT_actor_ten_coin_draw = .text:0x00147D94; // type:function size:0x200 scope:local align:4
+bIT_actor_ten_coin_destruct = .text:0x00147F94; // type:function size:0x88 scope:local align:4
+bg_item_common_palload = .text:0x0014801C; // type:function size:0x44 scope:local align:4
+bIT_actor_rand_pos_get_blk_correct = .text:0x00148060; // type:function size:0x34 scope:local align:4
+bIT_actor_rand_pos_get_plus = .text:0x00148094; // type:function size:0xE0 scope:local align:4
+bIT_actor_rand_pos_get = .text:0x00148174; // type:function size:0xB0 scope:local align:4
+bIT_actor_shin_effect_entry = .text:0x00148224; // type:function size:0x148 scope:local align:4
+bIT_actor_shin_effect_check = .text:0x0014836C; // type:function size:0x3C scope:local align:4
+bIT_actor_shin_effect_move = .text:0x001483A8; // type:function size:0x1A8 scope:local align:4
+bIT_actor_drop_move_plant_destruct = .text:0x00148550; // type:function size:0x6C scope:local align:4
+bIT_common_moneytree_check = .text:0x001485BC; // type:function size:0xBC scope:local align:4
+bIT_common_bury_after = .text:0x00148678; // type:function size:0x1F0 scope:local align:4
+bIT_common_hole_throw = .text:0x00148868; // type:function size:0x1B0 scope:local align:4
+bIT_actor_drop_move_fly_destruct = .text:0x00148A18; // type:function size:0xCC scope:local align:4
+func_calc_spec_drop_time = .text:0x00148AE4; // type:function size:0x48 scope:local align:4
+bIT_actor_drop_entry_main = .text:0x00148B2C; // type:function size:0x288 scope:local align:4
+fruit_set = .text:0x00148DB4; // type:function size:0x60C scope:local align:4
+bIT_fruit_set = .text:0x001493C0; // type:function size:0x28 scope:local align:4
+drop_fruit = .text:0x001493E8; // type:function size:0x1F0 scope:local align:4
+BIT_actor_tree_cutcount_check = .text:0x001495D8; // type:function size:0xD0 scope:local align:4
+bg_item_tree_fruit_drop = .text:0x001496A8; // type:function size:0x17C scope:local align:4
+bIT_actor_dig_hole_effect_entry = .text:0x00149824; // type:function size:0xC8 scope:local align:4
+bIT_actor_bury_hole_effect_entry = .text:0x001498EC; // type:function size:0x54 scope:local align:4
+bIT_actor_hole_effect_entry = .text:0x00149940; // type:function size:0x24C scope:local align:4
+bIT_actor_hole_effect_destruct = .text:0x00149B8C; // type:function size:0xEC scope:local align:4
+bIT_actor_hole_effect_move = .text:0x00149C78; // type:function size:0x1D0 scope:local align:4
+bIT_actor_hole_effect_draw = .text:0x00149E48; // type:function size:0x78 scope:local align:4
+bIT_actor_player_drop_entry = .text:0x00149EC0; // type:function size:0x1E4 scope:local align:4
+bIT_drop_entry_v1 = .text:0x0014A0A4; // type:function size:0x144 scope:local align:4
+bIT_actor_fly_entry = .text:0x0014A1E8; // type:function size:0x218 scope:local align:4
+bIT_actor_drop_entry = .text:0x0014A400; // type:function size:0x178 scope:local align:4
+bIT_actor_drop_move = .text:0x0014A578; // type:function size:0xD0 scope:local align:4
+bIT_actor_drop_destruct = .text:0x0014A648; // type:function size:0x7C scope:local align:4
+bIT_actor_drop_move_plant = .text:0x0014A6C4; // type:function size:0x238 scope:local align:4
+bIT_actor_drop_move_bury_destruct = .text:0x0014A8FC; // type:function size:0x20 scope:local align:4
+bIT_actor_drop_move_bury = .text:0x0014A91C; // type:function size:0x4C scope:local align:4
+bIT_actor_drop_move_bury_change = .text:0x0014A968; // type:function size:0x80 scope:local align:4
+bIT_actor_drop_wait_bee = .text:0x0014A9E8; // type:function size:0x6C scope:local align:4
+bIT_actor_drop_move_wait = .text:0x0014AA54; // type:function size:0x68 scope:local align:4
+bIT_actor_drop_move_fly = .text:0x0014AABC; // type:function size:0x590 scope:local align:4
+bIT_actor_drop_draw = .text:0x0014B04C; // type:function size:0x78 scope:local align:4
+bIT_actor_drop_draw_nrm = .text:0x0014B0C4; // type:function size:0xA4 scope:local align:4
+bit_cmn_s_single_draw_loop_type1 = .text:0x0014B168; // type:function size:0xBC scope:local align:4
+bit_cmn_single_draw_loop_type1 = .text:0x0014B224; // type:function size:0x170 scope:local align:4
+bit_cmn_single_draw_item_shadow = .text:0x0014B394; // type:function size:0x114 scope:local align:4
+bit_cmn_single_draw_BT_shadow = .text:0x0014B4A8; // type:function size:0x124 scope:local align:4
+fg_no2fg_type = .text:0x0014B5CC; // type:function size:0x1C4 scope:local align:4
+bit_cmn_single_drawS_shadow = .text:0x0014B790; // type:function size:0xD8 scope:local align:4
+bit_cmn_single_draw_item_body = .text:0x0014B868; // type:function size:0xB8 scope:local align:4
+bit_cmn_single_draw = .text:0x0014B920; // type:function size:0xA8 scope:local align:4
+bit_cmn_single_draw_BT = .text:0x0014B9C8; // type:function size:0x1E8 scope:local align:4
+bit_cmn_single_drawS = .text:0x0014BBB0; // type:function size:0xD8 scope:local align:4
+bIT_common_info_tbl_copy = .text:0x0014BC88; // type:function size:0x20 scope:local align:4
+bIT_common_clear_treeatr = .text:0x0014BCA8; // type:function size:0xB0 scope:local align:4
+m_GetCItTable_TreeTblChk = .text:0x0014BD58; // type:function size:0x308 scope:local align:4
+bIT_actor_pit_entry = .text:0x0014C060; // type:function size:0x110 scope:local align:4
+bIT_actor_pit_move = .text:0x0014C170; // type:function size:0x318 scope:local align:4
+bIT_actor_pit_destruct = .text:0x0014C488; // type:function size:0x80 scope:local align:4
+bg_item_common_chg_BGDataR_b = .text:0x0014C508; // type:function size:0x17C scope:local align:4
+bg_item_common_chg_BGDataR = .text:0x0014C684; // type:function size:0x78 scope:local align:4
+bg_item_common_outPutData = .text:0x0014C6FC; // type:function size:0x74 scope:local align:4
+bg_item_common_classifyitemDataTable = .text:0x0014C770; // type:function size:0x348 scope:local align:4
+bg_item_common_set_draw_tbl = .text:0x0014CAB8; // type:function size:0xA0 scope:local align:4
+bg_shin_effect_being_check = .text:0x0014CB58; // type:function size:0x1B8 scope:local align:4
+bg_item_common_chg_draw_tbl_perfect = .text:0x0014CD10; // type:function size:0x318 scope:local align:4
+bg_item_common_renew_draw_and_crs_data_perfect = .text:0x0014D028; // type:function size:0x84 scope:local align:4
+bg_item_common_destruct = .text:0x0014D0AC; // type:function size:0x64 scope:local align:4
+bg_item_common_culling_check = .text:0x0014D110; // type:function size:0x50 scope:local align:4
+bg_item_common_culling_check_talk = .text:0x0014D160; // type:function size:0x6C scope:local align:4
+bg_item_common_culling_check_loop = .text:0x0014D1CC; // type:function size:0x9C scope:local align:4
+bg_item_common_culling_check_talk_loop = .text:0x0014D268; // type:function size:0x9C scope:local align:4
+bg_item_common_check_talk_tree = .text:0x0014D304; // type:function size:0x58 scope:local align:4
+bg_item_common_draw_check = .text:0x0014D35C; // type:function size:0xA8 scope:local align:4
+bg_item_common_move = .text:0x0014D404; // type:function size:0x120 scope:local align:4
+bIT_actor_pit_entry_del = .text:0x0014D524; // type:function size:0x6C scope:local align:4
+bIT_actor_pit_fall = .text:0x0014D590; // type:function size:0xD8 scope:local align:4
+bIT_actor_pit_fall_stop = .text:0x0014D668; // type:function size:0xCC scope:local align:4
+bIT_actor_pit_exit = .text:0x0014D734; // type:function size:0xAC scope:local align:4
+bg_item_common_draw_loop_type1 = .text:0x0014D7E0; // type:function size:0xE4 scope:local align:4
+bg_item_common_s_draw_loop_type1 = .text:0x0014D8C4; // type:function size:0xE4 scope:local align:4
+bg_item_common_draw_item_body = .text:0x0014D9A8; // type:function size:0x7C scope:local align:4
+bg_item_common_draw_item_shadow = .text:0x0014DA24; // type:function size:0x11C scope:local align:4
+bg_item_common_draw_item = .text:0x0014DB40; // type:function size:0x154 scope:local align:4
+bIT_actor_pit_draw_nrm = .text:0x0014DC94; // type:function size:0x64 scope:local align:4
+bIT_actor_pit_draw = .text:0x0014DCF8; // type:function size:0x80 scope:local align:4
+bg_item_common_draw = .text:0x0014DD78; // type:function size:0x1BC scope:local align:4
+bg_item_common_construct = .text:0x0014DF34; // type:function size:0x28 scope:local align:4
+bg_item_talking_display_limit_check = .text:0x0014DF5C; // type:function size:0x68 scope:global align:4
+bIT_actor_move = .text:0x0014DFC4; // type:function size:0x98 scope:global align:4
+bIT_actor_draw = .text:0x0014E05C; // type:function size:0x34 scope:global align:4
+bPI_outPutData = .text:0x0014E090; // type:function size:0x114 scope:global align:4
+bPI_classifyitemDataTable = .text:0x0014E1A4; // type:function size:0xB8 scope:global align:4
+bPI_set_draw_tbl = .text:0x0014E25C; // type:function size:0xAC scope:global align:4
+bPI_chg_draw_tbl = .text:0x0014E308; // type:function size:0x74 scope:global align:4
+bPI_renew_draw_and_crs_data = .text:0x0014E37C; // type:function size:0x70 scope:global align:4
+bPI_actor_move = .text:0x0014E3EC; // type:function size:0x58 scope:global align:4
+bPI_draw_item_loop = .text:0x0014E444; // type:function size:0xC4 scope:global align:4
+bPI_draw_item = .text:0x0014E508; // type:function size:0x9C scope:global align:4
+bPI_actor_draw = .text:0x0014E5A4; // type:function size:0x44 scope:global align:4
+bPTI_actor_ct = .text:0x0014E5E8; // type:function size:0x50 scope:global align:4
+bPTI_actor_draw = .text:0x0014E638; // type:function size:0x11C scope:global align:4
+bWI_actor_ct = .text:0x0014E754; // type:function size:0x2C0 scope:global align:4
+bWI_actor_dt = .text:0x0014EA14; // type:function size:0x34 scope:global align:4
+bIT_copy_vtx = .text:0x0014EA48; // type:function size:0x54 scope:local align:4
+bIT_draw_shadow = .text:0x0014EA9C; // type:function size:0x174 scope:local align:4
+bIT_clip_ct = .text:0x0014EC10; // type:function size:0x164 scope:local align:4
+bIT_clip_dt = .text:0x0014ED74; // type:function size:0x48 scope:local align:4
+bit_draw_ta_set = .text:0x0014EDBC; // type:function size:0x50 scope:local align:4
+bit_draw_ta_clr = .text:0x0014EE0C; // type:function size:0x4C scope:local align:4
+bIT_individual_draw_check = .text:0x0014EE58; // type:function size:0x3C scope:local align:4
+mFI_search_unit_around_high = .text:0x0014EE94; // type:function size:0x160 scope:local align:4
+bIT_actor_fade_entry = .text:0x0014EFF4; // type:function size:0x134 scope:local align:4
+bIT_actor_fade_move = .text:0x0014F128; // type:function size:0x4C scope:local align:4
+bIT_actor_fade_draw = .text:0x0014F174; // type:function size:0x98 scope:local align:4
+bIT_actor_ten_coin_entryR = .text:0x0014F20C; // type:function size:0x3F0 scope:local align:4
+bIT_actor_ten_coin_entry = .text:0x0014F5FC; // type:function size:0x80 scope:local align:4
+bg_item_ten_coin_entry_ex = .text:0x0014F67C; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_move = .text:0x0014F6C0; // type:function size:0x128 scope:local align:4
+bIT_actor_ten_coin_draw_af = .text:0x0014F7E8; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_draw_bf = .text:0x0014F82C; // type:function size:0x60 scope:local align:4
+bIT_actor_ten_coin_draw = .text:0x0014F88C; // type:function size:0x200 scope:local align:4
+bIT_actor_ten_coin_destruct = .text:0x0014FA8C; // type:function size:0x88 scope:local align:4
+bg_item_common_palload = .text:0x0014FB14; // type:function size:0x44 scope:local align:4
+bIT_actor_rand_pos_get_blk_correct = .text:0x0014FB58; // type:function size:0x34 scope:local align:4
+bIT_actor_rand_pos_get_plus = .text:0x0014FB8C; // type:function size:0xE0 scope:local align:4
+bIT_actor_rand_pos_get = .text:0x0014FC6C; // type:function size:0xB0 scope:local align:4
+bIT_actor_shin_effect_entry = .text:0x0014FD1C; // type:function size:0x148 scope:local align:4
+bIT_actor_shin_effect_check = .text:0x0014FE64; // type:function size:0x3C scope:local align:4
+bIT_actor_shin_effect_move = .text:0x0014FEA0; // type:function size:0x1A8 scope:local align:4
+bIT_actor_drop_move_plant_destruct = .text:0x00150048; // type:function size:0x6C scope:local align:4
+bIT_common_moneytree_check = .text:0x001500B4; // type:function size:0xBC scope:local align:4
+bIT_common_bury_after = .text:0x00150170; // type:function size:0x1F0 scope:local align:4
+bIT_common_hole_throw = .text:0x00150360; // type:function size:0x1B0 scope:local align:4
+bIT_actor_drop_move_fly_destruct = .text:0x00150510; // type:function size:0xCC scope:local align:4
+func_calc_spec_drop_time = .text:0x001505DC; // type:function size:0x48 scope:local align:4
+bIT_actor_drop_entry_main = .text:0x00150624; // type:function size:0x288 scope:local align:4
+fruit_set = .text:0x001508AC; // type:function size:0x60C scope:local align:4
+bIT_fruit_set = .text:0x00150EB8; // type:function size:0x28 scope:local align:4
+drop_fruit = .text:0x00150EE0; // type:function size:0x1F0 scope:local align:4
+BIT_actor_tree_cutcount_check = .text:0x001510D0; // type:function size:0xD0 scope:local align:4
+bg_item_tree_fruit_drop = .text:0x001511A0; // type:function size:0x17C scope:local align:4
+bIT_actor_dig_hole_effect_entry = .text:0x0015131C; // type:function size:0xC8 scope:local align:4
+bIT_actor_bury_hole_effect_entry = .text:0x001513E4; // type:function size:0x54 scope:local align:4
+bIT_actor_hole_effect_entry = .text:0x00151438; // type:function size:0x24C scope:local align:4
+bIT_actor_hole_effect_destruct = .text:0x00151684; // type:function size:0xEC scope:local align:4
+bIT_actor_hole_effect_move = .text:0x00151770; // type:function size:0x1D0 scope:local align:4
+bIT_actor_hole_effect_draw = .text:0x00151940; // type:function size:0x78 scope:local align:4
+bIT_actor_player_drop_entry = .text:0x001519B8; // type:function size:0x1E4 scope:local align:4
+bIT_drop_entry_v1 = .text:0x00151B9C; // type:function size:0x144 scope:local align:4
+bIT_actor_fly_entry = .text:0x00151CE0; // type:function size:0x218 scope:local align:4
+bIT_actor_drop_entry = .text:0x00151EF8; // type:function size:0x178 scope:local align:4
+bIT_actor_drop_move = .text:0x00152070; // type:function size:0xD0 scope:local align:4
+bIT_actor_drop_destruct = .text:0x00152140; // type:function size:0x7C scope:local align:4
+bIT_actor_drop_move_plant = .text:0x001521BC; // type:function size:0x238 scope:local align:4
+bIT_actor_drop_move_bury_destruct = .text:0x001523F4; // type:function size:0x20 scope:local align:4
+bIT_actor_drop_move_bury = .text:0x00152414; // type:function size:0x4C scope:local align:4
+bIT_actor_drop_move_bury_change = .text:0x00152460; // type:function size:0x80 scope:local align:4
+bIT_actor_drop_wait_bee = .text:0x001524E0; // type:function size:0x6C scope:local align:4
+bIT_actor_drop_move_wait = .text:0x0015254C; // type:function size:0x68 scope:local align:4
+bIT_actor_drop_move_fly = .text:0x001525B4; // type:function size:0x590 scope:local align:4
+bIT_actor_drop_draw = .text:0x00152B44; // type:function size:0x78 scope:local align:4
+bIT_actor_drop_draw_nrm = .text:0x00152BBC; // type:function size:0xA4 scope:local align:4
+bit_cmn_s_single_draw_loop_type1 = .text:0x00152C60; // type:function size:0xBC scope:local align:4
+bit_cmn_single_draw_loop_type1 = .text:0x00152D1C; // type:function size:0x170 scope:local align:4
+bit_cmn_single_draw_item_shadow = .text:0x00152E8C; // type:function size:0x114 scope:local align:4
+bit_cmn_single_draw_BT_shadow = .text:0x00152FA0; // type:function size:0x124 scope:local align:4
+fg_no2fg_type = .text:0x001530C4; // type:function size:0x1C4 scope:local align:4
+bit_cmn_single_drawS_shadow = .text:0x00153288; // type:function size:0xD8 scope:local align:4
+bit_cmn_single_draw_item_body = .text:0x00153360; // type:function size:0xB8 scope:local align:4
+bit_cmn_single_draw = .text:0x00153418; // type:function size:0xA8 scope:local align:4
+bit_cmn_single_draw_BT = .text:0x001534C0; // type:function size:0x1E8 scope:local align:4
+bit_cmn_single_drawS = .text:0x001536A8; // type:function size:0xD8 scope:local align:4
+bIT_common_info_tbl_copy = .text:0x00153780; // type:function size:0x20 scope:local align:4
+bIT_common_clear_treeatr = .text:0x001537A0; // type:function size:0xB0 scope:local align:4
+m_GetCItTable_TreeTblChk = .text:0x00153850; // type:function size:0x308 scope:local align:4
+bIT_actor_pit_entry = .text:0x00153B58; // type:function size:0x110 scope:local align:4
+bIT_actor_pit_move = .text:0x00153C68; // type:function size:0x318 scope:local align:4
+bIT_actor_pit_destruct = .text:0x00153F80; // type:function size:0x80 scope:local align:4
+bg_item_common_chg_BGDataR_b = .text:0x00154000; // type:function size:0x17C scope:local align:4
+bg_item_common_chg_BGDataR = .text:0x0015417C; // type:function size:0x78 scope:local align:4
+bg_item_common_outPutData = .text:0x001541F4; // type:function size:0x74 scope:local align:4
+bg_item_common_classifyitemDataTable = .text:0x00154268; // type:function size:0x348 scope:local align:4
+bg_item_common_set_draw_tbl = .text:0x001545B0; // type:function size:0xA0 scope:local align:4
+bg_shin_effect_being_check = .text:0x00154650; // type:function size:0x1B8 scope:local align:4
+bg_item_common_chg_draw_tbl_perfect = .text:0x00154808; // type:function size:0x318 scope:local align:4
+bg_item_common_renew_draw_and_crs_data_perfect = .text:0x00154B20; // type:function size:0x84 scope:local align:4
+bg_item_common_destruct = .text:0x00154BA4; // type:function size:0x64 scope:local align:4
+bg_item_common_culling_check = .text:0x00154C08; // type:function size:0x50 scope:local align:4
+bg_item_common_culling_check_talk = .text:0x00154C58; // type:function size:0x6C scope:local align:4
+bg_item_common_culling_check_loop = .text:0x00154CC4; // type:function size:0x9C scope:local align:4
+bg_item_common_culling_check_talk_loop = .text:0x00154D60; // type:function size:0x9C scope:local align:4
+bg_item_common_check_talk_tree = .text:0x00154DFC; // type:function size:0x58 scope:local align:4
+bg_item_common_draw_check = .text:0x00154E54; // type:function size:0xA8 scope:local align:4
+bg_item_common_move = .text:0x00154EFC; // type:function size:0x120 scope:local align:4
+bIT_actor_pit_entry_del = .text:0x0015501C; // type:function size:0x6C scope:local align:4
+bIT_actor_pit_fall = .text:0x00155088; // type:function size:0xD8 scope:local align:4
+bIT_actor_pit_fall_stop = .text:0x00155160; // type:function size:0xCC scope:local align:4
+bIT_actor_pit_exit = .text:0x0015522C; // type:function size:0xAC scope:local align:4
+bg_item_common_draw_loop_type1 = .text:0x001552D8; // type:function size:0xE4 scope:local align:4
+bg_item_common_s_draw_loop_type1 = .text:0x001553BC; // type:function size:0xE4 scope:local align:4
+bg_item_common_draw_item_body = .text:0x001554A0; // type:function size:0x7C scope:local align:4
+bg_item_common_draw_item_shadow = .text:0x0015551C; // type:function size:0x11C scope:local align:4
+bg_item_common_draw_item = .text:0x00155638; // type:function size:0x154 scope:local align:4
+bIT_actor_pit_draw_nrm = .text:0x0015578C; // type:function size:0x64 scope:local align:4
+bIT_actor_pit_draw = .text:0x001557F0; // type:function size:0x80 scope:local align:4
+bg_item_common_draw = .text:0x00155870; // type:function size:0x1BC scope:local align:4
+bg_item_common_construct = .text:0x00155A2C; // type:function size:0x28 scope:local align:4
+bg_winter_item_talking_display_limit_check = .text:0x00155A54; // type:function size:0x68 scope:global align:4
+bWI_actor_move = .text:0x00155ABC; // type:function size:0x98 scope:global align:4
+bWI_actor_draw = .text:0x00155B54; // type:function size:0x34 scope:global align:4
+bXI_actor_ct = .text:0x00155B88; // type:function size:0x2A4 scope:global align:4
+bXI_actor_dt = .text:0x00155E2C; // type:function size:0x34 scope:global align:4
+bIT_copy_vtx = .text:0x00155E60; // type:function size:0x54 scope:local align:4
+bIT_draw_shadow = .text:0x00155EB4; // type:function size:0x174 scope:local align:4
+bIT_clip_ct = .text:0x00156028; // type:function size:0x164 scope:local align:4
+bIT_clip_dt = .text:0x0015618C; // type:function size:0x48 scope:local align:4
+bit_draw_ta_set = .text:0x001561D4; // type:function size:0x50 scope:local align:4
+bit_draw_ta_clr = .text:0x00156224; // type:function size:0x4C scope:local align:4
+bIT_individual_draw_check = .text:0x00156270; // type:function size:0x3C scope:local align:4
+mFI_search_unit_around_high = .text:0x001562AC; // type:function size:0x160 scope:local align:4
+bIT_actor_fade_entry = .text:0x0015640C; // type:function size:0x134 scope:local align:4
+bIT_actor_fade_move = .text:0x00156540; // type:function size:0x4C scope:local align:4
+bIT_actor_fade_draw = .text:0x0015658C; // type:function size:0x98 scope:local align:4
+bIT_actor_ten_coin_entryR = .text:0x00156624; // type:function size:0x3F0 scope:local align:4
+bIT_actor_ten_coin_entry = .text:0x00156A14; // type:function size:0x80 scope:local align:4
+bg_item_ten_coin_entry_ex = .text:0x00156A94; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_move = .text:0x00156AD8; // type:function size:0x128 scope:local align:4
+bIT_actor_ten_coin_draw_af = .text:0x00156C00; // type:function size:0x44 scope:local align:4
+bIT_actor_ten_coin_draw_bf = .text:0x00156C44; // type:function size:0x60 scope:local align:4
+bIT_actor_ten_coin_draw = .text:0x00156CA4; // type:function size:0x200 scope:local align:4
+bIT_actor_ten_coin_destruct = .text:0x00156EA4; // type:function size:0x88 scope:local align:4
+bg_item_common_palload = .text:0x00156F2C; // type:function size:0x44 scope:local align:4
+bIT_actor_rand_pos_get_blk_correct = .text:0x00156F70; // type:function size:0x34 scope:local align:4
+bIT_actor_rand_pos_get_plus = .text:0x00156FA4; // type:function size:0xE0 scope:local align:4
+bIT_actor_rand_pos_get = .text:0x00157084; // type:function size:0xB0 scope:local align:4
+bIT_actor_shin_effect_entry = .text:0x00157134; // type:function size:0x148 scope:local align:4
+bIT_actor_shin_effect_check = .text:0x0015727C; // type:function size:0x3C scope:local align:4
+bIT_actor_shin_effect_move = .text:0x001572B8; // type:function size:0x1A8 scope:local align:4
+bIT_actor_drop_move_plant_destruct = .text:0x00157460; // type:function size:0x6C scope:local align:4
+bIT_common_moneytree_check = .text:0x001574CC; // type:function size:0xBC scope:local align:4
+bIT_common_bury_after = .text:0x00157588; // type:function size:0x1F0 scope:local align:4
+bIT_common_hole_throw = .text:0x00157778; // type:function size:0x1B0 scope:local align:4
+bIT_actor_drop_move_fly_destruct = .text:0x00157928; // type:function size:0xCC scope:local align:4
+func_calc_spec_drop_time = .text:0x001579F4; // type:function size:0x48 scope:local align:4
+bIT_actor_drop_entry_main = .text:0x00157A3C; // type:function size:0x288 scope:local align:4
+fruit_set = .text:0x00157CC4; // type:function size:0x60C scope:local align:4
+bIT_fruit_set = .text:0x001582D0; // type:function size:0x28 scope:local align:4
+drop_fruit = .text:0x001582F8; // type:function size:0x1F0 scope:local align:4
+BIT_actor_tree_cutcount_check = .text:0x001584E8; // type:function size:0xD0 scope:local align:4
+bg_item_tree_fruit_drop = .text:0x001585B8; // type:function size:0x17C scope:local align:4
+bIT_actor_dig_hole_effect_entry = .text:0x00158734; // type:function size:0xC8 scope:local align:4
+bIT_actor_bury_hole_effect_entry = .text:0x001587FC; // type:function size:0x54 scope:local align:4
+bIT_actor_hole_effect_entry = .text:0x00158850; // type:function size:0x24C scope:local align:4
+bIT_actor_hole_effect_destruct = .text:0x00158A9C; // type:function size:0xEC scope:local align:4
+bIT_actor_hole_effect_move = .text:0x00158B88; // type:function size:0x1D0 scope:local align:4
+bIT_actor_hole_effect_draw = .text:0x00158D58; // type:function size:0x78 scope:local align:4
+bIT_actor_player_drop_entry = .text:0x00158DD0; // type:function size:0x1E4 scope:local align:4
+bIT_drop_entry_v1 = .text:0x00158FB4; // type:function size:0x144 scope:local align:4
+bIT_actor_fly_entry = .text:0x001590F8; // type:function size:0x218 scope:local align:4
+bIT_actor_drop_entry = .text:0x00159310; // type:function size:0x178 scope:local align:4
+bIT_actor_drop_move = .text:0x00159488; // type:function size:0xD0 scope:local align:4
+bIT_actor_drop_destruct = .text:0x00159558; // type:function size:0x7C scope:local align:4
+bIT_actor_drop_move_plant = .text:0x001595D4; // type:function size:0x238 scope:local align:4
+bIT_actor_drop_move_bury_destruct = .text:0x0015980C; // type:function size:0x20 scope:local align:4
+bIT_actor_drop_move_bury = .text:0x0015982C; // type:function size:0x4C scope:local align:4
+bIT_actor_drop_move_bury_change = .text:0x00159878; // type:function size:0x80 scope:local align:4
+bIT_actor_drop_wait_bee = .text:0x001598F8; // type:function size:0x6C scope:local align:4
+bIT_actor_drop_move_wait = .text:0x00159964; // type:function size:0x68 scope:local align:4
+bIT_actor_drop_move_fly = .text:0x001599CC; // type:function size:0x590 scope:local align:4
+bIT_actor_drop_draw = .text:0x00159F5C; // type:function size:0x78 scope:local align:4
+bIT_actor_drop_draw_nrm = .text:0x00159FD4; // type:function size:0xA4 scope:local align:4
+bit_cmn_s_single_draw_loop_type1 = .text:0x0015A078; // type:function size:0xBC scope:local align:4
+bit_cmn_single_draw_loop_type1 = .text:0x0015A134; // type:function size:0x170 scope:local align:4
+bit_cmn_single_draw_item_shadow = .text:0x0015A2A4; // type:function size:0x114 scope:local align:4
+bit_cmn_single_draw_BT_shadow = .text:0x0015A3B8; // type:function size:0x124 scope:local align:4
+fg_no2fg_type = .text:0x0015A4DC; // type:function size:0x1C4 scope:local align:4
+bit_cmn_single_drawS_shadow = .text:0x0015A6A0; // type:function size:0xD8 scope:local align:4
+bit_cmn_single_draw_item_body = .text:0x0015A778; // type:function size:0xB8 scope:local align:4
+bit_cmn_single_draw = .text:0x0015A830; // type:function size:0xA8 scope:local align:4
+bit_cmn_single_draw_BT = .text:0x0015A8D8; // type:function size:0x1E8 scope:local align:4
+bit_cmn_single_drawS = .text:0x0015AAC0; // type:function size:0xD8 scope:local align:4
+bIT_common_info_tbl_copy = .text:0x0015AB98; // type:function size:0x20 scope:local align:4
+bIT_common_clear_treeatr = .text:0x0015ABB8; // type:function size:0xB0 scope:local align:4
+m_GetCItTable_TreeTblChk = .text:0x0015AC68; // type:function size:0x308 scope:local align:4
+bIT_actor_pit_entry = .text:0x0015AF70; // type:function size:0x110 scope:local align:4
+bIT_actor_pit_move = .text:0x0015B080; // type:function size:0x318 scope:local align:4
+bIT_actor_pit_destruct = .text:0x0015B398; // type:function size:0x80 scope:local align:4
+bg_item_common_chg_BGDataR_b = .text:0x0015B418; // type:function size:0x17C scope:local align:4
+bg_item_common_chg_BGDataR = .text:0x0015B594; // type:function size:0x78 scope:local align:4
+bg_item_common_outPutData = .text:0x0015B60C; // type:function size:0x74 scope:local align:4
+bg_item_common_classifyitemDataTable = .text:0x0015B680; // type:function size:0x348 scope:local align:4
+bg_item_common_set_draw_tbl = .text:0x0015B9C8; // type:function size:0xA0 scope:local align:4
+bg_shin_effect_being_check = .text:0x0015BA68; // type:function size:0x1B8 scope:local align:4
+bg_item_common_chg_draw_tbl_perfect = .text:0x0015BC20; // type:function size:0x318 scope:local align:4
+bg_item_common_renew_draw_and_crs_data_perfect = .text:0x0015BF38; // type:function size:0x84 scope:local align:4
+bg_item_common_destruct = .text:0x0015BFBC; // type:function size:0x64 scope:local align:4
+bg_item_common_culling_check = .text:0x0015C020; // type:function size:0x50 scope:local align:4
+bg_item_common_culling_check_talk = .text:0x0015C070; // type:function size:0x6C scope:local align:4
+bg_item_common_culling_check_loop = .text:0x0015C0DC; // type:function size:0x9C scope:local align:4
+bg_item_common_culling_check_talk_loop = .text:0x0015C178; // type:function size:0x9C scope:local align:4
+bg_item_common_check_talk_tree = .text:0x0015C214; // type:function size:0x58 scope:local align:4
+bg_item_common_draw_check = .text:0x0015C26C; // type:function size:0xA8 scope:local align:4
+bg_item_common_move = .text:0x0015C314; // type:function size:0x120 scope:local align:4
+bIT_actor_pit_entry_del = .text:0x0015C434; // type:function size:0x6C scope:local align:4
+bIT_actor_pit_fall = .text:0x0015C4A0; // type:function size:0xD8 scope:local align:4
+bIT_actor_pit_fall_stop = .text:0x0015C578; // type:function size:0xCC scope:local align:4
+bIT_actor_pit_exit = .text:0x0015C644; // type:function size:0xAC scope:local align:4
+bg_item_common_draw_loop_type1 = .text:0x0015C6F0; // type:function size:0xE4 scope:local align:4
+bg_item_common_s_draw_loop_type1 = .text:0x0015C7D4; // type:function size:0xE4 scope:local align:4
+bg_item_common_draw_item_body = .text:0x0015C8B8; // type:function size:0x7C scope:local align:4
+bg_item_common_draw_item_shadow = .text:0x0015C934; // type:function size:0x11C scope:local align:4
+bg_item_common_draw_item = .text:0x0015CA50; // type:function size:0x154 scope:local align:4
+bIT_actor_pit_draw_nrm = .text:0x0015CBA4; // type:function size:0x64 scope:local align:4
+bIT_actor_pit_draw = .text:0x0015CC08; // type:function size:0x80 scope:local align:4
+bg_item_common_draw = .text:0x0015CC88; // type:function size:0x1BC scope:local align:4
+bg_item_common_construct = .text:0x0015CE44; // type:function size:0x28 scope:local align:4
+bg_xmas_item_talking_display_limit_check = .text:0x0015CE6C; // type:function size:0x68 scope:global align:4
+bXI_actor_move = .text:0x0015CED4; // type:function size:0xE8 scope:global align:4
+bXI_actor_draw = .text:0x0015CFBC; // type:function size:0x34 scope:global align:4
+bXI_draw_loop_type1_xtree = .text:0x0015CFF0; // type:function size:0x1DC scope:global align:4
+eEC_Name2EffectMake = .text:0x0015D1CC; // type:function size:0x148 scope:global align:4
+eEC_Name2EffectKill = .text:0x0015D314; // type:function size:0xF4 scope:global align:4
+eEC_Name2EffectKillAll = .text:0x0015D408; // type:function size:0xA4 scope:global align:4
+eEC_InitEffectControlWork = .text:0x0015D4AC; // type:function size:0x44 scope:global align:4
+eEC_EffectLib2Clip = .text:0x0015D4F0; // type:function size:0xE4 scope:global align:4
+eEC_MakeEffectLight = .text:0x0015D5D4; // type:function size:0x78 scope:global align:4
+eEC_DeleteEffectLight = .text:0x0015D64C; // type:function size:0x30 scope:global align:4
+eEC_actor_ct = .text:0x0015D67C; // type:function size:0xB8 scope:global align:4
+eEC_actor_dt = .text:0x0015D734; // type:function size:0x38 scope:global align:4
+eEC_actor_draw = .text:0x0015D76C; // type:function size:0x9C scope:global align:4
+eEC_DistDeath = .text:0x0015D808; // type:function size:0x118 scope:global align:4
+eEC_AllEffectMove = .text:0x0015D920; // type:function size:0xD0 scope:global align:4
+eEC_actor_move = .text:0x0015D9F0; // type:function size:0x68 scope:global align:4
+eEC_GetEffectBuff = .text:0x0015DA58; // type:function size:0xE8 scope:global align:4
+eEC_SetFirstOffset = .text:0x0015DB40; // type:function size:0x44 scope:global align:4
+eEC_MakeEffect = .text:0x0015DB84; // type:function size:0x148 scope:global align:4
+eEL_InitUnchar = .text:0x0015DCCC; // type:function size:0x1C scope:global align:4
+eEL_VectorRoteteY = .text:0x0015DCE8; // type:function size:0xA0 scope:global align:4
+eEL_RandomFirstSpeed = .text:0x0015DD88; // type:function size:0x144 scope:global align:4
+eEL_SetContiniousEnv = .text:0x0015DECC; // type:function size:0x4C scope:global align:4
+eEL_CalcAdjust = .text:0x0015DF18; // type:function size:0x8C scope:global align:4
+eEL_AutoMatrixXlu = .text:0x0015DFA4; // type:function size:0x104 scope:global align:4
+eEL_AutoMatrixXlu_Offset = .text:0x0015E0A8; // type:function size:0x178 scope:global align:4
+eEC_MorphCombine = .text:0x0015E220; // type:function size:0xB4 scope:global align:4
+eEL_SpecialBlockCenterPos = .text:0x0015E2D4; // type:function size:0xAC scope:global align:4
+eEL_EffectLightStatus = .text:0x0015E380; // type:function size:0x40 scope:global align:4
+eEL_InitEffectLight = .text:0x0015E3C0; // type:function size:0x48 scope:global align:4
+eEL_CalcEffectLight_Set = .text:0x0015E408; // type:function size:0x334 scope:global align:4
+eEL_RegistEffectLight = .text:0x0015E73C; // type:function size:0x48 scope:global align:4
+eEL_DecideLightPower = .text:0x0015E784; // type:function size:0x16C scope:global align:4
+mEL_CheckLookAtBlock = .text:0x0015E8F0; // type:function size:0xC4 scope:global align:4
+Ef_Lamp_Light_actor_ct = .text:0x0015E9B4; // type:function size:0x6C scope:global align:4
+Ef_Lamp_Light_actor_dt = .text:0x0015EA20; // type:function size:0x34 scope:global align:4
+eLL_get_light_sw_other_room = .text:0x0015EA54; // type:function size:0x34 scope:global align:4
+eLL_get_light_sw_player_room = .text:0x0015EA88; // type:function size:0x3C scope:global align:4
+eLL_get_light_sw_start_demo = .text:0x0015EAC4; // type:function size:0x24 scope:global align:4
+eLL_ctrl_light_sw = .text:0x0015EAE8; // type:function size:0xB0 scope:global align:4
+Ef_Lamp_Light_actor_move = .text:0x0015EB98; // type:function size:0xEC scope:global align:4
+Ef_Room_Sunshine_actor_ct = .text:0x0015EC84; // type:function size:0x1AC scope:global align:4
+calc_scale_Ef_Room_Sunshine = .text:0x0015EE30; // type:function size:0xC0 scope:global align:4
+calc_alpha_Ef_Room_Sunshine = .text:0x0015EEF0; // type:function size:0x19C scope:global align:4
+Ef_Room_SunshineL_actor_move = .text:0x0015F08C; // type:function size:0x90 scope:global align:4
+Ef_Room_SunshineR_actor_move = .text:0x0015F11C; // type:function size:0x98 scope:global align:4
+setup_mode_Ef_Room_Sunshine = .text:0x0015F1B4; // type:function size:0x160 scope:global align:4
+Ef_Room_SunshineL_actor_draw = .text:0x0015F314; // type:function size:0xE4 scope:global align:4
+Ef_Room_SunshineR_actor_draw = .text:0x0015F3F8; // type:function size:0xE4 scope:global align:4
+Ef_Room_Sunshine_Police_actor_ct = .text:0x0015F4DC; // type:function size:0x1CC scope:global align:4
+calc_scale_Ef_Room_Sunshine_Police = .text:0x0015F6A8; // type:function size:0xD8 scope:global align:4
+calc_alpha_Ef_Room_SunshinePolice = .text:0x0015F780; // type:function size:0x14C scope:global align:4
+Ef_Room_Sunshine_PoliceL_actor_move = .text:0x0015F8CC; // type:function size:0x90 scope:global align:4
+Ef_Room_Sunshine_PoliceR_actor_move = .text:0x0015F95C; // type:function size:0xA0 scope:global align:4
+cull_check_from_camera = .text:0x0015F9FC; // type:function size:0x40 scope:global align:4
+setup_mode_Ef_Room_Sunshine_Police = .text:0x0015FA3C; // type:function size:0x158 scope:global align:4
+Ef_Room_Sunshine_PoliceL_actor_draw = .text:0x0015FB94; // type:function size:0xA8 scope:global align:4
+Ef_Room_Sunshine_PoliceR_actor_draw = .text:0x0015FC3C; // type:function size:0xA8 scope:global align:4
+Ef_Room_Sunshine_Posthouse_actor_ct = .text:0x0015FCE4; // type:function size:0x1AC scope:global align:4
+calc_scale_Ef_Room_Sunshine_Posthouse = .text:0x0015FE90; // type:function size:0xD8 scope:global align:4
+calc_alpha_Ef_Room_Sunshine_Posthouse = .text:0x0015FF68; // type:function size:0x14C scope:global align:4
+Ef_Room_Sunshine_PosthouseL_actor_move = .text:0x001600B4; // type:function size:0x90 scope:global align:4
+Ef_Room_Sunshine_PosthouseR_actor_move = .text:0x00160144; // type:function size:0xA0 scope:global align:4
+setup_mode_Ef_Room_Sunshine_Posthouse = .text:0x001601E4; // type:function size:0x158 scope:global align:4
+Ef_Room_Sunshine_PosthouseL_actor_draw = .text:0x0016033C; // type:function size:0x90 scope:global align:4
+Ef_Room_Sunshine_PosthouseR_actor_draw = .text:0x001603CC; // type:function size:0x90 scope:global align:4
+Ef_Room_Sunshine_Museum_actor_ct = .text:0x0016045C; // type:function size:0x1CC scope:global align:4
+calc_scale_Ef_Room_Sunshine_Museum = .text:0x00160628; // type:function size:0xD8 scope:global align:4
+calc_alpha_Ef_Room_SunshineMuseum = .text:0x00160700; // type:function size:0x14C scope:global align:4
+Ef_Room_Sunshine_MuseumL_actor_move = .text:0x0016084C; // type:function size:0x90 scope:global align:4
+Ef_Room_Sunshine_MuseumR_actor_move = .text:0x001608DC; // type:function size:0xA0 scope:global align:4
+setup_mode_Ef_Room_Sunshine_Museum = .text:0x0016097C; // type:function size:0x1C8 scope:global align:4
+Ef_Room_Sunshine_MuseumL_actor_draw = .text:0x00160B44; // type:function size:0xA8 scope:global align:4
+Ef_Room_Sunshine_MuseumR_actor_draw = .text:0x00160BEC; // type:function size:0xA8 scope:global align:4
+Ef_Room_Sunshine_Minsect_actor_ct = .text:0x00160C94; // type:function size:0x14C scope:global align:4
+calc_scale_Ef_Room_Sunshine_Minsect = .text:0x00160DE0; // type:function size:0xD8 scope:global align:4
+calc_alpha_Ef_Room_SunshineMinsect = .text:0x00160EB8; // type:function size:0x14C scope:global align:4
+Ef_Room_Sunshine_MinsectL_actor_move = .text:0x00161004; // type:function size:0xE0 scope:global align:4
+Ef_Room_Sunshine_MinsectR_actor_move = .text:0x001610E4; // type:function size:0xF0 scope:global align:4
+setup_mode_Ef_Room_Sunshine_Minsect = .text:0x001611D4; // type:function size:0x158 scope:global align:4
+setup_mode_Ef_Room_Sunshine_Minsect_decal = .text:0x0016132C; // type:function size:0x158 scope:global align:4
+BG_draw_Minsect = .text:0x00161484; // type:function size:0xD8 scope:global align:4
+BG_draw_Minsect_niwa = .text:0x0016155C; // type:function size:0x98 scope:global align:4
+Ef_Room_Sunshine_MinsectL_actor_draw = .text:0x001615F4; // type:function size:0x190 scope:global align:4
+Ef_Room_Sunshine_MinsectR_actor_draw = .text:0x00161784; // type:function size:0x190 scope:global align:4
+mHsRm_EvaluateHuusuiPoint_Single = .text:0x00161914; // type:function size:0x32C scope:global align:4
+mHsRm_EvaluateHuusuiPoint = .text:0x00161C40; // type:function size:0xF4 scope:global align:4
+mHsRm_HuusuiRoomOvl = .text:0x00161D34; // type:function size:0x188 scope:global align:4
+mMkRm_GetSeriesName = .text:0x00161EBC; // type:function size:0x40 scope:global align:4
+mMkRm_GetRemainOneFtr = .text:0x00161EFC; // type:function size:0x74 scope:global align:4
+mMkRm_ProcAfterSending = .text:0x00161F70; // type:function size:0x38 scope:global align:4
+mMkRm_DecideLetterNo = .text:0x00161FA8; // type:function size:0x1B8 scope:global align:4
+mMkRm_GetSetItemNo = .text:0x00162160; // type:function size:0x1C scope:global align:4
+mMkRm_CountCharactor = .text:0x0016217C; // type:function size:0x74 scope:global align:4
+mMkRm_SendMarkLetter = .text:0x001621F0; // type:function size:0x248 scope:global align:4
+mMkRm_ForbidMinusPoint = .text:0x00162438; // type:function size:0x18 scope:global align:4
+mMkRm_EvaluateLetsClean = .text:0x00162450; // type:function size:0x1E0 scope:global align:4
+mMkRm_EvaluateCompleteObstacle = .text:0x00162630; // type:function size:0x120 scope:global align:4
+mMkRm_CheckEdgeZone = .text:0x00162750; // type:function size:0x100 scope:global align:4
+mMkRm_EvaluateDirect = .text:0x00162850; // type:function size:0x17C scope:global align:4
+mMkRm_EvaluateLuckyFurniture = .text:0x001629CC; // type:function size:0xE4 scope:global align:4
+mMkRm_EvaluateSetSeriesComplete = .text:0x00162AB0; // type:function size:0xC4 scope:global align:4
+mMkRm_EvaluateThemeSeriesComplete = .text:0x00162B74; // type:function size:0x280 scope:global align:4
+mMkRm_EvaluateBaseSeriesComplete = .text:0x00162DF4; // type:function size:0x1F0 scope:global align:4
+mMkRm_EvaluateNessBounos = .text:0x00162FE4; // type:function size:0xA4 scope:global align:4
+mMkRm_EvaluateBasePoint = .text:0x00163088; // type:function size:0x1C8 scope:global align:4
+mMkRm_InitSearchTable = .text:0x00163250; // type:function size:0x28 scope:global align:4
+mMkRm_AssignIdxInGroup_BaseSeries = .text:0x00163278; // type:function size:0x6C scope:global align:4
+mMkRm_AssignIdxInGroup_ThemeSeries = .text:0x001632E4; // type:function size:0x60 scope:global align:4
+mMkRm_AssignIdxInGroup_SetSeries = .text:0x00163344; // type:function size:0x60 scope:global align:4
+mMkRm_AssignIdxInGroup_OneSeries = .text:0x001633A4; // type:function size:0x60 scope:global align:4
+mMkRm_AssignIdxInGroup = .text:0x00163404; // type:function size:0x7C scope:global align:4
+mMkRm_MakeFtrTable = .text:0x00163480; // type:function size:0xF0 scope:global align:4
+mMkRm_InitData = .text:0x00163570; // type:function size:0x48 scope:global align:4
+mMkRm_MarkRoomOneFloor = .text:0x001635B8; // type:function size:0x198 scope:global align:4
+mMkRm_MarkRoomOvl = .text:0x00163750; // type:function size:0x12C scope:global align:4
+Player_actor_init_value = .text:0x0016387C; // type:function size:0x494 scope:global align:4
+Player_actor_ct = .text:0x00163D10; // type:function size:0xF4 scope:global align:4
+Player_actor_dt = .text:0x00163E04; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_change_from_submenu = .text:0x00163E98; // type:function size:0x98 scope:global align:4
+Player_actor_request_change_item = .text:0x00163F30; // type:function size:0xD8 scope:global align:4
+Player_actor_settle_main = .text:0x00164008; // type:function size:0x8C scope:global align:4
+Player_actor_change_main_index = .text:0x00164094; // type:function size:0x124 scope:global align:4
+Player_actor_change_proc_index = .text:0x001641B8; // type:function size:0x30 scope:global align:4
+Player_actor_move = .text:0x001641E8; // type:function size:0x94 scope:global align:4
+Player_actor_draw = .text:0x0016427C; // type:function size:0xA8 scope:global align:4
+Player_actor_CheckController_forPickup = .text:0x00164324; // type:function size:0x98 scope:global align:4
+Player_actor_CheckController_forAxe = .text:0x001643BC; // type:function size:0x7C scope:global align:4
+Player_actor_CheckController_forNet = .text:0x00164438; // type:function size:0x7C scope:global align:4
+Player_actor_CheckController_forRod = .text:0x001644B4; // type:function size:0x7C scope:global align:4
+Player_actor_CheckController_forScoop = .text:0x00164530; // type:function size:0x7C scope:global align:4
+Player_actor_CheckController_forUmbrella = .text:0x001645AC; // type:function size:0x7C scope:global align:4
+Player_actor_CheckController_forFan = .text:0x00164628; // type:function size:0xB4 scope:global align:4
+Player_actor_CheckController_forShake_tree = .text:0x001646DC; // type:function size:0xE4 scope:global align:4
+Player_actor_CheckController_forStruggle_pitfall = .text:0x001647C0; // type:function size:0x44 scope:global align:4
+Player_actor_CheckController_forDush = .text:0x00164804; // type:function size:0x3C scope:global align:4
+Player_actor_GetController_move_percentX = .text:0x00164840; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_move_percentY = .text:0x00164884; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_move_percentR = .text:0x001648C8; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_move_angle = .text:0x0016490C; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_old_move_angle = .text:0x00164950; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_recognize_percentR = .text:0x00164994; // type:function size:0x44 scope:global align:4
+Player_actor_GetController_old_recognize_percentR = .text:0x001649D8; // type:function size:0x44 scope:global align:4
+Player_actor_CheckController_forRadio_exercise = .text:0x00164A1C; // type:function size:0x144 scope:global align:4
+Player_actor_set_viblation_common1 = .text:0x00164B60; // type:function size:0x28 scope:global align:4
+Player_actor_set_viblation_Dig_scoop = .text:0x00164B88; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Dig_scoop_stump = .text:0x00164BC4; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Fill_scoop = .text:0x00164C00; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Reflect_scoop_hard = .text:0x00164C3C; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Reflect_scoop_soft = .text:0x00164C78; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Swing_net = .text:0x00164CB4; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Shake_tree = .text:0x00164CF0; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Axe_hard = .text:0x00164D2C; // type:function size:0x20 scope:global align:4
+Player_actor_set_viblation_Axe_soft = .text:0x00164D4C; // type:function size:0x20 scope:global align:4
+Player_actor_set_viblation_Axe_cut = .text:0x00164D6C; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Tumble = .text:0x00164DA8; // type:function size:0x3C scope:global align:4
+Player_actor_set_viblation_Remove_grass = .text:0x00164DE4; // type:function size:0x3C scope:global align:4
+Player_actor_check_request_main_priority = .text:0x00164E20; // type:function size:0x34 scope:global align:4
+Player_actor_request_main_index = .text:0x00164E54; // type:function size:0x48 scope:global align:4
+Player_actor_Set_start_refuse = .text:0x00164E9C; // type:function size:0x50 scope:global align:4
+Player_actor_Set_address_able_display = .text:0x00164EEC; // type:function size:0x38 scope:global align:4
+Player_actor_Get_DemoMoveSpeedF = .text:0x00164F24; // type:function size:0x58 scope:global align:4
+Player_actor_Set_force_shadow_position = .text:0x00164F7C; // type:function size:0x20 scope:global align:4
+Player_actor_Set_force_shadow_position_fromAnimePosition = .text:0x00164F9C; // type:function size:0x70 scope:global align:4
+Player_actor_Set_force_shadow_position_fromWorldPosition = .text:0x0016500C; // type:function size:0x24 scope:global align:4
+Player_actor_SetupShadow = .text:0x00165030; // type:function size:0xAC scope:global align:4
+Player_actor_SetupSpeedF = .text:0x001650DC; // type:function size:0x48 scope:global align:4
+Player_actor_Get_SetupRequestMainIndexPriority = .text:0x00165124; // type:function size:0x44 scope:global align:4
+Player_actor_SetupRequestMainIndexPriority = .text:0x00165168; // type:function size:0x44 scope:global align:4
+Player_actor_SettleRequestMainIndexPriority = .text:0x001651AC; // type:function size:0xA4 scope:global align:4
+Player_actor_set_eye_pattern = .text:0x00165250; // type:function size:0x8 scope:global align:4
+Player_actor_set_eye_pattern_normal = .text:0x00165258; // type:function size:0xDC scope:global align:4
+Player_actor_Get_eye_tex_p = .text:0x00165334; // type:function size:0x24 scope:global align:4
+Player_actor_set_mouth_pattern = .text:0x00165358; // type:function size:0x8 scope:global align:4
+Player_actor_Get_mouth_tex_p = .text:0x00165360; // type:function size:0x24 scope:global align:4
+Player_actor_set_tex_anime_pattern = .text:0x00165384; // type:function size:0xBC scope:global align:4
+Player_actor_SetupTextureAnimation = .text:0x00165440; // type:function size:0x8C scope:global align:4
+Player_actor_Set_now_item_main_index = .text:0x001654CC; // type:function size:0x38 scope:global align:4
+Player_actor_SetupItem_common = .text:0x00165504; // type:function size:0x94 scope:global align:4
+Player_actor_SetupItemScale = .text:0x00165598; // type:function size:0x44 scope:global align:4
+Player_actor_SetupWeight = .text:0x001655DC; // type:function size:0x74 scope:global align:4
+Player_actor_Get_status_for_bee = .text:0x00165650; // type:function size:0xC scope:global align:4
+Player_actor_Set_status_for_bee = .text:0x0016565C; // type:function size:0x8 scope:global align:4
+Player_actor_Setup_status_for_bee = .text:0x00165664; // type:function size:0x38 scope:global align:4
+Player_actor_setup_main_Base2 = .text:0x0016569C; // type:function size:0x9C scope:global align:4
+Player_actor_setup_main_Base = .text:0x00165738; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Base = .text:0x0016575C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Base_Braking_common = .text:0x0016577C; // type:function size:0x64 scope:global align:4
+Player_actor_Movement_Base_Braking = .text:0x001657E0; // type:function size:0x28 scope:global align:4
+Player_actor_SetPlayerAngle_forUki = .text:0x00165808; // type:function size:0xF4 scope:global align:4
+Player_actor_Movement_Base_Stop = .text:0x001658FC; // type:function size:0x60 scope:global align:4
+Player_actor_Search_exist_npc_inCircle_forWade = .text:0x0016595C; // type:function size:0xA8 scope:global align:4
+Player_actor_CheckAbleMoveWadeBG = .text:0x00165A04; // type:function size:0x1E8 scope:global align:4
+Player_actor_CheckAbleMoveWadeBlock = .text:0x00165BEC; // type:function size:0x3B4 scope:global align:4
+Player_actor_CheckAbleMoveDemoWadeBlock = .text:0x00165FA0; // type:function size:0x218 scope:global align:4
+Player_actor_CheckAbleMoveDemoWadeBoatBlock = .text:0x001661B8; // type:function size:0x134 scope:global align:4
+Player_actor_CorrectWadeBlockBorder = .text:0x001662EC; // type:function size:0x38 scope:global align:4
+Player_actor_DMA_Animation = .text:0x00166324; // type:function size:0x34 scope:global align:4
+Player_actor_DMA_PartTable = .text:0x00166358; // type:function size:0x34 scope:global align:4
+Player_actor_CulcAnimation_Base = .text:0x0016638C; // type:function size:0x3C scope:global align:4
+Player_actor_CulcAnimation_Base2 = .text:0x001663C8; // type:function size:0x64 scope:global align:4
+Player_actor_CulcAnimation_Base3 = .text:0x0016642C; // type:function size:0x34 scope:global align:4
+Player_actor_CheckContinueAnimation = .text:0x00166460; // type:function size:0xD8 scope:global align:4
+Player_actor_InitAnimation_Base1 = .text:0x00166538; // type:function size:0x118 scope:global align:4
+Player_actor_InitAnimation_Base2 = .text:0x00166650; // type:function size:0x124 scope:global align:4
+Player_actor_InitAnimation_Base3 = .text:0x00166774; // type:function size:0xD8 scope:global align:4
+Player_actor_Get_player_move_position = .text:0x0016684C; // type:function size:0x1C scope:global align:4
+Player_actor_ct_forCorect = .text:0x00166868; // type:function size:0xB4 scope:global align:4
+Player_actor_dt_forCorect = .text:0x0016691C; // type:function size:0x58 scope:global align:4
+Player_actor_Excute_Corect_forStand = .text:0x00166974; // type:function size:0x4C scope:global align:4
+Player_actor_Excute_Corect_forBrake = .text:0x001669C0; // type:function size:0x48 scope:global align:4
+Player_actor_Excute_Corect_forOutdoor = .text:0x00166A08; // type:function size:0xB4 scope:global align:4
+Player_actor_Check_OBJtoLine_forItem_axe = .text:0x00166ABC; // type:function size:0xC scope:global align:4
+Player_actor_Check_OBJtoLine_forItem_net = .text:0x00166AC8; // type:function size:0x2C scope:global align:4
+Player_actor_SetPosition_OBJtoLine_forItem = .text:0x00166AF4; // type:function size:0x220 scope:global align:4
+Player_actor_Culc_over_speed_normalize_NoneZero = .text:0x00166D14; // type:function size:0x10C scope:global align:4
+Player_actor_set_eye_PositionAndAngle = .text:0x00166E20; // type:function size:0x28 scope:global align:4
+Player_actor_set_lean_angle = .text:0x00166E48; // type:function size:0xEC scope:global align:4
+Player_actor_recover_lean_angle = .text:0x00166F34; // type:function size:0xA4 scope:global align:4
+Player_actor_Get_Angle_fromIndex = .text:0x00166FD8; // type:function size:0x2C scope:global align:4
+Player_actor_Get_Angle_fromDirection = .text:0x00167004; // type:function size:0x30 scope:global align:4
+Player_actor_Get_Direction_fromAngle = .text:0x00167034; // type:function size:0x58 scope:global align:4
+Player_actor_Get_Index_fromAngle = .text:0x0016708C; // type:function size:0x3C scope:global align:4
+Player_actor_RecieveDemoOrder_EffectOrder = .text:0x001670C8; // type:function size:0x4C scope:global align:4
+Player_actor_Get_ControllerAngle = .text:0x00167114; // type:function size:0x44 scope:global align:4
+Player_actor_Get_DiffWorldAngleToControllerAngle = .text:0x00167158; // type:function size:0x48 scope:global align:4
+Player_actor_putin = .text:0x001671A0; // type:function size:0x44 scope:global align:4
+Player_actor_putin_item = .text:0x001671E4; // type:function size:0x5C scope:global align:4
+Player_actor_putin_item_layer2 = .text:0x00167240; // type:function size:0x58 scope:global align:4
+Player_actor_putin_furniture = .text:0x00167298; // type:function size:0x84 scope:global align:4
+Player_actor_Check_AnimationFrame_PerfectEquel = .text:0x0016731C; // type:function size:0x14 scope:global align:4
+Player_actor_Check_AnimationFrame_Common = .text:0x00167330; // type:function size:0x110 scope:global align:4
+Player_actor_Check_AnimationFrame = .text:0x00167440; // type:function size:0x30 scope:global align:4
+Player_actor_Check_TradingItemMode = .text:0x00167470; // type:function size:0x28 scope:global align:4
+Player_actor_CHange_TradingItemMode = .text:0x00167498; // type:function size:0x3C scope:global align:4
+Player_actor_Set_item_matrix_set = .text:0x001674D4; // type:function size:0xC scope:global align:4
+Player_actor_Unset_item_matrix_set = .text:0x001674E0; // type:function size:0xC scope:global align:4
+Player_actor_Change_ItemParent = .text:0x001674EC; // type:function size:0x6C scope:global align:4
+Player_actor_Check_ItemParent = .text:0x00167558; // type:function size:0x24 scope:global align:4
+Player_actor_Birth_TradingItem = .text:0x0016757C; // type:function size:0x70 scope:global align:4
+Player_actor_ItemBank_ct = .text:0x001675EC; // type:function size:0x4 scope:global align:4
+Player_actor_Change_ItemBank = .text:0x001675F0; // type:function size:0xA4 scope:global align:4
+Player_actor_Set_OldAngle = .text:0x00167694; // type:function size:0x128 scope:global align:4
+Player_actor_Reset_Item_net_catch_request_table = .text:0x001677BC; // type:function size:0x10 scope:global align:4
+Player_actor_Set_Item_net_catch_request_table = .text:0x001677CC; // type:function size:0xF0 scope:global align:4
+Player_actor_Set_Item_net_catch_request_force = .text:0x001678BC; // type:function size:0x68 scope:global align:4
+Player_actor_Get_Item_net_catch_swing_timer = .text:0x00167924; // type:function size:0x48 scope:global align:4
+Player_actor_DisappearShadow_fromAnimationFrame = .text:0x0016796C; // type:function size:0x80 scope:global align:4
+Player_actor_AppearShadow_fromAnimationFrame = .text:0x001679EC; // type:function size:0xA4 scope:global align:4
+Player_actor_get_door_label = .text:0x00167A90; // type:function size:0x48 scope:global align:4
+Player_actor_BGcheck_common_type1 = .text:0x00167AD8; // type:function size:0x58 scope:global align:4
+Player_actor_BGcheck_common_type2 = .text:0x00167B30; // type:function size:0x44 scope:global align:4
+Player_actor_BGcheck_common_type3 = .text:0x00167B74; // type:function size:0x3C scope:global align:4
+Player_actor_Set_force_position_angle = .text:0x00167BB0; // type:function size:0xC8 scope:global align:4
+Player_actor_Reset_force_position_angle = .text:0x00167C78; // type:function size:0xC scope:global align:4
+Player_actor_Get_force_position_angle = .text:0x00167C84; // type:function size:0xB8 scope:global align:4
+Player_actor_Reinput_force_position_angle = .text:0x00167D3C; // type:function size:0x5C scope:global align:4
+Player_actor_Get_DemoOrder = .text:0x00167D98; // type:function size:0x2C scope:global align:4
+Player_actor_Set_DemoOrder = .text:0x00167DC4; // type:function size:0x2C scope:global align:4
+Player_actor_Get_DemoPosition = .text:0x00167DF0; // type:function size:0xE4 scope:global align:4
+Player_actor_Get_DemoChangeAngleY = .text:0x00167ED4; // type:function size:0x2C scope:global align:4
+Player_actor_Set_DemoChangeAngleY = .text:0x00167F00; // type:function size:0x2C scope:global align:4
+Player_actor_Get_DemoAngleY = .text:0x00167F2C; // type:function size:0x2C scope:global align:4
+Player_actor_CheckScene_AbleOutItem = .text:0x00167F58; // type:function size:0x2C scope:global align:4
+Player_actor_CheckPlayer_AbleOutItem = .text:0x00167F84; // type:function size:0x3C scope:global align:4
+Player_actor_CheckPlayer_AbleLoadItem = .text:0x00167FC0; // type:function size:0x3C scope:global align:4
+Player_actor_Check_is_demo_mode = .text:0x00167FFC; // type:function size:0x3C scope:global align:4
+Player_actor_Check_axe_after = .text:0x00168038; // type:function size:0x1150 scope:global align:4
+Player_actor_GetitemNo_forDamageAxe = .text:0x00169188; // type:function size:0x1A0 scope:global align:4
+Player_actor_CheckAndRequest_main_axe_all = .text:0x00169328; // type:function size:0x15C scope:global align:4
+Player_actor_CheckAbleSpeed_forItem = .text:0x00169484; // type:function size:0x5C scope:global align:4
+Player_actor_CheckAndRequest_main_umbrella_all = .text:0x001694E0; // type:function size:0x64 scope:global align:4
+Player_actor_CheckAndRequest_main_fan_all = .text:0x00169544; // type:function size:0x6C scope:global align:4
+Player_actor_SetEffectStart_axe_common = .text:0x001695B0; // type:function size:0xAC scope:global align:4
+Player_actor_Get_WadeEndPos = .text:0x0016965C; // type:function size:0x160 scope:global align:4
+Player_actor_Init_ScrollDemo_forWade = .text:0x001697BC; // type:function size:0x44 scope:global align:4
+Player_actor_Init_ScrollDemo_forDemo_wade = .text:0x00169800; // type:function size:0x44 scope:global align:4
+Player_actor_Init_ScrollDemo_forDemo_geton_boat_wade = .text:0x00169844; // type:function size:0x4C scope:global align:4
+Player_actor_Init_ScrollDemo_forWade_snowball = .text:0x00169890; // type:function size:0x4C scope:global align:4
+Player_actor_Set_ScrollDemo_forWade = .text:0x001698DC; // type:function size:0x98 scope:global align:4
+Player_actor_Set_ScrollDemo_forDemo_wade = .text:0x00169974; // type:function size:0x58 scope:global align:4
+Player_actor_Set_ScrollDemo_forDemo_geton_boat_wade = .text:0x001699CC; // type:function size:0x68 scope:global align:4
+Player_actor_Set_ScrollDemo_forWade_snowball = .text:0x00169A34; // type:function size:0x90 scope:global align:4
+Player_actor_SetFootMark_for_settle_main = .text:0x00169AC4; // type:function size:0x120 scope:global align:4
+Player_actor_SetupItem_Base0 = .text:0x00169BE4; // type:function size:0xE4 scope:global align:4
+Player_actor_SetupItem_Base_windmill = .text:0x00169CC8; // type:function size:0xD8 scope:global align:4
+Player_actor_SetupItem_Base1 = .text:0x00169DA0; // type:function size:0xBC scope:global align:4
+Player_actor_SetupItem_Base2 = .text:0x00169E5C; // type:function size:0xC4 scope:global align:4
+Player_actor_SetupItem_Base3 = .text:0x00169F20; // type:function size:0x10C scope:global align:4
+Player_actor_Get_ItemRodTopInitPos = .text:0x0016A02C; // type:function size:0xFC scope:global align:4
+Player_actor_Get_ItemRodVirtualTopPos = .text:0x0016A128; // type:function size:0x48 scope:global align:4
+Player_actor_check_cancel_request_change_proc_index = .text:0x0016A170; // type:function size:0x6C scope:global align:4
+Player_actor_able_request_main_index_for_reset = .text:0x0016A1DC; // type:function size:0x3C scope:global align:4
+Player_actor_check_able_request_main_index_for_reset = .text:0x0016A218; // type:function size:0x80 scope:global align:4
+Player_actor_check_request_main_able = .text:0x0016A298; // type:function size:0x78 scope:global align:4
+Player_actor_cancel_request_change_proc_index = .text:0x0016A310; // type:function size:0x60 scope:global align:4
+Player_actor_Check_scoop_after = .text:0x0016A370; // type:function size:0x20 scope:global align:4
+Player_actor_Search_STONE_TC = .text:0x0016A390; // type:function size:0xC8 scope:global align:4
+Player_actor_CheckAndRequest_main_scoop_all = .text:0x0016A458; // type:function size:0x14C scope:global align:4
+Player_actor_cancel_request_change_proc_index_by_A_btn = .text:0x0016A5A4; // type:function size:0x60 scope:global align:4
+Player_actor_Get_item_net_catch_label = .text:0x0016A604; // type:function size:0x34 scope:global align:4
+Player_actor_Change_item_net_catch_label = .text:0x0016A638; // type:function size:0x98 scope:global align:4
+Player_actor_Check_StopNet = .text:0x0016A6D0; // type:function size:0x54 scope:global align:4
+Player_actor_Check_HitAxe = .text:0x0016A724; // type:function size:0xF8 scope:global align:4
+Player_actor_Check_VibUnit_OneFrame = .text:0x0016A81C; // type:function size:0xD4 scope:global align:4
+Player_actor_Check_HitScoop = .text:0x0016A8F0; // type:function size:0xF4 scope:global align:4
+Player_actor_Check_DigScoop = .text:0x0016A9E4; // type:function size:0x88 scope:global align:4
+Player_actor_request_camera2_main_simple_fishing = .text:0x0016AA6C; // type:function size:0x60 scope:global align:4
+Player_actor_request_camera2_main_simple_return = .text:0x0016AACC; // type:function size:0x50 scope:global align:4
+Player_actor_request_camera2_main_normal = .text:0x0016AB1C; // type:function size:0x40 scope:global align:4
+Player_actor_request_camera2_change_priority = .text:0x0016AB5C; // type:function size:0x24 scope:global align:4
+Player_actor_SearchPosition_npc_forStand = .text:0x0016AB80; // type:function size:0xB4 scope:global align:4
+Player_actor_SetEffect_forTakeout_item = .text:0x0016AC34; // type:function size:0x120 scope:global align:4
+Player_actor_check_request_change_item = .text:0x0016AD54; // type:function size:0x70 scope:global align:4
+Player_actor_check_item_is_fish = .text:0x0016ADC4; // type:function size:0x2C scope:global align:4
+Player_actor_Check_CommonFootMark_AnimeFrame_fromAnimeIndex = .text:0x0016ADF0; // type:function size:0x124 scope:global align:4
+Player_actor_Check_RightFootMark_AnimeFrame_fromAnimeIndex = .text:0x0016AF14; // type:function size:0x30 scope:global align:4
+Player_actor_Check_LeftFootMark_AnimeFrame_fromAnimeIndex = .text:0x0016AF44; // type:function size:0x30 scope:global align:4
+Player_actor_Set_FootMark_MarkOnly = .text:0x0016AF74; // type:function size:0x190 scope:global align:4
+Player_actor_CheckAble_FootMark_Sound = .text:0x0016B104; // type:function size:0x2C scope:global align:4
+Player_actor_Set_FootMark_Base1 = .text:0x0016B130; // type:function size:0x64 scope:global align:4
+Player_actor_Set_FootMark_Base2 = .text:0x0016B194; // type:function size:0x5C scope:global align:4
+Player_actor_Check_RotateOctagon = .text:0x0016B1F0; // type:function size:0x60 scope:global align:4
+Player_actor_Reset_unable_hand_item_in_demo = .text:0x0016B250; // type:function size:0x40 scope:global align:4
+Player_actor_Reset_able_hand_all_item_in_demo = .text:0x0016B290; // type:function size:0x40 scope:global align:4
+Player_actor_Set_EffectBgTree = .text:0x0016B2D0; // type:function size:0x3D0 scope:global align:4
+Player_actor_Get_shake_tree_position_and_itemNo = .text:0x0016B6A0; // type:function size:0x620 scope:global align:4
+Player_actor_check_fg_little_shake_tree = .text:0x0016BCC0; // type:function size:0x94 scope:global align:4
+Player_actor_Check_able_shake_tree_table = .text:0x0016BD54; // type:function size:0x80 scope:global align:4
+Player_actor_Set_shake_tree_table = .text:0x0016BDD4; // type:function size:0x198 scope:global align:4
+Player_actor_check_little_shake_tree = .text:0x0016BF6C; // type:function size:0x394 scope:global align:4
+Player_actor_check_shake_tree_timer = .text:0x0016C300; // type:function size:0x4C scope:global align:4
+Player_actor_CheckAndRequest_main_shake_tree_all = .text:0x0016C34C; // type:function size:0xD4 scope:global align:4
+Player_actor_Get_tree_shaken_table_index = .text:0x0016C420; // type:function size:0xC4 scope:global align:4
+Player_actor_Check_tree_shaken_little = .text:0x0016C4E4; // type:function size:0xD0 scope:global align:4
+Player_actor_Check_tree_shaken_big = .text:0x0016C5B4; // type:function size:0xD0 scope:global align:4
+Player_actor_Check_tree_shaken = .text:0x0016C684; // type:function size:0x60 scope:global align:4
+Player_actor_reset_pitfall = .text:0x0016C6E4; // type:function size:0xF4 scope:global align:4
+Player_actor_check_pitfall = .text:0x0016C7D8; // type:function size:0x1DC scope:global align:4
+Player_actor_Check_end_stung_bee = .text:0x0016C9B4; // type:function size:0x34 scope:global align:4
+Player_actor_Check_BirthBee_common = .text:0x0016C9E8; // type:function size:0x10C scope:global align:4
+Player_actor_set_ripple = .text:0x0016CAF4; // type:function size:0x134 scope:global align:4
+Player_actor_Check_NecessaryDoorKnock = .text:0x0016CC28; // type:function size:0xC0 scope:global align:4
+Player_actor_CheckAndRequest_KnockDoor = .text:0x0016CCE8; // type:function size:0x80 scope:global align:4
+Player_actor_CheckAndRequest_ItemInOut = .text:0x0016CD68; // type:function size:0x294 scope:global align:4
+Player_actor_Set_bgm_volume = .text:0x0016CFFC; // type:function size:0xBC scope:global align:4
+Player_actor_Check_Label_main_push_snowball = .text:0x0016D0B8; // type:function size:0x50 scope:global align:4
+Player_actor_Check_Label_main_wade_snowball = .text:0x0016D108; // type:function size:0x50 scope:global align:4
+Player_actor_SetParam_for_push_snowball = .text:0x0016D158; // type:function size:0x98 scope:global align:4
+Player_actor_GetSnowballPos_forWadeSnowball = .text:0x0016D1F0; // type:function size:0x44 scope:global align:4
+Player_actor_CheckCondition_forWadeSnowball = .text:0x0016D234; // type:function size:0x68 scope:global align:4
+Player_actor_Culc_player_frame_counter = .text:0x0016D29C; // type:function size:0x10 scope:global align:4
+Player_actor_Reset_excute_cancel_wade = .text:0x0016D2AC; // type:function size:0x78 scope:global align:4
+Player_actor_Culc_wade_end_pos = .text:0x0016D324; // type:function size:0x1C8 scope:global align:4
+Player_actor_Get_PickupHandPosition = .text:0x0016D4EC; // type:function size:0xA4 scope:global align:4
+Player_actor_Get_ItemDisplayPos = .text:0x0016D590; // type:function size:0x80 scope:global align:4
+Player_actor_CheckItemPosition_forPickup = .text:0x0016D610; // type:function size:0x194 scope:global align:4
+Player_actor_CheckItem_fromPosition = .text:0x0016D7A4; // type:function size:0x19C scope:global align:4
+Player_actor_Search_putin_item = .text:0x0016D940; // type:function size:0x120 scope:global align:4
+Player_actor_check_putin_item = .text:0x0016DA60; // type:function size:0x58 scope:global align:4
+Player_actor_Get_itemNo_forWindow = .text:0x0016DAB8; // type:function size:0x74 scope:global align:4
+Player_actor_able_submenu_request_main_index = .text:0x0016DB2C; // type:function size:0x70 scope:global align:4
+Player_actor_Request_main_refuse_pickup_all = .text:0x0016DB9C; // type:function size:0x44 scope:global align:4
+Player_actor_CheckAndRequest_main_pickup_all = .text:0x0016DBE0; // type:function size:0x45C scope:global align:4
+Player_actor_CheckScene_AbleSubmenu = .text:0x0016E03C; // type:function size:0x38 scope:global align:4
+Player_actor_check_cancel_event_without_priority = .text:0x0016E074; // type:function size:0x5C scope:global align:4
+Player_actor_Check_able_force_speak_label = .text:0x0016E0D0; // type:function size:0x4C scope:global align:4
+Player_actor_Reset_able_force_speak_label = .text:0x0016E11C; // type:function size:0x40 scope:global align:4
+Player_actor_CheckAndSet_UZAI_forNpc = .text:0x0016E15C; // type:function size:0xA4 scope:global align:4
+Player_actor_Check_stung_mosquito = .text:0x0016E200; // type:function size:0x90 scope:global align:4
+Player_actor_Reset_bee_chase = .text:0x0016E290; // type:function size:0x4C scope:global align:4
+Player_actor_Check_player_sunburn_ChangeDay = .text:0x0016E2DC; // type:function size:0x84 scope:global align:4
+Player_actor_Check_player_sunburn_rankdown_interval = .text:0x0016E360; // type:function size:0xF8 scope:global align:4
+Player_actor_Check_player_sunburn_rankdown = .text:0x0016E458; // type:function size:0xA4 scope:global align:4
+Player_actor_Check_player_sunburn_rankup = .text:0x0016E4FC; // type:function size:0x170 scope:global align:4
+Player_actor_Set_player_sunburn_rankdown = .text:0x0016E66C; // type:function size:0xC8 scope:global align:4
+Player_actor_Set_player_sunburn_rankup = .text:0x0016E734; // type:function size:0xB0 scope:global align:4
+Player_actor_Check_player_sunburn_for_dt = .text:0x0016E7E4; // type:function size:0x4C scope:global align:4
+Player_actor_Check_player_sunburn_for_main = .text:0x0016E830; // type:function size:0x44 scope:global align:4
+Player_actor_Check_player_sunburn_for_ct = .text:0x0016E874; // type:function size:0x44 scope:global align:4
+Player_actor_Check_player_change_color_for_main = .text:0x0016E8B8; // type:function size:0x8C scope:global align:4
+Player_actor_Check_InBlockRadioExercise = .text:0x0016E944; // type:function size:0xF0 scope:global align:4
+Player_actor_Check_AbleRadioExercise = .text:0x0016EA34; // type:function size:0x3C scope:global align:4
+Player_actor_Get_RadioExerciseCommandRingBufferIndex = .text:0x0016EA70; // type:function size:0x14 scope:global align:4
+Player_actor_Get_RadioExerciseCommand = .text:0x0016EA84; // type:function size:0x48 scope:global align:4
+Player_actor_Set_RadioExerciseCommandRingBuffer = .text:0x0016EACC; // type:function size:0xD8 scope:global align:4
+Player_actor_Set_RadioExerciseCommand = .text:0x0016EBA4; // type:function size:0x64 scope:global align:4
+Player_actor_Check_radio_exercise_command = .text:0x0016EC08; // type:function size:0x124 scope:global align:4
+Player_actor_CheckAndRequest_main_radio_exercise_all = .text:0x0016ED2C; // type:function size:0x11C scope:global align:4
+Player_actor_Set_old_sound_frame_counter = .text:0x0016EE48; // type:function size:0x30 scope:global align:4
+Player_actor_check_able_change_camera_normal_index = .text:0x0016EE78; // type:function size:0x90 scope:global align:4
+Player_actor_Set_Indoor_Camera_Index = .text:0x0016EF08; // type:function size:0xDC scope:global align:4
+Player_actor_sound_SetStatus = .text:0x0016EFE4; // type:function size:0xB8 scope:global align:4
+Player_actor_set_sound_common1 = .text:0x0016F09C; // type:function size:0x2C scope:global align:4
+Player_actor_set_sound_common2 = .text:0x0016F0C8; // type:function size:0x24 scope:global align:4
+Player_actor_sound_FootStep1 = .text:0x0016F0EC; // type:function size:0x80 scope:global align:4
+Player_actor_sound_FootStep2 = .text:0x0016F16C; // type:function size:0x9C scope:global align:4
+Player_actor_sound_Tumble = .text:0x0016F208; // type:function size:0x44 scope:global align:4
+Player_actor_sound_AMI_FURI = .text:0x0016F24C; // type:function size:0x28 scope:global align:4
+Player_actor_sound_AMI_HIT = .text:0x0016F274; // type:function size:0x28 scope:global align:4
+Player_actor_sound_AMI_GET = .text:0x0016F29C; // type:function size:0x28 scope:global align:4
+Player_actor_sound_GASAGOSO = .text:0x0016F2C4; // type:function size:0x24 scope:global align:4
+Player_actor_sound_AXE_FURI = .text:0x0016F2E8; // type:function size:0x24 scope:global align:4
+Player_actor_sound_AXE_HIT = .text:0x0016F30C; // type:function size:0x4C scope:global align:4
+Player_actor_sound_AXE_CUT = .text:0x0016F358; // type:function size:0x4C scope:global align:4
+Player_actor_sound_SIT = .text:0x0016F3A4; // type:function size:0x58 scope:global align:4
+Player_actor_sound_STANDUP = .text:0x0016F3FC; // type:function size:0x58 scope:global align:4
+Player_actor_sound_JUMP = .text:0x0016F454; // type:function size:0x24 scope:global align:4
+Player_actor_sound_LANDING = .text:0x0016F478; // type:function size:0x24 scope:global align:4
+Player_actor_sound_ITEM_GET = .text:0x0016F49C; // type:function size:0x24 scope:global align:4
+Player_actor_sound_BED_IN = .text:0x0016F4C0; // type:function size:0x24 scope:global align:4
+Player_actor_sound_BED_NEGAERI = .text:0x0016F4E4; // type:function size:0x24 scope:global align:4
+Player_actor_sound_BED_OUT = .text:0x0016F508; // type:function size:0x24 scope:global align:4
+Player_actor_sound_ROD_STROKE = .text:0x0016F52C; // type:function size:0x24 scope:global align:4
+Player_actor_sound_ROD_STROKE_small = .text:0x0016F550; // type:function size:0x24 scope:global align:4
+Player_actor_sound_ROD_BACK = .text:0x0016F574; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop1 = .text:0x0016F598; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop_umeru = .text:0x0016F5BC; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop_hit = .text:0x0016F5E0; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop_shigemi = .text:0x0016F604; // type:function size:0x24 scope:global align:4
+Player_actor_sound_ITEM_HORIDASHI = .text:0x0016F628; // type:function size:0x24 scope:global align:4
+Player_actor_sound_slip = .text:0x0016F64C; // type:function size:0x24 scope:global align:4
+Player_actor_sound_tree_touch = .text:0x0016F670; // type:function size:0x28 scope:global align:4
+Player_actor_sound_tree_yurasu = .text:0x0016F698; // type:function size:0x28 scope:global align:4
+Player_actor_sound_kirikabu_scoop = .text:0x0016F6C0; // type:function size:0x24 scope:global align:4
+Player_actor_sound_kirikabu_out = .text:0x0016F6E4; // type:function size:0x24 scope:global align:4
+Player_actor_sound_knock = .text:0x0016F708; // type:function size:0x24 scope:global align:4
+Player_actor_sound_coin_gasagoso = .text:0x0016F72C; // type:function size:0x24 scope:global align:4
+Player_actor_sound_araiiki = .text:0x0016F750; // type:function size:0x44 scope:global align:4
+Player_actor_sound_zassou_nuku = .text:0x0016F794; // type:function size:0x28 scope:global align:4
+Player_actor_sound_hachi_sasareru = .text:0x0016F7BC; // type:function size:0x24 scope:global align:4
+Player_actor_sound_wear = .text:0x0016F7E0; // type:function size:0x24 scope:global align:4
+Player_actor_sound_dai_ue_kakunou = .text:0x0016F804; // type:function size:0x24 scope:global align:4
+Player_actor_sound_umbrella_rotate = .text:0x0016F828; // type:function size:0x24 scope:global align:4
+Player_actor_sound_Get_bgm_num_forCompletePayment = .text:0x0016F84C; // type:function size:0x2C scope:global align:4
+Player_actor_sound_Get_bgm_num_forDemoGetGoldenItem = .text:0x0016F878; // type:function size:0x44 scope:global align:4
+Player_actor_sound_camera_move1 = .text:0x0016F8BC; // type:function size:0x24 scope:global align:4
+Player_actor_sound_camera_move2 = .text:0x0016F8E0; // type:function size:0x24 scope:global align:4
+Player_actor_sound_karaburi = .text:0x0016F904; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop_tree_hit = .text:0x0016F928; // type:function size:0x24 scope:global align:4
+Player_actor_sound_scoop_item_hit = .text:0x0016F94C; // type:function size:0x24 scope:global align:4
+Player_actor_sound_axe_ball_hit = .text:0x0016F970; // type:function size:0x24 scope:global align:4
+Player_actor_sound_axe_broken1 = .text:0x0016F994; // type:function size:0x24 scope:global align:4
+Player_actor_sound_axe_broken2 = .text:0x0016F9B8; // type:function size:0x24 scope:global align:4
+Player_actor_sound_axe_broken3 = .text:0x0016F9DC; // type:function size:0x24 scope:global align:4
+Player_actor_sound_uchiwa = .text:0x0016FA00; // type:function size:0x24 scope:global align:4
+Player_actor_sound_move_temochi_kazaguruma = .text:0x0016FA24; // type:function size:0xA4 scope:global align:4
+Player_actor_ct_other_func1 = .text:0x0016FAC8; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Wade_other_func1 = .text:0x0016FB3C; // type:function size:0xC scope:global align:4
+Player_actor_setup_main_Wade_snowball_other_func1 = .text:0x0016FB48; // type:function size:0x20 scope:global align:4
+Player_actor_setup_main_Wade_other_func2 = .text:0x0016FB68; // type:function size:0x5C scope:global align:4
+Player_actor_setup_main_Wade_snowball_other_func2 = .text:0x0016FBC4; // type:function size:0x20 scope:global align:4
+Player_actor_setup_main_Demo_wade_other_func2 = .text:0x0016FBE4; // type:function size:0x5C scope:global align:4
+Player_actor_setup_main_Demo_geton_boat_wade_other_func2 = .text:0x0016FC40; // type:function size:0x5C scope:global align:4
+Player_actor_ChangeFace_for_Wade = .text:0x0016FC9C; // type:function size:0x78 scope:global align:4
+Player_actor_main_Wade_other_func1 = .text:0x0016FD14; // type:function size:0x24 scope:global align:4
+Player_actor_main_Demo_wade_other_func1 = .text:0x0016FD38; // type:function size:0x24 scope:global align:4
+Player_actor_main_Wade_snowball_other_func1 = .text:0x0016FD5C; // type:function size:0x24 scope:global align:4
+Player_actor_main_Demo_geton_boat_wade_other_func1 = .text:0x0016FD80; // type:function size:0x24 scope:global align:4
+Player_actor_main_Sitdown_wait_other_func2 = .text:0x0016FDA4; // type:function size:0x44 scope:global align:4
+Player_actor_main_Relax_rod_other_func2 = .text:0x0016FDE8; // type:function size:0x20 scope:global align:4
+Player_actor_main_Vib_rod_other_func2 = .text:0x0016FE08; // type:function size:0x20 scope:global align:4
+Player_actor_main_Collect_rod_other_func2 = .text:0x0016FE28; // type:function size:0x20 scope:global align:4
+Player_actor_main_Fly_rod_other_func2 = .text:0x0016FE48; // type:function size:0x20 scope:global align:4
+Player_actor_settle_main_Collect_rod_other_func2 = .text:0x0016FE68; // type:function size:0x24 scope:global align:4
+Player_actor_settle_main_Fly_rod_other_func2 = .text:0x0016FE8C; // type:function size:0x24 scope:global align:4
+Player_actor_set_nextgoto_info_type0 = .text:0x0016FEB0; // type:function size:0x88 scope:global align:4
+Player_actor_set_nextgoto_info_type1 = .text:0x0016FF38; // type:function size:0xA8 scope:global align:4
+Player_actor_check_bg_for_next_goto = .text:0x0016FFE0; // type:function size:0xDC scope:global align:4
+Player_actor_check_nextgoto = .text:0x001700BC; // type:function size:0x220 scope:global align:4
+Player_actor_check_forward = .text:0x001702DC; // type:function size:0x188 scope:global align:4
+Player_actor_move_other_func1 = .text:0x00170464; // type:function size:0x8C scope:global align:4
+Player_actor_move_other_func2 = .text:0x001704F0; // type:function size:0x114 scope:global align:4
+Player_actor_draw_other_func2 = .text:0x00170604; // type:function size:0x20 scope:global align:4
+Player_actor_change_main_index_other_func1 = .text:0x00170624; // type:function size:0x4 scope:global align:4
+Player_actor_change_main_index_other_func2 = .text:0x00170628; // type:function size:0x4 scope:global align:4
+Player_actor_settle_main_other_func2 = .text:0x0017062C; // type:function size:0x20 scope:global align:4
+Player_actor_SetActorUki = .text:0x0017064C; // type:function size:0x6C scope:global align:4
+Player_actor_Item_main_other_func1 = .text:0x001706B8; // type:function size:0x20 scope:global align:4
+Player_actor_setup_main_Demo_geton_boat_other_func2 = .text:0x001706D8; // type:function size:0x18 scope:global align:4
+Player_actor_Set_ItemNoSubmenu = .text:0x001706F0; // type:function size:0x48 scope:global align:4
+Player_actor_Get_ItemNoSubmenu = .text:0x00170738; // type:function size:0x48 scope:global align:4
+Player_actor_Get_ItemKind_from_submenu = .text:0x00170780; // type:function size:0x24 scope:global align:4
+Player_actor_Get_ItemKind_fromScene = .text:0x001707A4; // type:function size:0x40 scope:global align:4
+Player_actor_Get_ItemKind = .text:0x001707E4; // type:function size:0xE8 scope:global align:4
+Player_actor_Get_BasicItemMainIndex_fromItemKind = .text:0x001708CC; // type:function size:0x2C scope:global align:4
+Player_actor_birth_umbrella = .text:0x001708F8; // type:function size:0xE8 scope:global align:4
+Player_actor_Get_umbrella_p = .text:0x001709E0; // type:function size:0x48 scope:global align:4
+Player_actor_Item_CulcAnimation_Base = .text:0x00170A28; // type:function size:0x24 scope:global align:4
+Player_actor_Item_CulcAnimation_Base2 = .text:0x00170A4C; // type:function size:0x2C scope:global align:4
+Player_actor_Item_SetAnimation_Base = .text:0x00170A78; // type:function size:0x44 scope:global align:4
+Player_actor_Item_DMA_Data = .text:0x00170ABC; // type:function size:0x138 scope:global align:4
+Player_actor_Item_Set_Command_forUki = .text:0x00170BF4; // type:function size:0x14 scope:global align:4
+Player_actor_Item_Set_RightHandPos_forUki = .text:0x00170C08; // type:function size:0x118 scope:global align:4
+Player_actor_Item_Set_LeftHandPos_forUki = .text:0x00170D20; // type:function size:0x118 scope:global align:4
+Player_actor_Item_Set_PosSpeed_forUki = .text:0x00170E38; // type:function size:0x28 scope:global align:4
+Player_actor_Item_Set_AngleSpeedY_forUki = .text:0x00170E60; // type:function size:0x5C scope:global align:4
+Player_actor_Item_Set_RodTopPos_forUki = .text:0x00170EBC; // type:function size:0x30 scope:global align:4
+Player_actor_LoadOrDestruct_Item = .text:0x00170EEC; // type:function size:0x174 scope:global align:4
+Player_actor_CorrectSomething_net = .text:0x00171060; // type:function size:0x74 scope:global align:4
+Player_actor_Check_ItemAnimationToItemKind = .text:0x001710D4; // type:function size:0x160 scope:global align:4
+Player_actor_Item_main_axe_normal = .text:0x00171234; // type:function size:0x8 scope:global align:4
+Player_actor_Item_draw_axe = .text:0x0017123C; // type:function size:0x9C scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_base = .text:0x001712D8; // type:function size:0x234 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_reset = .text:0x0017150C; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_ready = .text:0x0017154C; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_common = .text:0x0017158C; // type:function size:0x2A8 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_walk = .text:0x00171834; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_zero = .text:0x00171874; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_ready_walk = .text:0x001718B4; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_turn = .text:0x001718F4; // type:function size:0x34 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_slip = .text:0x00171928; // type:function size:0x34 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net_swing = .text:0x0017195C; // type:function size:0x40 scope:global align:4
+Player_actor_Item_net_CulcJointAngle_dummy_net = .text:0x0017199C; // type:function size:0x64 scope:global align:4
+Player_actor_Item_main_net_normal = .text:0x00171A00; // type:function size:0x38 scope:global align:4
+Player_actor_Item_main_net_stop = .text:0x00171A38; // type:function size:0x40 scope:global align:4
+Player_actor_Item_draw_net_After_dummy_net = .text:0x00171A78; // type:function size:0x34 scope:global align:4
+Player_actor_Item_draw_net_After = .text:0x00171AAC; // type:function size:0x74 scope:global align:4
+Player_actor_Item_draw_net = .text:0x00171B20; // type:function size:0xD8 scope:global align:4
+Player_actor_Item_main_umbrella_normal = .text:0x00171BF8; // type:function size:0x24 scope:global align:4
+Player_actor_Item_draw_umbrella = .text:0x00171C1C; // type:function size:0x58 scope:global align:4
+Player_actor_Item_Set_Scale_forUki_normal = .text:0x00171C74; // type:function size:0x8C scope:global align:4
+Player_actor_Item_Set_Value_forUki_normal = .text:0x00171D00; // type:function size:0x6C scope:global align:4
+Player_actor_Item_main_rod_normal = .text:0x00171D6C; // type:function size:0x48 scope:global align:4
+Player_actor_Item_Set_Value_forUki_ready = .text:0x00171DB4; // type:function size:0x54 scope:global align:4
+Player_actor_Item_main_rod_ready = .text:0x00171E08; // type:function size:0x38 scope:global align:4
+Player_actor_Item_Set_CastGoalPoint_forUki_cast = .text:0x00171E40; // type:function size:0x30 scope:global align:4
+Player_actor_Item_Set_Value_forUki_cast = .text:0x00171E70; // type:function size:0x54 scope:global align:4
+Player_actor_Item_Check_Status_forUki_cast = .text:0x00171EC4; // type:function size:0x34 scope:global align:4
+Player_actor_Item_main_rod_cast = .text:0x00171EF8; // type:function size:0x58 scope:global align:4
+Player_actor_Item_Set_Value_forUki_air = .text:0x00171F50; // type:function size:0x54 scope:global align:4
+Player_actor_Item_main_rod_air = .text:0x00171FA4; // type:function size:0x38 scope:global align:4
+Player_actor_Item_SetFrame_forUki_relax = .text:0x00171FDC; // type:function size:0x144 scope:global align:4
+Player_actor_Item_Set_Value_forUki_relax = .text:0x00172120; // type:function size:0x48 scope:global align:4
+Player_actor_Item_Check_Status_forUki_relax = .text:0x00172168; // type:function size:0x1C scope:global align:4
+Player_actor_Item_main_rod_relax = .text:0x00172184; // type:function size:0x3C scope:global align:4
+Player_actor_Item_Set_Value_forUki_collect = .text:0x001721C0; // type:function size:0x54 scope:global align:4
+Player_actor_Item_Check_Status_forUki_collect = .text:0x00172214; // type:function size:0x2C scope:global align:4
+Player_actor_Item_main_rod_collect = .text:0x00172240; // type:function size:0x3C scope:global align:4
+Player_actor_Item_SetFrame_forUki_vib = .text:0x0017227C; // type:function size:0x17C scope:global align:4
+Player_actor_Item_Set_Value_forUki_vib = .text:0x001723F8; // type:function size:0x60 scope:global align:4
+Player_actor_Item_Check_Status_forUki_vib = .text:0x00172458; // type:function size:0x2C scope:global align:4
+Player_actor_Item_main_rod_vib = .text:0x00172484; // type:function size:0x3C scope:global align:4
+Player_actor_Item_Set_Value_forUki_fly = .text:0x001724C0; // type:function size:0x60 scope:global align:4
+Player_actor_Item_Check_Status_forUki_fly = .text:0x00172520; // type:function size:0x2C scope:global align:4
+Player_actor_Item_main_rod_fly = .text:0x0017254C; // type:function size:0x3C scope:global align:4
+Player_actor_Item_Set_GyoeiScale_forUki_putaway = .text:0x00172588; // type:function size:0x5C scope:global align:4
+Player_actor_Item_Set_Value_forUki_putaway = .text:0x001725E4; // type:function size:0x60 scope:global align:4
+Player_actor_Item_main_rod_putaway = .text:0x00172644; // type:function size:0x44 scope:global align:4
+Player_actor_Item_draw_net_After_main4_sao = .text:0x00172688; // type:function size:0x2C scope:global align:4
+Player_actor_Item_draw_rod_After = .text:0x001726B4; // type:function size:0x74 scope:global align:4
+Player_actor_Item_draw_rod = .text:0x00172728; // type:function size:0xD4 scope:global align:4
+Player_actor_Item_main_scoop_normal = .text:0x001727FC; // type:function size:0x8 scope:global align:4
+Player_actor_Item_draw_scoop = .text:0x00172804; // type:function size:0x8C scope:global align:4
+Player_actor_Item_Get_goal_balloon_lean_angle = .text:0x00172890; // type:function size:0x10 scope:global align:4
+Player_actor_Item_Setup_main_balloon_normal = .text:0x001728A0; // type:function size:0xB8 scope:global align:4
+Player_actor_Item_set_balloon_lean_angle = .text:0x00172958; // type:function size:0xBC scope:global align:4
+Player_actor_Item_CulcAnimation_balloon_normal = .text:0x00172A14; // type:function size:0x48 scope:global align:4
+Player_actor_Item_Movement_balloon_normal = .text:0x00172A5C; // type:function size:0x534 scope:global align:4
+Player_actor_Item_PlayAnimation_balloon_normal = .text:0x00172F90; // type:function size:0xB4 scope:global align:4
+Player_actor_Item_main_balloon_normal = .text:0x00173044; // type:function size:0x38 scope:global align:4
+Player_actor_Item_draw_balloon_Before = .text:0x0017307C; // type:function size:0x54 scope:global align:4
+Player_actor_Item_draw_balloon_After = .text:0x001730D0; // type:function size:0x54 scope:global align:4
+Player_actor_Item_draw_balloon = .text:0x00173124; // type:function size:0x1A8 scope:global align:4
+Player_actor_Item_windmill_CulcParam = .text:0x001732CC; // type:function size:0x1F8 scope:global align:4
+Player_actor_Item_windmill_CulcRotationSpeed = .text:0x001734C4; // type:function size:0x358 scope:global align:4
+Player_actor_Item_main_windmill_normal = .text:0x0017381C; // type:function size:0x58 scope:global align:4
+Player_actor_Item_draw_windmill_After_kaza1_fan = .text:0x00173874; // type:function size:0x78 scope:global align:4
+Player_actor_Item_draw_windmill_After = .text:0x001738EC; // type:function size:0x74 scope:global align:4
+Player_actor_Item_draw_windmill = .text:0x00173960; // type:function size:0x11C scope:global align:4
+Player_actor_Item_main_fan_normal = .text:0x00173A7C; // type:function size:0x8 scope:global align:4
+Player_actor_Item_draw_fan = .text:0x00173A84; // type:function size:0x70 scope:global align:4
+Player_actor_Item_Setup_main = .text:0x00173AF4; // type:function size:0x44 scope:global align:4
+Player_actor_Item_main = .text:0x00173B38; // type:function size:0x94 scope:global align:4
+Player_actor_Item_draw = .text:0x00173BCC; // type:function size:0x180 scope:global align:4
+Player_actor_draw_Before_head = .text:0x00173D4C; // type:function size:0xA8 scope:global align:4
+Player_actor_draw_Before = .text:0x00173DF4; // type:function size:0x74 scope:global align:4
+Player_actor_draw_After_Culc_FootMarkPos = .text:0x00173E68; // type:function size:0x3C scope:global align:4
+Player_actor_draw_After_head = .text:0x00173EA4; // type:function size:0x24 scope:global align:4
+Player_actor_draw_After_Lfoot3 = .text:0x00173EC8; // type:function size:0x2C scope:global align:4
+Player_actor_draw_After_Larm2 = .text:0x00173EF4; // type:function size:0x88 scope:global align:4
+Player_actor_draw_After_Rfoot3 = .text:0x00173F7C; // type:function size:0x2C scope:global align:4
+Player_actor_draw_After_feel = .text:0x00173FA8; // type:function size:0x128 scope:global align:4
+Player_actor_draw_After_hand = .text:0x001740D0; // type:function size:0x80 scope:global align:4
+Player_actor_draw_After = .text:0x00174150; // type:function size:0x74 scope:global align:4
+Player_actor_draw_Normal = .text:0x001741C4; // type:function size:0x5A4 scope:global align:4
+Player_actor_request_main_dma = .text:0x00174768; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Dma = .text:0x001747CC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDma = .text:0x001747EC; // type:function size:0x1D0 scope:global align:4
+Player_actor_main_Dma = .text:0x001749BC; // type:function size:0x44 scope:global align:4
+Player_actor_request_main_intro_all = .text:0x00174A00; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Intro = .text:0x00174A64; // type:function size:0x94 scope:global align:4
+Player_actor_CulcAnimation_Intro = .text:0x00174AF8; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Intro = .text:0x00174B1C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Intro = .text:0x00174B3C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Intro = .text:0x00174B5C; // type:function size:0x20 scope:global align:4
+Player_actor_ResetCameraPos_Intro = .text:0x00174B7C; // type:function size:0x48 scope:global align:4
+Player_actor_request_proc_index_fromIntro = .text:0x00174BC4; // type:function size:0x64 scope:global align:4
+Player_actor_main_Intro = .text:0x00174C28; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_refuse = .text:0x00174CB8; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Refuse = .text:0x00174D1C; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Refuse = .text:0x00174DAC; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Refuse = .text:0x00174DCC; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Refuse = .text:0x00174DF0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Refuse = .text:0x00174E10; // type:function size:0x20 scope:global align:4
+Player_actor_main_Refuse = .text:0x00174E30; // type:function size:0x7C scope:global align:4
+Player_actor_request_main_refuse_pickup_all = .text:0x00174EAC; // type:function size:0x64 scope:global align:4
+Player_actor_Refuse_pickup_demo_ct = .text:0x00174F10; // type:function size:0x9C scope:global align:4
+Player_actor_setup_main_Refuse_pickup = .text:0x00174FAC; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Refuse_pickup = .text:0x0017503C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Refuse_pickup = .text:0x00175064; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Refuse_pickup = .text:0x00175088; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Refuse_pickup = .text:0x001750A8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRefuse_pickup = .text:0x001750C8; // type:function size:0x74 scope:global align:4
+Player_actor_main_Refuse_pickup = .text:0x0017513C; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_return_demo_all = .text:0x001751C4; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Return_demo = .text:0x00175244; // type:function size:0xB0 scope:global align:4
+Player_actor_CulcAnimation_Return_demo = .text:0x001752F4; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Return_demo = .text:0x00175318; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Return_demo = .text:0x00175338; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Return_demo = .text:0x00175358; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReturn_demo = .text:0x00175378; // type:function size:0x8C scope:global align:4
+Player_actor_main_Return_demo = .text:0x00175404; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_return_outdoor_all = .text:0x0017548C; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Return_outdoor = .text:0x0017551C; // type:function size:0xC0 scope:global align:4
+Player_actor_CulcAnimation_Return_outdoor = .text:0x001755DC; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Return_outdoor = .text:0x00175600; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Return_outdoor = .text:0x00175620; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Return_outdoor = .text:0x00175640; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReturn_outdoor = .text:0x00175660; // type:function size:0x6C scope:global align:4
+Player_actor_main_Return_outdoor = .text:0x001756CC; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_return_outdoor2_all = .text:0x00175754; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Return_outdoor2 = .text:0x001757E4; // type:function size:0xC0 scope:global align:4
+Player_actor_CulcAnimation_Return_outdoor2 = .text:0x001758A4; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Return_outdoor2 = .text:0x001758C8; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Return_outdoor2 = .text:0x001758E8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Return_outdoor2 = .text:0x00175908; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReturn_outdoor2 = .text:0x00175928; // type:function size:0x8C scope:global align:4
+Player_actor_main_Return_outdoor2 = .text:0x001759B4; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_wait_all = .text:0x00175A3C; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_wait_from_submenu = .text:0x00175AD0; // type:function size:0x3C scope:global align:4
+Player_actor_setup_main_Wait = .text:0x00175B0C; // type:function size:0x10C scope:global align:4
+Player_actor_Set_RadioExerciseCommand_Wait = .text:0x00175C18; // type:function size:0x38 scope:global align:4
+Player_actor_Movement_Wait = .text:0x00175C50; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Wait = .text:0x00175C78; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Wait = .text:0x00175C9C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Wait = .text:0x00175CBC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromWait = .text:0x00175CDC; // type:function size:0x124 scope:global align:4
+Player_actor_main_Wait = .text:0x00175E00; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_walk_all = .text:0x00175E90; // type:function size:0xD0 scope:global align:4
+Player_actor_setup_main_Walk_common = .text:0x00175F60; // type:function size:0x12C scope:global align:4
+Player_actor_setup_main_Walk = .text:0x0017608C; // type:function size:0x20 scope:global align:4
+Player_actor_settle_main_Walk = .text:0x001760AC; // type:function size:0x64 scope:global align:4
+Player_actor_CulcAnimation_Walk = .text:0x00176110; // type:function size:0x1F0 scope:global align:4
+Player_actor_SetEffect_Walk = .text:0x00176300; // type:function size:0x12C scope:global align:4
+Player_actor_SearchAnimation_Walk = .text:0x0017642C; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Walk = .text:0x001764A0; // type:function size:0x318 scope:global align:4
+Player_actor_ObjCheck_Walk = .text:0x001767B8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Walk = .text:0x001767D8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromWalk = .text:0x001767F8; // type:function size:0x1AC scope:global align:4
+Player_actor_main_Walk = .text:0x001769A4; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_run_all = .text:0x00176A48; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Run_common = .text:0x00176ACC; // type:function size:0xEC scope:global align:4
+Player_actor_setup_main_Run = .text:0x00176BB8; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Run = .text:0x00176BD8; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Run = .text:0x00176BF8; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Run = .text:0x00176C18; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Run = .text:0x00176C8C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Run = .text:0x00176CAC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Run = .text:0x00176CCC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRun_common = .text:0x00176CEC; // type:function size:0x180 scope:global align:4
+Player_actor_request_proc_index_fromRun = .text:0x00176E6C; // type:function size:0x20 scope:global align:4
+Player_actor_main_Run = .text:0x00176E8C; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_dash_all = .text:0x00176F30; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Dash = .text:0x00176FB4; // type:function size:0xEC scope:global align:4
+Player_actor_CulcAnimation_Dash = .text:0x001770A0; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectRemoveFlower_Dash = .text:0x001770C0; // type:function size:0x1B0 scope:global align:4
+Player_actor_SetEffect_Dash = .text:0x00177270; // type:function size:0x15C scope:global align:4
+Player_actor_SearchAnimation_Dash = .text:0x001773CC; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Dash = .text:0x00177440; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Dash = .text:0x00177460; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Dash = .text:0x00177480; // type:function size:0x20 scope:global align:4
+Player_actor_Check_FlatPlace = .text:0x001774A0; // type:function size:0x140 scope:global align:4
+Player_actor_request_proc_index_fromDash_common = .text:0x001775E0; // type:function size:0x21C scope:global align:4
+Player_actor_request_proc_index_fromDash = .text:0x001777FC; // type:function size:0x20 scope:global align:4
+Player_actor_main_Dash = .text:0x0017781C; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_tumble = .text:0x001778C0; // type:function size:0x64 scope:global align:4
+Player_actor_setup_Item_Tumble = .text:0x00177924; // type:function size:0xF0 scope:global align:4
+Player_actor_Get_PlayerAnimeIndex_fromItemKind_Tumble = .text:0x00177A14; // type:function size:0x28 scope:global align:4
+Player_actor_effect_Tumble = .text:0x00177A3C; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Tumble = .text:0x00177ABC; // type:function size:0xD0 scope:global align:4
+Player_actor_Movement_Tumble = .text:0x00177B8C; // type:function size:0x28 scope:global align:4
+Player_actor_recover_lean_angle_Tumble = .text:0x00177BB4; // type:function size:0xEC scope:global align:4
+Player_actor_CulcAnimation_Tumble = .text:0x00177CA0; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Tumble = .text:0x00177CC0; // type:function size:0xFC scope:global align:4
+Player_actor_SearchAnimation_Tumble = .text:0x00177DBC; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Tumble = .text:0x00177E10; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Tumble = .text:0x00177E30; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromTumble = .text:0x00177E50; // type:function size:0x34 scope:global align:4
+Player_actor_main_Tumble = .text:0x00177E84; // type:function size:0xB0 scope:global align:4
+Player_actor_request_main_tumble_getup = .text:0x00177F34; // type:function size:0x64 scope:global align:4
+Player_actor_setup_Item_Tumble_getup = .text:0x00177F98; // type:function size:0x1AC scope:global align:4
+Player_actor_Get_PlayerAnimeIndex_fromItemKind_Tumble_getup = .text:0x00178144; // type:function size:0x28 scope:global align:4
+Player_actor_setup_main_Tumble_getup = .text:0x0017816C; // type:function size:0xB8 scope:global align:4
+Player_actor_request_proc_index_fromTumble_getup = .text:0x00178224; // type:function size:0x8C scope:global align:4
+Player_actor_main_Tumble_getup = .text:0x001782B0; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_turn_dash = .text:0x00178340; // type:function size:0x70 scope:global align:4
+Player_actor_request_main_turn_dash_all = .text:0x001783B0; // type:function size:0x28 scope:global align:4
+Player_actor_setup_main_Turn_dash_common = .text:0x001783D8; // type:function size:0x100 scope:global align:4
+Player_actor_setup_main_Turn_dash = .text:0x001784D8; // type:function size:0x20 scope:global align:4
+Player_actor_settle_main_Turn_dash = .text:0x001784F8; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Turn_dash = .text:0x00178588; // type:function size:0x28 scope:global align:4
+Player_actor_ChangeDirection_Turn_dash = .text:0x001785B0; // type:function size:0xB4 scope:global align:4
+Player_actor_CulcAnimation_Turn_dash = .text:0x00178664; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Turn_dash = .text:0x00178684; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Turn_dash = .text:0x001786A4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromTurn_dash_common = .text:0x001786C4; // type:function size:0x60 scope:global align:4
+Player_actor_request_proc_index_fromTurn_dash = .text:0x00178724; // type:function size:0x20 scope:global align:4
+Player_actor_main_Turn_dash = .text:0x00178744; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_fall_all = .text:0x001787EC; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Fall = .text:0x00178870; // type:function size:0xBC scope:global align:4
+Player_actor_CulcAnimation_Fall = .text:0x0017892C; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Fall = .text:0x00178950; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Fall = .text:0x00178970; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Fall = .text:0x00178990; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromFall_common = .text:0x001789B0; // type:function size:0x9C scope:global align:4
+Player_actor_request_proc_index_fromFall = .text:0x00178A4C; // type:function size:0x20 scope:global align:4
+Player_actor_main_Fall = .text:0x00178A6C; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_wade = .text:0x00178AF4; // type:function size:0x70 scope:global align:4
+Player_actor_request_main_wade_all = .text:0x00178B64; // type:function size:0x28 scope:global align:4
+Player_actor_setup_main_Wade_common = .text:0x00178B8C; // type:function size:0x140 scope:global align:4
+Player_actor_setup_main_Wade = .text:0x00178CCC; // type:function size:0x20 scope:global align:4
+Player_actor_settle_main_Wade = .text:0x00178CEC; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Wade = .text:0x00178D0C; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Wade = .text:0x00178D30; // type:function size:0xB4 scope:global align:4
+Player_actor_ObjCheck_Wade = .text:0x00178DE4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Wade = .text:0x00178E04; // type:function size:0x20 scope:global align:4
+Player_actor_able_request_proc_index_fromWade_common = .text:0x00178E24; // type:function size:0x34 scope:global align:4
+Player_actor_request_proc_index_fromWade = .text:0x00178E58; // type:function size:0x68 scope:global align:4
+Player_actor_Request_Wade = .text:0x00178EC0; // type:function size:0x8 scope:global align:4
+Player_actor_main_Wade = .text:0x00178EC8; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_wade_snowball_all = .text:0x00178F6C; // type:function size:0xB0 scope:global align:4
+Player_actor_setup_main_Wade_snowball = .text:0x0017901C; // type:function size:0x118 scope:global align:4
+Player_actor_settle_main_Wade_snowball = .text:0x00179134; // type:function size:0x20 scope:global align:4
+Player_actor_ChangeAnimation_Wade_snowball = .text:0x00179154; // type:function size:0x9C scope:global align:4
+Player_actor_CulcAnimation_Wade_snowball = .text:0x001791F0; // type:function size:0x38 scope:global align:4
+Player_actor_Movement_Wade_snowball = .text:0x00179228; // type:function size:0xB4 scope:global align:4
+Player_actor_BGcheck_Wade_snowball = .text:0x001792DC; // type:function size:0x20 scope:global align:4
+Player_actor_able_request_proc_index_fromWade_snowball_common = .text:0x001792FC; // type:function size:0x34 scope:global align:4
+Player_actor_request_proc_index_fromWade_snowball = .text:0x00179330; // type:function size:0x98 scope:global align:4
+Player_actor_main_Wade_snowball = .text:0x001793C8; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_door = .text:0x0017946C; // type:function size:0xA8 scope:global align:4
+Player_actor_setup_main_Door = .text:0x00179514; // type:function size:0x100 scope:global align:4
+Player_actor_CulcAnimation_Door = .text:0x00179614; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Door = .text:0x00179634; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Door = .text:0x00179688; // type:function size:0x20 scope:global align:4
+Player_actor_main_Door = .text:0x001796A8; // type:function size:0x78 scope:global align:4
+Player_actor_request_main_outdoor = .text:0x00179720; // type:function size:0x7C scope:global align:4
+Player_actor_setup_main_Outdoor = .text:0x0017979C; // type:function size:0xBC scope:global align:4
+Player_actor_settle_main_Outdoor = .text:0x00179858; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Outdoor = .text:0x00179878; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Outdoor = .text:0x00179898; // type:function size:0x48 scope:global align:4
+Player_actor_ObjCheck_Outdoor = .text:0x001798E0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromOutdoor = .text:0x00179900; // type:function size:0x68 scope:global align:4
+Player_actor_Demo_Outdoor_Demo_ct = .text:0x00179968; // type:function size:0x4 scope:global align:4
+Player_actor_Request_Demo_Outdoor = .text:0x0017996C; // type:function size:0x78 scope:global align:4
+Player_actor_main_Outdoor = .text:0x001799E4; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_invade = .text:0x00179A88; // type:function size:0x64 scope:global align:4
+Player_actor_request_main_invade_all = .text:0x00179AEC; // type:function size:0x28 scope:global align:4
+Player_actor_setup_main_Invade = .text:0x00179B14; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Invade = .text:0x00179BA4; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Invade = .text:0x00179BC4; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Invade = .text:0x00179BE8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Invade = .text:0x00179C08; // type:function size:0x20 scope:global align:4
+Player_actor_main_Invade = .text:0x00179C28; // type:function size:0x7C scope:global align:4
+Player_actor_Check_able_request_main_hold = .text:0x00179CA4; // type:function size:0x54 scope:global align:4
+Player_actor_request_main_hold = .text:0x00179CF8; // type:function size:0xCC scope:global align:4
+Player_actor_setup_main_Hold = .text:0x00179DC4; // type:function size:0x9C scope:global align:4
+Player_actor_CulcAnimation_Hold = .text:0x00179E60; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Hold = .text:0x00179E84; // type:function size:0x230 scope:global align:4
+Player_actor_ObjCheck_Hold = .text:0x0017A0B4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Hold = .text:0x0017A0D4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromHold = .text:0x0017A0F4; // type:function size:0x248 scope:global align:4
+Player_actor_main_Hold = .text:0x0017A33C; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_push = .text:0x0017A3C4; // type:function size:0xA8 scope:global align:4
+Player_actor_settle_main_Push = .text:0x0017A46C; // type:function size:0x24 scope:global align:4
+Player_actor_setup_main_Push = .text:0x0017A490; // type:function size:0xFC scope:global align:4
+Player_actor_CulcAnimation_Push = .text:0x0017A58C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Push = .text:0x0017A5AC; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Push = .text:0x0017A5F4; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Push = .text:0x0017A648; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Push = .text:0x0017A668; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromPush = .text:0x0017A688; // type:function size:0x70 scope:global align:4
+Player_actor_main_Push = .text:0x0017A6F8; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_pull = .text:0x0017A7A0; // type:function size:0xE0 scope:global align:4
+Player_actor_settle_main_Pull = .text:0x0017A880; // type:function size:0x40 scope:global align:4
+Player_actor_setup_main_Pull = .text:0x0017A8C0; // type:function size:0x130 scope:global align:4
+Player_actor_CulcAnimation_Pull = .text:0x0017A9F0; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Pull = .text:0x0017AA10; // type:function size:0x124 scope:global align:4
+Player_actor_SearchAnimation_Pull = .text:0x0017AB34; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Pull = .text:0x0017AB88; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pull = .text:0x0017ABA8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromPull = .text:0x0017ABC8; // type:function size:0x70 scope:global align:4
+Player_actor_main_Pull = .text:0x0017AC38; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_rotate_furniture = .text:0x0017ACE0; // type:function size:0xB0 scope:global align:4
+Player_actor_setup_main_Rotate_furniture = .text:0x0017AD90; // type:function size:0x10C scope:global align:4
+Player_actor_Movement_Rotate_furniture = .text:0x0017AE9C; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_rotate_furniture = .text:0x0017AEC0; // type:function size:0x24 scope:global align:4
+Player_actor_ChangeAnimationHold_rotate_furniture = .text:0x0017AEE4; // type:function size:0x74 scope:global align:4
+Player_actor_ObjCheck_rotate_furniture = .text:0x0017AF58; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_rotate_furniture = .text:0x0017AF78; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRotate_furniture = .text:0x0017AF98; // type:function size:0xB4 scope:global align:4
+Player_actor_main_Rotate_furniture = .text:0x0017B04C; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_open_furniture = .text:0x0017B0E8; // type:function size:0xA8 scope:global align:4
+Player_actor_settle_main_Open_furniture = .text:0x0017B190; // type:function size:0x24 scope:global align:4
+Player_actor_setup_main_Open_furniture = .text:0x0017B1B4; // type:function size:0xF4 scope:global align:4
+Player_actor_CulcAnimation_Open_furniture = .text:0x0017B2A8; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Open_furniture = .text:0x0017B2C8; // type:function size:0x4C scope:global align:4
+Player_actor_SearchAnimation_Open_furniture = .text:0x0017B314; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Open_furniture = .text:0x0017B368; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Open_furniture = .text:0x0017B388; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromOpen_furniture = .text:0x0017B3A8; // type:function size:0x50 scope:global align:4
+Player_actor_main_Open_furniture = .text:0x0017B3F8; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_wait_open_furniture = .text:0x0017B4A0; // type:function size:0xA0 scope:global align:4
+Player_actor_setup_main_Wait_open_furniture = .text:0x0017B540; // type:function size:0xDC scope:global align:4
+Player_actor_settle_main_Wait_open_furniture = .text:0x0017B61C; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Wait_open_furniture = .text:0x0017B640; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Wait_open_furniture = .text:0x0017B664; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Wait_open_furniture = .text:0x0017B688; // type:function size:0x20 scope:global align:4
+Player_actor_main_Wait_open_furniture = .text:0x0017B6A8; // type:function size:0x74 scope:global align:4
+Player_actor_request_main_close_furniture = .text:0x0017B71C; // type:function size:0xB0 scope:global align:4
+Player_actor_settle_main_Close_furniture = .text:0x0017B7CC; // type:function size:0x24 scope:global align:4
+Player_actor_setup_main_Close_furniture = .text:0x0017B7F0; // type:function size:0xE0 scope:global align:4
+Player_actor_CulcAnimation_Close_furniture = .text:0x0017B8D0; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Close_furniture = .text:0x0017B8F0; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Close_furniture = .text:0x0017B938; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Close_furniture = .text:0x0017B98C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Close_furniture = .text:0x0017B9AC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromClose_furniture = .text:0x0017B9CC; // type:function size:0x78 scope:global align:4
+Player_actor_main_Close_furniture = .text:0x0017BA44; // type:function size:0xA8 scope:global align:4
+Player_actor_Check_able_request_main_lie_bed = .text:0x0017BAEC; // type:function size:0x44 scope:global align:4
+Player_actor_request_main_lie_bed = .text:0x0017BB30; // type:function size:0xC4 scope:global align:4
+Player_actor_Get_BasicPlayerAnimeIndex_Lie_bed = .text:0x0017BBF4; // type:function size:0xAC scope:global align:4
+Player_actor_setup_main_Lie_bed = .text:0x0017BCA0; // type:function size:0xF4 scope:global align:4
+Player_actor_settle_main_Lie_bed = .text:0x0017BD94; // type:function size:0x50 scope:global align:4
+Player_actor_CulcAnimation_Lie_bed = .text:0x0017BDE4; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Lie_bed = .text:0x0017BE04; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Lie_bed = .text:0x0017BE4C; // type:function size:0x320 scope:global align:4
+Player_actor_Movement_Lie_bed = .text:0x0017C16C; // type:function size:0x4C scope:global align:4
+Player_actor_request_proc_index_fromLie_bed = .text:0x0017C1B8; // type:function size:0x2C scope:global align:4
+Player_actor_main_Lie_bed = .text:0x0017C1E4; // type:function size:0x80 scope:global align:4
+Player_actor_Check_able_request_main_wait_bed = .text:0x0017C264; // type:function size:0x50 scope:global align:4
+Player_actor_request_main_wait_bed = .text:0x0017C2B4; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Wait_bed = .text:0x0017C328; // type:function size:0x94 scope:global align:4
+Player_actor_Movement_Wait_bed = .text:0x0017C3BC; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Wait_bed = .text:0x0017C3E0; // type:function size:0x24 scope:global align:4
+Player_actor_request_proc_index_fromWait_bed = .text:0x0017C404; // type:function size:0x220 scope:global align:4
+Player_actor_main_Wait_bed = .text:0x0017C624; // type:function size:0x64 scope:global align:4
+Player_actor_Check_able_request_main_roll_bed = .text:0x0017C688; // type:function size:0x3C scope:global align:4
+Player_actor_request_main_roll_bed = .text:0x0017C6C4; // type:function size:0x80 scope:global align:4
+Player_actor_settle_main_Roll_bed = .text:0x0017C744; // type:function size:0x24 scope:global align:4
+Player_actor_Get_BasicPlayerAnimeIndex_Roll_bed = .text:0x0017C768; // type:function size:0xAC scope:global align:4
+Player_actor_setup_main_Roll_bed = .text:0x0017C814; // type:function size:0xE8 scope:global align:4
+Player_actor_CulcAnimation_Roll_bed = .text:0x0017C8FC; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Roll_bed = .text:0x0017C920; // type:function size:0x4C scope:global align:4
+Player_actor_request_proc_index_fromRoll_bed = .text:0x0017C96C; // type:function size:0x2C scope:global align:4
+Player_actor_main_Roll_bed = .text:0x0017C998; // type:function size:0x74 scope:global align:4
+Player_actor_Check_able_request_main_standup_bed = .text:0x0017CA0C; // type:function size:0x3C scope:global align:4
+Player_actor_request_main_standup_bed = .text:0x0017CA48; // type:function size:0x1A4 scope:global align:4
+Player_actor_settle_main_Standup_bed = .text:0x0017CBEC; // type:function size:0x5C scope:global align:4
+Player_actor_Get_BasicPlayerAnimeIndex_Standup_bed = .text:0x0017CC48; // type:function size:0xAC scope:global align:4
+Player_actor_setup_main_Standup_bed = .text:0x0017CCF4; // type:function size:0xEC scope:global align:4
+Player_actor_CulcAnimation_Standup_bed = .text:0x0017CDE0; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Standup_bed = .text:0x0017CE00; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Standup_bed = .text:0x0017CE48; // type:function size:0x234 scope:global align:4
+Player_actor_Movement_Standup_bed = .text:0x0017D07C; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Standup_bed = .text:0x0017D0C8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStandup_bed = .text:0x0017D0E8; // type:function size:0x58 scope:global align:4
+Player_actor_main_Standup_bed = .text:0x0017D140; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_pickup = .text:0x0017D1D0; // type:function size:0xB4 scope:global align:4
+Player_actor_setup_main_Pickup = .text:0x0017D284; // type:function size:0x164 scope:global align:4
+Player_actor_Movement_Pickup = .text:0x0017D3E8; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Pickup = .text:0x0017D40C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Pickup = .text:0x0017D42C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pickup = .text:0x0017D44C; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Pickup = .text:0x0017D46C; // type:function size:0x74 scope:global align:4
+Player_actor_SearchAnimation_Pickup = .text:0x0017D4E0; // type:function size:0x5C scope:global align:4
+Player_actor_Set_Item_Pickup = .text:0x0017D53C; // type:function size:0x12C scope:global align:4
+Player_actor_request_proc_index_fromPickup = .text:0x0017D668; // type:function size:0xB8 scope:global align:4
+Player_actor_main_Pickup = .text:0x0017D720; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_pickup_jump = .text:0x0017D7CC; // type:function size:0xA0 scope:global align:4
+Player_actor_setup_main_Pickup_jump = .text:0x0017D86C; // type:function size:0x198 scope:global align:4
+Player_actor_settle_main_Pickup_jump = .text:0x0017DA04; // type:function size:0x40 scope:global align:4
+Player_actor_Movement_Pickup_jump_common = .text:0x0017DA44; // type:function size:0xF8 scope:global align:4
+Player_actor_Movement_Pickup_jump = .text:0x0017DB3C; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Pickup_jump = .text:0x0017DB74; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Pickup_jump = .text:0x0017DB94; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pickup_jump = .text:0x0017DBB4; // type:function size:0x20 scope:global align:4
+Player_actor_Set_Item_Pickup_jump = .text:0x0017DBD4; // type:function size:0x2BC scope:global align:4
+Player_actor_SearchAnimation_Pickup_jump = .text:0x0017DE90; // type:function size:0x3C scope:global align:4
+Player_actor_request_proc_index_fromPickup_jump = .text:0x0017DECC; // type:function size:0xBC scope:global align:4
+Player_actor_main_Pickup_jump = .text:0x0017DF88; // type:function size:0xA0 scope:global align:4
+Player_actor_request_main_pickup_furniture = .text:0x0017E028; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Pickup_furniture = .text:0x0017E0B8; // type:function size:0x130 scope:global align:4
+Player_actor_settle_main_Pickup_furniture = .text:0x0017E1E8; // type:function size:0x40 scope:global align:4
+Player_actor_Movement_Pickup_furniture_common = .text:0x0017E228; // type:function size:0xF8 scope:global align:4
+Player_actor_Movement_Pickup_furniture = .text:0x0017E320; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Pickup_furniture = .text:0x0017E358; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Pickup_furniture = .text:0x0017E378; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pickup_furniture = .text:0x0017E398; // type:function size:0x20 scope:global align:4
+Player_actor_Set_Item_Pickup_furniture = .text:0x0017E3B8; // type:function size:0x238 scope:global align:4
+Player_actor_SetSound_Pickup_furniture = .text:0x0017E5F0; // type:function size:0x74 scope:global align:4
+Player_actor_SearchAnimation_Pickup_furniture = .text:0x0017E664; // type:function size:0x68 scope:global align:4
+Player_actor_request_proc_index_fromPickup_furniture = .text:0x0017E6CC; // type:function size:0xBC scope:global align:4
+Player_actor_main_Pickup_furniture = .text:0x0017E788; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_pickup_exchange = .text:0x0017E82C; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Pickup_exchange = .text:0x0017E8C0; // type:function size:0xCC scope:global align:4
+Player_actor_settle_main_Pickup_exchange = .text:0x0017E98C; // type:function size:0xD4 scope:global align:4
+Player_actor_Movement_Pickup_exchange = .text:0x0017EA60; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Pickup_exchange = .text:0x0017EA88; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Pickup_exchange = .text:0x0017EAAC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pickup_exchange = .text:0x0017EACC; // type:function size:0x20 scope:global align:4
+Player_actor_Pickup_exchange_demo_ct = .text:0x0017EAEC; // type:function size:0x70 scope:global align:4
+Player_actor_MessageControl_Pickup_exchange = .text:0x0017EB5C; // type:function size:0x140 scope:global align:4
+Player_actor_request_proc_index_fromPickup_exchange = .text:0x0017EC9C; // type:function size:0x44 scope:global align:4
+Player_actor_main_Pickup_exchange = .text:0x0017ECE0; // type:function size:0x9C scope:global align:4
+Player_actor_Check_able_request_main_sitdown = .text:0x0017ED7C; // type:function size:0x44 scope:global align:4
+Player_actor_request_main_sitdown = .text:0x0017EDC0; // type:function size:0xBC scope:global align:4
+Player_actor_settle_main_Sitdown = .text:0x0017EE7C; // type:function size:0x48 scope:global align:4
+Player_actor_setup_main_Sitdown = .text:0x0017EEC4; // type:function size:0xE4 scope:global align:4
+Player_actor_CulcAnimation_Sitdown = .text:0x0017EFA8; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Sitdown = .text:0x0017EFC8; // type:function size:0x4C scope:global align:4
+Player_actor_SearchAnimation_Sitdown = .text:0x0017F014; // type:function size:0x58 scope:global align:4
+Player_actor_Movement_Sitdown = .text:0x0017F06C; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Sitdown = .text:0x0017F0B8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromSitdown = .text:0x0017F0D8; // type:function size:0x38 scope:global align:4
+Player_actor_main_Sitdown = .text:0x0017F110; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_sitdown_wait = .text:0x0017F1A8; // type:function size:0x70 scope:global align:4
+Player_actor_setup_main_Sitdown_wait = .text:0x0017F218; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Sitdown_wait = .text:0x0017F28C; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Sitdown_wait = .text:0x0017F2B0; // type:function size:0x24 scope:global align:4
+Player_actor_request_proc_index_fromSitdown_wait = .text:0x0017F2D4; // type:function size:0x6C scope:global align:4
+Player_actor_main_Sitdown_wait = .text:0x0017F340; // type:function size:0x80 scope:global align:4
+Player_actor_request_main_standup = .text:0x0017F3C0; // type:function size:0xEC scope:global align:4
+Player_actor_setup_main_Standup = .text:0x0017F4AC; // type:function size:0xDC scope:global align:4
+Player_actor_settle_main_Standup = .text:0x0017F588; // type:function size:0x40 scope:global align:4
+Player_actor_CulcAnimation_Standup = .text:0x0017F5C8; // type:function size:0x20 scope:global align:4
+Player_actor_ControlShadow_Standup = .text:0x0017F5E8; // type:function size:0x30 scope:global align:4
+Player_actor_SetSound_Standup = .text:0x0017F618; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Standup = .text:0x0017F660; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Standup = .text:0x0017F6A4; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Standup = .text:0x0017F6F0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStandup = .text:0x0017F710; // type:function size:0x58 scope:global align:4
+Player_actor_main_Standup = .text:0x0017F768; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_swing_axe_common = .text:0x0017F800; // type:function size:0x2C scope:global align:4
+Player_actor_request_main_swing_axe_all = .text:0x0017F82C; // type:function size:0x9C scope:global align:4
+Player_actor_setup_main_Swing_axe_common = .text:0x0017F8C8; // type:function size:0x4C scope:global align:4
+Player_actor_setup_main_Swing_axe = .text:0x0017F914; // type:function size:0x88 scope:global align:4
+Player_actor_Movement_axe_common = .text:0x0017F99C; // type:function size:0xF8 scope:global align:4
+Player_actor_Movement_Swing_axe = .text:0x0017FA94; // type:function size:0x34 scope:global align:4
+Player_actor_CulcAnimation_Swing_axe = .text:0x0017FAC8; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectHit_axe_common = .text:0x0017FAE8; // type:function size:0x140 scope:global align:4
+Player_actor_SetEffectHit_Swing_axe = .text:0x0017FC28; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectStart_Swing_axe = .text:0x0017FC48; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Swing_axe = .text:0x0017FC68; // type:function size:0x54 scope:global align:4
+Player_actor_Get_TreeNoToStumpNo = .text:0x0017FCBC; // type:function size:0x128 scope:global align:4
+Player_actor_CutTree_Swing_axe = .text:0x0017FDE4; // type:function size:0x1B0 scope:global align:4
+Player_actor_SetSound_AXE_FURI_axe_common = .text:0x0017FF94; // type:function size:0x48 scope:global align:4
+Player_actor_SetSound_AXE_FURI_Swing_axe = .text:0x0017FFDC; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Swing_axe = .text:0x0017FFFC; // type:function size:0x60 scope:global align:4
+Player_actor_ChangeItemNo_axe_common = .text:0x0018005C; // type:function size:0xE4 scope:global align:4
+Player_actor_ChangeItemNo_Swing_axe = .text:0x00180140; // type:function size:0x24 scope:global align:4
+Player_actor_SearchAnimation_Swing_axe = .text:0x00180164; // type:function size:0xA0 scope:global align:4
+Player_actor_Check_BirthBee_Swing_axe = .text:0x00180204; // type:function size:0x78 scope:global align:4
+Player_actor_ObjCheck_Swing_axe = .text:0x0018027C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Swing_axe = .text:0x0018029C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromSwing_axe = .text:0x001802BC; // type:function size:0x16C scope:global align:4
+Player_actor_main_Swing_axe = .text:0x00180428; // type:function size:0xD8 scope:global align:4
+Player_actor_request_main_air_axe_all = .text:0x00180500; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Air_axe = .text:0x00180564; // type:function size:0x80 scope:global align:4
+Player_actor_Movement_Air_axe = .text:0x001805E4; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Air_axe = .text:0x0018060C; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Air_axe = .text:0x0018062C; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Air_axe = .text:0x0018064C; // type:function size:0x24 scope:global align:4
+Player_actor_SearchAnimation_Air_axe = .text:0x00180670; // type:function size:0x68 scope:global align:4
+Player_actor_ObjCheck_Air_axe = .text:0x001806D8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Air_axe = .text:0x001806F8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromAir_axe = .text:0x00180718; // type:function size:0x110 scope:global align:4
+Player_actor_main_Air_axe = .text:0x00180828; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_reflect_axe_common = .text:0x001808CC; // type:function size:0x28 scope:global align:4
+Player_actor_request_main_reflect_axe_all = .text:0x001808F4; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Reflect_axe_common = .text:0x00180988; // type:function size:0x34 scope:global align:4
+Player_actor_setup_main_Reflect_axe = .text:0x001809BC; // type:function size:0x88 scope:global align:4
+Player_actor_settle_main_Reflect_axe = .text:0x00180A44; // type:function size:0x18 scope:global align:4
+Player_actor_Movement_Reflect_axe_common = .text:0x00180A5C; // type:function size:0x58 scope:global align:4
+Player_actor_Movement_Reflect_axe = .text:0x00180AB4; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Reflect_axe = .text:0x00180AD4; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectHit_Reflect_axe = .text:0x00180AF4; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Reflect_axe = .text:0x00180B14; // type:function size:0x4C scope:global align:4
+Player_actor_SetAngleSpeedF_Reflect_axe = .text:0x00180B60; // type:function size:0x5C scope:global align:4
+Player_actor_SetOrderNPC_Reflect_axe = .text:0x00180BBC; // type:function size:0xDC scope:global align:4
+Player_actor_SetSound_Reflect_axe = .text:0x00180C98; // type:function size:0x90 scope:global align:4
+Player_actor_ChangeItemNo_Reflect_axe = .text:0x00180D28; // type:function size:0x24 scope:global align:4
+Player_actor_informed_insects_Reflect_axe = .text:0x00180D4C; // type:function size:0xB0 scope:global align:4
+Player_actor_SearchAnimation_Reflect_axe = .text:0x00180DFC; // type:function size:0xB8 scope:global align:4
+Player_actor_ObjCheck_Reflect_axe = .text:0x00180EB4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Reflect_axe = .text:0x00180ED4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReflect_axe = .text:0x00180EF4; // type:function size:0x118 scope:global align:4
+Player_actor_main_Reflect_axe = .text:0x0018100C; // type:function size:0xC8 scope:global align:4
+Player_actor_request_main_broken_axe_type_reflect = .text:0x001810D4; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_broken_axe_type_swing = .text:0x0018116C; // type:function size:0xA0 scope:global align:4
+Player_actor_setup_main_Broken_axe = .text:0x0018120C; // type:function size:0xBC scope:global align:4
+Player_actor_settle_main_Broken_axe = .text:0x001812C8; // type:function size:0x40 scope:global align:4
+Player_actor_Movement_Broken_axe = .text:0x00181308; // type:function size:0x104 scope:global align:4
+Player_actor_CulcAnimation_Broken_axe = .text:0x0018140C; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Broken_axe = .text:0x0018142C; // type:function size:0xAC scope:global align:4
+Player_actor_SearchAnimation_Broken_axe = .text:0x001814D8; // type:function size:0xF8 scope:global align:4
+Player_actor_ObjCheck_Broken_axe = .text:0x001815D0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Broken_axe = .text:0x001815F0; // type:function size:0x20 scope:global align:4
+Player_actor_Broken_axe_demo_ct = .text:0x00181610; // type:function size:0x68 scope:global align:4
+Player_actor_MessageControl_Broken_axe = .text:0x00181678; // type:function size:0xF8 scope:global align:4
+Player_actor_request_proc_index_fromBroken_axe = .text:0x00181770; // type:function size:0x58 scope:global align:4
+Player_actor_main_Broken_axe = .text:0x001817C8; // type:function size:0xB0 scope:global align:4
+Player_actor_request_main_slip_net = .text:0x00181878; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Slip_net = .text:0x00181910; // type:function size:0x108 scope:global align:4
+Player_actor_Set_FootMark = .text:0x00181A18; // type:function size:0x80 scope:global align:4
+Player_actor_settle_main_Slip_net = .text:0x00181A98; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Slip_net = .text:0x00181AB8; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Slip_net = .text:0x00181AE0; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Slip_net = .text:0x00181B04; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Slip_net = .text:0x00181B24; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Slip_net = .text:0x00181B44; // type:function size:0xC4 scope:global align:4
+Player_actor_request_proc_index_fromSlip_net = .text:0x00181C08; // type:function size:0xBC scope:global align:4
+Player_actor_main_Slip_net = .text:0x00181CC4; // type:function size:0xA0 scope:global align:4
+Player_actor_request_main_ready_net = .text:0x00181D64; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Ready_net = .text:0x00181DC8; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Ready_net = .text:0x00181E58; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Ready_net = .text:0x00181E80; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Ready_net = .text:0x00181EA4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Ready_net = .text:0x00181EC4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReady_net = .text:0x00181EE4; // type:function size:0x100 scope:global align:4
+Player_actor_main_Ready_net = .text:0x00181FE4; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_ready_walk_net = .text:0x0018206C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Ready_walk_net = .text:0x001820D0; // type:function size:0x90 scope:global align:4
+Player_actor_CulcAnimation_Ready_walk_net = .text:0x00182160; // type:function size:0x1D8 scope:global align:4
+Player_actor_SearchAnimation_Ready_walk_net = .text:0x00182338; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Ready_walk_net = .text:0x001823AC; // type:function size:0x254 scope:global align:4
+Player_actor_ObjCheck_Ready_walk_net = .text:0x00182600; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Ready_walk_net = .text:0x00182620; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReady_walk_net = .text:0x00182640; // type:function size:0x144 scope:global align:4
+Player_actor_main_Ready_walk_net = .text:0x00182784; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_swing_net = .text:0x00182828; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Swing_net = .text:0x001828C0; // type:function size:0xD8 scope:global align:4
+Player_actor_SetEffect_Swing_net = .text:0x00182998; // type:function size:0x134 scope:global align:4
+Player_actor_settle_main_Swing_net = .text:0x00182ACC; // type:function size:0x20 scope:global align:4
+Player_actor_HitBGCheck_Swing_net = .text:0x00182AEC; // type:function size:0x1BC scope:global align:4
+Player_actor_Item_CheckLocalCapture_forNet = .text:0x00182CA8; // type:function size:0x29C scope:global align:4
+Player_actor_CheckCaptureForce_forNet = .text:0x00182F44; // type:function size:0x28 scope:global align:4
+Player_actor_CheckCapture_forNet = .text:0x00182F6C; // type:function size:0x164 scope:global align:4
+Player_actor_CatchSomethingCheck_common = .text:0x001830D0; // type:function size:0x100 scope:global align:4
+Player_actor_CatchSomethingCheck_Swing_net = .text:0x001831D0; // type:function size:0x28 scope:global align:4
+Player_actor_CorrectSomething_Swing_net = .text:0x001831F8; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Swing_net = .text:0x0018323C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Swing_net = .text:0x00183264; // type:function size:0x4C scope:global align:4
+Player_actor_SearchAnimation_Swing_net = .text:0x001832B0; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Swing_net = .text:0x00183304; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Swing_net = .text:0x00183324; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromSwing_net = .text:0x00183344; // type:function size:0xB8 scope:global align:4
+Player_actor_main_Swing_net = .text:0x001833FC; // type:function size:0xE0 scope:global align:4
+Player_actor_request_main_pull_net = .text:0x001834DC; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Pull_net = .text:0x00183574; // type:function size:0xF0 scope:global align:4
+Player_actor_Movement_Pull_net = .text:0x00183664; // type:function size:0xDC scope:global align:4
+Player_actor_CorrectSomething_Pull_net = .text:0x00183740; // type:function size:0x60 scope:global align:4
+Player_actor_CulcAnimation_Pull_net = .text:0x001837A0; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Pull_net = .text:0x001837C0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pull_net = .text:0x001837E0; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Pull_net = .text:0x00183800; // type:function size:0x54 scope:global align:4
+Player_actor_Get_mushi_msg_num = .text:0x00183854; // type:function size:0x18 scope:global align:4
+Player_actor_Pull_net_demo_ct = .text:0x0018386C; // type:function size:0x1B4 scope:global align:4
+Player_actor_MessageControl_Pull_net = .text:0x00183A20; // type:function size:0xA4 scope:global align:4
+Player_actor_request_proc_index_fromPull_net = .text:0x00183AC4; // type:function size:0x40 scope:global align:4
+Player_actor_main_Pull_net = .text:0x00183B04; // type:function size:0xC0 scope:global align:4
+Player_actor_request_main_stop_net = .text:0x00183BC4; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Stop_net = .text:0x00183C28; // type:function size:0x88 scope:global align:4
+Player_actor_Movement_Stop_net = .text:0x00183CB0; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Stop_net = .text:0x00183CD8; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Stop_net = .text:0x00183CFC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Stop_net = .text:0x00183D1C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStop_net = .text:0x00183D3C; // type:function size:0x44 scope:global align:4
+Player_actor_main_Stop_net = .text:0x00183D80; // type:function size:0x8C scope:global align:4
+Player_actor_request_main_notice_net = .text:0x00183E0C; // type:function size:0x70 scope:global align:4
+Player_actor_setup_main_Notice_net = .text:0x00183E7C; // type:function size:0x1A0 scope:global align:4
+Player_actor_settle_main_Notice_net = .text:0x0018401C; // type:function size:0xDC scope:global align:4
+Player_actor_Movement_Notice_net = .text:0x001840F8; // type:function size:0x28 scope:global align:4
+Player_actor_CorrectSomething_Notice_net = .text:0x00184120; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Notice_net = .text:0x00184144; // type:function size:0x24 scope:global align:4
+Player_actor_set_eye_pattern_Notice_net = .text:0x00184168; // type:function size:0x44 scope:global align:4
+Player_actor_ObjCheck_Notice_net = .text:0x001841AC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Notice_net = .text:0x001841CC; // type:function size:0x20 scope:global align:4
+Player_actor_DeleteMark_Notice_net = .text:0x001841EC; // type:function size:0x64 scope:global align:4
+Player_actor_MessageControl_Notice_net = .text:0x00184250; // type:function size:0x244 scope:global align:4
+Player_actor_request_proc_index_fromNotice_net = .text:0x00184494; // type:function size:0xB4 scope:global align:4
+Player_actor_main_Notice_net = .text:0x00184548; // type:function size:0xB8 scope:global align:4
+Player_actor_request_main_putaway_net = .text:0x00184600; // type:function size:0x70 scope:global align:4
+Player_actor_setup_main_Putaway_net = .text:0x00184670; // type:function size:0xB8 scope:global align:4
+Player_actor_Movement_Putaway_net = .text:0x00184728; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Putaway_net = .text:0x00184750; // type:function size:0x20 scope:global align:4
+Player_actor_CorrectSomething_Putaway_net = .text:0x00184770; // type:function size:0xE8 scope:global align:4
+Player_actor_SearchAnimation_Putaway_net = .text:0x00184858; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Putaway_net = .text:0x001848A4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Putaway_net = .text:0x001848C4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromPutaway_net = .text:0x001848E4; // type:function size:0xA0 scope:global align:4
+Player_actor_main_Putaway_net = .text:0x00184984; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_ready_rod = .text:0x00184A28; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Ready_rod = .text:0x00184A8C; // type:function size:0xB4 scope:global align:4
+Player_actor_Movement_Ready_rod = .text:0x00184B40; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Ready_rod = .text:0x00184B68; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Ready_rod = .text:0x00184B88; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Ready_rod = .text:0x00184BA8; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Ready_rod = .text:0x00184BC8; // type:function size:0x54 scope:global align:4
+Player_actor_request_proc_index_fromReady_rod = .text:0x00184C1C; // type:function size:0x264 scope:global align:4
+Player_actor_main_Ready_rod = .text:0x00184E80; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_cast_rod = .text:0x00184F1C; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Cast_rod = .text:0x00184FA0; // type:function size:0x104 scope:global align:4
+Player_actor_Movement_Cast_rod = .text:0x001850A4; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Cast_rod = .text:0x001850CC; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Cast_rod = .text:0x001850EC; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Cast_rod = .text:0x00185134; // type:function size:0x5C scope:global align:4
+Player_actor_ObjCheck_Cast_rod = .text:0x00185190; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Cast_rod = .text:0x001851B0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromCast_rod = .text:0x001851D0; // type:function size:0x2C scope:global align:4
+Player_actor_main_Cast_rod = .text:0x001851FC; // type:function size:0xA0 scope:global align:4
+Player_actor_request_main_air_rod = .text:0x0018529C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Air_rod = .text:0x00185300; // type:function size:0x12C scope:global align:4
+Player_actor_Movement_Air_rod = .text:0x0018542C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Air_rod = .text:0x00185454; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Air_rod = .text:0x00185474; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Air_rod = .text:0x001854BC; // type:function size:0x5C scope:global align:4
+Player_actor_ObjCheck_Air_rod = .text:0x00185518; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Air_rod = .text:0x00185538; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromAir_rod = .text:0x00185558; // type:function size:0x58 scope:global align:4
+Player_actor_main_Air_rod = .text:0x001855B0; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_relax_rod = .text:0x00185654; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Relax_rod = .text:0x001856B8; // type:function size:0xB4 scope:global align:4
+Player_actor_Movement_Relax_rod = .text:0x0018576C; // type:function size:0x3C scope:global align:4
+Player_actor_CulcAnimation_Relax_rod = .text:0x001857A8; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Relax_rod = .text:0x001857CC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Relax_rod = .text:0x001857EC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRelax_rod = .text:0x0018580C; // type:function size:0x134 scope:global align:4
+Player_actor_main_Relax_rod = .text:0x00185940; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_collect_rod = .text:0x001859DC; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Collect_rod = .text:0x00185A40; // type:function size:0x114 scope:global align:4
+Player_actor_settle_main_Collect_rod = .text:0x00185B54; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Collect_rod = .text:0x00185B74; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Collect_rod = .text:0x00185B9C; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Collect_rod = .text:0x00185BBC; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Collect_rod = .text:0x00185C10; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Collect_rod = .text:0x00185C30; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromCollect_rod = .text:0x00185C50; // type:function size:0x60 scope:global align:4
+Player_actor_main_Collect_rod = .text:0x00185CB0; // type:function size:0xB8 scope:global align:4
+Player_actor_request_main_vib_rod = .text:0x00185D68; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Vib_rod = .text:0x00185DCC; // type:function size:0xB8 scope:global align:4
+Player_actor_Movement_Vib_rod = .text:0x00185E84; // type:function size:0x3C scope:global align:4
+Player_actor_CulcAnimation_Vib_rod = .text:0x00185EC0; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Vib_rod = .text:0x00185EE4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Vib_rod = .text:0x00185F04; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromVib_rod = .text:0x00185F24; // type:function size:0x2C scope:global align:4
+Player_actor_main_Vib_rod = .text:0x00185F50; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_fly_rod = .text:0x00185FE8; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Fly_rod = .text:0x0018604C; // type:function size:0xB4 scope:global align:4
+Player_actor_settle_main_Fly_rod = .text:0x00186100; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Fly_rod = .text:0x00186120; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Fly_rod = .text:0x00186148; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Fly_rod = .text:0x00186168; // type:function size:0x54 scope:global align:4
+Player_actor_ObjCheck_Fly_rod = .text:0x001861BC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Fly_rod = .text:0x001861DC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromFly_rod = .text:0x001861FC; // type:function size:0x40 scope:global align:4
+Player_actor_main_Fly_rod = .text:0x0018623C; // type:function size:0xB8 scope:global align:4
+Player_actor_request_main_notice_rod = .text:0x001862F4; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Notice_rod = .text:0x00186368; // type:function size:0x134 scope:global align:4
+Player_actor_settle_main_Notice_rod = .text:0x0018649C; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Notice_rod = .text:0x001864E0; // type:function size:0xCC scope:global align:4
+Player_actor_CulcAnimation_Notice_rod = .text:0x001865AC; // type:function size:0x20 scope:global align:4
+Player_actor_set_eye_pattern_Notice_rod = .text:0x001865CC; // type:function size:0x30 scope:global align:4
+Player_actor_ObjCheck_Notice_rod = .text:0x001865FC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Notice_rod = .text:0x0018661C; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Notice_rod = .text:0x0018663C; // type:function size:0x54 scope:global align:4
+Player_actor_AppearMark_Notice_rod = .text:0x00186690; // type:function size:0xD4 scope:global align:4
+Player_actor_DeleteMark_Notice_rod = .text:0x00186764; // type:function size:0x64 scope:global align:4
+Player_actor_Get_sakana_msg_num = .text:0x001867C8; // type:function size:0x18 scope:global align:4
+Player_actor_Notice_rod_demo_ct = .text:0x001867E0; // type:function size:0x140 scope:global align:4
+Player_actor_MessageControl_Notice_rod = .text:0x00186920; // type:function size:0x2B8 scope:global align:4
+Player_actor_request_proc_index_fromNotice_rod = .text:0x00186BD8; // type:function size:0x9C scope:global align:4
+Player_actor_main_Notice_rod = .text:0x00186C74; // type:function size:0xC4 scope:global align:4
+Player_actor_request_main_putaway_rod = .text:0x00186D38; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Putaway_rod = .text:0x00186DB8; // type:function size:0xD4 scope:global align:4
+Player_actor_Movement_Putaway_rod = .text:0x00186E8C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Putaway_rod = .text:0x00186EB4; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Putaway_rod = .text:0x00186ED4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Putaway_rod = .text:0x00186EF4; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Putaway_rod = .text:0x00186F14; // type:function size:0x54 scope:global align:4
+Player_actor_SetTimer_Putaway_rod = .text:0x00186F68; // type:function size:0x18 scope:global align:4
+Player_actor_request_proc_index_fromPutaway_rod = .text:0x00186F80; // type:function size:0xA4 scope:global align:4
+Player_actor_main_Putaway_rod = .text:0x00187024; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_dig_scoop_all = .text:0x001870D0; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Dig_scoop = .text:0x00187160; // type:function size:0xFC scope:global align:4
+Player_actor_Movement_Dig_scoop = .text:0x0018725C; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Dig_scoop = .text:0x00187294; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectHit_Dig_scoop = .text:0x001872B4; // type:function size:0x198 scope:global align:4
+Player_actor_SetEffect_Dig_scoop = .text:0x0018744C; // type:function size:0x28 scope:global align:4
+Player_actor_Put_Hole_Dig_scoop = .text:0x00187474; // type:function size:0x114 scope:global align:4
+Player_actor_SetSound_Dig_scoop = .text:0x00187588; // type:function size:0xF4 scope:global align:4
+Player_actor_informed_insects_Dig_scoop = .text:0x0018767C; // type:function size:0xB0 scope:global align:4
+Player_actor_SearchAnimation_Dig_scoop = .text:0x0018772C; // type:function size:0x78 scope:global align:4
+Player_actor_ObjCheck_Dig_scoop = .text:0x001877A4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Dig_scoop = .text:0x001877C4; // type:function size:0x20 scope:global align:4
+Player_actor_lean_angle_scoop_common = .text:0x001877E4; // type:function size:0x118 scope:global align:4
+Player_actor_lean_angle_Dig_scoop = .text:0x001878FC; // type:function size:0x2C scope:global align:4
+Player_actor_request_proc_index_fromDig_scoop = .text:0x00187928; // type:function size:0x148 scope:global align:4
+Player_actor_main_Dig_scoop = .text:0x00187A70; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_fill_scoop_all = .text:0x00187B14; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Fill_scoop = .text:0x00187B98; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Fill_scoop = .text:0x00187C28; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Fill_scoop = .text:0x00187C60; // type:function size:0x20 scope:global align:4
+Player_actor_Reset_Hole_Fill_scoop = .text:0x00187C80; // type:function size:0x98 scope:global align:4
+Player_actor_SetEffectHit_Fill_scoop = .text:0x00187D18; // type:function size:0x218 scope:global align:4
+Player_actor_SetEffect_Fill_scoop = .text:0x00187F30; // type:function size:0x24 scope:global align:4
+Player_actor_SetSound_Fill_scoop = .text:0x00187F54; // type:function size:0x80 scope:global align:4
+Player_actor_SearchAnimation_Fill_scoop = .text:0x00187FD4; // type:function size:0x70 scope:global align:4
+Player_actor_ObjCheck_Fill_scoop = .text:0x00188044; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Fill_scoop = .text:0x00188064; // type:function size:0x20 scope:global align:4
+Player_actor_lean_angle_Fill_scoop = .text:0x00188084; // type:function size:0x54 scope:global align:4
+Player_actor_request_proc_index_fromFill_scoop = .text:0x001880D8; // type:function size:0x148 scope:global align:4
+Player_actor_main_Fill_scoop = .text:0x00188220; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_reflect_scoop_all = .text:0x001882CC; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Reflect_scoop = .text:0x00188364; // type:function size:0xA0 scope:global align:4
+Player_actor_settle_main_Reflect_scoop = .text:0x00188404; // type:function size:0x18 scope:global align:4
+Player_actor_Movement_Reflect_scoop = .text:0x0018841C; // type:function size:0x5C scope:global align:4
+Player_actor_CulcAnimation_Reflect_scoop = .text:0x00188478; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffectHit_Reflect_scoop = .text:0x00188498; // type:function size:0x53C scope:global align:4
+Player_actor_SetEffect_Reflect_scoop = .text:0x001889D4; // type:function size:0x20 scope:global align:4
+Player_actor_SetAngleSpeedF_Reflect_scoop = .text:0x001889F4; // type:function size:0x5C scope:global align:4
+Player_actor_SetOrderNPC_Reflect_scoop = .text:0x00188A50; // type:function size:0x48 scope:global align:4
+Player_actor_SetSound_Reflect_scoop = .text:0x00188A98; // type:function size:0x418 scope:global align:4
+Player_actor_informed_insects_Reflect_scoop = .text:0x00188EB0; // type:function size:0xB0 scope:global align:4
+Player_actor_SearchAnimation_Reflect_scoop = .text:0x00188F60; // type:function size:0x80 scope:global align:4
+Player_actor_ObjCheck_Reflect_scoop = .text:0x00188FE0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Reflect_scoop = .text:0x00189000; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReflect_scoop = .text:0x00189020; // type:function size:0x110 scope:global align:4
+Player_actor_main_Reflect_scoop = .text:0x00189130; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_air_scoop_all = .text:0x001891D4; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Air_scoop = .text:0x00189238; // type:function size:0x74 scope:global align:4
+Player_actor_Movement_Air_scoop = .text:0x001892AC; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Air_scoop = .text:0x001892D4; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Air_scoop = .text:0x001892F4; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Air_scoop = .text:0x0018933C; // type:function size:0x5C scope:global align:4
+Player_actor_ObjCheck_Air_scoop = .text:0x00189398; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Air_scoop = .text:0x001893B8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromAir_scoop = .text:0x001893D8; // type:function size:0x58 scope:global align:4
+Player_actor_main_Air_scoop = .text:0x00189430; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_putin_scoop_all = .text:0x001894D4; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_putin_scoop_from_submenu = .text:0x0018956C; // type:function size:0x44 scope:global align:4
+Player_actor_setup_main_Putin_scoop = .text:0x001895B0; // type:function size:0x12C scope:global align:4
+Player_actor_Movement_Putin_scoop = .text:0x001896DC; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Putin_scoop = .text:0x00189714; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Putin_scoop = .text:0x00189734; // type:function size:0x24 scope:global align:4
+Player_actor_SearchAnimation_Putin_scoop = .text:0x00189758; // type:function size:0x68 scope:global align:4
+Player_actor_ObjCheck_Putin_scoop = .text:0x001897C0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Putin_scoop = .text:0x001897E0; // type:function size:0x20 scope:global align:4
+Player_actor_lean_angle_Putin_scoop = .text:0x00189800; // type:function size:0x2C scope:global align:4
+Player_actor_request_proc_index_fromPutin_scoop = .text:0x0018982C; // type:function size:0x58 scope:global align:4
+Player_actor_main_Putin_scoop = .text:0x00189884; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_putaway_scoop_all = .text:0x00189930; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Putaway_scoop = .text:0x001899C8; // type:function size:0xBC scope:global align:4
+Player_actor_Movement_Putaway_scoop = .text:0x00189A84; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Putaway_scoop = .text:0x00189AAC; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Putaway_scoop = .text:0x00189ACC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Putaway_scoop = .text:0x00189AEC; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Putaway_scoop = .text:0x00189B0C; // type:function size:0x54 scope:global align:4
+Player_actor_Set_Item_Putaway_scoop = .text:0x00189B60; // type:function size:0x18 scope:global align:4
+Player_actor_request_proc_index_fromPutaway_scoop = .text:0x00189B78; // type:function size:0xC0 scope:global align:4
+Player_actor_main_Putaway_scoop = .text:0x00189C38; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_get_scoop_all = .text:0x00189CE4; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Get_scoop = .text:0x00189D74; // type:function size:0x16C scope:global align:4
+Player_actor_settle_main_Get_scoop = .text:0x00189EE0; // type:function size:0x78 scope:global align:4
+Player_actor_Movement_Get_scoop = .text:0x00189F58; // type:function size:0xD8 scope:global align:4
+Player_actor_CulcAnimation_Get_scoop = .text:0x0018A030; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Get_scoop = .text:0x0018A050; // type:function size:0x28 scope:global align:4
+Player_actor_Put_Hole_Get_scoop = .text:0x0018A078; // type:function size:0x78 scope:global align:4
+Player_actor_SearchAnimation_Get_scoop = .text:0x0018A0F0; // type:function size:0x70 scope:global align:4
+Player_actor_set_eye_pattern_Get_scoop = .text:0x0018A160; // type:function size:0x30 scope:global align:4
+Player_actor_ObjCheck_Get_scoop = .text:0x0018A190; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Get_scoop = .text:0x0018A1B0; // type:function size:0x20 scope:global align:4
+Player_actor_lean_angle_Get_scoop = .text:0x0018A1D0; // type:function size:0x120 scope:global align:4
+Player_actor_Get_scoop_demo_ct = .text:0x0018A2F0; // type:function size:0xC8 scope:global align:4
+Player_actor_MessageControl_Get_scoop = .text:0x0018A3B8; // type:function size:0x194 scope:global align:4
+Player_actor_Set_Item_Get_scoop = .text:0x0018A54C; // type:function size:0x60 scope:global align:4
+Player_actor_request_proc_index_fromGet_scoop = .text:0x0018A5AC; // type:function size:0x6C scope:global align:4
+Player_actor_main_Get_scoop = .text:0x0018A618; // type:function size:0xC4 scope:global align:4
+Player_actor_request_main_talk_all = .text:0x0018A6DC; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Talk = .text:0x0018A770; // type:function size:0xF0 scope:global align:4
+Player_actor_settle_main_Talk = .text:0x0018A860; // type:function size:0x50 scope:global align:4
+Player_actor_Movement_Talk = .text:0x0018A8B0; // type:function size:0x110 scope:global align:4
+Player_actor_CulcAnimation_Talk = .text:0x0018A9C0; // type:function size:0x20 scope:global align:4
+Player_actor_Set_FeelEffect_common = .text:0x0018A9E0; // type:function size:0x54 scope:global align:4
+Player_actor_SearchAnimation_Talk = .text:0x0018AA34; // type:function size:0x40 scope:global align:4
+Player_actor_ChangeAnimation_FromDemoOrder_common = .text:0x0018AA74; // type:function size:0x158 scope:global align:4
+Player_actor_ChangeAnimation_FromDemoOrder_Talk = .text:0x0018ABCC; // type:function size:0x24 scope:global align:4
+Player_actor_SetEffect_FromDemoOrder_common = .text:0x0018ABF0; // type:function size:0x8C scope:global align:4
+Player_actor_SetEffect_FromDemoOrder_Talk = .text:0x0018AC7C; // type:function size:0x20 scope:global align:4
+Player_actor_set_eye_pattern_Talk = .text:0x0018AC9C; // type:function size:0x78 scope:global align:4
+Player_actor_ObjCheck_Talk = .text:0x0018AD14; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Talk = .text:0x0018AD34; // type:function size:0x20 scope:global align:4
+Player_actor_main_Talk = .text:0x0018AD54; // type:function size:0xC4 scope:global align:4
+Player_actor_request_main_recieve_wait = .text:0x0018AE18; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Recieve_wait = .text:0x0018AEB0; // type:function size:0xC0 scope:global align:4
+Player_actor_Movement_Recieve_wait = .text:0x0018AF70; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Recieve_wait = .text:0x0018AF94; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Recieve_wait = .text:0x0018AFB8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRecieve_wait = .text:0x0018AFD8; // type:function size:0x8C scope:global align:4
+Player_actor_main_Recieve_wait = .text:0x0018B064; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_recieve_stretch = .text:0x0018B0EC; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Recieve_stretch = .text:0x0018B184; // type:function size:0xF0 scope:global align:4
+Player_actor_Movement_Recieve_stretch = .text:0x0018B274; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Recieve_stretch = .text:0x0018B298; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Recieve_stretch = .text:0x0018B2BC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRecieve_stretch = .text:0x0018B2DC; // type:function size:0x70 scope:global align:4
+Player_actor_main_Recieve_stretch = .text:0x0018B34C; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_recieve = .text:0x0018B3E0; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Recieve = .text:0x0018B478; // type:function size:0x100 scope:global align:4
+Player_actor_Movement_Recieve = .text:0x0018B578; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Recieve = .text:0x0018B59C; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Recieve = .text:0x0018B5C0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRecieve = .text:0x0018B5E0; // type:function size:0x90 scope:global align:4
+Player_actor_main_Recieve = .text:0x0018B670; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_recieve_putaway = .text:0x0018B70C; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Recieve_putaway = .text:0x0018B7A4; // type:function size:0x108 scope:global align:4
+Player_actor_settle_main_Recieve_putaway = .text:0x0018B8AC; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Recieve_putaway = .text:0x0018B8CC; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Recieve_putaway = .text:0x0018B8F0; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Recieve_putaway = .text:0x0018B914; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRecieve_putaway = .text:0x0018B934; // type:function size:0x84 scope:global align:4
+Player_actor_main_Recieve_putaway = .text:0x0018B9B8; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_give_all = .text:0x0018BA54; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_give_from_submenu = .text:0x0018BAFC; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Give = .text:0x0018BB7C; // type:function size:0x124 scope:global align:4
+Player_actor_Movement_Give = .text:0x0018BCA0; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Give = .text:0x0018BCC4; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Give = .text:0x0018BCE8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromGive = .text:0x0018BD08; // type:function size:0x6C scope:global align:4
+Player_actor_main_Give = .text:0x0018BD74; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_give_wait_all = .text:0x0018BE10; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Give_wait = .text:0x0018BEA8; // type:function size:0x108 scope:global align:4
+Player_actor_settle_main_Give_wait = .text:0x0018BFB0; // type:function size:0x2C scope:global align:4
+Player_actor_Movement_Give_wait = .text:0x0018BFDC; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Give_wait = .text:0x0018C000; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Give_wait = .text:0x0018C024; // type:function size:0x20 scope:global align:4
+Player_actor_Set_item_matrix_set_Give_wait = .text:0x0018C044; // type:function size:0x2C scope:global align:4
+Player_actor_request_proc_index_fromGive_wait = .text:0x0018C070; // type:function size:0x8C scope:global align:4
+Player_actor_main_Give_wait = .text:0x0018C0FC; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_takeout_item = .text:0x0018C18C; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Takeout_item = .text:0x0018C200; // type:function size:0x18C scope:global align:4
+Player_actor_settle_main_Takeout_item = .text:0x0018C38C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Takeout_item = .text:0x0018C3AC; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Takeout_item = .text:0x0018C3D4; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Takeout_item = .text:0x0018C3F4; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Takeout_item = .text:0x0018C414; // type:function size:0x54 scope:global align:4
+Player_actor_BGcheck_Takeout_item = .text:0x0018C468; // type:function size:0x20 scope:global align:4
+Player_actor_SearchTimer_Takeout_item = .text:0x0018C488; // type:function size:0xF8 scope:global align:4
+Player_actor_request_proc_index_fromTakeout_item = .text:0x0018C580; // type:function size:0xAC scope:global align:4
+Player_actor_main_Takeout_item = .text:0x0018C62C; // type:function size:0xB4 scope:global align:4
+Player_actor_request_main_putin_item = .text:0x0018C6E0; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Putin_item = .text:0x0018C754; // type:function size:0x1A0 scope:global align:4
+Player_actor_Movement_Putin_item = .text:0x0018C8F4; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Putin_item = .text:0x0018C91C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Putin_item = .text:0x0018C93C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Putin_item = .text:0x0018C95C; // type:function size:0x20 scope:global align:4
+Player_actor_SetItemScale_Putin_item = .text:0x0018C97C; // type:function size:0x9C scope:global align:4
+Player_actor_SearchAnimation_Putin_item = .text:0x0018CA18; // type:function size:0x54 scope:global align:4
+Player_actor_request_proc_index_fromPutin_item = .text:0x0018CA6C; // type:function size:0x64 scope:global align:4
+Player_actor_main_Putin_item = .text:0x0018CAD0; // type:function size:0xB0 scope:global align:4
+Player_actor_request_main_demo_wait_all = .text:0x0018CB80; // type:function size:0x7C scope:global align:4
+Player_actor_request_main_demo_wait_from_submenu = .text:0x0018CBFC; // type:function size:0x44 scope:global align:4
+Player_actor_setup_main_Demo_wait = .text:0x0018CC40; // type:function size:0xB8 scope:global align:4
+Player_actor_settle_main_Demo_wait = .text:0x0018CCF8; // type:function size:0x50 scope:global align:4
+Player_actor_Movement_Demo_wait = .text:0x0018CD48; // type:function size:0xFC scope:global align:4
+Player_actor_CulcAnimation_Demo_wait = .text:0x0018CE44; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Demo_wait = .text:0x0018CE64; // type:function size:0x40 scope:global align:4
+Player_actor_ChangeAnimation_FromDemoOrder_Demo_wait = .text:0x0018CEA4; // type:function size:0x24 scope:global align:4
+Player_actor_SetEffect_FromDemoOrder_Demo_wait = .text:0x0018CEC8; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Demo_wait = .text:0x0018CEE8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_wait = .text:0x0018CF08; // type:function size:0x64 scope:global align:4
+Player_actor_main_Demo_wait = .text:0x0018CF6C; // type:function size:0xCC scope:global align:4
+Player_actor_request_main_demo_walk_all = .text:0x0018D038; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Demo_walk = .text:0x0018D0D0; // type:function size:0xF8 scope:global align:4
+Player_actor_CulcAnimation_Demo_walk = .text:0x0018D1C8; // type:function size:0x38 scope:global align:4
+Player_actor_SearchAnimation_Demo_walk = .text:0x0018D200; // type:function size:0x2C scope:global align:4
+Player_actor_Movement_Demo_walk = .text:0x0018D22C; // type:function size:0x4C0 scope:global align:4
+Player_actor_ObjCheck_Demo_walk = .text:0x0018D6EC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Demo_walk = .text:0x0018D70C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_walk = .text:0x0018D72C; // type:function size:0x7C scope:global align:4
+Player_actor_main_Demo_walk = .text:0x0018D7A8; // type:function size:0xB0 scope:global align:4
+Player_actor_request_main_demo_geton_train = .text:0x0018D858; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Demo_geton_train = .text:0x0018D8E8; // type:function size:0xD8 scope:global align:4
+Player_actor_settle_main_Demo_geton_train = .text:0x0018D9C0; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_train = .text:0x0018D9F8; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Demo_geton_train = .text:0x0018DA18; // type:function size:0x54 scope:global align:4
+Player_actor_Movement_Demo_geton_train = .text:0x0018DA6C; // type:function size:0x4C scope:global align:4
+Player_actor_request_proc_index_fromDemo_geton_train = .text:0x0018DAB8; // type:function size:0x40 scope:global align:4
+Player_actor_main_Demo_geton_train = .text:0x0018DAF8; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_demo_geton_train_wait_all = .text:0x0018DB8C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Demo_geton_train_wait = .text:0x0018DBF0; // type:function size:0x70 scope:global align:4
+Player_actor_Movement_Demo_geton_train_wait = .text:0x0018DC60; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_train_wait = .text:0x0018DC84; // type:function size:0x24 scope:global align:4
+Player_actor_main_Demo_geton_train_wait = .text:0x0018DCA8; // type:function size:0x5C scope:global align:4
+Player_actor_request_main_demo_getoff_train = .text:0x0018DD04; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Demo_getoff_train = .text:0x0018DD94; // type:function size:0xD8 scope:global align:4
+Player_actor_settle_main_Demo_getoff_train = .text:0x0018DE6C; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Demo_getoff_train = .text:0x0018DEA4; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Demo_getoff_train = .text:0x0018DEC4; // type:function size:0x54 scope:global align:4
+Player_actor_Movement_Demo_getoff_train = .text:0x0018DF18; // type:function size:0x4C scope:global align:4
+Player_actor_request_proc_index_fromDemo_getoff_train = .text:0x0018DF64; // type:function size:0x64 scope:global align:4
+Player_actor_main_Demo_getoff_train = .text:0x0018DFC8; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_demo_standing_train_all = .text:0x0018E05C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Demo_standing_train = .text:0x0018E0C0; // type:function size:0x90 scope:global align:4
+Player_actor_CulcAnimation_Demo_standing_train = .text:0x0018E150; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Demo_standing_train = .text:0x0018E174; // type:function size:0xFC scope:global align:4
+Player_actor_main_Demo_standing_train = .text:0x0018E270; // type:function size:0x68 scope:global align:4
+Player_actor_request_main_demo_wade_all = .text:0x0018E2D8; // type:function size:0x70 scope:global align:4
+Player_actor_setup_main_Demo_wade = .text:0x0018E348; // type:function size:0x134 scope:global align:4
+Player_actor_settle_main_Demo_wade = .text:0x0018E47C; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Demo_wade = .text:0x0018E49C; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Demo_wade = .text:0x0018E4C0; // type:function size:0xB4 scope:global align:4
+Player_actor_ObjCheck_Demo_wade = .text:0x0018E574; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Demo_wade = .text:0x0018E594; // type:function size:0x20 scope:global align:4
+Player_actor_able_request_proc_index_fromDemo_wade_common = .text:0x0018E5B4; // type:function size:0x34 scope:global align:4
+Player_actor_request_proc_index_fromDemo_wade = .text:0x0018E5E8; // type:function size:0x78 scope:global align:4
+Player_actor_main_Demo_wade = .text:0x0018E660; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_hide = .text:0x0018E6F0; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Hide = .text:0x0018E754; // type:function size:0x20 scope:global align:4
+Player_actor_main_Hide = .text:0x0018E774; // type:function size:0x34 scope:global align:4
+Player_actor_request_main_groundhog = .text:0x0018E7A8; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Groundhog = .text:0x0018E80C; // type:function size:0x90 scope:global align:4
+Player_actor_CulcAnimation_Groundhog = .text:0x0018E89C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Groundhog = .text:0x0018E8BC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Groundhog = .text:0x0018E8DC; // type:function size:0x20 scope:global align:4
+Player_actor_main_Groundhog = .text:0x0018E8FC; // type:function size:0x70 scope:global align:4
+Player_actor_request_main_release_creature_all = .text:0x0018E96C; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_release_creature_from_submenu = .text:0x0018EA18; // type:function size:0x4C scope:global align:4
+Player_actor_setup_main_Release_creature = .text:0x0018EA64; // type:function size:0x24C scope:global align:4
+Player_actor_settle_main_Release_creature = .text:0x0018ECB0; // type:function size:0x18 scope:global align:4
+Player_actor_Movement_Release_creature = .text:0x0018ECC8; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Release_creature = .text:0x0018ECF0; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Release_creature = .text:0x0018ED14; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Release_creature = .text:0x0018ED34; // type:function size:0x20 scope:global align:4
+Player_actor_add_calc_head_angle = .text:0x0018ED54; // type:function size:0x3A8 scope:global align:4
+Player_actor_Look_Release_creature = .text:0x0018F0FC; // type:function size:0x334 scope:global align:4
+Player_actor_request_proc_index_fromRelease_creature = .text:0x0018F430; // type:function size:0xC0 scope:global align:4
+Player_actor_main_Release_creature = .text:0x0018F4F0; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_wash_car_all = .text:0x0018F58C; // type:function size:0xB8 scope:global align:4
+Player_actor_setup_main_Wash_car = .text:0x0018F644; // type:function size:0xCC scope:global align:4
+Player_actor_settle_main_Wash_car = .text:0x0018F710; // type:function size:0x68 scope:global align:4
+Player_actor_CulcAnimation_Wash_car = .text:0x0018F778; // type:function size:0x134 scope:global align:4
+Player_actor_SetEffect_Wash_car = .text:0x0018F8AC; // type:function size:0x74 scope:global align:4
+Player_actor_SearchAnimation_Wash_car = .text:0x0018F920; // type:function size:0x44 scope:global align:4
+Player_actor_request_proc_index_fromWash_car = .text:0x0018F964; // type:function size:0x44 scope:global align:4
+Player_actor_main_Wash_car = .text:0x0018F9A8; // type:function size:0x54 scope:global align:4
+Player_actor_request_main_tired_all = .text:0x0018F9FC; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Tired = .text:0x0018FA60; // type:function size:0x88 scope:global align:4
+Player_actor_Movement_Tired = .text:0x0018FAE8; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Tired = .text:0x0018FB10; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Tired = .text:0x0018FB30; // type:function size:0xAC scope:global align:4
+Player_actor_SearchAnimation_Tired = .text:0x0018FBDC; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Tired = .text:0x0018FC28; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Tired = .text:0x0018FC48; // type:function size:0x20 scope:global align:4
+Player_actor_main_Tired = .text:0x0018FC68; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_rotate_octagon_all = .text:0x0018FCF0; // type:function size:0xAC scope:global align:4
+Player_actor_setup_main_Rotate_octagon = .text:0x0018FD9C; // type:function size:0xE4 scope:global align:4
+Player_actor_settle_main_Rotate_octagon = .text:0x0018FE80; // type:function size:0x38 scope:global align:4
+Player_actor_Movement_Rotate_octagon = .text:0x0018FEB8; // type:function size:0x4C scope:global align:4
+Player_actor_CulcAnimation_Rotate_octagon = .text:0x0018FF04; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Rotate_octagon = .text:0x0018FF24; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Rotate_octagon = .text:0x0018FF44; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRotate_octagon = .text:0x0018FF64; // type:function size:0x84 scope:global align:4
+Player_actor_main_Rotate_octagon = .text:0x0018FFE8; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_throw_money_all = .text:0x00190080; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Throw_money = .text:0x00190114; // type:function size:0x100 scope:global align:4
+Player_actor_settle_main_Throw_money = .text:0x00190214; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Throw_money = .text:0x0019024C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Throw_money = .text:0x0019026C; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Throw_money = .text:0x001902B8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Throw_money = .text:0x001902D8; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Throw_money = .text:0x001902F8; // type:function size:0x48 scope:global align:4
+Player_actor_SetEffect_Throw_money = .text:0x00190340; // type:function size:0xA4 scope:global align:4
+Player_actor_SearchAnimation_Throw_money = .text:0x001903E4; // type:function size:0x54 scope:global align:4
+Player_actor_request_proc_index_fromThrow_money = .text:0x00190438; // type:function size:0x54 scope:global align:4
+Player_actor_main_Throw_money = .text:0x0019048C; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_pray_all = .text:0x00190534; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Pray = .text:0x001905C8; // type:function size:0x100 scope:global align:4
+Player_actor_settle_main_Pray = .text:0x001906C8; // type:function size:0x74 scope:global align:4
+Player_actor_CulcAnimation_Pray = .text:0x0019073C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Pray = .text:0x0019075C; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Pray = .text:0x001907A8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Pray = .text:0x001907C8; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromPray = .text:0x001907E8; // type:function size:0x48 scope:global align:4
+Player_actor_main_Pray = .text:0x00190830; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_shake_tree_all = .text:0x001908C8; // type:function size:0xA0 scope:global align:4
+Player_actor_setup_main_Shake_tree = .text:0x00190968; // type:function size:0xDC scope:global align:4
+Player_actor_Movement_Shake_tree = .text:0x00190A44; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Shake_tree = .text:0x00190A7C; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Shake_tree = .text:0x00190A9C; // type:function size:0x3F8 scope:global align:4
+Player_actor_SetSound_Shake_tree = .text:0x00190E94; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Shake_tree = .text:0x00190EDC; // type:function size:0x54 scope:global align:4
+Player_actor_Check_BirthBee_Shake_tree = .text:0x00190F30; // type:function size:0x7C scope:global align:4
+Player_actor_ObjCheck_Shake_tree = .text:0x00190FAC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Shake_tree = .text:0x00190FCC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromShake_tree = .text:0x00190FEC; // type:function size:0x150 scope:global align:4
+Player_actor_main_Shake_tree = .text:0x0019113C; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_mail_jump_all = .text:0x001911E8; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Mail_jump = .text:0x0019127C; // type:function size:0x100 scope:global align:4
+Player_actor_settle_main_Mail_jump = .text:0x0019137C; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Mail_jump = .text:0x001913B4; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Mail_jump = .text:0x001913D8; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Mail_jump = .text:0x00191424; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Mail_jump = .text:0x00191444; // type:function size:0x20 scope:global align:4
+Player_actor_main_Mail_jump = .text:0x00191464; // type:function size:0x7C scope:global align:4
+Player_actor_request_main_mail_land_all = .text:0x001914E0; // type:function size:0x64 scope:global align:4
+Player_actor_request_main_mail_land_from_submenu = .text:0x00191544; // type:function size:0x28 scope:global align:4
+Player_actor_setup_main_Mail_land = .text:0x0019156C; // type:function size:0x84 scope:global align:4
+Player_actor_Movement_Mail_land = .text:0x001915F0; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Mail_land = .text:0x00191618; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Mail_land = .text:0x0019163C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Mail_land = .text:0x0019165C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromMail_land = .text:0x0019167C; // type:function size:0xFC scope:global align:4
+Player_actor_main_Mail_land = .text:0x00191778; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_ready_pitfall_all = .text:0x0019180C; // type:function size:0x84 scope:global align:4
+Player_actor_setup_main_Ready_pitfall = .text:0x00191890; // type:function size:0xF0 scope:global align:4
+Player_actor_settle_main_Ready_pitfall = .text:0x00191980; // type:function size:0x4C scope:global align:4
+Player_actor_CulcAnimation_Ready_pitfall = .text:0x001919CC; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Ready_pitfall = .text:0x001919EC; // type:function size:0x4C scope:global align:4
+Player_actor_SetEffect_Ready_pitfall = .text:0x00191A38; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Ready_pitfall = .text:0x00191A80; // type:function size:0x3C scope:global align:4
+Player_actor_set_eye_pattern_Ready_pitfall = .text:0x00191ABC; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Ready_pitfall = .text:0x00191ADC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromReady_pitfall = .text:0x00191AFC; // type:function size:0x2C scope:global align:4
+Player_actor_main_Ready_pitfall = .text:0x00191B28; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_fall_pitfall_all = .text:0x00191BC0; // type:function size:0x64 scope:global align:4
+Player_actor_Get_PlayerAnimeIndex_fromItemKind_Fall_pitfall = .text:0x00191C24; // type:function size:0x2C scope:global align:4
+Player_actor_setup_main_Fall_pitfall = .text:0x00191C50; // type:function size:0x110 scope:global align:4
+Player_actor_settle_main_Fall_pitfall = .text:0x00191D60; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Fall_pitfall = .text:0x00191D84; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Fall_pitfall = .text:0x00191DA4; // type:function size:0x4C scope:global align:4
+Player_actor_set_eye_pattern_Fall_pitfall = .text:0x00191DF0; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Fall_pitfall = .text:0x00191E10; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromFall_pitfall = .text:0x00191E30; // type:function size:0x2C scope:global align:4
+Player_actor_main_Fall_pitfall = .text:0x00191E5C; // type:function size:0x8C scope:global align:4
+Player_actor_request_main_struggle_pitfall_all = .text:0x00191EE8; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Struggle_pitfall = .text:0x00191F4C; // type:function size:0xBC scope:global align:4
+Player_actor_settle_main_Struggle_pitfall = .text:0x00192008; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Struggle_pitfall = .text:0x0019204C; // type:function size:0x24 scope:global align:4
+Player_actor_ControlAnimationSpeed_Struggle_pitfall = .text:0x00192070; // type:function size:0x1C4 scope:global align:4
+Player_actor_CulcAnimation_Struggle_pitfall = .text:0x00192234; // type:function size:0x24 scope:global align:4
+Player_actor_set_eye_pattern_Struggle_pitfall = .text:0x00192258; // type:function size:0x38 scope:global align:4
+Player_actor_ObjCheck_Struggle_pitfall = .text:0x00192290; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStruggle_pitfall = .text:0x001922B0; // type:function size:0x2C scope:global align:4
+Player_actor_main_Struggle_pitfall = .text:0x001922DC; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_climbup_pitfall_all = .text:0x0019236C; // type:function size:0x64 scope:global align:4
+Player_actor_Get_PlayerAnimeIndex_fromItemKind_Climbup_pitfall = .text:0x001923D0; // type:function size:0x2C scope:global align:4
+Player_actor_setup_main_Climbup_pitfall = .text:0x001923FC; // type:function size:0x1A0 scope:global align:4
+Player_actor_settle_main_Climbup_pitfall = .text:0x0019259C; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Climbup_pitfall = .text:0x001925C0; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Climbup_pitfall = .text:0x001925E0; // type:function size:0x4C scope:global align:4
+Player_actor_SearchAnimation_Climbup_pitfall = .text:0x0019262C; // type:function size:0x30 scope:global align:4
+Player_actor_set_eye_pattern_Climbup_pitfall = .text:0x0019265C; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Climbup_pitfall = .text:0x0019267C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromClimbup_pitfall = .text:0x0019269C; // type:function size:0x58 scope:global align:4
+Player_actor_main_Climbup_pitfall = .text:0x001926F4; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_stung_bee_all = .text:0x0019278C; // type:function size:0xA0 scope:global align:4
+Player_actor_setup_main_Stung_bee = .text:0x0019282C; // type:function size:0xD4 scope:global align:4
+Player_actor_Movement_Stung_bee = .text:0x00192900; // type:function size:0xD0 scope:global align:4
+Player_actor_CulcAnimation_Stung_bee = .text:0x001929D0; // type:function size:0x20 scope:global align:4
+Player_actor_ChangeAnimation_Stung_bee = .text:0x001929F0; // type:function size:0x9C scope:global align:4
+Player_actor_SearchAnimation_Stung_bee = .text:0x00192A8C; // type:function size:0x8C scope:global align:4
+Player_actor_set_tex_anime_Stung_bee = .text:0x00192B18; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Stung_bee = .text:0x00192B38; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Stung_bee = .text:0x00192B58; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStung_bee = .text:0x00192B78; // type:function size:0x50 scope:global align:4
+Player_actor_main_Stung_bee = .text:0x00192BC8; // type:function size:0xB0 scope:global align:4
+Player_actor_request_main_notice_bee_all = .text:0x00192C78; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Notice_bee = .text:0x00192CDC; // type:function size:0x104 scope:global align:4
+Player_actor_settle_main_Notice_bee = .text:0x00192DE0; // type:function size:0x44 scope:global align:4
+Player_actor_CulcAnimation_Notice_bee = .text:0x00192E24; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Notice_bee = .text:0x00192E44; // type:function size:0x4C scope:global align:4
+Player_actor_set_eye_pattern_Notice_bee = .text:0x00192E90; // type:function size:0x48 scope:global align:4
+Player_actor_ObjCheck_Notice_bee = .text:0x00192ED8; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Notice_bee = .text:0x00192EF8; // type:function size:0x20 scope:global align:4
+Player_actor_Notice_bee_demo_ct = .text:0x00192F18; // type:function size:0x6C scope:global align:4
+Player_actor_MessageControl_Notice_bee = .text:0x00192F84; // type:function size:0xF4 scope:global align:4
+Player_actor_request_proc_index_fromNotice_bee = .text:0x00193078; // type:function size:0x60 scope:global align:4
+Player_actor_main_Notice_bee = .text:0x001930D8; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_remove_grass = .text:0x00193184; // type:function size:0x9C scope:global align:4
+Player_actor_setup_main_Remove_grass = .text:0x00193220; // type:function size:0xC4 scope:global align:4
+Player_actor_Movement_Remove_grass = .text:0x001932E4; // type:function size:0x24 scope:global align:4
+Player_actor_CulcAnimation_Remove_grass = .text:0x00193308; // type:function size:0x20 scope:global align:4
+Player_actor_ChangeFGNumber_Remove_grass = .text:0x00193328; // type:function size:0x15C scope:global align:4
+Player_actor_SearchAnimation_Remove_grass = .text:0x00193484; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Remove_grass = .text:0x001934D0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Remove_grass = .text:0x001934F0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRemove_grass = .text:0x00193510; // type:function size:0x58 scope:global align:4
+Player_actor_main_Remove_grass = .text:0x00193568; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_shock_all = .text:0x0019360C; // type:function size:0x94 scope:global align:4
+Player_actor_setup_main_Shock = .text:0x001936A0; // type:function size:0xE4 scope:global align:4
+Player_actor_settle_main_Shock = .text:0x00193784; // type:function size:0x40 scope:global align:4
+Player_actor_Movement_Shock = .text:0x001937C4; // type:function size:0xBC scope:global align:4
+Player_actor_CulcAnimation_Shock = .text:0x00193880; // type:function size:0x20 scope:global align:4
+Player_actor_Set_FeelEffect_Shock = .text:0x001938A0; // type:function size:0x54 scope:global align:4
+Player_actor_SearchAnimation_Shock = .text:0x001938F4; // type:function size:0x3C scope:global align:4
+Player_actor_ChangeAnimation_Shock = .text:0x00193930; // type:function size:0xE4 scope:global align:4
+Player_actor_set_eye_pattern_Shock = .text:0x00193A14; // type:function size:0x6C scope:global align:4
+Player_actor_ObjCheck_Shock = .text:0x00193A80; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Shock = .text:0x00193AA0; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromShock = .text:0x00193AC0; // type:function size:0xD0 scope:global align:4
+Player_actor_main_Shock = .text:0x00193B90; // type:function size:0xAC scope:global align:4
+Player_actor_request_main_knock_door = .text:0x00193C3C; // type:function size:0x98 scope:global align:4
+Player_actor_setup_main_Knock_door = .text:0x00193CD4; // type:function size:0x110 scope:global align:4
+Player_actor_settle_main_Knock_door = .text:0x00193DE4; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Knock_door = .text:0x00193E1C; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Knock_door = .text:0x00193E3C; // type:function size:0x4C scope:global align:4
+Player_actor_SetSound_Knock_door = .text:0x00193E88; // type:function size:0x6C scope:global align:4
+Player_actor_SearchAnimation_Knock_door = .text:0x00193EF4; // type:function size:0x3C scope:global align:4
+Player_actor_ObjCheck_Knock_door = .text:0x00193F30; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Knock_door = .text:0x00193F50; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromKnock_door = .text:0x00193F70; // type:function size:0x5C scope:global align:4
+Player_actor_main_Knock_door = .text:0x00193FCC; // type:function size:0xA4 scope:global align:4
+Player_actor_request_main_change_cloth_all = .text:0x00194070; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_change_cloth_forNPC = .text:0x0019410C; // type:function size:0x78 scope:global align:4
+Player_actor_setup_main_Change_cloth = .text:0x00194184; // type:function size:0x164 scope:global align:4
+Player_actor_Movement_Change_cloth = .text:0x001942E8; // type:function size:0xE8 scope:global align:4
+Player_actor_CulcAnimation_Change_cloth = .text:0x001943D0; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Change_cloth = .text:0x001943F0; // type:function size:0xB8 scope:global align:4
+Player_actor_SetTexPallet_Change_cloth = .text:0x001944A8; // type:function size:0xAC scope:global align:4
+Player_actor_SearchAnimation_Change_cloth = .text:0x00194554; // type:function size:0x58 scope:global align:4
+Player_actor_set_eye_pattern_Change_cloth = .text:0x001945AC; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Change_cloth = .text:0x001945CC; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromChange_cloth = .text:0x001945EC; // type:function size:0x84 scope:global align:4
+Player_actor_main_Change_cloth = .text:0x00194670; // type:function size:0xA0 scope:global align:4
+Player_actor_request_main_push_snowball_all = .text:0x00194710; // type:function size:0xB0 scope:global align:4
+Player_actor_setup_main_Push_snowball = .text:0x001947C0; // type:function size:0xC0 scope:global align:4
+Player_actor_CulcAnimation_Push_snowball = .text:0x00194880; // type:function size:0x20 scope:global align:4
+Player_actor_SetEffect_Push_snowball = .text:0x001948A0; // type:function size:0x20 scope:global align:4
+Player_actor_SearchAnimation_Push_snowball = .text:0x001948C0; // type:function size:0x74 scope:global align:4
+Player_actor_request_proc_index_fromPush_snowball = .text:0x00194934; // type:function size:0x5C scope:global align:4
+Player_actor_main_Push_snowball = .text:0x00194990; // type:function size:0x7C scope:global align:4
+Player_actor_request_main_rotate_umbrella_all = .text:0x00194A0C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Rotate_umbrella = .text:0x00194A70; // type:function size:0xCC scope:global align:4
+Player_actor_Movement_Rotate_umbrella = .text:0x00194B3C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Rotate_umbrella = .text:0x00194B64; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Rotate_umbrella = .text:0x00194B84; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Rotate_umbrella = .text:0x00194BA4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRotate_umbrella = .text:0x00194BC4; // type:function size:0x110 scope:global align:4
+Player_actor_main_Rotate_umbrella = .text:0x00194CD4; // type:function size:0x98 scope:global align:4
+Player_actor_request_main_complete_payment = .text:0x00194D6C; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Complete_payment = .text:0x00194DD0; // type:function size:0x8C scope:global align:4
+Player_actor_settle_main_Complete_payment = .text:0x00194E5C; // type:function size:0x3C scope:global align:4
+Player_actor_CulcAnimation_Complete_payment = .text:0x00194E98; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Complete_payment = .text:0x00194EB8; // type:function size:0xCC scope:global align:4
+Player_actor_set_eye_pattern_Complete_payment = .text:0x00194F84; // type:function size:0x30 scope:global align:4
+Player_actor_ObjCheck_Complete_payment = .text:0x00194FB4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Complete_payment = .text:0x00194FD4; // type:function size:0x20 scope:global align:4
+Player_actor_Complete_payment_demo_ct = .text:0x00194FF4; // type:function size:0xA4 scope:global align:4
+Player_actor_MessageControl_Complete_payment = .text:0x00195098; // type:function size:0x110 scope:global align:4
+Player_actor_request_proc_index_fromComplete_payment = .text:0x001951A8; // type:function size:0x44 scope:global align:4
+Player_actor_main_Complete_payment = .text:0x001951EC; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_fail_emu = .text:0x00195288; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Fail_emu = .text:0x001952EC; // type:function size:0x80 scope:global align:4
+Player_actor_settle_main_Fail_emu = .text:0x0019536C; // type:function size:0x18 scope:global align:4
+Player_actor_Movement_Fail_emu = .text:0x00195384; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Fail_emu = .text:0x001953AC; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Fail_emu = .text:0x001953D0; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Fail_emu = .text:0x001953F0; // type:function size:0x20 scope:global align:4
+Player_actor_Fail_emu_demo_ct = .text:0x00195410; // type:function size:0x58 scope:global align:4
+Player_actor_MessageControl_Fail_emu = .text:0x00195468; // type:function size:0xE0 scope:global align:4
+Player_actor_request_proc_index_fromFail_emu = .text:0x00195548; // type:function size:0x58 scope:global align:4
+Player_actor_main_Fail_emu = .text:0x001955A0; // type:function size:0x8C scope:global align:4
+Player_actor_request_main_stung_mosquito_all = .text:0x0019562C; // type:function size:0xF4 scope:global align:4
+Player_actor_setup_main_Stung_mosquito = .text:0x00195720; // type:function size:0x9C scope:global align:4
+Player_actor_Movement_Stung_mosquito = .text:0x001957BC; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Stung_mosquito = .text:0x001957E4; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Stung_mosquito = .text:0x00195808; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Stung_mosquito = .text:0x00195828; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromStung_mosquito = .text:0x00195848; // type:function size:0x38 scope:global align:4
+Player_actor_main_Stung_mosquito = .text:0x00195880; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_notice_mosquito = .text:0x00195914; // type:function size:0x70 scope:global align:4
+Player_actor_setup_main_Notice_mosquito = .text:0x00195984; // type:function size:0xC8 scope:global align:4
+Player_actor_settle_main_Notice_mosquito = .text:0x00195A4C; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Notice_mosquito = .text:0x00195A90; // type:function size:0xCC scope:global align:4
+Player_actor_CulcAnimation_Notice_mosquito = .text:0x00195B5C; // type:function size:0x24 scope:global align:4
+Player_actor_ObjCheck_Notice_mosquito = .text:0x00195B80; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Notice_mosquito = .text:0x00195BA0; // type:function size:0x20 scope:global align:4
+Player_actor_Notice_mosquito_demo_ct = .text:0x00195BC0; // type:function size:0x84 scope:global align:4
+Player_actor_MessageControl_Notice_mosquito = .text:0x00195C44; // type:function size:0xF8 scope:global align:4
+Player_actor_request_proc_index_fromNotice_mosquito = .text:0x00195D3C; // type:function size:0x58 scope:global align:4
+Player_actor_main_Notice_mosquito = .text:0x00195D94; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_demo_geton_boat_all = .text:0x00195E28; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Demo_geton_boat = .text:0x00195EB8; // type:function size:0x104 scope:global align:4
+Player_actor_settle_main_Demo_geton_boat = .text:0x00195FBC; // type:function size:0x64 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_boat = .text:0x00196020; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Demo_geton_boat = .text:0x00196040; // type:function size:0x48 scope:global align:4
+Player_actor_ControlShadow_Demo_geton_boat = .text:0x00196088; // type:function size:0x30 scope:global align:4
+Player_actor_SearchAnimation_Demo_geton_boat = .text:0x001960B8; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Demo_geton_boat = .text:0x001960FC; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Demo_geton_boat = .text:0x00196148; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_geton_boat = .text:0x00196168; // type:function size:0x40 scope:global align:4
+Player_actor_main_Demo_geton_boat = .text:0x001961A8; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_swing_fan_all = .text:0x0019623C; // type:function size:0x74 scope:global align:4
+Player_actor_setup_main_Swing_fan = .text:0x001962B0; // type:function size:0xAC scope:global align:4
+Player_actor_Movement_Swing_fan = .text:0x0019635C; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Swing_fan = .text:0x00196384; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Swing_fan = .text:0x001963A4; // type:function size:0x48 scope:global align:4
+Player_actor_SearchAnimation_Swing_fan = .text:0x001963EC; // type:function size:0x3C scope:global align:4
+Player_actor_ObjCheck_Swing_fan = .text:0x00196428; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Swing_fan = .text:0x00196448; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromSwing_fan = .text:0x00196468; // type:function size:0x13C scope:global align:4
+Player_actor_main_Swing_fan = .text:0x001965A4; // type:function size:0x90 scope:global align:4
+Player_actor_request_main_switch_on_lighthouse_all = .text:0x00196634; // type:function size:0x98 scope:global align:4
+Player_actor_settle_main_Switch_on_lighthouse = .text:0x001966CC; // type:function size:0x38 scope:global align:4
+Player_actor_setup_main_Switch_on_lighthouse = .text:0x00196704; // type:function size:0xD8 scope:global align:4
+Player_actor_CulcAnimation_Switch_on_lighthouse = .text:0x001967DC; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Switch_on_lighthouse = .text:0x00196800; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Switch_on_lighthouse = .text:0x0019684C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromSwitch_on_lighthouse = .text:0x0019686C; // type:function size:0x58 scope:global align:4
+Player_actor_main_Switch_on_lighthouse = .text:0x001968C4; // type:function size:0x8C scope:global align:4
+Player_actor_request_main_radio_exercise_all = .text:0x00196950; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Radio_exercise = .text:0x001969D0; // type:function size:0xD0 scope:global align:4
+Player_actor_settle_main_Radio_exercise = .text:0x00196AA0; // type:function size:0x4 scope:global align:4
+Player_actor_Set_RadioExerciseCommand_Radio_exercise = .text:0x00196AA4; // type:function size:0x38 scope:global align:4
+Player_actor_Movement_Radio_exercise = .text:0x00196ADC; // type:function size:0x28 scope:global align:4
+Player_actor_CulcAnimation_Radio_exercise = .text:0x00196B04; // type:function size:0x148 scope:global align:4
+Player_actor_ObjCheck_Radio_exercise = .text:0x00196C4C; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Radio_exercise = .text:0x00196C6C; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromRadio_exercise = .text:0x00196C8C; // type:function size:0x140 scope:global align:4
+Player_actor_main_Radio_exercise = .text:0x00196DCC; // type:function size:0x9C scope:global align:4
+Player_actor_request_main_demo_geton_boat_sitdown_all = .text:0x00196E68; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Demo_geton_boat_sitdown = .text:0x00196ECC; // type:function size:0x98 scope:global align:4
+Player_actor_Movement_Demo_geton_boat_sitdown = .text:0x00196F64; // type:function size:0x2E4 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_boat_sitdown = .text:0x00197248; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Demo_geton_boat_sitdown = .text:0x00197268; // type:function size:0x7C scope:global align:4
+Player_actor_SearchAnimation_Demo_geton_boat_sitdown = .text:0x001972E4; // type:function size:0x3C scope:global align:4
+Player_actor_request_proc_index_fromDemo_geton_boat_sitdown = .text:0x00197320; // type:function size:0x40 scope:global align:4
+Player_actor_main_Demo_geton_boat_sitdown = .text:0x00197360; // type:function size:0x88 scope:global align:4
+Player_actor_request_main_demo_geton_boat_wait_all = .text:0x001973E8; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Demo_geton_boat_wait = .text:0x0019744C; // type:function size:0x90 scope:global align:4
+Player_actor_Movement_Demo_geton_boat_wait = .text:0x001974DC; // type:function size:0x4 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_boat_wait = .text:0x001974E0; // type:function size:0x24 scope:global align:4
+Player_actor_request_proc_index_fromDemo_geton_boat_wait = .text:0x00197504; // type:function size:0x88 scope:global align:4
+Player_actor_main_Demo_geton_boat_wait = .text:0x0019758C; // type:function size:0x70 scope:global align:4
+Player_actor_request_main_demo_geton_boat_wade_all = .text:0x001975FC; // type:function size:0x80 scope:global align:4
+Player_actor_setup_main_Demo_geton_boat_wade = .text:0x0019767C; // type:function size:0x144 scope:global align:4
+Player_actor_settle_main_Demo_geton_boat_wade = .text:0x001977C0; // type:function size:0x20 scope:global align:4
+Player_actor_Movement_Demo_geton_boat_wade = .text:0x001977E0; // type:function size:0x20 scope:global align:4
+Player_actor_CulcAnimation_Demo_geton_boat_wade = .text:0x00197800; // type:function size:0x20 scope:global align:4
+Player_actor_able_request_proc_index_fromDemo_geton_boat_wade_common = .text:0x00197820; // type:function size:0x34 scope:global align:4
+Player_actor_request_proc_index_fromDemo_geton_boat_wade = .text:0x00197854; // type:function size:0x54 scope:global align:4
+Player_actor_main_Demo_geton_boat_wade = .text:0x001978A8; // type:function size:0x7C scope:global align:4
+Player_actor_request_main_demo_getoff_boat_standup_all = .text:0x00197924; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Demo_getoff_boat_standup = .text:0x001979B4; // type:function size:0x130 scope:global align:4
+Player_actor_settle_main_Demo_getoff_boat_standup = .text:0x00197AE4; // type:function size:0x38 scope:global align:4
+Player_actor_CulcAnimation_Demo_getoff_boat_standup = .text:0x00197B1C; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Demo_getoff_boat_standup = .text:0x00197B3C; // type:function size:0x7C scope:global align:4
+Player_actor_SearchAnimation_Demo_getoff_boat_standup = .text:0x00197BB8; // type:function size:0x3C scope:global align:4
+Player_actor_Movement_Demo_getoff_boat_standup = .text:0x00197BF4; // type:function size:0xE0 scope:global align:4
+Player_actor_ObjCheck_Demo_getoff_boat_standup = .text:0x00197CD4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_getoff_boat_standup = .text:0x00197CF4; // type:function size:0x54 scope:global align:4
+Player_actor_main_Demo_getoff_boat_standup = .text:0x00197D48; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_demo_getoff_boat_all = .text:0x00197DDC; // type:function size:0x90 scope:global align:4
+Player_actor_setup_main_Demo_getoff_boat = .text:0x00197E6C; // type:function size:0x18C scope:global align:4
+Player_actor_settle_main_Demo_getoff_boat = .text:0x00197FF8; // type:function size:0x48 scope:global align:4
+Player_actor_CulcAnimation_Demo_getoff_boat = .text:0x00198040; // type:function size:0x20 scope:global align:4
+Player_actor_SetSound_Demo_getoff_boat = .text:0x00198060; // type:function size:0x48 scope:global align:4
+Player_actor_ControlShadow_Demo_getoff_boat = .text:0x001980A8; // type:function size:0x30 scope:global align:4
+Player_actor_SearchAnimation_Demo_getoff_boat = .text:0x001980D8; // type:function size:0x44 scope:global align:4
+Player_actor_Movement_Demo_getoff_boat = .text:0x0019811C; // type:function size:0x4C scope:global align:4
+Player_actor_ObjCheck_Demo_getoff_boat = .text:0x00198168; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_getoff_boat = .text:0x00198188; // type:function size:0x48 scope:global align:4
+Player_actor_main_Demo_getoff_boat = .text:0x001981D0; // type:function size:0x94 scope:global align:4
+Player_actor_request_main_demo_get_golden_item_common = .text:0x00198264; // type:function size:0x78 scope:global align:4
+Player_actor_request_main_demo_get_golden_item_all = .text:0x001982DC; // type:function size:0x2C scope:global align:4
+Player_actor_request_main_demo_get_golden_item_from_submenu = .text:0x00198308; // type:function size:0x2C scope:global align:4
+Player_actor_setup_main_Demo_get_golden_item = .text:0x00198334; // type:function size:0x118 scope:global align:4
+Player_actor_settle_main_Demo_get_golden_item = .text:0x0019844C; // type:function size:0x70 scope:global align:4
+Player_actor_CulcAnimation_Demo_get_golden_item = .text:0x001984BC; // type:function size:0x24 scope:global align:4
+Player_actor_Movement_Demo_get_golden_item = .text:0x001984E0; // type:function size:0xCC scope:global align:4
+Player_actor_set_eye_pattern_Demo_get_golden_item = .text:0x001985AC; // type:function size:0x30 scope:global align:4
+Player_actor_ObjCheck_Demo_get_golden_item = .text:0x001985DC; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Demo_get_golden_item = .text:0x001985FC; // type:function size:0x20 scope:global align:4
+Player_actor_Demo_get_golden_item_demo_ct = .text:0x0019861C; // type:function size:0xC8 scope:global align:4
+Player_actor_MessageControl_Demo_get_golden_item = .text:0x001986E4; // type:function size:0x110 scope:global align:4
+Player_actor_request_proc_index_fromDemo_get_golden_item = .text:0x001987F4; // type:function size:0x58 scope:global align:4
+Player_actor_main_Demo_get_golden_item = .text:0x0019884C; // type:function size:0xA8 scope:global align:4
+Player_actor_request_main_demo_get_golden_item2_all = .text:0x001988F4; // type:function size:0x2C scope:global align:4
+Player_actor_setup_main_Demo_get_golden_item2 = .text:0x00198920; // type:function size:0x20 scope:global align:4
+Player_actor_settle_main_Demo_get_golden_item2 = .text:0x00198940; // type:function size:0x20 scope:global align:4
+Player_actor_main_Demo_get_golden_item2 = .text:0x00198960; // type:function size:0x20 scope:global align:4
+Player_actor_request_main_demo_get_golden_axe_wait_all = .text:0x00198980; // type:function size:0x64 scope:global align:4
+Player_actor_setup_main_Demo_get_golden_axe_wait = .text:0x001989E4; // type:function size:0xA0 scope:global align:4
+Player_actor_CulcAnimation_Demo_get_golden_axe_wait = .text:0x00198A84; // type:function size:0x20 scope:global align:4
+Player_actor_ObjCheck_Demo_get_golden_axe_wait = .text:0x00198AA4; // type:function size:0x20 scope:global align:4
+Player_actor_BGcheck_Demo_get_golden_axe_wait = .text:0x00198AC4; // type:function size:0x20 scope:global align:4
+Player_actor_request_proc_index_fromDemo_get_golden_axe_wait = .text:0x00198AE4; // type:function size:0x50 scope:global align:4
+Player_actor_main_Demo_get_golden_axe_wait = .text:0x00198B34; // type:function size:0x7C scope:global align:4
+mRF_GetSystemBlockInfo = .text:0x00198BB0; // type:function size:0x14 scope:global align:4
+mRF_BlockType2CliffIndex = .text:0x00198BC4; // type:function size:0x5C scope:global align:4
+mRF_GetRandom = .text:0x00198C20; // type:function size:0x5C scope:global align:4
+mRF_D2ToD1 = .text:0x00198C7C; // type:function size:0xC scope:global align:4
+mRF_Direct2BlockNo = .text:0x00198C88; // type:function size:0x30 scope:global align:4
+mRF_CheckCorrectBlockNo = .text:0x00198CB8; // type:function size:0x44 scope:global align:4
+mRF_CheckBlockGroup = .text:0x00198CFC; // type:function size:0xC8 scope:global align:4
+mRF_CpyBlockData = .text:0x00198DC4; // type:function size:0x20 scope:global align:4
+mRF_TraceCliffBlock = .text:0x00198DE4; // type:function size:0x1B4 scope:global align:4
+mRF_SetEndCliffBlock = .text:0x00198F98; // type:function size:0x134 scope:global align:4
+mRF_LastCheckCliff = .text:0x001990CC; // type:function size:0xC0 scope:global align:4
+mRF_DecideBaseCliff = .text:0x0019918C; // type:function size:0xB4 scope:global align:4
+mRF_RiverAlbuminCliff = .text:0x00199240; // type:function size:0xA0 scope:global align:4
+mRF_DecideRiverAlbuminCliff = .text:0x001992E0; // type:function size:0xB8 scope:global align:4
+mRF_GetCenterCrossZoneRiverCount = .text:0x00199398; // type:function size:0x6C scope:global align:4
+mRF_TraceRiverPart2 = .text:0x00199404; // type:function size:0x250 scope:global align:4
+mRF_TraceRiverPart1 = .text:0x00199654; // type:function size:0x1D4 scope:global align:4
+mRF_InitFlag = .text:0x00199828; // type:function size:0x20 scope:global align:4
+mRF_LastCheckRiver = .text:0x00199848; // type:function size:0xB4 scope:global align:4
+mRF_DecideBaseRiver = .text:0x001998FC; // type:function size:0xD0 scope:global align:4
+mRF_SetRandomBlockData = .text:0x001999CC; // type:function size:0x58 scope:global align:4
+mRF_GetRiverCrossCliffInfo = .text:0x00199A24; // type:function size:0x90 scope:global align:4
+mRF_SetBridgeBlock = .text:0x00199AB4; // type:function size:0x1BC scope:global align:4
+mRF_GetBlockBase = .text:0x00199C70; // type:function size:0xBC scope:global align:4
+mRF_InitBlockBase = .text:0x00199D2C; // type:function size:0x1C scope:global align:4
+mRF_SetShortData = .text:0x00199D48; // type:function size:0x1C scope:global align:4
+mRF_SearchAlreadyUse = .text:0x00199D64; // type:function size:0x3C scope:global align:4
+mRF_TypeCombCount = .text:0x00199DA0; // type:function size:0xA0 scope:global align:4
+mRF_IndexInType2BlockNo = .text:0x00199E40; // type:function size:0xC4 scope:global align:4
+mRF_GetExceptionalSeaBgDownBgName = .text:0x00199F04; // type:function size:0x38 scope:global align:4
+mRF_BgName2RandomConbiNo = .text:0x00199F3C; // type:function size:0xD8 scope:global align:4
+mRF_SelectBlock = .text:0x0019A014; // type:function size:0x278 scope:global align:4
+mRF_CopyBlockBaseHeightData = .text:0x0019A28C; // type:function size:0x28 scope:global align:4
+mRF_MakeBaseLandformStep2 = .text:0x0019A2B4; // type:function size:0x98 scope:global align:4
+mRF_CountDirectedInfoCliff = .text:0x0019A34C; // type:function size:0xE0 scope:global align:4
+mRF_SetSlopeDirectedInfoCliff = .text:0x0019A42C; // type:function size:0x104 scope:global align:4
+mRF_SetSlopeBlock = .text:0x0019A530; // type:function size:0xEC scope:global align:4
+mRF_SetBridgeAndSlopeBlock = .text:0x0019A61C; // type:function size:0x48 scope:global align:4
+mRF_MakeBaseHeightTable = .text:0x0019A664; // type:function size:0x44 scope:global align:4
+mRF_MakeFlatPlaceInfomation = .text:0x0019A6A8; // type:function size:0x140 scope:global align:4
+mRF_JudgeFlatBlock = .text:0x0019A7E8; // type:function size:0x114 scope:global align:4
+mRF_CountFlatBlock = .text:0x0019A8FC; // type:function size:0x70 scope:global align:4
+mRF_RewriteFlatType = .text:0x0019A96C; // type:function size:0x8C scope:global align:4
+mRF_FlatBlock2Unique = .text:0x0019A9F8; // type:function size:0x84 scope:global align:4
+mRF_SetNeedleworkAndWharfBlock = .text:0x0019AA7C; // type:function size:0xC0 scope:global align:4
+mRF_SetUniqueFlatBlock = .text:0x0019AB3C; // type:function size:0xF4 scope:global align:4
+mRF_SetUniqueRailBlock = .text:0x0019AC30; // type:function size:0xC4 scope:global align:4
+mRF_CountPureRiver = .text:0x0019ACF4; // type:function size:0x44 scope:global align:4
+mRF_SetPoolDirectedRiverBlock = .text:0x0019AD38; // type:function size:0x68 scope:global align:4
+mRF_SetPoolBlock = .text:0x0019ADA0; // type:function size:0x5C scope:global align:4
+mRF_SetMarinBlock = .text:0x0019ADFC; // type:function size:0x9C scope:global align:4
+mRF_InitCombTable = .text:0x0019AE98; // type:function size:0x24 scope:global align:4
+mRF_SetSeaBlockWithBridgeRiver = .text:0x0019AEBC; // type:function size:0x48 scope:global align:4
+mRF_MakePerfectBit = .text:0x0019AF04; // type:function size:0x28 scope:global align:4
+mRF_MakeBaseLandformStep3 = .text:0x0019AF2C; // type:function size:0x7C scope:global align:4
+mRF_MakeBaseLandform = .text:0x0019AFA8; // type:function size:0x30 scope:global align:4
+mRF_ReportRandomFieldBitResult = .text:0x0019AFD8; // type:function size:0x4 scope:global align:4
+mRF_GetRandomStepMode = .text:0x0019AFDC; // type:function size:0x3C scope:global align:4
+mRF_MakeRandomField_ovl = .text:0x0019B018; // type:function size:0x110 scope:global align:4
+eChryMgr_move = .text:0x0019B128; // type:function size:0x4 scope:global align:4
+eChryMgr_draw = .text:0x0019B12C; // type:function size:0x4 scope:global align:4
+eChryMgr_ct = .text:0x0019B130; // type:function size:0x4 scope:global align:4
+eChryMgr_dt = .text:0x0019B134; // type:function size:0x28 scope:global align:4
+aHG_actor_ct = .text:0x0019B15C; // type:function size:0xE4 scope:global align:4
+aHG_anime_proc = .text:0x0019B240; // type:function size:0x38 scope:global align:4
+aHG_calc_timer = .text:0x0019B278; // type:function size:0x5C scope:global align:4
+aHG_away_bg_hitangle_check_proc = .text:0x0019B2D4; // type:function size:0x140 scope:global align:4
+aHG_decide_next_act_idx_wait_move = .text:0x0019B414; // type:function size:0xB0 scope:global align:4
+aHG_position_move = .text:0x0019B4C4; // type:function size:0x74 scope:global align:4
+aHG_BGcheck = .text:0x0019B538; // type:function size:0x60 scope:global align:4
+aHG_calc_add_alpha = .text:0x0019B598; // type:function size:0x3C scope:global align:4
+aHG_check_dead = .text:0x0019B5D4; // type:function size:0xDC scope:global align:4
+aHG_player_check = .text:0x0019B6B0; // type:function size:0x74 scope:global align:4
+aHG_check_threshold = .text:0x0019B724; // type:function size:0x6C scope:global align:4
+aHG_away = .text:0x0019B790; // type:function size:0x1AC scope:global align:4
+aHG_jump_away = .text:0x0019B93C; // type:function size:0x70 scope:global align:4
+aHG_wait = .text:0x0019B9AC; // type:function size:0x88 scope:global align:4
+aHG_move = .text:0x0019BA34; // type:function size:0x12C scope:global align:4
+aHG_dead = .text:0x0019BB60; // type:function size:0xA4 scope:global align:4
+aHG_away_init = .text:0x0019BC04; // type:function size:0x68 scope:global align:4
+aHG_jump_away_init = .text:0x0019BC6C; // type:function size:0x98 scope:global align:4
+aHG_wait_init = .text:0x0019BD04; // type:function size:0x2C scope:global align:4
+aHG_move_init = .text:0x0019BD30; // type:function size:0xCC scope:global align:4
+aHG_dead_init = .text:0x0019BDFC; // type:function size:0xB8 scope:global align:4
+aHG_setupAction = .text:0x0019BEB4; // type:function size:0x48 scope:global align:4
+aHG_actor_move = .text:0x0019BEFC; // type:function size:0x9C scope:global align:4
+aHG_actor_draw = .text:0x0019BF98; // type:function size:0x114 scope:global align:4
+aANT_actor_ct = .text:0x0019C0AC; // type:function size:0xA8 scope:global align:4
+aANT_calc_scale = .text:0x0019C154; // type:function size:0x64 scope:global align:4
+aANT_wait = .text:0x0019C1B8; // type:function size:0x17C scope:global align:4
+aANT_caught = .text:0x0019C334; // type:function size:0xCC scope:global align:4
+aANT_disappear = .text:0x0019C400; // type:function size:0x58 scope:global align:4
+aANT_caught_init = .text:0x0019C458; // type:function size:0xC scope:global align:4
+aANT_disappear_init = .text:0x0019C464; // type:function size:0x10 scope:global align:4
+aANT_setupAction = .text:0x0019C474; // type:function size:0x48 scope:global align:4
+aANT_actor_move = .text:0x0019C4BC; // type:function size:0xAC scope:global align:4
+aANT_actor_draw = .text:0x0019C568; // type:function size:0xD8 scope:global align:4
+aBEE_actor_ct = .text:0x0019C640; // type:function size:0xCC scope:global align:4
+aBEE_calc_scale_sub = .text:0x0019C70C; // type:function size:0xC4 scope:global align:4
+aBEE_calc_scale = .text:0x0019C7D0; // type:function size:0x8C scope:global align:4
+aBEE_anime_proc = .text:0x0019C85C; // type:function size:0x68 scope:global align:4
+aBEE_fly_move_common = .text:0x0019C8C4; // type:function size:0x4F4 scope:global align:4
+aBEE_calc_fly_angle = .text:0x0019CDB8; // type:function size:0x150 scope:global align:4
+aBEE_appear = .text:0x0019CF08; // type:function size:0xBC scope:global align:4
+aBEE_fly = .text:0x0019CFC4; // type:function size:0x234 scope:global align:4
+aBEE_caught = .text:0x0019D1F8; // type:function size:0xF0 scope:global align:4
+aBEE_attack_wait = .text:0x0019D2E8; // type:function size:0xAC scope:global align:4
+aBEE_attack = .text:0x0019D394; // type:function size:0x88 scope:global align:4
+aBEE_disappear = .text:0x0019D41C; // type:function size:0x70 scope:global align:4
+aBEE_appear_init = .text:0x0019D48C; // type:function size:0x40 scope:global align:4
+aBEE_fly_init = .text:0x0019D4CC; // type:function size:0xC scope:global align:4
+aBEE_caught_init = .text:0x0019D4D8; // type:function size:0xC scope:global align:4
+aBEE_disappear_init = .text:0x0019D4E4; // type:function size:0x1C scope:global align:4
+aBEE_setupAction = .text:0x0019D500; // type:function size:0x4C scope:global align:4
+aBEE_actor_move = .text:0x0019D54C; // type:function size:0x138 scope:global align:4
+aBEE_actor_draw = .text:0x0019D684; // type:function size:0x198 scope:global align:4
+aFSN_actor_ct = .text:0x0019D81C; // type:function size:0x128 scope:global align:4
+aFSN_actor_dt = .text:0x0019D944; // type:function size:0x34 scope:global align:4
+aFSN_birth = .text:0x0019D978; // type:function size:0x24 scope:global align:4
+aFSN_moving = .text:0x0019D99C; // type:function size:0x6B0 scope:global align:4
+aFSN_wood_stop = .text:0x0019E04C; // type:function size:0x474 scope:global align:4
+aFSN_escape = .text:0x0019E4C0; // type:function size:0x128 scope:global align:4
+aFSN_birth_init = .text:0x0019E5E8; // type:function size:0x210 scope:global align:4
+aFSN_moving_init = .text:0x0019E7F8; // type:function size:0xC scope:global align:4
+aFSN_wood_stop_init = .text:0x0019E804; // type:function size:0x40 scope:global align:4
+aFSN_escape_init = .text:0x0019E844; // type:function size:0x11C scope:global align:4
+aFSN_setupAction = .text:0x0019E960; // type:function size:0x48 scope:global align:4
+aFSN_actor_move = .text:0x0019E9A8; // type:function size:0x158 scope:global align:4
+aFSN_actor_draw_before = .text:0x0019EB00; // type:function size:0xE8 scope:global align:4
+aFSN_actor_draw = .text:0x0019EBE8; // type:function size:0x1DC scope:global align:4
+mMck_strlen = .text:0x0019EDC4; // type:function size:0x34 scope:global align:4
+mMck_cmp_sep = .text:0x0019EDF8; // type:function size:0x64 scope:global align:4
+mMck_search_sep = .text:0x0019EE5C; // type:function size:0x6C scope:global align:4
+mMck_next_key = .text:0x0019EEC8; // type:function size:0x8 scope:global align:4
+mMck_cmp_key = .text:0x0019EED0; // type:function size:0xAC scope:global align:4
+mMck_check_key_hit = .text:0x0019EF7C; // type:function size:0xB8 scope:global align:4
+mMck_cmp_sep_nes = .text:0x0019F034; // type:function size:0x38 scope:global align:4
+mMck_strlen_new = .text:0x0019F06C; // type:function size:0x38 scope:global align:4
+mMck_check_alpha = .text:0x0019F0A4; // type:function size:0x3C scope:global align:4
+mMck_check_eof = .text:0x0019F0E0; // type:function size:0x4C scope:global align:4
+mMck_check_key_get_hit_count = .text:0x0019F12C; // type:function size:0x94 scope:global align:4
+mMck_check_key_type_A = .text:0x0019F1C0; // type:function size:0xC4 scope:global align:4
+mMck_check_key_type_B = .text:0x0019F284; // type:function size:0x24 scope:global align:4
+mMck_check_key_type_C = .text:0x0019F2A8; // type:function size:0x68 scope:global align:4
+mMck_check_key_type_D = .text:0x0019F310; // type:function size:0x9C scope:global align:4
+mMck_check_key_type_E = .text:0x0019F3AC; // type:function size:0x58 scope:global align:4
+mMck_check_key_type_F = .text:0x0019F404; // type:function size:0xA4 scope:global align:4
+mMck_check_key_type_G = .text:0x0019F4A8; // type:function size:0x68 scope:global align:4
+mMck_check_key_hit_nes = .text:0x0019F510; // type:function size:0x80 scope:global align:4
+Dummy_Actor_ct = .text:0x0019F590; // type:function size:0x4 scope:global align:4
+Dummy_Actor_dt = .text:0x0019F594; // type:function size:0x4 scope:global align:4
+Dummy_Actor_draw = .text:0x0019F598; // type:function size:0x4 scope:global align:4
+Dummy_Actor_move = .text:0x0019F59C; // type:function size:0x4 scope:global align:4
+mAGrw_ClearSSPosInfo_com = .text:0x0019F5A0; // type:function size:0x24 scope:global align:4
+mAGrw_ClearStonePosInfo = .text:0x0019F5C4; // type:function size:0x40 scope:global align:4
+mAGrw_ClearShinePosInfo = .text:0x0019F604; // type:function size:0x38 scope:global align:4
+mAGrw_CheckFreeSSPosInfo_com = .text:0x0019F63C; // type:function size:0x28 scope:global align:4
+mAGrw_ToMoneyStone = .text:0x0019F664; // type:function size:0x14 scope:global align:4
+mAGrw_ToStone = .text:0x0019F678; // type:function size:0x14 scope:global align:4
+mAGrw_ClearMoneyStoneShineGround = .text:0x0019F68C; // type:function size:0x100 scope:global align:4
+mAGrw_ClearAllShine_Stone = .text:0x0019F78C; // type:function size:0xA0 scope:global align:4
+mAGrw_SetShineGround_player = .text:0x0019F82C; // type:function size:0xEC scope:global align:4
+mAGrw_SetMoneyStone_player = .text:0x0019F918; // type:function size:0x164 scope:global align:4
+mAGrw_RestoreStoneShine = .text:0x0019FA7C; // type:function size:0x64 scope:global align:4
+mAGrw_CheckMoneyStonePos = .text:0x0019FAE0; // type:function size:0xD8 scope:global align:4
+mAGrw_ClearGrowInfo = .text:0x0019FBB8; // type:function size:0x24 scope:global align:4
+mAGrw_GetTreeGrowCond = .text:0x0019FBDC; // type:function size:0xC scope:global align:4
+mAGrw_ClearAroundBlockInfo = .text:0x0019FBE8; // type:function size:0x1C scope:global align:4
+mAGrw_SetAroundBlockInfo = .text:0x0019FC04; // type:function size:0xFC scope:global align:4
+mAGrw_SetAroundBlockInfoIsland = .text:0x0019FD00; // type:function size:0x74 scope:global align:4
+mAGrw_get_pastDays = .text:0x0019FD74; // type:function size:0x6C scope:global align:4
+mAGrw_CheckSpoilKabuTime = .text:0x0019FDE0; // type:function size:0x84 scope:global align:4
+mAGrw_CheckFlowerTime = .text:0x0019FE64; // type:function size:0x48 scope:global align:4
+aAGrw_GrowFlower = .text:0x0019FEAC; // type:function size:0x34 scope:global align:4
+mAGrw_GetUpUt = .text:0x0019FEE0; // type:function size:0x30 scope:global align:4
+mAGrw_GetDownUt = .text:0x0019FF10; // type:function size:0x2C scope:global align:4
+mAGrw_GetLeftUt = .text:0x0019FF3C; // type:function size:0x30 scope:global align:4
+mAGrw_GetRightUt = .text:0x0019FF6C; // type:function size:0x2C scope:global align:4
+mAGrw_KillTree = .text:0x0019FF98; // type:function size:0x58 scope:global align:4
+mAGrw_CheckNearTree = .text:0x0019FFF0; // type:function size:0x3B0 scope:global align:4
+mAGrw_CheckAppleTree = .text:0x001A03A0; // type:function size:0x20 scope:global align:4
+mAGrw_CheckChestnutTree = .text:0x001A03C0; // type:function size:0x20 scope:global align:4
+mAGrw_CheckPearTree = .text:0x001A03E0; // type:function size:0x20 scope:global align:4
+mAGrw_CheckPeachTree = .text:0x001A0400; // type:function size:0x20 scope:global align:4
+mAGrw_CheckOrangeTree = .text:0x001A0420; // type:function size:0x20 scope:global align:4
+mAGrw_CheckNormalTree = .text:0x001A0440; // type:function size:0x20 scope:global align:4
+mAGrw_CheckMoney = .text:0x001A0460; // type:function size:0x38 scope:global align:4
+mAGrw_CheckPalmTree = .text:0x001A0498; // type:function size:0x2C scope:global align:4
+mAGrw_CheckCedarTree = .text:0x001A04C4; // type:function size:0x2C scope:global align:4
+mAGrw_CheckGoldTree = .text:0x001A04F0; // type:function size:0x20 scope:global align:4
+mAGrw_CheckKillPalmTree = .text:0x001A0510; // type:function size:0x2C scope:global align:4
+mAGrw_CheckKillCedarTree = .text:0x001A053C; // type:function size:0x2C scope:global align:4
+mAGrw_GrowTree_sub = .text:0x001A0568; // type:function size:0x40 scope:global align:4
+mAGrw_GrowTree = .text:0x001A05A8; // type:function size:0x144 scope:global align:4
+mAGrw_GrowPlant_First = .text:0x001A06EC; // type:function size:0x50 scope:global align:4
+mAGrw_GrowPlant = .text:0x001A073C; // type:function size:0x1AC scope:global align:4
+mAGrw_MeltSnowman = .text:0x001A08E8; // type:function size:0x24 scope:global align:4
+mAGrw_MakeGrassTable = .text:0x001A090C; // type:function size:0xBC scope:global align:4
+mAGrw_SpoilKabu = .text:0x001A09C8; // type:function size:0x54 scope:global align:4
+mAGrw_ClearSpoiledKabu = .text:0x001A0A1C; // type:function size:0x24 scope:global align:4
+mAGrw_ClearShineGround = .text:0x001A0A40; // type:function size:0x24 scope:global align:4
+mAGrw_RecordCheckItem = .text:0x001A0A64; // type:function size:0x4C scope:global align:4
+mAGrw_RecordHoneycombTree = .text:0x001A0AB0; // type:function size:0x3C scope:global align:4
+mAGrw_RecordFtrTree = .text:0x001A0AEC; // type:function size:0x3C scope:global align:4
+mAGrw_RecordDepositFossil = .text:0x001A0B28; // type:function size:0x64 scope:global align:4
+mAGrw_CheckChangeTree = .text:0x001A0B8C; // type:function size:0x3C scope:global align:4
+mAGrw_CheckMoneyTree = .text:0x001A0BC8; // type:function size:0x3C scope:global align:4
+mAGrw_CountMoneyTree = .text:0x001A0C04; // type:function size:0x58 scope:global align:4
+mAGrw_CheckMoneyStone = .text:0x001A0C5C; // type:function size:0x30 scope:global align:4
+mAGrw_GetChangeAbleTreeNum2 = .text:0x001A0C8C; // type:function size:0x64 scope:global align:4
+mAGrw_ChangeItemBlock2 = .text:0x001A0CF0; // type:function size:0xD8 scope:local align:4
+mAGrw_SetTreeBlockLine = .text:0x001A0DC8; // type:function size:0x12C scope:global align:4
+mAGrw_SetHoneycombTree = .text:0x001A0EF4; // type:function size:0x78 scope:global align:4
+mAGrw_SetFtrTree = .text:0x001A0F6C; // type:function size:0x100 scope:global align:4
+mAGrw_SetMoneyTreeRandom = .text:0x001A106C; // type:function size:0xDC scope:global align:4
+mAGrw_SetMoneyTree = .text:0x001A1148; // type:function size:0xEC scope:global align:4
+mAGrw_CountNormalStone = .text:0x001A1234; // type:function size:0x3C scope:global align:4
+mAGrw_SetMoneyStoneBlock = .text:0x001A1270; // type:function size:0xCC scope:global align:4
+mAGrw_SetMoneyStone_com = .text:0x001A133C; // type:function size:0x13C scope:global align:4
+mAGrw_SetMoneyStone = .text:0x001A1478; // type:function size:0x8C scope:global align:4
+mAGrw_SetTree0Info = .text:0x001A1504; // type:function size:0xE8 scope:global align:4
+mAGrw_ResetTree0Info = .text:0x001A15EC; // type:function size:0xC4 scope:global align:4
+mAGrw_KillTree0 = .text:0x001A16B0; // type:function size:0x140 scope:global align:4
+mAGrw_ThinTree = .text:0x001A17F0; // type:function size:0x12C scope:global align:4
+mAGrw_CheckCarpTime = .text:0x001A191C; // type:function size:0x54 scope:global align:4
+mAGrw_SetCarpBlockInfo = .text:0x001A1970; // type:function size:0x8C scope:global align:4
+mAGrw_SetCarpInfo = .text:0x001A19FC; // type:function size:0xC0 scope:global align:4
+mAGrw_SetCarpBlock = .text:0x001A1ABC; // type:function size:0xB0 scope:global align:4
+mAGrw_ClearCarpBlock = .text:0x001A1B6C; // type:function size:0x68 scope:global align:4
+mAGrw_KeepReserve = .text:0x001A1BD4; // type:function size:0x2F8 scope:global align:4
+mAGrw_SetCarpOnHomeBlock = .text:0x001A1ECC; // type:function size:0x1D0 scope:global align:4
+mAGrw_SetEnoughCarp = .text:0x001A209C; // type:function size:0x78 scope:global align:4
+mAGrw_ClearAllCarp = .text:0x001A2114; // type:function size:0x64 scope:global align:4
+mAGrw_SetCarp = .text:0x001A2178; // type:function size:0x80 scope:global align:4
+mAGrw_GrowBlockFgItem = .text:0x001A21F8; // type:function size:0x1C0 scope:global align:4
+mAGrw_GrowFieldFgItem = .text:0x001A23B8; // type:function size:0x1EC scope:global align:4
+mAGrw_CheckTree000 = .text:0x001A25A4; // type:function size:0x78 scope:global align:4
+mAGrw_CheckTree001 = .text:0x001A261C; // type:function size:0x90 scope:global align:4
+mAGrw_CheckTree002 = .text:0x001A26AC; // type:function size:0x90 scope:global align:4
+mAGrw_CheckTree003 = .text:0x001A273C; // type:function size:0x90 scope:global align:4
+mAGrw_CheckTree004 = .text:0x001A27CC; // type:function size:0x170 scope:global align:4
+mAGrw_LimitTreeLineIsland = .text:0x001A293C; // type:function size:0x290 scope:global align:4
+mAGr_GrowIslandFgItem = .text:0x001A2BCC; // type:function size:0x1A8 scope:global align:4
+mAGrw_CancelOn = .text:0x001A2D74; // type:function size:0x84 scope:global align:4
+mAGrw_CheckCancel12 = .text:0x001A2DF8; // type:function size:0xE4 scope:global align:4
+mAGrw_CheckCancel32 = .text:0x001A2EDC; // type:function size:0x12C scope:global align:4
+mAGrw_CheckCancel22 = .text:0x001A3008; // type:function size:0x38 scope:global align:4
+mAGrw_CheckCancel36 = .text:0x001A3040; // type:function size:0x60 scope:global align:4
+mAGrw_CheckHide36 = .text:0x001A30A0; // type:function size:0x4C scope:global align:4
+mAGrw_CheckCancelLeft45 = .text:0x001A30EC; // type:function size:0x30 scope:global align:4
+mAGrw_CheckCancelRight45 = .text:0x001A311C; // type:function size:0x30 scope:global align:4
+mAGrw_CheckCancel46 = .text:0x001A314C; // type:function size:0x38 scope:global align:4
+mAGrw_CheckCancel23 = .text:0x001A3184; // type:function size:0x14 scope:global align:4
+mAGrw_CheckCancel57 = .text:0x001A3198; // type:function size:0x14 scope:global align:4
+mAGrw_CheckCancel68 = .text:0x001A31AC; // type:function size:0x24 scope:global align:4
+mAGrw_CheckCancel77 = .text:0x001A31D0; // type:function size:0x14 scope:global align:4
+mAGrw_SetCancelOn = .text:0x001A31E4; // type:function size:0x80 scope:global align:4
+mAGrw_SetblockCancelUtInfo = .text:0x001A3264; // type:function size:0x100 scope:global align:4
+mAGrw_HideOn = .text:0x001A3364; // type:function size:0x3C scope:global align:4
+mAGrw_SetHideOn = .text:0x001A33A0; // type:function size:0x80 scope:global align:4
+mAGrw_SetHideUtInfo = .text:0x001A3420; // type:function size:0xC0 scope:global align:4
+mAGrw_SetCancelUtInfo = .text:0x001A34E0; // type:function size:0x88 scope:global align:4
+mAGrw_GetDepositAbleFlatNum = .text:0x001A3568; // type:function size:0x128 scope:global align:4
+mAGrw_SetShineGroundBlock = .text:0x001A3690; // type:function size:0x160 scope:global align:4
+mAGrw_SetShineGround_com = .text:0x001A37F0; // type:function size:0x158 scope:global align:4
+mAGrw_SetShineGround = .text:0x001A3948; // type:function size:0x7C scope:global align:4
+mAGrw_SetHaniwaBlock = .text:0x001A39C4; // type:function size:0x20 scope:global align:4
+mAGrw_SetHaniwa = .text:0x001A39E4; // type:function size:0x174 scope:global align:4
+mAGrw_SetDigItem = .text:0x001A3B58; // type:function size:0x178 scope:global align:4
+mAGrw_SpoilPossession = .text:0x001A3CD0; // type:function size:0x54 scope:global align:4
+mAGrw_SpoilAllPossession = .text:0x001A3D24; // type:function size:0x11C scope:global align:4
+mAGrw_CheckClearDumpDay = .text:0x001A3E40; // type:function size:0xF0 scope:global align:4
+mAGrw_SearchDump = .text:0x001A3F30; // type:function size:0xA4 scope:global align:4
+mAGrw_ClearDumpArea = .text:0x001A3FD4; // type:function size:0xC4 scope:global align:4
+mAGrw_ClearDump = .text:0x001A4098; // type:function size:0x50 scope:global align:4
+mAGrw_GetSetItemDump = .text:0x001A40E8; // type:function size:0x8C scope:global align:4
+mAGrw_SetItemDumpBlock = .text:0x001A4174; // type:function size:0x100 scope:global align:4
+mAGrw_SetItemDump = .text:0x001A4274; // type:function size:0xB0 scope:global align:4
+mAGrw_GetGrassMax = .text:0x001A4324; // type:function size:0x84 scope:global align:4
+mAGrw_GetChangeAbleGrass = .text:0x001A43A8; // type:function size:0x170 scope:global align:4
+mAGrw_PutGrassBlock = .text:0x001A4518; // type:function size:0x1BC scope:global align:4
+mAGrw_SetGrass = .text:0x001A46D4; // type:function size:0x21C scope:global align:4
+mAGrw_ClearGrass = .text:0x001A48F0; // type:function size:0x58 scope:global align:4
+mAGrw_AllMeltSnowman = .text:0x001A4948; // type:function size:0x70 scope:global align:4
+mAgrw_ZuruSpoilKabuBlockFgItem = .text:0x001A49B8; // type:function size:0x114 scope:global align:4
+mAGrw_ZuruSpoilKabuFieldFgItem = .text:0x001A4ACC; // type:function size:0x9C scope:global align:4
+mAGrw_ZuruSpoilKabuIslandFgItem = .text:0x001A4B68; // type:function size:0x94 scope:global align:4
+mAGrw_ZuruSpoilKabu = .text:0x001A4BFC; // type:function size:0x7C scope:global align:4
+mAGrw_SpoilKabuIslandCottage = .text:0x001A4C78; // type:function size:0x58 scope:global align:4
+mAGrw_SpoilKabuIsland = .text:0x001A4CD0; // type:function size:0x34 scope:global align:4
+mAGrw_RenewalFgItem_ovl = .text:0x001A4D04; // type:function size:0x394 scope:global align:4
+aAPC_actor_ct = .text:0x001A5098; // type:function size:0xB0 scope:global align:4
+aAPC_actor_dt = .text:0x001A5148; // type:function size:0x3C scope:global align:4
+aAPC_get_data_idx = .text:0x001A5184; // type:function size:0x38 scope:global align:4
+aAPC_talk_chk_proc = .text:0x001A51BC; // type:function size:0x88 scope:global align:4
+aAPC_talk_set_proc = .text:0x001A5244; // type:function size:0x58 scope:global align:4
+aAPC_get_msg_num_proc = .text:0x001A529C; // type:function size:0x84 scope:global align:4
+aGHC_actor_ct = .text:0x001A5320; // type:function size:0xC8 scope:global align:4
+aGHC_actor_dt = .text:0x001A53E8; // type:function size:0x3C scope:global align:4
+aGHC_get_now_term = .text:0x001A5424; // type:function size:0x68 scope:global align:4
+aGHC_search_soncho = .text:0x001A548C; // type:function size:0x5C scope:global align:4
+aGHC_set_attention_request = .text:0x001A54E8; // type:function size:0x98 scope:global align:4
+aGHC_before_800 = .text:0x001A5580; // type:function size:0xA0 scope:global align:4
+aGHC_birth_reset_wait = .text:0x001A5620; // type:function size:0x3C scope:global align:4
+aGHC_birth_reset = .text:0x001A565C; // type:function size:0x110 scope:global align:4
+aGHC_reset_speech_bgm_start_wait = .text:0x001A576C; // type:function size:0x58 scope:global align:4
+aGHC_retire_reset_wait = .text:0x001A57C4; // type:function size:0x64 scope:global align:4
+aGHC_soncho_speech_start_wait = .text:0x001A5828; // type:function size:0x3C scope:global align:4
+aGHC_soncho_speech_end_wait = .text:0x001A5864; // type:function size:0x38 scope:global align:4
+aGHC_fade_out_start_wait = .text:0x001A589C; // type:function size:0x70 scope:global align:4
+aGHC_setupAction = .text:0x001A590C; // type:function size:0x1C scope:global align:4
+aGHC_actor_move = .text:0x001A5928; // type:function size:0x78 scope:global align:4
+aMSC_actor_ct = .text:0x001A59A0; // type:function size:0x24 scope:global align:4
+aMSC_menu_open_wait = .text:0x001A59C4; // type:function size:0x114 scope:global align:4
+aMSC_menu_close_wait = .text:0x001A5AD8; // type:function size:0x40 scope:global align:4
+aMSC_set_force_talk_info_talk_request = .text:0x001A5B18; // type:function size:0x3C scope:global align:4
+aMSC_request_force_talk = .text:0x001A5B54; // type:function size:0x70 scope:global align:4
+aMSC_select_read_prg_or_data = .text:0x001A5BC4; // type:function size:0xC8 scope:global align:4
+aMSC_check_connect_agb_start_wait = .text:0x001A5C8C; // type:function size:0x94 scope:global align:4
+aMSC_check_connect_agb_end_wait = .text:0x001A5D20; // type:function size:0xD4 scope:global align:4
+aMSC_read_data = .text:0x001A5DF4; // type:function size:0xDC scope:global align:4
+aMSC_send_prg = .text:0x001A5ED0; // type:function size:0xC4 scope:global align:4
+aMSC_select_read_data_or_not = .text:0x001A5F94; // type:function size:0xBC scope:global align:4
+aMSC_force_menu_open_wait = .text:0x001A6050; // type:function size:0x90 scope:global align:4
+aMSC_talk_end_wait = .text:0x001A60E0; // type:function size:0x48 scope:global align:4
+aMSC_setupAction = .text:0x001A6128; // type:function size:0x1C scope:global align:4
+aMSC_actor_move = .text:0x001A6144; // type:function size:0x28 scope:global align:4
+aCD0_actor_ct = .text:0x001A616C; // type:function size:0x84 scope:global align:4
+aCD0_actor_save = .text:0x001A61F0; // type:function size:0x38 scope:global align:4
+aCD0_actor_dt = .text:0x001A6228; // type:function size:0x38 scope:global align:4
+aCD0_actor_init = .text:0x001A6260; // type:function size:0x38 scope:global align:4
+aCD0_actor_move = .text:0x001A6298; // type:function size:0x38 scope:global align:4
+aCD0_actor_draw = .text:0x001A62D0; // type:function size:0x38 scope:global align:4
+aCD0_set_animation = .text:0x001A6308; // type:function size:0x4C scope:global align:4
+aCD0_set_request_act = .text:0x001A6354; // type:function size:0x1C scope:global align:4
+aCD0_before_wait = .text:0x001A6370; // type:function size:0x30 scope:global align:4
+aCD0_freeze_pl_wait = .text:0x001A63A0; // type:function size:0x38 scope:global align:4
+aCD0_talk_after_turn = .text:0x001A63D8; // type:function size:0x80 scope:global align:4
+aCD0_setupAction = .text:0x001A6458; // type:function size:0x40 scope:global align:4
+aCD0_act_chg_data_proc = .text:0x001A6498; // type:function size:0xC scope:global align:4
+aCD0_act_init_proc = .text:0x001A64A4; // type:function size:0x78 scope:global align:4
+aCD0_act_main_proc = .text:0x001A651C; // type:function size:0x28 scope:global align:4
+aCD0_act_proc = .text:0x001A6544; // type:function size:0x34 scope:global align:4
+aCD0_get_now_term = .text:0x001A6578; // type:function size:0x90 scope:global align:4
+aCD0_set_term = .text:0x001A6608; // type:function size:0x16C scope:global align:4
+aCD0_think_main_proc = .text:0x001A6774; // type:function size:0x34 scope:global align:4
+aCD0_think_init_proc = .text:0x001A67A8; // type:function size:0x34 scope:global align:4
+aCD0_think_proc = .text:0x001A67DC; // type:function size:0x34 scope:global align:4
+aCD0_schedule_init_proc = .text:0x001A6810; // type:function size:0x13C scope:global align:4
+aCD0_schedule_main_proc = .text:0x001A694C; // type:function size:0x80 scope:global align:4
+aCD0_schedule_proc = .text:0x001A69CC; // type:function size:0x34 scope:global align:4
+aCD0_set_free_str_year = .text:0x001A6A00; // type:function size:0x50 scope:global align:4
+aCD0_set_free_str_min = .text:0x001A6A50; // type:function size:0x68 scope:global align:4
+aCD0_set_free_str = .text:0x001A6AB8; // type:function size:0x4C scope:global align:4
+aCD0_set_force_talk_info = .text:0x001A6B04; // type:function size:0x78 scope:global align:4
+aCD0_force_talk_request = .text:0x001A6B7C; // type:function size:0x30 scope:global align:4
+aCD0_set_norm_talk_info = .text:0x001A6BAC; // type:function size:0x9C scope:global align:4
+aCD0_norm_talk_request = .text:0x001A6C48; // type:function size:0x30 scope:global align:4
+aCD0_talk_init = .text:0x001A6C78; // type:function size:0x98 scope:global align:4
+aCD0_talk_end_chk = .text:0x001A6D10; // type:function size:0x94 scope:global align:4
+aCD1_actor_ct = .text:0x001A6DA4; // type:function size:0x84 scope:global align:4
+aCD1_actor_save = .text:0x001A6E28; // type:function size:0x38 scope:global align:4
+aCD1_actor_dt = .text:0x001A6E60; // type:function size:0x38 scope:global align:4
+aCD1_actor_init = .text:0x001A6E98; // type:function size:0x38 scope:global align:4
+aCD1_actor_move = .text:0x001A6ED0; // type:function size:0x38 scope:global align:4
+aCD1_actor_draw = .text:0x001A6F08; // type:function size:0x38 scope:global align:4
+aCD1_set_animation = .text:0x001A6F40; // type:function size:0x4C scope:global align:4
+aCD1_set_request_act = .text:0x001A6F8C; // type:function size:0x1C scope:global align:4
+aCD1_make_cracker = .text:0x001A6FA8; // type:function size:0x74 scope:global align:4
+aCD1_check_moveRange = .text:0x001A701C; // type:function size:0x40 scope:global align:4
+aCD1_check_inBlock = .text:0x001A705C; // type:function size:0x94 scope:global align:4
+aCD1_revise_moveRange = .text:0x001A70F0; // type:function size:0x164 scope:global align:4
+aCD1_before_wait = .text:0x001A7254; // type:function size:0x30 scope:global align:4
+aCD1_before_run = .text:0x001A7284; // type:function size:0x70 scope:global align:4
+aCD1_before_turn = .text:0x001A72F4; // type:function size:0x5C scope:global align:4
+aCD1_front_turn = .text:0x001A7350; // type:function size:0x54 scope:global align:4
+aCD1_front_wait = .text:0x001A73A4; // type:function size:0x80 scope:global align:4
+aCD1_count_wait = .text:0x001A7424; // type:function size:0x38 scope:global align:4
+aCD1_fire = .text:0x001A745C; // type:function size:0xE4 scope:global align:4
+aCD1_clap = .text:0x001A7540; // type:function size:0x58 scope:global align:4
+aCD1_set_spd_info = .text:0x001A7598; // type:function size:0x74 scope:global align:4
+aCD1_setupAction = .text:0x001A760C; // type:function size:0x64 scope:global align:4
+aCD1_act_chg_data_proc = .text:0x001A7670; // type:function size:0xC scope:global align:4
+aCD1_act_main_proc = .text:0x001A767C; // type:function size:0x28 scope:global align:4
+aCD1_act_proc = .text:0x001A76A4; // type:function size:0x34 scope:global align:4
+aCD1_get_now_term = .text:0x001A76D8; // type:function size:0x80 scope:global align:4
+aCD1_get_next_move_act = .text:0x001A7758; // type:function size:0x120 scope:global align:4
+aCD1_decide_demo_flg = .text:0x001A7878; // type:function size:0x8C scope:global align:4
+aCD1_think_main_proc = .text:0x001A7904; // type:function size:0x17C scope:global align:4
+aCD1_think_init_proc = .text:0x001A7A80; // type:function size:0x4C scope:global align:4
+aCD1_think_proc = .text:0x001A7ACC; // type:function size:0x34 scope:global align:4
+aCD1_schedule_init_proc = .text:0x001A7B00; // type:function size:0xF4 scope:global align:4
+aCD1_schedule_main_proc = .text:0x001A7BF4; // type:function size:0x8C scope:global align:4
+aCD1_schedule_proc = .text:0x001A7C80; // type:function size:0x34 scope:global align:4
+aCD1_set_free_str_year = .text:0x001A7CB4; // type:function size:0x50 scope:global align:4
+aCD1_set_free_str_min = .text:0x001A7D04; // type:function size:0x68 scope:global align:4
+aCD1_set_free_str = .text:0x001A7D6C; // type:function size:0x4C scope:global align:4
+aCD1_set_talk_info = .text:0x001A7DB8; // type:function size:0x8C scope:global align:4
+aCD1_talk_request = .text:0x001A7E44; // type:function size:0x30 scope:global align:4
+aCD1_talk_init = .text:0x001A7E74; // type:function size:0x3C scope:global align:4
+aCD1_talk_end_chk = .text:0x001A7EB0; // type:function size:0x44 scope:global align:4
+aEANG_actor_ct = .text:0x001A7EF4; // type:function size:0xBC scope:global align:4
+aEANG_actor_save = .text:0x001A7FB0; // type:function size:0x38 scope:global align:4
+aEANG_actor_dt = .text:0x001A7FE8; // type:function size:0x4C scope:global align:4
+aEANG_actor_init = .text:0x001A8034; // type:function size:0x38 scope:global align:4
+aEANG_actor_draw = .text:0x001A806C; // type:function size:0x38 scope:global align:4
+time_over_check = .text:0x001A80A4; // type:function size:0x48 scope:global align:4
+get_fish_save_area = .text:0x001A80EC; // type:function size:0x60 scope:local align:4
+get_fish_common_area = .text:0x001A814C; // type:function size:0x60 scope:global align:4
+fish_save_area_ct = .text:0x001A81AC; // type:function size:0x130 scope:global align:4
+fish_save_area_dt = .text:0x001A82DC; // type:function size:0xA4 scope:global align:4
+entry_check = .text:0x001A8380; // type:function size:0x64 scope:global align:4
+entry_on = .text:0x001A83E4; // type:function size:0x68 scope:global align:4
+getP_top_of_angler_pID = .text:0x001A844C; // type:function size:0x24 scope:local align:4
+set_top_of_angler_pID = .text:0x001A8470; // type:function size:0x38 scope:local align:4
+get_top_of_angler_size = .text:0x001A84A8; // type:function size:0x24 scope:local align:4
+set_top_of_angler_size = .text:0x001A84CC; // type:function size:0x30 scope:global align:4
+now_top_check = .text:0x001A84FC; // type:function size:0x38 scope:global align:4
+aEANG_item_check = .text:0x001A8534; // type:function size:0x48 scope:global align:4
+aEANG_SelectRandomItem = .text:0x001A857C; // type:function size:0x80 scope:global align:4
+get_message_number_fish_zannen = .text:0x001A85FC; // type:function size:0x80 scope:global align:4
+get_message_number_fish_omedeto = .text:0x001A867C; // type:function size:0x48 scope:global align:4
+aEANG_demo_measure = .text:0x001A86C4; // type:function size:0x174 scope:global align:4
+aEANG_demo_houbi = .text:0x001A8838; // type:function size:0x94 scope:global align:4
+aEANG_demo_henkyaku = .text:0x001A88CC; // type:function size:0xA0 scope:global align:4
+aEANG_demo_give_me = .text:0x001A896C; // type:function size:0xB0 scope:global align:4
+aEANG_say_tureta = .text:0x001A8A1C; // type:function size:0xD8 scope:global align:4
+aEANG_menu_open_wait = .text:0x001A8AF4; // type:function size:0x5C scope:global align:4
+aEANG_menu_close_wait = .text:0x001A8B50; // type:function size:0x38 scope:global align:4
+aEANG_msg_win_open_wait = .text:0x001A8B88; // type:function size:0x150 scope:global align:4
+aEANG_msg_to_menu = .text:0x001A8CD8; // type:function size:0x74 scope:global align:4
+aEANG_menu_open_wait_init = .text:0x001A8D4C; // type:function size:0x24 scope:global align:4
+aEANG_menu_close_wait_init = .text:0x001A8D70; // type:function size:0x38 scope:global align:4
+aEANG_msg_win_open_wait_init = .text:0x001A8DA8; // type:function size:0x38 scope:global align:4
+aEANG_demo_measure_init = .text:0x001A8DE0; // type:function size:0xA4 scope:global align:4
+aEANG_init_proc = .text:0x001A8E84; // type:function size:0x34 scope:global align:4
+aEANG_setupAction = .text:0x001A8EB8; // type:function size:0x34 scope:global align:4
+aEANG_set_talk_info = .text:0x001A8EEC; // type:function size:0x4C scope:global align:4
+aEANG_talk_request = .text:0x001A8F38; // type:function size:0x30 scope:global align:4
+aEANG_talk_init = .text:0x001A8F68; // type:function size:0x84 scope:global align:4
+aEANG_talk_end_chk = .text:0x001A8FEC; // type:function size:0xF8 scope:global align:4
+aEANG_actor_move = .text:0x001A90E4; // type:function size:0x38 scope:global align:4
+aEART_actor_ct = .text:0x001A911C; // type:function size:0x84 scope:global align:4
+aEART_actor_save = .text:0x001A91A0; // type:function size:0x38 scope:global align:4
+aEART_actor_dt = .text:0x001A91D8; // type:function size:0x70 scope:global align:4
+aEART_actor_init = .text:0x001A9248; // type:function size:0x38 scope:global align:4
+aEART_actor_draw = .text:0x001A9280; // type:function size:0x38 scope:global align:4
+aEART_check_present = .text:0x001A92B8; // type:function size:0x94 scope:global align:4
+aEART_item_check = .text:0x001A934C; // type:function size:0x58 scope:global align:4
+aEART_say_hungry = .text:0x001A93A4; // type:function size:0xA8 scope:global align:4
+aEART_menu_open_wait = .text:0x001A944C; // type:function size:0x5C scope:global align:4
+aEART_menu_close_wait = .text:0x001A94A8; // type:function size:0x38 scope:global align:4
+aEART_msg_win_open_wait = .text:0x001A94E0; // type:function size:0x104 scope:global align:4
+aEART_demo_start_wait = .text:0x001A95E4; // type:function size:0xA0 scope:global align:4
+aEART_refuse_demo_start_wait = .text:0x001A9684; // type:function size:0xB0 scope:global align:4
+aEART_refuse_demo_end_wait = .text:0x001A9734; // type:function size:0x48 scope:global align:4
+aEART_menu_open_wait_init = .text:0x001A977C; // type:function size:0x24 scope:global align:4
+aEART_menu_close_wait_init = .text:0x001A97A0; // type:function size:0x30 scope:global align:4
+aEART_msg_win_open_wait_init = .text:0x001A97D0; // type:function size:0x38 scope:global align:4
+aEART_demo_start_wait_init = .text:0x001A9808; // type:function size:0xD8 scope:global align:4
+aEART_init_proc = .text:0x001A98E0; // type:function size:0x34 scope:global align:4
+aEART_setupAction = .text:0x001A9914; // type:function size:0x34 scope:global align:4
+aEART_set_talk_info_talk_request = .text:0x001A9948; // type:function size:0x34 scope:global align:4
+aEART_talk_request = .text:0x001A997C; // type:function size:0x30 scope:global align:4
+aEART_talk_init = .text:0x001A99AC; // type:function size:0x60 scope:global align:4
+aEART_talk_end_chk = .text:0x001A9A0C; // type:function size:0x60 scope:global align:4
+aEART_actor_move = .text:0x001A9A6C; // type:function size:0x38 scope:global align:4
+aEBRK_actor_ct = .text:0x001A9AA4; // type:function size:0x100 scope:global align:4
+aEBRK_actor_save = .text:0x001A9BA4; // type:function size:0x38 scope:global align:4
+aEBRK_actor_dt = .text:0x001A9BDC; // type:function size:0x64 scope:global align:4
+aEBRK_actor_init = .text:0x001A9C40; // type:function size:0x38 scope:global align:4
+aEBRK_set_animation = .text:0x001A9C78; // type:function size:0x4C scope:global align:4
+aEBRK_actor_draw = .text:0x001A9CC4; // type:function size:0x38 scope:global align:4
+aEBRK_set_request_act = .text:0x001A9CFC; // type:function size:0x1C scope:global align:4
+aEBRK_set_pl_talk_lock = .text:0x001A9D18; // type:function size:0x5C scope:global align:4
+aEBRK_check_start_around_sub = .text:0x001A9D74; // type:function size:0x58 scope:global align:4
+aEBRK_check_start_around = .text:0x001A9DCC; // type:function size:0xB4 scope:global align:4
+aEBRK_check_tent = .text:0x001A9E80; // type:function size:0x78 scope:global align:4
+aEBRK_get_sell_item_sum = .text:0x001A9EF8; // type:function size:0x38 scope:global align:4
+aEBRK_check_pl_list = .text:0x001A9F30; // type:function size:0x78 scope:global align:4
+aEBRK_talk_wait = .text:0x001A9FA8; // type:function size:0x8C scope:global align:4
+aEBRK_turn = .text:0x001AA034; // type:function size:0x1C scope:global align:4
+aEBRK_enter = .text:0x001AA050; // type:function size:0x28 scope:global align:4
+aEBRK_set_spd_info = .text:0x001AA078; // type:function size:0x44 scope:global align:4
+aEBRK_setupAction = .text:0x001AA0BC; // type:function size:0x64 scope:global align:4
+aEBRK_act_chg_data_proc = .text:0x001AA120; // type:function size:0xC scope:global align:4
+aEBRK_act_init_proc = .text:0x001AA12C; // type:function size:0x2C scope:global align:4
+aEBRK_act_main_proc = .text:0x001AA158; // type:function size:0x28 scope:global align:4
+aEBRK_act_proc = .text:0x001AA180; // type:function size:0x34 scope:global align:4
+aEBRK_think_main_proc = .text:0x001AA1B4; // type:function size:0xE0 scope:global align:4
+aEBRK_think_init_proc = .text:0x001AA294; // type:function size:0x34 scope:global align:4
+aEBRK_think_proc = .text:0x001AA2C8; // type:function size:0x34 scope:global align:4
+aEBRK_schedule_init_proc = .text:0x001AA2FC; // type:function size:0x4C scope:global align:4
+aEBRK_schedule_main_proc = .text:0x001AA348; // type:function size:0x80 scope:global align:4
+aEBRK_schedule_proc = .text:0x001AA3C8; // type:function size:0x34 scope:global align:4
+aEBRK_set_talk_info_talk_request = .text:0x001AA3FC; // type:function size:0xDC scope:global align:4
+aEBRK_talk_request = .text:0x001AA4D8; // type:function size:0x30 scope:global align:4
+aEBRK_talk_init = .text:0x001AA508; // type:function size:0x30 scope:global align:4
+aEBRK_talk_end_chk = .text:0x001AA538; // type:function size:0x44 scope:global align:4
+aEBRK_actor_move = .text:0x001AA57C; // type:function size:0x5C scope:global align:4
+aEBR2_actor_ct = .text:0x001AA5D8; // type:function size:0xDC scope:global align:4
+aEBR2_actor_save = .text:0x001AA6B4; // type:function size:0x38 scope:global align:4
+aEBR2_actor_dt = .text:0x001AA6EC; // type:function size:0x4C scope:global align:4
+aEBR2_actor_init = .text:0x001AA738; // type:function size:0x38 scope:global align:4
+aEBR2_actor_draw = .text:0x001AA770; // type:function size:0x38 scope:global align:4
+aEBR2_BGcheck = .text:0x001AA7A8; // type:function size:0x44 scope:global align:4
+aEBR2_set_animation = .text:0x001AA7EC; // type:function size:0x4C scope:global align:4
+aEBR2_Set_ListenAble = .text:0x001AA838; // type:function size:0x24 scope:global align:4
+aEBR2_talk_demo_proc = .text:0x001AA85C; // type:function size:0x70 scope:global align:4
+aEBR2_set_msg_data_price = .text:0x001AA8CC; // type:function size:0x54 scope:global align:4
+aEBR2_set_msg_data_item_name = .text:0x001AA920; // type:function size:0x64 scope:global align:4
+aEBR2_set_msg_data_sub = .text:0x001AA984; // type:function size:0x50 scope:global align:4
+aEBR2_set_msg_data = .text:0x001AA9D4; // type:function size:0xBC scope:global align:4
+aEBR2_get_item_idx = .text:0x001AAA90; // type:function size:0x40 scope:global align:4
+aEBR2_set_stop_spd = .text:0x001AAAD0; // type:function size:0x1C scope:global align:4
+aEBR2_set_walk_spd = .text:0x001AAAEC; // type:function size:0x2C scope:global align:4
+aEBR2_set_run_spd = .text:0x001AAB18; // type:function size:0x2C scope:global align:4
+aEBR2_get_zone = .text:0x001AAB44; // type:function size:0x8 scope:global align:4
+aEBR2_get_next_zone = .text:0x001AAB4C; // type:function size:0x8 scope:global align:4
+aEBR2_decide_next_move_act = .text:0x001AAB54; // type:function size:0xEC scope:global align:4
+aEBR2_search_player = .text:0x001AAC40; // type:function size:0x80 scope:global align:4
+aEBR2_search_player2 = .text:0x001AACC0; // type:function size:0xD8 scope:global align:4
+aEBR2_set_zone_data = .text:0x001AAD98; // type:function size:0x84 scope:global align:4
+aEBR2_set_player_angl = .text:0x001AAE1C; // type:function size:0xC scope:global align:4
+aEBR2_set_talk_info_sell_item = .text:0x001AAE28; // type:function size:0xB0 scope:global align:4
+aEBR2_set_talk_info_message_ctrl = .text:0x001AAED8; // type:function size:0xBC scope:global align:4
+aEBR2_message_ctrl = .text:0x001AAF94; // type:function size:0x1BC scope:global align:4
+aEBR2_wait = .text:0x001AB150; // type:function size:0x74 scope:global align:4
+aEBR2_walk_pl_same_zone = .text:0x001AB1C4; // type:function size:0x74 scope:global align:4
+aEBR2_walk_pl_other_zone = .text:0x001AB238; // type:function size:0x74 scope:global align:4
+aEBR2_run_pl_same_zone = .text:0x001AB2AC; // type:function size:0x74 scope:global align:4
+aEBR2_run_pl_other_zone = .text:0x001AB320; // type:function size:0x74 scope:global align:4
+aEBR2_turn = .text:0x001AB394; // type:function size:0x94 scope:global align:4
+aEBR2_talk_end_wait = .text:0x001AB428; // type:function size:0x5C scope:global align:4
+aEBR2_set_talk_info_say_hello = .text:0x001AB484; // type:function size:0x24 scope:global align:4
+aEBR2_say_hello = .text:0x001AB4A8; // type:function size:0x7C scope:global align:4
+aEBR2_sell_check = .text:0x001AB524; // type:function size:0xB4 scope:global align:4
+aEBR2_sell_after = .text:0x001AB5D8; // type:function size:0x194 scope:global align:4
+aEBR2_set_talk_info_goodbye_wait = .text:0x001AB76C; // type:function size:0x3C scope:global align:4
+aEBR2_goodbye_wait = .text:0x001AB7A8; // type:function size:0x74 scope:global align:4
+aEBR2_say_goodbye = .text:0x001AB81C; // type:function size:0x58 scope:global align:4
+aEBR2_exit_wait = .text:0x001AB874; // type:function size:0x74 scope:global align:4
+aEBR2_say_hello_init = .text:0x001AB8E8; // type:function size:0x50 scope:global align:4
+aEBR2_say_goodbye_init = .text:0x001AB938; // type:function size:0x38 scope:global align:4
+aEBR2_init_proc = .text:0x001AB970; // type:function size:0x34 scope:global align:4
+aEBR2_setupAction = .text:0x001AB9A4; // type:function size:0x5C scope:global align:4
+aEBR2_actor_move = .text:0x001ABA00; // type:function size:0xB8 scope:global align:4
+aECPD_actor_ct = .text:0x001ABAB8; // type:function size:0x84 scope:global align:4
+aECPD_actor_save = .text:0x001ABB3C; // type:function size:0x38 scope:global align:4
+aECPD_actor_dt = .text:0x001ABB74; // type:function size:0x50 scope:global align:4
+aECPD_actor_init = .text:0x001ABBC4; // type:function size:0x38 scope:global align:4
+aECPD_actor_draw = .text:0x001ABBFC; // type:function size:0x38 scope:global align:4
+aECPD_check_possession = .text:0x001ABC34; // type:function size:0x50 scope:global align:4
+aECPD_msg_win_open_wait = .text:0x001ABC84; // type:function size:0x5C scope:global align:4
+aECPD_demo_start_wait = .text:0x001ABCE0; // type:function size:0x78 scope:global align:4
+aECPD_1st_check = .text:0x001ABD58; // type:function size:0x94 scope:global align:4
+aECPD_2nd_check = .text:0x001ABDEC; // type:function size:0xEC scope:global align:4
+aECPD_grad_message = .text:0x001ABED8; // type:function size:0x80 scope:global align:4
+aECPD_menu_open_wait = .text:0x001ABF58; // type:function size:0x5C scope:global align:4
+aECPD_menu_close_wait = .text:0x001ABFB4; // type:function size:0xAC scope:global align:4
+aECPD_demo0_end_wait = .text:0x001AC060; // type:function size:0xEC scope:global align:4
+aECPD_demo1_end_wait = .text:0x001AC14C; // type:function size:0x50 scope:global align:4
+aECPD_demo2_start_wait = .text:0x001AC19C; // type:function size:0x94 scope:global align:4
+aECPD_demo2_start_check = .text:0x001AC230; // type:function size:0x48 scope:global align:4
+aECPD_demo2_end_wait = .text:0x001AC278; // type:function size:0x7C scope:global align:4
+aECPD_refuse_trade_in = .text:0x001AC2F4; // type:function size:0xB0 scope:global align:4
+aECPD_refuse_trade_in_end_wait = .text:0x001AC3A4; // type:function size:0x78 scope:global align:4
+aECPD_msg_win_open_wait_init = .text:0x001AC41C; // type:function size:0x24 scope:global align:4
+aECPD_1st_check_init = .text:0x001AC440; // type:function size:0xEC scope:global align:4
+aECPD_grad_message_init = .text:0x001AC52C; // type:function size:0x24 scope:global align:4
+aECPD_menu_open_wait_init = .text:0x001AC550; // type:function size:0x24 scope:global align:4
+aECPD_menu_close_wait_init = .text:0x001AC574; // type:function size:0x38 scope:global align:4
+aECPD_demo0_end_wait_init = .text:0x001AC5AC; // type:function size:0x94 scope:global align:4
+aECPD_demo2_start_check_init = .text:0x001AC640; // type:function size:0x24 scope:global align:4
+aECPD_refuse_trade_in_init = .text:0x001AC664; // type:function size:0x28 scope:global align:4
+aECPD_init_proc = .text:0x001AC68C; // type:function size:0x34 scope:global align:4
+aECPD_setupAction = .text:0x001AC6C0; // type:function size:0x34 scope:global align:4
+aECPD_set_talk_info = .text:0x001AC6F4; // type:function size:0x24 scope:global align:4
+aECPD_talk_request = .text:0x001AC718; // type:function size:0x30 scope:global align:4
+aECPD_talk_init = .text:0x001AC748; // type:function size:0x34 scope:global align:4
+aECPD_talk_end_chk = .text:0x001AC77C; // type:function size:0x68 scope:global align:4
+aECPD_actor_move = .text:0x001AC7E4; // type:function size:0x38 scope:global align:4
+aECST_actor_ct = .text:0x001AC81C; // type:function size:0x118 scope:global align:4
+aECST_actor_save = .text:0x001AC934; // type:function size:0x38 scope:global align:4
+aECST_actor_dt = .text:0x001AC96C; // type:function size:0x38 scope:global align:4
+aECST_actor_init = .text:0x001AC9A4; // type:function size:0x38 scope:global align:4
+aECST_schedule_main_proc = .text:0x001AC9DC; // type:function size:0x4C scope:global align:4
+aECST_schedule_proc = .text:0x001ACA28; // type:function size:0x34 scope:global align:4
+aECST_actor_move = .text:0x001ACA5C; // type:function size:0x90 scope:global align:4
+aECST_actor_draw = .text:0x001ACAEC; // type:function size:0x38 scope:global align:4
+aEDSN_actor_ct = .text:0x001ACB24; // type:function size:0x8C scope:global align:4
+aEDSN_actor_save = .text:0x001ACBB0; // type:function size:0x38 scope:global align:4
+aEDSN_actor_dt = .text:0x001ACBE8; // type:function size:0x8C scope:global align:4
+aEDSN_actor_init = .text:0x001ACC74; // type:function size:0x38 scope:global align:4
+aEDSN_actor_draw = .text:0x001ACCAC; // type:function size:0x38 scope:global align:4
+aEDSN_set_request_act = .text:0x001ACCE4; // type:function size:0x94 scope:global align:4
+aEDSN_check_s_car = .text:0x001ACD78; // type:function size:0x78 scope:global align:4
+aEDSN_actor_move = .text:0x001ACDF0; // type:function size:0x5C scope:global align:4
+aEDSN_set_pl_talk_lock = .text:0x001ACE4C; // type:function size:0x5C scope:global align:4
+aEDSN_check_present = .text:0x001ACEA8; // type:function size:0x74 scope:global align:4
+aEDSN_get_msg_no = .text:0x001ACF1C; // type:function size:0x20 scope:global align:4
+aEDSN_inventory_check_talk_proc = .text:0x001ACF3C; // type:function size:0x110 scope:global align:4
+aEDSN_close_umb_end_wait_talk_proc = .text:0x001AD04C; // type:function size:0xAC scope:global align:4
+aEDSN_check_result_talk_proc = .text:0x001AD0F8; // type:function size:0x14C scope:global align:4
+aEDSN_demo_start_wait_talk_proc = .text:0x001AD244; // type:function size:0xA0 scope:global align:4
+aEDSN_demo_end_wait_talk_proc = .text:0x001AD2E4; // type:function size:0xC8 scope:global align:4
+aEDSN_talk_end_wait_talk_proc = .text:0x001AD3AC; // type:function size:0x2C scope:global align:4
+aEDSN_change_talk_proc = .text:0x001AD3D8; // type:function size:0x18 scope:global align:4
+aEDSN_set_force_talk_info = .text:0x001AD3F0; // type:function size:0x90 scope:global align:4
+aEDSN_force_talk_request = .text:0x001AD480; // type:function size:0x30 scope:global align:4
+aEDSN_set_norm_talk_info = .text:0x001AD4B0; // type:function size:0x1A0 scope:global align:4
+aEDSN_norm_talk_request = .text:0x001AD650; // type:function size:0x30 scope:global align:4
+aEDSN_talk_init = .text:0x001AD680; // type:function size:0x30 scope:global align:4
+aEDSN_talk_end_chk = .text:0x001AD6B0; // type:function size:0x84 scope:global align:4
+aEDSN_talk_start_wait = .text:0x001AD734; // type:function size:0xA8 scope:global align:4
+aEDSN_game_start_call_wait = .text:0x001AD7DC; // type:function size:0x94 scope:global align:4
+aEDSN_game_end_wait = .text:0x001AD870; // type:function size:0x15C scope:global align:4
+aEDSN_think_main_proc = .text:0x001AD9CC; // type:function size:0x28 scope:global align:4
+aEDSN_think_init_proc = .text:0x001AD9F4; // type:function size:0x94 scope:global align:4
+aEDSN_talk_start_wait_init = .text:0x001ADA88; // type:function size:0x34 scope:global align:4
+aEDSN_game_start_call_wait_init = .text:0x001ADABC; // type:function size:0x40 scope:global align:4
+aEDSN_game_end_wait_init = .text:0x001ADAFC; // type:function size:0x28 scope:global align:4
+aEDSN_game_end_call_init = .text:0x001ADB24; // type:function size:0x60 scope:global align:4
+aEDSN_setup_think_proc = .text:0x001ADB84; // type:function size:0x5C scope:global align:4
+aEDSN_think_proc = .text:0x001ADBE0; // type:function size:0x34 scope:global align:4
+aEDSN_schedule_init_proc = .text:0x001ADC14; // type:function size:0x84 scope:global align:4
+aEDSN_schedule_main_proc = .text:0x001ADC98; // type:function size:0x80 scope:global align:4
+aEDSN_schedule_proc = .text:0x001ADD18; // type:function size:0x34 scope:global align:4
+aEVD_actor_ct = .text:0x001ADD4C; // type:function size:0x78 scope:global align:4
+aEVD_actor_save = .text:0x001ADDC4; // type:function size:0x20 scope:global align:4
+aEVD_actor_dt = .text:0x001ADDE4; // type:function size:0x38 scope:global align:4
+aEVD_actor_init = .text:0x001ADE1C; // type:function size:0x38 scope:global align:4
+aEVD_actor_move = .text:0x001ADE54; // type:function size:0x38 scope:global align:4
+aEVD_actor_draw = .text:0x001ADE8C; // type:function size:0x38 scope:global align:4
+aEVD_set_talk_info = .text:0x001ADEC4; // type:function size:0x24 scope:global align:4
+aEVD_talk_request = .text:0x001ADEE8; // type:function size:0x30 scope:global align:4
+aEVD_talk_init = .text:0x001ADF18; // type:function size:0x24 scope:global align:4
+aEVD_talk_end_chk = .text:0x001ADF3C; // type:function size:0x44 scope:global align:4
+aEDZ_actor_ct = .text:0x001ADF80; // type:function size:0x19C scope:global align:4
+aEDZ_actor_save = .text:0x001AE11C; // type:function size:0x20 scope:global align:4
+aEDZ_actor_dt = .text:0x001AE13C; // type:function size:0x78 scope:global align:4
+aEDZ_actor_init = .text:0x001AE1B4; // type:function size:0x38 scope:global align:4
+aEDZ_set_request_act = .text:0x001AE1EC; // type:function size:0x94 scope:global align:4
+aEDZ_actor_move = .text:0x001AE280; // type:function size:0x38 scope:global align:4
+aEDZ_actor_draw = .text:0x001AE2B8; // type:function size:0x38 scope:global align:4
+aEDZ_to_ageru = .text:0x001AE2F0; // type:function size:0xAC scope:global align:4
+aEDZ_to_ageru2 = .text:0x001AE39C; // type:function size:0xA4 scope:global align:4
+aEDZ_ageru = .text:0x001AE440; // type:function size:0x9C scope:global align:4
+aEDZ_talk_stop_player = .text:0x001AE4DC; // type:function size:0x8C scope:global align:4
+aEDZ_talk_okiagaru = .text:0x001AE568; // type:function size:0x40 scope:global align:4
+aEDZ_talk_give = .text:0x001AE5A8; // type:function size:0xD0 scope:global align:4
+aEDZ_change_talk_proc = .text:0x001AE678; // type:function size:0x1C scope:global align:4
+aEDZ_set_force_talk_info = .text:0x001AE694; // type:function size:0xA4 scope:global align:4
+aEDZ_force_talk_request = .text:0x001AE738; // type:function size:0x48 scope:global align:4
+aEDZ_set_norm_talk_info = .text:0x001AE780; // type:function size:0xAC scope:global align:4
+aEDZ_norm_talk_request = .text:0x001AE82C; // type:function size:0x48 scope:global align:4
+aEDZ_set_wander_talk_info = .text:0x001AE874; // type:function size:0x9C scope:global align:4
+aEDZ_wander_talk_request = .text:0x001AE910; // type:function size:0x30 scope:global align:4
+aEDZ_talk_init = .text:0x001AE940; // type:function size:0x44 scope:global align:4
+aEDZ_talk_end_chk = .text:0x001AE984; // type:function size:0x9C scope:global align:4
+aEDZ_anime_next = .text:0x001AEA20; // type:function size:0x60 scope:global align:4
+aEDZ_think_main_proc = .text:0x001AEA80; // type:function size:0x28 scope:global align:4
+aEDZ_think_init_proc = .text:0x001AEAA8; // type:function size:0x34 scope:global align:4
+aEDZ_normal_wait_init = .text:0x001AEADC; // type:function size:0x38 scope:global align:4
+aEDZ_taoreru_init = .text:0x001AEB14; // type:function size:0x84 scope:global align:4
+aEDZ_okiagaru_init = .text:0x001AEB98; // type:function size:0x90 scope:global align:4
+aEDZ_wander_init = .text:0x001AEC28; // type:function size:0x54 scope:global align:4
+aEDZ_setup_think_proc = .text:0x001AEC7C; // type:function size:0x9C scope:global align:4
+aEDZ_think_proc = .text:0x001AED18; // type:function size:0x40 scope:global align:4
+aEDZ_schedule_init_proc = .text:0x001AED58; // type:function size:0x4C scope:global align:4
+aEDZ_schedule_main_proc = .text:0x001AEDA4; // type:function size:0x80 scope:global align:4
+aEDZ_schedule_proc = .text:0x001AEE24; // type:function size:0x40 scope:global align:4
+aEGH_actor_ct = .text:0x001AEE64; // type:function size:0x210 scope:global align:4
+aEGH_actor_save = .text:0x001AF074; // type:function size:0x20 scope:global align:4
+aEGH_actor_dt = .text:0x001AF094; // type:function size:0x64 scope:global align:4
+aEGH_actor_init = .text:0x001AF0F8; // type:function size:0x38 scope:global align:4
+aEGH_set_request_act = .text:0x001AF130; // type:function size:0x94 scope:global align:4
+aEGH_actor_move = .text:0x001AF1C4; // type:function size:0x1B4 scope:global align:4
+aEGH_actor_draw = .text:0x001AF378; // type:function size:0x78 scope:global align:4
+aEGH_hitodama_num = .text:0x001AF3F0; // type:function size:0x74 scope:global align:4
+aEGH_okoruhito = .text:0x001AF464; // type:function size:0x58 scope:global align:4
+aEGH_delete_hitodama = .text:0x001AF4BC; // type:function size:0x98 scope:global align:4
+aEGH_get_collect = .text:0x001AF554; // type:function size:0x70 scope:global align:4
+aEGH_check_collect_num = .text:0x001AF5C4; // type:function size:0x80 scope:global align:4
+aEGH_not_collect_get = .text:0x001AF644; // type:function size:0x1BC scope:global align:4
+aEGH_give_me_wait = .text:0x001AF800; // type:function size:0xE4 scope:global align:4
+aEGH_select_wait = .text:0x001AF8E4; // type:function size:0x1A4 scope:global align:4
+aEGH_select_roof = .text:0x001AFA88; // type:function size:0x110 scope:global align:4
+aEGH_give_you_wait = .text:0x001AFB98; // type:function size:0x98 scope:global align:4
+aEGH_change_talk_proc = .text:0x001AFC30; // type:function size:0xC scope:local align:4
+aEGH_set_force_talk_info = .text:0x001AFC3C; // type:function size:0x124 scope:global align:4
+aEGH_force_talk_request = .text:0x001AFD60; // type:function size:0xA8 scope:global align:4
+aEGH_set_norm_talk_info = .text:0x001AFE08; // type:function size:0xB4 scope:global align:4
+aEGH_norm_talk_request = .text:0x001AFEBC; // type:function size:0x48 scope:global align:4
+aEGH_talk_init = .text:0x001AFF04; // type:function size:0x44 scope:global align:4
+aEGH_talk_end_chk = .text:0x001AFF48; // type:function size:0xCC scope:global align:4
+aEGH_look_player = .text:0x001B0014; // type:function size:0x6C scope:global align:4
+aEGH_bitset_func = .text:0x001B0080; // type:function size:0xAC scope:global align:4
+aEGH_bitclr_func = .text:0x001B012C; // type:function size:0xAC scope:global align:4
+aEGH_bitcheck_func = .text:0x001B01D8; // type:function size:0xA4 scope:global align:4
+aEGH_equal_block = .text:0x001B027C; // type:function size:0x88 scope:global align:4
+aEGH_time_over = .text:0x001B0304; // type:function size:0x2C scope:global align:4
+aEGH_byebye_check = .text:0x001B0330; // type:function size:0xF8 scope:global align:4
+aEGH_irai = .text:0x001B0428; // type:function size:0x38 scope:global align:4
+aEGH_bye = .text:0x001B0460; // type:function size:0x38 scope:global align:4
+aEGH_byebye = .text:0x001B0498; // type:function size:0xD8 scope:global align:4
+aEGH_speak_byebye = .text:0x001B0570; // type:function size:0x80 scope:global align:4
+aEGH_think_main_proc = .text:0x001B05F0; // type:function size:0x4C scope:global align:4
+aEGH_think_init_proc = .text:0x001B063C; // type:function size:0x9C scope:global align:4
+aEGH_normal_wait_init = .text:0x001B06D8; // type:function size:0x7C scope:global align:4
+aEGH_irai_init = .text:0x001B0754; // type:function size:0x40 scope:global align:4
+aEGH_irai_af_init = .text:0x001B0794; // type:function size:0x64 scope:global align:4
+aEGH_bye_init = .text:0x001B07F8; // type:function size:0x40 scope:global align:4
+aEGH_welcom_init = .text:0x001B0838; // type:function size:0x40 scope:global align:4
+aEGH_byebye_init = .text:0x001B0878; // type:function size:0x70 scope:global align:4
+aEGH_setup_think_proc = .text:0x001B08E8; // type:function size:0x9C scope:global align:4
+aEGH_think_proc = .text:0x001B0984; // type:function size:0x40 scope:global align:4
+aEGH_schedule_init_proc = .text:0x001B09C4; // type:function size:0x4C scope:global align:4
+aEGH_schedule_main_proc = .text:0x001B0A10; // type:function size:0x80 scope:global align:4
+aEGH_schedule_proc = .text:0x001B0A90; // type:function size:0x40 scope:global align:4
+aEGPS_actor_ct = .text:0x001B0AD0; // type:function size:0xB0 scope:global align:4
+aEGPS_actor_save = .text:0x001B0B80; // type:function size:0x38 scope:global align:4
+aEGPS_actor_dt = .text:0x001B0BB8; // type:function size:0x50 scope:global align:4
+aEGPS_actor_init = .text:0x001B0C08; // type:function size:0x38 scope:global align:4
+aEGPS_actor_draw = .text:0x001B0C40; // type:function size:0x38 scope:global align:4
+aEGPS_set_string = .text:0x001B0C78; // type:function size:0x78 scope:global align:4
+aEGPS_call_in = .text:0x001B0CF0; // type:function size:0xDC scope:global align:4
+aEGPS_decide_result = .text:0x001B0DCC; // type:function size:0x11C scope:global align:4
+aEGPS_decide_result_init = .text:0x001B0EE8; // type:function size:0x6C scope:global align:4
+aEGPS_init_proc = .text:0x001B0F54; // type:function size:0x34 scope:global align:4
+aEGPS_setupAction = .text:0x001B0F88; // type:function size:0x38 scope:global align:4
+aEGPS_set_talk_info = .text:0x001B0FC0; // type:function size:0x5C scope:global align:4
+aEGPS_talk_request = .text:0x001B101C; // type:function size:0x30 scope:global align:4
+aEGPS_talk_init = .text:0x001B104C; // type:function size:0x54 scope:global align:4
+aEGPS_talk_end_chk = .text:0x001B10A0; // type:function size:0x5C scope:global align:4
+aEGPS_actor_move = .text:0x001B10FC; // type:function size:0x70 scope:global align:4
+aEKPD_actor_ct = .text:0x001B116C; // type:function size:0x84 scope:global align:4
+aEKPD_actor_save = .text:0x001B11F0; // type:function size:0x38 scope:global align:4
+aEKPD_actor_dt = .text:0x001B1228; // type:function size:0x50 scope:global align:4
+aEKPD_actor_init = .text:0x001B1278; // type:function size:0x38 scope:global align:4
+aEKPD_actor_draw = .text:0x001B12B0; // type:function size:0x38 scope:global align:4
+aEKPD_check_look = .text:0x001B12E8; // type:function size:0x5C scope:global align:4
+aEKPD_set_price_str_sub = .text:0x001B1344; // type:function size:0x5C scope:global align:4
+aEKPD_set_price_str = .text:0x001B13A0; // type:function size:0x6C scope:global align:4
+aEKPD_get_trans_space_idx = .text:0x001B140C; // type:function size:0x34 scope:global align:4
+aEKPD_hand_over_kabu = .text:0x001B1440; // type:function size:0x48 scope:global align:4
+aEKPD_sell_check = .text:0x001B1488; // type:function size:0xE4 scope:global align:4
+aEKPD_sell_check_after = .text:0x001B156C; // type:function size:0x110 scope:global align:4
+aEKPD_money_get_demo_start_wait = .text:0x001B167C; // type:function size:0x78 scope:global align:4
+aEKPD_money_get_demo_end_wait = .text:0x001B16F4; // type:function size:0x70 scope:global align:4
+aEKPD_kabu_trans_demo_start_wait = .text:0x001B1764; // type:function size:0x64 scope:global align:4
+aEKPD_sell_check_init = .text:0x001B17C8; // type:function size:0x30 scope:global align:4
+aEKPD_sell_check2_init = .text:0x001B17F8; // type:function size:0x58 scope:global align:4
+aEKPD_money_get_demo_start_wait_init = .text:0x001B1850; // type:function size:0x48 scope:global align:4
+aEKPD_init_proc = .text:0x001B1898; // type:function size:0x34 scope:global align:4
+aEKPD_setupAction = .text:0x001B18CC; // type:function size:0x38 scope:global align:4
+aEKPD_set_talk_info = .text:0x001B1904; // type:function size:0x34 scope:global align:4
+aEKPD_talk_request = .text:0x001B1938; // type:function size:0x30 scope:global align:4
+aEKPD_talk_init = .text:0x001B1968; // type:function size:0x84 scope:global align:4
+aEKPD_talk_end_chk = .text:0x001B19EC; // type:function size:0x68 scope:global align:4
+aEKPD_actor_move = .text:0x001B1A54; // type:function size:0x38 scope:global align:4
+aEMK_actor_ct = .text:0x001B1A8C; // type:function size:0x11C scope:global align:4
+aEMK_actor_save = .text:0x001B1BA8; // type:function size:0x38 scope:global align:4
+aEMK_actor_dt = .text:0x001B1BE0; // type:function size:0x50 scope:global align:4
+aEMK_actor_init = .text:0x001B1C30; // type:function size:0x38 scope:global align:4
+aEMK_actor_draw = .text:0x001B1C68; // type:function size:0x38 scope:global align:4
+aEMK_set_request_act = .text:0x001B1CA0; // type:function size:0x94 scope:global align:4
+aEMK_mail_free_space = .text:0x001B1D34; // type:function size:0x54 scope:global align:4
+aEMK_get_omikuji = .text:0x001B1D88; // type:function size:0x150 scope:global align:4
+aEMK_talk_select = .text:0x001B1ED8; // type:function size:0xE4 scope:global align:4
+aEMK_talk_omikuji = .text:0x001B1FBC; // type:function size:0xB8 scope:global align:4
+aEMK_talk_give = .text:0x001B2074; // type:function size:0x10C scope:global align:4
+aEMK_talk_omikuji_init = .text:0x001B2180; // type:function size:0x48 scope:global align:4
+aEMK_init_proc = .text:0x001B21C8; // type:function size:0x34 scope:global align:4
+aEMK_setupAction = .text:0x001B21FC; // type:function size:0x38 scope:global align:4
+aEMK_set_talk_info = .text:0x001B2234; // type:function size:0x34 scope:global align:4
+aEMK_talk_request = .text:0x001B2268; // type:function size:0x3C scope:global align:4
+aEMK_talk_init = .text:0x001B22A4; // type:function size:0x2C scope:global align:4
+aEMK_talk_end_chk = .text:0x001B22D0; // type:function size:0xE0 scope:global align:4
+aEMK_actor_move = .text:0x001B23B0; // type:function size:0x74 scope:global align:4
+aEPK_actor_ct = .text:0x001B2424; // type:function size:0xA4 scope:global align:4
+aEPK_actor_save = .text:0x001B24C8; // type:function size:0x38 scope:global align:4
+aEPK_actor_dt = .text:0x001B2500; // type:function size:0x50 scope:global align:4
+aEPK_actor_init = .text:0x001B2550; // type:function size:0x38 scope:global align:4
+aEPK_actor_move = .text:0x001B2588; // type:function size:0x38 scope:global align:4
+aEPK_actor_draw = .text:0x001B25C0; // type:function size:0x38 scope:global align:4
+aEPK_get_trick_type = .text:0x001B25F8; // type:function size:0x1A8 scope:global align:4
+aEPK_restart_msg_win = .text:0x001B27A0; // type:function size:0x58 scope:global align:4
+aEPK_decide_present = .text:0x001B27F8; // type:function size:0xA0 scope:global align:4
+aEPK_first_call_talk_proc = .text:0x001B2898; // type:function size:0x40 scope:global align:4
+aEPK_trick_or_treat_talk_proc = .text:0x001B28D8; // type:function size:0x9C scope:global align:4
+aEPK_menu_open_wait_talk_proc = .text:0x001B2974; // type:function size:0x70 scope:global align:4
+aEPK_menu_close_wait_talk_proc = .text:0x001B29E4; // type:function size:0xF0 scope:global align:4
+aEPK_get_other_item_wait_talk_proc = .text:0x001B2AD4; // type:function size:0xA0 scope:global align:4
+aEPK_receive_tool_item_start_wait_talk_proc = .text:0x001B2B74; // type:function size:0x84 scope:global align:4
+aEPK_receive_tool_item_end_wait_talk_proc = .text:0x001B2BF8; // type:function size:0x6C scope:global align:4
+aEPK_trick_timing_wait_talk_proc = .text:0x001B2C64; // type:function size:0x84 scope:global align:4
+aEPK_trick_chg_cloth_talk_proc = .text:0x001B2CE8; // type:function size:0x68 scope:global align:4
+aEPK_trick_chg_cloth_end_wait_talk_proc = .text:0x001B2D50; // type:function size:0x6C scope:global align:4
+aEPK_get_ame_wait_talk_proc = .text:0x001B2DBC; // type:function size:0x70 scope:global align:4
+aEPK_get_ame_talk_proc = .text:0x001B2E2C; // type:function size:0x58 scope:global align:4
+aEPK_give_a_present_demo_start_wait_talk_proc = .text:0x001B2E84; // type:function size:0xBC scope:global align:4
+aEPK_give_a_present_demo_end_wait_talk_proc = .text:0x001B2F40; // type:function size:0x70 scope:global align:4
+aEPK_pl_demo_code_end_wait_talk_proc = .text:0x001B2FB0; // type:function size:0x70 scope:global align:4
+aEPK_change_talk_proc = .text:0x001B3020; // type:function size:0x18 scope:global align:4
+aEPK_set_talk_info = .text:0x001B3038; // type:function size:0xC8 scope:global align:4
+aEPK_talk_request = .text:0x001B3100; // type:function size:0x30 scope:global align:4
+aEPK_talk_init = .text:0x001B3130; // type:function size:0x24 scope:global align:4
+aEPK_talk_end_chk = .text:0x001B3154; // type:function size:0x9C scope:global align:4
+aESNT_actor_ct = .text:0x001B31F0; // type:function size:0xE0 scope:global align:4
+aESNT_actor_save = .text:0x001B32D0; // type:function size:0x38 scope:global align:4
+aESNT_actor_dt = .text:0x001B3308; // type:function size:0x50 scope:global align:4
+aESNT_actor_init = .text:0x001B3358; // type:function size:0x38 scope:global align:4
+aESNT_actor_draw = .text:0x001B3390; // type:function size:0x38 scope:global align:4
+aESNT_chk_wish_1st = .text:0x001B33C8; // type:function size:0x9C scope:global align:4
+aESNT_chk_wish_final = .text:0x001B3464; // type:function size:0x90 scope:global align:4
+aESNT_chk_wish_more = .text:0x001B34F4; // type:function size:0xC8 scope:global align:4
+aESNT_motion_start_wait = .text:0x001B35BC; // type:function size:0x64 scope:global align:4
+aESNT_chk_wish_more_init = .text:0x001B3620; // type:function size:0x2C scope:global align:4
+aESNT_motion_end_wait_init = .text:0x001B364C; // type:function size:0x4C scope:global align:4
+aESNT_init_proc = .text:0x001B3698; // type:function size:0x34 scope:global align:4
+aESNT_setupAction = .text:0x001B36CC; // type:function size:0x38 scope:global align:4
+aESNT_check_pl_cloth = .text:0x001B3704; // type:function size:0x4C scope:global align:4
+aESNT_before_talk_present_decide_talk_data_idx = .text:0x001B3750; // type:function size:0x120 scope:global align:4
+aESNT_before_talk_more_check_decide_talk_data_idx = .text:0x001B3870; // type:function size:0x64 scope:global align:4
+aESNT_before_talk_decide_talk_data_idx = .text:0x001B38D4; // type:function size:0xC8 scope:global align:4
+aESNT_after_talk_restart_Q_decide_talk_data_idx = .text:0x001B399C; // type:function size:0x2C scope:global align:4
+aESNT_after_talk_same_pl_decide_talk_data_idx = .text:0x001B39C8; // type:function size:0x100 scope:global align:4
+aESNT_after_talk_other_pl_decide_talk_data_idx = .text:0x001B3AC8; // type:function size:0x5C scope:global align:4
+aESNT_after_talk_decide_talk_data_idx = .text:0x001B3B24; // type:function size:0x74 scope:global align:4
+aESNT_getP_talk_data = .text:0x001B3B98; // type:function size:0x8C scope:global align:4
+aESNT_set_talk_info = .text:0x001B3C24; // type:function size:0x44 scope:global align:4
+aESNT_talk_request = .text:0x001B3C68; // type:function size:0x30 scope:global align:4
+aESNT_talk_init = .text:0x001B3C98; // type:function size:0x38 scope:global align:4
+aESNT_talk_end_chk = .text:0x001B3CD0; // type:function size:0x5C scope:global align:4
+aESNT_actor_move = .text:0x001B3D2C; // type:function size:0x38 scope:global align:4
+aESC_actor_ct = .text:0x001B3D64; // type:function size:0x100 scope:global align:4
+aESC_actor_save = .text:0x001B3E64; // type:function size:0x38 scope:global align:4
+aESC_actor_dt = .text:0x001B3E9C; // type:function size:0x64 scope:global align:4
+aESC_actor_init = .text:0x001B3F00; // type:function size:0x38 scope:global align:4
+aESC_actor_draw = .text:0x001B3F38; // type:function size:0x38 scope:global align:4
+aESC_bitset_func = .text:0x001B3F70; // type:function size:0x38 scope:global align:4
+aESC_bitcheck_func = .text:0x001B3FA8; // type:function size:0x30 scope:global align:4
+aESC_owari_message = .text:0x001B3FD8; // type:function size:0xA4 scope:global align:4
+aESC_set_day = .text:0x001B407C; // type:function size:0x68 scope:global align:4
+aEGH_change_talk_proc = .text:0x001B40E4; // type:function size:0xC scope:local align:4
+aESC_talk_select = .text:0x001B40F0; // type:function size:0x12C scope:global align:4
+aESC_talk_secand = .text:0x001B421C; // type:function size:0x70 scope:global align:4
+aESC_time_talk = .text:0x001B428C; // type:function size:0x64 scope:global align:4
+aESC_set_talk_info_talk_request = .text:0x001B42F0; // type:function size:0xC8 scope:global align:4
+aESC_talk_request = .text:0x001B43B8; // type:function size:0x30 scope:global align:4
+aESC_talk_init = .text:0x001B43E8; // type:function size:0x28 scope:global align:4
+aESC_talk_end_chk = .text:0x001B4410; // type:function size:0x6C scope:global align:4
+aESC_actor_move = .text:0x001B447C; // type:function size:0x38 scope:global align:4
+aES2_actor_ct = .text:0x001B44B4; // type:function size:0x110 scope:global align:4
+aES2_actor_save = .text:0x001B45C4; // type:function size:0x20 scope:global align:4
+aES2_actor_dt = .text:0x001B45E4; // type:function size:0x5C scope:global align:4
+aES2_actor_init = .text:0x001B4640; // type:function size:0x38 scope:global align:4
+aES2_set_request_act = .text:0x001B4678; // type:function size:0x94 scope:global align:4
+aES2_actor_move = .text:0x001B470C; // type:function size:0x38 scope:global align:4
+aES2_actor_draw = .text:0x001B4744; // type:function size:0x38 scope:global align:4
+aES2_kinenhin_msg = .text:0x001B477C; // type:function size:0x24 scope:global align:4
+aES2_LightHouse_set_free_str = .text:0x001B47A0; // type:function size:0xA4 scope:global align:4
+aES2_talk_before_give = .text:0x001B4844; // type:function size:0xB4 scope:global align:4
+aES2_talk_give = .text:0x001B48F8; // type:function size:0xAC scope:global align:4
+aES2_change_talk_proc = .text:0x001B49A4; // type:function size:0xC scope:global align:4
+aES2_set_norm_talk_info = .text:0x001B49B0; // type:function size:0x210 scope:global align:4
+aES2_norm_talk_request = .text:0x001B4BC0; // type:function size:0x48 scope:global align:4
+aES2_talk_init = .text:0x001B4C08; // type:function size:0xA4 scope:global align:4
+aES2_talk_end_chk = .text:0x001B4CAC; // type:function size:0xAC scope:global align:4
+aES2_set_move_pos = .text:0x001B4D58; // type:function size:0x98 scope:global align:4
+aES2_wait = .text:0x001B4DF0; // type:function size:0x140 scope:global align:4
+aES2_look_runner = .text:0x001B4F30; // type:function size:0x68 scope:global align:4
+aES2_bskt_birth = .text:0x001B4F98; // type:function size:0x64 scope:global align:4
+aES2_bskt_turn_next = .text:0x001B4FFC; // type:function size:0x44 scope:global align:4
+aES2_bskt_move_next = .text:0x001B5040; // type:function size:0x98 scope:global align:4
+aES2_bskt_timer_next = .text:0x001B50D8; // type:function size:0x58 scope:global align:4
+aES2_tug_of_war = .text:0x001B5130; // type:function size:0x64 scope:global align:4
+aES2_think_main_proc = .text:0x001B5194; // type:function size:0x34 scope:global align:4
+aES2_think_init_proc = .text:0x001B51C8; // type:function size:0x34 scope:global align:4
+aES2_normal_wait_init = .text:0x001B51FC; // type:function size:0x38 scope:global align:4
+aES2_wander_init = .text:0x001B5234; // type:function size:0x50 scope:global align:4
+aES2_bskt_turn_init = .text:0x001B5284; // type:function size:0x4C scope:global align:4
+aES2_bskt_move_init = .text:0x001B52D0; // type:function size:0x40 scope:global align:4
+aES2_force_wait_init = .text:0x001B5310; // type:function size:0x28 scope:global align:4
+aES2_tug_of_war_init = .text:0x001B5338; // type:function size:0xDC scope:global align:4
+aES2_setup_think_proc = .text:0x001B5414; // type:function size:0x9C scope:global align:4
+aES2_think_proc = .text:0x001B54B0; // type:function size:0x40 scope:global align:4
+aES2_schedule_init_proc = .text:0x001B54F0; // type:function size:0x4C scope:global align:4
+aES2_schedule_main_proc = .text:0x001B553C; // type:function size:0x80 scope:global align:4
+aES2_schedule_proc = .text:0x001B55BC; // type:function size:0x40 scope:global align:4
+aESS_actor_ct = .text:0x001B55FC; // type:function size:0xA0 scope:global align:4
+aESS_actor_save = .text:0x001B569C; // type:function size:0x38 scope:global align:4
+aESS_actor_dt = .text:0x001B56D4; // type:function size:0x38 scope:global align:4
+aESS_actor_init = .text:0x001B570C; // type:function size:0x38 scope:global align:4
+aESS_actor_move = .text:0x001B5744; // type:function size:0x78 scope:global align:4
+aESS_actor_draw = .text:0x001B57BC; // type:function size:0x38 scope:global align:4
+aESS_set_request_act = .text:0x001B57F4; // type:function size:0x1C scope:global align:4
+aESS_act_init_proc = .text:0x001B5810; // type:function size:0xC scope:global align:4
+aESS_act_proc = .text:0x001B581C; // type:function size:0x34 scope:global align:4
+aESS_speech_start_wait = .text:0x001B5850; // type:function size:0x3C scope:global align:4
+aESS_think_main_proc = .text:0x001B588C; // type:function size:0xB4 scope:global align:4
+aESS_think_init_proc = .text:0x001B5940; // type:function size:0xB0 scope:global align:4
+aESS_setup_think_proc = .text:0x001B59F0; // type:function size:0x38 scope:global align:4
+aESS_think_proc = .text:0x001B5A28; // type:function size:0x34 scope:global align:4
+aESS_schedule_init_proc = .text:0x001B5A5C; // type:function size:0xD8 scope:global align:4
+aESS_schedule_main_proc = .text:0x001B5B34; // type:function size:0x80 scope:global align:4
+aESS_schedule_proc = .text:0x001B5BB4; // type:function size:0x34 scope:global align:4
+aESS_set_norm_talk_info = .text:0x001B5BE8; // type:function size:0xE8 scope:global align:4
+aESS_norm_talk_request = .text:0x001B5CD0; // type:function size:0x30 scope:global align:4
+aESS_set_force_talk_info = .text:0x001B5D00; // type:function size:0x2C scope:global align:4
+aESS_force_talk_request = .text:0x001B5D2C; // type:function size:0x30 scope:global align:4
+aESS_talk_init = .text:0x001B5D5C; // type:function size:0x30 scope:global align:4
+aESS_norm_talk_end_chk = .text:0x001B5D8C; // type:function size:0x9C scope:global align:4
+aESS_force_talk_end_chk = .text:0x001B5E28; // type:function size:0x70 scope:global align:4
+aEYMS_actor_ct = .text:0x001B5E98; // type:function size:0x1B0 scope:global align:4
+aEYMS_actor_save = .text:0x001B6048; // type:function size:0x38 scope:global align:4
+aEYMS_actor_dt = .text:0x001B6080; // type:function size:0x78 scope:global align:4
+aEYMS_actor_init = .text:0x001B60F8; // type:function size:0x38 scope:global align:4
+aEYMS_actor_draw = .text:0x001B6130; // type:function size:0x38 scope:global align:4
+get_yomise_save_area = .text:0x001B6168; // type:function size:0x28 scope:global align:4
+aYMS_check_goods_cnt = .text:0x001B6190; // type:function size:0x60 scope:global align:4
+setUp_yomise_goods = .text:0x001B61F0; // type:function size:0xA8 scope:global align:4
+yomise_save_area_ct = .text:0x001B6298; // type:function size:0x3C scope:global align:4
+aEYMS_set_choise_data = .text:0x001B62D4; // type:function size:0x1A4 scope:global align:4
+aNSM_set_item_value_str = .text:0x001B6478; // type:function size:0x5C scope:global align:4
+aYMS_make_utiwa = .text:0x001B64D4; // type:function size:0x74 scope:global align:4
+aEYMS_to_talk_buy = .text:0x001B6548; // type:function size:0x70 scope:global align:4
+get_now_select_goods_idx = .text:0x001B65B8; // type:function size:0x90 scope:global align:4
+aEYMS_talk_give = .text:0x001B6648; // type:function size:0xB4 scope:global align:4
+aEYMS_talk_add_action = .text:0x001B66FC; // type:function size:0x48 scope:global align:4
+aEYMS_talk_fruit = .text:0x001B6744; // type:function size:0x1A0 scope:global align:4
+aEYMS_talk_select2 = .text:0x001B68E4; // type:function size:0xA4 scope:global align:4
+aEYMS_talk_select = .text:0x001B6988; // type:function size:0xA0 scope:global align:4
+aEYMS_set_talk_info = .text:0x001B6A28; // type:function size:0xA0 scope:global align:4
+aEYMS_talk_request = .text:0x001B6AC8; // type:function size:0x78 scope:global align:4
+aEYMS_talk_init = .text:0x001B6B40; // type:function size:0x2C scope:global align:4
+aEYMS_talk_end_chk = .text:0x001B6B6C; // type:function size:0xBC scope:global align:4
+aEYMS_actor_move = .text:0x001B6C28; // type:function size:0x5C scope:global align:4
+aEYMS_setupAction = .text:0x001B6C84; // type:function size:0x1C scope:global align:4
+aGHN_actor_ct = .text:0x001B6CA0; // type:function size:0x98 scope:global align:4
+aGHN_actor_dt = .text:0x001B6D38; // type:function size:0x50 scope:global align:4
+aGHN_actor_save = .text:0x001B6D88; // type:function size:0x38 scope:global align:4
+aGHN_actor_init = .text:0x001B6DC0; // type:function size:0x38 scope:global align:4
+aGHN_actor_draw = .text:0x001B6DF8; // type:function size:0x38 scope:global align:4
+aGHN_set_free_str = .text:0x001B6E30; // type:function size:0x84 scope:global align:4
+aGHN_set_talk_info = .text:0x001B6EB4; // type:function size:0x74 scope:global align:4
+aGHN_talk_request = .text:0x001B6F28; // type:function size:0x30 scope:global align:4
+aGHN_talk_init = .text:0x001B6F58; // type:function size:0x5C scope:global align:4
+aGHN_talk_end_chk = .text:0x001B6FB4; // type:function size:0x44 scope:global align:4
+aGHN_actor_move = .text:0x001B6FF8; // type:function size:0x38 scope:global align:4
+aHWN_actor_ct = .text:0x001B7030; // type:function size:0x8C scope:global align:4
+aHWN_actor_dt = .text:0x001B70BC; // type:function size:0x38 scope:global align:4
+aHWN_actor_save = .text:0x001B70F4; // type:function size:0x38 scope:global align:4
+aHWN_actor_init = .text:0x001B712C; // type:function size:0x38 scope:global align:4
+aHWN_actor_draw = .text:0x001B7164; // type:function size:0x38 scope:global align:4
+aHWN_set_request_act = .text:0x001B719C; // type:function size:0x9C scope:global align:4
+aHWN_actor_move = .text:0x001B7238; // type:function size:0x38 scope:global align:4
+aHWN_get_trick_type = .text:0x001B7270; // type:function size:0x1A8 scope:global align:4
+aHWN_restart_msg_win = .text:0x001B7418; // type:function size:0x74 scope:global align:4
+aHWN_first_call_talk_proc = .text:0x001B748C; // type:function size:0x5C scope:global align:4
+aHWN_trick_or_treat_talk_proc = .text:0x001B74E8; // type:function size:0x9C scope:global align:4
+aHWN_menu_open_wait_talk_proc = .text:0x001B7584; // type:function size:0x70 scope:global align:4
+aHWN_menu_close_wait_talk_proc = .text:0x001B75F4; // type:function size:0xEC scope:global align:4
+aHWN_get_other_item_wait_talk_proc = .text:0x001B76E0; // type:function size:0xA4 scope:global align:4
+aHWN_receive_tool_item_start_wait_talk_proc = .text:0x001B7784; // type:function size:0x84 scope:global align:4
+aHWN_receive_tool_item_end_wait_talk_proc = .text:0x001B7808; // type:function size:0x6C scope:global align:4
+aHWN_trick_timing_wait_talk_proc = .text:0x001B7874; // type:function size:0x84 scope:global align:4
+aHWN_trick_chg_cloth_talk_proc = .text:0x001B78F8; // type:function size:0x68 scope:global align:4
+aHWN_trick_chg_cloth_end_wait_talk_proc = .text:0x001B7960; // type:function size:0x84 scope:global align:4
+aHWN_get_ame_wait_talk_proc = .text:0x001B79E4; // type:function size:0x70 scope:global align:4
+aHWN_get_ame_talk_proc = .text:0x001B7A54; // type:function size:0x58 scope:global align:4
+aHWN_pl_demo_code_end_wait_talk_proc = .text:0x001B7AAC; // type:function size:0x88 scope:global align:4
+aHWN_change_talk_proc = .text:0x001B7B34; // type:function size:0x18 scope:global align:4
+aHWN_set_force_talk_info = .text:0x001B7B4C; // type:function size:0x44 scope:global align:4
+aHWN_force_talk_request = .text:0x001B7B90; // type:function size:0x104 scope:global align:4
+aHWN_set_norm_talk_info = .text:0x001B7C94; // type:function size:0x4C scope:global align:4
+aHWN_norm_talk_request = .text:0x001B7CE0; // type:function size:0x30 scope:global align:4
+aHWN_talk_init = .text:0x001B7D10; // type:function size:0x24 scope:global align:4
+aHWN_talk_end_chk = .text:0x001B7D34; // type:function size:0x90 scope:global align:4
+aHWN_approach = .text:0x001B7DC4; // type:function size:0xA8 scope:global align:4
+aHWN_approach_wait = .text:0x001B7E6C; // type:function size:0xA0 scope:global align:4
+aHWN_think_main_proc = .text:0x001B7F0C; // type:function size:0x28 scope:global align:4
+aHWN_think_init_proc = .text:0x001B7F34; // type:function size:0x48 scope:global align:4
+aHWN_approach_init = .text:0x001B7F7C; // type:function size:0x38 scope:global align:4
+aHWN_approach_wait_init = .text:0x001B7FB4; // type:function size:0x38 scope:global align:4
+aHWN_setup_think_proc = .text:0x001B7FEC; // type:function size:0x54 scope:global align:4
+aHWN_think_proc = .text:0x001B8040; // type:function size:0x34 scope:global align:4
+aHWN_schedule_think_init = .text:0x001B8074; // type:function size:0x50 scope:global align:4
+aHWN_schedule_init_proc = .text:0x001B80C4; // type:function size:0x48 scope:global align:4
+aHWN_schedule_main_proc = .text:0x001B810C; // type:function size:0x12C scope:global align:4
+aHWN_schedule_proc = .text:0x001B8238; // type:function size:0x34 scope:global align:4
+aHN0_actor_ct = .text:0x001B826C; // type:function size:0x84 scope:local align:4
+aHN0_actor_save = .text:0x001B82F0; // type:function size:0x38 scope:local align:4
+aHN0_actor_dt = .text:0x001B8328; // type:function size:0x38 scope:local align:4
+aHN0_actor_init = .text:0x001B8360; // type:function size:0x38 scope:local align:4
+aHN0_actor_move = .text:0x001B8398; // type:function size:0x38 scope:local align:4
+aHN0_actor_draw = .text:0x001B83D0; // type:function size:0x38 scope:local align:4
+aHN0_set_animation = .text:0x001B8408; // type:function size:0x58 scope:global align:4
+aHN0_set_request_act = .text:0x001B8460; // type:function size:0x1C scope:local align:4
+aHN0_make_utiwa = .text:0x001B847C; // type:function size:0x74 scope:global align:4
+aHN0_check_moveRange = .text:0x001B84F0; // type:function size:0x40 scope:global align:4
+aHN0_check_inBlock = .text:0x001B8530; // type:function size:0x94 scope:global align:4
+aHN0_revise_moveRange = .text:0x001B85C4; // type:function size:0x164 scope:global align:4
+aHN0_turn = .text:0x001B8728; // type:function size:0x58 scope:global align:4
+aHN0_walk = .text:0x001B8780; // type:function size:0x70 scope:global align:4
+aHN0_hurrahs = .text:0x001B87F0; // type:function size:0x30 scope:global align:4
+aHN0_set_spd_info = .text:0x001B8820; // type:function size:0x44 scope:global align:4
+aHN0_setupAction = .text:0x001B8864; // type:function size:0x90 scope:global align:4
+aHN0_act_chg_data_proc = .text:0x001B88F4; // type:function size:0xC scope:global align:4
+aHN0_act_init_proc = .text:0x001B8900; // type:function size:0x24 scope:global align:4
+aHN0_act_main_proc = .text:0x001B8924; // type:function size:0x28 scope:global align:4
+aHN0_act_proc = .text:0x001B894C; // type:function size:0x34 scope:global align:4
+aHN0_think_main_proc = .text:0x001B8980; // type:function size:0x130 scope:local align:4
+aHN0_think_init_proc = .text:0x001B8AB0; // type:function size:0x3C scope:local align:4
+aHN0_think_proc = .text:0x001B8AEC; // type:function size:0x34 scope:local align:4
+aHN0_schedule_init_proc = .text:0x001B8B20; // type:function size:0xB4 scope:local align:4
+aHN0_schedule_main_proc = .text:0x001B8BD4; // type:function size:0x8C scope:local align:4
+aHN0_schedule_proc = .text:0x001B8C60; // type:function size:0x34 scope:local align:4
+aHN0_set_talk_info = .text:0x001B8C94; // type:function size:0x60 scope:global align:4
+aHN0_talk_request = .text:0x001B8CF4; // type:function size:0x30 scope:global align:4
+aHN0_talk_init = .text:0x001B8D24; // type:function size:0x24 scope:local align:4
+aHN0_talk_end_chk = .text:0x001B8D48; // type:function size:0x44 scope:local align:4
+aHN1_actor_ct = .text:0x001B8D8C; // type:function size:0x8C scope:global align:4
+aHN1_actor_save = .text:0x001B8E18; // type:function size:0x38 scope:global align:4
+aHN1_actor_dt = .text:0x001B8E50; // type:function size:0x38 scope:global align:4
+aHN1_actor_init = .text:0x001B8E88; // type:function size:0x38 scope:global align:4
+aHN1_actor_move = .text:0x001B8EC0; // type:function size:0x38 scope:global align:4
+aHN1_actor_draw = .text:0x001B8EF8; // type:function size:0x38 scope:global align:4
+aHN1_set_animation = .text:0x001B8F30; // type:function size:0x58 scope:global align:4
+aHN1_set_request_act = .text:0x001B8F88; // type:function size:0x1C scope:global align:4
+aHN1_make_utiwa = .text:0x001B8FA4; // type:function size:0x74 scope:global align:4
+aHN1_turn = .text:0x001B9018; // type:function size:0x1C scope:global align:4
+aHN1_fan = .text:0x001B9034; // type:function size:0x30 scope:global align:4
+aHN1_hurrahs = .text:0x001B9064; // type:function size:0x58 scope:global align:4
+aHN1_clapping = .text:0x001B90BC; // type:function size:0x3C scope:global align:4
+aHN1_setupAction = .text:0x001B90F8; // type:function size:0xF0 scope:global align:4
+aHN1_act_chg_data_proc = .text:0x001B91E8; // type:function size:0xC scope:global align:4
+aHN1_act_init_proc = .text:0x001B91F4; // type:function size:0x94 scope:global align:4
+aHN1_act_main_proc = .text:0x001B9288; // type:function size:0x28 scope:global align:4
+aHN1_act_proc = .text:0x001B92B0; // type:function size:0x34 scope:global align:4
+aHN1_think_main_proc = .text:0x001B92E4; // type:function size:0xA0 scope:global align:4
+aHN1_think_init_proc = .text:0x001B9384; // type:function size:0x34 scope:global align:4
+aHN1_think_proc = .text:0x001B93B8; // type:function size:0x34 scope:global align:4
+aHN1_schedule_init_proc = .text:0x001B93EC; // type:function size:0x114 scope:global align:4
+aHN1_schedule_main_proc = .text:0x001B9500; // type:function size:0x8C scope:global align:4
+aHN1_schedule_proc = .text:0x001B958C; // type:function size:0x34 scope:global align:4
+aHN1_set_talk_info = .text:0x001B95C0; // type:function size:0x7C scope:global align:4
+aHN1_talk_request = .text:0x001B963C; // type:function size:0x30 scope:global align:4
+aHN1_talk_init = .text:0x001B966C; // type:function size:0x24 scope:global align:4
+aHN1_talk_end_chk = .text:0x001B9690; // type:function size:0x44 scope:global align:4
+aHM0_actor_ct = .text:0x001B96D4; // type:function size:0x84 scope:global align:4
+aHM0_actor_save = .text:0x001B9758; // type:function size:0x38 scope:global align:4
+aHM0_actor_dt = .text:0x001B9790; // type:function size:0x38 scope:global align:4
+aHM0_actor_init = .text:0x001B97C8; // type:function size:0x38 scope:global align:4
+aHM0_actor_move = .text:0x001B9800; // type:function size:0x38 scope:global align:4
+aHM0_actor_draw = .text:0x001B9838; // type:function size:0x38 scope:global align:4
+aHM0_set_animation = .text:0x001B9870; // type:function size:0x4C scope:global align:4
+aHM0_set_request_act = .text:0x001B98BC; // type:function size:0x1C scope:global align:4
+aHM0_make_tumbler = .text:0x001B98D8; // type:function size:0x84 scope:global align:4
+aHM0_wait = .text:0x001B995C; // type:function size:0x30 scope:global align:4
+aHM0_merry = .text:0x001B998C; // type:function size:0x54 scope:global align:4
+aHM0_drink = .text:0x001B99E0; // type:function size:0x18 scope:global align:4
+aHM0_setupAction = .text:0x001B99F8; // type:function size:0xC0 scope:global align:4
+aHM0_act_chg_data_proc = .text:0x001B9AB8; // type:function size:0xC scope:global align:4
+aHM0_act_init_proc = .text:0x001B9AC4; // type:function size:0x24 scope:global align:4
+aHM0_act_main_proc = .text:0x001B9AE8; // type:function size:0x28 scope:global align:4
+aHM0_act_proc = .text:0x001B9B10; // type:function size:0x34 scope:global align:4
+aHM0_think_main_proc = .text:0x001B9B44; // type:function size:0x9C scope:global align:4
+aHM0_think_init_proc = .text:0x001B9BE0; // type:function size:0x34 scope:global align:4
+aHM0_think_proc = .text:0x001B9C14; // type:function size:0x34 scope:global align:4
+aHM0_schedule_init_proc = .text:0x001B9C48; // type:function size:0xAC scope:global align:4
+aHM0_schedule_main_proc = .text:0x001B9CF4; // type:function size:0x8C scope:global align:4
+aHM0_schedule_proc = .text:0x001B9D80; // type:function size:0x34 scope:global align:4
+aHM0_set_talk_info = .text:0x001B9DB4; // type:function size:0x7C scope:global align:4
+aHM0_talk_request = .text:0x001B9E30; // type:function size:0x30 scope:global align:4
+aHM0_talk_init = .text:0x001B9E60; // type:function size:0x24 scope:global align:4
+aHM0_talk_end_chk = .text:0x001B9E84; // type:function size:0x44 scope:global align:4
+aHM1_actor_ct = .text:0x001B9EC8; // type:function size:0x84 scope:global align:4
+aHM1_actor_save = .text:0x001B9F4C; // type:function size:0x38 scope:global align:4
+aHM1_actor_dt = .text:0x001B9F84; // type:function size:0x38 scope:global align:4
+aHM1_actor_init = .text:0x001B9FBC; // type:function size:0x38 scope:global align:4
+aHM1_actor_move = .text:0x001B9FF4; // type:function size:0x38 scope:global align:4
+aHM1_actor_draw = .text:0x001BA02C; // type:function size:0x38 scope:global align:4
+aHM1_set_animation = .text:0x001BA064; // type:function size:0x4C scope:global align:4
+aHM1_set_request_act = .text:0x001BA0B0; // type:function size:0x1C scope:global align:4
+aHM1_check_moveRange = .text:0x001BA0CC; // type:function size:0x40 scope:global align:4
+aHM1_check_inBlock = .text:0x001BA10C; // type:function size:0x94 scope:global align:4
+aHM1_revise_moveRange = .text:0x001BA1A0; // type:function size:0x164 scope:global align:4
+aHM1_turn = .text:0x001BA304; // type:function size:0x58 scope:global align:4
+aHM1_walk = .text:0x001BA35C; // type:function size:0x70 scope:global align:4
+aHM1_set_spd_info = .text:0x001BA3CC; // type:function size:0x44 scope:global align:4
+aHM1_setupAction = .text:0x001BA410; // type:function size:0x64 scope:global align:4
+aHM1_act_chg_data_proc = .text:0x001BA474; // type:function size:0xC scope:global align:4
+aHM1_act_init_proc = .text:0x001BA480; // type:function size:0x24 scope:global align:4
+aHM1_act_main_proc = .text:0x001BA4A4; // type:function size:0x28 scope:global align:4
+aHM1_act_proc = .text:0x001BA4CC; // type:function size:0x34 scope:global align:4
+aHM1_think_main_proc = .text:0x001BA500; // type:function size:0xE8 scope:global align:4
+aHM1_think_init_proc = .text:0x001BA5E8; // type:function size:0x34 scope:global align:4
+aHM1_think_proc = .text:0x001BA61C; // type:function size:0x34 scope:global align:4
+aHM1_schedule_init_proc = .text:0x001BA650; // type:function size:0xB0 scope:global align:4
+aHM1_schedule_main_proc = .text:0x001BA700; // type:function size:0x80 scope:global align:4
+aHM1_schedule_proc = .text:0x001BA780; // type:function size:0x34 scope:global align:4
+aHM1_set_talk_info = .text:0x001BA7B4; // type:function size:0x60 scope:global align:4
+aHM1_talk_request = .text:0x001BA814; // type:function size:0x30 scope:global align:4
+aHM1_talk_init = .text:0x001BA844; // type:function size:0x24 scope:global align:4
+aHM1_talk_end_chk = .text:0x001BA868; // type:function size:0x44 scope:global align:4
+aHN0_actor_ct = .text:0x001BA8AC; // type:function size:0x11C scope:local align:4
+aHN0_actor_save = .text:0x001BA9C8; // type:function size:0x20 scope:local align:4
+aHN0_actor_dt = .text:0x001BA9E8; // type:function size:0x84 scope:local align:4
+aHN0_actor_init = .text:0x001BAA6C; // type:function size:0x38 scope:local align:4
+aHN0_actor_move = .text:0x001BAAA4; // type:function size:0xBC scope:local align:4
+aHN0_actor_draw = .text:0x001BAB60; // type:function size:0x38 scope:local align:4
+aEv_init_hatumode_save_area = .text:0x001BAB98; // type:function size:0x5C scope:global align:4
+aHN0_set_start_position = .text:0x001BABF4; // type:function size:0x70 scope:global align:4
+aHN0_set_force_talk_info = .text:0x001BAC64; // type:function size:0x44 scope:global align:4
+aHN0_force_talk_request = .text:0x001BACA8; // type:function size:0x48 scope:global align:4
+aHN0_set_norm_talk_info = .text:0x001BACF0; // type:function size:0x44 scope:global align:4
+aHN0_norm_talk_request = .text:0x001BAD34; // type:function size:0x48 scope:global align:4
+aHN0_talk_init = .text:0x001BAD7C; // type:function size:0x44 scope:local align:4
+aHN0_talk_end_chk = .text:0x001BADC0; // type:function size:0x84 scope:local align:4
+aHN0_flag2_wait_check = .text:0x001BAE44; // type:function size:0xE8 scope:global align:4
+aHN0_birth = .text:0x001BAF2C; // type:function size:0x90 scope:global align:4
+aHN0_ready1 = .text:0x001BAFBC; // type:function size:0x88 scope:global align:4
+aHN0_ready2 = .text:0x001BB044; // type:function size:0x94 scope:global align:4
+aHN0_turn_next = .text:0x001BB0D8; // type:function size:0x38 scope:global align:4
+aHN0_flag2_wait = .text:0x001BB110; // type:function size:0xA0 scope:global align:4
+aHN0_anime_wait = .text:0x001BB1B0; // type:function size:0x5C scope:global align:4
+aHN0_anime_wait_saisen = .text:0x001BB20C; // type:function size:0xCC scope:global align:4
+aHN0_timer_wait = .text:0x001BB2D8; // type:function size:0x44 scope:global align:4
+aHN0_move_bf = .text:0x001BB31C; // type:function size:0x9C scope:global align:4
+aHN0_move_wait = .text:0x001BB3B8; // type:function size:0xA8 scope:global align:4
+aHN0_aisatu_wait = .text:0x001BB460; // type:function size:0x64 scope:global align:4
+aHN0_aisatu2_wait = .text:0x001BB4C4; // type:function size:0x64 scope:global align:4
+aHN0_to_omairi = .text:0x001BB528; // type:function size:0x60 scope:global align:4
+aHN0_player_move = .text:0x001BB588; // type:function size:0x84 scope:global align:4
+aHN0_player_wait = .text:0x001BB60C; // type:function size:0x78 scope:global align:4
+aHN0_kasasimai = .text:0x001BB684; // type:function size:0x98 scope:global align:4
+aHN0_sanpai_wait = .text:0x001BB71C; // type:function size:0x88 scope:global align:4
+aHN0_think_main_proc = .text:0x001BB7A4; // type:function size:0x9C scope:local align:4
+aHN0_think_init_proc = .text:0x001BB840; // type:function size:0x48 scope:local align:4
+aHN0_setup_think_proc = .text:0x001BB888; // type:function size:0x84 scope:global align:4
+aHN0_think_proc = .text:0x001BB90C; // type:function size:0x40 scope:local align:4
+aHN0_schedule_init_proc = .text:0x001BB94C; // type:function size:0x4C scope:local align:4
+aHN0_schedule_main_proc = .text:0x001BB998; // type:function size:0xB8 scope:local align:4
+aHN0_schedule_proc = .text:0x001BBA50; // type:function size:0x40 scope:local align:4
+aKM0_actor_ct = .text:0x001BBA90; // type:function size:0x8C scope:global align:4
+aKM0_actor_save = .text:0x001BBB1C; // type:function size:0x38 scope:global align:4
+aKM0_actor_dt = .text:0x001BBB54; // type:function size:0x38 scope:global align:4
+aKM0_actor_init = .text:0x001BBB8C; // type:function size:0x38 scope:global align:4
+aKM0_actor_move = .text:0x001BBBC4; // type:function size:0x38 scope:global align:4
+aKM0_actor_draw = .text:0x001BBBFC; // type:function size:0x38 scope:global align:4
+aKM0_talk_request = .text:0x001BBC34; // type:function size:0x38 scope:global align:4
+aKM0_talk_init = .text:0x001BBC6C; // type:function size:0x38 scope:global align:4
+aKM0_talk_end_chk = .text:0x001BBCA4; // type:function size:0x54 scope:global align:4
+aNOR_actor_ct = .text:0x001BBCF8; // type:function size:0x78 scope:global align:4
+aNOR_actor_dt = .text:0x001BBD70; // type:function size:0x38 scope:global align:4
+aNOR_actor_save = .text:0x001BBDA8; // type:function size:0x38 scope:global align:4
+aNOR_actor_init = .text:0x001BBDE0; // type:function size:0x38 scope:global align:4
+aNOR_actor_move = .text:0x001BBE18; // type:function size:0x38 scope:global align:4
+aNOR_actor_draw = .text:0x001BBE50; // type:function size:0x38 scope:global align:4
+aNPC_dma_cloth_data = .text:0x001BBE88; // type:function size:0xBC scope:local align:4
+aNPC_getP_cloth_tex_rom = .text:0x001BBF44; // type:function size:0x64 scope:local align:4
+aNPC_getP_cloth_pal_rom = .text:0x001BBFA8; // type:function size:0x64 scope:local align:4
+aNPC_dma_cloth_tex_data_fg = .text:0x001BC00C; // type:function size:0x44 scope:local align:4
+aNPC_dma_cloth_pal_data_fg = .text:0x001BC050; // type:function size:0x44 scope:local align:4
+aNPC_dma_cloth_data_fg = .text:0x001BC094; // type:function size:0xA8 scope:local align:4
+aNPC_reset_trans_condition_cloth_data = .text:0x001BC13C; // type:function size:0x58 scope:local align:4
+aNPC_get_same_cloth_data_area = .text:0x001BC194; // type:function size:0x38 scope:local align:4
+aNPC_dma_cloth_data_check = .text:0x001BC1CC; // type:function size:0x8C scope:local align:4
+aNPC_get_new_cloth_data_area = .text:0x001BC258; // type:function size:0x40 scope:local align:4
+aNPC_get_no_use_cloth_data_area = .text:0x001BC298; // type:function size:0x58 scope:local align:4
+aNPC_cancel_cloth_data = .text:0x001BC2F0; // type:function size:0x38 scope:local align:4
+aNPC_dma_regist_cloth_data = .text:0x001BC328; // type:function size:0xD4 scope:local align:4
+aNPC_dma_regist_check_cloth_data = .text:0x001BC3FC; // type:function size:0x5C scope:local align:4
+aNPC_keep_cloth_data_area = .text:0x001BC458; // type:function size:0xEC scope:local align:4
+aNPC_rebuild_cloth_data = .text:0x001BC544; // type:function size:0x24 scope:local align:4
+aNPC_change_cloth_data = .text:0x001BC568; // type:function size:0xE8 scope:local align:4
+aNPC_setup_chg_cloth = .text:0x001BC650; // type:function size:0xC scope:local align:4
+aNPC_setup_next_cloth = .text:0x001BC65C; // type:function size:0xC scope:local align:4
+aNPC_setup_cloth = .text:0x001BC668; // type:function size:0x18 scope:local align:4
+aNPC_get_feel_info = .text:0x001BC680; // type:function size:0x28 scope:local align:4
+aNPC_clear_all_morph_counter = .text:0x001BC6A8; // type:function size:0x18 scope:local align:4
+aNPC_check_talk_anime = .text:0x001BC6C0; // type:function size:0xA4 scope:local align:4
+aNPC_set_anime_se_info = .text:0x001BC764; // type:function size:0xEC scope:local align:4
+aNPC_Animation_init = .text:0x001BC850; // type:function size:0x2F8 scope:local align:4
+aNPC_check_anime_timing = .text:0x001BCB48; // type:function size:0xB4 scope:local align:4
+aNPC_anime_proc_foot = .text:0x001BCBFC; // type:function size:0x160 scope:local align:4
+aNPC_anime_proc_other = .text:0x001BCD5C; // type:function size:0x4C scope:local align:4
+aNPC_anime_se_proc = .text:0x001BCDA8; // type:function size:0x88 scope:local align:4
+aNPC_anime_proc = .text:0x001BCE30; // type:function size:0xD4 scope:local align:4
+aNPC_check_kutipaku = .text:0x001BCF04; // type:function size:0x90 scope:local align:4
+aNPC_getP_anmData = .text:0x001BCF94; // type:function size:0x2C scope:local align:4
+aNPC_get_seq_cnt = .text:0x001BCFC0; // type:function size:0x20 scope:local align:4
+aNPC_set_tex_anime = .text:0x001BCFE0; // type:function size:0x100 scope:local align:4
+aNPC_tex_anm_ctrl_stop_seq = .text:0x001BD0E0; // type:function size:0x2C scope:local align:4
+aNPC_tex_anm_ctrl_set_pat = .text:0x001BD10C; // type:function size:0x74 scope:local align:4
+aNPC_tex_anm_ctrl_rnd_seq = .text:0x001BD180; // type:function size:0x154 scope:local align:4
+aNPC_tex_anm_ctrl_talk_seq = .text:0x001BD2D4; // type:function size:0x134 scope:local align:4
+aNPC_tex_anm_ctrl_fix_seq = .text:0x001BD408; // type:function size:0x18 scope:local align:4
+aNPC_tex_anm_ctrl = .text:0x001BD420; // type:function size:0x17C scope:local align:4
+aNPC_set_frame_sub_speed = .text:0x001BD59C; // type:function size:0x3C scope:local align:4
+aNPC_set_anime_speed = .text:0x001BD5D8; // type:function size:0x2C scope:local align:4
+aNPC_OngenTrgStart = .text:0x001BD604; // type:function size:0x2C scope:local align:4
+aNPC_WalkSe = .text:0x001BD630; // type:function size:0x88 scope:global align:4
+aNPC_TumbleSe = .text:0x001BD6B8; // type:function size:0x58 scope:global align:4
+aNPC_change_umbrella = .text:0x001BD710; // type:function size:0xA8 scope:global align:4
+aNPC_putaway_right_item = .text:0x001BD7B8; // type:function size:0x9C scope:local align:4
+aNPC_takeout_right_item = .text:0x001BD854; // type:function size:0x150 scope:local align:4
+aNPC_chk_right_hand = .text:0x001BD9A4; // type:function size:0x98 scope:local align:4
+aNPC_clear_left_hand_info = .text:0x001BDA3C; // type:function size:0x1C scope:local align:4
+aNPC_chk_left_hand = .text:0x001BDA58; // type:function size:0xEC scope:local align:4
+aNPC_check_look_range = .text:0x001BDB44; // type:function size:0x80 scope:local align:4
+aNPC_check_look_player = .text:0x001BDBC4; // type:function size:0x80 scope:local align:4
+aNPC_check_attention = .text:0x001BDC44; // type:function size:0xE8 scope:local align:4
+aNPC_look_target = .text:0x001BDD2C; // type:function size:0xF8 scope:local align:4
+aNPC_check_condition_search_eye = .text:0x001BDE24; // type:function size:0x2C scope:local align:4
+aNPC_search_eye_target_sub = .text:0x001BDE50; // type:function size:0xC4 scope:local align:4
+aNPC_search_eye_target = .text:0x001BDF14; // type:function size:0x104 scope:local align:4
+aNPC_set_head_request_sub = .text:0x001BE018; // type:function size:0x4C scope:local align:4
+aNPC_set_head_request = .text:0x001BE064; // type:function size:0x74 scope:local align:4
+aNPC_force_call_req_proc = .text:0x001BE0D8; // type:function size:0x8C scope:local align:4
+aNPC_check_manpu_demoCode = .text:0x001BE164; // type:function size:0x138 scope:local align:4
+aNPC_clear_timing_demoCode = .text:0x001BE29C; // type:function size:0x78 scope:local align:4
+aNPC_check_timing_demoCode = .text:0x001BE314; // type:function size:0x1A4 scope:local align:4
+aNPC_check_feel_demoCode = .text:0x001BE4B8; // type:function size:0xF4 scope:local align:4
+aNPC_setup_talk_start = .text:0x001BE5AC; // type:function size:0x80 scope:local align:4
+aNPC_setup_talk_end = .text:0x001BE62C; // type:function size:0x50 scope:local align:4
+aNPC_set_talk_info_talk_request_check = .text:0x001BE67C; // type:function size:0xA8 scope:local align:4
+aNPC_talk_request_event_npc = .text:0x001BE724; // type:function size:0xD4 scope:local align:4
+aNPC_normal_talk_request = .text:0x001BE7F8; // type:function size:0x80 scope:local align:4
+aNPC_set_talk_info_force_call = .text:0x001BE878; // type:function size:0x50 scope:local align:4
+aNPC_force_talk_request = .text:0x001BE8C8; // type:function size:0xF0 scope:local align:4
+aNPC_talk_request_normal_npc = .text:0x001BE9B8; // type:function size:0xE0 scope:local align:4
+aNPC_talk_request_check = .text:0x001BEA98; // type:function size:0xC0 scope:local align:4
+aNPC_BGcheck = .text:0x001BEB58; // type:function size:0x138 scope:local align:4
+aNPC_blockRangeCheck = .text:0x001BEC90; // type:function size:0x134 scope:global align:4
+aNPC_circleRangeCheck = .text:0x001BEDC4; // type:function size:0xFC scope:global align:4
+aNPC_circleRangeRevice = .text:0x001BEEC0; // type:function size:0xDC scope:global align:4
+aNPC_moveRangeCheck2 = .text:0x001BEF9C; // type:function size:0xC8 scope:global align:4
+aNPC_moveRangeCheck = .text:0x001BF064; // type:function size:0x60 scope:global align:4
+aNPC_entranceCheck_sub = .text:0x001BF0C4; // type:function size:0xCC scope:global align:4
+aNPC_entranceCheck = .text:0x001BF190; // type:function size:0x44 scope:global align:4
+aNPC_check_entrance_pl = .text:0x001BF1D4; // type:function size:0xA8 scope:global align:4
+aNPC_check_entrance_npc = .text:0x001BF27C; // type:function size:0xC0 scope:global align:4
+aNPC_check_entrance_humanoid = .text:0x001BF33C; // type:function size:0x84 scope:global align:4
+aNPC_set_over_friendship = .text:0x001BF3C0; // type:function size:0xA0 scope:local align:4
+aNPC_forward_check_sub = .text:0x001BF460; // type:function size:0x108 scope:global align:4
+aNPC_forward_check = .text:0x001BF568; // type:function size:0xBC scope:global align:4
+aNPC_set_mv_angl = .text:0x001BF624; // type:function size:0x48 scope:local align:4
+aNPC_set_avoid_pos = .text:0x001BF66C; // type:function size:0x2C scope:local align:4
+aNPC_set_dst_pos = .text:0x001BF698; // type:function size:0x34 scope:local align:4
+aNPC_check_feel_tim = .text:0x001BF6CC; // type:function size:0x44 scope:local align:4
+aNPC_calc_move_timer = .text:0x001BF710; // type:function size:0x1C scope:global align:4
+aNPC_calc_force_call_timer = .text:0x001BF72C; // type:function size:0x48 scope:local align:4
+aNPC_calc_act_timer = .text:0x001BF774; // type:function size:0x18 scope:global align:4
+aNPC_calc_timer = .text:0x001BF78C; // type:function size:0x3C scope:local align:4
+aNPC_position_move = .text:0x001BF7C8; // type:function size:0x84 scope:local align:4
+aNPC_angle_calc = .text:0x001BF84C; // type:function size:0x40 scope:local align:4
+aNPC_set_body_angle = .text:0x001BF88C; // type:function size:0x6C scope:local align:4
+aNPC_around_obj_check = .text:0x001BF8F8; // type:function size:0xC0 scope:global align:4
+aNPC_chk_avoid_and_search = .text:0x001BF9B8; // type:function size:0xD4 scope:global align:4
+aNPC_calc_fatigue = .text:0x001BFA8C; // type:function size:0x6C scope:local align:4
+aNPC_set_condition_info = .text:0x001BFAF8; // type:function size:0x74 scope:global align:4
+aNPC_setupAction = .text:0x001BFB6C; // type:function size:0x98 scope:local align:4
+aNPC_actor_move_hide = .text:0x001BFC04; // type:function size:0x4C scope:local align:4
+aNPC_actor_move_show_before = .text:0x001BFC50; // type:function size:0x60 scope:local align:4
+aNPC_actor_move_show_after = .text:0x001BFCB0; // type:function size:0x84 scope:local align:4
+aNPC_actor_move_show = .text:0x001BFD34; // type:function size:0xB4 scope:local align:4
+aNPC_actor_move = .text:0x001BFDE8; // type:function size:0x50 scope:local align:4
+aNPC_check_mask_cat_type = .text:0x001BFE38; // type:function size:0x58 scope:local align:4
+aNPC_set_shadow_pos = .text:0x001BFE90; // type:function size:0x78 scope:local align:4
+aNPC_set_chn_base = .text:0x001BFF08; // type:function size:0xCC scope:local align:4
+aNPC_set_head_angl = .text:0x001BFFD4; // type:function size:0x6C scope:local align:4
+aNPC_actor_draw_before = .text:0x001C0040; // type:function size:0x44 scope:local align:4
+aNPC_set_right_hand_item = .text:0x001C0084; // type:function size:0x9C scope:local align:4
+aNPC_set_left_hand_item = .text:0x001C0120; // type:function size:0x88 scope:local align:4
+aNPC_set_foot_eff = .text:0x001C01A8; // type:function size:0x38 scope:local align:4
+aNPC_set_feel_eff = .text:0x001C01E0; // type:function size:0x34 scope:local align:4
+aNPC_set_accessory_mtx = .text:0x001C0214; // type:function size:0x94 scope:local align:4
+aNPC_actor_draw_after = .text:0x001C02A8; // type:function size:0x60 scope:local align:4
+aNPC_actor_draw_sub = .text:0x001C0308; // type:function size:0x30C scope:local align:4
+aNPC_actor_draw = .text:0x001C0614; // type:function size:0x40 scope:local align:4
+aNPC_set_eff = .text:0x001C0654; // type:function size:0x9C scope:local align:4
+aNPC_set_feel_effect = .text:0x001C06F0; // type:function size:0x184 scope:local align:4
+aNPC_set_other_effect = .text:0x001C0874; // type:function size:0x84 scope:local align:4
+aNPC_setup_stay_my_house = .text:0x001C08F8; // type:function size:0x3C scope:global align:4
+aNPC_request_house = .text:0x001C0934; // type:function size:0x98 scope:global align:4
+aNPC_check_arrive_destination = .text:0x001C09CC; // type:function size:0x88 scope:local align:4
+aNPC_get_animal_idx = .text:0x001C0A54; // type:function size:0x44 scope:global align:4
+aNPC_set_relation = .text:0x001C0A98; // type:function size:0x74 scope:global align:4
+aNPC_set_feel_info = .text:0x001C0B0C; // type:function size:0x5C scope:local align:4
+aNPC_set_act_obj = .text:0x001C0B68; // type:function size:0x118 scope:local align:4
+aNPC_check_live_target = .text:0x001C0C80; // type:function size:0x30 scope:local align:4
+aNPC_act_wait = .text:0x001C0CB0; // type:function size:0x40 scope:local align:4
+aNPC_act_move = .text:0x001C0CF0; // type:function size:0x50 scope:local align:4
+aNPC_act_search_move = .text:0x001C0D40; // type:function size:0x160 scope:local align:4
+aNPC_act_avoid_move = .text:0x001C0EA0; // type:function size:0x1DC scope:local align:4
+aNPC_act_to_point_move = .text:0x001C107C; // type:function size:0xD8 scope:local align:4
+aNPC_act_turn = .text:0x001C1154; // type:function size:0x20 scope:local align:4
+aNPC_act_search_turn = .text:0x001C1174; // type:function size:0x78 scope:local align:4
+aNPC_act_to_point_turn = .text:0x001C11EC; // type:function size:0x90 scope:local align:4
+aNPC_act_anm_seq = .text:0x001C127C; // type:function size:0x18 scope:local align:4
+aNPC_act_return_trans_item = .text:0x001C1294; // type:function size:0x84 scope:local align:4
+aNPC_act_special_proc = .text:0x001C1318; // type:function size:0x28 scope:local align:4
+aNPC_chk_request_act = .text:0x001C1340; // type:function size:0xFC scope:local align:4
+aNPC_set_request_act = .text:0x001C143C; // type:function size:0x5C scope:local align:4
+aNPC_action_proc = .text:0x001C1498; // type:function size:0x88 scope:local align:4
+aNPC_act_wait_main_proc = .text:0x001C1520; // type:function size:0x78 scope:local align:4
+aNPC_act_wait_chg_data_proc = .text:0x001C1598; // type:function size:0x54 scope:local align:4
+aNPC_act_wait_init_proc = .text:0x001C15EC; // type:function size:0x58 scope:local align:4
+aNPC_act_wait_proc = .text:0x001C1644; // type:function size:0x34 scope:local align:4
+aNPC_act_walk_setupAction = .text:0x001C1678; // type:function size:0x54 scope:local align:4
+aNPC_act_walk_main_proc = .text:0x001C16CC; // type:function size:0x80 scope:local align:4
+aNPC_act_walk_chg_data_proc = .text:0x001C174C; // type:function size:0x64 scope:local align:4
+aNPC_act_walk_init_proc = .text:0x001C17B0; // type:function size:0x7C scope:local align:4
+aNPC_act_walk_proc = .text:0x001C182C; // type:function size:0x34 scope:local align:4
+aNPC_act_turn_main_proc = .text:0x001C1860; // type:function size:0x54 scope:local align:4
+aNPC_act_turn_chg_data_proc = .text:0x001C18B4; // type:function size:0x64 scope:local align:4
+aNPC_act_turn_init_proc = .text:0x001C1918; // type:function size:0xE4 scope:local align:4
+aNPC_act_turn_proc = .text:0x001C19FC; // type:function size:0x34 scope:local align:4
+aNPC_act_chase_insect_check_end = .text:0x001C1A30; // type:function size:0x98 scope:global align:4
+aNPC_act_chase_insect_chg_step = .text:0x001C1AC8; // type:function size:0x17C scope:global align:4
+aNPC_act_chase_insect_main_proc = .text:0x001C1C44; // type:function size:0xA4 scope:global align:4
+aNPC_act_chase_insect_chg_data_proc = .text:0x001C1CE8; // type:function size:0x14 scope:global align:4
+aNPC_act_chase_insect_init_proc = .text:0x001C1CFC; // type:function size:0x30 scope:global align:4
+aNPC_act_chase_insect_proc = .text:0x001C1D2C; // type:function size:0x34 scope:global align:4
+aNPC_setup_turn_round_palActor = .text:0x001C1D60; // type:function size:0x44 scope:global align:4
+aNPC_get_animal_friendship = .text:0x001C1DA4; // type:function size:0x70 scope:global align:4
+aNPC_setup_greeting_end_sub = .text:0x001C1E14; // type:function size:0x50 scope:global align:4
+aNPC_setup_greeting_end = .text:0x001C1E64; // type:function size:0x94 scope:global align:4
+aNPC_sort_aroundNpcInfoList = .text:0x001C1EF8; // type:function size:0xE0 scope:global align:4
+aNPC_make_aroundNpcInfoList = .text:0x001C1FD8; // type:function size:0x1A8 scope:global align:4
+aNPC_decide_AB_Actor = .text:0x001C2180; // type:function size:0xA4 scope:global align:4
+aNPC_chk_same_cloth = .text:0x001C2224; // type:function size:0x3C scope:global align:4
+aNPC_set_feel_sub = .text:0x001C2260; // type:function size:0x8C scope:global align:4
+aNPC_set_feel = .text:0x001C22EC; // type:function size:0x44 scope:global align:4
+aNPC_copy_cloth = .text:0x001C2330; // type:function size:0x140 scope:global align:4
+aNPC_copy_end_words = .text:0x001C2470; // type:function size:0x134 scope:global align:4
+aNPC_set_cloth = .text:0x001C25A4; // type:function size:0xA8 scope:global align:4
+aNPC_reset_end_words = .text:0x001C264C; // type:function size:0x5C scope:global align:4
+aNPC_chg_sp_cloth = .text:0x001C26A8; // type:function size:0xD0 scope:global align:4
+aNPC_chg_sp_umb = .text:0x001C2778; // type:function size:0xC4 scope:global align:4
+aNPC_reset_cloth_and_umb = .text:0x001C283C; // type:function size:0xAC scope:global align:4
+aNPC_act_greeting_reaction = .text:0x001C28E8; // type:function size:0x1FC scope:global align:4
+aNPC_get_greeting_step = .text:0x001C2AE4; // type:function size:0x2C scope:global align:4
+aNPC_act_greeting_chg_step = .text:0x001C2B10; // type:function size:0x48 scope:global align:4
+aNPC_act_greeting_turn = .text:0x001C2B58; // type:function size:0x7C scope:global align:4
+aNPC_act_greeting_approach = .text:0x001C2BD4; // type:function size:0x70 scope:global align:4
+aNPC_act_greeting_wait = .text:0x001C2C44; // type:function size:0x68 scope:global align:4
+aNPC_act_greeting = .text:0x001C2CAC; // type:function size:0xC8 scope:global align:4
+aNPC_act_greeting_chg_cloth = .text:0x001C2D74; // type:function size:0x40 scope:global align:4
+aNPC_act_greeting_chg_umb = .text:0x001C2DB4; // type:function size:0x40 scope:global align:4
+aNPC_act_greeting_chg_cloth_and_umb = .text:0x001C2DF4; // type:function size:0x40 scope:global align:4
+aNPC_act_greeting_main_proc = .text:0x001C2E34; // type:function size:0x68 scope:global align:4
+aNPC_act_greeting_init_proc = .text:0x001C2E9C; // type:function size:0x48 scope:global align:4
+aNPC_act_greeting_proc = .text:0x001C2EE4; // type:function size:0x34 scope:global align:4
+aNPC_Init_OrderValue = .text:0x001C2F18; // type:function size:0x5C scope:local align:4
+aNPC_talk_demo_proc = .text:0x001C2F74; // type:function size:0x3C scope:local align:4
+aNPC_talk_end_check = .text:0x001C2FB0; // type:function size:0x84 scope:local align:4
+aNPC_act_talk_chg_step = .text:0x001C3034; // type:function size:0x34 scope:local align:4
+aNPC_act_talk_turn = .text:0x001C3068; // type:function size:0x40 scope:local align:4
+aNPC_act_talk_wait = .text:0x001C30A8; // type:function size:0xE0 scope:local align:4
+aNPC_act_talk = .text:0x001C3188; // type:function size:0x58 scope:local align:4
+aNPC_act_talk_main_proc = .text:0x001C31E0; // type:function size:0x38 scope:local align:4
+aNPC_act_talk_init_proc = .text:0x001C3218; // type:function size:0xAC scope:local align:4
+aNPC_act_talk_proc = .text:0x001C32C4; // type:function size:0x34 scope:local align:4
+aNPC_act_into_house_chg_step = .text:0x001C32F8; // type:function size:0x34 scope:global align:4
+aNPC_act_into_house_chg_into_step = .text:0x001C332C; // type:function size:0x58 scope:global align:4
+aNPC_act_into_house_turn = .text:0x001C3384; // type:function size:0x40 scope:global align:4
+aNPC_act_into_house_approach = .text:0x001C33C4; // type:function size:0xC8 scope:global align:4
+aNPC_act_into_house_umb_close = .text:0x001C348C; // type:function size:0x70 scope:global align:4
+aNPC_act_into_house_request_permit_wait = .text:0x001C34FC; // type:function size:0x20 scope:global align:4
+aNPC_act_into_house_into = .text:0x001C351C; // type:function size:0xE0 scope:global align:4
+aNPC_act_into_house_main_proc = .text:0x001C35FC; // type:function size:0x40 scope:global align:4
+aNPC_act_into_house_init_proc = .text:0x001C363C; // type:function size:0x6C scope:global align:4
+aNPC_act_into_house_proc = .text:0x001C36A8; // type:function size:0x34 scope:global align:4
+aNPC_act_leave_house_chg_step = .text:0x001C36DC; // type:function size:0x34 scope:global align:4
+aNPC_act_leave_house_wait = .text:0x001C3710; // type:function size:0xB8 scope:global align:4
+aNPC_act_leave_house_out_of_door = .text:0x001C37C8; // type:function size:0x40 scope:global align:4
+aNPC_act_leave_house_turn = .text:0x001C3808; // type:function size:0x68 scope:global align:4
+aNPC_act_leave_house_main_proc = .text:0x001C3870; // type:function size:0x38 scope:global align:4
+aNPC_act_leave_house_init_proc = .text:0x001C38A8; // type:function size:0x48 scope:global align:4
+aNPC_act_leave_house_proc = .text:0x001C38F0; // type:function size:0x34 scope:global align:4
+aNPC_act_umb_open_main_proc = .text:0x001C3924; // type:function size:0x7C scope:global align:4
+aNPC_act_umb_open_init_proc = .text:0x001C39A0; // type:function size:0x8C scope:global align:4
+aNPC_act_umb_open_proc = .text:0x001C3A2C; // type:function size:0x34 scope:global align:4
+aNPC_act_umb_close_main_proc = .text:0x001C3A60; // type:function size:0x80 scope:global align:4
+aNPC_act_umb_close_init_proc = .text:0x001C3AE0; // type:function size:0x30 scope:global align:4
+aNPC_act_umb_close_proc = .text:0x001C3B10; // type:function size:0x34 scope:global align:4
+aNPC_act_trans_chg_step = .text:0x001C3B44; // type:function size:0xDC scope:local align:4
+aNPC_act_trans_set_arg_data = .text:0x001C3C20; // type:function size:0x24 scope:local align:4
+aNPC_act_trans_move = .text:0x001C3C44; // type:function size:0x78 scope:local align:4
+aNPC_act_trans = .text:0x001C3CBC; // type:function size:0x6C scope:local align:4
+aNPC_act_trans_wait = .text:0x001C3D28; // type:function size:0x58 scope:local align:4
+aNPC_act_trans_send_mail = .text:0x001C3D80; // type:function size:0x74 scope:local align:4
+aNPC_act_trans_main_proc = .text:0x001C3DF4; // type:function size:0x88 scope:local align:4
+aNPC_act_trans_chg_data_proc = .text:0x001C3E7C; // type:function size:0xC scope:local align:4
+aNPC_act_trans_init_proc = .text:0x001C3E88; // type:function size:0x84 scope:local align:4
+aNPC_act_trans_proc = .text:0x001C3F0C; // type:function size:0x34 scope:local align:4
+aNPC_act_get_chg_step = .text:0x001C3F40; // type:function size:0x180 scope:local align:4
+aNPC_act_get_move = .text:0x001C40C0; // type:function size:0x70 scope:local align:4
+aNPC_act_get = .text:0x001C4130; // type:function size:0x94 scope:local align:4
+aNPC_act_get_pull = .text:0x001C41C4; // type:function size:0x7C scope:local align:4
+aNPC_act_get_pull_wait = .text:0x001C4240; // type:function size:0x10C scope:local align:4
+aNPC_act_get_putaway = .text:0x001C434C; // type:function size:0x40 scope:local align:4
+aNPC_act_get_chg_cloth = .text:0x001C438C; // type:function size:0xCC scope:local align:4
+aNPC_act_get_chg_umb = .text:0x001C4458; // type:function size:0xC8 scope:global align:4
+aNPC_act_get_chg_cloth_and_umb = .text:0x001C4520; // type:function size:0x14C scope:global align:4
+aNPC_act_get_return = .text:0x001C466C; // type:function size:0x74 scope:local align:4
+aNPC_act_estimate = .text:0x001C46E0; // type:function size:0x60 scope:local align:4
+aNPC_act_get_main_proc = .text:0x001C4740; // type:function size:0x88 scope:local align:4
+aNPC_act_get_chg_data_proc = .text:0x001C47C8; // type:function size:0xC scope:local align:4
+aNPC_act_get_init_proc = .text:0x001C47D4; // type:function size:0x80 scope:local align:4
+aNPC_act_get_proc = .text:0x001C4854; // type:function size:0x34 scope:local align:4
+aNPC_act_ensou_main_proc = .text:0x001C4888; // type:function size:0x24 scope:local align:4
+aNPC_act_ensou_init_proc = .text:0x001C48AC; // type:function size:0x34 scope:local align:4
+aNPC_act_ensou_proc = .text:0x001C48E0; // type:function size:0x34 scope:local align:4
+aNPC_act_pitfall_chg_step = .text:0x001C4914; // type:function size:0x34 scope:global align:4
+aNPC_act_pitfall_totter = .text:0x001C4948; // type:function size:0xBC scope:global align:4
+aNPC_act_pitfall_fall = .text:0x001C4A04; // type:function size:0x5C scope:global align:4
+aNPC_act_pitfall_main_proc = .text:0x001C4A60; // type:function size:0x38 scope:global align:4
+aNPC_act_pitfall_init_proc = .text:0x001C4A98; // type:function size:0x74 scope:global align:4
+aNPC_act_pitfall_proc = .text:0x001C4B0C; // type:function size:0x34 scope:global align:4
+aNPC_act_revive_main_proc = .text:0x001C4B40; // type:function size:0x3C scope:global align:4
+aNPC_act_revive_init_proc = .text:0x001C4B7C; // type:function size:0x94 scope:global align:4
+aNPC_act_revive_proc = .text:0x001C4C10; // type:function size:0x34 scope:global align:4
+aNPC_setup_react_tool_end = .text:0x001C4C44; // type:function size:0x28 scope:global align:4
+aNPC_act_react_tool_surprise = .text:0x001C4C6C; // type:function size:0x3C scope:global align:4
+aNPC_act_react_tool_surprise2 = .text:0x001C4CA8; // type:function size:0x48 scope:global align:4
+aNPC_act_react_tool_look_player = .text:0x001C4CF0; // type:function size:0x6C scope:global align:4
+aNPC_act_react_tool_chg_step = .text:0x001C4D5C; // type:function size:0x34 scope:global align:4
+aNPC_act_react_tool_main_proc = .text:0x001C4D90; // type:function size:0x38 scope:global align:4
+aNPC_act_react_tool_chg_data_proc = .text:0x001C4DC8; // type:function size:0x30 scope:global align:4
+aNPC_act_react_tool_init_proc = .text:0x001C4DF8; // type:function size:0xBC scope:global align:4
+aNPC_act_react_tool_proc = .text:0x001C4EB4; // type:function size:0x34 scope:global align:4
+aNPC_act_clap_main_proc = .text:0x001C4EE8; // type:function size:0x5C scope:global align:4
+aNPC_act_clap_init_proc = .text:0x001C4F44; // type:function size:0x34 scope:global align:4
+aNPC_act_clap_proc = .text:0x001C4F78; // type:function size:0x34 scope:global align:4
+aNPC_check_uzai_cross = .text:0x001C4FAC; // type:function size:0xE8 scope:local align:4
+aNPC_check_uzai = .text:0x001C5094; // type:function size:0x24C scope:local align:4
+aNPC_ctrl_umbrella = .text:0x001C52E0; // type:function size:0xD8 scope:global align:4
+aNPC_check_obj_crs_player = .text:0x001C53B8; // type:function size:0x2C scope:global align:4
+aNPC_check_entrance = .text:0x001C53E4; // type:function size:0x10C scope:global align:4
+aNPC_turn_to_backward = .text:0x001C54F0; // type:function size:0x164 scope:global align:4
+aNPC_avoid_wall = .text:0x001C5654; // type:function size:0x230 scope:global align:4
+aNPC_avoid_obstacle = .text:0x001C5884; // type:function size:0x12C scope:local align:4
+aNPC_chk_talk_start = .text:0x001C59B0; // type:function size:0x144 scope:local align:4
+aNPC_check_clap = .text:0x001C5AF4; // type:function size:0xB4 scope:global align:4
+aNPC_check_ball = .text:0x001C5BA8; // type:function size:0xC4 scope:global align:4
+aNPC_check_insect_and_gyoei = .text:0x001C5C6C; // type:function size:0x18C scope:global align:4
+aNPC_check_fatigue = .text:0x001C5DF8; // type:function size:0x54 scope:local align:4
+aNPC_think_demo_allways = .text:0x001C5E4C; // type:function size:0x20 scope:global align:4
+aNPC_chk_pitfall = .text:0x001C5E6C; // type:function size:0x94 scope:global align:4
+aNPC_hate_player = .text:0x001C5F00; // type:function size:0xAC scope:local align:4
+aNPC_love_player = .text:0x001C5FAC; // type:function size:0x180 scope:local align:4
+aNPC_chk_friendship_lv = .text:0x001C612C; // type:function size:0x78 scope:local align:4
+aNPC_chk_friendship_sub = .text:0x001C61A4; // type:function size:0x8C scope:local align:4
+aNPC_chk_friendship = .text:0x001C6230; // type:function size:0xE4 scope:local align:4
+aNPC_think_chk_interrupt_proc = .text:0x001C6314; // type:function size:0x2E4 scope:local align:4
+aNPC_think_wait_init_proc = .text:0x001C65F8; // type:function size:0x34 scope:local align:4
+aNPC_think_wait_proc = .text:0x001C662C; // type:function size:0x28 scope:local align:4
+aNPC_think_special_proc = .text:0x001C6654; // type:function size:0x28 scope:local align:4
+aNPC_think_init_proc = .text:0x001C667C; // type:function size:0x5C scope:local align:4
+aNPC_think_main_proc = .text:0x001C66D8; // type:function size:0x3C scope:local align:4
+aNPC_think_proc = .text:0x001C6714; // type:function size:0x68 scope:local align:4
+aNPC_think_wander_check_ones_way = .text:0x001C677C; // type:function size:0xB0 scope:global align:4
+aNPC_think_wander_move_next = .text:0x001C682C; // type:function size:0x258 scope:global align:4
+aNPC_think_wander_decide_next = .text:0x001C6A84; // type:function size:0x24C scope:local align:4
+aNPC_think_wander_next_act = .text:0x001C6CD0; // type:function size:0x2C scope:local align:4
+aNPC_think_wander_main_proc = .text:0x001C6CFC; // type:function size:0x3C scope:local align:4
+aNPC_think_wander_init_proc = .text:0x001C6D38; // type:function size:0x124 scope:local align:4
+aNPC_think_wander_proc = .text:0x001C6E5C; // type:function size:0x34 scope:local align:4
+aNPC_set_request_go_home_act = .text:0x001C6E90; // type:function size:0xC0 scope:global align:4
+aNPC_think_go_home_check_entrance = .text:0x001C6F50; // type:function size:0x64 scope:global align:4
+aNPC_think_go_home_next_act = .text:0x001C6FB4; // type:function size:0x8C scope:global align:4
+aNPC_think_go_home_main_proc = .text:0x001C7040; // type:function size:0x74 scope:global align:4
+aNPC_think_go_home_init_proc = .text:0x001C70B4; // type:function size:0x30 scope:global align:4
+aNPC_think_go_home_proc = .text:0x001C70E4; // type:function size:0x34 scope:global align:4
+aNPC_think_into_house_init_proc = .text:0x001C7118; // type:function size:0x64 scope:global align:4
+aNPC_think_into_house_proc = .text:0x001C717C; // type:function size:0x34 scope:global align:4
+aNPC_think_leave_house_init_proc = .text:0x001C71B0; // type:function size:0xF4 scope:global align:4
+aNPC_think_leave_house_proc = .text:0x001C72A4; // type:function size:0x34 scope:global align:4
+aNPC_think_in_block_chg_native_info = .text:0x001C72D8; // type:function size:0x68 scope:global align:4
+aNPC_think_in_block_setup_end = .text:0x001C7340; // type:function size:0xC4 scope:global align:4
+aNPC_think_in_block_chk_interrupt_proc = .text:0x001C7404; // type:function size:0xD4 scope:global align:4
+aNPC_think_in_block_check_humanoid = .text:0x001C74D8; // type:function size:0x38 scope:global align:4
+aNPC_think_in_block_next_act = .text:0x001C7510; // type:function size:0x74 scope:global align:4
+aNPC_think_in_block_main_proc = .text:0x001C7584; // type:function size:0xFC scope:global align:4
+aNPC_think_in_block_init_proc = .text:0x001C7680; // type:function size:0xF0 scope:global align:4
+aNPC_think_in_block_proc = .text:0x001C7770; // type:function size:0x34 scope:global align:4
+aNPC_think_pitfall_main_proc = .text:0x001C77A4; // type:function size:0xC4 scope:global align:4
+aNPC_think_pitfall_init_proc = .text:0x001C7868; // type:function size:0xA4 scope:global align:4
+aNPC_think_pitfall_proc = .text:0x001C790C; // type:function size:0x34 scope:global align:4
+aNPC_think_sleep_set_force_schedule = .text:0x001C7940; // type:function size:0x50 scope:global align:4
+aNPC_think_sleep_main_proc = .text:0x001C7990; // type:function size:0xAC scope:global align:4
+aNPC_think_sleep_init_proc = .text:0x001C7A3C; // type:function size:0x60 scope:global align:4
+aNPC_think_sleep_proc = .text:0x001C7A9C; // type:function size:0x34 scope:global align:4
+aNPC_set_hide_request = .text:0x001C7AD0; // type:function size:0x50 scope:local align:4
+aNPC_set_hide_flg = .text:0x001C7B20; // type:function size:0x4C scope:local align:4
+aNPC_check_chg_schedule = .text:0x001C7B6C; // type:function size:0x3C scope:global align:4
+aNPC_check_home_block = .text:0x001C7BA8; // type:function size:0x3C scope:global align:4
+aNPC_stand_schedule_main_proc = .text:0x001C7BE4; // type:function size:0x80 scope:local align:4
+aNPC_stand_schedule_init_proc = .text:0x001C7C64; // type:function size:0x54 scope:local align:4
+aNPC_stand_schedule_proc = .text:0x001C7CB8; // type:function size:0x34 scope:local align:4
+aNPC_wander_schedule_main_proc = .text:0x001C7CEC; // type:function size:0x54 scope:local align:4
+aNPC_wander_schedule_init_proc = .text:0x001C7D40; // type:function size:0x4C scope:local align:4
+aNPC_wander_schedule_proc = .text:0x001C7D8C; // type:function size:0x34 scope:local align:4
+aNPC_walk_wander_schedule_init_proc = .text:0x001C7DC0; // type:function size:0x4C scope:global align:4
+aNPC_walk_wander_schedule_proc = .text:0x001C7E0C; // type:function size:0x34 scope:global align:4
+aNPC_special_schedule_proc = .text:0x001C7E40; // type:function size:0x28 scope:local align:4
+aNPC_schedule_init = .text:0x001C7E68; // type:function size:0x9C scope:local align:4
+aNPC_chg_schedule = .text:0x001C7F04; // type:function size:0x24 scope:local align:4
+aNPC_set_schedule = .text:0x001C7F28; // type:function size:0x28 scope:local align:4
+aNPC_schedule_proc = .text:0x001C7F50; // type:function size:0xA4 scope:local align:4
+aNPC_first_set_schedule = .text:0x001C7FF4; // type:function size:0x7C scope:local align:4
+aNPC_field_schedule_think_init = .text:0x001C8070; // type:function size:0x60 scope:local align:4
+aNPC_field_schedule_main_proc = .text:0x001C80D0; // type:function size:0xD8 scope:local align:4
+aNPC_field_schedule_init_proc = .text:0x001C81A8; // type:function size:0x68 scope:local align:4
+aNPC_field_schedule_proc = .text:0x001C8210; // type:function size:0x34 scope:local align:4
+aNPC_in_house_schedule_think_init = .text:0x001C8244; // type:function size:0x34 scope:local align:4
+aNPC_in_house_schedule_main_proc = .text:0x001C8278; // type:function size:0x110 scope:local align:4
+aNPC_in_house_schedule_init_proc = .text:0x001C8388; // type:function size:0xA8 scope:local align:4
+aNPC_in_house_schedule_proc = .text:0x001C8430; // type:function size:0x34 scope:local align:4
+aNPC_sleep_schedule_think_init = .text:0x001C8464; // type:function size:0x34 scope:global align:4
+aNPC_sleep_schedule_chg_schedule = .text:0x001C8498; // type:function size:0x70 scope:global align:4
+aNPC_sleep_schedule_main_proc = .text:0x001C8508; // type:function size:0xC8 scope:local align:4
+aNPC_sleep_schedule_init_proc = .text:0x001C85D0; // type:function size:0x6C scope:local align:4
+aNPC_sleep_schedule_proc = .text:0x001C863C; // type:function size:0x34 scope:local align:4
+aNPC_actor_init_common_proc = .text:0x001C8670; // type:function size:0x74 scope:local align:4
+aNPC_actor_init_for_normal = .text:0x001C86E4; // type:function size:0x64 scope:local align:4
+aNPC_actor_init_for_special = .text:0x001C8748; // type:function size:0x134 scope:local align:4
+aNPC_actor_init = .text:0x001C887C; // type:function size:0x48 scope:local align:4
+aNPC_make_accessory = .text:0x001C88C4; // type:function size:0x94 scope:local align:4
+aNPC_setP_friendship = .text:0x001C8958; // type:function size:0x78 scope:local align:4
+aNPC_check_force_use_umbrella = .text:0x001C89D0; // type:function size:0x38 scope:global align:4
+aNPC_set_start_pos = .text:0x001C8A08; // type:function size:0x30 scope:local align:4
+aNPC_actor_schedule = .text:0x001C8A38; // type:function size:0xB4 scope:local align:4
+aNPC_actor_ct = .text:0x001C8AEC; // type:function size:0x56C scope:local align:4
+aNPC_actor_dt = .text:0x001C9058; // type:function size:0x11C scope:local align:4
+aNPC_actor_save_for_normal = .text:0x001C9174; // type:function size:0x120 scope:local align:4
+aNPC_actor_save_for_special = .text:0x001C9294; // type:function size:0x58 scope:local align:4
+aNPC_actor_save = .text:0x001C92EC; // type:function size:0x84 scope:local align:4
+aNPC_actor_birth_check = .text:0x001C9370; // type:function size:0x114 scope:local align:4
+aNPC_rebuild_dma = .text:0x001C9484; // type:function size:0x20 scope:local align:4
+aNPC_set_attention_request_proc = .text:0x001C94A4; // type:function size:0x48 scope:local align:4
+aNPC_get_draw_data_idx = .text:0x001C94EC; // type:function size:0xD8 scope:local align:4
+aNPC_check_dma_cloth_data = .text:0x001C95C4; // type:function size:0x98 scope:local align:4
+aNPC_check_dma_cloth_data_sub = .text:0x001C965C; // type:function size:0x50 scope:local align:4
+aNPC_check_dma_eventNpc_cloth_data = .text:0x001C96AC; // type:function size:0x70 scope:local align:4
+aNPC_check_dma_maskNpc_cloth_data = .text:0x001C971C; // type:function size:0x38 scope:local align:4
+aNPC_setupNpc_check = .text:0x001C9754; // type:function size:0x90 scope:local align:4
+aNPC_setupActor_sub = .text:0x001C97E4; // type:function size:0xB8 scope:local align:4
+aNPC_setupActor_proc = .text:0x001C989C; // type:function size:0x1FC scope:local align:4
+aNPC_get_overlay_free_area_idx = .text:0x001C9A98; // type:function size:0x38 scope:global align:4
+aNPC_get_overlay_area_proc_sub = .text:0x001C9AD0; // type:function size:0x6C scope:global align:4
+aNPC_get_overlay_area_proc = .text:0x001C9B3C; // type:function size:0x21C scope:global align:4
+aNPC_free_overlay_area_proc = .text:0x001C9D58; // type:function size:0xD0 scope:global align:4
+aNPC_get_actor_area_proc = .text:0x001C9E28; // type:function size:0x6C scope:global align:4
+aNPC_free_actor_area_proc = .text:0x001C9E94; // type:function size:0x48 scope:local align:4
+aNPC_dma_draw_data_proc = .text:0x001C9EDC; // type:function size:0x4C scope:local align:4
+aNPC_keep_actor_class = .text:0x001C9F28; // type:function size:0x58 scope:global align:4
+aNPC_free_actor_class = .text:0x001C9F80; // type:function size:0x3C scope:global align:4
+aNPC_keep_n_overlay_area = .text:0x001C9FBC; // type:function size:0x1C scope:global align:4
+aNPC_keep_s_overlay_area = .text:0x001C9FD8; // type:function size:0x38 scope:global align:4
+aNPC_keep_k_overlay_area = .text:0x001CA010; // type:function size:0x38 scope:global align:4
+aNPC_keep_e_overlay_area = .text:0x001CA048; // type:function size:0x38 scope:global align:4
+aNPC_free_overlay_area = .text:0x001CA080; // type:function size:0x2C scope:global align:4
+aNPC_actor_ct_c = .text:0x001CA0AC; // type:function size:0x3A8 scope:local align:4
+aNPC_actor_dt_c = .text:0x001CA454; // type:function size:0x88 scope:local align:4
+aNPC_check_cond_to_greeting = .text:0x001CA4DC; // type:function size:0x80 scope:local align:4
+aNPC_greeting_area_check = .text:0x001CA55C; // type:function size:0x140 scope:local align:4
+aNPC_set_attention = .text:0x001CA69C; // type:function size:0x68 scope:local align:4
+aNPC_force_reset_out_of_door_flg = .text:0x001CA704; // type:function size:0x58 scope:global align:4
+aNPC_reset_out_of_door_flg = .text:0x001CA75C; // type:function size:0x2C scope:global align:4
+aNPC_force_reset_umb_open_flg = .text:0x001CA788; // type:function size:0x54 scope:global align:4
+aNPC_reset_umb_open_flg = .text:0x001CA7DC; // type:function size:0x2C scope:global align:4
+aNPC_actor_move_c = .text:0x001CA808; // type:function size:0xBC scope:local align:4
+aNPC_set_talk_area_info = .text:0x001CA8C4; // type:function size:0xFC scope:global align:4
+aNPC_talk_area_check = .text:0x001CA9C0; // type:function size:0xD8 scope:global align:4
+aNPC_dma_cloth_data = .text:0x001CAA98; // type:function size:0xBC scope:local align:4
+aNPC_getP_cloth_tex_rom = .text:0x001CAB54; // type:function size:0x64 scope:local align:4
+aNPC_getP_cloth_pal_rom = .text:0x001CABB8; // type:function size:0x64 scope:local align:4
+aNPC_dma_cloth_tex_data_fg = .text:0x001CAC1C; // type:function size:0x44 scope:local align:4
+aNPC_dma_cloth_pal_data_fg = .text:0x001CAC60; // type:function size:0x44 scope:local align:4
+aNPC_dma_cloth_data_fg = .text:0x001CACA4; // type:function size:0xA8 scope:local align:4
+aNPC_reset_trans_condition_cloth_data = .text:0x001CAD4C; // type:function size:0x58 scope:local align:4
+aNPC_get_same_cloth_data_area = .text:0x001CADA4; // type:function size:0x38 scope:local align:4
+aNPC_dma_cloth_data_check = .text:0x001CADDC; // type:function size:0x8C scope:local align:4
+aNPC_get_new_cloth_data_area = .text:0x001CAE68; // type:function size:0x40 scope:local align:4
+aNPC_get_no_use_cloth_data_area = .text:0x001CAEA8; // type:function size:0x58 scope:local align:4
+aNPC_cancel_cloth_data = .text:0x001CAF00; // type:function size:0x38 scope:local align:4
+aNPC_dma_regist_cloth_data = .text:0x001CAF38; // type:function size:0xD4 scope:local align:4
+aNPC_dma_regist_check_cloth_data = .text:0x001CB00C; // type:function size:0x5C scope:local align:4
+aNPC_keep_cloth_data_area = .text:0x001CB068; // type:function size:0xEC scope:local align:4
+aNPC_rebuild_cloth_data = .text:0x001CB154; // type:function size:0x24 scope:local align:4
+aNPC_change_cloth_data = .text:0x001CB178; // type:function size:0xE8 scope:local align:4
+aNPC_setup_chg_cloth = .text:0x001CB260; // type:function size:0xC scope:local align:4
+aNPC_setup_next_cloth = .text:0x001CB26C; // type:function size:0xC scope:local align:4
+aNPC_setup_cloth = .text:0x001CB278; // type:function size:0x18 scope:local align:4
+aNPC_get_feel_info = .text:0x001CB290; // type:function size:0x28 scope:local align:4
+aNPC_clear_all_morph_counter = .text:0x001CB2B8; // type:function size:0x18 scope:local align:4
+aNPC_check_talk_anime = .text:0x001CB2D0; // type:function size:0xA4 scope:local align:4
+aNPC_set_anime_se_info = .text:0x001CB374; // type:function size:0xEC scope:local align:4
+aNPC_Animation_init = .text:0x001CB460; // type:function size:0x2F8 scope:local align:4
+aNPC_check_anime_timing = .text:0x001CB758; // type:function size:0xB4 scope:local align:4
+aNPC_anime_proc_foot = .text:0x001CB80C; // type:function size:0x148 scope:local align:4
+aNPC_anime_proc_other = .text:0x001CB954; // type:function size:0x4C scope:local align:4
+aNPC_anime_se_proc = .text:0x001CB9A0; // type:function size:0x88 scope:local align:4
+aNPC_anime_proc = .text:0x001CBA28; // type:function size:0xD4 scope:local align:4
+aNPC_check_kutipaku = .text:0x001CBAFC; // type:function size:0x90 scope:local align:4
+aNPC_getP_anmData = .text:0x001CBB8C; // type:function size:0x2C scope:local align:4
+aNPC_get_seq_cnt = .text:0x001CBBB8; // type:function size:0x20 scope:local align:4
+aNPC_set_tex_anime = .text:0x001CBBD8; // type:function size:0x100 scope:local align:4
+aNPC_tex_anm_ctrl_stop_seq = .text:0x001CBCD8; // type:function size:0x2C scope:local align:4
+aNPC_tex_anm_ctrl_set_pat = .text:0x001CBD04; // type:function size:0x74 scope:local align:4
+aNPC_tex_anm_ctrl_rnd_seq = .text:0x001CBD78; // type:function size:0x154 scope:local align:4
+aNPC_tex_anm_ctrl_talk_seq = .text:0x001CBECC; // type:function size:0x134 scope:local align:4
+aNPC_tex_anm_ctrl_fix_seq = .text:0x001CC000; // type:function size:0x18 scope:local align:4
+aNPC_tex_anm_ctrl = .text:0x001CC018; // type:function size:0x17C scope:local align:4
+aNPC_set_frame_sub_speed = .text:0x001CC194; // type:function size:0x3C scope:local align:4
+aNPC_set_anime_speed = .text:0x001CC1D0; // type:function size:0x2C scope:local align:4
+aNPC_OngenTrgStart = .text:0x001CC1FC; // type:function size:0x2C scope:local align:4
+aNPC_WalkSeRoom = .text:0x001CC228; // type:function size:0x80 scope:global align:4
+aNPC_putaway_right_item = .text:0x001CC2A8; // type:function size:0x9C scope:local align:4
+aNPC_takeout_right_item = .text:0x001CC344; // type:function size:0x13C scope:local align:4
+aNPC_chk_right_hand = .text:0x001CC480; // type:function size:0x98 scope:local align:4
+aNPC_clear_left_hand_info = .text:0x001CC518; // type:function size:0x1C scope:local align:4
+aNPC_chk_left_hand = .text:0x001CC534; // type:function size:0xEC scope:local align:4
+aNPC_check_look_range = .text:0x001CC620; // type:function size:0x80 scope:local align:4
+aNPC_check_look_player = .text:0x001CC6A0; // type:function size:0x80 scope:local align:4
+aNPC_check_attention = .text:0x001CC720; // type:function size:0xE8 scope:local align:4
+aNPC_look_target = .text:0x001CC808; // type:function size:0xF0 scope:local align:4
+aNPC_check_condition_search_eye = .text:0x001CC8F8; // type:function size:0x2C scope:local align:4
+aNPC_search_eye_target_sub = .text:0x001CC924; // type:function size:0xC4 scope:local align:4
+aNPC_search_eye_target = .text:0x001CC9E8; // type:function size:0x104 scope:local align:4
+aNPC_set_head_request_sub = .text:0x001CCAEC; // type:function size:0x4C scope:local align:4
+aNPC_set_head_request = .text:0x001CCB38; // type:function size:0x74 scope:local align:4
+aNPC_force_call_req_proc = .text:0x001CCBAC; // type:function size:0x8C scope:local align:4
+aNPC_check_manpu_demoCode = .text:0x001CCC38; // type:function size:0x138 scope:local align:4
+aNPC_clear_timing_demoCode = .text:0x001CCD70; // type:function size:0x78 scope:local align:4
+aNPC_check_timing_demoCode = .text:0x001CCDE8; // type:function size:0x258 scope:local align:4
+aNPC_check_feel_demoCode = .text:0x001CD040; // type:function size:0xF4 scope:local align:4
+aNPC_setup_talk_start = .text:0x001CD134; // type:function size:0x80 scope:local align:4
+aNPC_setup_talk_end = .text:0x001CD1B4; // type:function size:0x58 scope:local align:4
+aNPC_set_talk_info_talk_request_check = .text:0x001CD20C; // type:function size:0xA8 scope:local align:4
+aNPC_talk_request_event_npc = .text:0x001CD2B4; // type:function size:0xD4 scope:local align:4
+aNPC_normal_talk_request = .text:0x001CD388; // type:function size:0x80 scope:local align:4
+aNPC_set_talk_info_force_call = .text:0x001CD408; // type:function size:0x50 scope:local align:4
+aNPC_force_talk_request = .text:0x001CD458; // type:function size:0xF0 scope:local align:4
+aNPC_talk_request_normal_npc = .text:0x001CD548; // type:function size:0xE0 scope:local align:4
+aNPC_talk_request_check = .text:0x001CD628; // type:function size:0xA8 scope:local align:4
+aNPC_get_rev_val = .text:0x001CD6D0; // type:function size:0x4C scope:global align:4
+aNPC_BGcheck = .text:0x001CD71C; // type:function size:0x13C scope:local align:4
+aNPC_set_over_friendship = .text:0x001CD858; // type:function size:0xA0 scope:local align:4
+aNPC_set_mv_angl = .text:0x001CD8F8; // type:function size:0x48 scope:local align:4
+aNPC_set_avoid_pos = .text:0x001CD940; // type:function size:0x28 scope:local align:4
+aNPC_set_dst_pos = .text:0x001CD968; // type:function size:0x30 scope:local align:4
+aNPC_check_feel_tim = .text:0x001CD998; // type:function size:0x44 scope:local align:4
+aNPC_calc_force_call_timer = .text:0x001CD9DC; // type:function size:0x48 scope:local align:4
+aNPC_calc_timer = .text:0x001CDA24; // type:function size:0x20 scope:local align:4
+aNPC_position_move = .text:0x001CDA44; // type:function size:0x64 scope:local align:4
+aNPC_angle_calc = .text:0x001CDAA8; // type:function size:0x40 scope:local align:4
+aNPC_set_body_angle = .text:0x001CDAE8; // type:function size:0x6C scope:local align:4
+aNPC_calc_fatigue = .text:0x001CDB54; // type:function size:0x3C scope:local align:4
+aNPC_setupAction = .text:0x001CDB90; // type:function size:0x98 scope:local align:4
+aNPC_actor_move_hide = .text:0x001CDC28; // type:function size:0x4C scope:local align:4
+aNPC_actor_move_show_before = .text:0x001CDC74; // type:function size:0x48 scope:local align:4
+aNPC_actor_move_show_after = .text:0x001CDCBC; // type:function size:0x84 scope:local align:4
+aNPC_actor_move_show = .text:0x001CDD40; // type:function size:0x84 scope:local align:4
+aNPC_actor_move = .text:0x001CDDC4; // type:function size:0x50 scope:local align:4
+aNPC_check_mask_cat_type = .text:0x001CDE14; // type:function size:0x58 scope:local align:4
+aNPC_set_shadow_pos = .text:0x001CDE6C; // type:function size:0x78 scope:local align:4
+aNPC_set_chn_base = .text:0x001CDEE4; // type:function size:0xCC scope:local align:4
+aNPC_set_head_angl = .text:0x001CDFB0; // type:function size:0x6C scope:local align:4
+aNPC_actor_draw_before = .text:0x001CE01C; // type:function size:0x44 scope:local align:4
+aNPC_set_right_hand_item = .text:0x001CE060; // type:function size:0x9C scope:local align:4
+aNPC_set_left_hand_item = .text:0x001CE0FC; // type:function size:0x88 scope:local align:4
+aNPC_set_foot_eff = .text:0x001CE184; // type:function size:0x38 scope:local align:4
+aNPC_set_feel_eff = .text:0x001CE1BC; // type:function size:0x34 scope:local align:4
+aNPC_set_accessory_mtx = .text:0x001CE1F0; // type:function size:0x94 scope:local align:4
+aNPC_actor_draw_after = .text:0x001CE284; // type:function size:0x60 scope:local align:4
+aNPC_actor_draw_sub = .text:0x001CE2E4; // type:function size:0x30C scope:local align:4
+aNPC_actor_draw = .text:0x001CE5F0; // type:function size:0x40 scope:local align:4
+aNPC_set_eff = .text:0x001CE630; // type:function size:0x9C scope:local align:4
+aNPC_set_feel_effect = .text:0x001CE6CC; // type:function size:0x184 scope:local align:4
+aNPC_set_other_effect = .text:0x001CE850; // type:function size:0x84 scope:local align:4
+aNPC_set_be_out_home = .text:0x001CE8D4; // type:function size:0x3C scope:global align:4
+aNPC_check_arrive_destination = .text:0x001CE910; // type:function size:0x40 scope:local align:4
+aNPC_trace_route = .text:0x001CE950; // type:function size:0x128 scope:global align:4
+aNPC_set_feel_info = .text:0x001CEA78; // type:function size:0x5C scope:local align:4
+aNPC_set_act_obj = .text:0x001CEAD4; // type:function size:0x80 scope:local align:4
+aNPC_check_live_target = .text:0x001CEB54; // type:function size:0x30 scope:local align:4
+aNPC_act_wait = .text:0x001CEB84; // type:function size:0x40 scope:local align:4
+aNPC_act_move = .text:0x001CEBC4; // type:function size:0x50 scope:local align:4
+aNPC_act_search_move = .text:0x001CEC14; // type:function size:0xC0 scope:local align:4
+aNPC_act_avoid_move = .text:0x001CECD4; // type:function size:0x6C scope:local align:4
+aNPC_act_demo_move = .text:0x001CED40; // type:function size:0x8C scope:global align:4
+aNPC_act_to_point_move = .text:0x001CEDCC; // type:function size:0xFC scope:local align:4
+aNPC_act_turn = .text:0x001CEEC8; // type:function size:0x20 scope:local align:4
+aNPC_act_search_turn = .text:0x001CEEE8; // type:function size:0x78 scope:local align:4
+aNPC_act_to_point_turn = .text:0x001CEF60; // type:function size:0x90 scope:local align:4
+aNPC_act_anm_seq = .text:0x001CEFF0; // type:function size:0x18 scope:local align:4
+aNPC_act_anm_seq_allways_proc = .text:0x001CF008; // type:function size:0x3C scope:global align:4
+aNPC_act_return_trans_item = .text:0x001CF044; // type:function size:0x78 scope:local align:4
+aNPC_act_special_proc = .text:0x001CF0BC; // type:function size:0x28 scope:local align:4
+aNPC_chk_request_act = .text:0x001CF0E4; // type:function size:0xFC scope:local align:4
+aNPC_set_request_act = .text:0x001CF1E0; // type:function size:0x5C scope:local align:4
+aNPC_action_proc = .text:0x001CF23C; // type:function size:0x88 scope:local align:4
+aNPC_act_wait_main_proc = .text:0x001CF2C4; // type:function size:0x78 scope:local align:4
+aNPC_act_wait_chg_data_proc = .text:0x001CF33C; // type:function size:0x54 scope:local align:4
+aNPC_act_wait_init_proc = .text:0x001CF390; // type:function size:0x58 scope:local align:4
+aNPC_act_wait_proc = .text:0x001CF3E8; // type:function size:0x34 scope:local align:4
+aNPC_act_walk_setupAction = .text:0x001CF41C; // type:function size:0x54 scope:local align:4
+aNPC_act_walk_main_proc = .text:0x001CF470; // type:function size:0x90 scope:local align:4
+aNPC_act_walk_chg_data_proc = .text:0x001CF500; // type:function size:0x58 scope:local align:4
+aNPC_act_walk_init_proc = .text:0x001CF558; // type:function size:0x4C scope:local align:4
+aNPC_act_walk_proc = .text:0x001CF5A4; // type:function size:0x34 scope:local align:4
+aNPC_act_turn_main_proc = .text:0x001CF5D8; // type:function size:0x54 scope:local align:4
+aNPC_act_turn_chg_data_proc = .text:0x001CF62C; // type:function size:0x64 scope:local align:4
+aNPC_act_turn_init_proc = .text:0x001CF690; // type:function size:0xDC scope:local align:4
+aNPC_act_turn_proc = .text:0x001CF76C; // type:function size:0x34 scope:local align:4
+aNPC_Init_OrderValue = .text:0x001CF7A0; // type:function size:0x5C scope:local align:4
+aNPC_talk_demo_proc = .text:0x001CF7FC; // type:function size:0x3C scope:local align:4
+aNPC_talk_end_check = .text:0x001CF838; // type:function size:0x84 scope:local align:4
+aNPC_act_talk_chg_step = .text:0x001CF8BC; // type:function size:0x4C scope:local align:4
+aNPC_act_talk_turn = .text:0x001CF908; // type:function size:0x40 scope:local align:4
+aNPC_act_talk_wait = .text:0x001CF948; // type:function size:0xE0 scope:local align:4
+aNPC_act_talk = .text:0x001CFA28; // type:function size:0x58 scope:local align:4
+aNPC_act_talk_main_proc = .text:0x001CFA80; // type:function size:0x38 scope:local align:4
+aNPC_act_talk_init_proc = .text:0x001CFAB8; // type:function size:0x90 scope:local align:4
+aNPC_act_talk_proc = .text:0x001CFB48; // type:function size:0x34 scope:local align:4
+aNPC_act_takeout_init_proc = .text:0x001CFB7C; // type:function size:0x2C scope:global align:4
+aNPC_act_takeout_proc = .text:0x001CFBA8; // type:function size:0x34 scope:global align:4
+aNPC_act_putaway_main_proc = .text:0x001CFBDC; // type:function size:0x80 scope:global align:4
+aNPC_act_putaway_init_proc = .text:0x001CFC5C; // type:function size:0x30 scope:global align:4
+aNPC_act_putaway_proc = .text:0x001CFC8C; // type:function size:0x34 scope:global align:4
+aNPC_act_trans_chg_step = .text:0x001CFCC0; // type:function size:0xDC scope:local align:4
+aNPC_act_trans_set_arg_data = .text:0x001CFD9C; // type:function size:0x24 scope:local align:4
+aNPC_act_trans_move = .text:0x001CFDC0; // type:function size:0x78 scope:local align:4
+aNPC_act_trans = .text:0x001CFE38; // type:function size:0x6C scope:local align:4
+aNPC_act_trans_wait = .text:0x001CFEA4; // type:function size:0x58 scope:local align:4
+aNPC_act_trans_send_mail = .text:0x001CFEFC; // type:function size:0x74 scope:local align:4
+aNPC_act_trans_main_proc = .text:0x001CFF70; // type:function size:0x88 scope:local align:4
+aNPC_act_trans_chg_data_proc = .text:0x001CFFF8; // type:function size:0xC scope:local align:4
+aNPC_act_trans_init_proc = .text:0x001D0004; // type:function size:0x84 scope:local align:4
+aNPC_act_trans_proc = .text:0x001D0088; // type:function size:0x34 scope:local align:4
+aNPC_act_get_chg_step = .text:0x001D00BC; // type:function size:0x180 scope:local align:4
+aNPC_act_get_move = .text:0x001D023C; // type:function size:0x70 scope:local align:4
+aNPC_act_get = .text:0x001D02AC; // type:function size:0x94 scope:local align:4
+aNPC_act_get_pull = .text:0x001D0340; // type:function size:0x7C scope:local align:4
+aNPC_act_get_pull_wait = .text:0x001D03BC; // type:function size:0x10C scope:local align:4
+aNPC_act_get_putaway = .text:0x001D04C8; // type:function size:0x40 scope:local align:4
+aNPC_act_get_chg_cloth = .text:0x001D0508; // type:function size:0xCC scope:local align:4
+aNPC_act_get_return = .text:0x001D05D4; // type:function size:0x74 scope:local align:4
+aNPC_act_estimate = .text:0x001D0648; // type:function size:0x60 scope:local align:4
+aNPC_act_get_main_proc = .text:0x001D06A8; // type:function size:0x88 scope:local align:4
+aNPC_act_get_chg_data_proc = .text:0x001D0730; // type:function size:0xC scope:local align:4
+aNPC_act_get_init_proc = .text:0x001D073C; // type:function size:0x80 scope:local align:4
+aNPC_act_get_proc = .text:0x001D07BC; // type:function size:0x34 scope:local align:4
+aNPC_act_contract_chg_step = .text:0x001D07F0; // type:function size:0x34 scope:global align:4
+aNPC_act_contract_return_contract = .text:0x001D0824; // type:function size:0x90 scope:global align:4
+aNPC_act_contract1 = .text:0x001D08B4; // type:function size:0xAC scope:global align:4
+aNPC_act_contract2 = .text:0x001D0960; // type:function size:0x90 scope:global align:4
+aNPC_act_contract3 = .text:0x001D09F0; // type:function size:0x40 scope:global align:4
+aNPC_act_contract_main_proc = .text:0x001D0A30; // type:function size:0x80 scope:global align:4
+aNPC_act_contract_chg_data_proc = .text:0x001D0AB0; // type:function size:0xC scope:global align:4
+aNPC_act_contract_init_proc = .text:0x001D0ABC; // type:function size:0x2C scope:global align:4
+aNPC_act_contract_proc = .text:0x001D0AE8; // type:function size:0x34 scope:global align:4
+aNPC_act_not_contract_chg_step = .text:0x001D0B1C; // type:function size:0x34 scope:global align:4
+aNPC_act_not_contract1 = .text:0x001D0B50; // type:function size:0x90 scope:global align:4
+aNPC_act_not_contract_main_proc = .text:0x001D0BE0; // type:function size:0x80 scope:global align:4
+aNPC_act_not_contract_chg_data_proc = .text:0x001D0C60; // type:function size:0xC scope:global align:4
+aNPC_act_not_contract_init_proc = .text:0x001D0C6C; // type:function size:0x5C scope:global align:4
+aNPC_act_not_contract_proc = .text:0x001D0CC8; // type:function size:0x34 scope:global align:4
+aNPC_act_ensou_main_proc = .text:0x001D0CFC; // type:function size:0x14 scope:local align:4
+aNPC_act_ensou_init_proc = .text:0x001D0D10; // type:function size:0x34 scope:local align:4
+aNPC_act_ensou_proc = .text:0x001D0D44; // type:function size:0x34 scope:local align:4
+aNPC_chg_entrance_fg = .text:0x001D0D78; // type:function size:0x3C scope:global align:4
+aNPC_check_uzai_cross = .text:0x001D0DB4; // type:function size:0xB4 scope:local align:4
+aNPC_check_uzai = .text:0x001D0E68; // type:function size:0x1B4 scope:local align:4
+aNPC_chk_talk_start = .text:0x001D101C; // type:function size:0x90 scope:local align:4
+aNPC_check_fatigue = .text:0x001D10AC; // type:function size:0x54 scope:local align:4
+aNPC_think_turn_this_unit = .text:0x001D1100; // type:function size:0x170 scope:global align:4
+aNPC_decide_turn_this_unit = .text:0x001D1270; // type:function size:0x60 scope:global align:4
+aNPC_forward_search_turn_point = .text:0x001D12D0; // type:function size:0x2C8 scope:global align:4
+aNPC_back_search_turn_point = .text:0x001D1598; // type:function size:0x1D4 scope:global align:4
+aNPC_copy_route = .text:0x001D176C; // type:function size:0xC8 scope:global align:4
+aNPC_route_check = .text:0x001D1834; // type:function size:0x360 scope:global align:4
+aNPC_turn_to_another_route = .text:0x001D1B94; // type:function size:0xB0 scope:global align:4
+aNPC_avoid_obstacle = .text:0x001D1C44; // type:function size:0x90 scope:local align:4
+aNPC_hate_player = .text:0x001D1CD4; // type:function size:0x1F0 scope:local align:4
+aNPC_love_player = .text:0x001D1EC4; // type:function size:0x1F0 scope:local align:4
+aNPC_chk_friendship_lv = .text:0x001D20B4; // type:function size:0x58 scope:local align:4
+aNPC_chk_friendship_sub = .text:0x001D210C; // type:function size:0x80 scope:local align:4
+aNPC_chk_friendship = .text:0x001D218C; // type:function size:0x78 scope:local align:4
+aNPC_think_chk_interrupt_proc = .text:0x001D2204; // type:function size:0x100 scope:local align:4
+aNPC_think_wait_init_proc = .text:0x001D2304; // type:function size:0x34 scope:local align:4
+aNPC_think_wait_proc = .text:0x001D2338; // type:function size:0x28 scope:local align:4
+aNPC_think_hide_main_proc = .text:0x001D2360; // type:function size:0x64 scope:global align:4
+aNPC_think_hide_proc = .text:0x001D23C4; // type:function size:0x34 scope:global align:4
+aNPC_think_special_proc = .text:0x001D23F8; // type:function size:0x28 scope:local align:4
+aNPC_think_init_proc = .text:0x001D2420; // type:function size:0x5C scope:local align:4
+aNPC_think_main_proc = .text:0x001D247C; // type:function size:0x3C scope:local align:4
+aNPC_think_proc = .text:0x001D24B8; // type:function size:0x68 scope:local align:4
+aNPC_think_wander_decide_next = .text:0x001D2520; // type:function size:0x1BC scope:local align:4
+aNPC_think_wander_next_act = .text:0x001D26DC; // type:function size:0x2C scope:local align:4
+aNPC_think_wander_main_proc = .text:0x001D2708; // type:function size:0x4C scope:local align:4
+aNPC_think_wander_init_proc = .text:0x001D2754; // type:function size:0x40 scope:local align:4
+aNPC_think_wander_proc = .text:0x001D2794; // type:function size:0x34 scope:local align:4
+aNPC_think_out_of_room_route_check = .text:0x001D27C8; // type:function size:0xD0 scope:global align:4
+aNPC_think_out_of_room_chk_interrupt = .text:0x001D2898; // type:function size:0xAC scope:global align:4
+aNPC_think_out_of_room_main_proc = .text:0x001D2944; // type:function size:0xB0 scope:global align:4
+aNPC_think_out_of_room_init_proc = .text:0x001D29F4; // type:function size:0x50 scope:global align:4
+aNPC_think_out_of_room_proc = .text:0x001D2A44; // type:function size:0x34 scope:global align:4
+aNPC_think_exit_wait_decide_next_act_idx = .text:0x001D2A78; // type:function size:0xBC scope:global align:4
+aNPC_think_exit_wait_setup_exit_info = .text:0x001D2B34; // type:function size:0x68 scope:global align:4
+aNPC_think_exit_wait_chk_interrupt = .text:0x001D2B9C; // type:function size:0x78 scope:global align:4
+aNPC_think_exit_wait_main_proc = .text:0x001D2C14; // type:function size:0x8C scope:global align:4
+aNPC_think_exit_wait_init_proc = .text:0x001D2CA0; // type:function size:0x64 scope:global align:4
+aNPC_think_exit_wait_proc = .text:0x001D2D04; // type:function size:0x34 scope:global align:4
+aNPC_think_into_room_main_proc = .text:0x001D2D38; // type:function size:0x4C scope:global align:4
+aNPC_think_into_room_init_proc = .text:0x001D2D84; // type:function size:0xDC scope:global align:4
+aNPC_think_into_room_proc = .text:0x001D2E60; // type:function size:0x34 scope:global align:4
+aNPC_set_hide_request = .text:0x001D2E94; // type:function size:0x50 scope:local align:4
+aNPC_set_hide_flg = .text:0x001D2EE4; // type:function size:0x44 scope:local align:4
+aNPC_sleep_schedule_main_proc = .text:0x001D2F28; // type:function size:0x34 scope:local align:4
+aNPC_sleep_schedule_init_proc = .text:0x001D2F5C; // type:function size:0x4C scope:local align:4
+aNPC_sleep_schedule_proc = .text:0x001D2FA8; // type:function size:0x34 scope:local align:4
+aNPC_stand_schedule_main_proc = .text:0x001D2FDC; // type:function size:0x78 scope:local align:4
+aNPC_stand_schedule_init_proc = .text:0x001D3054; // type:function size:0x4C scope:local align:4
+aNPC_stand_schedule_proc = .text:0x001D30A0; // type:function size:0x34 scope:local align:4
+aNPC_wander_schedule_main_proc = .text:0x001D30D4; // type:function size:0x20 scope:local align:4
+aNPC_wander_schedule_init_proc = .text:0x001D30F4; // type:function size:0x4C scope:local align:4
+aNPC_wander_schedule_proc = .text:0x001D3140; // type:function size:0x34 scope:local align:4
+aNPC_special_schedule_proc = .text:0x001D3174; // type:function size:0x28 scope:local align:4
+aNPC_schedule_init = .text:0x001D319C; // type:function size:0x3C scope:local align:4
+aNPC_chg_schedule = .text:0x001D31D8; // type:function size:0x24 scope:local align:4
+aNPC_set_schedule = .text:0x001D31FC; // type:function size:0x28 scope:local align:4
+aNPC_schedule_proc = .text:0x001D3224; // type:function size:0x44 scope:local align:4
+aNPC_first_set_schedule = .text:0x001D3268; // type:function size:0x58 scope:local align:4
+aNPC_field_schedule_think_init = .text:0x001D32C0; // type:function size:0x34 scope:local align:4
+aNPC_field_schedule_main_proc = .text:0x001D32F4; // type:function size:0xAC scope:local align:4
+aNPC_field_schedule_init_proc = .text:0x001D33A0; // type:function size:0x7C scope:local align:4
+aNPC_field_schedule_proc = .text:0x001D341C; // type:function size:0x34 scope:local align:4
+aNPC_in_house_schedule_think_init = .text:0x001D3450; // type:function size:0x34 scope:local align:4
+aNPC_in_house_schedule_main_proc = .text:0x001D3484; // type:function size:0x98 scope:local align:4
+aNPC_in_house_schedule_init_proc = .text:0x001D351C; // type:function size:0x8C scope:local align:4
+aNPC_in_house_schedule_proc = .text:0x001D35A8; // type:function size:0x34 scope:local align:4
+aNPC_actor_init_common_proc = .text:0x001D35DC; // type:function size:0x74 scope:local align:4
+aNPC_actor_init_for_normal = .text:0x001D3650; // type:function size:0x64 scope:local align:4
+aNPC_actor_init_for_special = .text:0x001D36B4; // type:function size:0x134 scope:local align:4
+aNPC_actor_init = .text:0x001D37E8; // type:function size:0x48 scope:local align:4
+aNPC_make_accessory = .text:0x001D3830; // type:function size:0x94 scope:local align:4
+aNPC_setP_friendship = .text:0x001D38C4; // type:function size:0x78 scope:local align:4
+aNPC_set_start_pos_sub = .text:0x001D393C; // type:function size:0x120 scope:global align:4
+aNPC_set_start_pos = .text:0x001D3A5C; // type:function size:0x154 scope:local align:4
+aNPC_actor_schedule = .text:0x001D3BB0; // type:function size:0xB4 scope:local align:4
+aNPC_actor_ct = .text:0x001D3C64; // type:function size:0x4F0 scope:local align:4
+aNPC_actor_dt = .text:0x001D4154; // type:function size:0xFC scope:local align:4
+aNPC_actor_save_for_normal = .text:0x001D4250; // type:function size:0xC0 scope:local align:4
+aNPC_actor_save_for_special = .text:0x001D4310; // type:function size:0x58 scope:local align:4
+aNPC_actor_save = .text:0x001D4368; // type:function size:0x60 scope:local align:4
+aNPC_actor_birth_check = .text:0x001D43C8; // type:function size:0x114 scope:local align:4
+aNPC_rebuild_dma = .text:0x001D44DC; // type:function size:0x20 scope:local align:4
+aNPC_set_safe_ut = .text:0x001D44FC; // type:function size:0xA4 scope:global align:4
+aNPC_make_unitInfo_sub = .text:0x001D45A0; // type:function size:0xA4 scope:global align:4
+aNPC_make_unitInfo = .text:0x001D4644; // type:function size:0xE8 scope:global align:4
+aNPC_set_attention_request_proc = .text:0x001D472C; // type:function size:0x48 scope:local align:4
+aNPC_get_draw_data_idx = .text:0x001D4774; // type:function size:0xD8 scope:local align:4
+aNPC_check_dma_cloth_data = .text:0x001D484C; // type:function size:0x98 scope:local align:4
+aNPC_check_dma_cloth_data_sub = .text:0x001D48E4; // type:function size:0x50 scope:local align:4
+aNPC_check_dma_eventNpc_cloth_data = .text:0x001D4934; // type:function size:0x70 scope:local align:4
+aNPC_check_dma_maskNpc_cloth_data = .text:0x001D49A4; // type:function size:0x38 scope:local align:4
+aNPC_setupNpc_check = .text:0x001D49DC; // type:function size:0x90 scope:local align:4
+aNPC_setupActor_sub = .text:0x001D4A6C; // type:function size:0xB8 scope:local align:4
+aNPC_setupActor_proc = .text:0x001D4B24; // type:function size:0x1FC scope:local align:4
+aNPC_free_actor_area_proc = .text:0x001D4D20; // type:function size:0x20 scope:local align:4
+aNPC_dma_draw_data_proc = .text:0x001D4D40; // type:function size:0x4C scope:local align:4
+aNPC_actor_ct_c = .text:0x001D4D8C; // type:function size:0x384 scope:local align:4
+aNPC_actor_dt_c = .text:0x001D5110; // type:function size:0x24 scope:local align:4
+aNPC_check_cond_to_greeting = .text:0x001D5134; // type:function size:0x80 scope:local align:4
+aNPC_greeting_area_check = .text:0x001D51B4; // type:function size:0x140 scope:local align:4
+aNPC_set_attention = .text:0x001D52F4; // type:function size:0x68 scope:local align:4
+aNPC_actor_move_c = .text:0x001D535C; // type:function size:0x9C scope:local align:4
+aNCM_actor_ct = .text:0x001D53F8; // type:function size:0xB4 scope:global align:4
+aNCM_actor_save = .text:0x001D54AC; // type:function size:0x38 scope:global align:4
+aNCM_actor_dt = .text:0x001D54E4; // type:function size:0x38 scope:global align:4
+aNCM_actor_init = .text:0x001D551C; // type:function size:0x38 scope:global align:4
+aNCM_actor_draw = .text:0x001D5554; // type:function size:0x38 scope:global align:4
+aNCM_get_zone_sub = .text:0x001D558C; // type:function size:0x44 scope:global align:4
+aNCM_get_zone = .text:0x001D55D0; // type:function size:0x80 scope:global align:4
+aNCM_get_next_zone = .text:0x001D5650; // type:function size:0x20 scope:global align:4
+aNCM_search_player = .text:0x001D5670; // type:function size:0x90 scope:global align:4
+aNCM_search_player2 = .text:0x001D5700; // type:function size:0xDC scope:global align:4
+aNCM_check_safe_zone = .text:0x001D57DC; // type:function size:0x34 scope:global align:4
+aNCM_actor_move = .text:0x001D5810; // type:function size:0xC4 scope:global align:4
+aNSC_set_animation = .text:0x001D58D4; // type:function size:0x50 scope:local align:4
+aNSC_BGcheck = .text:0x001D5924; // type:function size:0x44 scope:local align:4
+aNSC_check_present_balloon = .text:0x001D5968; // type:function size:0x6C scope:local align:4
+aNSC_calc_talk_start_tim = .text:0x001D59D4; // type:function size:0x28 scope:local align:4
+aNSC_request_show_camera = .text:0x001D59FC; // type:function size:0x74 scope:local align:4
+aNSC_Set_ListenAble = .text:0x001D5A70; // type:function size:0x24 scope:local align:4
+aNSC_set_sell_camera = .text:0x001D5A94; // type:function size:0x94 scope:local align:4
+aNSC_sell_camera = .text:0x001D5B28; // type:function size:0xA0 scope:local align:4
+aNSC_talk_demo_proc = .text:0x001D5BC8; // type:function size:0x70 scope:local align:4
+aNSC_set_stop_spd = .text:0x001D5C38; // type:function size:0x1C scope:local align:4
+aNSC_set_walk_spd = .text:0x001D5C54; // type:function size:0x2C scope:local align:4
+aNSC_set_run_spd = .text:0x001D5C80; // type:function size:0x2C scope:local align:4
+aNSC_set_rehouse_order_date = .text:0x001D5CAC; // type:function size:0x28 scope:local align:4
+aNSC_set_make_basement_info = .text:0x001D5CD4; // type:function size:0x5C scope:local align:4
+aNSC_getP_free_ftr_order = .text:0x001D5D30; // type:function size:0x38 scope:local align:4
+aNSC_set_ftr_order = .text:0x001D5D68; // type:function size:0x4C scope:local align:4
+aNSC_set_last_day_str = .text:0x001D5DB4; // type:function size:0x54 scope:local align:4
+aNSC_set_pw_name_str = .text:0x001D5E08; // type:function size:0x5C scope:local align:4
+aNSC_set_value_str = .text:0x001D5E64; // type:function size:0x5C scope:local align:4
+aNSC_set_item_name_str = .text:0x001D5EC0; // type:function size:0x64 scope:local align:4
+aNSC_set_item_str = .text:0x001D5F24; // type:function size:0x58 scope:local align:4
+aNSC_set_pw_password_str = .text:0x001D5F7C; // type:function size:0x60 scope:local align:4
+aNSC_set_pw_info_str = .text:0x001D5FDC; // type:function size:0x68 scope:local align:4
+aNSC_pc_check_password_famicom = .text:0x001D6044; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password_npc = .text:0x001D608C; // type:function size:0x6C scope:local align:4
+aNSC_pc_check_password_card_e = .text:0x001D60F8; // type:function size:0x8 scope:local align:4
+aNSC_pc_check_password_magazine = .text:0x001D6100; // type:function size:0x74 scope:local align:4
+aNSC_pc_check_password_card_e_mini = .text:0x001D6174; // type:function size:0x18 scope:local align:4
+aNSC_pc_check_password_user = .text:0x001D618C; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password = .text:0x001D61D4; // type:function size:0xC4 scope:local align:4
+aNSC_check_possession_item_make_password = .text:0x001D6298; // type:function size:0xAC scope:local align:4
+aNSC_set_buy_sum_str = .text:0x001D6344; // type:function size:0xD4 scope:local align:4
+aNSC_decide_next_move_act = .text:0x001D6418; // type:function size:0x110 scope:local align:4
+aNSC_set_zone_data = .text:0x001D6528; // type:function size:0x84 scope:local align:4
+aNSC_set_player_angl = .text:0x001D65AC; // type:function size:0xC scope:local align:4
+aNSC_money_check = .text:0x001D65B8; // type:function size:0x20 scope:local align:4
+aNSC_get_sell_price = .text:0x001D65D8; // type:function size:0x20 scope:local align:4
+aNSC_check_money_overflow = .text:0x001D65F8; // type:function size:0x94 scope:local align:4
+aNSC_check_buy_item_sub = .text:0x001D668C; // type:function size:0xA4 scope:local align:4
+aNSC_check_buy_paper = .text:0x001D6730; // type:function size:0xF0 scope:local align:4
+aNSC_check_buy_item_single = .text:0x001D6820; // type:function size:0x118 scope:local align:4
+aNSC_check_buy_item_plural = .text:0x001D6938; // type:function size:0x8C scope:local align:4
+aNSC_check_buy_item = .text:0x001D69C4; // type:function size:0x34 scope:local align:4
+aNSC_check_item_with_ticket = .text:0x001D69F8; // type:function size:0x80 scope:local align:4
+aNSC_setup_ticket_remain = .text:0x001D6A78; // type:function size:0x48 scope:local align:4
+aNSC_check_same_month_ticket = .text:0x001D6AC0; // type:function size:0x64 scope:local align:4
+aNSC_get_msg_no = .text:0x001D6B24; // type:function size:0x48 scope:local align:4
+aNSC_Set_continue_msg_num = .text:0x001D6B6C; // type:function size:0x40 scope:local align:4
+aNSC_ChangeMsgData = .text:0x001D6BAC; // type:function size:0x40 scope:local align:4
+aNSC_set_player_angle = .text:0x001D6BEC; // type:function size:0x108 scope:local align:4
+aNSC_set_talk_info_show_item = .text:0x001D6CF4; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_show_cloth = .text:0x001D6D2C; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_sell_item = .text:0x001D6D64; // type:function size:0xC0 scope:local align:4
+aNSC_set_talk_info_message_ctrl = .text:0x001D6E24; // type:function size:0x28 scope:local align:4
+aNSC_set_talk_info_message_ctrl_aprilfool = .text:0x001D6E4C; // type:function size:0x48 scope:local align:4
+aNSC_set_talk_info_message_ctrl_tokubai = .text:0x001D6E94; // type:function size:0x28 scope:local align:4
+aNSC_message_ctrl = .text:0x001D6EBC; // type:function size:0x3E0 scope:local align:4
+aNSC_buy_item_single = .text:0x001D729C; // type:function size:0xF0 scope:local align:4
+aNSC_buy_paper = .text:0x001D738C; // type:function size:0x110 scope:local align:4
+aNSC_buy_item_only_one = .text:0x001D749C; // type:function size:0x210 scope:local align:4
+aNSC_get_start_call_msg_no = .text:0x001D76AC; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait = .text:0x001D76E8; // type:function size:0x1F4 scope:local align:4
+aNSC_set_talk_info_start_wait1 = .text:0x001D78DC; // type:function size:0xE0 scope:local align:4
+aNSC_set_talk_info_start_wait2 = .text:0x001D79BC; // type:function size:0x4C scope:local align:4
+aNSC_set_talk_info_start_wait3 = .text:0x001D7A08; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait4 = .text:0x001D7A44; // type:function size:0x28 scope:local align:4
+aNSC_start_wait = .text:0x001D7A6C; // type:function size:0x2B4 scope:local align:4
+aNSC_say_hello_approach = .text:0x001D7D20; // type:function size:0x90 scope:local align:4
+aNSC_say_hello_end_wait = .text:0x001D7DB0; // type:function size:0x74 scope:local align:4
+aNSC_check_col_chg_or_make_basement = .text:0x001D7E24; // type:function size:0xCC scope:local align:4
+aNSC_check_roof_col_order = .text:0x001D7EF0; // type:function size:0x138 scope:local align:4
+aNSC_check_roof_col_order2 = .text:0x001D8028; // type:function size:0xF4 scope:local align:4
+aNSC_present_balloon_start_wait = .text:0x001D811C; // type:function size:0x5C scope:local align:4
+aNSC_present_balloon_trans_move = .text:0x001D8178; // type:function size:0x3C scope:local align:4
+aNSC_present_balloon_trans_takeout = .text:0x001D81B4; // type:function size:0xDC scope:local align:4
+aNSC_present_balloon_trans_wait = .text:0x001D8290; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait = .text:0x001D82D0; // type:function size:0x68 scope:local align:4
+aNSC_set_talk_info_request_Q_start_wait = .text:0x001D8338; // type:function size:0x30 scope:local align:4
+aNSC_request_Q_start_wait = .text:0x001D8368; // type:function size:0x84 scope:local align:4
+aNSC_request_Q_answer_wait = .text:0x001D83EC; // type:function size:0x114 scope:local align:4
+aNSC_request_Q_answer_wait2 = .text:0x001D8500; // type:function size:0x190 scope:local align:4
+aNSC_request_Q_end_wait = .text:0x001D8690; // type:function size:0x74 scope:local align:4
+aNSC_answer_buy_item = .text:0x001D8704; // type:function size:0x7C scope:local align:4
+aNSC_buy_menu_open_wait = .text:0x001D8780; // type:function size:0x58 scope:local align:4
+aNSC_buy_menu_close_wait = .text:0x001D87D8; // type:function size:0x34 scope:local align:4
+aNSC_msg_win_open_wait = .text:0x001D880C; // type:function size:0xC8 scope:local align:4
+aNSC_buy_sum_check = .text:0x001D88D4; // type:function size:0xFC scope:local align:4
+aNSC_buy_check = .text:0x001D89D0; // type:function size:0x280 scope:local align:4
+aNSC_buy_after_service = .text:0x001D8C50; // type:function size:0x7C scope:local align:4
+aNSC_buy_continue_check = .text:0x001D8CCC; // type:function size:0xEC scope:local align:4
+aNSC_receive_check = .text:0x001D8DB8; // type:function size:0xA4 scope:local align:4
+aNSC_msg_win_open_wait2 = .text:0x001D8E5C; // type:function size:0xC8 scope:local align:4
+aNSC_order_check = .text:0x001D8F24; // type:function size:0xFC scope:local align:4
+aNSC_sell_check_before = .text:0x001D9020; // type:function size:0x68 scope:local align:4
+aNSC_sell_check = .text:0x001D9088; // type:function size:0xB8 scope:local align:4
+aNSC_sell_answer0 = .text:0x001D9140; // type:function size:0x234 scope:local align:4
+aNSC_sell_item_with_ticket = .text:0x001D9374; // type:function size:0xB8 scope:local align:4
+aNSC_show_item_check = .text:0x001D942C; // type:function size:0x1CC scope:local align:4
+aNSC_chg_cloth_start_wait = .text:0x001D95F8; // type:function size:0xC8 scope:local align:4
+aNSC_chg_cloth_end_wait = .text:0x001D96C0; // type:function size:0x5C scope:local align:4
+aNSC_pw_entry_send_addr_start_wait = .text:0x001D971C; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait = .text:0x001D9794; // type:function size:0xAC scope:local align:4
+aNSC_pw_send_addr_check = .text:0x001D9840; // type:function size:0xDC scope:local align:4
+aNSC_pw_sel_item_start_wait = .text:0x001D991C; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait2 = .text:0x001D9994; // type:function size:0xB0 scope:local align:4
+aNSC_pw_send_check = .text:0x001D9A44; // type:function size:0x12C scope:local align:4
+aNSC_pw_retry_sel_item_check = .text:0x001D9B70; // type:function size:0xC8 scope:local align:4
+aNSC_pc_input_pw_start_wait = .text:0x001D9C38; // type:function size:0x78 scope:local align:4
+aNSC_pc_msg_win_open_wait = .text:0x001D9CB0; // type:function size:0x94 scope:local align:4
+aNSC_pc_retry_input_pw_check = .text:0x001D9D44; // type:function size:0xF4 scope:local align:4
+aNSC_pc_present_start_wait = .text:0x001D9E38; // type:function size:0x5C scope:local align:4
+aNSC_pc_present_trans_takeout = .text:0x001D9E94; // type:function size:0xDC scope:local align:4
+aNSC_pc_present_trans_wait = .text:0x001D9F70; // type:function size:0x40 scope:local align:4
+aNSC_pc_present_end_wait = .text:0x001D9FB0; // type:function size:0x68 scope:local align:4
+aNSC_wait = .text:0x001DA018; // type:function size:0x78 scope:local align:4
+aNSC_walk_pl_other_zone = .text:0x001DA090; // type:function size:0x78 scope:local align:4
+aNSC_turn = .text:0x001DA108; // type:function size:0x98 scope:local align:4
+aNSC_set_talk_info_goodbye_wait = .text:0x001DA1A0; // type:function size:0x30 scope:local align:4
+aNSC_goodbye_wait = .text:0x001DA1D0; // type:function size:0x9C scope:local align:4
+aNSC_say_goodbye = .text:0x001DA26C; // type:function size:0x60 scope:local align:4
+aNSC_exit_wait = .text:0x001DA2CC; // type:function size:0x74 scope:local align:4
+aNSC_say_hello_approach_init = .text:0x001DA340; // type:function size:0x20 scope:local align:4
+aNSC_say_hello_end_wait_init = .text:0x001DA360; // type:function size:0x28 scope:local align:4
+aNSC_check_col_chg_or_make_basement_init = .text:0x001DA388; // type:function size:0x20 scope:local align:4
+aNSC_check_roof_col_order_init = .text:0x001DA3A8; // type:function size:0x40 scope:local align:4
+aNSC_check_roof_col_order2_init = .text:0x001DA3E8; // type:function size:0x2C scope:local align:4
+aNSC_present_balloon_start_wait_init = .text:0x001DA414; // type:function size:0x1C scope:local align:4
+aNSC_present_balloon_trans_move_init = .text:0x001DA430; // type:function size:0x8C scope:local align:4
+aNSC_present_balloon_trans_takeout_init = .text:0x001DA4BC; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait_init = .text:0x001DA4FC; // type:function size:0x10 scope:local align:4
+aNSC_request_Q_answer_wait_init = .text:0x001DA50C; // type:function size:0x40 scope:local align:4
+aNSC_request_Q_end_wait_init = .text:0x001DA54C; // type:function size:0x20 scope:local align:4
+aNSC_answer_buy_item_init = .text:0x001DA56C; // type:function size:0x2C scope:local align:4
+aNSC_buy_menu_open_wait_init = .text:0x001DA598; // type:function size:0x24 scope:local align:4
+aNSC_buy_menu_close_wait_init = .text:0x001DA5BC; // type:function size:0x44 scope:local align:4
+aNSC_msg_win_open_wait_init = .text:0x001DA600; // type:function size:0x24 scope:local align:4
+aNSC_buy_sum_check_init = .text:0x001DA624; // type:function size:0x2C scope:local align:4
+aNSC_buy_check_init = .text:0x001DA650; // type:function size:0xF8 scope:local align:4
+aNSC_buy_after_service_init = .text:0x001DA748; // type:function size:0x2C scope:local align:4
+aNSC_order_select_menu_close_wait_init = .text:0x001DA774; // type:function size:0x44 scope:local align:4
+aNSC_order_check_init = .text:0x001DA7B8; // type:function size:0x2C scope:local align:4
+aNSC_sell_check_before_init = .text:0x001DA7E4; // type:function size:0x40 scope:local align:4
+aNSC_sell_answer0_init = .text:0x001DA824; // type:function size:0x118 scope:local align:4
+aNSC_sell_answer1_init = .text:0x001DA93C; // type:function size:0x34 scope:local align:4
+aNSC_sell_item_init = .text:0x001DA970; // type:function size:0x64 scope:local align:4
+aNSC_sell_item_with_ticket_init = .text:0x001DA9D4; // type:function size:0x50 scope:local align:4
+aNSC_sell_refuse0_init = .text:0x001DAA24; // type:function size:0xC scope:local align:4
+aNSC_show_item_check_init = .text:0x001DAA30; // type:function size:0x20 scope:local align:4
+aNSC_chg_cloth_start_wait_init = .text:0x001DAA50; // type:function size:0x24 scope:local align:4
+aNSC_pw_entry_send_addr_start_wait_init = .text:0x001DAA74; // type:function size:0x2C scope:local align:4
+aNSC_pw_make_menu_close_wait_init = .text:0x001DAAA0; // type:function size:0x64 scope:local align:4
+aNSC_pw_send_addr_check_init = .text:0x001DAB04; // type:function size:0x20 scope:local align:4
+aNSC_pw_sel_item_menu_close_wait_init = .text:0x001DAB24; // type:function size:0x44 scope:local align:4
+aNSC_pc_input_pw_start_wait_init = .text:0x001DAB68; // type:function size:0x3C scope:local align:4
+aNSC_pc_chk_menu_close_wait_init = .text:0x001DABA4; // type:function size:0x48 scope:local align:4
+aNSC_pc_present_trans_takeout_init = .text:0x001DABEC; // type:function size:0x88 scope:local align:4
+aNSC_pc_present_end_wait_init = .text:0x001DAC74; // type:function size:0x10 scope:local align:4
+aNSC_wait_init = .text:0x001DAC84; // type:function size:0x20 scope:local align:4
+aNSC_walk_pl_same_zone_init = .text:0x001DACA4; // type:function size:0x20 scope:local align:4
+aNSC_run_pl_same_zone_init = .text:0x001DACC4; // type:function size:0x20 scope:local align:4
+aNSC_goodbye_wait_init = .text:0x001DACE4; // type:function size:0x20 scope:local align:4
+aNSC_say_goodbye_init = .text:0x001DAD04; // type:function size:0x24 scope:local align:4
+aNSC_init_proc = .text:0x001DAD28; // type:function size:0x34 scope:local align:4
+aNSC_setupAction = .text:0x001DAD5C; // type:function size:0x68 scope:local align:4
+aCR_actor_ct = .text:0x001DADC4; // type:function size:0xE8 scope:global align:4
+aCR_actor_save = .text:0x001DAEAC; // type:function size:0x38 scope:global align:4
+aCR_actor_dt = .text:0x001DAEE4; // type:function size:0x38 scope:global align:4
+aCR_actor_init = .text:0x001DAF1C; // type:function size:0x38 scope:global align:4
+aCR_actor_draw = .text:0x001DAF54; // type:function size:0x38 scope:global align:4
+aCR_set_animation = .text:0x001DAF8C; // type:function size:0x4C scope:global align:4
+aCR_set_request_act = .text:0x001DAFD8; // type:function size:0x1C scope:global align:4
+aCR_check_sleep_time = .text:0x001DAFF4; // type:function size:0x34 scope:global align:4
+aCR_sleep_wait = .text:0x001DB028; // type:function size:0x3C scope:global align:4
+aCR_wait_init = .text:0x001DB064; // type:function size:0x1C scope:global align:4
+aCR_sleep_wait_init = .text:0x001DB080; // type:function size:0x34 scope:global align:4
+aCR_sleep_init = .text:0x001DB0B4; // type:function size:0x18 scope:global align:4
+aCR_setupAction = .text:0x001DB0CC; // type:function size:0x6C scope:global align:4
+aCR_act_chg_data_proc = .text:0x001DB138; // type:function size:0xC scope:global align:4
+aCR_act_init_proc = .text:0x001DB144; // type:function size:0x88 scope:global align:4
+aCR_act_main_proc = .text:0x001DB1CC; // type:function size:0x28 scope:global align:4
+aCR_act_proc = .text:0x001DB1F4; // type:function size:0x34 scope:global align:4
+aCR_think_main_proc = .text:0x001DB228; // type:function size:0x9C scope:global align:4
+aCR_think_init_proc = .text:0x001DB2C4; // type:function size:0x58 scope:global align:4
+aCR_think_proc = .text:0x001DB31C; // type:function size:0x34 scope:global align:4
+aCR_schedule_init_proc = .text:0x001DB350; // type:function size:0x54 scope:global align:4
+aCR_schedule_main_proc = .text:0x001DB3A4; // type:function size:0x80 scope:global align:4
+aCR_schedule_proc = .text:0x001DB424; // type:function size:0x34 scope:global align:4
+aCR_get_fossil_type = .text:0x001DB458; // type:function size:0x58 scope:global align:4
+aCR_chk_fossil_parts_complete_sub = .text:0x001DB4B0; // type:function size:0xF0 scope:global align:4
+aCR_chk_fossil_parts_complete = .text:0x001DB5A0; // type:function size:0x94 scope:global align:4
+aCR_chk_fossil_complete = .text:0x001DB634; // type:function size:0x90 scope:global align:4
+aCR_chk_art_complete = .text:0x001DB6C4; // type:function size:0x88 scope:global align:4
+aCR_chk_fish_complete = .text:0x001DB74C; // type:function size:0x88 scope:global align:4
+aCR_chk_insect_complete = .text:0x001DB7D4; // type:function size:0x88 scope:global align:4
+aCR_set_after_explain_insect = .text:0x001DB85C; // type:function size:0x84 scope:global align:4
+aCR_set_item_name_str = .text:0x001DB8E0; // type:function size:0x58 scope:global align:4
+aCR_set_other_player_name_str = .text:0x001DB938; // type:function size:0x4C scope:global align:4
+aCR_countDisplayed = .text:0x001DB984; // type:function size:0x50 scope:global align:4
+aCR_get_msg_no_after_talk = .text:0x001DB9D4; // type:function size:0x64 scope:global align:4
+aCR_get_idx_to_donate_fossil = .text:0x001DBA38; // type:function size:0x108 scope:global align:4
+aCR_get_idx_to_donate_art = .text:0x001DBB40; // type:function size:0xF8 scope:global align:4
+aCR_get_idx_to_donate_insect = .text:0x001DBC38; // type:function size:0xC8 scope:global align:4
+aCR_get_idx_to_donate_fish = .text:0x001DBD00; // type:function size:0xA8 scope:global align:4
+aCR_after_talk_start_wait = .text:0x001DBDA8; // type:function size:0x74 scope:global align:4
+aCR_chk_request = .text:0x001DBE1C; // type:function size:0xB4 scope:global align:4
+aCR_chk_decide_to_donate = .text:0x001DBED0; // type:function size:0xA0 scope:global align:4
+aCR_chk_decide_to_donate2 = .text:0x001DBF70; // type:function size:0xA0 scope:global align:4
+aCR_menu_open_wait = .text:0x001DC010; // type:function size:0x5C scope:global align:4
+aCR_msg_win_close_wait = .text:0x001DC06C; // type:function size:0x5C scope:global align:4
+aCR_menu_close_wait = .text:0x001DC0C8; // type:function size:0x4C scope:global align:4
+aCR_get_demo_start_wait = .text:0x001DC114; // type:function size:0x48 scope:global align:4
+aCR_get_demo_end_wait = .text:0x001DC15C; // type:function size:0x50 scope:global align:4
+aCR_msg_win_open_wait = .text:0x001DC1AC; // type:function size:0x178 scope:global align:4
+aCR_return_demo_start_wait = .text:0x001DC324; // type:function size:0x74 scope:global align:4
+aCR_return_demo_end_wait = .text:0x001DC398; // type:function size:0x8C scope:global align:4
+aCR_chk_continue_to_donate = .text:0x001DC424; // type:function size:0xC4 scope:global align:4
+aCR_putaway_demo_start_wait = .text:0x001DC4E8; // type:function size:0x68 scope:global align:4
+aCR_putaway_demo_start_wait5_2 = .text:0x001DC550; // type:function size:0x90 scope:global align:4
+aCR_putaway_demo_end_wait = .text:0x001DC5E0; // type:function size:0xF4 scope:global align:4
+aCR_after_explain_insect = .text:0x001DC6D4; // type:function size:0x68 scope:global align:4
+aCR_thanks_fossil_msg_end_wait = .text:0x001DC73C; // type:function size:0x68 scope:global align:4
+aCR_chk_all_complete = .text:0x001DC7A4; // type:function size:0xA4 scope:global align:4
+aCR_msg_win_close_wait_init = .text:0x001DC848; // type:function size:0x24 scope:global align:4
+aCR_menu_close_wait_init = .text:0x001DC86C; // type:function size:0x30 scope:global align:4
+aCR_get_demo_end_wait_init = .text:0x001DC89C; // type:function size:0x44 scope:global align:4
+aCR_msg_win_open_wait_init = .text:0x001DC8E0; // type:function size:0x38 scope:global align:4
+aCR_return_demo_end_wait_init = .text:0x001DC918; // type:function size:0x24 scope:global align:4
+aCR_putaway_demo_end_wait_init = .text:0x001DC93C; // type:function size:0x60 scope:global align:4
+aCR_talk_init_proc = .text:0x001DC99C; // type:function size:0x34 scope:global align:4
+aCR_setupTalkAction = .text:0x001DC9D0; // type:function size:0x38 scope:global align:4
+aCR_set_talk_info = .text:0x001DCA08; // type:function size:0x14C scope:global align:4
+aCR_talk_request = .text:0x001DCB54; // type:function size:0x30 scope:global align:4
+aCR_talk_init = .text:0x001DCB84; // type:function size:0x68 scope:global align:4
+aCR_talk_end_chk = .text:0x001DCBEC; // type:function size:0x5C scope:global align:4
+aCR_actor_move = .text:0x001DCC48; // type:function size:0x38 scope:global align:4
+aNDM_actor_ct = .text:0x001DCC80; // type:function size:0x110 scope:global align:4
+aNDM_actor_save = .text:0x001DCD90; // type:function size:0x38 scope:global align:4
+aNDM_actor_dt = .text:0x001DCDC8; // type:function size:0x38 scope:global align:4
+aNDM_actor_init = .text:0x001DCE00; // type:function size:0x38 scope:global align:4
+aNDM_actor_draw = .text:0x001DCE38; // type:function size:0x38 scope:global align:4
+aNDM_get_zone_sub = .text:0x001DCE70; // type:function size:0x30 scope:global align:4
+aNDM_get_zone = .text:0x001DCEA0; // type:function size:0x94 scope:global align:4
+aNDM_get_next_zone = .text:0x001DCF34; // type:function size:0x20 scope:global align:4
+aNDM_search_player = .text:0x001DCF54; // type:function size:0x90 scope:global align:4
+aNDM_search_player2 = .text:0x001DCFE4; // type:function size:0xDC scope:global align:4
+aNDM_check_safe_zone = .text:0x001DD0C0; // type:function size:0x50 scope:global align:4
+aNDM_actor_move = .text:0x001DD110; // type:function size:0xDC scope:global align:4
+aNSC_set_animation = .text:0x001DD1EC; // type:function size:0x50 scope:local align:4
+aNSC_BGcheck = .text:0x001DD23C; // type:function size:0x44 scope:local align:4
+aNSC_check_present_balloon = .text:0x001DD280; // type:function size:0x6C scope:local align:4
+aNSC_calc_talk_start_tim = .text:0x001DD2EC; // type:function size:0x28 scope:local align:4
+aNSC_request_show_camera = .text:0x001DD314; // type:function size:0x74 scope:local align:4
+aNSC_Set_ListenAble = .text:0x001DD388; // type:function size:0x24 scope:local align:4
+aNSC_set_sell_camera = .text:0x001DD3AC; // type:function size:0x94 scope:local align:4
+aNSC_sell_camera = .text:0x001DD440; // type:function size:0xA0 scope:local align:4
+aNSC_talk_demo_proc = .text:0x001DD4E0; // type:function size:0x70 scope:local align:4
+aNSC_set_stop_spd = .text:0x001DD550; // type:function size:0x1C scope:local align:4
+aNSC_set_walk_spd = .text:0x001DD56C; // type:function size:0x2C scope:local align:4
+aNSC_set_run_spd = .text:0x001DD598; // type:function size:0x2C scope:local align:4
+aNSC_set_rehouse_order_date = .text:0x001DD5C4; // type:function size:0x28 scope:local align:4
+aNSC_set_make_basement_info = .text:0x001DD5EC; // type:function size:0x5C scope:local align:4
+aNSC_getP_free_ftr_order = .text:0x001DD648; // type:function size:0x38 scope:local align:4
+aNSC_set_ftr_order = .text:0x001DD680; // type:function size:0x4C scope:local align:4
+aNSC_set_last_day_str = .text:0x001DD6CC; // type:function size:0x54 scope:local align:4
+aNSC_set_pw_name_str = .text:0x001DD720; // type:function size:0x5C scope:local align:4
+aNSC_set_value_str = .text:0x001DD77C; // type:function size:0x5C scope:local align:4
+aNSC_set_item_name_str = .text:0x001DD7D8; // type:function size:0x64 scope:local align:4
+aNSC_set_item_str = .text:0x001DD83C; // type:function size:0x58 scope:local align:4
+aNSC_set_pw_password_str = .text:0x001DD894; // type:function size:0x60 scope:local align:4
+aNSC_set_pw_info_str = .text:0x001DD8F4; // type:function size:0x68 scope:local align:4
+aNSC_pc_check_password_famicom = .text:0x001DD95C; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password_npc = .text:0x001DD9A4; // type:function size:0x6C scope:local align:4
+aNSC_pc_check_password_card_e = .text:0x001DDA10; // type:function size:0x8 scope:local align:4
+aNSC_pc_check_password_magazine = .text:0x001DDA18; // type:function size:0x74 scope:local align:4
+aNSC_pc_check_password_card_e_mini = .text:0x001DDA8C; // type:function size:0x18 scope:local align:4
+aNSC_pc_check_password_user = .text:0x001DDAA4; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password = .text:0x001DDAEC; // type:function size:0xC4 scope:local align:4
+aNSC_check_possession_item_make_password = .text:0x001DDBB0; // type:function size:0xAC scope:local align:4
+aNSC_set_buy_sum_str = .text:0x001DDC5C; // type:function size:0xD4 scope:local align:4
+aNSC_decide_next_move_act = .text:0x001DDD30; // type:function size:0x110 scope:local align:4
+aNSC_set_zone_data = .text:0x001DDE40; // type:function size:0x84 scope:local align:4
+aNSC_set_player_angl = .text:0x001DDEC4; // type:function size:0xC scope:local align:4
+aNSC_money_check = .text:0x001DDED0; // type:function size:0x20 scope:local align:4
+aNSC_get_sell_price = .text:0x001DDEF0; // type:function size:0x20 scope:local align:4
+aNSC_check_money_overflow = .text:0x001DDF10; // type:function size:0x94 scope:local align:4
+aNSC_check_buy_item_sub = .text:0x001DDFA4; // type:function size:0xA4 scope:local align:4
+aNSC_check_buy_paper = .text:0x001DE048; // type:function size:0xF0 scope:local align:4
+aNSC_check_buy_item_single = .text:0x001DE138; // type:function size:0x118 scope:local align:4
+aNSC_check_buy_item_plural = .text:0x001DE250; // type:function size:0x8C scope:local align:4
+aNSC_check_buy_item = .text:0x001DE2DC; // type:function size:0x34 scope:local align:4
+aNSC_check_item_with_ticket = .text:0x001DE310; // type:function size:0x80 scope:local align:4
+aNSC_setup_ticket_remain = .text:0x001DE390; // type:function size:0x48 scope:local align:4
+aNSC_check_same_month_ticket = .text:0x001DE3D8; // type:function size:0x64 scope:local align:4
+aNSC_get_msg_no = .text:0x001DE43C; // type:function size:0x48 scope:local align:4
+aNSC_Set_continue_msg_num = .text:0x001DE484; // type:function size:0x40 scope:local align:4
+aNSC_ChangeMsgData = .text:0x001DE4C4; // type:function size:0x40 scope:local align:4
+aNSC_set_player_angle = .text:0x001DE504; // type:function size:0x108 scope:local align:4
+aNSC_set_talk_info_show_item = .text:0x001DE60C; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_show_cloth = .text:0x001DE644; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_sell_item = .text:0x001DE67C; // type:function size:0xC0 scope:local align:4
+aNSC_set_talk_info_message_ctrl = .text:0x001DE73C; // type:function size:0x28 scope:local align:4
+aNSC_set_talk_info_message_ctrl_aprilfool = .text:0x001DE764; // type:function size:0x48 scope:local align:4
+aNSC_set_talk_info_message_ctrl_tokubai = .text:0x001DE7AC; // type:function size:0x28 scope:local align:4
+aNSC_message_ctrl = .text:0x001DE7D4; // type:function size:0x3E0 scope:local align:4
+aNSC_buy_item_single = .text:0x001DEBB4; // type:function size:0xF0 scope:local align:4
+aNSC_buy_paper = .text:0x001DECA4; // type:function size:0x110 scope:local align:4
+aNSC_buy_item_only_one = .text:0x001DEDB4; // type:function size:0x210 scope:local align:4
+aNSC_get_start_call_msg_no = .text:0x001DEFC4; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait = .text:0x001DF000; // type:function size:0x1F4 scope:local align:4
+aNSC_set_talk_info_start_wait1 = .text:0x001DF1F4; // type:function size:0xE0 scope:local align:4
+aNSC_set_talk_info_start_wait2 = .text:0x001DF2D4; // type:function size:0x4C scope:local align:4
+aNSC_set_talk_info_start_wait3 = .text:0x001DF320; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait4 = .text:0x001DF35C; // type:function size:0x28 scope:local align:4
+aNSC_start_wait = .text:0x001DF384; // type:function size:0x2B4 scope:local align:4
+aNSC_say_hello_approach = .text:0x001DF638; // type:function size:0x90 scope:local align:4
+aNSC_say_hello_end_wait = .text:0x001DF6C8; // type:function size:0x74 scope:local align:4
+aNSC_check_col_chg_or_make_basement = .text:0x001DF73C; // type:function size:0xCC scope:local align:4
+aNSC_check_roof_col_order = .text:0x001DF808; // type:function size:0x138 scope:local align:4
+aNSC_check_roof_col_order2 = .text:0x001DF940; // type:function size:0xF4 scope:local align:4
+aNSC_present_balloon_start_wait = .text:0x001DFA34; // type:function size:0x5C scope:local align:4
+aNSC_present_balloon_trans_move = .text:0x001DFA90; // type:function size:0x3C scope:local align:4
+aNSC_present_balloon_trans_takeout = .text:0x001DFACC; // type:function size:0xDC scope:local align:4
+aNSC_present_balloon_trans_wait = .text:0x001DFBA8; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait = .text:0x001DFBE8; // type:function size:0x68 scope:local align:4
+aNSC_set_talk_info_request_Q_start_wait = .text:0x001DFC50; // type:function size:0x30 scope:local align:4
+aNSC_request_Q_start_wait = .text:0x001DFC80; // type:function size:0x84 scope:local align:4
+aNSC_request_Q_answer_wait = .text:0x001DFD04; // type:function size:0x114 scope:local align:4
+aNSC_request_Q_answer_wait2 = .text:0x001DFE18; // type:function size:0x190 scope:local align:4
+aNSC_request_Q_end_wait = .text:0x001DFFA8; // type:function size:0x74 scope:local align:4
+aNSC_answer_buy_item = .text:0x001E001C; // type:function size:0x7C scope:local align:4
+aNSC_buy_menu_open_wait = .text:0x001E0098; // type:function size:0x58 scope:local align:4
+aNSC_buy_menu_close_wait = .text:0x001E00F0; // type:function size:0x34 scope:local align:4
+aNSC_msg_win_open_wait = .text:0x001E0124; // type:function size:0xC8 scope:local align:4
+aNSC_buy_sum_check = .text:0x001E01EC; // type:function size:0xFC scope:local align:4
+aNSC_buy_check = .text:0x001E02E8; // type:function size:0x280 scope:local align:4
+aNSC_buy_after_service = .text:0x001E0568; // type:function size:0x7C scope:local align:4
+aNSC_buy_continue_check = .text:0x001E05E4; // type:function size:0xEC scope:local align:4
+aNSC_receive_check = .text:0x001E06D0; // type:function size:0xA4 scope:local align:4
+aNSC_msg_win_open_wait2 = .text:0x001E0774; // type:function size:0xC8 scope:local align:4
+aNSC_order_check = .text:0x001E083C; // type:function size:0xFC scope:local align:4
+aNSC_sell_check_before = .text:0x001E0938; // type:function size:0x68 scope:local align:4
+aNSC_sell_check = .text:0x001E09A0; // type:function size:0xB8 scope:local align:4
+aNSC_sell_answer0 = .text:0x001E0A58; // type:function size:0x234 scope:local align:4
+aNSC_sell_item_with_ticket = .text:0x001E0C8C; // type:function size:0xB8 scope:local align:4
+aNSC_show_item_check = .text:0x001E0D44; // type:function size:0x1CC scope:local align:4
+aNSC_chg_cloth_start_wait = .text:0x001E0F10; // type:function size:0xC8 scope:local align:4
+aNSC_chg_cloth_end_wait = .text:0x001E0FD8; // type:function size:0x5C scope:local align:4
+aNSC_pw_entry_send_addr_start_wait = .text:0x001E1034; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait = .text:0x001E10AC; // type:function size:0xAC scope:local align:4
+aNSC_pw_send_addr_check = .text:0x001E1158; // type:function size:0xDC scope:local align:4
+aNSC_pw_sel_item_start_wait = .text:0x001E1234; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait2 = .text:0x001E12AC; // type:function size:0xB0 scope:local align:4
+aNSC_pw_send_check = .text:0x001E135C; // type:function size:0x12C scope:local align:4
+aNSC_pw_retry_sel_item_check = .text:0x001E1488; // type:function size:0xC8 scope:local align:4
+aNSC_pc_input_pw_start_wait = .text:0x001E1550; // type:function size:0x78 scope:local align:4
+aNSC_pc_msg_win_open_wait = .text:0x001E15C8; // type:function size:0x94 scope:local align:4
+aNSC_pc_retry_input_pw_check = .text:0x001E165C; // type:function size:0xF4 scope:local align:4
+aNSC_pc_present_start_wait = .text:0x001E1750; // type:function size:0x5C scope:local align:4
+aNSC_pc_present_trans_takeout = .text:0x001E17AC; // type:function size:0xDC scope:local align:4
+aNSC_pc_present_trans_wait = .text:0x001E1888; // type:function size:0x40 scope:local align:4
+aNSC_pc_present_end_wait = .text:0x001E18C8; // type:function size:0x68 scope:local align:4
+aNSC_wait = .text:0x001E1930; // type:function size:0x78 scope:local align:4
+aNSC_walk_pl_other_zone = .text:0x001E19A8; // type:function size:0x78 scope:local align:4
+aNSC_turn = .text:0x001E1A20; // type:function size:0x98 scope:local align:4
+aNSC_set_talk_info_goodbye_wait = .text:0x001E1AB8; // type:function size:0x30 scope:local align:4
+aNSC_goodbye_wait = .text:0x001E1AE8; // type:function size:0x9C scope:local align:4
+aNSC_say_goodbye = .text:0x001E1B84; // type:function size:0x60 scope:local align:4
+aNSC_exit_wait = .text:0x001E1BE4; // type:function size:0x74 scope:local align:4
+aNSC_say_hello_approach_init = .text:0x001E1C58; // type:function size:0x20 scope:local align:4
+aNSC_say_hello_end_wait_init = .text:0x001E1C78; // type:function size:0x28 scope:local align:4
+aNSC_check_col_chg_or_make_basement_init = .text:0x001E1CA0; // type:function size:0x20 scope:local align:4
+aNSC_check_roof_col_order_init = .text:0x001E1CC0; // type:function size:0x40 scope:local align:4
+aNSC_check_roof_col_order2_init = .text:0x001E1D00; // type:function size:0x2C scope:local align:4
+aNSC_present_balloon_start_wait_init = .text:0x001E1D2C; // type:function size:0x1C scope:local align:4
+aNSC_present_balloon_trans_move_init = .text:0x001E1D48; // type:function size:0x8C scope:local align:4
+aNSC_present_balloon_trans_takeout_init = .text:0x001E1DD4; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait_init = .text:0x001E1E14; // type:function size:0x10 scope:local align:4
+aNSC_request_Q_answer_wait_init = .text:0x001E1E24; // type:function size:0x40 scope:local align:4
+aNSC_request_Q_end_wait_init = .text:0x001E1E64; // type:function size:0x20 scope:local align:4
+aNSC_answer_buy_item_init = .text:0x001E1E84; // type:function size:0x2C scope:local align:4
+aNSC_buy_menu_open_wait_init = .text:0x001E1EB0; // type:function size:0x24 scope:local align:4
+aNSC_buy_menu_close_wait_init = .text:0x001E1ED4; // type:function size:0x44 scope:local align:4
+aNSC_msg_win_open_wait_init = .text:0x001E1F18; // type:function size:0x24 scope:local align:4
+aNSC_buy_sum_check_init = .text:0x001E1F3C; // type:function size:0x2C scope:local align:4
+aNSC_buy_check_init = .text:0x001E1F68; // type:function size:0xF8 scope:local align:4
+aNSC_buy_after_service_init = .text:0x001E2060; // type:function size:0x2C scope:local align:4
+aNSC_order_select_menu_close_wait_init = .text:0x001E208C; // type:function size:0x44 scope:local align:4
+aNSC_order_check_init = .text:0x001E20D0; // type:function size:0x2C scope:local align:4
+aNSC_sell_check_before_init = .text:0x001E20FC; // type:function size:0x40 scope:local align:4
+aNSC_sell_answer0_init = .text:0x001E213C; // type:function size:0x118 scope:local align:4
+aNSC_sell_answer1_init = .text:0x001E2254; // type:function size:0x34 scope:local align:4
+aNSC_sell_item_init = .text:0x001E2288; // type:function size:0x64 scope:local align:4
+aNSC_sell_item_with_ticket_init = .text:0x001E22EC; // type:function size:0x50 scope:local align:4
+aNSC_sell_refuse0_init = .text:0x001E233C; // type:function size:0xC scope:local align:4
+aNSC_show_item_check_init = .text:0x001E2348; // type:function size:0x20 scope:local align:4
+aNSC_chg_cloth_start_wait_init = .text:0x001E2368; // type:function size:0x24 scope:local align:4
+aNSC_pw_entry_send_addr_start_wait_init = .text:0x001E238C; // type:function size:0x2C scope:local align:4
+aNSC_pw_make_menu_close_wait_init = .text:0x001E23B8; // type:function size:0x64 scope:local align:4
+aNSC_pw_send_addr_check_init = .text:0x001E241C; // type:function size:0x20 scope:local align:4
+aNSC_pw_sel_item_menu_close_wait_init = .text:0x001E243C; // type:function size:0x44 scope:local align:4
+aNSC_pc_input_pw_start_wait_init = .text:0x001E2480; // type:function size:0x3C scope:local align:4
+aNSC_pc_chk_menu_close_wait_init = .text:0x001E24BC; // type:function size:0x48 scope:local align:4
+aNSC_pc_present_trans_takeout_init = .text:0x001E2504; // type:function size:0x88 scope:local align:4
+aNSC_pc_present_end_wait_init = .text:0x001E258C; // type:function size:0x10 scope:local align:4
+aNSC_wait_init = .text:0x001E259C; // type:function size:0x20 scope:local align:4
+aNSC_walk_pl_same_zone_init = .text:0x001E25BC; // type:function size:0x20 scope:local align:4
+aNSC_run_pl_same_zone_init = .text:0x001E25DC; // type:function size:0x20 scope:local align:4
+aNSC_goodbye_wait_init = .text:0x001E25FC; // type:function size:0x20 scope:local align:4
+aNSC_say_goodbye_init = .text:0x001E261C; // type:function size:0x24 scope:local align:4
+aNSC_init_proc = .text:0x001E2640; // type:function size:0x34 scope:local align:4
+aNSC_setupAction = .text:0x001E2674; // type:function size:0x68 scope:local align:4
+aNEG_actor_ct = .text:0x001E26DC; // type:function size:0xC0 scope:global align:4
+aNEG_actor_save = .text:0x001E279C; // type:function size:0x38 scope:global align:4
+aNEG_actor_dt = .text:0x001E27D4; // type:function size:0x38 scope:global align:4
+aNEG_actor_init = .text:0x001E280C; // type:function size:0x38 scope:global align:4
+aNEG_actor_move = .text:0x001E2844; // type:function size:0x38 scope:global align:4
+aNEG_actor_draw = .text:0x001E287C; // type:function size:0x38 scope:global align:4
+aNGD_actor_ct = .text:0x001E28B4; // type:function size:0x128 scope:global align:4
+aNGD_actor_save = .text:0x001E29DC; // type:function size:0x38 scope:global align:4
+aNGD_actor_dt = .text:0x001E2A14; // type:function size:0x78 scope:global align:4
+aNGD_actor_init = .text:0x001E2A8C; // type:function size:0x38 scope:global align:4
+aNGD_actor_draw = .text:0x001E2AC4; // type:function size:0x38 scope:global align:4
+aNGD_set_animation = .text:0x001E2AFC; // type:function size:0x88 scope:global align:4
+aNGD_set_camera = .text:0x001E2B84; // type:function size:0x3B8 scope:global align:4
+aNGD_set_camera_eyes = .text:0x001E2F3C; // type:function size:0x44 scope:global align:4
+aNGD_set_walk_spd = .text:0x001E2F80; // type:function size:0x2C scope:global align:4
+aNGD_set_walk_spd2 = .text:0x001E2FAC; // type:function size:0x2C scope:global align:4
+aNGD_set_stop_spd = .text:0x001E2FD8; // type:function size:0x1C scope:global align:4
+aNGD_make_keitai = .text:0x001E2FF4; // type:function size:0x98 scope:global align:4
+aNGD_chg_cond_keitai = .text:0x001E308C; // type:function size:0x64 scope:global align:4
+aNGD_talk_demo_proc = .text:0x001E30F0; // type:function size:0x5C scope:global align:4
+aNGD_check_talk_msg_no = .text:0x001E314C; // type:function size:0x98 scope:global align:4
+aNGD_set_pl_face_type = .text:0x001E31E4; // type:function size:0x90 scope:global align:4
+aNGD_calc_body_angl = .text:0x001E3274; // type:function size:0x5C scope:global align:4
+aNGD_set_default_talk_info = .text:0x001E32D0; // type:function size:0x34 scope:global align:4
+aNGD_enter = .text:0x001E3304; // type:function size:0x6C scope:global align:4
+aNGD_approach = .text:0x001E3370; // type:function size:0x40 scope:global align:4
+aNGD_set_talk_info_talk_start_wait = .text:0x001E33B0; // type:function size:0x3C scope:global align:4
+aNGD_talk_start_wait = .text:0x001E33EC; // type:function size:0xA0 scope:global align:4
+aNGD_time_check = .text:0x001E348C; // type:function size:0x90 scope:global align:4
+aNGD_sdon_and_pb_wait = .text:0x001E351C; // type:function size:0x78 scope:global align:4
+aNGD_time_menu_open_wait = .text:0x001E3594; // type:function size:0x58 scope:global align:4
+aNGD_time_menu_close_wait = .text:0x001E35EC; // type:function size:0x30 scope:global align:4
+aNGD_msg_win_open_wait = .text:0x001E361C; // type:function size:0xD0 scope:global align:4
+aNGD_confirm_input_data = .text:0x001E36EC; // type:function size:0xE8 scope:global align:4
+aNGD_wait_permission = .text:0x001E37D4; // type:function size:0x54 scope:global align:4
+aNGD_sitdown = .text:0x001E3828; // type:function size:0xA4 scope:global align:4
+aNGD_sex_select_wait = .text:0x001E38CC; // type:function size:0x90 scope:global align:4
+aNGD_sex_select_wait2 = .text:0x001E395C; // type:function size:0x14C scope:global align:4
+aNGD_sex_select_after = .text:0x001E3AA8; // type:function size:0xA0 scope:global align:4
+aNGD_standup_start_wait = .text:0x001E3B48; // type:function size:0x60 scope:global align:4
+aNGD_standup = .text:0x001E3BA8; // type:function size:0x30 scope:global align:4
+aNGD_move_ready = .text:0x001E3BD8; // type:function size:0x40 scope:global align:4
+aNGD_move_to_aisle = .text:0x001E3C18; // type:function size:0x6C scope:global align:4
+aNGD_move_to_door = .text:0x001E3C84; // type:function size:0x90 scope:global align:4
+aNGD_move_to_deck = .text:0x001E3D14; // type:function size:0x64 scope:global align:4
+aNGD_set_talk_info_keitai_on = .text:0x001E3D78; // type:function size:0x28 scope:global align:4
+aNGD_keitai_on = .text:0x001E3DA0; // type:function size:0xAC scope:global align:4
+aNGD_keitai_talk = .text:0x001E3E4C; // type:function size:0x90 scope:global align:4
+aNGD_open_door = .text:0x001E3EDC; // type:function size:0x98 scope:global align:4
+aNGD_return_approach = .text:0x001E3F74; // type:function size:0x50 scope:global align:4
+aNGD_set_talk_info_last_talk_start_wait = .text:0x001E3FC4; // type:function size:0x3C scope:global align:4
+aNGD_last_talk_start_wait = .text:0x001E4000; // type:function size:0xA0 scope:global align:4
+aNGD_sitdown2_start_wait = .text:0x001E40A0; // type:function size:0x68 scope:global align:4
+aNGD_sitdown2 = .text:0x001E4108; // type:function size:0x40 scope:global align:4
+aNGD_last_talk_end_wait = .text:0x001E4148; // type:function size:0x58 scope:global align:4
+aNGD_time_menu_open_wait_init = .text:0x001E41A0; // type:function size:0x4C scope:global align:4
+aNGD_time_menu_close_wait_init = .text:0x001E41EC; // type:function size:0x80 scope:global align:4
+aNGD_msg_win_open_wait_init = .text:0x001E426C; // type:function size:0x24 scope:global align:4
+aNGD_sitdown_init = .text:0x001E4290; // type:function size:0x24 scope:global align:4
+aNGD_pname_menu_open_wait_init = .text:0x001E42B4; // type:function size:0x4C scope:global align:4
+aNGD_cname_menu_open_wait_init = .text:0x001E4300; // type:function size:0x4C scope:global align:4
+aNGD_standup_init = .text:0x001E434C; // type:function size:0xC scope:global align:4
+aNGD_move_ready_init = .text:0x001E4358; // type:function size:0x10 scope:global align:4
+aNGD_move_to_aisle_init = .text:0x001E4368; // type:function size:0x20 scope:global align:4
+aNGD_move_to_deck_init = .text:0x001E4388; // type:function size:0x4C scope:global align:4
+aNGD_keitai_off_init = .text:0x001E43D4; // type:function size:0x38 scope:global align:4
+aNGD_open_door_init = .text:0x001E440C; // type:function size:0xC scope:global align:4
+aNGD_return_approach_init = .text:0x001E4418; // type:function size:0x40 scope:global align:4
+aNGD_sitdown2_start_wait_init = .text:0x001E4458; // type:function size:0x2C scope:global align:4
+aNGD_sitdown2_init = .text:0x001E4484; // type:function size:0x18 scope:global align:4
+aNGD_last_talk_end_wait_init = .text:0x001E449C; // type:function size:0x38 scope:global align:4
+aNGD_scene_change_wait_init = .text:0x001E44D4; // type:function size:0x240 scope:global align:4
+aNGD_init_proc = .text:0x001E4714; // type:function size:0x34 scope:global align:4
+aNGD_setupAction = .text:0x001E4748; // type:function size:0x68 scope:global align:4
+aNGD_actor_move = .text:0x001E47B0; // type:function size:0xA8 scope:global align:4
+aNG2_actor_ct = .text:0x001E4858; // type:function size:0x104 scope:global align:4
+aNG2_actor_save = .text:0x001E495C; // type:function size:0x38 scope:global align:4
+aNG2_actor_dt = .text:0x001E4994; // type:function size:0x40 scope:global align:4
+aNG2_actor_init = .text:0x001E49D4; // type:function size:0x38 scope:global align:4
+aNG2_actor_draw = .text:0x001E4A0C; // type:function size:0x38 scope:global align:4
+aNG2_set_animation = .text:0x001E4A44; // type:function size:0x50 scope:global align:4
+aNG2_set_camera = .text:0x001E4A94; // type:function size:0x3B8 scope:global align:4
+aNG2_set_camera_eyes = .text:0x001E4E4C; // type:function size:0x44 scope:global align:4
+aNG2_set_walk_spd = .text:0x001E4E90; // type:function size:0x2C scope:global align:4
+aNG2_set_walk_spd2 = .text:0x001E4EBC; // type:function size:0x2C scope:global align:4
+aNG2_set_stop_spd = .text:0x001E4EE8; // type:function size:0x1C scope:global align:4
+aNG2_make_keitai = .text:0x001E4F04; // type:function size:0x98 scope:global align:4
+aNG2_chg_cond_keitai = .text:0x001E4F9C; // type:function size:0x64 scope:global align:4
+aNG2_talk_demo_proc = .text:0x001E5000; // type:function size:0x5C scope:global align:4
+aNG2_getP_other_pl_name = .text:0x001E505C; // type:function size:0xB0 scope:global align:4
+aNG2_check_pname = .text:0x001E510C; // type:function size:0x88 scope:global align:4
+aNG2_check_talk_msg_no = .text:0x001E5194; // type:function size:0x98 scope:global align:4
+aNG2_set_pl_face_type = .text:0x001E522C; // type:function size:0x90 scope:global align:4
+aNG2_calc_body_angl = .text:0x001E52BC; // type:function size:0x5C scope:global align:4
+aNG2_set_default_talk_info = .text:0x001E5318; // type:function size:0x34 scope:global align:4
+aNG2_enter = .text:0x001E534C; // type:function size:0x6C scope:global align:4
+aNG2_approach = .text:0x001E53B8; // type:function size:0x40 scope:global align:4
+aNG2_set_talk_info_talk_start_wait = .text:0x001E53F8; // type:function size:0x60 scope:global align:4
+aNG2_talk_start_wait = .text:0x001E5458; // type:function size:0xA0 scope:global align:4
+aNG2_wait_permission = .text:0x001E54F8; // type:function size:0x54 scope:global align:4
+aNG2_sitdown = .text:0x001E554C; // type:function size:0x80 scope:global align:4
+aNG2_sdon_and_pb_wait = .text:0x001E55CC; // type:function size:0x78 scope:global align:4
+aNG2_pname_menu_open_wait = .text:0x001E5644; // type:function size:0x54 scope:global align:4
+aNG2_pname_menu_close_wait = .text:0x001E5698; // type:function size:0x30 scope:global align:4
+aNG2_msg_win_open_wait = .text:0x001E56C8; // type:function size:0x9C scope:global align:4
+aNG2_sex_select_wait = .text:0x001E5764; // type:function size:0x90 scope:global align:4
+aNG2_sex_select_wait2 = .text:0x001E57F4; // type:function size:0x16C scope:global align:4
+aNG2_sex_select_after = .text:0x001E5960; // type:function size:0x90 scope:global align:4
+aNG2_standup_start_wait = .text:0x001E59F0; // type:function size:0x60 scope:global align:4
+aNG2_standup = .text:0x001E5A50; // type:function size:0x30 scope:global align:4
+aNG2_move_ready = .text:0x001E5A80; // type:function size:0x40 scope:global align:4
+aNG2_move_to_aisle = .text:0x001E5AC0; // type:function size:0x6C scope:global align:4
+aNG2_move_to_door = .text:0x001E5B2C; // type:function size:0x90 scope:global align:4
+aNG2_move_to_deck = .text:0x001E5BBC; // type:function size:0x64 scope:global align:4
+aNG2_set_talk_info_keitai_on = .text:0x001E5C20; // type:function size:0x28 scope:global align:4
+aNG2_keitai_on = .text:0x001E5C48; // type:function size:0xAC scope:global align:4
+aNG2_keitai_talk = .text:0x001E5CF4; // type:function size:0x90 scope:global align:4
+aNG2_open_door = .text:0x001E5D84; // type:function size:0x98 scope:global align:4
+aNG2_return_approach = .text:0x001E5E1C; // type:function size:0x50 scope:global align:4
+aNG2_set_talk_info_last_talk_start_wait = .text:0x001E5E6C; // type:function size:0x3C scope:global align:4
+aNG2_last_talk_start_wait = .text:0x001E5EA8; // type:function size:0xA0 scope:global align:4
+aNG2_sitdown2_start_wait = .text:0x001E5F48; // type:function size:0x68 scope:global align:4
+aNG2_sitdown2 = .text:0x001E5FB0; // type:function size:0x40 scope:global align:4
+aNG2_last_talk_end_wait = .text:0x001E5FF0; // type:function size:0x58 scope:global align:4
+aNG2_sitdown_init = .text:0x001E6048; // type:function size:0x24 scope:global align:4
+aNG2_pname_menu_open_wait_init = .text:0x001E606C; // type:function size:0x38 scope:global align:4
+aNG2_pname_menu_close_wait_init = .text:0x001E60A4; // type:function size:0x30 scope:global align:4
+aNG2_msg_win_open_wait_init = .text:0x001E60D4; // type:function size:0x24 scope:global align:4
+aNG2_pname_ng_init = .text:0x001E60F8; // type:function size:0xC scope:global align:4
+aNG2_standup_init = .text:0x001E6104; // type:function size:0xC scope:global align:4
+aNG2_move_ready_init = .text:0x001E6110; // type:function size:0x10 scope:global align:4
+aNG2_move_to_aisle_init = .text:0x001E6120; // type:function size:0x20 scope:global align:4
+aNG2_move_to_deck_init = .text:0x001E6140; // type:function size:0x4C scope:global align:4
+aNG2_keitai_off_init = .text:0x001E618C; // type:function size:0x38 scope:global align:4
+aNG2_open_door_init = .text:0x001E61C4; // type:function size:0xC scope:global align:4
+aNG2_return_approach_init = .text:0x001E61D0; // type:function size:0x40 scope:global align:4
+aNG2_sitdown2_start_wait_init = .text:0x001E6210; // type:function size:0x2C scope:global align:4
+aNG2_sitdown2_init = .text:0x001E623C; // type:function size:0x18 scope:global align:4
+aNG2_last_talk_end_wait_init = .text:0x001E6254; // type:function size:0x38 scope:global align:4
+aNG2_scene_change_wait_init = .text:0x001E628C; // type:function size:0x9C scope:global align:4
+aNG2_init_proc = .text:0x001E6328; // type:function size:0x34 scope:global align:4
+aNG2_setupAction = .text:0x001E635C; // type:function size:0x68 scope:global align:4
+aNG2_actor_move = .text:0x001E63C4; // type:function size:0xA8 scope:global align:4
+aMJN_actor_ct = .text:0x001E646C; // type:function size:0x84 scope:global align:4
+aMJN_actor_save = .text:0x001E64F0; // type:function size:0x38 scope:global align:4
+aMJN_actor_dt = .text:0x001E6528; // type:function size:0x9C scope:global align:4
+aMJN_actor_init = .text:0x001E65C4; // type:function size:0x38 scope:global align:4
+aMJN_actor_move = .text:0x001E65FC; // type:function size:0x4C scope:global align:4
+aMJN_set_animation = .text:0x001E6648; // type:function size:0x4C scope:global align:4
+aMJN_actor_draw = .text:0x001E6694; // type:function size:0x38 scope:global align:4
+aMJN_set_zoomup_camera = .text:0x001E66CC; // type:function size:0xB4 scope:global align:4
+aMJN_set_default_camera = .text:0x001E6780; // type:function size:0x60 scope:global align:4
+aMJN_chk_talk_demo_code = .text:0x001E67E0; // type:function size:0x1AC scope:global align:4
+aMJN_set_force_talk_info = .text:0x001E698C; // type:function size:0x4C scope:global align:4
+aMJN_force_talk_request = .text:0x001E69D8; // type:function size:0x30 scope:global align:4
+aMJN_talk_init = .text:0x001E6A08; // type:function size:0x5C scope:global align:4
+aMJN_talk_end_chk = .text:0x001E6A64; // type:function size:0x68 scope:global align:4
+aMJN_set_request_act = .text:0x001E6ACC; // type:function size:0x1C scope:global align:4
+aMJN_act_init_proc = .text:0x001E6AE8; // type:function size:0xC scope:global align:4
+aMJN_act_proc = .text:0x001E6AF4; // type:function size:0x34 scope:global align:4
+aMJN_setup_start_think = .text:0x001E6B28; // type:function size:0x15C scope:global align:4
+aMJN_start_wait = .text:0x001E6C84; // type:function size:0x50 scope:global align:4
+aMJN_start_wait_st = .text:0x001E6CD4; // type:function size:0x64 scope:global align:4
+aMJN_exit = .text:0x001E6D38; // type:function size:0x2C scope:global align:4
+aMJN_think_main_proc = .text:0x001E6D64; // type:function size:0x48 scope:global align:4
+aMJN_think_init_proc = .text:0x001E6DAC; // type:function size:0xF4 scope:global align:4
+aMJN_call_init = .text:0x001E6EA0; // type:function size:0x18 scope:global align:4
+aMJN_setup_think_proc = .text:0x001E6EB8; // type:function size:0x84 scope:global align:4
+aMJN_think_proc = .text:0x001E6F3C; // type:function size:0x34 scope:global align:4
+aMJN_schedule_init_proc = .text:0x001E6F70; // type:function size:0x4C scope:global align:4
+aMJN_schedule_main_proc = .text:0x001E6FBC; // type:function size:0x80 scope:global align:4
+aMJN_schedule_proc = .text:0x001E703C; // type:function size:0x34 scope:global align:4
+aMJN2_actor_ct = .text:0x001E7070; // type:function size:0x84 scope:global align:4
+aMJN2_actor_save = .text:0x001E70F4; // type:function size:0x38 scope:global align:4
+aMJN2_actor_dt = .text:0x001E712C; // type:function size:0x9C scope:global align:4
+aMJN2_actor_init = .text:0x001E71C8; // type:function size:0x38 scope:global align:4
+aMJN2_actor_move = .text:0x001E7200; // type:function size:0x4C scope:global align:4
+aMJN2_set_animation = .text:0x001E724C; // type:function size:0x4C scope:global align:4
+aMJN2_actor_draw = .text:0x001E7298; // type:function size:0x38 scope:global align:4
+aMJN2_wait_talk_proc = .text:0x001E72D0; // type:function size:0x74 scope:global align:4
+aMJN2_change_talk_proc = .text:0x001E7344; // type:function size:0x18 scope:global align:4
+aMJN2_set_force_talk_info = .text:0x001E735C; // type:function size:0x90 scope:global align:4
+aMJN2_force_talk_request = .text:0x001E73EC; // type:function size:0x30 scope:global align:4
+aMJN2_set_norm_talk_info = .text:0x001E741C; // type:function size:0x74 scope:global align:4
+aMJN2_norm_talk_request = .text:0x001E7490; // type:function size:0x30 scope:global align:4
+aMJN2_talk_init = .text:0x001E74C0; // type:function size:0x30 scope:global align:4
+aMJN2_talk_end_chk = .text:0x001E74F0; // type:function size:0xAC scope:global align:4
+aMJN2_set_request_act = .text:0x001E759C; // type:function size:0x1C scope:global align:4
+aMJN2_act_init_proc = .text:0x001E75B8; // type:function size:0xC scope:global align:4
+aMJN2_act_proc = .text:0x001E75C4; // type:function size:0x34 scope:global align:4
+aMJN2_check_submenu = .text:0x001E75F8; // type:function size:0xF0 scope:global align:4
+aMJN2_start_wait = .text:0x001E76E8; // type:function size:0x54 scope:global align:4
+aMJN2_start_wait_st = .text:0x001E773C; // type:function size:0x68 scope:global align:4
+aMJN2_wait = .text:0x001E77A4; // type:function size:0xD0 scope:global align:4
+aMJN2_exit = .text:0x001E7874; // type:function size:0x2C scope:global align:4
+aMJN2_think_main_proc = .text:0x001E78A0; // type:function size:0x48 scope:global align:4
+aMJN2_think_init_proc = .text:0x001E78E8; // type:function size:0xF4 scope:global align:4
+aMJN2_start_wait_init = .text:0x001E79DC; // type:function size:0xC4 scope:global align:4
+aMJN2_setup_think_proc = .text:0x001E7AA0; // type:function size:0xA8 scope:global align:4
+aMJN2_think_proc = .text:0x001E7B48; // type:function size:0x34 scope:global align:4
+aMJN2_schedule_init_proc = .text:0x001E7B7C; // type:function size:0x4C scope:global align:4
+aMJN2_schedule_main_proc = .text:0x001E7BC8; // type:function size:0x80 scope:global align:4
+aMJN2_schedule_proc = .text:0x001E7C48; // type:function size:0x34 scope:global align:4
+aMJN3_actor_ct = .text:0x001E7C7C; // type:function size:0x84 scope:global align:4
+aMJN3_actor_save = .text:0x001E7D00; // type:function size:0x38 scope:global align:4
+aMJN3_actor_dt = .text:0x001E7D38; // type:function size:0x9C scope:global align:4
+aMJN3_actor_init = .text:0x001E7DD4; // type:function size:0x38 scope:global align:4
+aMJN3_actor_move = .text:0x001E7E0C; // type:function size:0x4C scope:global align:4
+aMJN3_set_animation = .text:0x001E7E58; // type:function size:0x4C scope:global align:4
+aMJN3_actor_draw = .text:0x001E7EA4; // type:function size:0x38 scope:global align:4
+aMJN3_check_good_word = .text:0x001E7EDC; // type:function size:0x68 scope:global align:4
+aMJN3_check_ng_word = .text:0x001E7F44; // type:function size:0xBC scope:global align:4
+aMJN3_check_word = .text:0x001E8000; // type:function size:0x60 scope:global align:4
+aMJN3_msg_win_close_wait_talk_proc = .text:0x001E8060; // type:function size:0x50 scope:global align:4
+aMJN3_menu_open_wait_talk_proc = .text:0x001E80B0; // type:function size:0x80 scope:global align:4
+aMJN3_menu_close_wait_talk_proc = .text:0x001E8130; // type:function size:0x5C scope:global align:4
+aMJN3_msg_win_open_wait_talk_proc = .text:0x001E818C; // type:function size:0x78 scope:global align:4
+aMJN3_change_talk_proc = .text:0x001E8204; // type:function size:0x18 scope:global align:4
+aMJN3_set_force_talk_info = .text:0x001E821C; // type:function size:0x6C scope:global align:4
+aMJN3_force_talk_request = .text:0x001E8288; // type:function size:0x30 scope:global align:4
+aMJN3_talk_init = .text:0x001E82B8; // type:function size:0xB0 scope:global align:4
+aMJN3_talk_end_chk = .text:0x001E8368; // type:function size:0x70 scope:global align:4
+aMJN3_set_request_act = .text:0x001E83D8; // type:function size:0x1C scope:global align:4
+aMJN3_act_init_proc = .text:0x001E83F4; // type:function size:0xC scope:global align:4
+aMJN3_act_proc = .text:0x001E8400; // type:function size:0x34 scope:global align:4
+aMJN3_start_wait = .text:0x001E8434; // type:function size:0x78 scope:global align:4
+aMJN3_start_wait_st = .text:0x001E84AC; // type:function size:0x68 scope:global align:4
+aMJN3_start_wait_st2 = .text:0x001E8514; // type:function size:0xE0 scope:global align:4
+aMJN3_exit = .text:0x001E85F4; // type:function size:0x2C scope:global align:4
+aMJN3_think_main_proc = .text:0x001E8620; // type:function size:0x48 scope:global align:4
+aMJN3_think_init_proc = .text:0x001E8668; // type:function size:0xF4 scope:global align:4
+aMJN3_call_init = .text:0x001E875C; // type:function size:0xC4 scope:global align:4
+aMJN3_setup_think_proc = .text:0x001E8820; // type:function size:0x84 scope:global align:4
+aMJN3_think_proc = .text:0x001E88A4; // type:function size:0x34 scope:global align:4
+aMJN3_schedule_init_proc = .text:0x001E88D8; // type:function size:0x4C scope:global align:4
+aMJN3_schedule_main_proc = .text:0x001E8924; // type:function size:0x80 scope:global align:4
+aMJN3_schedule_proc = .text:0x001E89A4; // type:function size:0x34 scope:global align:4
+aMJN4_actor_ct = .text:0x001E89D8; // type:function size:0xA0 scope:global align:4
+aMJN4_actor_save = .text:0x001E8A78; // type:function size:0x38 scope:global align:4
+aMJN4_actor_dt = .text:0x001E8AB0; // type:function size:0x9C scope:global align:4
+aMJN4_actor_init = .text:0x001E8B4C; // type:function size:0x38 scope:global align:4
+aMJN4_actor_move = .text:0x001E8B84; // type:function size:0x4C scope:global align:4
+aMJN4_set_animation = .text:0x001E8BD0; // type:function size:0x4C scope:global align:4
+aMJN4_prenmi_draw = .text:0x001E8C1C; // type:function size:0x204 scope:global align:4
+aMJN4_actor_draw = .text:0x001E8E20; // type:function size:0x5C scope:global align:4
+aMJN4_set_force_talk_info = .text:0x001E8E7C; // type:function size:0x78 scope:global align:4
+aMJN4_force_talk_request = .text:0x001E8EF4; // type:function size:0x30 scope:global align:4
+aMJN4_talk_init2 = .text:0x001E8F24; // type:function size:0x30 scope:global align:4
+aMJN4_talk_init = .text:0x001E8F54; // type:function size:0x5C scope:global align:4
+aMJN4_talk_end_chk = .text:0x001E8FB0; // type:function size:0x8C scope:global align:4
+aMJN4_set_request_act = .text:0x001E903C; // type:function size:0x1C scope:global align:4
+aMJN4_act_init_proc = .text:0x001E9058; // type:function size:0xC scope:global align:4
+aMJN4_act_proc = .text:0x001E9064; // type:function size:0x34 scope:global align:4
+aMJN4_start_wait = .text:0x001E9098; // type:function size:0x54 scope:global align:4
+aMJN4_start_wait_st = .text:0x001E90EC; // type:function size:0x68 scope:global align:4
+aMJN4_force_reset_end_wait = .text:0x001E9154; // type:function size:0xB0 scope:global align:4
+aMJN4_color_filter_end_wait = .text:0x001E9204; // type:function size:0x48 scope:global align:4
+aMJN4_exit = .text:0x001E924C; // type:function size:0x2C scope:global align:4
+aMJN4_think_main_proc = .text:0x001E9278; // type:function size:0x48 scope:global align:4
+aMJN4_think_init_proc = .text:0x001E92C0; // type:function size:0xF4 scope:global align:4
+aMJN4_call_init = .text:0x001E93B4; // type:function size:0xC4 scope:global align:4
+aMJN4_force_reset_end_wait_init = .text:0x001E9478; // type:function size:0x80 scope:global align:4
+aMJN4_color_filter_end_wait_init = .text:0x001E94F8; // type:function size:0x48 scope:global align:4
+aMJN4_setup_think_proc = .text:0x001E9540; // type:function size:0x84 scope:global align:4
+aMJN4_think_proc = .text:0x001E95C4; // type:function size:0x34 scope:global align:4
+aMJN4_schedule_init_proc = .text:0x001E95F8; // type:function size:0x4C scope:global align:4
+aMJN4_schedule_main_proc = .text:0x001E9644; // type:function size:0x80 scope:global align:4
+aMJN4_schedule_proc = .text:0x001E96C4; // type:function size:0x34 scope:global align:4
+aNMJ5_actor_ct = .text:0x001E96F8; // type:function size:0x128 scope:global align:4
+aNMJ5_actor_save = .text:0x001E9820; // type:function size:0x20 scope:global align:4
+aNMJ5_actor_dt = .text:0x001E9840; // type:function size:0x60 scope:global align:4
+aNMJ5_actor_init = .text:0x001E98A0; // type:function size:0x38 scope:global align:4
+aNMJ5_set_request_act = .text:0x001E98D8; // type:function size:0x94 scope:global align:4
+aNMJ5_actor_move = .text:0x001E996C; // type:function size:0x9C scope:global align:4
+aNMJ5_actor_draw = .text:0x001E9A08; // type:function size:0x38 scope:global align:4
+aNMJ5_think_main_proc = .text:0x001E9A40; // type:function size:0x4 scope:global align:4
+aNMJ5_think_init_proc = .text:0x001E9A44; // type:function size:0x88 scope:global align:4
+aNMJ5_think_proc = .text:0x001E9ACC; // type:function size:0x40 scope:global align:4
+aNMJ5_schedule_init_proc = .text:0x001E9B0C; // type:function size:0x4C scope:global align:4
+aNMJ5_schedule_main_proc = .text:0x001E9B58; // type:function size:0x80 scope:global align:4
+aNMJ5_schedule_proc = .text:0x001E9BD8; // type:function size:0x40 scope:global align:4
+aNMD_actor_ct = .text:0x001E9C18; // type:function size:0x164 scope:global align:4
+aNMD_actor_save = .text:0x001E9D7C; // type:function size:0x38 scope:global align:4
+aNMD_actor_dt = .text:0x001E9DB4; // type:function size:0x38 scope:global align:4
+aNMD_actor_init = .text:0x001E9DEC; // type:function size:0x38 scope:global align:4
+aNMD_actor_draw = .text:0x001E9E24; // type:function size:0x38 scope:global align:4
+aNMD_get_zone = .text:0x001E9E5C; // type:function size:0xD4 scope:global align:4
+aNMD_get_next_zone = .text:0x001E9F30; // type:function size:0x38 scope:global align:4
+aNMD_search_player = .text:0x001E9F68; // type:function size:0x90 scope:global align:4
+aNMD_search_player2 = .text:0x001E9FF8; // type:function size:0xF8 scope:global align:4
+aNMD_weight_ctrl = .text:0x001EA0F0; // type:function size:0x70 scope:global align:4
+aNMD_actor_move = .text:0x001EA160; // type:function size:0xE4 scope:global align:4
+aNSC_set_animation = .text:0x001EA244; // type:function size:0x50 scope:local align:4
+aNSC_BGcheck = .text:0x001EA294; // type:function size:0x44 scope:local align:4
+aNSC_calc_talk_start_tim = .text:0x001EA2D8; // type:function size:0x28 scope:local align:4
+aNSC_request_show_camera = .text:0x001EA300; // type:function size:0x74 scope:local align:4
+aNSC_Set_ListenAble = .text:0x001EA374; // type:function size:0x24 scope:local align:4
+aNSC_set_sell_camera = .text:0x001EA398; // type:function size:0x94 scope:local align:4
+aNSC_sell_camera = .text:0x001EA42C; // type:function size:0xA0 scope:local align:4
+aNSC_talk_demo_proc = .text:0x001EA4CC; // type:function size:0x70 scope:local align:4
+aNSC_set_stop_spd = .text:0x001EA53C; // type:function size:0x1C scope:local align:4
+aNSC_set_walk_spd = .text:0x001EA558; // type:function size:0x2C scope:local align:4
+aNSC_set_run_spd = .text:0x001EA584; // type:function size:0x2C scope:local align:4
+aNSC_getP_free_ftr_order = .text:0x001EA5B0; // type:function size:0x38 scope:local align:4
+aNSC_set_ftr_order = .text:0x001EA5E8; // type:function size:0x4C scope:local align:4
+aNSC_set_last_day_str = .text:0x001EA634; // type:function size:0x54 scope:local align:4
+aNSC_set_pw_name_str = .text:0x001EA688; // type:function size:0x5C scope:local align:4
+aNSC_set_value_str = .text:0x001EA6E4; // type:function size:0x5C scope:local align:4
+aNSC_set_item_name_str = .text:0x001EA740; // type:function size:0x64 scope:local align:4
+aNSC_set_item_str = .text:0x001EA7A4; // type:function size:0x58 scope:local align:4
+aNSC_set_pw_password_str = .text:0x001EA7FC; // type:function size:0x60 scope:local align:4
+aNSC_set_pw_info_str = .text:0x001EA85C; // type:function size:0x68 scope:local align:4
+aNSC_pc_check_password_famicom = .text:0x001EA8C4; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password_npc = .text:0x001EA90C; // type:function size:0x6C scope:local align:4
+aNSC_pc_check_password_card_e = .text:0x001EA978; // type:function size:0x8 scope:local align:4
+aNSC_pc_check_password_magazine = .text:0x001EA980; // type:function size:0x74 scope:local align:4
+aNSC_pc_check_password_card_e_mini = .text:0x001EA9F4; // type:function size:0x18 scope:local align:4
+aNSC_pc_check_password_user = .text:0x001EAA0C; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password = .text:0x001EAA54; // type:function size:0xC4 scope:local align:4
+aNSC_check_possession_item_make_password = .text:0x001EAB18; // type:function size:0xAC scope:local align:4
+aNSC_set_buy_sum_str = .text:0x001EABC4; // type:function size:0xD4 scope:local align:4
+aNSC_decide_next_move_act = .text:0x001EAC98; // type:function size:0x184 scope:local align:4
+aNSC_set_zone_data = .text:0x001EAE1C; // type:function size:0x88 scope:local align:4
+aNSC_set_player_angl = .text:0x001EAEA4; // type:function size:0xC scope:local align:4
+aNSC_money_check = .text:0x001EAEB0; // type:function size:0x20 scope:local align:4
+aNSC_get_sell_price = .text:0x001EAED0; // type:function size:0x20 scope:local align:4
+aNSC_check_money_overflow = .text:0x001EAEF0; // type:function size:0x94 scope:local align:4
+aNSC_check_buy_item_sub = .text:0x001EAF84; // type:function size:0xA4 scope:local align:4
+aNSC_check_buy_paper = .text:0x001EB028; // type:function size:0xF0 scope:local align:4
+aNSC_check_buy_item_single = .text:0x001EB118; // type:function size:0x118 scope:local align:4
+aNSC_check_buy_item_plural = .text:0x001EB230; // type:function size:0x8C scope:local align:4
+aNSC_check_buy_item = .text:0x001EB2BC; // type:function size:0x34 scope:local align:4
+aNSC_check_item_with_ticket = .text:0x001EB2F0; // type:function size:0x80 scope:local align:4
+aNSC_setup_ticket_remain = .text:0x001EB370; // type:function size:0x48 scope:local align:4
+aNSC_check_same_month_ticket = .text:0x001EB3B8; // type:function size:0x64 scope:local align:4
+aNSC_get_msg_no = .text:0x001EB41C; // type:function size:0x38 scope:local align:4
+aNSC_Set_continue_msg_num = .text:0x001EB454; // type:function size:0x40 scope:local align:4
+aNSC_ChangeMsgData = .text:0x001EB494; // type:function size:0x40 scope:local align:4
+aNSC_set_player_angle = .text:0x001EB4D4; // type:function size:0x108 scope:local align:4
+aNSC_set_talk_info_show_item = .text:0x001EB5DC; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_show_cloth = .text:0x001EB614; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_sell_item = .text:0x001EB64C; // type:function size:0xC0 scope:local align:4
+aNSC_set_talk_info_message_ctrl = .text:0x001EB70C; // type:function size:0x28 scope:local align:4
+aNSC_set_talk_info_fukubiki = .text:0x001EB734; // type:function size:0x2C scope:global align:4
+aNSC_message_ctrl_force_talk_start_normal_day = .text:0x001EB760; // type:function size:0xAC scope:global align:4
+aNSC_message_ctrl_force_talk_start_fukubiki_day = .text:0x001EB80C; // type:function size:0x24 scope:global align:4
+aNSC_message_ctrl_norm_talk_start_normal_day = .text:0x001EB830; // type:function size:0x24 scope:global align:4
+aNSC_message_ctrl_norm_talk_start_fukubiki_day = .text:0x001EB854; // type:function size:0x24 scope:global align:4
+aNSC_message_ctrl_talk_request_normal_day = .text:0x001EB878; // type:function size:0x150 scope:global align:4
+aNSC_message_ctrl_talk_request_fukubiki_day = .text:0x001EB9C8; // type:function size:0xAC scope:global align:4
+aNSC_message_ctrl_sub = .text:0x001EBA74; // type:function size:0x1F0 scope:global align:4
+aNSC_message_ctrl = .text:0x001EBC64; // type:function size:0xF0 scope:local align:4
+aNSC_buy_item_single = .text:0x001EBD54; // type:function size:0xF0 scope:local align:4
+aNSC_buy_paper = .text:0x001EBE44; // type:function size:0x110 scope:local align:4
+aNSC_buy_item_only_one = .text:0x001EBF54; // type:function size:0x210 scope:local align:4
+aNSC_set_talk_info_start_wait = .text:0x001EC164; // type:function size:0x54 scope:local align:4
+aNSC_start_wait = .text:0x001EC1B8; // type:function size:0x84 scope:local align:4
+aNSC_say_hello_approach = .text:0x001EC23C; // type:function size:0x98 scope:local align:4
+aNSC_say_hello_end_wait = .text:0x001EC2D4; // type:function size:0x74 scope:local align:4
+aNSC_set_talk_info_request_Q_start_wait = .text:0x001EC348; // type:function size:0x30 scope:local align:4
+aNSC_request_Q_start_wait = .text:0x001EC378; // type:function size:0x84 scope:local align:4
+aNSC_request_Q_answer_wait = .text:0x001EC3FC; // type:function size:0x114 scope:local align:4
+aNSC_request_Q_answer_wait2 = .text:0x001EC510; // type:function size:0x190 scope:local align:4
+aNSC_request_Q_end_wait = .text:0x001EC6A0; // type:function size:0x74 scope:local align:4
+aNSC_answer_buy_item = .text:0x001EC714; // type:function size:0x7C scope:local align:4
+aNSC_buy_menu_open_wait = .text:0x001EC790; // type:function size:0x58 scope:local align:4
+aNSC_buy_menu_close_wait = .text:0x001EC7E8; // type:function size:0x34 scope:local align:4
+aNSC_msg_win_open_wait = .text:0x001EC81C; // type:function size:0xC8 scope:local align:4
+aNSC_buy_sum_check = .text:0x001EC8E4; // type:function size:0xFC scope:local align:4
+aNSC_buy_check = .text:0x001EC9E0; // type:function size:0x280 scope:local align:4
+aNSC_buy_after_service = .text:0x001ECC60; // type:function size:0x7C scope:local align:4
+aNSC_buy_continue_check = .text:0x001ECCDC; // type:function size:0xEC scope:local align:4
+aNSC_receive_check = .text:0x001ECDC8; // type:function size:0xA4 scope:local align:4
+aNSC_msg_win_open_wait2 = .text:0x001ECE6C; // type:function size:0xC8 scope:local align:4
+aNSC_order_check = .text:0x001ECF34; // type:function size:0xFC scope:local align:4
+aNSC_sell_check_before = .text:0x001ED030; // type:function size:0x68 scope:local align:4
+aNSC_sell_check = .text:0x001ED098; // type:function size:0xB8 scope:local align:4
+aNSC_sell_answer0 = .text:0x001ED150; // type:function size:0x234 scope:local align:4
+aNSC_sell_item_with_ticket = .text:0x001ED384; // type:function size:0xB8 scope:local align:4
+aNSC_show_item_check = .text:0x001ED43C; // type:function size:0x1CC scope:local align:4
+aNSC_chg_cloth_start_wait = .text:0x001ED608; // type:function size:0xC8 scope:local align:4
+aNSC_chg_cloth_end_wait = .text:0x001ED6D0; // type:function size:0x5C scope:local align:4
+aNSC_pw_entry_send_addr_start_wait = .text:0x001ED72C; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait = .text:0x001ED7A4; // type:function size:0xAC scope:local align:4
+aNSC_pw_send_addr_check = .text:0x001ED850; // type:function size:0xDC scope:local align:4
+aNSC_pw_sel_item_start_wait = .text:0x001ED92C; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait2 = .text:0x001ED9A4; // type:function size:0xB0 scope:local align:4
+aNSC_pw_send_check = .text:0x001EDA54; // type:function size:0x12C scope:local align:4
+aNSC_pw_retry_sel_item_check = .text:0x001EDB80; // type:function size:0xC8 scope:local align:4
+aNSC_pc_input_pw_start_wait = .text:0x001EDC48; // type:function size:0x78 scope:local align:4
+aNSC_pc_msg_win_open_wait = .text:0x001EDCC0; // type:function size:0x94 scope:local align:4
+aNSC_pc_retry_input_pw_check = .text:0x001EDD54; // type:function size:0xF4 scope:local align:4
+aNSC_pc_present_start_wait = .text:0x001EDE48; // type:function size:0x5C scope:local align:4
+aNSC_pc_present_trans_takeout = .text:0x001EDEA4; // type:function size:0xDC scope:local align:4
+aNSC_pc_present_trans_wait = .text:0x001EDF80; // type:function size:0x40 scope:local align:4
+aNSC_pc_present_end_wait = .text:0x001EDFC0; // type:function size:0x68 scope:local align:4
+aNSC_wait = .text:0x001EE028; // type:function size:0x78 scope:local align:4
+aNSC_walk_pl_other_zone = .text:0x001EE0A0; // type:function size:0x78 scope:local align:4
+aNSC_turn = .text:0x001EE118; // type:function size:0x98 scope:local align:4
+aNSC_set_talk_info_goodbye_wait = .text:0x001EE1B0; // type:function size:0x30 scope:local align:4
+aNSC_goodbye_wait = .text:0x001EE1E0; // type:function size:0xA0 scope:local align:4
+aNSC_goodbye_wait2 = .text:0x001EE280; // type:function size:0x2C scope:global align:4
+aNSC_say_goodbye = .text:0x001EE2AC; // type:function size:0x60 scope:local align:4
+aNSC_exit_wait = .text:0x001EE30C; // type:function size:0x6C scope:local align:4
+aNSC_say_hello_approach_init = .text:0x001EE378; // type:function size:0x20 scope:local align:4
+aNSC_say_hello_end_wait_init = .text:0x001EE398; // type:function size:0x28 scope:local align:4
+aNSC_request_Q_answer_wait_init = .text:0x001EE3C0; // type:function size:0x40 scope:local align:4
+aNSC_request_Q_end_wait_init = .text:0x001EE400; // type:function size:0x20 scope:local align:4
+aNSC_answer_buy_item_init = .text:0x001EE420; // type:function size:0x2C scope:local align:4
+aNSC_buy_menu_open_wait_init = .text:0x001EE44C; // type:function size:0x24 scope:local align:4
+aNSC_buy_menu_close_wait_init = .text:0x001EE470; // type:function size:0x44 scope:local align:4
+aNSC_msg_win_open_wait_init = .text:0x001EE4B4; // type:function size:0x24 scope:local align:4
+aNSC_buy_sum_check_init = .text:0x001EE4D8; // type:function size:0x2C scope:local align:4
+aNSC_buy_check_init = .text:0x001EE504; // type:function size:0xF8 scope:local align:4
+aNSC_buy_after_service_init = .text:0x001EE5FC; // type:function size:0x2C scope:local align:4
+aNSC_order_select_menu_close_wait_init = .text:0x001EE628; // type:function size:0x44 scope:local align:4
+aNSC_order_check_init = .text:0x001EE66C; // type:function size:0x2C scope:local align:4
+aNSC_sell_check_before_init = .text:0x001EE698; // type:function size:0x40 scope:local align:4
+aNSC_sell_answer0_init = .text:0x001EE6D8; // type:function size:0x118 scope:local align:4
+aNSC_sell_answer1_init = .text:0x001EE7F0; // type:function size:0x34 scope:local align:4
+aNSC_sell_item_init = .text:0x001EE824; // type:function size:0x64 scope:local align:4
+aNSC_sell_item_with_ticket_init = .text:0x001EE888; // type:function size:0x50 scope:local align:4
+aNSC_sell_refuse0_init = .text:0x001EE8D8; // type:function size:0xC scope:local align:4
+aNSC_show_item_check_init = .text:0x001EE8E4; // type:function size:0x20 scope:local align:4
+aNSC_chg_cloth_start_wait_init = .text:0x001EE904; // type:function size:0x24 scope:local align:4
+aNSC_pw_entry_send_addr_start_wait_init = .text:0x001EE928; // type:function size:0x2C scope:local align:4
+aNSC_pw_make_menu_close_wait_init = .text:0x001EE954; // type:function size:0x64 scope:local align:4
+aNSC_pw_send_addr_check_init = .text:0x001EE9B8; // type:function size:0x20 scope:local align:4
+aNSC_pw_sel_item_menu_close_wait_init = .text:0x001EE9D8; // type:function size:0x44 scope:local align:4
+aNSC_pc_input_pw_start_wait_init = .text:0x001EEA1C; // type:function size:0x3C scope:local align:4
+aNSC_pc_chk_menu_close_wait_init = .text:0x001EEA58; // type:function size:0x48 scope:local align:4
+aNSC_pc_present_trans_takeout_init = .text:0x001EEAA0; // type:function size:0x88 scope:local align:4
+aNSC_pc_present_end_wait_init = .text:0x001EEB28; // type:function size:0x10 scope:local align:4
+aNSC_wait_init = .text:0x001EEB38; // type:function size:0x20 scope:local align:4
+aNSC_walk_pl_same_zone_init = .text:0x001EEB58; // type:function size:0x20 scope:local align:4
+aNSC_run_pl_same_zone_init = .text:0x001EEB78; // type:function size:0x20 scope:local align:4
+aNSC_goodbye_wait_init = .text:0x001EEB98; // type:function size:0x20 scope:local align:4
+aNSC_say_goodbye_init = .text:0x001EEBB8; // type:function size:0x24 scope:local align:4
+aNSC_init_proc = .text:0x001EEBDC; // type:function size:0x34 scope:local align:4
+aNSC_setupAction = .text:0x001EEC10; // type:function size:0x68 scope:local align:4
+aNMC_actor_ct = .text:0x001EEC78; // type:function size:0xB0 scope:global align:4
+aNMC_actor_save = .text:0x001EED28; // type:function size:0x38 scope:global align:4
+aNMC_actor_dt = .text:0x001EED60; // type:function size:0x50 scope:global align:4
+aNMC_actor_init = .text:0x001EEDB0; // type:function size:0x38 scope:global align:4
+aNMC_actor_draw = .text:0x001EEDE8; // type:function size:0x38 scope:global align:4
+aNMC_set_painter_name_str = .text:0x001EEE20; // type:function size:0x3C scope:global align:4
+aNMC_set_talk_info = .text:0x001EEE5C; // type:function size:0x98 scope:global align:4
+aNMC_talk_request = .text:0x001EEEF4; // type:function size:0x30 scope:global align:4
+aNMC_talk_init = .text:0x001EEF24; // type:function size:0x3C scope:global align:4
+aNMC_talk_end_chk = .text:0x001EEF60; // type:function size:0x44 scope:global align:4
+aNMC_actor_move = .text:0x001EEFA4; // type:function size:0x38 scope:global align:4
+aNM2_actor_ct = .text:0x001EEFDC; // type:function size:0x1BC scope:global align:4
+aNM2_actor_save = .text:0x001EF198; // type:function size:0x38 scope:global align:4
+aNM2_actor_dt = .text:0x001EF1D0; // type:function size:0x78 scope:global align:4
+aNM2_actor_init = .text:0x001EF248; // type:function size:0x38 scope:global align:4
+aNM2_actor_draw = .text:0x001EF280; // type:function size:0x38 scope:global align:4
+aNM2_set_animation = .text:0x001EF2B8; // type:function size:0x50 scope:global align:4
+aNM2_set_camera = .text:0x001EF308; // type:function size:0x37C scope:global align:4
+aNM2_set_camera_eyes = .text:0x001EF684; // type:function size:0x44 scope:global align:4
+aNM2_set_walk_spd = .text:0x001EF6C8; // type:function size:0x2C scope:global align:4
+aNM2_set_stop_spd = .text:0x001EF6F4; // type:function size:0x1C scope:global align:4
+aNM2_talk_demo_proc = .text:0x001EF710; // type:function size:0x5C scope:global align:4
+aNM2_count_player_num_nextland = .text:0x001EF76C; // type:function size:0x80 scope:global align:4
+aNM2_count_player_num_beforeland = .text:0x001EF7EC; // type:function size:0x84 scope:global align:4
+aNM2_set_free_str = .text:0x001EF870; // type:function size:0x154 scope:global align:4
+aNM2_GetBeforePrivateIdx = .text:0x001EF9C4; // type:function size:0x84 scope:global align:4
+aNM2_get_msg_no_mishiranuneko_talk_start = .text:0x001EFA48; // type:function size:0x70 scope:global align:4
+aNM2_chg_cond_keitai = .text:0x001EFAB8; // type:function size:0x70 scope:global align:4
+aNM2_make_shasho = .text:0x001EFB28; // type:function size:0x108 scope:global align:4
+aNM2_chk_mask_texture = .text:0x001EFC30; // type:function size:0x3C scope:global align:4
+aNM2_set_next_village_map = .text:0x001EFC6C; // type:function size:0x104 scope:global align:4
+aNM2_set_talk_info_announce_start_wait = .text:0x001EFD70; // type:function size:0x94 scope:global align:4
+aNM2_announce_start_wait = .text:0x001EFE04; // type:function size:0xC0 scope:global align:4
+aNM2_save_start_wait = .text:0x001EFEC4; // type:function size:0x90 scope:global align:4
+aNM2_save_end_wait = .text:0x001EFF54; // type:function size:0xE8 scope:global align:4
+aNM2_announce_end_wait = .text:0x001F003C; // type:function size:0x68 scope:global align:4
+aNM2_walk_deck = .text:0x001F00A4; // type:function size:0x38 scope:global align:4
+aNM2_turn_deck = .text:0x001F00DC; // type:function size:0x70 scope:global align:4
+aNM2_keitai_off_start_wait = .text:0x001F014C; // type:function size:0x50 scope:global align:4
+aNM2_keitai_off_end_wait = .text:0x001F019C; // type:function size:0x30 scope:global align:4
+aNM2_enter = .text:0x001F01CC; // type:function size:0xE0 scope:global align:4
+aNM2_approach = .text:0x001F02AC; // type:function size:0x84 scope:global align:4
+aNM2_set_talk_info_talk_start_wait = .text:0x001F0330; // type:function size:0x9C scope:global align:4
+aNM2_talk_start_wait = .text:0x001F03CC; // type:function size:0x98 scope:global align:4
+aNM2_set_talk_info_talk_start_wait2 = .text:0x001F0464; // type:function size:0x54 scope:global align:4
+aNM2_talk_start_wait2 = .text:0x001F04B8; // type:function size:0x98 scope:global align:4
+aNM2_sitdown_start_wait = .text:0x001F0550; // type:function size:0x54 scope:global align:4
+aNM2_sitdown = .text:0x001F05A4; // type:function size:0x98 scope:global align:4
+aNM2_sdon_and_pb_wait = .text:0x001F063C; // type:function size:0x78 scope:global align:4
+aNM2_draw_menu_open_wait = .text:0x001F06B4; // type:function size:0x54 scope:global align:4
+aNM2_draw_menu_close_wait = .text:0x001F0708; // type:function size:0x30 scope:global align:4
+aNM2_msg_win_open_wait = .text:0x001F0738; // type:function size:0xAC scope:global align:4
+aNM2_talk_end_wait = .text:0x001F07E4; // type:function size:0x58 scope:global align:4
+aNM2_announce_start_wait_init = .text:0x001F083C; // type:function size:0x1C scope:global align:4
+aNM2_announce_start_wait2_init = .text:0x001F0858; // type:function size:0x80 scope:global align:4
+aNM2_walk_deck_init = .text:0x001F08D8; // type:function size:0x34 scope:global align:4
+aNM2_turn_deck_init = .text:0x001F090C; // type:function size:0x38 scope:global align:4
+aNM2_keitai_off_start_wait_init = .text:0x001F0944; // type:function size:0x1C scope:global align:4
+aNM2_keitai_off_end_wait_init = .text:0x001F0960; // type:function size:0x24 scope:global align:4
+aNM2_approach_init = .text:0x001F0984; // type:function size:0x38 scope:global align:4
+aNM2_talk_start_wait_init = .text:0x001F09BC; // type:function size:0x48 scope:global align:4
+aNM2_talk_start_wait2_init = .text:0x001F0A04; // type:function size:0x44 scope:global align:4
+aNM2_sitdown_start_wait_init = .text:0x001F0A48; // type:function size:0xC scope:global align:4
+aNM2_sitdown_init = .text:0x001F0A54; // type:function size:0x44 scope:global align:4
+aNM2_draw_menu_open_wait_init = .text:0x001F0A98; // type:function size:0x38 scope:global align:4
+aNM2_draw_menu_close_wait_init = .text:0x001F0AD0; // type:function size:0x30 scope:global align:4
+aNM2_msg_win_open_wait_init = .text:0x001F0B00; // type:function size:0x3C scope:global align:4
+aNM2_talk_end_wait_init = .text:0x001F0B3C; // type:function size:0x40 scope:global align:4
+aNM2_scene_change_wait_init = .text:0x001F0B7C; // type:function size:0x80 scope:global align:4
+aNM2_init_proc = .text:0x001F0BFC; // type:function size:0x34 scope:global align:4
+aNM2_setupAction = .text:0x001F0C30; // type:function size:0x68 scope:global align:4
+aNM2_actor_move = .text:0x001F0C98; // type:function size:0xAC scope:global align:4
+aNNW_actor_ct = .text:0x001F0D44; // type:function size:0xA4 scope:global align:4
+aNNW_actor_save = .text:0x001F0DE8; // type:function size:0x20 scope:global align:4
+aNNW_actor_dt = .text:0x001F0E08; // type:function size:0x38 scope:global align:4
+aNNW_actor_init = .text:0x001F0E40; // type:function size:0x38 scope:global align:4
+aNNW_set_request_act = .text:0x001F0E78; // type:function size:0x94 scope:global align:4
+aNNW_actor_move = .text:0x001F0F0C; // type:function size:0x38 scope:global align:4
+aNNW_actor_draw = .text:0x001F0F44; // type:function size:0x38 scope:global align:4
+aNNW_gba_init = .text:0x001F0F7C; // type:function size:0x20 scope:global align:4
+aNNW_gba_trance_data_init = .text:0x001F0F9C; // type:function size:0x9C scope:global align:4
+aNNW_gba_trance_data_clear = .text:0x001F1038; // type:function size:0x30 scope:global align:4
+aNNW_gba_open_submenu = .text:0x001F1068; // type:function size:0x34 scope:global align:4
+aNNW_gba_trance_data_end = .text:0x001F109C; // type:function size:0x68 scope:global align:4
+aNNW_check_GBA = .text:0x001F1104; // type:function size:0x78 scope:global align:4
+aNNW_mGcgba_boot = .text:0x001F117C; // type:function size:0x84 scope:global align:4
+aNNW_SendPrg = .text:0x001F1200; // type:function size:0x80 scope:global align:4
+aNNW_SendData = .text:0x001F1280; // type:function size:0x7C scope:global align:4
+aNNW_RecvData = .text:0x001F12FC; // type:function size:0x7C scope:global align:4
+aNNW_IsEditor = .text:0x001F1378; // type:function size:0x98 scope:global align:4
+aNNW_gba_open_submenu_card_e = .text:0x001F1410; // type:function size:0x34 scope:global align:4
+aNNW_Send_card_e = .text:0x001F1444; // type:function size:0x54 scope:global align:4
+aNNW_RecvData_card_e = .text:0x001F1498; // type:function size:0x80 scope:global align:4
+aNNW_get_sister_message = .text:0x001F1518; // type:function size:0x3C scope:global align:4
+aNNW_day_day = .text:0x001F1554; // type:function size:0x78 scope:global align:4
+aNNW_get_make_sister_message = .text:0x001F15CC; // type:function size:0x160 scope:global align:4
+aNNW_get_next_sister_message = .text:0x001F172C; // type:function size:0x48 scope:global align:4
+aNNW_get_sister_name = .text:0x001F1774; // type:function size:0x24 scope:global align:4
+aNNW_search_sister = .text:0x001F1798; // type:function size:0x2C scope:global align:4
+aNNW_turn_player = .text:0x001F17C4; // type:function size:0x64 scope:global align:4
+aNNW_trend_check_cloth = .text:0x001F1828; // type:function size:0x94 scope:global align:4
+aNNW_trend_delete_cloth = .text:0x001F18BC; // type:function size:0x90 scope:global align:4
+aNNW_trend_check_umbrella = .text:0x001F194C; // type:function size:0x94 scope:global align:4
+aNNW_trend_delete_umbrella = .text:0x001F19E0; // type:function size:0x90 scope:global align:4
+aNNW_first_talk_check = .text:0x001F1A70; // type:function size:0x1C scope:global align:4
+aNNW_first_talk_end = .text:0x001F1A8C; // type:function size:0x4C scope:global align:4
+aNNW_set_trend_set_string = .text:0x001F1AD8; // type:function size:0x9C scope:global align:4
+aNNW_set_trend_cloth_message = .text:0x001F1B74; // type:function size:0xDC scope:global align:4
+aNNW_set_trend_umbrella_message = .text:0x001F1C50; // type:function size:0xE0 scope:global align:4
+aNNW_change_camera_priority_demo = .text:0x001F1D30; // type:function size:0x90 scope:global align:4
+aNNW_change_camera_return_demo = .text:0x001F1DC0; // type:function size:0x64 scope:global align:4
+aNNW_set_6_ways = .text:0x001F1E24; // type:function size:0xEC scope:global align:4
+aNNW_set_5_ways = .text:0x001F1F10; // type:function size:0x8C scope:global align:4
+aNNW_talk_what_happen_first = .text:0x001F1F9C; // type:function size:0x84 scope:global align:4
+aNNW_talk_what_happen = .text:0x001F2020; // type:function size:0x84 scope:global align:4
+aNNW_talk_other_happen = .text:0x001F20A4; // type:function size:0x7C scope:global align:4
+aNNW_talk_other_happen2 = .text:0x001F2120; // type:function size:0xF8 scope:global align:4
+aNNW_talk_check_listen = .text:0x001F2218; // type:function size:0xA4 scope:global align:4
+aNNW_talk_listen_sister = .text:0x001F22BC; // type:function size:0x6C scope:global align:4
+aNNW_talk_listen_sister2 = .text:0x001F2328; // type:function size:0x60 scope:global align:4
+aNNW_talk_listen_sister3 = .text:0x001F2388; // type:function size:0x60 scope:global align:4
+aNNW_talk_listen_sister4 = .text:0x001F23E8; // type:function size:0x70 scope:global align:4
+aNNW_talk_design_check = .text:0x001F2458; // type:function size:0xD4 scope:global align:4
+aNNW_talk_design_which = .text:0x001F252C; // type:function size:0x78 scope:global align:4
+aNNW_talk_design_open = .text:0x001F25A4; // type:function size:0xA8 scope:global align:4
+aNNW_talk_design_close = .text:0x001F264C; // type:function size:0xB4 scope:global align:4
+aNNW_talk_design_close2 = .text:0x001F2700; // type:function size:0xA4 scope:global align:4
+aNNW_talk_design_close2_end = .text:0x001F27A4; // type:function size:0x4C scope:global align:4
+aNNW_talk_design_open3 = .text:0x001F27F0; // type:function size:0x68 scope:global align:4
+aNNW_talk_design_close3 = .text:0x001F2858; // type:function size:0xD0 scope:global align:4
+aNNW_talk_trade_check = .text:0x001F2928; // type:function size:0xD4 scope:global align:4
+aNNW_talk_trade_which = .text:0x001F29FC; // type:function size:0x54 scope:global align:4
+aNNW_talk_trade_close = .text:0x001F2A50; // type:function size:0x268 scope:global align:4
+aNNW_talk_give_admission = .text:0x001F2CB8; // type:function size:0xC8 scope:global align:4
+aNNW_talk_gba_which = .text:0x001F2D80; // type:function size:0xD4 scope:global align:4
+aNNW_talk_gba_tool_bf = .text:0x001F2E54; // type:function size:0x94 scope:global align:4
+aNNW_talk_gba_tool = .text:0x001F2EE8; // type:function size:0xD0 scope:global align:4
+aNNW_talk_gba_tool_0 = .text:0x001F2FB8; // type:function size:0xA0 scope:global align:4
+aNNW_talk_gba_tool_af = .text:0x001F3058; // type:function size:0xA0 scope:global align:4
+aNNW_talk_gba_tool_af2 = .text:0x001F30F8; // type:function size:0xA0 scope:global align:4
+aNNW_talk_gba_tool_af3 = .text:0x001F3198; // type:function size:0xC0 scope:global align:4
+aNNW_talk_gba_load_bf = .text:0x001F3258; // type:function size:0x8C scope:global align:4
+aNNW_talk_gba_load_check = .text:0x001F32E4; // type:function size:0xD4 scope:global align:4
+aNNW_talk_gba_load_af = .text:0x001F33B8; // type:function size:0xC8 scope:global align:4
+aNNW_talk_trend_cloth = .text:0x001F3480; // type:function size:0x84 scope:global align:4
+aNNW_talk_byebye = .text:0x001F3504; // type:function size:0x58 scope:global align:4
+aNNW_talk_exit = .text:0x001F355C; // type:function size:0x74 scope:global align:4
+aNNW_talk_cloth_change = .text:0x001F35D0; // type:function size:0x74 scope:global align:4
+aNNW_talk_cloth_wait = .text:0x001F3644; // type:function size:0xE8 scope:global align:4
+aNNW_talk_card_e_load_prg_bf_0 = .text:0x001F372C; // type:function size:0x88 scope:global align:4
+aNNW_talk_card_e_load_prg_bf_1 = .text:0x001F37B4; // type:function size:0xB4 scope:global align:4
+aNNW_talk_card_e_load_prg_0 = .text:0x001F3868; // type:function size:0xB8 scope:global align:4
+aNNW_talk_card_e_load_prg_af = .text:0x001F3920; // type:function size:0xC0 scope:global align:4
+aNNW_talk_card_e_load_bf_0_0 = .text:0x001F39E0; // type:function size:0x94 scope:global align:4
+aNNW_talk_card_e_load_bf_0 = .text:0x001F3A74; // type:function size:0x88 scope:global align:4
+aNNW_talk_card_e_load_bf_1 = .text:0x001F3AFC; // type:function size:0xB4 scope:global align:4
+aNNW_talk_card_e_load = .text:0x001F3BB0; // type:function size:0xB4 scope:global align:4
+aNNW_talk_cporiginal0 = .text:0x001F3C64; // type:function size:0x84 scope:global align:4
+aNNW_talk_cporiginal1 = .text:0x001F3CE8; // type:function size:0x70 scope:global align:4
+aNNW_talk_cporiginal2 = .text:0x001F3D58; // type:function size:0x8C scope:global align:4
+aNNW_talk_gba_menu0 = .text:0x001F3DE4; // type:function size:0x64 scope:global align:4
+aNNW_talk_gba_menu1 = .text:0x001F3E48; // type:function size:0x8C scope:global align:4
+aNNW_talk_card_e_menu0 = .text:0x001F3ED4; // type:function size:0x58 scope:global align:4
+aNNW_talk_card_e_menu1 = .text:0x001F3F2C; // type:function size:0x60 scope:global align:4
+aNNW_talk_card_e_menu2 = .text:0x001F3F8C; // type:function size:0x60 scope:global align:4
+aNNW_talk_ane_0 = .text:0x001F3FEC; // type:function size:0x88 scope:global align:4
+aNNW_talk_ane_1 = .text:0x001F4074; // type:function size:0xB4 scope:global align:4
+aNNW_talk_ane_2 = .text:0x001F4128; // type:function size:0x74 scope:global align:4
+aNNW_talk_ane_3 = .text:0x001F419C; // type:function size:0x8C scope:global align:4
+aNNW_talk_gba_over_save = .text:0x001F4228; // type:function size:0xA0 scope:global align:4
+aNNW_change_talk_proc = .text:0x001F42C8; // type:function size:0x14 scope:global align:4
+aNNW_change_talk_proc_next = .text:0x001F42DC; // type:function size:0x30 scope:global align:4
+aNNW_set_force_talk_info = .text:0x001F430C; // type:function size:0x204 scope:global align:4
+aNNW_force_talk_request = .text:0x001F4510; // type:function size:0x48 scope:global align:4
+aNNW_set_ane_msg = .text:0x001F4558; // type:function size:0xC0 scope:global align:4
+aNNW_set_norm_talk_info = .text:0x001F4618; // type:function size:0x104 scope:global align:4
+aNNW_norm_talk_request = .text:0x001F471C; // type:function size:0x48 scope:global align:4
+aNNW_talk_init = .text:0x001F4764; // type:function size:0x1B8 scope:global align:4
+aNNW_talk_end_chk = .text:0x001F491C; // type:function size:0xDC scope:global align:4
+player_go_away = .text:0x001F49F8; // type:function size:0x40 scope:local align:4
+player_buy = .text:0x001F4A38; // type:function size:0xEC scope:local align:4
+aNNW_get_area = .text:0x001F4B24; // type:function size:0x60 scope:global align:4
+aNNW_next_target = .text:0x001F4B84; // type:function size:0x134 scope:global align:4
+aNNW_next_target2_aNNW_04 = .text:0x001F4CB8; // type:function size:0x114 scope:global align:4
+aNNW_next_target2_aNNW_06 = .text:0x001F4DCC; // type:function size:0x94 scope:global align:4
+aNNW_next_target2 = .text:0x001F4E60; // type:function size:0x194 scope:global align:4
+aNNW_FrameControl_passCheck_now = .text:0x001F4FF4; // type:function size:0x78 scope:global align:4
+aNNW_my_proc_wait_init = .text:0x001F506C; // type:function size:0x40 scope:global align:4
+aNNW_my_proc_player_init = .text:0x001F50AC; // type:function size:0x7C scope:global align:4
+aNNW_my_proc_turn_p_init = .text:0x001F5128; // type:function size:0xE8 scope:global align:4
+aNNW_my_proc_run_init = .text:0x001F5210; // type:function size:0x50 scope:global align:4
+aNNW_my_proc_turn_init = .text:0x001F5260; // type:function size:0x150 scope:global align:4
+aNNW_my_proc_init = .text:0x001F53B0; // type:function size:0x38 scope:global align:4
+aNNW_my_proc_wait = .text:0x001F53E8; // type:function size:0xBC scope:global align:4
+aNNW_my_proc_player = .text:0x001F54A4; // type:function size:0xA4 scope:global align:4
+aNNW_my_proc_turn_p = .text:0x001F5548; // type:function size:0x3C scope:global align:4
+aNNW_my_proc_run = .text:0x001F5584; // type:function size:0xA4 scope:global align:4
+aNNW_my_proc_turn = .text:0x001F5628; // type:function size:0x3C scope:global align:4
+aNNW_my_proc_main = .text:0x001F5664; // type:function size:0x38 scope:global align:4
+aNNW_omatikudasai2 = .text:0x001F569C; // type:function size:0x9C scope:global align:4
+aNNW_omatikudasai = .text:0x001F5738; // type:function size:0x98 scope:global align:4
+aNNW_ikagadesyou = .text:0x001F57D0; // type:function size:0xA8 scope:global align:4
+aNNW_ainote = .text:0x001F5878; // type:function size:0x80 scope:global align:4
+aNNW_ainote3 = .text:0x001F58F8; // type:function size:0x60 scope:global align:4
+aNNW_misin_wait = .text:0x001F5958; // type:function size:0xA4 scope:global align:4
+aNNW_turn = .text:0x001F59FC; // type:function size:0x44 scope:global align:4
+aNNW_think_main_proc = .text:0x001F5A40; // type:function size:0x48 scope:global align:4
+aNNW_think_init_proc = .text:0x001F5A88; // type:function size:0x1D4 scope:global align:4
+aNNW_normal_wait_init = .text:0x001F5C5C; // type:function size:0x38 scope:global align:4
+aNNW_misin_wait_init = .text:0x001F5C94; // type:function size:0x94 scope:global align:4
+aNNW_ainote_init = .text:0x001F5D28; // type:function size:0x80 scope:global align:4
+aNNW_next_init = .text:0x001F5DA8; // type:function size:0x28 scope:global align:4
+aNNW_turn_init = .text:0x001F5DD0; // type:function size:0x5C scope:global align:4
+aNNW_setup_think_proc = .text:0x001F5E2C; // type:function size:0xA0 scope:global align:4
+aNNW_think_proc = .text:0x001F5ECC; // type:function size:0x40 scope:global align:4
+aNNW_schedule_init_proc = .text:0x001F5F0C; // type:function size:0x4C scope:global align:4
+aNNW_schedule_main_proc = .text:0x001F5F58; // type:function size:0x80 scope:global align:4
+aNNW_schedule_proc = .text:0x001F5FD8; // type:function size:0x40 scope:global align:4
+aNPS_actor_ct = .text:0x001F6018; // type:function size:0x1D0 scope:global align:4
+aNPS_actor_save = .text:0x001F61E8; // type:function size:0x38 scope:global align:4
+aNPS_actor_dt = .text:0x001F6220; // type:function size:0x38 scope:global align:4
+aNPS_actor_init = .text:0x001F6258; // type:function size:0x38 scope:global align:4
+aNPS_actor_move = .text:0x001F6290; // type:function size:0xDC scope:global align:4
+aNPS_actor_draw = .text:0x001F636C; // type:function size:0x38 scope:global align:4
+aNPS_setup_game_start = .text:0x001F63A4; // type:function size:0x88 scope:global align:4
+aNPS_think_main_proc = .text:0x001F642C; // type:function size:0x128 scope:global align:4
+aNPS_think_init_proc = .text:0x001F6554; // type:function size:0x1C scope:global align:4
+aNPS_think_proc = .text:0x001F6570; // type:function size:0x34 scope:global align:4
+aNPS_schedule_init_proc = .text:0x001F65A4; // type:function size:0x6C scope:global align:4
+aNPS_schedule_main_proc = .text:0x001F6610; // type:function size:0x80 scope:global align:4
+aNPS_schedule_proc = .text:0x001F6690; // type:function size:0x34 scope:global align:4
+aNPS_setup_sound_option = .text:0x001F66C4; // type:function size:0xDC scope:global align:4
+aNPS_setup_voice_option = .text:0x001F67A0; // type:function size:0xC8 scope:global align:4
+aNPS_setup_yure_option = .text:0x001F6868; // type:function size:0xBC scope:global align:4
+aNPS_chk_setup_sound = .text:0x001F6924; // type:function size:0x8C scope:global align:4
+aNPS_setup_sound = .text:0x001F69B0; // type:function size:0x40 scope:global align:4
+aNPS_setup_yure = .text:0x001F69F0; // type:function size:0x40 scope:global align:4
+aNPS_setup_voice = .text:0x001F6A30; // type:function size:0x40 scope:global align:4
+aNPS_confirm_input_data = .text:0x001F6A70; // type:function size:0x68 scope:global align:4
+aNPS_confirm_input_data2 = .text:0x001F6AD8; // type:function size:0x68 scope:global align:4
+aNPS_change_talk_proc = .text:0x001F6B40; // type:function size:0x1C scope:global align:4
+aNPS_set_talk_info_talk_request = .text:0x001F6B5C; // type:function size:0x3C scope:global align:4
+aNPS_talk_request = .text:0x001F6B98; // type:function size:0x30 scope:global align:4
+aNPS_talk_init = .text:0x001F6BC8; // type:function size:0x50 scope:global align:4
+aNPS_talk_end_chk = .text:0x001F6C18; // type:function size:0x140 scope:global align:4
+aNPS2_actor_ct = .text:0x001F6D58; // type:function size:0x1E0 scope:global align:4
+aNPS2_actor_save = .text:0x001F6F38; // type:function size:0x38 scope:global align:4
+aNPS2_actor_dt = .text:0x001F6F70; // type:function size:0x38 scope:global align:4
+aNPS2_actor_init = .text:0x001F6FA8; // type:function size:0x38 scope:global align:4
+aNPS2_actor_move = .text:0x001F6FE0; // type:function size:0x80 scope:global align:4
+aNPS2_actor_draw = .text:0x001F7060; // type:function size:0x38 scope:global align:4
+aNPS2_think_main_proc = .text:0x001F7098; // type:function size:0x28 scope:global align:4
+aNPS2_think_init_proc = .text:0x001F70C0; // type:function size:0x18 scope:global align:4
+aNPS2_think_proc = .text:0x001F70D8; // type:function size:0x34 scope:global align:4
+aNPS2_schedule_init_proc = .text:0x001F710C; // type:function size:0x4C scope:global align:4
+aNPS2_schedule_main_proc = .text:0x001F7158; // type:function size:0x80 scope:global align:4
+aNPS2_schedule_proc = .text:0x001F71D8; // type:function size:0x34 scope:global align:4
+aNPS2_set_str_ct_player_name = .text:0x001F720C; // type:function size:0x24 scope:global align:4
+aNPS2_GetCardPrivateNameCopy = .text:0x001F7230; // type:function size:0x20 scope:global align:4
+aNPS2_set_slot_name = .text:0x001F7250; // type:function size:0x50 scope:global align:4
+aNPS2_set_str_cpak_name = .text:0x001F72A0; // type:function size:0x40 scope:global align:4
+aNPS2_card_player_idx = .text:0x001F72E0; // type:function size:0xA8 scope:global align:4
+aNPS2_make_msg = .text:0x001F7388; // type:function size:0x24 scope:global align:4
+aNPS2_Sub_Date = .text:0x001F73AC; // type:function size:0x64 scope:global align:4
+mPO_clear_delivery_mail = .text:0x001F7410; // type:function size:0x98 scope:global align:4
+aNPS2_get_pl_no = .text:0x001F74A8; // type:function size:0x70 scope:global align:4
+aNPS2_set_str_byebye_name = .text:0x001F7518; // type:function size:0x50 scope:global align:4
+aNPS2_player_no_set = .text:0x001F7568; // type:function size:0x74 scope:global align:4
+aNPS2_time_check = .text:0x001F75DC; // type:function size:0xC8 scope:global align:4
+aNPS2_setup_yure_option = .text:0x001F76A4; // type:function size:0xBC scope:global align:4
+aNPS2_setup_sound_option = .text:0x001F7760; // type:function size:0xDC scope:global align:4
+aNPS2_setup_voice_option = .text:0x001F783C; // type:function size:0xC8 scope:global align:4
+aNPS2_count_player_sum = .text:0x001F7904; // type:function size:0x68 scope:global align:4
+aNPS2_copy_player_name = .text:0x001F796C; // type:function size:0x90 scope:global align:4
+aNPS2_copy_player_name2 = .text:0x001F79FC; // type:function size:0x90 scope:global align:4
+aNPS2_copy_hokanohito = .text:0x001F7A8C; // type:function size:0x60 scope:global align:4
+aNPS2_set_choice_str = .text:0x001F7AEC; // type:function size:0x148 scope:global align:4
+aNPS2_set_choice_str2 = .text:0x001F7C34; // type:function size:0xF8 scope:global align:4
+aNPS2_get_free_pl_no = .text:0x001F7D2C; // type:function size:0x60 scope:global align:4
+aNPS2_get_only_one_pl_no = .text:0x001F7D8C; // type:function size:0x60 scope:global align:4
+aNPS2_chk_friendship_npc = .text:0x001F7DEC; // type:function size:0x7C scope:global align:4
+aNPS2_decide_birthday_npc = .text:0x001F7E68; // type:function size:0x10C scope:global align:4
+aNPS2_chk_setup_birthday_demo = .text:0x001F7F74; // type:function size:0xB4 scope:global align:4
+aNPS2_make_door_data = .text:0x001F8028; // type:function size:0x25C scope:local align:4
+aNPS2_setup_game_start = .text:0x001F8284; // type:function size:0x160 scope:local align:4
+aNPS2_setup_load_data = .text:0x001F83E4; // type:function size:0x4C scope:global align:4
+aNPS2_setup_yure = .text:0x001F8430; // type:function size:0x50 scope:global align:4
+aNPS2_setup_sound = .text:0x001F8480; // type:function size:0x50 scope:global align:4
+aNPS2_setup_voice = .text:0x001F84D0; // type:function size:0x50 scope:global align:4
+aNPS2_setup_voice_ok = .text:0x001F8520; // type:function size:0x88 scope:global align:4
+aNPS2_whats_happen = .text:0x001F85A8; // type:function size:0x168 scope:global align:4
+aNPS2_chk_option = .text:0x001F8710; // type:function size:0xD4 scope:global align:4
+aNPS2_chk_option2 = .text:0x001F87E4; // type:function size:0x178 scope:global align:4
+aNPS2_chk_clr_village_data_cartridge = .text:0x001F895C; // type:function size:0xB4 scope:global align:4
+aNPS2_clr_village_data_cartridge = .text:0x001F8A10; // type:function size:0x148 scope:global align:4
+aNPS2_chk_clr_pl_data = .text:0x001F8B58; // type:function size:0xE8 scope:global align:4
+aNPS2_chk_clr_pl_data2 = .text:0x001F8C40; // type:function size:0xB4 scope:global align:4
+aNPS2_chk_clr_pl_data3 = .text:0x001F8CF4; // type:function size:0x138 scope:global align:4
+aNPS2_chk_clr_passport_file = .text:0x001F8E2C; // type:function size:0x9C scope:global align:4
+aNPS2_clr_passport_file = .text:0x001F8EC8; // type:function size:0x134 scope:global align:4
+aNPS2_clr_pl_data = .text:0x001F8FFC; // type:function size:0x180 scope:global align:4
+aNPS2_ti_menu_open_msg_wait = .text:0x001F917C; // type:function size:0x58 scope:global align:4
+aNPS2_ti_menu_open_wait = .text:0x001F91D4; // type:function size:0x58 scope:global align:4
+aNPS2_ti_menu_close_wait = .text:0x001F922C; // type:function size:0x78 scope:global align:4
+aNPS2_select_player = .text:0x001F92A4; // type:function size:0x144 scope:global align:4
+aNPS2_select_card_player = .text:0x001F93E8; // type:function size:0x118 scope:global align:4
+aNPS2_chk_fuzai_player = .text:0x001F9500; // type:function size:0xB0 scope:global align:4
+aNPS2_chk_kitaku_player = .text:0x001F95B0; // type:function size:0xB0 scope:global align:4
+aNPS2_game_start_wait = .text:0x001F9660; // type:function size:0x1F4 scope:global align:4
+aNPS2_return_title = .text:0x001F9854; // type:function size:0x70 scope:global align:4
+aNPS2_clr_pl_data_init = .text:0x001F98C4; // type:function size:0x84 scope:global align:4
+aNPS2_ti_menu_open_wait_init = .text:0x001F9948; // type:function size:0x24 scope:global align:4
+aNPS2_ti_menu_close_wait_init = .text:0x001F996C; // type:function size:0x48 scope:global align:4
+aNPS2_select_player_init = .text:0x001F99B4; // type:function size:0x24 scope:global align:4
+aNPS2_select_card_player_init = .text:0x001F99D8; // type:function size:0x1FC scope:global align:4
+aNPS2_talk_init_proc = .text:0x001F9BD4; // type:function size:0x34 scope:global align:4
+aNPS2_change_talk_proc = .text:0x001F9C08; // type:function size:0x38 scope:global align:4
+aNPS2_set_talk_info_talk_request = .text:0x001F9C40; // type:function size:0x30 scope:global align:4
+aNPS2_talk_request = .text:0x001F9C70; // type:function size:0x30 scope:global align:4
+aNPS2_talk_init = .text:0x001F9CA0; // type:function size:0xAC scope:global align:4
+aNPS2_talk_end_chk = .text:0x001F9D4C; // type:function size:0x74 scope:global align:4
+aPOL_actor_ct = .text:0x001F9DC0; // type:function size:0x144 scope:global align:4
+aPOL_actor_save = .text:0x001F9F04; // type:function size:0x80 scope:global align:4
+aPOL_actor_dt = .text:0x001F9F84; // type:function size:0x38 scope:global align:4
+aPOL_actor_init = .text:0x001F9FBC; // type:function size:0x38 scope:global align:4
+aPOL_actor_draw = .text:0x001F9FF4; // type:function size:0x38 scope:global align:4
+aPOL_set_request_act = .text:0x001FA02C; // type:function size:0x98 scope:global align:4
+aPOL_set_animation = .text:0x001FA0C4; // type:function size:0x7C scope:global align:4
+aPOL_taisou_act_init_proc = .text:0x001FA140; // type:function size:0xA8 scope:global align:4
+aPOL_nemu_act_init_proc = .text:0x001FA1E8; // type:function size:0x30 scope:global align:4
+aPOL_taisou_act_main_proc = .text:0x001FA218; // type:function size:0x5C scope:global align:4
+aPOL_nemu_act_main_proc = .text:0x001FA274; // type:function size:0xA4 scope:global align:4
+aPOL_taisou_act_proc = .text:0x001FA318; // type:function size:0x34 scope:global align:4
+aPOL_nemu_act_proc = .text:0x001FA34C; // type:function size:0x34 scope:global align:4
+aPOL_think_main_proc = .text:0x001FA380; // type:function size:0x194 scope:global align:4
+aPOL_think_init_proc = .text:0x001FA514; // type:function size:0x38 scope:global align:4
+aPOL_think_proc = .text:0x001FA54C; // type:function size:0x34 scope:global align:4
+aPOL_schedule_init_proc = .text:0x001FA580; // type:function size:0x4C scope:global align:4
+aPOL_schedule_main_proc = .text:0x001FA5CC; // type:function size:0x80 scope:global align:4
+aPOL_schedule_proc = .text:0x001FA64C; // type:function size:0x34 scope:global align:4
+aPOL_check_player = .text:0x001FA680; // type:function size:0x64 scope:global align:4
+aPOL_set_force_talk_info_talk_request = .text:0x001FA6E4; // type:function size:0x2C scope:global align:4
+aPOL_set_norm_talk_info_talk_request = .text:0x001FA710; // type:function size:0xEC scope:global align:4
+aPOL_talk_request = .text:0x001FA7FC; // type:function size:0x84 scope:global align:4
+aPOL_talk_init = .text:0x001FA880; // type:function size:0xA8 scope:global align:4
+aPOL_talk_end_chk = .text:0x001FA928; // type:function size:0x70 scope:global align:4
+aPOL_set_npc_block_no_str = .text:0x001FA998; // type:function size:0x9C scope:global align:4
+aPOL_set_event_day_str = .text:0x001FAA34; // type:function size:0x80 scope:global align:4
+aPOL_get_hint_msg_no = .text:0x001FAAB4; // type:function size:0xF8 scope:global align:4
+aPOL_set_select_after_msg = .text:0x001FABAC; // type:function size:0xC8 scope:global align:4
+aPOL_check_select = .text:0x001FAC74; // type:function size:0x68 scope:global align:4
+aPOL_check_select2 = .text:0x001FACDC; // type:function size:0xB4 scope:global align:4
+aPOL_setupAction = .text:0x001FAD90; // type:function size:0x18 scope:global align:4
+aPOL_actor_move = .text:0x001FADA8; // type:function size:0x38 scope:global align:4
+aPOL2_actor_ct = .text:0x001FADE0; // type:function size:0xAC scope:global align:4
+aPOL2_actor_save = .text:0x001FAE8C; // type:function size:0x38 scope:global align:4
+aPOL2_actor_dt = .text:0x001FAEC4; // type:function size:0x38 scope:global align:4
+aPOL2_actor_init = .text:0x001FAEFC; // type:function size:0x38 scope:global align:4
+aPOL2_actor_draw = .text:0x001FAF34; // type:function size:0x38 scope:global align:4
+aPOL2_BGcheck = .text:0x001FAF6C; // type:function size:0x44 scope:global align:4
+aPOL2_set_animation = .text:0x001FAFB0; // type:function size:0x4C scope:global align:4
+aPOL2_set_stop_spd = .text:0x001FAFFC; // type:function size:0x1C scope:global align:4
+aPOL2_set_walk_spd = .text:0x001FB018; // type:function size:0x2C scope:global align:4
+aPOL2_set_run_spd = .text:0x001FB044; // type:function size:0x2C scope:global align:4
+aPOL2_get_zone = .text:0x001FB070; // type:function size:0xAC scope:global align:4
+aPOL2_get_next_zone_move_z = .text:0x001FB11C; // type:function size:0xA4 scope:global align:4
+aPOL2_get_next_zone_sub0 = .text:0x001FB1C0; // type:function size:0xB8 scope:global align:4
+aPOL2_get_next_zone_sub1 = .text:0x001FB278; // type:function size:0xB0 scope:global align:4
+aPOL2_get_next_zone = .text:0x001FB328; // type:function size:0x3C scope:global align:4
+aPOL2_decide_next_move_act = .text:0x001FB364; // type:function size:0x10C scope:global align:4
+aPOL2_search_player = .text:0x001FB470; // type:function size:0x80 scope:global align:4
+aPOL2_search_player2 = .text:0x001FB4F0; // type:function size:0xFC scope:global align:4
+aPOL2_set_zone_data = .text:0x001FB5EC; // type:function size:0x84 scope:global align:4
+aPOL2_set_player_angl = .text:0x001FB670; // type:function size:0xC scope:global align:4
+aPOL2_set_force_talk_info_message_ctrl = .text:0x001FB67C; // type:function size:0x78 scope:global align:4
+aPOL2_set_force_talk_info_message_ctrl2 = .text:0x001FB6F4; // type:function size:0x4C scope:global align:4
+aPOL2_set_norm_talk_info_message_ctrl = .text:0x001FB740; // type:function size:0xB4 scope:global align:4
+aPOL2_message_ctrl = .text:0x001FB7F4; // type:function size:0x12C scope:global align:4
+aPOL2_player_getout_check = .text:0x001FB920; // type:function size:0x7C scope:global align:4
+aPOL2_wait = .text:0x001FB99C; // type:function size:0x144 scope:global align:4
+aPOL2_walk_pl_same_zone = .text:0x001FBAE0; // type:function size:0x74 scope:global align:4
+aPOL2_walk_pl_other_zone = .text:0x001FBB54; // type:function size:0x74 scope:global align:4
+aPOL2_run_pl_same_zone = .text:0x001FBBC8; // type:function size:0x74 scope:global align:4
+aPOL2_run_pl_other_zone = .text:0x001FBC3C; // type:function size:0x74 scope:global align:4
+aPOL2_turn = .text:0x001FBCB0; // type:function size:0x98 scope:global align:4
+aPOL2_check_answer = .text:0x001FBD48; // type:function size:0x168 scope:global align:4
+aPOL2_talk_end_wait = .text:0x001FBEB0; // type:function size:0x5C scope:global align:4
+aPOL2_init_proc = .text:0x001FBF0C; // type:function size:0x34 scope:global align:4
+aPOL2_setupAction = .text:0x001FBF40; // type:function size:0x5C scope:global align:4
+aPOL2_actor_move = .text:0x001FBF9C; // type:function size:0xBC scope:global align:4
+aPG_actor_ct = .text:0x001FC058; // type:function size:0x14C scope:global align:4
+aPG_actor_save = .text:0x001FC1A4; // type:function size:0x38 scope:global align:4
+aPG_actor_dt = .text:0x001FC1DC; // type:function size:0x58 scope:global align:4
+aPG_actor_init = .text:0x001FC234; // type:function size:0x38 scope:global align:4
+aPG_actor_draw = .text:0x001FC26C; // type:function size:0x38 scope:global align:4
+aPG_Set_continue_msg_num = .text:0x001FC2A4; // type:function size:0x44 scope:global align:4
+aPG_ChangeMsgData = .text:0x001FC2E8; // type:function size:0x50 scope:global align:4
+aPG_set_mail_address = .text:0x001FC338; // type:function size:0x3C scope:global align:4
+aPG_set_loan_balance = .text:0x001FC374; // type:function size:0xF4 scope:global align:4
+aPG_set_post_status = .text:0x001FC468; // type:function size:0x8C scope:global align:4
+aPG_office_space_check = .text:0x001FC4F4; // type:function size:0x8C scope:global align:4
+aPG_check_destination_mailbox = .text:0x001FC580; // type:function size:0x58 scope:global align:4
+aPG_check_destination = .text:0x001FC5D8; // type:function size:0xC0 scope:global align:4
+aPG_ask_for_business = .text:0x001FC698; // type:function size:0x138 scope:global align:4
+aPG_msg_win_open_wait = .text:0x001FC7D0; // type:function size:0x68 scope:global align:4
+aPG_receive_demo_start_wait = .text:0x001FC838; // type:function size:0x78 scope:global align:4
+aPG_receive_demo_end_wait = .text:0x001FC8B0; // type:function size:0x44 scope:global align:4
+aPG_receive_after_msg_end_wait = .text:0x001FC8F4; // type:function size:0x50 scope:global align:4
+aPG_refuse_demo_start_wait = .text:0x001FC944; // type:function size:0x48 scope:global align:4
+aPG_refuse_demo_stop_wait = .text:0x001FC98C; // type:function size:0x40 scope:global align:4
+aPG_refuse_msg_end_wait = .text:0x001FC9CC; // type:function size:0x64 scope:global align:4
+aPG_refuse_demo_after = .text:0x001FCA30; // type:function size:0xA8 scope:global align:4
+aPG_refuse_after_msg_end_wait = .text:0x001FCAD8; // type:function size:0x64 scope:global align:4
+aPG_msg_win_close_wait = .text:0x001FCB3C; // type:function size:0x60 scope:global align:4
+aPG_repay_before = .text:0x001FCB9C; // type:function size:0x78 scope:global align:4
+aPG_repay_menu_close_wait = .text:0x001FCC14; // type:function size:0xE4 scope:global align:4
+aPG_repay_after = .text:0x001FCCF8; // type:function size:0x5C scope:global align:4
+aPG_card_err_otherland = .text:0x001FCD54; // type:function size:0x68 scope:global align:4
+aPG_card_check_condition = .text:0x001FCDBC; // type:function size:0x7C scope:global align:4
+aPG_card_save_menu_close_wait = .text:0x001FCE38; // type:function size:0x78 scope:global align:4
+aPG_receive_menu_close_wait = .text:0x001FCEB0; // type:function size:0x124 scope:global align:4
+aPG_check_receive_after = .text:0x001FCFD4; // type:function size:0x94 scope:global align:4
+aPG_deposit_before = .text:0x001FD068; // type:function size:0x78 scope:global align:4
+aPG_deposit_menu_close_wait = .text:0x001FD0E0; // type:function size:0xB4 scope:global align:4
+aPG_deposit_after = .text:0x001FD194; // type:function size:0x5C scope:global align:4
+aPG_loop_check = .text:0x001FD1F0; // type:function size:0xC4 scope:global align:4
+aPG_ask_for_business_init = .text:0x001FD2B4; // type:function size:0x2C scope:global align:4
+aPG_msg_win_open_wait_init = .text:0x001FD2E0; // type:function size:0x28 scope:global align:4
+aPG_refuse_demo_stop_wait_init = .text:0x001FD308; // type:function size:0x34 scope:global align:4
+aPG_refuse_msg_end_wait_init = .text:0x001FD33C; // type:function size:0x74 scope:global align:4
+aPG_refuse_demo_after_init = .text:0x001FD3B0; // type:function size:0x24 scope:global align:4
+aPG_refuse_after_msg_end_wait_init = .text:0x001FD3D4; // type:function size:0x2C scope:global align:4
+aPG_msg_win_close_wait_init = .text:0x001FD400; // type:function size:0x24 scope:global align:4
+aPG_repay_menu_close_wait_init = .text:0x001FD424; // type:function size:0x54 scope:global align:4
+aPG_repay_after_recover_init = .text:0x001FD478; // type:function size:0x28 scope:global align:4
+aPG_repay_after_init = .text:0x001FD4A0; // type:function size:0x48 scope:global align:4
+aPG_card_err_otherland_init = .text:0x001FD4E8; // type:function size:0x38 scope:global align:4
+aPG_card_check_condition_init = .text:0x001FD520; // type:function size:0x38 scope:global align:4
+aPG_card_save_menu_close_wait_init = .text:0x001FD558; // type:function size:0x44 scope:global align:4
+aPG_receive_menu_close_wait_init = .text:0x001FD59C; // type:function size:0x44 scope:global align:4
+aPG_deposit_menu_close_wait_init = .text:0x001FD5E0; // type:function size:0x30 scope:global align:4
+aPG_deposit_after_recover_init = .text:0x001FD610; // type:function size:0x28 scope:global align:4
+aPG_loop_check_init = .text:0x001FD638; // type:function size:0x3C scope:global align:4
+aPG_init_proc = .text:0x001FD674; // type:function size:0x34 scope:global align:4
+aPG_setupAction = .text:0x001FD6A8; // type:function size:0x38 scope:global align:4
+aPG_set_talk_info = .text:0x001FD6E0; // type:function size:0xA4 scope:global align:4
+aPG_talk_request = .text:0x001FD784; // type:function size:0x30 scope:global align:4
+aPG_talk_init = .text:0x001FD7B4; // type:function size:0x34 scope:global align:4
+aPG_talk_end_chk = .text:0x001FD7E8; // type:function size:0x54 scope:global align:4
+aPG_actor_move = .text:0x001FD83C; // type:function size:0x38 scope:global align:4
+aPMAN_actor_ct = .text:0x001FD874; // type:function size:0x17C scope:global align:4
+aPMAN_actor_save = .text:0x001FD9F0; // type:function size:0x5C scope:global align:4
+aPMAN_actor_dt = .text:0x001FDA4C; // type:function size:0x38 scope:global align:4
+aPMAN_actor_init = .text:0x001FDA84; // type:function size:0x38 scope:global align:4
+aPMAN_actor_draw = .text:0x001FDABC; // type:function size:0x38 scope:global align:4
+aPMAN_set_animation = .text:0x001FDAF4; // type:function size:0x50 scope:global align:4
+aPMAN_BGcheck = .text:0x001FDB44; // type:function size:0x80 scope:global align:4
+aPMAN_check_culling = .text:0x001FDBC4; // type:function size:0xE4 scope:global align:4
+aPMAN_talk_check = .text:0x001FDCA8; // type:function size:0x70 scope:global align:4
+aPMAN_set_talk_info_talk_check = .text:0x001FDD18; // type:function size:0xC0 scope:global align:4
+aPMAN_talk_request = .text:0x001FDDD8; // type:function size:0x5C scope:global align:4
+aPMAN_check_delivery = .text:0x001FDE34; // type:function size:0xA4 scope:global align:4
+aPMAN_set_delivery_idx = .text:0x001FDED8; // type:function size:0x98 scope:global align:4
+aPMAN_set_move_idx = .text:0x001FDF70; // type:function size:0x28 scope:global align:4
+aPMAN_search_angle = .text:0x001FDF98; // type:function size:0x70 scope:global align:4
+aPMAN_order_open_mailbox = .text:0x001FE008; // type:function size:0x50 scope:global align:4
+aPMAN_eff_wings = .text:0x001FE058; // type:function size:0xE0 scope:global align:4
+aPMAN_enter = .text:0x001FE138; // type:function size:0xD0 scope:global align:4
+aPMAN_break = .text:0x001FE208; // type:function size:0x40 scope:global align:4
+aPMAN_hover = .text:0x001FE248; // type:function size:0x40 scope:global align:4
+aPMAN_landing = .text:0x001FE288; // type:function size:0x8C scope:global align:4
+aPMAN_kyoro = .text:0x001FE314; // type:function size:0x30 scope:global align:4
+aPMAN_turn = .text:0x001FE344; // type:function size:0x58 scope:global align:4
+aPMAN_walk = .text:0x001FE39C; // type:function size:0xC4 scope:global align:4
+aPMAN_delivery_turn = .text:0x001FE460; // type:function size:0x8C scope:global align:4
+aPMAN_delivery = .text:0x001FE4EC; // type:function size:0x74 scope:global align:4
+aPMAN_talk_turn = .text:0x001FE560; // type:function size:0x68 scope:global align:4
+aPMAN_talk_end_wait = .text:0x001FE5C8; // type:function size:0x6C scope:global align:4
+aPMAN_fly_up = .text:0x001FE634; // type:function size:0xDC scope:global align:4
+aPMAN_exit = .text:0x001FE710; // type:function size:0x114 scope:global align:4
+aPMAN_clear_xz_spd = .text:0x001FE824; // type:function size:0x1C scope:global align:4
+aPMAN_enter_init = .text:0x001FE840; // type:function size:0x38 scope:global align:4
+aPMAN_break_init = .text:0x001FE878; // type:function size:0x64 scope:global align:4
+aPMAN_hover_init = .text:0x001FE8DC; // type:function size:0x50 scope:global align:4
+aPMAN_landing_init = .text:0x001FE92C; // type:function size:0x1C scope:global align:4
+aPMAN_kyoro_init = .text:0x001FE948; // type:function size:0x1C scope:global align:4
+aPMAN_walk_init = .text:0x001FE964; // type:function size:0x20 scope:global align:4
+aPMAN_delivery_init = .text:0x001FE984; // type:function size:0x80 scope:global align:4
+aPMAN_talk_end_wait_init = .text:0x001FEA04; // type:function size:0x2C scope:global align:4
+aPMAN_fly_up_init = .text:0x001FEA30; // type:function size:0x48 scope:global align:4
+aPMAN_exit_init = .text:0x001FEA78; // type:function size:0x4C scope:global align:4
+aPMAN_init_proc = .text:0x001FEAC4; // type:function size:0x34 scope:global align:4
+aPMAN_set_talk_permit = .text:0x001FEAF8; // type:function size:0x18 scope:global align:4
+aPMAN_setupAction = .text:0x001FEB10; // type:function size:0x74 scope:global align:4
+aPMAN_actor_move = .text:0x001FEB84; // type:function size:0xA4 scope:global align:4
+aNRG_actor_ct = .text:0x001FEC28; // type:function size:0xE8 scope:global align:4
+aNRG_actor_save = .text:0x001FED10; // type:function size:0x38 scope:global align:4
+aNRG_actor_dt = .text:0x001FED48; // type:function size:0x70 scope:global align:4
+aNRG_actor_init = .text:0x001FEDB8; // type:function size:0x38 scope:global align:4
+aNRG_actor_draw = .text:0x001FEDF0; // type:function size:0x38 scope:global align:4
+aNRG_set_request_act = .text:0x001FEE28; // type:function size:0x94 scope:global align:4
+aNRG_set_house_master_name = .text:0x001FEEBC; // type:function size:0x4C scope:global align:4
+aNRG_set_shop_address = .text:0x001FEF08; // type:function size:0x7C scope:global align:4
+aNRG_actor_move = .text:0x001FEF84; // type:function size:0x38 scope:global align:4
+aNRG_demand_payment_talk_proc = .text:0x001FEFBC; // type:function size:0x60 scope:global align:4
+aNRG_menu_open_wait_talk_proc = .text:0x001FF01C; // type:function size:0x8C scope:global align:4
+aNRG_menu_close_wait_talk_proc = .text:0x001FF0A8; // type:function size:0x8C scope:global align:4
+aNRG_demo_start_wait_talk_proc = .text:0x001FF134; // type:function size:0x60 scope:global align:4
+aNRG_demo_end_wait_talk_proc = .text:0x001FF194; // type:function size:0x84 scope:global align:4
+aNRG_demand_payment_change_talk_proc = .text:0x001FF218; // type:function size:0x18 scope:global align:4
+aNRG_set_force_talk_info = .text:0x001FF230; // type:function size:0x98 scope:global align:4
+aNRG_force_talk_request = .text:0x001FF2C8; // type:function size:0x30 scope:global align:4
+aNRG_set_norm_talk_info = .text:0x001FF2F8; // type:function size:0x88 scope:global align:4
+aNRG_norm_talk_request = .text:0x001FF380; // type:function size:0x30 scope:global align:4
+aNRG_talk_init = .text:0x001FF3B0; // type:function size:0x30 scope:global align:4
+aNRG_talk_end_chk = .text:0x001FF3E0; // type:function size:0x84 scope:global align:4
+aNRG_approach = .text:0x001FF464; // type:function size:0x3C scope:global align:4
+aNRG_turn = .text:0x001FF4A0; // type:function size:0x3C scope:global align:4
+aNRG_take_with = .text:0x001FF4DC; // type:function size:0x84 scope:global align:4
+aNRG_decide_house_wait = .text:0x001FF560; // type:function size:0xCC scope:global align:4
+aNRG_enter_wait = .text:0x001FF62C; // type:function size:0x5C scope:global align:4
+aNRG_exit = .text:0x001FF688; // type:function size:0x144 scope:global align:4
+aNRG_restart_wait = .text:0x001FF7CC; // type:function size:0x6C scope:global align:4
+aNRG_think_main_proc = .text:0x001FF838; // type:function size:0x28 scope:global align:4
+aNRG_think_init_proc = .text:0x001FF860; // type:function size:0x5C scope:global align:4
+aNRG_call_init = .text:0x001FF8BC; // type:function size:0x54 scope:global align:4
+aNRG_approach_init = .text:0x001FF910; // type:function size:0xB8 scope:global align:4
+aNRG_introduce_init = .text:0x001FF9C8; // type:function size:0x38 scope:global align:4
+aNRG_turn_init = .text:0x001FFA00; // type:function size:0x58 scope:global align:4
+aNRG_take_with_init = .text:0x001FFA58; // type:function size:0x70 scope:global align:4
+aNRG_before_open_door_talk2_init = .text:0x001FFAC8; // type:function size:0x38 scope:global align:4
+aNRG_exit_turn_init = .text:0x001FFB00; // type:function size:0xB8 scope:global align:4
+aNRG_setup_think_proc = .text:0x001FFBB8; // type:function size:0x5C scope:global align:4
+aNRG_think_proc = .text:0x001FFC14; // type:function size:0x34 scope:global align:4
+aNRG_schedule_init_proc = .text:0x001FFC48; // type:function size:0x4C scope:global align:4
+aNRG_schedule_main_proc = .text:0x001FFC94; // type:function size:0x80 scope:global align:4
+aNRG_schedule_proc = .text:0x001FFD14; // type:function size:0x34 scope:global align:4
+aNRG2_actor_ct = .text:0x001FFD48; // type:function size:0xE4 scope:global align:4
+aNRG2_actor_save = .text:0x001FFE2C; // type:function size:0x38 scope:global align:4
+aNRG2_actor_dt = .text:0x001FFE64; // type:function size:0x38 scope:global align:4
+aNRG2_actor_init = .text:0x001FFE9C; // type:function size:0x38 scope:global align:4
+aNRG2_actor_draw = .text:0x001FFED4; // type:function size:0x38 scope:global align:4
+aNRG2_set_exit_info = .text:0x001FFF0C; // type:function size:0x70 scope:global align:4
+aNRG2_exit_check = .text:0x001FFF7C; // type:function size:0x70 scope:global align:4
+aNRG2_actor_move = .text:0x001FFFEC; // type:function size:0x74 scope:global align:4
+aNRG2_set_str_j3 = .text:0x00200060; // type:function size:0xF0 scope:global align:4
+aNRG2_set_str_j4 = .text:0x00200150; // type:function size:0x64 scope:global align:4
+aNRG2_set_str_proc = .text:0x002001B4; // type:function size:0x44 scope:global align:4
+aNRG2_set_possession = .text:0x002001F8; // type:function size:0x158 scope:global align:4
+aNRG2_check_job_start = .text:0x00200350; // type:function size:0xAC scope:global align:4
+aNRG2_stepup_j1 = .text:0x002003FC; // type:function size:0x28 scope:global align:4
+aNRG2_stepup_j2 = .text:0x00200424; // type:function size:0x24 scope:global align:4
+aNRG2_stepup_j3 = .text:0x00200448; // type:function size:0xA0 scope:global align:4
+aNRG2_stepup_j4 = .text:0x002004E8; // type:function size:0x80 scope:global align:4
+aNRG2_stepup_j5 = .text:0x00200568; // type:function size:0x9C scope:global align:4
+aNRG2_stepup_j6 = .text:0x00200604; // type:function size:0x80 scope:global align:4
+aNRG2_stepup_j7 = .text:0x00200684; // type:function size:0x24 scope:global align:4
+aNRG2_stepup_j10 = .text:0x002006A8; // type:function size:0x24 scope:global align:4
+aNRG2_stepup_j11 = .text:0x002006CC; // type:function size:0x24 scope:global align:4
+aNRG2_stepup_job = .text:0x002006F0; // type:function size:0x6C scope:global align:4
+aNRG2_setup_job = .text:0x0020075C; // type:function size:0x58 scope:global align:4
+aNRG2_say_hello_talk_proc = .text:0x002007B4; // type:function size:0xEC scope:global align:4
+aNRG2_say_hello_sp_talk_proc = .text:0x002008A0; // type:function size:0x40 scope:global align:4
+aNRG2_say_hello_sp2_talk_proc = .text:0x002008E0; // type:function size:0x40 scope:global align:4
+aNRG2_cloth_chk_talk_proc = .text:0x00200920; // type:function size:0x5C scope:global align:4
+aNRG2_demo_start_wait_talk_proc = .text:0x0020097C; // type:function size:0xA0 scope:global align:4
+aNRG2_demo_end_wait_talk_proc = .text:0x00200A1C; // type:function size:0x4C scope:global align:4
+aNRG2_demo_end_wait2_talk_proc = .text:0x00200A68; // type:function size:0x58 scope:global align:4
+aNRG2_job_start_talk_proc = .text:0x00200AC0; // type:function size:0x84 scope:global align:4
+aNRG2_job_end_talk_proc = .text:0x00200B44; // type:function size:0xA0 scope:global align:4
+aNRG2_3rd_job_end_talk_proc = .text:0x00200BE4; // type:function size:0xA8 scope:global align:4
+aNRG2_demo2_start_wait_talk_proc = .text:0x00200C8C; // type:function size:0xDC scope:global align:4
+aNRG2_demo2_start_wait2_talk_proc = .text:0x00200D68; // type:function size:0x60 scope:global align:4
+aNRG2_demo2_end_wait_talk_proc = .text:0x00200DC8; // type:function size:0x54 scope:global align:4
+aNRG2_give_new_paper_talk_proc = .text:0x00200E1C; // type:function size:0x84 scope:global align:4
+aNRG2_check_more_paper_talk_proc = .text:0x00200EA0; // type:function size:0xAC scope:global align:4
+aNRG2_decide_new_target_talk_proc = .text:0x00200F4C; // type:function size:0x8C scope:global align:4
+aNRG2_demo3_start_wait_talk_proc = .text:0x00200FD8; // type:function size:0xF0 scope:global align:4
+aNRG2_all_job_end_talk_proc = .text:0x002010C8; // type:function size:0x2C scope:global align:4
+aNRG2_change_talk_proc = .text:0x002010F4; // type:function size:0x18 scope:global align:4
+aNRG2_set_goods_talk_info = .text:0x0020110C; // type:function size:0x60 scope:global align:4
+aNRG2_goods_talk_request = .text:0x0020116C; // type:function size:0xEC scope:global align:4
+aNRG2_cloth_check = .text:0x00201258; // type:function size:0x64 scope:global align:4
+aNRG2_check_upstair = .text:0x002012BC; // type:function size:0x5C scope:global align:4
+aNRG2_set_force_talk_info = .text:0x00201318; // type:function size:0xB0 scope:global align:4
+aNRG2_force_talk_request = .text:0x002013C8; // type:function size:0x44 scope:global align:4
+aNRG2_set_norm_talk_info = .text:0x0020140C; // type:function size:0x80 scope:global align:4
+aNRG2_norm_talk_request = .text:0x0020148C; // type:function size:0x94 scope:global align:4
+aNRG2_talk_init = .text:0x00201520; // type:function size:0x30 scope:global align:4
+aNRG2_talk_end_chk = .text:0x00201550; // type:function size:0x84 scope:global align:4
+aNRG2_setup_j1_cont = .text:0x002015D4; // type:function size:0x78 scope:global align:4
+aNRG2_setup_j2_cont = .text:0x0020164C; // type:function size:0x18 scope:global align:4
+aNRG2_setup_j3_cont = .text:0x00201664; // type:function size:0x60 scope:global align:4
+aNRG2_setup_j4_cont = .text:0x002016C4; // type:function size:0x7C scope:global align:4
+aNRG2_setup_j5_cont = .text:0x00201740; // type:function size:0x40 scope:global align:4
+aNRG2_setup_j6_cont = .text:0x00201780; // type:function size:0x60 scope:global align:4
+aNRG2_setup_j7_cont = .text:0x002017E0; // type:function size:0x18 scope:global align:4
+aNRG2_setup_j10_cont = .text:0x002017F8; // type:function size:0x8 scope:global align:4
+aNRG2_setup_j11_cont = .text:0x00201800; // type:function size:0x8 scope:global align:4
+aNRG2_setup_job_cont = .text:0x00201808; // type:function size:0x58 scope:global align:4
+aNRG2_talk_start_wait = .text:0x00201860; // type:function size:0x74 scope:global align:4
+aNRG2_job_start_wait = .text:0x002018D4; // type:function size:0x78 scope:global align:4
+aNRG2_all_job_end = .text:0x0020194C; // type:function size:0x48 scope:global align:4
+aNRG2_think_main_proc = .text:0x00201994; // type:function size:0x34 scope:global align:4
+aNRG2_think_init_proc = .text:0x002019C8; // type:function size:0x134 scope:global align:4
+aNRG2_send_away_init = .text:0x00201AFC; // type:function size:0x40 scope:global align:4
+aNRG2_talk_start_wait_init = .text:0x00201B3C; // type:function size:0x20 scope:global align:4
+aNRG2_job_start_wait_init = .text:0x00201B5C; // type:function size:0x20 scope:global align:4
+aNRG2_all_job_end_init = .text:0x00201B7C; // type:function size:0x50 scope:global align:4
+aNRG2_setup_think_proc = .text:0x00201BCC; // type:function size:0xA8 scope:global align:4
+aNRG2_think_proc = .text:0x00201C74; // type:function size:0x34 scope:global align:4
+aNRG2_schedule_init_proc = .text:0x00201CA8; // type:function size:0x4C scope:global align:4
+aNRG2_schedule_main_proc = .text:0x00201CF4; // type:function size:0x80 scope:global align:4
+aNRG2_schedule_proc = .text:0x00201D74; // type:function size:0x34 scope:global align:4
+aNRST_actor_ct = .text:0x00201DA8; // type:function size:0x1C0 scope:global align:4
+aNRST_actor_save = .text:0x00201F68; // type:function size:0x38 scope:global align:4
+aNRST_actor_dt = .text:0x00201FA0; // type:function size:0x38 scope:global align:4
+aNRST_actor_init = .text:0x00201FD8; // type:function size:0x38 scope:global align:4
+aNRST_actor_move = .text:0x00202010; // type:function size:0x4C scope:global align:4
+aNRST_actor_draw = .text:0x0020205C; // type:function size:0x38 scope:global align:4
+aNRST_think_start = .text:0x00202094; // type:function size:0x10 scope:global align:4
+aNRST_think_title = .text:0x002020A4; // type:function size:0x5C scope:global align:4
+aNRST_think_door = .text:0x00202100; // type:function size:0xE4 scope:global align:4
+aNRST_think_main_proc = .text:0x002021E4; // type:function size:0x44 scope:global align:4
+aNRST_think_init_proc = .text:0x00202228; // type:function size:0x18 scope:global align:4
+aNRST_think_proc = .text:0x00202240; // type:function size:0x34 scope:global align:4
+aNRST_schedule_init_proc = .text:0x00202274; // type:function size:0x54 scope:global align:4
+aNRST_schedule_main_proc = .text:0x002022C8; // type:function size:0x80 scope:global align:4
+aNRST_schedule_proc = .text:0x00202348; // type:function size:0x34 scope:global align:4
+aNRST_get_message = .text:0x0020237C; // type:function size:0xB0 scope:global align:4
+aNRST_set_slot_name = .text:0x0020242C; // type:function size:0x4C scope:global align:4
+aNRST_set_slot_before_save = .text:0x00202478; // type:function size:0x48 scope:global align:4
+aNRST_select2 = .text:0x002024C0; // type:function size:0x144 scope:global align:4
+aNRST_select = .text:0x00202604; // type:function size:0xE4 scope:global align:4
+aNRST_select3 = .text:0x002026E8; // type:function size:0x98 scope:global align:4
+aNRST_before_save = .text:0x00202780; // type:function size:0x9C scope:global align:4
+aNRST_before_init = .text:0x0020281C; // type:function size:0x60 scope:global align:4
+aNRST_init = .text:0x0020287C; // type:function size:0xD0 scope:global align:4
+aNRST_unset_lock_select2 = .text:0x0020294C; // type:function size:0x78 scope:global align:4
+aNRST_save = .text:0x002029C4; // type:function size:0x29C scope:global align:4
+aNRST_change_talk_proc = .text:0x00202C60; // type:function size:0x1C scope:global align:4
+aNRST_set_talk_info_talk_request = .text:0x00202C7C; // type:function size:0x34 scope:global align:4
+aNRST_talk_request = .text:0x00202CB0; // type:function size:0x30 scope:global align:4
+aNRST_talk_init = .text:0x00202CE0; // type:function size:0x48 scope:global align:4
+aNRST_talk_end_chk = .text:0x00202D28; // type:function size:0x74 scope:global align:4
+aNRTC_actor_ct = .text:0x00202D9C; // type:function size:0x19C scope:global align:4
+aNRTC_actor_save = .text:0x00202F38; // type:function size:0x38 scope:global align:4
+aNRTC_actor_dt = .text:0x00202F70; // type:function size:0x38 scope:global align:4
+aNRTC_actor_init = .text:0x00202FA8; // type:function size:0x38 scope:global align:4
+aNRTC_actor_move = .text:0x00202FE0; // type:function size:0xDC scope:global align:4
+aNRTC_actor_draw = .text:0x002030BC; // type:function size:0x38 scope:global align:4
+aNRTC_think_start = .text:0x002030F4; // type:function size:0x38 scope:global align:4
+aNRTC_think_title = .text:0x0020312C; // type:function size:0x5C scope:global align:4
+aNRTC_think_door = .text:0x00203188; // type:function size:0x5C scope:global align:4
+aNRTC_think_check = .text:0x002031E4; // type:function size:0x78 scope:global align:4
+aNRTC_think_ipmenu = .text:0x0020325C; // type:function size:0x40 scope:global align:4
+aNRTC_think_main_proc = .text:0x0020329C; // type:function size:0x124 scope:global align:4
+aNRTC_think_init_proc = .text:0x002033C0; // type:function size:0x1C scope:global align:4
+aNRTC_think_proc = .text:0x002033DC; // type:function size:0x34 scope:global align:4
+aNRTC_schedule_init_proc = .text:0x00203410; // type:function size:0x78 scope:global align:4
+aNRTC_schedule_main_proc = .text:0x00203488; // type:function size:0x80 scope:global align:4
+aNRTC_schedule_proc = .text:0x00203508; // type:function size:0x34 scope:global align:4
+aNRTC_set_slot_name = .text:0x0020353C; // type:function size:0x50 scope:global align:4
+aNRTC_rtc_err = .text:0x0020358C; // type:function size:0x7C scope:global align:4
+aNRTC_timer_open_msg_wait = .text:0x00203608; // type:function size:0x74 scope:global align:4
+aNRTC_timer_open_wait = .text:0x0020367C; // type:function size:0x6C scope:global align:4
+aNRTC_timer_close_wait = .text:0x002036E8; // type:function size:0x60 scope:global align:4
+aNRTC_delete_bf = .text:0x00203748; // type:function size:0x6C scope:global align:4
+aNRTC_delete = .text:0x002037B4; // type:function size:0xE4 scope:global align:4
+aNRTC_format_chk = .text:0x00203898; // type:function size:0xAC scope:global align:4
+aNRTC_format = .text:0x00203944; // type:function size:0x128 scope:global align:4
+aNRTC_break_data = .text:0x00203A6C; // type:function size:0x7C scope:global align:4
+aNRTC_break_data_2 = .text:0x00203AE8; // type:function size:0xA0 scope:global align:4
+aNRTC_change_talk_proc = .text:0x00203B88; // type:function size:0x1C scope:global align:4
+aNRTC_set_talk_info_talk_request = .text:0x00203BA4; // type:function size:0xAC scope:global align:4
+aNRTC_talk_request = .text:0x00203C50; // type:function size:0x30 scope:global align:4
+aNRTC_talk_init = .text:0x00203C80; // type:function size:0xCC scope:global align:4
+aNRTC_talk_end_chk = .text:0x00203D4C; // type:function size:0x140 scope:global align:4
+aSEN_actor_ct = .text:0x00203E8C; // type:function size:0x84 scope:global align:4
+aSEN_actor_save = .text:0x00203F10; // type:function size:0x38 scope:global align:4
+aSEN_actor_dt = .text:0x00203F48; // type:function size:0x64 scope:global align:4
+aSEN_actor_init = .text:0x00203FAC; // type:function size:0x38 scope:global align:4
+aSEN_actor_draw = .text:0x00203FE4; // type:function size:0x64 scope:global align:4
+aSEN_set_anime_current = .text:0x00204048; // type:function size:0x3C scope:global align:4
+aSEN_set_request_act = .text:0x00204084; // type:function size:0x1C scope:global align:4
+aSEN_pl_ride_on_end_wait = .text:0x002040A0; // type:function size:0x80 scope:global align:4
+aSEN_sing_start_wait = .text:0x00204120; // type:function size:0x40 scope:global align:4
+aSEN_touch_wharf_start_wait = .text:0x00204160; // type:function size:0x34 scope:global align:4
+aSEN_touch_wharf_end_wait = .text:0x00204194; // type:function size:0x70 scope:global align:4
+aSEN_pl_ride_off_end_wait = .text:0x00204204; // type:function size:0xC0 scope:global align:4
+aSEN_think_main_proc = .text:0x002042C4; // type:function size:0x64 scope:global align:4
+aSEN_think_init_proc = .text:0x00204328; // type:function size:0x88 scope:global align:4
+aSEN_talk_start_wait_init = .text:0x002043B0; // type:function size:0xC scope:global align:4
+aSEN_pl_ride_on_end_wait_init = .text:0x002043BC; // type:function size:0x10 scope:global align:4
+aSEN_start_call_v_init = .text:0x002043CC; // type:function size:0x14 scope:global align:4
+aSEN_sing_start_wait_init = .text:0x002043E0; // type:function size:0x20 scope:global align:4
+aSEN_touch_wharf_end_wait_init = .text:0x00204400; // type:function size:0x14 scope:global align:4
+aSEN_arrive_call_init = .text:0x00204414; // type:function size:0x24 scope:global align:4
+aSEN_pl_ride_off_end_wait_init = .text:0x00204438; // type:function size:0x10 scope:global align:4
+aSEN_out_of_service_init = .text:0x00204448; // type:function size:0xC scope:global align:4
+aSEN_out_of_service2_init = .text:0x00204454; // type:function size:0x54 scope:global align:4
+aSEN_setup_think_proc = .text:0x002044A8; // type:function size:0xA4 scope:global align:4
+aSEN_think_proc = .text:0x0020454C; // type:function size:0x34 scope:global align:4
+aSEN_schedule_init_proc = .text:0x00204580; // type:function size:0xA0 scope:global align:4
+aSEN_schedule_main_proc = .text:0x00204620; // type:function size:0x80 scope:global align:4
+aSEN_schedule_proc = .text:0x002046A0; // type:function size:0x34 scope:global align:4
+aSEN_get_msg_no = .text:0x002046D4; // type:function size:0x8C scope:global align:4
+aSEN_agb_trans_se_proc = .text:0x00204760; // type:function size:0x6C scope:global align:4
+aSEN_compare_ram_island_and_village = .text:0x002047CC; // type:function size:0x5C scope:global align:4
+aSEN_compare_ram_island_and_agb_island = .text:0x00204828; // type:function size:0x80 scope:global align:4
+aSEN_chk_exist_island_data_in_ram = .text:0x002048A8; // type:function size:0x50 scope:global align:4
+aSEN_set_island_info_for_agb = .text:0x002048F8; // type:function size:0x58 scope:global align:4
+aSEN_setup_pl_ride_on = .text:0x00204950; // type:function size:0x2C scope:global align:4
+aSEN_sing_end_wait_talk_proc = .text:0x0020497C; // type:function size:0x64 scope:global align:4
+aSEN_pl_ride_on_check_talk_proc = .text:0x002049E0; // type:function size:0xCC scope:global align:4
+aSEN_chk_exist_island_data_in_ram_talk_proc = .text:0x00204AAC; // type:function size:0xE4 scope:global align:4
+aSEN_msg_win_close_wait_talk_proc = .text:0x00204B90; // type:function size:0x50 scope:global align:4
+aSEN_get_island_name_menu_start_wait_talk_proc = .text:0x00204BE0; // type:function size:0x84 scope:global align:4
+aSEN_get_island_name_menu_end_wait_talk_proc = .text:0x00204C64; // type:function size:0x5C scope:global align:4
+aSEN_msg_win_open_wait_talk_proc = .text:0x00204CC0; // type:function size:0x88 scope:global align:4
+aSEN_pl_ride_on_check2_talk_proc = .text:0x00204D48; // type:function size:0x114 scope:global align:4
+aSEN_chk_write_for_agb_talk_proc = .text:0x00204E5C; // type:function size:0xF0 scope:global align:4
+aSEN_chk_rewrite_for_agb_talk_proc = .text:0x00204F4C; // type:function size:0xC0 scope:global align:4
+aSEN_trans_data_for_agb_start_wait_talk_proc = .text:0x0020500C; // type:function size:0xA0 scope:global align:4
+aSEN_trans_data_for_agb_end_wait_talk_proc = .text:0x002050AC; // type:function size:0x158 scope:global align:4
+aSEN_trans_prg_for_agb_end_wait_talk_proc = .text:0x00205204; // type:function size:0xE4 scope:global align:4
+aSEN_trans_prg2_for_agb_end_wait_talk_proc = .text:0x002052E8; // type:function size:0x100 scope:global align:4
+aSEN_chk_power_agb_talk_proc = .text:0x002053E8; // type:function size:0xB8 scope:global align:4
+aSEN_chk_exist_island_data_in_agb_talk_proc = .text:0x002054A0; // type:function size:0x7C scope:global align:4
+aSEN_chk_read_agb_talk_proc = .text:0x0020551C; // type:function size:0x130 scope:global align:4
+aSEN_chk_retry_read_agb_talk_proc = .text:0x0020564C; // type:function size:0xCC scope:global align:4
+aSEN_chk_use_island_data_in_ram_talk_proc = .text:0x00205718; // type:function size:0xCC scope:global align:4
+aSEN_chk_power_agb2_talk_proc = .text:0x002057E4; // type:function size:0xD8 scope:global align:4
+aSEN_chk_trans_island_data_from_agb2_talk_proc = .text:0x002058BC; // type:function size:0xB0 scope:global align:4
+aSEN_chk_exist_island_data_in_agb2_talk_proc = .text:0x0020596C; // type:function size:0x98 scope:global align:4
+aSEN_chk_read_agb2_talk_proc = .text:0x00205A04; // type:function size:0x11C scope:global align:4
+aSEN_chk_power_agb3_talk_proc = .text:0x00205B20; // type:function size:0xD8 scope:global align:4
+aSEN_chk_exist_island_data_in_agb3_talk_proc = .text:0x00205BF8; // type:function size:0x98 scope:global align:4
+aSEN_chk_read_agb3_talk_proc = .text:0x00205C90; // type:function size:0x11C scope:global align:4
+aSEN_change_talk_proc = .text:0x00205DAC; // type:function size:0x20 scope:global align:4
+aSEN_set_force_talk_info = .text:0x00205DCC; // type:function size:0x9C scope:global align:4
+aSEN_force_talk_request = .text:0x00205E68; // type:function size:0x30 scope:global align:4
+aSEN_set_norm_talk_info = .text:0x00205E98; // type:function size:0x114 scope:global align:4
+aSEN_norm_talk_request = .text:0x00205FAC; // type:function size:0x30 scope:global align:4
+aSEN_talk_init = .text:0x00205FDC; // type:function size:0x24 scope:global align:4
+aSEN_talk_end_chk = .text:0x00206000; // type:function size:0x84 scope:global align:4
+aSEN_set_matrix = .text:0x00206084; // type:function size:0xC4 scope:global align:4
+aSEN_actor_move = .text:0x00206148; // type:function size:0x78 scope:global align:4
+aNSS_actor_ct = .text:0x002061C0; // type:function size:0xE4 scope:global align:4
+aNSS_actor_save = .text:0x002062A4; // type:function size:0x38 scope:global align:4
+aNSS_actor_dt = .text:0x002062DC; // type:function size:0x50 scope:global align:4
+aNSS_actor_init = .text:0x0020632C; // type:function size:0x38 scope:global align:4
+aNSS_actor_draw = .text:0x00206364; // type:function size:0x38 scope:global align:4
+aNSS_set_animation = .text:0x0020639C; // type:function size:0x4C scope:global align:4
+aNSS_set_walk_spd = .text:0x002063E8; // type:function size:0x2C scope:global align:4
+aNSS_set_stop_spd = .text:0x00206414; // type:function size:0x1C scope:global align:4
+aNSS_set_door_SE = .text:0x00206430; // type:function size:0x80 scope:global align:4
+aNSS_enter_walk_back_deck = .text:0x002064B0; // type:function size:0x38 scope:global align:4
+aNSS_enter_turn_back_deck = .text:0x002064E8; // type:function size:0x70 scope:global align:4
+aNSS_enter_back_door = .text:0x00206558; // type:function size:0xB0 scope:global align:4
+aNSS_walk_to_front_door = .text:0x00206608; // type:function size:0x3C scope:global align:4
+aNSS_exit_front_door = .text:0x00206644; // type:function size:0x4C scope:global align:4
+aNSS_walk_to_back_door = .text:0x00206690; // type:function size:0x3C scope:global align:4
+aNSS_exit_turn_back_deck = .text:0x002066CC; // type:function size:0x94 scope:global align:4
+aNSS_exit_walk_back_deck = .text:0x00206760; // type:function size:0x20 scope:global align:4
+aNSS_enter_walk_back_deck_init = .text:0x00206780; // type:function size:0x20 scope:global align:4
+aNSS_enter_turn_back_deck_init = .text:0x002067A0; // type:function size:0x20 scope:global align:4
+aNSS_enter_back_door_init = .text:0x002067C0; // type:function size:0x34 scope:global align:4
+aNSS_walk_to_front_door_init = .text:0x002067F4; // type:function size:0x20 scope:global align:4
+aNSS_exit_front_door_init = .text:0x00206814; // type:function size:0x34 scope:global align:4
+aNSS_enter_front_door_init = .text:0x00206848; // type:function size:0x34 scope:global align:4
+aNSS_exit_back_door_init = .text:0x0020687C; // type:function size:0x34 scope:global align:4
+aNSS_exit_walk_back_deck_init = .text:0x002068B0; // type:function size:0x20 scope:global align:4
+aNSS_init_proc = .text:0x002068D0; // type:function size:0x34 scope:global align:4
+aNSS_setupAction = .text:0x00206904; // type:function size:0x68 scope:global align:4
+aNSS_actor_move = .text:0x0020696C; // type:function size:0x90 scope:global align:4
+aNSM_actor_ct = .text:0x002069FC; // type:function size:0xB4 scope:global align:4
+aNSM_actor_save = .text:0x00206AB0; // type:function size:0x38 scope:global align:4
+aNSM_actor_dt = .text:0x00206AE8; // type:function size:0x38 scope:global align:4
+aNSM_actor_init = .text:0x00206B20; // type:function size:0x38 scope:global align:4
+aNSM_actor_draw = .text:0x00206B58; // type:function size:0x38 scope:global align:4
+aNSM_get_zone = .text:0x00206B90; // type:function size:0x5C scope:global align:4
+aNSM_get_next_zone = .text:0x00206BEC; // type:function size:0x1C scope:global align:4
+aNSM_search_player = .text:0x00206C08; // type:function size:0x90 scope:global align:4
+aNSM_search_player2 = .text:0x00206C98; // type:function size:0xDC scope:global align:4
+aNSM_check_safe_zone = .text:0x00206D74; // type:function size:0x34 scope:global align:4
+aNSM_actor_move = .text:0x00206DA8; // type:function size:0xC4 scope:global align:4
+aNSC_set_animation = .text:0x00206E6C; // type:function size:0x50 scope:local align:4
+aNSC_BGcheck = .text:0x00206EBC; // type:function size:0x44 scope:local align:4
+aNSC_check_present_balloon = .text:0x00206F00; // type:function size:0x6C scope:local align:4
+aNSC_calc_talk_start_tim = .text:0x00206F6C; // type:function size:0x28 scope:local align:4
+aNSC_request_show_camera = .text:0x00206F94; // type:function size:0x74 scope:local align:4
+aNSC_Set_ListenAble = .text:0x00207008; // type:function size:0x24 scope:local align:4
+aNSC_set_sell_camera = .text:0x0020702C; // type:function size:0x94 scope:local align:4
+aNSC_sell_camera = .text:0x002070C0; // type:function size:0xA0 scope:local align:4
+aNSC_talk_demo_proc = .text:0x00207160; // type:function size:0x70 scope:local align:4
+aNSC_set_stop_spd = .text:0x002071D0; // type:function size:0x1C scope:local align:4
+aNSC_set_walk_spd = .text:0x002071EC; // type:function size:0x2C scope:local align:4
+aNSC_set_run_spd = .text:0x00207218; // type:function size:0x2C scope:local align:4
+aNSC_set_rehouse_order_date = .text:0x00207244; // type:function size:0x28 scope:local align:4
+aNSC_set_make_basement_info = .text:0x0020726C; // type:function size:0x5C scope:local align:4
+aNSC_getP_free_ftr_order = .text:0x002072C8; // type:function size:0x38 scope:local align:4
+aNSC_set_ftr_order = .text:0x00207300; // type:function size:0x4C scope:local align:4
+aNSC_set_last_day_str = .text:0x0020734C; // type:function size:0x54 scope:local align:4
+aNSC_set_pw_name_str = .text:0x002073A0; // type:function size:0x5C scope:local align:4
+aNSC_set_value_str = .text:0x002073FC; // type:function size:0x5C scope:local align:4
+aNSC_set_item_name_str = .text:0x00207458; // type:function size:0x64 scope:local align:4
+aNSC_set_item_str = .text:0x002074BC; // type:function size:0x58 scope:local align:4
+aNSC_set_pw_password_str = .text:0x00207514; // type:function size:0x60 scope:local align:4
+aNSC_set_pw_info_str = .text:0x00207574; // type:function size:0x68 scope:local align:4
+aNSC_pc_check_password_famicom = .text:0x002075DC; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password_npc = .text:0x00207624; // type:function size:0x6C scope:local align:4
+aNSC_pc_check_password_card_e = .text:0x00207690; // type:function size:0x8 scope:local align:4
+aNSC_pc_check_password_magazine = .text:0x00207698; // type:function size:0x74 scope:local align:4
+aNSC_pc_check_password_card_e_mini = .text:0x0020770C; // type:function size:0x18 scope:local align:4
+aNSC_pc_check_password_user = .text:0x00207724; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password = .text:0x0020776C; // type:function size:0xC4 scope:local align:4
+aNSC_check_possession_item_make_password = .text:0x00207830; // type:function size:0xAC scope:local align:4
+aNSC_set_buy_sum_str = .text:0x002078DC; // type:function size:0xD4 scope:local align:4
+aNSC_decide_next_move_act = .text:0x002079B0; // type:function size:0x110 scope:local align:4
+aNSC_set_zone_data = .text:0x00207AC0; // type:function size:0x84 scope:local align:4
+aNSC_set_player_angl = .text:0x00207B44; // type:function size:0xC scope:local align:4
+aNSC_money_check = .text:0x00207B50; // type:function size:0x20 scope:local align:4
+aNSC_get_sell_price = .text:0x00207B70; // type:function size:0x20 scope:local align:4
+aNSC_check_money_overflow = .text:0x00207B90; // type:function size:0x94 scope:local align:4
+aNSC_check_buy_item_sub = .text:0x00207C24; // type:function size:0xA4 scope:local align:4
+aNSC_check_buy_paper = .text:0x00207CC8; // type:function size:0xF0 scope:local align:4
+aNSC_check_buy_item_single = .text:0x00207DB8; // type:function size:0x118 scope:local align:4
+aNSC_check_buy_item_plural = .text:0x00207ED0; // type:function size:0x8C scope:local align:4
+aNSC_check_buy_item = .text:0x00207F5C; // type:function size:0x34 scope:local align:4
+aNSC_check_item_with_ticket = .text:0x00207F90; // type:function size:0x80 scope:local align:4
+aNSC_setup_ticket_remain = .text:0x00208010; // type:function size:0x48 scope:local align:4
+aNSC_check_same_month_ticket = .text:0x00208058; // type:function size:0x64 scope:local align:4
+aNSC_get_msg_no = .text:0x002080BC; // type:function size:0x48 scope:local align:4
+aNSC_Set_continue_msg_num = .text:0x00208104; // type:function size:0x40 scope:local align:4
+aNSC_ChangeMsgData = .text:0x00208144; // type:function size:0x40 scope:local align:4
+aNSC_set_player_angle = .text:0x00208184; // type:function size:0x108 scope:local align:4
+aNSC_set_talk_info_show_item = .text:0x0020828C; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_show_cloth = .text:0x002082C4; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_sell_item = .text:0x002082FC; // type:function size:0xC0 scope:local align:4
+aNSC_set_talk_info_message_ctrl = .text:0x002083BC; // type:function size:0x28 scope:local align:4
+aNSC_set_talk_info_message_ctrl_aprilfool = .text:0x002083E4; // type:function size:0x48 scope:local align:4
+aNSC_set_talk_info_message_ctrl_tokubai = .text:0x0020842C; // type:function size:0x28 scope:local align:4
+aNSC_message_ctrl = .text:0x00208454; // type:function size:0x3E0 scope:local align:4
+aNSC_buy_item_single = .text:0x00208834; // type:function size:0xF0 scope:local align:4
+aNSC_buy_paper = .text:0x00208924; // type:function size:0x110 scope:local align:4
+aNSC_buy_item_only_one = .text:0x00208A34; // type:function size:0x210 scope:local align:4
+aNSC_get_start_call_msg_no = .text:0x00208C44; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait = .text:0x00208C80; // type:function size:0x1F4 scope:local align:4
+aNSC_set_talk_info_start_wait1 = .text:0x00208E74; // type:function size:0xE0 scope:local align:4
+aNSC_set_talk_info_start_wait2 = .text:0x00208F54; // type:function size:0x4C scope:local align:4
+aNSC_set_talk_info_start_wait3 = .text:0x00208FA0; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait4 = .text:0x00208FDC; // type:function size:0x28 scope:local align:4
+aNSC_start_wait = .text:0x00209004; // type:function size:0x2B4 scope:local align:4
+aNSC_say_hello_approach = .text:0x002092B8; // type:function size:0x90 scope:local align:4
+aNSC_say_hello_end_wait = .text:0x00209348; // type:function size:0x74 scope:local align:4
+aNSC_check_col_chg_or_make_basement = .text:0x002093BC; // type:function size:0xCC scope:local align:4
+aNSC_check_roof_col_order = .text:0x00209488; // type:function size:0x138 scope:local align:4
+aNSC_check_roof_col_order2 = .text:0x002095C0; // type:function size:0xF4 scope:local align:4
+aNSC_present_balloon_start_wait = .text:0x002096B4; // type:function size:0x5C scope:local align:4
+aNSC_present_balloon_trans_move = .text:0x00209710; // type:function size:0x3C scope:local align:4
+aNSC_present_balloon_trans_takeout = .text:0x0020974C; // type:function size:0xDC scope:local align:4
+aNSC_present_balloon_trans_wait = .text:0x00209828; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait = .text:0x00209868; // type:function size:0x68 scope:local align:4
+aNSC_set_talk_info_request_Q_start_wait = .text:0x002098D0; // type:function size:0x30 scope:local align:4
+aNSC_request_Q_start_wait = .text:0x00209900; // type:function size:0x84 scope:local align:4
+aNSC_request_Q_answer_wait = .text:0x00209984; // type:function size:0x114 scope:local align:4
+aNSC_request_Q_answer_wait2 = .text:0x00209A98; // type:function size:0x190 scope:local align:4
+aNSC_request_Q_end_wait = .text:0x00209C28; // type:function size:0x74 scope:local align:4
+aNSC_answer_buy_item = .text:0x00209C9C; // type:function size:0x7C scope:local align:4
+aNSC_buy_menu_open_wait = .text:0x00209D18; // type:function size:0x58 scope:local align:4
+aNSC_buy_menu_close_wait = .text:0x00209D70; // type:function size:0x34 scope:local align:4
+aNSC_msg_win_open_wait = .text:0x00209DA4; // type:function size:0xC8 scope:local align:4
+aNSC_buy_sum_check = .text:0x00209E6C; // type:function size:0xFC scope:local align:4
+aNSC_buy_check = .text:0x00209F68; // type:function size:0x280 scope:local align:4
+aNSC_buy_after_service = .text:0x0020A1E8; // type:function size:0x7C scope:local align:4
+aNSC_buy_continue_check = .text:0x0020A264; // type:function size:0xEC scope:local align:4
+aNSC_receive_check = .text:0x0020A350; // type:function size:0xA4 scope:local align:4
+aNSC_msg_win_open_wait2 = .text:0x0020A3F4; // type:function size:0xC8 scope:local align:4
+aNSC_order_check = .text:0x0020A4BC; // type:function size:0xFC scope:local align:4
+aNSC_sell_check_before = .text:0x0020A5B8; // type:function size:0x68 scope:local align:4
+aNSC_sell_check = .text:0x0020A620; // type:function size:0xB8 scope:local align:4
+aNSC_sell_answer0 = .text:0x0020A6D8; // type:function size:0x234 scope:local align:4
+aNSC_sell_item_with_ticket = .text:0x0020A90C; // type:function size:0xB8 scope:local align:4
+aNSC_show_item_check = .text:0x0020A9C4; // type:function size:0x1CC scope:local align:4
+aNSC_chg_cloth_start_wait = .text:0x0020AB90; // type:function size:0xC8 scope:local align:4
+aNSC_chg_cloth_end_wait = .text:0x0020AC58; // type:function size:0x5C scope:local align:4
+aNSC_pw_entry_send_addr_start_wait = .text:0x0020ACB4; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait = .text:0x0020AD2C; // type:function size:0xAC scope:local align:4
+aNSC_pw_send_addr_check = .text:0x0020ADD8; // type:function size:0xDC scope:local align:4
+aNSC_pw_sel_item_start_wait = .text:0x0020AEB4; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait2 = .text:0x0020AF2C; // type:function size:0xB0 scope:local align:4
+aNSC_pw_send_check = .text:0x0020AFDC; // type:function size:0x12C scope:local align:4
+aNSC_pw_retry_sel_item_check = .text:0x0020B108; // type:function size:0xC8 scope:local align:4
+aNSC_pc_input_pw_start_wait = .text:0x0020B1D0; // type:function size:0x78 scope:local align:4
+aNSC_pc_msg_win_open_wait = .text:0x0020B248; // type:function size:0x94 scope:local align:4
+aNSC_pc_retry_input_pw_check = .text:0x0020B2DC; // type:function size:0xF4 scope:local align:4
+aNSC_pc_present_start_wait = .text:0x0020B3D0; // type:function size:0x5C scope:local align:4
+aNSC_pc_present_trans_takeout = .text:0x0020B42C; // type:function size:0xDC scope:local align:4
+aNSC_pc_present_trans_wait = .text:0x0020B508; // type:function size:0x40 scope:local align:4
+aNSC_pc_present_end_wait = .text:0x0020B548; // type:function size:0x68 scope:local align:4
+aNSC_wait = .text:0x0020B5B0; // type:function size:0x78 scope:local align:4
+aNSC_walk_pl_other_zone = .text:0x0020B628; // type:function size:0x78 scope:local align:4
+aNSC_turn = .text:0x0020B6A0; // type:function size:0x98 scope:local align:4
+aNSC_set_talk_info_goodbye_wait = .text:0x0020B738; // type:function size:0x30 scope:local align:4
+aNSC_goodbye_wait = .text:0x0020B768; // type:function size:0x9C scope:local align:4
+aNSC_say_goodbye = .text:0x0020B804; // type:function size:0x60 scope:local align:4
+aNSC_exit_wait = .text:0x0020B864; // type:function size:0x74 scope:local align:4
+aNSC_say_hello_approach_init = .text:0x0020B8D8; // type:function size:0x20 scope:local align:4
+aNSC_say_hello_end_wait_init = .text:0x0020B8F8; // type:function size:0x28 scope:local align:4
+aNSC_check_col_chg_or_make_basement_init = .text:0x0020B920; // type:function size:0x20 scope:local align:4
+aNSC_check_roof_col_order_init = .text:0x0020B940; // type:function size:0x40 scope:local align:4
+aNSC_check_roof_col_order2_init = .text:0x0020B980; // type:function size:0x2C scope:local align:4
+aNSC_present_balloon_start_wait_init = .text:0x0020B9AC; // type:function size:0x1C scope:local align:4
+aNSC_present_balloon_trans_move_init = .text:0x0020B9C8; // type:function size:0x8C scope:local align:4
+aNSC_present_balloon_trans_takeout_init = .text:0x0020BA54; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait_init = .text:0x0020BA94; // type:function size:0x10 scope:local align:4
+aNSC_request_Q_answer_wait_init = .text:0x0020BAA4; // type:function size:0x40 scope:local align:4
+aNSC_request_Q_end_wait_init = .text:0x0020BAE4; // type:function size:0x20 scope:local align:4
+aNSC_answer_buy_item_init = .text:0x0020BB04; // type:function size:0x2C scope:local align:4
+aNSC_buy_menu_open_wait_init = .text:0x0020BB30; // type:function size:0x24 scope:local align:4
+aNSC_buy_menu_close_wait_init = .text:0x0020BB54; // type:function size:0x44 scope:local align:4
+aNSC_msg_win_open_wait_init = .text:0x0020BB98; // type:function size:0x24 scope:local align:4
+aNSC_buy_sum_check_init = .text:0x0020BBBC; // type:function size:0x2C scope:local align:4
+aNSC_buy_check_init = .text:0x0020BBE8; // type:function size:0xF8 scope:local align:4
+aNSC_buy_after_service_init = .text:0x0020BCE0; // type:function size:0x2C scope:local align:4
+aNSC_order_select_menu_close_wait_init = .text:0x0020BD0C; // type:function size:0x44 scope:local align:4
+aNSC_order_check_init = .text:0x0020BD50; // type:function size:0x2C scope:local align:4
+aNSC_sell_check_before_init = .text:0x0020BD7C; // type:function size:0x40 scope:local align:4
+aNSC_sell_answer0_init = .text:0x0020BDBC; // type:function size:0x118 scope:local align:4
+aNSC_sell_answer1_init = .text:0x0020BED4; // type:function size:0x34 scope:local align:4
+aNSC_sell_item_init = .text:0x0020BF08; // type:function size:0x64 scope:local align:4
+aNSC_sell_item_with_ticket_init = .text:0x0020BF6C; // type:function size:0x50 scope:local align:4
+aNSC_sell_refuse0_init = .text:0x0020BFBC; // type:function size:0xC scope:local align:4
+aNSC_show_item_check_init = .text:0x0020BFC8; // type:function size:0x20 scope:local align:4
+aNSC_chg_cloth_start_wait_init = .text:0x0020BFE8; // type:function size:0x24 scope:local align:4
+aNSC_pw_entry_send_addr_start_wait_init = .text:0x0020C00C; // type:function size:0x2C scope:local align:4
+aNSC_pw_make_menu_close_wait_init = .text:0x0020C038; // type:function size:0x64 scope:local align:4
+aNSC_pw_send_addr_check_init = .text:0x0020C09C; // type:function size:0x20 scope:local align:4
+aNSC_pw_sel_item_menu_close_wait_init = .text:0x0020C0BC; // type:function size:0x44 scope:local align:4
+aNSC_pc_input_pw_start_wait_init = .text:0x0020C100; // type:function size:0x3C scope:local align:4
+aNSC_pc_chk_menu_close_wait_init = .text:0x0020C13C; // type:function size:0x48 scope:local align:4
+aNSC_pc_present_trans_takeout_init = .text:0x0020C184; // type:function size:0x88 scope:local align:4
+aNSC_pc_present_end_wait_init = .text:0x0020C20C; // type:function size:0x10 scope:local align:4
+aNSC_wait_init = .text:0x0020C21C; // type:function size:0x20 scope:local align:4
+aNSC_walk_pl_same_zone_init = .text:0x0020C23C; // type:function size:0x20 scope:local align:4
+aNSC_run_pl_same_zone_init = .text:0x0020C25C; // type:function size:0x20 scope:local align:4
+aNSC_goodbye_wait_init = .text:0x0020C27C; // type:function size:0x20 scope:local align:4
+aNSC_say_goodbye_init = .text:0x0020C29C; // type:function size:0x24 scope:local align:4
+aNSC_init_proc = .text:0x0020C2C0; // type:function size:0x34 scope:local align:4
+aNSC_setupAction = .text:0x0020C2F4; // type:function size:0x68 scope:local align:4
+aSHM_actor_ct = .text:0x0020C35C; // type:function size:0x98 scope:global align:4
+aSHM_actor_save = .text:0x0020C3F4; // type:function size:0x20 scope:global align:4
+aSHM_actor_dt = .text:0x0020C414; // type:function size:0x38 scope:global align:4
+aSHM_actor_init = .text:0x0020C44C; // type:function size:0x38 scope:global align:4
+aSHM_actor_draw = .text:0x0020C484; // type:function size:0x38 scope:global align:4
+aSHM_ftr_revise_x = .text:0x0020C4BC; // type:function size:0x30 scope:global align:4
+aSHM_ftr_revise_z = .text:0x0020C4EC; // type:function size:0x34 scope:global align:4
+aSHM_set_base_position = .text:0x0020C520; // type:function size:0x224 scope:global align:4
+aSHM_set_avoid_pos = .text:0x0020C744; // type:function size:0x24 scope:global align:4
+aSHM_set_start_avoid_pos = .text:0x0020C768; // type:function size:0x2C scope:global align:4
+aSHM_set_next_avoid_pos = .text:0x0020C794; // type:function size:0x58 scope:global align:4
+aSHM_set_request_act = .text:0x0020C7EC; // type:function size:0x94 scope:global align:4
+aSHM_actor_move = .text:0x0020C880; // type:function size:0x38 scope:global align:4
+player_go_away = .text:0x0020C8B8; // type:function size:0x58 scope:local align:4
+player_buy = .text:0x0020C910; // type:function size:0xDC scope:local align:4
+check_null_lottery = .text:0x0020C9EC; // type:function size:0x48 scope:global align:4
+search_lottery_ticket = .text:0x0020CA34; // type:function size:0x6C scope:global align:4
+check_lottery_ticket = .text:0x0020CAA0; // type:function size:0x74 scope:global align:4
+uketori_lottery_ticket_amari = .text:0x0020CB14; // type:function size:0x68 scope:global align:4
+uketori_lottery_ticket = .text:0x0020CB7C; // type:function size:0xA4 scope:global align:4
+aSHM_get_Fgitem_pos = .text:0x0020CC20; // type:function size:0x94 scope:global align:4
+aSHM_remove_gift = .text:0x0020CCB4; // type:function size:0xA4 scope:global align:4
+to_atari = .text:0x0020CD58; // type:function size:0xDC scope:global align:4
+fukubiki_before_process = .text:0x0020CE34; // type:function size:0xD0 scope:global align:4
+aSHM_talk_try = .text:0x0020CF04; // type:function size:0xB0 scope:global align:4
+aSHM_talk_hazure = .text:0x0020CFB4; // type:function size:0x94 scope:global align:4
+aSHM_talk_retry = .text:0x0020D048; // type:function size:0xB4 scope:global align:4
+aSHM_stop_player = .text:0x0020D0FC; // type:function size:0xC0 scope:global align:4
+aSHM_give_player = .text:0x0020D1BC; // type:function size:0xEC scope:global align:4
+aSHM_talk_tamakesi = .text:0x0020D2A8; // type:function size:0x78 scope:global align:4
+aSHM_say_goodbye = .text:0x0020D320; // type:function size:0x58 scope:global align:4
+aSHM_exit_wait = .text:0x0020D378; // type:function size:0x74 scope:global align:4
+aSHM_change_talk_proc = .text:0x0020D3EC; // type:function size:0x60 scope:global align:4
+aSHM_set_force_talk_info = .text:0x0020D44C; // type:function size:0x94 scope:global align:4
+aSHM_force_talk_request = .text:0x0020D4E0; // type:function size:0x30 scope:global align:4
+aSHM_set_norm_talk_info = .text:0x0020D510; // type:function size:0x68 scope:global align:4
+aSHM_norm_talk_request = .text:0x0020D578; // type:function size:0x30 scope:global align:4
+aSHM_talk_init = .text:0x0020D5A8; // type:function size:0x44 scope:global align:4
+aSHM_talk_end_chk = .text:0x0020D5EC; // type:function size:0x94 scope:global align:4
+aSHM_set_start_think = .text:0x0020D680; // type:function size:0xCC scope:global align:4
+aSHM_normal_wait_common = .text:0x0020D74C; // type:function size:0x7C scope:global align:4
+aSHM_normal_wait = .text:0x0020D7C8; // type:function size:0x78 scope:global align:4
+aSHM_normal_wait2 = .text:0x0020D840; // type:function size:0x58 scope:global align:4
+aSHM_normal_wait3 = .text:0x0020D898; // type:function size:0x78 scope:global align:4
+aSHM_normal_turn = .text:0x0020D910; // type:function size:0x2C scope:global align:4
+aSHM_move = .text:0x0020D93C; // type:function size:0x7C scope:global align:4
+aSHM_move_turn = .text:0x0020D9B8; // type:function size:0x30 scope:global align:4
+aSHM_move_player = .text:0x0020D9E8; // type:function size:0xB0 scope:global align:4
+aSHM_wait_player = .text:0x0020DA98; // type:function size:0x54 scope:global align:4
+aSHM_wait_player2 = .text:0x0020DAEC; // type:function size:0xB8 scope:global align:4
+aSHM_wait_player3 = .text:0x0020DBA4; // type:function size:0x78 scope:global align:4
+aSHM_wait_player4 = .text:0x0020DC1C; // type:function size:0x54 scope:global align:4
+aSHM_hirou = .text:0x0020DC70; // type:function size:0xBC scope:global align:4
+aSHM_happy_academy3 = .text:0x0020DD2C; // type:function size:0x60 scope:global align:4
+aSHM_think_main_proc = .text:0x0020DD8C; // type:function size:0x90 scope:global align:4
+aSHM_think_init_proc = .text:0x0020DE1C; // type:function size:0x60 scope:global align:4
+aSHM_normal_wait_init = .text:0x0020DE7C; // type:function size:0x38 scope:global align:4
+aSHM_normal_turn_init = .text:0x0020DEB4; // type:function size:0x5C scope:global align:4
+aSHM_move_init = .text:0x0020DF10; // type:function size:0x44 scope:global align:4
+aSHM_move_turn_init = .text:0x0020DF54; // type:function size:0x44 scope:global align:4
+aSHM_fade_out_init = .text:0x0020DF98; // type:function size:0x4 scope:global align:4
+aSHM_hirou_init = .text:0x0020DF9C; // type:function size:0x60 scope:global align:4
+aSHM_happy_academy_init = .text:0x0020DFFC; // type:function size:0x2C scope:global align:4
+aSHM_happy_academy2_init = .text:0x0020E028; // type:function size:0x58 scope:global align:4
+aSHM_setup_think_proc = .text:0x0020E080; // type:function size:0x5C scope:global align:4
+aSHM_think_proc = .text:0x0020E0DC; // type:function size:0x34 scope:global align:4
+aSHM_schedule_init_proc = .text:0x0020E110; // type:function size:0x4C scope:global align:4
+aSHM_schedule_main_proc = .text:0x0020E15C; // type:function size:0x80 scope:global align:4
+aSHM_schedule_proc = .text:0x0020E1DC; // type:function size:0x34 scope:global align:4
+aNSO_actor_ct = .text:0x0020E210; // type:function size:0xAC scope:global align:4
+aNSO_actor_save = .text:0x0020E2BC; // type:function size:0x38 scope:global align:4
+aNSO_actor_dt = .text:0x0020E2F4; // type:function size:0x38 scope:global align:4
+aNSO_actor_init = .text:0x0020E32C; // type:function size:0x38 scope:global align:4
+aNSO_actor_move = .text:0x0020E364; // type:function size:0x40 scope:global align:4
+aNSO_actor_draw = .text:0x0020E3A4; // type:function size:0x38 scope:global align:4
+aNSO_set_animation = .text:0x0020E3DC; // type:function size:0x4C scope:global align:4
+aNSO_set_request_act = .text:0x0020E428; // type:function size:0x1C scope:global align:4
+aNSO_sleep = .text:0x0020E444; // type:function size:0x30 scope:global align:4
+aNSO_cramp = .text:0x0020E474; // type:function size:0x18 scope:global align:4
+aNSO_setupAction = .text:0x0020E48C; // type:function size:0x88 scope:global align:4
+aNSO_act_chg_data_proc = .text:0x0020E514; // type:function size:0xC scope:global align:4
+aNSO_act_init_proc = .text:0x0020E520; // type:function size:0x24 scope:global align:4
+aNSO_act_main_proc = .text:0x0020E544; // type:function size:0x28 scope:global align:4
+aNSO_act_proc = .text:0x0020E56C; // type:function size:0x34 scope:global align:4
+aNSO_think_main_proc = .text:0x0020E5A0; // type:function size:0x80 scope:global align:4
+aNSO_think_init_proc = .text:0x0020E620; // type:function size:0x34 scope:global align:4
+aNSO_think_proc = .text:0x0020E654; // type:function size:0x34 scope:global align:4
+aNSO_schedule_init_proc = .text:0x0020E688; // type:function size:0x54 scope:global align:4
+aNSO_schedule_main_proc = .text:0x0020E6DC; // type:function size:0x80 scope:global align:4
+aNSO_schedule_proc = .text:0x0020E75C; // type:function size:0x34 scope:global align:4
+aNS_actor_ct = .text:0x0020E790; // type:function size:0xA0 scope:global align:4
+aNS_actor_save = .text:0x0020E830; // type:function size:0x20 scope:global align:4
+aNS_actor_dt = .text:0x0020E850; // type:function size:0x38 scope:global align:4
+aNS_actor_init = .text:0x0020E888; // type:function size:0x38 scope:global align:4
+aNS_set_request_act = .text:0x0020E8C0; // type:function size:0x94 scope:global align:4
+aNS_actor_move = .text:0x0020E954; // type:function size:0x60 scope:global align:4
+aNS_actor_draw = .text:0x0020E9B4; // type:function size:0x38 scope:global align:4
+aNS_change_talk_proc = .text:0x0020E9EC; // type:function size:0xC scope:global align:4
+aNS_set_norm_talk_info = .text:0x0020E9F8; // type:function size:0x98 scope:global align:4
+aNS_norm_talk_request = .text:0x0020EA90; // type:function size:0x48 scope:global align:4
+aNS_talk_init = .text:0x0020EAD8; // type:function size:0x4C scope:global align:4
+aNS_talk_end_chk = .text:0x0020EB24; // type:function size:0x94 scope:global align:4
+aNS_think_main_proc = .text:0x0020EBB8; // type:function size:0x28 scope:global align:4
+aNS_think_init_proc = .text:0x0020EBE0; // type:function size:0x34 scope:global align:4
+aNS_normal_wait_init = .text:0x0020EC14; // type:function size:0x38 scope:global align:4
+aNS_wander_init = .text:0x0020EC4C; // type:function size:0x50 scope:global align:4
+aNS_setup_think_proc = .text:0x0020EC9C; // type:function size:0x9C scope:global align:4
+aNS_think_proc = .text:0x0020ED38; // type:function size:0x40 scope:global align:4
+aNS_schedule_init_proc = .text:0x0020ED78; // type:function size:0x4C scope:global align:4
+aNS_schedule_main_proc = .text:0x0020EDC4; // type:function size:0x80 scope:global align:4
+aNS_schedule_proc = .text:0x0020EE44; // type:function size:0x40 scope:global align:4
+aSTM_actor_ct = .text:0x0020EE84; // type:function size:0x9C scope:global align:4
+aSTM_actor_save = .text:0x0020EF20; // type:function size:0x20 scope:global align:4
+aSTM_actor_dt = .text:0x0020EF40; // type:function size:0x90 scope:global align:4
+aSTM_actor_init = .text:0x0020EFD0; // type:function size:0x38 scope:global align:4
+aSTM_actor_draw = .text:0x0020F008; // type:function size:0x38 scope:global align:4
+aSTM_set_request_act = .text:0x0020F040; // type:function size:0x94 scope:global align:4
+aSTM_actor_move = .text:0x0020F0D4; // type:function size:0x38 scope:global align:4
+aSTM_train_go_ok = .text:0x0020F10C; // type:function size:0x1C scope:global align:4
+aSTM_set_force_talk_info = .text:0x0020F128; // type:function size:0xC0 scope:global align:4
+aSTM_force_talk_request = .text:0x0020F1E8; // type:function size:0x30 scope:global align:4
+aSTM_set_norm_talk_info = .text:0x0020F218; // type:function size:0x150 scope:global align:4
+aSTM_norm_talk_request = .text:0x0020F368; // type:function size:0x30 scope:global align:4
+aSTM_talk_init = .text:0x0020F398; // type:function size:0x64 scope:global align:4
+aSTM_talk_end_chk = .text:0x0020F3FC; // type:function size:0xB8 scope:global align:4
+aSTM_Change_sound = .text:0x0020F4B4; // type:function size:0x64 scope:global align:4
+aNPS2_make_door_data = .text:0x0020F518; // type:function size:0x64 scope:local align:4
+aNPS2_setup_game_start = .text:0x0020F57C; // type:function size:0x5C scope:local align:4
+aSTM_look_player = .text:0x0020F5D8; // type:function size:0x7C scope:global align:4
+aSTM_talk_wait = .text:0x0020F654; // type:function size:0xB8 scope:global align:4
+player_x_drt = .text:0x0020F70C; // type:function size:0x24 scope:global align:4
+aSTM_get_off_wait = .text:0x0020F730; // type:function size:0x128 scope:global align:4
+aSTM_turn = .text:0x0020F858; // type:function size:0x24 scope:global align:4
+aSTM_interrupt_turn = .text:0x0020F87C; // type:function size:0x2C scope:global align:4
+aSTM_interrupt_move = .text:0x0020F8A8; // type:function size:0x88 scope:global align:4
+aSTM_make_train_bf = .text:0x0020F930; // type:function size:0xC0 scope:global align:4
+aSTM_make_train = .text:0x0020F9F0; // type:function size:0x90 scope:global align:4
+aSTM_train_arrive_wait = .text:0x0020FA80; // type:function size:0x6C scope:global align:4
+aSTM_move_turn_bf = .text:0x0020FAEC; // type:function size:0x24 scope:global align:4
+aSTM_move = .text:0x0020FB10; // type:function size:0x90 scope:global align:4
+aSTM_in_train = .text:0x0020FBA0; // type:function size:0xB4 scope:global align:4
+aSTM_in_train2 = .text:0x0020FC54; // type:function size:0x58 scope:global align:4
+aSTM_see_off = .text:0x0020FCAC; // type:function size:0x7C scope:global align:4
+aSTM_think_main_proc = .text:0x0020FD28; // type:function size:0x50 scope:global align:4
+aSTM_think_init_proc = .text:0x0020FD78; // type:function size:0xEC scope:global align:4
+aSTM_get_off_wait_init = .text:0x0020FE64; // type:function size:0x44 scope:global align:4
+aSTM_intro_demo_wait_init = .text:0x0020FEA8; // type:function size:0x4C scope:global align:4
+aSTM_interrupt_turn_init = .text:0x0020FEF4; // type:function size:0x6C scope:global align:4
+aSTM_interrupt_move_init = .text:0x0020FF60; // type:function size:0x80 scope:global align:4
+aSTM_make_train_bf_init = .text:0x0020FFE0; // type:function size:0x14 scope:global align:4
+aSTM_make_train_init = .text:0x0020FFF4; // type:function size:0x20 scope:global align:4
+aSTM_move_turn_init = .text:0x00210014; // type:function size:0xAC scope:global align:4
+aSTM_move_init = .text:0x002100C0; // type:function size:0x68 scope:global align:4
+aSTM_see_off_init = .text:0x00210128; // type:function size:0x58 scope:global align:4
+aSTM_game_end_init = .text:0x00210180; // type:function size:0x64 scope:global align:4
+aSTM_setup_think_proc = .text:0x002101E4; // type:function size:0x84 scope:global align:4
+aSTM_think_proc = .text:0x00210268; // type:function size:0x34 scope:global align:4
+aSTM_schedule_init_proc = .text:0x0021029C; // type:function size:0x4C scope:global align:4
+aSTM_schedule_main_proc = .text:0x002102E8; // type:function size:0x80 scope:global align:4
+aSTM_schedule_proc = .text:0x00210368; // type:function size:0x34 scope:global align:4
+aNSPM_actor_ct = .text:0x0021039C; // type:function size:0xB4 scope:global align:4
+aNSPM_actor_save = .text:0x00210450; // type:function size:0x38 scope:global align:4
+aNSPM_actor_dt = .text:0x00210488; // type:function size:0x38 scope:global align:4
+aNSPM_actor_init = .text:0x002104C0; // type:function size:0x38 scope:global align:4
+aNSPM_actor_draw = .text:0x002104F8; // type:function size:0x38 scope:global align:4
+aNSPM_get_zone_sub = .text:0x00210530; // type:function size:0x30 scope:global align:4
+aNSPM_get_zone = .text:0x00210560; // type:function size:0x18C scope:global align:4
+aNSPM_get_next_zone = .text:0x002106EC; // type:function size:0x20 scope:global align:4
+aNSPM_search_player = .text:0x0021070C; // type:function size:0x90 scope:global align:4
+aNSPM_search_player2 = .text:0x0021079C; // type:function size:0xDC scope:global align:4
+aNSPM_check_safe_zone = .text:0x00210878; // type:function size:0x3C scope:global align:4
+aNSPM_actor_move = .text:0x002108B4; // type:function size:0xC4 scope:global align:4
+aNSC_set_animation = .text:0x00210978; // type:function size:0x50 scope:local align:4
+aNSC_BGcheck = .text:0x002109C8; // type:function size:0x44 scope:local align:4
+aNSC_check_present_balloon = .text:0x00210A0C; // type:function size:0x6C scope:local align:4
+aNSC_calc_talk_start_tim = .text:0x00210A78; // type:function size:0x28 scope:local align:4
+aNSC_request_show_camera = .text:0x00210AA0; // type:function size:0x74 scope:local align:4
+aNSC_Set_ListenAble = .text:0x00210B14; // type:function size:0x24 scope:local align:4
+aNSC_set_sell_camera = .text:0x00210B38; // type:function size:0x94 scope:local align:4
+aNSC_sell_camera = .text:0x00210BCC; // type:function size:0xA0 scope:local align:4
+aNSC_talk_demo_proc = .text:0x00210C6C; // type:function size:0x70 scope:local align:4
+aNSC_set_stop_spd = .text:0x00210CDC; // type:function size:0x1C scope:local align:4
+aNSC_set_walk_spd = .text:0x00210CF8; // type:function size:0x2C scope:local align:4
+aNSC_set_run_spd = .text:0x00210D24; // type:function size:0x2C scope:local align:4
+aNSC_set_rehouse_order_date = .text:0x00210D50; // type:function size:0x28 scope:local align:4
+aNSC_set_make_basement_info = .text:0x00210D78; // type:function size:0x5C scope:local align:4
+aNSC_getP_free_ftr_order = .text:0x00210DD4; // type:function size:0x38 scope:local align:4
+aNSC_set_ftr_order = .text:0x00210E0C; // type:function size:0x4C scope:local align:4
+aNSC_set_last_day_str = .text:0x00210E58; // type:function size:0x54 scope:local align:4
+aNSC_set_pw_name_str = .text:0x00210EAC; // type:function size:0x5C scope:local align:4
+aNSC_set_value_str = .text:0x00210F08; // type:function size:0x5C scope:local align:4
+aNSC_set_item_name_str = .text:0x00210F64; // type:function size:0x64 scope:local align:4
+aNSC_set_item_str = .text:0x00210FC8; // type:function size:0x58 scope:local align:4
+aNSC_set_pw_password_str = .text:0x00211020; // type:function size:0x60 scope:local align:4
+aNSC_set_pw_info_str = .text:0x00211080; // type:function size:0x68 scope:local align:4
+aNSC_pc_check_password_famicom = .text:0x002110E8; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password_npc = .text:0x00211130; // type:function size:0x6C scope:local align:4
+aNSC_pc_check_password_card_e = .text:0x0021119C; // type:function size:0x8 scope:local align:4
+aNSC_pc_check_password_magazine = .text:0x002111A4; // type:function size:0x74 scope:local align:4
+aNSC_pc_check_password_card_e_mini = .text:0x00211218; // type:function size:0x18 scope:local align:4
+aNSC_pc_check_password_user = .text:0x00211230; // type:function size:0x48 scope:local align:4
+aNSC_pc_check_password = .text:0x00211278; // type:function size:0xC4 scope:local align:4
+aNSC_check_possession_item_make_password = .text:0x0021133C; // type:function size:0xAC scope:local align:4
+aNSC_set_buy_sum_str = .text:0x002113E8; // type:function size:0xD4 scope:local align:4
+aNSC_decide_next_move_act = .text:0x002114BC; // type:function size:0x110 scope:local align:4
+aNSC_set_zone_data = .text:0x002115CC; // type:function size:0x84 scope:local align:4
+aNSC_set_player_angl = .text:0x00211650; // type:function size:0xC scope:local align:4
+aNSC_money_check = .text:0x0021165C; // type:function size:0x20 scope:local align:4
+aNSC_get_sell_price = .text:0x0021167C; // type:function size:0x20 scope:local align:4
+aNSC_check_money_overflow = .text:0x0021169C; // type:function size:0x94 scope:local align:4
+aNSC_check_buy_item_sub = .text:0x00211730; // type:function size:0xA4 scope:local align:4
+aNSC_check_buy_paper = .text:0x002117D4; // type:function size:0xF0 scope:local align:4
+aNSC_check_buy_item_single = .text:0x002118C4; // type:function size:0x118 scope:local align:4
+aNSC_check_buy_item_plural = .text:0x002119DC; // type:function size:0x8C scope:local align:4
+aNSC_check_buy_item = .text:0x00211A68; // type:function size:0x34 scope:local align:4
+aNSC_check_item_with_ticket = .text:0x00211A9C; // type:function size:0x80 scope:local align:4
+aNSC_setup_ticket_remain = .text:0x00211B1C; // type:function size:0x48 scope:local align:4
+aNSC_check_same_month_ticket = .text:0x00211B64; // type:function size:0x64 scope:local align:4
+aNSC_get_msg_no = .text:0x00211BC8; // type:function size:0x48 scope:local align:4
+aNSC_Set_continue_msg_num = .text:0x00211C10; // type:function size:0x40 scope:local align:4
+aNSC_ChangeMsgData = .text:0x00211C50; // type:function size:0x40 scope:local align:4
+aNSC_set_player_angle = .text:0x00211C90; // type:function size:0x108 scope:local align:4
+aNSC_set_talk_info_show_item = .text:0x00211D98; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_show_cloth = .text:0x00211DD0; // type:function size:0x38 scope:local align:4
+aNSC_set_talk_info_sell_item = .text:0x00211E08; // type:function size:0xC0 scope:local align:4
+aNSC_set_talk_info_message_ctrl = .text:0x00211EC8; // type:function size:0x28 scope:local align:4
+aNSC_set_talk_info_message_ctrl_aprilfool = .text:0x00211EF0; // type:function size:0x48 scope:local align:4
+aNSC_set_talk_info_message_ctrl_tokubai = .text:0x00211F38; // type:function size:0x28 scope:local align:4
+aNSC_message_ctrl = .text:0x00211F60; // type:function size:0x3E0 scope:local align:4
+aNSC_buy_item_single = .text:0x00212340; // type:function size:0xF0 scope:local align:4
+aNSC_buy_paper = .text:0x00212430; // type:function size:0x110 scope:local align:4
+aNSC_buy_item_only_one = .text:0x00212540; // type:function size:0x210 scope:local align:4
+aNSC_get_start_call_msg_no = .text:0x00212750; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait = .text:0x0021278C; // type:function size:0x1F4 scope:local align:4
+aNSC_set_talk_info_start_wait1 = .text:0x00212980; // type:function size:0xE0 scope:local align:4
+aNSC_set_talk_info_start_wait2 = .text:0x00212A60; // type:function size:0x4C scope:local align:4
+aNSC_set_talk_info_start_wait3 = .text:0x00212AAC; // type:function size:0x3C scope:local align:4
+aNSC_set_talk_info_start_wait4 = .text:0x00212AE8; // type:function size:0x28 scope:local align:4
+aNSC_start_wait = .text:0x00212B10; // type:function size:0x2B4 scope:local align:4
+aNSC_say_hello_approach = .text:0x00212DC4; // type:function size:0x90 scope:local align:4
+aNSC_say_hello_end_wait = .text:0x00212E54; // type:function size:0x74 scope:local align:4
+aNSC_check_col_chg_or_make_basement = .text:0x00212EC8; // type:function size:0xCC scope:local align:4
+aNSC_check_roof_col_order = .text:0x00212F94; // type:function size:0x138 scope:local align:4
+aNSC_check_roof_col_order2 = .text:0x002130CC; // type:function size:0xF4 scope:local align:4
+aNSC_present_balloon_start_wait = .text:0x002131C0; // type:function size:0x5C scope:local align:4
+aNSC_present_balloon_trans_move = .text:0x0021321C; // type:function size:0x3C scope:local align:4
+aNSC_present_balloon_trans_takeout = .text:0x00213258; // type:function size:0xDC scope:local align:4
+aNSC_present_balloon_trans_wait = .text:0x00213334; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait = .text:0x00213374; // type:function size:0x68 scope:local align:4
+aNSC_set_talk_info_request_Q_start_wait = .text:0x002133DC; // type:function size:0x30 scope:local align:4
+aNSC_request_Q_start_wait = .text:0x0021340C; // type:function size:0x84 scope:local align:4
+aNSC_request_Q_answer_wait = .text:0x00213490; // type:function size:0x114 scope:local align:4
+aNSC_request_Q_answer_wait2 = .text:0x002135A4; // type:function size:0x190 scope:local align:4
+aNSC_request_Q_end_wait = .text:0x00213734; // type:function size:0x74 scope:local align:4
+aNSC_answer_buy_item = .text:0x002137A8; // type:function size:0x7C scope:local align:4
+aNSC_buy_menu_open_wait = .text:0x00213824; // type:function size:0x58 scope:local align:4
+aNSC_buy_menu_close_wait = .text:0x0021387C; // type:function size:0x34 scope:local align:4
+aNSC_msg_win_open_wait = .text:0x002138B0; // type:function size:0xC8 scope:local align:4
+aNSC_buy_sum_check = .text:0x00213978; // type:function size:0xFC scope:local align:4
+aNSC_buy_check = .text:0x00213A74; // type:function size:0x280 scope:local align:4
+aNSC_buy_after_service = .text:0x00213CF4; // type:function size:0x7C scope:local align:4
+aNSC_buy_continue_check = .text:0x00213D70; // type:function size:0xEC scope:local align:4
+aNSC_receive_check = .text:0x00213E5C; // type:function size:0xA4 scope:local align:4
+aNSC_msg_win_open_wait2 = .text:0x00213F00; // type:function size:0xC8 scope:local align:4
+aNSC_order_check = .text:0x00213FC8; // type:function size:0xFC scope:local align:4
+aNSC_sell_check_before = .text:0x002140C4; // type:function size:0x68 scope:local align:4
+aNSC_sell_check = .text:0x0021412C; // type:function size:0xB8 scope:local align:4
+aNSC_sell_answer0 = .text:0x002141E4; // type:function size:0x234 scope:local align:4
+aNSC_sell_item_with_ticket = .text:0x00214418; // type:function size:0xB8 scope:local align:4
+aNSC_show_item_check = .text:0x002144D0; // type:function size:0x1CC scope:local align:4
+aNSC_chg_cloth_start_wait = .text:0x0021469C; // type:function size:0xC8 scope:local align:4
+aNSC_chg_cloth_end_wait = .text:0x00214764; // type:function size:0x5C scope:local align:4
+aNSC_pw_entry_send_addr_start_wait = .text:0x002147C0; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait = .text:0x00214838; // type:function size:0xAC scope:local align:4
+aNSC_pw_send_addr_check = .text:0x002148E4; // type:function size:0xDC scope:local align:4
+aNSC_pw_sel_item_start_wait = .text:0x002149C0; // type:function size:0x78 scope:local align:4
+aNSC_pw_msg_win_open_wait2 = .text:0x00214A38; // type:function size:0xB0 scope:local align:4
+aNSC_pw_send_check = .text:0x00214AE8; // type:function size:0x12C scope:local align:4
+aNSC_pw_retry_sel_item_check = .text:0x00214C14; // type:function size:0xC8 scope:local align:4
+aNSC_pc_input_pw_start_wait = .text:0x00214CDC; // type:function size:0x78 scope:local align:4
+aNSC_pc_msg_win_open_wait = .text:0x00214D54; // type:function size:0x94 scope:local align:4
+aNSC_pc_retry_input_pw_check = .text:0x00214DE8; // type:function size:0xF4 scope:local align:4
+aNSC_pc_present_start_wait = .text:0x00214EDC; // type:function size:0x5C scope:local align:4
+aNSC_pc_present_trans_takeout = .text:0x00214F38; // type:function size:0xDC scope:local align:4
+aNSC_pc_present_trans_wait = .text:0x00215014; // type:function size:0x40 scope:local align:4
+aNSC_pc_present_end_wait = .text:0x00215054; // type:function size:0x68 scope:local align:4
+aNSC_wait = .text:0x002150BC; // type:function size:0x78 scope:local align:4
+aNSC_walk_pl_other_zone = .text:0x00215134; // type:function size:0x78 scope:local align:4
+aNSC_turn = .text:0x002151AC; // type:function size:0x98 scope:local align:4
+aNSC_set_talk_info_goodbye_wait = .text:0x00215244; // type:function size:0x30 scope:local align:4
+aNSC_goodbye_wait = .text:0x00215274; // type:function size:0x9C scope:local align:4
+aNSC_say_goodbye = .text:0x00215310; // type:function size:0x60 scope:local align:4
+aNSC_exit_wait = .text:0x00215370; // type:function size:0x74 scope:local align:4
+aNSC_say_hello_approach_init = .text:0x002153E4; // type:function size:0x20 scope:local align:4
+aNSC_say_hello_end_wait_init = .text:0x00215404; // type:function size:0x28 scope:local align:4
+aNSC_check_col_chg_or_make_basement_init = .text:0x0021542C; // type:function size:0x20 scope:local align:4
+aNSC_check_roof_col_order_init = .text:0x0021544C; // type:function size:0x40 scope:local align:4
+aNSC_check_roof_col_order2_init = .text:0x0021548C; // type:function size:0x2C scope:local align:4
+aNSC_present_balloon_start_wait_init = .text:0x002154B8; // type:function size:0x1C scope:local align:4
+aNSC_present_balloon_trans_move_init = .text:0x002154D4; // type:function size:0x8C scope:local align:4
+aNSC_present_balloon_trans_takeout_init = .text:0x00215560; // type:function size:0x40 scope:local align:4
+aNSC_present_balloon_end_wait_init = .text:0x002155A0; // type:function size:0x10 scope:local align:4
+aNSC_request_Q_answer_wait_init = .text:0x002155B0; // type:function size:0x40 scope:local align:4
+aNSC_request_Q_end_wait_init = .text:0x002155F0; // type:function size:0x20 scope:local align:4
+aNSC_answer_buy_item_init = .text:0x00215610; // type:function size:0x2C scope:local align:4
+aNSC_buy_menu_open_wait_init = .text:0x0021563C; // type:function size:0x24 scope:local align:4
+aNSC_buy_menu_close_wait_init = .text:0x00215660; // type:function size:0x44 scope:local align:4
+aNSC_msg_win_open_wait_init = .text:0x002156A4; // type:function size:0x24 scope:local align:4
+aNSC_buy_sum_check_init = .text:0x002156C8; // type:function size:0x2C scope:local align:4
+aNSC_buy_check_init = .text:0x002156F4; // type:function size:0xF8 scope:local align:4
+aNSC_buy_after_service_init = .text:0x002157EC; // type:function size:0x2C scope:local align:4
+aNSC_order_select_menu_close_wait_init = .text:0x00215818; // type:function size:0x44 scope:local align:4
+aNSC_order_check_init = .text:0x0021585C; // type:function size:0x2C scope:local align:4
+aNSC_sell_check_before_init = .text:0x00215888; // type:function size:0x40 scope:local align:4
+aNSC_sell_answer0_init = .text:0x002158C8; // type:function size:0x118 scope:local align:4
+aNSC_sell_answer1_init = .text:0x002159E0; // type:function size:0x34 scope:local align:4
+aNSC_sell_item_init = .text:0x00215A14; // type:function size:0x64 scope:local align:4
+aNSC_sell_item_with_ticket_init = .text:0x00215A78; // type:function size:0x50 scope:local align:4
+aNSC_sell_refuse0_init = .text:0x00215AC8; // type:function size:0xC scope:local align:4
+aNSC_show_item_check_init = .text:0x00215AD4; // type:function size:0x20 scope:local align:4
+aNSC_chg_cloth_start_wait_init = .text:0x00215AF4; // type:function size:0x24 scope:local align:4
+aNSC_pw_entry_send_addr_start_wait_init = .text:0x00215B18; // type:function size:0x2C scope:local align:4
+aNSC_pw_make_menu_close_wait_init = .text:0x00215B44; // type:function size:0x64 scope:local align:4
+aNSC_pw_send_addr_check_init = .text:0x00215BA8; // type:function size:0x20 scope:local align:4
+aNSC_pw_sel_item_menu_close_wait_init = .text:0x00215BC8; // type:function size:0x44 scope:local align:4
+aNSC_pc_input_pw_start_wait_init = .text:0x00215C0C; // type:function size:0x3C scope:local align:4
+aNSC_pc_chk_menu_close_wait_init = .text:0x00215C48; // type:function size:0x48 scope:local align:4
+aNSC_pc_present_trans_takeout_init = .text:0x00215C90; // type:function size:0x88 scope:local align:4
+aNSC_pc_present_end_wait_init = .text:0x00215D18; // type:function size:0x10 scope:local align:4
+aNSC_wait_init = .text:0x00215D28; // type:function size:0x20 scope:local align:4
+aNSC_walk_pl_same_zone_init = .text:0x00215D48; // type:function size:0x20 scope:local align:4
+aNSC_run_pl_same_zone_init = .text:0x00215D68; // type:function size:0x20 scope:local align:4
+aNSC_goodbye_wait_init = .text:0x00215D88; // type:function size:0x20 scope:local align:4
+aNSC_say_goodbye_init = .text:0x00215DA8; // type:function size:0x24 scope:local align:4
+aNSC_init_proc = .text:0x00215DCC; // type:function size:0x34 scope:local align:4
+aNSC_setupAction = .text:0x00215E00; // type:function size:0x68 scope:local align:4
+aNTT_actor_ct = .text:0x00215E68; // type:function size:0x224 scope:global align:4
+aNTT_actor_save = .text:0x0021608C; // type:function size:0x20 scope:global align:4
+aNTT_actor_dt = .text:0x002160AC; // type:function size:0x8C scope:global align:4
+aNTT_actor_init = .text:0x00216138; // type:function size:0x38 scope:global align:4
+aNTT_actor_move = .text:0x00216170; // type:function size:0x58 scope:global align:4
+aNTT_actor_draw = .text:0x002161C8; // type:function size:0xB0 scope:global align:4
+aNTT_bitset_func = .text:0x00216278; // type:function size:0x7C scope:global align:4
+aNTT_bitcheck_func = .text:0x002162F4; // type:function size:0x78 scope:global align:4
+aNTT_enso_init = .text:0x0021636C; // type:function size:0x1C scope:global align:4
+aTTN_give_merody = .text:0x00216388; // type:function size:0xC0 scope:global align:4
+aNTT_talk_select0 = .text:0x00216448; // type:function size:0x100 scope:global align:4
+aNTT_talk_select1 = .text:0x00216548; // type:function size:0x158 scope:global align:4
+aNTT_talk_stop_player = .text:0x002166A0; // type:function size:0xDC scope:global align:4
+aNTT_talk_submenu = .text:0x0021677C; // type:function size:0x80 scope:global align:4
+aNTT_talk_submenu2 = .text:0x002167FC; // type:function size:0x124 scope:global align:4
+aNTT_talk_give = .text:0x00216920; // type:function size:0x84 scope:global align:4
+aNTT_change_talk_proc = .text:0x002169A4; // type:function size:0x60 scope:global align:4
+aNTT_set_force_talk_info = .text:0x00216A04; // type:function size:0x90 scope:global align:4
+aNTT_force_talk_request = .text:0x00216A94; // type:function size:0x48 scope:global align:4
+aNTT_set_norm_talk_info = .text:0x00216ADC; // type:function size:0xB4 scope:global align:4
+aNTT_norm_talk_request = .text:0x00216B90; // type:function size:0x48 scope:global align:4
+aNTT_talk_init = .text:0x00216BD8; // type:function size:0x64 scope:global align:4
+aNTT_talk_end_chk = .text:0x00216C3C; // type:function size:0xA4 scope:global align:4
+aNTT_wait = .text:0x00216CE0; // type:function size:0x108 scope:global align:4
+aNTT_roll = .text:0x00216DE8; // type:function size:0x90 scope:global align:4
+aNTT_roll1 = .text:0x00216E78; // type:function size:0xD4 scope:global align:4
+aNTT_roll2 = .text:0x00216F4C; // type:function size:0x244 scope:global align:4
+aNTT_roll4 = .text:0x00217190; // type:function size:0x1A0 scope:global align:4
+aNTT_roll_end = .text:0x00217330; // type:function size:0xA8 scope:global align:4
+aNTT_think_main_proc = .text:0x002173D8; // type:function size:0x38 scope:global align:4
+aNTT_think_init_proc = .text:0x00217410; // type:function size:0x34 scope:global align:4
+aNTT_setup_think_proc = .text:0x00217444; // type:function size:0xA0 scope:global align:4
+aNTT_think_proc = .text:0x002174E4; // type:function size:0x40 scope:global align:4
+aNTT_schedule_init_proc = .text:0x00217524; // type:function size:0x4C scope:global align:4
+aNTT_schedule_main_proc = .text:0x00217570; // type:function size:0x80 scope:global align:4
+aNTT_schedule_proc = .text:0x002175F0; // type:function size:0x40 scope:global align:4
+aPST_actor_ct = .text:0x00217630; // type:function size:0x84 scope:global align:4
+aPST_actor_dt = .text:0x002176B4; // type:function size:0x70 scope:global align:4
+aPST_actor_save = .text:0x00217724; // type:function size:0x38 scope:global align:4
+aPST_actor_init = .text:0x0021775C; // type:function size:0x38 scope:global align:4
+aPST_actor_draw = .text:0x00217794; // type:function size:0x38 scope:global align:4
+aPST_set_request_act = .text:0x002177CC; // type:function size:0x94 scope:global align:4
+aPST_make_umbrella = .text:0x00217860; // type:function size:0xA4 scope:global align:4
+aPST_actor_move = .text:0x00217904; // type:function size:0x68 scope:global align:4
+aPST_check_first_present = .text:0x0021796C; // type:function size:0x34 scope:global align:4
+aPST_present_send_start_wait_talk_proc = .text:0x002179A0; // type:function size:0x15C scope:global align:4
+aPST_present_send_end_wait_talk_proc = .text:0x00217AFC; // type:function size:0x58 scope:global align:4
+aPST_change_talk_proc = .text:0x00217B54; // type:function size:0x18 scope:global align:4
+aPST_set_talk_info = .text:0x00217B6C; // type:function size:0x1C0 scope:global align:4
+aPST_talk_request = .text:0x00217D2C; // type:function size:0x30 scope:global align:4
+aPST_talk_init = .text:0x00217D5C; // type:function size:0x30 scope:global align:4
+aPST_talk_end_chk = .text:0x00217D8C; // type:function size:0x70 scope:global align:4
+aPST_wait = .text:0x00217DFC; // type:function size:0x60 scope:global align:4
+aPST_exit_turn = .text:0x00217E5C; // type:function size:0x3C scope:global align:4
+aPST_exit = .text:0x00217E98; // type:function size:0x148 scope:global align:4
+aPST_think_main_proc = .text:0x00217FE0; // type:function size:0x28 scope:global align:4
+aPST_think_init_proc = .text:0x00218008; // type:function size:0x24 scope:global align:4
+aPST_exit_turn_init = .text:0x0021802C; // type:function size:0xA4 scope:global align:4
+aPST_setup_think_proc = .text:0x002180D0; // type:function size:0x5C scope:global align:4
+aPST_think_proc = .text:0x0021812C; // type:function size:0x34 scope:global align:4
+aPST_schedule_init_proc = .text:0x00218160; // type:function size:0xF8 scope:global align:4
+aPST_schedule_main_proc = .text:0x00218258; // type:function size:0x80 scope:global align:4
+aPST_schedule_proc = .text:0x002182D8; // type:function size:0x34 scope:global align:4
+aTS0_actor_ct = .text:0x0021830C; // type:function size:0xB8 scope:global align:4
+aTS0_actor_save = .text:0x002183C4; // type:function size:0x38 scope:global align:4
+aTS0_actor_dt = .text:0x002183FC; // type:function size:0xE4 scope:global align:4
+aTS0_actor_init = .text:0x002184E0; // type:function size:0x38 scope:global align:4
+aTS0_actor_move = .text:0x00218518; // type:function size:0xD4 scope:global align:4
+aTS0_actor_draw = .text:0x002185EC; // type:function size:0x38 scope:global align:4
+aTS0_set_current = .text:0x00218624; // type:function size:0x6C scope:global align:4
+aTS0_set_animation = .text:0x00218690; // type:function size:0x58 scope:global align:4
+aTS0_set_animation2 = .text:0x002186E8; // type:function size:0x44 scope:global align:4
+aTS0_set_request_act = .text:0x0021872C; // type:function size:0x1C scope:global align:4
+aTS0_act_chg_data_proc = .text:0x00218748; // type:function size:0xC scope:global align:4
+aTS0_act_init_proc = .text:0x00218754; // type:function size:0x40 scope:global align:4
+aTS0_act_proc = .text:0x00218794; // type:function size:0x34 scope:global align:4
+aTS0_setup_delay_cnt = .text:0x002187C8; // type:function size:0x54 scope:global align:4
+aTS0_check_over_bgm_block_part = .text:0x0021881C; // type:function size:0x88 scope:global align:4
+aTS0_setup_morph = .text:0x002188A4; // type:function size:0x50 scope:global align:4
+aTS0_ctrl_gymnastic_force = .text:0x002188F4; // type:function size:0x88 scope:global align:4
+aTS0_ctrl_gymnastic_sub0 = .text:0x0021897C; // type:function size:0x18C scope:global align:4
+aTS0_ctrl_gymnastic_sub1 = .text:0x00218B08; // type:function size:0x74 scope:global align:4
+aTS0_ctrl_gymnastic_restart = .text:0x00218B7C; // type:function size:0x74 scope:global align:4
+aTS0_ctrl_gymnastic_failure_step1 = .text:0x00218BF0; // type:function size:0x28 scope:global align:4
+aTS0_ctrl_gymnastic_failure_step2 = .text:0x00218C18; // type:function size:0x104 scope:global align:4
+aTS0_setup_anm_data = .text:0x00218D1C; // type:function size:0xEC scope:global align:4
+aTS0_ctrl_gymnastic = .text:0x00218E08; // type:function size:0x14C scope:global align:4
+aTS0_think_main_proc = .text:0x00218F54; // type:function size:0x50 scope:global align:4
+aTS0_think_init_proc = .text:0x00218FA4; // type:function size:0x34 scope:global align:4
+aTS0_think_proc = .text:0x00218FD8; // type:function size:0x34 scope:global align:4
+aTS0_schedule_init_proc = .text:0x0021900C; // type:function size:0x110 scope:global align:4
+aTS0_schedule_main_proc = .text:0x0021911C; // type:function size:0x80 scope:global align:4
+aTS0_schedule_proc = .text:0x0021919C; // type:function size:0x34 scope:global align:4
+aTS0_set_talk_info = .text:0x002191D0; // type:function size:0x13C scope:global align:4
+aTS0_talk_request = .text:0x0021930C; // type:function size:0x30 scope:global align:4
+aTS0_talk_init = .text:0x0021933C; // type:function size:0xB8 scope:global align:4
+aTS0_talk_end_chk = .text:0x002193F4; // type:function size:0x74 scope:global align:4
+aTMN0_actor_ct = .text:0x00219468; // type:function size:0xDC scope:global align:4
+aTMN0_actor_save = .text:0x00219544; // type:function size:0x20 scope:global align:4
+aTMN0_actor_dt = .text:0x00219564; // type:function size:0x38 scope:global align:4
+aTMN0_actor_init = .text:0x0021959C; // type:function size:0x38 scope:global align:4
+aTMN0_set_request_act = .text:0x002195D4; // type:function size:0x94 scope:global align:4
+aTMN0_actor_move = .text:0x00219668; // type:function size:0x38 scope:global align:4
+aTMN0_actor_draw = .text:0x002196A0; // type:function size:0x38 scope:global align:4
+aTMN0_change_talk_proc = .text:0x002196D8; // type:function size:0x1C scope:global align:4
+aTMN0_set_nsg = .text:0x002196F4; // type:function size:0x5C scope:global align:4
+aTMN0_set_norm_talk_info = .text:0x00219750; // type:function size:0x48 scope:global align:4
+aTMN0_norm_talk_request = .text:0x00219798; // type:function size:0x48 scope:global align:4
+aTMN0_talk_init = .text:0x002197E0; // type:function size:0x44 scope:global align:4
+aTMN0_talk_end_chk = .text:0x00219824; // type:function size:0x84 scope:global align:4
+aTMN0_set_move_pos = .text:0x002198A8; // type:function size:0x98 scope:global align:4
+aTMN0_birth = .text:0x00219940; // type:function size:0x64 scope:global align:4
+aTMN0_turn_next = .text:0x002199A4; // type:function size:0x44 scope:global align:4
+aTMN0_move_next = .text:0x002199E8; // type:function size:0x98 scope:global align:4
+aTMN0_timer_next = .text:0x00219A80; // type:function size:0x6C scope:global align:4
+aTMN0_think_main_proc = .text:0x00219AEC; // type:function size:0x74 scope:global align:4
+aTMN0_think_init_proc = .text:0x00219B60; // type:function size:0x50 scope:global align:4
+aTMN0_normal_wait_init = .text:0x00219BB0; // type:function size:0x38 scope:global align:4
+aTMN0_turn_init = .text:0x00219BE8; // type:function size:0x4C scope:global align:4
+aTMN0_move_init = .text:0x00219C34; // type:function size:0x40 scope:global align:4
+aTMN0_kansen_init = .text:0x00219C74; // type:function size:0xA4 scope:global align:4
+aTMN0_setup_think_proc = .text:0x00219D18; // type:function size:0xB0 scope:global align:4
+aTMN0_think_proc = .text:0x00219DC8; // type:function size:0x40 scope:global align:4
+aTMN0_schedule_init_proc = .text:0x00219E08; // type:function size:0x4C scope:global align:4
+aTMN0_schedule_main_proc = .text:0x00219E54; // type:function size:0x80 scope:global align:4
+aTMN0_schedule_proc = .text:0x00219ED4; // type:function size:0x40 scope:global align:4
+aTMN1_actor_ct = .text:0x00219F14; // type:function size:0x124 scope:global align:4
+aTMN1_actor_save = .text:0x0021A038; // type:function size:0x20 scope:global align:4
+aTMN1_actor_dt = .text:0x0021A058; // type:function size:0x68 scope:global align:4
+aTMN1_actor_init = .text:0x0021A0C0; // type:function size:0x38 scope:global align:4
+aTMN1_set_request_act = .text:0x0021A0F8; // type:function size:0x94 scope:global align:4
+aTMN1_tama_process = .text:0x0021A18C; // type:function size:0x110 scope:global align:4
+aTMN1_actor_move = .text:0x0021A29C; // type:function size:0x5C scope:global align:4
+aTMN1_actor_draw = .text:0x0021A2F8; // type:function size:0x38 scope:global align:4
+aTMN1_set_norm_talk_info = .text:0x0021A330; // type:function size:0x90 scope:global align:4
+aTMN1_norm_talk_request = .text:0x0021A3C0; // type:function size:0x48 scope:global align:4
+aTMN1_talk_init = .text:0x0021A408; // type:function size:0x44 scope:global align:4
+aTMN1_talk_end_chk = .text:0x0021A44C; // type:function size:0x84 scope:global align:4
+aTMN1_nageru_bitcheck = .text:0x0021A4D0; // type:function size:0x28 scope:global align:4
+aTMN1_nageru_bitset = .text:0x0021A4F8; // type:function size:0x3C scope:global align:4
+aTMN1_nageru_bitclr = .text:0x0021A534; // type:function size:0x38 scope:global align:4
+aTMN1_Tamakago_angle = .text:0x0021A56C; // type:function size:0x70 scope:global align:4
+aTMN1_Next_move = .text:0x0021A5DC; // type:function size:0x158 scope:global align:4
+aTMN1_timer_next = .text:0x0021A734; // type:function size:0x44 scope:global align:4
+aTMN1_birth = .text:0x0021A778; // type:function size:0x98 scope:global align:4
+aTMN1_walk = .text:0x0021A810; // type:function size:0xB8 scope:global align:4
+aTMN1_turn_next = .text:0x0021A8C8; // type:function size:0x38 scope:global align:4
+aTMN1_hirou = .text:0x0021A900; // type:function size:0x98 scope:global align:4
+aTMN1_hirou_sp = .text:0x0021A998; // type:function size:0x30 scope:global align:4
+aTMN1_anime_next = .text:0x0021A9C8; // type:function size:0x5C scope:global align:4
+aTMN1_nageru = .text:0x0021AA24; // type:function size:0x130 scope:global align:4
+aTMN1_nageru_end = .text:0x0021AB54; // type:function size:0xC8 scope:global align:4
+aTMN1_think_main_proc = .text:0x0021AC1C; // type:function size:0xB0 scope:global align:4
+aTMN1_think_init_proc = .text:0x0021ACCC; // type:function size:0x50 scope:global align:4
+aTMN1_normal_wait_init = .text:0x0021AD1C; // type:function size:0x38 scope:global align:4
+aTMN1_hirou_mae_init = .text:0x0021AD54; // type:function size:0x84 scope:global align:4
+aTMN1_move_init = .text:0x0021ADD8; // type:function size:0x4C scope:global align:4
+aTMN1_kyoro_mae_init = .text:0x0021AE24; // type:function size:0x34 scope:global align:4
+aTMN1_kyoro_init = .text:0x0021AE58; // type:function size:0x5C scope:global align:4
+aTMN1_walk_turn_init = .text:0x0021AEB4; // type:function size:0x54 scope:global align:4
+aTMN1_hirou_init = .text:0x0021AF08; // type:function size:0x40 scope:global align:4
+aTMN1_hirou_sp_init = .text:0x0021AF48; // type:function size:0x50 scope:global align:4
+aTMN1_hirou_end_init = .text:0x0021AF98; // type:function size:0x38 scope:global align:4
+aTMN1_nageru_init = .text:0x0021AFD0; // type:function size:0x60 scope:global align:4
+aTMN1_nageru_end_init = .text:0x0021B030; // type:function size:0x5C scope:global align:4
+aTMN1_setup_think_proc = .text:0x0021B08C; // type:function size:0xA4 scope:global align:4
+aTMN1_think_proc = .text:0x0021B130; // type:function size:0x40 scope:global align:4
+aTMN1_schedule_init_proc = .text:0x0021B170; // type:function size:0x4C scope:global align:4
+aTMN1_schedule_main_proc = .text:0x0021B1BC; // type:function size:0x80 scope:global align:4
+aTMN1_schedule_proc = .text:0x0021B23C; // type:function size:0x40 scope:global align:4
+aTKN0_actor_ct = .text:0x0021B27C; // type:function size:0x13C scope:global align:4
+aTKN0_actor_save = .text:0x0021B3B8; // type:function size:0x20 scope:global align:4
+aTKN0_actor_dt = .text:0x0021B3D8; // type:function size:0x7C scope:global align:4
+aTKN0_actor_init = .text:0x0021B454; // type:function size:0x38 scope:global align:4
+aTKN0_set_request_act = .text:0x0021B48C; // type:function size:0x94 scope:global align:4
+aTKN0_make_pistoru = .text:0x0021B520; // type:function size:0x74 scope:global align:4
+aTKN0_actor_move = .text:0x0021B594; // type:function size:0x5C scope:global align:4
+aTKN0_actor_draw = .text:0x0021B5F0; // type:function size:0x38 scope:global align:4
+aTKN0_set_norm_talk_info = .text:0x0021B628; // type:function size:0x90 scope:global align:4
+aTKN0_norm_talk_request = .text:0x0021B6B8; // type:function size:0x48 scope:global align:4
+aTKN0_talk_init = .text:0x0021B700; // type:function size:0x44 scope:global align:4
+aTKN0_talk_end_chk = .text:0x0021B744; // type:function size:0x84 scope:global align:4
+aTKN0_turn_next = .text:0x0021B7C8; // type:function size:0x3C scope:global align:4
+aTKN0_birth = .text:0x0021B804; // type:function size:0x6C scope:global align:4
+aTKN0_wait = .text:0x0021B870; // type:function size:0x68 scope:global align:4
+aTKN0_anime_next = .text:0x0021B8D8; // type:function size:0x60 scope:global align:4
+aTKN0_timer_next = .text:0x0021B938; // type:function size:0x48 scope:global align:4
+aTKN0_lathe = .text:0x0021B980; // type:function size:0xA4 scope:global align:4
+aTKN0_think_main_proc = .text:0x0021BA24; // type:function size:0x8C scope:global align:4
+aTKN0_think_init_proc = .text:0x0021BAB0; // type:function size:0x48 scope:global align:4
+aTKN0_normal_wait_init = .text:0x0021BAF8; // type:function size:0x38 scope:global align:4
+aTKN0_turn_f_init = .text:0x0021BB30; // type:function size:0x5C scope:global align:4
+aTKN0_ready_init = .text:0x0021BB8C; // type:function size:0x34 scope:global align:4
+aTKN0_set_init = .text:0x0021BBC0; // type:function size:0x54 scope:global align:4
+aTKN0_set_af_init = .text:0x0021BC14; // type:function size:0xA0 scope:global align:4
+aTKN0_start_init = .text:0x0021BCB4; // type:function size:0x104 scope:global align:4
+aTKN0_lathe_init = .text:0x0021BDB8; // type:function size:0x28 scope:global align:4
+aTKN0_setup_think_proc = .text:0x0021BDE0; // type:function size:0x9C scope:global align:4
+aTKN0_think_proc = .text:0x0021BE7C; // type:function size:0x40 scope:global align:4
+aTKN0_schedule_init_proc = .text:0x0021BEBC; // type:function size:0x4C scope:global align:4
+aTKN0_schedule_main_proc = .text:0x0021BF08; // type:function size:0x80 scope:global align:4
+aTKN0_schedule_proc = .text:0x0021BF88; // type:function size:0x40 scope:global align:4
+aTKN1_actor_ct = .text:0x0021BFC8; // type:function size:0xBC scope:global align:4
+aTKN1_actor_save = .text:0x0021C084; // type:function size:0x20 scope:global align:4
+aTKN1_actor_dt = .text:0x0021C0A4; // type:function size:0x38 scope:global align:4
+aTKN1_actor_init = .text:0x0021C0DC; // type:function size:0x38 scope:global align:4
+aTKN1_set_request_act = .text:0x0021C114; // type:function size:0x94 scope:local align:4
+aTKN1_actor_move = .text:0x0021C1A8; // type:function size:0xAC scope:global align:4
+aTKN1_actor_draw = .text:0x0021C254; // type:function size:0x38 scope:global align:4
+aTKN1_set_norm_talk_info = .text:0x0021C28C; // type:function size:0x38 scope:global align:4
+aTKN1_norm_talk_request = .text:0x0021C2C4; // type:function size:0x48 scope:global align:4
+aTKN1_talk_init = .text:0x0021C30C; // type:function size:0x44 scope:global align:4
+aTKN1_talk_end_chk = .text:0x0021C350; // type:function size:0x114 scope:global align:4
+aTKN1_local_to_goal = .text:0x0021C464; // type:function size:0x98 scope:global align:4
+aTKN1_local_redy_check = .text:0x0021C4FC; // type:function size:0x108 scope:global align:4
+aTKN1_birth = .text:0x0021C604; // type:function size:0x98 scope:global align:4
+aTKN1_warmup = .text:0x0021C69C; // type:function size:0xC0 scope:global align:4
+aTKN1_warmup3 = .text:0x0021C75C; // type:function size:0x90 scope:global align:4
+aTKN1_turn_next = .text:0x0021C7EC; // type:function size:0x3C scope:global align:4
+aTKN1_ready = .text:0x0021C828; // type:function size:0xD0 scope:global align:4
+aTKN1_run = .text:0x0021C8F8; // type:function size:0x180 scope:global align:4
+aTKN1_kokeru = .text:0x0021CA78; // type:function size:0xDC scope:global align:4
+aTKN1_getup = .text:0x0021CB54; // type:function size:0x90 scope:global align:4
+aTKN1_kansen_bf = .text:0x0021CBE4; // type:function size:0x84 scope:global align:4
+aTKN1_kansen = .text:0x0021CC68; // type:function size:0xE8 scope:global align:4
+aTKN1_goal1 = .text:0x0021CD50; // type:function size:0x30 scope:global align:4
+aTKN1_omedeto = .text:0x0021CD80; // type:function size:0x100 scope:global align:4
+aTKN1_omedeto_af = .text:0x0021CE80; // type:function size:0xAC scope:global align:4
+aTKN1_move = .text:0x0021CF2C; // type:function size:0x7C scope:global align:4
+aTKN1_move_wm = .text:0x0021CFA8; // type:function size:0xB0 scope:global align:4
+aTKN1_goal_af = .text:0x0021D058; // type:function size:0x120 scope:global align:4
+aTKN1_think_main_proc = .text:0x0021D178; // type:function size:0x18C scope:global align:4
+aTKN1_think_init_proc = .text:0x0021D304; // type:function size:0x58 scope:global align:4
+aTKN1_setup_think_proc = .text:0x0021D35C; // type:function size:0xAC scope:global align:4
+aTKN1_think_proc = .text:0x0021D408; // type:function size:0x40 scope:global align:4
+aTKN1_schedule_init_proc = .text:0x0021D448; // type:function size:0x4C scope:global align:4
+aTKN1_schedule_main_proc = .text:0x0021D494; // type:function size:0xCC scope:global align:4
+aTKN1_schedule_proc = .text:0x0021D560; // type:function size:0x40 scope:global align:4
+aTM0_actor_ct = .text:0x0021D5A0; // type:function size:0x84 scope:global align:4
+aTM0_actor_save = .text:0x0021D624; // type:function size:0x38 scope:global align:4
+aTM0_actor_dt = .text:0x0021D65C; // type:function size:0x38 scope:global align:4
+aTM0_actor_init = .text:0x0021D694; // type:function size:0x38 scope:global align:4
+aTM0_actor_move = .text:0x0021D6CC; // type:function size:0x38 scope:global align:4
+aTM0_actor_draw = .text:0x0021D704; // type:function size:0x38 scope:global align:4
+aTM0_set_animation = .text:0x0021D73C; // type:function size:0x40 scope:global align:4
+aTM0_set_request_act = .text:0x0021D77C; // type:function size:0x1C scope:global align:4
+aTM0_act_chg_data_proc = .text:0x0021D798; // type:function size:0xC scope:global align:4
+aTM0_act_init_proc = .text:0x0021D7A4; // type:function size:0x28 scope:global align:4
+aTM0_act_proc = .text:0x0021D7CC; // type:function size:0x34 scope:global align:4
+aTM0_think_main_proc = .text:0x0021D800; // type:function size:0x5C scope:global align:4
+aTM0_think_init_proc = .text:0x0021D85C; // type:function size:0x34 scope:global align:4
+aTM0_think_proc = .text:0x0021D890; // type:function size:0x34 scope:global align:4
+aTM0_schedule_init_proc = .text:0x0021D8C4; // type:function size:0xF0 scope:global align:4
+aTM0_schedule_main_proc = .text:0x0021D9B4; // type:function size:0xF8 scope:global align:4
+aTM0_schedule_proc = .text:0x0021DAAC; // type:function size:0x34 scope:global align:4
+aTM0_set_talk_info = .text:0x0021DAE0; // type:function size:0x108 scope:global align:4
+aTM0_talk_request = .text:0x0021DBE8; // type:function size:0x30 scope:global align:4
+aTM0_talk_init = .text:0x0021DC18; // type:function size:0x24 scope:global align:4
+aTM0_talk_end_chk = .text:0x0021DC3C; // type:function size:0x44 scope:global align:4
+aTM1_actor_ct = .text:0x0021DC80; // type:function size:0x84 scope:global align:4
+aTM1_actor_save = .text:0x0021DD04; // type:function size:0x38 scope:global align:4
+aTM1_actor_dt = .text:0x0021DD3C; // type:function size:0x38 scope:global align:4
+aTM1_actor_init = .text:0x0021DD74; // type:function size:0x38 scope:global align:4
+aTM1_actor_move = .text:0x0021DDAC; // type:function size:0x38 scope:global align:4
+aTM1_actor_draw = .text:0x0021DDE4; // type:function size:0x38 scope:global align:4
+aTM1_set_animation = .text:0x0021DE1C; // type:function size:0x4C scope:global align:4
+aTM1_set_request_act = .text:0x0021DE68; // type:function size:0x1C scope:global align:4
+aTM1_act_chg_data_proc = .text:0x0021DE84; // type:function size:0xC scope:global align:4
+aTM1_act_init_proc = .text:0x0021DE90; // type:function size:0x38 scope:global align:4
+aTM1_act_proc = .text:0x0021DEC8; // type:function size:0x34 scope:global align:4
+aTM1_think_main_proc = .text:0x0021DEFC; // type:function size:0x6C scope:global align:4
+aTM1_think_init_proc = .text:0x0021DF68; // type:function size:0x34 scope:global align:4
+aTM1_think_proc = .text:0x0021DF9C; // type:function size:0x34 scope:global align:4
+aTM1_schedule_init_proc = .text:0x0021DFD0; // type:function size:0xF8 scope:global align:4
+aTM1_schedule_main_proc = .text:0x0021E0C8; // type:function size:0x104 scope:global align:4
+aTM1_schedule_proc = .text:0x0021E1CC; // type:function size:0x34 scope:global align:4
+aTM1_set_talk_info = .text:0x0021E200; // type:function size:0x118 scope:global align:4
+aTM1_set_talk_info2 = .text:0x0021E318; // type:function size:0x8C scope:global align:4
+aTM1_talk_request = .text:0x0021E3A4; // type:function size:0x44 scope:global align:4
+aTM1_talk_init = .text:0x0021E3E8; // type:function size:0x24 scope:global align:4
+aTM1_talk_end_chk = .text:0x0021E40C; // type:function size:0x44 scope:global align:4
+aTNN0_actor_ct = .text:0x0021E450; // type:function size:0x120 scope:global align:4
+aTNN0_actor_save = .text:0x0021E570; // type:function size:0x20 scope:global align:4
+aTNN0_actor_dt = .text:0x0021E590; // type:function size:0x8C scope:global align:4
+aTNN0_actor_init = .text:0x0021E61C; // type:function size:0x38 scope:global align:4
+aTNN0_set_request_act = .text:0x0021E654; // type:function size:0x94 scope:global align:4
+aTNN0_make_hata = .text:0x0021E6E8; // type:function size:0x74 scope:global align:4
+aTNN0_actor_move = .text:0x0021E75C; // type:function size:0x5C scope:global align:4
+aTNN0_actor_draw = .text:0x0021E7B8; // type:function size:0x38 scope:global align:4
+aTNN0_set_norm_talk_info = .text:0x0021E7F0; // type:function size:0x94 scope:global align:4
+aTNN0_norm_talk_request = .text:0x0021E884; // type:function size:0x48 scope:global align:4
+aTNN0_talk_init = .text:0x0021E8CC; // type:function size:0x44 scope:global align:4
+aTNN0_talk_end_chk = .text:0x0021E910; // type:function size:0x84 scope:global align:4
+aTNN0_birth = .text:0x0021E994; // type:function size:0x144 scope:global align:4
+aTNN0_think_main_proc = .text:0x0021EAD8; // type:function size:0x3C scope:global align:4
+aTNN0_think_init_proc = .text:0x0021EB14; // type:function size:0x48 scope:global align:4
+aTNN0_wait_init = .text:0x0021EB5C; // type:function size:0x74 scope:global align:4
+aTNN0_setup_think_proc = .text:0x0021EBD0; // type:function size:0x9C scope:global align:4
+aTNN0_think_proc = .text:0x0021EC6C; // type:function size:0x40 scope:global align:4
+aTNN0_schedule_init_proc = .text:0x0021ECAC; // type:function size:0x4C scope:global align:4
+aTNN0_schedule_main_proc = .text:0x0021ECF8; // type:function size:0x80 scope:global align:4
+aTNN0_schedule_proc = .text:0x0021ED78; // type:function size:0x40 scope:global align:4
+aTNN1_actor_ct = .text:0x0021EDB8; // type:function size:0x108 scope:global align:4
+aTNN1_actor_save = .text:0x0021EEC0; // type:function size:0x20 scope:global align:4
+aTNN1_actor_dt = .text:0x0021EEE0; // type:function size:0x88 scope:global align:4
+aTNN1_actor_init = .text:0x0021EF68; // type:function size:0x38 scope:global align:4
+aTNN1_set_request_act = .text:0x0021EFA0; // type:function size:0x94 scope:global align:4
+aTNN1_actor_move = .text:0x0021F034; // type:function size:0xD0 scope:global align:4
+aTNN1_actor_draw = .text:0x0021F104; // type:function size:0x38 scope:global align:4
+aTNN1_set_norm_talk_info = .text:0x0021F13C; // type:function size:0x94 scope:global align:4
+aTNN1_norm_talk_request = .text:0x0021F1D0; // type:function size:0x48 scope:global align:4
+aTNN1_talk_init = .text:0x0021F218; // type:function size:0xB4 scope:global align:4
+aTNN1_talk_end_chk = .text:0x0021F2CC; // type:function size:0xF4 scope:global align:4
+aTNN1_make_ase = .text:0x0021F3C0; // type:function size:0xC4 scope:global align:4
+aTNN1_aiko = .text:0x0021F484; // type:function size:0x370 scope:global align:4
+aTNN1_birth = .text:0x0021F7F4; // type:function size:0x7C scope:global align:4
+aTNN1_think_main_proc = .text:0x0021F870; // type:function size:0x74 scope:global align:4
+aTNN1_think_init_proc = .text:0x0021F8E4; // type:function size:0x1D8 scope:global align:4
+aTNN1_normal_wait_init = .text:0x0021FABC; // type:function size:0x38 scope:global align:4
+aTNN1_common_init = .text:0x0021FAF4; // type:function size:0xC0 scope:global align:4
+aTNN1_aiko_init = .text:0x0021FBB4; // type:function size:0x24 scope:global align:4
+aTNN1_yuri_init = .text:0x0021FBD8; // type:function size:0x24 scope:global align:4
+aTNN1_furi_init = .text:0x0021FBFC; // type:function size:0x24 scope:global align:4
+aTNN1_setup_think_proc = .text:0x0021FC20; // type:function size:0x9C scope:global align:4
+aTNN1_think_proc = .text:0x0021FCBC; // type:function size:0x40 scope:global align:4
+aTNN1_schedule_init_proc = .text:0x0021FCFC; // type:function size:0x4C scope:global align:4
+aTNN1_schedule_main_proc = .text:0x0021FD48; // type:function size:0x80 scope:global align:4
+aTNN1_schedule_proc = .text:0x0021FDC8; // type:function size:0x40 scope:global align:4
+aTR0_actor_ct = .text:0x0021FE08; // type:function size:0xF0 scope:local align:4
+aTR0_actor_save = .text:0x0021FEF8; // type:function size:0x38 scope:global align:4
+aTR0_actor_dt = .text:0x0021FF30; // type:function size:0x74 scope:local align:4
+aTR0_actor_init = .text:0x0021FFA4; // type:function size:0x38 scope:global align:4
+aTR0_actor_move = .text:0x0021FFDC; // type:function size:0x38 scope:local align:4
+aTR0_actor_draw = .text:0x00220014; // type:function size:0x38 scope:local align:4
+aTR0_set_animation = .text:0x0022004C; // type:function size:0x7C scope:global align:4
+aTR0_set_request_act = .text:0x002200C8; // type:function size:0x1C scope:global align:4
+aTR0_make_npc_sao = .text:0x002200E4; // type:function size:0x74 scope:global align:4
+aTR0_wait = .text:0x00220158; // type:function size:0x30 scope:global align:4
+aTR0_setupAction = .text:0x00220188; // type:function size:0x90 scope:global align:4
+aTR0_act_chg_data_proc = .text:0x00220218; // type:function size:0xC scope:global align:4
+aTR0_act_init_proc = .text:0x00220224; // type:function size:0x24 scope:global align:4
+aTR0_act_main_proc = .text:0x00220248; // type:function size:0x28 scope:global align:4
+aTR0_act_proc = .text:0x00220270; // type:function size:0x34 scope:global align:4
+aTR0_think_main_proc = .text:0x002202A4; // type:function size:0x58 scope:global align:4
+aTR0_think_init_proc = .text:0x002202FC; // type:function size:0x34 scope:global align:4
+aTR0_think_proc = .text:0x00220330; // type:function size:0x34 scope:global align:4
+aTR0_schedule_init_proc = .text:0x00220364; // type:function size:0x100 scope:global align:4
+aTR0_schedule_main_proc = .text:0x00220464; // type:function size:0x8C scope:global align:4
+aTR0_schedule_proc = .text:0x002204F0; // type:function size:0x34 scope:global align:4
+aTR0_set_talk_info = .text:0x00220524; // type:function size:0xDC scope:global align:4
+aTR0_talk_request = .text:0x00220600; // type:function size:0x30 scope:global align:4
+aTR0_talk_init = .text:0x00220630; // type:function size:0x24 scope:global align:4
+aTR0_talk_end_chk = .text:0x00220654; // type:function size:0x44 scope:global align:4
+aGH0_actor_ct = .text:0x00220698; // type:function size:0xF0 scope:global align:4
+aGH0_actor_save = .text:0x00220788; // type:function size:0x38 scope:global align:4
+aGH0_actor_dt = .text:0x002207C0; // type:function size:0x38 scope:global align:4
+aGH0_actor_init = .text:0x002207F8; // type:function size:0x38 scope:global align:4
+aGH0_actor_move = .text:0x00220830; // type:function size:0x38 scope:global align:4
+aGH0_actor_draw = .text:0x00220868; // type:function size:0x38 scope:global align:4
+aGH0_set_animation = .text:0x002208A0; // type:function size:0xEC scope:global align:4
+aGH0_set_request_act = .text:0x0022098C; // type:function size:0x1C scope:global align:4
+aGH0_turn = .text:0x002209A8; // type:function size:0x24 scope:global align:4
+aGH0_setupAction = .text:0x002209CC; // type:function size:0x40 scope:global align:4
+aGH0_act_chg_data_proc = .text:0x00220A0C; // type:function size:0xC scope:global align:4
+aGH0_act_init_proc = .text:0x00220A18; // type:function size:0x78 scope:global align:4
+aGH0_act_main_proc = .text:0x00220A90; // type:function size:0x28 scope:global align:4
+aGH0_act_proc = .text:0x00220AB8; // type:function size:0x34 scope:global align:4
+aGH0_get_now_term = .text:0x00220AEC; // type:function size:0x24 scope:global align:4
+aGH0_set_term = .text:0x00220B10; // type:function size:0x30 scope:global align:4
+aGH0_think_main_proc = .text:0x00220B40; // type:function size:0xD0 scope:global align:4
+aGH0_think_init_proc = .text:0x00220C10; // type:function size:0x34 scope:global align:4
+aGH0_think_proc = .text:0x00220C44; // type:function size:0x34 scope:global align:4
+aGH0_schedule_init_proc = .text:0x00220C78; // type:function size:0x194 scope:global align:4
+aGH0_schedule_main_proc = .text:0x00220E0C; // type:function size:0x80 scope:global align:4
+aGH0_schedule_proc = .text:0x00220E8C; // type:function size:0x34 scope:global align:4
+aGH0_set_norm_talk_info = .text:0x00220EC0; // type:function size:0x88 scope:global align:4
+aGH0_norm_talk_request = .text:0x00220F48; // type:function size:0x30 scope:global align:4
+aGH0_talk_init = .text:0x00220F78; // type:function size:0x4C scope:global align:4
+aGH0_talk_end_chk = .text:0x00220FC4; // type:function size:0x44 scope:global align:4
+aHT0_GetMyIdx = .text:0x00221008; // type:function size:0x14 scope:global align:4
+aHT0_GetDefaultAngle = .text:0x0022101C; // type:function size:0x30 scope:global align:4
+aHT0_actor_ct = .text:0x0022104C; // type:function size:0x84 scope:global align:4
+aHT0_actor_save = .text:0x002210D0; // type:function size:0x38 scope:global align:4
+aHT0_actor_dt = .text:0x00221108; // type:function size:0x38 scope:global align:4
+aHT0_actor_init = .text:0x00221140; // type:function size:0x38 scope:global align:4
+aHT0_set_animation = .text:0x00221178; // type:function size:0x4C scope:global align:4
+aHT0_actor_move = .text:0x002211C4; // type:function size:0x38 scope:global align:4
+aHT0_actor_draw = .text:0x002211FC; // type:function size:0x38 scope:global align:4
+aHT0_set_request_act = .text:0x00221234; // type:function size:0x1C scope:global align:4
+aHT0_make_tumbler = .text:0x00221250; // type:function size:0x84 scope:global align:4
+aHT0_wait = .text:0x002212D4; // type:function size:0x30 scope:global align:4
+aHT0_merry = .text:0x00221304; // type:function size:0x54 scope:global align:4
+aHT0_drink = .text:0x00221358; // type:function size:0x18 scope:global align:4
+aHT0_to_default = .text:0x00221370; // type:function size:0x54 scope:global align:4
+aHT0_setupAction = .text:0x002213C4; // type:function size:0xC0 scope:global align:4
+aHT0_act_chg_data_proc = .text:0x00221484; // type:function size:0xC scope:global align:4
+aHT0_act_init_proc = .text:0x00221490; // type:function size:0x24 scope:global align:4
+aHT0_act_main_proc = .text:0x002214B4; // type:function size:0x28 scope:global align:4
+aHT0_act_proc = .text:0x002214DC; // type:function size:0x34 scope:global align:4
+aHT0_think_main_proc = .text:0x00221510; // type:function size:0xF4 scope:global align:4
+aHT0_think_init_proc = .text:0x00221604; // type:function size:0x34 scope:global align:4
+aHT0_think_proc = .text:0x00221638; // type:function size:0x34 scope:global align:4
+aHT0_schedule_init_proc = .text:0x0022166C; // type:function size:0xC4 scope:global align:4
+aHT0_schedule_main_proc = .text:0x00221730; // type:function size:0x8C scope:global align:4
+aHT0_schedule_proc = .text:0x002217BC; // type:function size:0x34 scope:global align:4
+aHT0_set_talk_info = .text:0x002217F0; // type:function size:0x6C scope:global align:4
+aHT0_talk_request = .text:0x0022185C; // type:function size:0x30 scope:global align:4
+aHT0_talk_init = .text:0x0022188C; // type:function size:0x24 scope:global align:4
+aHT0_talk_end_chk = .text:0x002218B0; // type:function size:0x58 scope:global align:4
+aHT1_actor_ct = .text:0x00221908; // type:function size:0x9C scope:global align:4
+aHT1_actor_save = .text:0x002219A4; // type:function size:0x38 scope:global align:4
+aHT1_actor_dt = .text:0x002219DC; // type:function size:0x38 scope:global align:4
+aHT1_actor_init = .text:0x00221A14; // type:function size:0x38 scope:global align:4
+aHT1_set_animation = .text:0x00221A4C; // type:function size:0x4C scope:global align:4
+aHT1_actor_move = .text:0x00221A98; // type:function size:0x38 scope:global align:4
+aHT1_GetDefaultAngle = .text:0x00221AD0; // type:function size:0x8 scope:global align:4
+aHT1_actor_draw = .text:0x00221AD8; // type:function size:0x38 scope:global align:4
+aHT1_set_request_act = .text:0x00221B10; // type:function size:0x1C scope:global align:4
+aHT1_wait = .text:0x00221B2C; // type:function size:0x30 scope:global align:4
+aHT1_to_default = .text:0x00221B5C; // type:function size:0x54 scope:global align:4
+aHT1_setupAction = .text:0x00221BB0; // type:function size:0x40 scope:global align:4
+aHT1_act_chg_data_proc = .text:0x00221BF0; // type:function size:0xC scope:global align:4
+aHT1_act_init_proc = .text:0x00221BFC; // type:function size:0x24 scope:global align:4
+aHT1_act_main_proc = .text:0x00221C20; // type:function size:0x28 scope:global align:4
+aHT1_act_proc = .text:0x00221C48; // type:function size:0x34 scope:global align:4
+aHT1_think_main_proc = .text:0x00221C7C; // type:function size:0x9C scope:global align:4
+aHT1_think_init_proc = .text:0x00221D18; // type:function size:0x34 scope:global align:4
+aHT1_think_proc = .text:0x00221D4C; // type:function size:0x34 scope:global align:4
+aHT1_schedule_init_proc = .text:0x00221D80; // type:function size:0xA8 scope:global align:4
+aHT1_schedule_main_proc = .text:0x00221E28; // type:function size:0x80 scope:global align:4
+aHT1_schedule_proc = .text:0x00221EA8; // type:function size:0x34 scope:global align:4
+aHT1_set_talk_info = .text:0x00221EDC; // type:function size:0x60 scope:global align:4
+aHT1_talk_request = .text:0x00221F3C; // type:function size:0x30 scope:global align:4
+aHT1_talk_init = .text:0x00221F6C; // type:function size:0x24 scope:global align:4
+aHT1_talk_end_chk = .text:0x00221F90; // type:function size:0x44 scope:global align:4
+aNHM_actor_ct = .text:0x00221FD4; // type:function size:0x84 scope:global align:4
+aNHM_actor_save = .text:0x00222058; // type:function size:0x38 scope:global align:4
+aNHM_actor_dt = .text:0x00222090; // type:function size:0x38 scope:global align:4
+aNHM_actor_init = .text:0x002220C8; // type:function size:0x38 scope:global align:4
+aNHM_actor_draw = .text:0x00222100; // type:function size:0x38 scope:global align:4
+aNHM_set_request_act = .text:0x00222138; // type:function size:0x1C scope:global align:4
+aNHM_appear_wait = .text:0x00222154; // type:function size:0x30 scope:global align:4
+aNHM_disappear_wait = .text:0x00222184; // type:function size:0x24 scope:global align:4
+aNHM_setupAction = .text:0x002221A8; // type:function size:0x60 scope:global align:4
+aNHM_act_chg_data_proc = .text:0x00222208; // type:function size:0xC scope:global align:4
+aNHM_act_init_proc = .text:0x00222214; // type:function size:0xA0 scope:global align:4
+aNHM_act_main_proc = .text:0x002222B4; // type:function size:0x28 scope:global align:4
+aNHM_act_proc = .text:0x002222DC; // type:function size:0x34 scope:global align:4
+aNHM_think_main_proc = .text:0x00222310; // type:function size:0x3C scope:global align:4
+aNHM_think_init_proc = .text:0x0022234C; // type:function size:0x2C scope:global align:4
+aNHM_think_proc = .text:0x00222378; // type:function size:0x34 scope:global align:4
+aNHM_schedule_init_proc = .text:0x002223AC; // type:function size:0x94 scope:global align:4
+aNHM_schedule_main_proc = .text:0x00222440; // type:function size:0x80 scope:global align:4
+aNHM_schedule_proc = .text:0x002224C0; // type:function size:0x34 scope:global align:4
+aNHM_trans_demo_start_wait_talk_proc = .text:0x002224F4; // type:function size:0x8C scope:global align:4
+aNHM_trans_demo_end_wait_talk_proc = .text:0x00222580; // type:function size:0x58 scope:global align:4
+aNHM_change_talk_proc = .text:0x002225D8; // type:function size:0x18 scope:global align:4
+aNHM_set_force_talk_info_talk_request = .text:0x002225F0; // type:function size:0x54 scope:global align:4
+aNHM_talk_request = .text:0x00222644; // type:function size:0x30 scope:global align:4
+aNHM_talk_init = .text:0x00222674; // type:function size:0x58 scope:global align:4
+aNHM_talk_end_chk = .text:0x002226CC; // type:function size:0x5C scope:global align:4
+aNHM_actor_move = .text:0x00222728; // type:function size:0x70 scope:global align:4
+aEMJ_actor_ct = .text:0x00222798; // type:function size:0xA0 scope:global align:4
+aEMJ_actor_save = .text:0x00222838; // type:function size:0x38 scope:global align:4
+aEMJ_actor_dt = .text:0x00222870; // type:function size:0x80 scope:global align:4
+aEMJ_actor_init = .text:0x002228F0; // type:function size:0x38 scope:global align:4
+aEMJ_set_animation = .text:0x00222928; // type:function size:0x4C scope:global align:4
+aEMJ_actor_move = .text:0x00222974; // type:function size:0x4C scope:global align:4
+aEMJ_actor_draw = .text:0x002229C0; // type:function size:0x38 scope:global align:4
+aEMJ_set_request_act = .text:0x002229F8; // type:function size:0x1C scope:global align:4
+aEMJ_act_init_proc = .text:0x00222A14; // type:function size:0xC scope:global align:4
+aEMJ_act_proc = .text:0x00222A20; // type:function size:0x34 scope:global align:4
+aEMJ_appear = .text:0x00222A54; // type:function size:0x30 scope:global align:4
+aEMJ_retire = .text:0x00222A84; // type:function size:0x38 scope:global align:4
+aEMJ_think_main_proc = .text:0x00222ABC; // type:function size:0x48 scope:global align:4
+aEMJ_think_init_proc = .text:0x00222B04; // type:function size:0xA8 scope:global align:4
+aEMJ_setup_think_proc = .text:0x00222BAC; // type:function size:0x44 scope:global align:4
+aEMJ_think_proc = .text:0x00222BF0; // type:function size:0x34 scope:global align:4
+aEMJ_schedule_init_proc = .text:0x00222C24; // type:function size:0x7C scope:global align:4
+aEMJ_schedule_main_proc = .text:0x00222CA0; // type:function size:0x80 scope:global align:4
+aEMJ_schedule_proc = .text:0x00222D20; // type:function size:0x34 scope:global align:4
+aEMJ_set_force_talk_info = .text:0x00222D54; // type:function size:0xA0 scope:global align:4
+aEMJ_force_talk_request = .text:0x00222DF4; // type:function size:0x30 scope:global align:4
+aEMJ_talk_init = .text:0x00222E24; // type:function size:0x30 scope:global align:4
+aEMJ_talk_end_chk = .text:0x00222E54; // type:function size:0x5C scope:global align:4
+aETKY_DecidePresent = .text:0x00222EB0; // type:function size:0xE4 scope:global align:4
+aETKY_ReportPresent = .text:0x00222F94; // type:function size:0x24 scope:global align:4
+aETKY_ActionWait = .text:0x00222FB8; // type:function size:0x30 scope:global align:4
+aETKY_ActionKyoro = .text:0x00222FE8; // type:function size:0x30 scope:global align:4
+aETKY_setupAction = .text:0x00223018; // type:function size:0xCC scope:global align:4
+aETKY_act_chg_data_proc = .text:0x002230E4; // type:function size:0xC scope:global align:4
+aETKY_act_init_proc = .text:0x002230F0; // type:function size:0x3C scope:global align:4
+aETKY_act_main_proc = .text:0x0022312C; // type:function size:0x28 scope:global align:4
+aETKY_act_proc = .text:0x00223154; // type:function size:0x34 scope:global align:4
+aETKY_set_request_act = .text:0x00223188; // type:function size:0x1C scope:global align:4
+aETKY_think_init_proc = .text:0x002231A4; // type:function size:0x34 scope:global align:4
+aETKY_think_main_proc = .text:0x002231D8; // type:function size:0x2BC scope:global align:4
+aETKY_think_proc = .text:0x00223494; // type:function size:0x34 scope:global align:4
+aETKY_schedule_init_proc = .text:0x002234C8; // type:function size:0x68 scope:global align:4
+aETKY_schedule_main_proc = .text:0x00223530; // type:function size:0x80 scope:global align:4
+aETKY_schedule_proc = .text:0x002235B0; // type:function size:0x34 scope:global align:4
+aETKY_SetupSaveData = .text:0x002235E4; // type:function size:0x70 scope:global align:4
+aETKY_SetupCommonData = .text:0x00223654; // type:function size:0x64 scope:global align:4
+aETKY_actor_ct = .text:0x002236B8; // type:function size:0xD0 scope:global align:4
+aETKY_Give_Me_Fork_Init = .text:0x00223788; // type:function size:0x4 scope:global align:4
+aETKY_Give_You_Present_Init = .text:0x0022378C; // type:function size:0x4 scope:global align:4
+aETKY_init_proc = .text:0x00223790; // type:function size:0x34 scope:global align:4
+aETKY_DeleteKnifeInPlayerBag = .text:0x002237C4; // type:function size:0x5C scope:global align:4
+aETKY_SetKnifeForkSequence = .text:0x00223820; // type:function size:0xF4 scope:global align:4
+aETKY_Explain_Env0123 = .text:0x00223914; // type:function size:0x9C scope:global align:4
+aETKY_Find_Reac = .text:0x002239B0; // type:function size:0x50 scope:global align:4
+aETKY_Give_Me_Fork = .text:0x00223A00; // type:function size:0xF8 scope:global align:4
+aETKY_Give_You_Present = .text:0x00223AF8; // type:function size:0xCC scope:global align:4
+aETKY_SetupTalkStat = .text:0x00223BC4; // type:function size:0x38 scope:global align:4
+aETKY_actor_save = .text:0x00223BFC; // type:function size:0x38 scope:global align:4
+aETKY_actor_dt = .text:0x00223C34; // type:function size:0x50 scope:global align:4
+aETKY_actor_init = .text:0x00223C84; // type:function size:0x38 scope:global align:4
+aETKY_GetTalkStartStatus = .text:0x00223CBC; // type:function size:0x80 scope:global align:4
+aETKY_SetTalkInfo = .text:0x00223D3C; // type:function size:0x74 scope:global align:4
+aETKY_TalkRequest = .text:0x00223DB0; // type:function size:0x10C scope:global align:4
+aETKY_TalkInit = .text:0x00223EBC; // type:function size:0x34 scope:global align:4
+aETKY_TalkEndCheck = .text:0x00223EF0; // type:function size:0x104 scope:global align:4
+aETKY_actor_move = .text:0x00223FF4; // type:function size:0x70 scope:global align:4
+aETKY_actor_draw = .text:0x00224064; // type:function size:0x38 scope:global align:4
+aINS_actor_ct = .text:0x0022409C; // type:function size:0x84 scope:global align:4
+aINS_actor_dt = .text:0x00224120; // type:function size:0x20 scope:global align:4
+aINS_make_actor = .text:0x00224140; // type:function size:0x74 scope:global align:4
+aINS_get_free_idx_set_block_table = .text:0x002241B4; // type:function size:0x4C scope:global align:4
+aINS_regist_set_block_table = .text:0x00224200; // type:function size:0x13C scope:global align:4
+aINS_destruct = .text:0x0022433C; // type:function size:0x98 scope:global align:4
+aINS_chk_live_ant = .text:0x002243D4; // type:function size:0x64 scope:global align:4
+aINS_chk_live_insect = .text:0x00224438; // type:function size:0xA4 scope:global align:4
+aINS_search_near_ant = .text:0x002244DC; // type:function size:0x6C scope:global align:4
+aINS_search_near_insect = .text:0x00224548; // type:function size:0xC0 scope:global align:4
+aINS_searchRegistSpace = .text:0x00224608; // type:function size:0x5C scope:global align:4
+aINS_setupActor = .text:0x00224664; // type:function size:0x250 scope:global align:4
+aINS_make_insect = .text:0x002248B4; // type:function size:0x78 scope:global align:4
+aINS_make_ant = .text:0x0022492C; // type:function size:0x6C scope:global align:4
+aINS_set_pl_act_tim = .text:0x00224998; // type:function size:0x28 scope:global align:4
+aINS_init_dma_and_clip_area = .text:0x002249C0; // type:function size:0xC4 scope:global align:4
+aINS_free_clip_area = .text:0x00224A84; // type:function size:0x18 scope:global align:4
+aINS_position_move = .text:0x00224A9C; // type:function size:0xDC scope:global align:4
+aINS_set_player_info = .text:0x00224B78; // type:function size:0x98 scope:global align:4
+aINS_BGcheck = .text:0x00224C10; // type:function size:0x120 scope:global align:4
+aINS_get_stress_sub = .text:0x00224D30; // type:function size:0x198 scope:global align:4
+aINS_get_stress = .text:0x00224EC8; // type:function size:0x88 scope:global align:4
+aINS_calc_patience = .text:0x00224F50; // type:function size:0xA4 scope:global align:4
+aINS_calc_life_time = .text:0x00224FF4; // type:function size:0x34 scope:global align:4
+aINS_calc_alpha_time = .text:0x00225028; // type:function size:0x9C scope:global align:4
+aINS_cull_check = .text:0x002250C4; // type:function size:0x128 scope:global align:4
+aINS_get_catch_range_sub = .text:0x002251EC; // type:function size:0x40 scope:global align:4
+aINS_get_catch_range = .text:0x0022522C; // type:function size:0xA0 scope:global align:4
+aINS_set_catch_range = .text:0x002252CC; // type:function size:0xB4 scope:global align:4
+aINS_check_birth_ant = .text:0x00225380; // type:function size:0xA0 scope:global align:4
+aINS_actor_move = .text:0x00225420; // type:function size:0x118 scope:global align:4
+aINS_actor_draw_sub = .text:0x00225538; // type:function size:0x2D4 scope:global align:4
+aINS_actor_draw = .text:0x0022580C; // type:function size:0x1C0 scope:global align:4
+aIAB_actor_init = .text:0x002259CC; // type:function size:0xC8 scope:global align:4
+aIAB_anime_proc = .text:0x00225A94; // type:function size:0x38 scope:global align:4
+aIAB_BGcheck = .text:0x00225ACC; // type:function size:0x24 scope:global align:4
+aIAB_make_hamon = .text:0x00225AF0; // type:function size:0xE0 scope:global align:4
+aIAB_let_escape = .text:0x00225BD0; // type:function size:0x78 scope:global align:4
+aIAB_move = .text:0x00225C48; // type:function size:0xDC scope:global align:4
+aIAB_rest = .text:0x00225D24; // type:function size:0x60 scope:global align:4
+aIAB_let_escape_init = .text:0x00225D84; // type:function size:0xD4 scope:global align:4
+aIAB_move_init = .text:0x00225E58; // type:function size:0x118 scope:global align:4
+aIAB_rest_init = .text:0x00225F70; // type:function size:0x88 scope:global align:4
+aIAB_setupAction = .text:0x00225FF8; // type:function size:0x4C scope:global align:4
+aIAB_actor_move = .text:0x00226044; // type:function size:0x9C scope:global align:4
+aIBT_actor_init = .text:0x002260E0; // type:function size:0x1C8 scope:global align:4
+aIBT_check_live_condition = .text:0x002262A8; // type:function size:0x11C scope:global align:4
+aIBT_anime_proc = .text:0x002263C4; // type:function size:0x60 scope:global align:4
+aIBT_check_ball = .text:0x00226424; // type:function size:0x50 scope:global align:4
+aIBT_set_fly_se = .text:0x00226474; // type:function size:0x54 scope:global align:4
+aIBT_check_player_net_sub = .text:0x002264C8; // type:function size:0x54 scope:global align:4
+aIBT_check_player_net = .text:0x0022651C; // type:function size:0x78 scope:global align:4
+aIBT_check_player_net2 = .text:0x00226594; // type:function size:0x98 scope:global align:4
+aIBT_check_player_scoop = .text:0x0022662C; // type:function size:0x80 scope:global align:4
+aIBT_check_patience = .text:0x002266AC; // type:function size:0xAC scope:global align:4
+aIBT_chk_avoid_jump_angle = .text:0x00226758; // type:function size:0x7C scope:global align:4
+aIBT_set_avoid_jump_spd = .text:0x002267D4; // type:function size:0x100 scope:global align:4
+aIBT_chk_active_range = .text:0x002268D4; // type:function size:0x78 scope:global align:4
+aIBT_avoid = .text:0x0022694C; // type:function size:0x160 scope:global align:4
+aIBT_let_escape = .text:0x00226AAC; // type:function size:0xB0 scope:global align:4
+aIBT_chg_direction = .text:0x00226B5C; // type:function size:0x204 scope:global align:4
+aIBT_wait = .text:0x00226D60; // type:function size:0x204 scope:global align:4
+aIBT_jump = .text:0x00226F64; // type:function size:0x34 scope:global align:4
+aIBT_avoid_init = .text:0x00226F98; // type:function size:0xAC scope:global align:4
+aIBT_let_escape_init = .text:0x00227044; // type:function size:0xD4 scope:global align:4
+aIBT_chg_direction_init = .text:0x00227118; // type:function size:0x1C scope:global align:4
+aIBT_wait_init = .text:0x00227134; // type:function size:0xAC scope:global align:4
+aIBT_jump_init = .text:0x002271E0; // type:function size:0x2C scope:global align:4
+aIBT_drown_init = .text:0x0022720C; // type:function size:0xF8 scope:global align:4
+aIBT_setupAction = .text:0x00227304; // type:function size:0x4C scope:global align:4
+aIBT_actor_move = .text:0x00227350; // type:function size:0x94 scope:global align:4
+aIBT_actor_first_move = .text:0x002273E4; // type:function size:0x7C scope:global align:4
+aIDG_actor_init = .text:0x00227460; // type:function size:0x13C scope:global align:4
+aIDG_check_strike_stone = .text:0x0022759C; // type:function size:0xA8 scope:global align:4
+aIDG_check_ball = .text:0x00227644; // type:function size:0x50 scope:global align:4
+aIDG_check_player_net = .text:0x00227694; // type:function size:0x80 scope:global align:4
+aIDG_check_player_scoop = .text:0x00227714; // type:function size:0x80 scope:global align:4
+aIDG_check_player_axe = .text:0x00227794; // type:function size:0x80 scope:global align:4
+aIDG_check_patience = .text:0x00227814; // type:function size:0xE0 scope:global align:4
+aIDG_chk_active_range = .text:0x002278F4; // type:function size:0x48 scope:global align:4
+aIDG_chk_water_attr = .text:0x0022793C; // type:function size:0xF0 scope:global align:4
+aIDG_calc_direction_angl = .text:0x00227A2C; // type:function size:0x7C scope:global align:4
+aIDG_avoid = .text:0x00227AA8; // type:function size:0xF8 scope:global align:4
+aIDG_let_escape = .text:0x00227BA0; // type:function size:0x3C scope:global align:4
+aIDG_stop = .text:0x00227BDC; // type:function size:0x64 scope:global align:4
+aIDG_hide = .text:0x00227C40; // type:function size:0x50 scope:global align:4
+aIDG_appear = .text:0x00227C90; // type:function size:0x34 scope:global align:4
+aIDG_dive = .text:0x00227CC4; // type:function size:0x84 scope:global align:4
+aIDG_avoid_init = .text:0x00227D48; // type:function size:0xA4 scope:global align:4
+aIDG_let_escape_init = .text:0x00227DEC; // type:function size:0x7C scope:global align:4
+aIDG_stop_init = .text:0x00227E68; // type:function size:0x20 scope:global align:4
+aIDG_hide_init = .text:0x00227E88; // type:function size:0x30 scope:global align:4
+aIDG_appear_init = .text:0x00227EB8; // type:function size:0x50 scope:global align:4
+aIDG_dive_init = .text:0x00227F08; // type:function size:0x58 scope:global align:4
+aIDG_drown_init = .text:0x00227F60; // type:function size:0xF8 scope:global align:4
+aIDG_retire_init = .text:0x00228058; // type:function size:0x3C scope:global align:4
+aIDG_setupAction = .text:0x00228094; // type:function size:0x4C scope:global align:4
+aIDG_actor_move = .text:0x002280E0; // type:function size:0x70 scope:global align:4
+aICH_actor_init = .text:0x00228150; // type:function size:0x170 scope:global align:4
+aICH_check_live_condition = .text:0x002282C0; // type:function size:0xA0 scope:global align:4
+aICH_anime_proc = .text:0x00228360; // type:function size:0x38 scope:global align:4
+aICH_jump_ctrl = .text:0x00228398; // type:function size:0xE4 scope:global align:4
+aICH_flower_search_sub = .text:0x0022847C; // type:function size:0x210 scope:global align:4
+aICH_flower_search = .text:0x0022868C; // type:function size:0xB0 scope:global align:4
+aICH_loop_move_ctrl = .text:0x0022873C; // type:function size:0x1D8 scope:global align:4
+aICH_avoid_player = .text:0x00228914; // type:function size:0x8C scope:global align:4
+aICH_avoid_move_ctrl = .text:0x002289A0; // type:function size:0x10C scope:global align:4
+aICH_rest_check = .text:0x00228AAC; // type:function size:0xC0 scope:global align:4
+aICH_chou_fuwafuwa = .text:0x00228B6C; // type:function size:0x84 scope:global align:4
+aICH_check_ball = .text:0x00228BF0; // type:function size:0x50 scope:global align:4
+aICH_check_player_net = .text:0x00228C40; // type:function size:0x8C scope:global align:4
+aICH_check_player_scoop = .text:0x00228CCC; // type:function size:0x80 scope:global align:4
+aICH_check_patience = .text:0x00228D4C; // type:function size:0xAC scope:global align:4
+aICH_BGcheck = .text:0x00228DF8; // type:function size:0xD0 scope:global align:4
+aICH_check_block_edge = .text:0x00228EC8; // type:function size:0xC0 scope:global align:4
+aICH_avoid = .text:0x00228F88; // type:function size:0xD4 scope:global align:4
+aICH_let_escape = .text:0x0022905C; // type:function size:0x4C scope:global align:4
+aICH_fly = .text:0x002290A8; // type:function size:0x114 scope:global align:4
+aICH_landing = .text:0x002291BC; // type:function size:0x1A4 scope:global align:4
+aICH_hover = .text:0x00229360; // type:function size:0xC0 scope:global align:4
+aICH_avoid_init = .text:0x00229420; // type:function size:0x40 scope:global align:4
+aICH_let_escape_init = .text:0x00229460; // type:function size:0xD4 scope:global align:4
+aICH_fly_init = .text:0x00229534; // type:function size:0x9C scope:global align:4
+aICH_landing_init = .text:0x002295D0; // type:function size:0x28 scope:global align:4
+aICH_hover_init = .text:0x002295F8; // type:function size:0x20 scope:global align:4
+aICH_rest_init = .text:0x00229618; // type:function size:0x70 scope:global align:4
+aICH_setupAction = .text:0x00229688; // type:function size:0x4C scope:global align:4
+aICH_actor_move = .text:0x002296D4; // type:function size:0xB0 scope:global align:4
+aIGK_actor_init = .text:0x00229784; // type:function size:0x270 scope:global align:4
+aIGK_anime_proc = .text:0x002299F4; // type:function size:0x38 scope:global align:4
+aIGK_check_tree_shaken = .text:0x00229A2C; // type:function size:0x84 scope:global align:4
+aIGK_check_ball = .text:0x00229AB0; // type:function size:0x50 scope:global align:4
+aIGK_check_player_net = .text:0x00229B00; // type:function size:0x8C scope:global align:4
+aIGK_check_player_scoop = .text:0x00229B8C; // type:function size:0x80 scope:global align:4
+aIGK_check_patience = .text:0x00229C0C; // type:function size:0xF8 scope:global align:4
+aIGK_avoid = .text:0x00229D04; // type:function size:0xEC scope:global align:4
+aIGK_wait_on_flower = .text:0x00229DF0; // type:function size:0x9C scope:global align:4
+aIGK_move_on_flower = .text:0x00229E8C; // type:function size:0x268 scope:global align:4
+aIGK_wait_on_tree = .text:0x0022A0F4; // type:function size:0x80 scope:global align:4
+aIGK_move_on_tree = .text:0x0022A174; // type:function size:0xC4 scope:global align:4
+aIGK_avoid_init = .text:0x0022A238; // type:function size:0xE4 scope:global align:4
+aIGK_let_escape_init = .text:0x0022A31C; // type:function size:0xF0 scope:global align:4
+aIGK_wait_on_flower_init = .text:0x0022A40C; // type:function size:0x18 scope:global align:4
+aIGK_move_on_flower_init = .text:0x0022A424; // type:function size:0x88 scope:global align:4
+aIGK_wait_on_tree_init = .text:0x0022A4AC; // type:function size:0x58 scope:global align:4
+aIGK_move_on_tree_init = .text:0x0022A504; // type:function size:0x5C scope:global align:4
+aIGK_setupAction = .text:0x0022A560; // type:function size:0x4C scope:global align:4
+aIGK_actor_move = .text:0x0022A5AC; // type:function size:0x94 scope:global align:4
+aIHD_actor_init = .text:0x0022A640; // type:function size:0x1E0 scope:global align:4
+aIHD_anime_proc = .text:0x0022A820; // type:function size:0x38 scope:global align:4
+aIHD_unregist_set_block_table = .text:0x0022A858; // type:function size:0x84 scope:global align:4
+aIHD_fuwafuwa = .text:0x0022A8DC; // type:function size:0xD4 scope:global align:4
+aIHD_set_move_info = .text:0x0022A9B0; // type:function size:0x3C scope:global align:4
+aIHD_calc_move_drt = .text:0x0022A9EC; // type:function size:0xCC scope:global align:4
+aIHD_light_proc = .text:0x0022AAB8; // type:function size:0x2C0 scope:global align:4
+aIHD_avoid = .text:0x0022AD78; // type:function size:0x44 scope:global align:4
+aIHD_fly = .text:0x0022ADBC; // type:function size:0x7C scope:global align:4
+aIHD_avoid_init_sub = .text:0x0022AE38; // type:function size:0xC0 scope:global align:4
+aIHD_avoid_init = .text:0x0022AEF8; // type:function size:0x48 scope:global align:4
+aIHD_let_escape_init = .text:0x0022AF40; // type:function size:0x3C scope:global align:4
+aIHD_fly_init = .text:0x0022AF7C; // type:function size:0x10 scope:global align:4
+aIHD_setupAction = .text:0x0022AF8C; // type:function size:0x4C scope:global align:4
+aIHD_actor_move = .text:0x0022AFD8; // type:function size:0xD4 scope:global align:4
+aIHT_actor_init = .text:0x0022B0AC; // type:function size:0x354 scope:global align:4
+aIHT_anime_proc = .text:0x0022B400; // type:function size:0xC0 scope:global align:4
+aIHT_BGcheck = .text:0x0022B4C0; // type:function size:0x12C scope:global align:4
+aIHT_fuwafuwa = .text:0x0022B5EC; // type:function size:0xBC scope:global align:4
+aIHT_light_proc = .text:0x0022B6A8; // type:function size:0x2C0 scope:global align:4
+aIHT_avoid = .text:0x0022B968; // type:function size:0x54 scope:global align:4
+aIHT_fly = .text:0x0022B9BC; // type:function size:0x2C0 scope:global align:4
+aIHT_avoid_init_sub = .text:0x0022BC7C; // type:function size:0xB4 scope:global align:4
+aIHT_avoid_init = .text:0x0022BD30; // type:function size:0x54 scope:global align:4
+aIHT_let_escape_init = .text:0x0022BD84; // type:function size:0x3C scope:global align:4
+aIHT_fly_init = .text:0x0022BDC0; // type:function size:0x10 scope:global align:4
+aIHT_setupAction = .text:0x0022BDD0; // type:function size:0x4C scope:global align:4
+aIHT_actor_move = .text:0x0022BE1C; // type:function size:0xB0 scope:global align:4
+aIKA_actor_init = .text:0x0022BECC; // type:function size:0xC8 scope:global align:4
+aIKA_fuwafuwa = .text:0x0022BF94; // type:function size:0xD8 scope:global align:4
+aIKA_anime_proc = .text:0x0022C06C; // type:function size:0x38 scope:global align:4
+aIKA_BGcheck = .text:0x0022C0A4; // type:function size:0x38 scope:global align:4
+aIKA_check_condition = .text:0x0022C0DC; // type:function size:0x70 scope:global align:4
+aIKA_calc_angle_search_player = .text:0x0022C14C; // type:function size:0x50 scope:global align:4
+aIKA_avoid = .text:0x0022C19C; // type:function size:0x2C scope:global align:4
+aIKA_fly = .text:0x0022C1C8; // type:function size:0xC0 scope:global align:4
+aIKA_search = .text:0x0022C288; // type:function size:0xE0 scope:global align:4
+aIKA_attack_wait = .text:0x0022C368; // type:function size:0x10C scope:global align:4
+aIKA_attack = .text:0x0022C474; // type:function size:0x50 scope:global align:4
+aIKA_avoid_init = .text:0x0022C4C4; // type:function size:0xDC scope:global align:4
+aIKA_fly_init = .text:0x0022C5A0; // type:function size:0x10 scope:global align:4
+aIKA_attack_wait_init = .text:0x0022C5B0; // type:function size:0xC scope:global align:4
+aIKA_attack_init = .text:0x0022C5BC; // type:function size:0x44 scope:global align:4
+aIKA_setupAction = .text:0x0022C600; // type:function size:0x4C scope:global align:4
+aIKA_actor_move = .text:0x0022C64C; // type:function size:0xF8 scope:global align:4
+aIKB_actor_init = .text:0x0022C744; // type:function size:0x190 scope:global align:4
+aIKB_anime_proc = .text:0x0022C8D4; // type:function size:0x38 scope:global align:4
+aIKB_check_ball = .text:0x0022C90C; // type:function size:0x50 scope:global align:4
+aIKB_check_player_net = .text:0x0022C95C; // type:function size:0x8C scope:global align:4
+aIKB_check_player_scoop = .text:0x0022C9E8; // type:function size:0x80 scope:global align:4
+aIKB_check_patience = .text:0x0022CA68; // type:function size:0x100 scope:global align:4
+aIKB_avoid = .text:0x0022CB68; // type:function size:0xE8 scope:global align:4
+aIKB_wait = .text:0x0022CC50; // type:function size:0x138 scope:global align:4
+aIKB_avoid_init = .text:0x0022CD88; // type:function size:0xD8 scope:global align:4
+aIKB_wait_init = .text:0x0022CE60; // type:function size:0xC scope:global align:4
+aIKB_setupAction = .text:0x0022CE6C; // type:function size:0x4C scope:global align:4
+aIKB_actor_move = .text:0x0022CEB8; // type:function size:0x94 scope:global align:4
+aIKR_actor_init = .text:0x0022CF4C; // type:function size:0x110 scope:global align:4
+aIKR_set_avoid_player_angl = .text:0x0022D05C; // type:function size:0x78 scope:global align:4
+aIKR_calc_move_scale = .text:0x0022D0D4; // type:function size:0x7C scope:global align:4
+aIKR_check_dig_hole_scoop = .text:0x0022D150; // type:function size:0xA0 scope:global align:4
+aIKR_chk_active_range = .text:0x0022D1F0; // type:function size:0x48 scope:global align:4
+aIKR_chk_water_attr = .text:0x0022D238; // type:function size:0xD8 scope:global align:4
+aIKR_calc_direction_angl = .text:0x0022D310; // type:function size:0x7C scope:global align:4
+aIKR_avoid = .text:0x0022D38C; // type:function size:0x18C scope:global align:4
+aIKR_let_escape = .text:0x0022D518; // type:function size:0x74 scope:global align:4
+aIKR_hide = .text:0x0022D58C; // type:function size:0xDC scope:global align:4
+aIKR_appear = .text:0x0022D668; // type:function size:0x64 scope:global align:4
+aIKR_dive = .text:0x0022D6CC; // type:function size:0xAC scope:global align:4
+aIKR_dug = .text:0x0022D778; // type:function size:0x10C scope:global align:4
+aIKR_avoid_init = .text:0x0022D884; // type:function size:0x24 scope:global align:4
+aIKR_let_escape_init = .text:0x0022D8A8; // type:function size:0x84 scope:global align:4
+aIKR_hide_init = .text:0x0022D92C; // type:function size:0x58 scope:global align:4
+aIKR_appear_init = .text:0x0022D984; // type:function size:0x64 scope:global align:4
+aIKR_dive_init = .text:0x0022D9E8; // type:function size:0x4C scope:global align:4
+aIKR_drown_init = .text:0x0022DA34; // type:function size:0xF8 scope:global align:4
+aIKR_dug_init = .text:0x0022DB2C; // type:function size:0x88 scope:global align:4
+aIKR_setupAction = .text:0x0022DBB4; // type:function size:0x4C scope:global align:4
+aIKR_actor_move = .text:0x0022DC00; // type:function size:0x70 scope:global align:4
+aIMN_actor_init = .text:0x0022DC70; // type:function size:0x16C scope:global align:4
+aIMN_check_shake_tree = .text:0x0022DDDC; // type:function size:0x4C scope:global align:4
+aIMN_position_move = .text:0x0022DE28; // type:function size:0xBC scope:global align:4
+aIMN_calc_shake_angl = .text:0x0022DEE4; // type:function size:0x164 scope:global align:4
+aIMN_calc_twist_angl = .text:0x0022E048; // type:function size:0x5C scope:global align:4
+aIMN_check_cut_tree = .text:0x0022E0A4; // type:function size:0xAC scope:global align:4
+aIMN_chk_water_attr = .text:0x0022E150; // type:function size:0xF0 scope:global align:4
+aIMN_calc_direction_angl = .text:0x0022E240; // type:function size:0x100 scope:global align:4
+aIMN_let_escape = .text:0x0022E340; // type:function size:0x3C scope:global align:4
+aIMN_hide = .text:0x0022E37C; // type:function size:0x74 scope:global align:4
+aIMN_appear = .text:0x0022E3F0; // type:function size:0x10C scope:global align:4
+aIMN_appear_stop = .text:0x0022E4FC; // type:function size:0x88 scope:global align:4
+aIMN_wait = .text:0x0022E584; // type:function size:0x198 scope:global align:4
+aIMN_disappear = .text:0x0022E71C; // type:function size:0x7C scope:global align:4
+aIMN_dive = .text:0x0022E798; // type:function size:0x84 scope:global align:4
+aIMN_fall = .text:0x0022E81C; // type:function size:0x80 scope:global align:4
+aIMN_let_escape_init = .text:0x0022E89C; // type:function size:0x160 scope:global align:4
+aIMN_hide_init = .text:0x0022E9FC; // type:function size:0x44 scope:global align:4
+aIMN_appear_init = .text:0x0022EA40; // type:function size:0x124 scope:global align:4
+aIMN_appear_stop_init = .text:0x0022EB64; // type:function size:0x1C scope:global align:4
+aIMN_wait_init = .text:0x0022EB80; // type:function size:0x84 scope:global align:4
+aIMN_disappear_init = .text:0x0022EC04; // type:function size:0x24 scope:global align:4
+aIMN_dive_init = .text:0x0022EC28; // type:function size:0x88 scope:global align:4
+aIMN_drown_init = .text:0x0022ECB0; // type:function size:0xF8 scope:global align:4
+aIMN_fall_init = .text:0x0022EDA8; // type:function size:0x84 scope:global align:4
+aIMN_setupAction = .text:0x0022EE2C; // type:function size:0x4C scope:global align:4
+aIMN_actor_move = .text:0x0022EE78; // type:function size:0x78 scope:global align:4
+aISM_actor_init = .text:0x0022EEF0; // type:function size:0x190 scope:global align:4
+aISM_anime_proc = .text:0x0022F080; // type:function size:0x38 scope:global align:4
+aISM_check_ball = .text:0x0022F0B8; // type:function size:0x50 scope:global align:4
+aISM_check_player_net = .text:0x0022F108; // type:function size:0x98 scope:global align:4
+aISM_check_player_scoop = .text:0x0022F1A0; // type:function size:0x80 scope:global align:4
+aISM_check_patience = .text:0x0022F220; // type:function size:0x100 scope:global align:4
+aISM_avoid = .text:0x0022F320; // type:function size:0xF4 scope:global align:4
+aISM_wait = .text:0x0022F414; // type:function size:0x118 scope:global align:4
+aISM_avoid_init = .text:0x0022F52C; // type:function size:0x140 scope:global align:4
+aISM_let_escape_init = .text:0x0022F66C; // type:function size:0x3C scope:global align:4
+aISM_wait_init = .text:0x0022F6A8; // type:function size:0xC scope:global align:4
+aISM_setupAction = .text:0x0022F6B4; // type:function size:0x4C scope:global align:4
+aISM_actor_move = .text:0x0022F700; // type:function size:0x94 scope:global align:4
+aITT_actor_init = .text:0x0022F794; // type:function size:0x160 scope:global align:4
+aITT_anime_proc = .text:0x0022F8F4; // type:function size:0x38 scope:global align:4
+aITT_check_ball = .text:0x0022F92C; // type:function size:0x50 scope:global align:4
+aITT_check_player_net = .text:0x0022F97C; // type:function size:0x8C scope:global align:4
+aITT_check_player_scoop = .text:0x0022FA08; // type:function size:0x80 scope:global align:4
+aITT_check_flower = .text:0x0022FA88; // type:function size:0x64 scope:global align:4
+aITT_check_patience = .text:0x0022FAEC; // type:function size:0x108 scope:global align:4
+aITT_calc_direction_angl = .text:0x0022FBF4; // type:function size:0x7C scope:global align:4
+aITT_avoid = .text:0x0022FC70; // type:function size:0x7C scope:global align:4
+aITT_avoid_maimai = .text:0x0022FCEC; // type:function size:0x20 scope:global align:4
+aITT_move = .text:0x0022FD0C; // type:function size:0x280 scope:global align:4
+aITT_wait = .text:0x0022FF8C; // type:function size:0x68 scope:global align:4
+aITT_avoid_init = .text:0x0022FFF4; // type:function size:0xD8 scope:global align:4
+aITT_avoid_maimai_init = .text:0x002300CC; // type:function size:0x80 scope:global align:4
+aITT_move_init = .text:0x0023014C; // type:function size:0xAC scope:global align:4
+aITT_wait_init = .text:0x002301F8; // type:function size:0x6C scope:global align:4
+aITT_setupAction = .text:0x00230264; // type:function size:0x4C scope:global align:4
+aITT_actor_move = .text:0x002302B0; // type:function size:0x94 scope:global align:4
+aITB_actor_init = .text:0x00230344; // type:function size:0x228 scope:global align:4
+aITB_check_live_condition = .text:0x0023056C; // type:function size:0xE4 scope:global align:4
+aITB_BGcheck = .text:0x00230650; // type:function size:0x14C scope:global align:4
+aITB_height_ctrl = .text:0x0023079C; // type:function size:0x80 scope:global align:4
+aITB_check_water_touch = .text:0x0023081C; // type:function size:0xC8 scope:global align:4
+aITB_fly_ctrl = .text:0x002308E4; // type:function size:0xBC scope:global align:4
+aITB_move_spd_set = .text:0x002309A0; // type:function size:0xC0 scope:global align:4
+aITB_anime_proc = .text:0x00230A60; // type:function size:0x38 scope:global align:4
+aITB_check_reserve_dummy = .text:0x00230A98; // type:function size:0xB0 scope:global align:4
+aITB_check_wall_and_ground = .text:0x00230B48; // type:function size:0x38 scope:global align:4
+aITB_check_stop = .text:0x00230B80; // type:function size:0x74 scope:global align:4
+aITB_avoid = .text:0x00230BF4; // type:function size:0xE4 scope:global align:4
+aITB_let_escape = .text:0x00230CD8; // type:function size:0x2C scope:global align:4
+aITB_fly = .text:0x00230D04; // type:function size:0x108 scope:global align:4
+aITB_oniyanma_fly = .text:0x00230E0C; // type:function size:0x11C scope:global align:4
+aITB_wait = .text:0x00230F28; // type:function size:0x108 scope:global align:4
+aITB_touch_water = .text:0x00231030; // type:function size:0xDC scope:global align:4
+aITB_touch_water_reverse = .text:0x0023110C; // type:function size:0xF4 scope:global align:4
+aITB_hover_wait_on_water = .text:0x00231200; // type:function size:0x64 scope:global align:4
+aITB_fly_on_notice = .text:0x00231264; // type:function size:0x234 scope:global align:4
+aITB_rest_on_notice = .text:0x00231498; // type:function size:0x140 scope:global align:4
+aITB_avoid_init = .text:0x002315D8; // type:function size:0x78 scope:global align:4
+aITB_let_escape_init = .text:0x00231650; // type:function size:0x78 scope:global align:4
+aITB_fly_init = .text:0x002316C8; // type:function size:0x28 scope:global align:4
+aITB_wait_init = .text:0x002316F0; // type:function size:0x168 scope:global align:4
+aITB_touch_water_init = .text:0x00231858; // type:function size:0x38 scope:global align:4
+aITB_touch_water_reverse_init = .text:0x00231890; // type:function size:0x94 scope:global align:4
+aITB_hover_wait_on_water_init = .text:0x00231924; // type:function size:0x1C scope:global align:4
+aITB_fly_on_notice_init = .text:0x00231940; // type:function size:0x6C scope:global align:4
+aITB_rest_on_notice_init = .text:0x002319AC; // type:function size:0x20 scope:global align:4
+aITB_setupAction = .text:0x002319CC; // type:function size:0x4C scope:global align:4
+aITB_actor_move = .text:0x00231A18; // type:function size:0xB0 scope:global align:4
+aGYO_actor_ct = .text:0x00231AC8; // type:function size:0x90 scope:global align:4
+aGYO_actor_dt = .text:0x00231B58; // type:function size:0x48 scope:global align:4
+aGYO_searchCastFishNum = .text:0x00231BA0; // type:function size:0x44 scope:global align:4
+aGYO_change_data_area = .text:0x00231BE4; // type:function size:0x3C scope:global align:4
+aGYO_destruct = .text:0x00231C20; // type:function size:0x38 scope:global align:4
+aGYO_searchRegistSpace = .text:0x00231C58; // type:function size:0x44 scope:global align:4
+aGYO_setupActor = .text:0x00231C9C; // type:function size:0x26C scope:global align:4
+aGYO_make_gyoei = .text:0x00231F08; // type:function size:0x48 scope:global align:4
+aGYO_escape_distance = .text:0x00231F50; // type:function size:0x20 scope:global align:4
+aGYO_ballcheck = .text:0x00231F70; // type:function size:0x9C scope:global align:4
+aGYO_hitcheck = .text:0x0023200C; // type:function size:0xC4 scope:global align:4
+aGYO_chk_live_gyoei = .text:0x002320D0; // type:function size:0x60 scope:global align:4
+aGYO_search_near_gyoei = .text:0x00232130; // type:function size:0x68 scope:global align:4
+aGYO_init_dma_and_clip_area = .text:0x00232198; // type:function size:0xAC scope:global align:4
+aGYO_free_clip_area = .text:0x00232244; // type:function size:0x40 scope:global align:4
+aGYO_position_move = .text:0x00232284; // type:function size:0xAC scope:global align:4
+aGYO_BGcheck = .text:0x00232330; // type:function size:0x50 scope:global align:4
+aGYO_cull_check = .text:0x00232380; // type:function size:0xD8 scope:global align:4
+bite_check = .text:0x00232458; // type:function size:0x48 scope:global align:4
+aGYO_actor_move = .text:0x002324A0; // type:function size:0x11C scope:global align:4
+aGYO_anime_frame = .text:0x002325BC; // type:function size:0xB4 scope:global align:4
+aGYO_actor_draw_fish = .text:0x00232670; // type:function size:0x33C scope:global align:4
+aGYO_actor_draw_gyoei = .text:0x002329AC; // type:function size:0x198 scope:global align:4
+aGYO_actor_draw = .text:0x00232B44; // type:function size:0xBC scope:global align:4
+aGTT_actor_init = .text:0x00232C00; // type:function size:0x110 scope:global align:4
+aGYO_get_uki_type = .text:0x00232D10; // type:function size:0x28 scope:global align:4
+aGTT_speed_reset = .text:0x00232D38; // type:function size:0x14 scope:global align:4
+aGTT_set_scale = .text:0x00232D4C; // type:function size:0x10 scope:global align:4
+aGTT_set_angle = .text:0x00232D5C; // type:function size:0xC scope:global align:4
+aGTT_pos_calc = .text:0x00232D68; // type:function size:0xF8 scope:global align:4
+aGTT_effect_sibuki = .text:0x00232E60; // type:function size:0x14C scope:global align:4
+aGTT_kage_make_actor = .text:0x00232FAC; // type:function size:0xBC scope:global align:4
+aGTT_fish_make_actor = .text:0x00233068; // type:function size:0x88 scope:global align:4
+aGTT_effect_hamon = .text:0x002330F0; // type:function size:0xEC scope:global align:4
+aGTT_random_check = .text:0x002331DC; // type:function size:0x5C scope:global align:4
+aGTT_chase_s_angle = .text:0x00233238; // type:function size:0x88 scope:global align:4
+aGTT_warp_event = .text:0x002332C0; // type:function size:0x60 scope:global align:4
+aGTT_speed_calc = .text:0x00233320; // type:function size:0x38 scope:global align:4
+aGTT_position_calc = .text:0x00233358; // type:function size:0x80 scope:global align:4
+aGTT_swim_speed_check = .text:0x002333D8; // type:function size:0x8C scope:global align:4
+aGTT_swim_speed_change = .text:0x00233464; // type:function size:0x114 scope:global align:4
+aGTT_Get_flow_angle = .text:0x00233578; // type:function size:0x3C scope:global align:4
+aGTT_Get_flow_angle_rv = .text:0x002335B4; // type:function size:0x2C scope:global align:4
+aGTT_flow_direction = .text:0x002335E0; // type:function size:0x88 scope:global align:4
+aGTT_Get_water_surface_position_y = .text:0x00233668; // type:function size:0x54 scope:global align:4
+aGTT_search_Uki = .text:0x002336BC; // type:function size:0x1C0 scope:global align:4
+aGTT_player_near = .text:0x0023387C; // type:function size:0x154 scope:global align:4
+aGYO_check_wall = .text:0x002339D0; // type:function size:0xC0 scope:global align:4
+aGYO_check_bridge = .text:0x00233A90; // type:function size:0xB4 scope:global align:4
+aGYO_check_fall = .text:0x00233B44; // type:function size:0x78 scope:global align:4
+aGTT_wait = .text:0x00233BBC; // type:function size:0xF0 scope:global align:4
+aGTT_swim = .text:0x00233CAC; // type:function size:0x16C scope:global align:4
+aGTT_near = .text:0x00233E18; // type:function size:0x134 scope:global align:4
+aGTT_touch = .text:0x00233F4C; // type:function size:0x24C scope:global align:4
+aGTT_bite = .text:0x00234198; // type:function size:0x2C4 scope:global align:4
+aGTT_comeback = .text:0x0023445C; // type:function size:0x210 scope:global align:4
+aGTT_escape = .text:0x0023466C; // type:function size:0xDC scope:global align:4
+aGTT_swim_init = .text:0x00234748; // type:function size:0x10C scope:global align:4
+aGTT_near_init = .text:0x00234854; // type:function size:0x34 scope:global align:4
+aGTT_touch_init = .text:0x00234888; // type:function size:0x3C scope:global align:4
+aGTT_bite_init = .text:0x002348C4; // type:function size:0x88 scope:global align:4
+aGTT_comeback_init = .text:0x0023494C; // type:function size:0x78 scope:global align:4
+aGTT_wait_init = .text:0x002349C4; // type:function size:0xA0 scope:global align:4
+aGTT_escape_init = .text:0x00234A64; // type:function size:0x20 scope:global align:4
+aGTT_setupAction = .text:0x00234A84; // type:function size:0x48 scope:global align:4
+aGTT_actor_move = .text:0x00234ACC; // type:function size:0xE4 scope:global align:4
+aGKK_actor_init = .text:0x00234BB0; // type:function size:0x150 scope:global align:4
+aGKK_get_uki_type = .text:0x00234D00; // type:function size:0x28 scope:global align:4
+aGKK_speed_reset = .text:0x00234D28; // type:function size:0x14 scope:global align:4
+aGKK_set_scale = .text:0x00234D3C; // type:function size:0x10 scope:global align:4
+aGKK_set_angle = .text:0x00234D4C; // type:function size:0xC scope:global align:4
+aGKK_pos_calc = .text:0x00234D58; // type:function size:0xF8 scope:global align:4
+aGKK_effect_sibuki = .text:0x00234E50; // type:function size:0x14C scope:global align:4
+aGKK_kage_make_actor = .text:0x00234F9C; // type:function size:0xBC scope:global align:4
+aGKK_fish_make_actor = .text:0x00235058; // type:function size:0x88 scope:global align:4
+aGKK_effect_hamon = .text:0x002350E0; // type:function size:0xEC scope:global align:4
+aGKK_random_check = .text:0x002351CC; // type:function size:0x5C scope:global align:4
+aGKK_warp_event = .text:0x00235228; // type:function size:0x60 scope:global align:4
+aGKK_speed_calc = .text:0x00235288; // type:function size:0x38 scope:global align:4
+aGKK_position_calc = .text:0x002352C0; // type:function size:0x80 scope:global align:4
+aGKK_swim_speed_check = .text:0x00235340; // type:function size:0x8C scope:global align:4
+aGKK_Get_flow_angle = .text:0x002353CC; // type:function size:0x3C scope:global align:4
+aGKK_Get_flow_angle_rv = .text:0x00235408; // type:function size:0x2C scope:global align:4
+aGKK_Get_water_surface_position_y = .text:0x00235434; // type:function size:0x54 scope:global align:4
+aGKK_search_Uki = .text:0x00235488; // type:function size:0x1C0 scope:global align:4
+aGKK_player_near = .text:0x00235648; // type:function size:0x154 scope:global align:4
+aGKK_check_offing = .text:0x0023579C; // type:function size:0xFC scope:global align:4
+aGKK_check_wall = .text:0x00235898; // type:function size:0x1F8 scope:global align:4
+aGKK_check_uki = .text:0x00235A90; // type:function size:0x6C scope:global align:4
+aGKK_swim = .text:0x00235AFC; // type:function size:0x94 scope:global align:4
+aGKK_swim2 = .text:0x00235B90; // type:function size:0x9C scope:global align:4
+aGKK_swim3 = .text:0x00235C2C; // type:function size:0x94 scope:global align:4
+aGKK_swim4 = .text:0x00235CC0; // type:function size:0xB8 scope:global align:4
+aGKK_wait = .text:0x00235D78; // type:function size:0xC8 scope:global align:4
+aGKK_near = .text:0x00235E40; // type:function size:0x134 scope:global align:4
+aGKK_touch = .text:0x00235F74; // type:function size:0x23C scope:global align:4
+aGKK_bite = .text:0x002361B0; // type:function size:0x1F4 scope:global align:4
+aGKK_comeback = .text:0x002363A4; // type:function size:0x204 scope:global align:4
+aGKK_escape = .text:0x002365A8; // type:function size:0xAC scope:global align:4
+aGKK_swim_init = .text:0x00236654; // type:function size:0x10 scope:global align:4
+aGKK_swim2_init = .text:0x00236664; // type:function size:0x5C scope:global align:4
+aGKK_swim3_init = .text:0x002366C0; // type:function size:0x58 scope:global align:4
+aGKK_swim4_init = .text:0x00236718; // type:function size:0x3C scope:global align:4
+aGKK_near_init = .text:0x00236754; // type:function size:0x34 scope:global align:4
+aGKK_touch_init = .text:0x00236788; // type:function size:0x3C scope:global align:4
+aGKK_bite_init = .text:0x002367C4; // type:function size:0x88 scope:global align:4
+aGKK_comeback_init = .text:0x0023684C; // type:function size:0x78 scope:global align:4
+aGKK_wait_init = .text:0x002368C4; // type:function size:0xA0 scope:global align:4
+aGKK_wait_monster_init = .text:0x00236964; // type:function size:0x14 scope:global align:4
+aGKK_escape_init = .text:0x00236978; // type:function size:0x20 scope:global align:4
+aGKK_setupAction = .text:0x00236998; // type:function size:0x48 scope:global align:4
+aGKK_actor_move = .text:0x002369E0; // type:function size:0x6C scope:global align:4
+aBT_actor_ct = .text:0x00236A4C; // type:function size:0x17C scope:global align:4
+aBT_actor_dt = .text:0x00236BC8; // type:function size:0x80 scope:global align:4
+aBT_calc_furrow_alpha = .text:0x00236C48; // type:function size:0x50 scope:global align:4
+aBT_actor_draw_before = .text:0x00236C98; // type:function size:0xCC scope:global align:4
+aBT_actor_draw = .text:0x00236D64; // type:function size:0x1CC scope:global align:4
+aBT_passenger_ctrl = .text:0x00236F30; // type:function size:0x94 scope:global align:4
+aBT_check_other_boat = .text:0x00236FC4; // type:function size:0x68 scope:global align:4
+aBT_anime_proc = .text:0x0023702C; // type:function size:0xA4 scope:global align:4
+aBT_roll_ctrl = .text:0x002370D0; // type:function size:0x94 scope:global align:4
+aBT_check_alive = .text:0x00237164; // type:function size:0x94 scope:global align:4
+aBT_up_down_proc = .text:0x002371F8; // type:function size:0xBC scope:global align:4
+aBT_position_move = .text:0x002372B4; // type:function size:0x68 scope:global align:4
+aBT_calc_wave_angl = .text:0x0023731C; // type:function size:0x2A4 scope:global align:4
+aBT_ctrl_rudder = .text:0x002375C0; // type:function size:0x11C scope:global align:4
+aBT_ctrl_direction = .text:0x002376DC; // type:function size:0x1CC scope:global align:4
+aBT_calc_speed = .text:0x002378A8; // type:function size:0x68 scope:global align:4
+aBT_demo_ctrl_birth_wait = .text:0x00237910; // type:function size:0x98 scope:global align:4
+aBT_wait = .text:0x002379A8; // type:function size:0x74 scope:global align:4
+aBT_pl_ride_move_start_wait = .text:0x00237A1C; // type:function size:0xC4 scope:global align:4
+aBT_pl_ride_move_end_wait = .text:0x00237AE0; // type:function size:0x50 scope:global align:4
+aBT_pl_ride_on_start_wait = .text:0x00237B30; // type:function size:0xB8 scope:global align:4
+aBT_pl_ride_on_end_wait = .text:0x00237BE8; // type:function size:0x54 scope:global align:4
+aBT_sitdown_end_wait = .text:0x00237C3C; // type:function size:0x54 scope:global align:4
+aBT_move_wait = .text:0x00237C90; // type:function size:0x3C scope:global align:4
+aBT_move = .text:0x00237CCC; // type:function size:0xE0 scope:global align:4
+aBT_draw_up = .text:0x00237DAC; // type:function size:0x128 scope:global align:4
+aBT_arrive_call_end_wait = .text:0x00237ED4; // type:function size:0x34 scope:global align:4
+aBT_pl_ride_off_start_wait = .text:0x00237F08; // type:function size:0xDC scope:global align:4
+aBT_pl_ride_off_end_wait = .text:0x00237FE4; // type:function size:0x54 scope:global align:4
+aBT_anchor = .text:0x00238038; // type:function size:0x3C scope:global align:4
+aBT_wait_init = .text:0x00238074; // type:function size:0x10 scope:global align:4
+aBT_sitdown_end_wait_init = .text:0x00238084; // type:function size:0x60 scope:global align:4
+aBT_move_wait_init = .text:0x002380E4; // type:function size:0x10 scope:global align:4
+aBT_move_init = .text:0x002380F4; // type:function size:0x1C scope:global align:4
+aBT_moment_init = .text:0x00238110; // type:function size:0x10 scope:global align:4
+aBT_draw_up_init = .text:0x00238120; // type:function size:0x10 scope:global align:4
+aBT_arrive_call_end_wait_init = .text:0x00238130; // type:function size:0x10 scope:global align:4
+aBT_pl_ride_off_start_wait_init = .text:0x00238140; // type:function size:0xC scope:global align:4
+aBT_pl_ride_off_end_wait_init = .text:0x0023814C; // type:function size:0x10 scope:global align:4
+aBT_anchor_init = .text:0x0023815C; // type:function size:0x30 scope:global align:4
+aBT_setupAction = .text:0x0023818C; // type:function size:0x48 scope:global align:4
+aBT_actor_move = .text:0x002381D4; // type:function size:0x78 scope:global align:4
+aBT_actor_init = .text:0x0023824C; // type:function size:0x78 scope:global align:4
+aBRS_actor_ct = .text:0x002382C4; // type:function size:0x1A4 scope:global align:4
+aBRS_actor_dt = .text:0x00238468; // type:function size:0x58 scope:global align:4
+change_FGUnit = .text:0x002384C0; // type:function size:0x1BC scope:local align:4
+aBRS_set_bgOffset = .text:0x0023867C; // type:function size:0x16C scope:global align:4
+aBRS_rewrite_out_data = .text:0x002387E8; // type:function size:0xB0 scope:global align:4
+aBRS_check_player = .text:0x00238898; // type:function size:0xA4 scope:global align:4
+aBRS_open_check = .text:0x0023893C; // type:function size:0x8C scope:global align:4
+aBRS_set_talk_info_close_wait = .text:0x002389C8; // type:function size:0x68 scope:global align:4
+aBRS_close_wait = .text:0x00238A30; // type:function size:0xA0 scope:global align:4
+aBRS_open_wait = .text:0x00238AD0; // type:function size:0x10C scope:global align:4
+aBRS_close_door = .text:0x00238BDC; // type:function size:0x30 scope:global align:4
+aBRS_open_door = .text:0x00238C0C; // type:function size:0x30 scope:global align:4
+aBRS_setup_action = .text:0x00238C3C; // type:function size:0xA4 scope:global align:4
+aBRS_ctrl_light = .text:0x00238CE0; // type:function size:0x44 scope:global align:4
+aBRS_actor_move = .text:0x00238D24; // type:function size:0x17C scope:global align:4
+aBRS_actor_init = .text:0x00238EA0; // type:function size:0x78 scope:global align:4
+aBRS_actor_draw_before = .text:0x00238F18; // type:function size:0xA0 scope:global align:4
+aBRS_actor_draw_after = .text:0x00238FB8; // type:function size:0x11C scope:global align:4
+aBRS_actor_draw = .text:0x002390D4; // type:function size:0xF8 scope:global align:4
+aBridgeA_set_BgOffset = .text:0x002391CC; // type:function size:0x258 scope:global align:4
+aBridgeA_actor_ct = .text:0x00239424; // type:function size:0xE4 scope:global align:4
+aBridgeA_actor_dt = .text:0x00239508; // type:function size:0x20 scope:global align:4
+aBridge_player_check = .text:0x00239528; // type:function size:0x2E4 scope:global align:4
+aBridgeA_actor_move = .text:0x0023980C; // type:function size:0x6C scope:global align:4
+aBridgeA_actor_init = .text:0x00239878; // type:function size:0x78 scope:global align:4
+aBridgeA_before_disp = .text:0x002398F0; // type:function size:0x8C scope:global align:4
+aBridgeA_actor_draw = .text:0x0023997C; // type:function size:0x7C scope:global align:4
+aBGY_actor_ct = .text:0x002399F8; // type:function size:0x140 scope:global align:4
+aBGY_actor_dt = .text:0x00239B38; // type:function size:0x38 scope:global align:4
+change_FGUnit = .text:0x00239B70; // type:function size:0x1BC scope:local align:4
+aBGY_set_bgOffset = .text:0x00239D2C; // type:function size:0x16C scope:global align:4
+aBGY_rewrite_out_data = .text:0x00239E98; // type:function size:0xB0 scope:global align:4
+aBGY_check_player2 = .text:0x00239F48; // type:function size:0x58 scope:global align:4
+aBGY_check_player = .text:0x00239FA0; // type:function size:0xBC scope:global align:4
+aBGY_open_check = .text:0x0023A05C; // type:function size:0x30 scope:global align:4
+aBGY_set_talk_info_close_wait = .text:0x0023A08C; // type:function size:0x58 scope:global align:4
+aBGY_close_wait = .text:0x0023A0E4; // type:function size:0xA8 scope:global align:4
+aBGY_open_wait = .text:0x0023A18C; // type:function size:0x12C scope:global align:4
+aBGY_close_door = .text:0x0023A2B8; // type:function size:0x30 scope:global align:4
+aBGY_open_door = .text:0x0023A2E8; // type:function size:0x30 scope:global align:4
+aBGY_setup_action = .text:0x0023A318; // type:function size:0xA4 scope:global align:4
+aBGY_ctrl_light = .text:0x0023A3BC; // type:function size:0x34 scope:global align:4
+aBGY_actor_move = .text:0x0023A3F0; // type:function size:0x150 scope:global align:4
+aBGY_actor_init = .text:0x0023A540; // type:function size:0x78 scope:global align:4
+aBGY_actor_draw_before = .text:0x0023A5B8; // type:function size:0xA0 scope:global align:4
+aBGY_actor_draw_after = .text:0x0023A658; // type:function size:0x11C scope:global align:4
+aBGY_actor_draw = .text:0x0023A774; // type:function size:0x120 scope:global align:4
+aCNV_actor_ct = .text:0x0023A894; // type:function size:0x164 scope:global align:4
+aCNV_actor_dt = .text:0x0023A9F8; // type:function size:0x44 scope:global align:4
+aCNV_set_door_SE = .text:0x0023AA3C; // type:function size:0x2C scope:global align:4
+aCNV_rewrite_out_data = .text:0x0023AA68; // type:function size:0x104 scope:global align:4
+aCNV_check_player2 = .text:0x0023AB6C; // type:function size:0x58 scope:global align:4
+aCNV_check_player = .text:0x0023ABC4; // type:function size:0xC8 scope:global align:4
+aCNV_set_talk_info_close_wait = .text:0x0023AC8C; // type:function size:0x108 scope:global align:4
+aCNV_ctrl_light = .text:0x0023AD94; // type:function size:0x94 scope:global align:4
+aCNV_set_bgOffset = .text:0x0023AE28; // type:function size:0xCC scope:global align:4
+aCNV_close_wait = .text:0x0023AEF4; // type:function size:0xAC scope:global align:4
+aCNV_open_wait = .text:0x0023AFA0; // type:function size:0x120 scope:global align:4
+aCNV_close_door = .text:0x0023B0C0; // type:function size:0x30 scope:global align:4
+aCNV_open_door = .text:0x0023B0F0; // type:function size:0x30 scope:global align:4
+aCNV_pl_into_wait = .text:0x0023B120; // type:function size:0x7C scope:global align:4
+aCNV_setup_action = .text:0x0023B19C; // type:function size:0xE0 scope:global align:4
+aCNV_actor_move = .text:0x0023B27C; // type:function size:0x80 scope:global align:4
+aCNV_actor_init = .text:0x0023B2FC; // type:function size:0x78 scope:global align:4
+aCNV_actor_draw_before = .text:0x0023B374; // type:function size:0x80 scope:global align:4
+aCNV_actor_draw_after = .text:0x0023B3F4; // type:function size:0x11C scope:global align:4
+aCNV_actor_draw = .text:0x0023B510; // type:function size:0x100 scope:global align:4
+aCOU_actor_ct = .text:0x0023B610; // type:function size:0xD0 scope:local align:4
+aCOU_actor_dt = .text:0x0023B6E0; // type:function size:0x24 scope:local align:4
+aCOU_setNowTime = .text:0x0023B704; // type:function size:0x60 scope:global align:4
+aCOU_getTime = .text:0x0023B764; // type:function size:0x8C scope:global align:4
+aCOU_init = .text:0x0023B7F0; // type:function size:0x50 scope:global align:4
+aCOU_wait = .text:0x0023B840; // type:function size:0x11C scope:local align:4
+aCOU_setup_action = .text:0x0023B95C; // type:function size:0x9C scope:local align:4
+aCOU_actor_move = .text:0x0023B9F8; // type:function size:0x10C scope:local align:4
+aCOU_actor_init = .text:0x0023BB04; // type:function size:0x78 scope:local align:4
+aCOU_actor_draw_before = .text:0x0023BB7C; // type:function size:0x64 scope:local align:4
+aCOU_actor_draw = .text:0x0023BBE0; // type:function size:0x224 scope:local align:4
+aCOU_actor_ct = .text:0x0023BE04; // type:function size:0x74 scope:local align:4
+aCOU_actor_dt = .text:0x0023BE78; // type:function size:0x28 scope:local align:4
+aCOU_anime_play = .text:0x0023BEA0; // type:function size:0x1C scope:global align:4
+aCOU_init_clip_area = .text:0x0023BEBC; // type:function size:0x40 scope:global align:4
+aCOU_free_clip_area = .text:0x0023BEFC; // type:function size:0x24 scope:global align:4
+aCOU_set_bgOffset = .text:0x0023BF20; // type:function size:0x16C scope:global align:4
+aCOU_wait = .text:0x0023C08C; // type:function size:0x74 scope:local align:4
+aCOU_move = .text:0x0023C100; // type:function size:0x30 scope:global align:4
+aCOU_happy_new_year = .text:0x0023C130; // type:function size:0x28 scope:global align:4
+aCOU_setup_action = .text:0x0023C158; // type:function size:0xA0 scope:local align:4
+aCOU_actor_move = .text:0x0023C1F8; // type:function size:0x14C scope:local align:4
+aCOU_actor_init = .text:0x0023C344; // type:function size:0x78 scope:local align:4
+aCOU_actor_draw_before = .text:0x0023C3BC; // type:function size:0x14C scope:local align:4
+aCOU_actor_draw = .text:0x0023C508; // type:function size:0x15C scope:local align:4
+aDPT_actor_ct = .text:0x0023C664; // type:function size:0x170 scope:global align:4
+aDPT_actor_dt = .text:0x0023C7D4; // type:function size:0x44 scope:global align:4
+aDPT_set_door_SE = .text:0x0023C818; // type:function size:0x2C scope:global align:4
+aDPT_rewrite_out_data = .text:0x0023C844; // type:function size:0x104 scope:global align:4
+aDPT_check_player2 = .text:0x0023C948; // type:function size:0x58 scope:global align:4
+aDPT_check_player = .text:0x0023C9A0; // type:function size:0xC8 scope:global align:4
+aDPT_set_talk_info_close_wait = .text:0x0023CA68; // type:function size:0x108 scope:global align:4
+aDPT_ctrl_light = .text:0x0023CB70; // type:function size:0x94 scope:global align:4
+aDPT_set_bgOffset = .text:0x0023CC04; // type:function size:0xCC scope:global align:4
+aDPT_close_wait = .text:0x0023CCD0; // type:function size:0xAC scope:global align:4
+aDPT_open_wait = .text:0x0023CD7C; // type:function size:0x120 scope:global align:4
+aDPT_close_door = .text:0x0023CE9C; // type:function size:0x30 scope:global align:4
+aDPT_open_door = .text:0x0023CECC; // type:function size:0x30 scope:global align:4
+aDPT_pl_into_wait = .text:0x0023CEFC; // type:function size:0x7C scope:global align:4
+aDPT_setup_action = .text:0x0023CF78; // type:function size:0xE0 scope:global align:4
+aDPT_actor_move = .text:0x0023D058; // type:function size:0x80 scope:global align:4
+aDPT_actor_init = .text:0x0023D0D8; // type:function size:0x78 scope:global align:4
+aDPT_actor_draw_before = .text:0x0023D150; // type:function size:0xBC scope:global align:4
+aDPT_actor_draw_after = .text:0x0023D20C; // type:function size:0x11C scope:global align:4
+aDPT_actor_draw = .text:0x0023D328; // type:function size:0x108 scope:global align:4
+aDOU_actor_ct = .text:0x0023D430; // type:function size:0x10C scope:global align:4
+aDOU_actor_dt = .text:0x0023D53C; // type:function size:0x24 scope:global align:4
+aDOU_set_check = .text:0x0023D560; // type:function size:0xDC scope:global align:4
+aDOU_get_color = .text:0x0023D63C; // type:function size:0x20 scope:global align:4
+aDOU_get_douzou_type = .text:0x0023D65C; // type:function size:0x84 scope:global align:4
+KeepItem = .text:0x0023D6E0; // type:function size:0xA8 scope:global align:4
+aDOU_keep_item = .text:0x0023D788; // type:function size:0xB4 scope:global align:4
+aDOU_setEffect_sub = .text:0x0023D83C; // type:function size:0x188 scope:global align:4
+aDOU_setEffect = .text:0x0023D9C4; // type:function size:0x19C scope:global align:4
+aDOU_set_bgOffset = .text:0x0023DB60; // type:function size:0xC8 scope:global align:4
+aDOU_set_talk_info = .text:0x0023DC28; // type:function size:0xD4 scope:global align:4
+aDOU_wait = .text:0x0023DCFC; // type:function size:0x24C scope:global align:4
+aDOU_setup_action = .text:0x0023DF48; // type:function size:0xA4 scope:global align:4
+aDOU_actor_move = .text:0x0023DFEC; // type:function size:0x74 scope:global align:4
+aDOU_actor_init = .text:0x0023E060; // type:function size:0x78 scope:global align:4
+aDOU_actor_draw_before = .text:0x0023E0D8; // type:function size:0x178 scope:global align:4
+aDOU_actor_draw = .text:0x0023E250; // type:function size:0x20C scope:global align:4
+aDUM_actor_ct = .text:0x0023E45C; // type:function size:0x64 scope:global align:4
+aDUM_actor_dt = .text:0x0023E4C0; // type:function size:0x18 scope:global align:4
+aDUM_set_bgOffset_sub = .text:0x0023E4D8; // type:function size:0xC0 scope:global align:4
+aDUM_set_bgOffset = .text:0x0023E598; // type:function size:0xC4 scope:global align:4
+aDUM_set_talk_info = .text:0x0023E65C; // type:function size:0x68 scope:global align:4
+aDUM_wait = .text:0x0023E6C4; // type:function size:0xB4 scope:global align:4
+aDUM_setup_action = .text:0x0023E778; // type:function size:0x1C scope:global align:4
+aDUM_actor_move = .text:0x0023E794; // type:function size:0x10C scope:global align:4
+aDUM_actor_init = .text:0x0023E8A0; // type:function size:0x78 scope:global align:4
+aDUM_actor_draw = .text:0x0023E918; // type:function size:0x128 scope:global align:4
+aFLS_actor_move = .text:0x0023EA40; // type:function size:0x5C scope:global align:4
+aFLS_actor_draw = .text:0x0023EA9C; // type:function size:0x240 scope:global align:4
+aFLEW_actor_move = .text:0x0023ECDC; // type:function size:0x5C scope:global align:4
+aFLEW_actor_draw = .text:0x0023ED38; // type:function size:0x298 scope:global align:4
+aGhog_actor_ct = .text:0x0023EFD0; // type:function size:0x20 scope:global align:4
+aGhog_set_bgOffset = .text:0x0023EFF0; // type:function size:0xE0 scope:global align:4
+aGhog_actor_move = .text:0x0023F0D0; // type:function size:0x4 scope:global align:4
+aGhog_actor_init = .text:0x0023F0D4; // type:function size:0x78 scope:global align:4
+aGhog_actor_draw = .text:0x0023F14C; // type:function size:0xD0 scope:global align:4
+aGOZ_actor_ct = .text:0x0023F21C; // type:function size:0x4C scope:global align:4
+aGOZ_set_bgOffset = .text:0x0023F268; // type:function size:0x154 scope:global align:4
+aGOZ_setup_action = .text:0x0023F3BC; // type:function size:0x18 scope:global align:4
+aGOZ_actor_move = .text:0x0023F3D4; // type:function size:0x10C scope:global align:4
+aGOZ_actor_init = .text:0x0023F4E0; // type:function size:0x78 scope:global align:4
+aGOZ_actor_draw = .text:0x0023F558; // type:function size:0x124 scope:global align:4
+aHUS_actor_ct = .text:0x0023F67C; // type:function size:0x1A4 scope:global align:4
+aHUS_actor_dt = .text:0x0023F820; // type:function size:0x38 scope:global align:4
+aHUS_set_door_SE_sub = .text:0x0023F858; // type:function size:0x2C scope:global align:4
+change_FGUnit = .text:0x0023F884; // type:function size:0x1BC scope:local align:4
+aHUS_set_doorSE = .text:0x0023FA40; // type:function size:0xA8 scope:global align:4
+aHUS_odekake_check = .text:0x0023FAE8; // type:function size:0x184 scope:global align:4
+aHUS_setup_animation = .text:0x0023FC6C; // type:function size:0xD4 scope:global align:4
+aHUS_rewrite_out_data = .text:0x0023FD40; // type:function size:0x144 scope:global align:4
+aHUS_set_talk_info_check_player = .text:0x0023FE84; // type:function size:0x88 scope:global align:4
+aHUS_check_player = .text:0x0023FF0C; // type:function size:0x100 scope:global align:4
+aHUS_open_door_demo_ct = .text:0x0024000C; // type:function size:0x34 scope:global align:4
+aHUS_check_open = .text:0x00240040; // type:function size:0xC8 scope:global align:4
+aHUS_set_bgOffset = .text:0x00240108; // type:function size:0x16C scope:global align:4
+aHUS_ctrl_light = .text:0x00240274; // type:function size:0xF0 scope:global align:4
+aHUS_wait = .text:0x00240364; // type:function size:0xD4 scope:global align:4
+aHUS_open_door_wait = .text:0x00240438; // type:function size:0x84 scope:global align:4
+aHUS_open_door = .text:0x002404BC; // type:function size:0xC8 scope:global align:4
+aHUS_setup_action = .text:0x00240584; // type:function size:0x18 scope:global align:4
+aHUS_actor_move = .text:0x0024059C; // type:function size:0x64 scope:global align:4
+aHUS_actor_init = .text:0x00240600; // type:function size:0x80 scope:global align:4
+aHUS_actor_draw_before = .text:0x00240680; // type:function size:0xA4 scope:global align:4
+aHUS_actor_draw_after = .text:0x00240724; // type:function size:0x494 scope:global align:4
+aHUS_actor_draw_ta_set = .text:0x00240BB8; // type:function size:0xC0 scope:global align:4
+aHUS_actor_draw_ta_clr = .text:0x00240C78; // type:function size:0x68 scope:global align:4
+aHUS_actor_draw = .text:0x00240CE0; // type:function size:0x118 scope:global align:4
+aHTBL_GetPlayerLookAtUnit = .text:0x00240DF8; // type:function size:0x5C scope:global align:4
+aHTBL_SearchPickUpItemLayer2 = .text:0x00240E54; // type:function size:0x134 scope:global align:4
+aHTBL_SetFork = .text:0x00240F88; // type:function size:0x98 scope:global align:4
+aHTBL_SetClip = .text:0x00241020; // type:function size:0xFC scope:global align:4
+aHTBL_actor_ct = .text:0x0024111C; // type:function size:0x68 scope:global align:4
+aHTBL_actor_dt = .text:0x00241184; // type:function size:0x54 scope:global align:4
+aHTBL_set_bgOffset = .text:0x002411D8; // type:function size:0x35C scope:global align:4
+aHTBL_actor_move = .text:0x00241534; // type:function size:0xA8 scope:global align:4
+aHTBL_actor_init = .text:0x002415DC; // type:function size:0x78 scope:global align:4
+aHTBL_actor_draw = .text:0x00241654; // type:function size:0x10C scope:global align:4
+aKAG_actor_ct = .text:0x00241760; // type:function size:0x60 scope:global align:4
+aKAG_set_bgOffset = .text:0x002417C0; // type:function size:0x4C scope:global align:4
+aKAG_wait = .text:0x0024180C; // type:function size:0x4 scope:global align:4
+aKAG_setup_action = .text:0x00241810; // type:function size:0x1C scope:global align:4
+aKAG_actor_move = .text:0x0024182C; // type:function size:0x10C scope:global align:4
+aKAG_actor_init = .text:0x00241938; // type:function size:0x78 scope:global align:4
+aKAG_actor_draw = .text:0x002419B0; // type:function size:0xF8 scope:global align:4
+aKKR_actor_ct = .text:0x00241AA8; // type:function size:0x70 scope:global align:4
+aKKR_actor_dt = .text:0x00241B18; // type:function size:0x24 scope:global align:4
+change_FGUnit = .text:0x00241B3C; // type:function size:0x1BC scope:local align:4
+aKKR_set_bgOffset = .text:0x00241CF8; // type:function size:0x16C scope:global align:4
+aKKR_rewrite_out_data = .text:0x00241E64; // type:function size:0xF8 scope:global align:4
+aKKR_check_player = .text:0x00241F5C; // type:function size:0xA4 scope:global align:4
+aKKR_wait = .text:0x00242000; // type:function size:0xDC scope:global align:4
+aKKR_setup_action = .text:0x002420DC; // type:function size:0x1C scope:global align:4
+aKKR_ctrl_light = .text:0x002420F8; // type:function size:0x34 scope:global align:4
+aKKR_actor_move = .text:0x0024212C; // type:function size:0x144 scope:global align:4
+aKKR_actor_init = .text:0x00242270; // type:function size:0x78 scope:global align:4
+aKKR_actor_draw = .text:0x002422E8; // type:function size:0x228 scope:global align:4
+aKOI_actor_ct = .text:0x00242510; // type:function size:0x78 scope:global align:4
+aKOI_actor_dt = .text:0x00242588; // type:function size:0x24 scope:global align:4
+aKOI_wait = .text:0x002425AC; // type:function size:0x4 scope:global align:4
+aKOI_setup_action = .text:0x002425B0; // type:function size:0x90 scope:global align:4
+aKOI_actor_move = .text:0x00242640; // type:function size:0x68 scope:global align:4
+aKOI_actor_init = .text:0x002426A8; // type:function size:0x78 scope:global align:4
+aKOI_actor_draw = .text:0x00242720; // type:function size:0x118 scope:global align:4
+aLOT_actor_ct = .text:0x00242838; // type:function size:0xE0 scope:global align:4
+aLOT_actor_dt = .text:0x00242918; // type:function size:0x24 scope:global align:4
+aLOT_getPalNo = .text:0x0024293C; // type:function size:0x24 scope:global align:4
+aLOT_wait = .text:0x00242960; // type:function size:0xB8 scope:global align:4
+aLOT_shake = .text:0x00242A18; // type:function size:0x7C scope:global align:4
+aLOT_setup_action = .text:0x00242A94; // type:function size:0x9C scope:global align:4
+aLOT_actor_move = .text:0x00242B30; // type:function size:0x74 scope:global align:4
+aLOT_actor_init = .text:0x00242BA4; // type:function size:0x78 scope:global align:4
+aLOT_actor_draw_before = .text:0x00242C1C; // type:function size:0x88 scope:global align:4
+aLOT_actor_draw = .text:0x00242CA4; // type:function size:0xC4 scope:global align:4
+aMIK_actor_ct = .text:0x00242D68; // type:function size:0xD0 scope:local align:4
+aMIK_actor_dt = .text:0x00242E38; // type:function size:0x18 scope:global align:4
+aMIK_actor_save = .text:0x00242E50; // type:function size:0x4 scope:global align:4
+aMKBC_clip_set_string = .text:0x00242E54; // type:function size:0x94 scope:global align:4
+aMKBC_clip_roll_draw = .text:0x00242EE8; // type:function size:0x2D4 scope:global align:4
+aNTT_draw_chk_proc = .text:0x002431BC; // type:function size:0x54 scope:global align:4
+aNTT_set_string = .text:0x00243210; // type:function size:0x5C scope:global align:4
+aNTT_roll_init = .text:0x0024326C; // type:function size:0xC4 scope:global align:4
+aNTT_roll1_init = .text:0x00243330; // type:function size:0x8C scope:global align:4
+aNTT_roll2_init = .text:0x002433BC; // type:function size:0x3C scope:global align:4
+aNTT_roll3_init = .text:0x002433F8; // type:function size:0x20 scope:global align:4
+aNTT_roll_end_init = .text:0x00243418; // type:function size:0xB0 scope:global align:4
+aNTT_call_init = .text:0x002434C8; // type:function size:0x50 scope:global align:4
+aMKBC_clip_think_init = .text:0x00243518; // type:function size:0x34 scope:global align:4
+aMKBC_anime_stop = .text:0x0024354C; // type:function size:0x50 scope:global align:4
+aMKBC_clip_head_up = .text:0x0024359C; // type:function size:0x80 scope:global align:4
+aMKBC_clip_sound_proc = .text:0x0024361C; // type:function size:0x188 scope:global align:4
+aMKBC_clip_section_chk = .text:0x002437A4; // type:function size:0x18 scope:global align:4
+aMKBC_clip_bgm_no = .text:0x002437BC; // type:function size:0x10 scope:global align:4
+aMKBC_clip_roll_proc = .text:0x002437CC; // type:function size:0x15C scope:global align:4
+aMKBC_clip_set_itemstr = .text:0x00243928; // type:function size:0x74 scope:global align:4
+aMKBC_clip_set_itemstr3 = .text:0x0024399C; // type:function size:0x48 scope:global align:4
+aMKBC_count_merody = .text:0x002439E4; // type:function size:0x6C scope:global align:4
+aMKBC_clip_search_merody = .text:0x00243A50; // type:function size:0x10C scope:global align:4
+aMKBC_clip_check_merody = .text:0x00243B5C; // type:function size:0x54 scope:global align:4
+aMIK_actor_init = .text:0x00243BB0; // type:function size:0x60 scope:local align:4
+aMIK_copyright_draw = .text:0x00243C10; // type:function size:0x19C scope:global align:4
+aMIK_actor_draw = .text:0x00243DAC; // type:function size:0xF8 scope:local align:4
+aMIK_actor_ct = .text:0x00243EA4; // type:function size:0x24 scope:local align:4
+aMIK_set_bgOffset = .text:0x00243EC8; // type:function size:0x11C scope:global align:4
+aMIK_actor_move = .text:0x00243FE4; // type:function size:0xF0 scope:global align:4
+aMIK_actor_init = .text:0x002440D4; // type:function size:0x78 scope:local align:4
+aMIK_actor_draw = .text:0x0024414C; // type:function size:0xD0 scope:local align:4
+aMsm_actor_ct = .text:0x0024421C; // type:function size:0x7C scope:global align:4
+aMsm_set_bgOffset = .text:0x00244298; // type:function size:0x14C scope:global align:4
+aMsm_rewrite_out_data = .text:0x002443E4; // type:function size:0xF8 scope:global align:4
+aMsm_ctrl_light = .text:0x002444DC; // type:function size:0x34 scope:global align:4
+aMsm_check_player = .text:0x00244510; // type:function size:0xA4 scope:global align:4
+aMsm_actor_move = .text:0x002445B4; // type:function size:0x110 scope:global align:4
+aMsm_actor_init = .text:0x002446C4; // type:function size:0x78 scope:global align:4
+aMsm_actor_draw = .text:0x0024473C; // type:function size:0x310 scope:global align:4
+aMHS_actor_ct = .text:0x00244A4C; // type:function size:0x22C scope:global align:4
+aMHS_actor_dt = .text:0x00244C78; // type:function size:0x70 scope:global align:4
+aMHS_set_door_SE_sub = .text:0x00244CE8; // type:function size:0x2C scope:global align:4
+aMHS_set_door_SE = .text:0x00244D14; // type:function size:0xAC scope:global align:4
+aMHS_goto_next_pl_scene = .text:0x00244DC0; // type:function size:0x98 scope:global align:4
+aMHS_setup_animation = .text:0x00244E58; // type:function size:0xB8 scope:global align:4
+aMHS_rewrite_pl_out_data = .text:0x00244F10; // type:function size:0x140 scope:global align:4
+aMHS_check_player_sub = .text:0x00245050; // type:function size:0x128 scope:global align:4
+aMHS_check_player_in_intro_demo = .text:0x00245178; // type:function size:0x130 scope:global align:4
+aMHS_set_demo_info = .text:0x002452A8; // type:function size:0x44 scope:global align:4
+aMHS_set_demo_info_save = .text:0x002452EC; // type:function size:0x28 scope:global align:4
+aMHS_check_player = .text:0x00245314; // type:function size:0x12C scope:global align:4
+aMHS_make_bgOffset = .text:0x00245440; // type:function size:0xC4 scope:global align:4
+aMHS_set_bgOffset = .text:0x00245504; // type:function size:0x168 scope:global align:4
+aMHS_light_ctrl = .text:0x0024566C; // type:function size:0x30 scope:global align:4
+aMHS_wait = .text:0x0024569C; // type:function size:0x8C scope:global align:4
+aMHS_open_door_wait = .text:0x00245728; // type:function size:0x7C scope:global align:4
+aMHS_open_door = .text:0x002457A4; // type:function size:0x120 scope:global align:4
+aMHS_setup_action = .text:0x002458C4; // type:function size:0x30 scope:global align:4
+aMHS_actor_move = .text:0x002458F4; // type:function size:0x120 scope:global align:4
+aMHS_actor_init = .text:0x00245A14; // type:function size:0x80 scope:global align:4
+aMHS_actor_draw_before = .text:0x00245A94; // type:function size:0x25C scope:global align:4
+aMHS_actor_draw_after = .text:0x00245CF0; // type:function size:0x170 scope:global align:4
+aMHS_actor_draw_ta_set = .text:0x00245E60; // type:function size:0x80 scope:global align:4
+aMHS_actor_draw_ta_clr = .text:0x00245EE0; // type:function size:0x68 scope:global align:4
+aMHS_actor_draw = .text:0x00245F48; // type:function size:0x20C scope:global align:4
+aNP_set_talk_info = .text:0x00246154; // type:function size:0xA0 scope:global align:4
+aNP_actor_move = .text:0x002461F4; // type:function size:0xB0 scope:global align:4
+aNP_actor_init = .text:0x002462A4; // type:function size:0x78 scope:global align:4
+aNW_actor_ct = .text:0x0024631C; // type:function size:0x13C scope:global align:4
+aNW_actor_dt = .text:0x00246458; // type:function size:0x58 scope:global align:4
+aNW_set_door_SE_sub = .text:0x002464B0; // type:function size:0x2C scope:global align:4
+aNW_set_doorSE = .text:0x002464DC; // type:function size:0xA8 scope:global align:4
+aNW_rewrite_out_data = .text:0x00246584; // type:function size:0xF8 scope:global align:4
+aNW_check_player = .text:0x0024667C; // type:function size:0xCC scope:global align:4
+aNW_check_open = .text:0x00246748; // type:function size:0x5C scope:global align:4
+aNW_set_bgOffset = .text:0x002467A4; // type:function size:0x104 scope:global align:4
+aNW_setup_animation = .text:0x002468A8; // type:function size:0xC8 scope:global align:4
+aNW_open_door_demo_ct = .text:0x00246970; // type:function size:0x34 scope:global align:4
+aNW_talk_door_demo_ct = .text:0x002469A4; // type:function size:0x4C scope:global align:4
+aNW_check_opend = .text:0x002469F0; // type:function size:0x2C scope:global align:4
+aNW_ctrl_light = .text:0x00246A1C; // type:function size:0x64 scope:global align:4
+aNW_wait = .text:0x00246A80; // type:function size:0x104 scope:global align:4
+aNW_open_door_wait = .text:0x00246B84; // type:function size:0x84 scope:global align:4
+aNW_open_door = .text:0x00246C08; // type:function size:0x9C scope:global align:4
+aNW_setup_action = .text:0x00246CA4; // type:function size:0x18 scope:global align:4
+aNW_actor_move = .text:0x00246CBC; // type:function size:0x84 scope:global align:4
+aNW_actor_init = .text:0x00246D40; // type:function size:0x78 scope:global align:4
+aNW_actor_draw_before = .text:0x00246DB8; // type:function size:0x9C scope:global align:4
+aNW_actor_draw_after = .text:0x00246E54; // type:function size:0x11C scope:global align:4
+aNW_actor_draw = .text:0x00246F70; // type:function size:0x120 scope:global align:4
+aPBOX_actor_ct = .text:0x00247090; // type:function size:0x68 scope:global align:4
+aPBOX_set_bgOffset = .text:0x002470F8; // type:function size:0x16C scope:global align:4
+aPBOX_rewrite_out_data = .text:0x00247264; // type:function size:0x100 scope:global align:4
+aPBOX_check_player = .text:0x00247364; // type:function size:0xB0 scope:global align:4
+aPBOX_ctrl_light = .text:0x00247414; // type:function size:0x34 scope:global align:4
+aPBOX_actor_move = .text:0x00247448; // type:function size:0x12C scope:global align:4
+aPBOX_actor_init = .text:0x00247574; // type:function size:0x78 scope:global align:4
+aPBOX_actor_draw = .text:0x002475EC; // type:function size:0x278 scope:global align:4
+aPOFF_actor_ct = .text:0x00247864; // type:function size:0x118 scope:global align:4
+aPOFF_actor_dt = .text:0x0024797C; // type:function size:0x58 scope:global align:4
+aPOFF_set_door_SE_sub = .text:0x002479D4; // type:function size:0x2C scope:global align:4
+aPOFF_set_doorSE = .text:0x00247A00; // type:function size:0xA8 scope:global align:4
+aPOFF_rewrite_out_data = .text:0x00247AA8; // type:function size:0xF8 scope:global align:4
+aPOFF_check_player = .text:0x00247BA0; // type:function size:0xCC scope:global align:4
+aPOFF_check_open = .text:0x00247C6C; // type:function size:0x5C scope:global align:4
+aPOFF_set_bgOffset = .text:0x00247CC8; // type:function size:0x104 scope:global align:4
+aPOFF_setup_animation = .text:0x00247DCC; // type:function size:0xC8 scope:global align:4
+aPOFF_open_door_demo_ct = .text:0x00247E94; // type:function size:0x34 scope:global align:4
+aPOFF_ctrl_light = .text:0x00247EC8; // type:function size:0x34 scope:global align:4
+aPOFF_wait = .text:0x00247EFC; // type:function size:0xCC scope:global align:4
+aPOFF_open_door_wait = .text:0x00247FC8; // type:function size:0x84 scope:global align:4
+aPOFF_open_door = .text:0x0024804C; // type:function size:0x9C scope:global align:4
+aPOFF_setup_action = .text:0x002480E8; // type:function size:0x18 scope:global align:4
+aPOFF_actor_move = .text:0x00248100; // type:function size:0x90 scope:global align:4
+aPOFF_actor_init = .text:0x00248190; // type:function size:0x78 scope:global align:4
+aPOFF_actor_draw_before = .text:0x00248208; // type:function size:0xF8 scope:global align:4
+aPOFF_actor_draw_after = .text:0x00248300; // type:function size:0x154 scope:global align:4
+aPOFF_actor_draw_ta_set = .text:0x00248454; // type:function size:0x38 scope:global align:4
+aPOFF_actor_draw_ta_clr = .text:0x0024848C; // type:function size:0x38 scope:global align:4
+aPOFF_actor_draw = .text:0x002484C4; // type:function size:0x110 scope:global align:4
+aRAD_actor_ct = .text:0x002485D4; // type:function size:0x44 scope:global align:4
+aRAD_set_bgOffset = .text:0x00248618; // type:function size:0x4C scope:global align:4
+aRAD_wait = .text:0x00248664; // type:function size:0xEC scope:global align:4
+aRAD_setup_action = .text:0x00248750; // type:function size:0x1C scope:global align:4
+aRAD_actor_move = .text:0x0024876C; // type:function size:0x10C scope:global align:4
+aRAD_actor_init = .text:0x00248878; // type:function size:0x78 scope:global align:4
+aRAD_actor_draw = .text:0x002488F0; // type:function size:0xE4 scope:global align:4
+aRSV_actor_ct = .text:0x002489D4; // type:function size:0x5C scope:global align:4
+aRSV_set_bgOffset = .text:0x00248A30; // type:function size:0x4 scope:global align:4
+aRSV_set_talk_info = .text:0x00248A34; // type:function size:0x108 scope:global align:4
+aRSV_wait = .text:0x00248B3C; // type:function size:0x9C scope:global align:4
+aRSV_setup_action = .text:0x00248BD8; // type:function size:0x1C scope:global align:4
+aRSV_actor_move = .text:0x00248BF4; // type:function size:0x28 scope:global align:4
+aRSV_actor_init = .text:0x00248C1C; // type:function size:0x78 scope:global align:4
+aRSV_actor_draw = .text:0x00248C94; // type:function size:0x15C scope:global align:4
+aSCR_actor_ct = .text:0x00248DF0; // type:function size:0x24 scope:global align:4
+aSCR_actor_dt = .text:0x00248E14; // type:function size:0x64 scope:global align:4
+aSCR_set_bgOffset = .text:0x00248E78; // type:function size:0x100 scope:global align:4
+aSCR_actor_move = .text:0x00248F78; // type:function size:0x1B8 scope:global align:4
+aSCR_actor_init = .text:0x00249130; // type:function size:0x78 scope:global align:4
+aSCR_set_prim_col = .text:0x002491A8; // type:function size:0x114 scope:global align:4
+aSCR_actor_draw = .text:0x002492BC; // type:function size:0xE0 scope:global align:4
+aSHOP_actor_ct = .text:0x0024939C; // type:function size:0x198 scope:global align:4
+aSHOP_actor_dt = .text:0x00249534; // type:function size:0x58 scope:global align:4
+aSHOP_set_bgOffset = .text:0x0024958C; // type:function size:0x104 scope:global align:4
+aSHOP_rewrite_out_data = .text:0x00249690; // type:function size:0x100 scope:global align:4
+aSHOP_check_player2 = .text:0x00249790; // type:function size:0x58 scope:global align:4
+aSHOP_check_player = .text:0x002497E8; // type:function size:0xB0 scope:global align:4
+aSHOP_set_talk_info_close_wait = .text:0x00249898; // type:function size:0x108 scope:global align:4
+aSHOP_ctrl_light = .text:0x002499A0; // type:function size:0xD4 scope:global align:4
+aSHOP_close_wait = .text:0x00249A74; // type:function size:0x98 scope:global align:4
+aSHOP_open_wait = .text:0x00249B0C; // type:function size:0x108 scope:global align:4
+aSHOP_close_door = .text:0x00249C14; // type:function size:0x4C scope:global align:4
+aSHOP_open_door = .text:0x00249C60; // type:function size:0x30 scope:global align:4
+aSHOP_pl_into_wait = .text:0x00249C90; // type:function size:0x7C scope:global align:4
+aSHOP_setup_action = .text:0x00249D0C; // type:function size:0xAC scope:global align:4
+aSHOP_actor_move = .text:0x00249DB8; // type:function size:0xAC scope:global align:4
+aSHOP_actor_init = .text:0x00249E64; // type:function size:0x78 scope:global align:4
+aSHOP_actor_draw_before = .text:0x00249EDC; // type:function size:0xF8 scope:global align:4
+aSHOP_actor_draw_after = .text:0x00249FD4; // type:function size:0x164 scope:global align:4
+aSHOP_actor_draw = .text:0x0024A138; // type:function size:0xF8 scope:global align:4
+aSHR_getLeaftype = .text:0x0024A230; // type:function size:0x48 scope:global align:4
+aSHR_actor_ct = .text:0x0024A278; // type:function size:0x118 scope:global align:4
+aSHR_actor_dt = .text:0x0024A390; // type:function size:0x34 scope:global align:4
+aSHR_anime_play = .text:0x0024A3C4; // type:function size:0x1C scope:global align:4
+aSHR_init_clip_area = .text:0x0024A3E0; // type:function size:0x48 scope:global align:4
+aSHR_free_clip_area = .text:0x0024A428; // type:function size:0x24 scope:global align:4
+aSHR_set_bgOffset = .text:0x0024A44C; // type:function size:0x11C scope:global align:4
+aSHR_talk_check = .text:0x0024A568; // type:function size:0xB8 scope:global align:4
+aSHR_set_talk_info = .text:0x0024A620; // type:function size:0x60 scope:global align:4
+aSHR_ctrl_light = .text:0x0024A680; // type:function size:0x34 scope:global align:4
+aSHR_Present_ct = .text:0x0024A6B4; // type:function size:0x38 scope:global align:4
+aSHR_Present_move = .text:0x0024A6EC; // type:function size:0xD8 scope:global align:4
+aSHR_Present_move_wait_init = .text:0x0024A7C4; // type:function size:0x10 scope:global align:4
+aSHR_Present_move_wait = .text:0x0024A7D4; // type:function size:0x4 scope:global align:4
+aSHR_Present_move_walk = .text:0x0024A7D8; // type:function size:0xAC scope:global align:4
+aSHR_wait = .text:0x0024A884; // type:function size:0x88 scope:global align:4
+aSHR_talk = .text:0x0024A90C; // type:function size:0x20C scope:global align:4
+aSHR_talk_gomen = .text:0x0024AB18; // type:function size:0x1C0 scope:global align:4
+aSHR_make_hem_init = .text:0x0024ACD8; // type:function size:0x38 scope:global align:4
+aSHR_make_hem = .text:0x0024AD10; // type:function size:0x1A8 scope:global align:4
+aSHR_talk_end = .text:0x0024AEB8; // type:function size:0x58 scope:global align:4
+aSHR_setup_action = .text:0x0024AF10; // type:function size:0x68 scope:global align:4
+aSHR_actor_move = .text:0x0024AF78; // type:function size:0x64 scope:global align:4
+aSHR_actor_init = .text:0x0024AFDC; // type:function size:0x78 scope:global align:4
+aSHR_actor_draw_ta_set = .text:0x0024B054; // type:function size:0x6C scope:global align:4
+aSHR_actor_draw_ta_clr = .text:0x0024B0C0; // type:function size:0x68 scope:global align:4
+aSHR_GetTwoTileGfx = .text:0x0024B128; // type:function size:0x54 scope:global align:4
+aSHR_GetTwoTileGfx2 = .text:0x0024B17C; // type:function size:0x54 scope:global align:4
+aSHR_actor_draw = .text:0x0024B1D0; // type:function size:0x458 scope:global align:4
+aSTA_actor_ct = .text:0x0024B628; // type:function size:0xF0 scope:global align:4
+aSTA_actor_dt = .text:0x0024B718; // type:function size:0x48 scope:global align:4
+aSTA_wait = .text:0x0024B760; // type:function size:0x4 scope:global align:4
+aSTA_setup_action = .text:0x0024B764; // type:function size:0xA8 scope:global align:4
+aSTA_actor_move = .text:0x0024B80C; // type:function size:0x28 scope:global align:4
+aSTA_actor_init = .text:0x0024B834; // type:function size:0x78 scope:global align:4
+aSTA_actor_draw_before = .text:0x0024B8AC; // type:function size:0x84 scope:global align:4
+aSTA_actor_draw = .text:0x0024B930; // type:function size:0x184 scope:global align:4
+aSTC_clip_ct = .text:0x0024BAB4; // type:function size:0x24 scope:global align:4
+aSTC_clip_dt = .text:0x0024BAD8; // type:function size:0x18 scope:global align:4
+aSTC_clip_change_sound = .text:0x0024BAF0; // type:function size:0x84 scope:global align:4
+aSTM_set_slot_name = .text:0x0024BB74; // type:function size:0x50 scope:global align:4
+aSTM_chk_train_local = .text:0x0024BBC4; // type:function size:0xA8 scope:global align:4
+aSTM_cardproc = .text:0x0024BC6C; // type:function size:0x19C scope:global align:4
+aSTM_chk_leave_talk = .text:0x0024BE08; // type:function size:0x74 scope:global align:4
+aSTM_chk_leave_talk2 = .text:0x0024BE7C; // type:function size:0x4C scope:global align:4
+aSTM_repairid_after = .text:0x0024BEC8; // type:function size:0x7C scope:global align:4
+aSTM_chk_train_talk = .text:0x0024BF44; // type:function size:0x84 scope:global align:4
+aSTM_chk_train2_talk = .text:0x0024BFC8; // type:function size:0x84 scope:global align:4
+aSTM_before_save_talk = .text:0x0024C04C; // type:function size:0x80 scope:global align:4
+aSTM_save_talk = .text:0x0024C0CC; // type:function size:0x250 scope:global align:4
+aSTM_save_error = .text:0x0024C31C; // type:function size:0x84 scope:global align:4
+aSTM_chk_over_save_talk = .text:0x0024C3A0; // type:function size:0x88 scope:global align:4
+aSTM_save_talk_end = .text:0x0024C428; // type:function size:0xC4 scope:global align:4
+aSTM_sayonara = .text:0x0024C4EC; // type:function size:0x4C scope:global align:4
+aSTM_chk_repairid = .text:0x0024C538; // type:function size:0xA4 scope:global align:4
+aSTM_repairid_bf = .text:0x0024C5DC; // type:function size:0x80 scope:global align:4
+aSTM_repairid = .text:0x0024C65C; // type:function size:0xE0 scope:global align:4
+aSTC_clip_change_talk_proc = .text:0x0024C73C; // type:function size:0x1C scope:global align:4
+aSTR_actor_ct = .text:0x0024C758; // type:function size:0x48 scope:global align:4
+aSTR_actor_dt = .text:0x0024C7A0; // type:function size:0x20 scope:global align:4
+aSTR_check_door_data = .text:0x0024C7C0; // type:function size:0x90 scope:global align:4
+aSTR_actor_move = .text:0x0024C850; // type:function size:0x50 scope:global align:4
+aSTR_get_pal_segment = .text:0x0024C8A0; // type:function size:0x38 scope:global align:4
+aSTR_setupActor_proc = .text:0x0024C8D8; // type:function size:0x1B0 scope:global align:4
+aSTR_get_overlay_free_area_idx = .text:0x0024CA88; // type:function size:0x48 scope:global align:4
+aSTR_get_overlay_area_proc = .text:0x0024CAD0; // type:function size:0x70 scope:global align:4
+aSTR_free_overlay_area_proc = .text:0x0024CB40; // type:function size:0x48 scope:global align:4
+aSTR_get_actor_area_proc = .text:0x0024CB88; // type:function size:0x5C scope:global align:4
+aSTR_free_actor_area_proc = .text:0x0024CBE4; // type:function size:0x48 scope:global align:4
+aSTR_init_clip_area = .text:0x0024CC2C; // type:function size:0x10C scope:global align:4
+aSTR_free_clip_area = .text:0x0024CD38; // type:function size:0x8C scope:global align:4
+aSPR_actor_ct = .text:0x0024CDC4; // type:function size:0x170 scope:global align:4
+aSPR_actor_dt = .text:0x0024CF34; // type:function size:0x44 scope:global align:4
+aSPR_set_door_SE = .text:0x0024CF78; // type:function size:0x2C scope:global align:4
+aSPR_rewrite_out_data = .text:0x0024CFA4; // type:function size:0x104 scope:global align:4
+aSPR_check_player2 = .text:0x0024D0A8; // type:function size:0x58 scope:global align:4
+aSPR_check_player = .text:0x0024D100; // type:function size:0xC8 scope:global align:4
+aSPR_set_talk_info_close_wait = .text:0x0024D1C8; // type:function size:0x108 scope:global align:4
+aSPR_ctrl_light = .text:0x0024D2D0; // type:function size:0x94 scope:global align:4
+aSPR_set_bgOffset = .text:0x0024D364; // type:function size:0xCC scope:global align:4
+aSPR_close_wait = .text:0x0024D430; // type:function size:0xAC scope:global align:4
+aSPR_open_wait = .text:0x0024D4DC; // type:function size:0x120 scope:global align:4
+aSPR_close_door = .text:0x0024D5FC; // type:function size:0x30 scope:global align:4
+aSPR_open_door = .text:0x0024D62C; // type:function size:0x30 scope:global align:4
+aSPR_pl_into_wait = .text:0x0024D65C; // type:function size:0x7C scope:global align:4
+aSPR_setup_action = .text:0x0024D6D8; // type:function size:0xE0 scope:global align:4
+aSPR_actor_move = .text:0x0024D7B8; // type:function size:0x80 scope:global align:4
+aSPR_actor_init = .text:0x0024D838; // type:function size:0x78 scope:global align:4
+aSPR_actor_draw_before = .text:0x0024D8B0; // type:function size:0x80 scope:global align:4
+aSPR_actor_draw_after = .text:0x0024D930; // type:function size:0x11C scope:global align:4
+aSPR_actor_draw = .text:0x0024DA4C; // type:function size:0x100 scope:global align:4
+aTAM_actor_ct = .text:0x0024DB4C; // type:function size:0x28 scope:global align:4
+aTAM_actor_move = .text:0x0024DB74; // type:function size:0xF0 scope:global align:4
+aTAM_actor_init = .text:0x0024DC64; // type:function size:0x78 scope:global align:4
+aTAM_actor_draw = .text:0x0024DCDC; // type:function size:0xE8 scope:global align:4
+aTnt_actor_ct = .text:0x0024DDC4; // type:function size:0x70 scope:global align:4
+aTnt_actor_dt = .text:0x0024DE34; // type:function size:0x24 scope:global align:4
+aTnt_ChangeFg = .text:0x0024DE58; // type:function size:0x1B0 scope:global align:4
+aTnt_SetBgOffset = .text:0x0024E008; // type:function size:0x150 scope:global align:4
+aTnt_rewrite_out_data = .text:0x0024E158; // type:function size:0xF8 scope:global align:4
+aTnt_check_player = .text:0x0024E250; // type:function size:0x9C scope:global align:4
+aTnt_wait = .text:0x0024E2EC; // type:function size:0xDC scope:global align:4
+aTnt_SetupAction = .text:0x0024E3C8; // type:function size:0x1C scope:global align:4
+aTnt_ControlLight = .text:0x0024E3E4; // type:function size:0x38 scope:global align:4
+aTnt_actor_move = .text:0x0024E41C; // type:function size:0x154 scope:global align:4
+aTnt_actor_init = .text:0x0024E570; // type:function size:0x78 scope:global align:4
+aTnt_MakeWindowPrimDisplayList = .text:0x0024E5E8; // type:function size:0x84 scope:global align:4
+aTnt_actor_draw = .text:0x0024E66C; // type:function size:0xEC scope:global align:4
+aTOU_fgunit_on = .text:0x0024E758; // type:function size:0x1BC scope:global align:4
+aTOU_fgunit_off = .text:0x0024E914; // type:function size:0xB0 scope:global align:4
+aTOU_actor_ct = .text:0x0024E9C4; // type:function size:0xB4 scope:global align:4
+aTOU_actor_dt = .text:0x0024EA78; // type:function size:0x54 scope:global align:4
+aTOU_rewrite_door = .text:0x0024EACC; // type:function size:0x10C scope:global align:4
+aTOU_check_door_pos = .text:0x0024EBD8; // type:function size:0xA8 scope:global align:4
+aTOU_set_bgOffset = .text:0x0024EC80; // type:function size:0x11C scope:global align:4
+aTOU_color_ctrl = .text:0x0024ED9C; // type:function size:0x540 scope:global align:4
+aTOU_init = .text:0x0024F2DC; // type:function size:0x24 scope:global align:4
+aTOU_wait = .text:0x0024F300; // type:function size:0x88 scope:global align:4
+aTOU_lighting = .text:0x0024F388; // type:function size:0x70 scope:global align:4
+aTOU_lightout = .text:0x0024F3F8; // type:function size:0x48 scope:global align:4
+aTOU_setup_action = .text:0x0024F440; // type:function size:0xB0 scope:global align:4
+aTOU_actor_move = .text:0x0024F4F0; // type:function size:0x11C scope:global align:4
+aTOU_actor_init = .text:0x0024F60C; // type:function size:0x78 scope:global align:4
+aTOU_actor_draw_before = .text:0x0024F684; // type:function size:0x18 scope:global align:4
+aTOU_actor_draw_after = .text:0x0024F69C; // type:function size:0x1A8 scope:global align:4
+aTOU_actor_draw = .text:0x0024F844; // type:function size:0x13C scope:global align:4
+aTR0_actor_ct = .text:0x0024F980; // type:function size:0xB4 scope:local align:4
+aTR0_actor_dt = .text:0x0024FA34; // type:function size:0x84 scope:local align:4
+aTR0_ctrl_engineer = .text:0x0024FAB8; // type:function size:0xEC scope:global align:4
+aTR0_set_effect = .text:0x0024FBA4; // type:function size:0x120 scope:global align:4
+aTR0_steam_work_sub = .text:0x0024FCC4; // type:function size:0x108 scope:global align:4
+aTR0_steam_work = .text:0x0024FDCC; // type:function size:0x80 scope:global align:4
+calc_speed1 = .text:0x0024FE4C; // type:function size:0x58 scope:local align:4
+calc_speed2 = .text:0x0024FEA4; // type:function size:0x30 scope:local align:4
+aTR0_ctrl_back_car = .text:0x0024FED4; // type:function size:0xE0 scope:global align:4
+aTR0_animation = .text:0x0024FFB4; // type:function size:0x64 scope:global align:4
+aTR0_move = .text:0x00250018; // type:function size:0x68 scope:global align:4
+aTR0_delcheck = .text:0x00250080; // type:function size:0xC4 scope:global align:4
+aTR0_actor_move = .text:0x00250144; // type:function size:0xF4 scope:local align:4
+aTR0_actor_draw = .text:0x00250238; // type:function size:0x134 scope:local align:4
+aTR1_actor_ct = .text:0x0025036C; // type:function size:0x70 scope:global align:4
+aTR1_actor_dt = .text:0x002503DC; // type:function size:0x58 scope:global align:4
+aTR1_OngenTrgStart = .text:0x00250434; // type:function size:0x2C scope:global align:4
+calc_speed1 = .text:0x00250460; // type:function size:0x58 scope:local align:4
+calc_speed2 = .text:0x002504B8; // type:function size:0x30 scope:local align:4
+aTR1_position_move = .text:0x002504E8; // type:function size:0xF0 scope:global align:4
+aTR1_chg_station_attr = .text:0x002505D8; // type:function size:0xA0 scope:global align:4
+aTR1_passenger_ctrl = .text:0x00250678; // type:function size:0x138 scope:global align:4
+aTR1_setupAction = .text:0x002507B0; // type:function size:0x12C scope:global align:4
+aTR1_actor_move = .text:0x002508DC; // type:function size:0x80 scope:global align:4
+aTR1_actor_draw = .text:0x0025095C; // type:function size:0xC4 scope:global align:4
+aTUK_actor_ct = .text:0x00250A20; // type:function size:0x94 scope:global align:4
+aTUK_actor_dt = .text:0x00250AB4; // type:function size:0x24 scope:global align:4
+aTUK_set_bgOffset = .text:0x00250AD8; // type:function size:0x4C scope:global align:4
+aTUK_setup_action = .text:0x00250B24; // type:function size:0x74 scope:global align:4
+aTUK_actor_move = .text:0x00250B98; // type:function size:0xFC scope:global align:4
+aTUK_actor_init = .text:0x00250C94; // type:function size:0x78 scope:global align:4
+aTUK_actor_draw_before = .text:0x00250D0C; // type:function size:0x18 scope:global align:4
+aTUK_actor_draw_after = .text:0x00250D24; // type:function size:0xD4 scope:global align:4
+aTUK_actor_draw = .text:0x00250DF8; // type:function size:0x108 scope:global align:4
+aTUR_actor_ct = .text:0x00250F00; // type:function size:0x68 scope:global align:4
+aTUR_actor_dt = .text:0x00250F68; // type:function size:0x20 scope:global align:4
+aTRC_clip_ct = .text:0x00250F88; // type:function size:0x48 scope:global align:4
+aTRC_clip_dt = .text:0x00250FD0; // type:function size:0x18 scope:global align:4
+get_fish_save_area = .text:0x00250FE8; // type:function size:0x60 scope:local align:4
+get_top_of_angler_size = .text:0x00251048; // type:function size:0x24 scope:local align:4
+set_top_of_angler_pID = .text:0x0025106C; // type:function size:0x38 scope:local align:4
+getP_top_of_angler_pID = .text:0x002510A4; // type:function size:0x24 scope:local align:4
+aTRC_clip_fish_rndsize = .text:0x002510C8; // type:function size:0x20 scope:global align:4
+aTRC_clip_get_msgno = .text:0x002510E8; // type:function size:0x170 scope:global align:4
+aTRC_clip_random_topsize = .text:0x00251258; // type:function size:0x124 scope:global align:4
+aTRC_clip_set_topname = .text:0x0025137C; // type:function size:0x74 scope:global align:4
+aTUR_set_bgOffset = .text:0x002513F0; // type:function size:0x178 scope:global align:4
+aTUR_wait = .text:0x00251568; // type:function size:0x4 scope:global align:4
+aTUR_setup_action = .text:0x0025156C; // type:function size:0x1C scope:global align:4
+aTUR_actor_move = .text:0x00251588; // type:function size:0x10C scope:global align:4
+aTUR_actor_init = .text:0x00251694; // type:function size:0x78 scope:global align:4
+aTUR_actor_draw = .text:0x0025170C; // type:function size:0x104 scope:global align:4
+aWIN_actor_dt = .text:0x00251810; // type:function size:0x38 scope:global align:4
+aWIN_set_bgOffset = .text:0x00251848; // type:function size:0x16C scope:global align:4
+aWIN_actor_move = .text:0x002519B4; // type:function size:0x54 scope:global align:4
+aWIN_actor_init = .text:0x00251A08; // type:function size:0x80 scope:global align:4
+aWIN_actor_draw = .text:0x00251A88; // type:function size:0x4 scope:global align:4
+aYAT_actor_ct = .text:0x00251A8C; // type:function size:0x34 scope:global align:4
+aYAT_set_bgOffset = .text:0x00251AC0; // type:function size:0x194 scope:global align:4
+aYAT_actor_move = .text:0x00251C54; // type:function size:0xF0 scope:global align:4
+aYAT_actor_init = .text:0x00251D44; // type:function size:0x78 scope:global align:4
+aYAT_actor_draw = .text:0x00251DBC; // type:function size:0x118 scope:global align:4
+mAD_cancel_edit = .text:0x00251ED4; // type:function size:0x7C scope:global align:4
+mAD_get_nextIdx = .text:0x00251F50; // type:function size:0x58 scope:global align:4
+mAD_pile_init = .text:0x00251FA8; // type:function size:0xD8 scope:global align:4
+mAD_move_between = .text:0x00252080; // type:function size:0x98 scope:global align:4
+mAD_move_cursol = .text:0x00252118; // type:function size:0xC4 scope:global align:4
+mAD_make_player_address = .text:0x002521DC; // type:function size:0xE8 scope:global align:4
+mAD_make_npc_address = .text:0x002522C4; // type:function size:0xC8 scope:global align:4
+mAD_refuse_proc = .text:0x0025238C; // type:function size:0x30 scope:global align:4
+mAD_start_proc = .text:0x002523BC; // type:function size:0x70 scope:global align:4
+mAD_select_proc = .text:0x0025242C; // type:function size:0x1D0 scope:global align:4
+mAD_turn_page_proc = .text:0x002525FC; // type:function size:0x224 scope:global align:4
+mAD_turn_page2_proc = .text:0x00252820; // type:function size:0x168 scope:global align:4
+mAD_move_Play = .text:0x00252988; // type:function size:0x40 scope:global align:4
+mAD_move_Wait = .text:0x002529C8; // type:function size:0x84 scope:global align:4
+mAD_move_End = .text:0x00252A4C; // type:function size:0x2C scope:global align:4
+mAD_address_ovl_move = .text:0x00252A78; // type:function size:0x68 scope:global align:4
+mAD_address_draw_init = .text:0x00252AE0; // type:function size:0x108 scope:global align:4
+mAD_set_first_tag = .text:0x00252BE8; // type:function size:0x194 scope:global align:4
+mAD_set_addressSel_tag_field = .text:0x00252D7C; // type:function size:0x160 scope:global align:4
+mAD_set_addressSel_tag_character = .text:0x00252EDC; // type:function size:0x264 scope:global align:4
+mAD_set_addressSel_tag = .text:0x00253140; // type:function size:0x1D4 scope:global align:4
+mAD_set_dl = .text:0x00253314; // type:function size:0x64 scope:global align:4
+mAD_address_ovl_draw = .text:0x00253378; // type:function size:0xE0 scope:global align:4
+mAD_address_ovl_set_proc = .text:0x00253458; // type:function size:0x20 scope:global align:4
+mAD_address_ovl_init = .text:0x00253478; // type:function size:0x12C scope:global align:4
+mAD_address_ovl_construct = .text:0x002535A4; // type:function size:0x88 scope:global align:4
+mAD_address_ovl_destruct = .text:0x0025362C; // type:function size:0x10 scope:global align:4
+mBN_now_bell_2_bell = .text:0x0025363C; // type:function size:0x20 scope:global align:4
+mBN_cursol_2_keta = .text:0x0025365C; // type:function size:0x24 scope:global align:4
+mBN_total_item_bell = .text:0x00253680; // type:function size:0x8C scope:global align:4
+mBN_bank_ok = .text:0x0025370C; // type:function size:0x230 scope:global align:4
+mBN_move_Move = .text:0x0025393C; // type:function size:0x2C scope:global align:4
+mBN_move_Play = .text:0x00253968; // type:function size:0x20C scope:global align:4
+mBN_move_End = .text:0x00253B74; // type:function size:0x2C scope:global align:4
+mBN_bank_ovl_move = .text:0x00253BA0; // type:function size:0x68 scope:global align:4
+mBN_set_frame_dl = .text:0x00253C08; // type:function size:0x240 scope:global align:4
+mBN_set_num_str = .text:0x00253E48; // type:function size:0x10C scope:global align:4
+mBN_set_character_dl = .text:0x00253F54; // type:function size:0x2F8 scope:global align:4
+mBN_bank_ovl_draw = .text:0x0025424C; // type:function size:0x68 scope:global align:4
+mBN_bank_ovl_set_proc = .text:0x002542B4; // type:function size:0x20 scope:global align:4
+mBN_bank_ovl_init = .text:0x002542D4; // type:function size:0x118 scope:global align:4
+mBN_bank_ovl_construct = .text:0x002543EC; // type:function size:0x70 scope:global align:4
+mBN_bank_ovl_destruct = .text:0x0025445C; // type:function size:0x10 scope:global align:4
+mBR_window_close = .text:0x0025446C; // type:function size:0x6C scope:global align:4
+mBR_move_Move = .text:0x002544D8; // type:function size:0x2C scope:global align:4
+mBR_move_Play = .text:0x00254504; // type:function size:0x1AC scope:global align:4
+mBR_move_End = .text:0x002546B0; // type:function size:0x2C scope:global align:4
+mBR_birthday_ovl_move = .text:0x002546DC; // type:function size:0x68 scope:global align:4
+mBR_set_dl = .text:0x00254744; // type:function size:0x344 scope:global align:4
+mBR_birthday_ovl_draw = .text:0x00254A88; // type:function size:0x58 scope:global align:4
+mBR_birthday_ovl_set_proc = .text:0x00254AE0; // type:function size:0x20 scope:global align:4
+mBR_birthday_ovl_init = .text:0x00254B00; // type:function size:0x6C scope:global align:4
+mBR_birthday_ovl_construct = .text:0x00254B6C; // type:function size:0x70 scope:global align:4
+mBR_birthday_ovl_destruct = .text:0x00254BDC; // type:function size:0x10 scope:global align:4
+mBD_strLineCheck = .text:0x00254BEC; // type:function size:0xBC scope:global align:4
+mBD_roll_control = .text:0x00254CA8; // type:function size:0x17C scope:global align:4
+mBD_roll_control2 = .text:0x00254E24; // type:function size:0xC0 scope:global align:4
+mBD_move_Move = .text:0x00254EE4; // type:function size:0x2C scope:global align:4
+mBD_move_Wait = .text:0x00254F10; // type:function size:0x64 scope:global align:4
+mBD_end_board = .text:0x00254F74; // type:function size:0x64 scope:global align:4
+mBD_move_Play = .text:0x00254FD8; // type:function size:0x5C scope:global align:4
+mBD_move_Obey = .text:0x00255034; // type:function size:0x254 scope:global align:4
+mBD_move_End = .text:0x00255288; // type:function size:0x2C scope:global align:4
+mBD_board_ovl_move = .text:0x002552B4; // type:function size:0x68 scope:global align:4
+mBD_set_frame_dl = .text:0x0025531C; // type:function size:0x114 scope:global align:4
+mBD_set_point = .text:0x00255430; // type:function size:0x184 scope:global align:4
+mBD_set_cursol = .text:0x002555B4; // type:function size:0x228 scope:global align:4
+mBD_set_writing_footer = .text:0x002557DC; // type:function size:0x120 scope:global align:4
+mBD_set_writing_body = .text:0x002558FC; // type:function size:0x2F0 scope:global align:4
+mBD_set_writing_header = .text:0x00255BEC; // type:function size:0x33C scope:global align:4
+mBD_set_character = .text:0x00255F28; // type:function size:0x18C scope:global align:4
+mBD_set_dl = .text:0x002560B4; // type:function size:0xD4 scope:global align:4
+mBD_board_ovl_draw = .text:0x00256188; // type:function size:0x58 scope:global align:4
+mBD_board_ovl_set_proc = .text:0x002561E0; // type:function size:0x20 scope:global align:4
+mBD_board_ovl_init = .text:0x00256200; // type:function size:0x2D0 scope:global align:4
+mBD_board_ovl_construct = .text:0x002564D0; // type:function size:0x54 scope:global align:4
+mBD_board_ovl_destruct = .text:0x00256524; // type:function size:0x10 scope:global align:4
+mCD_visiter_chk = .text:0x00256534; // type:function size:0x60 scope:global align:4
+mCD_sp_soncho_chk = .text:0x00256594; // type:function size:0x14C scope:global align:4
+mCD_soncho_chk = .text:0x002566E0; // type:function size:0xB0 scope:global align:4
+mCD_make_icon = .text:0x00256790; // type:function size:0xA4 scope:global align:4
+mDC_set_string = .text:0x00256834; // type:function size:0xD8 scope:global align:4
+mDC_set_disp_table = .text:0x0025690C; // type:function size:0xD4 scope:global align:4
+mDC_weekly_to_day_data = .text:0x002569E0; // type:function size:0x4C scope:global align:4
+mDC_day_to_day_data = .text:0x00256A2C; // type:function size:0x38 scope:global align:4
+mDC_set_disp_event_day = .text:0x00256A64; // type:function size:0x30 scope:global align:4
+mDC_get_calendar_day_position = .text:0x00256A94; // type:function size:0x40 scope:global align:4
+mCD_make_calendar_event_sanka_check = .text:0x00256AD4; // type:function size:0xC8 scope:global align:4
+mDC_set_event_day_data = .text:0x00256B9C; // type:function size:0xBC scope:global align:4
+mCD_make_calendar_data_init = .text:0x00256C58; // type:function size:0x28 scope:global align:4
+mCD_make_calendar_data_holiday_and_icon = .text:0x00256C80; // type:function size:0xD8 scope:global align:4
+mCD_make_calendar_data_month = .text:0x00256D58; // type:function size:0x74 scope:global align:4
+mCD_make_calendar_data_fixed_day_event = .text:0x00256DCC; // type:function size:0x70 scope:global align:4
+mCD_make_calendar_data_unfixed_day_event = .text:0x00256E3C; // type:function size:0x1B4 scope:global align:4
+mCD_make_calendar_data_year = .text:0x00256FF0; // type:function size:0xBC scope:global align:4
+mCD_make_calendar_data = .text:0x002570AC; // type:function size:0xB4 scope:global align:4
+mCD_stick_area_check = .text:0x00257160; // type:function size:0x14C scope:global align:4
+mCD_move_Move = .text:0x002572AC; // type:function size:0x2C scope:global align:4
+mCD_MVPL_select = .text:0x002572D8; // type:function size:0x1BC scope:global align:4
+mCD_MVPL_mv = .text:0x00257494; // type:function size:0x1A4 scope:global align:4
+mCD_MVPL_chg = .text:0x00257638; // type:function size:0x19C scope:global align:4
+mCD_MVPL_day = .text:0x002577D4; // type:function size:0x33C scope:global align:4
+mCD_MVPL_escape = .text:0x00257B10; // type:function size:0xA4 scope:global align:4
+mCD_MVPL_entrance = .text:0x00257BB4; // type:function size:0x9C scope:global align:4
+mCD_move_Play = .text:0x00257C50; // type:function size:0x40 scope:global align:4
+mCD_move_Obey = .text:0x00257C90; // type:function size:0x50 scope:global align:4
+mCD_move_Wait = .text:0x00257CE0; // type:function size:0x38 scope:global align:4
+mCD_move_End = .text:0x00257D18; // type:function size:0x2C scope:global align:4
+mCD_calendar_ovl_move = .text:0x00257D44; // type:function size:0x70 scope:global align:4
+mCD_calendar_ovl_draw = .text:0x00257DB4; // type:function size:0x144 scope:global align:4
+mCD_calendar_ovl_set_proc = .text:0x00257EF8; // type:function size:0x20 scope:global align:4
+mCD_calendar_ovl_init = .text:0x00257F18; // type:function size:0xC8 scope:global align:4
+mCD_calendar_ovl_construct = .text:0x00257FE0; // type:function size:0x6C scope:global align:4
+mCD_calendar_ovl_destruct = .text:0x0025804C; // type:function size:0x48 scope:global align:4
+mCD_set_base_dl = .text:0x00258094; // type:function size:0xAF0 scope:global align:4
+mCD_set_hyoji_dl = .text:0x00258B84; // type:function size:0x25C scope:global align:4
+mCD_set_hyoji2_dl = .text:0x00258DE0; // type:function size:0x10C scope:global align:4
+mCD_disp_event_dl = .text:0x00258EEC; // type:function size:0xC0 scope:global align:4
+mCL_dma_furniture_program = .text:0x00258FAC; // type:function size:0x1C scope:global align:4
+mCL_dma_furniture_bank = .text:0x00258FC8; // type:function size:0x4C scope:global align:4
+mCL_furniture_init = .text:0x00259014; // type:function size:0x5F0 scope:global align:4
+mCL_paper_init = .text:0x00259604; // type:function size:0xF0 scope:global align:4
+mCL_wall_init = .text:0x002596F4; // type:function size:0xE8 scope:global align:4
+mCL_carpet_init = .text:0x002597DC; // type:function size:0xE8 scope:global align:4
+mCL_music_init = .text:0x002598C4; // type:function size:0x44 scope:global align:4
+mCL_item_data_set = .text:0x00259908; // type:function size:0x178 scope:global align:4
+mCL_item_move = .text:0x00259A80; // type:function size:0x190 scope:global align:4
+mCL_move_Move = .text:0x00259C10; // type:function size:0x2C scope:global align:4
+mCL_move_Play = .text:0x00259C3C; // type:function size:0x1F0 scope:global align:4
+mCL_move_End = .text:0x00259E2C; // type:function size:0x2C scope:global align:4
+mCL_catalog_ovl_move = .text:0x00259E58; // type:function size:0x130 scope:global align:4
+mCL_LoadTexturePal = .text:0x00259F88; // type:function size:0x3A0 scope:global align:4
+mCL_SetKankyoMapping = .text:0x0025A328; // type:function size:0xD0 scope:global align:4
+mCL_SetLoopTextureAnime = .text:0x0025A3F8; // type:function size:0x54 scope:global align:4
+mCL_DrawRegistModel = .text:0x0025A44C; // type:function size:0xA8 scope:global align:4
+mCL_DrawSkelShape = .text:0x0025A4F4; // type:function size:0x58 scope:global align:4
+mCL_DrawUniqueShape = .text:0x0025A54C; // type:function size:0xBC scope:global align:4
+mCL_furniture_draw = .text:0x0025A608; // type:function size:0x33C scope:global align:4
+mCL_paper_draw = .text:0x0025A944; // type:function size:0x74 scope:global align:4
+mCL_wall_draw = .text:0x0025A9B8; // type:function size:0x60 scope:global align:4
+mCL_carpet_draw = .text:0x0025AA18; // type:function size:0x98 scope:global align:4
+mCL_music_draw = .text:0x0025AAB0; // type:function size:0xA4 scope:global align:4
+mCL_item_draw = .text:0x0025AB54; // type:function size:0x228 scope:global align:4
+mCL_price_draw = .text:0x0025AD7C; // type:function size:0x1F4 scope:global align:4
+mCL_set_page_dl = .text:0x0025AF70; // type:function size:0x7FC scope:global align:4
+mCL_set_wchange_dl = .text:0x0025B76C; // type:function size:0x294 scope:global align:4
+mCL_set_dl = .text:0x0025BA00; // type:function size:0xE4 scope:global align:4
+mCL_catalog_ovl_draw = .text:0x0025BAE4; // type:function size:0x58 scope:global align:4
+mCL_catalog_ovl_set_proc = .text:0x0025BB3C; // type:function size:0x20 scope:global align:4
+mCL_check_item_collect_bit = .text:0x0025BB5C; // type:function size:0x28 scope:global align:4
+mCL_catalog_ovl_init = .text:0x0025BB84; // type:function size:0x2C4 scope:global align:4
+mCL_catalog_ovl_construct = .text:0x0025BE48; // type:function size:0xBC scope:global align:4
+mCL_catalog_ovl_destruct = .text:0x0025BF04; // type:function size:0x48 scope:global align:4
+mCE_move_Move = .text:0x0025BF4C; // type:function size:0x2C scope:global align:4
+mCE_move_Play = .text:0x0025BF78; // type:function size:0x4 scope:global align:4
+mCE_move_Wait = .text:0x0025BF7C; // type:function size:0x4 scope:global align:4
+mCE_move_Obey = .text:0x0025BF80; // type:function size:0x4 scope:global align:4
+mCE_move_End = .text:0x0025BF84; // type:function size:0x2C scope:global align:4
+mCE_cpedit_ovl_move = .text:0x0025BFB0; // type:function size:0x88 scope:global align:4
+mCE_cpedit_ovl_draw = .text:0x0025C038; // type:function size:0x2C scope:global align:4
+mCE_cpedit_ovl_set_proc = .text:0x0025C064; // type:function size:0x20 scope:global align:4
+mCE_cpedit_ovl_init = .text:0x0025C084; // type:function size:0x34 scope:global align:4
+mCE_cpedit_ovl_construct = .text:0x0025C0B8; // type:function size:0x78 scope:global align:4
+mCE_cpedit_ovl_destruct = .text:0x0025C130; // type:function size:0x10 scope:global align:4
+mCM_move_Move = .text:0x0025C140; // type:function size:0x2C scope:global align:4
+mCM_move_Play = .text:0x0025C16C; // type:function size:0x18C scope:global align:4
+mCM_move_Wait = .text:0x0025C2F8; // type:function size:0x11C scope:global align:4
+mCM_move_End = .text:0x0025C414; // type:function size:0x2C scope:global align:4
+mCM_cpmail_ovl_move = .text:0x0025C440; // type:function size:0x88 scope:global align:4
+mCM_set_mail = .text:0x0025C4C8; // type:function size:0x218 scope:global align:4
+mCM_get_page_posY = .text:0x0025C6E0; // type:function size:0x34 scope:global align:4
+mCM_set_page_dl = .text:0x0025C714; // type:function size:0x4B4 scope:global align:4
+mCM_set_dl = .text:0x0025CBC8; // type:function size:0xD0 scope:global align:4
+mCM_cpmail_ovl_draw = .text:0x0025CC98; // type:function size:0x64 scope:global align:4
+mCM_cpmail_draw_init = .text:0x0025CCFC; // type:function size:0x1C scope:global align:4
+mCM_cpmail_ovl_set_proc = .text:0x0025CD18; // type:function size:0x64 scope:global align:4
+mCM_cpmail_load_memory = .text:0x0025CD7C; // type:function size:0x38 scope:global align:4
+mCM_cpmail_ovl_init = .text:0x0025CDB4; // type:function size:0x120 scope:global align:4
+mCM_cpmail_ovl_construct = .text:0x0025CED4; // type:function size:0xAC scope:global align:4
+mCM_cpmail_ovl_destruct = .text:0x0025CF80; // type:function size:0xB0 scope:global align:4
+mCO_check_pat_idx = .text:0x0025D030; // type:function size:0x20 scope:global align:4
+mCO_get_change_flg = .text:0x0025D050; // type:function size:0x10 scope:global align:4
+mCO_pat_idx_to_folder = .text:0x0025D060; // type:function size:0x10 scope:global align:4
+mCO_pat_idx_to_idx = .text:0x0025D070; // type:function size:0x18 scope:global align:4
+mCO_top_folder = .text:0x0025D088; // type:function size:0x10 scope:global align:4
+mCO_check_mark_flg = .text:0x0025D098; // type:function size:0x3C scope:global align:4
+mCO_clear_mark_flg = .text:0x0025D0D4; // type:function size:0x14 scope:global align:4
+mCO_check_hide_flg = .text:0x0025D0E8; // type:function size:0x34 scope:global align:4
+mCO_on_hide_flg = .text:0x0025D11C; // type:function size:0x2C scope:global align:4
+mCO_clear_hide_flg = .text:0x0025D148; // type:function size:0x2C scope:global align:4
+mCO_change_up_folder = .text:0x0025D174; // type:function size:0x34 scope:global align:4
+mCO_get_texture = .text:0x0025D1A8; // type:function size:0x24 scope:global align:4
+mCO_get_texture_pat_idx = .text:0x0025D1CC; // type:function size:0x84 scope:global align:4
+mCO_get_pallet_no = .text:0x0025D250; // type:function size:0x24 scope:global align:4
+mCO_get_pallet_no_pat_idx = .text:0x0025D274; // type:function size:0x7C scope:global align:4
+mCO_draw_cporiginal = .text:0x0025D2F0; // type:function size:0x1AC scope:global align:4
+mCO_get_folder_name = .text:0x0025D49C; // type:function size:0x1C scope:global align:4
+mCO_get_image_name = .text:0x0025D4B8; // type:function size:0x24 scope:global align:4
+mCO_itemNo_to_data = .text:0x0025D4DC; // type:function size:0x6C scope:global align:4
+mCO_swap_image_2 = .text:0x0025D548; // type:function size:0x60 scope:global align:4
+mCO_swap_image = .text:0x0025D5A8; // type:function size:0x170 scope:global align:4
+mCO_move_Move = .text:0x0025D718; // type:function size:0x2C scope:global align:4
+mCO_move_Play = .text:0x0025D744; // type:function size:0x18C scope:global align:4
+mCO_move_Wait = .text:0x0025D8D0; // type:function size:0x16C scope:global align:4
+mCO_move_End = .text:0x0025DA3C; // type:function size:0x2C scope:global align:4
+mCO_cporiginal_ovl_move = .text:0x0025DA68; // type:function size:0x68 scope:global align:4
+mCO_set_frame_tagS_dl = .text:0x0025DAD0; // type:function size:0x18C scope:global align:4
+mCO_set_frame_tagT_dl = .text:0x0025DC5C; // type:function size:0x138 scope:global align:4
+mCO_set_frame_ueT_dl = .text:0x0025DD94; // type:function size:0x14C scope:global align:4
+mCO_set_frame_main_dl = .text:0x0025DEE0; // type:function size:0x2F0 scope:global align:4
+mCO_set_frame_string_dl = .text:0x0025E1D0; // type:function size:0x2C4 scope:global align:4
+mCO_set_frame_change_dl = .text:0x0025E494; // type:function size:0xBC scope:global align:4
+mCO_set_frame_dl = .text:0x0025E550; // type:function size:0x1A8 scope:global align:4
+mCO_cporiginal_ovl_draw = .text:0x0025E6F8; // type:function size:0x84 scope:global align:4
+mCO_cporiginal_ovl_set_proc = .text:0x0025E77C; // type:function size:0x64 scope:global align:4
+mCO_cporiginal_ovl_init = .text:0x0025E7E0; // type:function size:0xF8 scope:global align:4
+mCO_cporiginal_ovl_construct = .text:0x0025E8D8; // type:function size:0x90 scope:global align:4
+mCO_cporiginal_ovl_destruct = .text:0x0025E968; // type:function size:0x58 scope:global align:4
+mCW_move_Move = .text:0x0025E9C0; // type:function size:0xA0 scope:global align:4
+mCW_move_Play = .text:0x0025EA60; // type:function size:0x188 scope:global align:4
+mCW_move_End = .text:0x0025EBE8; // type:function size:0x2C scope:global align:4
+mCW_cpwarning_ovl_move = .text:0x0025EC14; // type:function size:0x68 scope:global align:4
+mCW_set_frame_dl = .text:0x0025EC7C; // type:function size:0x154 scope:global align:4
+mCW_set_character_dl = .text:0x0025EDD0; // type:function size:0x254 scope:global align:4
+mCW_cpwarning_ovl_draw = .text:0x0025F024; // type:function size:0x68 scope:global align:4
+mCW_cpwarning_ovl_set_proc = .text:0x0025F08C; // type:function size:0x20 scope:global align:4
+mCW_cpwarning_ovl_init = .text:0x0025F0AC; // type:function size:0x7C scope:global align:4
+mCW_cpwarning_ovl_construct = .text:0x0025F128; // type:function size:0x78 scope:global align:4
+mCW_cpwarning_ovl_destruct = .text:0x0025F1A0; // type:function size:0x10 scope:global align:4
+mDI_get_col_line_width = .text:0x0025F1B0; // type:function size:0x134 scope:global align:4
+mDI_move_cursol_upper = .text:0x0025F2E4; // type:function size:0x20 scope:global align:4
+mDI_move_cursol_lower = .text:0x0025F304; // type:function size:0x64 scope:global align:4
+mDI_move_cursol_upper10 = .text:0x0025F368; // type:function size:0x34 scope:global align:4
+mDI_move_cursol_lower10 = .text:0x0025F39C; // type:function size:0x74 scope:global align:4
+mDI_make_trigger_data = .text:0x0025F410; // type:function size:0xB4 scope:global align:4
+mDI_Set_command_read = .text:0x0025F4C4; // type:function size:0x1DC scope:global align:4
+mDI_control_diary_read = .text:0x0025F6A0; // type:function size:0xE0 scope:global align:4
+mDI_roll_control_read = .text:0x0025F780; // type:function size:0x218 scope:global align:4
+mDI_roll_control_read_to_write = .text:0x0025F998; // type:function size:0x140 scope:global align:4
+mDI_roll_control = .text:0x0025FAD8; // type:function size:0x208 scope:global align:4
+mDI_move_Move = .text:0x0025FCE0; // type:function size:0x2C scope:global align:4
+mDI_Play_editor_in = .text:0x0025FD0C; // type:function size:0x20 scope:global align:4
+mDI_Play_read = .text:0x0025FD2C; // type:function size:0xC0 scope:global align:4
+mDI_Play_read_to_write_scroll = .text:0x0025FDEC; // type:function size:0x150 scope:global align:4
+mDI_Play_write = .text:0x0025FF3C; // type:function size:0xAC scope:global align:4
+mDI_roll_control_write_to_endchk = .text:0x0025FFE8; // type:function size:0x154 scope:global align:4
+mDI_Play_write_to_endchk_scroll = .text:0x0026013C; // type:function size:0x9C scope:global align:4
+mDI_Play_endchk_in = .text:0x002601D8; // type:function size:0x4 scope:global align:4
+mDI_end_diary = .text:0x002601DC; // type:function size:0x34 scope:global align:4
+mDI_move_Play = .text:0x00260210; // type:function size:0x40 scope:global align:4
+mDI_move_Obey = .text:0x00260250; // type:function size:0xD8 scope:global align:4
+mDI_move_Wait = .text:0x00260328; // type:function size:0x64 scope:global align:4
+mDI_move_End = .text:0x0026038C; // type:function size:0x2C scope:global align:4
+mDI_diary_ovl_move = .text:0x002603B8; // type:function size:0x68 scope:global align:4
+mDI_set_button_dl = .text:0x00260420; // type:function size:0x110 scope:global align:4
+mDI_set_frame_dl = .text:0x00260530; // type:function size:0x250 scope:global align:4
+mDI_strLineCheck = .text:0x00260780; // type:function size:0xBC scope:global align:4
+mDI_set_writing_body = .text:0x0026083C; // type:function size:0x2E8 scope:global align:4
+mDI_set_character = .text:0x00260B24; // type:function size:0x19C scope:global align:4
+mDI_set_dl = .text:0x00260CC0; // type:function size:0x120 scope:global align:4
+mDI_diary_ovl_draw = .text:0x00260DE0; // type:function size:0x58 scope:global align:4
+mDI_diary_ovl_set_proc = .text:0x00260E38; // type:function size:0x20 scope:global align:4
+mDI_diary_ovl_init = .text:0x00260E58; // type:function size:0x100 scope:global align:4
+mDI_diary_ovl_construct = .text:0x00260F58; // type:function size:0xC4 scope:global align:4
+mDI_diary_ovl_destruct = .text:0x0026101C; // type:function size:0x58 scope:global align:4
+mDE_pallet_RGB5A3_to_RGB24 = .text:0x00261074; // type:function size:0x94 scope:global align:4
+mDE_judge_stick = .text:0x00261108; // type:function size:0xB4 scope:global align:4
+mDE_judge_stick_full = .text:0x002611BC; // type:function size:0x48 scope:global align:4
+mDE_judge_stick_nuetral = .text:0x00261204; // type:function size:0x3C scope:global align:4
+mDE_cursor_move_check = .text:0x00261240; // type:function size:0x11C scope:global align:4
+mDE_cursor_move = .text:0x0026135C; // type:function size:0x98 scope:global align:4
+mDE_cursor_analog_move_hosei = .text:0x002613F4; // type:function size:0x78 scope:global align:4
+mDE_cursor_analog_move = .text:0x0026146C; // type:function size:0x5FC scope:global align:4
+mDE_cursor_waku_genten_rotate = .text:0x00261A68; // type:function size:0xC0 scope:global align:4
+mDE_cursor_waku_rotate = .text:0x00261B28; // type:function size:0x1B8 scope:global align:4
+mDE_get_pal_on_cursor = .text:0x00261CE0; // type:function size:0x80 scope:global align:4
+mDE_set_pal_on_cursor = .text:0x00261D60; // type:function size:0xA0 scope:global align:4
+mDE_farbado = .text:0x00261E00; // type:function size:0x568 scope:global align:4
+mDE_set_texture_template = .text:0x00262368; // type:function size:0xA0 scope:global align:4
+mDE_mask_cat_mask = .text:0x00262408; // type:function size:0x80 scope:global align:4
+mDE_paint = .text:0x00262488; // type:function size:0x26C scope:global align:4
+mDE_print_texture = .text:0x002626F4; // type:function size:0x4 scope:global align:4
+mDE_save_maskcat_texture = .text:0x002626F8; // type:function size:0x7C scope:global align:4
+mDE_set_undo_texture = .text:0x00262774; // type:function size:0x30 scope:global align:4
+mDE_undo = .text:0x002627A4; // type:function size:0x88 scope:global align:4
+mDE_main_pen_move = .text:0x0026282C; // type:function size:0x340 scope:global align:4
+mDE_main_nuri_move = .text:0x00262B6C; // type:function size:0x60 scope:global align:4
+mDE_waku_set_start = .text:0x00262BCC; // type:function size:0x4C scope:global align:4
+mDE_waku_set_main_start_end = .text:0x00262C18; // type:function size:0x5C scope:global align:4
+mDE_waku_line = .text:0x00262C74; // type:function size:0x10C scope:global align:4
+mDE_waku_circle_write = .text:0x00262D80; // type:function size:0x230 scope:global align:4
+mDE_waku_square_write = .text:0x00262FB0; // type:function size:0x138 scope:global align:4
+mDE_main_waku_move = .text:0x002630E8; // type:function size:0x230 scope:global align:4
+mDE_main_mark_move = .text:0x00263318; // type:function size:0x330 scope:global align:4
+mDE_main_undo_move = .text:0x00263648; // type:function size:0x4C scope:global align:4
+mDE_mode_tool_check = .text:0x00263694; // type:function size:0x310 scope:global align:4
+mDE_main_mode_setup_action = .text:0x002639A4; // type:function size:0x48 scope:global align:4
+mde_main_move_sound = .text:0x002639EC; // type:function size:0x90 scope:global align:4
+mDE_mode_main_shortcut_tool = .text:0x00263A7C; // type:function size:0xCC scope:global align:4
+mDE_cursor_waku = .text:0x00263B48; // type:function size:0x54 scope:global align:4
+mDE_cursor_waku_naname = .text:0x00263B9C; // type:function size:0xA8 scope:global align:4
+mDE_mode_stick_control_waku = .text:0x00263C44; // type:function size:0x1B0 scope:global align:4
+mDE_mode_stick_control = .text:0x00263DF4; // type:function size:0x200 scope:global align:4
+mDE_mode_stick_control_analog = .text:0x00263FF4; // type:function size:0x12C scope:global align:4
+mDE_mode_main_move = .text:0x00264120; // type:function size:0x8B0 scope:global align:4
+mDE_mode_pallet_move = .text:0x002649D0; // type:function size:0x214 scope:global align:4
+mDE_mode_grid_move = .text:0x00264BE4; // type:function size:0x6C scope:global align:4
+mDE_mode_tool_move = .text:0x00264C50; // type:function size:0x354 scope:global align:4
+mDE_setup_action = .text:0x00264FA4; // type:function size:0x54 scope:global align:4
+mDE_move_Move = .text:0x00264FF8; // type:function size:0x2C scope:global align:4
+mDE_move_tool_decide = .text:0x00265024; // type:function size:0xA4 scope:global align:4
+mDE_move_Play = .text:0x002650C8; // type:function size:0x17C scope:global align:4
+mDE_move_Wait = .text:0x00265244; // type:function size:0x168 scope:global align:4
+mDE_move_End = .text:0x002653AC; // type:function size:0x2C scope:global align:4
+mDE_design_ovl_move = .text:0x002653D8; // type:function size:0x68 scope:global align:4
+mDE_set_frame_tool_dl = .text:0x00265440; // type:function size:0x304 scope:global align:4
+mDE_set_frame_suuji_dl = .text:0x00265744; // type:function size:0x218 scope:global align:4
+mDE_set_frame_mark_dl = .text:0x0026595C; // type:function size:0x3F4 scope:global align:4
+mDE_waku_right_top = .text:0x00265D50; // type:function size:0x10 scope:global align:4
+mDE_waku_right_bottom = .text:0x00265D60; // type:function size:0x4 scope:global align:4
+mDE_waku_left_top = .text:0x00265D64; // type:function size:0x20 scope:global align:4
+mDE_waku_left_bottom = .text:0x00265D84; // type:function size:0x1C scope:global align:4
+mDE_set_cursor_waku_rotate = .text:0x00265DA0; // type:function size:0xAC scope:global align:4
+mDE_set_frame_cursor_dl = .text:0x00265E4C; // type:function size:0x12D8 scope:global align:4
+mDE_set_frame_main_dl = .text:0x00267124; // type:function size:0x2D4 scope:global align:4
+mDE_set_frame_dl = .text:0x002673F8; // type:function size:0x7C scope:global align:4
+mDE_design_ovl_draw = .text:0x00267474; // type:function size:0x58 scope:global align:4
+mDE_design_ovl_set_proc = .text:0x002674CC; // type:function size:0x20 scope:global align:4
+mDE_design_ovl_init = .text:0x002674EC; // type:function size:0x224 scope:global align:4
+mDE_maskcat_init = .text:0x00267710; // type:function size:0x2C scope:global align:4
+mDE_design_ovl_construct = .text:0x0026773C; // type:function size:0x70 scope:global align:4
+mDE_design_ovl_destruct = .text:0x002677AC; // type:function size:0x10 scope:global align:4
+mEE_move_Move = .text:0x002677BC; // type:function size:0x2C scope:global align:4
+mEE_move_Play = .text:0x002677E8; // type:function size:0x24C scope:global align:4
+mEE_move_End = .text:0x00267A34; // type:function size:0x2C scope:global align:4
+mEE_editEndChk_ovl_move = .text:0x00267A60; // type:function size:0x68 scope:global align:4
+mEE_set_question_field = .text:0x00267AC8; // type:function size:0x120 scope:global align:4
+mEE_set_answer_field = .text:0x00267BE8; // type:function size:0x1B8 scope:global align:4
+mEE_set_question_character = .text:0x00267DA0; // type:function size:0xC0 scope:global align:4
+mEE_set_answer_character = .text:0x00267E60; // type:function size:0x164 scope:global align:4
+mEE_set_dl = .text:0x00267FC4; // type:function size:0x110 scope:global align:4
+mEE_editEndChk_ovl_draw = .text:0x002680D4; // type:function size:0x58 scope:global align:4
+mEE_editEndChk_ovl_set_proc = .text:0x0026812C; // type:function size:0x20 scope:global align:4
+mEE_editEndChk_ovl_init = .text:0x0026814C; // type:function size:0x24 scope:global align:4
+mEE_editEndChk_ovl_construct = .text:0x00268170; // type:function size:0x70 scope:global align:4
+mEE_editEndChk_ovl_destruct = .text:0x002681E0; // type:function size:0x10 scope:global align:4
+mED_open_warning_window = .text:0x002681F0; // type:function size:0x48 scope:global align:4
+mED_get_code = .text:0x00268238; // type:function size:0x3C scope:global align:4
+mED_set_stick_area = .text:0x00268274; // type:function size:0xF4 scope:global align:4
+mED_check_pw_usable_letter_sub = .text:0x00268368; // type:function size:0x64 scope:global align:4
+mED_check_pw_usable_letter = .text:0x002683CC; // type:function size:0x98 scope:global align:4
+mED_move_keyboard_cursor = .text:0x00268464; // type:function size:0x100 scope:global align:4
+mED_check_move_cursol = .text:0x00268564; // type:function size:0x15C scope:global align:4
+mED_check_shift = .text:0x002686C0; // type:function size:0x6C scope:global align:4
+mED_check_arrange = .text:0x0026872C; // type:function size:0x6C scope:global align:4
+mED_check_input_mode = .text:0x00268798; // type:function size:0x70 scope:global align:4
+mED_check_now_code = .text:0x00268808; // type:function size:0x8C scope:global align:4
+mED_check_output_code = .text:0x00268894; // type:function size:0xA8 scope:global align:4
+mED_set_command = .text:0x0026893C; // type:function size:0x84 scope:global align:4
+mED_get_col_line_width = .text:0x002689C0; // type:function size:0x168 scope:global align:4
+mED_check_line_over = .text:0x00268B28; // type:function size:0x90 scope:global align:4
+mED_set_idxcol_inLineWidth = .text:0x00268BB8; // type:function size:0x138 scope:global align:4
+mED_init = .text:0x00268CF0; // type:function size:0x1D4 scope:global align:4
+mED_set_se = .text:0x00268EC4; // type:function size:0xE4 scope:global align:4
+mED_output_code = .text:0x00268FA8; // type:function size:0x58 scope:global align:4
+mED_get_single_line_width = .text:0x00269000; // type:function size:0x6C scope:global align:4
+mED_input_single_line = .text:0x0026906C; // type:function size:0x98 scope:global align:4
+mED_input_multi_line_R = .text:0x00269104; // type:function size:0x15C scope:global align:4
+mED_input_multi_line = .text:0x00269260; // type:function size:0x24 scope:global align:4
+mED_input_pw_make_line = .text:0x00269284; // type:function size:0x98 scope:global align:4
+mED_input_pw_chk_line = .text:0x0026931C; // type:function size:0xF8 scope:global align:4
+mED_move_cursol_right = .text:0x00269414; // type:function size:0xBC scope:global align:4
+mED_move_cursol_left = .text:0x002694D0; // type:function size:0x20 scope:global align:4
+mED_move_cursol_upper = .text:0x002694F0; // type:function size:0x48 scope:global align:4
+mED_move_cursol_lower = .text:0x00269538; // type:function size:0xB4 scope:global align:4
+mED_end_edit_func = .text:0x002695EC; // type:function size:0x50 scope:global align:4
+mED_backspace_func = .text:0x0026963C; // type:function size:0x60 scope:global align:4
+mED_backspace_func_pw_chk = .text:0x0026969C; // type:function size:0xBC scope:global align:4
+mED_get_exchange_code = .text:0x00269758; // type:function size:0x3C scope:global align:4
+mED_exchange_code_func = .text:0x00269794; // type:function size:0x30 scope:global align:4
+mED_clear_input_data = .text:0x002697C4; // type:function size:0x40 scope:global align:4
+mED_all_space_check = .text:0x00269804; // type:function size:0xC8 scope:global align:4
+mED_ng_word_check = .text:0x002698CC; // type:function size:0xC8 scope:global align:4
+mED_edit_func_multi_line = .text:0x00269994; // type:function size:0xA4 scope:global align:4
+mED_edit_func_single_line = .text:0x00269A38; // type:function size:0xEC scope:global align:4
+mED_edit_func_letter_header_kill_space = .text:0x00269B24; // type:function size:0xC0 scope:global align:4
+mED_edit_func_letter_header = .text:0x00269BE4; // type:function size:0xF8 scope:global align:4
+mED_break_space_code = .text:0x00269CDC; // type:function size:0x50 scope:global align:4
+mED_input_footer_line_sub = .text:0x00269D2C; // type:function size:0x144 scope:global align:4
+mED_input_footer_line = .text:0x00269E70; // type:function size:0x50 scope:global align:4
+mED_move_footer_cursol_right = .text:0x00269EC0; // type:function size:0xE0 scope:global align:4
+mED_move_footer_cursol_left = .text:0x00269FA0; // type:function size:0x80 scope:global align:4
+mED_edit_func_letter_footer = .text:0x0026A020; // type:function size:0xE8 scope:global align:4
+mED_move_letter_table = .text:0x0026A108; // type:function size:0x11C scope:global align:4
+mED_edit_func_letter = .text:0x0026A224; // type:function size:0x80 scope:global align:4
+mED_edit_func_diary = .text:0x0026A2A4; // type:function size:0xCC scope:global align:4
+mED_move_pw_make_table = .text:0x0026A370; // type:function size:0x18C scope:global align:4
+mED_edit_func_pw_make = .text:0x0026A4FC; // type:function size:0x11C scope:global align:4
+mED_move_pw_chk_table = .text:0x0026A618; // type:function size:0x88 scope:global align:4
+mED_edit_func_pw_chk = .text:0x0026A6A0; // type:function size:0x13C scope:global align:4
+mED_move_Move = .text:0x0026A7DC; // type:function size:0x2C scope:global align:4
+mED_move_Play = .text:0x0026A808; // type:function size:0x1BC scope:global align:4
+mED_move_Wait = .text:0x0026A9C4; // type:function size:0x1C scope:global align:4
+mED_move_End = .text:0x0026A9E0; // type:function size:0x3C scope:global align:4
+mED_editor_ovl_move = .text:0x0026AA1C; // type:function size:0x68 scope:global align:4
+mED_KeyDraw_A_button = .text:0x0026AA84; // type:function size:0x94 scope:global align:4
+mED_KeyDraw_B_button = .text:0x0026AB18; // type:function size:0xA0 scope:global align:4
+mED_KeyDraw_X_button = .text:0x0026ABB8; // type:function size:0xC8 scope:global align:4
+mED_KeyDraw_Y_button = .text:0x0026AC80; // type:function size:0x128 scope:global align:4
+mED_KeyDraw_START_button = .text:0x0026ADA8; // type:function size:0x3C scope:global align:4
+mED_KeyDraw_L_button = .text:0x0026ADE4; // type:function size:0x150 scope:global align:4
+mED_KeyDraw_R_button = .text:0x0026AF34; // type:function size:0xA0 scope:global align:4
+mED_KeyDraw_keyboard = .text:0x0026AFD4; // type:function size:0x1E0 scope:global align:4
+mED_KeyDraw_J_key = .text:0x0026B1B4; // type:function size:0xE8 scope:global align:4
+mED_KeyDraw_3D_stick = .text:0x0026B29C; // type:function size:0x110 scope:global align:4
+mED_KeyDraw = .text:0x0026B3AC; // type:function size:0x194 scope:global align:4
+mED_InkPotDraw = .text:0x0026B540; // type:function size:0x270 scope:global align:4
+mED_StringsDraw_spaceCode = .text:0x0026B7B0; // type:function size:0x170 scope:global align:4
+mED_StringsDraw_keyboard = .text:0x0026B920; // type:function size:0x168 scope:global align:4
+mED_StringsDraw_select = .text:0x0026BA88; // type:function size:0x12C scope:global align:4
+mED_StringsDraw_ornament = .text:0x0026BBB4; // type:function size:0x130 scope:global align:4
+mED_StringsDraw = .text:0x0026BCE4; // type:function size:0x9C scope:global align:4
+mED_set_dl = .text:0x0026BD80; // type:function size:0x88 scope:global align:4
+mED_endCode_draw = .text:0x0026BE08; // type:function size:0xD0 scope:global align:4
+mED_cursol_draw = .text:0x0026BED8; // type:function size:0x70 scope:global align:4
+mED_editor_ovl_draw = .text:0x0026BF48; // type:function size:0xA0 scope:global align:4
+mED_editor_ovl_set_proc = .text:0x0026BFE8; // type:function size:0x20 scope:global align:4
+mED_editor_ovl_init = .text:0x0026C008; // type:function size:0x64 scope:global align:4
+mED_editor_ovl_construct = .text:0x0026C06C; // type:function size:0xA8 scope:global align:4
+mED_editor_ovl_destruct = .text:0x0026C114; // type:function size:0x10 scope:global align:4
+mGB_get_change_flg = .text:0x0026C124; // type:function size:0x10 scope:global align:4
+mGB_check_hide_flg = .text:0x0026C134; // type:function size:0x40 scope:global align:4
+mGB_check_mark_flg = .text:0x0026C174; // type:function size:0x40 scope:global align:4
+mGB_copy_image = .text:0x0026C1B4; // type:function size:0xCC scope:global align:4
+mGB_get_image_name = .text:0x0026C280; // type:function size:0x18 scope:global align:4
+mGB_get_image_pal = .text:0x0026C298; // type:function size:0x50 scope:global align:4
+mGB_get_image_texture = .text:0x0026C2E8; // type:function size:0x4C scope:global align:4
+mGB_draw_gba = .text:0x0026C334; // type:function size:0x1A8 scope:global align:4
+mGB_move_Move = .text:0x0026C4DC; // type:function size:0x2C scope:global align:4
+mGB_move_Play = .text:0x0026C508; // type:function size:0xC4 scope:global align:4
+mGB_move_Wait = .text:0x0026C5CC; // type:function size:0xCC scope:global align:4
+mGB_move_End = .text:0x0026C698; // type:function size:0x2C scope:global align:4
+mGB_gba_ovl_move = .text:0x0026C6C4; // type:function size:0x68 scope:global align:4
+mGB_set_frame_dl = .text:0x0026C72C; // type:function size:0x358 scope:global align:4
+mGB_set_card_frame_dl = .text:0x0026CA84; // type:function size:0x188 scope:global align:4
+mGB_gba_ovl_draw = .text:0x0026CC0C; // type:function size:0xA4 scope:global align:4
+mGB_gba_ovl_set_proc = .text:0x0026CCB0; // type:function size:0x64 scope:global align:4
+mGB_gba_ovl_init = .text:0x0026CD14; // type:function size:0x84 scope:global align:4
+mGB_gba_ovl_construct = .text:0x0026CD98; // type:function size:0x7C scope:global align:4
+mGB_gba_ovl_destruct = .text:0x0026CE14; // type:function size:0x48 scope:global align:4
+mHD_set_anime = .text:0x0026CE5C; // type:function size:0x78 scope:global align:4
+mHD_hand_shape_init = .text:0x0026CED4; // type:function size:0x70 scope:global align:4
+mHD_hand_shape_move = .text:0x0026CF44; // type:function size:0x38 scope:global align:4
+mHD_calc_hand_offset = .text:0x0026CF7C; // type:function size:0x74 scope:global align:4
+mHD_hand_pos_get = .text:0x0026CFF0; // type:function size:0x1C8 scope:global align:4
+mHD_hand_position_move = .text:0x0026D1B8; // type:function size:0x3F0 scope:global align:4
+mHD_drop_item = .text:0x0026D5A8; // type:function size:0x4C8 scope:global align:4
+mHD_prepare_drop_ticket = .text:0x0026DA70; // type:function size:0x104 scope:global align:4
+mHD_prepare_drop_wisp = .text:0x0026DB74; // type:function size:0xFC scope:global align:4
+mHD_prepare_drop_paper = .text:0x0026DC70; // type:function size:0x114 scope:global align:4
+mHD_drop_item2 = .text:0x0026DD84; // type:function size:0xF8 scope:global align:4
+mHD_open_sack = .text:0x0026DE7C; // type:function size:0xA8 scope:global align:4
+mHD_drop_mail = .text:0x0026DF24; // type:function size:0xEC scope:global align:4
+mHD_change_iv_back_segment = .text:0x0026E010; // type:function size:0x88 scope:global align:4
+mHD_open_end_proc_item_type0 = .text:0x0026E098; // type:function size:0x78 scope:global align:4
+mHD_open_end_proc_item_type1 = .text:0x0026E110; // type:function size:0x4C scope:global align:4
+mHD_open_end_proc_item_type2 = .text:0x0026E15C; // type:function size:0x20 scope:global align:4
+mHD_open_end_proc_item_type3 = .text:0x0026E17C; // type:function size:0x1A4 scope:global align:4
+mHD_open_end_proc_item_type4 = .text:0x0026E320; // type:function size:0x70 scope:global align:4
+mHD_open_end_proc_item_type6 = .text:0x0026E390; // type:function size:0xD0 scope:global align:4
+mHD_open_end_proc_item_type17 = .text:0x0026E460; // type:function size:0x1D8 scope:global align:4
+mHD_open_end_proc_item = .text:0x0026E638; // type:function size:0x140 scope:global align:4
+mHD_open_end_proc_mail = .text:0x0026E778; // type:function size:0x74 scope:global align:4
+mHD_open_end_proc = .text:0x0026E7EC; // type:function size:0x6C scope:global align:4
+mHD_close_move = .text:0x0026E858; // type:function size:0x28 scope:global align:4
+mHD_open_move = .text:0x0026E880; // type:function size:0x98 scope:global align:4
+mHD_sasu2_move = .text:0x0026E918; // type:function size:0x188 scope:global align:4
+mHD_hand_ovl_move = .text:0x0026EAA0; // type:function size:0x98 scope:global align:4
+mHD_draw_item = .text:0x0026EB38; // type:function size:0x17C scope:global align:4
+mHD_draw_mail = .text:0x0026ECB4; // type:function size:0x118 scope:global align:4
+mHD_draw_original = .text:0x0026EDCC; // type:function size:0x114 scope:global align:4
+mHD_hand_shape_draw = .text:0x0026EEE0; // type:function size:0x244 scope:global align:4
+mHD_hand_ovl_draw = .text:0x0026F124; // type:function size:0x3D8 scope:global align:4
+mHD_nop_hand_func = .text:0x0026F4FC; // type:function size:0x1C scope:global align:4
+mHD_set_hand_func = .text:0x0026F518; // type:function size:0x24 scope:global align:4
+mHD_hand_ovl_construct = .text:0x0026F53C; // type:function size:0x1D0 scope:global align:4
+mHD_hand_ovl_destruct = .text:0x0026F70C; // type:function size:0x4C scope:global align:4
+mHP_haniwaPortrait_shape_init = .text:0x0026F758; // type:function size:0x94 scope:global align:4
+mHP_haniwaPortrait_shape_move = .text:0x0026F7EC; // type:function size:0x28 scope:global align:4
+mHP_haniwaPortrait_shape_draw = .text:0x0026F814; // type:function size:0x17C scope:global align:4
+mHP_set_haniwaPortrait = .text:0x0026F990; // type:function size:0x138 scope:global align:4
+mHP_haniwaPortrait_ovl_construct = .text:0x0026FAC8; // type:function size:0x98 scope:global align:4
+mHP_haniwaPortrait_ovl_destruct = .text:0x0026FB60; // type:function size:0x40 scope:global align:4
+mHW_set_interrupt_message = .text:0x0026FBA0; // type:function size:0x28 scope:global align:4
+mHW_set_price = .text:0x0026FBC8; // type:function size:0xD8 scope:global align:4
+mHW_make_cond_message = .text:0x0026FCA0; // type:function size:0xAC scope:global align:4
+mHW_make_message_interrupt = .text:0x0026FD4C; // type:function size:0xCC scope:global align:4
+mHW_make_message_normal = .text:0x0026FE18; // type:function size:0x120 scope:global align:4
+mHW_make_message = .text:0x0026FF38; // type:function size:0xE0 scope:global align:4
+mHW_move_Move = .text:0x00270018; // type:function size:0x2C scope:global align:4
+mHW_move_Play = .text:0x00270044; // type:function size:0x90 scope:global align:4
+mHW_move_End = .text:0x002700D4; // type:function size:0x2C scope:global align:4
+mHW_haniwa_ovl_move = .text:0x00270100; // type:function size:0xC4 scope:global align:4
+mHW_set_frame_dl = .text:0x002701C4; // type:function size:0x154 scope:global align:4
+mHW_set_item = .text:0x00270318; // type:function size:0x124 scope:global align:4
+mHW_set_message = .text:0x0027043C; // type:function size:0xF0 scope:global align:4
+mHW_set_dl = .text:0x0027052C; // type:function size:0xFC scope:global align:4
+mHW_haniwa_ovl_draw = .text:0x00270628; // type:function size:0x58 scope:global align:4
+mHW_haniwa_ovl_set_proc = .text:0x00270680; // type:function size:0x54 scope:global align:4
+mHW_haniwa_ovl_init = .text:0x002706D4; // type:function size:0xA4 scope:global align:4
+mHW_haniwa_ovl_construct = .text:0x00270778; // type:function size:0x98 scope:global align:4
+mHW_haniwa_ovl_destruct = .text:0x00270810; // type:function size:0x10 scope:global align:4
+mHB_strLineCheck = .text:0x00270820; // type:function size:0xBC scope:global align:4
+mHB_move_Move = .text:0x002708DC; // type:function size:0x2C scope:global align:4
+mHB_move_Wait = .text:0x00270908; // type:function size:0x40 scope:global align:4
+mHB_move_End = .text:0x00270948; // type:function size:0x2C scope:global align:4
+mHB_hboard_ovl_move = .text:0x00270974; // type:function size:0xB8 scope:global align:4
+mHB_set_frame_dl = .text:0x00270A2C; // type:function size:0xD0 scope:global align:4
+mHB_set_character = .text:0x00270AFC; // type:function size:0x248 scope:global align:4
+mHB_set_dl_sub = .text:0x00270D44; // type:function size:0x180 scope:global align:4
+mHB_set_dl = .text:0x00270EC4; // type:function size:0xE0 scope:global align:4
+mHB_hboard_ovl_draw = .text:0x00270FA4; // type:function size:0x60 scope:global align:4
+mHB_hboard_ovl_set_proc = .text:0x00271004; // type:function size:0x20 scope:global align:4
+mHB_hboard_ovl_init = .text:0x00271024; // type:function size:0x6C scope:global align:4
+mHB_hboard_ovl_construct = .text:0x00271090; // type:function size:0x50 scope:global align:4
+mHB_hboard_ovl_destruct = .text:0x002710E0; // type:function size:0x10 scope:global align:4
+mIV_Get_pl_main_anime_index = .text:0x002710F0; // type:function size:0x2C scope:global align:4
+mIV_set_collect_itemNo = .text:0x0027111C; // type:function size:0xE8 scope:global align:4
+mIV_get_player_item_anime_id = .text:0x00271204; // type:function size:0x2D0 scope:global align:4
+mIV_ChangeIndex_mIV_to_mPlib = .text:0x002714D4; // type:function size:0x30 scope:global align:4
+mIV_Get_player_item_shape_index = .text:0x00271504; // type:function size:0x58 scope:global align:4
+mIV_Get_pl_item_skeleton = .text:0x0027155C; // type:function size:0x68 scope:global align:4
+mIV_Get_player_com_animation_index = .text:0x002715C4; // type:function size:0x24 scope:global align:4
+mIV_Get_pl_com_anime = .text:0x002715E8; // type:function size:0x24 scope:global align:4
+mIV_Get_player_com_part_table_index = .text:0x0027160C; // type:function size:0x28 scope:global align:4
+mIV_Get_player_item_anime_index = .text:0x00271634; // type:function size:0x50 scope:global align:4
+mIV_Get_pl_item_anime = .text:0x00271684; // type:function size:0x3C scope:global align:4
+mIV_Get_pl_main_anime = .text:0x002716C0; // type:function size:0x3C scope:global align:4
+mIV_pl_load_player_anime = .text:0x002716FC; // type:function size:0x328 scope:global align:4
+mIV_pl_shape_init = .text:0x00271A24; // type:function size:0xA0 scope:global align:4
+mIV_pl_eff_move = .text:0x00271AC4; // type:function size:0x1D0 scope:global align:4
+mIV_pl_check_anm_change = .text:0x00271C94; // type:function size:0xC8 scope:global align:4
+mIV_pl_shape_move = .text:0x00271D5C; // type:function size:0x114 scope:global align:4
+mIV_pl_shape_item_draw_net = .text:0x00271E70; // type:function size:0x60 scope:global align:4
+mIV_pl_shape_item_draw_axe = .text:0x00271ED0; // type:function size:0x5C scope:global align:4
+mIV_pl_shape_item_draw_umbrella = .text:0x00271F2C; // type:function size:0x18C scope:global align:4
+mIV_pl_shape_item_draw_rod = .text:0x002720B8; // type:function size:0x17C scope:global align:4
+mIV_pl_shape_item_draw_scoop = .text:0x00272234; // type:function size:0x5C scope:global align:4
+mIV_pl_shape_item_draw_balloon_Before = .text:0x00272290; // type:function size:0x58 scope:global align:4
+mIV_pl_shape_item_draw_balloon_After = .text:0x002722E8; // type:function size:0x58 scope:global align:4
+mIV_pl_shape_item_draw_balloon = .text:0x00272340; // type:function size:0xB4 scope:global align:4
+mIV_pl_shape_item_draw_windmill = .text:0x002723F4; // type:function size:0x60 scope:global align:4
+mIV_pl_shape_item_draw_fan = .text:0x00272454; // type:function size:0x5C scope:global align:4
+mIV_pl_shape_after_draw = .text:0x002724B0; // type:function size:0x74 scope:global align:4
+mIV_pl_equip_item_draw = .text:0x00272524; // type:function size:0x9C scope:global align:4
+mIV_pl_food_item_draw = .text:0x002725C0; // type:function size:0x2B8 scope:global align:4
+mIV_pl_shape_draw = .text:0x00272878; // type:function size:0x258 scope:global align:4
+mIV_pl_eff_draw = .text:0x00272AD0; // type:function size:0xF4 scope:global align:4
+mIV_pl_shadow_draw = .text:0x00272BC4; // type:function size:0xD0 scope:global align:4
+mIV_set_player = .text:0x00272C94; // type:function size:0x1D4 scope:global align:4
+mIV_move_Move = .text:0x00272E68; // type:function size:0x2C scope:global align:4
+mIV_move_Play = .text:0x00272E94; // type:function size:0x308 scope:global align:4
+mIV_move_Wait = .text:0x0027319C; // type:function size:0x17C scope:global align:4
+mIV_move_Obey = .text:0x00273318; // type:function size:0xAC scope:global align:4
+mIV_move_End = .text:0x002733C4; // type:function size:0x54 scope:global align:4
+mIV_inventory_ovl_move = .text:0x00273418; // type:function size:0x1E8 scope:global align:4
+mIV_set_base_frame_dl = .text:0x00273600; // type:function size:0x200 scope:global align:4
+mIV_set_normal_frame_dl = .text:0x00273800; // type:function size:0x1AC scope:global align:4
+mIV_is_mark_check = .text:0x002739AC; // type:function size:0x1C scope:global align:4
+mIV_set_item = .text:0x002739C8; // type:function size:0x34C scope:global align:4
+mIV_set_mail = .text:0x00273D14; // type:function size:0x258 scope:global align:4
+mIV_set_money = .text:0x00273F6C; // type:function size:0x13C scope:global align:4
+mIV_SetLineStrings_centering = .text:0x002740A8; // type:function size:0x13C scope:global align:4
+mIV_get_win_posY = .text:0x002741E4; // type:function size:0x28 scope:local align:4
+mIV_up_page_draw_check = .text:0x0027420C; // type:function size:0x6C scope:global align:4
+mIV_set_collect_dl = .text:0x00274278; // type:function size:0x1A4 scope:global align:4
+mIV_set_normal_dl = .text:0x0027441C; // type:function size:0x17C scope:global align:4
+mIV_set_dl = .text:0x00274598; // type:function size:0xA0 scope:global align:4
+mIV_inventory_ovl_draw = .text:0x00274638; // type:function size:0x58 scope:global align:4
+mIV_inventory_ovl_set_proc = .text:0x00274690; // type:function size:0x64 scope:global align:4
+mIV_inventory_ovl_init = .text:0x002746F4; // type:function size:0x358 scope:global align:4
+mIV_inventory_ovl_construct = .text:0x00274A4C; // type:function size:0xAC scope:global align:4
+mIV_inventory_ovl_destruct = .text:0x00274AF8; // type:function size:0x5C scope:global align:4
+mLE_move_Move = .text:0x00274B54; // type:function size:0x2C scope:global align:4
+mLE_move_Wait = .text:0x00274B80; // type:function size:0xF8 scope:global align:4
+mLE_move_End = .text:0x00274C78; // type:function size:0x2C scope:global align:4
+mLE_ledit_ovl_move = .text:0x00274CA4; // type:function size:0x68 scope:global align:4
+mLE_set_dl = .text:0x00274D0C; // type:function size:0x460 scope:global align:4
+mLE_ledit_ovl_draw = .text:0x0027516C; // type:function size:0x58 scope:global align:4
+mLE_ledit_ovl_set_proc = .text:0x002751C4; // type:function size:0x20 scope:global align:4
+mLE_ledit_ovl_init = .text:0x002751E4; // type:function size:0x124 scope:global align:4
+mLE_ledit_ovl_construct = .text:0x00275308; // type:function size:0x50 scope:global align:4
+mLE_ledit_ovl_destruct = .text:0x00275358; // type:function size:0x10 scope:global align:4
+mMB_get_last_mail_idx = .text:0x00275368; // type:function size:0x68 scope:global align:4
+mMB_move_Move = .text:0x002753D0; // type:function size:0x2C scope:global align:4
+mMB_move_Play = .text:0x002753FC; // type:function size:0x94 scope:global align:4
+mMB_move_Wait = .text:0x00275490; // type:function size:0xB4 scope:global align:4
+mMB_move_End = .text:0x00275544; // type:function size:0x50 scope:global align:4
+mMB_mailbox_ovl_move = .text:0x00275594; // type:function size:0x98 scope:global align:4
+mMB_set_frame_dl = .text:0x0027562C; // type:function size:0x1B0 scope:global align:4
+mMB_set_mail = .text:0x002757DC; // type:function size:0x204 scope:global align:4
+mMB_set_dl = .text:0x002759E0; // type:function size:0xAC scope:global align:4
+mMB_mailbox_ovl_draw = .text:0x00275A8C; // type:function size:0x60 scope:global align:4
+mMB_mailbox_ovl_set_proc = .text:0x00275AEC; // type:function size:0x64 scope:global align:4
+mMB_mailbox_ovl_init = .text:0x00275B50; // type:function size:0x38 scope:global align:4
+mMB_mailbox_ovl_data_init = .text:0x00275B88; // type:function size:0x30 scope:global align:4
+mMB_mailbox_ovl_construct = .text:0x00275BB8; // type:function size:0x8C scope:global align:4
+mMB_mailbox_ovl_destruct = .text:0x00275C44; // type:function size:0x10 scope:global align:4
+mMP_check_layer = .text:0x00275C54; // type:function size:0x88 scope:global align:4
+mMP_check_bg_kind = .text:0x00275CDC; // type:function size:0x3C scope:global align:4
+mMP_make_max_no_table = .text:0x00275D18; // type:function size:0xFC scope:global align:4
+mMP_dma_texture = .text:0x00275E14; // type:function size:0x18 scope:global align:4
+mMP_set_map_texture_pal = .text:0x00275E2C; // type:function size:0x80 scope:global align:4
+mMP_GetFgBlockName = .text:0x00275EAC; // type:function size:0x38 scope:global align:4
+mMP_set_house_data = .text:0x00275EE4; // type:function size:0x2D8 scope:global align:4
+mMP_set_field_data = .text:0x002761BC; // type:function size:0x144 scope:global align:4
+mMP_set_init_data = .text:0x00276300; // type:function size:0x1B4 scope:global align:4
+mMP_move_Move = .text:0x002764B4; // type:function size:0x2C scope:global align:4
+mMP_move_Play = .text:0x002764E0; // type:function size:0x1B0 scope:global align:4
+mMP_move_Wait = .text:0x00276690; // type:function size:0xDC scope:global align:4
+mMP_move_End = .text:0x0027676C; // type:function size:0x2C scope:global align:4
+mMP_map_ovl_move = .text:0x00276798; // type:function size:0x68 scope:global align:4
+mMP_map_draw_init = .text:0x00276800; // type:function size:0x60 scope:global align:4
+mMP_get_label_cnt = .text:0x00276860; // type:function size:0x24 scope:global align:4
+mMP_set_house_dl = .text:0x00276884; // type:function size:0x2D8 scope:global align:4
+mMP_set_map_dl = .text:0x00276B5C; // type:function size:0x188 scope:global align:4
+mMP_set_cursol_dl = .text:0x00276CE4; // type:function size:0x138 scope:global align:4
+mMP_set_label_dl = .text:0x00276E1C; // type:function size:0x280 scope:global align:4
+mMP_set_base_dl = .text:0x0027709C; // type:function size:0xBC scope:global align:4
+mMP_set_win_dl = .text:0x00277158; // type:function size:0x158 scope:global align:4
+mMP_set_label_top_dl = .text:0x002772B0; // type:function size:0x15C scope:global align:4
+mMP_set_dl = .text:0x0027740C; // type:function size:0x1F0 scope:global align:4
+mMP_map_ovl_draw = .text:0x002775FC; // type:function size:0x58 scope:global align:4
+mMP_map_ovl_set_proc = .text:0x00277654; // type:function size:0x20 scope:global align:4
+mMP_map_ovl_init = .text:0x00277674; // type:function size:0x70 scope:global align:4
+mMP_map_ovl_construct = .text:0x002776E4; // type:function size:0x80 scope:global align:4
+mMP_map_ovl_destruct = .text:0x00277764; // type:function size:0x48 scope:global align:4
+mMS_move_Move = .text:0x002777AC; // type:function size:0x2C scope:global align:4
+mMS_move_Play = .text:0x002777D8; // type:function size:0x2E0 scope:global align:4
+mMS_move_Wait = .text:0x00277AB8; // type:function size:0xC0 scope:global align:4
+mMS_move_Obey = .text:0x00277B78; // type:function size:0x18C scope:global align:4
+mMS_move_End = .text:0x00277D04; // type:function size:0x2C scope:global align:4
+mMS_mscore_ovl_move = .text:0x00277D30; // type:function size:0x68 scope:global align:4
+mMS_MScore_draw_init = .text:0x00277D98; // type:function size:0x4 scope:global align:4
+mMS_set_dl = .text:0x00277D9C; // type:function size:0xB18 scope:global align:4
+mMS_mscore_ovl_draw = .text:0x002788B4; // type:function size:0x58 scope:global align:4
+mMS_mscore_ovl_set_proc = .text:0x0027890C; // type:function size:0x20 scope:global align:4
+mMS_mscore_ovl_init = .text:0x0027892C; // type:function size:0x74 scope:global align:4
+mMS_mscore_ovl_construct = .text:0x002789A0; // type:function size:0x80 scope:global align:4
+mMS_mscore_ovl_destruct = .text:0x00278A20; // type:function size:0x30 scope:global align:4
+mMU_move_Move = .text:0x00278A50; // type:function size:0x2C scope:global align:4
+mMU_move_Play = .text:0x00278A7C; // type:function size:0xE4 scope:global align:4
+mMU_move_Wait = .text:0x00278B60; // type:function size:0x6C scope:global align:4
+mMU_move_End = .text:0x00278BCC; // type:function size:0x2C scope:global align:4
+mMU_music_ovl_move = .text:0x00278BF8; // type:function size:0x88 scope:global align:4
+mMU_check_music_collect_bit = .text:0x00278C80; // type:function size:0xA0 scope:global align:4
+mMU_check_mark_flg = .text:0x00278D20; // type:function size:0x38 scope:global align:4
+mMU_get_md_no = .text:0x00278D58; // type:function size:0x4C scope:global align:4
+mMU_set_dl = .text:0x00278DA4; // type:function size:0x3F4 scope:global align:4
+mMU_set_title_dl = .text:0x00279198; // type:function size:0x170 scope:global align:4
+mMU_music_ovl_draw = .text:0x00279308; // type:function size:0x84 scope:global align:4
+mMU_music_draw_init = .text:0x0027938C; // type:function size:0xC scope:global align:4
+mMU_music_ovl_set_proc = .text:0x00279398; // type:function size:0x64 scope:global align:4
+mMU_music_ovl_init = .text:0x002793FC; // type:function size:0x34 scope:global align:4
+mMU_music_ovl_construct = .text:0x00279430; // type:function size:0x80 scope:global align:4
+mMU_music_ovl_destruct = .text:0x002794B0; // type:function size:0x10 scope:global align:4
+mNW_with_cporiginal_check = .text:0x002794C0; // type:function size:0x2C scope:global align:4
+mNW_check_hide_flg = .text:0x002794EC; // type:function size:0x40 scope:global align:4
+mNW_on_hide_flg = .text:0x0027952C; // type:function size:0x38 scope:global align:4
+mNW_clear_hide_flg = .text:0x00279564; // type:function size:0x14 scope:global align:4
+mNW_check_mark_flg = .text:0x00279578; // type:function size:0x40 scope:global align:4
+mNW_clear_mark_flg = .text:0x002795B8; // type:function size:0x14 scope:global align:4
+mNW_swap_image_no = .text:0x002795CC; // type:function size:0x94 scope:global align:4
+mNW_get_image_no = .text:0x00279660; // type:function size:0x84 scope:global align:4
+mNW_get_image_pal = .text:0x002796E4; // type:function size:0x88 scope:global align:4
+mNW_get_image_texture = .text:0x0027976C; // type:function size:0x80 scope:global align:4
+mNW_get_image_name = .text:0x002797EC; // type:function size:0x80 scope:global align:4
+mNW_get_image_data = .text:0x0027986C; // type:function size:0x80 scope:global align:4
+mNW_draw_original = .text:0x002798EC; // type:function size:0x1C8 scope:global align:4
+mNW_next_data = .text:0x00279AB4; // type:function size:0x84 scope:global align:4
+mNW_move_Move = .text:0x00279B38; // type:function size:0x2C scope:global align:4
+mNW_move_Play = .text:0x00279B64; // type:function size:0xFC scope:global align:4
+mNW_move_Wait = .text:0x00279C60; // type:function size:0xC0 scope:global align:4
+mNW_move_End = .text:0x00279D20; // type:function size:0x2C scope:global align:4
+mNW_needlework_ovl_move = .text:0x00279D4C; // type:function size:0x68 scope:global align:4
+mNW_set_frame_dl = .text:0x00279DB4; // type:function size:0x2D0 scope:global align:4
+mNW_draw_sav_mark_before = .text:0x0027A084; // type:function size:0xA0 scope:global align:4
+mNW_draw_sav_mark = .text:0x0027A124; // type:function size:0xB8 scope:global align:4
+mNW_set_frame_dl_cpo = .text:0x0027A1DC; // type:function size:0x314 scope:global align:4
+mNW_needlework_ovl_draw = .text:0x0027A4F0; // type:function size:0xA0 scope:global align:4
+mNW_needlework_ovl_set_proc = .text:0x0027A590; // type:function size:0x70 scope:global align:4
+mNW_needlework_ovl_init = .text:0x0027A600; // type:function size:0x170 scope:global align:4
+mNW_needlework_ovl_construct = .text:0x0027A770; // type:function size:0x60 scope:global align:4
+mNW_needlework_ovl_destruct = .text:0x0027A7D0; // type:function size:0x48 scope:global align:4
+mNT_strLineCheck = .text:0x0027A818; // type:function size:0xBC scope:global align:4
+mNT_set_init_data = .text:0x0027A8D4; // type:function size:0x6C scope:global align:4
+mNT_finish_notice_first_job = .text:0x0027A940; // type:function size:0x68 scope:global align:4
+mNT_roll_control = .text:0x0027A9A8; // type:function size:0x148 scope:global align:4
+mNT_roll_control2 = .text:0x0027AAF0; // type:function size:0xC0 scope:global align:4
+mNT_Play_page_read = .text:0x0027ABB0; // type:function size:0x248 scope:global align:4
+mNT_Play_page_move = .text:0x0027ADF8; // type:function size:0x1D4 scope:global align:4
+mNT_Play_page_to_write = .text:0x0027AFCC; // type:function size:0x124 scope:global align:4
+mNT_Play_page_to_read = .text:0x0027B0F0; // type:function size:0x124 scope:global align:4
+mNT_move_Move = .text:0x0027B214; // type:function size:0x58 scope:global align:4
+mNT_move_Play = .text:0x0027B26C; // type:function size:0x40 scope:global align:4
+mNT_move_Wait = .text:0x0027B2AC; // type:function size:0x4C scope:global align:4
+mNT_move_Obey = .text:0x0027B2F8; // type:function size:0xE8 scope:global align:4
+mNT_move_End = .text:0x0027B3E0; // type:function size:0x34 scope:global align:4
+mNT_stick_area_check = .text:0x0027B414; // type:function size:0xE8 scope:global align:4
+mNT_notice_ovl_move = .text:0x0027B4FC; // type:function size:0x70 scope:global align:4
+mNT_notice_draw_init = .text:0x0027B56C; // type:function size:0x1C scope:global align:4
+mNT_set_frame_dl = .text:0x0027B588; // type:function size:0xD0 scope:global align:4
+mNT_set_key_dl = .text:0x0027B658; // type:function size:0x1E0 scope:global align:4
+mNT_set_num_strings_dl = .text:0x0027B838; // type:function size:0xD4 scope:global align:4
+mNT_set_day_strings_dl = .text:0x0027B90C; // type:function size:0x294 scope:global align:4
+mNT_set_strings_dl = .text:0x0027BBA0; // type:function size:0x294 scope:global align:4
+mNT_set_page_dl = .text:0x0027BE34; // type:function size:0x210 scope:global align:4
+mNT_set_dl = .text:0x0027C044; // type:function size:0xF8 scope:global align:4
+mNT_notice_ovl_draw = .text:0x0027C13C; // type:function size:0x58 scope:global align:4
+mNT_notice_ovl_set_proc = .text:0x0027C194; // type:function size:0x20 scope:global align:4
+mNT_notice_ovl_init = .text:0x0027C1B4; // type:function size:0x88 scope:global align:4
+mNT_notice_ovl_construct = .text:0x0027C23C; // type:function size:0x5C scope:global align:4
+mNT_notice_ovl_destruct = .text:0x0027C298; // type:function size:0x10 scope:global align:4
+mRP_money_repay = .text:0x0027C2A8; // type:function size:0x104 scope:global align:4
+mRP_move_Move = .text:0x0027C3AC; // type:function size:0x2C scope:global align:4
+mRP_move_Play = .text:0x0027C3D8; // type:function size:0x218 scope:global align:4
+mRP_move_End = .text:0x0027C5F0; // type:function size:0x2C scope:global align:4
+mRP_repay_ovl_move = .text:0x0027C61C; // type:function size:0x68 scope:global align:4
+mRP_set_frame_dl = .text:0x0027C684; // type:function size:0x144 scope:global align:4
+mRP_set_num_str = .text:0x0027C7C8; // type:function size:0x10C scope:global align:4
+mRP_set_character_dl = .text:0x0027C8D4; // type:function size:0x2FC scope:global align:4
+mRP_set_dl = .text:0x0027CBD0; // type:function size:0x80 scope:global align:4
+mRP_repay_ovl_draw = .text:0x0027CC50; // type:function size:0x58 scope:global align:4
+mRP_repay_ovl_set_proc = .text:0x0027CCA8; // type:function size:0x20 scope:global align:4
+mRP_repay_ovl_init = .text:0x0027CCC8; // type:function size:0x10C scope:global align:4
+mRP_repay_ovl_construct = .text:0x0027CDD4; // type:function size:0x70 scope:global align:4
+mRP_repay_ovl_destruct = .text:0x0027CE44; // type:function size:0x10 scope:global align:4
+mSM_setup_view = .text:0x0027CE54; // type:function size:0x1D4 scope:global align:4
+mSM_change_view = .text:0x0027D028; // type:function size:0x398 scope:global align:4
+mSM_set_char_matrix = .text:0x0027D3C0; // type:function size:0x2C scope:global align:4
+mSM_cbuf_copy = .text:0x0027D3EC; // type:function size:0x404 scope:global align:4
+mSM_set_drawMode = .text:0x0027D7F0; // type:function size:0x5D4 scope:global align:4
+mSM_get_groupNo = .text:0x0027DDC4; // type:function size:0x8 scope:global align:4
+mSM_set_dl_item = .text:0x0027DDCC; // type:function size:0x554 scope:global align:4
+mSM_draw_item = .text:0x0027E320; // type:function size:0x2A0 scope:global align:4
+mSM_draw_mail = .text:0x0027E5C0; // type:function size:0x398 scope:global align:4
+mSM_draw_original = .text:0x0027E958; // type:function size:0xE8 scope:global align:4
+mSM_ovl_prog_seg = .text:0x0027EA40; // type:function size:0xAC scope:global align:4
+mSM_set_other_seg = .text:0x0027EAEC; // type:function size:0x7C scope:global align:4
+mSM_set_before_menu_proc = .text:0x0027EB68; // type:function size:0x68 scope:global align:4
+mSM_set_new_seg = .text:0x0027EBD0; // type:function size:0x4C scope:global align:4
+mSM_set_new_start_data = .text:0x0027EC1C; // type:function size:0xB4 scope:global align:4
+mSM_move_chg_base = .text:0x0027ECD0; // type:function size:0x2C scope:global align:4
+mSM_make_trigger_data = .text:0x0027ECFC; // type:function size:0xC4 scope:global align:4
+mSM_save_before_func = .text:0x0027EDC0; // type:function size:0x44 scope:global align:4
+mSM_set_proc = .text:0x0027EE04; // type:function size:0x44 scope:global align:4
+mSM_tex_move = .text:0x0027EE48; // type:function size:0x7C scope:global align:4
+mSM_return_func = .text:0x0027EEC4; // type:function size:0x124 scope:global align:4
+mSM_move_menu = .text:0x0027EFE8; // type:function size:0xD8 scope:global align:4
+mSM_move_Move = .text:0x0027F0C0; // type:function size:0xE0 scope:global align:4
+mSM_move_End = .text:0x0027F1A0; // type:function size:0x20 scope:local align:4
+mSM_menu_ovl_move = .text:0x0027F1C0; // type:function size:0x68 scope:global align:4
+mSM_menu_ovl_draw = .text:0x0027F228; // type:function size:0x58 scope:global align:4
+mSM_menu_ovl_init = .text:0x0027F280; // type:function size:0x1A4 scope:global align:4
+mTG_check_hand_condition = .text:0x0027F424; // type:function size:0x54 scope:global align:4
+mTG_set_hand_pos_offset = .text:0x0027F478; // type:function size:0x78 scope:global align:4
+mTG_set_hand_pos = .text:0x0027F4F0; // type:function size:0xBC scope:global align:4
+mTG_get_tag_idx = .text:0x0027F5AC; // type:function size:0x48 scope:global align:4
+mTG_return_tag_init = .text:0x0027F5F4; // type:function size:0xB8 scope:global align:4
+mTG_get_item_name_wait_time = .text:0x0027F6AC; // type:function size:0x28 scope:global align:4
+mTG_return_tag_func = .text:0x0027F6D4; // type:function size:0x104 scope:global align:4
+mTG_quest_disp_up_check = .text:0x0027F7D8; // type:function size:0x3C scope:global align:4
+mTG_quest_disp_low_check = .text:0x0027F814; // type:function size:0x28 scope:global align:4
+mTG_set_tag_win_scale_p = .text:0x0027F83C; // type:function size:0x164 scope:global align:4
+mTG_get_table_idx = .text:0x0027F9A0; // type:function size:0x34 scope:global align:4
+mTG_check_edge_right_item = .text:0x0027F9D4; // type:function size:0x5C scope:global align:4
+mTG_calc_right_edge_select = .text:0x0027FA30; // type:function size:0x34 scope:global align:4
+mTG_check_edge_right_select = .text:0x0027FA64; // type:function size:0x68 scope:global align:4
+mTG_check_edge_foot_select = .text:0x0027FACC; // type:function size:0x7C scope:global align:4
+mTG_get_max_col_width_data = .text:0x0027FB48; // type:function size:0x8C scope:global align:4
+mTG_get_col_width_and_line_select = .text:0x0027FBD4; // type:function size:0x22C scope:global align:4
+mTG_get_mail_pointer = .text:0x0027FE00; // type:function size:0xE0 scope:global align:4
+mTG_strcat = .text:0x0027FEE0; // type:function size:0x98 scope:global align:4
+mTG_strcpy = .text:0x0027FF78; // type:function size:0x78 scope:global align:4
+mTG_strcat_color = .text:0x0027FFF0; // type:function size:0xDC scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_mail = .text:0x002800CC; // type:function size:0xB4 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_xmas = .text:0x00280180; // type:function size:0x70 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_tanukiti = .text:0x002801F0; // type:function size:0x70 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_tunekiti = .text:0x00280260; // type:function size:0x70 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_mother = .text:0x002802D0; // type:function size:0x64 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_omikuji = .text:0x00280334; // type:function size:0x70 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_happy = .text:0x002803A4; // type:function size:0x68 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_snowman = .text:0x0028040C; // type:function size:0x70 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_angler = .text:0x0028047C; // type:function size:0x6C scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_postoffice = .text:0x002804E8; // type:function size:0x68 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_sp_npc = .text:0x00280550; // type:function size:0x64 scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item_set_string = .text:0x002805B4; // type:function size:0x25C scope:global align:4
+mTG_init_tag_data_item_win_sub_mail_item = .text:0x00280810; // type:function size:0x494 scope:global align:4
+mTG_init_tag_data_set_base_pos = .text:0x00280CA4; // type:function size:0xB0 scope:global align:4
+mTG_init_tag_data_set_itemNo = .text:0x00280D54; // type:function size:0x11C scope:global align:4
+mTG_init_tag_data_catalog_win = .text:0x00280E70; // type:function size:0xF4 scope:global align:4
+mTG_init_tag_data_cpmail_wc_win = .text:0x00280F64; // type:function size:0x124 scope:global align:4
+mTG_init_tag_data_cporiginal_wc_win = .text:0x00281088; // type:function size:0x120 scope:global align:4
+mTG_init_tag_data_needlework_win = .text:0x002811A8; // type:function size:0x234 scope:global align:4
+mTG_init_tag_data_item_win = .text:0x002813DC; // type:function size:0x190 scope:global align:4
+mTG_init_tag_data_select_win_only = .text:0x0028156C; // type:function size:0x170 scope:global align:4
+mTG_init_tag_data_select_win_after_item = .text:0x002816DC; // type:function size:0x5B4 scope:global align:4
+mTG_init_tag_data_select_win_after_select = .text:0x00281C90; // type:function size:0x1F4 scope:global align:4
+mTG_init_tag_data = .text:0x00281E84; // type:function size:0x128 scope:global align:4
+mTG_chg_tag_func = .text:0x00281FAC; // type:function size:0x60 scope:global align:4
+mTG_chg_tag_func2 = .text:0x0028200C; // type:function size:0xD0 scope:global align:4
+mTG_check_item_on_mail = .text:0x002820DC; // type:function size:0x68 scope:global align:4
+mTG_check_put_unit = .text:0x00282144; // type:function size:0xBC scope:global align:4
+mTG_put_place_check = .text:0x00282200; // type:function size:0xB0 scope:global align:4
+mTG_check_direction_put_pos = .text:0x002822B0; // type:function size:0x2C scope:global align:4
+mTG_check_wall_put_pos = .text:0x002822DC; // type:function size:0xA8 scope:global align:4
+mTG_check_pos_slope = .text:0x00282384; // type:function size:0xF0 scope:global align:4
+mTG_search_put_pos2 = .text:0x00282474; // type:function size:0x7B4 scope:global align:4
+mTG_search_put_pos = .text:0x00282C28; // type:function size:0x38 scope:global align:4
+mTG_open_warning_window = .text:0x00282C60; // type:function size:0x64 scope:global align:4
+mTG_common_throw_put_field = .text:0x00282CC4; // type:function size:0xD4 scope:global align:4
+mTG_common_throw_put_room = .text:0x00282D98; // type:function size:0xBC scope:global align:4
+mTG_close_window = .text:0x00282E54; // type:function size:0x50 scope:global align:4
+mTG_open_board_init = .text:0x00282EA4; // type:function size:0xC8 scope:global align:4
+mTG_set_catch_se = .text:0x00282F6C; // type:function size:0x44 scope:global align:4
+mTG_catch_item_from_table = .text:0x00282FB0; // type:function size:0x1A4 scope:global align:4
+mTG_itemNo_to_amount = .text:0x00283154; // type:function size:0x54 scope:global align:4
+mTG_make_money_sack = .text:0x002831A8; // type:function size:0xDC scope:global align:4
+mTG_drop_furniture = .text:0x00283284; // type:function size:0xC0 scope:global align:4
+mTG_nw_drop_furniture = .text:0x00283344; // type:function size:0x188 scope:global align:4
+mTG_get_unit_front_player = .text:0x002834CC; // type:function size:0xBC scope:global align:4
+mTG_check_free_2nd_layer = .text:0x00283588; // type:function size:0xD4 scope:global align:4
+mTG_set_trade_cond = .text:0x0028365C; // type:function size:0xB4 scope:global align:4
+mTG_present_open_proc = .text:0x00283710; // type:function size:0xA0 scope:global align:4
+mTG_nw_select_this_proc = .text:0x002837B0; // type:function size:0x70 scope:global align:4
+mTG_give_proc = .text:0x00283820; // type:function size:0x110 scope:global align:4
+mTG_sell_proc = .text:0x00283930; // type:function size:0xAC scope:global align:4
+mTG_sell_all_proc = .text:0x002839DC; // type:function size:0x10C scope:global align:4
+mTG_get_proc = .text:0x00283AE8; // type:function size:0x340 scope:global align:4
+mTG_dump_mail_mark_exe_proc = .text:0x00283E28; // type:function size:0x25C scope:global align:4
+mTG_mailbox_change_mail_proc = .text:0x00284084; // type:function size:0x98 scope:global align:4
+mTG_cpmail_change_mail_proc = .text:0x0028411C; // type:function size:0x23C scope:global align:4
+mTG_dump_mail_proc = .text:0x00284358; // type:function size:0x40 scope:global align:4
+mTG_dump_item_proc = .text:0x00284398; // type:function size:0x6C scope:global align:4
+mTG_send_proc = .text:0x00284404; // type:function size:0xC4 scope:global align:4
+mTG_rewrite_proc = .text:0x002844C8; // type:function size:0x2C scope:global align:4
+mTG_stick_select_proc = .text:0x002844F4; // type:function size:0x44 scope:global align:4
+mTG_nw_carpet_proc = .text:0x00284538; // type:function size:0x1E0 scope:global align:4
+mTG_carpet_proc = .text:0x00284718; // type:function size:0xCC scope:global align:4
+mTG_nw_cover_proc = .text:0x002847E4; // type:function size:0x1E0 scope:global align:4
+mTG_cover_proc = .text:0x002849C4; // type:function size:0xCC scope:global align:4
+mTG_putin_proc = .text:0x00284A90; // type:function size:0x1B8 scope:global align:4
+mTG_music_listen_proc = .text:0x00284C48; // type:function size:0x6C scope:global align:4
+mTG_music_takeout_proc = .text:0x00284CB4; // type:function size:0x2B8 scope:global align:4
+mTG_island_check_plant_plant = .text:0x00284F6C; // type:function size:0x54 scope:global align:4
+mTG_island_check_fruit_plant = .text:0x00284FC0; // type:function size:0xBC scope:global align:4
+mTG_island_check_fruit_eat = .text:0x0028507C; // type:function size:0x30 scope:global align:4
+mTG_plant_proc = .text:0x002850AC; // type:function size:0x218 scope:global align:4
+mTG_check_island_famicom = .text:0x002852C4; // type:function size:0x80 scope:global align:4
+mTG_field_put_proc = .text:0x00285344; // type:function size:0x374 scope:global align:4
+mTG_room_put_proc = .text:0x002856B8; // type:function size:0x418 scope:global align:4
+mTG_put_all_proc = .text:0x00285AD0; // type:function size:0x54 scope:global align:4
+mTG_dump_mail_mark_conf_proc = .text:0x00285B24; // type:function size:0x44 scope:global align:4
+mTG_next_open_proc = .text:0x00285B68; // type:function size:0x70 scope:global align:4
+mTG_next_open_needlework_sel_stick_proc = .text:0x00285BD8; // type:function size:0xA8 scope:global align:4
+mTG_next_open_needlework_sel_put_proc = .text:0x00285C80; // type:function size:0x44 scope:global align:4
+mTG_free_proc = .text:0x00285CC4; // type:function size:0x28 scope:global align:4
+mTG_catch_proc = .text:0x00285CEC; // type:function size:0x328 scope:global align:4
+mTG_mail_check = .text:0x00286014; // type:function size:0x4C scope:global align:4
+mTG_password_item_proc = .text:0x00286060; // type:function size:0xAC scope:global align:4
+mTG_mark_enable_check = .text:0x0028610C; // type:function size:0xF8 scope:global align:4
+mTG_mark_main_sub = .text:0x00286204; // type:function size:0x600 scope:global align:4
+mTG_bit_chk = .text:0x00286804; // type:function size:0x34 scope:global align:4
+mTG_bit_on = .text:0x00286838; // type:function size:0x2C scope:global align:4
+mTG_bit_off = .text:0x00286864; // type:function size:0x2C scope:global align:4
+mTG_bit_rvs = .text:0x00286890; // type:function size:0x2C scope:global align:4
+mTG_bit_clr = .text:0x002868BC; // type:function size:0x20 scope:global align:4
+mTG_bit_chk_all0 = .text:0x002868DC; // type:function size:0x30 scope:global align:4
+mTG_mark_mainX = .text:0x0028690C; // type:function size:0x190 scope:global align:4
+mTG_mark_main_CLR = .text:0x00286A9C; // type:function size:0x124 scope:global align:4
+mTG_mark_main = .text:0x00286BC0; // type:function size:0x6C scope:global align:4
+mTG_write_proc = .text:0x00286C2C; // type:function size:0x94 scope:global align:4
+mTG_priceset_proc = .text:0x00286CC0; // type:function size:0x90 scope:global align:4
+mTG_present_proc = .text:0x00286D50; // type:function size:0xBC scope:global align:4
+mTG_show_proc = .text:0x00286E0C; // type:function size:0x28 scope:global align:4
+mTG_cancel_proc = .text:0x00286E34; // type:function size:0x84 scope:global align:4
+mTG_read_proc = .text:0x00286EB8; // type:function size:0x7C scope:global align:4
+mTG_take_proc = .text:0x00286F34; // type:function size:0x174 scope:global align:4
+mTG_m100_proc = .text:0x002870A8; // type:function size:0x24 scope:global align:4
+mTG_m1000_proc = .text:0x002870CC; // type:function size:0x24 scope:global align:4
+mTG_m10000_proc = .text:0x002870F0; // type:function size:0x24 scope:global align:4
+mTG_m30000_proc = .text:0x00287114; // type:function size:0x24 scope:global align:4
+mTG_1catch_proc = .text:0x00287138; // type:function size:0x1C0 scope:global align:4
+mTG_order_proc = .text:0x002872F8; // type:function size:0xBC scope:global align:4
+mTG_bury_proc = .text:0x002873B4; // type:function size:0x114 scope:global align:4
+mTG_insect_release_sub = .text:0x002874C8; // type:function size:0x70 scope:global align:4
+mTG_insect_release_demo_gold_scoop = .text:0x00287538; // type:function size:0x24 scope:global align:4
+mTG_insect_release = .text:0x0028755C; // type:function size:0x24 scope:global align:4
+mTG_release_proc = .text:0x00287580; // type:function size:0x1AC scope:global align:4
+mTG_fly_proc = .text:0x0028772C; // type:function size:0xF0 scope:global align:4
+mTG_exchange_proc = .text:0x0028781C; // type:function size:0x36C scope:global align:4
+mTG_hukubukuro_open_proc = .text:0x00287B88; // type:function size:0x310 scope:global align:4
+mTG_cp_data_delete_proc = .text:0x00287E98; // type:function size:0x4 scope:global align:4
+mTG_nw_room_put_proc = .text:0x00287E9C; // type:function size:0xEC scope:global align:4
+mTG_nw_room_put_manekin_proc = .text:0x00287F88; // type:function size:0x24 scope:global align:4
+mTG_nw_stk_pat_proc = .text:0x00287FAC; // type:function size:0x4C scope:global align:4
+mTG_tag_remove_proc = .text:0x00287FF8; // type:function size:0x34 scope:global align:4
+mTG_nw_room_put_umbrella_proc = .text:0x0028802C; // type:function size:0x24 scope:global align:4
+mTG_nw_st_umbrella_proc = .text:0x00288050; // type:function size:0xF4 scope:global align:4
+mTG_nw_st_wear_proc = .text:0x00288144; // type:function size:0xC8 scope:global align:4
+mTG_change_original_proc = .text:0x0028820C; // type:function size:0x1E8 scope:global align:4
+mTG_mv_priceSet = .text:0x002883F4; // type:function size:0x178 scope:global align:4
+mTG_change_mail = .text:0x0028856C; // type:function size:0x58 scope:global align:4
+mTG_change_mail2 = .text:0x002885C4; // type:function size:0x40 scope:global align:4
+mTG_change_mail3 = .text:0x00288604; // type:function size:0x104 scope:global align:4
+mIV_get_win_posY = .text:0x00288708; // type:function size:0x28 scope:local align:4
+mTG_cpack_change_mail_mark_move = .text:0x00288730; // type:function size:0x314 scope:global align:4
+mTG_cpack_change_mail_mark_decide = .text:0x00288A44; // type:function size:0x4AC scope:global align:4
+mTG_cpack_change_mail_mark_main = .text:0x00288EF0; // type:function size:0x7C scope:global align:4
+mTG_trans_mail_mark = .text:0x00288F6C; // type:function size:0x178 scope:global align:4
+mTG_trans_mail = .text:0x002890E4; // type:function size:0x178 scope:global align:4
+mTG_check_trans_mail = .text:0x0028925C; // type:function size:0x8C scope:global align:4
+mTG_check_trans_mail_mark = .text:0x002892E8; // type:function size:0x54 scope:global align:4
+mTG_cpack_change_mail_mark = .text:0x0028933C; // type:function size:0x6C scope:global align:4
+mTG_move_cursol_in_cpedit = .text:0x002893A8; // type:function size:0x8 scope:global align:4
+mTG_move_cursol_in_catalog = .text:0x002893B0; // type:function size:0x274 scope:global align:4
+mTG_move_cursol_base_left = .text:0x00289624; // type:function size:0x28 scope:global align:4
+mTG_move_cursol_base_right = .text:0x0028964C; // type:function size:0x40 scope:global align:4
+mTG_move_cursol_base_upper = .text:0x0028968C; // type:function size:0x28 scope:global align:4
+mTG_move_cursol_base_lower = .text:0x002896B4; // type:function size:0x44 scope:global align:4
+mTG_move_check_hand_item_on_player = .text:0x002896F8; // type:function size:0x48 scope:global align:4
+mTG_move_check_hand_item = .text:0x00289740; // type:function size:0xD4 scope:global align:4
+mTG_move_cursol_between_table_inventory_left = .text:0x00289814; // type:function size:0x278 scope:global align:4
+mTG_move_cursol_between_table_inventory_right = .text:0x00289A8C; // type:function size:0x1D8 scope:global align:4
+mTG_move_cursol_between_table_inventory_upper = .text:0x00289C64; // type:function size:0x174 scope:global align:4
+mTG_move_cursol_between_table_inventory_lower = .text:0x00289DD8; // type:function size:0xA8 scope:global align:4
+mTG_move_cursol_between_table_cpmail = .text:0x00289E80; // type:function size:0x23C scope:global align:4
+mTG_move_cursol_between_table_music = .text:0x0028A0BC; // type:function size:0x8 scope:global align:4
+mTG_move_cursol_between_table_haniwa = .text:0x0028A0C4; // type:function size:0x98 scope:global align:4
+mTG_move_cursol_between_table_mailbox = .text:0x0028A15C; // type:function size:0x98 scope:global align:4
+mTG_move_cursol_between_table_catalog = .text:0x0028A1F4; // type:function size:0xE0 scope:global align:4
+mTG_move_cursol_between_table_cporiginal = .text:0x0028A2D4; // type:function size:0x210 scope:global align:4
+mTG_move_cursol_between_table_gba = .text:0x0028A4E4; // type:function size:0xAC scope:global align:4
+mTG_move_cursol_between_table_card = .text:0x0028A590; // type:function size:0x68 scope:global align:4
+mTG_move_cursol_between_table_inventory = .text:0x0028A5F8; // type:function size:0x9C scope:global align:4
+mTG_move_cursol_base = .text:0x0028A694; // type:function size:0x1F0 scope:global align:4
+mTG_select_tag_decide_item_normal = .text:0x0028A884; // type:function size:0x3C0 scope:global align:4
+mTG_select_tag_decide_item = .text:0x0028AC44; // type:function size:0x10C scope:global align:4
+mTG_select_tag_decide_mail = .text:0x0028AD50; // type:function size:0x284 scope:global align:4
+mTG_select_tag_decide_money = .text:0x0028AFD4; // type:function size:0x9C scope:global align:4
+mTG_select_tag_decide_player = .text:0x0028B070; // type:function size:0x40 scope:global align:4
+mTG_select_tag_decide_bg = .text:0x0028B0B0; // type:function size:0x8 scope:global align:4
+mTG_select_tag_decide_haniwa = .text:0x0028B0B8; // type:function size:0x5C scope:global align:4
+mTG_select_tag_decide_collect = .text:0x0028B114; // type:function size:0x18 scope:global align:4
+mTG_select_tag_decide_wchange = .text:0x0028B12C; // type:function size:0x84 scope:global align:4
+mTG_select_tag_decide_cpmail_wchange = .text:0x0028B1B0; // type:function size:0x70 scope:global align:4
+mTG_select_tag_decide_cpmail_title = .text:0x0028B220; // type:function size:0x88 scope:global align:4
+mTG_select_tag_decide_catalog = .text:0x0028B2A8; // type:function size:0x4C scope:global align:4
+mTG_select_tag_decide_catalog_wchange = .text:0x0028B2F4; // type:function size:0xB0 scope:global align:4
+mTG_select_tag_decide_music_main = .text:0x0028B3A4; // type:function size:0x118 scope:global align:4
+mTG_select_tag_decide_needlework = .text:0x0028B4BC; // type:function size:0xD0 scope:global align:4
+mTG_select_tag_decide_inv_wc_org = .text:0x0028B58C; // type:function size:0x98 scope:global align:4
+mTG_select_tag_decide_cporiginal = .text:0x0028B624; // type:function size:0x54 scope:global align:4
+mTG_select_tag_decide_cporiginal_nw = .text:0x0028B678; // type:function size:0x54 scope:global align:4
+mTG_select_tag_decide_cporiginal_wc = .text:0x0028B6CC; // type:function size:0x78 scope:global align:4
+mTG_select_tag_decide_cporiginal_ti = .text:0x0028B744; // type:function size:0x70 scope:global align:4
+mTG_select_tag_decide_gba_nw = .text:0x0028B7B4; // type:function size:0x88 scope:global align:4
+mTG_hand_drop_item = .text:0x0028B83C; // type:function size:0x108 scope:global align:4
+mTG_drop_item = .text:0x0028B944; // type:function size:0x29C scope:global align:4
+mTG_drop_proc = .text:0x0028BBE0; // type:function size:0x68 scope:global align:4
+mTG_hand_return_item = .text:0x0028BC48; // type:function size:0x3B0 scope:global align:4
+mTG_check_move_proc = .text:0x0028BFF8; // type:function size:0xF0 scope:global align:4
+mTG_mark_proc = .text:0x0028C0E8; // type:function size:0x144 scope:global align:4
+mTG_move_cancel = .text:0x0028C22C; // type:function size:0x14C scope:global align:4
+mTG_move_decide = .text:0x0028C378; // type:function size:0x1A8 scope:global align:4
+mTG_move_catch = .text:0x0028C520; // type:function size:0x124 scope:global align:4
+mTG_move_change = .text:0x0028C644; // type:function size:0x1D4 scope:global align:4
+mTG_move_move = .text:0x0028C818; // type:function size:0x70 scope:global align:4
+mTG_move_base = .text:0x0028C888; // type:function size:0x78 scope:global align:4
+mTG_move_base_mailbox = .text:0x0028C900; // type:function size:0x98 scope:global align:4
+mTG_move_cpmail = .text:0x0028C998; // type:function size:0x3C scope:global align:4
+mTG_change_original_mark_move = .text:0x0028C9D4; // type:function size:0x220 scope:global align:4
+mTG_change_original_mark_decide = .text:0x0028CBF4; // type:function size:0x210 scope:global align:4
+mTG_change_cporiginal_mark_main = .text:0x0028CE04; // type:function size:0x58 scope:global align:4
+mTG_change_cporiginal_mark = .text:0x0028CE5C; // type:function size:0x2C scope:global align:4
+mTG_move_base_cporiginal = .text:0x0028CE88; // type:function size:0x3C scope:global align:4
+mTG_move_delete = .text:0x0028CEC4; // type:function size:0x2E0 scope:global align:4
+mTG_select_tag_base = .text:0x0028D1A4; // type:function size:0x11C scope:global align:4
+mTG_normal_move = .text:0x0028D2C0; // type:function size:0x294 scope:global align:4
+mTG_move_func = .text:0x0028D554; // type:function size:0x39C scope:global align:4
+mTG_get_special_color = .text:0x0028D8F0; // type:function size:0x28 scope:global align:4
+mTG_set_win_field = .text:0x0028D918; // type:function size:0x6E0 scope:global align:4
+mTG_price_draw = .text:0x0028DFF8; // type:function size:0x264 scope:global align:4
+mTG_set_questItemInfo_sub = .text:0x0028E25C; // type:function size:0xA4 scope:global align:4
+mTG_set_questItemInfo = .text:0x0028E300; // type:function size:0x120 scope:global align:4
+mTG_set_select = .text:0x0028E420; // type:function size:0x12C scope:global align:4
+mTG_set_character = .text:0x0028E54C; // type:function size:0x35C scope:global align:4
+mTG_set_character_item = .text:0x0028E8A8; // type:function size:0x194 scope:global align:4
+mTG_set_character_q_item = .text:0x0028EA3C; // type:function size:0x12C scope:global align:4
+mTG_set_dl = .text:0x0028EB68; // type:function size:0x12C scope:global align:4
+mTG_draw_mail = .text:0x0028EC94; // type:function size:0x120 scope:global align:4
+mTG_single_draw_mail = .text:0x0028EDB4; // type:function size:0xA8 scope:global align:4
+mTG_single_draw_original = .text:0x0028EE5C; // type:function size:0x7C scope:global align:4
+mTG_draw_func = .text:0x0028EED8; // type:function size:0x11C scope:global align:4
+mTG_tag_ovl_construct = .text:0x0028EFF4; // type:function size:0x118 scope:global align:4
+mTG_tag_ovl_destruct = .text:0x0028F10C; // type:function size:0x10 scope:global align:4
+mTI_change_rtctime = .text:0x0028F11C; // type:function size:0x7C scope:global align:4
+mTI_copy_time = .text:0x0028F198; // type:function size:0x20 scope:global align:4
+mTI_get_now_min = .text:0x0028F1B8; // type:function size:0x38 scope:global align:4
+mTI_set_time = .text:0x0028F1F0; // type:function size:0xBC scope:global align:4
+mTI_window_close = .text:0x0028F2AC; // type:function size:0x124 scope:global align:4
+mTI_move_Move = .text:0x0028F3D0; // type:function size:0x2C scope:global align:4
+mTI_move_Play = .text:0x0028F3FC; // type:function size:0x2B0 scope:global align:4
+mTI_move_End = .text:0x0028F6AC; // type:function size:0x5C scope:global align:4
+mTI_timeIn_ovl_move = .text:0x0028F708; // type:function size:0x68 scope:global align:4
+mTI_set_frame_dl = .text:0x0028F770; // type:function size:0x220 scope:global align:4
+mTI_set_clock = .text:0x0028F990; // type:function size:0x1F8 scope:global align:4
+mTI_set_character = .text:0x0028FB88; // type:function size:0x1FC scope:global align:4
+mTI_set_dl = .text:0x0028FD84; // type:function size:0xAC scope:global align:4
+mTI_timeIn_ovl_draw = .text:0x0028FE30; // type:function size:0x58 scope:global align:4
+mTI_timeIn_ovl_set_proc = .text:0x0028FE88; // type:function size:0x20 scope:global align:4
+mTI_timeIn_ovl_init = .text:0x0028FEA8; // type:function size:0x1A0 scope:global align:4
+mTI_timeIn_ovl_construct = .text:0x00290048; // type:function size:0x70 scope:global align:4
+mTI_timeIn_ovl_destruct = .text:0x002900B8; // type:function size:0x10 scope:global align:4
+mWR_move_Move = .text:0x002900C8; // type:function size:0x68 scope:global align:4
+mWR_move_Play = .text:0x00290130; // type:function size:0xF0 scope:global align:4
+mWR_move_End = .text:0x00290220; // type:function size:0x2C scope:global align:4
+mWR_warning_ovl_move = .text:0x0029024C; // type:function size:0xA0 scope:global align:4
+mWR_set_frame_dl = .text:0x002902EC; // type:function size:0x250 scope:global align:4
+mWR_set_strings = .text:0x0029053C; // type:function size:0x184 scope:global align:4
+mWR_set_dl = .text:0x002906C0; // type:function size:0x6C scope:global align:4
+mWR_warning_ovl_draw = .text:0x0029072C; // type:function size:0x58 scope:global align:4
+mWR_warning_ovl_set_proc = .text:0x00290784; // type:function size:0x20 scope:global align:4
+mWR_warning_ovl_init = .text:0x002907A4; // type:function size:0x34 scope:global align:4
+mWR_warning_ovl_construct = .text:0x002907D8; // type:function size:0x70 scope:global align:4
+mWR_warning_ovl_destruct = .text:0x00290848; // type:function size:0x10 scope:global align:4
+mPM_move_Move = .text:0x00290858; // type:function size:0x2C scope:global align:4
+mPM_move_Obey = .text:0x00290884; // type:function size:0x8C scope:global align:4
+mPM_move_End = .text:0x00290910; // type:function size:0x2C scope:global align:4
+mPM_passwordMake_ovl_move = .text:0x0029093C; // type:function size:0x68 scope:global align:4
+mPM_set_frame_dl = .text:0x002909A4; // type:function size:0x20C scope:global align:4
+mPM_set_character = .text:0x00290BB0; // type:function size:0x218 scope:global align:4
+mPM_set_dl = .text:0x00290DC8; // type:function size:0xAC scope:global align:4
+mPM_passwordMake_ovl_draw = .text:0x00290E74; // type:function size:0x58 scope:global align:4
+mPM_passwordMake_ovl_set_proc = .text:0x00290ECC; // type:function size:0x20 scope:global align:4
+mPM_passwordMake_ovl_init = .text:0x00290EEC; // type:function size:0x58 scope:global align:4
+mPM_passwordMake_ovl_construct = .text:0x00290F44; // type:function size:0x94 scope:global align:4
+mPM_passwordMake_ovl_destruct = .text:0x00290FD8; // type:function size:0x10 scope:global align:4
+mPC_move_Move = .text:0x00290FE8; // type:function size:0x2C scope:global align:4
+mPC_move_Obey = .text:0x00291014; // type:function size:0x8C scope:global align:4
+mPC_move_End = .text:0x002910A0; // type:function size:0x2C scope:global align:4
+mPC_passwordChk_ovl_move = .text:0x002910CC; // type:function size:0x68 scope:global align:4
+mPC_set_frame_dl = .text:0x00291134; // type:function size:0x144 scope:global align:4
+mPC_set_character = .text:0x00291278; // type:function size:0x20C scope:global align:4
+mPC_set_dl = .text:0x00291484; // type:function size:0x98 scope:global align:4
+mPC_passwordChk_ovl_draw = .text:0x0029151C; // type:function size:0x58 scope:global align:4
+mPC_passwordChk_ovl_set_proc = .text:0x00291574; // type:function size:0x20 scope:global align:4
+mPC_passwordChk_ovl_init = .text:0x00291594; // type:function size:0x58 scope:global align:4
+mPC_passwordChk_ovl_construct = .text:0x002915EC; // type:function size:0x98 scope:global align:4
+mPC_passwordChk_ovl_destruct = .text:0x00291684; // type:function size:0x10 scope:global align:4
+aWeather_SysLevCall_MoveEnd = .text:0x00291694; // type:function size:0x78 scope:global align:4
+aWeather_SysLevStart = .text:0x0029170C; // type:function size:0x20 scope:global align:4
+aWeather_SysLevStop = .text:0x0029172C; // type:function size:0x38 scope:global align:4
+aWeather_weatherinfo_CommonSet = .text:0x00291764; // type:function size:0x28 scope:global align:4
+aWeather_RequestChangeWeather = .text:0x0029178C; // type:function size:0x78 scope:global align:4
+aWeather_RequestChangeWeatherToIsland = .text:0x00291804; // type:function size:0x40 scope:global align:4
+aWeather_RequestChangeWeatherFromIsland = .text:0x00291844; // type:function size:0x44 scope:global align:4
+aWeather_GetWeatherPrvNum = .text:0x00291888; // type:function size:0x30 scope:global align:4
+aWeather_AbolishPrivate = .text:0x002918B8; // type:function size:0x2C scope:global align:4
+aWeather_GetWeatherPrv = .text:0x002918E4; // type:function size:0x98 scope:global align:4
+aWeather_StopSysLevSE = .text:0x0029197C; // type:function size:0x8C scope:global align:4
+aWeather_StartSysLevSE = .text:0x00291A08; // type:function size:0xC0 scope:global align:4
+aWeather_ChangeWeatherInstance = .text:0x00291AC8; // type:function size:0x90 scope:global align:4
+aWeather_IsLand_Event_Check = .text:0x00291B58; // type:function size:0x68 scope:global align:4
+aWeather_Basement_Event_Check = .text:0x00291BC0; // type:function size:0x24 scope:global align:4
+aWeather_ChangeEnvSE = .text:0x00291BE4; // type:function size:0x1A8 scope:global align:4
+aWeather_EndEnvSE = .text:0x00291D8C; // type:function size:0xE0 scope:global align:4
+aWeather_SetNowProfile = .text:0x00291E6C; // type:function size:0x64 scope:global align:4
+aWeather_SecureWeatherPrivateWork = .text:0x00291ED0; // type:function size:0x70 scope:global align:4
+aWeather_SetClip = .text:0x00291F40; // type:function size:0x90 scope:global align:4
+aWeather_RenewWindInfo = .text:0x00291FD0; // type:function size:0xBC scope:global align:4
+aWeather_SnowInAdvance = .text:0x0029208C; // type:function size:0x58 scope:global align:4
+Weather_Actor_ct = .text:0x002920E4; // type:function size:0x2A0 scope:global align:4
+Weather_Actor_dt = .text:0x00292384; // type:function size:0x44 scope:global align:4
+aWeather_DrawWeatherPrv = .text:0x002923C8; // type:function size:0xB4 scope:global align:4
+Weather_Actor_draw = .text:0x0029247C; // type:function size:0x20 scope:global align:4
+aWeather_MakeWeatherPrv = .text:0x0029249C; // type:function size:0x48 scope:global align:4
+aWeather_MoveWeatherPrv = .text:0x002924E4; // type:function size:0xBC scope:global align:4
+aWeather_CountWeatherPrivate = .text:0x002925A0; // type:function size:0x2C scope:global align:4
+aWeather_ChangeWeather = .text:0x002925CC; // type:function size:0xF8 scope:global align:4
+aWeather_CheckWeatherTimer = .text:0x002926C4; // type:function size:0x2C scope:global align:4
+aWeather_RenewWeatherLevel = .text:0x002926F0; // type:function size:0x7C scope:global align:4
+aWeather_ChangeWeatherTime0 = .text:0x0029276C; // type:function size:0x180 scope:global align:4
+aWeather_MakeKaminari = .text:0x002928EC; // type:function size:0x188 scope:global align:4
+Weather_Actor_move = .text:0x00292A74; // type:function size:0x114 scope:global align:4
+aWeather_ChangingWeather = .text:0x00292B88; // type:function size:0x40 scope:global align:4
+aWeatherRain_DecideMakeRainCount = .text:0x00292BC8; // type:function size:0x28 scope:global align:4
+aWeatherRain_make = .text:0x00292BF0; // type:function size:0x234 scope:global align:4
+aWeatherRain_ct = .text:0x00292E24; // type:function size:0x4 scope:global align:4
+aWeatherRain_MoveRain = .text:0x00292E28; // type:function size:0x34 scope:global align:4
+aWeatherRain_MakePicha = .text:0x00292E5C; // type:function size:0xF0 scope:global align:4
+aWeatherRain_set = .text:0x00292F4C; // type:function size:0x54 scope:global align:4
+aWeatherRain_move = .text:0x00292FA0; // type:function size:0xB8 scope:global align:4
+aWeatherRain_draw = .text:0x00293058; // type:function size:0x194 scope:global align:4
+aWeatherSnow_DecideMakeSnowCount = .text:0x002931EC; // type:function size:0x48 scope:global align:4
+aWeatherSnow_make = .text:0x00293234; // type:function size:0x1E0 scope:global align:4
+aWeatherSnow_ct = .text:0x00293414; // type:function size:0x4 scope:global align:4
+aWeatherSnow_CheckSnowBorder = .text:0x00293418; // type:function size:0x98 scope:global align:4
+aWeatherSnow_CheckSnowScroll = .text:0x002934B0; // type:function size:0x120 scope:global align:4
+aWeatherSnow_SetWind2Snow = .text:0x002935D0; // type:function size:0x58 scope:global align:4
+aWeatherSnow_move = .text:0x00293628; // type:function size:0x64 scope:global align:4
+aWeatherSnow_set = .text:0x0029368C; // type:function size:0x54 scope:global align:4
+aWeatherSnow_draw = .text:0x002936E0; // type:function size:0x1BC scope:global align:4
+aWeatherSakura_DecideMakeSakuraCount = .text:0x0029389C; // type:function size:0x34 scope:global align:4
+aWeatherSakura_make = .text:0x002938D0; // type:function size:0x1E0 scope:global align:4
+aWeatherSakura_ct = .text:0x00293AB0; // type:function size:0x88 scope:global align:4
+aWeatherSakura_CheckSakuraBorder = .text:0x00293B38; // type:function size:0xBC scope:global align:4
+aWeatherSakura_CheckSakuraScroll = .text:0x00293BF4; // type:function size:0xF8 scope:global align:4
+aWeatherSakura_SetWind2Sakura = .text:0x00293CEC; // type:function size:0x18 scope:global align:4
+aWeatherSakura_move = .text:0x00293D04; // type:function size:0x98 scope:global align:4
+aWeatherSakura_set = .text:0x00293D9C; // type:function size:0x54 scope:global align:4
+aWeatherSakura_draw = .text:0x00293DF0; // type:function size:0x174 scope:global align:4
+aWeatherLeaf_DecideMakeLeafCount = .text:0x00293F64; // type:function size:0x34 scope:global align:4
+aWeatherLeaf_make = .text:0x00293F98; // type:function size:0x1E0 scope:global align:4
+aWeatherLeaf_ct = .text:0x00294178; // type:function size:0x88 scope:global align:4
+aWeatherLeaf_CheckLeafBorder = .text:0x00294200; // type:function size:0xBC scope:global align:4
+aWeatherLeaf_CheckLeafScroll = .text:0x002942BC; // type:function size:0xF8 scope:global align:4
+aWeatherLeaf_SetWind2Leaf = .text:0x002943B4; // type:function size:0x18 scope:global align:4
+aWeatherLeaf_move = .text:0x002943CC; // type:function size:0x8C scope:global align:4
+aWeatherLeaf_set = .text:0x00294458; // type:function size:0x54 scope:global align:4
+aWeatherLeaf_draw = .text:0x002944AC; // type:function size:0x164 scope:global align:4
+eAmi_Mizu_init = .text:0x00294610; // type:function size:0x160 scope:global align:4
+eAmi_Mizu_ct = .text:0x00294770; // type:function size:0x74 scope:global align:4
+eAmi_Mizu_mv = .text:0x002947E4; // type:function size:0xDC scope:global align:4
+eAmi_Mizu_dw = .text:0x002948C0; // type:function size:0x134 scope:global align:4
+eAnahikari_init = .text:0x002949F4; // type:function size:0x98 scope:global align:4
+eAnahikari_ct = .text:0x00294A8C; // type:function size:0x44 scope:global align:4
+eAnahikari_mv = .text:0x00294AD0; // type:function size:0x40 scope:global align:4
+eAnahikari_dw = .text:0x00294B10; // type:function size:0x1C0 scope:global align:4
+eAS_init = .text:0x00294CD0; // type:function size:0xA0 scope:global align:4
+eAS_ct = .text:0x00294D70; // type:function size:0xC scope:global align:4
+eAS_mv = .text:0x00294D7C; // type:function size:0xBC scope:global align:4
+eAS_dw = .text:0x00294E38; // type:function size:0x4 scope:global align:4
+eAS2_init = .text:0x00294E3C; // type:function size:0xA0 scope:global align:4
+eAS2_ct = .text:0x00294EDC; // type:function size:0x28 scope:global align:4
+eAS2_mv = .text:0x00294F04; // type:function size:0x68 scope:global align:4
+eAS2_dw = .text:0x00294F6C; // type:function size:0x94 scope:global align:4
+eASC_DecideASCeDirect = .text:0x00295000; // type:function size:0x50 scope:global align:4
+eASC_SetAseGravity = .text:0x00295050; // type:function size:0x20 scope:global align:4
+eASC_init = .text:0x00295070; // type:function size:0x74 scope:global align:4
+eASC_ct = .text:0x002950E4; // type:function size:0x54 scope:global align:4
+eASC_mv = .text:0x00295138; // type:function size:0x48 scope:global align:4
+eASC_dw = .text:0x00295180; // type:function size:0xC8 scope:global align:4
+eBreak_Axe_init = .text:0x00295248; // type:function size:0x88 scope:global align:4
+eBreak_Axe_ct = .text:0x002952D0; // type:function size:0xAE0 scope:global align:4
+eBreak_Axe_mv = .text:0x00295DB0; // type:function size:0x454 scope:global align:4
+eBreak_Axe_dw = .text:0x00296204; // type:function size:0x280 scope:global align:4
+eBubu_init = .text:0x00296484; // type:function size:0x9C scope:global align:4
+eBubu_ct = .text:0x00296520; // type:function size:0x38 scope:global align:4
+eBubu_mv = .text:0x00296558; // type:function size:0x4 scope:global align:4
+eBubu_dw = .text:0x0029655C; // type:function size:0x74 scope:global align:4
+eBR_init = .text:0x002965D0; // type:function size:0xA0 scope:global align:4
+eBR_ct = .text:0x00296670; // type:function size:0x20 scope:global align:4
+eBR_mv = .text:0x00296690; // type:function size:0x5C scope:global align:4
+eBR_dw = .text:0x002966EC; // type:function size:0xD4 scope:global align:4
+eBushHappa_init = .text:0x002967C0; // type:function size:0xA0 scope:global align:4
+eBushHappa_ct = .text:0x00296860; // type:function size:0x35C scope:global align:4
+eBushHappa_mv = .text:0x00296BBC; // type:function size:0x1C0 scope:global align:4
+eBushHappa_dw = .text:0x00296D7C; // type:function size:0x2B8 scope:global align:4
+eBushYuki_init = .text:0x00297034; // type:function size:0x88 scope:global align:4
+eBushYuki_ct = .text:0x002970BC; // type:function size:0x120 scope:global align:4
+eBushYuki_mv = .text:0x002971DC; // type:function size:0x48 scope:global align:4
+eBushYuki_dw = .text:0x00297224; // type:function size:0xF0 scope:global align:4
+eCar_Blight_init = .text:0x00297314; // type:function size:0x7C scope:global align:4
+eCar_Blight_ct = .text:0x00297390; // type:function size:0x28 scope:global align:4
+eCar_Blight_light_control = .text:0x002973B8; // type:function size:0x94 scope:global align:4
+eCar_Blight_mv = .text:0x0029744C; // type:function size:0x100 scope:global align:4
+eCar_Blight_dw = .text:0x0029754C; // type:function size:0x1D8 scope:global align:4
+eCar_Light_init = .text:0x00297724; // type:function size:0x7C scope:global align:4
+eCar_Light_ct = .text:0x002977A0; // type:function size:0xC scope:global align:4
+eCar_Light_mv = .text:0x002977AC; // type:function size:0xB4 scope:global align:4
+eCar_Light_dw = .text:0x00297860; // type:function size:0x94 scope:global align:4
+eClacker_Make_Effect = .text:0x002978F4; // type:function size:0x138 scope:global align:4
+eClacker_init = .text:0x00297A2C; // type:function size:0xE8 scope:global align:4
+eClacker_ct = .text:0x00297B14; // type:function size:0xDC scope:global align:4
+eClacker_mv = .text:0x00297BF0; // type:function size:0x1C4 scope:global align:4
+eClacker_dw = .text:0x00297DB4; // type:function size:0x4 scope:global align:4
+eCoin_init = .text:0x00297DB8; // type:function size:0x7C scope:global align:4
+eCoin_GetFountainHeight = .text:0x00297E34; // type:function size:0x58 scope:global align:4
+eCoin_ct = .text:0x00297E8C; // type:function size:0x220 scope:global align:4
+eCoin_mv = .text:0x002980AC; // type:function size:0x220 scope:global align:4
+eCoin_dw = .text:0x002982CC; // type:function size:0x278 scope:global align:4
+eDahsAsimoto_GetMakeOffset = .text:0x00298544; // type:function size:0xB4 scope:global align:4
+eDashAsimoto_Hanabira_Make = .text:0x002985F8; // type:function size:0xDC scope:global align:4
+eDashAsimoto_RainDay = .text:0x002986D4; // type:function size:0x1A4 scope:global align:4
+eDashAsimoto_FineDay = .text:0x00298878; // type:function size:0x404 scope:global align:4
+eDashAsimoto_init = .text:0x00298C7C; // type:function size:0x88 scope:global align:4
+eDashAsimoto_ct = .text:0x00298D04; // type:function size:0x7C scope:global align:4
+eDashAsimoto_mv = .text:0x00298D80; // type:function size:0x4 scope:global align:4
+eDashAsimoto_dw = .text:0x00298D84; // type:function size:0x4 scope:global align:4
+eDig_Hole_init = .text:0x00298D88; // type:function size:0x120 scope:global align:4
+eDig_Hole_ct = .text:0x00298EA8; // type:function size:0x3A0 scope:global align:4
+eDig_Hole_mv = .text:0x00299248; // type:function size:0x210 scope:global align:4
+eDig_Hole_dw = .text:0x00299458; // type:function size:0x210 scope:global align:4
+eDig_Mud_init = .text:0x00299668; // type:function size:0x88 scope:global align:4
+eDig_Mud_ct = .text:0x002996F0; // type:function size:0x36C scope:global align:4
+eDig_Mud_mv = .text:0x00299A5C; // type:function size:0xCC scope:global align:4
+eDig_Mud_dw = .text:0x00299B28; // type:function size:0x19C scope:global align:4
+eDig_Scoop_init = .text:0x00299CC4; // type:function size:0x888 scope:global align:4
+eDig_Scoop_ct = .text:0x0029A54C; // type:function size:0xC scope:global align:4
+eDig_Scoop_mv = .text:0x0029A558; // type:function size:0x4 scope:global align:4
+eDig_Scoop_dw = .text:0x0029A55C; // type:function size:0x4 scope:global align:4
+eDouzou_Light_init = .text:0x0029A560; // type:function size:0x7C scope:global align:4
+eDouzou_Light_ct = .text:0x0029A5DC; // type:function size:0x70 scope:global align:4
+eDouzou_Light_mv = .text:0x0029A64C; // type:function size:0xB0 scope:global align:4
+eDouzou_Light_dw = .text:0x0029A6FC; // type:function size:0x130 scope:global align:4
+eDoyon_init = .text:0x0029A82C; // type:function size:0x88 scope:global align:4
+eDoyon_ct = .text:0x0029A8B4; // type:function size:0x154 scope:global align:4
+eDoyon_mv = .text:0x0029AA08; // type:function size:0x2B4 scope:global align:4
+eDoyon_dw = .text:0x0029ACBC; // type:function size:0x104 scope:global align:4
+eDT_init = .text:0x0029ADC0; // type:function size:0x358 scope:global align:4
+eDT_ct = .text:0x0029B118; // type:function size:0x54 scope:global align:4
+eDT_mv = .text:0x0029B16C; // type:function size:0x1F4 scope:global align:4
+eDT_dw = .text:0x0029B360; // type:function size:0x1AC scope:global align:4
+eFlash_init = .text:0x0029B50C; // type:function size:0x70 scope:global align:4
+eFlash_ct = .text:0x0029B57C; // type:function size:0xC0 scope:global align:4
+eFlash_mv = .text:0x0029B63C; // type:function size:0xCC scope:global align:4
+eFlash_dw = .text:0x0029B708; // type:function size:0xFC scope:global align:4
+eFlashC_init = .text:0x0029B804; // type:function size:0x70 scope:global align:4
+eFlashC_ct = .text:0x0029B874; // type:function size:0x14 scope:global align:4
+eFlashC_mv = .text:0x0029B888; // type:function size:0x17C scope:global align:4
+eFlashC_dw = .text:0x0029BA04; // type:function size:0x4 scope:global align:4
+eFootPrint_init = .text:0x0029BA08; // type:function size:0x8C scope:global align:4
+eFootPrint_GetAreaPos = .text:0x0029BA94; // type:function size:0x44 scope:global align:4
+eFootPrint_ct = .text:0x0029BAD8; // type:function size:0x220 scope:global align:4
+eFootPrint_mv = .text:0x0029BCF8; // type:function size:0x8C scope:global align:4
+eFootPrint_dw = .text:0x0029BD84; // type:function size:0x1F0 scope:global align:4
+eFuro_Yuge_init = .text:0x0029BF74; // type:function size:0x7C scope:global align:4
+eFuro_Yuge_ct = .text:0x0029BFF0; // type:function size:0x1A0 scope:global align:4
+eFuro_Yuge_mv = .text:0x0029C190; // type:function size:0x9C scope:global align:4
+eFuro_Yuge_dw = .text:0x0029C22C; // type:function size:0x2FC scope:global align:4
+eGM_init = .text:0x0029C528; // type:function size:0x110 scope:global align:4
+eGM_ct = .text:0x0029C638; // type:function size:0x20 scope:global align:4
+eGM_mv = .text:0x0029C658; // type:function size:0x38 scope:global align:4
+eGM_dw = .text:0x0029C690; // type:function size:0x194 scope:global align:4
+eGoki_init = .text:0x0029C824; // type:function size:0x7C scope:global align:4
+eGoki_ct = .text:0x0029C8A0; // type:function size:0x9C scope:global align:4
+eGoki_mv = .text:0x0029C93C; // type:function size:0x304 scope:global align:4
+eGoki_dw = .text:0x0029CC40; // type:function size:0x1A4 scope:global align:4
+eHA_init = .text:0x0029CDE4; // type:function size:0x78 scope:global align:4
+eHA_ct = .text:0x0029CE5C; // type:function size:0xCC scope:global align:4
+eHA_mv = .text:0x0029CF28; // type:function size:0x34 scope:global align:4
+eHA_dw = .text:0x0029CF5C; // type:function size:0x248 scope:global align:4
+eHalloween_init = .text:0x0029D1A4; // type:function size:0x88 scope:global align:4
+eHalloween_ct = .text:0x0029D22C; // type:function size:0x3C scope:global align:4
+eHalloween_mv = .text:0x0029D268; // type:function size:0x140 scope:global align:4
+eHalloween_dw = .text:0x0029D3A8; // type:function size:0x4 scope:global align:4
+eHalloween_Smoke_init = .text:0x0029D3AC; // type:function size:0x88 scope:global align:4
+eHalloween_Smoke_ct = .text:0x0029D434; // type:function size:0x9C scope:global align:4
+eHalloween_Smoke_mv = .text:0x0029D4D0; // type:function size:0x48 scope:global align:4
+eHalloween_Smoke_dw = .text:0x0029D518; // type:function size:0x118 scope:global align:4
+eHanabiBotan1_init = .text:0x0029D630; // type:function size:0x7C scope:global align:4
+eHanabiBotan1_ct = .text:0x0029D6AC; // type:function size:0x8C scope:global align:4
+eHanabiBotan1_mv = .text:0x0029D738; // type:function size:0x2D8 scope:global align:4
+eHanabiBotan1_dw = .text:0x0029DA10; // type:function size:0x2A0 scope:global align:4
+eHanabiBotan2_init = .text:0x0029DCB0; // type:function size:0x7C scope:global align:4
+eHanabiBotan2_ct = .text:0x0029DD2C; // type:function size:0x8C scope:global align:4
+eHanabiBotan2_mv = .text:0x0029DDB8; // type:function size:0x2D0 scope:global align:4
+eHanabiBotan2_dw = .text:0x0029E088; // type:function size:0x3A8 scope:global align:4
+eHanabiDummy_init = .text:0x0029E430; // type:function size:0x7C scope:global align:4
+eHanabiDummy_ct = .text:0x0029E4AC; // type:function size:0x50 scope:global align:4
+eHanabiDummy_mv = .text:0x0029E4FC; // type:function size:0x210 scope:global align:4
+eHanabiDummy_dw = .text:0x0029E70C; // type:function size:0x4 scope:global align:4
+eHanabiHoshi_init = .text:0x0029E710; // type:function size:0x7C scope:global align:4
+eHanabiHoshi_ct = .text:0x0029E78C; // type:function size:0x8C scope:global align:4
+eHanabiHoshi_mv = .text:0x0029E818; // type:function size:0x2D8 scope:global align:4
+eHanabiHoshi_dw = .text:0x0029EAF0; // type:function size:0x2A0 scope:global align:4
+eHanabiSet_SearchNicePos = .text:0x0029ED90; // type:function size:0x158 scope:global align:4
+eHanabiSet_init = .text:0x0029EEE8; // type:function size:0xA0 scope:global align:4
+eHanabiSet_ct = .text:0x0029EF88; // type:function size:0xBC scope:global align:4
+eHanabiSet_mv = .text:0x0029F044; // type:function size:0x1D8 scope:global align:4
+eHanabiSet_dw = .text:0x0029F21C; // type:function size:0x4 scope:global align:4
+eHanabiSwitch_SearchLakePos = .text:0x0029F220; // type:function size:0xEC scope:global align:4
+eHanabiSwitch_init = .text:0x0029F30C; // type:function size:0x74 scope:global align:4
+eHanabiSwitch_ct = .text:0x0029F380; // type:function size:0x50 scope:global align:4
+eHanabiSwitch_mv = .text:0x0029F3D0; // type:function size:0x1CC scope:global align:4
+eHanabiSwitch_dw = .text:0x0029F59C; // type:function size:0x4 scope:global align:4
+eHanabiYanagi_init = .text:0x0029F5A0; // type:function size:0x7C scope:global align:4
+eHanabiYanagi_ct = .text:0x0029F61C; // type:function size:0x48 scope:global align:4
+eHanabiYanagi_mv = .text:0x0029F664; // type:function size:0x2C0 scope:global align:4
+eHanabiYanagi_dw = .text:0x0029F924; // type:function size:0x3A4 scope:global align:4
+eHanabira_init = .text:0x0029FCC8; // type:function size:0x7C scope:global align:4
+eHanabira_ct = .text:0x0029FD44; // type:function size:0x148 scope:global align:4
+eHanabira_mv = .text:0x0029FE8C; // type:function size:0xF8 scope:global align:4
+eHanabira_dw = .text:0x0029FF84; // type:function size:0x24C scope:global align:4
+eHanatiri_init = .text:0x002A01D0; // type:function size:0x7C scope:global align:4
+eHanatiri_ct = .text:0x002A024C; // type:function size:0x120 scope:global align:4
+eHanatiri_mv = .text:0x002A036C; // type:function size:0x4 scope:global align:4
+eHanatiri_dw = .text:0x002A0370; // type:function size:0x4 scope:global align:4
+eHiramekiD_init = .text:0x002A0374; // type:function size:0x104 scope:global align:4
+eHiramekiD_ct = .text:0x002A0478; // type:function size:0x38 scope:global align:4
+eHiramekiD_mv = .text:0x002A04B0; // type:function size:0x38 scope:global align:4
+eHiramekiD_dw = .text:0x002A04E8; // type:function size:0x18C scope:global align:4
+eHiramekiH_init = .text:0x002A0674; // type:function size:0x9C scope:global align:4
+eHiramekiH_ct = .text:0x002A0710; // type:function size:0x20 scope:global align:4
+eHiramekiH_mv = .text:0x002A0730; // type:function size:0x4 scope:global align:4
+eHiramekiH_dw = .text:0x002A0734; // type:function size:0x154 scope:global align:4
+eIkigire_init = .text:0x002A0888; // type:function size:0x168 scope:global align:4
+eIkigire_ct = .text:0x002A09F0; // type:function size:0xC scope:global align:4
+eIkigire_mv = .text:0x002A09FC; // type:function size:0x4 scope:global align:4
+eIkigire_dw = .text:0x002A0A00; // type:function size:0x4 scope:global align:4
+eImpact_Star_init = .text:0x002A0A04; // type:function size:0x88 scope:global align:4
+eImpact_Star_ct = .text:0x002A0A8C; // type:function size:0x260 scope:global align:4
+eImpact_Star_mv = .text:0x002A0CEC; // type:function size:0x178 scope:global align:4
+eImpact_Star_dw = .text:0x002A0E64; // type:function size:0x164 scope:global align:4
+eKagu_Happa_init = .text:0x002A0FC8; // type:function size:0x7C scope:global align:4
+eKagu_Happa_ct = .text:0x002A1044; // type:function size:0x108 scope:global align:4
+eKagu_Happa_mv = .text:0x002A114C; // type:function size:0x254 scope:global align:4
+eKagu_Happa_dw = .text:0x002A13A0; // type:function size:0x164 scope:global align:4
+eKamifubuki_init = .text:0x002A1504; // type:function size:0x88 scope:global align:4
+eKamifubuki_ct = .text:0x002A158C; // type:function size:0x228 scope:global align:4
+eKamifubuki_mv = .text:0x002A17B4; // type:function size:0x210 scope:global align:4
+eKamifubuki_one_draw = .text:0x002A19C4; // type:function size:0x110 scope:global align:4
+eKamifubuki_dw = .text:0x002A1AD4; // type:function size:0x134 scope:global align:4
+eKG_init = .text:0x002A1C08; // type:function size:0x140 scope:global align:4
+eKG_ct = .text:0x002A1D48; // type:function size:0x30 scope:global align:4
+eKG_mv = .text:0x002A1D78; // type:function size:0x12C scope:global align:4
+eKG_dw = .text:0x002A1EA4; // type:function size:0x3B0 scope:global align:4
+eKT_init = .text:0x002A2254; // type:function size:0x120 scope:global align:4
+eKT_ct = .text:0x002A2374; // type:function size:0x30 scope:global align:4
+eKT_mv = .text:0x002A23A4; // type:function size:0x4 scope:global align:4
+eKT_dw = .text:0x002A23A8; // type:function size:0x16C scope:global align:4
+eKasamizu_init = .text:0x002A2514; // type:function size:0x88 scope:global align:4
+eKasamizu_ct = .text:0x002A259C; // type:function size:0x6C scope:global align:4
+eKasamizu_mv = .text:0x002A2608; // type:function size:0xAC scope:global align:4
+eKasamizu_dw = .text:0x002A26B4; // type:function size:0x4 scope:global align:4
+eKasamizutama_init = .text:0x002A26B8; // type:function size:0x88 scope:global align:4
+eKasamizutama_ct = .text:0x002A2740; // type:function size:0x124 scope:global align:4
+eKasamizutama_mv = .text:0x002A2864; // type:function size:0x48 scope:global align:4
+eKasamizutama_dw = .text:0x002A28AC; // type:function size:0xE8 scope:global align:4
+eKZ_init = .text:0x002A2994; // type:function size:0x78 scope:global align:4
+eKZ_ct = .text:0x002A2A0C; // type:function size:0xE0 scope:global align:4
+eKZ_mv = .text:0x002A2AEC; // type:function size:0xD4 scope:global align:4
+eKZ_dw = .text:0x002A2BC0; // type:function size:0x260 scope:global align:4
+eKZH_init = .text:0x002A2E20; // type:function size:0x84 scope:global align:4
+eKZH_ct = .text:0x002A2EA4; // type:function size:0xFC scope:global align:4
+eKZH_mv = .text:0x002A2FA0; // type:function size:0x1BC scope:global align:4
+eKZH_dw = .text:0x002A315C; // type:function size:0x214 scope:global align:4
+eKigae_init = .text:0x002A3370; // type:function size:0x88 scope:global align:4
+eKigae_ct = .text:0x002A33F8; // type:function size:0x18 scope:global align:4
+eKigae_mv = .text:0x002A3410; // type:function size:0x184 scope:global align:4
+eKigae_dw = .text:0x002A3594; // type:function size:0x4 scope:global align:4
+eKigae_Light_init = .text:0x002A3598; // type:function size:0x1D0 scope:global align:4
+eKigae_Light_ct = .text:0x002A3768; // type:function size:0x74 scope:global align:4
+eKigae_Light_mv = .text:0x002A37DC; // type:function size:0xD8 scope:global align:4
+eKigae_Light_dw = .text:0x002A38B4; // type:function size:0xB8 scope:global align:4
+eKikuzu_init = .text:0x002A396C; // type:function size:0x88 scope:global align:4
+eKikuzu_ct = .text:0x002A39F4; // type:function size:0x20C scope:global align:4
+eKikuzu_mv = .text:0x002A3C00; // type:function size:0x1A0 scope:global align:4
+eKikuzu_dw = .text:0x002A3DA0; // type:function size:0x130 scope:global align:4
+eKL_init = .text:0x002A3ED0; // type:function size:0x74 scope:global align:4
+eKL_ct = .text:0x002A3F44; // type:function size:0x30C scope:global align:4
+eKL_mv = .text:0x002A4250; // type:function size:0x260 scope:global align:4
+eKL_dw = .text:0x002A44B0; // type:function size:0xC4 scope:global align:4
+eKishaK_init = .text:0x002A4574; // type:function size:0x70 scope:global align:4
+eKishaK_ct = .text:0x002A45E4; // type:function size:0xE4 scope:global align:4
+eKishaK_mv = .text:0x002A46C8; // type:function size:0xA0 scope:global align:4
+eKishaK_dw = .text:0x002A4768; // type:function size:0x130 scope:global align:4
+eKONP_init = .text:0x002A4898; // type:function size:0x88 scope:global align:4
+eKONP_ct = .text:0x002A4920; // type:function size:0x394 scope:global align:4
+eKONP_mv = .text:0x002A4CB4; // type:function size:0xD4 scope:global align:4
+eKONP_dw = .text:0x002A4D88; // type:function size:0x2F8 scope:global align:4
+eKPun_init = .text:0x002A5080; // type:function size:0x190 scope:global align:4
+eKPun_ct = .text:0x002A5210; // type:function size:0x84 scope:global align:4
+eKPun_mv = .text:0x002A5294; // type:function size:0x2C scope:global align:4
+eKPun_dw = .text:0x002A52C0; // type:function size:0x300 scope:global align:4
+eKyousou_Onpu_init = .text:0x002A55C0; // type:function size:0xF0 scope:global align:4
+eKyousou_Onpu_ct = .text:0x002A56B0; // type:function size:0xC scope:global align:4
+eKyousou_Onpu_mv = .text:0x002A56BC; // type:function size:0x4 scope:global align:4
+eKyousou_Onpu_dw = .text:0x002A56C0; // type:function size:0x4 scope:global align:4
+eLove_init = .text:0x002A56C4; // type:function size:0x9C scope:global align:4
+eLove_ct = .text:0x002A5760; // type:function size:0xC scope:global align:4
+eLove_mv = .text:0x002A576C; // type:function size:0xC4 scope:global align:4
+eLove_dw = .text:0x002A5830; // type:function size:0x4 scope:global align:4
+eLL2_init = .text:0x002A5834; // type:function size:0xA0 scope:global align:4
+eLL2_ct = .text:0x002A58D4; // type:function size:0x94 scope:global align:4
+eLL2_mv = .text:0x002A5968; // type:function size:0x84 scope:global align:4
+eLL2_dw = .text:0x002A59EC; // type:function size:0x238 scope:global align:4
+eLoveH_init = .text:0x002A5C24; // type:function size:0x74 scope:global align:4
+eLoveH_ct = .text:0x002A5C98; // type:function size:0x90 scope:global align:4
+eLoveH_mv = .text:0x002A5D28; // type:function size:0xAC scope:global align:4
+eLoveH_dw = .text:0x002A5DD4; // type:function size:0x234 scope:global align:4
+eMH_init = .text:0x002A6008; // type:function size:0x7C scope:global align:4
+eMH_ct = .text:0x002A6084; // type:function size:0x1A4 scope:global align:4
+eMH_mv = .text:0x002A6228; // type:function size:0x424 scope:global align:4
+eMH_dw = .text:0x002A664C; // type:function size:0x100 scope:global align:4
+eMHK_init = .text:0x002A674C; // type:function size:0x7C scope:global align:4
+eMHK_ct = .text:0x002A67C8; // type:function size:0xC4 scope:global align:4
+eMHK_mv = .text:0x002A688C; // type:function size:0x13C scope:global align:4
+eMHK_dw = .text:0x002A69C8; // type:function size:0xFC scope:global align:4
+eMHL_init = .text:0x002A6AC4; // type:function size:0x7C scope:global align:4
+eMHL_ct = .text:0x002A6B40; // type:function size:0x64 scope:global align:4
+eMHL_mv = .text:0x002A6BA4; // type:function size:0x1C4 scope:global align:4
+eMHL_dw = .text:0x002A6D68; // type:function size:0xFC scope:global align:4
+eMizutama_init = .text:0x002A6E64; // type:function size:0x88 scope:global align:4
+eMizutama_ct = .text:0x002A6EEC; // type:function size:0x224 scope:global align:4
+eMizutama_mv = .text:0x002A7110; // type:function size:0x240 scope:global align:4
+eMizutama_dw = .text:0x002A7350; // type:function size:0x120 scope:global align:4
+eMotiyuge_init = .text:0x002A7470; // type:function size:0x7C scope:global align:4
+eMotiyuge_ct = .text:0x002A74EC; // type:function size:0x7C scope:global align:4
+eMotiyuge_mv = .text:0x002A7568; // type:function size:0x150 scope:global align:4
+eMotiyuge_dw = .text:0x002A76B8; // type:function size:0x168 scope:global align:4
+eMK_init = .text:0x002A7820; // type:function size:0x78 scope:global align:4
+eMK_ct = .text:0x002A7898; // type:function size:0xBC scope:global align:4
+eMK_mv = .text:0x002A7954; // type:function size:0x4 scope:global align:4
+eMK_dw = .text:0x002A7958; // type:function size:0x1A4 scope:global align:4
+eNaku_init = .text:0x002A7AFC; // type:function size:0x124 scope:global align:4
+eNaku_ct = .text:0x002A7C20; // type:function size:0x1C scope:global align:4
+eNaku_mv = .text:0x002A7C3C; // type:function size:0xE0 scope:global align:4
+eNaku_dw = .text:0x002A7D1C; // type:function size:0x4 scope:global align:4
+eNamida_init = .text:0x002A7D20; // type:function size:0x104 scope:global align:4
+eNamida_ct = .text:0x002A7E24; // type:function size:0xD8 scope:global align:4
+eNamida_mv = .text:0x002A7EFC; // type:function size:0xF8 scope:global align:4
+eNamida_dw = .text:0x002A7FF4; // type:function size:0x120 scope:global align:4
+eNebo_init = .text:0x002A8114; // type:function size:0x78 scope:global align:4
+eNebo_ct = .text:0x002A818C; // type:function size:0x14 scope:global align:4
+eNebo_mv = .text:0x002A81A0; // type:function size:0x18C scope:global align:4
+eNebo_dw = .text:0x002A832C; // type:function size:0x4 scope:global align:4
+eNeboke_Akubi_init = .text:0x002A8330; // type:function size:0x88 scope:global align:4
+eNeboke_Akubi_ct = .text:0x002A83B8; // type:function size:0x1E0 scope:global align:4
+eNeboke_Akubi_mv = .text:0x002A8598; // type:function size:0x54 scope:global align:4
+eNeboke_Akubi_dw = .text:0x002A85EC; // type:function size:0x188 scope:global align:4
+eSleep_init = .text:0x002A8774; // type:function size:0x88 scope:global align:4
+eSleep_ct = .text:0x002A87FC; // type:function size:0x15C scope:global align:4
+eSleep_mv = .text:0x002A8958; // type:function size:0x14C scope:global align:4
+eSleep_dw = .text:0x002A8AA4; // type:function size:0x170 scope:global align:4
+eNight13Moon_GetPoolBlockCenter = .text:0x002A8C14; // type:function size:0xE0 scope:global align:4
+eNight13Moon_GetNowMoonPos = .text:0x002A8CF4; // type:function size:0x14C scope:global align:4
+eNight13Moon_init = .text:0x002A8E40; // type:function size:0x74 scope:global align:4
+eNight13Moon_ct = .text:0x002A8EB4; // type:function size:0xF4 scope:global align:4
+eNight13Moon_mv = .text:0x002A8FA8; // type:function size:0x134 scope:global align:4
+eNight13Moon_dw = .text:0x002A90DC; // type:function size:0x1D0 scope:global align:4
+eNight15Moon_GetPoolBlockCenter = .text:0x002A92AC; // type:function size:0xE0 scope:global align:4
+eNight15Moon_GetNowMoonPos = .text:0x002A938C; // type:function size:0x128 scope:global align:4
+eNight15Moon_init = .text:0x002A94B4; // type:function size:0x74 scope:global align:4
+eNight15Moon_ct = .text:0x002A9528; // type:function size:0xF4 scope:global align:4
+eNight15Moon_mv = .text:0x002A961C; // type:function size:0x134 scope:global align:4
+eNight15Moon_dw = .text:0x002A9750; // type:function size:0x1D0 scope:global align:4
+eOngen_init = .text:0x002A9920; // type:function size:0x7C scope:global align:4
+eOngen_ct = .text:0x002A999C; // type:function size:0x1C scope:global align:4
+eOngen_mv = .text:0x002A99B8; // type:function size:0x4 scope:global align:4
+eOngen_TidyArgData = .text:0x002A99BC; // type:function size:0x2C scope:global align:4
+eOngen_dw = .text:0x002A99E8; // type:function size:0x110 scope:global align:4
+eOMN_init = .text:0x002A9AF8; // type:function size:0x78 scope:global align:4
+eOMN_ct = .text:0x002A9B70; // type:function size:0x5C scope:global align:4
+eOMN_mv = .text:0x002A9BCC; // type:function size:0x110 scope:global align:4
+eOMN_dw = .text:0x002A9CDC; // type:function size:0x55C scope:global align:4
+eOtosiana_init = .text:0x002AA238; // type:function size:0x7C scope:global align:4
+eOtosiana_ct = .text:0x002AA2B4; // type:function size:0xC scope:global align:4
+eOtosiana_mv = .text:0x002AA2C0; // type:function size:0xE4 scope:global align:4
+eOtosiana_dw = .text:0x002AA3A4; // type:function size:0x4 scope:global align:4
+ePun_init = .text:0x002AA3A8; // type:function size:0x78 scope:global align:4
+ePun_ct = .text:0x002AA420; // type:function size:0x14 scope:global align:4
+ePun_mv = .text:0x002AA434; // type:function size:0x144 scope:global align:4
+ePun_dw = .text:0x002AA578; // type:function size:0x4 scope:global align:4
+ePunRed_init = .text:0x002AA57C; // type:function size:0xA8 scope:global align:4
+ePunRed_ct = .text:0x002AA624; // type:function size:0x20 scope:global align:4
+ePunRed_mv = .text:0x002AA644; // type:function size:0x4 scope:global align:4
+ePunRed_dw = .text:0x002AA648; // type:function size:0x130 scope:global align:4
+ePunYuge_init = .text:0x002AA778; // type:function size:0xA0 scope:global align:4
+ePunYuge_ct = .text:0x002AA818; // type:function size:0x8C scope:global align:4
+ePunYuge_mv = .text:0x002AA8A4; // type:function size:0x2C scope:global align:4
+ePunYuge_dw = .text:0x002AA8D0; // type:function size:0x324 scope:global align:4
+eReset_Hole_init = .text:0x002AABF4; // type:function size:0x9C scope:global align:4
+eReset_Hole_ct = .text:0x002AAC90; // type:function size:0xC8 scope:global align:4
+eReset_Hole_mv = .text:0x002AAD58; // type:function size:0x36C scope:global align:4
+eReset_Hole_dw = .text:0x002AB0C4; // type:function size:0x100 scope:global align:4
+eSandsplash_init = .text:0x002AB1C4; // type:function size:0xB8 scope:global align:4
+eSandsplash_ct = .text:0x002AB27C; // type:function size:0x1E4 scope:global align:4
+eSandsplash_mv = .text:0x002AB460; // type:function size:0x88 scope:global align:4
+eSandsplash_dw = .text:0x002AB4E8; // type:function size:0x1AC scope:global align:4
+eSK_init = .text:0x002AB694; // type:function size:0xE0 scope:global align:4
+eSK_ct = .text:0x002AB774; // type:function size:0x54 scope:global align:4
+eSK_mv = .text:0x002AB7C8; // type:function size:0x38 scope:global align:4
+eSK_dw = .text:0x002AB800; // type:function size:0x11C scope:global align:4
+eShooting_init = .text:0x002AB91C; // type:function size:0x70 scope:global align:4
+eShooting_ct = .text:0x002AB98C; // type:function size:0x64 scope:global align:4
+eShooting_mv = .text:0x002AB9F0; // type:function size:0xA8 scope:global align:4
+eShooting_GetTwoTileGfx = .text:0x002ABA98; // type:function size:0x5C scope:global align:4
+eShooting_dw = .text:0x002ABAF4; // type:function size:0x184 scope:global align:4
+eShootingKira_init = .text:0x002ABC78; // type:function size:0x70 scope:global align:4
+eShootingKira_ct = .text:0x002ABCE8; // type:function size:0x138 scope:global align:4
+eShootingKira_mv = .text:0x002ABE20; // type:function size:0x228 scope:global align:4
+eShootingKira_dw = .text:0x002AC048; // type:function size:0x270 scope:global align:4
+eShootingSet_SearchNicePos = .text:0x002AC2B8; // type:function size:0xE4 scope:global align:4
+eShootingSet_init = .text:0x002AC39C; // type:function size:0xA4 scope:global align:4
+eShooting_AdjustValue = .text:0x002AC440; // type:function size:0x80 scope:global align:4
+eShootingSet_GetFrame_MakeNextShooting = .text:0x002AC4C0; // type:function size:0x100 scope:global align:4
+eShootingSet_ct = .text:0x002AC5C0; // type:function size:0x40 scope:global align:4
+eShootingSet_mv = .text:0x002AC600; // type:function size:0x2E4 scope:global align:4
+eShootingSet_dw = .text:0x002AC8E4; // type:function size:0x4 scope:global align:4
+eSSHN_init = .text:0x002AC8E8; // type:function size:0x9C scope:global align:4
+eSSHN_ct = .text:0x002AC984; // type:function size:0xE4 scope:global align:4
+eSSHN_mv = .text:0x002ACA68; // type:function size:0xD8 scope:global align:4
+eSSHN_dw = .text:0x002ACB40; // type:function size:0x4 scope:global align:4
+eSSHNC_init = .text:0x002ACB44; // type:function size:0x7C scope:global align:4
+eSSHNC_ct = .text:0x002ACBC0; // type:function size:0x144 scope:global align:4
+eSSHNC_mv = .text:0x002ACD04; // type:function size:0x110 scope:global align:4
+eSSHNC_dw = .text:0x002ACE14; // type:function size:0x1B0 scope:global align:4
+eSSHKR_init = .text:0x002ACFC4; // type:function size:0x110 scope:global align:4
+eSSHKR_ct = .text:0x002AD0D4; // type:function size:0x28 scope:global align:4
+eSSHKR_mv = .text:0x002AD0FC; // type:function size:0x130 scope:global align:4
+eSSHKR_dw = .text:0x002AD22C; // type:function size:0xC0 scope:global align:4
+eSibuki_init = .text:0x002AD2EC; // type:function size:0xB4 scope:global align:4
+eSibuki_ct = .text:0x002AD3A0; // type:function size:0x48 scope:global align:4
+eSibuki_mv = .text:0x002AD3E8; // type:function size:0x4 scope:global align:4
+eSibuki_dw = .text:0x002AD3EC; // type:function size:0x234 scope:global align:4
+eSN_init = .text:0x002AD620; // type:function size:0x120 scope:global align:4
+eSN_ct = .text:0x002AD740; // type:function size:0x74 scope:global align:4
+eSN_mv = .text:0x002AD7B4; // type:function size:0x38 scope:global align:4
+eSN_dw = .text:0x002AD7EC; // type:function size:0x2C0 scope:global align:4
+eSlip_init = .text:0x002ADAAC; // type:function size:0x5D8 scope:global align:4
+eSlip_ct = .text:0x002AE084; // type:function size:0xC scope:global align:4
+eSlip_mv = .text:0x002AE090; // type:function size:0x4 scope:global align:4
+eSlip_dw = .text:0x002AE094; // type:function size:0x4 scope:global align:4
+eSlipFootPrint_init = .text:0x002AE098; // type:function size:0xE8 scope:global align:4
+eSlipFootPrint_GetAreaPos = .text:0x002AE180; // type:function size:0x44 scope:global align:4
+eSlipFootPrint_ct = .text:0x002AE1C4; // type:function size:0x1BC scope:global align:4
+eSlipFootPrint_mv = .text:0x002AE380; // type:function size:0x4 scope:global align:4
+eSlipFootPrint_dw = .text:0x002AE384; // type:function size:0x1C0 scope:global align:4
+eSoba_Yuge_init = .text:0x002AE544; // type:function size:0x7C scope:global align:4
+eSoba_Yuge_ct = .text:0x002AE5C0; // type:function size:0x1B4 scope:global align:4
+eSoba_Yuge_mv = .text:0x002AE774; // type:function size:0x9C scope:global align:4
+eSoba_Yuge_dw = .text:0x002AE810; // type:function size:0x400 scope:global align:4
+eSteam_init = .text:0x002AEC10; // type:function size:0x88 scope:global align:4
+eSteam_ct = .text:0x002AEC98; // type:function size:0xC8 scope:global align:4
+eSteam_mv = .text:0x002AED60; // type:function size:0x178 scope:global align:4
+eSteam_dw = .text:0x002AEED8; // type:function size:0x170 scope:global align:4
+eString_init = .text:0x002AF048; // type:function size:0x78 scope:global align:4
+eString_ct = .text:0x002AF0C0; // type:function size:0x14 scope:global align:4
+eString_mv = .text:0x002AF0D4; // type:function size:0x4 scope:global align:4
+eString_dw = .text:0x002AF0D8; // type:function size:0x100 scope:global align:4
+eSuisou_Awa_init = .text:0x002AF1D8; // type:function size:0x7C scope:global align:4
+eSuisou_Awa_ct = .text:0x002AF254; // type:function size:0x144 scope:global align:4
+suisou_awa_BGCheck = .text:0x002AF398; // type:function size:0xA8 scope:global align:4
+eSuisou_Awa_mv = .text:0x002AF440; // type:function size:0x38C scope:global align:4
+eSuisou_Awa_dw = .text:0x002AF7CC; // type:function size:0x190 scope:global align:4
+eSwing_Axe_Hanabira_Make = .text:0x002AF95C; // type:function size:0xDC scope:global align:4
+eSwing_Axe_init = .text:0x002AFA38; // type:function size:0x2D4 scope:global align:4
+eSwing_Axe_ct = .text:0x002AFD0C; // type:function size:0x34 scope:global align:4
+eSwing_Axe_mv = .text:0x002AFD40; // type:function size:0x4 scope:global align:4
+eSwing_Axe_dw = .text:0x002AFD44; // type:function size:0x4 scope:global align:4
+eSwing_Net_Hanabira_Make = .text:0x002AFD48; // type:function size:0xDC scope:global align:4
+eSwing_Net_call_effect = .text:0x002AFE24; // type:function size:0x170 scope:global align:4
+eSwing_Net_call_stick_effect = .text:0x002AFF94; // type:function size:0x12C scope:global align:4
+eSwing_Net_init = .text:0x002B00C0; // type:function size:0x2DC scope:global align:4
+eSwing_Net_ct = .text:0x002B039C; // type:function size:0x48 scope:global align:4
+eSwing_Net_mv = .text:0x002B03E4; // type:function size:0x4 scope:global align:4
+eSwing_Net_dw = .text:0x002B03E8; // type:function size:0x4 scope:global align:4
+eSwing_Rod_init = .text:0x002B03EC; // type:function size:0x184 scope:global align:4
+eSwing_Rod_ct = .text:0x002B0570; // type:function size:0xC scope:global align:4
+eSwing_Rod_mv = .text:0x002B057C; // type:function size:0x4 scope:global align:4
+eSwing_Rod_dw = .text:0x002B0580; // type:function size:0x4 scope:global align:4
+eTaberu_init = .text:0x002B0584; // type:function size:0x9C scope:global align:4
+eTaberu_ct = .text:0x002B0620; // type:function size:0x110 scope:global align:4
+eTaberu_mv = .text:0x002B0730; // type:function size:0x10 scope:global align:4
+eTaberu_dw = .text:0x002B0740; // type:function size:0x94 scope:global align:4
+eTM_init = .text:0x002B07D4; // type:function size:0x148 scope:local align:4
+eTM_ct = .text:0x002B091C; // type:function size:0x140 scope:local align:4
+eTM_mv = .text:0x002B0A5C; // type:function size:0xB8 scope:local align:4
+eTM_dw = .text:0x002B0B14; // type:function size:0x124 scope:local align:4
+eTMK_init = .text:0x002B0C38; // type:function size:0x1D0 scope:global align:4
+eTMK_ct = .text:0x002B0E08; // type:function size:0x20 scope:global align:4
+eTMK_mv = .text:0x002B0E28; // type:function size:0xC0 scope:global align:4
+eTMK_dw = .text:0x002B0EE8; // type:function size:0xC0 scope:global align:4
+eTamaire_init = .text:0x002B0FA8; // type:function size:0x88 scope:global align:4
+eTamaire_ct = .text:0x002B1030; // type:function size:0x1B0 scope:global align:4
+eTamaire_mv = .text:0x002B11E0; // type:function size:0x64C scope:global align:4
+eTamaire_dw = .text:0x002B182C; // type:function size:0x28C scope:global align:4
+eTape_init = .text:0x002B1AB8; // type:function size:0x88 scope:global align:4
+eTape_ct = .text:0x002B1B40; // type:function size:0xEC scope:global align:4
+eTape_mv = .text:0x002B1C2C; // type:function size:0x184 scope:global align:4
+eTape_dw = .text:0x002B1DB0; // type:function size:0x2AC scope:global align:4
+eTL_init = .text:0x002B205C; // type:function size:0x7C scope:global align:4
+eTL_GetNiceSwitchStat = .text:0x002B20D8; // type:function size:0x38 scope:global align:4
+eTL_ct = .text:0x002B2110; // type:function size:0x90 scope:global align:4
+eTL_mv = .text:0x002B21A0; // type:function size:0xC8 scope:global align:4
+eTL_dw = .text:0x002B2268; // type:function size:0xFC scope:global align:4
+eTumble_Hanabira_Make = .text:0x002B2364; // type:function size:0xDC scope:global align:4
+eTumble_CallEffect = .text:0x002B2440; // type:function size:0x6F4 scope:global align:4
+eTumble_init = .text:0x002B2B34; // type:function size:0xC8 scope:global align:4
+eTumble_ct = .text:0x002B2BFC; // type:function size:0x34 scope:global align:4
+eTumble_mv = .text:0x002B2C30; // type:function size:0x4 scope:global align:4
+eTumble_dw = .text:0x002B2C34; // type:function size:0x4 scope:global align:4
+eTumbleBodyPrint_init = .text:0x002B2C38; // type:function size:0x88 scope:global align:4
+eTumbleBodyPrint_ct = .text:0x002B2CC0; // type:function size:0x22C scope:global align:4
+eTumbleBodyPrint_mv = .text:0x002B2EEC; // type:function size:0xCC scope:global align:4
+eTumbleBodyPrint_dw = .text:0x002B2FB8; // type:function size:0x1D4 scope:global align:4
+eTumbleDust_init = .text:0x002B318C; // type:function size:0x1EC scope:global align:4
+eTumbleDust_ct = .text:0x002B3378; // type:function size:0x104 scope:global align:4
+eTumbleDust_mv = .text:0x002B347C; // type:function size:0x204 scope:global align:4
+eTumbleDust_dw = .text:0x002B3680; // type:function size:0x1BC scope:global align:4
+eTH_init = .text:0x002B383C; // type:function size:0x88 scope:global align:4
+eTH_ct = .text:0x002B38C4; // type:function size:0x26C scope:global align:4
+eTH_mv = .text:0x002B3B30; // type:function size:0x180 scope:global align:4
+eTH_dw = .text:0x002B3CB0; // type:function size:0xF0 scope:global align:4
+eTH0_init = .text:0x002B3DA0; // type:function size:0x74 scope:local align:4
+eTH0_ct = .text:0x002B3E14; // type:function size:0x7C scope:local align:4
+eTH0_mv = .text:0x002B3E90; // type:function size:0x4 scope:local align:4
+eTH0_dw = .text:0x002B3E94; // type:function size:0x124 scope:local align:4
+eTH0_init = .text:0x002B3FB8; // type:function size:0x74 scope:local align:4
+eTH0_ct = .text:0x002B402C; // type:function size:0x20 scope:local align:4
+eTH0_mv = .text:0x002B404C; // type:function size:0x4 scope:local align:4
+eTH0_dw = .text:0x002B4050; // type:function size:0x124 scope:local align:4
+eTM_CallEffect = .text:0x002B4174; // type:function size:0x3A4 scope:global align:4
+eTM_init = .text:0x002B4518; // type:function size:0xD0 scope:local align:4
+eTM_ct = .text:0x002B45E8; // type:function size:0xF8 scope:local align:4
+eTM_mv = .text:0x002B46E0; // type:function size:0x188 scope:local align:4
+eTM_dw = .text:0x002B4868; // type:function size:0x4 scope:local align:4
+eTS_init = .text:0x002B486C; // type:function size:0x7C scope:global align:4
+eTS_ct = .text:0x002B48E8; // type:function size:0xB8 scope:global align:4
+eTS_mv = .text:0x002B49A0; // type:function size:0x114 scope:global align:4
+eTS_dw = .text:0x002B4AB4; // type:function size:0x218 scope:global align:4
+eTurn_Hanabira_Make = .text:0x002B4CCC; // type:function size:0x138 scope:global align:4
+eTurnAsimoto_init = .text:0x002B4E04; // type:function size:0x68C scope:global align:4
+eTurnAsimoto_ct = .text:0x002B5490; // type:function size:0x3C scope:global align:4
+eTurnAsimoto_mv = .text:0x002B54CC; // type:function size:0x4 scope:global align:4
+eTurnAsimoto_dw = .text:0x002B54D0; // type:function size:0x4 scope:global align:4
+eTurnFootPrint_init = .text:0x002B54D4; // type:function size:0x84 scope:global align:4
+eTurnFootPrint_GetAreaPos = .text:0x002B5558; // type:function size:0x44 scope:global align:4
+eTurnFootPrint_ct = .text:0x002B559C; // type:function size:0x1BC scope:global align:4
+eTurnFootPrint_mv = .text:0x002B5758; // type:function size:0x4 scope:global align:4
+eTurnFootPrint_dw = .text:0x002B575C; // type:function size:0x1DC scope:global align:4
+eUranai_init = .text:0x002B5938; // type:function size:0x7C scope:global align:4
+eUranai_ct = .text:0x002B59B4; // type:function size:0x68 scope:global align:4
+eUranai_mv = .text:0x002B5A1C; // type:function size:0xD0 scope:global align:4
+eUranai_dw = .text:0x002B5AEC; // type:function size:0x1B8 scope:global align:4
+eWait_Asimoto_init = .text:0x002B5CA4; // type:function size:0x104 scope:global align:4
+eWait_Asimoto_ct = .text:0x002B5DA8; // type:function size:0xC scope:global align:4
+eWait_Asimoto_mv = .text:0x002B5DB4; // type:function size:0x4 scope:global align:4
+eWait_Asimoto_dw = .text:0x002B5DB8; // type:function size:0x4 scope:global align:4
+eWalkAsimoto_GetMakeOffset = .text:0x002B5DBC; // type:function size:0xD4 scope:global align:4
+eWalkAsimoto_RainDay = .text:0x002B5E90; // type:function size:0xEC scope:global align:4
+eWalkAsimoto_FineDay = .text:0x002B5F7C; // type:function size:0x1CC scope:global align:4
+eWalk_Asimoto_init = .text:0x002B6148; // type:function size:0x104 scope:global align:4
+eWalk_Asimoto_ct = .text:0x002B624C; // type:function size:0xC scope:global align:4
+eWalk_Asimoto_mv = .text:0x002B6258; // type:function size:0x4 scope:global align:4
+eWalk_Asimoto_dw = .text:0x002B625C; // type:function size:0x4 scope:global align:4
+eWU_init = .text:0x002B6260; // type:function size:0x74 scope:global align:4
+eWU_ct = .text:0x002B62D4; // type:function size:0x34 scope:global align:4
+eWU_mv = .text:0x002B6308; // type:function size:0x5C scope:global align:4
+eWU_dw = .text:0x002B6364; // type:function size:0x104 scope:global align:4
+eYajirushi_init = .text:0x002B6468; // type:function size:0x74 scope:global align:4
+eYajirushi_ct = .text:0x002B64DC; // type:function size:0x14 scope:global align:4
+eYajirushi_mv = .text:0x002B64F0; // type:function size:0x108 scope:global align:4
+eYajirushi_dw = .text:0x002B65F8; // type:function size:0xB4 scope:global align:4
+eYoung_Tree_init = .text:0x002B66AC; // type:function size:0x7C scope:global align:4
+eYoung_Tree_ct = .text:0x002B6728; // type:function size:0x1B0 scope:global align:4
+eYoung_Tree_mv = .text:0x002B68D8; // type:function size:0x2B4 scope:global align:4
+eYoung_Tree_dw = .text:0x002B6B8C; // type:function size:0x4B8 scope:global align:4
+eYukidama_init = .text:0x002B7044; // type:function size:0x88 scope:global align:4
+eYukidama_ct = .text:0x002B70CC; // type:function size:0x240 scope:global align:4
+eYukidama_mv = .text:0x002B730C; // type:function size:0x240 scope:global align:4
+eYukidama_dw = .text:0x002B754C; // type:function size:0x120 scope:global align:4
+eYukidaruma_init = .text:0x002B766C; // type:function size:0x17C scope:global align:4
+eYukidaruma_ct = .text:0x002B77E8; // type:function size:0x84 scope:global align:4
+eYukidaruma_mv = .text:0x002B786C; // type:function size:0x4 scope:global align:4
+eYukidaruma_dw = .text:0x002B7870; // type:function size:0x1A0 scope:global align:4
+eYukihane_init = .text:0x002B7A10; // type:function size:0x74 scope:global align:4
+eYukihane_ct = .text:0x002B7A84; // type:function size:0x68 scope:global align:4
+eYukihane_mv = .text:0x002B7AEC; // type:function size:0x48 scope:global align:4
+eYukihane_dw = .text:0x002B7B34; // type:function size:0x1AC scope:global align:4
+game_next_play = .text:0x002B7CE0; // type:function size:0x74 scope:global align:4
+data2fcode = .text:0x002B7D54; // type:function size:0x1C scope:global align:4
+fcode2data = .text:0x002B7D70; // type:function size:0x20 scope:global align:4
+select_pass = .text:0x002B7D90; // type:function size:0x84 scope:global align:4
+select_start_proc = .text:0x002B7E14; // type:function size:0xF0 scope:global align:4
+select_check_start = .text:0x002B7F04; // type:function size:0x84 scope:global align:4
+select_check_A_button_rtc = .text:0x002B7F88; // type:function size:0x8 scope:global align:4
+select_check_A_button_time = .text:0x002B7F90; // type:function size:0x8 scope:global align:4
+select_check_A_button_step = .text:0x002B7F98; // type:function size:0x8 scope:global align:4
+select_check_A_button_weather = .text:0x002B7FA0; // type:function size:0x54 scope:global align:4
+select_check_A_button_sex = .text:0x002B7FF4; // type:function size:0x38 scope:global align:4
+select_check_A_button_face_type = .text:0x002B802C; // type:function size:0x3C scope:global align:4
+select_check_A_button_swell = .text:0x002B8068; // type:function size:0x28 scope:global align:4
+select_check_A_button_sunburn = .text:0x002B8090; // type:function size:0xA0 scope:global align:4
+select_check_A_button_decoy = .text:0x002B8130; // type:function size:0x28 scope:global align:4
+select_check_A_button_cloth = .text:0x002B8158; // type:function size:0x8 scope:global align:4
+select_check_A_button_event = .text:0x002B8160; // type:function size:0x8 scope:global align:4
+select_check_A_button = .text:0x002B8168; // type:function size:0x64 scope:global align:4
+select_move_cursol = .text:0x002B81CC; // type:function size:0xAC scope:global align:4
+select_course_step_sub = .text:0x002B8278; // type:function size:0x20 scope:global align:4
+select_adjust_top_no = .text:0x002B8298; // type:function size:0x80 scope:global align:4
+select_course_step = .text:0x002B8318; // type:function size:0xB4 scope:global align:4
+select_course = .text:0x002B83CC; // type:function size:0x198 scope:global align:4
+select_move_main = .text:0x002B8564; // type:function size:0x58 scope:global align:4
+select_move_setup = .text:0x002B85BC; // type:function size:0x50 scope:global align:4
+select_move_time_year_set = .text:0x002B860C; // type:function size:0x3C scope:global align:4
+select_move_time_month_set = .text:0x002B8648; // type:function size:0xA0 scope:global align:4
+select_move_time_day_set = .text:0x002B86E8; // type:function size:0x84 scope:global align:4
+select_move_time_hour_set = .text:0x002B876C; // type:function size:0x44 scope:global align:4
+select_move_time_min_set = .text:0x002B87B0; // type:function size:0x44 scope:global align:4
+select_move_time_week_set = .text:0x002B87F4; // type:function size:0x6C scope:global align:4
+select_move_time_set = .text:0x002B8860; // type:function size:0x208 scope:global align:4
+select_move_cloth_sel = .text:0x002B8A68; // type:function size:0x178 scope:global align:4
+select_move = .text:0x002B8BE0; // type:function size:0x58 scope:global align:4
+select_print_wait = .text:0x002B8C38; // type:function size:0x90 scope:global align:4
+select_print_course_name = .text:0x002B8CC8; // type:function size:0x158 scope:global align:4
+select_print_rtc = .text:0x002B8E20; // type:function size:0x48 scope:global align:4
+select_print_time_sub = .text:0x002B8E68; // type:function size:0x228 scope:global align:4
+select_print_time = .text:0x002B9090; // type:function size:0x4C scope:global align:4
+select_print_step_sub2 = .text:0x002B90DC; // type:function size:0x48 scope:global align:4
+select_print_step = .text:0x002B9124; // type:function size:0x20 scope:global align:4
+select_print_weather = .text:0x002B9144; // type:function size:0x68 scope:global align:4
+select_print_sex = .text:0x002B91AC; // type:function size:0x70 scope:global align:4
+select_print_cloth = .text:0x002B921C; // type:function size:0x90 scope:global align:4
+select_print_swell = .text:0x002B92AC; // type:function size:0x84 scope:global align:4
+select_print_decoy = .text:0x002B9330; // type:function size:0x84 scope:global align:4
+select_print_face_type = .text:0x002B93B4; // type:function size:0x70 scope:global align:4
+select_print_sunburn = .text:0x002B9424; // type:function size:0x74 scope:global align:4
+select_print_event = .text:0x002B9498; // type:function size:0x54 scope:global align:4
+select_draw_main = .text:0x002B94EC; // type:function size:0x1DC scope:global align:4
+select_draw_wait = .text:0x002B96C8; // type:function size:0x100 scope:global align:4
+select_draw = .text:0x002B97C8; // type:function size:0xC4 scope:global align:4
+select_main = .text:0x002B988C; // type:function size:0x58 scope:global align:4
+select_cleanup = .text:0x002B98E4; // type:function size:0x4 scope:global align:4
+select_init = .text:0x002B98E8; // type:function size:0x118 scope:global align:4
+exit_game = .text:0x002B9A00; // type:function size:0x5C scope:global align:4
+first_game_cleanup = .text:0x002B9A5C; // type:function size:0x4 scope:global align:4
+first_game_init = .text:0x002B9A60; // type:function size:0x44 scope:global align:4
+sys_romcheck = .text:0x002B9AA4; // type:function size:0x40 scope:global align:4
+Game_play_Reset_destiny = .text:0x002B9AE4; // type:function size:0x58 scope:global align:4
+event_title_flag_on = .text:0x002B9B3C; // type:function size:0x24 scope:global align:4
+event_title_flag_off = .text:0x002B9B60; // type:function size:0x28 scope:global align:4
+Game_play_camera_proc = .text:0x002B9B88; // type:function size:0x34 scope:global align:4
+Game_play_fbdemo_wipe_destroy = .text:0x002B9BBC; // type:function size:0x48 scope:global align:4
+Game_play_fbdemo_wipe_create_sub = .text:0x002B9C04; // type:function size:0xA0 scope:global align:4
+Game_play_fbdemo_wipe_create = .text:0x002B9CA4; // type:function size:0x34 scope:global align:4
+Game_play_fbdemo_wipe_init = .text:0x002B9CD8; // type:function size:0xE0 scope:global align:4
+Game_play_fbdemo_fade_in_move_end = .text:0x002B9DB8; // type:function size:0x54 scope:global align:4
+Game_play_fbdemo_fade_out_start_emu_move_end = .text:0x002B9E0C; // type:function size:0x20 scope:global align:4
+Game_play_fbdemo_fade_out_game_end_move_end = .text:0x002B9E2C; // type:function size:0x24 scope:global align:4
+Game_play_change_scene_move_end = .text:0x002B9E50; // type:function size:0x48 scope:global align:4
+Game_play_fbdemo_wipe_move = .text:0x002B9E98; // type:function size:0x30C scope:global align:4
+Game_play_fbdemo_wipe_proc = .text:0x002BA1A4; // type:function size:0x58 scope:global align:4
+game_play_set_fog = .text:0x002BA1FC; // type:function size:0x40 scope:global align:4
+Game_play_fbdemo_proc = .text:0x002BA23C; // type:function size:0x8C scope:global align:4
+play_cleanup = .text:0x002BA2C8; // type:function size:0x118 scope:global align:4
+VR_Box_ct = .text:0x002BA3E0; // type:function size:0x24 scope:global align:4
+play_init = .text:0x002BA404; // type:function size:0x27C scope:global align:4
+Game_play_move_fbdemo_not_move = .text:0x002BA680; // type:function size:0x154 scope:global align:4
+Game_play_move = .text:0x002BA7D4; // type:function size:0x1AC scope:global align:4
+setupFog = .text:0x002BA980; // type:function size:0x50 scope:global align:4
+setupViewer = .text:0x002BA9D0; // type:function size:0x28 scope:global align:4
+setupViewMatrix = .text:0x002BA9F8; // type:function size:0xD8 scope:global align:4
+copy_efb_to_texture = .text:0x002BAAD0; // type:function size:0xB8 scope:global align:4
+makeBumpTexture = .text:0x002BAB88; // type:function size:0x384 scope:global align:4
+draw_version = .text:0x002BAF0C; // type:function size:0x90 scope:global align:4
+Game_play_draw = .text:0x002BAF9C; // type:function size:0x12C scope:global align:4
+play_main = .text:0x002BB0C8; // type:function size:0x19C scope:global align:4
+Gameplay_Scene_Init = .text:0x002BB264; // type:function size:0x70 scope:global align:4
+mPl_SceneNo2SoundRoomType = .text:0x002BB2D4; // type:function size:0x44 scope:global align:4
+Gameplay_Scene_Read = .text:0x002BB318; // type:function size:0x70 scope:global align:4
+second_game_main = .text:0x002BB388; // type:function size:0xE0 scope:global align:4
+second_game_cleanup = .text:0x002BB468; // type:function size:0x1C scope:global align:4
+second_game_init = .text:0x002BB484; // type:function size:0x11C scope:global align:4
+set_npc_4_title_demo = .text:0x002BB5A0; // type:function size:0x80 scope:global align:4
+mTM_demotime_set = .text:0x002BB620; // type:function size:0x5C scope:global align:4
+trademark_goto_demo_scene = .text:0x002BB67C; // type:function size:0x198 scope:global align:4
+nintendo_logo_move = .text:0x002BB814; // type:function size:0x80 scope:global align:4
+nintendo_logo_draw = .text:0x002BB894; // type:function size:0x60 scope:global align:4
+trademark_cancel = .text:0x002BB8F4; // type:function size:0x5C scope:global align:4
+trademark_move = .text:0x002BB950; // type:function size:0x124 scope:global align:4
+trademark_draw = .text:0x002BBA74; // type:function size:0xB4 scope:global align:4
+trademark_main = .text:0x002BBB28; // type:function size:0x90 scope:global align:4
+trademark_cleanup = .text:0x002BBBB8; // type:function size:0x78 scope:global align:4
+trademark_init = .text:0x002BBC30; // type:function size:0x170 scope:global align:4
+player_select_game_data_init = .text:0x002BBDA0; // type:function size:0x5C scope:global align:4
+player_select_game_data_init_save = .text:0x002BBDFC; // type:function size:0x54 scope:global align:4
+player_select_game_data_init_new_player = .text:0x002BBE50; // type:function size:0x54 scope:global align:4
+player_select_game_data_init_pak = .text:0x002BBEA4; // type:function size:0x54 scope:global align:4
+player_select_game_data_init_err = .text:0x002BBEF8; // type:function size:0xC scope:global align:4
+player_select_init_after = .text:0x002BBF04; // type:function size:0x28 scope:global align:4
+player_select_next_mode = .text:0x002BBF2C; // type:function size:0x24 scope:global align:4
+player_select_back_mode = .text:0x002BBF50; // type:function size:0x24 scope:global align:4
+player_select_move_main = .text:0x002BBF74; // type:function size:0x164 scope:global align:4
+str_add_word = .text:0x002BC0D8; // type:function size:0x44 scope:global align:4
+player_select_draw_title = .text:0x002BC11C; // type:function size:0xA0 scope:global align:4
+player_select_draw_player_no = .text:0x002BC1BC; // type:function size:0x18C scope:global align:4
+player_select_draw_yosokara = .text:0x002BC348; // type:function size:0xBC scope:global align:4
+player_select_draw_main = .text:0x002BC404; // type:function size:0xBC scope:global align:4
+player_select_main = .text:0x002BC4C0; // type:function size:0x58 scope:global align:4
+player_select_cleanup = .text:0x002BC518; // type:function size:0x4 scope:global align:4
+player_select_init = .text:0x002BC51C; // type:function size:0x298 scope:global align:4
+save_menu_set_cursor_col = .text:0x002BC7B4; // type:function size:0x78 scope:global align:4
+save_menu_reset_cursor_col = .text:0x002BC82C; // type:function size:0x4C scope:global align:4
+save_menu_data_save_from = .text:0x002BC878; // type:function size:0x3C scope:global align:4
+save_menu_data_save_pak = .text:0x002BC8B4; // type:function size:0xCC scope:global align:4
+save_menu_move_do_save = .text:0x002BC980; // type:function size:0xE4 scope:global align:4
+save_menu_move_finish = .text:0x002BCA64; // type:function size:0x24 scope:global align:4
+save_menu_move_err = .text:0x002BCA88; // type:function size:0xC scope:global align:4
+save_menu_move_main = .text:0x002BCA94; // type:function size:0x7C scope:global align:4
+save_menu_draw_title = .text:0x002BCB10; // type:function size:0xAC scope:global align:4
+save_menu_draw_push_a = .text:0x002BCBBC; // type:function size:0xBC scope:global align:4
+save_menu_draw_select_r = .text:0x002BCC78; // type:function size:0xC4 scope:global align:4
+save_menu_draw_push_b = .text:0x002BCD3C; // type:function size:0xD0 scope:global align:4
+save_menu_draw_select_mode = .text:0x002BCE0C; // type:function size:0x134 scope:global align:4
+save_menu_draw_main = .text:0x002BCF40; // type:function size:0xB8 scope:global align:4
+save_menu_main = .text:0x002BCFF8; // type:function size:0x58 scope:global align:4
+save_menu_cleanup = .text:0x002BD050; // type:function size:0x4 scope:global align:4
+save_menu_init = .text:0x002BD054; // type:function size:0xA0 scope:global align:4
+my_alloc_init = .text:0x002BD0F4; // type:function size:0x84 scope:global align:4
+my_alloc_cleanup = .text:0x002BD178; // type:function size:0x20 scope:global align:4
+my_zelda_getmemblocksize = .text:0x002BD198; // type:function size:0x20 scope:global align:4
+my_zelda_gettotalfreesize = .text:0x002BD1B8; // type:function size:0x20 scope:global align:4
+my_zelda_malloc_align = .text:0x002BD1D8; // type:function size:0x4C scope:global align:4
+my_zelda_free = .text:0x002BD224; // type:function size:0x20 scope:global align:4
+famicom_emu_main = .text:0x002BD244; // type:function size:0x160 scope:global align:4
+famicom_emu_init = .text:0x002BD3A4; // type:function size:0x160 scope:global align:4
+famicom_emu_cleanup = .text:0x002BD504; // type:function size:0x80 scope:global align:4
+famicom_gba_getImage = .text:0x002BD584; // type:function size:0xB0 scope:global align:4
+famicom_gba_removeImage = .text:0x002BD634; // type:function size:0x20 scope:global align:4
+prenmi_move = .text:0x002BD654; // type:function size:0x94 scope:global align:4
+prenmi_draw = .text:0x002BD6E8; // type:function size:0x1C0 scope:global align:4
+prenmi_main = .text:0x002BD8A8; // type:function size:0x60 scope:global align:4
+prenmi_cleanup = .text:0x002BD908; // type:function size:0x10 scope:global align:4
+prenmi_init = .text:0x002BD918; // type:function size:0x44 scope:global align:4
+sAdo_Calc_MicPosition_common = .text:0x002BD95C; // type:function size:0x148 scope:global align:4
+sAdo_Calc_MicPosition_forTrig = .text:0x002BDAA4; // type:function size:0x20 scope:global align:4
+sAdo_Calc_MicPosition_forLevel = .text:0x002BDAC4; // type:function size:0x20 scope:global align:4
+sAdo_GameFrame = .text:0x002BDAE4; // type:function size:0x20 scope:global align:4
+sAdo_BgmStart = .text:0x002BDB04; // type:function size:0x20 scope:global align:4
+sAdo_BgmStop = .text:0x002BDB24; // type:function size:0x20 scope:global align:4
+sAdo_SysTrgStart = .text:0x002BDB44; // type:function size:0x20 scope:global align:4
+sAdo_PlyWalkSe = .text:0x002BDB64; // type:function size:0x48 scope:global align:4
+sAdo_PlyWalkSeRoom = .text:0x002BDBAC; // type:function size:0x48 scope:global align:4
+sAdo_NpcWalkSe = .text:0x002BDBF4; // type:function size:0x48 scope:global align:4
+sAdo_NpcWalkSeRoom = .text:0x002BDC3C; // type:function size:0x48 scope:global align:4
+sAdo_PlayerStatusLevel = .text:0x002BDC84; // type:function size:0x20 scope:global align:4
+sAdo_VoiceSe = .text:0x002BDCA4; // type:function size:0x20 scope:global align:4
+sAdo_Inst = .text:0x002BDCC4; // type:function size:0x20 scope:global align:4
+sAdo_MessageStatus = .text:0x002BDCE4; // type:function size:0x20 scope:global align:4
+sAdo_MessageSpeed = .text:0x002BDD04; // type:function size:0x20 scope:global align:4
+sAdo_MessageSpeedGet = .text:0x002BDD24; // type:function size:0x20 scope:global align:4
+sAdo_SysLevStart = .text:0x002BDD44; // type:function size:0x20 scope:global align:4
+sAdo_SysLevStop = .text:0x002BDD64; // type:function size:0x20 scope:global align:4
+sAdo_OngenPos = .text:0x002BDD84; // type:function size:0x64 scope:global align:4
+sAdo_OngenTrgStart = .text:0x002BDDE8; // type:function size:0x48 scope:global align:4
+sAdo_SetOutMode = .text:0x002BDE30; // type:function size:0x60 scope:global align:4
+sAdo_SetVoiceMode = .text:0x002BDE90; // type:function size:0x20 scope:global align:4
+sAdo_FloorTrgStart = .text:0x002BDEB0; // type:function size:0x48 scope:global align:4
+sAdo_RhythmStart = .text:0x002BDEF8; // type:function size:0x20 scope:global align:4
+sAdo_RhythmStop = .text:0x002BDF18; // type:function size:0x20 scope:global align:4
+sAdo_RhythmAllStop = .text:0x002BDF38; // type:function size:0x20 scope:global align:4
+sAdo_FurnitureInst = .text:0x002BDF58; // type:function size:0x60 scope:global align:4
+sAdo_Pause = .text:0x002BDFB8; // type:function size:0x20 scope:global align:4
+sAdo_GetRhythmAnimCounter = .text:0x002BDFD8; // type:function size:0x20 scope:global align:4
+sAdo_GetRhythmDelay = .text:0x002BDFF8; // type:function size:0x20 scope:global align:4
+sAdo_GetRhythmInfo = .text:0x002BE018; // type:function size:0x20 scope:global align:4
+sAdo_SetRhythmInfo = .text:0x002BE038; // type:function size:0x20 scope:global align:4
+sAdo_InstCountGet = .text:0x002BE058; // type:function size:0x20 scope:global align:4
+sAdo_RhythmPos = .text:0x002BE078; // type:function size:0x54 scope:global align:4
+sAdo_SpecChange = .text:0x002BE0CC; // type:function size:0x20 scope:global align:4
+sAdo_MDPlayerPos = .text:0x002BE0EC; // type:function size:0x60 scope:global align:4
+sAdo_BGMVolume = .text:0x002BE14C; // type:function size:0x20 scope:global align:4
+sAdo_BgmCrossfadeStart = .text:0x002BE16C; // type:function size:0x20 scope:global align:4
+sAdo_SubGameStart = .text:0x002BE18C; // type:function size:0x20 scope:global align:4
+sAdo_SubGameEnd = .text:0x002BE1AC; // type:function size:0x20 scope:global align:4
+sAdo_SubGameOK = .text:0x002BE1CC; // type:function size:0x24 scope:global align:4
+sAdo_Tenki = .text:0x002BE1F0; // type:function size:0x20 scope:global align:4
+sAdos_KishaStatusTrg = .text:0x002BE210; // type:function size:0x20 scope:global align:4
+sAdos_KishaStatusLevel = .text:0x002BE230; // type:function size:0x20 scope:global align:4
+sAdos_GetRadioCounter = .text:0x002BE250; // type:function size:0x20 scope:global align:4
+sAdos_GetKappaCounter = .text:0x002BE270; // type:function size:0x20 scope:global align:4
+sAdos_GetStaffRollInfo = .text:0x002BE290; // type:function size:0x20 scope:global align:4
+sAdos_TTKK_ARM = .text:0x002BE2B0; // type:function size:0x20 scope:global align:4
+sAdo_OngenTrgStartSpeed = .text:0x002BE2D0; // type:function size:0x60 scope:global align:4
+sAdo_TrgSeEcho = .text:0x002BE330; // type:function size:0x20 scope:global align:4
+sAdo_LevSeEcho = .text:0x002BE350; // type:function size:0x20 scope:global align:4
+sAdo_BgmFadeoutCheck = .text:0x002BE370; // type:function size:0x20 scope:global align:4
+sAdo_SeFadeoutCheck = .text:0x002BE390; // type:function size:0x20 scope:global align:4
+sAdo_RoomType = .text:0x002BE3B0; // type:function size:0x20 scope:global align:4
+sAdo_Museum = .text:0x002BE3D0; // type:function size:0x20 scope:global align:4
+sAdo_SoftReset = .text:0x002BE3F0; // type:function size:0x20 scope:global align:4
+sAdo_Get_WalkLabel = .text:0x002BE410; // type:function size:0x80 scope:global align:4
+sAdo_Get_KokeruLabel = .text:0x002BE490; // type:function size:0x8C scope:global align:4
+sAdo_SceneMode = .text:0x002BE51C; // type:function size:0x20 scope:global align:4
+sAdo_RoomIncectPos = .text:0x002BE53C; // type:function size:0x54 scope:global align:4
+sAdo_FurnitureInstPos = .text:0x002BE590; // type:function size:0x48 scope:global align:4
+sAdo_Set_ongenpos_refuse_fg = .text:0x002BE5D8; // type:function size:0xC scope:global align:4
+sAdo_GameframeEnd_Check = .text:0x002BE5E4; // type:function size:0x10 scope:global align:4
+sAdo_GetSoundFrameCounter = .text:0x002BE5F4; // type:function size:0x20 scope:global align:4
+sAdo_CheckOnPlussBridge = .text:0x002BE614; // type:function size:0x64 scope:global align:4
+sAdo_RegistPlussBridge = .text:0x002BE678; // type:function size:0x14 scope:global align:4
+sAdo_DeletePlussBridge = .text:0x002BE68C; // type:function size:0x18 scope:global align:4
+sAdo_kazagurumaLevel = .text:0x002BE6A4; // type:function size:0x20 scope:global align:4
+fFTR_MorphHousePalette = .text:0x002BE6C4; // type:function size:0x238 scope:global align:4
+fFTR_MorphHousepaletteCt = .text:0x002BE8FC; // type:function size:0x48 scope:global align:4
+fFTR_GetTwoTileGfx = .text:0x002BE944; // type:function size:0xA0 scope:global align:4
+fFC_ct = .text:0x002BE9E4; // type:function size:0x4 scope:global align:4
+fFC_mv = .text:0x002BE9E8; // type:function size:0x7C scope:global align:4
+fFC_dw = .text:0x002BEA64; // type:function size:0x128 scope:global align:4
+aFmanekin_ct = .text:0x002BEB8C; // type:function size:0x4 scope:global align:4
+aFmanekin_dw = .text:0x002BEB90; // type:function size:0x60 scope:global align:4
+aFmanekin_mv = .text:0x002BEBF0; // type:function size:0x4 scope:global align:4
+aFmanekin_dt = .text:0x002BEBF4; // type:function size:0x4 scope:global align:4
+aFmanekin_dma = .text:0x002BEBF8; // type:function size:0x60 scope:global align:4
+aFU_ct = .text:0x002BEC58; // type:function size:0x4 scope:global align:4
+aFU_dw = .text:0x002BEC5C; // type:function size:0x5C scope:global align:4
+aFU_mv = .text:0x002BECB8; // type:function size:0x4 scope:global align:4
+aFU_dt = .text:0x002BECBC; // type:function size:0x4 scope:global align:4
+aFU_dma = .text:0x002BECC0; // type:function size:0x4 scope:global align:4
+aHnwCommon_RhythmStart = .text:0x002BECC4; // type:function size:0x48 scope:global align:4
+aHnwCommon_ct = .text:0x002BED0C; // type:function size:0x154 scope:global align:4
+aHnwCommon_mv = .text:0x002BEE60; // type:function size:0x47C scope:global align:4
+aHnwCommon_dw = .text:0x002BF2DC; // type:function size:0x8C scope:global align:4
+aHnwCommon_dt = .text:0x002BF368; // type:function size:0x20 scope:global align:4
+aHnwCommon_dma = .text:0x002BF388; // type:function size:0x4 scope:global align:4
+fIIH_ct = .text:0x002BF38C; // type:function size:0x1B4 scope:global align:4
+fIIH_mv = .text:0x002BF540; // type:function size:0x1FC scope:global align:4
+fIIH_dw = .text:0x002BF73C; // type:function size:0x1EC scope:global align:4
+fIIH_dt = .text:0x002BF928; // type:function size:0x24 scope:global align:4
+fIIUKRR_mv = .text:0x002BF94C; // type:function size:0x44 scope:global align:4
+fIJH_ct = .text:0x002BF990; // type:function size:0x74 scope:global align:4
+fIJH_mv = .text:0x002BFA04; // type:function size:0xD0 scope:global align:4
+fIJH_dw = .text:0x002BFAD4; // type:function size:0x8C scope:global align:4
+fIJHOUI_ct = .text:0x002BFB60; // type:function size:0x84 scope:global align:4
+fIJHOUI_Status2SetMode = .text:0x002BFBE4; // type:function size:0x108 scope:global align:4
+fIJHOUI_mv = .text:0x002BFCEC; // type:function size:0x1C8 scope:global align:4
+fIJHOUI_DrawBefore = .text:0x002BFEB4; // type:function size:0xC8 scope:global align:4
+fIJHOUI_DrawAfter = .text:0x002BFF7C; // type:function size:0x8 scope:global align:4
+fIJHOUI_dw = .text:0x002BFF84; // type:function size:0x94 scope:global align:4
+aIkeJnyRosia01_ct = .text:0x002C0018; // type:function size:0xF8 scope:global align:4
+aIkeJnyRosia01_mv = .text:0x002C0110; // type:function size:0x13C scope:global align:4
+aIkeJnyRosia01_dw = .text:0x002C024C; // type:function size:0x8C scope:global align:4
+aIkeJnyRosia01_dt = .text:0x002C02D8; // type:function size:0x24 scope:global align:4
+fIJS_ct = .text:0x002C02FC; // type:function size:0x48 scope:global align:4
+fIJS_mv = .text:0x002C0344; // type:function size:0x108 scope:global align:4
+fIJS_GetTwoTileGfx = .text:0x002C044C; // type:function size:0x50 scope:global align:4
+fIJS_dw = .text:0x002C049C; // type:function size:0x164 scope:global align:4
+fIJT_ct = .text:0x002C0600; // type:function size:0x10 scope:global align:4
+fIJT_mv = .text:0x002C0610; // type:function size:0xD0 scope:global align:4
+fIJT_dw = .text:0x002C06E0; // type:function size:0xA8 scope:global align:4
+fIJT_dt = .text:0x002C0788; // type:function size:0x4 scope:global align:4
+fIKD_mv = .text:0x002C078C; // type:function size:0x4C scope:global align:4
+fIKD_GetTwoTileGfx = .text:0x002C07D8; // type:function size:0x54 scope:global align:4
+fIKD_dw = .text:0x002C082C; // type:function size:0x110 scope:global align:4
+fIKC_mv = .text:0x002C093C; // type:function size:0x168 scope:global align:4
+fITN_dw = .text:0x002C0AA4; // type:function size:0x74 scope:global align:4
+fIPP_mv = .text:0x002C0B18; // type:function size:0x68 scope:global align:4
+aKobDisksystem8_ct = .text:0x002C0B80; // type:function size:0x4 scope:global align:4
+aKobDisksystem8_mv = .text:0x002C0B84; // type:function size:0x48 scope:global align:4
+aKobDisksystem8_dw = .text:0x002C0BCC; // type:function size:0xF0 scope:global align:4
+aKobDisksystem8_dt = .text:0x002C0CBC; // type:function size:0x4 scope:global align:4
+aKobLocker1_ct = .text:0x002C0CC0; // type:function size:0x74 scope:global align:4
+aKobLocker1_mv = .text:0x002C0D34; // type:function size:0x50 scope:global align:4
+aKobLocker1_dw = .text:0x002C0D84; // type:function size:0x4C scope:global align:4
+aKobLocker1_dt = .text:0x002C0DD0; // type:function size:0x4 scope:global align:4
+aKobMasterSword_mv = .text:0x002C0DD4; // type:function size:0x4 scope:global align:4
+aKobMasterSword01_dw = .text:0x002C0DD8; // type:function size:0x114 scope:global align:4
+aKobNcube_ct = .text:0x002C0EEC; // type:function size:0x4 scope:global align:4
+aKobNcube_mv = .text:0x002C0EF0; // type:function size:0x4 scope:global align:4
+aKobNcube_dw = .text:0x002C0EF4; // type:function size:0x4 scope:global align:4
+aKobNcube_dt = .text:0x002C0EF8; // type:function size:0x4 scope:global align:4
+aKonAmeclock_DwAfter = .text:0x002C0EFC; // type:function size:0x8 scope:global align:4
+aKonAmeclock_DwBefore = .text:0x002C0F04; // type:function size:0x54 scope:global align:4
+aKonAmeclock_dw = .text:0x002C0F58; // type:function size:0x50 scope:global align:4
+aKonAmeclock_ct = .text:0x002C0FA8; // type:function size:0x74 scope:global align:4
+aKonAmeclock_mv = .text:0x002C101C; // type:function size:0x24 scope:global align:4
+aKonAmeclock_dt = .text:0x002C1040; // type:function size:0x4 scope:global align:4
+aKonAtqclock_DwAfter = .text:0x002C1044; // type:function size:0x8 scope:global align:4
+aKonAtqclock_DwBefore = .text:0x002C104C; // type:function size:0x54 scope:global align:4
+aKonAtqclock_dw = .text:0x002C10A0; // type:function size:0x50 scope:global align:4
+aKonAtqclock_ct = .text:0x002C10F0; // type:function size:0x74 scope:global align:4
+aKonAtqclock_mv = .text:0x002C1164; // type:function size:0xD8 scope:global align:4
+aKonAtqclock_dt = .text:0x002C123C; // type:function size:0x4 scope:global align:4
+aKonBlueclock_DwAfter = .text:0x002C1240; // type:function size:0x8 scope:global align:4
+aKonBlueclock_DwBefore = .text:0x002C1248; // type:function size:0x54 scope:global align:4
+aKonBlueclock_dw = .text:0x002C129C; // type:function size:0x7C scope:global align:4
+aKonBlueclock_ct = .text:0x002C1318; // type:function size:0x74 scope:global align:4
+aKonBlueclock_mv = .text:0x002C138C; // type:function size:0x24 scope:global align:4
+aKonBlueclock_dt = .text:0x002C13B0; // type:function size:0x4 scope:global align:4
+aKonCracker_ct = .text:0x002C13B4; // type:function size:0x4 scope:global align:4
+aKonCracker_mv = .text:0x002C13B8; // type:function size:0x74 scope:global align:4
+aKonCracker_dw = .text:0x002C142C; // type:function size:0x4 scope:global align:4
+aKonCracker_dt = .text:0x002C1430; // type:function size:0x4 scope:global align:4
+aKonGomi04_ct = .text:0x002C1434; // type:function size:0x84 scope:global align:4
+aKonGomi04_mv = .text:0x002C14B8; // type:function size:0x15C scope:global align:4
+aKonGomi04_dw = .text:0x002C1614; // type:function size:0x8C scope:global align:4
+aKonGomi04_dt = .text:0x002C16A0; // type:function size:0x4 scope:global align:4
+aKonGrclock_DwAfter = .text:0x002C16A4; // type:function size:0x8 scope:global align:4
+aKonGrclock_DwBefore = .text:0x002C16AC; // type:function size:0x54 scope:global align:4
+aKonGrclock_dw = .text:0x002C1700; // type:function size:0x50 scope:global align:4
+aKonGrclock_ct = .text:0x002C1750; // type:function size:0x74 scope:global align:4
+aKonGrclock_mv = .text:0x002C17C4; // type:function size:0x24 scope:global align:4
+aKonGrclock_dt = .text:0x002C17E8; // type:function size:0x4 scope:global align:4
+aKonJihanki02_ct = .text:0x002C17EC; // type:function size:0x4 scope:global align:4
+aKonJihanki02_mv = .text:0x002C17F0; // type:function size:0x4 scope:global align:4
+aKonJihanki02_dw = .text:0x002C17F4; // type:function size:0xC8 scope:global align:4
+aKonJihanki02_dt = .text:0x002C18BC; // type:function size:0x4 scope:global align:4
+aKonMimiclock_DwAfter = .text:0x002C18C0; // type:function size:0x8 scope:global align:4
+aKonMimiclock_DwBefore = .text:0x002C18C8; // type:function size:0x54 scope:global align:4
+aKonMimiclock_dw = .text:0x002C191C; // type:function size:0x7C scope:global align:4
+aKonMimiclock_ct = .text:0x002C1998; // type:function size:0x74 scope:global align:4
+aKonMimiclock_mv = .text:0x002C1A0C; // type:function size:0x24 scope:global align:4
+aKonMimiclock_dt = .text:0x002C1A30; // type:function size:0x4 scope:global align:4
+aKonMusya_ct = .text:0x002C1A34; // type:function size:0x4 scope:global align:4
+aKonMusya_mv = .text:0x002C1A38; // type:function size:0x4 scope:global align:4
+aKonMusya_dw = .text:0x002C1A3C; // type:function size:0xE4 scope:global align:4
+aKonMusya_dt = .text:0x002C1B20; // type:function size:0x4 scope:global align:4
+aKonRedclock_DwAfter = .text:0x002C1B24; // type:function size:0x8 scope:global align:4
+aKonRedclock_DwBefore = .text:0x002C1B2C; // type:function size:0x54 scope:global align:4
+aKonRedclock_dw = .text:0x002C1B80; // type:function size:0x50 scope:global align:4
+aKonRedclock_ct = .text:0x002C1BD0; // type:function size:0x74 scope:global align:4
+aKonRedclock_mv = .text:0x002C1C44; // type:function size:0x24 scope:global align:4
+aKonRedclock_dt = .text:0x002C1C68; // type:function size:0x4 scope:global align:4
+aKonSisiodosi_ct = .text:0x002C1C6C; // type:function size:0x78 scope:global align:4
+aKonSisiodosi_mv = .text:0x002C1CE4; // type:function size:0x60 scope:global align:4
+aKonSnowbox_ct = .text:0x002C1D44; // type:function size:0x74 scope:global align:4
+aKonSnowbox_mv = .text:0x002C1DB8; // type:function size:0x50 scope:global align:4
+aKonSnowbox_dw = .text:0x002C1E08; // type:function size:0x8C scope:global align:4
+aKonSnowbox_dt = .text:0x002C1E94; // type:function size:0x4 scope:global align:4
+aKonSnowclock_DwAfter = .text:0x002C1E98; // type:function size:0xD4 scope:global align:4
+aKonSnowclock_DwBefore = .text:0x002C1F6C; // type:function size:0x54 scope:global align:4
+aKonSnowclock_dw = .text:0x002C1FC0; // type:function size:0x50 scope:global align:4
+aKonSnowclock_ct = .text:0x002C2010; // type:function size:0x74 scope:global align:4
+aKonSnowclock_mv = .text:0x002C2084; // type:function size:0x24 scope:global align:4
+aKonSnowclock_dt = .text:0x002C20A8; // type:function size:0x4 scope:global align:4
+aKonSnowtansu_ct = .text:0x002C20AC; // type:function size:0x74 scope:global align:4
+aKonSnowtansu_mv = .text:0x002C2120; // type:function size:0x50 scope:global align:4
+aKonSnowtansu_dw = .text:0x002C2170; // type:function size:0x8C scope:global align:4
+aKonSnowtansu_dt = .text:0x002C21FC; // type:function size:0x4 scope:global align:4
+aKonsnowtv_ct = .text:0x002C2200; // type:function size:0x4 scope:global align:4
+aKonsnowtv_mv = .text:0x002C2204; // type:function size:0xC0 scope:global align:4
+aKonsnowtv_dw = .text:0x002C22C4; // type:function size:0x100 scope:global align:4
+aKonsnowtv_dt = .text:0x002C23C4; // type:function size:0x4 scope:global align:4
+aKonWaclock_DwAfter = .text:0x002C23C8; // type:function size:0x8 scope:global align:4
+aKonWaclock_DwBefore = .text:0x002C23D0; // type:function size:0x2C scope:global align:4
+aKonWaclock_dw = .text:0x002C23FC; // type:function size:0x50 scope:global align:4
+aKonWaclock_ct = .text:0x002C244C; // type:function size:0x74 scope:global align:4
+aKonWaclock_mv = .text:0x002C24C0; // type:function size:0x24 scope:global align:4
+aKonWaclock_dt = .text:0x002C24E4; // type:function size:0x4 scope:global align:4
+aMyfmanekin_ct = .text:0x002C24E8; // type:function size:0x4 scope:global align:4
+aMyfmanekin_dw = .text:0x002C24EC; // type:function size:0x60 scope:global align:4
+aMyfmanekin_mv = .text:0x002C254C; // type:function size:0x4 scope:global align:4
+aMyfmanekin_dt = .text:0x002C2550; // type:function size:0x4 scope:global align:4
+aMyfmanekin_dma = .text:0x002C2554; // type:function size:0x90 scope:global align:4
+aMFU_ct = .text:0x002C25E4; // type:function size:0x4 scope:global align:4
+aMFU_dw = .text:0x002C25E8; // type:function size:0x60 scope:global align:4
+aMFU_mv = .text:0x002C2648; // type:function size:0x4 scope:global align:4
+aMFU_dt = .text:0x002C264C; // type:function size:0x4 scope:global align:4
+aMFU_dma = .text:0x002C2650; // type:function size:0x90 scope:global align:4
+fNBC_ct = .text:0x002C26E0; // type:function size:0xA4 scope:global align:4
+fNBC_mv = .text:0x002C2784; // type:function size:0xD0 scope:global align:4
+fNBC_DrawBalloonBefore = .text:0x002C2854; // type:function size:0x8 scope:global align:4
+fNBC_DrawBalloonAfter = .text:0x002C285C; // type:function size:0x8 scope:global align:4
+fNBC_dw = .text:0x002C2864; // type:function size:0x94 scope:global align:4
+fNBC_dt = .text:0x002C28F8; // type:function size:0x4 scope:global align:4
+fNBT_dw = .text:0x002C28FC; // type:function size:0x12C scope:global align:4
+aNogFan_ControlSwitchSE = .text:0x002C2A28; // type:function size:0x44 scope:global align:4
+aNogFan_ChangeSwitch = .text:0x002C2A6C; // type:function size:0x2C scope:global align:4
+aNogFan_ct = .text:0x002C2A98; // type:function size:0xA4 scope:global align:4
+aNogFan_mv = .text:0x002C2B3C; // type:function size:0x274 scope:global align:4
+aNogFan_dw = .text:0x002C2DB0; // type:function size:0xF0 scope:global align:4
+aNogFan_dt = .text:0x002C2EA0; // type:function size:0x4 scope:global align:4
+fNKA_mv = .text:0x002C2EA4; // type:function size:0x4C scope:global align:4
+fNKR_mv = .text:0x002C2EF0; // type:function size:0x4C scope:global align:4
+fNogKamakura_ct = .text:0x002C2F3C; // type:function size:0x54 scope:global align:4
+fNogKamakura_mv = .text:0x002C2F90; // type:function size:0x38 scope:global align:4
+fNogKamakura_dt = .text:0x002C2FC8; // type:function size:0x2C scope:global align:4
+fNogKamakura_dw = .text:0x002C2FF4; // type:function size:0xCC scope:global align:4
+fNgKr_mv = .text:0x002C30C0; // type:function size:0x4C scope:global align:4
+fNKN_ct = .text:0x002C310C; // type:function size:0x54 scope:global align:4
+fNKN_mv = .text:0x002C3160; // type:function size:0x38 scope:global align:4
+fNKN_dt = .text:0x002C3198; // type:function size:0x2C scope:global align:4
+fNKN_dw = .text:0x002C31C4; // type:function size:0xCC scope:global align:4
+fNMM_ct = .text:0x002C3290; // type:function size:0x54 scope:global align:4
+fNMM_mv = .text:0x002C32E4; // type:function size:0x38 scope:global align:4
+fNMM_dt = .text:0x002C331C; // type:function size:0x2C scope:global align:4
+fNMM_dw = .text:0x002C3348; // type:function size:0xCC scope:global align:4
+fNM2_GetPalletIndex = .text:0x002C3414; // type:function size:0xC4 scope:global align:4
+fNM2_ct = .text:0x002C34D8; // type:function size:0x70 scope:global align:4
+fNM2_mv = .text:0x002C3548; // type:function size:0x54 scope:global align:4
+fNM2_dt = .text:0x002C359C; // type:function size:0x2C scope:global align:4
+fNM2_dw = .text:0x002C35C8; // type:function size:0xCC scope:global align:4
+fNM4_dw = .text:0x002C3694; // type:function size:0xCC scope:global align:4
+fNNB_ct = .text:0x002C3760; // type:function size:0x100 scope:global align:4
+fNNB_mv = .text:0x002C3860; // type:function size:0x288 scope:global align:4
+fNNB_dt = .text:0x002C3AE8; // type:function size:0x24 scope:global align:4
+fNNB_DrawBefore = .text:0x002C3B0C; // type:function size:0x18 scope:global align:4
+fNNB_DrawAfter = .text:0x002C3B24; // type:function size:0x80 scope:global align:4
+fNNB_dw = .text:0x002C3BA4; // type:function size:0x1A0 scope:global align:4
+aNogPawnB_ct = .text:0x002C3D44; // type:function size:0x74 scope:global align:4
+aNogPawnB_mv = .text:0x002C3DB8; // type:function size:0x3C scope:global align:4
+aNogPawnB_DwAfter = .text:0x002C3DF4; // type:function size:0x148 scope:global align:4
+aNogPawnB_DwBefore = .text:0x002C3F3C; // type:function size:0x18 scope:global align:4
+aNogPawnB_dw = .text:0x002C3F54; // type:function size:0x94 scope:global align:4
+aNogPawnB_dt = .text:0x002C3FE8; // type:function size:0x4 scope:global align:4
+aNogpawnW_ct = .text:0x002C3FEC; // type:function size:0x74 scope:global align:4
+aNogpawnW_mv = .text:0x002C4060; // type:function size:0x3C scope:global align:4
+aNogpawnW_DwAfter = .text:0x002C409C; // type:function size:0x148 scope:global align:4
+aNogpawnW_DwBefore = .text:0x002C41E4; // type:function size:0x18 scope:global align:4
+aNogpawnW_dw = .text:0x002C41FC; // type:function size:0x94 scope:global align:4
+aNogpawnW_dt = .text:0x002C4290; // type:function size:0x4 scope:global align:4
+fNSH_ct = .text:0x002C4294; // type:function size:0x4 scope:global align:4
+fNSH_mv = .text:0x002C4298; // type:function size:0x4 scope:global align:4
+fNSH_dt = .text:0x002C429C; // type:function size:0x4 scope:global align:4
+fNSH_GetTileGfx = .text:0x002C42A0; // type:function size:0x54 scope:global align:4
+fNSH_dw = .text:0x002C42F4; // type:function size:0x138 scope:global align:4
+fNSN_ct = .text:0x002C442C; // type:function size:0x8C scope:global align:4
+fNSN_mv = .text:0x002C44B8; // type:function size:0x24 scope:global align:4
+fNSN_dt = .text:0x002C44DC; // type:function size:0x4 scope:global align:4
+fNSN_DrawBefore = .text:0x002C44E0; // type:function size:0x54 scope:global align:4
+fNSN_DrawAfter = .text:0x002C4534; // type:function size:0x8 scope:global align:4
+fNSN_dw = .text:0x002C453C; // type:function size:0xC8 scope:global align:4
+fNS1_ct = .text:0x002C4604; // type:function size:0x54 scope:global align:4
+fNS1_mv = .text:0x002C4658; // type:function size:0x38 scope:global align:4
+fNS1_dt = .text:0x002C4690; // type:function size:0x2C scope:global align:4
+fNS1_dw = .text:0x002C46BC; // type:function size:0xCC scope:global align:4
+aNogTriAudio01_ct = .text:0x002C4788; // type:function size:0x4 scope:global align:4
+aNogTriAudio01_mv = .text:0x002C478C; // type:function size:0x44 scope:global align:4
+aNogTriAudio01_dw = .text:0x002C47D0; // type:function size:0x4 scope:global align:4
+aNogTriAudio01_dt = .text:0x002C47D4; // type:function size:0x4 scope:global align:4
+aNogTriChest01_ct = .text:0x002C47D8; // type:function size:0x74 scope:global align:4
+aNogTriChest01_mv = .text:0x002C484C; // type:function size:0x50 scope:global align:4
+aNogTriChest01_dw = .text:0x002C489C; // type:function size:0x8C scope:global align:4
+aNogTriChest01_dt = .text:0x002C4928; // type:function size:0x4 scope:global align:4
+aNogTriChest02_ct = .text:0x002C492C; // type:function size:0x74 scope:global align:4
+aNogTriChest02_mv = .text:0x002C49A0; // type:function size:0x50 scope:global align:4
+aNogTriChest02_dw = .text:0x002C49F0; // type:function size:0x8C scope:global align:4
+aNogTriChest02_dt = .text:0x002C4A7C; // type:function size:0x4 scope:global align:4
+aNogTriChest03_ct = .text:0x002C4A80; // type:function size:0x74 scope:global align:4
+aNogTriChest03_mv = .text:0x002C4AF4; // type:function size:0x50 scope:global align:4
+aNogTriChest03_dw = .text:0x002C4B44; // type:function size:0x8C scope:global align:4
+aNogTriChest03_dt = .text:0x002C4BD0; // type:function size:0x4 scope:global align:4
+aNogTriClock01_DwAfter = .text:0x002C4BD4; // type:function size:0x8 scope:global align:4
+aNogTriClock01_DwBefore = .text:0x002C4BDC; // type:function size:0x54 scope:global align:4
+aNogTriClock01_dw = .text:0x002C4C30; // type:function size:0x50 scope:global align:4
+aNogTriClock01_ct = .text:0x002C4C80; // type:function size:0x74 scope:global align:4
+aNogTriClock01_mv = .text:0x002C4CF4; // type:function size:0x24 scope:global align:4
+aNogTriClock01_dt = .text:0x002C4D18; // type:function size:0x4 scope:global align:4
+fNU_ct = .text:0x002C4D1C; // type:function size:0x54 scope:global align:4
+fNU_mv = .text:0x002C4D70; // type:function size:0x38 scope:global align:4
+fNU_dt = .text:0x002C4DA8; // type:function size:0x2C scope:global align:4
+fNU_dw = .text:0x002C4DD4; // type:function size:0xCC scope:global align:4
+fNYS_ct = .text:0x002C4EA0; // type:function size:0x54 scope:global align:4
+fNYS_mv = .text:0x002C4EF4; // type:function size:0x38 scope:global align:4
+fNYS_dt = .text:0x002C4F2C; // type:function size:0x2C scope:global align:4
+fNYS_dw = .text:0x002C4F58; // type:function size:0xCC scope:global align:4
+fNYB_ct = .text:0x002C5024; // type:function size:0x54 scope:global align:4
+fNYB_mv = .text:0x002C5078; // type:function size:0x38 scope:global align:4
+fNYB_dt = .text:0x002C50B0; // type:function size:0x2C scope:global align:4
+fNYB_dw = .text:0x002C50DC; // type:function size:0xCC scope:global align:4
+aSumAbura_ct = .text:0x002C51A8; // type:function size:0x74 scope:global align:4
+aSumAbura_mv = .text:0x002C521C; // type:function size:0x88 scope:global align:4
+aSumAbura_dw = .text:0x002C52A4; // type:function size:0x48 scope:global align:4
+aSumAsiChest02_ct = .text:0x002C52EC; // type:function size:0x74 scope:global align:4
+aSumAsiChest02_mv = .text:0x002C5360; // type:function size:0x50 scope:global align:4
+aSumAsiChest02_dw = .text:0x002C53B0; // type:function size:0x8C scope:global align:4
+aSumAsiChest02_dt = .text:0x002C543C; // type:function size:0x4 scope:global align:4
+aSumAsiChest03_ct = .text:0x002C5440; // type:function size:0x74 scope:global align:4
+aSumAsiChest03_mv = .text:0x002C54B4; // type:function size:0x50 scope:global align:4
+aSumAsiChest03_dw = .text:0x002C5504; // type:function size:0x8C scope:global align:4
+aSumAsiChest03_dt = .text:0x002C5590; // type:function size:0x4 scope:global align:4
+aSumasitaiko_ct = .text:0x002C5594; // type:function size:0x4 scope:global align:4
+aSumasitaiko_mv = .text:0x002C5598; // type:function size:0x44 scope:global align:4
+aSumasitaiko_dw = .text:0x002C55DC; // type:function size:0x4 scope:global align:4
+aSumasitaiko_dt = .text:0x002C55E0; // type:function size:0x4 scope:global align:4
+aSumBass01_ct = .text:0x002C55E4; // type:function size:0x4 scope:global align:4
+aSumBass01_mv = .text:0x002C55E8; // type:function size:0x44 scope:global align:4
+aSumBass01_dw = .text:0x002C562C; // type:function size:0x4 scope:global align:4
+aSumBass01_dt = .text:0x002C5630; // type:function size:0x4 scope:global align:4
+aSB_SumBdcake01Draw = .text:0x002C5634; // type:function size:0x148 scope:global align:4
+aSB_SumBdcake01Move = .text:0x002C577C; // type:function size:0x10 scope:global align:4
+aSB_SumBdcake01Ct = .text:0x002C578C; // type:function size:0xC scope:global align:4
+aSumBiwa01_ct = .text:0x002C5798; // type:function size:0x4 scope:global align:4
+aSumBiwa01_mv = .text:0x002C579C; // type:function size:0x44 scope:global align:4
+aSumBiwa01_dw = .text:0x002C57E0; // type:function size:0x4 scope:global align:4
+aSumBiwa01_dt = .text:0x002C57E4; // type:function size:0x4 scope:global align:4
+aSumBlaChest01_ct = .text:0x002C57E8; // type:function size:0x74 scope:global align:4
+aSumBlaChest01_mv = .text:0x002C585C; // type:function size:0x50 scope:global align:4
+aSumBlaChest01_dw = .text:0x002C58AC; // type:function size:0x8C scope:global align:4
+aSumBlaChest01_dt = .text:0x002C5938; // type:function size:0x4 scope:global align:4
+aSumBlaChest03_ct = .text:0x002C593C; // type:function size:0x74 scope:global align:4
+aSumBlaChest03_mv = .text:0x002C59B0; // type:function size:0x50 scope:global align:4
+aSumBlaChest03_dw = .text:0x002C5A00; // type:function size:0x8C scope:global align:4
+aSumBlaChest03_dt = .text:0x002C5A8C; // type:function size:0x4 scope:global align:4
+aSumBlaLanp_dw = .text:0x002C5A90; // type:function size:0x9C scope:global align:4
+aSumBlueBureau01_ct = .text:0x002C5B2C; // type:function size:0x74 scope:global align:4
+aSumBlueBureau01_mv = .text:0x002C5BA0; // type:function size:0x50 scope:global align:4
+aSumBlueBureau01_dw = .text:0x002C5BF0; // type:function size:0x8C scope:global align:4
+aSumBlueBureau01_dt = .text:0x002C5C7C; // type:function size:0x4 scope:global align:4
+aSumBlueCab01_ct = .text:0x002C5C80; // type:function size:0x74 scope:global align:4
+aSumBlueCab01_mv = .text:0x002C5CF4; // type:function size:0x50 scope:global align:4
+aSumBlueCab01_dw = .text:0x002C5D44; // type:function size:0x8C scope:global align:4
+aSumBlueCab01_dt = .text:0x002C5DD0; // type:function size:0x4 scope:global align:4
+aSumBlueClk_DwAfter = .text:0x002C5DD4; // type:function size:0x340 scope:global align:4
+aSumBlueClk_DwBefore = .text:0x002C6114; // type:function size:0x28 scope:global align:4
+aSumBlueClk_dw = .text:0x002C613C; // type:function size:0x50 scope:global align:4
+aSumBlueClk_ct = .text:0x002C618C; // type:function size:0x74 scope:global align:4
+aSumBlueClk_mv = .text:0x002C6200; // type:function size:0xD8 scope:global align:4
+aSumBlueClk_dt = .text:0x002C62D8; // type:function size:0x4 scope:global align:4
+aSumBlueLowChest01_ct = .text:0x002C62DC; // type:function size:0x74 scope:global align:4
+aSumBlueLowChest01_mv = .text:0x002C6350; // type:function size:0x50 scope:global align:4
+aSumBlueLowChest01_dw = .text:0x002C63A0; // type:function size:0x8C scope:global align:4
+aSumBlueLowChest01_dt = .text:0x002C642C; // type:function size:0x4 scope:global align:4
+aSumCasse01_ct = .text:0x002C6430; // type:function size:0x4 scope:global align:4
+aSumCasse01_mv = .text:0x002C6434; // type:function size:0x4C scope:global align:4
+aSumCasse01_dw = .text:0x002C6480; // type:function size:0x4 scope:global align:4
+aSumCasse01_dt = .text:0x002C6484; // type:function size:0x4 scope:global align:4
+aSumCello01_ct = .text:0x002C6488; // type:function size:0x4 scope:global align:4
+aSumCello01_mv = .text:0x002C648C; // type:function size:0x44 scope:global align:4
+aSumCello01_dw = .text:0x002C64D0; // type:function size:0x4 scope:global align:4
+aSumCello01_dt = .text:0x002C64D4; // type:function size:0x4 scope:global align:4
+aSumChikuon01_ct = .text:0x002C64D8; // type:function size:0x4 scope:global align:4
+aSumChikuon01_mv = .text:0x002C64DC; // type:function size:0x44 scope:global align:4
+aSumChikuon01_dw = .text:0x002C6520; // type:function size:0x4 scope:global align:4
+aSumChikuon01_dt = .text:0x002C6524; // type:function size:0x4 scope:global align:4
+aSumChikuon02_ct = .text:0x002C6528; // type:function size:0x4 scope:global align:4
+aSumChikuon02_mv = .text:0x002C652C; // type:function size:0x44 scope:global align:4
+aSumChikuon02_dw = .text:0x002C6570; // type:function size:0x4 scope:global align:4
+aSumChikuon02_dt = .text:0x002C6574; // type:function size:0x4 scope:global align:4
+aSumClchest01_ct = .text:0x002C6578; // type:function size:0x74 scope:global align:4
+aSumClchest01_mv = .text:0x002C65EC; // type:function size:0x50 scope:global align:4
+aSumClchest01_dw = .text:0x002C663C; // type:function size:0x8C scope:global align:4
+aSumClchest01_dt = .text:0x002C66C8; // type:function size:0x4 scope:global align:4
+aSumClChest03_ct = .text:0x002C66CC; // type:function size:0x74 scope:global align:4
+aSumClChest03_mv = .text:0x002C6740; // type:function size:0x50 scope:global align:4
+aSumClChest03_dw = .text:0x002C6790; // type:function size:0x8C scope:global align:4
+aSumClChest03_dt = .text:0x002C681C; // type:function size:0x4 scope:global align:4
+asumconga01_ct = .text:0x002C6820; // type:function size:0x4 scope:global align:4
+asumconga01_mv = .text:0x002C6824; // type:function size:0x44 scope:global align:4
+asumconga01_dw = .text:0x002C6868; // type:function size:0x4 scope:global align:4
+asumconga01_dt = .text:0x002C686C; // type:function size:0x4 scope:global align:4
+aSumConpo01_ct = .text:0x002C6870; // type:function size:0x4 scope:global align:4
+aSumConpo01_mv = .text:0x002C6874; // type:function size:0x4C scope:global align:4
+aSumConpo01_dw = .text:0x002C68C0; // type:function size:0x4 scope:global align:4
+aSumConpo01_dt = .text:0x002C68C4; // type:function size:0x4 scope:global align:4
+aSumConpo02_ct = .text:0x002C68C8; // type:function size:0x4 scope:global align:4
+aSumConpo02_mv = .text:0x002C68CC; // type:function size:0x44 scope:global align:4
+aSumConpo02_dw = .text:0x002C6910; // type:function size:0x4 scope:global align:4
+aSumConpo02_dt = .text:0x002C6914; // type:function size:0x4 scope:global align:4
+aSumContChest02_ct = .text:0x002C6918; // type:function size:0x74 scope:global align:4
+aSumContChest02_mv = .text:0x002C698C; // type:function size:0x50 scope:global align:4
+aSumContChest02_dw = .text:0x002C69DC; // type:function size:0x8C scope:global align:4
+aSumContChest02_dt = .text:0x002C6A68; // type:function size:0x4 scope:global align:4
+aSumContChest03_ct = .text:0x002C6A6C; // type:function size:0x74 scope:global align:4
+aSumContChest03_mv = .text:0x002C6AE0; // type:function size:0x50 scope:global align:4
+aSumContChest03_dw = .text:0x002C6B30; // type:function size:0x8C scope:global align:4
+aSumContChest03_dt = .text:0x002C6BBC; // type:function size:0x4 scope:global align:4
+aSumDoll01_dw = .text:0x002C6BC0; // type:function size:0x80 scope:global align:4
+aSumFruitchest01_ct = .text:0x002C6C40; // type:function size:0x74 scope:global align:4
+aSumFruitchest01_mv = .text:0x002C6CB4; // type:function size:0x50 scope:global align:4
+aSumFruitchest01_dw = .text:0x002C6D04; // type:function size:0x8C scope:global align:4
+aSumFruitchest01_dt = .text:0x002C6D90; // type:function size:0x4 scope:global align:4
+aSumFruitchest03_ct = .text:0x002C6D94; // type:function size:0x74 scope:global align:4
+aSumFruitchest03_mv = .text:0x002C6E08; // type:function size:0x50 scope:global align:4
+aSumFruitchest03_dw = .text:0x002C6E58; // type:function size:0x8C scope:global align:4
+aSumFruitchest03_dt = .text:0x002C6EE4; // type:function size:0x4 scope:global align:4
+aSumfruitclk_DwAfter = .text:0x002C6EE8; // type:function size:0x8 scope:global align:4
+aSumfruitclk_DwBefore = .text:0x002C6EF0; // type:function size:0x54 scope:global align:4
+aSumfruitclk_dw = .text:0x002C6F44; // type:function size:0x50 scope:global align:4
+aSumfruitclk_ct = .text:0x002C6F94; // type:function size:0x74 scope:global align:4
+aSumfruitclk_mv = .text:0x002C7008; // type:function size:0x24 scope:global align:4
+aSumfruitclk_dt = .text:0x002C702C; // type:function size:0x4 scope:global align:4
+aSumFruittv01_ct = .text:0x002C7030; // type:function size:0x4 scope:global align:4
+aSumFruittv01_mv = .text:0x002C7034; // type:function size:0xC0 scope:global align:4
+aSumFruittv01_dw = .text:0x002C70F4; // type:function size:0x100 scope:global align:4
+aSumFruittv01_dt = .text:0x002C71F4; // type:function size:0x4 scope:global align:4
+aSumgenji_ct = .text:0x002C71F8; // type:function size:0x74 scope:global align:4
+aSumgenji_GetPrimDisp = .text:0x002C726C; // type:function size:0x9C scope:global align:4
+aSumgenji_dw = .text:0x002C7308; // type:function size:0xF4 scope:global align:4
+aSumgenji_mv = .text:0x002C73FC; // type:function size:0x54 scope:global align:4
+aSumgenji_dt = .text:0x002C7450; // type:function size:0x4 scope:global align:4
+aSumGreChest02_ct = .text:0x002C7454; // type:function size:0x74 scope:global align:4
+aSumGreChest02_mv = .text:0x002C74C8; // type:function size:0x50 scope:global align:4
+aSumGreChest02_dw = .text:0x002C7518; // type:function size:0x8C scope:global align:4
+aSumGreChest02_dt = .text:0x002C75A4; // type:function size:0x4 scope:global align:4
+aSumGreChest03_ct = .text:0x002C75A8; // type:function size:0x74 scope:global align:4
+aSumGreChest03_mv = .text:0x002C761C; // type:function size:0x50 scope:global align:4
+aSumGreChest03_dw = .text:0x002C766C; // type:function size:0x8C scope:global align:4
+aSumGreChest03_dt = .text:0x002C76F8; // type:function size:0x4 scope:global align:4
+aSumGreLanp01_dw = .text:0x002C76FC; // type:function size:0x80 scope:global align:4
+aSumGuitar01_ct = .text:0x002C777C; // type:function size:0x4 scope:global align:4
+aSumGuitar01_mv = .text:0x002C7780; // type:function size:0x44 scope:global align:4
+aSumGuitar01_dw = .text:0x002C77C4; // type:function size:0x4 scope:global align:4
+aSumGuitar01_dt = .text:0x002C77C8; // type:function size:0x4 scope:global align:4
+aSumGuitar02_ct = .text:0x002C77CC; // type:function size:0x4 scope:global align:4
+aSumGuitar02_mv = .text:0x002C77D0; // type:function size:0x44 scope:global align:4
+aSumGuitar02_dw = .text:0x002C7814; // type:function size:0x4 scope:global align:4
+aSumGuitar02_dt = .text:0x002C7818; // type:function size:0x4 scope:global align:4
+aSumGuitar03_ct = .text:0x002C781C; // type:function size:0x4 scope:global align:4
+aSumGuitar03_mv = .text:0x002C7820; // type:function size:0x44 scope:global align:4
+aSumGuitar03_dw = .text:0x002C7864; // type:function size:0x4 scope:global align:4
+aSumGuitar03_dt = .text:0x002C7868; // type:function size:0x4 scope:global align:4
+aSumHalBox01_ct = .text:0x002C786C; // type:function size:0x84 scope:global align:4
+aSumHalBox01_mv = .text:0x002C78F0; // type:function size:0xD0 scope:global align:4
+aSumHalBox01_dw = .text:0x002C79C0; // type:function size:0x8C scope:global align:4
+aSumHalBox01_dt = .text:0x002C7A4C; // type:function size:0x4 scope:global align:4
+aSumHalChest02_ct = .text:0x002C7A50; // type:function size:0x74 scope:global align:4
+aSumHalChest02_mv = .text:0x002C7AC4; // type:function size:0x50 scope:global align:4
+aSumHalChest02_dw = .text:0x002C7B14; // type:function size:0x8C scope:global align:4
+aSumHalChest02_dt = .text:0x002C7BA0; // type:function size:0x4 scope:global align:4
+aSumHalChest03_ct = .text:0x002C7BA4; // type:function size:0x74 scope:global align:4
+aSumHalChest03_mv = .text:0x002C7C18; // type:function size:0x50 scope:global align:4
+aSumHalChest03_dw = .text:0x002C7C68; // type:function size:0x8C scope:global align:4
+aSumHalChest03_dt = .text:0x002C7CF4; // type:function size:0x4 scope:global align:4
+aSumHalClk01_DwAfter = .text:0x002C7CF8; // type:function size:0x280 scope:global align:4
+aSumHalClk01_DwBefore = .text:0x002C7F78; // type:function size:0x2C scope:global align:4
+aSumHalClk01_dw = .text:0x002C7FA4; // type:function size:0x50 scope:global align:4
+aSumHalClk01_ct = .text:0x002C7FF4; // type:function size:0x74 scope:global align:4
+aSumHalClk01_mv = .text:0x002C8068; // type:function size:0x24 scope:global align:4
+aSumHalClk01_dt = .text:0x002C808C; // type:function size:0x4 scope:global align:4
+aSumHalLanp01_dw = .text:0x002C8090; // type:function size:0x80 scope:global align:4
+aSumHalMirror01_dw = .text:0x002C8110; // type:function size:0x80 scope:global align:4
+aSumHarp_ct = .text:0x002C8190; // type:function size:0x4 scope:global align:4
+aSumHarp_mv = .text:0x002C8194; // type:function size:0x44 scope:global align:4
+aSumHarp_dw = .text:0x002C81D8; // type:function size:0x4 scope:global align:4
+aSumHarp_dt = .text:0x002C81DC; // type:function size:0x4 scope:global align:4
+aSumHigurashi_ct = .text:0x002C81E0; // type:function size:0x74 scope:global align:4
+aSumHigurashi_mv = .text:0x002C8254; // type:function size:0x88 scope:global align:4
+aSumHigurashi_dw = .text:0x002C82DC; // type:function size:0x48 scope:global align:4
+aSumJukebox_ct = .text:0x002C8324; // type:function size:0x4 scope:global align:4
+aSumJukebox_mv = .text:0x002C8328; // type:function size:0x44 scope:global align:4
+aSumJukebox_dw = .text:0x002C836C; // type:function size:0x4 scope:global align:4
+aSumJukebox_dt = .text:0x002C8370; // type:function size:0x4 scope:global align:4
+aSumKirigirisu_ct = .text:0x002C8374; // type:function size:0x74 scope:global align:4
+aSumKirigirisu_mv = .text:0x002C83E8; // type:function size:0x88 scope:global align:4
+aSumKirigirisu_dw = .text:0x002C8470; // type:function size:0x48 scope:global align:4
+aSumKisha_ControlSwitchSE = .text:0x002C84B8; // type:function size:0x44 scope:global align:4
+aSumKisha_ChangeSwitch = .text:0x002C84FC; // type:function size:0x2C scope:global align:4
+aSumKisha_ct = .text:0x002C8528; // type:function size:0x9C scope:global align:4
+aSumKisha_mv = .text:0x002C85C4; // type:function size:0x1E4 scope:global align:4
+aSumKisha_dw = .text:0x002C87A8; // type:function size:0x8C scope:global align:4
+aSumKisha_dt = .text:0x002C8834; // type:function size:0x4 scope:global align:4
+aSumKoorogi_ct = .text:0x002C8838; // type:function size:0x74 scope:global align:4
+aSumKoorogi_mv = .text:0x002C88AC; // type:function size:0x88 scope:global align:4
+aSumKoorogi_dw = .text:0x002C8934; // type:function size:0x48 scope:global align:4
+aSumLiccachest_ct = .text:0x002C897C; // type:function size:0x74 scope:global align:4
+aSumLiccachest_mv = .text:0x002C89F0; // type:function size:0x50 scope:global align:4
+aSumLiccachest_dw = .text:0x002C8A40; // type:function size:0x8C scope:global align:4
+aSumLiccachest_dt = .text:0x002C8ACC; // type:function size:0x4 scope:global align:4
+aSumLiccaLowChest_ct = .text:0x002C8AD0; // type:function size:0x74 scope:global align:4
+aSumLiccaLowChest_mv = .text:0x002C8B44; // type:function size:0x50 scope:global align:4
+aSumLiccaLowChest_dw = .text:0x002C8B94; // type:function size:0x8C scope:global align:4
+aSumLiccaLowChest_dt = .text:0x002C8C20; // type:function size:0x4 scope:global align:4
+aSumLiccaMirror_dw = .text:0x002C8C24; // type:function size:0x80 scope:global align:4
+aSumLiccapiano_ct = .text:0x002C8CA4; // type:function size:0x4 scope:global align:4
+aSumLiccapiano_mv = .text:0x002C8CA8; // type:function size:0x44 scope:global align:4
+aSumLiccapiano_dw = .text:0x002C8CEC; // type:function size:0x4 scope:global align:4
+aSumLiccapiano_dt = .text:0x002C8CF0; // type:function size:0x4 scope:global align:4
+aSumLogChest01_ct = .text:0x002C8CF4; // type:function size:0x74 scope:global align:4
+aSumLogChest01_mv = .text:0x002C8D68; // type:function size:0x50 scope:global align:4
+aSumLogChest01_dw = .text:0x002C8DB8; // type:function size:0x8C scope:global align:4
+aSumLogChest01_dt = .text:0x002C8E44; // type:function size:0x4 scope:global align:4
+aSumBlaChest02_ct = .text:0x002C8E48; // type:function size:0x74 scope:global align:4
+aSumBlaChest02_mv = .text:0x002C8EBC; // type:function size:0x50 scope:global align:4
+aSumBlaChest02_dw = .text:0x002C8F0C; // type:function size:0x8C scope:global align:4
+aSumBlaChest02_dt = .text:0x002C8F98; // type:function size:0x4 scope:global align:4
+aSumLogHatoclk_StopAnimeInitNormal = .text:0x002C8F9C; // type:function size:0x48 scope:global align:4
+aSumLogHatoclk_ct = .text:0x002C8FE4; // type:function size:0x78 scope:global align:4
+aSumLogHatoclk_DwAfter = .text:0x002C905C; // type:function size:0x280 scope:global align:4
+aSumLogHatoclk_DwBefore = .text:0x002C92DC; // type:function size:0x20 scope:global align:4
+aSumLogHatoclk_dw = .text:0x002C92FC; // type:function size:0x50 scope:global align:4
+aSumLogHatoclk_mv = .text:0x002C934C; // type:function size:0x210 scope:global align:4
+aSumLogHatoclk_dt = .text:0x002C955C; // type:function size:0x4 scope:global align:4
+aSumLv_Stereo_ct = .text:0x002C9560; // type:function size:0x4 scope:global align:4
+aSumLv_Stereo_mv = .text:0x002C9564; // type:function size:0x44 scope:global align:4
+aSumLv_Stereo_dw = .text:0x002C95A8; // type:function size:0x4 scope:global align:4
+aSumLv_Stereo_dt = .text:0x002C95AC; // type:function size:0x4 scope:global align:4
+aSumMatumushi_ct = .text:0x002C95B0; // type:function size:0x74 scope:global align:4
+aSumMatumushi_mv = .text:0x002C9624; // type:function size:0x88 scope:global align:4
+aSumMatumushi_dw = .text:0x002C96AC; // type:function size:0x48 scope:global align:4
+aSumMd01_ct = .text:0x002C96F4; // type:function size:0x4 scope:global align:4
+aSumMd01_mv = .text:0x002C96F8; // type:function size:0x4C scope:global align:4
+aSumMd01_dw = .text:0x002C9744; // type:function size:0x4 scope:global align:4
+aSumMd01_dt = .text:0x002C9748; // type:function size:0x4 scope:global align:4
+aSumMezaClock_DwAfter = .text:0x002C974C; // type:function size:0xD4 scope:global align:4
+aSumMezaClock_DwBefore = .text:0x002C9820; // type:function size:0x54 scope:global align:4
+aSumMezaClock_Dw = .text:0x002C9874; // type:function size:0x50 scope:global align:4
+aSumMinmin_ct = .text:0x002C98C4; // type:function size:0x74 scope:global align:4
+aSumMinmin_mv = .text:0x002C9938; // type:function size:0x88 scope:global align:4
+aSumMinmin_dw = .text:0x002C99C0; // type:function size:0x48 scope:global align:4
+aSumMizunomi_ct = .text:0x002C9A08; // type:function size:0x4 scope:global align:4
+aSumMizunomi_mv = .text:0x002C9A0C; // type:function size:0x60 scope:global align:4
+aSumMizunomi_dw = .text:0x002C9A6C; // type:function size:0x4 scope:global align:4
+aSumMizunomi_dt = .text:0x002C9A70; // type:function size:0x4 scope:global align:4
+aSumOkiagari01_ct = .text:0x002C9A74; // type:function size:0x74 scope:global align:4
+aSumOkiagari01_mv = .text:0x002C9AE8; // type:function size:0xB8 scope:global align:4
+aSumOkiagari01_dw = .text:0x002C9BA0; // type:function size:0x8C scope:global align:4
+aSumOldClk01_ct = .text:0x002C9C2C; // type:function size:0x74 scope:global align:4
+aSumOldClk01_dwAfter = .text:0x002C9CA0; // type:function size:0x8 scope:global align:4
+aSumOldClk01_dwBefore = .text:0x002C9CA8; // type:function size:0x54 scope:global align:4
+aSumOldClk01_dw = .text:0x002C9CFC; // type:function size:0x50 scope:global align:4
+aSumOldClk01_mv = .text:0x002C9D4C; // type:function size:0xD8 scope:global align:4
+aSumOldClk01_dt = .text:0x002C9E24; // type:function size:0x4 scope:global align:4
+aSumPet01_ct = .text:0x002C9E28; // type:function size:0x74 scope:global align:4
+aSumPet01_mv = .text:0x002C9E9C; // type:function size:0x88 scope:global align:4
+aSumPet01_dw = .text:0x002C9F24; // type:function size:0x48 scope:global align:4
+aSumPiano01_ct = .text:0x002C9F6C; // type:function size:0x4 scope:global align:4
+aSumPiano01_mv = .text:0x002C9F70; // type:function size:0x44 scope:global align:4
+aSumPiano01_dw = .text:0x002C9FB4; // type:function size:0x4 scope:global align:4
+aSumPiano01_dt = .text:0x002C9FB8; // type:function size:0x4 scope:global align:4
+aSumRadio01_ct = .text:0x002C9FBC; // type:function size:0x4 scope:global align:4
+aSumRadio01_mv = .text:0x002C9FC0; // type:function size:0x4C scope:global align:4
+aSumRadio01_dw = .text:0x002CA00C; // type:function size:0x4 scope:global align:4
+aSumRadio01_dt = .text:0x002CA010; // type:function size:0x4 scope:global align:4
+aSumRadio02_ct = .text:0x002CA014; // type:function size:0x4 scope:global align:4
+aSumRadio02_mv = .text:0x002CA018; // type:function size:0x4C scope:global align:4
+aSumRadio02_dw = .text:0x002CA064; // type:function size:0x4 scope:global align:4
+aSumRadio02_dt = .text:0x002CA068; // type:function size:0x4 scope:global align:4
+aSumRatanChest01_ct = .text:0x002CA06C; // type:function size:0x74 scope:global align:4
+aSumRatanChest01_mv = .text:0x002CA0E0; // type:function size:0x50 scope:global align:4
+aSumRatanChest01_dw = .text:0x002CA130; // type:function size:0x8C scope:global align:4
+aSumRatanChest01_dt = .text:0x002CA1BC; // type:function size:0x4 scope:global align:4
+aSumRatanChest02_ct = .text:0x002CA1C0; // type:function size:0x74 scope:global align:4
+aSumRatanChest02_mv = .text:0x002CA234; // type:function size:0x50 scope:global align:4
+aSumRatanChest02_dw = .text:0x002CA284; // type:function size:0x8C scope:global align:4
+aSumRatanChest02_dt = .text:0x002CA310; // type:function size:0x4 scope:global align:4
+aSumRatanMirror_dw = .text:0x002CA314; // type:function size:0x80 scope:global align:4
+aSumReco_ct = .text:0x002CA394; // type:function size:0x74 scope:global align:4
+aSumReco_mv = .text:0x002CA408; // type:function size:0x84 scope:global align:4
+aSumReco_dw = .text:0x002CA48C; // type:function size:0x8C scope:global align:4
+aSumReco_dt = .text:0x002CA518; // type:function size:0x4 scope:global align:4
+aSumroboclk_DwAfter = .text:0x002CA51C; // type:function size:0x8 scope:global align:4
+aSumroboclk_DwBefore = .text:0x002CA524; // type:function size:0x54 scope:global align:4
+aSumroboclk_dw = .text:0x002CA578; // type:function size:0x8C scope:global align:4
+aSumroboclk_ct = .text:0x002CA604; // type:function size:0x74 scope:global align:4
+aSumroboclk_mv = .text:0x002CA678; // type:function size:0x24 scope:global align:4
+aSumroboclk_dt = .text:0x002CA69C; // type:function size:0x4 scope:global align:4
+aSumRoboconpo_ct = .text:0x002CA6A0; // type:function size:0x74 scope:global align:4
+aSumRoboconpo_mv = .text:0x002CA714; // type:function size:0x6C scope:global align:4
+aSumRoboconpo_dw = .text:0x002CA780; // type:function size:0xF4 scope:global align:4
+aSumRoboconpo_dt = .text:0x002CA874; // type:function size:0x4 scope:global align:4
+aSumSaiconpo_ct = .text:0x002CA878; // type:function size:0x4 scope:global align:4
+aSumSaiconpo_mv = .text:0x002CA87C; // type:function size:0x4C scope:global align:4
+aSumSaiconpo_dw = .text:0x002CA8C8; // type:function size:0x4 scope:global align:4
+aSumSaiconpo_dt = .text:0x002CA8CC; // type:function size:0x4 scope:global align:4
+aSumSlot_ct = .text:0x002CA8D0; // type:function size:0x90 scope:global align:4
+aSumSlot_mv = .text:0x002CA960; // type:function size:0xFC scope:global align:4
+aSumSlot_dw = .text:0x002CAA5C; // type:function size:0xCC scope:global align:4
+aSumSlot_dt = .text:0x002CAB28; // type:function size:0x4 scope:global align:4
+aSumStereo01_ct = .text:0x002CAB2C; // type:function size:0x4 scope:global align:4
+aSumStereo01_mv = .text:0x002CAB30; // type:function size:0x4C scope:global align:4
+aSumStereo01_dw = .text:0x002CAB7C; // type:function size:0x4 scope:global align:4
+aSumStereo01_dt = .text:0x002CAB80; // type:function size:0x4 scope:global align:4
+aSumStereo02_ct = .text:0x002CAB84; // type:function size:0x4 scope:global align:4
+aSumStereo02_mv = .text:0x002CAB88; // type:function size:0x4C scope:global align:4
+aSumStereo02_dw = .text:0x002CABD4; // type:function size:0x4 scope:global align:4
+aSumStereo02_dt = .text:0x002CABD8; // type:function size:0x4 scope:global align:4
+aSumStove01_dw = .text:0x002CABDC; // type:function size:0x80 scope:global align:4
+aSumSuzumushi_ct = .text:0x002CAC5C; // type:function size:0x74 scope:global align:4
+aSumSuzumushi_mv = .text:0x002CACD0; // type:function size:0x88 scope:global align:4
+aSumSuzumushi_dw = .text:0x002CAD58; // type:function size:0x48 scope:global align:4
+aSumSyouryou_ct = .text:0x002CADA0; // type:function size:0x74 scope:global align:4
+aSumSyouryou_mv = .text:0x002CAE14; // type:function size:0x88 scope:global align:4
+aSumSyouryou_dw = .text:0x002CAE9C; // type:function size:0x48 scope:global align:4
+asumtaiko01_ct = .text:0x002CAEE4; // type:function size:0x4 scope:global align:4
+asumtaiko01_mv = .text:0x002CAEE8; // type:function size:0x44 scope:global align:4
+asumtaiko01_dw = .text:0x002CAF2C; // type:function size:0x4 scope:global align:4
+asumtaiko01_dt = .text:0x002CAF30; // type:function size:0x4 scope:global align:4
+aSumTekin01_ct = .text:0x002CAF34; // type:function size:0x4 scope:global align:4
+aSumTekin01_mv = .text:0x002CAF38; // type:function size:0x44 scope:global align:4
+aSumTekin01_dw = .text:0x002CAF7C; // type:function size:0x4 scope:global align:4
+aSumTekin01_dt = .text:0x002CAF80; // type:function size:0x4 scope:global align:4
+aSumTimpani01_ct = .text:0x002CAF84; // type:function size:0x4 scope:global align:4
+aSumTimpani01_mv = .text:0x002CAF88; // type:function size:0x44 scope:global align:4
+aSumTimpani01_dw = .text:0x002CAFCC; // type:function size:0x4 scope:global align:4
+aSumTimpani01_dt = .text:0x002CAFD0; // type:function size:0x4 scope:global align:4
+aSumTonosama_ct = .text:0x002CAFD4; // type:function size:0x74 scope:global align:4
+aSumTonosama_mv = .text:0x002CB048; // type:function size:0x88 scope:global align:4
+aSumTonosama_dw = .text:0x002CB0D0; // type:function size:0x48 scope:global align:4
+aSumTukutuku_ct = .text:0x002CB118; // type:function size:0x74 scope:global align:4
+aSumTukutuku_mv = .text:0x002CB18C; // type:function size:0x88 scope:global align:4
+aSumTukutuku_dw = .text:0x002CB214; // type:function size:0x48 scope:global align:4
+aSumTv01_ct = .text:0x002CB25C; // type:function size:0x4 scope:global align:4
+aSumTv01_mv = .text:0x002CB260; // type:function size:0xC0 scope:global align:4
+aSumTv01_dw = .text:0x002CB320; // type:function size:0x100 scope:global align:4
+aSumTv01_dt = .text:0x002CB420; // type:function size:0x4 scope:global align:4
+aSumTv02_ct = .text:0x002CB424; // type:function size:0x4 scope:global align:4
+aSumTv02_mv = .text:0x002CB428; // type:function size:0xC0 scope:global align:4
+aSumTv02_dw = .text:0x002CB4E8; // type:function size:0x100 scope:global align:4
+aSumTv02_dt = .text:0x002CB5E8; // type:function size:0x4 scope:global align:4
+aSumViola01_ct = .text:0x002CB5EC; // type:function size:0x4 scope:global align:4
+aSumViola01_mv = .text:0x002CB5F0; // type:function size:0x44 scope:global align:4
+aSumViola01_dw = .text:0x002CB634; // type:function size:0x4 scope:global align:4
+aSumViola01_dt = .text:0x002CB638; // type:function size:0x4 scope:global align:4
+aSumWhiChest01_ct = .text:0x002CB63C; // type:function size:0x74 scope:global align:4
+aSumWhiChest01_mv = .text:0x002CB6B0; // type:function size:0x50 scope:global align:4
+aSumWhiChest01_dw = .text:0x002CB700; // type:function size:0x8C scope:global align:4
+aSumWhiChest01_dt = .text:0x002CB78C; // type:function size:0x4 scope:global align:4
+aSumWhiChest02_ct = .text:0x002CB790; // type:function size:0x74 scope:global align:4
+aSumWhiChest02_mv = .text:0x002CB804; // type:function size:0x50 scope:global align:4
+aSumWhiChest02_dw = .text:0x002CB854; // type:function size:0x8C scope:global align:4
+aSumWhiChest02_dt = .text:0x002CB8E0; // type:function size:0x4 scope:global align:4
+aSumWhiLanp_dw = .text:0x002CB8E4; // type:function size:0x80 scope:global align:4
+aSumWhiMirror_dw = .text:0x002CB964; // type:function size:0x80 scope:global align:4
+aSumXChest01_ct = .text:0x002CB9E4; // type:function size:0x74 scope:global align:4
+aSumXChest01_mv = .text:0x002CBA58; // type:function size:0x50 scope:global align:4
+aSumXChest01_dw = .text:0x002CBAA8; // type:function size:0x8C scope:global align:4
+aSumXChest01_dt = .text:0x002CBB34; // type:function size:0x4 scope:global align:4
+aSumXChest02_ct = .text:0x002CBB38; // type:function size:0x74 scope:global align:4
+aSumXChest02_mv = .text:0x002CBBAC; // type:function size:0x50 scope:global align:4
+aSumXChest02_dw = .text:0x002CBBFC; // type:function size:0x8C scope:global align:4
+aSumXChest02_dt = .text:0x002CBC88; // type:function size:0x4 scope:global align:4
+aSumXClk_DwAfter = .text:0x002CBC8C; // type:function size:0x340 scope:global align:4
+aSumXClk_DwBefore = .text:0x002CBFCC; // type:function size:0x28 scope:global align:4
+aSumXClk_dw = .text:0x002CBFF4; // type:function size:0x50 scope:global align:4
+aSumXClk_ct = .text:0x002CC044; // type:function size:0x74 scope:global align:4
+aSumXClk_mv = .text:0x002CC0B8; // type:function size:0xD8 scope:global align:4
+aSumXClk_dt = .text:0x002CC190; // type:function size:0x4 scope:global align:4
+aSumX_Piano_ct = .text:0x002CC194; // type:function size:0x4 scope:global align:4
+aSumX_Piano_mv = .text:0x002CC198; // type:function size:0x3C scope:global align:4
+aSumX_Piano_dw = .text:0x002CC1D4; // type:function size:0x4 scope:global align:4
+aSumX_Piano_dt = .text:0x002CC1D8; // type:function size:0x4 scope:global align:4
+fTIC_ct = .text:0x002CC1DC; // type:function size:0xA8 scope:global align:4
+fTIC_mv = .text:0x002CC284; // type:function size:0x144 scope:global align:4
+fTIC_DrawBefore = .text:0x002CC3C8; // type:function size:0x20 scope:global align:4
+fTIC_GetTwoTileGfx = .text:0x002CC3E8; // type:function size:0x54 scope:global align:4
+fTIC_DrawAfter = .text:0x002CC43C; // type:function size:0x180 scope:global align:4
+fTIC_dw = .text:0x002CC5BC; // type:function size:0x94 scope:global align:4
+fTL_ct = .text:0x002CC650; // type:function size:0x48 scope:global align:4
+fTL_mv = .text:0x002CC698; // type:function size:0x108 scope:global align:4
+fTL_GetTwoTileGfx = .text:0x002CC7A0; // type:function size:0x50 scope:global align:4
+fTL_dw = .text:0x002CC7F0; // type:function size:0x174 scope:global align:4
+fTL_dt = .text:0x002CC964; // type:function size:0xC scope:global align:4
+fTM_dw = .text:0x002CC970; // type:function size:0xAC scope:global align:4
+aTakMetro_ct = .text:0x002CCA1C; // type:function size:0xAC scope:global align:4
+aTakMetro_mv = .text:0x002CCAC8; // type:function size:0x1B0 scope:global align:4
+aTakMetro_dw = .text:0x002CCC78; // type:function size:0x8C scope:global align:4
+aTakMetro_dt = .text:0x002CCD04; // type:function size:0x4 scope:global align:4
+fTMny_ct = .text:0x002CCD08; // type:function size:0x74 scope:global align:4
+fTMny_GetSpeed = .text:0x002CCD7C; // type:function size:0xE4 scope:global align:4
+fTMny_mv = .text:0x002CCE60; // type:function size:0x264 scope:global align:4
+fTMny_dw = .text:0x002CD0C4; // type:function size:0x8C scope:global align:4
+fTMN_ct = .text:0x002CD150; // type:function size:0xEC scope:global align:4
+fTMN_mv = .text:0x002CD23C; // type:function size:0xD0 scope:global align:4
+fTMN_DrawBefore = .text:0x002CD30C; // type:function size:0x34 scope:global align:4
+fTMN_DrawAfter = .text:0x002CD340; // type:function size:0x8 scope:global align:4
+fTMN_dw = .text:0x002CD348; // type:function size:0x94 scope:global align:4
+fTTR_ct = .text:0x002CD3DC; // type:function size:0x54 scope:global align:4
+fTTR_mv = .text:0x002CD430; // type:function size:0x38 scope:global align:4
+fTTR_dt = .text:0x002CD468; // type:function size:0x2C scope:global align:4
+fTTR_dw = .text:0x002CD494; // type:function size:0xCC scope:global align:4
+fTTD_ct = .text:0x002CD560; // type:function size:0xA0 scope:global align:4
+fTTD_mv = .text:0x002CD600; // type:function size:0x98 scope:global align:4
+fTTD_DrawBefore = .text:0x002CD698; // type:function size:0x20 scope:global align:4
+fTTD_DrawAfter = .text:0x002CD6B8; // type:function size:0x110 scope:global align:4
+fTTD_dw = .text:0x002CD7C8; // type:function size:0x94 scope:global align:4
+fHF_ct = .text:0x002CD85C; // type:function size:0x4 scope:global align:4
+fHF_mv = .text:0x002CD860; // type:function size:0x40 scope:global align:4
+fHF_dw = .text:0x002CD8A0; // type:function size:0xF0 scope:global align:4
+fHF_dt = .text:0x002CD990; // type:function size:0x4 scope:global align:4
+fHF_dma = .text:0x002CD994; // type:function size:0x4 scope:global align:4
+fRT_ct = .text:0x002CD998; // type:function size:0x4 scope:global align:4
+fRT_mv = .text:0x002CD99C; // type:function size:0xEC scope:global align:4
+fRT_dw = .text:0x002CDA88; // type:function size:0xA8 scope:global align:4
+fRT_dt = .text:0x002CDB30; // type:function size:0x4 scope:global align:4
+fGI_ct = .text:0x002CDB34; // type:function size:0x4 scope:global align:4
+fGI_mv = .text:0x002CDB38; // type:function size:0x4 scope:global align:4
+fGI_dt = .text:0x002CDB3C; // type:function size:0x4 scope:global align:4
+fGI_dw = .text:0x002CDB40; // type:function size:0x11C scope:global align:4
+fUW_ct = .text:0x002CDC5C; // type:function size:0x4 scope:global align:4
+fUW_mv = .text:0x002CDC60; // type:function size:0x4 scope:global align:4
+fUW_dt = .text:0x002CDC64; // type:function size:0x4 scope:global align:4
+fUW_dw = .text:0x002CDC68; // type:function size:0xA8 scope:global align:4
+fKZ_ct = .text:0x002CDD10; // type:function size:0x4 scope:global align:4
+fKZ_mv = .text:0x002CDD14; // type:function size:0x4 scope:global align:4
+fKZ_dt = .text:0x002CDD18; // type:function size:0x4 scope:global align:4
+fKZ_dw = .text:0x002CDD1C; // type:function size:0x88 scope:global align:4
+fTOOL_ct = .text:0x002CDDA4; // type:function size:0x4 scope:global align:4
+fTOOL_mv = .text:0x002CDDA8; // type:function size:0x4 scope:global align:4
+fTOOL_dt = .text:0x002CDDAC; // type:function size:0x4 scope:global align:4
+fTOOL_dw = .text:0x002CDDB0; // type:function size:0x11C scope:global align:4
+fHMD_mv = .text:0x002CDECC; // type:function size:0x58 scope:global align:4
+fIMK_mv = .text:0x002CDF24; // type:function size:0x5C scope:global align:4
+fIMC_mv = .text:0x002CDF80; // type:function size:0x58 scope:global align:4
+fIMC_dw = .text:0x002CDFD8; // type:function size:0xCC scope:global align:4
+fIMD_mv = .text:0x002CE0A4; // type:function size:0x58 scope:global align:4
+fIMH_dw = .text:0x002CE0FC; // type:function size:0xE8 scope:global align:4
+fIMH_mv = .text:0x002CE1E4; // type:function size:0x58 scope:global align:4
+fIMKoura_mv = .text:0x002CE23C; // type:function size:0x58 scope:global align:4
+fIMT_mv = .text:0x002CE294; // type:function size:0x150 scope:global align:4
+fIMS_ct = .text:0x002CE3E4; // type:function size:0xC scope:global align:4
+fIMS_mv = .text:0x002CE3F0; // type:function size:0x90 scope:global align:4
+fIMS_dw = .text:0x002CE480; // type:function size:0xF0 scope:global align:4
+fITT_ct = .text:0x002CE570; // type:function size:0x4 scope:global align:4
+fITT_mv = .text:0x002CE574; // type:function size:0x98 scope:global align:4
+fITT_dw = .text:0x002CE60C; // type:function size:0x118 scope:global align:4
+fITT_dt = .text:0x002CE724; // type:function size:0x4 scope:global align:4
+gSBBQ_mv = .text:0x002CE728; // type:function size:0xF0 scope:global align:4
+fSKP_mv = .text:0x002CE818; // type:function size:0x4 scope:global align:4
+fSKP_GetTwoTileGfx = .text:0x002CE81C; // type:function size:0x50 scope:global align:4
+fSKP_dw = .text:0x002CE86C; // type:function size:0x1D4 scope:global align:4
+fSGT_ct = .text:0x002CEA40; // type:function size:0x74 scope:global align:4
+fSGT_mv = .text:0x002CEAB4; // type:function size:0x58 scope:global align:4
+fSGT_DwAfter = .text:0x002CEB0C; // type:function size:0x148 scope:global align:4
+fSGT_DwBefore = .text:0x002CEC54; // type:function size:0x18 scope:global align:4
+fSGT_GetTwoTileGfx = .text:0x002CEC6C; // type:function size:0x54 scope:global align:4
+fSGT_dw = .text:0x002CECC0; // type:function size:0x10C scope:global align:4
+fYC_ct = .text:0x002CEDCC; // type:function size:0xC scope:global align:4
+fYC_mv = .text:0x002CEDD8; // type:function size:0x4 scope:global align:4
+fYC_dw = .text:0x002CEDDC; // type:function size:0xD4 scope:global align:4
+fYC_dt = .text:0x002CEEB0; // type:function size:0x4 scope:global align:4
+fYFT_dw = .text:0x002CEEB4; // type:function size:0xB4 scope:global align:4
+fYMF_mv = .text:0x002CEF68; // type:function size:0x58 scope:global align:4
+fYMF_dw = .text:0x002CEFC0; // type:function size:0xDC scope:global align:4
+fYTCST_ct = .text:0x002CF09C; // type:function size:0x74 scope:global align:4
+fYTCST_mv = .text:0x002CF110; // type:function size:0x50 scope:global align:4
+fYTCST_dw = .text:0x002CF160; // type:function size:0x8C scope:global align:4
+fYTCST_dt = .text:0x002CF1EC; // type:function size:0x4 scope:global align:4
+fYTC_ct = .text:0x002CF1F0; // type:function size:0x74 scope:global align:4
+fYTC_mv = .text:0x002CF264; // type:function size:0x50 scope:global align:4
+fYTC_dw = .text:0x002CF2B4; // type:function size:0x8C scope:global align:4
+fYTC_dt = .text:0x002CF340; // type:function size:0x4 scope:global align:4
+fYTW_DwAfter = .text:0x002CF344; // type:function size:0x8 scope:global align:4
+fYTW_DwBefore = .text:0x002CF34C; // type:function size:0x54 scope:global align:4
+fYTW_dw = .text:0x002CF3A0; // type:function size:0x50 scope:global align:4
+fYTW_ct = .text:0x002CF3F0; // type:function size:0x74 scope:global align:4
+fYTW_mv = .text:0x002CF464; // type:function size:0x24 scope:global align:4
+fYTW_dt = .text:0x002CF488; // type:function size:0x4 scope:global align:4
+fTHM1_ct = .text:0x002CF48C; // type:function size:0x68 scope:global align:4
+fTHM1_mv = .text:0x002CF4F4; // type:function size:0x4C scope:global align:4
+fTHM1_dw = .text:0x002CF540; // type:function size:0xC4 scope:global align:4
+fTakNes_dw = .text:0x002CF604; // type:function size:0xF0 scope:global align:4
+fTNM_mv = .text:0x002CF6F4; // type:function size:0x58 scope:global align:4
+fTSW_ct = .text:0x002CF74C; // type:function size:0x4 scope:global align:4
+fTSW_mv = .text:0x002CF750; // type:function size:0xF0 scope:global align:4
+fTSW_dt = .text:0x002CF840; // type:function size:0x4 scope:global align:4
+fTSW_dw = .text:0x002CF844; // type:function size:0xF8 scope:global align:4
+fTTnt_ct = .text:0x002CF93C; // type:function size:0x54 scope:global align:4
+fTTnt_mv = .text:0x002CF990; // type:function size:0x38 scope:global align:4
+fTTnt_dt = .text:0x002CF9C8; // type:function size:0x2C scope:global align:4
+fTTnt_dw = .text:0x002CF9F4; // type:function size:0xE8 scope:global align:4
+fIFT2_dw = .text:0x002CFADC; // type:function size:0xB4 scope:global align:4
+fIPPnch_ct = .text:0x002CFB90; // type:function size:0x84 scope:global align:4
+fIPPnch_mv = .text:0x002CFC14; // type:function size:0x128 scope:global align:4
+fIPPnch_dw = .text:0x002CFD3C; // type:function size:0x8C scope:global align:4
+aIPS_ct = .text:0x002CFDC8; // type:function size:0x84 scope:global align:4
+aIPS_mv = .text:0x002CFE4C; // type:function size:0x128 scope:global align:4
+aIPS_dw = .text:0x002CFF74; // type:function size:0x8C scope:global align:4
+fITF_ct = .text:0x002D0000; // type:function size:0x74 scope:global align:4
+fITF_mv = .text:0x002D0074; // type:function size:0x7C scope:global align:4
+fITF_DwAfter = .text:0x002D00F0; // type:function size:0x148 scope:global align:4
+fITF_DwBefore = .text:0x002D0238; // type:function size:0x18 scope:global align:4
+fITF_GetTwoTileGfx = .text:0x002D0250; // type:function size:0x50 scope:global align:4
+fITF_dw = .text:0x002D02A0; // type:function size:0x10C scope:global align:4
+fITF02_ct = .text:0x002D03AC; // type:function size:0x74 scope:global align:4
+fITF02_mv = .text:0x002D0420; // type:function size:0x7C scope:global align:4
+fITF02_DwAfter = .text:0x002D049C; // type:function size:0x148 scope:global align:4
+fITF02_DwBefore = .text:0x002D05E4; // type:function size:0x18 scope:global align:4
+fITF02_GetTwoTileGfx = .text:0x002D05FC; // type:function size:0x54 scope:global align:4
+fITF02_dw = .text:0x002D0650; // type:function size:0x10C scope:global align:4
+fNFL_ct = .text:0x002D075C; // type:function size:0x4 scope:global align:4
+fNFL_mv = .text:0x002D0760; // type:function size:0x4 scope:global align:4
+fNFL_dt = .text:0x002D0764; // type:function size:0x4 scope:global align:4
+fNFL_dw = .text:0x002D0768; // type:function size:0xC0 scope:global align:4
+aNogG_ct = .text:0x002D0828; // type:function size:0x74 scope:global align:4
+aNogG_mv = .text:0x002D089C; // type:function size:0x12C scope:global align:4
+aNogG_dw = .text:0x002D09C8; // type:function size:0x8C scope:global align:4
+fNLM_ct = .text:0x002D0A54; // type:function size:0x10 scope:global align:4
+fNLM_mv = .text:0x002D0A64; // type:function size:0xB8 scope:global align:4
+fNLM_dw = .text:0x002D0B1C; // type:function size:0x158 scope:global align:4
+fNS_ct = .text:0x002D0C74; // type:function size:0x48 scope:global align:4
+fNS_mv = .text:0x002D0CBC; // type:function size:0x130 scope:global align:4
+fNS_GetTwoTileGfx = .text:0x002D0DEC; // type:function size:0x50 scope:global align:4
+fNS_dw = .text:0x002D0E3C; // type:function size:0x164 scope:global align:4
+fNS_dt = .text:0x002D0FA0; // type:function size:0xC scope:global align:4
+_ctors = .ctors:0x00000000; // type:label scope:global data:4byte
+_dtors = .dtors:0x00000000; // type:label scope:global data:4byte
+@420 = .rodata:0x00000000; // type:object size:0x4 scope:local align:4
+@449 = .rodata:0x00000004; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00000008; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000000C; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00000010; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00000014; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00000018; // type:object size:0x8 scope:local align:8 data:double
+@540 = .rodata:0x00000020; // type:object size:0x8 scope:local align:8 data:double
+@560 = .rodata:0x00000028; // type:object size:0x8 scope:local align:8 data:double
+@597 = .rodata:0x00000030; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00000034; // type:object size:0x4 scope:local align:4 data:float
+@769 = .rodata:0x00000038; // type:object size:0x4 scope:local align:4 data:float
+@770 = .rodata:0x0000003C; // type:object size:0x4 scope:local align:4 data:float
+@771 = .rodata:0x00000040; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00000048; // type:object size:0x8 scope:local align:8 data:double
+@479 = .rodata:0x00000050; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00000054; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00000058; // type:object size:0x8 scope:local align:8 data:double
+@477 = .rodata:0x00000060; // type:object size:0x8 scope:local align:8 data:double
+@603 = .rodata:0x00000068; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x0000006C; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00000070; // type:object size:0xC scope:local align:4 data:4byte
+@670 = .rodata:0x0000007C; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00000080; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x00000088; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x0000008C; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00000090; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00000094; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00000098; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x0000009C; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x000000A0; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x000000A4; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x000000A8; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x000000AC; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x000000B0; // type:object size:0x4 scope:local align:4 data:float
+@694 = .rodata:0x000000B8; // type:object size:0x8 scope:local align:8 data:double
+@748 = .rodata:0x000000C0; // type:object size:0x4 scope:local align:4 data:float
+@1027 = .rodata:0x000000C4; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x000000C8; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x000000CC; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x000000D0; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x000000D4; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x000000D8; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x000000DC; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x000000E0; // type:object size:0x8 scope:local align:8 data:double
+@418 = .rodata:0x000000E8; // type:object size:0x8 scope:local align:8 data:double
+@427 = .rodata:0x000000F0; // type:object size:0x6 scope:local align:4 data:2byte
+@450 = .rodata:0x000000F8; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x000000FC; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00000100; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00000104; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00000108; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000010C; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x00000110; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00000114; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00000118; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x0000011C; // type:object size:0x4 scope:local align:4 data:float
+@575 = .rodata:0x00000120; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00000124; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x00000128; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x0000012C; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00000130; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x00000134; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x00000138; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x0000013C; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00000140; // type:object size:0x8 scope:local align:8 data:double
+@532 = .rodata:0x00000148; // type:object size:0x8 scope:local align:8 data:double
+@533 = .rodata:0x00000150; // type:object size:0x8 scope:local align:8 data:double
+@534 = .rodata:0x00000158; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x0000015C; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00000160; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00000164; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x00000168; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x0000016C; // type:object size:0x4 scope:local align:4 data:float
+@794 = .rodata:0x00000170; // type:object size:0x4 scope:local align:4 data:float
+@795 = .rodata:0x00000174; // type:object size:0x4 scope:local align:4 data:float
+@796 = .rodata:0x00000178; // type:object size:0x4 scope:local align:4 data:float
+@797 = .rodata:0x0000017C; // type:object size:0x4 scope:local align:4 data:float
+name_data$373 = .rodata:0x00000180; // type:object size:0x8 scope:local align:4
+@388 = .rodata:0x00000188; // type:object size:0x4 scope:local align:4 data:float
+bgm_data$453 = .rodata:0x00000190; // type:object size:0x2C scope:local align:4 data:byte
+@1323 = .rodata:0x000001BC; // type:object size:0x4 scope:local align:4 data:float
+@1324 = .rodata:0x000001C0; // type:object size:0x4 scope:local align:4 data:float
+@1325 = .rodata:0x000001C4; // type:object size:0x4 scope:local align:4 data:float
+@1339 = .rodata:0x000001C8; // type:object size:0x4 scope:local align:4 data:float
+@1353 = .rodata:0x000001CC; // type:object size:0x4 scope:local align:4 data:float
+@1367 = .rodata:0x000001D0; // type:object size:0x4 scope:local align:4 data:float
+@1400 = .rodata:0x000001D4; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x000001D8; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x000001DC; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x000001E0; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x000001E4; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x000001E8; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x000001F0; // type:object size:0x8 scope:local align:8 data:double
+@508 = .rodata:0x000001F8; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x000001FC; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00000200; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00000204; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00000208; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x0000020C; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x00000210; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x00000214; // type:object size:0x4 scope:local align:4 data:float
+@570 = .rodata:0x00000218; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x0000021C; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00000220; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00000224; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00000228; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x0000022C; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00000230; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x00000234; // type:object size:0x4 scope:local align:4 data:float
+@659 = .rodata:0x00000238; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x0000023C; // type:object size:0x4 scope:local align:4 data:float
+add_distance_array = .rodata:0x00000240; // type:object size:0xC scope:global align:4
+add_directionY_array = .rodata:0x0000024C; // type:object size:0x6 scope:global align:4
+add_directionX_array = .rodata:0x00000254; // type:object size:0x6 scope:global align:4
+distance_array$677 = .rodata:0x0000025C; // type:object size:0x34 scope:local align:4
+direction_array$678 = .rodata:0x00000290; // type:object size:0x4E scope:local align:4
+@708 = .rodata:0x000002E0; // type:object size:0x4 scope:local align:4 data:float
+@709 = .rodata:0x000002E4; // type:object size:0x4 scope:local align:4 data:float
+@826 = .rodata:0x000002E8; // type:object size:0x4 scope:local align:4 data:float
+@827 = .rodata:0x000002EC; // type:object size:0x4 scope:local align:4 data:float
+@877 = .rodata:0x000002F0; // type:object size:0x4 scope:local align:4 data:float
+@878 = .rodata:0x000002F4; // type:object size:0x4 scope:local align:4 data:float
+data$913 = .rodata:0x000002F8; // type:object size:0x34 scope:local align:4
+@936 = .rodata:0x0000032C; // type:object size:0x4 scope:local align:4 data:float
+@937 = .rodata:0x00000330; // type:object size:0x4 scope:local align:4 data:float
+@938 = .rodata:0x00000334; // type:object size:0x4 scope:local align:4 data:float
+@939 = .rodata:0x00000338; // type:object size:0x4 scope:local align:4 data:float
+@940 = .rodata:0x0000033C; // type:object size:0x4 scope:local align:4 data:float
+@941 = .rodata:0x00000340; // type:object size:0x4 scope:local align:4 data:float
+@942 = .rodata:0x00000344; // type:object size:0x4 scope:local align:4 data:float
+@943 = .rodata:0x00000348; // type:object size:0x4 scope:local align:4 data:float
+@944 = .rodata:0x0000034C; // type:object size:0x4 scope:local align:4 data:float
+@1066 = .rodata:0x00000350; // type:object size:0x4 scope:local align:4 data:float
+@1067 = .rodata:0x00000354; // type:object size:0x4 scope:local align:4 data:float
+@1085 = .rodata:0x00000358; // type:object size:0x4 scope:local align:4 data:float
+@1086 = .rodata:0x0000035C; // type:object size:0x4 scope:local align:4 data:float
+@1130 = .rodata:0x00000360; // type:object size:0x4 scope:local align:4 data:float
+@1141 = .rodata:0x00000364; // type:object size:0x4 scope:local align:4 data:float
+@1142 = .rodata:0x00000368; // type:object size:0x4 scope:local align:4 data:float
+@1207 = .rodata:0x0000036C; // type:object size:0x4 scope:local align:4 data:float
+@1208 = .rodata:0x00000370; // type:object size:0x4 scope:local align:4 data:float
+@1209 = .rodata:0x00000374; // type:object size:0x4 scope:local align:4 data:float
+@1210 = .rodata:0x00000378; // type:object size:0x4 scope:local align:4 data:float
+@1268 = .rodata:0x0000037C; // type:object size:0x4 scope:local align:4 data:float
+@1269 = .rodata:0x00000380; // type:object size:0x4 scope:local align:4 data:float
+@1270 = .rodata:0x00000384; // type:object size:0x4 scope:local align:4 data:float
+@1271 = .rodata:0x00000388; // type:object size:0x4 scope:local align:4 data:float
+@1272 = .rodata:0x0000038C; // type:object size:0x4 scope:local align:4 data:float
+@1273 = .rodata:0x00000390; // type:object size:0x4 scope:local align:4 data:float
+@1278 = .rodata:0x00000394; // type:object size:0x4 scope:local align:4 data:float
+@1291 = .rodata:0x00000398; // type:object size:0x4 scope:local align:4 data:float
+goal_direction$1362 = .rodata:0x0000039C; // type:object size:0x6 scope:local align:4
+offset$1418 = .rodata:0x000003A4; // type:object size:0xC scope:local align:4 data:float
+@1421 = .rodata:0x000003B0; // type:object size:0x4 scope:local align:4 data:float
+@1522 = .rodata:0x000003B4; // type:object size:0x4 scope:local align:4 data:float
+@1556 = .rodata:0x000003B8; // type:object size:0x4 scope:local align:4 data:float
+@1557 = .rodata:0x000003BC; // type:object size:0x4 scope:local align:4 data:float
+@1566 = .rodata:0x000003C0; // type:object size:0x4 scope:local align:4 data:float
+@1567 = .rodata:0x000003C4; // type:object size:0x4 scope:local align:4 data:float
+@1568 = .rodata:0x000003C8; // type:object size:0x4 scope:local align:4 data:float
+@1569 = .rodata:0x000003CC; // type:object size:0x4 scope:local align:4 data:float
+@1570 = .rodata:0x000003D0; // type:object size:0x4 scope:local align:4 data:float
+@1571 = .rodata:0x000003D4; // type:object size:0x4 scope:local align:4 data:float
+std_angle$1593 = .rodata:0x000003D8; // type:object size:0x6 scope:local align:4 data:2byte
+@1651 = .rodata:0x000003E0; // type:object size:0x4 scope:local align:4 data:float
+@1652 = .rodata:0x000003E4; // type:object size:0x4 scope:local align:4 data:float
+@1718 = .rodata:0x000003E8; // type:object size:0x4 scope:local align:4 data:float
+@1719 = .rodata:0x000003EC; // type:object size:0x4 scope:local align:4 data:float
+@1777 = .rodata:0x000003F0; // type:object size:0x4 scope:local align:4 data:float
+@1778 = .rodata:0x000003F4; // type:object size:0x4 scope:local align:4 data:float
+@1827 = .rodata:0x000003F8; // type:object size:0x4 scope:local align:4 data:float
+@1828 = .rodata:0x000003FC; // type:object size:0x4 scope:local align:4 data:float
+@1829 = .rodata:0x00000400; // type:object size:0x4 scope:local align:4 data:float
+@1830 = .rodata:0x00000404; // type:object size:0x4 scope:local align:4 data:float
+@1831 = .rodata:0x00000408; // type:object size:0x4 scope:local align:4 data:float
+@1844 = .rodata:0x0000040C; // type:object size:0x4 scope:local align:4 data:float
+@1845 = .rodata:0x00000410; // type:object size:0x4 scope:local align:4 data:float
+@1846 = .rodata:0x00000414; // type:object size:0x4 scope:local align:4 data:float
+@1847 = .rodata:0x00000418; // type:object size:0x4 scope:local align:4 data:float
+@1889 = .rodata:0x00000420; // type:object size:0x8 scope:local align:8 data:double
+init_camera_data$1915 = .rodata:0x00000428; // type:object size:0x138 scope:local align:8
+proc$1920 = .rodata:0x00000560; // type:object size:0x34 scope:local align:4
+proc$1932 = .rodata:0x00000594; // type:object size:0x34 scope:local align:4
+@397 = .rodata:0x000005C8; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x000005CC; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x000005D0; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x000005D4; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x000005D8; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x000005DC; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x000005E0; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x000005E4; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x000005E8; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x000005EC; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x000005F0; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x000005F4; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x000005F8; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x000005FC; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x00000600; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00000604; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00000608; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000060C; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x00000610; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x00000614; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00000618; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000061C; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00000620; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00000624; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x00000628; // type:object size:0x8 scope:local align:8 data:double
+proc$699 = .rodata:0x00000630; // type:object size:0x1EC scope:local align:4
+@792 = .rodata:0x0000081C; // type:object size:0x4 scope:local align:4 data:float
+@869 = .rodata:0x00000820; // type:object size:0x4 scope:local align:4 data:float
+@870 = .rodata:0x00000824; // type:object size:0x4 scope:local align:4 data:float
+@962 = .rodata:0x00000828; // type:object size:0x4 scope:local align:4 data:float
+@963 = .rodata:0x0000082C; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x00000830; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00000834; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00000838; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x0000083C; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00000840; // type:object size:0x8 scope:local align:8 data:double
+@588 = .rodata:0x00000848; // type:object size:0x8 scope:local align:8 data:double
+@641 = .rodata:0x00000850; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00000854; // type:object size:0x4 scope:local align:4 data:float
+@661 = .rodata:0x00000858; // type:object size:0x4 scope:local align:4 data:float
+@789 = .rodata:0x0000085C; // type:object size:0x4 scope:local align:4 data:float
+@790 = .rodata:0x00000860; // type:object size:0x4 scope:local align:4 data:float
+@793 = .rodata:0x00000868; // type:object size:0x8 scope:local align:8 data:double
+@802 = .rodata:0x00000870; // type:object size:0x4 scope:local align:4 data:float
+@804 = .rodata:0x00000878; // type:object size:0x8 scope:local align:8 data:double
+@811 = .rodata:0x00000880; // type:object size:0xC scope:local align:4 data:4byte
+@862 = .rodata:0x0000088C; // type:object size:0x4 scope:local align:4 data:float
+@873 = .rodata:0x00000890; // type:object size:0x4 scope:local align:4 data:float
+@880 = .rodata:0x00000894; // type:object size:0xC scope:local align:4 data:4byte
+@881 = .rodata:0x000008A0; // type:object size:0xC scope:local align:4 data:4byte
+@882 = .rodata:0x000008AC; // type:object size:0xC scope:local align:4 data:4byte
+@1001 = .rodata:0x000008B8; // type:object size:0x4 scope:local align:4 data:float
+@1128 = .rodata:0x000008BC; // type:object size:0x4 scope:local align:4 data:float
+@1129 = .rodata:0x000008C0; // type:object size:0x4 scope:local align:4 data:float
+@1500 = .rodata:0x000008C4; // type:object size:0x4 scope:local align:4 data:float
+@1501 = .rodata:0x000008C8; // type:object size:0x4 scope:local align:4 data:float
+@1607 = .rodata:0x000008CC; // type:object size:0x6 scope:local align:4 data:2byte
+@1620 = .rodata:0x000008D4; // type:object size:0x4 scope:local align:4 data:float
+@1695 = .rodata:0x000008D8; // type:object size:0x4 scope:local align:4 data:float
+@1696 = .rodata:0x000008DC; // type:object size:0x4 scope:local align:4 data:float
+@2000 = .rodata:0x000008E0; // type:object size:0x4 scope:local align:4 data:float
+@2001 = .rodata:0x000008E4; // type:object size:0x4 scope:local align:4 data:float
+@2002 = .rodata:0x000008E8; // type:object size:0x4 scope:local align:4 data:float
+@2003 = .rodata:0x000008EC; // type:object size:0x4 scope:local align:4 data:float
+@2004 = .rodata:0x000008F0; // type:object size:0x4 scope:local align:4 data:float
+@2005 = .rodata:0x000008F4; // type:object size:0x4 scope:local align:4 data:float
+@2006 = .rodata:0x000008F8; // type:object size:0x4 scope:local align:4 data:float
+@2007 = .rodata:0x000008FC; // type:object size:0x4 scope:local align:4 data:float
+@2008 = .rodata:0x00000900; // type:object size:0x4 scope:local align:4 data:float
+@2058 = .rodata:0x00000904; // type:object size:0x4 scope:local align:4 data:float
+@2059 = .rodata:0x00000908; // type:object size:0x4 scope:local align:4 data:float
+@2120 = .rodata:0x0000090C; // type:object size:0xC scope:local align:4 data:4byte
+@2274 = .rodata:0x00000918; // type:object size:0x4 scope:local align:4 data:float
+@2457 = .rodata:0x0000091C; // type:object size:0x4 scope:local align:4 data:float
+@2458 = .rodata:0x00000920; // type:object size:0x4 scope:local align:4 data:float
+@2548 = .rodata:0x00000924; // type:object size:0x4 scope:local align:4 data:float
+@2803 = .rodata:0x00000928; // type:object size:0xC scope:local align:4 data:4byte
+@2804 = .rodata:0x00000934; // type:object size:0xC scope:local align:4 data:4byte
+@2821 = .rodata:0x00000940; // type:object size:0x4 scope:local align:4 data:float
+@2894 = .rodata:0x00000944; // type:object size:0x4 scope:local align:4 data:float
+pos0$2903 = .rodata:0x00000948; // type:object size:0xC scope:local align:4 data:4byte
+@2951 = .rodata:0x00000954; // type:object size:0x4 scope:local align:4 data:float
+area_offset_table$3526 = .rodata:0x00000958; // type:object size:0x30 scope:local align:4 data:float
+@3527 = .rodata:0x00000988; // type:object size:0xC scope:local align:4 data:4byte
+@3528 = .rodata:0x00000994; // type:object size:0xC scope:local align:4 data:4byte
+@3704 = .rodata:0x000009A0; // type:object size:0xC scope:local align:4 data:4byte
+@4009 = .rodata:0x000009AC; // type:object size:0x6 scope:local align:4 data:2byte
+@4053 = .rodata:0x000009B4; // type:object size:0x4 scope:local align:4 data:float
+@4143 = .rodata:0x000009B8; // type:object size:0xC scope:local align:4 data:4byte
+@4228 = .rodata:0x000009C4; // type:object size:0xC scope:local align:4 data:4byte
+@4232 = .rodata:0x000009D0; // type:object size:0xC scope:local align:4 data:4byte
+@4243 = .rodata:0x000009DC; // type:object size:0x4 scope:local align:4 data:float
+@4244 = .rodata:0x000009E0; // type:object size:0x4 scope:local align:4 data:float
+@4248 = .rodata:0x000009E4; // type:object size:0xC scope:local align:4 data:4byte
+@4370 = .rodata:0x000009F0; // type:object size:0xC scope:local align:4 data:4byte
+@4408 = .rodata:0x000009FC; // type:object size:0xC scope:local align:4 data:4byte
+@4481 = .rodata:0x00000A08; // type:object size:0xC scope:local align:4 data:4byte
+@4638 = .rodata:0x00000A14; // type:object size:0xC scope:local align:4 data:4byte
+@4639 = .rodata:0x00000A20; // type:object size:0xC scope:local align:4 data:4byte
+@4708 = .rodata:0x00000A2C; // type:object size:0xC scope:local align:4 data:4byte
+@4709 = .rodata:0x00000A38; // type:object size:0xC scope:local align:4 data:4byte
+@4710 = .rodata:0x00000A44; // type:object size:0xC scope:local align:4 data:4byte
+@4711 = .rodata:0x00000A50; // type:object size:0xC scope:local align:4 data:4byte
+@4768 = .rodata:0x00000A5C; // type:object size:0x4 scope:local align:4 data:float
+@4802 = .rodata:0x00000A60; // type:object size:0x4 scope:local align:4 data:float
+sea_flow$4904 = .rodata:0x00000A64; // type:object size:0xC scope:local align:4 data:4byte
+@4968 = .rodata:0x00000A70; // type:object size:0x4 scope:local align:4 data:float
+@4969 = .rodata:0x00000A74; // type:object size:0x4 scope:local align:4 data:float
+@4973 = .rodata:0x00000A78; // type:object size:0x6 scope:local align:4 data:2byte
+@5000 = .rodata:0x00000A80; // type:object size:0x6 scope:local align:4 data:2byte
+@388 = .rodata:0x00000A88; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x00000A8C; // type:object size:0x4 scope:local align:4 data:float
+@688 = .rodata:0x00000A90; // type:object size:0x4 scope:local align:4 data:float
+@689 = .rodata:0x00000A94; // type:object size:0x4 scope:local align:4 data:float
+@690 = .rodata:0x00000A98; // type:object size:0x4 scope:local align:4 data:float
+@691 = .rodata:0x00000AA0; // type:object size:0x8 scope:local align:8 data:double
+@692 = .rodata:0x00000AA8; // type:object size:0x8 scope:local align:8 data:double
+@693 = .rodata:0x00000AB0; // type:object size:0x4 scope:local align:4 data:float
+@695 = .rodata:0x00000AB8; // type:object size:0x8 scope:local align:8 data:double
+@296 = .rodata:0x00000AC0; // type:object size:0x4 scope:local align:4 data:float
+@297 = .rodata:0x00000AC8; // type:object size:0x8 scope:local align:8 data:double
+@298 = .rodata:0x00000AD0; // type:object size:0x8 scope:local align:8 data:double
+@299 = .rodata:0x00000AD8; // type:object size:0x4 scope:local align:4 data:float
+@300 = .rodata:0x00000ADC; // type:object size:0x4 scope:local align:4 data:float
+@301 = .rodata:0x00000AE0; // type:object size:0x4 scope:local align:4 data:float
+@302 = .rodata:0x00000AE4; // type:object size:0x4 scope:local align:4 data:float
+@308 = .rodata:0x00000AE8; // type:object size:0x8 scope:local align:8 data:double
+pad_color2$428 = .rodata:0x00000AF0; // type:object size:0x40 scope:local align:4
+@507 = .rodata:0x00000B30; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00000B34; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00000B38; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00000B40; // type:object size:0x8 scope:local align:8 data:double
+demo = .rodata:0x00000B48; // type:object size:0x4 scope:global align:4 data:4byte
+@670 = .rodata:0x00000B4C; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00000B50; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00000B54; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x00000B58; // type:object size:0x4 scope:local align:4 data:float
+@674 = .rodata:0x00000B5C; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00000B60; // type:object size:0x4 scope:local align:4 data:float
+@762 = .rodata:0x00000B64; // type:object size:0x4 scope:local align:4 data:float
+@878 = .rodata:0x00000B68; // type:object size:0x4 scope:local align:4 data:float
+@879 = .rodata:0x00000B6C; // type:object size:0x4 scope:local align:4 data:float
+@880 = .rodata:0x00000B70; // type:object size:0x4 scope:local align:4 data:float
+@881 = .rodata:0x00000B74; // type:object size:0x4 scope:local align:4 data:float
+@882 = .rodata:0x00000B78; // type:object size:0x4 scope:local align:4 data:float
+@883 = .rodata:0x00000B7C; // type:object size:0x4 scope:local align:4 data:float
+@884 = .rodata:0x00000B80; // type:object size:0x4 scope:local align:4 data:float
+@886 = .rodata:0x00000B88; // type:object size:0x8 scope:local align:8 data:double
+check_func$930 = .rodata:0x00000B90; // type:object size:0x44 scope:local align:4
+default_set_func$962 = .rodata:0x00000BD4; // type:object size:0x44 scope:local align:4
+wait_start = .rodata:0x00000C18; // type:object size:0x44 scope:global align:4
+wait_end = .rodata:0x00000C5C; // type:object size:0x44 scope:global align:4
+@1023 = .rodata:0x00000CA0; // type:object size:0x4 scope:local align:4 data:float
+@1134 = .rodata:0x00000CA4; // type:object size:0x4 scope:local align:4 data:float
+@1451 = .rodata:0x00000CA8; // type:object size:0xC scope:local align:4 data:4byte
+@1466 = .rodata:0x00000CB4; // type:object size:0xC scope:local align:4 data:4byte
+@2115 = .rodata:0x00000CC0; // type:object size:0x18 scope:local align:4
+@512 = .rodata:0x00000CD8; // type:object size:0x8 scope:local align:8 data:double
+@303 = .rodata:0x00000CE0; // type:object size:0x4 scope:local align:4 data:float
+@304 = .rodata:0x00000CE4; // type:object size:0x4 scope:local align:4 data:float
+@305 = .rodata:0x00000CE8; // type:object size:0x4 scope:local align:4 data:float
+@306 = .rodata:0x00000CEC; // type:object size:0x4 scope:local align:4 data:float
+@307 = .rodata:0x00000CF0; // type:object size:0x4 scope:local align:4 data:float
+@308 = .rodata:0x00000CF4; // type:object size:0x4 scope:local align:4 data:float
+@327 = .rodata:0x00000CF8; // type:object size:0x8 scope:local align:8 data:double
+@341 = .rodata:0x00000D00; // type:object size:0x4 scope:local align:4 data:float
+@342 = .rodata:0x00000D04; // type:object size:0x4 scope:local align:4 data:float
+@343 = .rodata:0x00000D08; // type:object size:0x4 scope:local align:4 data:float
+@344 = .rodata:0x00000D0C; // type:object size:0x4 scope:local align:4 data:float
+@345 = .rodata:0x00000D10; // type:object size:0x4 scope:local align:4 data:float
+@346 = .rodata:0x00000D14; // type:object size:0x4 scope:local align:4 data:float
+@347 = .rodata:0x00000D18; // type:object size:0x4 scope:local align:4 data:float
+@356 = .rodata:0x00000D1C; // type:object size:0x4 scope:local align:4 data:float
+@374 = .rodata:0x00000D20; // type:object size:0x4 scope:local align:4 data:float
+@375 = .rodata:0x00000D24; // type:object size:0x4 scope:local align:4 data:float
+@376 = .rodata:0x00000D28; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x00000D2C; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x00000D30; // type:object size:0x8 scope:local align:8 data:double
+@392 = .rodata:0x00000D38; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x00000D40; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x00000D44; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x00000D48; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x00000D4C; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x00000D50; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x00000D54; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x00000D58; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x00000D5C; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x00000D60; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x00000D64; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x00000D68; // type:object size:0x8 scope:local align:8 data:double
+@395 = .rodata:0x00000D70; // type:object size:0x8 scope:local align:8 data:double
+@639 = .rodata:0x00000D78; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00000D80; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00000D84; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00000D88; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00000D8C; // type:object size:0x4 scope:local align:4 data:float
+@640 = .rodata:0x00000D90; // type:object size:0x8 scope:local align:8 data:double
+@642 = .rodata:0x00000D98; // type:object size:0x8 scope:local align:8 data:double
+@1028 = .rodata:0x00000DA0; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00000DA8; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00000DAC; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00000DB0; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00000DB4; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x00000DB8; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00000DBC; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00000DC0; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00000DC4; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x00000DC8; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x00000DCC; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00000DD0; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x00000DD8; // type:object size:0x8 scope:local align:8 data:double
+@646 = .rodata:0x00000DE0; // type:object size:0x4 scope:local align:4 data:float
+@648 = .rodata:0x00000DE8; // type:object size:0x8 scope:local align:8 data:double
+@871 = .rodata:0x00000DF0; // type:object size:0x4 scope:local align:4 data:float
+@1926 = .rodata:0x00000DF4; // type:object size:0xC scope:local align:4 data:4byte
+@2231 = .rodata:0x00000E00; // type:object size:0x4 scope:local align:4 data:float
+@2499 = .rodata:0x00000E04; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x00000E08; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00000E0C; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00000E10; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00000E14; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00000E18; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00000E1C; // type:object size:0x4 scope:local align:4 data:float
+mFont_cont_info_tbl = .rodata:0x00000E20; // type:object size:0xF6 scope:global align:4
+@627 = .rodata:0x00000F18; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00000F1C; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00000F20; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x00000F24; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x00000F28; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00000F2C; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00000F30; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00000F38; // type:object size:0x8 scope:local align:8 data:double
+@685 = .rodata:0x00000F40; // type:object size:0x4 scope:local align:4 data:float
+@698 = .rodata:0x00000F44; // type:object size:0x4 scope:local align:4 data:float
+@699 = .rodata:0x00000F48; // type:object size:0x4 scope:local align:4 data:float
+@700 = .rodata:0x00000F4C; // type:object size:0x4 scope:local align:4 data:float
+@701 = .rodata:0x00000F50; // type:object size:0x4 scope:local align:4 data:float
+@702 = .rodata:0x00000F54; // type:object size:0x4 scope:local align:4 data:float
+@703 = .rodata:0x00000F58; // type:object size:0x4 scope:local align:4 data:float
+@773 = .rodata:0x00000F5C; // type:object size:0x4 scope:local align:4 data:float
+@804 = .rodata:0x00000F60; // type:object size:0x4 scope:local align:4 data:float
+@828 = .rodata:0x00000F64; // type:object size:0x4 scope:local align:4 data:float
+@829 = .rodata:0x00000F68; // type:object size:0x4 scope:local align:4 data:float
+@923 = .rodata:0x00000F70; // type:object size:0x8 scope:local align:8 data:double
+@924 = .rodata:0x00000F78; // type:object size:0x8 scope:local align:8 data:double
+@925 = .rodata:0x00000F80; // type:object size:0x4 scope:local align:4 data:float
+tbl$1185 = .rodata:0x00000F84; // type:object size:0x70 scope:local align:4 data:byte
+@375 = .rodata:0x00000FF8; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x00000FFC; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x00001000; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x00001004; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x00001008; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000100C; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x00001010; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x00001018; // type:object size:0x8 scope:local align:8 data:double
+@420 = .rodata:0x00001020; // type:object size:0x4 scope:local align:4 data:float
+proc$579 = .rodata:0x00001028; // type:object size:0x1EC scope:local align:4
+@467 = .rodata:0x00001218; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x00001220; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x00001224; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x00001228; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x00001230; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x00001234; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x00001238; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000123C; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x00001240; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x00001244; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x00001248; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000124C; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00001250; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00001254; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00001258; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x0000125C; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00001260; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00001264; // type:object size:0xC scope:local align:4 data:4byte
+@469 = .rodata:0x00001270; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00001278; // type:object size:0x8 scope:local align:8 data:double
+weather_table$502 = .rodata:0x00001280; // type:object size:0x50 scope:local align:4
+@527 = .rodata:0x000012D0; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000012D4; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000012D8; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x000012DC; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x000012E0; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x000012E4; // type:object size:0x4 scope:local align:4 data:float
+@603 = .rodata:0x000012E8; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x000012EC; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x000012F0; // type:object size:0x4 scope:local align:4 data:float
+@606 = .rodata:0x000012F4; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x000012F8; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x000012FC; // type:object size:0x4 scope:local align:4 data:float
+@711 = .rodata:0x00001300; // type:object size:0x4 scope:local align:4 data:float
+@712 = .rodata:0x00001304; // type:object size:0x4 scope:local align:4 data:float
+@713 = .rodata:0x00001308; // type:object size:0x4 scope:local align:4 data:float
+@714 = .rodata:0x0000130C; // type:object size:0x4 scope:local align:4 data:float
+@715 = .rodata:0x00001310; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x00001314; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x00001318; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x0000131C; // type:object size:0x4 scope:local align:4 data:float
+@777 = .rodata:0x00001320; // type:object size:0x4 scope:local align:4 data:float
+@778 = .rodata:0x00001324; // type:object size:0x4 scope:local align:4 data:float
+@936 = .rodata:0x00001328; // type:object size:0x4 scope:local align:4 data:float
+@937 = .rodata:0x0000132C; // type:object size:0x4 scope:local align:4 data:float
+@1018 = .rodata:0x00001330; // type:object size:0x4 scope:local align:4 data:float
+@1019 = .rodata:0x00001334; // type:object size:0x4 scope:local align:4 data:float
+@1020 = .rodata:0x00001338; // type:object size:0x8 scope:local align:8 data:double
+@1021 = .rodata:0x00001340; // type:object size:0x8 scope:local align:8 data:double
+@1022 = .rodata:0x00001348; // type:object size:0x4 scope:local align:4 data:float
+@1023 = .rodata:0x00001350; // type:object size:0x8 scope:local align:8 data:double
+@1024 = .rodata:0x00001358; // type:object size:0x4 scope:local align:4 data:float
+@1025 = .rodata:0x0000135C; // type:object size:0x4 scope:local align:4 data:float
+@1026 = .rodata:0x00001360; // type:object size:0x4 scope:local align:4 data:float
+@1027 = .rodata:0x00001364; // type:object size:0x4 scope:local align:4 data:float
+@1028 = .rodata:0x00001368; // type:object size:0x4 scope:local align:4 data:float
+@1029 = .rodata:0x0000136C; // type:object size:0x4 scope:local align:4 data:float
+@1030 = .rodata:0x00001370; // type:object size:0x4 scope:local align:4 data:float
+@1031 = .rodata:0x00001374; // type:object size:0x4 scope:local align:4 data:float
+@1033 = .rodata:0x00001378; // type:object size:0x8 scope:local align:8 data:double
+@1069 = .rodata:0x00001380; // type:object size:0x4 scope:local align:4 data:float
+@1070 = .rodata:0x00001384; // type:object size:0x4 scope:local align:4 data:float
+@1120 = .rodata:0x00001388; // type:object size:0x4 scope:local align:4 data:float
+@1121 = .rodata:0x0000138C; // type:object size:0x4 scope:local align:4 data:float
+@1122 = .rodata:0x00001390; // type:object size:0x4 scope:local align:4 data:float
+@1123 = .rodata:0x00001394; // type:object size:0x4 scope:local align:4 data:float
+@1124 = .rodata:0x00001398; // type:object size:0x4 scope:local align:4 data:float
+@1204 = .rodata:0x0000139C; // type:object size:0x4 scope:local align:4 data:float
+@1205 = .rodata:0x000013A0; // type:object size:0x4 scope:local align:4 data:float
+@1349 = .rodata:0x000013A4; // type:object size:0x4 scope:local align:4 data:float
+@1500 = .rodata:0x000013A8; // type:object size:0x4 scope:local align:4 data:float
+@1501 = .rodata:0x000013AC; // type:object size:0x4 scope:local align:4 data:float
+@1502 = .rodata:0x000013B0; // type:object size:0x4 scope:local align:4 data:float
+@1503 = .rodata:0x000013B4; // type:object size:0x4 scope:local align:4 data:float
+@1523 = .rodata:0x000013B8; // type:object size:0x4 scope:local align:4 data:float
+@1558 = .rodata:0x000013BC; // type:object size:0x4 scope:local align:4 data:float
+@1559 = .rodata:0x000013C0; // type:object size:0x4 scope:local align:4 data:float
+@1690 = .rodata:0x000013C4; // type:object size:0x4 scope:local align:4 data:float
+@1708 = .rodata:0x000013C8; // type:object size:0x4 scope:local align:4 data:float
+@1803 = .rodata:0x000013CC; // type:object size:0x4 scope:local align:4 data:float
+@1804 = .rodata:0x000013D0; // type:object size:0x4 scope:local align:4 data:float
+@1805 = .rodata:0x000013D8; // type:object size:0x8 scope:local align:8 data:double
+@399 = .rodata:0x000013E0; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x000013E8; // type:object size:0x8 scope:local align:8 data:double
+@450 = .rodata:0x000013F0; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000013F8; // type:object size:0x8 scope:local align:8 data:double
+@545 = .rodata:0x00001400; // type:object size:0x8 scope:local align:8 data:double
+@966 = .rodata:0x00001408; // type:object size:0x4 scope:local align:4 data:float
+@967 = .rodata:0x0000140C; // type:object size:0x4 scope:local align:4 data:float
+@995 = .rodata:0x00001410; // type:object size:0x4 scope:local align:4 data:float
+@1000 = .rodata:0x00001414; // type:object size:0x4 scope:local align:4 data:float
+@1001 = .rodata:0x00001418; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00001420; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00001428; // type:object size:0x8 scope:local align:8 data:double
+@459 = .rodata:0x00001430; // type:object size:0x8 scope:local align:8 data:double
+@460 = .rodata:0x00001438; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000143C; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00001440; // type:object size:0x8 scope:local align:8 data:double
+@467 = .rodata:0x00001448; // type:object size:0x8 scope:local align:8 data:double
+@486 = .rodata:0x00001450; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00001454; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00001458; // type:object size:0x4 scope:local align:4 data:float
+light_type_proc$499 = .rodata:0x0000145C; // type:object size:0xC scope:local align:4
+poslight_type_proc$500 = .rodata:0x00001468; // type:object size:0xC scope:local align:4
+@645 = .rodata:0x00001474; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x00001478; // type:object size:0x8 scope:local align:8 data:double
+@518 = .rodata:0x00001480; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x00001488; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x0000148C; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00001490; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00001494; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00001498; // type:object size:0x8 scope:local align:8 data:double
+@724 = .rodata:0x000014A0; // type:object size:0x4 scope:local align:4 data:float
+@725 = .rodata:0x000014A4; // type:object size:0x4 scope:local align:4 data:float
+@926 = .rodata:0x000014A8; // type:object size:0x4 scope:local align:4 data:float
+@943 = .rodata:0x000014AC; // type:object size:0x4 scope:local align:4 data:float
+@944 = .rodata:0x000014B0; // type:object size:0x4 scope:local align:4 data:float
+@945 = .rodata:0x000014B4; // type:object size:0x4 scope:local align:4 data:float
+@946 = .rodata:0x000014B8; // type:object size:0x4 scope:local align:4 data:float
+@947 = .rodata:0x000014BC; // type:object size:0x4 scope:local align:4 data:float
+@1467 = .rodata:0x000014C0; // type:object size:0x4 scope:local align:4 data:float
+@1585 = .rodata:0x000014C4; // type:object size:0x4 scope:local align:4 data:float
+@1586 = .rodata:0x000014C8; // type:object size:0x4 scope:local align:4 data:float
+@1587 = .rodata:0x000014CC; // type:object size:0x4 scope:local align:4 data:float
+proc$2258 = .rodata:0x000014D0; // type:object size:0x1EC scope:local align:4
+@2457 = .rodata:0x000016BC; // type:object size:0x4 scope:local align:4 data:float
+@2458 = .rodata:0x000016C0; // type:object size:0x4 scope:local align:4 data:float
+@2498 = .rodata:0x000016C4; // type:object size:0x4 scope:local align:4 data:float
+@2499 = .rodata:0x000016C8; // type:object size:0x4 scope:local align:4 data:float
+@2605 = .rodata:0x000016CC; // type:object size:0x4 scope:local align:4 data:float
+@2606 = .rodata:0x000016D0; // type:object size:0x4 scope:local align:4 data:float
+@2607 = .rodata:0x000016D4; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x000016D8; // type:object size:0x4 scope:local align:4 data:float
+@683 = .rodata:0x000016E0; // type:object size:0x8 scope:local align:8 data:double
+@740 = .rodata:0x000016E8; // type:object size:0x8 scope:local align:8 data:double
+@472 = .rodata:0x000016F0; // type:object size:0x8 scope:local align:8 data:double
+@663 = .rodata:0x000016F8; // type:object size:0x8 scope:local align:8 data:double
+@618 = .rodata:0x00001700; // type:object size:0x4 scope:local align:4 data:float
+@619 = .rodata:0x00001704; // type:object size:0x4 scope:local align:4 data:float
+@620 = .rodata:0x00001708; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x0000170C; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00001710; // type:object size:0x8 scope:local align:8 data:double
+@463 = .rodata:0x00001718; // type:object size:0x10 scope:local align:4 data:4byte
+@556 = .rodata:0x00001728; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x0000172C; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00001730; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x00001734; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x00001738; // type:object size:0x8 scope:local align:8 data:double
+@594 = .rodata:0x00001740; // type:object size:0x9 scope:local align:4 data:byte
+@595 = .rodata:0x0000174C; // type:object size:0x4 scope:local align:4 data:4byte
+@596 = .rodata:0x00001750; // type:object size:0x2 scope:local align:4 data:2byte
+@430 = .rodata:0x00001758; // type:object size:0x8 scope:local align:8 data:double
+@1268 = .rodata:0x00001760; // type:object size:0x4 scope:local align:4 data:float
+@1310 = .rodata:0x00001764; // type:object size:0x4 scope:local align:4 data:float
+@1311 = .rodata:0x00001768; // type:object size:0x4 scope:local align:4 data:float
+@1327 = .rodata:0x0000176C; // type:object size:0x4 scope:local align:4 data:float
+@1471 = .rodata:0x00001770; // type:object size:0x4 scope:local align:4 data:float
+@1926 = .rodata:0x00001774; // type:object size:0x4 scope:local align:4 data:float
+@2125 = .rodata:0x00001778; // type:object size:0x4 scope:local align:4 data:float
+@2127 = .rodata:0x00001780; // type:object size:0x8 scope:local align:8 data:double
+@2977 = .rodata:0x00001788; // type:object size:0x4 scope:local align:4 data:float
+@4880 = .rodata:0x0000178C; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00001790; // type:object size:0x8 scope:local align:8 data:double
+@491 = .rodata:0x00001798; // type:object size:0x8 scope:local align:8 data:double
+@280 = .rodata:0x000017A0; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x000017A4; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x000017A8; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x000017AC; // type:object size:0x4 scope:local align:4 data:float
+data$451 = .rodata:0x000017B0; // type:object size:0x50 scope:local align:4
+data$459 = .rodata:0x00001800; // type:object size:0x9D scope:local align:4
+data$475 = .rodata:0x000018A0; // type:object size:0x50 scope:local align:4
+data$483 = .rodata:0x000018F0; // type:object size:0x50 scope:local align:4
+mPlib_Item_DataPointerType$488 = .rodata:0x00001940; // type:object size:0x32 scope:local align:4
+@750 = .rodata:0x00001974; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x00001978; // type:object size:0x4 scope:local align:4 data:float
+eye_tex_index_table$902 = .rodata:0x0000197C; // type:object size:0x274 scope:local align:4
+mouth_tex_index_table$910 = .rodata:0x00001BF0; // type:object size:0x274 scope:local align:4
+@942 = .rodata:0x00001E64; // type:object size:0x4 scope:local align:4 data:float
+@961 = .rodata:0x00001E68; // type:object size:0x4 scope:local align:4 data:float
+@1088 = .rodata:0x00001E6C; // type:object size:0x4 scope:local align:4 data:float
+@1298 = .rodata:0x00001E70; // type:object size:0x4 scope:local align:4 data:float
+@1306 = .rodata:0x00001E74; // type:object size:0x4 scope:local align:4 data:float
+@1308 = .rodata:0x00001E78; // type:object size:0x8 scope:local align:8 data:double
+@1500 = .rodata:0x00001E80; // type:object size:0x4 scope:local align:4 data:float
+@1501 = .rodata:0x00001E84; // type:object size:0x4 scope:local align:4 data:float
+@1502 = .rodata:0x00001E88; // type:object size:0x4 scope:local align:4 data:float
+@1503 = .rodata:0x00001E8C; // type:object size:0x4 scope:local align:4 data:float
+@1522 = .rodata:0x00001E90; // type:object size:0x4 scope:local align:4 data:float
+add_num$1540 = .rodata:0x00001E94; // type:object size:0x40 scope:local align:4 data:4byte
+@2087 = .rodata:0x00001ED4; // type:object size:0x4 scope:local align:4 data:float
+@2088 = .rodata:0x00001ED8; // type:object size:0x4 scope:local align:4 data:float
+@2089 = .rodata:0x00001EDC; // type:object size:0x4 scope:local align:4 data:float
+@2090 = .rodata:0x00001EE0; // type:object size:0x4 scope:local align:4 data:float
+@2091 = .rodata:0x00001EE4; // type:object size:0x4 scope:local align:4 data:float
+data$2218 = .rodata:0x00001EE8; // type:object size:0x79 scope:local align:4
+@452 = .rodata:0x00001F68; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00001F6C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00001F70; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00001F74; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00001F78; // type:object size:0x4 scope:local align:4 data:float
+@571 = .rodata:0x00001F80; // type:object size:0x8 scope:local align:8 data:double
+@615 = .rodata:0x00001F88; // type:object size:0x4 scope:local align:4 data:float
+@939 = .rodata:0x00001F8C; // type:object size:0x4 scope:local align:4 data:float
+@1153 = .rodata:0x00001F90; // type:object size:0x4 scope:local align:4 data:float
+@1240 = .rodata:0x00001F94; // type:object size:0x4 scope:local align:4 data:float
+@1312 = .rodata:0x00001F98; // type:object size:0x4 scope:local align:4 data:float
+@1344 = .rodata:0x00001F9C; // type:object size:0x4 scope:local align:4 data:float
+@1516 = .rodata:0x00001FA0; // type:object size:0x4 scope:local align:4 data:float
+@934 = .rodata:0x00001FA8; // type:object size:0x8 scope:local align:8 data:double
+@947 = .rodata:0x00001FB0; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00001FB8; // type:object size:0xC scope:local align:4 data:4byte
+@519 = .rodata:0x00001FC4; // type:object size:0x1C scope:local align:4
+@944 = .rodata:0x00001FE0; // type:object size:0x4 scope:local align:4 data:float
+@945 = .rodata:0x00001FE8; // type:object size:0x8 scope:local align:8 data:double
+@946 = .rodata:0x00001FF0; // type:object size:0x8 scope:local align:8 data:double
+@999 = .rodata:0x00001FF8; // type:object size:0x4 scope:local align:4 data:float
+@1000 = .rodata:0x00001FFC; // type:object size:0x4 scope:local align:4 data:float
+@1228 = .rodata:0x00002000; // type:object size:0x4 scope:local align:4 data:float
+@1229 = .rodata:0x00002004; // type:object size:0x4 scope:local align:4 data:float
+@1230 = .rodata:0x00002008; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x00002010; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00002014; // type:object size:0x4 scope:local align:4 data:float
+@562 = .rodata:0x00002018; // type:object size:0x8 scope:local align:8 data:double
+@680 = .rodata:0x00002020; // type:object size:0xC scope:local align:4 data:4byte
+@890 = .rodata:0x0000202C; // type:object size:0x4 scope:local align:4 data:float
+@891 = .rodata:0x00002030; // type:object size:0x4 scope:local align:4 data:float
+@892 = .rodata:0x00002034; // type:object size:0x4 scope:local align:4 data:float
+@893 = .rodata:0x00002038; // type:object size:0x4 scope:local align:4 data:float
+@921 = .rodata:0x0000203C; // type:object size:0x4 scope:local align:4 data:float
+@1238 = .rodata:0x00002040; // type:object size:0x4 scope:local align:4 data:float
+@1450 = .rodata:0x00002044; // type:object size:0x4 scope:local align:4 data:float
+@1479 = .rodata:0x00002048; // type:object size:0x4 scope:local align:4 data:float
+@1508 = .rodata:0x0000204C; // type:object size:0x4 scope:local align:4 data:float
+@1868 = .rodata:0x00002050; // type:object size:0x4 scope:local align:4 data:float
+@1873 = .rodata:0x00002054; // type:object size:0xC scope:local align:4 data:4byte
+@1963 = .rodata:0x00002060; // type:object size:0x4 scope:local align:4 data:float
+@1964 = .rodata:0x00002064; // type:object size:0x4 scope:local align:4 data:float
+@1985 = .rodata:0x00002068; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00002070; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00002074; // type:object size:0x4 scope:local align:4 data:float
+@778 = .rodata:0x00002078; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x00002080; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x00002084; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00002088; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x0000208C; // type:object size:0x4 scope:local align:4 data:float
+@891 = .rodata:0x00002090; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00002098; // type:object size:0x4 scope:local align:4 data:float
+@620 = .rodata:0x000020A0; // type:object size:0x8 scope:local align:8 data:double
+@659 = .rodata:0x000020A8; // type:object size:0x4 scope:local align:4 data:float
+@351 = .rodata:0x000020B0; // type:object size:0x4 scope:local align:4 data:float
+@352 = .rodata:0x000020B4; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x000020B8; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x000020C0; // type:object size:0x8 scope:local align:8 data:double
+@446 = .rodata:0x000020C8; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x000020D0; // type:object size:0x14 scope:local align:4
+@497 = .rodata:0x000020E4; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000020E8; // type:object size:0x8 scope:local align:8 data:double
+@389 = .rodata:0x000020F0; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x000020F4; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x000020F8; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x00002100; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x00002108; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x00002110; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00002114; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00002118; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000211C; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00002120; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00002124; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x00002128; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x0000212C; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00002130; // type:object size:0x4 scope:local align:4 data:float
+@606 = .rodata:0x00002134; // type:object size:0x4 scope:local align:4 data:float
+@607 = .rodata:0x00002138; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x0000213C; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00002140; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00002144; // type:object size:0x4 scope:local align:4 data:float
+@611 = .rodata:0x00002148; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x0000214C; // type:object size:0x4 scope:local align:4 data:float
+mTM_rtcTime_clear_code = .rodata:0x00002150; // type:object size:0x8 scope:global align:4 data:4byte
+mTM_rtcTime_ymd_clear_code = .rodata:0x00002158; // type:object size:0x4 scope:global align:4 data:byte
+mTM_rtcTime_default_code = .rodata:0x0000215C; // type:object size:0x8 scope:global align:4
+@501 = .rodata:0x00002164; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00002168; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000216C; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00002170; // type:object size:0x8 scope:local align:8 data:double
+@381 = .rodata:0x00002178; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000217C; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x00002180; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x00002184; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x00002188; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000218C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x00002190; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00002194; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00002198; // type:object size:0x8 scope:local align:8 data:double
+@490 = .rodata:0x000021A0; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000021A4; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x000021A8; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x000021B0; // type:object size:0x8 scope:local align:8 data:double
+@543 = .rodata:0x000021B8; // type:object size:0x8 scope:local align:8 data:double
+@544 = .rodata:0x000021C0; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000021C4; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x000021C8; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000021CC; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x000021D0; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x000021D4; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x000021D8; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x000021DC; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000021E0; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x000021E4; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x000021E8; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x000021EC; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x000021F0; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x000021F4; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x000021F8; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x000021FC; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x00002200; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x00002204; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x00002208; // type:object size:0x8 scope:local align:8 data:double
+@623 = .rodata:0x00002210; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00002214; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00002218; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x0000221C; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00002220; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00002224; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00002228; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x0000222C; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x00002230; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00002234; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00002238; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x0000223C; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00002240; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00002244; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00002248; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x0000224C; // type:object size:0x4 scope:local align:4 data:float
+@689 = .rodata:0x00002250; // type:object size:0x8 scope:local align:8 data:double
+@690 = .rodata:0x00002258; // type:object size:0x4 scope:local align:4 data:float
+@691 = .rodata:0x0000225C; // type:object size:0x4 scope:local align:4 data:float
+@827 = .rodata:0x00002260; // type:object size:0x4 scope:local align:4 data:float
+@829 = .rodata:0x00002268; // type:object size:0x8 scope:local align:8 data:double
+@875 = .rodata:0x00002270; // type:object size:0x4 scope:local align:4 data:float
+@876 = .rodata:0x00002274; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x00002278; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x00002280; // type:object size:0x8 scope:local align:8 data:double
+@385 = .rodata:0x00002288; // type:object size:0x8 scope:local align:8 data:double
+@408 = .rodata:0x00002290; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x00002294; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00002298; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x0000229C; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x000022A0; // type:object size:0x8 scope:local align:8 data:double
+@530 = .rodata:0x000022A8; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x000022AC; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x000022B0; // type:object size:0x8 scope:local align:8 data:double
+@598 = .rodata:0x000022B8; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x000022BC; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x000022C0; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x000022C4; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x000022C8; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x000022CC; // type:object size:0x4 scope:local align:4 data:float
+@611 = .rodata:0x000022D0; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x000022D4; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x000022D8; // type:object size:0x8 scope:local align:8 data:double
+@1733 = .rodata:0x000022E0; // type:object size:0x4 scope:local align:4 data:float
+@2629 = .rodata:0x000022E4; // type:object size:0x4 scope:local align:4 data:float
+@2643 = .rodata:0x000022E8; // type:object size:0x4 scope:local align:4 data:float
+mVW_Non = .rodata:0x000022F0; // type:object size:0x1 scope:global align:4
+mVW_FFF = .rodata:0x000022F4; // type:object size:0x1 scope:global align:4
+mVW_F = .rodata:0x000022F8; // type:object size:0x2 scope:global align:4
+mVW_MF = .rodata:0x000022FC; // type:object size:0x3 scope:global align:4
+mVW_MP = .rodata:0x00002300; // type:object size:0x4 scope:global align:4
+mVW_P = .rodata:0x00002304; // type:object size:0x5 scope:global align:4
+mVW_funbari = .rodata:0x0000230C; // type:object size:0x8 scope:global align:4
+mVW_anahori = .rodata:0x00002314; // type:object size:0x8 scope:global align:4
+mVW_anaume = .rodata:0x0000231C; // type:object size:0x3C scope:global align:4
+mVW_impact = .rodata:0x00002358; // type:object size:0x9 scope:global align:4
+mVW_ki_ga_taoreru = .rodata:0x00002364; // type:object size:0x24 scope:global align:4
+mVW_ki_wo_yusuru = .rodata:0x00002388; // type:object size:0xD scope:global align:4
+mVW_koronda = .rodata:0x00002398; // type:object size:0xE scope:global align:4
+mVW_suprise = .rodata:0x000023A8; // type:object size:0x7 scope:global align:4
+mVW_dummy_b = .rodata:0x000023B0; // type:object size:0x1 scope:global align:4
+mVW_sample = .rodata:0x000023B4; // type:object size:0xD scope:global align:4
+mVW_data = .rodata:0x000023C4; // type:object size:0x80 scope:global align:4
+@396 = .rodata:0x00002444; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x00002448; // type:object size:0x8 scope:local align:8 data:double
+@429 = .rodata:0x00002450; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x00002454; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x00002458; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000245C; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x00002460; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00002464; // type:object size:0x4 scope:local align:4 data:float
+@288 = .rodata:0x00002468; // type:object size:0x4 scope:local align:4 data:float
+@289 = .rodata:0x0000246C; // type:object size:0x4 scope:local align:4 data:float
+@292 = .rodata:0x00002470; // type:object size:0x8 scope:local align:8 data:double
+@332 = .rodata:0x00002478; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x00002480; // type:object size:0x8 scope:local align:8 data:double
+@379 = .rodata:0x00002488; // type:object size:0x4 scope:local align:4 data:float
+@380 = .rodata:0x0000248C; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x00002490; // type:object size:0x8 scope:local align:8 data:double
+days_month$456 = .rodata:0x00002498; // type:object size:0x1A scope:local align:4
+total_days$582 = .rodata:0x000024B4; // type:object size:0x68 scope:local align:4
+a_time$739 = .rodata:0x0000251C; // type:object size:0x8 scope:local align:4
+@740 = .rodata:0x00002524; // type:object size:0x8 scope:local align:4 data:4byte
+day_tbl$750 = .rodata:0x0000252C; // type:object size:0xD scope:local align:4
+@350 = .rodata:0x00002540; // type:object size:0x4 scope:local align:4 data:4byte
+@385 = .rodata:0x00002544; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x00002548; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x00002550; // type:object size:0x8 scope:local align:8 data:double
+@394 = .rodata:0x00002558; // type:object size:0x4 scope:local align:4 data:float
+@282 = .rodata:0x00002560; // type:object size:0x8 scope:local align:8 data:double
+@310 = .rodata:0x00002568; // type:object size:0x4 scope:local align:4 data:float
+@311 = .rodata:0x0000256C; // type:object size:0x4 scope:local align:4 data:float
+@274 = .rodata:0x00002570; // type:object size:0x4 scope:local align:4 data:float
+@275 = .rodata:0x00002574; // type:object size:0x4 scope:local align:4 data:float
+@276 = .rodata:0x00002578; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000257C; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00002580; // type:object size:0x8 scope:local align:8 data:double
+@517 = .rodata:0x00002588; // type:object size:0x8 scope:local align:8 data:double
+@557 = .rodata:0x00002590; // type:object size:0x8 scope:local align:8 data:double
+@573 = .rodata:0x00002598; // type:object size:0x8 scope:local align:8 data:double
+@872 = .rodata:0x000025A0; // type:object size:0x4 scope:local align:4 data:float
+@881 = .rodata:0x000025A4; // type:object size:0x4 scope:local align:4 data:float
+@1441 = .rodata:0x000025A8; // type:object size:0x4 scope:local align:4 data:float
+@1501 = .rodata:0x000025AC; // type:object size:0x4 scope:local align:4 data:float
+@266 = .rodata:0x000025B0; // type:object size:0x4 scope:local align:4 data:float
+@267 = .rodata:0x000025B4; // type:object size:0x4 scope:local align:4 data:float
+@268 = .rodata:0x000025B8; // type:object size:0x4 scope:local align:4 data:float
+@304 = .rodata:0x000025BC; // type:object size:0x4 scope:local align:4 data:float
+@306 = .rodata:0x000025C0; // type:object size:0x8 scope:local align:8 data:double
+@337 = .rodata:0x000025C8; // type:object size:0x4 scope:local align:4 data:float
+@338 = .rodata:0x000025CC; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x000025D0; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x000025D8; // type:object size:0x8 scope:local align:8 data:double
+@551 = .rodata:0x000025E0; // type:object size:0x8 scope:local align:8 data:double
+@612 = .rodata:0x000025E8; // type:object size:0x8 scope:local align:8 data:double
+@613 = .rodata:0x000025F0; // type:object size:0x8 scope:local align:8 data:double
+@656 = .rodata:0x000025F8; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00002600; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00002604; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x00002608; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000260C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00002610; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x00002614; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x00002618; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000261C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x00002620; // type:object size:0x8 scope:local align:8 data:double
+@461 = .rodata:0x00002628; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000262C; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00002630; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00002634; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x00002638; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x0000263C; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00002640; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00002644; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00002648; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000264C; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00002650; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00002654; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x00002658; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x0000265C; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00002660; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00002664; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00002668; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x0000266C; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00002670; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00002674; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00002678; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x0000267C; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00002680; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00002684; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00002688; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x0000268C; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00002690; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00002694; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00002698; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x0000269C; // type:object size:0xC scope:local align:4 data:4byte
+@623 = .rodata:0x000026A8; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x000026AC; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x000026B0; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x000026B8; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x000026BC; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000026C0; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000026C4; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x000026C8; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000026CC; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x000026D0; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x000026D4; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x000026D8; // type:object size:0x4 scope:local align:4 data:float
+@562 = .rodata:0x000026DC; // type:object size:0x4 scope:local align:4 data:float
+init_proc$578 = .rodata:0x000026E0; // type:object size:0x1C scope:local align:4
+draw_pos_x$591 = .rodata:0x000026FC; // type:object size:0xC scope:local align:4 data:4byte
+draw_pos_y$592 = .rodata:0x00002708; // type:object size:0xC scope:local align:4 data:4byte
+init_disp$625 = .rodata:0x00002718; // type:object size:0x20 scope:local align:8
+@644 = .rodata:0x00002738; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x0000273C; // type:object size:0x4 scope:local align:4 data:float
+@646 = .rodata:0x00002740; // type:object size:0x4 scope:local align:4 data:float
+init_disp$650 = .rodata:0x00002748; // type:object size:0x28 scope:local align:8
+@669 = .rodata:0x00002770; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00002774; // type:object size:0x4 scope:local align:4 data:float
+draw_pos_x$674 = .rodata:0x00002778; // type:object size:0x8 scope:local align:4 data:4byte
+draw_pos_y$675 = .rodata:0x00002780; // type:object size:0x8 scope:local align:4 data:4byte
+ps_prim_r$676 = .rodata:0x00002788; // type:object size:0x14 scope:local align:4
+ps_prim_g$677 = .rodata:0x0000279C; // type:object size:0x14 scope:local align:4
+ps_prim_b$678 = .rodata:0x000027B0; // type:object size:0x14 scope:local align:4
+ps_env_r$679 = .rodata:0x000027C4; // type:object size:0x14 scope:local align:4
+ps_env_g$680 = .rodata:0x000027D8; // type:object size:0x14 scope:local align:4
+ps_env_b$681 = .rodata:0x000027EC; // type:object size:0x14 scope:local align:4
+init_disp$733 = .rodata:0x00002800; // type:object size:0x28 scope:local align:8
+@484 = .rodata:0x00002828; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x0000282C; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00002830; // type:object size:0x8 scope:local align:8 data:double
+@472 = .rodata:0x00002838; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000283C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00002840; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00002844; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00002848; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x0000284C; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00002850; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00002854; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00002858; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x0000285C; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x00002860; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00002864; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00002868; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x0000286C; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00002870; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x00002874; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x00002878; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00002880; // type:object size:0x8 scope:local align:8 data:double
+@633 = .rodata:0x00002888; // type:object size:0x8 scope:local align:8 data:double
+@634 = .rodata:0x00002890; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00002894; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00002898; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x0000289C; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x000028A0; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x000028A4; // type:object size:0x4 scope:local align:4 data:float
+@640 = .rodata:0x000028A8; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x000028AC; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x000028B0; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x000028B4; // type:object size:0x4 scope:local align:4 data:float
+@743 = .rodata:0x000028B8; // type:object size:0x4 scope:local align:4 data:float
+@744 = .rodata:0x000028BC; // type:object size:0x4 scope:local align:4 data:float
+@745 = .rodata:0x000028C0; // type:object size:0x4 scope:local align:4 data:float
+@746 = .rodata:0x000028C4; // type:object size:0x4 scope:local align:4 data:float
+@747 = .rodata:0x000028C8; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x000028CC; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x000028D0; // type:object size:0x4 scope:local align:4 data:float
+@750 = .rodata:0x000028D4; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x000028D8; // type:object size:0x4 scope:local align:4 data:float
+@752 = .rodata:0x000028DC; // type:object size:0x4 scope:local align:4 data:float
+@780 = .rodata:0x000028E0; // type:object size:0x4 scope:local align:4 data:float
+@843 = .rodata:0x000028E4; // type:object size:0x4 scope:local align:4 data:float
+@844 = .rodata:0x000028E8; // type:object size:0x4 scope:local align:4 data:float
+@845 = .rodata:0x000028EC; // type:object size:0x4 scope:local align:4 data:float
+@846 = .rodata:0x000028F0; // type:object size:0x4 scope:local align:4 data:float
+@906 = .rodata:0x000028F4; // type:object size:0x4 scope:local align:4 data:float
+@907 = .rodata:0x000028F8; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00002900; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00002904; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x00002908; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000290C; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00002910; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00002918; // type:object size:0x8 scope:local align:8 data:double
+@496 = .rodata:0x00002920; // type:object size:0x8 scope:local align:8 data:double
+@505 = .rodata:0x00002928; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x00002930; // type:object size:0x4 scope:local align:4 data:float
+@684 = .rodata:0x00002938; // type:object size:0x4 scope:local align:4 data:float
+@685 = .rodata:0x0000293C; // type:object size:0x4 scope:local align:4 data:float
+Cottage_data = .rodata:0x00002940; // type:object size:0xF0 scope:global align:4
+@461 = .rodata:0x00002A30; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00002A34; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00002A38; // type:object size:0x4 scope:local align:4 data:float
+chk_pat_in$487 = .rodata:0x00002A3C; // type:object size:0x10 scope:local align:4
+chk_pat_out$488 = .rodata:0x00002A4C; // type:object size:0x10 scope:local align:4 data:float
+se_no$489 = .rodata:0x00002A5C; // type:object size:0x8 scope:local align:4
+@519 = .rodata:0x00002A64; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00002A68; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00002A6C; // type:object size:0x4 scope:local align:4 data:float
+unit_offset$569 = .rodata:0x00002A70; // type:object size:0x40 scope:local align:4 data:2byte
+rewrite_data$570 = .rodata:0x00002AB0; // type:object size:0x70 scope:local align:4 data:byte
+@587 = .rodata:0x00002B20; // type:object size:0x8 scope:local align:8 data:double
+@633 = .rodata:0x00002B28; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x00002B2C; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x00002B30; // type:object size:0x4 scope:local align:4 data:float
+@681 = .rodata:0x00002B34; // type:object size:0x4 scope:local align:4 data:float
+@682 = .rodata:0x00002B38; // type:object size:0x4 scope:local align:4 data:float
+@779 = .rodata:0x00002B3C; // type:object size:0x4 scope:local align:4 data:float
+@844 = .rodata:0x00002B40; // type:object size:0x4 scope:local align:4 data:float
+@845 = .rodata:0x00002B44; // type:object size:0x4 scope:local align:4 data:float
+@884 = .rodata:0x00002B48; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x00002B50; // type:object size:0x4 scope:local align:4 data:float
+@674 = .rodata:0x00002B54; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00002B58; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x00002B5C; // type:object size:0x4 scope:local align:4 data:float
+@755 = .rodata:0x00002B60; // type:object size:0x4 scope:local align:4 data:float
+@756 = .rodata:0x00002B64; // type:object size:0x4 scope:local align:4 data:float
+@757 = .rodata:0x00002B68; // type:object size:0x4 scope:local align:4 data:float
+@758 = .rodata:0x00002B6C; // type:object size:0x4 scope:local align:4 data:float
+@760 = .rodata:0x00002B70; // type:object size:0x8 scope:local align:8 data:double
+@871 = .rodata:0x00002B78; // type:object size:0x4 scope:local align:4 data:float
+@872 = .rodata:0x00002B7C; // type:object size:0x4 scope:local align:4 data:float
+@873 = .rodata:0x00002B80; // type:object size:0x8 scope:local align:8 data:double
+@874 = .rodata:0x00002B88; // type:object size:0x8 scope:local align:8 data:double
+@875 = .rodata:0x00002B90; // type:object size:0x8 scope:local align:8 data:double
+@988 = .rodata:0x00002B98; // type:object size:0x4 scope:local align:4 data:float
+@1011 = .rodata:0x00002B9C; // type:object size:0x4 scope:local align:4 data:float
+@1012 = .rodata:0x00002BA0; // type:object size:0x4 scope:local align:4 data:float
+@1047 = .rodata:0x00002BA4; // type:object size:0x4 scope:local align:4 data:float
+@1159 = .rodata:0x00002BA8; // type:object size:0x4 scope:local align:4 data:float
+@1160 = .rodata:0x00002BAC; // type:object size:0x4 scope:local align:4 data:float
+@1161 = .rodata:0x00002BB0; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00002BB8; // type:object size:0x1 scope:local align:4 data:byte
+@505 = .rodata:0x00002BBC; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00002BC0; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00002BC4; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00002BC8; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00002BCC; // type:object size:0x4 scope:local align:4 data:float
+@576 = .rodata:0x00002BD0; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00002BD4; // type:object size:0x10 scope:local align:4 data:4byte
+@615 = .rodata:0x00002BE4; // type:object size:0x40 scope:local align:4
+@616 = .rodata:0x00002C24; // type:object size:0x10 scope:local align:4 data:4byte
+@683 = .rodata:0x00002C34; // type:object size:0x4 scope:local align:4 data:float
+@685 = .rodata:0x00002C38; // type:object size:0x8 scope:local align:8 data:double
+@725 = .rodata:0x00002C40; // type:object size:0x8 scope:local align:4 data:4byte
+@726 = .rodata:0x00002C48; // type:object size:0x18 scope:local align:4
+@1293 = .rodata:0x00002C60; // type:object size:0x4 scope:local align:4 data:float
+@1730 = .rodata:0x00002C64; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x00002C68; // type:object size:0x4 scope:local align:4 data:float
+@1732 = .rodata:0x00002C6C; // type:object size:0x4 scope:local align:4 data:float
+@2492 = .rodata:0x00002C70; // type:object size:0x6 scope:local align:4 data:2byte
+@2596 = .rodata:0x00002C78; // type:object size:0x4 scope:local align:4 data:float
+@2597 = .rodata:0x00002C7C; // type:object size:0x4 scope:local align:4 data:4byte
+@3177 = .rodata:0x00002C80; // type:object size:0x20 scope:local align:4
+@435 = .rodata:0x00002CA0; // type:object size:0x18 scope:local align:4
+@511 = .rodata:0x00002CB8; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00002CBC; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00002CC0; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00002CC4; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x00002CC8; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00002CCC; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00002CD0; // type:object size:0x8 scope:local align:8 data:double
+@747 = .rodata:0x00002CD8; // type:object size:0x4 scope:local align:4 data:float
+@752 = .rodata:0x00002CDC; // type:object size:0x4 scope:local align:4 data:float
+@753 = .rodata:0x00002CE0; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x00002CE4; // type:object size:0x4 scope:local align:4 data:float
+@755 = .rodata:0x00002CE8; // type:object size:0x4 scope:local align:4 data:float
+@756 = .rodata:0x00002CEC; // type:object size:0x4 scope:local align:4 data:float
+@757 = .rodata:0x00002CF0; // type:object size:0x4 scope:local align:4 data:float
+@758 = .rodata:0x00002CF4; // type:object size:0x4 scope:local align:4 data:float
+@759 = .rodata:0x00002CF8; // type:object size:0x4 scope:local align:4 data:float
+@760 = .rodata:0x00002CFC; // type:object size:0x4 scope:local align:4 data:float
+@761 = .rodata:0x00002D00; // type:object size:0x4 scope:local align:4 data:float
+@762 = .rodata:0x00002D04; // type:object size:0x4 scope:local align:4 data:float
+@763 = .rodata:0x00002D08; // type:object size:0x4 scope:local align:4 data:float
+@764 = .rodata:0x00002D0C; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00002D10; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00002D14; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00002D18; // type:object size:0x4 scope:local align:4 data:float
+@771 = .rodata:0x00002D20; // type:object size:0x8 scope:local align:8 data:double
+@454 = .rodata:0x00002D28; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00002D2C; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00002D30; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00002D34; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00002D38; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00002D3C; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00002D40; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00002D44; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x00002D48; // type:object size:0x8 scope:local align:8 data:double
+@596 = .rodata:0x00002D50; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00002D54; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x00002D58; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x00002D60; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x00002D64; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x00002D68; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x00002D6C; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x00002D70; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x00002D74; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x00002D78; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x00002D7C; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x00002D80; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00002D84; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00002D88; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x00002D8C; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00002D90; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x00002D94; // type:object size:0x4 scope:local align:4 data:float
+construct_table$571 = .rodata:0x00002D98; // type:object size:0x8 scope:local align:4
+@613 = .rodata:0x00002DA0; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00002DA4; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00002DA8; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00002DAC; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00002DB0; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00002DB4; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00002DB8; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00002DBC; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x00002DC0; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x00002DC8; // type:object size:0x8 scope:local align:8 data:double
+@459 = .rodata:0x00002DD0; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x00002DD4; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00002DD8; // type:object size:0x8 scope:local align:8 data:double
+@463 = .rodata:0x00002DE0; // type:object size:0x8 scope:local align:8 data:double
+@464 = .rodata:0x00002DE8; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00002DEC; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x00002DF0; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00002DF4; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00002DF8; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00002DFC; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00002E00; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00002E04; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00002E08; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00002E0C; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x00002E10; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00002E14; // type:object size:0x4 scope:local align:4 data:float
+@572 = .rodata:0x00002E18; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00002E1C; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00002E20; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00002E24; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x00002E28; // type:object size:0x4 scope:local align:4 data:float
+@613 = .rodata:0x00002E2C; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00002E30; // type:object size:0x8 scope:local align:8 data:double
+@656 = .rodata:0x00002E38; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00002E40; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x00002E44; // type:object size:0x4 scope:local align:4 data:float
+@602 = .rodata:0x00002E48; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00002E4C; // type:object size:0x4 scope:local align:4 data:float
+@659 = .rodata:0x00002E50; // type:object size:0x4 scope:local align:4 data:float
+@733 = .rodata:0x00002E54; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x00002E58; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00002E5C; // type:object size:0x8 scope:local align:4 data:4byte
+@544 = .rodata:0x00002E64; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00002E68; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x00002E6C; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x00002E70; // type:object size:0x4 scope:local align:4 data:float
+@819 = .rodata:0x00002E74; // type:object size:0x4 scope:local align:4 data:float
+@820 = .rodata:0x00002E78; // type:object size:0x4 scope:local align:4 data:float
+@821 = .rodata:0x00002E7C; // type:object size:0x4 scope:local align:4 data:float
+@822 = .rodata:0x00002E80; // type:object size:0x4 scope:local align:4 data:float
+@823 = .rodata:0x00002E84; // type:object size:0x4 scope:local align:4 data:float
+@824 = .rodata:0x00002E88; // type:object size:0x4 scope:local align:4 data:float
+@847 = .rodata:0x00002E8C; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x00002E90; // type:object size:0x4 scope:local align:4 data:float
+@853 = .rodata:0x00002E94; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00002E98; // type:object size:0x8 scope:local align:8 data:double
+@581 = .rodata:0x00002EA0; // type:object size:0x4 scope:local align:4 data:float
+@651 = .rodata:0x00002EA4; // type:object size:0x4 scope:local align:4 data:float
+@689 = .rodata:0x00002EA8; // type:object size:0x4 scope:local align:4 data:float
+@729 = .rodata:0x00002EAC; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00002EB0; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00002EB4; // type:object size:0xC scope:local align:4 data:4byte
+@531 = .rodata:0x00002EC0; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00002EC8; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x00002ECC; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00002ED0; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00002ED4; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00002ED8; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00002EDC; // type:object size:0x4 scope:local align:4 data:float
+@571 = .rodata:0x00002EE0; // type:object size:0x4 scope:local align:4 data:float
+@603 = .rodata:0x00002EE4; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x00002EE8; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00002EEC; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00002EF0; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x00002EF8; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x00002EFC; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x00002F00; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00002F04; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00002F08; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00002F0C; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00002F10; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00002F18; // type:object size:0x8 scope:local align:8 data:double
+@557 = .rodata:0x00002F20; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00002F24; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00002F28; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00002F2C; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00002F30; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00002F34; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00002F38; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00002F3C; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x00002F40; // type:object size:0x4 scope:local align:4 data:float
+@659 = .rodata:0x00002F44; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x00002F48; // type:object size:0x4 scope:local align:4 data:float
+@661 = .rodata:0x00002F4C; // type:object size:0x4 scope:local align:4 data:float
+@662 = .rodata:0x00002F50; // type:object size:0x4 scope:local align:4 data:float
+@663 = .rodata:0x00002F54; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00002F58; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x00002F5C; // type:object size:0x4 scope:local align:4 data:float
+@666 = .rodata:0x00002F60; // type:object size:0x4 scope:local align:4 data:float
+@667 = .rodata:0x00002F64; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00002F68; // type:object size:0x8 scope:local align:8 data:double
+@683 = .rodata:0x00002F70; // type:object size:0x4 scope:local align:4 data:float
+@706 = .rodata:0x00002F74; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x00002F78; // type:object size:0x4 scope:local align:4 data:float
+@720 = .rodata:0x00002F80; // type:object size:0x8 scope:local align:8 data:double
+@721 = .rodata:0x00002F88; // type:object size:0x4 scope:local align:4 data:float
+@722 = .rodata:0x00002F8C; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00002F90; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00002F94; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x00002F98; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00002F9C; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x00002FA0; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00002FA4; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x00002FA8; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00002FAC; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x00002FB0; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x00002FB8; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x00002FBC; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x00002FC0; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00002FC4; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x00002FC8; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x00002FCC; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00002FD0; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x00002FD8; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00002FDC; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x00002FE0; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x00002FE4; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x00002FE8; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00002FEC; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00002FF0; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00002FF4; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x00002FF8; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00002FFC; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x00003000; // type:object size:0xC scope:local align:4 data:4byte
+@618 = .rodata:0x0000300C; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00003010; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00003014; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00003018; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x0000301C; // type:object size:0x4 scope:local align:4 data:float
+@657 = .rodata:0x00003020; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00003028; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x0000302C; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00003030; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00003038; // type:object size:0x8 scope:local align:8 data:double
+@507 = .rodata:0x00003040; // type:object size:0x8 scope:local align:8 data:double
+@508 = .rodata:0x00003048; // type:object size:0x8 scope:local align:8 data:double
+@509 = .rodata:0x00003050; // type:object size:0x8 scope:local align:8 data:double
+@510 = .rodata:0x00003058; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000305C; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00003060; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00003064; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00003068; // type:object size:0x8 scope:local align:8 data:double
+@452 = .rodata:0x00003070; // type:object size:0xC scope:local align:4 data:4byte
+@473 = .rodata:0x0000307C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00003080; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00003084; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00003088; // type:object size:0x8 scope:local align:8 data:double
+@513 = .rodata:0x00003090; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00003098; // type:object size:0x8 scope:local align:8 data:double
+@515 = .rodata:0x000030A0; // type:object size:0x8 scope:local align:8 data:double
+@520 = .rodata:0x000030A8; // type:object size:0xC scope:local align:4 data:4byte
+@522 = .rodata:0x000030B4; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x000030B8; // type:object size:0x4 scope:local align:4 data:float
+@577 = .rodata:0x000030C0; // type:object size:0x8 scope:local align:8 data:double
+@578 = .rodata:0x000030C8; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x000030D0; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x000030D4; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x000030D8; // type:object size:0x8 scope:local align:8 data:double
+@470 = .rodata:0x000030E0; // type:object size:0x8 scope:local align:8 data:double
+@471 = .rodata:0x000030E8; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x000030EC; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x000030F0; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x000030F4; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x000030F8; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x000030FC; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00003100; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00003104; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00003108; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x0000310C; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x00003110; // type:object size:0x4 scope:local align:4 data:float
+@570 = .rodata:0x00003118; // type:object size:0x8 scope:local align:8 data:double
+@587 = .rodata:0x00003120; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00003124; // type:object size:0x4 scope:local align:4 data:float
+@603 = .rodata:0x00003128; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x00003130; // type:object size:0x8 scope:local align:8 data:double
+@666 = .rodata:0x00003138; // type:object size:0x4 scope:local align:4 data:float
+@697 = .rodata:0x0000313C; // type:object size:0x4 scope:local align:4 data:float
+@698 = .rodata:0x00003140; // type:object size:0x4 scope:local align:4 data:float
+@699 = .rodata:0x00003144; // type:object size:0x4 scope:local align:4 data:float
+@791 = .rodata:0x00003148; // type:object size:0x4 scope:local align:4 data:float
+@792 = .rodata:0x0000314C; // type:object size:0x4 scope:local align:4 data:float
+@793 = .rodata:0x00003150; // type:object size:0x4 scope:local align:4 data:float
+@836 = .rodata:0x00003154; // type:object size:0x4 scope:local align:4 data:float
+@837 = .rodata:0x00003158; // type:object size:0x4 scope:local align:4 data:float
+@838 = .rodata:0x0000315C; // type:object size:0x4 scope:local align:4 data:float
+@839 = .rodata:0x00003160; // type:object size:0x4 scope:local align:4 data:float
+@840 = .rodata:0x00003164; // type:object size:0x4 scope:local align:4 data:float
+@920 = .rodata:0x00003168; // type:object size:0x8 scope:local align:8 data:double
+@921 = .rodata:0x00003170; // type:object size:0x8 scope:local align:8 data:double
+@974 = .rodata:0x00003178; // type:object size:0x4 scope:local align:4 data:float
+@975 = .rodata:0x0000317C; // type:object size:0x4 scope:local align:4 data:float
+@976 = .rodata:0x00003180; // type:object size:0x4 scope:local align:4 data:float
+@1066 = .rodata:0x00003188; // type:object size:0x8 scope:local align:8 data:double
+@1067 = .rodata:0x00003190; // type:object size:0x4 scope:local align:4 data:float
+@1068 = .rodata:0x00003194; // type:object size:0x4 scope:local align:4 data:float
+@1069 = .rodata:0x00003198; // type:object size:0x4 scope:local align:4 data:float
+@1070 = .rodata:0x0000319C; // type:object size:0x4 scope:local align:4 data:float
+@1071 = .rodata:0x000031A0; // type:object size:0x4 scope:local align:4 data:float
+@1072 = .rodata:0x000031A4; // type:object size:0x4 scope:local align:4 data:float
+@1099 = .rodata:0x000031A8; // type:object size:0x4 scope:local align:4 data:float
+@1100 = .rodata:0x000031AC; // type:object size:0x4 scope:local align:4 data:float
+@1101 = .rodata:0x000031B0; // type:object size:0x4 scope:local align:4 data:float
+@1145 = .rodata:0x000031B4; // type:object size:0x4 scope:local align:4 data:float
+@1146 = .rodata:0x000031B8; // type:object size:0x4 scope:local align:4 data:float
+@1147 = .rodata:0x000031BC; // type:object size:0x4 scope:local align:4 data:float
+@1315 = .rodata:0x000031C0; // type:object size:0x4 scope:local align:4 data:float
+@1344 = .rodata:0x000031C4; // type:object size:0x4 scope:local align:4 data:float
+@1475 = .rodata:0x000031C8; // type:object size:0x4 scope:local align:4 data:float
+@1556 = .rodata:0x000031CC; // type:object size:0x4 scope:local align:4 data:float
+@1557 = .rodata:0x000031D0; // type:object size:0x4 scope:local align:4 data:float
+@1558 = .rodata:0x000031D4; // type:object size:0x4 scope:local align:4 data:float
+@1559 = .rodata:0x000031D8; // type:object size:0x4 scope:local align:4 data:float
+@1598 = .rodata:0x000031DC; // type:object size:0x4 scope:local align:4 data:float
+@1599 = .rodata:0x000031E0; // type:object size:0x4 scope:local align:4 data:float
+@1680 = .rodata:0x000031E8; // type:object size:0x8 scope:local align:8 data:double
+@1711 = .rodata:0x000031F0; // type:object size:0x4 scope:local align:4 data:float
+@1712 = .rodata:0x000031F4; // type:object size:0x4 scope:local align:4 data:float
+@1957 = .rodata:0x000031F8; // type:object size:0x4 scope:local align:4 data:float
+@1958 = .rodata:0x00003200; // type:object size:0x8 scope:local align:8 data:double
+@1997 = .rodata:0x00003208; // type:object size:0x4 scope:local align:4 data:float
+@2301 = .rodata:0x0000320C; // type:object size:0x4 scope:local align:4 data:float
+@2377 = .rodata:0x00003210; // type:object size:0x4 scope:local align:4 data:float
+@2593 = .rodata:0x00003214; // type:object size:0x4 scope:local align:4 data:float
+@2594 = .rodata:0x00003218; // type:object size:0x4 scope:local align:4 data:float
+@2850 = .rodata:0x0000321C; // type:object size:0x4 scope:local align:4 data:float
+@2851 = .rodata:0x00003220; // type:object size:0x4 scope:local align:4 data:float
+@2906 = .rodata:0x00003228; // type:object size:0x8 scope:local align:8 data:double
+@2937 = .rodata:0x00003230; // type:object size:0x4 scope:local align:4 data:float
+@2938 = .rodata:0x00003234; // type:object size:0x4 scope:local align:4 data:float
+@3066 = .rodata:0x00003238; // type:object size:0x4 scope:local align:4 data:float
+@3228 = .rodata:0x0000323C; // type:object size:0x4 scope:local align:4 data:float
+@3229 = .rodata:0x00003240; // type:object size:0x4 scope:local align:4 data:float
+@3230 = .rodata:0x00003248; // type:object size:0x8 scope:local align:8 data:double
+@3391 = .rodata:0x00003250; // type:object size:0x4 scope:local align:4 data:float
+@3475 = .rodata:0x00003254; // type:object size:0x4 scope:local align:4 data:float
+@3476 = .rodata:0x00003258; // type:object size:0x8 scope:local align:8 data:double
+@3706 = .rodata:0x00003260; // type:object size:0x4 scope:local align:4 data:float
+@3707 = .rodata:0x00003264; // type:object size:0x4 scope:local align:4 data:float
+@3708 = .rodata:0x00003268; // type:object size:0x4 scope:local align:4 data:float
+@3752 = .rodata:0x0000326C; // type:object size:0x4 scope:local align:4 data:float
+@4106 = .rodata:0x00003270; // type:object size:0x4 scope:local align:4 data:float
+@4261 = .rodata:0x00003274; // type:object size:0x4 scope:local align:4 data:float
+@4262 = .rodata:0x00003278; // type:object size:0x4 scope:local align:4 data:float
+@4470 = .rodata:0x0000327C; // type:object size:0x4 scope:local align:4 data:float
+@4626 = .rodata:0x00003280; // type:object size:0x4 scope:local align:4 data:float
+@4774 = .rodata:0x00003284; // type:object size:0x4 scope:local align:4 data:float
+@4775 = .rodata:0x00003288; // type:object size:0x4 scope:local align:4 data:float
+@4929 = .rodata:0x0000328C; // type:object size:0x4 scope:local align:4 data:float
+@5269 = .rodata:0x00003290; // type:object size:0x4 scope:local align:4 data:float
+@5270 = .rodata:0x00003294; // type:object size:0x4 scope:local align:4 data:float
+@5325 = .rodata:0x00003298; // type:object size:0x4 scope:local align:4 data:float
+@5573 = .rodata:0x0000329C; // type:object size:0x4 scope:local align:4 data:float
+@5574 = .rodata:0x000032A0; // type:object size:0x4 scope:local align:4 data:float
+@5655 = .rodata:0x000032A4; // type:object size:0x4 scope:local align:4 data:float
+@6315 = .rodata:0x000032A8; // type:object size:0x4 scope:local align:4 data:float
+@6403 = .rodata:0x000032AC; // type:object size:0x4 scope:local align:4 data:float
+@6505 = .rodata:0x000032B0; // type:object size:0x4 scope:local align:4 data:float
+@6506 = .rodata:0x000032B4; // type:object size:0x4 scope:local align:4 data:float
+@6507 = .rodata:0x000032B8; // type:object size:0x4 scope:local align:4 data:float
+@6583 = .rodata:0x000032BC; // type:object size:0x4 scope:local align:4 data:float
+@6584 = .rodata:0x000032C0; // type:object size:0x4 scope:local align:4 data:float
+@6800 = .rodata:0x000032C4; // type:object size:0x4 scope:local align:4 data:float
+@6801 = .rodata:0x000032C8; // type:object size:0x4 scope:local align:4 data:float
+@6874 = .rodata:0x000032CC; // type:object size:0x4 scope:local align:4 data:float
+@6875 = .rodata:0x000032D0; // type:object size:0x4 scope:local align:4 data:float
+@6876 = .rodata:0x000032D4; // type:object size:0x4 scope:local align:4 data:float
+@6877 = .rodata:0x000032D8; // type:object size:0x4 scope:local align:4 data:float
+@7119 = .rodata:0x000032DC; // type:object size:0x4 scope:local align:4 data:float
+@7120 = .rodata:0x000032E0; // type:object size:0x4 scope:local align:4 data:float
+@7531 = .rodata:0x000032E4; // type:object size:0x4 scope:local align:4 data:float
+@7611 = .rodata:0x000032E8; // type:object size:0x4 scope:local align:4 data:float
+@7612 = .rodata:0x000032EC; // type:object size:0x4 scope:local align:4 data:float
+@7652 = .rodata:0x000032F0; // type:object size:0x4 scope:local align:4 data:float
+@7653 = .rodata:0x000032F4; // type:object size:0x4 scope:local align:4 data:float
+@7768 = .rodata:0x000032F8; // type:object size:0x8 scope:local align:8 data:double
+@7769 = .rodata:0x00003300; // type:object size:0x8 scope:local align:8 data:double
+@7841 = .rodata:0x00003308; // type:object size:0x8 scope:local align:8 data:double
+@7929 = .rodata:0x00003310; // type:object size:0x4 scope:local align:4 data:float
+@7930 = .rodata:0x00003318; // type:object size:0x8 scope:local align:8 data:double
+@7931 = .rodata:0x00003320; // type:object size:0x8 scope:local align:8 data:double
+@7932 = .rodata:0x00003328; // type:object size:0x8 scope:local align:8 data:double
+@8130 = .rodata:0x00003330; // type:object size:0x4 scope:local align:4 data:float
+@8131 = .rodata:0x00003334; // type:object size:0x4 scope:local align:4 data:float
+@8234 = .rodata:0x00003338; // type:object size:0x4 scope:local align:4 data:float
+@8327 = .rodata:0x0000333C; // type:object size:0x4 scope:local align:4 data:float
+@8410 = .rodata:0x00003340; // type:object size:0x4 scope:local align:4 data:float
+@8411 = .rodata:0x00003348; // type:object size:0x8 scope:local align:8 data:double
+@8418 = .rodata:0x00003350; // type:object size:0x4 scope:local align:4 data:float
+@8451 = .rodata:0x00003354; // type:object size:0x4 scope:local align:4 data:float
+@8478 = .rodata:0x00003358; // type:object size:0x4 scope:local align:4 data:float
+@8726 = .rodata:0x0000335C; // type:object size:0x4 scope:local align:4 data:float
+@8727 = .rodata:0x00003360; // type:object size:0x4 scope:local align:4 data:float
+@8807 = .rodata:0x00003364; // type:object size:0x4 scope:local align:4 data:float
+@8808 = .rodata:0x00003368; // type:object size:0x4 scope:local align:4 data:float
+@8809 = .rodata:0x0000336C; // type:object size:0x4 scope:local align:4 data:float
+@8810 = .rodata:0x00003370; // type:object size:0x4 scope:local align:4 data:float
+@8811 = .rodata:0x00003374; // type:object size:0x4 scope:local align:4 data:float
+@8883 = .rodata:0x00003378; // type:object size:0x4 scope:local align:4 data:float
+@8884 = .rodata:0x0000337C; // type:object size:0x4 scope:local align:4 data:float
+@8885 = .rodata:0x00003380; // type:object size:0x4 scope:local align:4 data:float
+@8886 = .rodata:0x00003384; // type:object size:0x4 scope:local align:4 data:float
+@8887 = .rodata:0x00003388; // type:object size:0x4 scope:local align:4 data:float
+@8888 = .rodata:0x0000338C; // type:object size:0x4 scope:local align:4 data:float
+@8889 = .rodata:0x00003390; // type:object size:0x4 scope:local align:4 data:float
+@8890 = .rodata:0x00003394; // type:object size:0x4 scope:local align:4 data:float
+@8949 = .rodata:0x00003398; // type:object size:0x8 scope:local align:4 data:4byte
+@9156 = .rodata:0x000033A0; // type:object size:0x4 scope:local align:4 data:float
+@9157 = .rodata:0x000033A4; // type:object size:0x4 scope:local align:4 data:float
+@9158 = .rodata:0x000033A8; // type:object size:0x4 scope:local align:4 data:float
+@9159 = .rodata:0x000033AC; // type:object size:0x4 scope:local align:4 data:float
+@9160 = .rodata:0x000033B0; // type:object size:0x4 scope:local align:4 data:float
+@9247 = .rodata:0x000033B4; // type:object size:0x4 scope:local align:4 data:float
+@9248 = .rodata:0x000033B8; // type:object size:0x4 scope:local align:4 data:float
+@9352 = .rodata:0x000033BC; // type:object size:0x4 scope:local align:4 data:float
+@9353 = .rodata:0x000033C0; // type:object size:0x4 scope:local align:4 data:float
+@9354 = .rodata:0x000033C4; // type:object size:0x4 scope:local align:4 data:float
+@9355 = .rodata:0x000033C8; // type:object size:0x4 scope:local align:4 data:float
+@9356 = .rodata:0x000033CC; // type:object size:0x4 scope:local align:4 data:float
+@9567 = .rodata:0x000033D0; // type:object size:0x4 scope:local align:4 data:float
+@9693 = .rodata:0x000033D4; // type:object size:0x4 scope:local align:4 data:float
+@9694 = .rodata:0x000033D8; // type:object size:0x4 scope:local align:4 data:float
+@9695 = .rodata:0x000033DC; // type:object size:0x4 scope:local align:4 data:float
+@9785 = .rodata:0x000033E0; // type:object size:0x4 scope:local align:4 data:float
+@10190 = .rodata:0x000033E4; // type:object size:0x4 scope:local align:4 data:float
+@10191 = .rodata:0x000033E8; // type:object size:0x4 scope:local align:4 data:float
+@10226 = .rodata:0x000033EC; // type:object size:0x4 scope:local align:4 data:float
+@10227 = .rodata:0x000033F0; // type:object size:0x4 scope:local align:4 data:float
+@10228 = .rodata:0x000033F4; // type:object size:0x4 scope:local align:4 data:float
+@10240 = .rodata:0x000033F8; // type:object size:0x4 scope:local align:4 data:float
+@10241 = .rodata:0x000033FC; // type:object size:0x4 scope:local align:4 data:float
+@10353 = .rodata:0x00003400; // type:object size:0x4 scope:local align:4 data:float
+@10417 = .rodata:0x00003404; // type:object size:0x4 scope:local align:4 data:float
+@10418 = .rodata:0x00003408; // type:object size:0x4 scope:local align:4 data:float
+@10419 = .rodata:0x0000340C; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00003410; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00003414; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00003418; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x0000341C; // type:object size:0x4 scope:local align:4 data:float
+aim_angle_tbl = .rodata:0x00003420; // type:object size:0xC scope:global align:4
+base_high_tbl = .rodata:0x0000342C; // type:object size:0x10 scope:global align:4
+init_center_pos$450 = .rodata:0x0000343C; // type:object size:0xC scope:local align:4 data:4byte
+@459 = .rodata:0x00003448; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x0000344C; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x00003450; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00003454; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00003458; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000345C; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00003460; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00003464; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00003468; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x0000346C; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00003470; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00003474; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x00003478; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00003480; // type:object size:0x8 scope:local align:8 data:double
+@509 = .rodata:0x00003488; // type:object size:0x8 scope:local align:8 data:double
+@510 = .rodata:0x00003490; // type:object size:0x8 scope:local align:8 data:double
+@511 = .rodata:0x00003498; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x0000349C; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x000034A0; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x000034A4; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x000034A8; // type:object size:0x4 scope:local align:4 data:float
+@582 = .rodata:0x000034AC; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x000034B0; // type:object size:0x8 scope:local align:8 data:double
+@584 = .rodata:0x000034B8; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x000034BC; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x000034C0; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x000034C8; // type:object size:0x8 scope:local align:8 data:double
+@674 = .rodata:0x000034D0; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x000034D4; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x000034D8; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x000034DC; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x000034E0; // type:object size:0x4 scope:local align:4 data:float
+@761 = .rodata:0x000034E8; // type:object size:0x8 scope:local align:8 data:double
+@762 = .rodata:0x000034F0; // type:object size:0x4 scope:local align:4 data:float
+init_pos$794 = .rodata:0x000034F4; // type:object size:0x30 scope:local align:4
+@809 = .rodata:0x00003524; // type:object size:0x4 scope:local align:4 data:float
+@823 = .rodata:0x00003528; // type:object size:0x4 scope:local align:4 data:float
+@824 = .rodata:0x0000352C; // type:object size:0x4 scope:local align:4 data:float
+semi_sound_data$829 = .rodata:0x00003530; // type:object size:0x4 scope:local align:4
+@871 = .rodata:0x00003538; // type:object size:0x8 scope:local align:8 data:double
+@872 = .rodata:0x00003540; // type:object size:0x4 scope:local align:4 data:float
+init_center_pos$930 = .rodata:0x00003544; // type:object size:0xC scope:local align:4 data:4byte
+@935 = .rodata:0x00003550; // type:object size:0x4 scope:local align:4 data:float
+@936 = .rodata:0x00003554; // type:object size:0x4 scope:local align:4 data:float
+@949 = .rodata:0x00003558; // type:object size:0x4 scope:local align:4 data:float
+@999 = .rodata:0x0000355C; // type:object size:0x18 scope:local align:4
+@1000 = .rodata:0x00003574; // type:object size:0x8 scope:local align:4 data:4byte
+@1032 = .rodata:0x0000357C; // type:object size:0x4 scope:local align:4 data:float
+@1033 = .rodata:0x00003580; // type:object size:0x4 scope:local align:4 data:float
+@1065 = .rodata:0x00003584; // type:object size:0x4 scope:local align:4 data:float
+@1066 = .rodata:0x00003588; // type:object size:0x4 scope:local align:4 data:float
+@1067 = .rodata:0x0000358C; // type:object size:0x4 scope:local align:4 data:float
+@1068 = .rodata:0x00003590; // type:object size:0x4 scope:local align:4 data:float
+@1086 = .rodata:0x00003594; // type:object size:0x4 scope:local align:4 data:float
+@1111 = .rodata:0x00003598; // type:object size:0x4 scope:local align:4 data:float
+@1112 = .rodata:0x0000359C; // type:object size:0x4 scope:local align:4 data:float
+@1113 = .rodata:0x000035A0; // type:object size:0x4 scope:local align:4 data:float
+@1114 = .rodata:0x000035A4; // type:object size:0x4 scope:local align:4 data:float
+@1139 = .rodata:0x000035A8; // type:object size:0x4 scope:local align:4 data:float
+@1140 = .rodata:0x000035AC; // type:object size:0x4 scope:local align:4 data:float
+@1148 = .rodata:0x000035B0; // type:object size:0x4 scope:local align:4 data:float
+@1238 = .rodata:0x000035B8; // type:object size:0x8 scope:local align:8 data:double
+@1239 = .rodata:0x000035C0; // type:object size:0x4 scope:local align:4 data:float
+@1264 = .rodata:0x000035C4; // type:object size:0x4 scope:local align:4 data:float
+@1349 = .rodata:0x000035C8; // type:object size:0x4 scope:local align:4 data:float
+@1460 = .rodata:0x000035CC; // type:object size:0x4 scope:local align:4 data:float
+@1461 = .rodata:0x000035D0; // type:object size:0x4 scope:local align:4 data:float
+@1462 = .rodata:0x000035D4; // type:object size:0x4 scope:local align:4 data:float
+@1509 = .rodata:0x000035D8; // type:object size:0x4 scope:local align:4 data:float
+@1525 = .rodata:0x000035DC; // type:object size:0x4 scope:local align:4 data:float
+@1566 = .rodata:0x000035E0; // type:object size:0x8 scope:local align:8 data:double
+@1584 = .rodata:0x000035E8; // type:object size:0x4 scope:local align:4 data:float
+@1585 = .rodata:0x000035EC; // type:object size:0x4 scope:local align:4 data:float
+@1590 = .rodata:0x000035F0; // type:object size:0x18 scope:local align:4
+@1591 = .rodata:0x00003608; // type:object size:0x8 scope:local align:4 data:4byte
+@1672 = .rodata:0x00003610; // type:object size:0x4 scope:local align:4 data:float
+batta_init_pos$1717 = .rodata:0x00003614; // type:object size:0xC scope:local align:4 data:4byte
+@1719 = .rodata:0x00003620; // type:object size:0x4 scope:local align:4 data:float
+@1720 = .rodata:0x00003624; // type:object size:0x4 scope:local align:4 data:float
+@1721 = .rodata:0x00003628; // type:object size:0x4 scope:local align:4 data:float
+@1741 = .rodata:0x0000362C; // type:object size:0x4 scope:local align:4 data:float
+@1742 = .rodata:0x00003630; // type:object size:0x4 scope:local align:4 data:float
+@1743 = .rodata:0x00003634; // type:object size:0x4 scope:local align:4 data:float
+@1744 = .rodata:0x00003638; // type:object size:0x4 scope:local align:4 data:float
+@1966 = .rodata:0x0000363C; // type:object size:0x4 scope:local align:4 data:float
+@2048 = .rodata:0x00003640; // type:object size:0x8 scope:local align:8 data:double
+@2275 = .rodata:0x00003648; // type:object size:0x4 scope:local align:4 data:float
+@2299 = .rodata:0x0000364C; // type:object size:0x4 scope:local align:4 data:float
+@2300 = .rodata:0x00003650; // type:object size:0x4 scope:local align:4 data:float
+@2301 = .rodata:0x00003654; // type:object size:0x4 scope:local align:4 data:float
+@2418 = .rodata:0x00003658; // type:object size:0x4 scope:local align:4 data:float
+@2454 = .rodata:0x0000365C; // type:object size:0x4 scope:local align:4 data:float
+@2455 = .rodata:0x00003660; // type:object size:0x4 scope:local align:4 data:float
+@2456 = .rodata:0x00003664; // type:object size:0x4 scope:local align:4 data:float
+@2457 = .rodata:0x00003668; // type:object size:0x4 scope:local align:4 data:float
+@2588 = .rodata:0x0000366C; // type:object size:0x4 scope:local align:4 data:float
+@2695 = .rodata:0x00003670; // type:object size:0x8 scope:local align:8 data:double
+@2696 = .rodata:0x00003678; // type:object size:0x8 scope:local align:8 data:double
+@2830 = .rodata:0x00003680; // type:object size:0x4 scope:local align:4 data:float
+@2831 = .rodata:0x00003684; // type:object size:0x4 scope:local align:4 data:float
+@3226 = .rodata:0x00003688; // type:object size:0x4 scope:local align:4 data:float
+@3227 = .rodata:0x0000368C; // type:object size:0x4 scope:local align:4 data:float
+@3228 = .rodata:0x00003690; // type:object size:0x4 scope:local align:4 data:float
+@3229 = .rodata:0x00003694; // type:object size:0x4 scope:local align:4 data:float
+mino_base_pos = .rodata:0x00003698; // type:object size:0xC scope:global align:4 data:float
+mino_top_pos = .rodata:0x000036A4; // type:object size:0xC scope:global align:4 data:float
+mino_bottom_pos = .rodata:0x000036B0; // type:object size:0xC scope:global align:4 data:float
+@3259 = .rodata:0x000036BC; // type:object size:0x4 scope:local align:4 data:float
+@3286 = .rodata:0x000036C0; // type:object size:0x4 scope:local align:4 data:float
+@3324 = .rodata:0x000036C4; // type:object size:0x4 scope:local align:4 data:float
+@3373 = .rodata:0x000036C8; // type:object size:0x4 scope:local align:4 data:float
+@3443 = .rodata:0x000036CC; // type:object size:0x4 scope:local align:4 data:float
+@3502 = .rodata:0x000036D0; // type:object size:0x4 scope:local align:4 data:float
+@3503 = .rodata:0x000036D4; // type:object size:0x4 scope:local align:4 data:float
+@3504 = .rodata:0x000036D8; // type:object size:0x4 scope:local align:4 data:float
+@3505 = .rodata:0x000036DC; // type:object size:0x4 scope:local align:4 data:float
+@3586 = .rodata:0x000036E0; // type:object size:0x4 scope:local align:4 data:float
+@3587 = .rodata:0x000036E4; // type:object size:0x4 scope:local align:4 data:float
+@3588 = .rodata:0x000036E8; // type:object size:0x4 scope:local align:4 data:float
+@3589 = .rodata:0x000036EC; // type:object size:0x4 scope:local align:4 data:float
+@3590 = .rodata:0x000036F0; // type:object size:0x4 scope:local align:4 data:float
+kumo_base_pos = .rodata:0x000036F4; // type:object size:0xC scope:global align:4 data:float
+kumo_top_pos = .rodata:0x00003700; // type:object size:0xC scope:global align:4 data:float
+kumo_bottom_pos = .rodata:0x0000370C; // type:object size:0xC scope:global align:4 data:float
+@3910 = .rodata:0x00003718; // type:object size:0x4 scope:local align:4 data:float
+@3933 = .rodata:0x0000371C; // type:object size:0x4 scope:local align:4 data:float
+@3934 = .rodata:0x00003720; // type:object size:0x4 scope:local align:4 data:float
+@3935 = .rodata:0x00003724; // type:object size:0x4 scope:local align:4 data:float
+@3945 = .rodata:0x00003728; // type:object size:0x4 scope:local align:4 data:float
+@4057 = .rodata:0x0000372C; // type:object size:0x4 scope:local align:4 data:float
+@4058 = .rodata:0x00003730; // type:object size:0x4 scope:local align:4 data:float
+@4059 = .rodata:0x00003734; // type:object size:0x4 scope:local align:4 data:float
+base_genji_pos = .rodata:0x00003738; // type:object size:0xC scope:global align:4 data:4byte
+genji_mizu_pos = .rodata:0x00003744; // type:object size:0xC scope:global align:4 data:4byte
+@4129 = .rodata:0x00003750; // type:object size:0x4 scope:local align:4 data:float
+@4142 = .rodata:0x00003754; // type:object size:0x4 scope:local align:4 data:float
+@4176 = .rodata:0x00003758; // type:object size:0x4 scope:local align:4 data:float
+@4177 = .rodata:0x0000375C; // type:object size:0x4 scope:local align:4 data:float
+@4231 = .rodata:0x00003760; // type:object size:0x4 scope:local align:4 data:float
+@4232 = .rodata:0x00003764; // type:object size:0x4 scope:local align:4 data:float
+@4233 = .rodata:0x00003768; // type:object size:0x4 scope:local align:4 data:float
+@4277 = .rodata:0x0000376C; // type:object size:0x4 scope:local align:4 data:float
+@4279 = .rodata:0x00003770; // type:object size:0x8 scope:local align:8 data:double
+@4371 = .rodata:0x00003778; // type:object size:0x4 scope:local align:4 data:float
+@4372 = .rodata:0x0000377C; // type:object size:0x4 scope:local align:4 data:float
+@4481 = .rodata:0x00003780; // type:object size:0x4 scope:local align:4 data:float
+@4482 = .rodata:0x00003784; // type:object size:0x4 scope:local align:4 data:float
+@4483 = .rodata:0x00003788; // type:object size:0x4 scope:local align:4 data:float
+@4585 = .rodata:0x0000378C; // type:object size:0x4 scope:local align:4 data:float
+@4586 = .rodata:0x00003790; // type:object size:0x4 scope:local align:4 data:float
+@4642 = .rodata:0x00003794; // type:object size:0x4 scope:local align:4 data:float
+@4643 = .rodata:0x00003798; // type:object size:0x4 scope:local align:4 data:float
+@4644 = .rodata:0x0000379C; // type:object size:0x4 scope:local align:4 data:float
+okera_base_pos = .rodata:0x000037A0; // type:object size:0xC scope:global align:4 data:4byte
+@4727 = .rodata:0x000037AC; // type:object size:0x4 scope:local align:4 data:float
+@4740 = .rodata:0x000037B0; // type:object size:0x4 scope:local align:4 data:float
+@4741 = .rodata:0x000037B4; // type:object size:0x4 scope:local align:4 data:float
+@4828 = .rodata:0x000037B8; // type:object size:0x4 scope:local align:4 data:float
+@4829 = .rodata:0x000037BC; // type:object size:0x4 scope:local align:4 data:float
+@4830 = .rodata:0x000037C0; // type:object size:0x4 scope:local align:4 data:float
+@4942 = .rodata:0x000037C4; // type:object size:0x4 scope:local align:4 data:float
+@4943 = .rodata:0x000037C8; // type:object size:0x4 scope:local align:4 data:float
+@5020 = .rodata:0x000037CC; // type:object size:0x4 scope:local align:4 data:float
+@5117 = .rodata:0x000037D0; // type:object size:0x4 scope:local align:4 data:float
+@5118 = .rodata:0x000037D4; // type:object size:0x4 scope:local align:4 data:float
+@5119 = .rodata:0x000037D8; // type:object size:0x4 scope:local align:4 data:float
+@5120 = .rodata:0x000037DC; // type:object size:0x4 scope:local align:4 data:float
+@5181 = .rodata:0x000037E0; // type:object size:0x4 scope:local align:4 data:float
+@5182 = .rodata:0x000037E4; // type:object size:0x4 scope:local align:4 data:float
+@5183 = .rodata:0x000037E8; // type:object size:0x4 scope:local align:4 data:float
+BG_ZB_tbl$5187 = .rodata:0x000037EC; // type:object size:0x8 scope:local align:4
+BG_ZF_tbl$5188 = .rodata:0x000037F4; // type:object size:0x8 scope:local align:4
+@5240 = .rodata:0x000037FC; // type:object size:0x4 scope:local align:4 data:float
+@5241 = .rodata:0x00003800; // type:object size:0x4 scope:local align:4 data:float
+@5242 = .rodata:0x00003804; // type:object size:0x4 scope:local align:4 data:float
+@5243 = .rodata:0x00003808; // type:object size:0x4 scope:local align:4 data:float
+@5270 = .rodata:0x0000380C; // type:object size:0x4 scope:local align:4 data:float
+@5291 = .rodata:0x00003810; // type:object size:0x4 scope:local align:4 data:float
+@5292 = .rodata:0x00003814; // type:object size:0x4 scope:local align:4 data:float
+@5313 = .rodata:0x00003818; // type:object size:0x4 scope:local align:4 data:float
+@5314 = .rodata:0x0000381C; // type:object size:0x4 scope:local align:4 data:float
+@5524 = .rodata:0x00003820; // type:object size:0x4 scope:local align:4 data:float
+@5561 = .rodata:0x00003824; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x00003828; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x0000382C; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00003830; // type:object size:0x4 scope:local align:4 data:float
+l_cntInf_default = .rodata:0x00003838; // type:object size:0x2C scope:global align:4
+aMR_angle_table = .rodata:0x00003864; // type:object size:0x10 scope:global align:4
+l_typeB0_table = .rodata:0x00003874; // type:object size:0x4 scope:global align:4
+@621 = .rodata:0x00003878; // type:object size:0x4 scope:local align:4 data:float
+@884 = .rodata:0x0000387C; // type:object size:0x4 scope:local align:4 data:float
+@885 = .rodata:0x00003880; // type:object size:0x4 scope:local align:4 data:float
+@886 = .rodata:0x00003884; // type:object size:0x4 scope:local align:4 data:float
+@888 = .rodata:0x00003888; // type:object size:0x8 scope:local align:8 data:double
+@967 = .rodata:0x00003890; // type:object size:0x4 scope:local align:4 data:float
+@1079 = .rodata:0x00003894; // type:object size:0x4 scope:local align:4 data:float
+@1080 = .rodata:0x00003898; // type:object size:0x4 scope:local align:4 data:float
+@1210 = .rodata:0x0000389C; // type:object size:0x4 scope:local align:4 data:float
+@1233 = .rodata:0x000038A0; // type:object size:0x4 scope:local align:4 data:float
+@1234 = .rodata:0x000038A4; // type:object size:0x4 scope:local align:4 data:float
+@2561 = .rodata:0x000038A8; // type:object size:0x4 scope:local align:4 data:float
+@3090 = .rodata:0x000038AC; // type:object size:0x4 scope:local align:4 data:float
+@3091 = .rodata:0x000038B0; // type:object size:0x4 scope:local align:4 data:float
+@3127 = .rodata:0x000038B4; // type:object size:0x4 scope:local align:4 data:float
+@3174 = .rodata:0x000038B8; // type:object size:0x4 scope:local align:4 data:float
+@3175 = .rodata:0x000038BC; // type:object size:0x4 scope:local align:4 data:float
+@3216 = .rodata:0x000038C0; // type:object size:0x8 scope:local align:4 data:4byte
+@3236 = .rodata:0x000038C8; // type:object size:0x4 scope:local align:4 data:float
+@3237 = .rodata:0x000038CC; // type:object size:0x4 scope:local align:4 data:float
+@3238 = .rodata:0x000038D0; // type:object size:0x4 scope:local align:4 data:float
+@3266 = .rodata:0x000038D4; // type:object size:0x4 scope:local align:4 data:float
+@3334 = .rodata:0x000038D8; // type:object size:0x8 scope:local align:4 data:4byte
+@3343 = .rodata:0x000038E0; // type:object size:0x4 scope:local align:4 data:float
+@3344 = .rodata:0x000038E4; // type:object size:0x4 scope:local align:4 data:float
+@3397 = .rodata:0x000038E8; // type:object size:0x4 scope:local align:4 data:float
+@3416 = .rodata:0x000038EC; // type:object size:0x4 scope:local align:4 data:float
+@3417 = .rodata:0x000038F0; // type:object size:0x4 scope:local align:4 data:float
+@3527 = .rodata:0x000038F4; // type:object size:0xC scope:local align:4 data:4byte
+@3554 = .rodata:0x00003900; // type:object size:0x4 scope:local align:4 data:float
+@3751 = .rodata:0x00003904; // type:object size:0x10 scope:local align:4 data:4byte
+@3813 = .rodata:0x00003914; // type:object size:0x4 scope:local align:4 data:float
+@3986 = .rodata:0x00003918; // type:object size:0x4 scope:local align:4 data:float
+@4140 = .rodata:0x0000391C; // type:object size:0x4 scope:local align:4 data:float
+@4249 = .rodata:0x00003920; // type:object size:0x8 scope:local align:4 data:4byte
+@4283 = .rodata:0x00003928; // type:object size:0xC scope:local align:4 data:4byte
+@4296 = .rodata:0x00003934; // type:object size:0x4 scope:local align:4 data:float
+@4430 = .rodata:0x00003938; // type:object size:0x8 scope:local align:4 data:4byte
+@4460 = .rodata:0x00003940; // type:object size:0xC scope:local align:4 data:4byte
+@4475 = .rodata:0x0000394C; // type:object size:0x4 scope:local align:4 data:float
+@4781 = .rodata:0x00003950; // type:object size:0x8 scope:local align:8 data:double
+@4782 = .rodata:0x00003958; // type:object size:0x8 scope:local align:8 data:double
+@5020 = .rodata:0x00003960; // type:object size:0x4 scope:local align:4 data:float
+@5021 = .rodata:0x00003964; // type:object size:0x4 scope:local align:4 data:float
+@5236 = .rodata:0x00003968; // type:object size:0xC scope:local align:4 data:4byte
+@5237 = .rodata:0x00003974; // type:object size:0xC scope:local align:4 data:4byte
+@5288 = .rodata:0x00003980; // type:object size:0x4 scope:local align:4 data:float
+@5292 = .rodata:0x00003984; // type:object size:0xC scope:local align:4 data:4byte
+@5302 = .rodata:0x00003990; // type:object size:0xC scope:local align:4 data:4byte
+@5357 = .rodata:0x0000399C; // type:object size:0x4 scope:local align:4 data:float
+@5378 = .rodata:0x000039A0; // type:object size:0x4 scope:local align:4 data:float
+@5401 = .rodata:0x000039A4; // type:object size:0x4 scope:local align:4 data:float
+@5402 = .rodata:0x000039A8; // type:object size:0x4 scope:local align:4 data:float
+@5460 = .rodata:0x000039AC; // type:object size:0x4 scope:local align:4 data:float
+@5461 = .rodata:0x000039B0; // type:object size:0x4 scope:local align:4 data:float
+@5492 = .rodata:0x000039B4; // type:object size:0x4 scope:local align:4 data:float
+@6389 = .rodata:0x000039B8; // type:object size:0x4 scope:local align:4 data:float
+@6390 = .rodata:0x000039BC; // type:object size:0x4 scope:local align:4 data:float
+@6391 = .rodata:0x000039C0; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x000039C8; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x000039CC; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x000039D0; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x000039D4; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x000039D8; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x000039DC; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x000039E0; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x000039E4; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x000039E8; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x000039F0; // type:object size:0x8 scope:local align:8 data:double
+@484 = .rodata:0x000039F8; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00003A00; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00003A08; // type:object size:0x8 scope:local align:8 data:double
+@546 = .rodata:0x00003A10; // type:object size:0x8 scope:local align:8 data:double
+@554 = .rodata:0x00003A18; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00003A1C; // type:object size:0x4 scope:local align:4 data:float
+@704 = .rodata:0x00003A20; // type:object size:0xC scope:local align:4 data:4byte
+@721 = .rodata:0x00003A30; // type:object size:0x8 scope:local align:8 data:double
+@722 = .rodata:0x00003A38; // type:object size:0x4 scope:local align:4 data:float
+@756 = .rodata:0x00003A40; // type:object size:0x4 scope:local align:4 data:float
+@737 = .rodata:0x00003A48; // type:object size:0x4 scope:local align:4 data:float
+@866 = .rodata:0x00003A4C; // type:object size:0x4 scope:local align:4 data:float
+@957 = .rodata:0x00003A50; // type:object size:0x8 scope:local align:8 data:double
+@969 = .rodata:0x00003A58; // type:object size:0x4 scope:local align:4 data:float
+@970 = .rodata:0x00003A5C; // type:object size:0x4 scope:local align:4 data:float
+@973 = .rodata:0x00003A60; // type:object size:0x8 scope:local align:8 data:double
+@1014 = .rodata:0x00003A68; // type:object size:0x10 scope:local align:4 data:4byte
+@1507 = .rodata:0x00003A78; // type:object size:0x1C scope:local align:4
+@1536 = .rodata:0x00003A94; // type:object size:0x1C scope:local align:4
+@427 = .rodata:0x00003AB0; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00003AB8; // type:object size:0x8 scope:local align:8 data:double
+@555 = .rodata:0x00003AC0; // type:object size:0x8 scope:local align:8 data:double
+@841 = .rodata:0x00003AC8; // type:object size:0x8 scope:local align:4 data:4byte
+@1206 = .rodata:0x00003AD0; // type:object size:0x4 scope:local align:4 data:float
+@1217 = .rodata:0x00003AD4; // type:object size:0x4 scope:local align:4 data:float
+@1262 = .rodata:0x00003AD8; // type:object size:0x4 scope:local align:4 data:float
+@1263 = .rodata:0x00003ADC; // type:object size:0x4 scope:local align:4 data:float
+@1431 = .rodata:0x00003AE0; // type:object size:0x4 scope:local align:4 data:float
+@1432 = .rodata:0x00003AE4; // type:object size:0x4 scope:local align:4 data:float
+@1529 = .rodata:0x00003AE8; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00003AF0; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x00003AF8; // type:object size:0x8 scope:local align:8 data:double
+@826 = .rodata:0x00003B00; // type:object size:0x4 scope:local align:4 data:float
+@902 = .rodata:0x00003B08; // type:object size:0x8 scope:local align:8 data:double
+@1325 = .rodata:0x00003B10; // type:object size:0x8 scope:local align:4 data:4byte
+@1562 = .rodata:0x00003B18; // type:object size:0x4 scope:local align:4 data:float
+@1576 = .rodata:0x00003B1C; // type:object size:0x4 scope:local align:4 data:float
+@1621 = .rodata:0x00003B20; // type:object size:0x4 scope:local align:4 data:float
+@1622 = .rodata:0x00003B24; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00003B28; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00003B2C; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x00003B30; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x00003B34; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x00003B38; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00003B3C; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x00003B40; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00003B44; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00003B48; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00003B4C; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00003B50; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00003B54; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x00003B58; // type:object size:0xC scope:local align:4 data:4byte
+@575 = .rodata:0x00003B68; // type:object size:0x8 scope:local align:8 data:double
+@455 = .rodata:0x00003B70; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00003B78; // type:object size:0x8 scope:local align:8 data:double
+@513 = .rodata:0x00003B80; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x00003B84; // type:object size:0x4 scope:local align:4 data:float
+@750 = .rodata:0x00003B88; // type:object size:0x4 scope:local align:4 data:float
+@769 = .rodata:0x00003B8C; // type:object size:0x4 scope:local align:4 data:float
+@779 = .rodata:0x00003B90; // type:object size:0x8 scope:local align:8 data:double
+@815 = .rodata:0x00003B98; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00003BA0; // type:object size:0x8 scope:local align:8 data:double
+@526 = .rodata:0x00003BA8; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00003BAC; // type:object size:0x4 scope:local align:4 data:float
+@575 = .rodata:0x00003BB0; // type:object size:0x8 scope:local align:8 data:double
+@635 = .rodata:0x00003BB8; // type:object size:0x4 scope:local align:4 data:float
+@873 = .rodata:0x00003BBC; // type:object size:0x4 scope:local align:4 data:float
+@924 = .rodata:0x00003BC0; // type:object size:0x4 scope:local align:4 data:float
+@1112 = .rodata:0x00003BC4; // type:object size:0x4 scope:local align:4 data:float
+l_shop_goods_dsp_table = .rodata:0x00003BC8; // type:object size:0xE38 scope:global align:4 data:2byte
+@531 = .rodata:0x00004A00; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00004A04; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00004A08; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x00004A0C; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00004A10; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00004A14; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00004A18; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00004A1C; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00004A20; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00004A24; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00004A28; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00004A2C; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00004A30; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x00004A38; // type:object size:0x8 scope:local align:8 data:double
+@703 = .rodata:0x00004A40; // type:object size:0x4 scope:local align:4 data:float
+@728 = .rodata:0x00004A44; // type:object size:0x4 scope:local align:4 data:float
+@730 = .rodata:0x00004A48; // type:object size:0x8 scope:local align:8 data:double
+@578 = .rodata:0x00004A50; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00004A54; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00004A58; // type:object size:0xC scope:local align:4 data:4byte
+@644 = .rodata:0x00004A64; // type:object size:0xC scope:local align:4 data:4byte
+@512 = .rodata:0x00004A70; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00004A74; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00004A78; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00004A7C; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00004A80; // type:object size:0x8 scope:local align:8 data:double
+@608 = .rodata:0x00004A88; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00004A90; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00004A94; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00004A98; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00004A9C; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x00004AA0; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x00004AA8; // type:object size:0x8 scope:local align:8 data:double
+@573 = .rodata:0x00004AB0; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00004AB8; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00004ABC; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00004AC0; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x00004AC4; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00004AC8; // type:object size:0x8 scope:local align:8 data:double
+@492 = .rodata:0x00004AD0; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x00004AD4; // type:object size:0x4 scope:local align:4 data:float
+@696 = .rodata:0x00004AD8; // type:object size:0x4 scope:local align:4 data:float
+@697 = .rodata:0x00004ADC; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x00004AE0; // type:object size:0x4 scope:local align:4 data:float
+@777 = .rodata:0x00004AE4; // type:object size:0x4 scope:local align:4 data:float
+@802 = .rodata:0x00004AE8; // type:object size:0x4 scope:local align:4 data:float
+@884 = .rodata:0x00004AEC; // type:object size:0x4 scope:local align:4 data:float
+@885 = .rodata:0x00004AF0; // type:object size:0x4 scope:local align:4 data:float
+@886 = .rodata:0x00004AF4; // type:object size:0x4 scope:local align:4 data:float
+@887 = .rodata:0x00004AF8; // type:object size:0x4 scope:local align:4 data:float
+@958 = .rodata:0x00004AFC; // type:object size:0x4 scope:local align:4 data:float
+@959 = .rodata:0x00004B00; // type:object size:0x4 scope:local align:4 data:float
+@960 = .rodata:0x00004B04; // type:object size:0x4 scope:local align:4 data:float
+@961 = .rodata:0x00004B08; // type:object size:0x4 scope:local align:4 data:float
+@962 = .rodata:0x00004B0C; // type:object size:0x4 scope:local align:4 data:float
+@963 = .rodata:0x00004B10; // type:object size:0x4 scope:local align:4 data:float
+@964 = .rodata:0x00004B14; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00004B18; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00004B1C; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00004B20; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00004B24; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00004B28; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00004B2C; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00004B30; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00004B34; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00004B38; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x00004B3C; // type:object size:0x4 scope:local align:4 data:float
+@640 = .rodata:0x00004B40; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x00004B44; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00004B48; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x00004B4C; // type:object size:0x4 scope:local align:4 data:float
+@644 = .rodata:0x00004B50; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00004B54; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x00004B58; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x00004B5C; // type:object size:0x4 scope:local align:4 data:float
+@679 = .rodata:0x00004B60; // type:object size:0x4 scope:local align:4 data:float
+@680 = .rodata:0x00004B64; // type:object size:0x4 scope:local align:4 data:float
+@681 = .rodata:0x00004B68; // type:object size:0x8 scope:local align:8 data:double
+@682 = .rodata:0x00004B70; // type:object size:0x8 scope:local align:8 data:double
+@683 = .rodata:0x00004B78; // type:object size:0x4 scope:local align:4 data:float
+@684 = .rodata:0x00004B7C; // type:object size:0x4 scope:local align:4 data:float
+@735 = .rodata:0x00004B80; // type:object size:0x4 scope:local align:4 data:float
+@736 = .rodata:0x00004B84; // type:object size:0x4 scope:local align:4 data:float
+@737 = .rodata:0x00004B88; // type:object size:0x4 scope:local align:4 data:float
+@739 = .rodata:0x00004B90; // type:object size:0x8 scope:local align:8 data:double
+@783 = .rodata:0x00004B98; // type:object size:0x4 scope:local align:4 data:float
+@784 = .rodata:0x00004B9C; // type:object size:0x4 scope:local align:4 data:float
+@811 = .rodata:0x00004BA0; // type:object size:0x4 scope:local align:4 data:float
+@812 = .rodata:0x00004BA4; // type:object size:0x4 scope:local align:4 data:float
+@813 = .rodata:0x00004BA8; // type:object size:0x4 scope:local align:4 data:float
+@906 = .rodata:0x00004BAC; // type:object size:0x4 scope:local align:4 data:float
+@907 = .rodata:0x00004BB0; // type:object size:0x4 scope:local align:4 data:float
+@908 = .rodata:0x00004BB4; // type:object size:0x4 scope:local align:4 data:float
+@992 = .rodata:0x00004BB8; // type:object size:0x4 scope:local align:4 data:float
+@993 = .rodata:0x00004BBC; // type:object size:0x4 scope:local align:4 data:float
+@994 = .rodata:0x00004BC0; // type:object size:0x4 scope:local align:4 data:float
+@1014 = .rodata:0x00004BC4; // type:object size:0x4 scope:local align:4 data:float
+@1039 = .rodata:0x00004BC8; // type:object size:0x4 scope:local align:4 data:float
+@1040 = .rodata:0x00004BCC; // type:object size:0x4 scope:local align:4 data:float
+@1055 = .rodata:0x00004BD0; // type:object size:0x4 scope:local align:4 data:float
+@1056 = .rodata:0x00004BD4; // type:object size:0x4 scope:local align:4 data:float
+@1057 = .rodata:0x00004BD8; // type:object size:0x4 scope:local align:4 data:float
+@1079 = .rodata:0x00004BDC; // type:object size:0x4 scope:local align:4 data:float
+@1080 = .rodata:0x00004BE0; // type:object size:0x4 scope:local align:4 data:float
+@1081 = .rodata:0x00004BE4; // type:object size:0x4 scope:local align:4 data:float
+@1098 = .rodata:0x00004BE8; // type:object size:0x4 scope:local align:4 data:float
+@1099 = .rodata:0x00004BEC; // type:object size:0x4 scope:local align:4 data:float
+@1100 = .rodata:0x00004BF0; // type:object size:0x4 scope:local align:4 data:float
+@1132 = .rodata:0x00004BF4; // type:object size:0x4 scope:local align:4 data:float
+@1133 = .rodata:0x00004BF8; // type:object size:0x4 scope:local align:4 data:float
+@1151 = .rodata:0x00004BFC; // type:object size:0x4 scope:local align:4 data:float
+@1152 = .rodata:0x00004C00; // type:object size:0x4 scope:local align:4 data:float
+@1244 = .rodata:0x00004C08; // type:object size:0x8 scope:local align:8 data:double
+@1245 = .rodata:0x00004C10; // type:object size:0x4 scope:local align:4 data:float
+@1246 = .rodata:0x00004C14; // type:object size:0x4 scope:local align:4 data:float
+@1304 = .rodata:0x00004C18; // type:object size:0x4 scope:local align:4 data:float
+@1305 = .rodata:0x00004C1C; // type:object size:0x4 scope:local align:4 data:float
+@1306 = .rodata:0x00004C20; // type:object size:0x4 scope:local align:4 data:float
+@1319 = .rodata:0x00004C24; // type:object size:0x4 scope:local align:4 data:float
+@1380 = .rodata:0x00004C28; // type:object size:0x4 scope:local align:4 data:float
+@1406 = .rodata:0x00004C2C; // type:object size:0x4 scope:local align:4 data:float
+@1407 = .rodata:0x00004C30; // type:object size:0x4 scope:local align:4 data:float
+@1431 = .rodata:0x00004C34; // type:object size:0x4 scope:local align:4 data:float
+@1432 = .rodata:0x00004C38; // type:object size:0x4 scope:local align:4 data:float
+@1477 = .rodata:0x00004C3C; // type:object size:0x4 scope:local align:4 data:float
+@1478 = .rodata:0x00004C40; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004C48; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00004C4C; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00004C50; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00004C54; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00004C58; // type:object size:0x8 scope:local align:8 data:double
+@522 = .rodata:0x00004C60; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00004C68; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00004C6C; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00004C70; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00004C74; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00004C78; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00004C7C; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00004C80; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00004C84; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00004C88; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00004C8C; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00004C90; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x00004C94; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004C98; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00004C9C; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00004CA0; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00004CA4; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00004CA8; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00004CAC; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004CB0; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00004CB4; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00004CB8; // type:object size:0x8 scope:local align:8 data:double
+@482 = .rodata:0x00004CC0; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x00004CC4; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00004CC8; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00004CCC; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004CD0; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00004CD4; // type:object size:0x4 scope:local align:4 data:float
+@573 = .rodata:0x00004CD8; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00004CDC; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00004CE0; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00004CE4; // type:object size:0x4 scope:local align:4 data:float
+@662 = .rodata:0x00004CE8; // type:object size:0x4 scope:local align:4 data:float
+@663 = .rodata:0x00004CEC; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00004CF0; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x00004CF4; // type:object size:0x4 scope:local align:4 data:float
+@666 = .rodata:0x00004CF8; // type:object size:0x4 scope:local align:4 data:float
+@667 = .rodata:0x00004CFC; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00004D00; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00004D04; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00004D08; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00004D0C; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00004D10; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x00004D14; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00004D18; // type:object size:0x8 scope:local align:8 data:double
+@742 = .rodata:0x00004D20; // type:object size:0x4 scope:local align:4 data:float
+@743 = .rodata:0x00004D24; // type:object size:0x4 scope:local align:4 data:float
+@752 = .rodata:0x00004D28; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x00004D30; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x00004D38; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x00004D3C; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x00004D40; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00004D44; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00004D48; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00004D4C; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x00004D50; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00004D54; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00004D58; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x00004D5C; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00004D60; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00004D68; // type:object size:0x8 scope:local align:8 data:double
+@500 = .rodata:0x00004D70; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x00004D74; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00004D78; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00004D7C; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00004D80; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00004D88; // type:object size:0x8 scope:local align:8 data:double
+@717 = .rodata:0x00004D90; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x00004D98; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x00004D9C; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x00004DA0; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00004DA4; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x00004DA8; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x00004DAC; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004DB0; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00004DB4; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00004DB8; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00004DBC; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00004DC0; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x00004DC4; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00004DC8; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00004DD0; // type:object size:0x8 scope:local align:8 data:double
+@525 = .rodata:0x00004DD8; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00004DDC; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00004DE0; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x00004DE4; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00004DE8; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00004DEC; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00004DF0; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00004DF4; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x00004DF8; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x00004DFC; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x00004E00; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x00004E04; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00004E08; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00004E0C; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00004E10; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00004E14; // type:object size:0x4 scope:local align:4 data:float
+@714 = .rodata:0x00004E18; // type:object size:0x4 scope:local align:4 data:float
+@715 = .rodata:0x00004E1C; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x00004E20; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x00004E24; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x00004E28; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x00004E2C; // type:object size:0x4 scope:local align:4 data:float
+@720 = .rodata:0x00004E30; // type:object size:0x4 scope:local align:4 data:float
+@721 = .rodata:0x00004E34; // type:object size:0x4 scope:local align:4 data:float
+@722 = .rodata:0x00004E38; // type:object size:0x4 scope:local align:4 data:float
+@896 = .rodata:0x00004E3C; // type:object size:0x4 scope:local align:4 data:float
+@954 = .rodata:0x00004E40; // type:object size:0x4 scope:local align:4 data:float
+@955 = .rodata:0x00004E44; // type:object size:0x4 scope:local align:4 data:float
+@960 = .rodata:0x00004E48; // type:object size:0x4 scope:local align:4 data:float
+@961 = .rodata:0x00004E4C; // type:object size:0x4 scope:local align:4 data:float
+@1056 = .rodata:0x00004E50; // type:object size:0x8 scope:local align:8 data:double
+@1057 = .rodata:0x00004E58; // type:object size:0x8 scope:local align:8 data:double
+@1058 = .rodata:0x00004E60; // type:object size:0x8 scope:local align:8 data:double
+@1059 = .rodata:0x00004E68; // type:object size:0x8 scope:local align:8 data:double
+@1060 = .rodata:0x00004E70; // type:object size:0x8 scope:local align:8 data:double
+@632 = .rodata:0x00004E78; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00004E7C; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00004E80; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00004E84; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00004E88; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00004E8C; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00004E90; // type:object size:0x4 scope:local align:4 data:float
+@770 = .rodata:0x00004E98; // type:object size:0x8 scope:local align:8 data:double
+@845 = .rodata:0x00004EA0; // type:object size:0x4 scope:local align:4 data:float
+@846 = .rodata:0x00004EA4; // type:object size:0x4 scope:local align:4 data:float
+@847 = .rodata:0x00004EA8; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x00004EAC; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x00004EB0; // type:object size:0x4 scope:local align:4 data:float
+@1003 = .rodata:0x00004EB4; // type:object size:0x4 scope:local align:4 data:float
+@1004 = .rodata:0x00004EB8; // type:object size:0x4 scope:local align:4 data:float
+@1188 = .rodata:0x00004EBC; // type:object size:0x4 scope:local align:4 data:float
+@1311 = .rodata:0x00004EC0; // type:object size:0x4 scope:local align:4 data:float
+@1312 = .rodata:0x00004EC4; // type:object size:0x4 scope:local align:4 data:float
+@1524 = .rodata:0x00004EC8; // type:object size:0x8 scope:local align:8 data:double
+@1546 = .rodata:0x00004ED0; // type:object size:0x4 scope:local align:4 data:float
+@1727 = .rodata:0x00004ED4; // type:object size:0x4 scope:local align:4 data:float
+@1728 = .rodata:0x00004ED8; // type:object size:0x4 scope:local align:4 data:float
+@1729 = .rodata:0x00004EDC; // type:object size:0x4 scope:local align:4 data:float
+@1730 = .rodata:0x00004EE0; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x00004EE4; // type:object size:0x4 scope:local align:4 data:float
+@1732 = .rodata:0x00004EE8; // type:object size:0x4 scope:local align:4 data:float
+@1733 = .rodata:0x00004EEC; // type:object size:0x4 scope:local align:4 data:float
+@1749 = .rodata:0x00004EF0; // type:object size:0x4 scope:local align:4 data:float
+@1855 = .rodata:0x00004EF4; // type:object size:0x4 scope:local align:4 data:float
+@1856 = .rodata:0x00004EF8; // type:object size:0x4 scope:local align:4 data:float
+@1857 = .rodata:0x00004EFC; // type:object size:0x4 scope:local align:4 data:float
+@1858 = .rodata:0x00004F00; // type:object size:0x4 scope:local align:4 data:float
+@1859 = .rodata:0x00004F04; // type:object size:0x4 scope:local align:4 data:float
+@2371 = .rodata:0x00004F08; // type:object size:0x4 scope:local align:4 data:float
+@2372 = .rodata:0x00004F0C; // type:object size:0x4 scope:local align:4 data:float
+@2563 = .rodata:0x00004F10; // type:object size:0x4 scope:local align:4 data:float
+@2677 = .rodata:0x00004F14; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00004F18; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00004F1C; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00004F20; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00004F24; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00004F28; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00004F2C; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00004F30; // type:object size:0x4 scope:local align:4 data:float
+@770 = .rodata:0x00004F38; // type:object size:0x8 scope:local align:8 data:double
+@845 = .rodata:0x00004F40; // type:object size:0x4 scope:local align:4 data:float
+@846 = .rodata:0x00004F44; // type:object size:0x4 scope:local align:4 data:float
+@847 = .rodata:0x00004F48; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x00004F4C; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x00004F50; // type:object size:0x4 scope:local align:4 data:float
+@1003 = .rodata:0x00004F54; // type:object size:0x4 scope:local align:4 data:float
+@1004 = .rodata:0x00004F58; // type:object size:0x4 scope:local align:4 data:float
+@1188 = .rodata:0x00004F5C; // type:object size:0x4 scope:local align:4 data:float
+@1311 = .rodata:0x00004F60; // type:object size:0x4 scope:local align:4 data:float
+@1312 = .rodata:0x00004F64; // type:object size:0x4 scope:local align:4 data:float
+@1524 = .rodata:0x00004F68; // type:object size:0x8 scope:local align:8 data:double
+@1546 = .rodata:0x00004F70; // type:object size:0x4 scope:local align:4 data:float
+@1727 = .rodata:0x00004F74; // type:object size:0x4 scope:local align:4 data:float
+@1728 = .rodata:0x00004F78; // type:object size:0x4 scope:local align:4 data:float
+@1729 = .rodata:0x00004F7C; // type:object size:0x4 scope:local align:4 data:float
+@1730 = .rodata:0x00004F80; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x00004F84; // type:object size:0x4 scope:local align:4 data:float
+@1732 = .rodata:0x00004F88; // type:object size:0x4 scope:local align:4 data:float
+@1733 = .rodata:0x00004F8C; // type:object size:0x4 scope:local align:4 data:float
+@1749 = .rodata:0x00004F90; // type:object size:0x4 scope:local align:4 data:float
+@1855 = .rodata:0x00004F94; // type:object size:0x4 scope:local align:4 data:float
+@1856 = .rodata:0x00004F98; // type:object size:0x4 scope:local align:4 data:float
+@1857 = .rodata:0x00004F9C; // type:object size:0x4 scope:local align:4 data:float
+@1858 = .rodata:0x00004FA0; // type:object size:0x4 scope:local align:4 data:float
+@1859 = .rodata:0x00004FA4; // type:object size:0x4 scope:local align:4 data:float
+@2371 = .rodata:0x00004FA8; // type:object size:0x4 scope:local align:4 data:float
+@2372 = .rodata:0x00004FAC; // type:object size:0x4 scope:local align:4 data:float
+@2563 = .rodata:0x00004FB0; // type:object size:0x4 scope:local align:4 data:float
+@2677 = .rodata:0x00004FB4; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00004FB8; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00004FBC; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x00004FC0; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x00004FC4; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00004FC8; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00004FCC; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00004FD0; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00004FD4; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00004FD8; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00004FDC; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00004FE0; // type:object size:0x4 scope:local align:4 data:float
+@770 = .rodata:0x00004FE8; // type:object size:0x8 scope:local align:8 data:double
+@845 = .rodata:0x00004FF0; // type:object size:0x4 scope:local align:4 data:float
+@846 = .rodata:0x00004FF4; // type:object size:0x4 scope:local align:4 data:float
+@847 = .rodata:0x00004FF8; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x00004FFC; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x00005000; // type:object size:0x4 scope:local align:4 data:float
+@1003 = .rodata:0x00005004; // type:object size:0x4 scope:local align:4 data:float
+@1004 = .rodata:0x00005008; // type:object size:0x4 scope:local align:4 data:float
+@1188 = .rodata:0x0000500C; // type:object size:0x4 scope:local align:4 data:float
+@1311 = .rodata:0x00005010; // type:object size:0x4 scope:local align:4 data:float
+@1312 = .rodata:0x00005014; // type:object size:0x4 scope:local align:4 data:float
+@1524 = .rodata:0x00005018; // type:object size:0x8 scope:local align:8 data:double
+@1546 = .rodata:0x00005020; // type:object size:0x4 scope:local align:4 data:float
+@1727 = .rodata:0x00005024; // type:object size:0x4 scope:local align:4 data:float
+@1728 = .rodata:0x00005028; // type:object size:0x4 scope:local align:4 data:float
+@1729 = .rodata:0x0000502C; // type:object size:0x4 scope:local align:4 data:float
+@1730 = .rodata:0x00005030; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x00005034; // type:object size:0x4 scope:local align:4 data:float
+@1732 = .rodata:0x00005038; // type:object size:0x4 scope:local align:4 data:float
+@1733 = .rodata:0x0000503C; // type:object size:0x4 scope:local align:4 data:float
+@1749 = .rodata:0x00005040; // type:object size:0x4 scope:local align:4 data:float
+@1855 = .rodata:0x00005044; // type:object size:0x4 scope:local align:4 data:float
+@1856 = .rodata:0x00005048; // type:object size:0x4 scope:local align:4 data:float
+@1857 = .rodata:0x0000504C; // type:object size:0x4 scope:local align:4 data:float
+@1858 = .rodata:0x00005050; // type:object size:0x4 scope:local align:4 data:float
+@1859 = .rodata:0x00005054; // type:object size:0x4 scope:local align:4 data:float
+@2371 = .rodata:0x00005058; // type:object size:0x4 scope:local align:4 data:float
+@2372 = .rodata:0x0000505C; // type:object size:0x4 scope:local align:4 data:float
+@2563 = .rodata:0x00005060; // type:object size:0x4 scope:local align:4 data:float
+@2677 = .rodata:0x00005064; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00005068; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x0000506C; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00005070; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00005074; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00005078; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x0000507C; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00005080; // type:object size:0x4 scope:local align:4 data:float
+@770 = .rodata:0x00005088; // type:object size:0x8 scope:local align:8 data:double
+@845 = .rodata:0x00005090; // type:object size:0x4 scope:local align:4 data:float
+@846 = .rodata:0x00005094; // type:object size:0x4 scope:local align:4 data:float
+@847 = .rodata:0x00005098; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x0000509C; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x000050A0; // type:object size:0x4 scope:local align:4 data:float
+@1003 = .rodata:0x000050A4; // type:object size:0x4 scope:local align:4 data:float
+@1004 = .rodata:0x000050A8; // type:object size:0x4 scope:local align:4 data:float
+@1188 = .rodata:0x000050AC; // type:object size:0x4 scope:local align:4 data:float
+@1311 = .rodata:0x000050B0; // type:object size:0x4 scope:local align:4 data:float
+@1312 = .rodata:0x000050B4; // type:object size:0x4 scope:local align:4 data:float
+@1524 = .rodata:0x000050B8; // type:object size:0x8 scope:local align:8 data:double
+@1546 = .rodata:0x000050C0; // type:object size:0x4 scope:local align:4 data:float
+@1727 = .rodata:0x000050C4; // type:object size:0x4 scope:local align:4 data:float
+@1728 = .rodata:0x000050C8; // type:object size:0x4 scope:local align:4 data:float
+@1729 = .rodata:0x000050CC; // type:object size:0x4 scope:local align:4 data:float
+@1730 = .rodata:0x000050D0; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x000050D4; // type:object size:0x4 scope:local align:4 data:float
+@1732 = .rodata:0x000050D8; // type:object size:0x4 scope:local align:4 data:float
+@1733 = .rodata:0x000050DC; // type:object size:0x4 scope:local align:4 data:float
+@1749 = .rodata:0x000050E0; // type:object size:0x4 scope:local align:4 data:float
+@1855 = .rodata:0x000050E4; // type:object size:0x4 scope:local align:4 data:float
+@1856 = .rodata:0x000050E8; // type:object size:0x4 scope:local align:4 data:float
+@1857 = .rodata:0x000050EC; // type:object size:0x4 scope:local align:4 data:float
+@1858 = .rodata:0x000050F0; // type:object size:0x4 scope:local align:4 data:float
+@1859 = .rodata:0x000050F4; // type:object size:0x4 scope:local align:4 data:float
+@2371 = .rodata:0x000050F8; // type:object size:0x4 scope:local align:4 data:float
+@2372 = .rodata:0x000050FC; // type:object size:0x4 scope:local align:4 data:float
+@2563 = .rodata:0x00005100; // type:object size:0x4 scope:local align:4 data:float
+@2677 = .rodata:0x00005104; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00005108; // type:object size:0xC scope:local align:4 data:4byte
+@445 = .rodata:0x00005114; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00005118; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x0000511C; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00005120; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00005128; // type:object size:0x8 scope:local align:8 data:double
+@505 = .rodata:0x00005130; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00005134; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00005138; // type:object size:0x4 scope:local align:4 data:4byte
+eEC_light_default = .rodata:0x0000513C; // type:object size:0x18 scope:global align:4
+@588 = .rodata:0x00005158; // type:object size:0x8 scope:local align:8 data:double
+@784 = .rodata:0x00005160; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x00005168; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x00005170; // type:object size:0x8 scope:local align:8 data:double
+@390 = .rodata:0x00005178; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000517C; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x00005180; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x00005184; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x00005188; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000518C; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x00005190; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x00005198; // type:object size:0x8 scope:local align:8 data:double
+@426 = .rodata:0x000051A0; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x000051A4; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x000051A8; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x000051AC; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x000051B0; // type:object size:0x8 scope:local align:8 data:double
+@507 = .rodata:0x000051B8; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x000051C0; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x000051C4; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x000051C8; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x000051CC; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x000051D0; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x000051D4; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x000051D8; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x000051DC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x000051E0; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x000051E8; // type:object size:0x8 scope:local align:8 data:double
+@428 = .rodata:0x000051F0; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x000051F4; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x000051F8; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x00005200; // type:object size:0x8 scope:local align:8 data:double
+@521 = .rodata:0x00005208; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x00005210; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x00005214; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x00005218; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000521C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x00005220; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x00005224; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x00005228; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000522C; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x00005230; // type:object size:0x8 scope:local align:8 data:double
+@427 = .rodata:0x00005238; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000523C; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x00005240; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00005248; // type:object size:0x8 scope:local align:8 data:double
+@506 = .rodata:0x00005250; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x00005258; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000525C; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x00005260; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x00005264; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x00005268; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000526C; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x00005270; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x00005274; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x00005278; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x00005280; // type:object size:0x8 scope:local align:8 data:double
+@428 = .rodata:0x00005288; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000528C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x00005290; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00005298; // type:object size:0x8 scope:local align:8 data:double
+@510 = .rodata:0x000052A0; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x000052A8; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x000052AC; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x000052B0; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x000052B4; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x000052B8; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x000052BC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x000052C0; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x000052C4; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x000052C8; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x000052D0; // type:object size:0x8 scope:local align:8 data:double
+@430 = .rodata:0x000052D8; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x000052DC; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x000052E0; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x000052E8; // type:object size:0x8 scope:local align:8 data:double
+@542 = .rodata:0x000052F0; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x000052F4; // type:object size:0x4 scope:local align:4 data:float
+money_power_tbl = .rodata:0x000052F8; // type:object size:0x30 scope:global align:4
+goods_power_tbl = .rodata:0x00005328; // type:object size:0x30 scope:global align:4
+@510 = .rodata:0x00005358; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000535C; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00005360; // type:object size:0x8 scope:local align:8 data:double
+@472 = .rodata:0x00005368; // type:object size:0x4 scope:local align:4 data:float
+tol_sponge_1_model = .rodata:0x00005370; // type:object size:0x80 scope:global align:8
+@603 = .rodata:0x000053F0; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x000053F4; // type:object size:0x4 scope:local align:4 data:float
+@702 = .rodata:0x000053F8; // type:object size:0x4 scope:local align:4 data:float
+data$766 = .rodata:0x000053FC; // type:object size:0x79 scope:local align:4
+data$782 = .rodata:0x00005478; // type:object size:0x79 scope:local align:4
+@790 = .rodata:0x000054F4; // type:object size:0x4 scope:local align:4 data:float
+@792 = .rodata:0x000054F8; // type:object size:0x8 scope:local align:8 data:double
+@801 = .rodata:0x00005500; // type:object size:0x4 scope:local align:4 data:float
+data$812 = .rodata:0x00005504; // type:object size:0x79 scope:local align:4
+data$827 = .rodata:0x00005580; // type:object size:0x79 scope:local align:4
+data$839 = .rodata:0x000055FC; // type:object size:0x79 scope:local align:4
+data$859 = .rodata:0x00005678; // type:object size:0x79 scope:local align:4
+pattern_table$879 = .rodata:0x000056F4; // type:object size:0x10 scope:local align:4
+data$924 = .rodata:0x00005704; // type:object size:0x79 scope:local align:4
+@950 = .rodata:0x00005780; // type:object size:0x4 scope:local align:4 data:float
+data$966 = .rodata:0x00005784; // type:object size:0x79 scope:local align:4
+data$985 = .rodata:0x00005800; // type:object size:0x79 scope:local align:4
+@1011 = .rodata:0x0000587C; // type:object size:0x4 scope:local align:4 data:float
+@1027 = .rodata:0x00005880; // type:object size:0x8 scope:local align:8 data:double
+@1028 = .rodata:0x00005888; // type:object size:0x8 scope:local align:8 data:double
+@1051 = .rodata:0x00005890; // type:object size:0xC scope:local align:4 data:4byte
+@1074 = .rodata:0x0000589C; // type:object size:0x4 scope:local align:4 data:float
+@1075 = .rodata:0x000058A0; // type:object size:0x4 scope:local align:4 data:float
+@1076 = .rodata:0x000058A4; // type:object size:0x4 scope:local align:4 data:float
+@1077 = .rodata:0x000058A8; // type:object size:0x4 scope:local align:4 data:float
+@1164 = .rodata:0x000058AC; // type:object size:0x4 scope:local align:4 data:float
+@1165 = .rodata:0x000058B0; // type:object size:0x4 scope:local align:4 data:float
+@1373 = .rodata:0x000058B4; // type:object size:0x4 scope:local align:4 data:float
+@1374 = .rodata:0x000058B8; // type:object size:0x4 scope:local align:4 data:float
+@1375 = .rodata:0x000058BC; // type:object size:0x4 scope:local align:4 data:float
+@1400 = .rodata:0x000058C0; // type:object size:0x4 scope:local align:4 data:float
+@1415 = .rodata:0x000058C4; // type:object size:0x4 scope:local align:4 data:float
+@1416 = .rodata:0x000058C8; // type:object size:0x4 scope:local align:4 data:float
+Player_actor_wall_angle = .rodata:0x000058CC; // type:object size:0x8 scope:global align:4
+angle$1440 = .rodata:0x000058D4; // type:object size:0x8 scope:local align:4
+@1627 = .rodata:0x000058E0; // type:object size:0x8 scope:local align:8 data:double
+data$1806 = .rodata:0x000058E8; // type:object size:0x34 scope:local align:4
+data$1814 = .rodata:0x0000591C; // type:object size:0x79 scope:local align:4
+data$1824 = .rodata:0x00005998; // type:object size:0x79 scope:local align:4
+data$1833 = .rodata:0x00005A14; // type:object size:0x79 scope:local align:4
+@1870 = .rodata:0x00005A90; // type:object size:0x20 scope:local align:4
+@1948 = .rodata:0x00005AB0; // type:object size:0x20 scope:local align:4
+@2591 = .rodata:0x00005AD0; // type:object size:0x4 scope:local align:4 data:float
+@2592 = .rodata:0x00005AD4; // type:object size:0x4 scope:local align:4 data:float
+@2671 = .rodata:0x00005AD8; // type:object size:0x4 scope:local align:4 data:float
+@2697 = .rodata:0x00005ADC; // type:object size:0x4 scope:local align:4 data:float
+@2752 = .rodata:0x00005AE0; // type:object size:0x4 scope:local align:4 data:float
+value$2778 = .rodata:0x00005AE4; // type:object size:0x79 scope:local align:4
+@2852 = .rodata:0x00005B60; // type:object size:0x4 scope:local align:4 data:float
+@2853 = .rodata:0x00005B64; // type:object size:0x4 scope:local align:4 data:float
+@2854 = .rodata:0x00005B68; // type:object size:0x4 scope:local align:4 data:float
+value$2869 = .rodata:0x00005B6C; // type:object size:0x79 scope:local align:4
+value$2878 = .rodata:0x00005BE8; // type:object size:0x79 scope:local align:4
+data$2977 = .rodata:0x00005C64; // type:object size:0x79 scope:local align:4
+@3046 = .rodata:0x00005CE0; // type:object size:0x4 scope:local align:4 data:float
+@3083 = .rodata:0x00005CE4; // type:object size:0x4 scope:local align:4 data:float
+@3134 = .rodata:0x00005CE8; // type:object size:0x4 scope:local align:4 data:float
+right_data_wait1$3200 = .rodata:0x00005CEC; // type:object size:0x2 scope:local align:4
+right_data_walk1$3201 = .rodata:0x00005CF0; // type:object size:0x2 scope:local align:4
+right_data_axe1$3202 = .rodata:0x00005CF4; // type:object size:0x2 scope:local align:4
+right_data_run1$3203 = .rodata:0x00005CF8; // type:object size:0x2 scope:local align:4
+right_data_push1$3204 = .rodata:0x00005CFC; // type:object size:0x2 scope:local align:4
+right_data_pull1$3205 = .rodata:0x00005D00; // type:object size:0x4 scope:local align:4
+right_data_hold_wait1$3206 = .rodata:0x00005D04; // type:object size:0x2 scope:local align:4
+right_data_pickup1$3207 = .rodata:0x00005D08; // type:object size:0x2 scope:local align:4
+right_data_Lturn1$3208 = .rodata:0x00005D0C; // type:object size:0x2 scope:local align:4
+right_data_Rturn1$3209 = .rodata:0x00005D10; // type:object size:0x2 scope:local align:4
+right_data_get1$3210 = .rodata:0x00005D14; // type:object size:0x2 scope:local align:4
+right_data_get_change1$3211 = .rodata:0x00005D18; // type:object size:0x2 scope:local align:4
+right_data_get_putaway1$3212 = .rodata:0x00005D1C; // type:object size:0x2 scope:local align:4
+right_data_open1$3213 = .rodata:0x00005D20; // type:object size:0x2 scope:local align:4
+right_data_putaway1$3214 = .rodata:0x00005D24; // type:object size:0x2 scope:local align:4
+right_data_trans_wait1$3215 = .rodata:0x00005D28; // type:object size:0x2 scope:local align:4
+right_data_transfer1$3216 = .rodata:0x00005D2C; // type:object size:0x2 scope:local align:4
+right_data_umb_open1$3217 = .rodata:0x00005D30; // type:object size:0x2 scope:local align:4
+right_data_umbrella1$3218 = .rodata:0x00005D34; // type:object size:0x2 scope:local align:4
+right_data_dash1$3219 = .rodata:0x00005D38; // type:object size:0x2 scope:local align:4
+right_data_run_slip1$3220 = .rodata:0x00005D3C; // type:object size:0x2 scope:local align:4
+right_data_get_pull1$3221 = .rodata:0x00005D40; // type:object size:0x2 scope:local align:4
+right_data_get_m1$3222 = .rodata:0x00005D44; // type:object size:0x2 scope:local align:4
+right_data_kamae_move_m1$3223 = .rodata:0x00005D48; // type:object size:0x2 scope:local align:4
+right_data_kamae_wait_m1$3224 = .rodata:0x00005D4C; // type:object size:0x2 scope:local align:4
+right_data_kokeru_a1$3225 = .rodata:0x00005D50; // type:object size:0x2 scope:local align:4
+right_data_kokeru_getup_a1$3226 = .rodata:0x00005D54; // type:object size:0x2 scope:local align:4
+right_data_kokeru_getup_n1$3227 = .rodata:0x00005D58; // type:object size:0x2 scope:local align:4
+right_data_kokeru_n1$3228 = .rodata:0x00005D5C; // type:object size:0x2 scope:local align:4
+right_data_net1$3229 = .rodata:0x00005D60; // type:object size:0x2 scope:local align:4
+right_data_net_swing1$3230 = .rodata:0x00005D64; // type:object size:0x2 scope:local align:4
+right_data_axe_swing1$3231 = .rodata:0x00005D68; // type:object size:0x4 scope:local align:4
+right_data_kamae_slip_m1$3232 = .rodata:0x00005D6C; // type:object size:0x2 scope:local align:4
+right_data_kokeru1$3233 = .rodata:0x00005D70; // type:object size:0x2 scope:local align:4
+right_data_kokeru_getup1$3234 = .rodata:0x00005D74; // type:object size:0x2 scope:local align:4
+right_data_sitdown1$3235 = .rodata:0x00005D78; // type:object size:0x2 scope:local align:4
+right_data_sitdown_wait1$3236 = .rodata:0x00005D7C; // type:object size:0x2 scope:local align:4
+right_data_standup1$3237 = .rodata:0x00005D80; // type:object size:0x2 scope:local align:4
+right_data_putaway_m1$3238 = .rodata:0x00005D84; // type:object size:0x2 scope:local align:4
+right_data_bed_wait1$3239 = .rodata:0x00005D88; // type:object size:0x2 scope:local align:4
+right_data_inbed_L1$3240 = .rodata:0x00005D8C; // type:object size:0x2 scope:local align:4
+right_data_inbed_R1$3241 = .rodata:0x00005D90; // type:object size:0x2 scope:local align:4
+right_data_intrain1$3242 = .rodata:0x00005D94; // type:object size:0xC scope:local align:4
+right_data_kagu_open_d1$3243 = .rodata:0x00005DA0; // type:object size:0x2 scope:local align:4
+right_data_kagu_open_h1$3244 = .rodata:0x00005DA4; // type:object size:0x2 scope:local align:4
+right_data_kagu_open_k1$3245 = .rodata:0x00005DA8; // type:object size:0x2 scope:local align:4
+right_data_negaeri_L1$3246 = .rodata:0x00005DAC; // type:object size:0x2 scope:local align:4
+right_data_negaeri_R1$3247 = .rodata:0x00005DB0; // type:object size:0x2 scope:local align:4
+right_data_outbed_L1$3248 = .rodata:0x00005DB4; // type:object size:0x2 scope:local align:4
+right_data_outbed_R1$3249 = .rodata:0x00005DB8; // type:object size:0x2 scope:local align:4
+right_data_outtrain1$3250 = .rodata:0x00005DBC; // type:object size:0x2 scope:local align:4
+right_data_kagu_close_d1$3251 = .rodata:0x00005DC0; // type:object size:0x2 scope:local align:4
+right_data_kagu_close_h1$3252 = .rodata:0x00005DC4; // type:object size:0x2 scope:local align:4
+right_data_kagu_close_k1$3253 = .rodata:0x00005DC8; // type:object size:0x2 scope:local align:4
+right_data_kagu_wait_d1$3254 = .rodata:0x00005DCC; // type:object size:0x2 scope:local align:4
+right_data_kagu_wait_h1$3255 = .rodata:0x00005DD0; // type:object size:0x2 scope:local align:4
+right_data_kagu_wait_k1$3256 = .rodata:0x00005DD4; // type:object size:0x2 scope:local align:4
+right_data_go_out_o1$3257 = .rodata:0x00005DD8; // type:object size:0x2 scope:local align:4
+right_data_go_out_s1$3258 = .rodata:0x00005DDC; // type:object size:0x2 scope:local align:4
+right_data_into_s1$3259 = .rodata:0x00005DE0; // type:object size:0x2 scope:local align:4
+right_data_axe_hane1$3260 = .rodata:0x00005DE4; // type:object size:0x6 scope:local align:4
+right_data_axe_suka1$3261 = .rodata:0x00005DEC; // type:object size:0x4 scope:local align:4
+right_data_hold_wait_h1$3262 = .rodata:0x00005DF0; // type:object size:0x2 scope:local align:4
+right_data_hold_wait_o1$3263 = .rodata:0x00005DF4; // type:object size:0x2 scope:local align:4
+right_data_get_t1$3264 = .rodata:0x00005DF8; // type:object size:0x2 scope:local align:4
+right_data_get_t2$3265 = .rodata:0x00005DFC; // type:object size:0x2 scope:local align:4
+right_data_putaway_t1$3266 = .rodata:0x00005E00; // type:object size:0x2 scope:local align:4
+right_data_sao1$3267 = .rodata:0x00005E04; // type:object size:0x2 scope:local align:4
+right_data_sao_swing1$3268 = .rodata:0x00005E08; // type:object size:0x2 scope:local align:4
+right_data_turi_hiki1$3269 = .rodata:0x00005E0C; // type:object size:0x2 scope:local align:4
+right_data_turi_wait1$3270 = .rodata:0x00005E10; // type:object size:0x2 scope:local align:4
+right_data_not_get_t1$3271 = .rodata:0x00005E14; // type:object size:0x2 scope:local align:4
+right_data_menu_catch1$3272 = .rodata:0x00005E18; // type:object size:0x2 scope:local align:4
+right_data_menu_change1$3273 = .rodata:0x00005E1C; // type:object size:0x2 scope:local align:4
+right_data_umb_close1$3274 = .rodata:0x00005E20; // type:object size:0x4 scope:local align:4
+right_data_not_sao_swing1$3275 = .rodata:0x00005E24; // type:object size:0x2 scope:local align:4
+right_data_intrain_wait1$3276 = .rodata:0x00005E28; // type:object size:0x2 scope:local align:4
+right_data_clear_table1$3277 = .rodata:0x00005E2C; // type:object size:0x2 scope:local align:4
+right_data_dig1$3278 = .rodata:0x00005E30; // type:object size:0x4 scope:local align:4
+right_data_fill_up1$3279 = .rodata:0x00005E34; // type:object size:0x6 scope:local align:4
+right_data_not_dig1$3280 = .rodata:0x00005E3C; // type:object size:0x4 scope:local align:4
+right_data_clear_table_l1$3281 = .rodata:0x00005E40; // type:object size:0x2 scope:local align:4
+right_data_pickup_l1$3282 = .rodata:0x00005E44; // type:object size:0x2 scope:local align:4
+right_data_scoop1$3283 = .rodata:0x00005E48; // type:object size:0x2 scope:local align:4
+right_data_confirm1$3284 = .rodata:0x00005E4C; // type:object size:0x4 scope:local align:4
+right_data_dig_suka1$3285 = .rodata:0x00005E50; // type:object size:0x4 scope:local align:4
+right_data_get_d1$3286 = .rodata:0x00005E54; // type:object size:0x6 scope:local align:4
+right_data_putaway_d1$3287 = .rodata:0x00005E5C; // type:object size:0x2 scope:local align:4
+right_data_dig_kabu1$3288 = .rodata:0x00005E60; // type:object size:0x4 scope:local align:4
+right_data_fill_up_i1$3289 = .rodata:0x00005E64; // type:object size:0x6 scope:local align:4
+right_data_send_mail1$3290 = .rodata:0x00005E6C; // type:object size:0x2 scope:local align:4
+right_data_get_f1$3291 = .rodata:0x00005E70; // type:object size:0x2 scope:local align:4
+right_data_get_pull_f1$3292 = .rodata:0x00005E74; // type:object size:0x2 scope:local align:4
+right_data_get_putaway_f1$3293 = .rodata:0x00005E78; // type:object size:0x2 scope:local align:4
+right_data_trans_wait_f1$3294 = .rodata:0x00005E7C; // type:object size:0x2 scope:local align:4
+right_data_transfer_f1$3295 = .rodata:0x00005E80; // type:object size:0x2 scope:local align:4
+right_data_shake1$3296 = .rodata:0x00005E84; // type:object size:0x2 scope:local align:4
+right_data_tired1$3297 = .rodata:0x00005E88; // type:object size:0x2 scope:local align:4
+right_data_wash1$3298 = .rodata:0x00005E8C; // type:object size:0x2 scope:local align:4
+right_data_wash2$3299 = .rodata:0x00005E90; // type:object size:0x2 scope:local align:4
+right_data_wash3$3300 = .rodata:0x00005E94; // type:object size:0x2 scope:local align:4
+right_data_wash4$3301 = .rodata:0x00005E98; // type:object size:0x2 scope:local align:4
+right_data_wash5$3302 = .rodata:0x00005E9C; // type:object size:0x2 scope:local align:4
+right_data_fukubiki1$3303 = .rodata:0x00005EA0; // type:object size:0x2 scope:local align:4
+right_data_omairi1$3304 = .rodata:0x00005EA4; // type:object size:0x2 scope:local align:4
+right_data_saisen1$3305 = .rodata:0x00005EA8; // type:object size:0x2 scope:local align:4
+right_data_return_mail1$3306 = .rodata:0x00005EAC; // type:object size:0x2 scope:local align:4
+right_data_return_mail2$3307 = .rodata:0x00005EB0; // type:object size:0x2 scope:local align:4
+right_data_return_mail3$3308 = .rodata:0x00005EB4; // type:object size:0x2 scope:local align:4
+right_data_eat1$3309 = .rodata:0x00005EB8; // type:object size:0x2 scope:local align:4
+right_data_gaaan1$3310 = .rodata:0x00005EBC; // type:object size:0x2 scope:local align:4
+right_data_gaaan2$3311 = .rodata:0x00005EC0; // type:object size:0x2 scope:local align:4
+right_data_deru1$3312 = .rodata:0x00005EC4; // type:object size:0x2 scope:local align:4
+right_data_guratuku1$3313 = .rodata:0x00005EC8; // type:object size:0x2 scope:local align:4
+right_data_mogaku1$3314 = .rodata:0x00005ECC; // type:object size:0x2 scope:local align:4
+right_data_otiru1$3315 = .rodata:0x00005ED0; // type:object size:0x2 scope:local align:4
+right_data_zassou1$3316 = .rodata:0x00005ED4; // type:object size:0x2 scope:local align:4
+right_data_knock1$3317 = .rodata:0x00005ED8; // type:object size:0x2 scope:local align:4
+right_data_biku1$3318 = .rodata:0x00005EDC; // type:object size:0x2 scope:local align:4
+right_data_hati1$3319 = .rodata:0x00005EE0; // type:object size:0x2 scope:local align:4
+right_data_hati2$3320 = .rodata:0x00005EE4; // type:object size:0x2 scope:local align:4
+right_data_hati3$3321 = .rodata:0x00005EE8; // type:object size:0x2 scope:local align:4
+right_data_push_yuki1$3322 = .rodata:0x00005EEC; // type:object size:0x2 scope:local align:4
+right_data_deru2$3323 = .rodata:0x00005EF0; // type:object size:0x2 scope:local align:4
+right_data_otiru2$3324 = .rodata:0x00005EF4; // type:object size:0x2 scope:local align:4
+right_data_itazura1$3325 = .rodata:0x00005EF8; // type:object size:0x2 scope:local align:4
+right_data_umb_rot1$3326 = .rodata:0x00005EFC; // type:object size:0x2 scope:local align:4
+right_data_pickup_wait1$3327 = .rodata:0x00005F00; // type:object size:0x2 scope:local align:4
+right_data_yatta1$3328 = .rodata:0x00005F04; // type:object size:0x2 scope:local align:4
+right_data_yatta2$3329 = .rodata:0x00005F08; // type:object size:0x2 scope:local align:4
+right_data_yatta3$3330 = .rodata:0x00005F0C; // type:object size:0x2 scope:local align:4
+right_data_kaze1$3331 = .rodata:0x00005F10; // type:object size:0x2 scope:local align:4
+right_data_mosquito1$3332 = .rodata:0x00005F14; // type:object size:0x2 scope:local align:4
+right_data_mosquito2$3333 = .rodata:0x00005F18; // type:object size:0x2 scope:local align:4
+right_data_ride1$3334 = .rodata:0x00005F1C; // type:object size:0x2 scope:local align:4
+right_data_ride2$3335 = .rodata:0x00005F20; // type:object size:0x2 scope:local align:4
+right_data_ridewait$3336 = .rodata:0x00005F24; // type:object size:0x2 scope:local align:4
+right_data_getoff1$3337 = .rodata:0x00005F28; // type:object size:0x2 scope:local align:4
+right_data_getoff2$3338 = .rodata:0x00005F2C; // type:object size:0x2 scope:local align:4
+right_data_utiwa_wait1$3339 = .rodata:0x00005F30; // type:object size:0x2 scope:local align:4
+right_data_utiwa_d1$3340 = .rodata:0x00005F34; // type:object size:0x2 scope:local align:4
+right_data_axe_break1$3341 = .rodata:0x00005F38; // type:object size:0x6 scope:local align:4
+right_data_axe_breakwait1$3342 = .rodata:0x00005F40; // type:object size:0x2 scope:local align:4
+right_data_light_on1$3343 = .rodata:0x00005F44; // type:object size:0x2 scope:local align:4
+right_data_taisou1$3344 = .rodata:0x00005F48; // type:object size:0x2 scope:local align:4
+right_data_taisou2_1$3345 = .rodata:0x00005F4C; // type:object size:0x2 scope:local align:4
+right_data_taisou2_2$3346 = .rodata:0x00005F50; // type:object size:0x2 scope:local align:4
+right_data_taisou3$3347 = .rodata:0x00005F54; // type:object size:0x2 scope:local align:4
+right_data_taisou4_1$3348 = .rodata:0x00005F58; // type:object size:0x2 scope:local align:4
+right_data_taisou4_2$3349 = .rodata:0x00005F5C; // type:object size:0x2 scope:local align:4
+right_data_taisou5_1$3350 = .rodata:0x00005F60; // type:object size:0x2 scope:local align:4
+right_data_taisou5_2$3351 = .rodata:0x00005F64; // type:object size:0x2 scope:local align:4
+right_data_taisou6_1$3352 = .rodata:0x00005F68; // type:object size:0x2 scope:local align:4
+right_data_taisou6_2$3353 = .rodata:0x00005F6C; // type:object size:0x2 scope:local align:4
+right_data_taisou7_1$3354 = .rodata:0x00005F70; // type:object size:0x2 scope:local align:4
+right_data_taisou7_2$3355 = .rodata:0x00005F74; // type:object size:0x2 scope:local align:4
+right_data_omairi_us1$3356 = .rodata:0x00005F78; // type:object size:0x2 scope:local align:4
+data_p_table$3357 = .rodata:0x00005F7C; // type:object size:0x274 scope:local align:4
+size_table$3358 = .rodata:0x000061F0; // type:object size:0x9D scope:local align:4
+left_data_wait1$3363 = .rodata:0x00006290; // type:object size:0x2 scope:local align:4
+left_data_walk1$3364 = .rodata:0x00006294; // type:object size:0x2 scope:local align:4
+left_data_axe1$3365 = .rodata:0x00006298; // type:object size:0x2 scope:local align:4
+left_data_run1$3366 = .rodata:0x0000629C; // type:object size:0x2 scope:local align:4
+left_data_push1$3367 = .rodata:0x000062A0; // type:object size:0x2 scope:local align:4
+left_data_pull1$3368 = .rodata:0x000062A4; // type:object size:0x4 scope:local align:4
+left_data_hold_wait1$3369 = .rodata:0x000062A8; // type:object size:0x2 scope:local align:4
+left_data_pickup1$3370 = .rodata:0x000062AC; // type:object size:0x4 scope:local align:4
+left_data_Lturn1$3371 = .rodata:0x000062B0; // type:object size:0x2 scope:local align:4
+left_data_Rturn1$3372 = .rodata:0x000062B4; // type:object size:0x2 scope:local align:4
+left_data_get1$3373 = .rodata:0x000062B8; // type:object size:0x2 scope:local align:4
+left_data_get_change1$3374 = .rodata:0x000062BC; // type:object size:0x2 scope:local align:4
+left_data_get_putaway1$3375 = .rodata:0x000062C0; // type:object size:0x2 scope:local align:4
+left_data_open1$3376 = .rodata:0x000062C4; // type:object size:0x2 scope:local align:4
+left_data_putaway1$3377 = .rodata:0x000062C8; // type:object size:0x2 scope:local align:4
+left_data_trans_wait1$3378 = .rodata:0x000062CC; // type:object size:0x2 scope:local align:4
+left_data_transfer1$3379 = .rodata:0x000062D0; // type:object size:0x2 scope:local align:4
+left_data_umb_open1$3380 = .rodata:0x000062D4; // type:object size:0x2 scope:local align:4
+left_data_umbrella1$3381 = .rodata:0x000062D8; // type:object size:0x2 scope:local align:4
+left_data_dash1$3382 = .rodata:0x000062DC; // type:object size:0x2 scope:local align:4
+left_data_run_slip1$3383 = .rodata:0x000062E0; // type:object size:0x2 scope:local align:4
+left_data_get_pull1$3384 = .rodata:0x000062E4; // type:object size:0x2 scope:local align:4
+left_data_get_m1$3385 = .rodata:0x000062E8; // type:object size:0x4 scope:local align:4
+left_data_kamae_move_m1$3386 = .rodata:0x000062EC; // type:object size:0x2 scope:local align:4
+left_data_kamae_wait_m1$3387 = .rodata:0x000062F0; // type:object size:0x2 scope:local align:4
+left_data_kokeru_a1$3388 = .rodata:0x000062F4; // type:object size:0x2 scope:local align:4
+left_data_kokeru_getup_a1$3389 = .rodata:0x000062F8; // type:object size:0x2 scope:local align:4
+left_data_kokeru_getup_n1$3390 = .rodata:0x000062FC; // type:object size:0x2 scope:local align:4
+left_data_kokeru_n1$3391 = .rodata:0x00006300; // type:object size:0x2 scope:local align:4
+left_data_net1$3392 = .rodata:0x00006304; // type:object size:0x2 scope:local align:4
+left_data_net_swing1$3393 = .rodata:0x00006308; // type:object size:0x2 scope:local align:4
+left_data_axe_swing1$3394 = .rodata:0x0000630C; // type:object size:0x4 scope:local align:4
+left_data_kamae_slip_m1$3395 = .rodata:0x00006310; // type:object size:0x2 scope:local align:4
+left_data_kokeru1$3396 = .rodata:0x00006314; // type:object size:0x2 scope:local align:4
+left_data_kokeru_getup1$3397 = .rodata:0x00006318; // type:object size:0x2 scope:local align:4
+left_data_sitdown1$3398 = .rodata:0x0000631C; // type:object size:0x2 scope:local align:4
+left_data_sitdown_wait1$3399 = .rodata:0x00006320; // type:object size:0x2 scope:local align:4
+left_data_standup1$3400 = .rodata:0x00006324; // type:object size:0x2 scope:local align:4
+left_data_putaway_m1$3401 = .rodata:0x00006328; // type:object size:0x2 scope:local align:4
+left_data_bed_wait1$3402 = .rodata:0x0000632C; // type:object size:0x2 scope:local align:4
+left_data_inbed_L1$3403 = .rodata:0x00006330; // type:object size:0x2 scope:local align:4
+left_data_inbed_R1$3404 = .rodata:0x00006334; // type:object size:0x2 scope:local align:4
+left_data_intrain1$3405 = .rodata:0x00006338; // type:object size:0xA scope:local align:4
+left_data_kagu_open_d1$3406 = .rodata:0x00006344; // type:object size:0x2 scope:local align:4
+left_data_kagu_open_h1$3407 = .rodata:0x00006348; // type:object size:0x2 scope:local align:4
+left_data_kagu_open_k1$3408 = .rodata:0x0000634C; // type:object size:0x2 scope:local align:4
+left_data_negaeri_L1$3409 = .rodata:0x00006350; // type:object size:0x2 scope:local align:4
+left_data_negaeri_R1$3410 = .rodata:0x00006354; // type:object size:0x2 scope:local align:4
+left_data_outbed_L1$3411 = .rodata:0x00006358; // type:object size:0x2 scope:local align:4
+left_data_outbed_R1$3412 = .rodata:0x0000635C; // type:object size:0x2 scope:local align:4
+left_data_outtrain1$3413 = .rodata:0x00006360; // type:object size:0x4 scope:local align:4
+left_data_kagu_close_d1$3414 = .rodata:0x00006364; // type:object size:0x2 scope:local align:4
+left_data_kagu_close_h1$3415 = .rodata:0x00006368; // type:object size:0x2 scope:local align:4
+left_data_kagu_close_k1$3416 = .rodata:0x0000636C; // type:object size:0x2 scope:local align:4
+left_data_kagu_wait_d1$3417 = .rodata:0x00006370; // type:object size:0x2 scope:local align:4
+left_data_kagu_wait_h1$3418 = .rodata:0x00006374; // type:object size:0x2 scope:local align:4
+left_data_kagu_wait_k1$3419 = .rodata:0x00006378; // type:object size:0x2 scope:local align:4
+left_data_go_out_o1$3420 = .rodata:0x0000637C; // type:object size:0x2 scope:local align:4
+left_data_go_out_s1$3421 = .rodata:0x00006380; // type:object size:0x2 scope:local align:4
+left_data_into_s1$3422 = .rodata:0x00006384; // type:object size:0x2 scope:local align:4
+left_data_axe_hane1$3423 = .rodata:0x00006388; // type:object size:0x4 scope:local align:4
+left_data_axe_suka1$3424 = .rodata:0x0000638C; // type:object size:0x2 scope:local align:4
+left_data_hold_wait_h1$3425 = .rodata:0x00006390; // type:object size:0x2 scope:local align:4
+left_data_hold_wait_o1$3426 = .rodata:0x00006394; // type:object size:0x2 scope:local align:4
+left_data_get_t1$3427 = .rodata:0x00006398; // type:object size:0x2 scope:local align:4
+left_data_get_t2$3428 = .rodata:0x0000639C; // type:object size:0x2 scope:local align:4
+left_data_putaway_t1$3429 = .rodata:0x000063A0; // type:object size:0x2 scope:local align:4
+left_data_sao1$3430 = .rodata:0x000063A4; // type:object size:0x2 scope:local align:4
+left_data_sao_swing1$3431 = .rodata:0x000063A8; // type:object size:0x2 scope:local align:4
+left_data_turi_hiki1$3432 = .rodata:0x000063AC; // type:object size:0x2 scope:local align:4
+left_data_turi_wait1$3433 = .rodata:0x000063B0; // type:object size:0x2 scope:local align:4
+left_data_not_get_t1$3434 = .rodata:0x000063B4; // type:object size:0x2 scope:local align:4
+left_data_menu_catch1$3435 = .rodata:0x000063B8; // type:object size:0x2 scope:local align:4
+left_data_menu_change1$3436 = .rodata:0x000063BC; // type:object size:0x2 scope:local align:4
+left_data_umb_close1$3437 = .rodata:0x000063C0; // type:object size:0x4 scope:local align:4
+left_data_not_sao_swing1$3438 = .rodata:0x000063C4; // type:object size:0x2 scope:local align:4
+left_data_intrain_wait1$3439 = .rodata:0x000063C8; // type:object size:0x2 scope:local align:4
+left_data_clear_table1$3440 = .rodata:0x000063CC; // type:object size:0x2 scope:local align:4
+left_data_dig1$3441 = .rodata:0x000063D0; // type:object size:0x4 scope:local align:4
+left_data_fill_up1$3442 = .rodata:0x000063D4; // type:object size:0x6 scope:local align:4
+left_data_not_dig1$3443 = .rodata:0x000063DC; // type:object size:0x6 scope:local align:4
+left_data_clear_table_l1$3444 = .rodata:0x000063E4; // type:object size:0x2 scope:local align:4
+left_data_pickup_l1$3445 = .rodata:0x000063E8; // type:object size:0x2 scope:local align:4
+left_data_scoop1$3446 = .rodata:0x000063EC; // type:object size:0x2 scope:local align:4
+left_data_confirm1$3447 = .rodata:0x000063F0; // type:object size:0x2 scope:local align:4
+left_data_dig_suka1$3448 = .rodata:0x000063F4; // type:object size:0x4 scope:local align:4
+left_data_get_d1$3449 = .rodata:0x000063F8; // type:object size:0x6 scope:local align:4
+left_data_putaway_d1$3450 = .rodata:0x00006400; // type:object size:0x2 scope:local align:4
+left_data_dig_kabu1$3451 = .rodata:0x00006404; // type:object size:0x4 scope:local align:4
+left_data_fill_up_i1$3452 = .rodata:0x00006408; // type:object size:0x6 scope:local align:4
+left_data_send_mail1$3453 = .rodata:0x00006410; // type:object size:0x2 scope:local align:4
+left_data_get_f1$3454 = .rodata:0x00006414; // type:object size:0x2 scope:local align:4
+left_data_get_pull_f1$3455 = .rodata:0x00006418; // type:object size:0x2 scope:local align:4
+left_data_get_putaway_f1$3456 = .rodata:0x0000641C; // type:object size:0x2 scope:local align:4
+left_data_trans_wait_f1$3457 = .rodata:0x00006420; // type:object size:0x2 scope:local align:4
+left_data_transfer_f1$3458 = .rodata:0x00006424; // type:object size:0x2 scope:local align:4
+left_data_shake1$3459 = .rodata:0x00006428; // type:object size:0x2 scope:local align:4
+left_data_tired1$3460 = .rodata:0x0000642C; // type:object size:0x2 scope:local align:4
+left_data_wash1$3461 = .rodata:0x00006430; // type:object size:0x2 scope:local align:4
+left_data_wash2$3462 = .rodata:0x00006434; // type:object size:0x2 scope:local align:4
+left_data_wash3$3463 = .rodata:0x00006438; // type:object size:0x2 scope:local align:4
+left_data_wash4$3464 = .rodata:0x0000643C; // type:object size:0x2 scope:local align:4
+left_data_wash5$3465 = .rodata:0x00006440; // type:object size:0x2 scope:local align:4
+left_data_fukubiki1$3466 = .rodata:0x00006444; // type:object size:0x2 scope:local align:4
+left_data_omairi1$3467 = .rodata:0x00006448; // type:object size:0x2 scope:local align:4
+left_data_saisen1$3468 = .rodata:0x0000644C; // type:object size:0x2 scope:local align:4
+left_data_return_mail1$3469 = .rodata:0x00006450; // type:object size:0x2 scope:local align:4
+left_data_return_mail2$3470 = .rodata:0x00006454; // type:object size:0x2 scope:local align:4
+left_data_return_mail3$3471 = .rodata:0x00006458; // type:object size:0x2 scope:local align:4
+left_data_eat1$3472 = .rodata:0x0000645C; // type:object size:0x2 scope:local align:4
+left_data_gaaan1$3473 = .rodata:0x00006460; // type:object size:0x2 scope:local align:4
+left_data_gaaan2$3474 = .rodata:0x00006464; // type:object size:0x2 scope:local align:4
+left_data_deru1$3475 = .rodata:0x00006468; // type:object size:0x2 scope:local align:4
+left_data_guratuku1$3476 = .rodata:0x0000646C; // type:object size:0x2 scope:local align:4
+left_data_mogaku1$3477 = .rodata:0x00006470; // type:object size:0x2 scope:local align:4
+left_data_otiru1$3478 = .rodata:0x00006474; // type:object size:0x2 scope:local align:4
+left_data_zassou1$3479 = .rodata:0x00006478; // type:object size:0x2 scope:local align:4
+left_data_knock1$3480 = .rodata:0x0000647C; // type:object size:0x2 scope:local align:4
+left_data_biku1$3481 = .rodata:0x00006480; // type:object size:0x2 scope:local align:4
+left_data_hati1$3482 = .rodata:0x00006484; // type:object size:0x2 scope:local align:4
+left_data_hati2$3483 = .rodata:0x00006488; // type:object size:0x2 scope:local align:4
+left_data_hati3$3484 = .rodata:0x0000648C; // type:object size:0x2 scope:local align:4
+left_data_push_yuki1$3485 = .rodata:0x00006490; // type:object size:0x2 scope:local align:4
+left_data_deru2$3486 = .rodata:0x00006494; // type:object size:0x2 scope:local align:4
+left_data_otiru2$3487 = .rodata:0x00006498; // type:object size:0x2 scope:local align:4
+left_data_itazura1$3488 = .rodata:0x0000649C; // type:object size:0x2 scope:local align:4
+left_data_umb_rot1$3489 = .rodata:0x000064A0; // type:object size:0x2 scope:local align:4
+left_data_pickup_wait1$3490 = .rodata:0x000064A4; // type:object size:0x2 scope:local align:4
+left_data_yatta1$3491 = .rodata:0x000064A8; // type:object size:0x2 scope:local align:4
+left_data_yatta2$3492 = .rodata:0x000064AC; // type:object size:0x2 scope:local align:4
+left_data_yatta3$3493 = .rodata:0x000064B0; // type:object size:0x2 scope:local align:4
+left_data_kaze1$3494 = .rodata:0x000064B4; // type:object size:0x2 scope:local align:4
+left_data_mosquito1$3495 = .rodata:0x000064B8; // type:object size:0x2 scope:local align:4
+left_data_mosquito2$3496 = .rodata:0x000064BC; // type:object size:0x2 scope:local align:4
+left_data_ride1$3497 = .rodata:0x000064C0; // type:object size:0x2 scope:local align:4
+left_data_ride2$3498 = .rodata:0x000064C4; // type:object size:0x2 scope:local align:4
+left_data_ridewait$3499 = .rodata:0x000064C8; // type:object size:0x2 scope:local align:4
+left_data_getoff1$3500 = .rodata:0x000064CC; // type:object size:0x2 scope:local align:4
+left_data_getoff2$3501 = .rodata:0x000064D0; // type:object size:0x2 scope:local align:4
+left_data_utiwa_wait1$3502 = .rodata:0x000064D4; // type:object size:0x2 scope:local align:4
+left_data_utiwa_d1$3503 = .rodata:0x000064D8; // type:object size:0x2 scope:local align:4
+left_data_axe_break1$3504 = .rodata:0x000064DC; // type:object size:0x4 scope:local align:4
+left_data_axe_breakwait1$3505 = .rodata:0x000064E0; // type:object size:0x2 scope:local align:4
+left_data_light_on1$3506 = .rodata:0x000064E4; // type:object size:0x2 scope:local align:4
+left_data_taisou1$3507 = .rodata:0x000064E8; // type:object size:0x2 scope:local align:4
+left_data_taisou2_1$3508 = .rodata:0x000064EC; // type:object size:0x2 scope:local align:4
+left_data_taisou2_2$3509 = .rodata:0x000064F0; // type:object size:0x2 scope:local align:4
+left_data_taisou3$3510 = .rodata:0x000064F4; // type:object size:0x2 scope:local align:4
+left_data_taisou4_1$3511 = .rodata:0x000064F8; // type:object size:0x2 scope:local align:4
+left_data_taisou4_2$3512 = .rodata:0x000064FC; // type:object size:0x2 scope:local align:4
+left_data_taisou5_1$3513 = .rodata:0x00006500; // type:object size:0x2 scope:local align:4
+left_data_taisou5_2$3514 = .rodata:0x00006504; // type:object size:0x2 scope:local align:4
+left_data_taisou6_1$3515 = .rodata:0x00006508; // type:object size:0x2 scope:local align:4
+left_data_taisou6_2$3516 = .rodata:0x0000650C; // type:object size:0x2 scope:local align:4
+left_data_taisou7_1$3517 = .rodata:0x00006510; // type:object size:0x2 scope:local align:4
+left_data_taisou7_2$3518 = .rodata:0x00006514; // type:object size:0x2 scope:local align:4
+left_data_omairi_us1$3519 = .rodata:0x00006518; // type:object size:0x2 scope:local align:4
+data_p_table$3520 = .rodata:0x0000651C; // type:object size:0x274 scope:local align:4
+size_table$3521 = .rodata:0x00006790; // type:object size:0x9D scope:local align:4
+data$3547 = .rodata:0x00006830; // type:object size:0x9D scope:local align:4
+@3573 = .rodata:0x000068D0; // type:object size:0x4 scope:local align:4 data:float
+add_X$3744 = .rodata:0x000068D4; // type:object size:0x20 scope:local align:4
+add_Z$3745 = .rodata:0x000068F4; // type:object size:0x20 scope:local align:4
+@4004 = .rodata:0x00006914; // type:object size:0x4 scope:local align:4 data:float
+@4067 = .rodata:0x00006918; // type:object size:0x4 scope:local align:4 data:float
+@4068 = .rodata:0x0000691C; // type:object size:0x4 scope:local align:4 data:float
+data$4379 = .rodata:0x00006920; // type:object size:0x79 scope:local align:4
+@4413 = .rodata:0x0000699C; // type:object size:0x4 scope:local align:4 data:float
+@4422 = .rodata:0x000069A0; // type:object size:0x4 scope:local align:4 data:float
+@4467 = .rodata:0x000069A4; // type:object size:0x4 scope:local align:4 data:float
+data$4594 = .rodata:0x000069A8; // type:object size:0x79 scope:local align:4
+local_border_pos$4669 = .rodata:0x00006A24; // type:object size:0xC scope:local align:4 data:4byte
+@4795 = .rodata:0x00006A30; // type:object size:0x4 scope:local align:4 data:float
+data$4823 = .rodata:0x00006A34; // type:object size:0x79 scope:local align:4
+data$4943 = .rodata:0x00006AB0; // type:object size:0x34 scope:local align:4
+data$4951 = .rodata:0x00006AE4; // type:object size:0x79 scope:local align:4
+@5030 = .rodata:0x00006B60; // type:object size:0x8 scope:local align:4 data:4byte
+@5148 = .rodata:0x00006B68; // type:object size:0x4 scope:local align:4 data:float
+@5205 = .rodata:0x00006B6C; // type:object size:0x4 scope:local align:4 data:float
+@5247 = .rodata:0x00006B70; // type:object size:0x4 scope:local align:4 data:float
+data$5287 = .rodata:0x00006B74; // type:object size:0x79 scope:local align:4
+@5331 = .rodata:0x00006BF0; // type:object size:0x4 scope:local align:4 data:float
+@5593 = .rodata:0x00006BF4; // type:object size:0x4 scope:local align:4 data:float
+@5641 = .rodata:0x00006BF8; // type:object size:0x4 scope:local align:4 data:float
+@5799 = .rodata:0x00006BFC; // type:object size:0x4 scope:local align:4 data:float
+data$5904 = .rodata:0x00006C00; // type:object size:0x50 scope:local align:4
+@5979 = .rodata:0x00006C50; // type:object size:0x4 scope:local align:4 data:float
+@5980 = .rodata:0x00006C54; // type:object size:0x4 scope:local align:4 data:float
+@5992 = .rodata:0x00006C58; // type:object size:0x4 scope:local align:4 data:float
+@6133 = .rodata:0x00006C5C; // type:object size:0x4 scope:local align:4 data:float
+basic_angle$6169 = .rodata:0x00006C60; // type:object size:0x6 scope:local align:4
+@6171 = .rodata:0x00006C68; // type:object size:0x4 scope:local align:4 data:float
+basic_angle$6175 = .rodata:0x00006C6C; // type:object size:0x6 scope:local align:4
+@6209 = .rodata:0x00006C74; // type:object size:0x4 scope:local align:4 data:float
+@6210 = .rodata:0x00006C78; // type:object size:0x4 scope:local align:4 data:float
+@6211 = .rodata:0x00006C7C; // type:object size:0x4 scope:local align:4 data:float
+@6212 = .rodata:0x00006C80; // type:object size:0x4 scope:local align:4 data:float
+@6213 = .rodata:0x00006C84; // type:object size:0x4 scope:local align:4 data:float
+@6214 = .rodata:0x00006C88; // type:object size:0x4 scope:local align:4 data:float
+basic_start_move_angle$6225 = .rodata:0x00006C8C; // type:object size:0xC scope:local align:4
+basic_end_left_turn_angle$6226 = .rodata:0x00006C98; // type:object size:0xC scope:local align:4
+basic_end_right_turn_angle$6227 = .rodata:0x00006CA4; // type:object size:0xC scope:local align:4
+basic_start_move_angle$6236 = .rodata:0x00006CB0; // type:object size:0xC scope:local align:4
+basic_end_left_turn_angle$6237 = .rodata:0x00006CBC; // type:object size:0xC scope:local align:4
+basic_end_right_turn_angle$6238 = .rodata:0x00006CC8; // type:object size:0xC scope:local align:4
+basic_angle$6243 = .rodata:0x00006CD4; // type:object size:0xC scope:local align:4
+basic_angle$6248 = .rodata:0x00006CE0; // type:object size:0xC scope:local align:4
+@6257 = .rodata:0x00006CEC; // type:object size:0x4 scope:local align:4 data:float
+proc$6261 = .rodata:0x00006CF0; // type:object size:0x1E4 scope:local align:4
+proc$6284 = .rodata:0x00006ED4; // type:object size:0x18 scope:local align:4
+@6297 = .rodata:0x00006EEC; // type:object size:0x4 scope:local align:4 data:float
+@6298 = .rodata:0x00006EF0; // type:object size:0x4 scope:local align:4 data:float
+@6299 = .rodata:0x00006EF4; // type:object size:0x4 scope:local align:4 data:float
+@6385 = .rodata:0x00006EF8; // type:object size:0x4 scope:local align:4 data:float
+@6386 = .rodata:0x00006EFC; // type:object size:0x4 scope:local align:4 data:float
+@6387 = .rodata:0x00006F00; // type:object size:0x4 scope:local align:4 data:float
+@6388 = .rodata:0x00006F04; // type:object size:0x4 scope:local align:4 data:float
+@6389 = .rodata:0x00006F08; // type:object size:0x4 scope:local align:4 data:float
+@6390 = .rodata:0x00006F10; // type:object size:0x8 scope:local align:8 data:double
+@6391 = .rodata:0x00006F18; // type:object size:0x4 scope:local align:4 data:float
+@6484 = .rodata:0x00006F1C; // type:object size:0x4 scope:local align:4 data:float
+@6497 = .rodata:0x00006F20; // type:object size:0x4 scope:local align:4 data:float
+proc$6501 = .rodata:0x00006F24; // type:object size:0x14 scope:local align:4
+@6542 = .rodata:0x00006F38; // type:object size:0x4 scope:local align:4 data:float
+@6577 = .rodata:0x00006F3C; // type:object size:0x4 scope:local align:4 data:float
+@6602 = .rodata:0x00006F40; // type:object size:0x8 scope:local align:8 data:double
+@6687 = .rodata:0x00006F48; // type:object size:0x4 scope:local align:4 data:float
+@6688 = .rodata:0x00006F4C; // type:object size:0x4 scope:local align:4 data:float
+@6689 = .rodata:0x00006F50; // type:object size:0x4 scope:local align:4 data:float
+@6690 = .rodata:0x00006F58; // type:object size:0x8 scope:local align:8 data:double
+@6691 = .rodata:0x00006F60; // type:object size:0x8 scope:local align:8 data:double
+@6692 = .rodata:0x00006F68; // type:object size:0x4 scope:local align:4 data:float
+@6693 = .rodata:0x00006F6C; // type:object size:0x4 scope:local align:4 data:float
+@6694 = .rodata:0x00006F70; // type:object size:0x4 scope:local align:4 data:float
+@6695 = .rodata:0x00006F74; // type:object size:0x4 scope:local align:4 data:float
+@6696 = .rodata:0x00006F78; // type:object size:0x4 scope:local align:4 data:float
+@6899 = .rodata:0x00006F7C; // type:object size:0x4 scope:local align:4 data:float
+@6900 = .rodata:0x00006F80; // type:object size:0x4 scope:local align:4 data:float
+@6901 = .rodata:0x00006F84; // type:object size:0x4 scope:local align:4 data:float
+@6902 = .rodata:0x00006F88; // type:object size:0x4 scope:local align:4 data:float
+@6903 = .rodata:0x00006F8C; // type:object size:0x4 scope:local align:4 data:float
+proc$6915 = .rodata:0x00006F90; // type:object size:0xC scope:local align:4
+@6956 = .rodata:0x00006F9C; // type:object size:0x4 scope:local align:4 data:float
+proc$6998 = .rodata:0x00006FA0; // type:object size:0x60 scope:local align:4
+proc$7009 = .rodata:0x00007000; // type:object size:0x60 scope:local align:4
+proc$7023 = .rodata:0x00007060; // type:object size:0x60 scope:local align:4
+proc$7102 = .rodata:0x000070C0; // type:object size:0x68 scope:local align:4
+@7131 = .rodata:0x00007128; // type:object size:0x4 scope:local align:4 data:float
+proc$7159 = .rodata:0x0000712C; // type:object size:0x68 scope:local align:4
+color_data$7217 = .rodata:0x00007194; // type:object size:0x30 scope:local align:4
+@7314 = .rodata:0x000071C4; // type:object size:0x4 scope:local align:4 data:float
+@7315 = .rodata:0x000071C8; // type:object size:0x4 scope:local align:4 data:float
+@7316 = .rodata:0x000071CC; // type:object size:0x4 scope:local align:4 data:float
+@7317 = .rodata:0x000071D0; // type:object size:0x4 scope:local align:4 data:float
+@7318 = .rodata:0x000071D4; // type:object size:0x4 scope:local align:4 data:float
+@7319 = .rodata:0x000071D8; // type:object size:0x4 scope:local align:4 data:float
+@7320 = .rodata:0x000071DC; // type:object size:0x4 scope:local align:4 data:float
+@7381 = .rodata:0x000071E0; // type:object size:0x4 scope:local align:4 data:float
+@7410 = .rodata:0x000071E4; // type:object size:0x4 scope:local align:4 data:float
+@7470 = .rodata:0x000071E8; // type:object size:0x4 scope:local align:4 data:float
+@7572 = .rodata:0x000071EC; // type:object size:0x4 scope:local align:4 data:float
+@7783 = .rodata:0x000071F0; // type:object size:0x4 scope:local align:4 data:float
+@7851 = .rodata:0x000071F4; // type:object size:0x4 scope:local align:4 data:float
+@7852 = .rodata:0x000071F8; // type:object size:0x4 scope:local align:4 data:float
+@7853 = .rodata:0x000071FC; // type:object size:0x4 scope:local align:4 data:float
+@7854 = .rodata:0x00007200; // type:object size:0x4 scope:local align:4 data:float
+@7897 = .rodata:0x00007204; // type:object size:0x4 scope:local align:4 data:float
+@7898 = .rodata:0x00007208; // type:object size:0x4 scope:local align:4 data:float
+offset$8082 = .rodata:0x0000720C; // type:object size:0x60 scope:local align:4 data:float
+@8144 = .rodata:0x0000726C; // type:object size:0x4 scope:local align:4 data:float
+data$8175 = .rodata:0x00007270; // type:object size:0x50 scope:local align:4
+@8192 = .rodata:0x000072C0; // type:object size:0x4 scope:local align:4 data:float
+@8209 = .rodata:0x000072C4; // type:object size:0x4 scope:local align:4 data:float
+@8275 = .rodata:0x000072C8; // type:object size:0x4 scope:local align:4 data:float
+data$8282 = .rodata:0x000072CC; // type:object size:0x50 scope:local align:4
+@8340 = .rodata:0x0000731C; // type:object size:0x4 scope:local align:4 data:float
+@8374 = .rodata:0x00007320; // type:object size:0x4 scope:local align:4 data:float
+@8464 = .rodata:0x00007324; // type:object size:0x4 scope:local align:4 data:float
+@8465 = .rodata:0x00007328; // type:object size:0x4 scope:local align:4 data:float
+@8580 = .rodata:0x0000732C; // type:object size:0x4 scope:local align:4 data:float
+@8613 = .rodata:0x00007330; // type:object size:0x4 scope:local align:4 data:float
+@8758 = .rodata:0x00007334; // type:object size:0x4 scope:local align:4 data:float
+@8792 = .rodata:0x00007338; // type:object size:0x4 scope:local align:4 data:float
+@8888 = .rodata:0x0000733C; // type:object size:0x4 scope:local align:4 data:float
+@8889 = .rodata:0x00007340; // type:object size:0x4 scope:local align:4 data:float
+@9115 = .rodata:0x00007344; // type:object size:0x4 scope:local align:4 data:float
+@9234 = .rodata:0x00007348; // type:object size:0x4 scope:local align:4 data:float
+@9235 = .rodata:0x0000734C; // type:object size:0x4 scope:local align:4 data:float
+@9440 = .rodata:0x00007350; // type:object size:0x4 scope:local align:4 data:float
+@9485 = .rodata:0x00007354; // type:object size:0x4 scope:local align:4 data:float
+@9496 = .rodata:0x00007358; // type:object size:0x4 scope:local align:4 data:float
+@9522 = .rodata:0x0000735C; // type:object size:0x4 scope:local align:4 data:float
+@9567 = .rodata:0x00007360; // type:object size:0x4 scope:local align:4 data:float
+@9741 = .rodata:0x00007364; // type:object size:0x4 scope:local align:4 data:float
+@9742 = .rodata:0x00007368; // type:object size:0x4 scope:local align:4 data:float
+@9743 = .rodata:0x0000736C; // type:object size:0x4 scope:local align:4 data:float
+@9744 = .rodata:0x00007370; // type:object size:0x4 scope:local align:4 data:float
+@10345 = .rodata:0x00007374; // type:object size:0x4 scope:local align:4 data:float
+@10412 = .rodata:0x00007378; // type:object size:0x4 scope:local align:4 data:float
+@10468 = .rodata:0x0000737C; // type:object size:0x4 scope:local align:4 data:float
+@10558 = .rodata:0x00007380; // type:object size:0x4 scope:local align:4 data:float
+@10660 = .rodata:0x00007384; // type:object size:0x4 scope:local align:4 data:float
+@10847 = .rodata:0x00007388; // type:object size:0x4 scope:local align:4 data:float
+@10848 = .rodata:0x0000738C; // type:object size:0x4 scope:local align:4 data:float
+@10958 = .rodata:0x00007390; // type:object size:0x4 scope:local align:4 data:float
+@11384 = .rodata:0x00007394; // type:object size:0x4 scope:local align:4 data:float
+@11511 = .rodata:0x00007398; // type:object size:0x4 scope:local align:4 data:float
+array_addX$11580 = .rodata:0x0000739C; // type:object size:0x14 scope:local align:4
+array_addZ$11581 = .rodata:0x000073B0; // type:object size:0x14 scope:local align:4
+@12238 = .rodata:0x000073C4; // type:object size:0x4 scope:local align:4 data:float
+@12239 = .rodata:0x000073C8; // type:object size:0x4 scope:local align:4 data:float
+@12372 = .rodata:0x000073CC; // type:object size:0x4 scope:local align:4 data:float
+@12514 = .rodata:0x000073D0; // type:object size:0x4 scope:local align:4 data:float
+@12515 = .rodata:0x000073D4; // type:object size:0x4 scope:local align:4 data:float
+@12773 = .rodata:0x000073D8; // type:object size:0x4 scope:local align:4 data:float
+@13052 = .rodata:0x000073DC; // type:object size:0x4 scope:local align:4 data:float
+@13162 = .rodata:0x000073E0; // type:object size:0x4 scope:local align:4 data:float
+@13279 = .rodata:0x000073E4; // type:object size:0x4 scope:local align:4 data:float
+@13383 = .rodata:0x000073E8; // type:object size:0x4 scope:local align:4 data:float
+@13384 = .rodata:0x000073EC; // type:object size:0x4 scope:local align:4 data:float
+@13856 = .rodata:0x000073F0; // type:object size:0x4 scope:local align:4 data:float
+@14402 = .rodata:0x000073F4; // type:object size:0x4 scope:local align:4 data:float
+@14484 = .rodata:0x000073F8; // type:object size:0x8 scope:local align:8 data:double
+data$14594 = .rodata:0x00007400; // type:object size:0x5 scope:local align:4 data:string
+@15135 = .rodata:0x00007408; // type:object size:0x4 scope:local align:4 data:float
+@15363 = .rodata:0x0000740C; // type:object size:0x4 scope:local align:4 data:float
+@15364 = .rodata:0x00007410; // type:object size:0x4 scope:local align:4 data:float
+@15365 = .rodata:0x00007414; // type:object size:0x4 scope:local align:4 data:float
+@15493 = .rodata:0x00007418; // type:object size:0x4 scope:local align:4 data:float
+@15537 = .rodata:0x0000741C; // type:object size:0x4 scope:local align:4 data:float
+@16043 = .rodata:0x00007420; // type:object size:0x4 scope:local align:4 data:float
+@16394 = .rodata:0x00007424; // type:object size:0x4 scope:local align:4 data:float
+anime_index_data$16482 = .rodata:0x00007428; // type:object size:0x12 scope:local align:4
+@16515 = .rodata:0x0000743C; // type:object size:0x4 scope:local align:4 data:float
+@16607 = .rodata:0x00007440; // type:object size:0x8 scope:local align:8 data:double
+@16608 = .rodata:0x00007448; // type:object size:0x4 scope:local align:4 data:float
+@16669 = .rodata:0x0000744C; // type:object size:0x4 scope:local align:4 data:float
+@16728 = .rodata:0x00007450; // type:object size:0x4 scope:local align:4 data:float
+@16988 = .rodata:0x00007454; // type:object size:0x4 scope:local align:4 data:float
+proc$17030 = .rodata:0x00007458; // type:object size:0x1E4 scope:local align:4
+proc$17058 = .rodata:0x0000763C; // type:object size:0x1E4 scope:local align:4
+proc$17070 = .rodata:0x00007820; // type:object size:0x1E4 scope:local align:4
+proc$17088 = .rodata:0x00007A04; // type:object size:0x1E4 scope:local align:4
+data$17099 = .rodata:0x00007BE8; // type:object size:0x79 scope:local align:4
+proc$17103 = .rodata:0x00007C64; // type:object size:0x8 scope:local align:4
+@400 = .rodata:0x00007C70; // type:object size:0x8 scope:local align:8 data:double
+@435 = .rodata:0x00007C78; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00007C7C; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00007C80; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00007C84; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00007C88; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x00007C8C; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00007C90; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00007C94; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00007C98; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00007C9C; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00007CA0; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00007CA4; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00007CA8; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00007CAC; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x00007CB0; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00007CB4; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00007CB8; // type:object size:0x4 scope:local align:4 data:float
+@607 = .rodata:0x00007CBC; // type:object size:0x4 scope:local align:4 data:float
+@651 = .rodata:0x00007CC0; // type:object size:0x4 scope:local align:4 data:float
+@652 = .rodata:0x00007CC4; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x00007CC8; // type:object size:0x4 scope:local align:4 data:float
+@663 = .rodata:0x00007CCC; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x00007CD0; // type:object size:0x4 scope:local align:4 data:float
+@674 = .rodata:0x00007CD4; // type:object size:0x4 scope:local align:4 data:float
+@682 = .rodata:0x00007CD8; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00007CE0; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x00007CE4; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00007CE8; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00007CEC; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00007CF0; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x00007CF4; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00007CF8; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x00007D00; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x00007D04; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x00007D08; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00007D10; // type:object size:0x8 scope:local align:8 data:double
+@458 = .rodata:0x00007D18; // type:object size:0x8 scope:local align:8 data:double
+@459 = .rodata:0x00007D20; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00007D24; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x00007D28; // type:object size:0x8 scope:local align:8 data:double
+@536 = .rodata:0x00007D30; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00007D38; // type:object size:0x8 scope:local align:8 data:double
+@538 = .rodata:0x00007D40; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x00007D44; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00007D48; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x00007D4C; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x00007D50; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x00007D54; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00007D58; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00007D5C; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x00007D60; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00007D64; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00007D68; // type:object size:0x8 scope:local align:8 data:double
+@580 = .rodata:0x00007D70; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x00007D74; // type:object size:0x4 scope:local align:4 data:float
+@613 = .rodata:0x00007D78; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00007D7C; // type:object size:0x4 scope:local align:4 data:float
+@661 = .rodata:0x00007D80; // type:object size:0x4 scope:local align:4 data:float
+@679 = .rodata:0x00007D84; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00007D88; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00007D8C; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00007D90; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00007D94; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00007D98; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00007D9C; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x00007DA0; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00007DA4; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00007DA8; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00007DAC; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00007DB0; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00007DB4; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x00007DB8; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x00007DC0; // type:object size:0x8 scope:local align:8 data:double
+@601 = .rodata:0x00007DC8; // type:object size:0x8 scope:local align:8 data:double
+@602 = .rodata:0x00007DD0; // type:object size:0x8 scope:local align:8 data:double
+@603 = .rodata:0x00007DD8; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x00007DDC; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00007DE0; // type:object size:0x4 scope:local align:4 data:float
+@606 = .rodata:0x00007DE4; // type:object size:0x4 scope:local align:4 data:float
+@607 = .rodata:0x00007DE8; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00007DEC; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00007DF0; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00007DF4; // type:object size:0x4 scope:local align:4 data:float
+@611 = .rodata:0x00007DF8; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x00007DFC; // type:object size:0x4 scope:local align:4 data:float
+@613 = .rodata:0x00007E00; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00007E04; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00007E08; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00007E0C; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00007E10; // type:object size:0x4 scope:local align:4 data:float
+@686 = .rodata:0x00007E14; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x00007E18; // type:object size:0x4 scope:local align:4 data:float
+@775 = .rodata:0x00007E1C; // type:object size:0x4 scope:local align:4 data:float
+@776 = .rodata:0x00007E20; // type:object size:0x4 scope:local align:4 data:float
+@798 = .rodata:0x00007E24; // type:object size:0x4 scope:local align:4 data:float
+@799 = .rodata:0x00007E28; // type:object size:0x4 scope:local align:4 data:float
+@935 = .rodata:0x00007E2C; // type:object size:0x4 scope:local align:4 data:float
+@936 = .rodata:0x00007E30; // type:object size:0x4 scope:local align:4 data:float
+@1026 = .rodata:0x00007E38; // type:object size:0x4 scope:local align:4 data:float
+@1154 = .rodata:0x00007E40; // type:object size:0x8 scope:local align:8 data:double
+@1185 = .rodata:0x00007E48; // type:object size:0x8 scope:local align:8 data:double
+@1731 = .rodata:0x00007E50; // type:object size:0xC scope:local align:4 data:4byte
+@1732 = .rodata:0x00007E5C; // type:object size:0xC scope:local align:4 data:4byte
+@1754 = .rodata:0x00007E68; // type:object size:0x4 scope:local align:4 data:float
+@1755 = .rodata:0x00007E6C; // type:object size:0x4 scope:local align:4 data:float
+@2712 = .rodata:0x00007E70; // type:object size:0x4 scope:local align:4 data:float
+@2791 = .rodata:0x00007E74; // type:object size:0xC scope:local align:4 data:4byte
+@2792 = .rodata:0x00007E80; // type:object size:0xC scope:local align:4 data:4byte
+@2813 = .rodata:0x00007E8C; // type:object size:0xC scope:local align:4 data:4byte
+@2814 = .rodata:0x00007E98; // type:object size:0xC scope:local align:4 data:4byte
+@2923 = .rodata:0x00007EA4; // type:object size:0xC scope:local align:4 data:4byte
+@667 = .rodata:0x00007EB0; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00007EB8; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00007EBC; // type:object size:0x4 scope:local align:4 data:float
+@570 = .rodata:0x00007EC0; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00007EC4; // type:object size:0x4 scope:local align:4 data:float
+@611 = .rodata:0x00007EC8; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x00007ECC; // type:object size:0x4 scope:local align:4 data:float
+@613 = .rodata:0x00007ED0; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00007ED4; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00007ED8; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x00007EDC; // type:object size:0x4 scope:local align:4 data:float
+@674 = .rodata:0x00007EE0; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00007EE8; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00007EF0; // type:object size:0x8 scope:local align:8 data:double
+@580 = .rodata:0x00007EF8; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00007F00; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00007F04; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00007F08; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00007F0C; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x00007F10; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00007F18; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00007F1C; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00007F20; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x00007F24; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00007F28; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x00007F2C; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00007F30; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00007F34; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00007F38; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00007F3C; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00007F40; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x00007F44; // type:object size:0x4 scope:local align:4 data:float
+@657 = .rodata:0x00007F48; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x00007F4C; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00007F50; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00007F54; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00007F58; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00007F5C; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00007F60; // type:object size:0x4 scope:local align:4 data:float
+@700 = .rodata:0x00007F64; // type:object size:0x4 scope:local align:4 data:float
+@701 = .rodata:0x00007F68; // type:object size:0x4 scope:local align:4 data:float
+@702 = .rodata:0x00007F6C; // type:object size:0x4 scope:local align:4 data:float
+@703 = .rodata:0x00007F70; // type:object size:0x4 scope:local align:4 data:float
+@714 = .rodata:0x00007F74; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x00007F78; // type:object size:0x4 scope:local align:4 data:float
+@582 = .rodata:0x00007F7C; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00007F80; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x00007F84; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00007F88; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x00007F8C; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x00007F90; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x00007F94; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00007F98; // type:object size:0x8 scope:local align:8 data:double
+@742 = .rodata:0x00007FA0; // type:object size:0x4 scope:local align:4 data:float
+@757 = .rodata:0x00007FA4; // type:object size:0x4 scope:local align:4 data:float
+@758 = .rodata:0x00007FA8; // type:object size:0x4 scope:local align:4 data:float
+@872 = .rodata:0x00007FAC; // type:object size:0x4 scope:local align:4 data:float
+@879 = .rodata:0x00007FB0; // type:object size:0x4 scope:local align:4 data:float
+@886 = .rodata:0x00007FB4; // type:object size:0x4 scope:local align:4 data:float
+@904 = .rodata:0x00007FB8; // type:object size:0x4 scope:local align:4 data:float
+@936 = .rodata:0x00007FBC; // type:object size:0x4 scope:local align:4 data:float
+@941 = .rodata:0x00007FC0; // type:object size:0x4 scope:local align:4 data:float
+@946 = .rodata:0x00007FC4; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00007FC8; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00007FCC; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00007FD0; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00007FD4; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00007FD8; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00007FDC; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00007FE0; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00007FE4; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00007FE8; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00007FEC; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x00007FF0; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00007FF8; // type:object size:0x8 scope:local align:8 data:double
+@534 = .rodata:0x00008000; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00008004; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00008008; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00008010; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x00008014; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00008018; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x0000801C; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x00008020; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x00008024; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x00008028; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00008030; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00008034; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008038; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008040; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00008044; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00008048; // type:object size:0x8 scope:local align:8 data:double
+@518 = .rodata:0x00008050; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00008058; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x00008060; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00008068; // type:object size:0x8 scope:local align:8 data:double
+@668 = .rodata:0x00008070; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00008074; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00008078; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00008080; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00008084; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x00008088; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x0000808C; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x00008090; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00008094; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00008098; // type:object size:0x4 scope:local align:4 data:float
+@651 = .rodata:0x0000809C; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x000080A0; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000080A8; // type:object size:0x8 scope:local align:8 data:double
+@589 = .rodata:0x000080B0; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x000080B4; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x000080B8; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x000080BC; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x000080C0; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x000080C8; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x000080CC; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000080D0; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x000080D4; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000080D8; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x000080DC; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x000080E0; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x000080E4; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x000080E8; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x000080EC; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x000080F0; // type:object size:0x4 scope:local align:4 data:float
+@653 = .rodata:0x000080F8; // type:object size:0x8 scope:local align:8 data:double
+@705 = .rodata:0x00008100; // type:object size:0x4 scope:local align:4 data:float
+@802 = .rodata:0x00008104; // type:object size:0x4 scope:local align:4 data:float
+@803 = .rodata:0x00008108; // type:object size:0x4 scope:local align:4 data:float
+@818 = .rodata:0x00008110; // type:object size:0x8 scope:local align:8 data:double
+@923 = .rodata:0x00008118; // type:object size:0x8 scope:local align:8 data:double
+@950 = .rodata:0x00008120; // type:object size:0x4 scope:local align:4 data:float
+@951 = .rodata:0x00008124; // type:object size:0x4 scope:local align:4 data:float
+@971 = .rodata:0x00008128; // type:object size:0x4 scope:local align:4 data:float
+@1025 = .rodata:0x0000812C; // type:object size:0x4 scope:local align:4 data:float
+@1151 = .rodata:0x00008130; // type:object size:0x4 scope:local align:4 data:float
+@1418 = .rodata:0x00008134; // type:object size:0x4 scope:local align:4 data:float
+@1419 = .rodata:0x00008138; // type:object size:0x4 scope:local align:4 data:float
+@1492 = .rodata:0x0000813C; // type:object size:0x4 scope:local align:4 data:float
+@1583 = .rodata:0x00008140; // type:object size:0x4 scope:local align:4 data:float
+@1660 = .rodata:0x00008144; // type:object size:0x4 scope:local align:4 data:float
+@1744 = .rodata:0x00008148; // type:object size:0x4 scope:local align:4 data:float
+@1869 = .rodata:0x0000814C; // type:object size:0x4 scope:local align:4 data:float
+@1870 = .rodata:0x00008150; // type:object size:0x4 scope:local align:4 data:float
+@1877 = .rodata:0x00008154; // type:object size:0x4 scope:local align:4 data:4byte
+@1913 = .rodata:0x00008158; // type:object size:0x48 scope:local align:4
+@2335 = .rodata:0x000081A0; // type:object size:0x4 scope:local align:4 data:float
+@2433 = .rodata:0x000081A4; // type:object size:0x4 scope:local align:4 data:float
+@2434 = .rodata:0x000081A8; // type:object size:0x4 scope:local align:4 data:float
+@2435 = .rodata:0x000081AC; // type:object size:0x4 scope:local align:4 data:float
+@2467 = .rodata:0x000081B0; // type:object size:0x4 scope:local align:4 data:float
+@2637 = .rodata:0x000081B4; // type:object size:0x4 scope:local align:4 data:float
+@2721 = .rodata:0x000081B8; // type:object size:0x4 scope:local align:4 data:float
+@3232 = .rodata:0x000081BC; // type:object size:0x4 scope:local align:4 data:float
+@3344 = .rodata:0x000081C0; // type:object size:0x4 scope:local align:4 data:float
+@3521 = .rodata:0x000081C4; // type:object size:0x4 scope:local align:4 data:float
+@3564 = .rodata:0x000081C8; // type:object size:0x4 scope:local align:4 data:float
+@3746 = .rodata:0x000081CC; // type:object size:0x4 scope:local align:4 data:float
+@3774 = .rodata:0x000081D0; // type:object size:0x4 scope:local align:4 data:float
+@3816 = .rodata:0x000081D4; // type:object size:0x4 scope:local align:4 data:float
+@4007 = .rodata:0x000081D8; // type:object size:0x4 scope:local align:4 data:float
+@4067 = .rodata:0x000081DC; // type:object size:0x4 scope:local align:4 data:float
+@4712 = .rodata:0x000081E0; // type:object size:0x4 scope:local align:4 data:float
+@4713 = .rodata:0x000081E4; // type:object size:0x4 scope:local align:4 data:float
+@4714 = .rodata:0x000081E8; // type:object size:0x4 scope:local align:4 data:float
+@4715 = .rodata:0x000081EC; // type:object size:0x4 scope:local align:4 data:float
+@4716 = .rodata:0x000081F0; // type:object size:0x4 scope:local align:4 data:float
+@4717 = .rodata:0x000081F4; // type:object size:0x4 scope:local align:4 data:float
+@5234 = .rodata:0x000081F8; // type:object size:0x4 scope:local align:4 data:float
+@5278 = .rodata:0x000081FC; // type:object size:0x4 scope:local align:4 data:float
+@698 = .rodata:0x00008200; // type:object size:0x4 scope:local align:4 data:float
+@795 = .rodata:0x00008204; // type:object size:0x4 scope:local align:4 data:float
+@796 = .rodata:0x00008208; // type:object size:0x4 scope:local align:4 data:float
+@811 = .rodata:0x00008210; // type:object size:0x8 scope:local align:8 data:double
+@913 = .rodata:0x00008218; // type:object size:0x8 scope:local align:8 data:double
+@940 = .rodata:0x00008220; // type:object size:0x4 scope:local align:4 data:float
+@941 = .rodata:0x00008224; // type:object size:0x4 scope:local align:4 data:float
+@961 = .rodata:0x00008228; // type:object size:0x4 scope:local align:4 data:float
+@1015 = .rodata:0x0000822C; // type:object size:0x4 scope:local align:4 data:float
+@1127 = .rodata:0x00008230; // type:object size:0x4 scope:local align:4 data:float
+@1405 = .rodata:0x00008234; // type:object size:0x4 scope:local align:4 data:float
+@1406 = .rodata:0x00008238; // type:object size:0x4 scope:local align:4 data:float
+@1462 = .rodata:0x0000823C; // type:object size:0x4 scope:local align:4 data:float
+@1530 = .rodata:0x00008240; // type:object size:0x4 scope:local align:4 data:float
+@1598 = .rodata:0x00008244; // type:object size:0x4 scope:local align:4 data:float
+@1599 = .rodata:0x00008248; // type:object size:0x4 scope:local align:4 data:float
+@1606 = .rodata:0x0000824C; // type:object size:0x4 scope:local align:4 data:4byte
+@1642 = .rodata:0x00008250; // type:object size:0x48 scope:local align:4
+@1773 = .rodata:0x00008298; // type:object size:0x4 scope:local align:4 data:float
+@1794 = .rodata:0x0000829C; // type:object size:0x4 scope:local align:4 data:float
+@1795 = .rodata:0x000082A0; // type:object size:0x4 scope:local align:4 data:float
+@1991 = .rodata:0x000082A4; // type:object size:0x4 scope:local align:4 data:float
+@2233 = .rodata:0x000082A8; // type:object size:0x4 scope:local align:4 data:float
+@2339 = .rodata:0x000082AC; // type:object size:0x4 scope:local align:4 data:float
+@2376 = .rodata:0x000082B0; // type:object size:0x4 scope:local align:4 data:float
+@2562 = .rodata:0x000082B4; // type:object size:0x4 scope:local align:4 data:float
+@2593 = .rodata:0x000082B8; // type:object size:0x4 scope:local align:4 data:float
+@2845 = .rodata:0x000082BC; // type:object size:0x4 scope:local align:4 data:float
+@2846 = .rodata:0x000082C0; // type:object size:0x4 scope:local align:4 data:float
+@3009 = .rodata:0x000082C4; // type:object size:0x4 scope:local align:4 data:float
+@3042 = .rodata:0x000082C8; // type:object size:0x4 scope:local align:4 data:float
+@3043 = .rodata:0x000082CC; // type:object size:0x4 scope:local align:4 data:float
+@3116 = .rodata:0x000082D0; // type:object size:0x4 scope:local align:4 data:float
+@3169 = .rodata:0x000082D4; // type:object size:0x4 scope:local align:4 data:float
+@3519 = .rodata:0x000082D8; // type:object size:0x4 scope:local align:4 data:float
+@3520 = .rodata:0x000082DC; // type:object size:0x4 scope:local align:4 data:float
+@3521 = .rodata:0x000082E0; // type:object size:0x4 scope:local align:4 data:float
+@3522 = .rodata:0x000082E4; // type:object size:0x4 scope:local align:4 data:float
+@3523 = .rodata:0x000082E8; // type:object size:0x4 scope:local align:4 data:float
+@3905 = .rodata:0x000082EC; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x000082F0; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x000082F4; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x000082F8; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x000082FC; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00008300; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x00008304; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x00008308; // type:object size:0x4 scope:local align:4 data:float
+@606 = .rodata:0x0000830C; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x00008310; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00008314; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x00008318; // type:object size:0x4 scope:local align:4 data:float
+@648 = .rodata:0x0000831C; // type:object size:0x4 scope:local align:4 data:float
+@649 = .rodata:0x00008320; // type:object size:0x4 scope:local align:4 data:float
+@650 = .rodata:0x00008324; // type:object size:0x4 scope:local align:4 data:float
+@736 = .rodata:0x00008328; // type:object size:0x4 scope:local align:4 data:float
+@824 = .rodata:0x0000832C; // type:object size:0x4 scope:local align:4 data:float
+@825 = .rodata:0x00008330; // type:object size:0x4 scope:local align:4 data:float
+@1015 = .rodata:0x00008334; // type:object size:0x4 scope:local align:4 data:float
+@1016 = .rodata:0x00008338; // type:object size:0x4 scope:local align:4 data:float
+@1019 = .rodata:0x00008340; // type:object size:0x8 scope:local align:8 data:double
+@1343 = .rodata:0x00008348; // type:object size:0x4 scope:local align:4 data:float
+@1719 = .rodata:0x0000834C; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00008350; // type:object size:0x4 scope:local align:4 data:float
+@783 = .rodata:0x00008354; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00008358; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x0000835C; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00008360; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00008364; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00008368; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x0000836C; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00008370; // type:object size:0x4 scope:local align:4 data:float
+@578 = .rodata:0x00008374; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00008378; // type:object size:0x4 scope:local align:4 data:float
+@652 = .rodata:0x0000837C; // type:object size:0x4 scope:local align:4 data:float
+@653 = .rodata:0x00008380; // type:object size:0x4 scope:local align:4 data:float
+@654 = .rodata:0x00008384; // type:object size:0x4 scope:local align:4 data:float
+@659 = .rodata:0x00008388; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x0000838C; // type:object size:0x4 scope:local align:4 data:float
+@661 = .rodata:0x00008390; // type:object size:0x4 scope:local align:4 data:float
+@747 = .rodata:0x00008394; // type:object size:0x4 scope:local align:4 data:float
+@835 = .rodata:0x00008398; // type:object size:0x4 scope:local align:4 data:float
+@836 = .rodata:0x0000839C; // type:object size:0x4 scope:local align:4 data:float
+@1026 = .rodata:0x000083A0; // type:object size:0x4 scope:local align:4 data:float
+@1027 = .rodata:0x000083A4; // type:object size:0x4 scope:local align:4 data:float
+@1030 = .rodata:0x000083A8; // type:object size:0x8 scope:local align:8 data:double
+@1153 = .rodata:0x000083B0; // type:object size:0x4 scope:local align:4 data:float
+@1355 = .rodata:0x000083B4; // type:object size:0x4 scope:local align:4 data:float
+@1731 = .rodata:0x000083B8; // type:object size:0x4 scope:local align:4 data:float
+@2199 = .rodata:0x000083BC; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x000083C0; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x000083C4; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x000083C8; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x000083CC; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x000083D0; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x000083D4; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000083D8; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000083DC; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x000083E0; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000083E4; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x000083E8; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x000083EC; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x000083F0; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x000083F4; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000083F8; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x000083FC; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00008400; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00008404; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008408; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x00008410; // type:object size:0x8 scope:local align:8 data:double
+@569 = .rodata:0x00008418; // type:object size:0x4 scope:local align:4 data:float
+@574 = .rodata:0x0000841C; // type:object size:0x4 scope:local align:4 data:float
+@575 = .rodata:0x00008420; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00008424; // type:object size:0x4 scope:local align:4 data:float
+@653 = .rodata:0x00008428; // type:object size:0x4 scope:local align:4 data:float
+@793 = .rodata:0x0000842C; // type:object size:0x4 scope:local align:4 data:float
+@800 = .rodata:0x00008430; // type:object size:0x4 scope:local align:4 data:float
+@815 = .rodata:0x00008434; // type:object size:0x4 scope:local align:4 data:float
+@851 = .rodata:0x00008438; // type:object size:0x4 scope:local align:4 data:float
+@970 = .rodata:0x0000843C; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00008440; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008444; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x00008448; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000844C; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00008450; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00008454; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00008458; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x0000845C; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x00008460; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00008464; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00008468; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x0000846C; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00008470; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00008474; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00008478; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x0000847C; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00008480; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00008484; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x00008488; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00008490; // type:object size:0x8 scope:local align:8 data:double
+@548 = .rodata:0x00008498; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x0000849C; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x000084A0; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x000084A4; // type:object size:0x4 scope:local align:4 data:float
+@666 = .rodata:0x000084A8; // type:object size:0x4 scope:local align:4 data:float
+@779 = .rodata:0x000084AC; // type:object size:0x4 scope:local align:4 data:float
+@786 = .rodata:0x000084B0; // type:object size:0x4 scope:local align:4 data:float
+@801 = .rodata:0x000084B4; // type:object size:0x4 scope:local align:4 data:float
+@837 = .rodata:0x000084B8; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000084C0; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x000084C4; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x000084C8; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x000084CC; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x000084D0; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x000084D4; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x000084D8; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x000084E0; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x000084E4; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x000084E8; // type:object size:0x4 scope:local align:4 data:float
+@578 = .rodata:0x000084F0; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x000084F4; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x000084F8; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x000084FC; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00008500; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00008504; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00008508; // type:object size:0x4 scope:local align:4 data:float
+@602 = .rodata:0x0000850C; // type:object size:0x4 scope:local align:4 data:float
+@681 = .rodata:0x00008510; // type:object size:0x4 scope:local align:4 data:float
+@682 = .rodata:0x00008514; // type:object size:0x4 scope:local align:4 data:float
+@683 = .rodata:0x00008518; // type:object size:0x4 scope:local align:4 data:float
+@684 = .rodata:0x0000851C; // type:object size:0x4 scope:local align:4 data:float
+@685 = .rodata:0x00008520; // type:object size:0x4 scope:local align:4 data:float
+@686 = .rodata:0x00008524; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x00008528; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00008530; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00008534; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00008538; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x0000853C; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00008540; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00008544; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00008548; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x0000854C; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00008550; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00008554; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00008558; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x0000855C; // type:object size:0x4 scope:local align:4 data:float
+@755 = .rodata:0x00008560; // type:object size:0x4 scope:local align:4 data:float
+@854 = .rodata:0x00008564; // type:object size:0x4 scope:local align:4 data:float
+@855 = .rodata:0x00008568; // type:object size:0x4 scope:local align:4 data:float
+@856 = .rodata:0x0000856C; // type:object size:0x4 scope:local align:4 data:float
+@1043 = .rodata:0x00008570; // type:object size:0x4 scope:local align:4 data:float
+@1044 = .rodata:0x00008574; // type:object size:0x4 scope:local align:4 data:float
+@1047 = .rodata:0x00008578; // type:object size:0x8 scope:local align:8 data:double
+@1185 = .rodata:0x00008580; // type:object size:0x4 scope:local align:4 data:float
+@1301 = .rodata:0x00008584; // type:object size:0x4 scope:local align:4 data:float
+@1603 = .rodata:0x00008588; // type:object size:0x4 scope:local align:4 data:float
+@2047 = .rodata:0x0000858C; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00008590; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00008598; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000859C; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x000085A0; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x000085A4; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x000085A8; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x000085AC; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x000085B0; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x000085B4; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x000085B8; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000085BC; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x000085C0; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x000085C4; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000085C8; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x000085CC; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x000085D0; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x000085D4; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x000085D8; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000085DC; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x000085E0; // type:object size:0x8 scope:local align:8 data:double
+@565 = .rodata:0x000085E8; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x000085EC; // type:object size:0x4 scope:local align:4 data:float
+@785 = .rodata:0x000085F0; // type:object size:0x4 scope:local align:4 data:float
+@786 = .rodata:0x000085F4; // type:object size:0x4 scope:local align:4 data:float
+@798 = .rodata:0x000085F8; // type:object size:0x4 scope:local align:4 data:float
+@799 = .rodata:0x000085FC; // type:object size:0x4 scope:local align:4 data:float
+@876 = .rodata:0x00008600; // type:object size:0x4 scope:local align:4 data:float
+@888 = .rodata:0x00008604; // type:object size:0x4 scope:local align:4 data:float
+@680 = .rodata:0x00008608; // type:object size:0x4 scope:local align:4 data:float
+@681 = .rodata:0x0000860C; // type:object size:0x4 scope:local align:4 data:float
+@808 = .rodata:0x00008610; // type:object size:0x4 scope:local align:4 data:float
+@1446 = .rodata:0x00008614; // type:object size:0x4 scope:local align:4 data:float
+@1532 = .rodata:0x00008618; // type:object size:0x4 scope:local align:4 data:float
+@1533 = .rodata:0x0000861C; // type:object size:0x4 scope:local align:4 data:float
+@1569 = .rodata:0x00008620; // type:object size:0x4 scope:local align:4 data:float
+@1570 = .rodata:0x00008624; // type:object size:0x4 scope:local align:4 data:float
+@1624 = .rodata:0x00008628; // type:object size:0x4 scope:local align:4 data:float
+@1675 = .rodata:0x00008630; // type:object size:0x8 scope:local align:8 data:double
+@1696 = .rodata:0x00008638; // type:object size:0x4 scope:local align:4 data:float
+@1697 = .rodata:0x0000863C; // type:object size:0x4 scope:local align:4 data:float
+@1826 = .rodata:0x00008640; // type:object size:0x4 scope:local align:4 data:float
+@1827 = .rodata:0x00008644; // type:object size:0x4 scope:local align:4 data:float
+@1828 = .rodata:0x00008648; // type:object size:0x4 scope:local align:4 data:float
+@1829 = .rodata:0x0000864C; // type:object size:0x4 scope:local align:4 data:float
+@1830 = .rodata:0x00008650; // type:object size:0x4 scope:local align:4 data:float
+@1831 = .rodata:0x00008654; // type:object size:0x4 scope:local align:4 data:float
+@1854 = .rodata:0x00008658; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00008660; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00008664; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00008668; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x0000866C; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00008670; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x00008674; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00008678; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000867C; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00008680; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00008684; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x00008688; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x0000868C; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x00008690; // type:object size:0x8 scope:local align:8 data:double
+@479 = .rodata:0x00008698; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x0000869C; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x000086A0; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x000086A4; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x000086A8; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x000086AC; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x000086B0; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x000086B8; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x000086BC; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x000086C0; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x000086C4; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x000086C8; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x000086CC; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x000086D0; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x000086D4; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x000086D8; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x000086DC; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x000086E0; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000086E4; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x000086E8; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x000086EC; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x000086F0; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x000086F4; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x000086F8; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x000086FC; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x00008700; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00008704; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00008708; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000870C; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00008710; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00008714; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00008718; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x0000871C; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00008720; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x00008724; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x00008728; // type:object size:0x4 scope:local align:4 data:float
+@720 = .rodata:0x0000872C; // type:object size:0x4 scope:local align:4 data:float
+@721 = .rodata:0x00008730; // type:object size:0x4 scope:local align:4 data:float
+@738 = .rodata:0x00008734; // type:object size:0x4 scope:local align:4 data:float
+@739 = .rodata:0x00008738; // type:object size:0x4 scope:local align:4 data:float
+@740 = .rodata:0x0000873C; // type:object size:0x4 scope:local align:4 data:float
+@741 = .rodata:0x00008740; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x00008744; // type:object size:0x4 scope:local align:4 data:float
+@755 = .rodata:0x00008748; // type:object size:0x4 scope:local align:4 data:float
+@756 = .rodata:0x0000874C; // type:object size:0x4 scope:local align:4 data:float
+@761 = .rodata:0x00008750; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00008754; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00008758; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00008760; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00008764; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00008768; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x0000876C; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x00008770; // type:object size:0x4 scope:local align:4 data:float
+@679 = .rodata:0x00008774; // type:object size:0x4 scope:local align:4 data:float
+@705 = .rodata:0x00008778; // type:object size:0x4 scope:local align:4 data:float
+@706 = .rodata:0x0000877C; // type:object size:0x4 scope:local align:4 data:float
+@714 = .rodata:0x00008780; // type:object size:0x4 scope:local align:4 data:float
+@715 = .rodata:0x00008784; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00008788; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00008790; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00008794; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00008798; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x0000879C; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x000087A0; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x000087A4; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x000087A8; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x000087AC; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x000087B0; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x000087B4; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x000087B8; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x000087BC; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000087C0; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x000087C4; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x000087C8; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x000087CC; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x000087D0; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x000087D4; // type:object size:0x4 scope:local align:4 data:float
+@559 = .rodata:0x000087D8; // type:object size:0x8 scope:local align:8 data:double
+@500 = .rodata:0x000087E0; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x000087E4; // type:object size:0x4 scope:local align:4 data:float
+@1012 = .rodata:0x000087E8; // type:object size:0x4 scope:local align:4 data:float
+@1013 = .rodata:0x000087EC; // type:object size:0x4 scope:local align:4 data:float
+@1014 = .rodata:0x000087F0; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x000087F8; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x000087FC; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x00008800; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x00008804; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00008808; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x0000880C; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00008810; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00008814; // type:object size:0x4 scope:local align:4 data:float
+@571 = .rodata:0x00008818; // type:object size:0x4 scope:local align:4 data:float
+@572 = .rodata:0x0000881C; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00008820; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x00008828; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x0000882C; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x00008830; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x00008834; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00008838; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x0000883C; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00008840; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00008844; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00008848; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x0000884C; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00008850; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00008854; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00008858; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x0000885C; // type:object size:0x4 scope:local align:4 data:float
+@722 = .rodata:0x00008860; // type:object size:0x4 scope:local align:4 data:float
+@810 = .rodata:0x00008864; // type:object size:0x4 scope:local align:4 data:float
+@811 = .rodata:0x00008868; // type:object size:0x4 scope:local align:4 data:float
+@1001 = .rodata:0x0000886C; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x00008870; // type:object size:0x4 scope:local align:4 data:float
+@1005 = .rodata:0x00008878; // type:object size:0x8 scope:local align:8 data:double
+@1128 = .rodata:0x00008880; // type:object size:0x4 scope:local align:4 data:float
+@1330 = .rodata:0x00008884; // type:object size:0x4 scope:local align:4 data:float
+@1706 = .rodata:0x00008888; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00008890; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00008898; // type:object size:0x8 scope:local align:8 data:double
+@697 = .rodata:0x000088A0; // type:object size:0x4 scope:local align:4 data:float
+@842 = .rodata:0x000088A4; // type:object size:0x4 scope:local align:4 data:float
+@913 = .rodata:0x000088A8; // type:object size:0x4 scope:local align:4 data:float
+@992 = .rodata:0x000088AC; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x000088B0; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x000088B4; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x000088B8; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x000088BC; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x000088C0; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x000088C4; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x000088C8; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x000088CC; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x000088D0; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x000088D4; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x000088D8; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x000088DC; // type:object size:0x4 scope:local align:4 data:float
+@726 = .rodata:0x000088E0; // type:object size:0x4 scope:local align:4 data:float
+@739 = .rodata:0x000088E4; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x000088E8; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x000088EC; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x000088F0; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x000088F4; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x000088F8; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x000088FC; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00008900; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00008904; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00008908; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x0000890C; // type:object size:0x4 scope:local align:4 data:float
+@573 = .rodata:0x00008910; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00008914; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00008918; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x0000891C; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00008920; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00008924; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00008928; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x0000892C; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x00008930; // type:object size:0x4 scope:local align:4 data:float
+@763 = .rodata:0x00008934; // type:object size:0x4 scope:local align:4 data:float
+@851 = .rodata:0x00008938; // type:object size:0x4 scope:local align:4 data:float
+@852 = .rodata:0x0000893C; // type:object size:0x4 scope:local align:4 data:float
+@1042 = .rodata:0x00008940; // type:object size:0x4 scope:local align:4 data:float
+@1045 = .rodata:0x00008948; // type:object size:0x8 scope:local align:8 data:double
+@1168 = .rodata:0x00008950; // type:object size:0x4 scope:local align:4 data:float
+@1370 = .rodata:0x00008954; // type:object size:0x4 scope:local align:4 data:float
+@1746 = .rodata:0x00008958; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00008960; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00008964; // type:object size:0x4 scope:local align:4 data:float
+@788 = .rodata:0x00008968; // type:object size:0x4 scope:local align:4 data:float
+@790 = .rodata:0x00008970; // type:object size:0x8 scope:local align:8 data:double
+@801 = .rodata:0x00008978; // type:object size:0x8 scope:local align:8 data:double
+@577 = .rodata:0x00008980; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x00008984; // type:object size:0x4 scope:local align:4 data:float
+@646 = .rodata:0x00008988; // type:object size:0x4 scope:local align:4 data:float
+@647 = .rodata:0x0000898C; // type:object size:0x4 scope:local align:4 data:float
+@648 = .rodata:0x00008990; // type:object size:0x4 scope:local align:4 data:float
+@649 = .rodata:0x00008994; // type:object size:0x4 scope:local align:4 data:float
+@691 = .rodata:0x00008998; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x000089A0; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x000089A4; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x000089A8; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x000089AC; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x000089B0; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x000089B4; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x000089B8; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x000089BC; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x000089C0; // type:object size:0x4 scope:local align:4 data:float
+@740 = .rodata:0x000089C4; // type:object size:0x4 scope:local align:4 data:float
+@741 = .rodata:0x000089C8; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x000089D0; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x000089D4; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x000089D8; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x000089E0; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x000089E4; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x000089E8; // type:object size:0x4 scope:local align:4 data:float
+@572 = .rodata:0x000089F0; // type:object size:0x8 scope:local align:8 data:double
+@581 = .rodata:0x000089F8; // type:object size:0x4 scope:local align:4 data:float
+@582 = .rodata:0x000089FC; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00008A00; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00008A04; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00008A08; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x00008A10; // type:object size:0x8 scope:local align:8 data:double
+@670 = .rodata:0x00008A18; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00008A1C; // type:object size:0x4 scope:local align:4 data:float
+@680 = .rodata:0x00008A20; // type:object size:0x4 scope:local align:4 data:float
+@713 = .rodata:0x00008A24; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00008A28; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00008A2C; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00008A30; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00008A34; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00008A38; // type:object size:0x4 scope:local align:4 data:float
+@572 = .rodata:0x00008A3C; // type:object size:0x4 scope:local align:4 data:float
+@573 = .rodata:0x00008A40; // type:object size:0x4 scope:local align:4 data:float
+@620 = .rodata:0x00008A44; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00008A48; // type:object size:0x4 scope:local align:4 data:float
+@726 = .rodata:0x00008A4C; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00008A50; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x00008A54; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008A58; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x00008A60; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00008A64; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x00008A68; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00008A70; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00008A74; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00008A78; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00008A7C; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00008A80; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008A84; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00008A88; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00008A8C; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00008A90; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00008A98; // type:object size:0x8 scope:local align:8 data:double
+@540 = .rodata:0x00008AA0; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00008AA4; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00008AA8; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00008AAC; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00008AB0; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00008AB4; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x00008AB8; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00008ABC; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00008AC0; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00008AC4; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x00008AC8; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00008AD0; // type:object size:0x8 scope:local align:8 data:double
+@624 = .rodata:0x00008AD8; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00008ADC; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00008AE0; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x00008AE8; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00008AEC; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00008AF0; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00008AF4; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008AF8; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00008B00; // type:object size:0x8 scope:local align:8 data:double
+@495 = .rodata:0x00008B08; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00008B0C; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00008B10; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00008B18; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x00008B1C; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00008B20; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00008B28; // type:object size:0x4 scope:local align:4 data:float
+@572 = .rodata:0x00008B2C; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00008B30; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00008B38; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x00008B3C; // type:object size:0x4 scope:local align:4 data:float
+aETKY_present_table = .rodata:0x00008B40; // type:object size:0x18 scope:global align:4
+@481 = .rodata:0x00008B58; // type:object size:0x8 scope:local align:8 data:double
+@517 = .rodata:0x00008B60; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00008B68; // type:object size:0x8 scope:local align:8 data:double
+@597 = .rodata:0x00008B70; // type:object size:0x8 scope:local align:8 data:double
+@598 = .rodata:0x00008B78; // type:object size:0x8 scope:local align:8 data:double
+@599 = .rodata:0x00008B80; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x00008B84; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x00008B88; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00008B8C; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00008B90; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x00008B94; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x00008B98; // type:object size:0x4 scope:local align:4 data:float
+@786 = .rodata:0x00008B9C; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00008BA0; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00008BA4; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00008BA8; // type:object size:0x4 scope:local align:4 data:float
+@574 = .rodata:0x00008BAC; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00008BB0; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00008BB4; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00008BB8; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00008BBC; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00008BC0; // type:object size:0x4 scope:local align:4 data:float
+@619 = .rodata:0x00008BC4; // type:object size:0x4 scope:local align:4 data:float
+@620 = .rodata:0x00008BC8; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x00008BCC; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x00008BD0; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00008BD4; // type:object size:0x4 scope:local align:4 data:float
+@662 = .rodata:0x00008BD8; // type:object size:0x4 scope:local align:4 data:float
+@708 = .rodata:0x00008BDC; // type:object size:0x4 scope:local align:4 data:float
+@709 = .rodata:0x00008BE0; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x00008BE8; // type:object size:0x8 scope:local align:8 data:double
+@711 = .rodata:0x00008BF0; // type:object size:0x8 scope:local align:8 data:double
+@740 = .rodata:0x00008BF8; // type:object size:0x4 scope:local align:4 data:float
+@741 = .rodata:0x00008BFC; // type:object size:0x4 scope:local align:4 data:float
+@790 = .rodata:0x00008C00; // type:object size:0x4 scope:local align:4 data:float
+@801 = .rodata:0x00008C04; // type:object size:0x4 scope:local align:4 data:float
+@956 = .rodata:0x00008C08; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x00008C10; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x00008C14; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x00008C18; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x00008C1C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00008C20; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x00008C24; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x00008C28; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x00008C2C; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x00008C30; // type:object size:0x4 scope:local align:4 data:float
+@443 = .rodata:0x00008C34; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x00008C38; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00008C3C; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00008C40; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00008C44; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00008C48; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008C4C; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00008C50; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00008C54; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00008C58; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00008C5C; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00008C60; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x00008C68; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x00008C6C; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x00008C70; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x00008C74; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x00008C78; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00008C7C; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00008C80; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00008C84; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00008C88; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x00008C8C; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00008C90; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x00008C94; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00008C98; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x00008C9C; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x00008CA0; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00008CA4; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x00008CA8; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00008CAC; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x00008CB0; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x00008CB4; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x00008CB8; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00008CBC; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00008CC0; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00008CC8; // type:object size:0x8 scope:local align:8 data:double
+@673 = .rodata:0x00008CD0; // type:object size:0x8 scope:local align:8 data:double
+@674 = .rodata:0x00008CD8; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x00008CDC; // type:object size:0x4 scope:local align:4 data:float
+@695 = .rodata:0x00008CE0; // type:object size:0x4 scope:local align:4 data:float
+@708 = .rodata:0x00008CE4; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x00008CE8; // type:object size:0x8 scope:local align:8 data:double
+@716 = .rodata:0x00008CF0; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x00008CF4; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x00008CF8; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00008D00; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x00008D04; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00008D08; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00008D0C; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00008D10; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00008D14; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00008D18; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00008D1C; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00008D20; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00008D24; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00008D28; // type:object size:0x4 scope:local align:4 data:float
+@611 = .rodata:0x00008D2C; // type:object size:0x4 scope:local align:4 data:float
+@612 = .rodata:0x00008D30; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00008D34; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00008D38; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00008D3C; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00008D40; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00008D44; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x00008D48; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x00008D4C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x00008D50; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00008D54; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00008D58; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00008D5C; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00008D60; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00008D64; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00008D68; // type:object size:0x8 scope:local align:8 data:double
+@525 = .rodata:0x00008D70; // type:object size:0x8 scope:local align:8 data:double
+@526 = .rodata:0x00008D78; // type:object size:0x4 scope:local align:4 data:float
+@571 = .rodata:0x00008D7C; // type:object size:0x4 scope:local align:4 data:float
+@576 = .rodata:0x00008D80; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00008D84; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00008D88; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00008D8C; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00008D90; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00008D94; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x00008D98; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00008D9C; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00008DA0; // type:object size:0x4 scope:local align:4 data:float
+@694 = .rodata:0x00008DA4; // type:object size:0x4 scope:local align:4 data:float
+@695 = .rodata:0x00008DA8; // type:object size:0x4 scope:local align:4 data:float
+@696 = .rodata:0x00008DAC; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x00008DB0; // type:object size:0x4 scope:local align:4 data:float
+@758 = .rodata:0x00008DB4; // type:object size:0x4 scope:local align:4 data:float
+@759 = .rodata:0x00008DB8; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00008DBC; // type:object size:0x4 scope:local align:4 data:float
+@766 = .rodata:0x00008DC0; // type:object size:0x4 scope:local align:4 data:float
+@779 = .rodata:0x00008DC4; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x00008DC8; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x00008DCC; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x00008DD0; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x00008DD4; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x00008DD8; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x00008DDC; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x00008DE0; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00008DE4; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00008DE8; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00008DEC; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00008DF0; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00008DF4; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00008DF8; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00008DFC; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x00008E00; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00008E04; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00008E08; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008E0C; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00008E10; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00008E14; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00008E18; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00008E1C; // type:object size:0x4 scope:local align:4 data:float
+@606 = .rodata:0x00008E20; // type:object size:0x4 scope:local align:4 data:float
+@607 = .rodata:0x00008E24; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00008E28; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00008E2C; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00008E30; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00008E34; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00008E38; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x00008E3C; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00008E40; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x00008E44; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00008E48; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x00008E4C; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00008E50; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00008E54; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00008E58; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00008E5C; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00008E60; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x00008E64; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x00008E68; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00008E6C; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00008E70; // type:object size:0x8 scope:local align:8 data:double
+@552 = .rodata:0x00008E78; // type:object size:0x8 scope:local align:8 data:double
+@553 = .rodata:0x00008E80; // type:object size:0x8 scope:local align:8 data:double
+@554 = .rodata:0x00008E88; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x00008E8C; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x00008E90; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x00008E94; // type:object size:0x4 scope:local align:4 data:float
+@578 = .rodata:0x00008E98; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00008E9C; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00008EA0; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x00008EA8; // type:object size:0xC scope:local align:4 data:4byte
+@465 = .rodata:0x00008EB4; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x00008EB8; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00008EBC; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00008EC0; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008EC4; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00008EC8; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x00008ECC; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x00008ED0; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x00008ED4; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x00008ED8; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00008EDC; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x00008EE0; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00008EE4; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00008EE8; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00008EEC; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x00008EF0; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x00008EF4; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x00008EF8; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x00008F00; // type:object size:0x8 scope:local align:8 data:double
+@570 = .rodata:0x00008F08; // type:object size:0x8 scope:local align:8 data:double
+@571 = .rodata:0x00008F10; // type:object size:0x8 scope:local align:8 data:double
+@572 = .rodata:0x00008F18; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x00008F1C; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00008F20; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00008F24; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00008F28; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x00008F2C; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x00008F30; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00008F34; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00008F38; // type:object size:0x8 scope:local align:8 data:double
+@643 = .rodata:0x00008F40; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00008F48; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00008F4C; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00008F50; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00008F54; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x00008F58; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x00008F5C; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x00008F60; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00008F64; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00008F68; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00008F6C; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x00008F70; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00008F74; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00008F78; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00008F7C; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00008F80; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x00008F84; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x00008F88; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x00008F90; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x00008F94; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x00008F98; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00008F9C; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00008FA0; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00008FA4; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00008FA8; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00008FAC; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00008FB0; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00008FB4; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00008FB8; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00008FBC; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00008FC0; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00008FC4; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00008FC8; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00008FCC; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x00008FD0; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00008FD4; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00008FD8; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00008FDC; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00008FE0; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x00008FE4; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x00008FE8; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00008FEC; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00008FF0; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00008FF4; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00008FF8; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00008FFC; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00009000; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x00009004; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00009008; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x0000900C; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x00009010; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00009014; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00009018; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x0000901C; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00009020; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00009024; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00009028; // type:object size:0x8 scope:local align:8 data:double
+@482 = .rodata:0x00009030; // type:object size:0x4 scope:local align:4 data:float
+@576 = .rodata:0x00009034; // type:object size:0x4 scope:local align:4 data:float
+@577 = .rodata:0x00009038; // type:object size:0x4 scope:local align:4 data:float
+@578 = .rodata:0x0000903C; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x00009040; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x00009044; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x00009048; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x0000904C; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x00009050; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00009054; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00009058; // type:object size:0x4 scope:local align:4 data:float
+@663 = .rodata:0x0000905C; // type:object size:0x4 scope:local align:4 data:float
+@664 = .rodata:0x00009060; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x00009064; // type:object size:0x4 scope:local align:4 data:float
+@666 = .rodata:0x00009068; // type:object size:0x4 scope:local align:4 data:float
+@667 = .rodata:0x0000906C; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00009070; // type:object size:0x4 scope:local align:4 data:float
+@674 = .rodata:0x00009074; // type:object size:0x4 scope:local align:4 data:float
+@685 = .rodata:0x00009078; // type:object size:0x4 scope:local align:4 data:float
+@686 = .rodata:0x0000907C; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x00009080; // type:object size:0x4 scope:local align:4 data:float
+@688 = .rodata:0x00009084; // type:object size:0x4 scope:local align:4 data:float
+@689 = .rodata:0x00009088; // type:object size:0x4 scope:local align:4 data:float
+@703 = .rodata:0x0000908C; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x00009090; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x00009094; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x00009098; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000909C; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x000090A0; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x000090A4; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x000090A8; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x000090AC; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x000090B0; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x000090B4; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x000090B8; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x000090BC; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x000090C0; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x000090C4; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x000090C8; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x000090CC; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x000090D0; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x000090D8; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x000090DC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x000090E0; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x000090E4; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x000090E8; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x000090EC; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x000090F0; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x000090F4; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x000090F8; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x000090FC; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00009100; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00009104; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00009108; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x0000910C; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x00009110; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00009114; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x00009118; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x0000911C; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x00009120; // type:object size:0x4 scope:local align:4 data:float
+@575 = .rodata:0x00009124; // type:object size:0x4 scope:local align:4 data:float
+@576 = .rodata:0x00009128; // type:object size:0x4 scope:local align:4 data:float
+@577 = .rodata:0x0000912C; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00009130; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00009134; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00009138; // type:object size:0x8 scope:local align:8 data:double
+@403 = .rodata:0x00009140; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x00009144; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x00009148; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000914C; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x00009150; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x00009154; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x00009158; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000915C; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x00009160; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x00009164; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00009168; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x0000916C; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00009170; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00009174; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x00009178; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x0000917C; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00009180; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x00009184; // type:object size:0x4 scope:local align:4 data:float
+@551 = .rodata:0x00009188; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00009190; // type:object size:0x8 scope:local align:8 data:double
+@586 = .rodata:0x00009198; // type:object size:0x8 scope:local align:8 data:double
+@587 = .rodata:0x000091A0; // type:object size:0x8 scope:local align:8 data:double
+@594 = .rodata:0x000091A8; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x000091AC; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x000091B0; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x000091B4; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x000091B8; // type:object size:0x8 scope:local align:8 data:double
+@720 = .rodata:0x000091C0; // type:object size:0x4 scope:local align:4 data:float
+@721 = .rodata:0x000091C4; // type:object size:0x4 scope:local align:4 data:float
+@722 = .rodata:0x000091C8; // type:object size:0x4 scope:local align:4 data:float
+@753 = .rodata:0x000091CC; // type:object size:0x4 scope:local align:4 data:float
+@775 = .rodata:0x000091D0; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x000091D8; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x000091DC; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x000091E0; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x000091E4; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x000091E8; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x000091EC; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x000091F0; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x000091F4; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x000091F8; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x000091FC; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00009200; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x00009204; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x00009208; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x0000920C; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00009210; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00009214; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00009218; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x0000921C; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x00009220; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x00009224; // type:object size:0x4 scope:local align:4 data:float
+@750 = .rodata:0x00009228; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x0000922C; // type:object size:0x4 scope:local align:4 data:float
+@752 = .rodata:0x00009230; // type:object size:0x4 scope:local align:4 data:float
+@753 = .rodata:0x00009234; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x00009238; // type:object size:0x4 scope:local align:4 data:float
+@757 = .rodata:0x00009240; // type:object size:0x8 scope:local align:8 data:double
+@784 = .rodata:0x00009248; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00009250; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00009254; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00009258; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x0000925C; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00009260; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00009264; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00009268; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x0000926C; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00009270; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00009274; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00009278; // type:object size:0x4 scope:local align:4 data:float
+@649 = .rodata:0x0000927C; // type:object size:0x4 scope:local align:4 data:float
+@650 = .rodata:0x00009280; // type:object size:0x4 scope:local align:4 data:float
+@730 = .rodata:0x00009284; // type:object size:0x4 scope:local align:4 data:float
+@731 = .rodata:0x00009288; // type:object size:0x4 scope:local align:4 data:float
+@755 = .rodata:0x0000928C; // type:object size:0x4 scope:local align:4 data:float
+@756 = .rodata:0x00009290; // type:object size:0x4 scope:local align:4 data:float
+@757 = .rodata:0x00009294; // type:object size:0x4 scope:local align:4 data:float
+@802 = .rodata:0x00009298; // type:object size:0x4 scope:local align:4 data:float
+@803 = .rodata:0x0000929C; // type:object size:0x4 scope:local align:4 data:float
+@804 = .rodata:0x000092A0; // type:object size:0x4 scope:local align:4 data:float
+@806 = .rodata:0x000092A8; // type:object size:0x8 scope:local align:8 data:double
+@891 = .rodata:0x000092B0; // type:object size:0x4 scope:local align:4 data:float
+@892 = .rodata:0x000092B4; // type:object size:0x4 scope:local align:4 data:float
+@919 = .rodata:0x000092B8; // type:object size:0x4 scope:local align:4 data:float
+@920 = .rodata:0x000092BC; // type:object size:0x4 scope:local align:4 data:float
+@921 = .rodata:0x000092C0; // type:object size:0x4 scope:local align:4 data:float
+@927 = .rodata:0x000092C4; // type:object size:0x4 scope:local align:4 data:float
+@947 = .rodata:0x000092C8; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x000092D0; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x000092D4; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x000092D8; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x000092DC; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x000092E0; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x000092E4; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x000092E8; // type:object size:0x4 scope:local align:4 data:float
+@570 = .rodata:0x000092EC; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x000092F0; // type:object size:0x4 scope:local align:4 data:float
+@602 = .rodata:0x000092F4; // type:object size:0x4 scope:local align:4 data:float
+@603 = .rodata:0x000092F8; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x000092FC; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00009300; // type:object size:0x4 scope:local align:4 data:float
+@682 = .rodata:0x00009304; // type:object size:0x4 scope:local align:4 data:float
+@701 = .rodata:0x00009308; // type:object size:0x4 scope:local align:4 data:float
+@702 = .rodata:0x0000930C; // type:object size:0x4 scope:local align:4 data:float
+@713 = .rodata:0x00009310; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x00009314; // type:object size:0x4 scope:local align:4 data:float
+@793 = .rodata:0x00009318; // type:object size:0x4 scope:local align:4 data:float
+@794 = .rodata:0x0000931C; // type:object size:0x4 scope:local align:4 data:float
+@795 = .rodata:0x00009320; // type:object size:0x4 scope:local align:4 data:float
+@797 = .rodata:0x00009328; // type:object size:0x8 scope:local align:8 data:double
+@866 = .rodata:0x00009330; // type:object size:0x4 scope:local align:4 data:float
+@867 = .rodata:0x00009334; // type:object size:0x4 scope:local align:4 data:float
+@887 = .rodata:0x00009338; // type:object size:0x4 scope:local align:4 data:float
+@892 = .rodata:0x0000933C; // type:object size:0x4 scope:local align:4 data:float
+@898 = .rodata:0x00009340; // type:object size:0x4 scope:local align:4 data:float
+@911 = .rodata:0x00009344; // type:object size:0x4 scope:local align:4 data:float
+@931 = .rodata:0x00009348; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00009350; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00009354; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00009358; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x0000935C; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00009360; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00009364; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x00009368; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x0000936C; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00009370; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x00009374; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x00009378; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x0000937C; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x00009380; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00009384; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00009388; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00009390; // type:object size:0x8 scope:local align:8 data:double
+@652 = .rodata:0x00009398; // type:object size:0x4 scope:local align:4 data:float
+@653 = .rodata:0x0000939C; // type:object size:0x4 scope:local align:4 data:float
+@654 = .rodata:0x000093A0; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x000093A4; // type:object size:0x4 scope:local align:4 data:float
+@744 = .rodata:0x000093A8; // type:object size:0x4 scope:local align:4 data:float
+@745 = .rodata:0x000093AC; // type:object size:0x4 scope:local align:4 data:float
+@760 = .rodata:0x000093B0; // type:object size:0x4 scope:local align:4 data:float
+@761 = .rodata:0x000093B4; // type:object size:0x4 scope:local align:4 data:float
+@782 = .rodata:0x000093B8; // type:object size:0x4 scope:local align:4 data:float
+@842 = .rodata:0x000093BC; // type:object size:0x4 scope:local align:4 data:float
+@918 = .rodata:0x000093C0; // type:object size:0x4 scope:local align:4 data:float
+@919 = .rodata:0x000093C4; // type:object size:0x4 scope:local align:4 data:float
+@920 = .rodata:0x000093C8; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x000093D0; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x000093D4; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x000093D8; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x000093DC; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x000093E0; // type:object size:0x4 scope:local align:4 data:float
+@581 = .rodata:0x000093E4; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x000093E8; // type:object size:0x4 scope:local align:4 data:float
+@682 = .rodata:0x000093EC; // type:object size:0x4 scope:local align:4 data:float
+@726 = .rodata:0x000093F0; // type:object size:0x4 scope:local align:4 data:float
+@727 = .rodata:0x000093F4; // type:object size:0x4 scope:local align:4 data:float
+@728 = .rodata:0x000093F8; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x000093FC; // type:object size:0x4 scope:local align:4 data:float
+rewrite_data$431 = .rodata:0x00009400; // type:object size:0x2A scope:local align:4 data:byte
+@473 = .rodata:0x0000942C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x00009430; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00009438; // type:object size:0x8 scope:local align:8 data:double
+@490 = .rodata:0x00009440; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00009444; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00009448; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x0000944C; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x00009450; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00009454; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00009458; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x0000945C; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00009460; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00009464; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00009468; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00009470; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x00009474; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00009478; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000947C; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00009480; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00009484; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00009488; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x0000948C; // type:object size:0x4 scope:local align:4 data:float
+@683 = .rodata:0x00009490; // type:object size:0x4 scope:local align:4 data:float
+@727 = .rodata:0x00009494; // type:object size:0x4 scope:local align:4 data:float
+@728 = .rodata:0x00009498; // type:object size:0x4 scope:local align:4 data:float
+@729 = .rodata:0x0000949C; // type:object size:0x4 scope:local align:4 data:float
+@769 = .rodata:0x000094A0; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x000094A8; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x000094AC; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x000094B0; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x000094B4; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x000094B8; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x000094BC; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x000094C0; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x000094C4; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x000094C8; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x000094CC; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x000094D0; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x000094D4; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x000094D8; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x000094DC; // type:object size:0x4 scope:local align:4 data:float
+@686 = .rodata:0x000094E0; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x000094E4; // type:object size:0x4 scope:local align:4 data:float
+@726 = .rodata:0x000094E8; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x000094F0; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x000094F4; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x000094F8; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x000094FC; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00009500; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00009504; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00009508; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00009510; // type:object size:0x8 scope:local align:8 data:double
+@519 = .rodata:0x00009518; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000951C; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x00009520; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00009524; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00009528; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000952C; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00009530; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00009534; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00009538; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x0000953C; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00009540; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x00009544; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00009548; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x0000954C; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00009550; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00009554; // type:object size:0x4 scope:local align:4 data:float
+@689 = .rodata:0x00009558; // type:object size:0x4 scope:local align:4 data:float
+@690 = .rodata:0x0000955C; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x00009560; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x00009564; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00009568; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00009570; // type:object size:0x8 scope:local align:8 data:double
+@620 = .rodata:0x00009578; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x0000957C; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00009580; // type:object size:0x4 scope:local align:4 data:float
+@745 = .rodata:0x00009584; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00009588; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x00009590; // type:object size:0x8 scope:local align:8 data:double
+@566 = .rodata:0x00009598; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x0000959C; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x000095A0; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x000095A8; // type:object size:0x4 scope:local align:4 data:float
+shape_norm_vec$474 = .rodata:0x000095AC; // type:object size:0xC scope:local align:4 data:float
+@495 = .rodata:0x000095B8; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x000095BC; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x000095C0; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x000095C4; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000095C8; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x000095D0; // type:object size:0x4 scope:local align:4 data:float
+base_vec_z$476 = .rodata:0x000095D4; // type:object size:0xC scope:local align:4 data:float
+@501 = .rodata:0x000095E0; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x000095E4; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x000095E8; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x000095EC; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x000095F0; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x000095F4; // type:object size:0x4 scope:local align:4 data:float
+rewrite_data$433 = .rodata:0x000095F8; // type:object size:0x7 scope:local align:4 data:byte
+@447 = .rodata:0x00009600; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009608; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x00009610; // type:object size:0x8 scope:local align:8 data:double
+@460 = .rodata:0x00009618; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x0000961C; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00009620; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00009624; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00009628; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x0000962C; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x00009630; // type:object size:0x4 scope:local align:4 data:float
+@738 = .rodata:0x00009634; // type:object size:0x4 scope:local align:4 data:float
+@783 = .rodata:0x00009638; // type:object size:0x4 scope:local align:4 data:float
+@784 = .rodata:0x0000963C; // type:object size:0x4 scope:local align:4 data:float
+@878 = .rodata:0x00009640; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x00009648; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x0000964C; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00009650; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00009654; // type:object size:0x4 scope:local align:4 data:float
+rewrite_dataA$511 = .rodata:0x00009658; // type:object size:0x3F scope:local align:4 data:byte
+rewrite_dataB$512 = .rodata:0x00009698; // type:object size:0x3F scope:local align:4 data:byte
+rewrite_dataC$513 = .rodata:0x000096D8; // type:object size:0x7 scope:local align:4 data:byte
+@583 = .rodata:0x000096E0; // type:object size:0x8 scope:local align:8 data:double
+@435 = .rodata:0x000096E8; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x000096EC; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x000096F0; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x000096F4; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x000096F8; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x000096FC; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00009700; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00009704; // type:object size:0x4 scope:local align:4 data:float
+@659 = .rodata:0x00009708; // type:object size:0x4 scope:local align:4 data:float
+@660 = .rodata:0x0000970C; // type:object size:0x4 scope:local align:4 data:float
+@661 = .rodata:0x00009710; // type:object size:0x4 scope:local align:4 data:float
+@662 = .rodata:0x00009714; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x00009718; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000971C; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x00009720; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x00009724; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00009728; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009730; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00009734; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00009738; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000973C; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00009740; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00009744; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00009748; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00009750; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00009754; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00009758; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x0000975C; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00009760; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00009764; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00009768; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x00009770; // type:object size:0x8 scope:local align:8 data:double
+@580 = .rodata:0x00009778; // type:object size:0x8 scope:local align:8 data:double
+@585 = .rodata:0x00009780; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00009784; // type:object size:0x4 scope:local align:4 data:float
+@608 = .rodata:0x00009788; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x0000978C; // type:object size:0x4 scope:local align:4 data:float
+@610 = .rodata:0x00009790; // type:object size:0x4 scope:local align:4 data:float
+@739 = .rodata:0x00009794; // type:object size:0x4 scope:local align:4 data:float
+@740 = .rodata:0x00009798; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x000097A0; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x000097A4; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x000097A8; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x000097AC; // type:object size:0x4 scope:local align:4 data:float
+rewrite_data$442 = .rodata:0x000097B0; // type:object size:0x7 scope:local align:4 data:byte
+@443 = .rodata:0x000097B8; // type:object size:0xC scope:local align:4 data:4byte
+@458 = .rodata:0x000097C4; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x000097C8; // type:object size:0x8 scope:local align:8 data:double
+@474 = .rodata:0x000097D0; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x000097D4; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x000097D8; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x000097DC; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x000097E0; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x000097E4; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x000097E8; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x000097F0; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x000097F4; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x000097F8; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x000097FC; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00009800; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x00009804; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00009808; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x0000980C; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00009810; // type:object size:0x8 scope:local align:8 data:double
+@685 = .rodata:0x00009818; // type:object size:0x4 scope:local align:4 data:float
+@729 = .rodata:0x0000981C; // type:object size:0x4 scope:local align:4 data:float
+@731 = .rodata:0x00009820; // type:object size:0x8 scope:local align:8 data:double
+@809 = .rodata:0x00009828; // type:object size:0x4 scope:local align:4 data:float
+@810 = .rodata:0x0000982C; // type:object size:0x4 scope:local align:4 data:float
+@811 = .rodata:0x00009830; // type:object size:0x4 scope:local align:4 data:float
+@812 = .rodata:0x00009834; // type:object size:0x4 scope:local align:4 data:float
+@943 = .rodata:0x00009838; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00009840; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00009844; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00009848; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000984C; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x00009850; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x00009854; // type:object size:0x4 scope:local align:4 data:float
+@443 = .rodata:0x00009858; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000985C; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00009860; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00009864; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00009868; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x0000986C; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00009870; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x00009874; // type:object size:0x4 scope:local align:4 data:float
+@672 = .rodata:0x00009878; // type:object size:0x4 scope:local align:4 data:float
+@712 = .rodata:0x0000987C; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x00009880; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00009888; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000988C; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00009890; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x00009894; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x00009898; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000989C; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x000098A0; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x000098A4; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x000098A8; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x000098AC; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x000098B0; // type:object size:0x8 scope:local align:8 data:double
+@437 = .rodata:0x000098B8; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x000098BC; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x000098C0; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x000098C4; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x000098C8; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x000098CC; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x000098D0; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x000098D4; // type:object size:0x4 scope:local align:4 data:float
+@577 = .rodata:0x000098D8; // type:object size:0x4 scope:local align:4 data:float
+@654 = .rodata:0x000098DC; // type:object size:0x4 scope:local align:4 data:float
+@655 = .rodata:0x000098E0; // type:object size:0x4 scope:local align:4 data:float
+@656 = .rodata:0x000098E4; // type:object size:0x4 scope:local align:4 data:float
+@658 = .rodata:0x000098E8; // type:object size:0x8 scope:local align:8 data:double
+@701 = .rodata:0x000098F0; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x000098F8; // type:object size:0xC scope:local align:4 data:4byte
+@521 = .rodata:0x00009908; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x0000990C; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x00009910; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x00009914; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x00009918; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x0000991C; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00009920; // type:object size:0x8 scope:local align:8 data:double
+@465 = .rodata:0x00009928; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000992C; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x00009930; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x00009934; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00009938; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x0000993C; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x00009940; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00009944; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00009948; // type:object size:0x4 scope:local align:4 data:float
+@646 = .rodata:0x0000994C; // type:object size:0x4 scope:local align:4 data:float
+@704 = .rodata:0x00009950; // type:object size:0x4 scope:local align:4 data:float
+@705 = .rodata:0x00009954; // type:object size:0x4 scope:local align:4 data:float
+@706 = .rodata:0x00009958; // type:object size:0x4 scope:local align:4 data:float
+@708 = .rodata:0x00009960; // type:object size:0x8 scope:local align:8 data:double
+@751 = .rodata:0x00009968; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009970; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00009974; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00009978; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000997C; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00009980; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00009984; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x00009988; // type:object size:0x4 scope:local align:4 data:float
+@578 = .rodata:0x0000998C; // type:object size:0x4 scope:local align:4 data:float
+aSHR_present_init_pos = .rodata:0x00009990; // type:object size:0xC scope:global align:4
+aSHR_present_aim_pos = .rodata:0x0000999C; // type:object size:0xC scope:global align:4
+@598 = .rodata:0x000099A8; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x000099AC; // type:object size:0x4 scope:local align:4 data:float
+@698 = .rodata:0x000099B0; // type:object size:0x4 scope:local align:4 data:float
+@809 = .rodata:0x000099B4; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x000099B8; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x000099BC; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x000099C0; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x000099C4; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x000099C8; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x000099CC; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x000099D0; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x000099D8; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x000099DC; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x000099E0; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x000099E4; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x000099E8; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x000099EC; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x000099F0; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x000099F4; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x000099F8; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x000099FC; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x00009A00; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x00009A04; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00009A08; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00009A0C; // type:object size:0x4 scope:local align:4 data:float
+@686 = .rodata:0x00009A10; // type:object size:0x4 scope:local align:4 data:float
+@687 = .rodata:0x00009A14; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00009A18; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x00009A1C; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00009A20; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00009A24; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x00009A28; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00009A2C; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00009A30; // type:object size:0x8 scope:local align:8 data:double
+@523 = .rodata:0x00009A38; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00009A3C; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x00009A40; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00009A44; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00009A48; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x00009A4C; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00009A50; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009A54; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x00009A58; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00009A5C; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00009A60; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00009A64; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00009A68; // type:object size:0x8 scope:local align:8 data:double
+@635 = .rodata:0x00009A70; // type:object size:0x8 scope:local align:8 data:double
+@636 = .rodata:0x00009A78; // type:object size:0x8 scope:local align:8 data:double
+@637 = .rodata:0x00009A80; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00009A84; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x00009A88; // type:object size:0x4 scope:local align:4 data:float
+@640 = .rodata:0x00009A90; // type:object size:0x8 scope:local align:8 data:double
+@641 = .rodata:0x00009A98; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x00009A9C; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x00009AA0; // type:object size:0x4 scope:local align:4 data:float
+@644 = .rodata:0x00009AA4; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x00009AA8; // type:object size:0x4 scope:local align:4 data:float
+@646 = .rodata:0x00009AAC; // type:object size:0x4 scope:local align:4 data:float
+@647 = .rodata:0x00009AB0; // type:object size:0x4 scope:local align:4 data:float
+@648 = .rodata:0x00009AB4; // type:object size:0x4 scope:local align:4 data:float
+@649 = .rodata:0x00009AB8; // type:object size:0x4 scope:local align:4 data:float
+@684 = .rodata:0x00009ABC; // type:object size:0x4 scope:local align:4 data:float
+@685 = .rodata:0x00009AC0; // type:object size:0x4 scope:local align:4 data:float
+@697 = .rodata:0x00009AC4; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00009AC8; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00009ACC; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x00009AD0; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00009AD4; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x00009AD8; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00009ADC; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00009AE0; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x00009AE4; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00009AE8; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009AEC; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00009AF0; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x00009AF4; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x00009AF8; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00009AFC; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00009B00; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x00009B04; // type:object size:0x4 scope:local align:4 data:float
+@547 = .rodata:0x00009B08; // type:object size:0x4 scope:local align:4 data:float
+@548 = .rodata:0x00009B0C; // type:object size:0x4 scope:local align:4 data:float
+@549 = .rodata:0x00009B10; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00009B14; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00009B18; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x00009B20; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x00009B24; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x00009B28; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x00009B2C; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00009B30; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00009B34; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00009B38; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00009B3C; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x00009B40; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x00009B44; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x00009B48; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00009B4C; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x00009B50; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x00009B54; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x00009B58; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x00009B5C; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x00009B60; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00009B68; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00009B6C; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x00009B70; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x00009B74; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x00009B78; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00009B7C; // type:object size:0x4 scope:local align:4 data:float
+@619 = .rodata:0x00009B80; // type:object size:0x8 scope:local align:8 data:double
+@620 = .rodata:0x00009B88; // type:object size:0x8 scope:local align:8 data:double
+@621 = .rodata:0x00009B90; // type:object size:0x8 scope:local align:8 data:double
+@622 = .rodata:0x00009B98; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00009B9C; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00009BA0; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00009BA4; // type:object size:0x4 scope:local align:4 data:float
+@699 = .rodata:0x00009BA8; // type:object size:0x4 scope:local align:4 data:float
+@701 = .rodata:0x00009BB0; // type:object size:0x8 scope:local align:8 data:double
+@740 = .rodata:0x00009BB8; // type:object size:0x4 scope:local align:4 data:float
+@741 = .rodata:0x00009BBC; // type:object size:0x4 scope:local align:4 data:float
+@742 = .rodata:0x00009BC0; // type:object size:0x4 scope:local align:4 data:float
+@743 = .rodata:0x00009BC4; // type:object size:0x4 scope:local align:4 data:float
+@744 = .rodata:0x00009BC8; // type:object size:0x4 scope:local align:4 data:float
+@820 = .rodata:0x00009BCC; // type:object size:0x4 scope:local align:4 data:float
+@821 = .rodata:0x00009BD0; // type:object size:0x4 scope:local align:4 data:float
+@822 = .rodata:0x00009BD4; // type:object size:0x4 scope:local align:4 data:float
+@823 = .rodata:0x00009BD8; // type:object size:0x4 scope:local align:4 data:float
+@824 = .rodata:0x00009BDC; // type:object size:0x4 scope:local align:4 data:float
+@825 = .rodata:0x00009BE0; // type:object size:0x4 scope:local align:4 data:float
+@826 = .rodata:0x00009BE4; // type:object size:0x4 scope:local align:4 data:float
+@827 = .rodata:0x00009BE8; // type:object size:0x4 scope:local align:4 data:float
+@861 = .rodata:0x00009BEC; // type:object size:0x4 scope:local align:4 data:float
+@862 = .rodata:0x00009BF0; // type:object size:0x4 scope:local align:4 data:float
+@583 = .rodata:0x00009BF8; // type:object size:0x4 scope:local align:4 data:float
+@584 = .rodata:0x00009BFC; // type:object size:0x4 scope:local align:4 data:float
+@585 = .rodata:0x00009C00; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x00009C04; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00009C08; // type:object size:0x8 scope:local align:8 data:double
+@623 = .rodata:0x00009C10; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00009C14; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x00009C18; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00009C1C; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00009C20; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00009C24; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00009C28; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x00009C2C; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x00009C30; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x00009C34; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x00009C38; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x00009C3C; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x00009C40; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x00009C44; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x00009C48; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x00009C4C; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x00009C50; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x00009C54; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x00009C58; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x00009C5C; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x00009C60; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x00009C64; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x00009C68; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x00009C6C; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x00009C70; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x00009C78; // type:object size:0x8 scope:local align:8 data:double
+@503 = .rodata:0x00009C80; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00009C84; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00009C88; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00009C8C; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x00009C90; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x00009C94; // type:object size:0x4 scope:local align:4 data:float
+@646 = .rodata:0x00009C98; // type:object size:0x4 scope:local align:4 data:float
+@647 = .rodata:0x00009C9C; // type:object size:0x4 scope:local align:4 data:float
+@665 = .rodata:0x00009CA0; // type:object size:0x4 scope:local align:4 data:float
+@666 = .rodata:0x00009CA4; // type:object size:0x4 scope:local align:4 data:float
+@667 = .rodata:0x00009CA8; // type:object size:0x4 scope:local align:4 data:float
+@668 = .rodata:0x00009CAC; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x00009CB0; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x00009CB4; // type:object size:0x4 scope:local align:4 data:float
+@720 = .rodata:0x00009CB8; // type:object size:0x4 scope:local align:4 data:float
+@760 = .rodata:0x00009CBC; // type:object size:0x4 scope:local align:4 data:float
+@769 = .rodata:0x00009CC0; // type:object size:0x4 scope:local align:4 data:float
+@821 = .rodata:0x00009CC4; // type:object size:0x4 scope:local align:4 data:float
+@537 = .rodata:0x00009CC8; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x00009CCC; // type:object size:0x4 scope:local align:4 data:float
+@765 = .rodata:0x00009CD0; // type:object size:0x4 scope:local align:4 data:float
+@803 = .rodata:0x00009CD4; // type:object size:0x4 scope:local align:4 data:float
+@804 = .rodata:0x00009CD8; // type:object size:0x4 scope:local align:4 data:float
+@805 = .rodata:0x00009CDC; // type:object size:0x4 scope:local align:4 data:float
+@835 = .rodata:0x00009CE0; // type:object size:0x4 scope:local align:4 data:float
+@836 = .rodata:0x00009CE4; // type:object size:0x4 scope:local align:4 data:float
+@837 = .rodata:0x00009CE8; // type:object size:0x4 scope:local align:4 data:float
+@838 = .rodata:0x00009CEC; // type:object size:0x4 scope:local align:4 data:float
+@928 = .rodata:0x00009CF0; // type:object size:0x4 scope:local align:4 data:float
+@929 = .rodata:0x00009CF4; // type:object size:0x4 scope:local align:4 data:float
+@930 = .rodata:0x00009CF8; // type:object size:0x4 scope:local align:4 data:float
+@931 = .rodata:0x00009CFC; // type:object size:0x4 scope:local align:4 data:float
+@941 = .rodata:0x00009D00; // type:object size:0x4 scope:local align:4 data:float
+@1174 = .rodata:0x00009D04; // type:object size:0x4 scope:local align:4 data:float
+@1175 = .rodata:0x00009D08; // type:object size:0x4 scope:local align:4 data:float
+@1176 = .rodata:0x00009D0C; // type:object size:0x4 scope:local align:4 data:float
+@1177 = .rodata:0x00009D10; // type:object size:0x4 scope:local align:4 data:float
+@1179 = .rodata:0x00009D18; // type:object size:0x8 scope:local align:8 data:double
+@1267 = .rodata:0x00009D20; // type:object size:0x4 scope:local align:4 data:float
+@1268 = .rodata:0x00009D24; // type:object size:0x4 scope:local align:4 data:float
+@1269 = .rodata:0x00009D28; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x00009D30; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x00009D34; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x00009D38; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x00009D3C; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x00009D40; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x00009D44; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x00009D48; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x00009D4C; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x00009D50; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x00009D54; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x00009D58; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x00009D5C; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x00009D60; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x00009D64; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x00009D68; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x00009D6C; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x00009D70; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x00009D74; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00009D78; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00009D7C; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00009D80; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x00009D84; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x00009D88; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x00009D90; // type:object size:0x8 scope:local align:8 data:double
+@693 = .rodata:0x00009D98; // type:object size:0x4 scope:local align:4 data:float
+@694 = .rodata:0x00009D9C; // type:object size:0x4 scope:local align:4 data:float
+@695 = .rodata:0x00009DA0; // type:object size:0x4 scope:local align:4 data:float
+@697 = .rodata:0x00009DA8; // type:object size:0x8 scope:local align:8 data:double
+@748 = .rodata:0x00009DB0; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x00009DB4; // type:object size:0x4 scope:local align:4 data:float
+@867 = .rodata:0x00009DB8; // type:object size:0x4 scope:local align:4 data:float
+@868 = .rodata:0x00009DBC; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x00009DC0; // type:object size:0x4 scope:local align:4 data:float
+@1059 = .rodata:0x00009DC4; // type:object size:0x4 scope:local align:4 data:float
+@1060 = .rodata:0x00009DC8; // type:object size:0x4 scope:local align:4 data:float
+@1061 = .rodata:0x00009DCC; // type:object size:0x4 scope:local align:4 data:float
+@1062 = .rodata:0x00009DD0; // type:object size:0x4 scope:local align:4 data:float
+@1063 = .rodata:0x00009DD4; // type:object size:0x4 scope:local align:4 data:float
+@1064 = .rodata:0x00009DD8; // type:object size:0x4 scope:local align:4 data:float
+@1082 = .rodata:0x00009DDC; // type:object size:0x4 scope:local align:4 data:float
+@1083 = .rodata:0x00009DE0; // type:object size:0x4 scope:local align:4 data:float
+@1084 = .rodata:0x00009DE4; // type:object size:0x4 scope:local align:4 data:float
+@1085 = .rodata:0x00009DE8; // type:object size:0x4 scope:local align:4 data:float
+@1086 = .rodata:0x00009DEC; // type:object size:0x4 scope:local align:4 data:float
+@1087 = .rodata:0x00009DF0; // type:object size:0x4 scope:local align:4 data:float
+@1193 = .rodata:0x00009DF4; // type:object size:0x4 scope:local align:4 data:float
+@1194 = .rodata:0x00009DF8; // type:object size:0x4 scope:local align:4 data:float
+@1195 = .rodata:0x00009DFC; // type:object size:0x4 scope:local align:4 data:float
+@1196 = .rodata:0x00009E00; // type:object size:0x4 scope:local align:4 data:float
+@1197 = .rodata:0x00009E04; // type:object size:0x4 scope:local align:4 data:float
+@1198 = .rodata:0x00009E08; // type:object size:0x4 scope:local align:4 data:float
+@1199 = .rodata:0x00009E0C; // type:object size:0x4 scope:local align:4 data:float
+@1200 = .rodata:0x00009E10; // type:object size:0x4 scope:local align:4 data:float
+@1201 = .rodata:0x00009E14; // type:object size:0x4 scope:local align:4 data:float
+@1202 = .rodata:0x00009E18; // type:object size:0x4 scope:local align:4 data:float
+@1203 = .rodata:0x00009E1C; // type:object size:0x4 scope:local align:4 data:float
+@1204 = .rodata:0x00009E20; // type:object size:0x4 scope:local align:4 data:float
+@1205 = .rodata:0x00009E24; // type:object size:0x4 scope:local align:4 data:float
+@1206 = .rodata:0x00009E28; // type:object size:0x4 scope:local align:4 data:float
+@1207 = .rodata:0x00009E2C; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x00009E30; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x00009E34; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x00009E38; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x00009E40; // type:object size:0x8 scope:local align:8 data:double
+@555 = .rodata:0x00009E48; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x00009E4C; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x00009E50; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x00009E54; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x00009E58; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x00009E5C; // type:object size:0x4 scope:local align:4 data:float
+@631 = .rodata:0x00009E60; // type:object size:0x4 scope:local align:4 data:float
+@632 = .rodata:0x00009E64; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x00009E68; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x00009E6C; // type:object size:0x4 scope:local align:4 data:float
+@635 = .rodata:0x00009E70; // type:object size:0x4 scope:local align:4 data:float
+@636 = .rodata:0x00009E74; // type:object size:0x4 scope:local align:4 data:float
+@637 = .rodata:0x00009E78; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x00009E7C; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x00009E80; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x00009E88; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x00009E8C; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x00009E90; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x00009E94; // type:object size:0x4 scope:local align:4 data:float
+@651 = .rodata:0x00009E98; // type:object size:0x4 scope:local align:4 data:float
+@652 = .rodata:0x00009E9C; // type:object size:0x4 scope:local align:4 data:float
+@653 = .rodata:0x00009EA0; // type:object size:0x4 scope:local align:4 data:float
+@655 = .rodata:0x00009EA8; // type:object size:0x8 scope:local align:8 data:double
+@775 = .rodata:0x00009EB0; // type:object size:0x4 scope:local align:4 data:float
+@874 = .rodata:0x00009EB4; // type:object size:0x4 scope:local align:4 data:float
+@929 = .rodata:0x00009EB8; // type:object size:0x4 scope:local align:4 data:float
+@930 = .rodata:0x00009EBC; // type:object size:0x4 scope:local align:4 data:float
+@931 = .rodata:0x00009EC0; // type:object size:0x4 scope:local align:4 data:float
+@932 = .rodata:0x00009EC4; // type:object size:0x4 scope:local align:4 data:float
+@933 = .rodata:0x00009EC8; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x00009ED0; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x00009ED4; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x00009ED8; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x00009EDC; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x00009EE0; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x00009EE8; // type:object size:0x8 scope:local align:8 data:double
+@440 = .rodata:0x00009EF0; // type:object size:0x8 scope:local align:8 data:double
+@484 = .rodata:0x00009EF8; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x00009EFC; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x00009F00; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x00009F04; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x00009F08; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x00009F0C; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x00009F10; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x00009F14; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x00009F18; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x00009F1C; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00009F20; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x00009F24; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x00009F28; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x00009F2C; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x00009F30; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x00009F38; // type:object size:0x4 scope:local align:4 data:float
+@615 = .rodata:0x00009F3C; // type:object size:0x4 scope:local align:4 data:float
+@616 = .rodata:0x00009F40; // type:object size:0x4 scope:local align:4 data:float
+@617 = .rodata:0x00009F44; // type:object size:0x4 scope:local align:4 data:float
+@618 = .rodata:0x00009F48; // type:object size:0x4 scope:local align:4 data:float
+@619 = .rodata:0x00009F4C; // type:object size:0x4 scope:local align:4 data:float
+@620 = .rodata:0x00009F50; // type:object size:0x4 scope:local align:4 data:float
+@621 = .rodata:0x00009F54; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x00009F58; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x00009F5C; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x00009F60; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x00009F68; // type:object size:0x8 scope:local align:8 data:double
+@736 = .rodata:0x00009F70; // type:object size:0x4 scope:local align:4 data:float
+@737 = .rodata:0x00009F74; // type:object size:0x4 scope:local align:4 data:float
+@862 = .rodata:0x00009F78; // type:object size:0x4 scope:local align:4 data:float
+@863 = .rodata:0x00009F7C; // type:object size:0x4 scope:local align:4 data:float
+@905 = .rodata:0x00009F80; // type:object size:0x4 scope:local align:4 data:float
+@906 = .rodata:0x00009F84; // type:object size:0x4 scope:local align:4 data:float
+@966 = .rodata:0x00009F88; // type:object size:0x4 scope:local align:4 data:float
+@967 = .rodata:0x00009F8C; // type:object size:0x4 scope:local align:4 data:float
+@968 = .rodata:0x00009F90; // type:object size:0x4 scope:local align:4 data:float
+@969 = .rodata:0x00009F94; // type:object size:0x4 scope:local align:4 data:float
+@970 = .rodata:0x00009F98; // type:object size:0x4 scope:local align:4 data:float
+@981 = .rodata:0x00009F9C; // type:object size:0x4 scope:local align:4 data:float
+@982 = .rodata:0x00009FA0; // type:object size:0x4 scope:local align:4 data:float
+@983 = .rodata:0x00009FA4; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x00009FA8; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x00009FAC; // type:object size:0x4 scope:local align:4 data:float
+@587 = .rodata:0x00009FB0; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x00009FB4; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x00009FB8; // type:object size:0x4 scope:local align:4 data:float
+@590 = .rodata:0x00009FBC; // type:object size:0x4 scope:local align:4 data:float
+@591 = .rodata:0x00009FC0; // type:object size:0x4 scope:local align:4 data:float
+@592 = .rodata:0x00009FC4; // type:object size:0x4 scope:local align:4 data:float
+@593 = .rodata:0x00009FC8; // type:object size:0x4 scope:local align:4 data:float
+@594 = .rodata:0x00009FCC; // type:object size:0x4 scope:local align:4 data:float
+@595 = .rodata:0x00009FD0; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x00009FD4; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x00009FD8; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x00009FDC; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x00009FE0; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x00009FE4; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x00009FE8; // type:object size:0x4 scope:local align:4 data:float
+@602 = .rodata:0x00009FEC; // type:object size:0x4 scope:local align:4 data:float
+@603 = .rodata:0x00009FF0; // type:object size:0x4 scope:local align:4 data:float
+@604 = .rodata:0x00009FF4; // type:object size:0x4 scope:local align:4 data:float
+@605 = .rodata:0x00009FF8; // type:object size:0x4 scope:local align:4 data:float
+@609 = .rodata:0x0000A000; // type:object size:0x8 scope:local align:8 data:double
+@1675 = .rodata:0x0000A008; // type:object size:0x4 scope:local align:4 data:float
+@1909 = .rodata:0x0000A00C; // type:object size:0x4 scope:local align:4 data:float
+@1910 = .rodata:0x0000A010; // type:object size:0x4 scope:local align:4 data:float
+@1948 = .rodata:0x0000A014; // type:object size:0x4 scope:local align:4 data:float
+@1949 = .rodata:0x0000A018; // type:object size:0x4 scope:local align:4 data:float
+@1994 = .rodata:0x0000A01C; // type:object size:0x4 scope:local align:4 data:float
+@1995 = .rodata:0x0000A020; // type:object size:0x4 scope:local align:4 data:float
+@1996 = .rodata:0x0000A024; // type:object size:0x4 scope:local align:4 data:float
+@2011 = .rodata:0x0000A028; // type:object size:0x4 scope:local align:4 data:float
+@2250 = .rodata:0x0000A02C; // type:object size:0x4 scope:local align:4 data:float
+@2251 = .rodata:0x0000A030; // type:object size:0x4 scope:local align:4 data:float
+@2252 = .rodata:0x0000A034; // type:object size:0x4 scope:local align:4 data:float
+@2253 = .rodata:0x0000A038; // type:object size:0x4 scope:local align:4 data:float
+@2254 = .rodata:0x0000A03C; // type:object size:0x4 scope:local align:4 data:float
+@2255 = .rodata:0x0000A040; // type:object size:0x4 scope:local align:4 data:float
+@2256 = .rodata:0x0000A044; // type:object size:0x4 scope:local align:4 data:float
+@2257 = .rodata:0x0000A048; // type:object size:0x4 scope:local align:4 data:float
+@2258 = .rodata:0x0000A04C; // type:object size:0x4 scope:local align:4 data:float
+@2321 = .rodata:0x0000A050; // type:object size:0x4 scope:local align:4 data:float
+@2347 = .rodata:0x0000A054; // type:object size:0x4 scope:local align:4 data:float
+@2348 = .rodata:0x0000A058; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000A060; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000A064; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000A068; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000A06C; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000A070; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000A078; // type:object size:0x8 scope:local align:8 data:double
+@485 = .rodata:0x0000A080; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x0000A084; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000A088; // type:object size:0x8 scope:local align:8 data:double
+@525 = .rodata:0x0000A090; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x0000A094; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x0000A098; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x0000A09C; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x0000A0A0; // type:object size:0x4 scope:local align:4 data:float
+@1798 = .rodata:0x0000A0A4; // type:object size:0x4 scope:local align:4 data:float
+@1799 = .rodata:0x0000A0A8; // type:object size:0x4 scope:local align:4 data:float
+@1800 = .rodata:0x0000A0AC; // type:object size:0x4 scope:local align:4 data:float
+@1801 = .rodata:0x0000A0B0; // type:object size:0x4 scope:local align:4 data:float
+@1858 = .rodata:0x0000A0B4; // type:object size:0x4 scope:local align:4 data:float
+@1859 = .rodata:0x0000A0B8; // type:object size:0x4 scope:local align:4 data:float
+@1904 = .rodata:0x0000A0BC; // type:object size:0x4 scope:local align:4 data:float
+@1905 = .rodata:0x0000A0C0; // type:object size:0x4 scope:local align:4 data:float
+@1907 = .rodata:0x0000A0C8; // type:object size:0x8 scope:local align:8 data:double
+@1939 = .rodata:0x0000A0D0; // type:object size:0x4 scope:local align:4 data:float
+@1940 = .rodata:0x0000A0D4; // type:object size:0x4 scope:local align:4 data:float
+@1941 = .rodata:0x0000A0D8; // type:object size:0x4 scope:local align:4 data:float
+@1942 = .rodata:0x0000A0DC; // type:object size:0x4 scope:local align:4 data:float
+@1943 = .rodata:0x0000A0E0; // type:object size:0x4 scope:local align:4 data:float
+@1979 = .rodata:0x0000A0E4; // type:object size:0x4 scope:local align:4 data:float
+@1992 = .rodata:0x0000A0E8; // type:object size:0x4 scope:local align:4 data:float
+@1993 = .rodata:0x0000A0EC; // type:object size:0x4 scope:local align:4 data:float
+@1994 = .rodata:0x0000A0F0; // type:object size:0x4 scope:local align:4 data:float
+@1995 = .rodata:0x0000A0F4; // type:object size:0x4 scope:local align:4 data:float
+@2004 = .rodata:0x0000A0F8; // type:object size:0x4 scope:local align:4 data:float
+@2005 = .rodata:0x0000A0FC; // type:object size:0x4 scope:local align:4 data:float
+@2006 = .rodata:0x0000A100; // type:object size:0x4 scope:local align:4 data:float
+@2045 = .rodata:0x0000A104; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x0000A108; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x0000A10C; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000A110; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x0000A114; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x0000A118; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x0000A11C; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x0000A120; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x0000A124; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000A128; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000A12C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x0000A130; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x0000A134; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x0000A138; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x0000A13C; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x0000A140; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x0000A144; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x0000A148; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000A14C; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x0000A150; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x0000A154; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x0000A158; // type:object size:0x4 scope:local align:4 data:float
+@545 = .rodata:0x0000A15C; // type:object size:0x4 scope:local align:4 data:float
+@546 = .rodata:0x0000A160; // type:object size:0x8 scope:local align:8 data:double
+@547 = .rodata:0x0000A168; // type:object size:0x8 scope:local align:8 data:double
+@548 = .rodata:0x0000A170; // type:object size:0x4 scope:local align:4 data:float
+@550 = .rodata:0x0000A178; // type:object size:0x8 scope:local align:8 data:double
+@825 = .rodata:0x0000A180; // type:object size:0x4 scope:local align:4 data:float
+@1202 = .rodata:0x0000A184; // type:object size:0x4 scope:local align:4 data:float
+@1203 = .rodata:0x0000A188; // type:object size:0x4 scope:local align:4 data:float
+@1204 = .rodata:0x0000A18C; // type:object size:0x4 scope:local align:4 data:float
+@1205 = .rodata:0x0000A190; // type:object size:0x4 scope:local align:4 data:float
+@1271 = .rodata:0x0000A194; // type:object size:0x4 scope:local align:4 data:float
+@1272 = .rodata:0x0000A198; // type:object size:0x4 scope:local align:4 data:float
+@1273 = .rodata:0x0000A19C; // type:object size:0x4 scope:local align:4 data:float
+@1274 = .rodata:0x0000A1A0; // type:object size:0x4 scope:local align:4 data:float
+@1275 = .rodata:0x0000A1A4; // type:object size:0x4 scope:local align:4 data:float
+@1276 = .rodata:0x0000A1A8; // type:object size:0x4 scope:local align:4 data:float
+@1277 = .rodata:0x0000A1AC; // type:object size:0x4 scope:local align:4 data:float
+@1278 = .rodata:0x0000A1B0; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000A1B8; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000A1BC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000A1C0; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000A1C4; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000A1C8; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000A1CC; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000A1D0; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000A1D4; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000A1D8; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000A1DC; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000A1E0; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x0000A1E8; // type:object size:0x4 scope:local align:4 data:float
+@573 = .rodata:0x0000A1EC; // type:object size:0x4 scope:local align:4 data:float
+@574 = .rodata:0x0000A1F0; // type:object size:0x4 scope:local align:4 data:float
+@575 = .rodata:0x0000A1F4; // type:object size:0x4 scope:local align:4 data:float
+@576 = .rodata:0x0000A1F8; // type:object size:0x4 scope:local align:4 data:float
+@622 = .rodata:0x0000A1FC; // type:object size:0x4 scope:local align:4 data:float
+@623 = .rodata:0x0000A200; // type:object size:0x4 scope:local align:4 data:float
+@624 = .rodata:0x0000A204; // type:object size:0x4 scope:local align:4 data:float
+@625 = .rodata:0x0000A208; // type:object size:0x4 scope:local align:4 data:float
+@626 = .rodata:0x0000A20C; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x0000A210; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x0000A214; // type:object size:0x4 scope:local align:4 data:float
+@633 = .rodata:0x0000A218; // type:object size:0x4 scope:local align:4 data:float
+@634 = .rodata:0x0000A21C; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000A220; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x0000A224; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x0000A228; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x0000A22C; // type:object size:0x4 scope:local align:4 data:float
+@519 = .rodata:0x0000A230; // type:object size:0x4 scope:local align:4 data:float
+@521 = .rodata:0x0000A238; // type:object size:0x8 scope:local align:8 data:double
+@529 = .rodata:0x0000A240; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x0000A244; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x0000A248; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x0000A24C; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x0000A250; // type:object size:0x4 scope:local align:4 data:float
+data$633 = .rodata:0x0000A258; // type:object size:0x28 scope:local align:4
+@741 = .rodata:0x0000A280; // type:object size:0x4 scope:local align:4 data:float
+@742 = .rodata:0x0000A284; // type:object size:0x4 scope:local align:4 data:float
+@743 = .rodata:0x0000A288; // type:object size:0x4 scope:local align:4 data:float
+@744 = .rodata:0x0000A28C; // type:object size:0x4 scope:local align:4 data:float
+@746 = .rodata:0x0000A290; // type:object size:0x8 scope:local align:8 data:double
+@770 = .rodata:0x0000A298; // type:object size:0x4 scope:local align:4 data:float
+@771 = .rodata:0x0000A29C; // type:object size:0x4 scope:local align:4 data:float
+@772 = .rodata:0x0000A2A0; // type:object size:0x4 scope:local align:4 data:float
+@773 = .rodata:0x0000A2A4; // type:object size:0x4 scope:local align:4 data:float
+@774 = .rodata:0x0000A2A8; // type:object size:0x4 scope:local align:4 data:float
+@775 = .rodata:0x0000A2AC; // type:object size:0x4 scope:local align:4 data:float
+@776 = .rodata:0x0000A2B0; // type:object size:0x4 scope:local align:4 data:float
+@801 = .rodata:0x0000A2B4; // type:object size:0x4 scope:local align:4 data:float
+@802 = .rodata:0x0000A2B8; // type:object size:0x4 scope:local align:4 data:float
+@803 = .rodata:0x0000A2BC; // type:object size:0x4 scope:local align:4 data:float
+@804 = .rodata:0x0000A2C0; // type:object size:0x4 scope:local align:4 data:float
+@832 = .rodata:0x0000A2C4; // type:object size:0x4 scope:local align:4 data:float
+@898 = .rodata:0x0000A2C8; // type:object size:0x4 scope:local align:4 data:float
+@899 = .rodata:0x0000A2CC; // type:object size:0x4 scope:local align:4 data:float
+@928 = .rodata:0x0000A2D0; // type:object size:0x4 scope:local align:4 data:float
+@929 = .rodata:0x0000A2D4; // type:object size:0x4 scope:local align:4 data:float
+@1140 = .rodata:0x0000A2D8; // type:object size:0x4 scope:local align:4 data:float
+@1141 = .rodata:0x0000A2DC; // type:object size:0x4 scope:local align:4 data:float
+@1142 = .rodata:0x0000A2E0; // type:object size:0x4 scope:local align:4 data:float
+@1143 = .rodata:0x0000A2E4; // type:object size:0x4 scope:local align:4 data:float
+@1144 = .rodata:0x0000A2E8; // type:object size:0x4 scope:local align:4 data:float
+@1145 = .rodata:0x0000A2EC; // type:object size:0x4 scope:local align:4 data:float
+@1146 = .rodata:0x0000A2F0; // type:object size:0x4 scope:local align:4 data:float
+@1147 = .rodata:0x0000A2F4; // type:object size:0x4 scope:local align:4 data:float
+@1148 = .rodata:0x0000A2F8; // type:object size:0x4 scope:local align:4 data:float
+@1149 = .rodata:0x0000A2FC; // type:object size:0x4 scope:local align:4 data:float
+@1150 = .rodata:0x0000A300; // type:object size:0x4 scope:local align:4 data:float
+@1151 = .rodata:0x0000A304; // type:object size:0x4 scope:local align:4 data:float
+@1152 = .rodata:0x0000A308; // type:object size:0x4 scope:local align:4 data:float
+@1153 = .rodata:0x0000A30C; // type:object size:0x4 scope:local align:4 data:float
+@1154 = .rodata:0x0000A310; // type:object size:0x4 scope:local align:4 data:float
+@1248 = .rodata:0x0000A314; // type:object size:0x4 scope:local align:4 data:float
+@1279 = .rodata:0x0000A318; // type:object size:0x8 scope:local align:8 data:double
+@1280 = .rodata:0x0000A320; // type:object size:0x8 scope:local align:8 data:double
+@1281 = .rodata:0x0000A328; // type:object size:0x4 scope:local align:4 data:float
+@1282 = .rodata:0x0000A32C; // type:object size:0x4 scope:local align:4 data:float
+@1283 = .rodata:0x0000A330; // type:object size:0x4 scope:local align:4 data:float
+@1346 = .rodata:0x0000A334; // type:object size:0x4 scope:local align:4 data:float
+@1480 = .rodata:0x0000A338; // type:object size:0x4 scope:local align:4 data:float
+@1481 = .rodata:0x0000A33C; // type:object size:0x4 scope:local align:4 data:float
+@1606 = .rodata:0x0000A340; // type:object size:0x4 scope:local align:4 data:float
+@1674 = .rodata:0x0000A344; // type:object size:0x4 scope:local align:4 data:float
+@1675 = .rodata:0x0000A348; // type:object size:0x4 scope:local align:4 data:float
+@1681 = .rodata:0x0000A34C; // type:object size:0x4 scope:local align:4 data:float
+@1682 = .rodata:0x0000A350; // type:object size:0x4 scope:local align:4 data:float
+@1683 = .rodata:0x0000A354; // type:object size:0x4 scope:local align:4 data:float
+@1684 = .rodata:0x0000A358; // type:object size:0x4 scope:local align:4 data:float
+@1685 = .rodata:0x0000A35C; // type:object size:0x4 scope:local align:4 data:float
+@1686 = .rodata:0x0000A360; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x0000A368; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x0000A36C; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x0000A370; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x0000A374; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x0000A378; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x0000A37C; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x0000A380; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x0000A384; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x0000A388; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x0000A38C; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x0000A390; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000A398; // type:object size:0x8 scope:local align:8 data:double
+@438 = .rodata:0x0000A3A0; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000A3A4; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000A3A8; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x0000A3AC; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x0000A3B0; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000A3B4; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x0000A3B8; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x0000A3BC; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x0000A3C0; // type:object size:0x8 scope:local align:8 data:double
+@612 = .rodata:0x0000A3C8; // type:object size:0x4 scope:local align:4 data:float
+@614 = .rodata:0x0000A3D0; // type:object size:0x8 scope:local align:8 data:double
+@668 = .rodata:0x0000A3D8; // type:object size:0x4 scope:local align:4 data:float
+@669 = .rodata:0x0000A3DC; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x0000A3E0; // type:object size:0x4 scope:local align:4 data:float
+@671 = .rodata:0x0000A3E4; // type:object size:0x4 scope:local align:4 data:float
+@746 = .rodata:0x0000A3E8; // type:object size:0x4 scope:local align:4 data:float
+@747 = .rodata:0x0000A3EC; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x0000A3F0; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x0000A3F4; // type:object size:0x4 scope:local align:4 data:float
+@750 = .rodata:0x0000A3F8; // type:object size:0x4 scope:local align:4 data:float
+@751 = .rodata:0x0000A3FC; // type:object size:0x4 scope:local align:4 data:float
+@752 = .rodata:0x0000A400; // type:object size:0x4 scope:local align:4 data:float
+@753 = .rodata:0x0000A404; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x0000A408; // type:object size:0x4 scope:local align:4 data:float
+@799 = .rodata:0x0000A40C; // type:object size:0x4 scope:local align:4 data:float
+@800 = .rodata:0x0000A410; // type:object size:0x4 scope:local align:4 data:float
+@801 = .rodata:0x0000A414; // type:object size:0x4 scope:local align:4 data:float
+@864 = .rodata:0x0000A418; // type:object size:0x4 scope:local align:4 data:float
+@865 = .rodata:0x0000A41C; // type:object size:0x4 scope:local align:4 data:float
+@866 = .rodata:0x0000A420; // type:object size:0x4 scope:local align:4 data:float
+@867 = .rodata:0x0000A424; // type:object size:0x4 scope:local align:4 data:float
+@868 = .rodata:0x0000A428; // type:object size:0x4 scope:local align:4 data:float
+@870 = .rodata:0x0000A430; // type:object size:0x8 scope:local align:8 data:double
+@994 = .rodata:0x0000A438; // type:object size:0x4 scope:local align:4 data:float
+@1000 = .rodata:0x0000A43C; // type:object size:0x4 scope:local align:4 data:float
+@1001 = .rodata:0x0000A440; // type:object size:0x4 scope:local align:4 data:float
+@1002 = .rodata:0x0000A444; // type:object size:0x4 scope:local align:4 data:float
+@1003 = .rodata:0x0000A448; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x0000A450; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x0000A454; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x0000A458; // type:object size:0x4 scope:local align:4 data:float
+@704 = .rodata:0x0000A45C; // type:object size:0x4 scope:local align:4 data:float
+@705 = .rodata:0x0000A460; // type:object size:0x4 scope:local align:4 data:float
+@706 = .rodata:0x0000A464; // type:object size:0x4 scope:local align:4 data:float
+@707 = .rodata:0x0000A468; // type:object size:0x4 scope:local align:4 data:float
+@708 = .rodata:0x0000A46C; // type:object size:0x4 scope:local align:4 data:float
+@709 = .rodata:0x0000A470; // type:object size:0x4 scope:local align:4 data:float
+@710 = .rodata:0x0000A474; // type:object size:0x4 scope:local align:4 data:float
+@711 = .rodata:0x0000A478; // type:object size:0x4 scope:local align:4 data:float
+@712 = .rodata:0x0000A47C; // type:object size:0x4 scope:local align:4 data:float
+@713 = .rodata:0x0000A480; // type:object size:0x4 scope:local align:4 data:float
+@714 = .rodata:0x0000A484; // type:object size:0x4 scope:local align:4 data:float
+@715 = .rodata:0x0000A488; // type:object size:0x4 scope:local align:4 data:float
+@716 = .rodata:0x0000A48C; // type:object size:0x4 scope:local align:4 data:float
+@717 = .rodata:0x0000A490; // type:object size:0x4 scope:local align:4 data:float
+@718 = .rodata:0x0000A494; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x0000A498; // type:object size:0x4 scope:local align:4 data:float
+@720 = .rodata:0x0000A49C; // type:object size:0x4 scope:local align:4 data:float
+@721 = .rodata:0x0000A4A0; // type:object size:0x4 scope:local align:4 data:float
+@722 = .rodata:0x0000A4A4; // type:object size:0x4 scope:local align:4 data:float
+@723 = .rodata:0x0000A4A8; // type:object size:0x4 scope:local align:4 data:float
+@724 = .rodata:0x0000A4AC; // type:object size:0x4 scope:local align:4 data:float
+@725 = .rodata:0x0000A4B0; // type:object size:0x4 scope:local align:4 data:float
+@726 = .rodata:0x0000A4B4; // type:object size:0x4 scope:local align:4 data:float
+@727 = .rodata:0x0000A4B8; // type:object size:0x4 scope:local align:4 data:float
+@728 = .rodata:0x0000A4BC; // type:object size:0x4 scope:local align:4 data:float
+@729 = .rodata:0x0000A4C0; // type:object size:0x4 scope:local align:4 data:float
+@730 = .rodata:0x0000A4C4; // type:object size:0x4 scope:local align:4 data:float
+@731 = .rodata:0x0000A4C8; // type:object size:0x4 scope:local align:4 data:float
+@733 = .rodata:0x0000A4D0; // type:object size:0x8 scope:local align:8 data:double
+@444 = .rodata:0x0000A4D8; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x0000A4DC; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x0000A4E0; // type:object size:0x4 scope:local align:4 data:float
+@560 = .rodata:0x0000A4E4; // type:object size:0x4 scope:local align:4 data:float
+@561 = .rodata:0x0000A4E8; // type:object size:0x4 scope:local align:4 data:float
+@562 = .rodata:0x0000A4EC; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x0000A4F0; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x0000A4F4; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x0000A4F8; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x0000A4FC; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x0000A500; // type:object size:0x4 scope:local align:4 data:float
+@579 = .rodata:0x0000A504; // type:object size:0x4 scope:local align:4 data:float
+@580 = .rodata:0x0000A508; // type:object size:0x4 scope:local align:4 data:float
+@582 = .rodata:0x0000A510; // type:object size:0x8 scope:local align:8 data:double
+@541 = .rodata:0x0000A518; // type:object size:0x4 scope:local align:4 data:float
+@542 = .rodata:0x0000A51C; // type:object size:0x4 scope:local align:4 data:float
+@543 = .rodata:0x0000A520; // type:object size:0x4 scope:local align:4 data:float
+@544 = .rodata:0x0000A524; // type:object size:0x4 scope:local align:4 data:float
+@574 = .rodata:0x0000A528; // type:object size:0x4 scope:local align:4 data:float
+@650 = .rodata:0x0000A52C; // type:object size:0x4 scope:local align:4 data:float
+@651 = .rodata:0x0000A530; // type:object size:0x4 scope:local align:4 data:float
+@652 = .rodata:0x0000A534; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x0000A538; // type:object size:0x8 scope:local align:8 data:double
+@782 = .rodata:0x0000A540; // type:object size:0x4 scope:local align:4 data:float
+@783 = .rodata:0x0000A544; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000A548; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000A54C; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000A550; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000A554; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000A558; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000A55C; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000A560; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000A568; // type:object size:0x8 scope:local align:8 data:double
+@489 = .rodata:0x0000A570; // type:object size:0x4 scope:local align:4 data:float
+@490 = .rodata:0x0000A574; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x0000A578; // type:object size:0x4 scope:local align:4 data:float
+@492 = .rodata:0x0000A57C; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x0000A580; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x0000A584; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x0000A588; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x0000A58C; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x0000A590; // type:object size:0x4 scope:local align:4 data:float
+@586 = .rodata:0x0000A594; // type:object size:0x4 scope:local align:4 data:float
+@673 = .rodata:0x0000A598; // type:object size:0x4 scope:local align:4 data:float
+@719 = .rodata:0x0000A59C; // type:object size:0x4 scope:local align:4 data:float
+@760 = .rodata:0x0000A5A0; // type:object size:0x4 scope:local align:4 data:float
+@761 = .rodata:0x0000A5A4; // type:object size:0x4 scope:local align:4 data:float
+@767 = .rodata:0x0000A5A8; // type:object size:0x4 scope:local align:4 data:float
+@768 = .rodata:0x0000A5AC; // type:object size:0x4 scope:local align:4 data:float
+@769 = .rodata:0x0000A5B0; // type:object size:0x4 scope:local align:4 data:float
+@798 = .rodata:0x0000A5B4; // type:object size:0x4 scope:local align:4 data:float
+@799 = .rodata:0x0000A5B8; // type:object size:0x4 scope:local align:4 data:float
+@800 = .rodata:0x0000A5BC; // type:object size:0x4 scope:local align:4 data:float
+@801 = .rodata:0x0000A5C0; // type:object size:0x4 scope:local align:4 data:float
+@840 = .rodata:0x0000A5C4; // type:object size:0x4 scope:local align:4 data:float
+@841 = .rodata:0x0000A5C8; // type:object size:0x4 scope:local align:4 data:float
+@859 = .rodata:0x0000A5CC; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x0000A5D0; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x0000A5D4; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x0000A5D8; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x0000A5DC; // type:object size:0x4 scope:local align:4 data:float
+@533 = .rodata:0x0000A5E0; // type:object size:0x8 scope:local align:8 data:double
+@562 = .rodata:0x0000A5E8; // type:object size:0x4 scope:local align:4 data:float
+@563 = .rodata:0x0000A5EC; // type:object size:0x4 scope:local align:4 data:float
+@564 = .rodata:0x0000A5F0; // type:object size:0x4 scope:local align:4 data:float
+@565 = .rodata:0x0000A5F4; // type:object size:0x4 scope:local align:4 data:float
+@566 = .rodata:0x0000A5F8; // type:object size:0x4 scope:local align:4 data:float
+@567 = .rodata:0x0000A5FC; // type:object size:0x4 scope:local align:4 data:float
+@568 = .rodata:0x0000A600; // type:object size:0x4 scope:local align:4 data:float
+@569 = .rodata:0x0000A604; // type:object size:0x4 scope:local align:4 data:float
+@570 = .rodata:0x0000A608; // type:object size:0x4 scope:local align:4 data:float
+@571 = .rodata:0x0000A60C; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000A610; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x0000A618; // type:object size:0x8 scope:local align:8 data:double
+@506 = .rodata:0x0000A620; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x0000A624; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x0000A628; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x0000A62C; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x0000A630; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000A634; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x0000A638; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x0000A63C; // type:object size:0x4 scope:local align:4 data:float
+@736 = .rodata:0x0000A640; // type:object size:0x4 scope:local align:4 data:float
+@737 = .rodata:0x0000A644; // type:object size:0x4 scope:local align:4 data:float
+@738 = .rodata:0x0000A648; // type:object size:0x4 scope:local align:4 data:float
+@739 = .rodata:0x0000A64C; // type:object size:0x4 scope:local align:4 data:float
+@740 = .rodata:0x0000A650; // type:object size:0x4 scope:local align:4 data:float
+@741 = .rodata:0x0000A654; // type:object size:0x4 scope:local align:4 data:float
+@742 = .rodata:0x0000A658; // type:object size:0x4 scope:local align:4 data:float
+@743 = .rodata:0x0000A65C; // type:object size:0x4 scope:local align:4 data:float
+@744 = .rodata:0x0000A660; // type:object size:0x4 scope:local align:4 data:float
+@745 = .rodata:0x0000A664; // type:object size:0x4 scope:local align:4 data:float
+@746 = .rodata:0x0000A668; // type:object size:0x4 scope:local align:4 data:float
+@747 = .rodata:0x0000A66C; // type:object size:0x4 scope:local align:4 data:float
+@748 = .rodata:0x0000A670; // type:object size:0x4 scope:local align:4 data:float
+@749 = .rodata:0x0000A674; // type:object size:0x4 scope:local align:4 data:float
+@754 = .rodata:0x0000A678; // type:object size:0x8 scope:local align:8 data:double
+@832 = .rodata:0x0000A680; // type:object size:0x4 scope:local align:4 data:float
+@887 = .rodata:0x0000A684; // type:object size:0x4 scope:local align:4 data:float
+@888 = .rodata:0x0000A688; // type:object size:0x4 scope:local align:4 data:float
+@943 = .rodata:0x0000A68C; // type:object size:0x4 scope:local align:4 data:float
+@965 = .rodata:0x0000A690; // type:object size:0x4 scope:local align:4 data:float
+@987 = .rodata:0x0000A694; // type:object size:0x4 scope:local align:4 data:float
+@988 = .rodata:0x0000A698; // type:object size:0x4 scope:local align:4 data:float
+@1023 = .rodata:0x0000A69C; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x0000A6A0; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x0000A6A4; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x0000A6A8; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x0000A6AC; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x0000A6B0; // type:object size:0x8 scope:local align:8 data:double
+@577 = .rodata:0x0000A6B8; // type:object size:0x4 scope:local align:4 data:float
+@628 = .rodata:0x0000A6BC; // type:object size:0x4 scope:local align:4 data:float
+@629 = .rodata:0x0000A6C0; // type:object size:0x4 scope:local align:4 data:float
+@630 = .rodata:0x0000A6C4; // type:object size:0x4 scope:local align:4 data:float
+@647 = .rodata:0x0000A6C8; // type:object size:0x4 scope:local align:4 data:float
+@648 = .rodata:0x0000A6CC; // type:object size:0x4 scope:local align:4 data:float
+@649 = .rodata:0x0000A6D0; // type:object size:0x4 scope:local align:4 data:float
+@654 = .rodata:0x0000A6D4; // type:object size:0x4 scope:local align:4 data:float
+@655 = .rodata:0x0000A6D8; // type:object size:0x4 scope:local align:4 data:float
+@663 = .rodata:0x0000A6DC; // type:object size:0x4 scope:local align:4 data:float
+@670 = .rodata:0x0000A6E0; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x0000A6E4; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x0000A6E8; // type:object size:0x4 scope:local align:4 data:float
+@679 = .rodata:0x0000A6EC; // type:object size:0x4 scope:local align:4 data:float
+@707 = .rodata:0x0000A6F0; // type:object size:0x4 scope:local align:4 data:float
+@874 = .rodata:0x0000A6F4; // type:object size:0x4 scope:local align:4 data:float
+@875 = .rodata:0x0000A6F8; // type:object size:0x4 scope:local align:4 data:float
+@876 = .rodata:0x0000A6FC; // type:object size:0x4 scope:local align:4 data:float
+@877 = .rodata:0x0000A700; // type:object size:0x4 scope:local align:4 data:float
+@894 = .rodata:0x0000A704; // type:object size:0x4 scope:local align:4 data:float
+@895 = .rodata:0x0000A708; // type:object size:0x4 scope:local align:4 data:float
+@896 = .rodata:0x0000A70C; // type:object size:0x4 scope:local align:4 data:float
+@897 = .rodata:0x0000A710; // type:object size:0x4 scope:local align:4 data:float
+@898 = .rodata:0x0000A714; // type:object size:0x4 scope:local align:4 data:float
+@1014 = .rodata:0x0000A718; // type:object size:0x4 scope:local align:4 data:float
+@1015 = .rodata:0x0000A71C; // type:object size:0x4 scope:local align:4 data:float
+@1068 = .rodata:0x0000A720; // type:object size:0x4 scope:local align:4 data:float
+@1069 = .rodata:0x0000A724; // type:object size:0x4 scope:local align:4 data:float
+@1070 = .rodata:0x0000A728; // type:object size:0x4 scope:local align:4 data:float
+@1071 = .rodata:0x0000A72C; // type:object size:0x4 scope:local align:4 data:float
+@1072 = .rodata:0x0000A730; // type:object size:0x4 scope:local align:4 data:float
+@1083 = .rodata:0x0000A734; // type:object size:0x4 scope:local align:4 data:float
+@1084 = .rodata:0x0000A738; // type:object size:0x4 scope:local align:4 data:float
+@1085 = .rodata:0x0000A73C; // type:object size:0x4 scope:local align:4 data:float
+@1086 = .rodata:0x0000A740; // type:object size:0x4 scope:local align:4 data:float
+@1087 = .rodata:0x0000A744; // type:object size:0x4 scope:local align:4 data:float
+@1118 = .rodata:0x0000A748; // type:object size:0x4 scope:local align:4 data:float
+@1189 = .rodata:0x0000A74C; // type:object size:0x4 scope:local align:4 data:float
+@1190 = .rodata:0x0000A750; // type:object size:0x4 scope:local align:4 data:float
+@1528 = .rodata:0x0000A754; // type:object size:0x4 scope:local align:4 data:float
+@3070 = .rodata:0x0000A758; // type:object size:0x4 scope:local align:4 data:float
+@3308 = .rodata:0x0000A760; // type:object size:0x8 scope:local align:8 data:double
+@3309 = .rodata:0x0000A768; // type:object size:0x8 scope:local align:8 data:double
+@3310 = .rodata:0x0000A770; // type:object size:0x4 scope:local align:4 data:float
+@3311 = .rodata:0x0000A774; // type:object size:0x4 scope:local align:4 data:float
+@3312 = .rodata:0x0000A778; // type:object size:0x4 scope:local align:4 data:float
+@4871 = .rodata:0x0000A77C; // type:object size:0x4 scope:local align:4 data:float
+@5086 = .rodata:0x0000A780; // type:object size:0x4 scope:local align:4 data:float
+@5279 = .rodata:0x0000A784; // type:object size:0x4 scope:local align:4 data:float
+@5280 = .rodata:0x0000A788; // type:object size:0x4 scope:local align:4 data:float
+@5281 = .rodata:0x0000A78C; // type:object size:0x4 scope:local align:4 data:float
+@5367 = .rodata:0x0000A790; // type:object size:0x4 scope:local align:4 data:float
+@5368 = .rodata:0x0000A794; // type:object size:0x4 scope:local align:4 data:float
+@5369 = .rodata:0x0000A798; // type:object size:0x4 scope:local align:4 data:float
+@5468 = .rodata:0x0000A79C; // type:object size:0x4 scope:local align:4 data:float
+@596 = .rodata:0x0000A7A0; // type:object size:0x4 scope:local align:4 data:float
+@597 = .rodata:0x0000A7A4; // type:object size:0x4 scope:local align:4 data:float
+@598 = .rodata:0x0000A7A8; // type:object size:0x4 scope:local align:4 data:float
+@599 = .rodata:0x0000A7AC; // type:object size:0x4 scope:local align:4 data:float
+@638 = .rodata:0x0000A7B0; // type:object size:0x4 scope:local align:4 data:float
+@639 = .rodata:0x0000A7B4; // type:object size:0x4 scope:local align:4 data:float
+@640 = .rodata:0x0000A7B8; // type:object size:0x4 scope:local align:4 data:float
+@641 = .rodata:0x0000A7BC; // type:object size:0x4 scope:local align:4 data:float
+@642 = .rodata:0x0000A7C0; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x0000A7C4; // type:object size:0x4 scope:local align:4 data:float
+@644 = .rodata:0x0000A7C8; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x0000A7CC; // type:object size:0x4 scope:local align:4 data:float
+@647 = .rodata:0x0000A7D0; // type:object size:0x8 scope:local align:8 data:double
+@650 = .rodata:0x0000A7D8; // type:object size:0x8 scope:local align:8 data:double
+@674 = .rodata:0x0000A7E0; // type:object size:0x4 scope:local align:4 data:float
+@675 = .rodata:0x0000A7E4; // type:object size:0x4 scope:local align:4 data:float
+@676 = .rodata:0x0000A7E8; // type:object size:0x4 scope:local align:4 data:float
+@677 = .rodata:0x0000A7EC; // type:object size:0x4 scope:local align:4 data:float
+@678 = .rodata:0x0000A7F0; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000A7F8; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000A7FC; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x0000A800; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x0000A804; // type:object size:0x4 scope:local align:4 data:float
+@487 = .rodata:0x0000A808; // type:object size:0x4 scope:local align:4 data:float
+@488 = .rodata:0x0000A80C; // type:object size:0x4 scope:local align:4 data:float
+@489 = .rodata:0x0000A810; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000A814; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x0000A818; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000A81C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x0000A820; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x0000A824; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x0000A828; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x0000A82C; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x0000A830; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x0000A834; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x0000A838; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x0000A83C; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000A840; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x0000A848; // type:object size:0x8 scope:local align:8 data:double
+@476 = .rodata:0x0000A850; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x0000A854; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x0000A858; // type:object size:0x4 scope:local align:4 data:float
+@479 = .rodata:0x0000A85C; // type:object size:0x4 scope:local align:4 data:float
+@494 = .rodata:0x0000A860; // type:object size:0x4 scope:local align:4 data:float
+@495 = .rodata:0x0000A864; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x0000A868; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x0000A86C; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x0000A870; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000A874; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000A878; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x0000A880; // type:object size:0x8 scope:local align:8 data:double
+@642 = .rodata:0x0000A888; // type:object size:0x4 scope:local align:4 data:float
+@643 = .rodata:0x0000A88C; // type:object size:0x4 scope:local align:4 data:float
+@645 = .rodata:0x0000A890; // type:object size:0x8 scope:local align:8 data:double
+@700 = .rodata:0x0000A898; // type:object size:0x4 scope:local align:4 data:float
+@863 = .rodata:0x0000A89C; // type:object size:0x4 scope:local align:4 data:4byte
+@873 = .rodata:0x0000A8A0; // type:object size:0x4 scope:local align:4 data:float
+@874 = .rodata:0x0000A8A4; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000A8A8; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000A8AC; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000A8B0; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000A8B4; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000A8B8; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000A8BC; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000A8C0; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000A8C4; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000A8C8; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000A8CC; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000A8D0; // type:object size:0xC scope:local align:4 data:4byte
+@396 = .rodata:0x0000A8DC; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000A8E0; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000A8E4; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000A8E8; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000A8EC; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000A8F0; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000A8F4; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000A8F8; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000A8FC; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000A900; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000A904; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x0000A908; // type:object size:0x4 scope:local align:4 data:float
+@523 = .rodata:0x0000A90C; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x0000A910; // type:object size:0x4 scope:local align:4 data:float
+@525 = .rodata:0x0000A914; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x0000A918; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x0000A91C; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x0000A920; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x0000A924; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000A928; // type:object size:0xC scope:local align:4 data:4byte
+@391 = .rodata:0x0000A934; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000A938; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000A93C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000A940; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000A944; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000A948; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000A94C; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000A950; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000A954; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000A958; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000A95C; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000A960; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x0000A964; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000A968; // type:object size:0xC scope:local align:4 data:4byte
+@514 = .rodata:0x0000A974; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x0000A978; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x0000A97C; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x0000A980; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000A988; // type:object size:0xC scope:local align:4 data:4byte
+@391 = .rodata:0x0000A994; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000A998; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000A99C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000A9A0; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000A9A4; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000A9A8; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000A9AC; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000A9B0; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000A9B4; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000A9B8; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000A9BC; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000A9C0; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000A9C4; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000A9C8; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x0000A9CC; // type:object size:0x4 scope:local align:4 data:float
+@515 = .rodata:0x0000A9D0; // type:object size:0x4 scope:local align:4 data:float
+@516 = .rodata:0x0000A9D4; // type:object size:0x4 scope:local align:4 data:float
+@517 = .rodata:0x0000A9D8; // type:object size:0x4 scope:local align:4 data:float
+@518 = .rodata:0x0000A9DC; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000A9E0; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000A9E4; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000A9E8; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000A9EC; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000A9F0; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000A9F4; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000A9F8; // type:object size:0x8 scope:local align:8 data:double
+@408 = .rodata:0x0000AA00; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000AA04; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000AA08; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000AA0C; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000AA10; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000AA14; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000AA18; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AA1C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AA20; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000AA24; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AA28; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000AA30; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000AA34; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000AA38; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000AA3C; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AA40; // type:object size:0x4 scope:local align:4 data:float
+@374 = .rodata:0x0000AA48; // type:object size:0x4 scope:local align:4 data:float
+@375 = .rodata:0x0000AA4C; // type:object size:0x4 scope:local align:4 data:float
+@376 = .rodata:0x0000AA50; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000AA54; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000AA58; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000AA60; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000AA64; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AA68; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000AA6C; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000AA70; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000AA74; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000AA78; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AA7C; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000AA80; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AA84; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000AA88; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000AA8C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000AA90; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000AA94; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000AA98; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000AA9C; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000AAA0; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000AAA4; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000AAA8; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000AAAC; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000AAB0; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000AAB4; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000AAB8; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000AABC; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000AAC0; // type:object size:0x4 scope:local align:4 data:float
+@443 = .rodata:0x0000AAC4; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x0000AAC8; // type:object size:0x8 scope:local align:8 data:double
+@521 = .rodata:0x0000AAD0; // type:object size:0x4 scope:local align:4 data:float
+@522 = .rodata:0x0000AAD8; // type:object size:0x8 scope:local align:8 data:double
+@523 = .rodata:0x0000AAE0; // type:object size:0x8 scope:local align:8 data:double
+@524 = .rodata:0x0000AAE8; // type:object size:0x8 scope:local align:8 data:double
+@525 = .rodata:0x0000AAF0; // type:object size:0x4 scope:local align:4 data:float
+@526 = .rodata:0x0000AAF4; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x0000AAF8; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000AB00; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000AB04; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000AB08; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000AB0C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AB10; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000AB18; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000AB1C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AB20; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000AB24; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AB28; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000AB2C; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000AB30; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000AB34; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000AB38; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000AB3C; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000AB40; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000AB44; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000AB48; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000AB4C; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000AB50; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000AB54; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000AB58; // type:object size:0x8 scope:local align:8 data:double
+@469 = .rodata:0x0000AB60; // type:object size:0x8 scope:local align:8 data:double
+@470 = .rodata:0x0000AB68; // type:object size:0x8 scope:local align:8 data:double
+@471 = .rodata:0x0000AB70; // type:object size:0x4 scope:local align:4 data:float
+@524 = .rodata:0x0000AB74; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AB78; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AB7C; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AB80; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AB84; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000AB88; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000AB8C; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000AB90; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000AB94; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000AB98; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000ABA0; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000ABA4; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000ABA8; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000ABAC; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000ABB0; // type:object size:0x8 scope:local align:8 data:double
+@390 = .rodata:0x0000ABB8; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000ABBC; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000ABC0; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000ABC4; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x0000ABC8; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x0000ABCC; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x0000ABD0; // type:object size:0x8 scope:local align:8 data:double
+@453 = .rodata:0x0000ABD8; // type:object size:0x8 scope:local align:8 data:double
+@454 = .rodata:0x0000ABE0; // type:object size:0x8 scope:local align:8 data:double
+@388 = .rodata:0x0000ABE8; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000ABEC; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000ABF0; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000ABF4; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000ABF8; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000ABFC; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000AC00; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000AC04; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000AC08; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000AC0C; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000AC10; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000AC14; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000AC18; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000AC1C; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000AC20; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000AC24; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000AC28; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000AC2C; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000AC30; // type:object size:0x4 scope:local align:4 data:float
+@485 = .rodata:0x0000AC34; // type:object size:0x4 scope:local align:4 data:float
+@486 = .rodata:0x0000AC38; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000AC40; // type:object size:0xC scope:local align:4 data:4byte
+@375 = .rodata:0x0000AC4C; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000AC50; // type:object size:0x8 scope:local align:8 data:double
+@379 = .rodata:0x0000AC58; // type:object size:0x4 scope:local align:4 data:float
+@380 = .rodata:0x0000AC5C; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000AC60; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000AC64; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000AC68; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000AC6C; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000AC70; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000AC74; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AC78; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000AC80; // type:object size:0x8 scope:local align:8 data:double
+@464 = .rodata:0x0000AC88; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000AC90; // type:object size:0x8 scope:local align:8 data:double
+@466 = .rodata:0x0000AC98; // type:object size:0x8 scope:local align:8 data:double
+@467 = .rodata:0x0000ACA0; // type:object size:0x8 scope:local align:8 data:double
+@468 = .rodata:0x0000ACA8; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000ACAC; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000ACB0; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x0000ACB4; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x0000ACB8; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x0000ACBC; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000ACC0; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000ACC4; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000ACC8; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000ACCC; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000ACD0; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000ACD4; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000ACD8; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000ACDC; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000ACE0; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000ACE4; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000ACE8; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000ACEC; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000ACF0; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000ACF4; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000ACF8; // type:object size:0x8 scope:local align:8 data:double
+@440 = .rodata:0x0000AD00; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000AD04; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000AD08; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x0000AD10; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x0000AD14; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x0000AD18; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x0000AD1C; // type:object size:0x4 scope:local align:4 data:float
+@556 = .rodata:0x0000AD20; // type:object size:0x4 scope:local align:4 data:float
+@557 = .rodata:0x0000AD24; // type:object size:0x4 scope:local align:4 data:float
+@558 = .rodata:0x0000AD28; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000AD30; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000AD34; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000AD38; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000AD3C; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000AD40; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000AD48; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AD4C; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AD50; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AD54; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AD58; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000AD60; // type:object size:0x8 scope:local align:8 data:double
+@419 = .rodata:0x0000AD68; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AD6C; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000AD70; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000AD78; // type:object size:0x8 scope:local align:8 data:double
+@423 = .rodata:0x0000AD80; // type:object size:0x8 scope:local align:8 data:double
+@424 = .rodata:0x0000AD88; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AD8C; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000AD90; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AD94; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x0000AD98; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000ADA0; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000ADA4; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000ADA8; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000ADAC; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000ADB0; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000ADB4; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000ADB8; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000ADBC; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000ADC0; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000ADC4; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000ADC8; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000ADCC; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000ADD0; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000ADD4; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000ADD8; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000ADDC; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000ADE0; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000ADE4; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000ADE8; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000ADF0; // type:object size:0x8 scope:local align:8 data:double
+@480 = .rodata:0x0000ADF8; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000AE00; // type:object size:0x8 scope:local align:8 data:double
+@482 = .rodata:0x0000AE08; // type:object size:0x8 scope:local align:8 data:double
+@483 = .rodata:0x0000AE10; // type:object size:0x8 scope:local align:8 data:double
+@390 = .rodata:0x0000AE18; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000AE1C; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000AE20; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000AE24; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000AE28; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000AE2C; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000AE30; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000AE34; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000AE38; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000AE3C; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000AE40; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000AE44; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000AE48; // type:object size:0x8 scope:local align:8 data:double
+@403 = .rodata:0x0000AE50; // type:object size:0x6 scope:local align:4 data:2byte
+@428 = .rodata:0x0000AE58; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000AE5C; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000AE60; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000AE64; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000AE68; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000AE6C; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000AE70; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000AE78; // type:object size:0x8 scope:local align:8 data:double
+@382 = .rodata:0x0000AE80; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000AE84; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AE88; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AE8C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AE90; // type:object size:0x8 scope:local align:8 data:double
+@400 = .rodata:0x0000AE98; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000AE9C; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000AEA0; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000AEA4; // type:object size:0x4 scope:local align:4 data:float
+@443 = .rodata:0x0000AEA8; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000AEAC; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000AEB0; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000AEBC; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000AEC0; // type:object size:0x8 scope:local align:8 data:double
+@386 = .rodata:0x0000AEC8; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000AECC; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AED0; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000AED8; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000AEDC; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AEE0; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AEE4; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AEE8; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000AEEC; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000AEF0; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000AEF8; // type:object size:0x8 scope:local align:8 data:double
+@431 = .rodata:0x0000AF00; // type:object size:0x8 scope:local align:8 data:double
+@432 = .rodata:0x0000AF08; // type:object size:0x8 scope:local align:8 data:double
+@433 = .rodata:0x0000AF10; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000AF14; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000AF18; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000AF20; // type:object size:0x8 scope:local align:8 data:double
+@461 = .rodata:0x0000AF28; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000AF2C; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000AF30; // type:object size:0x8 scope:local align:8 data:double
+@385 = .rodata:0x0000AF38; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AF3C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AF40; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000AF44; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000AF48; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AF4C; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000AF50; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000AF54; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AF58; // type:object size:0x8 scope:local align:8 data:double
+@391 = .rodata:0x0000AF60; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000AF64; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000AF68; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000AF6C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AF70; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AF74; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AF78; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000AF7C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000AF80; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AF84; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AF88; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000AF8C; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AF90; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000AF98; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000AFA0; // type:object size:0x8 scope:local align:8 data:double
+@423 = .rodata:0x0000AFA8; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000AFAC; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000AFB0; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000AFB4; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000AFB8; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000AFBC; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000AFC0; // type:object size:0x8 scope:local align:8 data:double
+@463 = .rodata:0x0000AFC8; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000AFCC; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000AFD0; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000AFD8; // type:object size:0x8 scope:local align:8 data:double
+@384 = .rodata:0x0000AFE0; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000AFE4; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000AFE8; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000AFEC; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000AFF0; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000AFF8; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000B000; // type:object size:0x8 scope:local align:8 data:double
+@423 = .rodata:0x0000B008; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000B00C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000B010; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000B014; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000B018; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000B01C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000B020; // type:object size:0x8 scope:local align:8 data:double
+@468 = .rodata:0x0000B028; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000B02C; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000B030; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x0000B034; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000B038; // type:object size:0x8 scope:local align:8 data:double
+@382 = .rodata:0x0000B040; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000B044; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000B048; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B04C; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B050; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B058; // type:object size:0x8 scope:local align:8 data:double
+@384 = .rodata:0x0000B060; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B064; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B068; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B06C; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B070; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000B078; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000B080; // type:object size:0x8 scope:local align:8 data:double
+@423 = .rodata:0x0000B088; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000B08C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000B090; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000B094; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000B098; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000B09C; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000B0A0; // type:object size:0x8 scope:local align:8 data:double
+@463 = .rodata:0x0000B0A8; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000B0AC; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000B0B0; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000B0B8; // type:object size:0x8 scope:local align:8 data:double
+@375 = .rodata:0x0000B0C0; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000B0CC; // type:object size:0xC scope:local align:4 data:4byte
+@385 = .rodata:0x0000B0D8; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B0DC; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B0E0; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B0E4; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B0E8; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B0EC; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000B0F0; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000B0F4; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B0F8; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B0FC; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B100; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000B104; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B108; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B10C; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B110; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B118; // type:object size:0x8 scope:local align:8 data:double
+@419 = .rodata:0x0000B120; // type:object size:0x8 scope:local align:8 data:double
+@420 = .rodata:0x0000B128; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000B130; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000B134; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000B138; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000B13C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000B140; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000B144; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000B148; // type:object size:0x8 scope:local align:8 data:double
+@466 = .rodata:0x0000B150; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000B154; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000B158; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000B15C; // type:object size:0x4 scope:local align:4 data:float
+@471 = .rodata:0x0000B160; // type:object size:0x8 scope:local align:8 data:double
+@389 = .rodata:0x0000B168; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B16C; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B170; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B174; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B178; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B17C; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B180; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000B184; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000B188; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000B18C; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000B190; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B194; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000B198; // type:object size:0x8 scope:local align:8 data:double
+@384 = .rodata:0x0000B1A0; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B1A4; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B1A8; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000B1AC; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B1B0; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B1B4; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B1B8; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B1BC; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B1C0; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B1C8; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B1CC; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B1D0; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B1D8; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B1DC; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B1E0; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B1E4; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B1E8; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B1EC; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B1F0; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B1F4; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000B1F8; // type:object size:0x8 scope:local align:8 data:double
+@431 = .rodata:0x0000B200; // type:object size:0x8 scope:local align:8 data:double
+@432 = .rodata:0x0000B208; // type:object size:0x8 scope:local align:8 data:double
+@456 = .rodata:0x0000B210; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B218; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B21C; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000B220; // type:object size:0x8 scope:local align:8 data:double
+@408 = .rodata:0x0000B228; // type:object size:0x8 scope:local align:8 data:double
+@409 = .rodata:0x0000B230; // type:object size:0x8 scope:local align:8 data:double
+@410 = .rodata:0x0000B238; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000B23C; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000B240; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000B244; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000B248; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000B24C; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000B250; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B254; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B258; // type:object size:0x8 scope:local align:8 data:double
+@445 = .rodata:0x0000B260; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B268; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B26C; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B270; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B274; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B278; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B27C; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B280; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B288; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000B290; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000B298; // type:object size:0x8 scope:local align:8 data:double
+@423 = .rodata:0x0000B2A0; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x0000B2A4; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x0000B2A8; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x0000B2AC; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x0000B2B0; // type:object size:0x8 scope:local align:8 data:double
+@477 = .rodata:0x0000B2B8; // type:object size:0x4 scope:local align:4 data:float
+@478 = .rodata:0x0000B2BC; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000B2C0; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000B2CC; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B2D0; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B2D8; // type:object size:0x8 scope:local align:8 data:double
+@388 = .rodata:0x0000B2E0; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000B2E4; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B2E8; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000B2EC; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000B2F0; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000B2F4; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000B2F8; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000B2FC; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000B300; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000B304; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B308; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000B310; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000B31C; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B320; // type:object size:0x8 scope:local align:8 data:double
+@417 = .rodata:0x0000B328; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B32C; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B330; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B338; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B33C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B340; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B344; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B348; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B350; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B354; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B358; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B35C; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B360; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000B364; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B368; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000B36C; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B370; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000B374; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000B378; // type:object size:0x8 scope:local align:8 data:double
+@386 = .rodata:0x0000B380; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B384; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B388; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B38C; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B390; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B394; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000B398; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000B39C; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000B3A0; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000B3A4; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000B3A8; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000B3AC; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B3B0; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B3B4; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x0000B3B8; // type:object size:0x8 scope:local align:8 data:double
+@392 = .rodata:0x0000B3C0; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B3C4; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B3C8; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B3CC; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B3D0; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B3D4; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B3D8; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B3DC; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000B3E0; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B3E8; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B3EC; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B3F0; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B3F4; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B3F8; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B3FC; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B400; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B404; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B408; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B40C; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B410; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B414; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B418; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B41C; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x0000B420; // type:object size:0x4 scope:local align:4 data:float
+@454 = .rodata:0x0000B424; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x0000B428; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000B42C; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x0000B430; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x0000B434; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x0000B438; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x0000B43C; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000B440; // type:object size:0x4 scope:local align:4 data:float
+@527 = .rodata:0x0000B444; // type:object size:0x4 scope:local align:4 data:float
+@528 = .rodata:0x0000B448; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x0000B44C; // type:object size:0x4 scope:local align:4 data:float
+@530 = .rodata:0x0000B450; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x0000B454; // type:object size:0x4 scope:local align:4 data:float
+@532 = .rodata:0x0000B458; // type:object size:0x4 scope:local align:4 data:float
+@554 = .rodata:0x0000B45C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B460; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B464; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B468; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B46C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B470; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B474; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B478; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B47C; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B480; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000B484; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B488; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B48C; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B490; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B494; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B498; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B49C; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000B4A0; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000B4A4; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000B4A8; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B4AC; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000B4B0; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B4B4; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000B4B8; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000B4BC; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000B4C0; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000B4C4; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000B4C8; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000B4D0; // type:object size:0x8 scope:local align:8 data:double
+@433 = .rodata:0x0000B4D8; // type:object size:0x8 scope:local align:8 data:double
+@434 = .rodata:0x0000B4E0; // type:object size:0x8 scope:local align:8 data:double
+@435 = .rodata:0x0000B4E8; // type:object size:0x8 scope:local align:8 data:double
+@461 = .rodata:0x0000B4F0; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000B4F4; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000B4F8; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000B4FC; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000B500; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000B504; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000B508; // type:object size:0x4 scope:local align:4 data:float
+@374 = .rodata:0x0000B510; // type:object size:0xC scope:local align:4 data:4byte
+@380 = .rodata:0x0000B51C; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B520; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B524; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B528; // type:object size:0x8 scope:local align:8 data:double
+@391 = .rodata:0x0000B530; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B534; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B538; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B53C; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000B540; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000B544; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B548; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000B54C; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B550; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B558; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B55C; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B560; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000B564; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000B568; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000B56C; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000B570; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000B574; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B578; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B57C; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B580; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B584; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B588; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B58C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B590; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B594; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B598; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B59C; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B5A0; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000B5A4; // type:object size:0x4 scope:local align:4 data:float
+@421 = .rodata:0x0000B5A8; // type:object size:0x4 scope:local align:4 data:float
+@422 = .rodata:0x0000B5AC; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000B5B0; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000B5B4; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B5B8; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000B5BC; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000B5C0; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000B5C4; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000B5C8; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000B5CC; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000B5D0; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000B5D4; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000B5D8; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000B5DC; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000B5E0; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000B5E4; // type:object size:0x4 scope:local align:4 data:float
+@493 = .rodata:0x0000B5E8; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x0000B5EC; // type:object size:0x4 scope:local align:4 data:float
+@509 = .rodata:0x0000B5F0; // type:object size:0x4 scope:local align:4 data:float
+@529 = .rodata:0x0000B5F4; // type:object size:0x4 scope:local align:4 data:float
+@588 = .rodata:0x0000B5F8; // type:object size:0x4 scope:local align:4 data:float
+@589 = .rodata:0x0000B5FC; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B600; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B604; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B608; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B60C; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B610; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B614; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B618; // type:object size:0x8 scope:local align:8 data:double
+@441 = .rodata:0x0000B620; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x0000B624; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000B628; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B62C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B630; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000B634; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000B638; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B63C; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000B640; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000B644; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B648; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B64C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B650; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B654; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B658; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000B65C; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000B660; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000B664; // type:object size:0x4 scope:local align:4 data:float
+@419 = .rodata:0x0000B668; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000B670; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000B67C; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B680; // type:object size:0x8 scope:local align:8 data:double
+@378 = .rodata:0x0000B688; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B690; // type:object size:0x8 scope:local align:8 data:double
+@394 = .rodata:0x0000B698; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B69C; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B6A0; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B6A4; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B6A8; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B6AC; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000B6B0; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000B6B4; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B6B8; // type:object size:0xC scope:local align:4 data:4byte
+@383 = .rodata:0x0000B6C4; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B6C8; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B6CC; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B6D0; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B6D4; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B6D8; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B6DC; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B6E0; // type:object size:0x8 scope:local align:8 data:double
+@427 = .rodata:0x0000B6E8; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000B6EC; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000B6F0; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B6F8; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B6FC; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000B700; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000B704; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B708; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B70C; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B710; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B718; // type:object size:0x8 scope:local align:8 data:double
+@407 = .rodata:0x0000B720; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000B724; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000B728; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000B72C; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000B730; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000B734; // type:object size:0x4 scope:local align:4 data:float
+@375 = .rodata:0x0000B738; // type:object size:0xC scope:local align:4 data:4byte
+@382 = .rodata:0x0000B744; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B748; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B74C; // type:object size:0xC scope:local align:4 data:4byte
+@398 = .rodata:0x0000B758; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B75C; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000B760; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000B764; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000B768; // type:object size:0x8 scope:local align:8 data:double
+@406 = .rodata:0x0000B770; // type:object size:0x8 scope:local align:8 data:double
+@419 = .rodata:0x0000B778; // type:object size:0xC scope:local align:4 data:4byte
+@428 = .rodata:0x0000B784; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000B788; // type:object size:0x4 scope:local align:4 data:float
+@443 = .rodata:0x0000B78C; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000B790; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x0000B794; // type:object size:0x4 scope:local align:4 data:float
+@475 = .rodata:0x0000B798; // type:object size:0x4 scope:local align:4 data:float
+@375 = .rodata:0x0000B7A0; // type:object size:0xC scope:local align:4 data:4byte
+@382 = .rodata:0x0000B7AC; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B7B0; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B7B4; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B7B8; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B7BC; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000B7C0; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B7C8; // type:object size:0x8 scope:local align:8 data:double
+@405 = .rodata:0x0000B7D0; // type:object size:0x8 scope:local align:8 data:double
+@418 = .rodata:0x0000B7D8; // type:object size:0xC scope:local align:4 data:4byte
+@427 = .rodata:0x0000B7E4; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B7E8; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000B7EC; // type:object size:0x4 scope:local align:4 data:float
+@472 = .rodata:0x0000B7F0; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000B7F4; // type:object size:0x4 scope:local align:4 data:float
+@474 = .rodata:0x0000B7F8; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B800; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B804; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B808; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B80C; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B810; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000B814; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B818; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B81C; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B820; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B824; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B828; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B82C; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000B830; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000B834; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000B838; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000B83C; // type:object size:0x4 scope:local align:4 data:float
+@438 = .rodata:0x0000B840; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000B844; // type:object size:0x4 scope:local align:4 data:float
+@440 = .rodata:0x0000B848; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B84C; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000B850; // type:object size:0x8 scope:local align:8 data:double
+@399 = .rodata:0x0000B858; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B860; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000B864; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B868; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B86C; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000B870; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000B874; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B878; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000B87C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000B880; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B884; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B888; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000B88C; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000B890; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000B894; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000B898; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000B89C; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000B8A0; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B8A8; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000B8AC; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000B8B0; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000B8B8; // type:object size:0x8 scope:local align:8 data:double
+@447 = .rodata:0x0000B8C0; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000B8C8; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B8CC; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000B8D0; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B8D4; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B8D8; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B8DC; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B8E0; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000B8E4; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000B8E8; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000B8EC; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B8F0; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000B8F4; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B8F8; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000B8FC; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x0000B900; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x0000B908; // type:object size:0x8 scope:local align:8 data:double
+@377 = .rodata:0x0000B910; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000B914; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B918; // type:object size:0x4 scope:local align:4 data:float
+@380 = .rodata:0x0000B91C; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B920; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B928; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000B92C; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000B930; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000B934; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000B938; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000B940; // type:object size:0x8 scope:local align:8 data:double
+@384 = .rodata:0x0000B948; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000B94C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B950; // type:object size:0x8 scope:local align:8 data:double
+@402 = .rodata:0x0000B958; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B95C; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000B960; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000B964; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000B968; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000B96C; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000B970; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000B974; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000B978; // type:object size:0xC scope:local align:4 data:4byte
+@380 = .rodata:0x0000B984; // type:object size:0xC scope:local align:4 data:4byte
+@387 = .rodata:0x0000B990; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000B994; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000B998; // type:object size:0x8 scope:local align:8 data:double
+@424 = .rodata:0x0000B9A0; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000B9A4; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000B9A8; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x0000B9AC; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x0000B9B0; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000B9B4; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000B9B8; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000B9BC; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000B9C0; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000B9C8; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000B9CC; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000B9D0; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000B9D4; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000B9D8; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000B9DC; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000B9E0; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000B9E4; // type:object size:0x4 scope:local align:4 data:float
+@441 = .rodata:0x0000B9E8; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000B9F0; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000B9F4; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000B9F8; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000B9FC; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000BA00; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000BA04; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000BA08; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000BA0C; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000BA10; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000BA18; // type:object size:0x8 scope:local align:8 data:double
+@373 = .rodata:0x0000BA20; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000BA2C; // type:object size:0x4 scope:local align:4 data:float
+@381 = .rodata:0x0000BA30; // type:object size:0x8 scope:local align:8 data:double
+@392 = .rodata:0x0000BA38; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000BA3C; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000BA40; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000BA44; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000BA48; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000BA4C; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000BA50; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000BA54; // type:object size:0x4 scope:local align:4 data:float
+@444 = .rodata:0x0000BA58; // type:object size:0x4 scope:local align:4 data:float
+@445 = .rodata:0x0000BA5C; // type:object size:0x4 scope:local align:4 data:float
+@446 = .rodata:0x0000BA60; // type:object size:0x4 scope:local align:4 data:float
+@447 = .rodata:0x0000BA64; // type:object size:0x4 scope:local align:4 data:float
+@448 = .rodata:0x0000BA68; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x0000BA6C; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000BA70; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000BA74; // type:object size:0x6 scope:local align:4 data:2byte
+@424 = .rodata:0x0000BA7C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000BA80; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000BA84; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x0000BA88; // type:object size:0x4 scope:local align:4 data:float
+@458 = .rodata:0x0000BA8C; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BA90; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BA94; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000BA98; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000BA9C; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000BAA0; // type:object size:0x8 scope:local align:8 data:double
+@400 = .rodata:0x0000BAA8; // type:object size:0x4 scope:local align:4 data:float
+@449 = .rodata:0x0000BAAC; // type:object size:0x4 scope:local align:4 data:float
+@450 = .rodata:0x0000BAB0; // type:object size:0x4 scope:local align:4 data:float
+@451 = .rodata:0x0000BAB4; // type:object size:0x4 scope:local align:4 data:float
+@452 = .rodata:0x0000BAB8; // type:object size:0x4 scope:local align:4 data:float
+@453 = .rodata:0x0000BABC; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BAC0; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BAC4; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000BAC8; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000BACC; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000BAD0; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000BAD4; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000BAD8; // type:object size:0x8 scope:local align:8 data:double
+@421 = .rodata:0x0000BAE0; // type:object size:0x8 scope:local align:8 data:double
+@422 = .rodata:0x0000BAE8; // type:object size:0x8 scope:local align:8 data:double
+@400 = .rodata:0x0000BAF0; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000BAF4; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000BAF8; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000BAFC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000BB00; // type:object size:0x8 scope:local align:8 data:double
+@386 = .rodata:0x0000BB08; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000BB0C; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000BB10; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000BB14; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000BB18; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BB1C; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000BB20; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x0000BB24; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x0000BB28; // type:object size:0x8 scope:local align:8 data:double
+@461 = .rodata:0x0000BB30; // type:object size:0x8 scope:local align:8 data:double
+@462 = .rodata:0x0000BB38; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000BB3C; // type:object size:0x4 scope:local align:4 data:float
+@464 = .rodata:0x0000BB40; // type:object size:0x4 scope:local align:4 data:float
+@465 = .rodata:0x0000BB44; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000BB48; // type:object size:0x4 scope:local align:4 data:float
+@467 = .rodata:0x0000BB4C; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000BB50; // type:object size:0x8 scope:local align:8 data:double
+@469 = .rodata:0x0000BB58; // type:object size:0x4 scope:local align:4 data:float
+@470 = .rodata:0x0000BB5C; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000BB60; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000BB64; // type:object size:0x4 scope:local align:4 data:float
+@423 = .rodata:0x0000BB68; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000BB6C; // type:object size:0x4 scope:local align:4 data:float
+@442 = .rodata:0x0000BB70; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000BB74; // type:object size:0x4 scope:local align:4 data:float
+@482 = .rodata:0x0000BB78; // type:object size:0x4 scope:local align:4 data:float
+@483 = .rodata:0x0000BB7C; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000BB80; // type:object size:0x4 scope:local align:4 data:float
+@377 = .rodata:0x0000BB88; // type:object size:0x4 scope:local align:4 data:float
+@387 = .rodata:0x0000BB8C; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000BB90; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000BB94; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000BB98; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BB9C; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000BBA0; // type:object size:0xC scope:local align:4 data:4byte
+@378 = .rodata:0x0000BBAC; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000BBB0; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BBB8; // type:object size:0x8 scope:local align:8 data:double
+@390 = .rodata:0x0000BBC0; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BBC4; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BBC8; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BBCC; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BBD0; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BBD4; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000BBD8; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BBE0; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BBE4; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BBE8; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BBEC; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000BBF0; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BBF4; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000BBF8; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000BBFC; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000BC00; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000BC04; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000BC08; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000BC0C; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000BC10; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BC14; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BC18; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BC1C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BC20; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BC24; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000BC28; // type:object size:0x4 scope:local align:4 data:float
+@496 = .rodata:0x0000BC2C; // type:object size:0x4 scope:local align:4 data:float
+@497 = .rodata:0x0000BC30; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x0000BC34; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000BC38; // type:object size:0x8 scope:local align:8 data:double
+@500 = .rodata:0x0000BC40; // type:object size:0x8 scope:local align:8 data:double
+@501 = .rodata:0x0000BC48; // type:object size:0x4 scope:local align:4 data:float
+@502 = .rodata:0x0000BC4C; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000BC50; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x0000BC54; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x0000BC58; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x0000BC5C; // type:object size:0x4 scope:local align:4 data:float
+@538 = .rodata:0x0000BC60; // type:object size:0x4 scope:local align:4 data:float
+@539 = .rodata:0x0000BC64; // type:object size:0x4 scope:local align:4 data:float
+@541 = .rodata:0x0000BC68; // type:object size:0x8 scope:local align:8 data:double
+@382 = .rodata:0x0000BC70; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BC74; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000BC78; // type:object size:0x8 scope:local align:8 data:double
+@419 = .rodata:0x0000BC80; // type:object size:0x8 scope:local align:8 data:double
+@420 = .rodata:0x0000BC88; // type:object size:0x8 scope:local align:8 data:double
+@459 = .rodata:0x0000BC90; // type:object size:0x4 scope:local align:4 data:float
+@460 = .rodata:0x0000BC94; // type:object size:0x4 scope:local align:4 data:float
+@461 = .rodata:0x0000BC98; // type:object size:0x4 scope:local align:4 data:float
+@462 = .rodata:0x0000BC9C; // type:object size:0x4 scope:local align:4 data:float
+@463 = .rodata:0x0000BCA0; // type:object size:0x4 scope:local align:4 data:float
+@466 = .rodata:0x0000BCA8; // type:object size:0x8 scope:local align:8 data:double
+@396 = .rodata:0x0000BCB0; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BCB4; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000BCB8; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000BCBC; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000BCC0; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000BCC4; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000BCC8; // type:object size:0x4 scope:local align:4 data:float
+@431 = .rodata:0x0000BCCC; // type:object size:0x4 scope:local align:4 data:float
+@432 = .rodata:0x0000BCD0; // type:object size:0x4 scope:local align:4 data:float
+@433 = .rodata:0x0000BCD4; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x0000BCD8; // type:object size:0x4 scope:local align:4 data:float
+@511 = .rodata:0x0000BCDC; // type:object size:0x4 scope:local align:4 data:float
+@512 = .rodata:0x0000BCE0; // type:object size:0x4 scope:local align:4 data:float
+@513 = .rodata:0x0000BCE4; // type:object size:0x4 scope:local align:4 data:float
+@514 = .rodata:0x0000BCE8; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000BCF0; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000BCF4; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000BCF8; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000BCFC; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000BD00; // type:object size:0x4 scope:local align:4 data:float
+@429 = .rodata:0x0000BD04; // type:object size:0x4 scope:local align:4 data:float
+@430 = .rodata:0x0000BD08; // type:object size:0x4 scope:local align:4 data:float
+@459 = .rodata:0x0000BD0C; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BD10; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BD14; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000BD18; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BD1C; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000BD20; // type:object size:0x4 scope:local align:4 data:float
+@399 = .rodata:0x0000BD24; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000BD28; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000BD2C; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000BD30; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000BD34; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000BD38; // type:object size:0x8 scope:local align:8 data:double
+@434 = .rodata:0x0000BD40; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000BD44; // type:object size:0x4 scope:local align:4 data:float
+@480 = .rodata:0x0000BD48; // type:object size:0x8 scope:local align:8 data:double
+@481 = .rodata:0x0000BD50; // type:object size:0x8 scope:local align:8 data:double
+@482 = .rodata:0x0000BD58; // type:object size:0x8 scope:local align:8 data:double
+@483 = .rodata:0x0000BD60; // type:object size:0x8 scope:local align:8 data:double
+@519 = .rodata:0x0000BD68; // type:object size:0x4 scope:local align:4 data:float
+@520 = .rodata:0x0000BD6C; // type:object size:0x4 scope:local align:4 data:float
+@401 = .rodata:0x0000BD70; // type:object size:0x4 scope:local align:4 data:float
+@402 = .rodata:0x0000BD74; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000BD78; // type:object size:0x4 scope:local align:4 data:float
+@404 = .rodata:0x0000BD7C; // type:object size:0x4 scope:local align:4 data:float
+@405 = .rodata:0x0000BD80; // type:object size:0x4 scope:local align:4 data:float
+@406 = .rodata:0x0000BD84; // type:object size:0x4 scope:local align:4 data:float
+@407 = .rodata:0x0000BD88; // type:object size:0x4 scope:local align:4 data:float
+@408 = .rodata:0x0000BD8C; // type:object size:0x4 scope:local align:4 data:float
+@409 = .rodata:0x0000BD90; // type:object size:0x4 scope:local align:4 data:float
+@410 = .rodata:0x0000BD94; // type:object size:0x4 scope:local align:4 data:float
+@411 = .rodata:0x0000BD98; // type:object size:0x4 scope:local align:4 data:float
+@412 = .rodata:0x0000BD9C; // type:object size:0x4 scope:local align:4 data:float
+@413 = .rodata:0x0000BDA0; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000BDA4; // type:object size:0x4 scope:local align:4 data:float
+@415 = .rodata:0x0000BDA8; // type:object size:0x4 scope:local align:4 data:float
+@416 = .rodata:0x0000BDAC; // type:object size:0x4 scope:local align:4 data:float
+@417 = .rodata:0x0000BDB0; // type:object size:0x4 scope:local align:4 data:float
+@418 = .rodata:0x0000BDB4; // type:object size:0x4 scope:local align:4 data:float
+@420 = .rodata:0x0000BDB8; // type:object size:0x8 scope:local align:8 data:double
+@434 = .rodata:0x0000BDC0; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000BDC4; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000BDC8; // type:object size:0x8 scope:local align:8 data:double
+@437 = .rodata:0x0000BDD0; // type:object size:0x8 scope:local align:8 data:double
+@438 = .rodata:0x0000BDD8; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000BDE0; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000BDE4; // type:object size:0x4 scope:local align:4 data:float
+@390 = .rodata:0x0000BDE8; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BDEC; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BDF0; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BDF8; // type:object size:0x4 scope:local align:4 data:float
+@389 = .rodata:0x0000BE00; // type:object size:0xA scope:local align:4 data:2byte
+@413 = .rodata:0x0000BE0C; // type:object size:0x4 scope:local align:4 data:float
+@414 = .rodata:0x0000BE10; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000BE14; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BE18; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BE1C; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000BE20; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000BE24; // type:object size:0x4 scope:local align:4 data:float
+@386 = .rodata:0x0000BE28; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000BE2C; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000BE30; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000BE34; // type:object size:0x4 scope:local align:4 data:float
+@437 = .rodata:0x0000BE38; // type:object size:0x4 scope:local align:4 data:float
+@439 = .rodata:0x0000BE40; // type:object size:0x8 scope:local align:8 data:double
+@391 = .rodata:0x0000BE48; // type:object size:0x4 scope:local align:4 data:float
+@531 = .rodata:0x0000BE4C; // type:object size:0x4 scope:local align:4 data:float
+@403 = .rodata:0x0000BE50; // type:object size:0x6 scope:local align:4 data:2byte
+@423 = .rodata:0x0000BE58; // type:object size:0x4 scope:local align:4 data:float
+@424 = .rodata:0x0000BE5C; // type:object size:0x4 scope:local align:4 data:float
+@455 = .rodata:0x0000BE60; // type:object size:0x4 scope:local align:4 data:float
+@456 = .rodata:0x0000BE64; // type:object size:0x4 scope:local align:4 data:float
+@457 = .rodata:0x0000BE68; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BE70; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BE74; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BE78; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000BE7C; // type:object size:0x4 scope:local align:4 data:float
+@427 = .rodata:0x0000BE80; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000BE84; // type:object size:0x4 scope:local align:4 data:float
+@373 = .rodata:0x0000BE88; // type:object size:0xC scope:local align:4 data:4byte
+@375 = .rodata:0x0000BE94; // type:object size:0x4 scope:local align:4 data:float
+@378 = .rodata:0x0000BE98; // type:object size:0x8 scope:local align:8 data:double
+@382 = .rodata:0x0000BEA0; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BEA4; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000BEA8; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BEAC; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BEB0; // type:object size:0x4 scope:local align:4 data:float
+@392 = .rodata:0x0000BEB4; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BEB8; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BEBC; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BEC0; // type:object size:0x4 scope:local align:4 data:float
+@434 = .rodata:0x0000BEC4; // type:object size:0x4 scope:local align:4 data:float
+@435 = .rodata:0x0000BEC8; // type:object size:0x4 scope:local align:4 data:float
+@436 = .rodata:0x0000BECC; // type:object size:0x4 scope:local align:4 data:float
+@503 = .rodata:0x0000BED0; // type:object size:0x4 scope:local align:4 data:float
+@504 = .rodata:0x0000BED4; // type:object size:0x4 scope:local align:4 data:float
+@505 = .rodata:0x0000BED8; // type:object size:0x4 scope:local align:4 data:float
+@506 = .rodata:0x0000BEDC; // type:object size:0x4 scope:local align:4 data:float
+@507 = .rodata:0x0000BEE0; // type:object size:0x4 scope:local align:4 data:float
+@508 = .rodata:0x0000BEE4; // type:object size:0x4 scope:local align:4 data:float
+@510 = .rodata:0x0000BEE8; // type:object size:0x8 scope:local align:8 data:double
+@392 = .rodata:0x0000BEF0; // type:object size:0x4 scope:local align:4 data:float
+@393 = .rodata:0x0000BEF4; // type:object size:0x4 scope:local align:4 data:float
+@394 = .rodata:0x0000BEF8; // type:object size:0x4 scope:local align:4 data:float
+@395 = .rodata:0x0000BEFC; // type:object size:0x4 scope:local align:4 data:float
+@396 = .rodata:0x0000BF00; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BF04; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000BF08; // type:object size:0x4 scope:local align:4 data:float
+@400 = .rodata:0x0000BF10; // type:object size:0x8 scope:local align:8 data:double
+@445 = .rodata:0x0000BF18; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x0000BF1C; // type:object size:0x4 scope:local align:4 data:float
+@391 = .rodata:0x0000BF20; // type:object size:0x4 scope:local align:4 data:float
+@397 = .rodata:0x0000BF24; // type:object size:0x4 scope:local align:4 data:float
+@398 = .rodata:0x0000BF28; // type:object size:0x4 scope:local align:4 data:float
+@382 = .rodata:0x0000BF30; // type:object size:0x4 scope:local align:4 data:float
+@383 = .rodata:0x0000BF34; // type:object size:0x4 scope:local align:4 data:float
+@384 = .rodata:0x0000BF38; // type:object size:0x4 scope:local align:4 data:float
+@385 = .rodata:0x0000BF3C; // type:object size:0x4 scope:local align:4 data:float
+@425 = .rodata:0x0000BF40; // type:object size:0x4 scope:local align:4 data:float
+@426 = .rodata:0x0000BF44; // type:object size:0x4 scope:local align:4 data:float
+@428 = .rodata:0x0000BF48; // type:object size:0x8 scope:local align:8 data:double
+@903 = .rodata:0x0000BF50; // type:object size:0x4 scope:local align:4 data:float
+@734 = .rodata:0x0000BF58; // type:object size:0x4 scope:local align:4 data:float
+@600 = .rodata:0x0000BF60; // type:object size:0x4 scope:local align:4 data:float
+@601 = .rodata:0x0000BF64; // type:object size:0x4 scope:local align:4 data:float
+@534 = .rodata:0x0000BF68; // type:object size:0x4 scope:local align:4 data:float
+@535 = .rodata:0x0000BF6C; // type:object size:0x4 scope:local align:4 data:float
+@536 = .rodata:0x0000BF70; // type:object size:0x4 scope:local align:4 data:float
+@540 = .rodata:0x0000BF74; // type:object size:0x8 scope:local align:4 data:4byte
+@551 = .rodata:0x0000BF7C; // type:object size:0x4 scope:local align:4 data:float
+@552 = .rodata:0x0000BF80; // type:object size:0x4 scope:local align:4 data:float
+@553 = .rodata:0x0000BF84; // type:object size:0x4 scope:local align:4 data:float
+@555 = .rodata:0x0000BF88; // type:object size:0x8 scope:local align:8 data:double
+@563 = .rodata:0x0000BF90; // type:object size:0x4 scope:local align:4 data:float
+@379 = .rodata:0x0000BF98; // type:object size:0x78 scope:local align:4
+@391 = .rodata:0x0000C010; // type:object size:0xC scope:local align:4 data:4byte
+@465 = .rodata:0x0000C01C; // type:object size:0x8 scope:local align:4 data:4byte
+@467 = .rodata:0x0000C024; // type:object size:0x4 scope:local align:4 data:float
+@468 = .rodata:0x0000C028; // type:object size:0x4 scope:local align:4 data:float
+@469 = .rodata:0x0000C02C; // type:object size:0x4 scope:local align:4 data:float
+@473 = .rodata:0x0000C030; // type:object size:0xD scope:local align:4 data:byte
+@475 = .rodata:0x0000C040; // type:object size:0x4 scope:local align:4 data:float
+@476 = .rodata:0x0000C044; // type:object size:0x4 scope:local align:4 data:float
+@477 = .rodata:0x0000C048; // type:object size:0x4 scope:local align:4 data:float
+@481 = .rodata:0x0000C04C; // type:object size:0xF scope:local align:4 data:byte
+@483 = .rodata:0x0000C05C; // type:object size:0x4 scope:local align:4 data:float
+@484 = .rodata:0x0000C060; // type:object size:0x4 scope:local align:4 data:byte
+@488 = .rodata:0x0000C064; // type:object size:0x15 scope:local align:4 data:string
+@490 = .rodata:0x0000C07C; // type:object size:0x4 scope:local align:4 data:float
+@491 = .rodata:0x0000C080; // type:object size:0x4 scope:local align:4 data:2byte
+@495 = .rodata:0x0000C084; // type:object size:0x1A scope:local align:4
+@497 = .rodata:0x0000C0A0; // type:object size:0x4 scope:local align:4 data:float
+@498 = .rodata:0x0000C0A4; // type:object size:0x4 scope:local align:4 data:float
+@499 = .rodata:0x0000C0A8; // type:object size:0x4 scope:local align:4 data:float
+@500 = .rodata:0x0000C0AC; // type:object size:0x4 scope:local align:4 data:float
+@501 = .rodata:0x0000C0B0; // type:object size:0x4 scope:local align:4 data:float
+@303 = .rodata:0x0000C0B8; // type:object size:0x4 scope:local align:4 data:float
+@304 = .rodata:0x0000C0BC; // type:object size:0x4 scope:local align:4 data:float
+@305 = .rodata:0x0000C0C0; // type:object size:0x4 scope:local align:4 data:float
+@306 = .rodata:0x0000C0C4; // type:object size:0x4 scope:local align:4 data:float
+@307 = .rodata:0x0000C0C8; // type:object size:0x4 scope:local align:4 data:float
+@308 = .rodata:0x0000C0CC; // type:object size:0x4 scope:local align:4 data:float
+@309 = .rodata:0x0000C0D0; // type:object size:0x4 scope:local align:4 data:float
+@311 = .rodata:0x0000C0D8; // type:object size:0x8 scope:local align:8 data:double
+@387 = .rodata:0x0000C0E0; // type:object size:0x4 scope:local align:4 data:float
+@388 = .rodata:0x0000C0E8; // type:object size:0x8 scope:local align:8 data:double
+@389 = .rodata:0x0000C0F0; // type:object size:0x8 scope:local align:8 data:double
+@736 = .rodata:0x0000C0F8; // type:object size:0x4 scope:local align:4 data:float
+@367 = .rodata:0x0000C100; // type:object size:0x4 scope:local align:4 data:float
+@368 = .rodata:0x0000C104; // type:object size:0x4 scope:local align:4 data:float
+@369 = .rodata:0x0000C108; // type:object size:0x4 scope:local align:4 data:float
+@371 = .rodata:0x0000C110; // type:object size:0x8 scope:local align:8 data:double
+@626 = .rodata:0x0000C118; // type:object size:0x4 scope:local align:4 data:float
+@627 = .rodata:0x0000C11C; // type:object size:0x4 scope:local align:4 data:float
+@693 = .rodata:0x0000C120; // type:object size:0x4 scope:local align:4 data:float
+@694 = .rodata:0x0000C124; // type:object size:0x4 scope:local align:4 data:float
+@695 = .rodata:0x0000C128; // type:object size:0x4 scope:local align:4 data:float
+@773 = .rodata:0x0000C12C; // type:object size:0x4 scope:local align:4 data:float
+@848 = .rodata:0x0000C130; // type:object size:0x4 scope:local align:4 data:float
+@897 = .rodata:0x0000C134; // type:object size:0x4 scope:local align:4 data:float
+@898 = .rodata:0x0000C138; // type:object size:0x4 scope:local align:4 data:float
+@919 = .rodata:0x0000C13C; // type:object size:0x4 scope:local align:4 data:float
+@920 = .rodata:0x0000C140; // type:object size:0x4 scope:local align:4 data:float
+@921 = .rodata:0x0000C144; // type:object size:0x4 scope:local align:4 data:float
+@922 = .rodata:0x0000C148; // type:object size:0x4 scope:local align:4 data:float
+@923 = .rodata:0x0000C14C; // type:object size:0x4 scope:local align:4 data:float
+@937 = .rodata:0x0000C150; // type:object size:0x4 scope:local align:4 data:float
+@938 = .rodata:0x0000C154; // type:object size:0x4 scope:local align:4 data:float
+@1028 = .rodata:0x0000C158; // type:object size:0x4 scope:local align:4 data:float
+@1058 = .rodata:0x0000C15C; // type:object size:0x4 scope:local align:4 data:float
+@1199 = .rodata:0x0000C160; // type:object size:0x4 scope:local align:4 data:float
+@1282 = .rodata:0x0000C164; // type:object size:0x4 scope:local align:4 data:float
+@1316 = .rodata:0x0000C168; // type:object size:0x4 scope:local align:4 data:float
+@1458 = .rodata:0x0000C16C; // type:object size:0x4 scope:local align:4 data:float
+@1459 = .rodata:0x0000C170; // type:object size:0x4 scope:local align:4 data:4byte
+@1477 = .rodata:0x0000C174; // type:object size:0x24 scope:local align:4
+@1478 = .rodata:0x0000C198; // type:object size:0x12 scope:local align:4
+@1676 = .rodata:0x0000C1AC; // type:object size:0x4 scope:local align:4 data:float
+@1690 = .rodata:0x0000C1B0; // type:object size:0x4 scope:local align:4 data:float
+@2017 = .rodata:0x0000C1B4; // type:object size:0x4 scope:local align:4 data:float
+@2134 = .rodata:0x0000C1B8; // type:object size:0x8 scope:local align:8 data:double
+@2135 = .rodata:0x0000C1C0; // type:object size:0x8 scope:local align:8 data:double
+@2136 = .rodata:0x0000C1C8; // type:object size:0x8 scope:local align:8 data:double
+@2137 = .rodata:0x0000C1D0; // type:object size:0x4 scope:local align:4 data:float
+@2138 = .rodata:0x0000C1D4; // type:object size:0x4 scope:local align:4 data:float
+@2428 = .rodata:0x0000C1D8; // type:object size:0x4 scope:local align:4 data:float
+@2520 = .rodata:0x0000C1DC; // type:object size:0xC scope:local align:4 data:4byte
+@2586 = .rodata:0x0000C1E8; // type:object size:0xC scope:local align:4 data:4byte
+@2828 = .rodata:0x0000C1F4; // type:object size:0x4 scope:local align:4 data:float
+@3377 = .rodata:0x0000C1F8; // type:object size:0xC scope:local align:4 data:4byte
+@4248 = .rodata:0x0000C204; // type:object size:0xC scope:local align:4 data:4byte
+@4470 = .rodata:0x0000C210; // type:object size:0x8 scope:local align:8 data:double
+@4712 = .rodata:0x0000C218; // type:object size:0xC scope:local align:4 data:4byte
+@4938 = .rodata:0x0000C224; // type:object size:0x4 scope:local align:4 data:float
+@5914 = .rodata:0x0000C228; // type:object size:0xC scope:local align:4 data:4byte
+@6133 = .rodata:0x0000C234; // type:object size:0x4 scope:local align:4 data:float
+@6270 = .rodata:0x0000C238; // type:object size:0x4 scope:local align:4 data:float
+@6271 = .rodata:0x0000C23C; // type:object size:0x4 scope:local align:4 data:float
+@6272 = .rodata:0x0000C240; // type:object size:0x4 scope:local align:4 data:float
+@6273 = .rodata:0x0000C244; // type:object size:0x4 scope:local align:4 data:float
+@6350 = .rodata:0x0000C248; // type:object size:0x4 scope:local align:4 data:float
+@6380 = .rodata:0x0000C24C; // type:object size:0x4 scope:local align:4 data:float
+@6391 = .rodata:0x0000C250; // type:object size:0x4 scope:local align:4 data:float
+@6392 = .rodata:0x0000C254; // type:object size:0x4 scope:local align:4 data:float
+@6599 = .rodata:0x0000C258; // type:object size:0x4 scope:local align:4 data:float
+@7073 = .rodata:0x0000C25C; // type:object size:0xC scope:local align:4 data:4byte
+@7410 = .rodata:0x0000C268; // type:object size:0x4 scope:local align:4 data:float
+@7611 = .rodata:0x0000C26C; // type:object size:0xC scope:local align:4 data:4byte
+@7689 = .rodata:0x0000C278; // type:object size:0xC scope:local align:4 data:4byte
+@7854 = .rodata:0x0000C284; // type:object size:0x4 scope:local align:4 data:float
+@7855 = .rodata:0x0000C288; // type:object size:0x4 scope:local align:4 data:float
+...data.0 = .data:0x00000000; // type:label scope:local
+@85 = .data:0x00000000; // type:object size:0x30 scope:local align:4
+@86 = .data:0x00000030; // type:object size:0x25 scope:local align:4 data:string
+@87 = .data:0x00000058; // type:object size:0x1C scope:local align:4 data:string
+@88 = .data:0x00000074; // type:object size:0x6 scope:local align:4
+evw_anime_proc$541 = .data:0x00000080; // type:object size:0x18 scope:local align:4
+l_tree_max_table = .data:0x00000098; // type:object size:0xA scope:global align:4
+@443 = .data:0x000000A4; // type:object size:0x21 scope:local align:4 data:string
+@444 = .data:0x000000C8; // type:object size:0x20 scope:local align:4 data:string
+xmas_proc$561 = .data:0x000000E8; // type:object size:0x8 scope:local align:4
+cedar_max_table$622 = .data:0x000000F0; // type:object size:0xC scope:local align:4
+@867 = .data:0x00000100; // type:object size:0x1 scope:local align:4
+restore_flag = .data:0x00000104; // type:object size:0x20 scope:global align:4
+actor_dlftbls = .data:0x00000128; // type:object size:0x1EC0 scope:global align:4 data:byte
+angle_range_table$422 = .data:0x00001FE8; // type:object size:0x30 scope:local align:4 data:float
+set_raius_proc$621 = .data:0x00002018; // type:object size:0x8 scope:local align:4
+get_ground_y_proc$622 = .data:0x00002020; // type:object size:0x8 scope:local align:4
+shadwo_draw_proc$631 = .data:0x00002028; // type:object size:0x8 scope:local align:4
+mActorShadow_offset0 = .data:0x00002030; // type:object size:0xC scope:global align:4 data:4byte
+tunekiti_offset$674 = .data:0x0000203C; // type:object size:0xC scope:local align:4 data:4byte
+hiniti_tex_table$671 = .data:0x00002048; // type:object size:0x7C scope:local align:4
+set_pos_table$672 = .data:0x000020C4; // type:object size:0x18 scope:local align:4
+jikan_tex_table$685 = .data:0x000020DC; // type:object size:0x2C scope:local align:4
+set_pos_table$686 = .data:0x00002108; // type:object size:0x30 scope:local align:4
+week_tex_table$719 = .data:0x00002138; // type:object size:0x1C scope:local align:4
+default_data$469 = .data:0x00002158; // type:object size:0x8 scope:local align:4
+@628 = .data:0x00002160; // type:object size:0x48 scope:local align:4
+ev_chk$749 = .data:0x000021A8; // type:object size:0xC scope:local align:4
+bgm_num_data$766 = .data:0x000021B4; // type:object size:0x3 scope:local align:4
+mbgm_pattern_data = .data:0x000021B8; // type:object size:0x24 scope:global align:4
+mbgm_event_data = .data:0x000021DC; // type:object size:0xC0 scope:global align:4 data:byte
+ev_chk$987 = .data:0x0000229C; // type:object size:0x60 scope:local align:4
+bgm_table$1081 = .data:0x000022FC; // type:object size:0x18 scope:local align:4
+local_border_base_pos$574 = .data:0x00002318; // type:object size:0xC scope:local align:4 data:4byte
+@945 = .data:0x00002324; // type:object size:0x34 scope:local align:4
+proc$918 = .data:0x00002360; // type:object size:0x10 scope:local align:4
+proc$931 = .data:0x00002370; // type:object size:0x10 scope:local align:4
+con_waku_swaku3_tex = .data:0x00002380; // type:object size:0x1000 scope:global align:32
+con_sentaku2_v = .data:0x00003380; // type:object size:0x40 scope:global align:8
+con_sentaku2_modelT = .data:0x000033C0; // type:object size:0x38 scope:global align:8
+mChoice_init_disp = .data:0x000033F8; // type:object size:0x68 scope:global align:8
+...data.0 = .data:0x00003460; // type:label scope:local
+mCoBG_tab_data = .data:0x00003460; // type:object size:0x10 scope:global align:4 data:4byte
+mCoBG_bridge_search_water = .data:0x00003470; // type:object size:0xD scope:global align:4
+mCoBG_grass3_search_water = .data:0x00003480; // type:object size:0x4 scope:global align:4
+mCoBG_make_vector_table = .data:0x00003484; // type:object size:0x80 scope:global align:4
+mCoBG_forbid_vector_idx = .data:0x00003504; // type:object size:0x90 scope:global align:4
+mCoBG_pro_dimension_proc = .data:0x00003594; // type:object size:0x10 scope:global align:4 data:4byte
+cross0$646 = .data:0x000035A4; // type:object size:0xC scope:local align:4 data:4byte
+mCoBG_unit_offset = .data:0x000035B0; // type:object size:0x60 scope:global align:4
+@953 = .data:0x00003610; // type:object size:0x11 scope:local align:4 data:string
+l_make33_coldata = .data:0x00003624; // type:object size:0x9 scope:global align:4
+l_make55_coldata = .data:0x00003630; // type:object size:0x19 scope:global align:4
+l_make77_coldata = .data:0x0000364C; // type:object size:0x31 scope:global align:4
+make_normal_wall_proc$1210 = .data:0x00003680; // type:object size:0x8 scope:local align:4
+make_normal_wall_proc$1217 = .data:0x00003688; // type:object size:0x8 scope:local align:4
+attron_make_slate_wall_proc_table$1306 = .data:0x00003690; // type:object size:0x8 scope:local align:4
+make_slate_wall_proc_table2$1323 = .data:0x00003698; // type:object size:0x8 scope:local align:4
+make_slate_wall_proc_table$1335 = .data:0x000036A0; // type:object size:0x8 scope:local align:4
+make_normal_wall$1374 = .data:0x000036A8; // type:object size:0x8 scope:local align:4
+make_slate_wall$1375 = .data:0x000036B0; // type:object size:0x8 scope:local align:4
+make_forbid_atr_vector_proc$1394 = .data:0x000036B8; // type:object size:0x8 scope:local align:4
+defence_wall_info$1408 = .data:0x000036C0; // type:object size:0x120 scope:local align:4 data:byte
+mCoBG_mBgDataA = .data:0x000037E0; // type:object size:0x10 scope:global align:4
+mCoBG_mBgDataB_0 = .data:0x000037F0; // type:object size:0x10 scope:global align:4
+mCoBG_mBgDataB_180 = .data:0x00003800; // type:object size:0x10 scope:global align:4
+mCoBG_mBgDataB_270 = .data:0x00003810; // type:object size:0x10 scope:global align:4
+mCoBG_mBgDataB_90 = .data:0x00003820; // type:object size:0x10 scope:global align:4
+mCoBG_mBgDataC = .data:0x00003830; // type:object size:0x10 scope:global align:4
+mCoBG_mBg_data = .data:0x00003840; // type:object size:0x18 scope:global align:4
+norm_up = .data:0x00003858; // type:object size:0x8 scope:global align:4
+norm_lt = .data:0x00003860; // type:object size:0x8 scope:global align:4
+norm_dn = .data:0x00003868; // type:object size:0x8 scope:global align:4
+norm_rt = .data:0x00003870; // type:object size:0x8 scope:global align:4
+norm_table = .data:0x00003878; // type:object size:0x10 scope:local align:4
+l_mCoBG_boat_size = .data:0x00003888; // type:object size:0x10 scope:global align:4
+atr_column_sub_proc_table$2105 = .data:0x00003898; // type:object size:0x8 scope:local align:4
+column_wall_check_func$2112 = .data:0x000038A0; // type:object size:0x8 scope:local align:4
+reverse0$2113 = .data:0x000038A8; // type:object size:0xC scope:local align:4 data:4byte
+reverse0$2139 = .data:0x000038B4; // type:object size:0xC scope:local align:4 data:4byte
+cross_rev_proc$2472 = .data:0x000038C0; // type:object size:0xC scope:local align:4
+dist_rev_proc$2625 = .data:0x000038CC; // type:object size:0xC scope:local align:4
+dist_rev_proc_player$2626 = .data:0x000038D8; // type:object size:0xC scope:local align:4
+get_bg_y_normal_proc$2882 = .data:0x000038E4; // type:object size:0x8 scope:local align:4
+make_jump_flag_proc$2898 = .data:0x000038EC; // type:object size:0x8 scope:local align:4
+wave_s_info$2957 = .data:0x000038F4; // type:object size:0x18 scope:local align:4
+wave_se_info$2961 = .data:0x0000390C; // type:object size:0x18 scope:local align:4
+wave_sw_info$2965 = .data:0x00003924; // type:object size:0x18 scope:local align:4
+wave_se2_info$2969 = .data:0x0000393C; // type:object size:0x18 scope:local align:4
+wave_sw2_info$2973 = .data:0x00003954; // type:object size:0x18 scope:local align:4
+mCoBG_woodb_water_info = .data:0x0000396C; // type:object size:0x18 scope:global align:4
+mCoBG_grass3_water_info = .data:0x00003984; // type:object size:0x10 scope:global align:4
+mCoBG_unit_attribute_water_info = .data:0x00003994; // type:object size:0x40 scope:global align:4
+ground_angle0$3194 = .data:0x000039D4; // type:object size:0x6 scope:local align:4 data:2byte
+norm0$3255 = .data:0x000039DC; // type:object size:0xC scope:local align:4 data:4byte
+l_attribute_action_info = .data:0x000039E8; // type:object size:0x40 scope:global align:4
+mCoBG_hole_data = .data:0x00003A28; // type:object size:0x64 scope:global align:4
+pos0$3701 = .data:0x00003A8C; // type:object size:0xC scope:local align:4
+offset$3712 = .data:0x00003A98; // type:object size:0x30 scope:local align:4
+@3741 = .data:0x00003AC8; // type:object size:0x1A scope:local align:4 data:string
+pos_offset_table$3748 = .data:0x00003AE4; // type:object size:0x30 scope:local align:4
+start_pos$3860 = .data:0x00003B14; // type:object size:0xC scope:local align:4
+end_pos$3861 = .data:0x00003B20; // type:object size:0xC scope:local align:4
+start_pos$3865 = .data:0x00003B2C; // type:object size:0xC scope:local align:4
+end_pos$3866 = .data:0x00003B38; // type:object size:0xC scope:local align:4
+start_pos$3870 = .data:0x00003B44; // type:object size:0xC scope:local align:4
+end_pos$3871 = .data:0x00003B50; // type:object size:0xC scope:local align:4
+start_pos$3875 = .data:0x00003B5C; // type:object size:0xC scope:local align:4
+end_pos$3876 = .data:0x00003B68; // type:object size:0xC scope:local align:4
+start_pos$3880 = .data:0x00003B74; // type:object size:0xC scope:local align:4
+end_pos$3881 = .data:0x00003B80; // type:object size:0xC scope:local align:4
+start_pos$3885 = .data:0x00003B8C; // type:object size:0xC scope:local align:4
+end_pos$3886 = .data:0x00003B98; // type:object size:0xC scope:local align:4
+start_pos$3890 = .data:0x00003BA4; // type:object size:0xC scope:local align:4
+end_pos$3891 = .data:0x00003BB0; // type:object size:0xC scope:local align:4
+start_pos$3895 = .data:0x00003BBC; // type:object size:0xC scope:local align:4
+end_pos$3896 = .data:0x00003BC8; // type:object size:0xC scope:local align:4
+change_data$4194 = .data:0x00003BD4; // type:object size:0x8 scope:local align:4 data:byte
+offset_data$4207 = .data:0x00003BDC; // type:object size:0x7 scope:local align:4 data:byte
+@4212 = .data:0x00003BE4; // type:object size:0x1D scope:local align:4 data:string
+offset_from_base$4476 = .data:0x00003C04; // type:object size:0x48 scope:local align:4
+xyz0$4562 = .data:0x00003C4C; // type:object size:0xC scope:local align:4 data:4byte
+@4769 = .data:0x00003C58; // type:object size:0x1A scope:local align:4 data:string
+ground_angle0$4775 = .data:0x00003C74; // type:object size:0x6 scope:local align:4 data:2byte
+flow_data$4901 = .data:0x00003C7C; // type:object size:0x78 scope:local align:4 data:4byte
+move_bg_move_actor_proc$4946 = .data:0x00003CF4; // type:object size:0x8 scope:local align:4
+base_pos$4953 = .data:0x00003CFC; // type:object size:0xC scope:local align:4
+clobj_default$392 = .data:0x00003D08; // type:object size:0xC scope:local align:4 data:4byte
+default_pipe_attr$484 = .data:0x00003D14; // type:object size:0xC scope:local align:4 data:4byte
+default_clobjtriselem_attr$513 = .data:0x00003D20; // type:object size:0x40 scope:local align:4
+OCClearFunctionTable = .data:0x00003D60; // type:object size:0xC scope:global align:4
+oc_collision_function = .data:0x00003D6C; // type:object size:0x24 scope:global align:4
+occ_collision_function = .data:0x00003D90; // type:object size:0x24 scope:global align:4
+OCCClearFunctionTable = .data:0x00003DB4; // type:object size:0xC scope:global align:4
+status_org$918 = .data:0x00003DC0; // type:object size:0x18 scope:local align:4
+debug_display_output_proc$345 = .data:0x00003DD8; // type:object size:0x8 scope:local align:4
+debug_display_shape_data$346 = .data:0x00003DE0; // type:object size:0x30 scope:local align:4
+material$377 = .data:0x00003E10; // type:object size:0x18 scope:local align:8
+@423 = .data:0x00003E28; // type:object size:0x16 scope:local align:4 data:string
+@424 = .data:0x00003E40; // type:object size:0x13 scope:local align:4 data:string
+...data.0 = .data:0x00003E58; // type:label scope:local
+debug_print_buffer = .data:0x00003E58; // type:object size:0x48 scope:global align:4 data:byte
+print_color$417 = .data:0x00003EA0; // type:object size:0x20 scope:local align:4
+@424 = .data:0x00003EC0; // type:object size:0x3 scope:local align:4 data:string
+print_color$441 = .data:0x00003EC4; // type:object size:0x20 scope:local align:4
+font_scale_x$469 = .data:0x00003EE4; // type:object size:0x20 scope:local align:4
+font_scale_y$470 = .data:0x00003F04; // type:object size:0x20 scope:local align:4
+@510 = .data:0x00003F24; // type:object size:0x1B scope:local align:4
+key_data$517 = .data:0x00003F40; // type:object size:0x98 scope:local align:4
+@662 = .data:0x00003FD8; // type:object size:0x15 scope:local align:4 data:string
+@663 = .data:0x00003FF0; // type:object size:0x6 scope:local align:4 data:string
+@664 = .data:0x00003FF8; // type:object size:0x14 scope:local align:4 data:string
+@665 = .data:0x0000400C; // type:object size:0x4 scope:local align:4 data:string
+reg_name_data$669 = .data:0x00004010; // type:object size:0x26 scope:local align:4 data:string
+@671 = .data:0x00004038; // type:object size:0x4 scope:local align:4 data:string
+@672 = .data:0x0000403C; // type:object size:0x5 scope:local align:4 data:string
+@673 = .data:0x00004044; // type:object size:0x5 scope:local align:4 data:string
+@674 = .data:0x0000404C; // type:object size:0x5 scope:local align:4 data:string
+@675 = .data:0x00004054; // type:object size:0x5 scope:local align:4 data:string
+@676 = .data:0x0000405C; // type:object size:0x5 scope:local align:4 data:string
+@677 = .data:0x00004064; // type:object size:0x6 scope:local align:4 data:string
+@678 = .data:0x0000406C; // type:object size:0x5 scope:local align:4 data:string
+@679 = .data:0x00004074; // type:object size:0x5 scope:local align:4 data:string
+@680 = .data:0x0000407C; // type:object size:0x5 scope:local align:4 data:string
+@681 = .data:0x00004084; // type:object size:0x5 scope:local align:4 data:string
+@682 = .data:0x0000408C; // type:object size:0x4 scope:local align:4 data:string
+@683 = .data:0x00004090; // type:object size:0x4 scope:local align:4 data:string
+@684 = .data:0x00004094; // type:object size:0x4 scope:local align:4 data:string
+@685 = .data:0x00004098; // type:object size:0x5 scope:local align:4 data:string
+@686 = .data:0x000040A0; // type:object size:0x5 scope:local align:4 data:string
+@687 = .data:0x000040A8; // type:object size:0x8 scope:local align:4 data:string
+@688 = .data:0x000040B0; // type:object size:0x5 scope:local align:4 data:string
+@689 = .data:0x000040B8; // type:object size:0x5 scope:local align:4 data:string
+@690 = .data:0x000040C0; // type:object size:0x5 scope:local align:4 data:string
+@691 = .data:0x000040C8; // type:object size:0x5 scope:local align:4 data:string
+@692 = .data:0x000040D0; // type:object size:0x5 scope:local align:4 data:string
+@693 = .data:0x000040D8; // type:object size:0x5 scope:local align:4 data:string
+@694 = .data:0x000040E0; // type:object size:0x5 scope:local align:4 data:string
+@695 = .data:0x000040E8; // type:object size:0x5 scope:local align:4 data:string
+@696 = .data:0x000040F0; // type:object size:0x5 scope:local align:4 data:string
+@697 = .data:0x000040F8; // type:object size:0x5 scope:local align:4 data:string
+@698 = .data:0x00004100; // type:object size:0x5 scope:local align:4 data:string
+@699 = .data:0x00004108; // type:object size:0x4 scope:local align:4 data:string
+@700 = .data:0x0000410C; // type:object size:0xA scope:local align:4 data:string
+@701 = .data:0x00004118; // type:object size:0x6 scope:local align:4 data:string
+@702 = .data:0x00004120; // type:object size:0x7 scope:local align:4 data:string
+@703 = .data:0x00004128; // type:object size:0x7 scope:local align:4 data:string
+@704 = .data:0x00004130; // type:object size:0x7 scope:local align:4 data:string
+@705 = .data:0x00004138; // type:object size:0x7 scope:local align:4 data:string
+@706 = .data:0x00004140; // type:object size:0x7 scope:local align:4 data:string
+@707 = .data:0x00004148; // type:object size:0x7 scope:local align:4 data:string
+@708 = .data:0x00004150; // type:object size:0x7 scope:local align:4 data:string
+long_reg_name_data$670 = .data:0x00004158; // type:object size:0x98 scope:local align:4
+@729 = .data:0x000041F0; // type:object size:0x7 scope:local align:4 data:string
+@730 = .data:0x000041F8; // type:object size:0x8 scope:local align:4 data:string
+@737 = .data:0x00004200; // type:object size:0x17 scope:local align:4
+@738 = .data:0x00004218; // type:object size:0x17 scope:local align:4
+@739 = .data:0x00004230; // type:object size:0x17 scope:local align:4
+tempo_data = .data:0x00004248; // type:object size:0x18 scope:global align:4 data:byte
+@755 = .data:0x00004260; // type:object size:0x1C scope:local align:4 data:string
+@825 = .data:0x0000427C; // type:object size:0x8 scope:local align:4 data:string
+@826 = .data:0x00004284; // type:object size:0x2 scope:local align:4 data:string
+direct_vector = .data:0x00004288; // type:object size:0x40 scope:global align:4
+direct_back_angle = .data:0x000042C8; // type:object size:0x10 scope:global align:4
+@676 = .data:0x000042D8; // type:object size:0x38 scope:local align:4
+@808 = .data:0x00004310; // type:object size:0x104 scope:local align:4
+win_color$982 = .data:0x00004414; // type:object size:0x4 scope:local align:4
+title_demo_number = .data:0x00004418; // type:object size:0x4 scope:global align:4 data:4byte
+event_schedule_data = .data:0x0000441C; // type:object size:0x648 scope:global align:4
+event_rumor_table = .data:0x00004A64; // type:object size:0x64 scope:global align:4
+n_event_rumors = .data:0x00004AC8; // type:object size:0x4 scope:global align:4 data:4byte
+special_event_types = .data:0x00004ACC; // type:object size:0xC scope:global align:4
+n_special_event_type = .data:0x00004AD8; // type:object size:0x4 scope:global align:4 data:4byte
+last_day$637 = .data:0x00004ADC; // type:object size:0xC scope:local align:4
+@911 = .data:0x00004AE8; // type:object size:0x104 scope:local align:4
+@1024 = .data:0x00004BEC; // type:object size:0x54 scope:local align:4
+@1487 = .data:0x00004C40; // type:object size:0xAC scope:local align:4
+@1486 = .data:0x00004CEC; // type:object size:0xAC scope:local align:4
+l_ev_structure_table = .data:0x00004D98; // type:object size:0x2C scope:global align:4 data:string
+num_of_l_ev_structure = .data:0x00004DC4; // type:object size:0x4 scope:global align:4 data:4byte
+@2076 = .data:0x00004DC8; // type:object size:0x4 scope:local align:4 data:string
+@2077 = .data:0x00004DCC; // type:object size:0x2 scope:local align:4 data:string
+@2106 = .data:0x00004DD0; // type:object size:0x13 scope:local align:4 data:string
+@2107 = .data:0x00004DE4; // type:object size:0x11 scope:local align:4 data:string
+l_event_map_type_table = .data:0x00004DF8; // type:object size:0x44 scope:global align:4 data:4byte
+l_hny_set_actor0 = .data:0x00004E3C; // type:object size:0x10 scope:global align:4
+l_hny_map = .data:0x00004E4C; // type:object size:0x10 scope:global align:4
+l_hny_set_dt = .data:0x00004E5C; // type:object size:0x8 scope:global align:4
+l_hny_set_dt_table = .data:0x00004E64; // type:object size:0x4 scope:global align:4
+l_hny_set_npc = .data:0x00004E68; // type:object size:0x4 scope:global align:4
+l_hny_set_data = .data:0x00004E6C; // type:object size:0x10 scope:global align:4
+l_fsh_set_actor0 = .data:0x00004E7C; // type:object size:0xE scope:global align:4
+l_fsh_set_actor1 = .data:0x00004E8C; // type:object size:0xE scope:global align:4
+l_fsh_pule1_map = .data:0x00004E9C; // type:object size:0xE scope:global align:4
+l_fsh_pule1_set_dt = .data:0x00004EAC; // type:object size:0x8 scope:global align:4
+l_fsh_pule2_map = .data:0x00004EB4; // type:object size:0xE scope:global align:4
+l_fsh_pule2_set_dt = .data:0x00004EC4; // type:object size:0x8 scope:global align:4
+l_fsh_pule3_map = .data:0x00004ECC; // type:object size:0xE scope:global align:4
+l_fsh_pule3_set_dt = .data:0x00004EDC; // type:object size:0x8 scope:global align:4
+l_fsh_pule4_map = .data:0x00004EE4; // type:object size:0xE scope:global align:4
+l_fsh_pule4_set_dt = .data:0x00004EF4; // type:object size:0x8 scope:global align:4
+l_fsh_pule5_map = .data:0x00004EFC; // type:object size:0xE scope:global align:4
+l_fsh_pule5_set_dt = .data:0x00004F0C; // type:object size:0x8 scope:global align:4
+l_fsh_pule6_map = .data:0x00004F14; // type:object size:0xE scope:global align:4
+l_fsh_pule6_set_dt = .data:0x00004F24; // type:object size:0x8 scope:global align:4
+l_fsh_pule7_map = .data:0x00004F2C; // type:object size:0xE scope:global align:4
+l_fsh_pule7_set_dt = .data:0x00004F3C; // type:object size:0x8 scope:global align:4
+l_fsh_set_dt_table = .data:0x00004F44; // type:object size:0x1C scope:global align:4
+l_fsh_set_npc = .data:0x00004F60; // type:object size:0x4 scope:global align:4
+l_fsh_set_data = .data:0x00004F64; // type:object size:0x10 scope:global align:4
+l_rc_set_actor0 = .data:0x00004F74; // type:object size:0xE scope:global align:4
+l_rc_map = .data:0x00004F84; // type:object size:0xE scope:global align:4
+l_rc_set_dt = .data:0x00004F94; // type:object size:0x8 scope:global align:4
+l_rc_set_dt_table = .data:0x00004F9C; // type:object size:0x4 scope:global align:4
+l_rc_set_npc = .data:0x00004FA0; // type:object size:0x4 scope:global align:4
+l_rc_set_data = .data:0x00004FA4; // type:object size:0x10 scope:global align:4
+l_fws_set_actor0 = .data:0x00004FB4; // type:object size:0xE scope:global align:4
+l_fws_set_actor1 = .data:0x00004FC4; // type:object size:0xE scope:global align:4
+l_fws_pule1_map = .data:0x00004FD4; // type:object size:0xE scope:global align:4
+l_fws_pule1_set_dt = .data:0x00004FE4; // type:object size:0x8 scope:global align:4
+l_fws_pule2_map = .data:0x00004FEC; // type:object size:0xE scope:global align:4
+l_fws_pule2_set_dt = .data:0x00004FFC; // type:object size:0x8 scope:global align:4
+l_fws_pule3_map = .data:0x00005004; // type:object size:0xE scope:global align:4
+l_fws_pule3_set_dt = .data:0x00005014; // type:object size:0x8 scope:global align:4
+l_fws_pule4_map = .data:0x0000501C; // type:object size:0xE scope:global align:4
+l_fws_pule4_set_dt = .data:0x0000502C; // type:object size:0x8 scope:global align:4
+l_fws_pule5_map = .data:0x00005034; // type:object size:0xE scope:global align:4
+l_fws_pule5_set_dt = .data:0x00005044; // type:object size:0x8 scope:global align:4
+l_fws_pule6_map = .data:0x0000504C; // type:object size:0xE scope:global align:4
+l_fws_pule6_set_dt = .data:0x0000505C; // type:object size:0x8 scope:global align:4
+l_fws_pule7_map = .data:0x00005064; // type:object size:0xE scope:global align:4
+l_fws_pule7_set_dt = .data:0x00005074; // type:object size:0x8 scope:global align:4
+l_fws_set_dt_table = .data:0x0000507C; // type:object size:0x1C scope:global align:4
+l_fws_set_npc = .data:0x00005098; // type:object size:0x4 scope:global align:4
+l_fws_set_data = .data:0x0000509C; // type:object size:0x10 scope:global align:4
+l_fv_set_actor0 = .data:0x000050AC; // type:object size:0x10 scope:global align:4
+l_fv_map = .data:0x000050BC; // type:object size:0x10 scope:global align:4
+l_fv_set_dt = .data:0x000050CC; // type:object size:0x8 scope:global align:4
+l_fv_set_dt_table = .data:0x000050D4; // type:object size:0x4 scope:global align:4
+l_fv_set_npc = .data:0x000050D8; // type:object size:0x4 scope:global align:4
+l_fv_set_data = .data:0x000050DC; // type:object size:0x10 scope:global align:4
+l_fdd_radio_set_actor0 = .data:0x000050EC; // type:object size:0xE scope:global align:4
+l_fdd_radio_map = .data:0x000050FC; // type:object size:0xE scope:global align:4
+l_fdd_radio_set_dt = .data:0x0000510C; // type:object size:0x8 scope:global align:4
+l_fdd_radio_set_dt_table = .data:0x00005114; // type:object size:0x4 scope:global align:4
+l_fdd_radio_set_npc = .data:0x00005118; // type:object size:0x4 scope:global align:4
+l_fdd_radio_set_data = .data:0x0000511C; // type:object size:0x10 scope:global align:4
+l_fdd_tokyoso_set_actor0 = .data:0x0000512C; // type:object size:0xC scope:global align:4
+l_fdd_tokyoso_map = .data:0x00005138; // type:object size:0xC scope:global align:4
+l_fdd_tokyoso_set_dt = .data:0x00005144; // type:object size:0x8 scope:global align:4
+l_fdd_tokyoso_set_dt_table = .data:0x0000514C; // type:object size:0x4 scope:global align:4
+l_fdd_tokyoso_set_npc = .data:0x00005150; // type:object size:0x4 scope:global align:4
+l_fdd_tokyoso_set_data = .data:0x00005154; // type:object size:0x10 scope:global align:4
+l_fdd_tama_set_actor0 = .data:0x00005164; // type:object size:0x14 scope:global align:4
+l_fdd_tama_map = .data:0x00005178; // type:object size:0x14 scope:global align:4
+l_fdd_tama_set_dt = .data:0x0000518C; // type:object size:0x8 scope:global align:4
+l_fdd_tama_set_dt_table = .data:0x00005194; // type:object size:0x4 scope:global align:4
+l_fdd_tama_set_npc = .data:0x00005198; // type:object size:0x4 scope:global align:4
+l_fdd_tama_set_data = .data:0x0000519C; // type:object size:0x10 scope:global align:4
+l_fdd_tuna_set_actor0 = .data:0x000051AC; // type:object size:0xC scope:global align:4
+l_fdd_tuna_map = .data:0x000051B8; // type:object size:0xC scope:global align:4
+l_fdd_tuna_set_dt = .data:0x000051C4; // type:object size:0x8 scope:global align:4
+l_fdd_tuna_set_dt_table = .data:0x000051CC; // type:object size:0x4 scope:global align:4
+l_fdd_tuna_set_npc = .data:0x000051D0; // type:object size:0x4 scope:global align:4
+l_fdd_tuna_set_data = .data:0x000051D4; // type:object size:0x10 scope:global align:4
+l_cdn_set_actor0 = .data:0x000051E4; // type:object size:0x10 scope:global align:4
+l_cdn_pule1_map = .data:0x000051F4; // type:object size:0x10 scope:global align:4
+l_cdn_pule1_set_dt = .data:0x00005204; // type:object size:0x8 scope:global align:4
+l_cdn_pule2_map = .data:0x0000520C; // type:object size:0x10 scope:global align:4
+l_cdn_pule2_set_dt = .data:0x0000521C; // type:object size:0x8 scope:global align:4
+l_cdn_pule3_map = .data:0x00005224; // type:object size:0x10 scope:global align:4
+l_cdn_pule3_set_dt = .data:0x00005234; // type:object size:0x8 scope:global align:4
+l_cdn_pule4_map = .data:0x0000523C; // type:object size:0x10 scope:global align:4
+l_cdn_pule4_set_dt = .data:0x0000524C; // type:object size:0x8 scope:global align:4
+l_cdn_pule5_map = .data:0x00005254; // type:object size:0x10 scope:global align:4
+l_cdn_pule5_set_dt = .data:0x00005264; // type:object size:0x8 scope:global align:4
+l_cdn_pule6_map = .data:0x0000526C; // type:object size:0x10 scope:global align:4
+l_cdn_pule6_set_dt = .data:0x0000527C; // type:object size:0x8 scope:global align:4
+l_cdn_pule7_map = .data:0x00005284; // type:object size:0x10 scope:global align:4
+l_cdn_pule7_set_dt = .data:0x00005294; // type:object size:0x8 scope:global align:4
+l_cdn_set_dt_table = .data:0x0000529C; // type:object size:0x1C scope:global align:4
+l_cdn_set_npc = .data:0x000052B8; // type:object size:0x4 scope:global align:4
+l_cdn_set_data = .data:0x000052BC; // type:object size:0x10 scope:global align:4
+l_kk_set_actor0 = .data:0x000052CC; // type:object size:0x2 scope:global align:4
+l_kk_map = .data:0x000052D0; // type:object size:0x2 scope:global align:4
+l_kk_set_dt = .data:0x000052D4; // type:object size:0x8 scope:global align:4
+l_kk_set_dt_table = .data:0x000052DC; // type:object size:0x4 scope:global align:4
+l_kk_set_npc = .data:0x000052E0; // type:object size:0x4 scope:global align:4
+l_kk_set_data = .data:0x000052E4; // type:object size:0x10 scope:global align:4
+l_gh_set_actor0 = .data:0x000052F4; // type:object size:0xC scope:global align:4
+l_gh_map = .data:0x00005300; // type:object size:0xC scope:global align:4
+l_gh_set_dt = .data:0x0000530C; // type:object size:0x8 scope:global align:4
+l_gh_set_dt_table = .data:0x00005314; // type:object size:0x4 scope:global align:4
+l_gh_set_npc = .data:0x00005318; // type:object size:0x4 scope:global align:4
+l_gh_set_data = .data:0x0000531C; // type:object size:0x10 scope:global align:4
+l_hm_set_actor = .data:0x0000532C; // type:object size:0xA scope:global align:4
+l_hm_pule1_map = .data:0x00005338; // type:object size:0xA scope:global align:4
+l_hm_pule1_set_dt = .data:0x00005344; // type:object size:0x8 scope:global align:4
+l_hm_pule2_map = .data:0x0000534C; // type:object size:0xA scope:global align:4
+l_hm_pule2_set_dt = .data:0x00005358; // type:object size:0x8 scope:global align:4
+l_hm_pule3_map = .data:0x00005360; // type:object size:0xA scope:global align:4
+l_hm_pule3_set_dt = .data:0x0000536C; // type:object size:0x8 scope:global align:4
+l_hm_pule4_map = .data:0x00005374; // type:object size:0xA scope:global align:4
+l_hm_pule4_set_dt = .data:0x00005380; // type:object size:0x8 scope:global align:4
+l_hm_pule5_map = .data:0x00005388; // type:object size:0xA scope:global align:4
+l_hm_pule5_set_dt = .data:0x00005394; // type:object size:0x8 scope:global align:4
+l_hm_pule6_map = .data:0x0000539C; // type:object size:0xA scope:global align:4
+l_hm_pule6_set_dt = .data:0x000053A8; // type:object size:0x8 scope:global align:4
+l_hm_pule7_map = .data:0x000053B0; // type:object size:0xA scope:global align:4
+l_hm_pule7_set_dt = .data:0x000053BC; // type:object size:0x8 scope:global align:4
+l_hm_set_dt_table = .data:0x000053C4; // type:object size:0x1C scope:global align:4
+l_hm_set_npc = .data:0x000053E0; // type:object size:0x4 scope:global align:4
+l_hm_set_data = .data:0x000053E4; // type:object size:0x10 scope:global align:4
+l_hf_set_actor0 = .data:0x000053F4; // type:object size:0x12 scope:global align:4
+l_hf_map = .data:0x00005408; // type:object size:0x12 scope:global align:4
+l_hf_set_dt = .data:0x0000541C; // type:object size:0x8 scope:global align:4
+l_hf_set_dt_table = .data:0x00005424; // type:object size:0x4 scope:global align:4
+l_hf_set_npc = .data:0x00005428; // type:object size:0x4 scope:global align:4
+l_hf_set_data = .data:0x0000542C; // type:object size:0x10 scope:global align:4
+l_ms_set_actor0 = .data:0x0000543C; // type:object size:0xA scope:global align:4
+l_ms_set_actor1 = .data:0x00005448; // type:object size:0xA scope:global align:4
+l_ms_pule1_map = .data:0x00005454; // type:object size:0xA scope:global align:4
+l_ms_pule1_set_dt = .data:0x00005460; // type:object size:0x8 scope:global align:4
+l_ms_pule2_map = .data:0x00005468; // type:object size:0xA scope:global align:4
+l_ms_pule2_set_dt = .data:0x00005474; // type:object size:0x8 scope:global align:4
+l_ms_pule3_map = .data:0x0000547C; // type:object size:0xA scope:global align:4
+l_ms_pule3_set_dt = .data:0x00005488; // type:object size:0x8 scope:global align:4
+l_ms_pule4_map = .data:0x00005490; // type:object size:0xA scope:global align:4
+l_ms_pule4_set_dt = .data:0x0000549C; // type:object size:0x8 scope:global align:4
+l_ms_pule5_map = .data:0x000054A4; // type:object size:0xA scope:global align:4
+l_ms_pule5_set_dt = .data:0x000054B0; // type:object size:0x8 scope:global align:4
+l_ms_pule6_map = .data:0x000054B8; // type:object size:0xA scope:global align:4
+l_ms_pule6_set_dt = .data:0x000054C4; // type:object size:0x8 scope:global align:4
+l_ms_pule7_map = .data:0x000054CC; // type:object size:0xA scope:global align:4
+l_ms_pule7_set_dt = .data:0x000054D8; // type:object size:0x8 scope:global align:4
+l_ms_set_dt_table = .data:0x000054E0; // type:object size:0x1C scope:global align:4
+l_ms_set_npc = .data:0x000054FC; // type:object size:0x4 scope:global align:4
+l_ms_set_data = .data:0x00005500; // type:object size:0x10 scope:global align:4
+l_event_set_table = .data:0x00005510; // type:object size:0x44 scope:global align:4
+get_npc_idx$517 = .data:0x00005554; // type:object size:0x4 scope:local align:4
+set_name$670 = .data:0x00005558; // type:object size:0x44 scope:local align:4
+fbdemo_gfx_init = .data:0x000055A0; // type:object size:0x30 scope:global align:8
+wipe1_v = .data:0x000055D0; // type:object size:0x190 scope:global align:4
+g_wipe1_txt = .data:0x00005760; // type:object size:0x800 scope:global align:4
+wipe1_modelT = .data:0x00005F60; // type:object size:0xF8 scope:global align:8
+fbdemo_fade_gfx_init$400 = .data:0x00006058; // type:object size:0x28 scope:local align:8
+start_frame$407 = .data:0x00006080; // type:object size:0xD scope:local align:4
+start_color$408 = .data:0x00006090; // type:object size:0xD scope:local align:4
+...data.0 = .data:0x000060A0; // type:label scope:local
+l_block_rank_tree_num = .data:0x000060A0; // type:object size:0x5 scope:global align:4 data:4byte
+l_block_rank_table = .data:0x000060A8; // type:object size:0x5 scope:global align:4
+l_block_max_by_rank = .data:0x000060B0; // type:object size:0x7 scope:global align:4
+l_mfas_romf_check = .data:0x000060B8; // type:object size:0x14 scope:global align:4
+bk_chk$551 = .data:0x000060CC; // type:object size:0x14 scope:local align:4
+block_kind$725 = .data:0x000060E0; // type:object size:0x14 scope:local align:4
+@754 = .data:0x000060F4; // type:object size:0xF scope:local align:4 data:string
+@755 = .data:0x00006104; // type:object size:0x10 scope:local align:4 data:string
+@756 = .data:0x00006114; // type:object size:0x6 scope:local align:4 data:string
+...data.0 = .data:0x00006120; // type:label scope:local
+l_fg_outer_fill = .data:0x00006120; // type:object size:0x200 scope:global align:4 data:4byte
+l_title_demo_fg = .data:0x00006320; // type:object size:0x70 scope:global align:4
+l_mfm_police_pos = .data:0x00006390; // type:object size:0x10 scope:global align:4 data:4byte
+tree_pal_idx_table$821 = .data:0x000063A0; // type:object size:0x48 scope:local align:4
+flower_pal_idx_table$822 = .data:0x000063E8; // type:object size:0x48 scope:local align:4
+field_pal_idx_table$830 = .data:0x00006430; // type:object size:0x48 scope:local align:4
+l_bg_tex_common_dummy = .data:0x00006478; // type:object size:0xD8 scope:global align:4
+l_bg_pal_common_dummy = .data:0x00006550; // type:object size:0x28 scope:global align:4
+l_bg_tex_segment_rom_start_s_0 = .data:0x00006578; // type:object size:0x6C scope:global align:4
+l_bg_tex_segment_rom_start_s_1 = .data:0x000065E4; // type:object size:0x6C scope:global align:4
+l_bg_tex_segment_rom_start_s_2 = .data:0x00006650; // type:object size:0x6C scope:global align:4
+l_bg_tex_segment_table = .data:0x000066BC; // type:object size:0xC scope:global align:4
+l_bg_tex_segment_rom_start_w_0 = .data:0x000066C8; // type:object size:0x6C scope:global align:4
+l_bg_tex_segment_rom_start_w_1 = .data:0x00006734; // type:object size:0x6C scope:global align:4
+l_bg_tex_segment_rom_start_w_2 = .data:0x000067A0; // type:object size:0x6C scope:global align:4
+l_bg_w_tex_segment_table = .data:0x0000680C; // type:object size:0xC scope:global align:4
+l_bg_pal_segment_rom_start = .data:0x00006818; // type:object size:0x14 scope:global align:4
+l_water_permission = .data:0x0000682C; // type:object size:0x1B scope:global align:4
+field_pal_idx_table$1011 = .data:0x00006848; // type:object size:0x48 scope:local align:4
+l_combiID = .data:0x00006890; // type:object size:0x8C scope:global align:4
+g_block_type_p = .data:0x0000691C; // type:object size:0x4 scope:global align:4 data:4byte
+g_block_kind_p = .data:0x00006920; // type:object size:0x4 scope:global align:4 data:4byte
+...data.0 = .data:0x00006928; // type:label scope:local
+l_edge_ut = .data:0x00006928; // type:object size:0x4 scope:global align:4
+l_keepcld = .data:0x0000692C; // type:object size:0x6C scope:global align:4 data:4byte
+player_room_wd$494 = .data:0x00006998; // type:object size:0x10 scope:local align:4
+@538 = .data:0x000069A8; // type:object size:0x48 scope:local align:4
+player_room_ht$542 = .data:0x000069F0; // type:object size:0x10 scope:local align:4
+@581 = .data:0x00006A00; // type:object size:0x48 scope:local align:4
+area_table$1116 = .data:0x00006A48; // type:object size:0x18 scope:local align:4
+table_no$1477 = .data:0x00006A60; // type:object size:0xC scope:local align:4
+check_x$1478 = .data:0x00006A6C; // type:object size:0xC scope:local align:4
+BI_chk_pos$1607 = .data:0x00006A78; // type:object size:0x48 scope:local align:4
+BI_chk_pos$1624 = .data:0x00006AC0; // type:object size:0x48 scope:local align:4
+control_proc$1975 = .data:0x00006B08; // type:object size:0xC scope:local align:4
+dig_check$2189 = .data:0x00006B14; // type:object size:0x18 scope:local align:4
+old_pos$2190 = .data:0x00006B2C; // type:object size:0xC scope:local align:4 data:4byte
+l_structure_set_type = .data:0x00006B38; // type:object size:0x53 scope:global align:4
+set_structure$2441 = .data:0x00006B8C; // type:object size:0x30 scope:local align:4
+fill_name_table$2442 = .data:0x00006BBC; // type:object size:0x4 scope:local align:4
+keep_status_table$2443 = .data:0x00006BC0; // type:object size:0x8 scope:local align:4
+set_area_table$2473 = .data:0x00006BC8; // type:object size:0x30 scope:local align:4
+l_sandy_beach_bx = .data:0x00006BF8; // type:object size:0x7 scope:global align:4 data:byte
+l_sandy_beach_bz = .data:0x00006C00; // type:object size:0x7 scope:global align:4 data:byte
+normal_shell$2772 = .data:0x00006C08; // type:object size:0xC scope:local align:4
+rare_shell$2773 = .data:0x00006C14; // type:object size:0x4 scope:local align:4
+island_rare_shell$2774 = .data:0x00006C18; // type:object size:0x6 scope:local align:4
+shell_table$2775 = .data:0x00006C20; // type:object size:0xC scope:local align:4
+shell_max$2776 = .data:0x00006C2C; // type:object size:0xC scope:local align:4
+@2896 = .data:0x00006C38; // type:object size:0x3 scope:local align:4 data:string
+@2919 = .data:0x00006C3C; // type:object size:0x16 scope:local align:4 data:string
+no_check_block_table$2949 = .data:0x00006C54; // type:object size:0x20 scope:local align:4
+ut_table$3028 = .data:0x00006C74; // type:object size:0x6 scope:local align:4 data:byte
+l_name$528 = .data:0x00006C80; // type:object size:0x5 scope:local align:4
+...data.0 = .data:0x00006C88; // type:label scope:local
+l_mfrm_err_debug = .data:0x00006C88; // type:object size:0x18 scope:global align:4
+@429 = .data:0x00006CA0; // type:object size:0x2 scope:local align:4 data:string
+@430 = .data:0x00006CA4; // type:object size:0x2 scope:local align:4 data:string
+@431 = .data:0x00006CA8; // type:object size:0x2 scope:local align:4 data:string
+@432 = .data:0x00006CAC; // type:object size:0x2 scope:local align:4 data:string
+@433 = .data:0x00006CB0; // type:object size:0x2 scope:local align:4 data:string
+@434 = .data:0x00006CB4; // type:object size:0x2 scope:local align:4 data:string
+@509 = .data:0x00006CB8; // type:object size:0x2 scope:local align:4 data:string
+l_mfrm_color_table = .data:0x00006CBC; // type:object size:0x54 scope:global align:4
+sSC_map_perfect_table = .data:0x00006D10; // type:object size:0x40 scope:global align:4
+item1_kinds$1373 = .data:0x00006D50; // type:object size:0x20 scope:local align:4
+proc$1477 = .data:0x00006D70; // type:object size:0x1C scope:local align:4
+@1508 = .data:0x00006D8C; // type:object size:0x2 scope:local align:4 data:string
+@1509 = .data:0x00006D90; // type:object size:0x8 scope:local align:4 data:string
+offset_data$396 = .data:0x00006D98; // type:object size:0x100 scope:local align:4
+disp$459 = .data:0x00006E98; // type:object size:0x68 scope:local align:8
+first$708 = .data:0x00006F00; // type:object size:0x4 scope:local align:4 data:4byte
+offset_value$858 = .data:0x00006F04; // type:object size:0xC scope:local align:4
+unit_vec_xy$930 = .data:0x00006F10; // type:object size:0x8 scope:local align:4
+tex_p_array$985 = .data:0x00006F18; // type:object size:0x14 scope:local align:4
+size_array$995 = .data:0x00006F2C; // type:object size:0x14 scope:local align:4
+size_array$1005 = .data:0x00006F40; // type:object size:0x14 scope:local align:4
+disp$1055 = .data:0x00006F58; // type:object size:0x68 scope:local align:8
+mFont_suji_data = .data:0x00006FC0; // type:object size:0xA scope:global align:4 data:byte
+game_dlftbls = .data:0x00006FD0; // type:object size:0x1E0 scope:global align:4 data:4byte
+mHandbillz_dummy_size_tbl = .data:0x000071B0; // type:object size:0x14 scope:global align:4
+...data.0 = .data:0x000071C8; // type:label scope:local
+l_player_room_2_utinfo = .data:0x000071C8; // type:object size:0x200 scope:global align:4 data:2byte
+l_player_room_bm_utinfo = .data:0x000073C8; // type:object size:0x200 scope:global align:4
+l_proom_s_tmp = .data:0x000075C8; // type:object size:0x200 scope:global align:4
+l_proom_m_tmp = .data:0x000077C8; // type:object size:0x200 scope:global align:4
+l_proom_l_tmp = .data:0x000079C8; // type:object size:0x200 scope:global align:4
+l_proom_cottage_tmp = .data:0x00007BC8; // type:object size:0x200 scope:global align:4
+haniwa_msg$393 = .data:0x00007DC8; // type:object size:0x10 scope:local align:4
+l_mHm_player_room_default_data = .data:0x00007DD8; // type:object size:0x40 scope:global align:4
+player_room_tmp_table$443 = .data:0x00007E18; // type:object size:0x10 scope:local align:4
+room_size$470 = .data:0x00007E28; // type:object size:0x14 scope:local align:4
+l_misl_count_max_table = .data:0x00007E40; // type:object size:0x20 scope:global align:4
+l_misl_agb_npc_table = .data:0x00007E60; // type:object size:0x24 scope:global align:4 data:2byte
+...data.0 = .data:0x00007E88; // type:label scope:local
+itemArt_Paper = .data:0x00007E88; // type:object size:0x100 scope:global align:4
+itemArt_Money = .data:0x00007F88; // type:object size:0x4 scope:global align:4
+itemArt_Tool = .data:0x00007F8C; // type:object size:0x5C scope:global align:4
+itemArt_Fish = .data:0x00007FE8; // type:object size:0x28 scope:global align:4
+itemArt_Cloth = .data:0x00008010; // type:object size:0xFF scope:global align:4
+itemArt_Etc = .data:0x00008110; // type:object size:0x31 scope:global align:4
+itemArt_Carpet = .data:0x00008144; // type:object size:0x43 scope:global align:4
+itemArt_Wall = .data:0x00008188; // type:object size:0x43 scope:global align:4
+itemArt_Fruit = .data:0x000081CC; // type:object size:0x8 scope:global align:4
+itemArt_Plant = .data:0x000081D4; // type:object size:0xB scope:global align:4
+itemArt_MiniDisk = .data:0x000081E0; // type:object size:0x37 scope:global align:4
+itemArt_Diary = .data:0x00008218; // type:object size:0x10 scope:global align:4
+itemArt_Ticket = .data:0x00008228; // type:object size:0x60 scope:global align:4
+itemArt_Insect = .data:0x00008288; // type:object size:0x2D scope:global align:4
+itemArt_Hukubukuro = .data:0x000082B8; // type:object size:0x2 scope:global align:4
+itemArt_Kabu = .data:0x000082BC; // type:object size:0x4 scope:global align:4
+ftrArt = .data:0x000082C0; // type:object size:0x4F2 scope:global align:4
+itemName_table$398 = .data:0x000087B4; // type:object size:0x40 scope:local align:4 data:4byte
+unknown_item_str$399 = .data:0x000087F4; // type:object size:0x10 scope:local align:4 data:string
+itemArt_table$420 = .data:0x00008804; // type:object size:0x40 scope:local align:4
+next_trade_market_typeA$378 = .data:0x00008848; // type:object size:0x8 scope:local align:4
+next_trade_market_typeB$379 = .data:0x00008850; // type:object size:0x8 scope:local align:4
+next_trade_market_typeC$380 = .data:0x00008858; // type:object size:0x8 scope:local align:4
+next_trade_market$381 = .data:0x00008860; // type:object size:0xC scope:local align:4
+process$454 = .data:0x0000886C; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00008878; // type:label scope:local
+klight_chg_tim = .data:0x00008878; // type:object size:0x24 scope:global align:4 data:4byte
+l_mEnv_kcolor_fine_data = .data:0x0000889C; // type:object size:0x130 scope:global align:4
+l_mEnv_kcolor_insect_fine_data = .data:0x000089CC; // type:object size:0x130 scope:global align:4
+l_mEnv_kcolor_rain_data = .data:0x00008AFC; // type:object size:0x130 scope:global align:4
+l_mEnv_kcolor_insect_rain_data = .data:0x00008C2C; // type:object size:0x130 scope:global align:4
+l_mEnv_kcolor_data_p_sel = .data:0x00008D5C; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_shop = .data:0x00008D84; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_buggy = .data:0x00008DAC; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_broker = .data:0x00008DD4; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_kamakura = .data:0x00008DFC; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_museum_fossil = .data:0x00008E24; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_museum_fish = .data:0x00008E4C; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_museum_picture = .data:0x00008E74; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_basement = .data:0x00008E9C; // type:object size:0x26 scope:global align:4
+l_mEnv_kcolor_lighthouse = .data:0x00008EC4; // type:object size:0x26 scope:global align:4
+l_mEnv_normal_kcolor_data = .data:0x00008EEC; // type:object size:0x10 scope:global align:4
+l_mEnv_normal_kcolor_insect_data = .data:0x00008EFC; // type:object size:0x10 scope:global align:4
+weather_term_table$483 = .data:0x00008F0C; // type:object size:0x28 scope:local align:4 data:byte
+mEnv_wind_info = .data:0x00008F34; // type:object size:0x38 scope:global align:4 data:float
+wind_term = .data:0x00008F6C; // type:object size:0x8 scope:global align:4 data:byte
+pow_table$571 = .data:0x00008F74; // type:object size:0x3C scope:local align:4
+error_data$572 = .data:0x00008FB0; // type:object size:0xC scope:local align:4 data:4byte
+@853 = .data:0x00008FBC; // type:object size:0xB8 scope:local align:4
+@1125 = .data:0x00009074; // type:object size:0x9C scope:local align:4
+switch_on_anime_percent_table$1447 = .data:0x00009110; // type:object size:0x50 scope:local align:4
+place_chk$1753 = .data:0x00009160; // type:object size:0x10 scope:local align:4
+get_proc$564 = .data:0x00009170; // type:object size:0x8 scope:local align:4
+l_mml_postoffice_info = .data:0x00009178; // type:object size:0x40 scope:global align:4 data:4byte
+debug_name$605 = .data:0x000091B8; // type:object size:0x8 scope:local align:4
+usable_to_fontnum = .data:0x000091C0; // type:object size:0x40 scope:global align:4 data:byte
+mMpswd_prime_number = .data:0x00009200; // type:object size:0x400 scope:global align:4
+mMpswd_transposition_cipher_char0_0 = .data:0x00009600; // type:object size:0x9 scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_1 = .data:0x0000960C; // type:object size:0xF scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_2 = .data:0x0000961C; // type:object size:0xE scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_3 = .data:0x0000962C; // type:object size:0xF scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_4 = .data:0x0000963C; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_5 = .data:0x0000964C; // type:object size:0x12 scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_6 = .data:0x00009660; // type:object size:0x11 scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_7 = .data:0x00009674; // type:object size:0xC scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_8 = .data:0x00009680; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_9 = .data:0x00009690; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_10 = .data:0x000096A0; // type:object size:0x8 scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_11 = .data:0x000096A8; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_12 = .data:0x000096B8; // type:object size:0xE scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_13 = .data:0x000096C8; // type:object size:0x9 scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_14 = .data:0x000096D4; // type:object size:0xB scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_15 = .data:0x000096E0; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_0 = .data:0x000096F0; // type:object size:0xB scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_1 = .data:0x000096FC; // type:object size:0xA scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_2 = .data:0x00009708; // type:object size:0xF scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_3 = .data:0x00009718; // type:object size:0xE scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_4 = .data:0x00009728; // type:object size:0xA scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_5 = .data:0x00009734; // type:object size:0x10 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_6 = .data:0x00009744; // type:object size:0xC scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_7 = .data:0x00009750; // type:object size:0x9 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_8 = .data:0x0000975C; // type:object size:0xA scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_9 = .data:0x00009768; // type:object size:0x14 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_10 = .data:0x0000977C; // type:object size:0x14 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_11 = .data:0x00009790; // type:object size:0x13 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_12 = .data:0x000097A4; // type:object size:0xD scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_13 = .data:0x000097B4; // type:object size:0x14 scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_14 = .data:0x000097C8; // type:object size:0xB scope:global align:4 data:string
+mMpswd_transposition_cipher_char1_15 = .data:0x000097D4; // type:object size:0xE scope:global align:4 data:string
+mMpswd_transposition_cipher_char0_table = .data:0x000097E4; // type:object size:0x80 scope:global align:4
+mMpswd_transposition_cipher_char1_table = .data:0x00009864; // type:object size:0x80 scope:global align:4
+mMpswd_transposition_cipher_char_table = .data:0x000098E4; // type:object size:0x8 scope:global align:4
+mMpswd_chg_code_table = .data:0x000098EC; // type:object size:0x100 scope:global align:4 data:byte
+mMpswd_select_idx0 = .data:0x000099EC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx1 = .data:0x00009A0C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx2 = .data:0x00009A2C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx3 = .data:0x00009A4C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx4 = .data:0x00009A6C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx5 = .data:0x00009A8C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx6 = .data:0x00009AAC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx7 = .data:0x00009ACC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx8 = .data:0x00009AEC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx9 = .data:0x00009B0C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx10 = .data:0x00009B2C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx11 = .data:0x00009B4C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx12 = .data:0x00009B6C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx13 = .data:0x00009B8C; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx14 = .data:0x00009BAC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx15 = .data:0x00009BCC; // type:object size:0x20 scope:global align:4
+mMpswd_select_idx_table = .data:0x00009BEC; // type:object size:0x40 scope:global align:4
+key_idx$688 = .data:0x00009C2C; // type:object size:0x8 scope:local align:4
+@981 = .data:0x00009C34; // type:object size:0x60 scope:local align:4
+sp_npc_code_table$997 = .data:0x00009C94; // type:object size:0x40 scope:local align:4
+melody$377 = .data:0x00009CD8; // type:object size:0x10 scope:local align:4
+add_string$1058 = .data:0x00009D00; // type:object size:0x6 scope:local align:4 data:byte
+MMSG_pf_cl = .data:0x00009D08; // type:object size:0x12 scope:global align:4
+add_string$1141 = .data:0x00009D1C; // type:object size:0x6 scope:local align:4 data:byte
+voice_array$1205 = .data:0x00009D24; // type:object size:0x100 scope:local align:4
+Sound_Now_MessageSpeed = .data:0x00009E24; // type:object size:0x1 scope:global align:1 data:byte
+mMsg_bgm_num = .data:0x00009E28; // type:object size:0x9 scope:global align:4
+mMsg_bgm_stop = .data:0x00009E34; // type:object size:0x6 scope:global align:4
+mMsg_se_num$1370 = .data:0x00009E3C; // type:object size:0xE scope:local align:4
+mode_table$1382 = .data:0x00009E4C; // type:object size:0x3 scope:local align:4
+con_kaiwa2_w1_tex = .data:0x00009E60; // type:object size:0x800 scope:global align:32
+con_kaiwa2_w2_tex = .data:0x0000A660; // type:object size:0x1000 scope:global align:32
+con_kaiwa2_w3_tex = .data:0x0000B660; // type:object size:0x1000 scope:global align:32
+con_kaiwa2_v = .data:0x0000C660; // type:object size:0x180 scope:global align:8
+con_kaiwa2_modelT = .data:0x0000C7E0; // type:object size:0x78 scope:global align:8
+con_namefuti_TXT = .data:0x0000C860; // type:object size:0x400 scope:global align:32
+con_kaiwaname_v = .data:0x0000CC60; // type:object size:0x40 scope:global align:8
+con_kaiwaname_modelT = .data:0x0000CCA0; // type:object size:0x30 scope:global align:8
+mMsg_init_disp = .data:0x0000CCD0; // type:object size:0x68 scope:global align:8
+proc$2611 = .data:0x0000CD38; // type:object size:0x20 scope:local align:4
+proc$2622 = .data:0x0000CD58; // type:object size:0x20 scope:local align:4
+@2661 = .data:0x0000CD78; // type:object size:0x4 scope:local align:4 data:string
+l_museum_name_str = .data:0x0000CD80; // type:object size:0x8 scope:global align:4 data:string
+hit_table$442 = .data:0x0000CD88; // type:object size:0x8 scope:local align:4
+mail_no_table$449 = .data:0x0000CD90; // type:object size:0x64 scope:local align:4
+remail_no_table$536 = .data:0x0000CDF4; // type:object size:0x10 scope:local align:4
+mMmd_museum_fossil_data = .data:0x0000CE08; // type:object size:0xC8 scope:global align:4 data:2byte
+mMmd_scene_process_data = .data:0x0000CED0; // type:object size:0x28 scope:global align:4 data:4byte
+l_mmsr_zeto_time = .data:0x0000CEF8; // type:object size:0x8 scope:global align:4
+min_15_table$389 = .data:0x0000CF00; // type:object size:0x4 scope:local align:4 data:byte
+area_table$572 = .data:0x0000CF04; // type:object size:0x14 scope:local align:4 data:4byte
+area_table$618 = .data:0x0000CF18; // type:object size:0x14 scope:local align:4
+move_obj_profile_table = .data:0x0000CF30; // type:object size:0x2C scope:global align:4
+actor_profile_table = .data:0x0000CF5C; // type:object size:0x2 scope:global align:4
+props_profile_table = .data:0x0000CF60; // type:object size:0x26 scope:global align:4
+npc_looks_table = .data:0x0000CF88; // type:object size:0xEE scope:global align:4 data:byte
+item1_0_tableNo = .data:0x0000D078; // type:object size:0x100 scope:global align:4 data:string
+item1_1_tableNo = .data:0x0000D178; // type:object size:0x4 scope:global align:4 data:string
+item1_2_tableNo = .data:0x0000D17C; // type:object size:0x5C scope:global align:4
+item1_3_tableNo = .data:0x0000D1D8; // type:object size:0x28 scope:global align:4
+item1_4_tableNo = .data:0x0000D200; // type:object size:0xFF scope:global align:4
+item1_5_tableNo = .data:0x0000D300; // type:object size:0x31 scope:global align:4
+item1_6_tableNo = .data:0x0000D334; // type:object size:0x43 scope:global align:4
+item1_7_tableNo = .data:0x0000D378; // type:object size:0x43 scope:global align:4 data:string
+item1_8_tableNo = .data:0x0000D3BC; // type:object size:0x8 scope:global align:4
+item1_9_tableNo = .data:0x0000D3C4; // type:object size:0xB scope:global align:4
+item1_A_tableNo = .data:0x0000D3D0; // type:object size:0x37 scope:global align:4 data:string
+item1_B_tableNo = .data:0x0000D408; // type:object size:0x10 scope:global align:4
+item1_C_tableNo = .data:0x0000D418; // type:object size:0x60 scope:global align:4 data:string
+item1_D_tableNo = .data:0x0000D478; // type:object size:0x2D scope:global align:4
+item1_E_tableNo = .data:0x0000D4A8; // type:object size:0x2 scope:global align:4 data:string
+item1_F_tableNo = .data:0x0000D4AC; // type:object size:0x4 scope:global align:4
+item1_tableNo$430 = .data:0x0000D4B0; // type:object size:0x40 scope:local align:4
+cnvfg$460 = .data:0x0000D4F0; // type:object size:0x20 scope:local align:4
+grow_check$567 = .data:0x0000D510; // type:object size:0x150 scope:local align:4
+height_table = .data:0x0000D660; // type:object size:0x24 scope:global align:4
+item1_kinds$723 = .data:0x0000D684; // type:object size:0x20 scope:local align:4
+pal_table$400 = .data:0x0000D6C0; // type:object size:0x8 scope:local align:4 data:byte
+pal_table$464 = .data:0x0000D6C8; // type:object size:0x8 scope:local align:4 data:byte
+needlework0_pal = .data:0x0000D6E0; // type:object size:0x20 scope:global align:32
+needlework1_pal = .data:0x0000D700; // type:object size:0x20 scope:global align:32
+needlework2_pal = .data:0x0000D720; // type:object size:0x20 scope:global align:32
+needlework3_pal = .data:0x0000D740; // type:object size:0x20 scope:global align:32
+needlework4_pal = .data:0x0000D760; // type:object size:0x20 scope:global align:32
+needlework5_pal = .data:0x0000D780; // type:object size:0x20 scope:global align:32
+needlework6_pal = .data:0x0000D7A0; // type:object size:0x20 scope:global align:32
+needlework7_pal = .data:0x0000D7C0; // type:object size:0x20 scope:global align:32
+needlework8_pal = .data:0x0000D7E0; // type:object size:0x20 scope:global align:32
+needlework9_pal = .data:0x0000D800; // type:object size:0x20 scope:global align:32
+needlework10_pal = .data:0x0000D820; // type:object size:0x20 scope:global align:32
+needlework11_pal = .data:0x0000D840; // type:object size:0x20 scope:global align:32
+needlework12_pal = .data:0x0000D860; // type:object size:0x20 scope:global align:32
+needlework13_pal = .data:0x0000D880; // type:object size:0x20 scope:global align:32
+needlework14_pal = .data:0x0000D8A0; // type:object size:0x20 scope:global align:32
+needlework15_pal = .data:0x0000D8C0; // type:object size:0x20 scope:global align:32
+mNW_needlework_pallet_table = .data:0x0000D8E0; // type:object size:0x40 scope:global align:4
+name$543 = .data:0x0000D920; // type:object size:0x10 scope:local align:4 data:string
+auto_nwrite_date_data$401 = .data:0x0000D930; // type:object size:0xAC scope:local align:4
+choume_str$500 = .data:0x0000D9DC; // type:object size:0x7 scope:local align:4 data:string
+...data.0 = .data:0x0000D9E8; // type:label scope:local
+l_sp_actor_name = .data:0x0000D9E8; // type:object size:0x3F0 scope:global align:4 data:4byte
+l_no_name_npc_name = .data:0x0000DDD8; // type:object size:0x8 scope:global align:4
+l_no_ending_npc_ending = .data:0x0000DDE0; // type:object size:0xA scope:global align:4
+category_table$1266 = .data:0x0000DDEC; // type:object size:0x8 scope:local align:4
+base_str_no$1281 = .data:0x0000DDF4; // type:object size:0x2C scope:local align:4
+rand_max_table$1282 = .data:0x0000DE20; // type:object size:0x2C scope:local align:4
+this_start_no$1300 = .data:0x0000DE4C; // type:object size:0x18 scope:local align:4
+ohter_start_no$1301 = .data:0x0000DE64; // type:object size:0x18 scope:local align:4
+start_no_table$1302 = .data:0x0000DE7C; // type:object size:0x8 scope:local align:4
+mail_no$1320 = .data:0x0000DE84; // type:object size:0x8 scope:local align:4
+get_remail$1332 = .data:0x0000DE8C; // type:object size:0x8 scope:local align:4
+priority_table$1392 = .data:0x0000DE94; // type:object size:0xC scope:local align:4
+category_table$1393 = .data:0x0000DEA0; // type:object size:0xC scope:local align:4
+category_table$1466 = .data:0x0000DEAC; // type:object size:0x5 scope:local align:4
+ut_d$2015 = .data:0x0000DEB4; // type:object size:0x48 scope:local align:4 data:4byte
+set_fg$2016 = .data:0x0000DEFC; // type:object size:0x12 scope:local align:4 data:2byte
+spec_table$2943 = .data:0x0000DF10; // type:object size:0x18 scope:local align:4
+npc_grow_prob$2970 = .data:0x0000DF28; // type:object size:0x1C scope:local align:4
+ut_xnum_table$3360 = .data:0x0000DF44; // type:object size:0x24 scope:local align:4
+ut_znum_table$3361 = .data:0x0000DF68; // type:object size:0x24 scope:local align:4
+l_npc_temper = .data:0x0000DF8C; // type:object size:0x18 scope:global align:4
+l_island_npc_best_fg_id = .data:0x0000DFA4; // type:object size:0x48 scope:global align:4
+l_mnpc_island_md_table = .data:0x0000DFEC; // type:object size:0x24 scope:global align:4
+prob_table$4797 = .data:0x0000E010; // type:object size:0x5 scope:local align:4
+prob_table$4819 = .data:0x0000E018; // type:object size:0x10 scope:local align:4
+send_proc$4937 = .data:0x0000E028; // type:object size:0x18 scope:local align:4
+@4986 = .data:0x0000E040; // type:object size:0xC scope:local align:4 data:string
+@4987 = .data:0x0000E04C; // type:object size:0xC scope:local align:4 data:string
+@4988 = .data:0x0000E058; // type:object size:0xC scope:local align:4 data:string
+@4989 = .data:0x0000E064; // type:object size:0xC scope:local align:4 data:string
+@5061 = .data:0x0000E070; // type:object size:0x1B scope:local align:4 data:string
+@5062 = .data:0x0000E08C; // type:object size:0x1B scope:local align:4 data:string
+@5063 = .data:0x0000E0A8; // type:object size:0x1B scope:local align:4 data:string
+@5064 = .data:0x0000E0C4; // type:object size:0x8 scope:local align:4 data:string
+@5065 = .data:0x0000E0CC; // type:object size:0x4 scope:local align:4 data:string
+@5066 = .data:0x0000E0D0; // type:object size:0x9 scope:local align:4 data:string
+@5067 = .data:0x0000E0DC; // type:object size:0xC scope:local align:4 data:string
+@5068 = .data:0x0000E0E8; // type:object size:0x18 scope:local align:4 data:string
+l_mnpc_animal_idx = .data:0x0000E100; // type:object size:0x4 scope:global align:4 data:4byte
+@5099 = .data:0x0000E104; // type:object size:0x5 scope:local align:4 data:string
+@5100 = .data:0x0000E10C; // type:object size:0x6 scope:local align:4 data:string
+@5101 = .data:0x0000E114; // type:object size:0x9 scope:local align:4 data:string
+@5102 = .data:0x0000E120; // type:object size:0xA scope:local align:4 data:string
+print_proc$5106 = .data:0x0000E12C; // type:object size:0x8 scope:local align:4
+girl_schedule_dt = .data:0x0000E138; // type:object size:0x38 scope:global align:4
+girl_schedule = .data:0x0000E170; // type:object size:0x8 scope:global align:4
+ko_girl_schedule_dt = .data:0x0000E178; // type:object size:0x38 scope:global align:4
+ko_girl_schedule = .data:0x0000E1B0; // type:object size:0x8 scope:global align:4
+boy_schedule_dt = .data:0x0000E1B8; // type:object size:0x38 scope:global align:4
+boy_schedule = .data:0x0000E1F0; // type:object size:0x8 scope:global align:4
+sport_man_schedule_dt = .data:0x0000E1F8; // type:object size:0x38 scope:global align:4
+sport_man_schedule = .data:0x0000E230; // type:object size:0x8 scope:global align:4
+grim_man_schedule_dt = .data:0x0000E238; // type:object size:0x48 scope:global align:4
+grim_man_schedule = .data:0x0000E280; // type:object size:0x8 scope:global align:4
+naniwa_lady_schedule_dt = .data:0x0000E288; // type:object size:0x48 scope:global align:4
+naniwa_lady_schedule = .data:0x0000E2D0; // type:object size:0x8 scope:global align:4
+mNPS_schedule = .data:0x0000E2D8; // type:object size:0x18 scope:global align:4
+l_girl_time_12 = .data:0x0000E2F0; // type:object size:0x3 scope:global align:4
+l_girl_time_18_30 = .data:0x0000E2F4; // type:object size:0x2 scope:global align:4
+l_girl_goal_data = .data:0x0000E2F8; // type:object size:0x3C scope:global align:4
+l_girl_goal_table = .data:0x0000E334; // type:object size:0x8 scope:global align:4
+l_kogirl_time_ed = .data:0x0000E33C; // type:object size:0x2 scope:global align:4
+l_kogirl_goal_data = .data:0x0000E340; // type:object size:0xC scope:global align:4
+l_kogirl_goal_table = .data:0x0000E34C; // type:object size:0x8 scope:global align:4
+l_boy_time_12 = .data:0x0000E354; // type:object size:0x1 scope:global align:4
+l_boy_time_19_30 = .data:0x0000E358; // type:object size:0x2 scope:global align:4
+l_boy_goal_data = .data:0x0000E35C; // type:object size:0x3C scope:global align:4
+l_boy_goal_table = .data:0x0000E398; // type:object size:0x8 scope:global align:4
+l_sport_man_time_12 = .data:0x0000E3A0; // type:object size:0x4 scope:global align:4
+l_sport_man_time_23 = .data:0x0000E3A4; // type:object size:0x5 scope:global align:4
+l_sport_man_data = .data:0x0000E3AC; // type:object size:0x3C scope:global align:4
+l_sport_man_goal_table = .data:0x0000E3E8; // type:object size:0x8 scope:global align:4
+l_grim_man_time_ed = .data:0x0000E3F0; // type:object size:0xA scope:global align:4
+l_grim_man_goal_data = .data:0x0000E3FC; // type:object size:0xC scope:global align:4
+l_grim_man_goal_table = .data:0x0000E408; // type:object size:0x8 scope:global align:4
+l_naniwa_lady_time_1_30 = .data:0x0000E410; // type:object size:0xA scope:global align:4
+l_naniwa_lady_time_13 = .data:0x0000E41C; // type:object size:0x1 scope:global align:4
+l_naniwa_lady_time_21 = .data:0x0000E420; // type:object size:0x5 scope:global align:4
+l_naniwa_lady_goal_data = .data:0x0000E428; // type:object size:0x54 scope:global align:4
+l_naniwa_lady_goal_table = .data:0x0000E47C; // type:object size:0x8 scope:global align:4
+l_looks_goal_table = .data:0x0000E484; // type:object size:0x18 scope:global align:4
+Player_Profile = .data:0x0000E4A0; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x0000E4C8; // type:label scope:local
+data$441 = .data:0x0000E4C8; // type:object size:0x274 scope:local align:4 data:4byte
+mPlib_Item_DataPointer$464 = .data:0x0000E73C; // type:object size:0xC8 scope:local align:4
+Player_Tex_bank_ID = .data:0x0000E804; // type:object size:0x8 scope:global align:4 data:4byte
+Player_Pallet_bank_ID = .data:0x0000E80C; // type:object size:0x8 scope:global align:4 data:4byte
+Player_face_tex_bank_ID = .data:0x0000E814; // type:object size:0x4 scope:global align:4 data:4byte
+Player_face_pallet_bank_ID = .data:0x0000E818; // type:object size:0x8 scope:global align:4 data:4byte
+@836 = .data:0x0000E820; // type:object size:0x170 scope:local align:4
+data$2387 = .data:0x0000E990; // type:object size:0x4 scope:local align:4
+category_table$457 = .data:0x0000E998; // type:object size:0x14 scope:local align:4
+prob_table$458 = .data:0x0000E9AC; // type:object size:0x14 scope:local align:4
+category_table$472 = .data:0x0000E9C0; // type:object size:0xC scope:local align:4
+force_proc$489 = .data:0x0000E9CC; // type:object size:0x10 scope:local align:4
+prob_table$490 = .data:0x0000E9DC; // type:object size:0x10 scope:local align:4
+bx_add$607 = .data:0x0000E9F0; // type:object size:0x8 scope:local align:4
+ux_table$608 = .data:0x0000E9F8; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x0000EA00; // type:label scope:local
+mPr_boy_cloth_table = .data:0x0000EA00; // type:object size:0x10 scope:global align:4
+mPr_girl_cloth_table = .data:0x0000EA10; // type:object size:0x10 scope:global align:4
+cloth_table$576 = .data:0x0000EA20; // type:object size:0x8 scope:local align:4
+cloth_max$577 = .data:0x0000EA28; // type:object size:0x8 scope:local align:4
+paper_table$1081 = .data:0x0000EA30; // type:object size:0xC scope:local align:4
+mail_start_no_table$1198 = .data:0x0000EA3C; // type:object size:0x10 scope:local align:4
+may_2_item_table$1199 = .data:0x0000EA4C; // type:object size:0x2 scope:local align:4 data:string
+december_2_item_table$1200 = .data:0x0000EA50; // type:object size:0xC scope:local align:4
+@1295 = .data:0x0000EA5C; // type:object size:0xC0 scope:local align:4
+@1534 = .data:0x0000EB1C; // type:object size:0x6 scope:local align:4 data:string
+@1535 = .data:0x0000EB24; // type:object size:0x6 scope:local align:4 data:string
+...data.0 = .data:0x0000EB30; // type:label scope:local
+l_delivery_limit = .data:0x0000EB30; // type:object size:0x4 scope:global align:4
+l_errand_limit = .data:0x0000EB34; // type:object size:0xF scope:global align:4
+l_contest_limit = .data:0x0000EB44; // type:object size:0x7 scope:global align:4
+l_contest_fin_limit = .data:0x0000EB4C; // type:object size:0x7 scope:global align:4
+l_limit_table = .data:0x0000EB54; // type:object size:0xC scope:global align:4
+l_limit_table_max = .data:0x0000EB60; // type:object size:0xC scope:global align:4
+@750 = .data:0x0000EB6C; // type:object size:0x24 scope:local align:4
+@1063 = .data:0x0000EB90; // type:object size:0x3 scope:local align:4 data:string
+@1064 = .data:0x0000EB94; // type:object size:0x2 scope:local align:4 data:string
+mRF_block_info = .data:0x0000EB98; // type:object size:0x1B0 scope:global align:4
+gate_count_table$424 = .data:0x0000ED48; // type:object size:0x6 scope:local align:4
+gate1_type0_up = .data:0x0000ED50; // type:object size:0x8 scope:global align:4
+gate1_type0_lt = .data:0x0000ED58; // type:object size:0x8 scope:global align:4
+gate1_type0_dn = .data:0x0000ED60; // type:object size:0x8 scope:global align:4
+gate1_type0_rt = .data:0x0000ED68; // type:object size:0x8 scope:global align:4
+gate1_type1_up = .data:0x0000ED70; // type:object size:0x8 scope:global align:4
+gate1_type1_lt = .data:0x0000ED78; // type:object size:0x8 scope:global align:4
+gate1_type1_dn = .data:0x0000ED80; // type:object size:0x8 scope:global align:4
+gate1_type1_rt = .data:0x0000ED88; // type:object size:0x8 scope:global align:4
+gate2_type0_up = .data:0x0000ED90; // type:object size:0x10 scope:global align:4
+gate2_type0_lt = .data:0x0000EDA0; // type:object size:0x10 scope:global align:4
+gate2_type0_dn = .data:0x0000EDB0; // type:object size:0x10 scope:global align:4
+gate2_type0_rt = .data:0x0000EDC0; // type:object size:0x10 scope:global align:4
+gate2_type1_up = .data:0x0000EDD0; // type:object size:0x10 scope:global align:4
+gate2_type1_lt = .data:0x0000EDE0; // type:object size:0x10 scope:global align:4
+gate2_type1_dn = .data:0x0000EDF0; // type:object size:0x10 scope:global align:4
+gate2_type1_rt = .data:0x0000EE00; // type:object size:0x10 scope:global align:4
+gate3_type0_up = .data:0x0000EE10; // type:object size:0x18 scope:global align:4
+gate3_type0_lt = .data:0x0000EE28; // type:object size:0x18 scope:global align:4
+gate3_type0_dn = .data:0x0000EE40; // type:object size:0x18 scope:global align:4
+gate3_type0_rt = .data:0x0000EE58; // type:object size:0x18 scope:global align:4
+mRF_gate_correct_info = .data:0x0000EE70; // type:object size:0x60 scope:global align:4
+mRF_gate_info2 = .data:0x0000EED0; // type:object size:0x1B0 scope:global align:4
+l_river_next_direct = .data:0x0000F080; // type:object size:0x7 scope:global align:4
+z_gsCPModeSet_Data = .data:0x0000F088; // type:object size:0x2D0 scope:global align:8
+RSP_RDP_clear_data = .data:0x0000F358; // type:object size:0x60 scope:global align:8
+fade_gfx$783 = .data:0x0000F3B8; // type:object size:0x30 scope:local align:8
+fill_gfx$784 = .data:0x0000F3E8; // type:object size:0x28 scope:local align:8
+...data.0 = .data:0x0000F410; // type:label scope:local
+mRmTp_size_s_data = .data:0x0000F410; // type:object size:0x18 scope:global align:4
+mRmTp_size_m_data_south = .data:0x0000F428; // type:object size:0x18 scope:global align:4
+mRmTp_size_m_data_east = .data:0x0000F440; // type:object size:0x18 scope:global align:4
+mRmTp_size_m_data_north = .data:0x0000F458; // type:object size:0x18 scope:global align:4
+mRmTp_size_m_data_west = .data:0x0000F470; // type:object size:0x18 scope:global align:4
+mRmTp_size_m_data_table = .data:0x0000F488; // type:object size:0x10 scope:global align:4
+mRmTp_size_l_data = .data:0x0000F498; // type:object size:0x18 scope:global align:4
+mRmTp_ftr_se_type = .data:0x0000F4B0; // type:object size:0x4F2 scope:global align:4
+soft_chair_se_table$543 = .data:0x0000F9A4; // type:object size:0x8 scope:local align:4
+hard_chair_se_table$544 = .data:0x0000F9AC; // type:object size:0x8 scope:local align:4
+bubu_chair_se_table$545 = .data:0x0000F9B4; // type:object size:0x8 scope:local align:4
+toile_chair_se_table$546 = .data:0x0000F9BC; // type:object size:0x8 scope:local align:4
+mRmTp_birth_type = .data:0x0000F9C4; // type:object size:0x4F2 scope:global align:4
+@645 = .data:0x0000FEB8; // type:object size:0xF scope:local align:4 data:string
+@646 = .data:0x0000FEC8; // type:object size:0x12 scope:local align:4 data:string
+@647 = .data:0x0000FEDC; // type:object size:0xC scope:local align:4 data:string
+@648 = .data:0x0000FEE8; // type:object size:0xC scope:local align:4 data:string
+@649 = .data:0x0000FEF4; // type:object size:0xC scope:local align:4 data:string
+@650 = .data:0x0000FF00; // type:object size:0xE scope:local align:4 data:string
+@651 = .data:0x0000FF10; // type:object size:0x12 scope:local align:4 data:string
+@652 = .data:0x0000FF24; // type:object size:0x11 scope:local align:4 data:string
+@653 = .data:0x0000FF38; // type:object size:0xC scope:local align:4 data:string
+@654 = .data:0x0000FF44; // type:object size:0x12 scope:local align:4 data:string
+@655 = .data:0x0000FF58; // type:object size:0xF scope:local align:4 data:string
+@656 = .data:0x0000FF68; // type:object size:0x16 scope:local align:4 data:string
+@657 = .data:0x0000FF80; // type:object size:0x14 scope:local align:4 data:string
+@658 = .data:0x0000FF94; // type:object size:0x15 scope:local align:4 data:string
+@659 = .data:0x0000FFAC; // type:object size:0x14 scope:local align:4 data:string
+@660 = .data:0x0000FFC0; // type:object size:0x12 scope:local align:4 data:string
+@661 = .data:0x0000FFD4; // type:object size:0x18 scope:local align:4 data:string
+@662 = .data:0x0000FFEC; // type:object size:0x14 scope:local align:4 data:string
+@663 = .data:0x00010000; // type:object size:0xE scope:local align:4 data:string
+@664 = .data:0x00010010; // type:object size:0xB8 scope:local align:4
+@812 = .data:0x000100C8; // type:object size:0x9 scope:local align:4
+direct_table$929 = .data:0x000100D4; // type:object size:0x40 scope:local align:4
+z_bottun_data$1026 = .data:0x00010114; // type:object size:0xD scope:local align:4
+@1232 = .data:0x00010124; // type:object size:0x68 scope:local align:4
+...data.0 = .data:0x00010190; // type:label scope:local
+diary_listA = .data:0x00010190; // type:object size:0xC scope:global align:4
+diary_listB = .data:0x0001019C; // type:object size:0xC scope:global align:4
+diary_listC = .data:0x000101A8; // type:object size:0xE scope:global align:4
+mSP_diary_list = .data:0x000101B8; // type:object size:0x5C scope:global align:4
+mSP_goods_seg_inf = .data:0x00010214; // type:object size:0x18 scope:global align:4
+@455 = .data:0x0001022C; // type:object size:0x54 scope:local align:4
+@594 = .data:0x00010280; // type:object size:0x34 scope:local align:4
+l_binsen_price_info = .data:0x000102B4; // type:object size:0x4 scope:global align:4
+l_cloth_price_info = .data:0x000102B8; // type:object size:0x4 scope:global align:4
+l_carpet_price_info = .data:0x000102BC; // type:object size:0x4 scope:global align:4
+l_wall_price_info = .data:0x000102C0; // type:object size:0x4 scope:global align:4
+l_tool_price_info = .data:0x000102C4; // type:object size:0x4 scope:global align:4
+l_plant_price_info = .data:0x000102C8; // type:object size:0x4 scope:global align:4
+l_food_price_info = .data:0x000102CC; // type:object size:0x4 scope:global align:4
+l_fish_price_info = .data:0x000102D0; // type:object size:0x4 scope:global align:4
+l_md_price_info = .data:0x000102D4; // type:object size:0x4 scope:global align:4
+l_diary_price_info = .data:0x000102D8; // type:object size:0x4 scope:global align:4
+l_insect_price_info = .data:0x000102DC; // type:object size:0x4 scope:global align:4
+l_price_info = .data:0x000102E0; // type:object size:0x40 scope:global align:4
+mSP_item1_start_idx_table = .data:0x00010320; // type:object size:0x20 scope:global align:4
+shellfish_price_table$761 = .data:0x00010340; // type:object size:0x20 scope:local align:4
+l_zakka_goods = .data:0x00010360; // type:object size:0xB scope:global align:4
+l_conbini_goods = .data:0x0001036C; // type:object size:0xB scope:global align:4
+l_super_goods = .data:0x00010378; // type:object size:0xB scope:global align:4
+l_dsuper_goods = .data:0x00010384; // type:object size:0xB scope:global align:4
+l_goods_count_table = .data:0x00010390; // type:object size:0x10 scope:global align:4
+table$862 = .data:0x000103A0; // type:object size:0x10 scope:local align:4
+rare_chirashi_bunmen$981 = .data:0x000103B0; // type:object size:0x20 scope:local align:4
+chirashi_idx_appoday$1048 = .data:0x000103D0; // type:object size:0x10 scope:local align:4
+@1176 = .data:0x000103E0; // type:object size:0x9 scope:local align:4 data:string
+@1177 = .data:0x000103EC; // type:object size:0x15 scope:local align:4 data:string
+@1178 = .data:0x00010404; // type:object size:0x13 scope:local align:4 data:string
+@1179 = .data:0x00010418; // type:object size:0x16 scope:local align:4 data:string
+@1180 = .data:0x00010430; // type:object size:0x15 scope:local align:4 data:string
+@1181 = .data:0x00010448; // type:object size:0x15 scope:local align:4 data:string
+priority_candidate$1236 = .data:0x00010460; // type:object size:0x6 scope:local align:4
+@1267 = .data:0x00010468; // type:object size:0x54 scope:local align:4
+@1341 = .data:0x000104BC; // type:object size:0x54 scope:local align:4
+shop_open_time_table$1345 = .data:0x00010510; // type:object size:0x4 scope:local align:4
+shop_close_time_table$1352 = .data:0x00010514; // type:object size:0x4 scope:local align:4
+shop_close_time_table$1357 = .data:0x00010518; // type:object size:0x4 scope:local align:4
+mSP_sack_amount = .data:0x0001051C; // type:object size:0x10 scope:global align:4
+mSP_itemNo = .data:0x0001052C; // type:object size:0x8 scope:global align:4
+priority$1719 = .data:0x00010534; // type:object size:0x48 scope:local align:4
+mSP_gc_famicom_table = .data:0x0001057C; // type:object size:0x10 scope:global align:4
+trash_table$1828 = .data:0x0001058C; // type:object size:0x6 scope:local align:4
+dummy$1968 = .data:0x00010594; // type:object size:0x7 scope:local align:4 data:string
+@1970 = .data:0x0001059C; // type:object size:0x4 scope:local align:4 data:string
+@1971 = .data:0x000105A0; // type:object size:0x4 scope:local align:4 data:string
+@1972 = .data:0x000105A4; // type:object size:0x4 scope:local align:4 data:string
+@1973 = .data:0x000105A8; // type:object size:0x4 scope:local align:4 data:string
+@1974 = .data:0x000105AC; // type:object size:0x6 scope:local align:4 data:string
+@1975 = .data:0x000105B4; // type:object size:0x6 scope:local align:4 data:string
+@1976 = .data:0x000105BC; // type:object size:0x6 scope:local align:4 data:string
+str_table$1969 = .data:0x000105C4; // type:object size:0x1C scope:local align:4
+train$1990 = .data:0x000105E0; // type:object size:0x4 scope:local align:4
+@1994 = .data:0x000105E4; // type:object size:0x3 scope:local align:4
+@1995 = .data:0x000105E8; // type:object size:0x4 scope:local align:4 data:string
+@1996 = .data:0x000105EC; // type:object size:0x4 scope:local align:4 data:string
+@1997 = .data:0x000105F0; // type:object size:0x4 scope:local align:4 data:string
+@1998 = .data:0x000105F4; // type:object size:0x4 scope:local align:4 data:string
+@1999 = .data:0x000105F8; // type:object size:0x4 scope:local align:4 data:string
+@2000 = .data:0x000105FC; // type:object size:0x4 scope:local align:4 data:string
+@2001 = .data:0x00010600; // type:object size:0x4 scope:local align:4 data:string
+@2002 = .data:0x00010604; // type:object size:0x4 scope:local align:4 data:string
+@2003 = .data:0x00010608; // type:object size:0x4 scope:local align:4 data:string
+@2004 = .data:0x0001060C; // type:object size:0x4 scope:local align:4 data:string
+@2005 = .data:0x00010610; // type:object size:0x4 scope:local align:4 data:string
+@2006 = .data:0x00010614; // type:object size:0x4 scope:local align:4 data:string
+@2007 = .data:0x00010618; // type:object size:0x4 scope:local align:4 data:string
+@2008 = .data:0x0001061C; // type:object size:0x4 scope:local align:4 data:string
+@2009 = .data:0x00010620; // type:object size:0x4 scope:local align:4 data:string
+@2010 = .data:0x00010624; // type:object size:0x4 scope:local align:4 data:string
+@2011 = .data:0x00010628; // type:object size:0x4 scope:local align:4 data:string
+mItemDebug_category_name_table = .data:0x0001062C; // type:object size:0x48 scope:global align:4
+mItemDebug_category_start_no_table = .data:0x00010674; // type:object size:0x24 scope:global align:4
+mItemDebug_category_max_table = .data:0x00010698; // type:object size:0x48 scope:global align:4
+@2102 = .data:0x000106E0; // type:object size:0x6 scope:local align:4 data:string
+@2103 = .data:0x000106E8; // type:object size:0xB scope:local align:4 data:string
+event_table = .data:0x000106F8; // type:object size:0x1C scope:global align:4 data:byte
+soncho_item_table$582 = .data:0x00010714; // type:object size:0x38 scope:local align:4
+@597 = .data:0x0001074C; // type:object size:0x68 scope:local align:4
+chg_string_idx$607 = .data:0x000107B4; // type:object size:0x74 scope:local align:4
+@780 = .data:0x00010828; // type:object size:0x1C scope:local align:4
+proc$845 = .data:0x00010844; // type:object size:0x28 scope:local align:4
+haniwa_msg$427 = .data:0x00010870; // type:object size:0x10 scope:local align:4
+block_num$451 = .data:0x00010880; // type:object size:0x10 scope:local align:4 data:4byte
+@535 = .data:0x00010890; // type:object size:0x11 scope:local align:4 data:string
+init_proc$597 = .data:0x000108A4; // type:object size:0x14 scope:local align:4
+renew_reserve_mode_table$602 = .data:0x000108B8; // type:object size:0x14 scope:local align:4
+@461 = .data:0x000108D0; // type:object size:0xC scope:local align:4 data:string
+@462 = .data:0x000108DC; // type:object size:0xD scope:local align:4 data:string
+SubmenuArea_dlftbl = .data:0x000108EC; // type:object size:0x38 scope:global align:4
+move_proc$744 = .data:0x00010924; // type:object size:0x14 scope:local align:4
+check_process$906 = .data:0x00010938; // type:object size:0x44 scope:local align:4
+Scene_Proc$625 = .data:0x00010980; // type:object size:0x2C scope:local align:4
+angle_table$663 = .data:0x000109AC; // type:object size:0x10 scope:local align:4
+profile_table$694 = .data:0x000109BC; // type:object size:0x8 scope:local align:4
+scene_data_status = .data:0x000109C8; // type:object size:0x410 scope:global align:4
+S_now_demono = .data:0x00010DD8; // type:object size:0x4 scope:global align:4 data:4byte
+pact_data_head_pt$444 = .data:0x00010DDC; // type:object size:0x14 scope:local align:4
+time_table$459 = .data:0x00010DF0; // type:object size:0x64 scope:local align:4
+@613 = .data:0x00010E54; // type:object size:0x24 scope:local align:4
+...data.0 = .data:0x00010E78; // type:label scope:local
+mTM_calender = .data:0x00010E78; // type:object size:0x90 scope:global align:4 data:byte
+@461 = .data:0x00010F08; // type:object size:0x5 scope:local align:4 data:string
+@462 = .data:0x00010F10; // type:object size:0x6 scope:local align:4 data:string
+@463 = .data:0x00010F18; // type:object size:0x5 scope:local align:4 data:string
+@464 = .data:0x00010F20; // type:object size:0x6 scope:local align:4 data:string
+timestep$469 = .data:0x00010F28; // type:object size:0x10 scope:local align:4
+place_chk$760 = .data:0x00010F38; // type:object size:0x20 scope:local align:4
+fg_name$881 = .data:0x00010F58; // type:object size:0x8 scope:local align:4
+amount$882 = .data:0x00010F60; // type:object size:0x10 scope:local align:4
+...data.0 = .data:0x00010F70; // type:label scope:local
+mCD_file_name = .data:0x00010F70; // type:object size:0x20 scope:global align:4 data:4byte
+l_mcd_err_debug = .data:0x00010F90; // type:object size:0x1C scope:global align:4 data:4byte
+@425 = .data:0x00010FAC; // type:object size:0x2 scope:local align:4 data:string
+@426 = .data:0x00010FB0; // type:object size:0x2 scope:local align:4 data:string
+@427 = .data:0x00010FB4; // type:object size:0x2 scope:local align:4 data:string
+@428 = .data:0x00010FB8; // type:object size:0x2 scope:local align:4 data:string
+@429 = .data:0x00010FBC; // type:object size:0x2 scope:local align:4 data:string
+@430 = .data:0x00010FC0; // type:object size:0x2 scope:local align:4 data:string
+@431 = .data:0x00010FC4; // type:object size:0x2 scope:local align:4 data:string
+@432 = .data:0x00010FC8; // type:object size:0x3 scope:local align:4 data:string
+get_proc$705 = .data:0x00010FCC; // type:object size:0x8 scope:local align:4
+wbg_proc$835 = .data:0x00010FD4; // type:object size:0x18 scope:local align:4
+wcbg_proc$943 = .data:0x00010FEC; // type:object size:0x18 scope:local align:4
+rbg_proc$1009 = .data:0x00011004; // type:object size:0x14 scope:local align:4
+fbg_proc$1133 = .data:0x00011018; // type:object size:0x10 scope:local align:4
+ssbg_proc$1184 = .data:0x00011028; // type:object size:0x14 scope:local align:4
+gsbg_proc$1225 = .data:0x0001103C; // type:object size:0x10 scope:local align:4
+cbg_proc$1303 = .data:0x0001104C; // type:object size:0x14 scope:local align:4
+sp_proc$1354 = .data:0x00011060; // type:object size:0x10 scope:local align:4
+ebg_proc$1403 = .data:0x00011070; // type:object size:0x14 scope:local align:4
+l_mcd_copy_protect = .data:0x00011084; // type:object size:0x2 scope:global align:2 data:2byte
+l_mcd_font_1 = .data:0x00011088; // type:object size:0x100 scope:global align:4
+l_comment_0_str = .data:0x00011188; // type:object size:0x20 scope:global align:4
+l_comment_1_str = .data:0x000111A8; // type:object size:0x20 scope:global align:4 data:byte
+l_comment_erase_land = .data:0x000111C8; // type:object size:0x20 scope:global align:4
+l_comment_player_0_str = .data:0x000111E8; // type:object size:0x20 scope:global align:4
+l_comment_player_1_str = .data:0x00011208; // type:object size:0x20 scope:global align:4 data:byte
+l_comment_present_0_str = .data:0x00011228; // type:object size:0x20 scope:global align:4
+l_comment_present_1_str = .data:0x00011248; // type:object size:0x20 scope:global align:4
+l_comment_gift_1_str = .data:0x00011268; // type:object size:0x20 scope:global align:4
+l_mCD_land_file_name = .data:0x00011288; // type:object size:0x20 scope:global align:4
+l_mCD_land_file_name_dummy = .data:0x000112A8; // type:object size:0x20 scope:global align:4
+l_mCD_player_file_name = .data:0x000112C8; // type:object size:0x20 scope:global align:4
+l_mCD_present_file_name = .data:0x000112E8; // type:object size:0x20 scope:global align:4
+l_mcd_file_table = .data:0x00011308; // type:object size:0x60 scope:global align:4 data:4byte
+l_aram_alloc_size_table = .data:0x00011368; // type:object size:0xC scope:global align:4
+l_aram_real_size_32_table = .data:0x00011374; // type:object size:0xC scope:global align:4 data:4byte
+init_proc$1567 = .data:0x00011380; // type:object size:0xC scope:local align:4
+sound_table$2229 = .data:0x0001138C; // type:object size:0x2 scope:local align:4 data:string
+icon_fileNo$2370 = .data:0x00011390; // type:object size:0x8 scope:local align:4
+comment_p_table$2371 = .data:0x00011398; // type:object size:0x8 scope:local align:4
+comment_len_table$2372 = .data:0x000113A0; // type:object size:0x8 scope:local align:4
+icon_fileNo$2563 = .data:0x000113A8; // type:object size:0x3C scope:local align:4
+banner_fileNo$2564 = .data:0x000113E4; // type:object size:0x10 scope:local align:4
+icon_fileNo$2710 = .data:0x000113F4; // type:object size:0x3C scope:local align:4
+banner_fileNo$2711 = .data:0x00011430; // type:object size:0x10 scope:local align:4
+save_proc$2857 = .data:0x00011440; // type:object size:0x48 scope:local align:4
+@2916 = .data:0x00011488; // type:object size:0x64 scope:local align:4
+@3080 = .data:0x000114EC; // type:object size:0x54 scope:local align:4
+erase_proc$3151 = .data:0x00011540; // type:object size:0x1C scope:local align:4
+erase_proc$3226 = .data:0x0001155C; // type:object size:0x1C scope:local align:4
+erase_proc$3400 = .data:0x00011578; // type:object size:0x10 scope:local align:4
+@3437 = .data:0x00011588; // type:object size:0x54 scope:local align:4
+sound_mode$3450 = .data:0x000115DC; // type:object size:0x14 scope:local align:4
+init_mode_table$3517 = .data:0x000115F0; // type:object size:0x14 scope:local align:4
+icon_fileNo$3576 = .data:0x00011604; // type:object size:0x40 scope:local align:4
+start_proc$3660 = .data:0x00011644; // type:object size:0x28 scope:local align:4
+start_proc$3725 = .data:0x0001166C; // type:object size:0x14 scope:local align:4
+@4041 = .data:0x00011680; // type:object size:0x30 scope:local align:4
+check_proc$4121 = .data:0x000116B0; // type:object size:0x14 scope:local align:4
+@4216 = .data:0x000116C4; // type:object size:0x30 scope:local align:4
+save_proc$4465 = .data:0x000116F4; // type:object size:0x28 scope:local align:4
+icon_fileNo$4664 = .data:0x0001171C; // type:object size:0x40 scope:local align:4
+save_proc$4741 = .data:0x0001175C; // type:object size:0x3C scope:local align:4
+g_paks_info_p = .data:0x00011798; // type:object size:0x4 scope:global align:4 data:4byte
+@400 = .data:0x000117A0; // type:object size:0x7 scope:local align:4 data:string
+@465 = .data:0x000117A8; // type:object size:0x8 scope:local align:4 data:string
+@348 = .data:0x000117B0; // type:object size:0x20 scope:local align:4
+l_lbRTC_isInitial = .data:0x000117D0; // type:object size:0x4 scope:global align:4 data:4byte
+t_seiyo_days_tbl$271 = .data:0x000117D8; // type:object size:0x1A scope:local align:4
+l_lbRk_ConvertTable = .data:0x000117F4; // type:object size:0x35A scope:global align:4
+l_lbRk_leapdays = .data:0x00011B50; // type:object size:0x84 scope:global align:4
+ev_day$400 = .data:0x00011BD4; // type:object size:0x3A scope:local align:4
+ScreenWidth = .data:0x00011C10; // type:object size:0x4 scope:global align:4 data:4byte
+ScreenHeight = .data:0x00011C14; // type:object size:0x4 scope:global align:4 data:4byte
+@416 = .data:0x00011C18; // type:object size:0x19 scope:local align:4
+this = .data:0x00011C38; // type:object size:0x4 scope:local align:4 data:4byte
+stop_command$307 = .data:0x00011C3C; // type:object size:0x10 scope:local align:4
+ZeroVec = .data:0x00011C50; // type:object size:0xC scope:global align:4 data:4byte
+ZeroSVec = .data:0x00011C5C; // type:object size:0x6 scope:global align:4 data:2byte
+atntable = .data:0x00011C68; // type:object size:0x802 scope:global align:4 data:2byte
+Mtx_clear = .data:0x00012470; // type:object size:0x40 scope:global align:8
+MtxF_clear = .data:0x000124B0; // type:object size:0x40 scope:global align:4
+@359 = .data:0x000124F0; // type:object size:0x2E scope:local align:4
+@377 = .data:0x00012520; // type:object size:0xB scope:local align:4 data:string
+poly_tbl = .data:0x00012530; // type:object size:0x8 scope:global align:4 data:4byte
+sprite_tbl = .data:0x00012538; // type:object size:0x8 scope:global align:4 data:4byte
+Ac_Sample_OcInfoData_forStand = .data:0x00012540; // type:object size:0x10 scope:global align:4
+str0$462 = .data:0x00012550; // type:object size:0x10 scope:local align:4
+str9$463 = .data:0x00012560; // type:object size:0x5 scope:local align:4
+proc$488 = .data:0x00012568; // type:object size:0x8 scope:local align:4
+proc$535 = .data:0x00012570; // type:object size:0x8 scope:local align:4
+Sample_Profile = .data:0x00012578; // type:object size:0x24 scope:global align:4
+Airplane_Profile = .data:0x000125A0; // type:object size:0x24 scope:global align:4
+goal_angle_random$539 = .data:0x000125C4; // type:object size:0x10 scope:local align:4
+goal_angle_random2$540 = .data:0x000125D4; // type:object size:0x10 scope:local align:4
+wind1 = .data:0x000125E4; // type:object size:0xC scope:global align:4
+wind2 = .data:0x000125F0; // type:object size:0xC scope:global align:4
+wind3 = .data:0x000125FC; // type:object size:0xC scope:global align:4
+wind4 = .data:0x00012608; // type:object size:0xC scope:global align:4
+wind_table = .data:0x00012614; // type:object size:0x10 scope:global align:4
+wind_change_frame_table = .data:0x00012624; // type:object size:0x28 scope:global align:4
+AirplaneMove$663 = .data:0x0001264C; // type:object size:0x1C scope:local align:4
+Animal_Logo_Profile = .data:0x00012668; // type:object size:0x24 scope:global align:4
+process$579 = .data:0x0001268C; // type:object size:0x1C scope:local align:4
+Arrange_Furniture_Profile = .data:0x000126A8; // type:object size:0x24 scope:global align:4
+Arrange_Room_Profile = .data:0x000126D0; // type:object size:0x24 scope:global align:4
+ball_model_tbl = .data:0x000126F8; // type:object size:0xC scope:global align:4
+Ball_Profile = .data:0x00012704; // type:object size:0x24 scope:global align:4
+aBALL_CoInfoData = .data:0x00012728; // type:object size:0x10 scope:global align:4
+aBALL_StatusData = .data:0x00012738; // type:object size:0xA scope:global align:4
+angl_add_table$756 = .data:0x00012744; // type:object size:0x4 scope:local align:4
+@779 = .data:0x00012748; // type:object size:0xA scope:local align:4 data:string
+data$448 = .data:0x00012758; // type:object size:0x20 scope:local align:4
+data$516 = .data:0x00012778; // type:object size:0x8 scope:local align:4
+data$522 = .data:0x00012780; // type:object size:0x8 scope:local align:4
+Balloon_Profile = .data:0x00012788; // type:object size:0x24 scope:global align:4
+Birth_Control_Profile = .data:0x000127B0; // type:object size:0x24 scope:global align:4
+aBC_pos_table = .data:0x000127D4; // type:object size:0x40 scope:global align:4
+chk_bx$488 = .data:0x00012814; // type:object size:0x8 scope:local align:4
+chk_bz$489 = .data:0x0001281C; // type:object size:0x8 scope:local align:4
+Boat_Demo_Profile = .data:0x00012828; // type:object size:0x24 scope:global align:4
+aBTD_island_prg = .data:0x0001284C; // type:object size:0x15244 scope:global align:4
+aBTD_island_ldr = .data:0x00027A90; // type:object size:0xC83C scope:global align:4
+player_pattern_table$665 = .data:0x000342CC; // type:object size:0x10 scope:local align:4
+sing_1st_part_bgm_no$666 = .data:0x000342DC; // type:object size:0x14 scope:local align:4 data:string
+sing_1st_part_msg_base_no$667 = .data:0x000342F0; // type:object size:0x10 scope:local align:4
+sing_dialogue_msg_base_no$691 = .data:0x00034300; // type:object size:0x10 scope:local align:4
+sing_2nd_part_bgm_no$696 = .data:0x00034310; // type:object size:0xA scope:local align:4 data:string
+sing_2nd_part_msg_base_no$697 = .data:0x0003431C; // type:object size:0x10 scope:local align:4
+init_proc$720 = .data:0x0003432C; // type:object size:0x38 scope:local align:4
+process$725 = .data:0x00034364; // type:object size:0x38 scope:local align:4
+BoxManager_Profile = .data:0x000343A0; // type:object size:0x24 scope:global align:4
+BoxMove_Profile = .data:0x000343C8; // type:object size:0x24 scope:global align:4
+BoxTrick01_Profile = .data:0x000343F0; // type:object size:0x24 scope:global align:4
+Broker_Design_Profile = .data:0x00034418; // type:object size:0x24 scope:global align:4
+set_data$425 = .data:0x0003443C; // type:object size:0x18 scope:local align:4 data:4byte
+...data.0 = .data:0x00034458; // type:label scope:local
+Cottage_My_Profile = .data:0x00034458; // type:object size:0x24 scope:global align:4 data:float
+Cottage_Npc_Profile = .data:0x0003447C; // type:object size:0x24 scope:global align:4
+Shadow_vtx_fix_flg_cottage_my = .data:0x000344A0; // type:object size:0x16 scope:global align:4
+bIT_DR_SHADOW_c_cottage_my = .data:0x000344B8; // type:object size:0x14 scope:global align:4
+Shadow_vtx_fix_flg_cottage_npc = .data:0x000344CC; // type:object size:0x1C scope:global align:4
+bIT_DR_SHADOW_c_cottage_npc = .data:0x000344E8; // type:object size:0x14 scope:global align:4
+Door_data_cottage_my = .data:0x000344FC; // type:object size:0x14 scope:global align:4
+Door_data_cottage_npc = .data:0x00034510; // type:object size:0x14 scope:global align:4
+@585 = .data:0x00034524; // type:object size:0xD scope:local align:4 data:string
+height_table_ct$592 = .data:0x00034534; // type:object size:0x3F scope:local align:4
+height_table$593 = .data:0x00034574; // type:object size:0x8 scope:local align:4
+addX$594 = .data:0x0003457C; // type:object size:0xC scope:local align:4
+addZ$595 = .data:0x00034588; // type:object size:0xC scope:local align:4
+window_color$675 = .data:0x00034594; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00034598; // type:label scope:local
+cherry_tree_model_tbl = .data:0x00034598; // type:object size:0x3C scope:global align:4
+cherry_tree_anime_tbl = .data:0x000345D4; // type:object size:0x3C scope:global align:4
+summer_tree_model_tbl = .data:0x00034610; // type:object size:0x3C scope:global align:4
+summer_tree_anime_tbl = .data:0x0003464C; // type:object size:0x3C scope:global align:4
+winter_tree_model_tbl = .data:0x00034688; // type:object size:0x3C scope:global align:4
+winter_tree_anime_tbl = .data:0x000346C4; // type:object size:0x3C scope:global align:4
+summer_palm_model_tbl = .data:0x00034700; // type:object size:0x3C scope:global align:4
+summer_palm_anime_tbl = .data:0x0003473C; // type:object size:0x3C scope:global align:4
+winter_palm_model_tbl = .data:0x00034778; // type:object size:0x3C scope:global align:4
+winter_palm_anime_tbl = .data:0x000347B4; // type:object size:0x3C scope:global align:4
+summer_cedar_model_tbl = .data:0x000347F0; // type:object size:0x3C scope:global align:4
+summer_cedar_anime_tbl = .data:0x0003482C; // type:object size:0x3C scope:global align:4
+winter_cedar_model_tbl = .data:0x00034868; // type:object size:0x3C scope:global align:4
+winter_cedar_anime_tbl = .data:0x000348A4; // type:object size:0x3C scope:global align:4
+Effectbg_Profile = .data:0x000348E0; // type:object size:0x24 scope:global align:4
+broker_handbill_no$503 = .data:0x00034908; // type:object size:0xC scope:local align:4
+@721 = .data:0x00034914; // type:object size:0x20 scope:local align:4
+neighbor_adjust = .data:0x00034934; // type:object size:0x80 scope:global align:4 data:4byte
+delta$1571 = .data:0x000349B4; // type:object size:0x1C0 scope:local align:4
+delta$1588 = .data:0x00034B74; // type:object size:0x60 scope:local align:4 data:4byte
+b$1917 = .data:0x00034BD4; // type:object size:0x8 scope:local align:4
+u$1918 = .data:0x00034BDC; // type:object size:0x8 scope:local align:4
+schedule_event = .data:0x00034BE4; // type:object size:0x8C0 scope:global align:4 data:4byte
+n_schedule_event = .data:0x000354A4; // type:object size:0x4 scope:global align:4 data:4byte
+Event_Manager_Profile = .data:0x000354A8; // type:object size:0x24 scope:global align:4
+Field_Draw_Profile = .data:0x000354E0; // type:object size:0x24 scope:global align:4
+aFD_block_offset_table = .data:0x00035504; // type:object size:0x24 scope:global align:4 data:2byte
+ongen_block_count_table$434 = .data:0x00035528; // type:object size:0xC scope:local align:4
+draw_block_offset_table$521 = .data:0x00035534; // type:object size:0x24 scope:local align:4 data:2byte
+aFD_culling_vtx = .data:0x00035560; // type:object size:0x80 scope:global align:32
+aFD_cull_set_gfx = .data:0x000355E0; // type:object size:0x28 scope:global align:32
+aFD_cull_set_model = .data:0x00035620; // type:object size:0x18 scope:global align:32
+aFD_texture_scroll2_data = .data:0x00035638; // type:object size:0x8 scope:global align:4
+aFD_evw_data = .data:0x00035640; // type:object size:0x8 scope:global align:4
+ball$699 = .data:0x00035648; // type:object size:0xC scope:local align:4
+draw_proc$712 = .data:0x00035654; // type:object size:0x10 scope:local align:4
+Fieldm_Draw_Profile = .data:0x00035668; // type:object size:0x24 scope:global align:4
+Flag_Profile = .data:0x00035690; // type:object size:0x24 scope:global align:4
+aFLAG_shadow_vtx_fix_flg_table = .data:0x000356B4; // type:object size:0x8 scope:global align:4
+aFLAG_shadow_data = .data:0x000356BC; // type:object size:0x14 scope:global align:4
+skl$449 = .data:0x000356D0; // type:object size:0x8 scope:local align:4
+ani$450 = .data:0x000356D8; // type:object size:0x8 scope:local align:4
+process$615 = .data:0x000356E0; // type:object size:0x1C scope:local align:4
+Garagara_Profile = .data:0x00035700; // type:object size:0x24 scope:global align:4
+aGaragara_init_proc_table = .data:0x00035724; // type:object size:0x8 scope:global align:4
+aGaragara_move_proc_table = .data:0x0003572C; // type:object size:0x8 scope:global align:4
+ball_move_table$493 = .data:0x00035734; // type:object size:0x10 scope:local align:4
+aGRBL_texture_table = .data:0x00035744; // type:object size:0x10 scope:global align:4
+...data.0 = .data:0x00035758; // type:label scope:local
+Gyo_Kage_Profile = .data:0x00035758; // type:object size:0x24 scope:global align:4
+aGYO_texture_table = .data:0x0003577C; // type:object size:0x10 scope:local align:4
+aGYO_2tile_texture_idx = .data:0x0003578C; // type:object size:0x28 scope:local align:4
+aGYO_prim_f = .data:0x000357B4; // type:object size:0x14 scope:local align:4
+aGYO_KAGE_shadow_scale = .data:0x000357C8; // type:object size:0x20 scope:global align:4
+@444 = .data:0x000357E8; // type:object size:0xE scope:local align:4 data:string
+...data.0 = .data:0x000357F8; // type:label scope:local
+Gyo_Release_Profile = .data:0x000357F8; // type:object size:0x24 scope:global align:4
+gyoei_type = .data:0x0003581C; // type:object size:0x168 scope:local align:4
+aGYO_funa_dl = .data:0x00035984; // type:object size:0xC scope:local align:4
+aGYO_hera_dl = .data:0x00035990; // type:object size:0xC scope:local align:4
+aGYO_koi_dl = .data:0x0003599C; // type:object size:0xC scope:local align:4
+aGYO_nisiki_dl = .data:0x000359A8; // type:object size:0xC scope:local align:4
+aGYO_namazu_dl = .data:0x000359B4; // type:object size:0xC scope:local align:4
+aGYO_bass_s_dl = .data:0x000359C0; // type:object size:0xC scope:local align:4
+aGYO_bass_m_dl = .data:0x000359CC; // type:object size:0xC scope:local align:4
+aGYO_bass_l_dl = .data:0x000359D8; // type:object size:0xC scope:local align:4
+aGYO_blue_gill_dl = .data:0x000359E4; // type:object size:0xC scope:local align:4
+aGYO_oonamazu_dl = .data:0x000359F0; // type:object size:0xC scope:local align:4
+aGYO_raigyo_dl = .data:0x000359FC; // type:object size:0xC scope:local align:4
+aGYO_nigoi_dl = .data:0x00035A08; // type:object size:0xC scope:local align:4
+aGYO_ugui_dl = .data:0x00035A14; // type:object size:0xC scope:local align:4
+aGYO_oikawa_dl = .data:0x00035A20; // type:object size:0xC scope:local align:4
+aGYO_tanago_dl = .data:0x00035A2C; // type:object size:0xC scope:local align:4
+aGYO_dojyo_dl = .data:0x00035A38; // type:object size:0xC scope:local align:4
+aGYO_wakasagi_dl = .data:0x00035A44; // type:object size:0xC scope:local align:4
+aGYO_ayu_dl = .data:0x00035A50; // type:object size:0xC scope:local align:4
+aGYO_yamame_dl = .data:0x00035A5C; // type:object size:0xC scope:local align:4
+aGYO_iwana_dl = .data:0x00035A68; // type:object size:0xC scope:local align:4
+aGYO_niji_dl = .data:0x00035A74; // type:object size:0xC scope:local align:4
+aGYO_ito_dl = .data:0x00035A80; // type:object size:0xC scope:local align:4
+aGYO_sake_dl = .data:0x00035A8C; // type:object size:0xC scope:local align:4
+aGYO_kingyo_dl = .data:0x00035A98; // type:object size:0xC scope:local align:4
+aGYO_pirania_dl = .data:0x00035AA4; // type:object size:0xC scope:local align:4
+aGYO_aroana_dl = .data:0x00035AB0; // type:object size:0xC scope:local align:4
+aGYO_unagi_dl = .data:0x00035ABC; // type:object size:0xC scope:local align:4
+aGYO_donko_dl = .data:0x00035AC8; // type:object size:0xC scope:local align:4
+aGYO_angel_dl = .data:0x00035AD4; // type:object size:0xC scope:local align:4
+aGYO_gupi_dl = .data:0x00035AE0; // type:object size:0xC scope:local align:4
+aGYO_demekin_dl = .data:0x00035AEC; // type:object size:0xC scope:local align:4
+aGYO_kaseki_dl = .data:0x00035AF8; // type:object size:0xC scope:local align:4
+aGYO_zarigani_dl = .data:0x00035B04; // type:object size:0xC scope:local align:4
+aGYO_kaeru_dl = .data:0x00035B10; // type:object size:0xC scope:local align:4
+aGYO_medaka_dl = .data:0x00035B1C; // type:object size:0xC scope:local align:4
+aGYO_kurage_dl = .data:0x00035B28; // type:object size:0xC scope:local align:4
+aGYO_suzuki_dl = .data:0x00035B34; // type:object size:0xC scope:local align:4
+aGYO_tai_dl = .data:0x00035B40; // type:object size:0xC scope:local align:4
+aGYO_ishidai_dl = .data:0x00035B4C; // type:object size:0xC scope:local align:4
+aGYO_piraluku_dl = .data:0x00035B58; // type:object size:0xC scope:local align:4
+aGYO_akikan_dl = .data:0x00035B64; // type:object size:0xC scope:local align:4
+aGYO_nagagutu_dl = .data:0x00035B70; // type:object size:0xC scope:local align:4
+aGYO_taiya_dl = .data:0x00035B7C; // type:object size:0xC scope:local align:4
+aGYO_displayList = .data:0x00035B88; // type:object size:0xB4 scope:local align:4
+aGYO_shadow_scale = .data:0x00035C3C; // type:object size:0x20 scope:local align:4
+@460 = .data:0x00035C5C; // type:object size:0x11 scope:local align:4 data:string
+aGYR_frame_ptn1$478 = .data:0x00035C70; // type:object size:0x20 scope:local align:4
+aGYR_frame_ptn2$479 = .data:0x00035C90; // type:object size:0x40 scope:local align:4
+aGYR_anime_ptn$480 = .data:0x00035CD0; // type:object size:0xB4 scope:local align:4
+hoseix$538 = .data:0x00035D84; // type:object size:0x18 scope:local align:4
+hoseiz$539 = .data:0x00035D9C; // type:object size:0x18 scope:local align:4
+offset0$651 = .data:0x00035DB4; // type:object size:0xC scope:local align:4 data:4byte
+...data.0 = .data:0x00035DC0; // type:label scope:local
+HandOverItem_Profile = .data:0x00035DC0; // type:object size:0x24 scope:global align:4
+aGYO_funa_dl = .data:0x00035DE4; // type:object size:0xC scope:local align:4
+aGYO_hera_dl = .data:0x00035DF0; // type:object size:0xC scope:local align:4
+aGYO_koi_dl = .data:0x00035DFC; // type:object size:0xC scope:local align:4
+aGYO_nisiki_dl = .data:0x00035E08; // type:object size:0xC scope:local align:4
+aGYO_namazu_dl = .data:0x00035E14; // type:object size:0xC scope:local align:4
+aGYO_bass_s_dl = .data:0x00035E20; // type:object size:0xC scope:local align:4
+aGYO_bass_m_dl = .data:0x00035E2C; // type:object size:0xC scope:local align:4
+aGYO_bass_l_dl = .data:0x00035E38; // type:object size:0xC scope:local align:4
+aGYO_blue_gill_dl = .data:0x00035E44; // type:object size:0xC scope:local align:4
+aGYO_oonamazu_dl = .data:0x00035E50; // type:object size:0xC scope:local align:4
+aGYO_raigyo_dl = .data:0x00035E5C; // type:object size:0xC scope:local align:4
+aGYO_nigoi_dl = .data:0x00035E68; // type:object size:0xC scope:local align:4
+aGYO_ugui_dl = .data:0x00035E74; // type:object size:0xC scope:local align:4
+aGYO_oikawa_dl = .data:0x00035E80; // type:object size:0xC scope:local align:4
+aGYO_tanago_dl = .data:0x00035E8C; // type:object size:0xC scope:local align:4
+aGYO_dojyo_dl = .data:0x00035E98; // type:object size:0xC scope:local align:4
+aGYO_wakasagi_dl = .data:0x00035EA4; // type:object size:0xC scope:local align:4
+aGYO_ayu_dl = .data:0x00035EB0; // type:object size:0xC scope:local align:4
+aGYO_yamame_dl = .data:0x00035EBC; // type:object size:0xC scope:local align:4
+aGYO_iwana_dl = .data:0x00035EC8; // type:object size:0xC scope:local align:4
+aGYO_niji_dl = .data:0x00035ED4; // type:object size:0xC scope:local align:4
+aGYO_ito_dl = .data:0x00035EE0; // type:object size:0xC scope:local align:4
+aGYO_sake_dl = .data:0x00035EEC; // type:object size:0xC scope:local align:4
+aGYO_kingyo_dl = .data:0x00035EF8; // type:object size:0xC scope:local align:4
+aGYO_pirania_dl = .data:0x00035F04; // type:object size:0xC scope:local align:4
+aGYO_aroana_dl = .data:0x00035F10; // type:object size:0xC scope:local align:4
+aGYO_unagi_dl = .data:0x00035F1C; // type:object size:0xC scope:local align:4
+aGYO_donko_dl = .data:0x00035F28; // type:object size:0xC scope:local align:4
+aGYO_angel_dl = .data:0x00035F34; // type:object size:0xC scope:local align:4
+aGYO_gupi_dl = .data:0x00035F40; // type:object size:0xC scope:local align:4
+aGYO_demekin_dl = .data:0x00035F4C; // type:object size:0xC scope:local align:4
+aGYO_kaseki_dl = .data:0x00035F58; // type:object size:0xC scope:local align:4
+aGYO_zarigani_dl = .data:0x00035F64; // type:object size:0xC scope:local align:4
+aGYO_kaeru_dl = .data:0x00035F70; // type:object size:0xC scope:local align:4
+aGYO_medaka_dl = .data:0x00035F7C; // type:object size:0xC scope:local align:4
+aGYO_kurage_dl = .data:0x00035F88; // type:object size:0xC scope:local align:4
+aGYO_suzuki_dl = .data:0x00035F94; // type:object size:0xC scope:local align:4
+aGYO_tai_dl = .data:0x00035FA0; // type:object size:0xC scope:local align:4
+aGYO_ishidai_dl = .data:0x00035FAC; // type:object size:0xC scope:local align:4
+aGYO_piraluku_dl = .data:0x00035FB8; // type:object size:0xC scope:local align:4
+aGYO_akikan_dl = .data:0x00035FC4; // type:object size:0xC scope:local align:4
+aGYO_nagagutu_dl = .data:0x00035FD0; // type:object size:0xC scope:local align:4
+aGYO_taiya_dl = .data:0x00035FDC; // type:object size:0xC scope:local align:4
+aGYO_displayList = .data:0x00035FE8; // type:object size:0xB4 scope:local align:4
+mode_DL_table = .data:0x0003609C; // type:object size:0xD4 scope:local align:4
+vtx_DL_table = .data:0x00036170; // type:object size:0xD4 scope:local align:4
+no_request_data$520 = .data:0x00036244; // type:object size:0x20 scope:local align:4
+transfer_data$521 = .data:0x00036264; // type:object size:0x40 scope:local align:4
+transfer_f_data$522 = .data:0x000362A4; // type:object size:0x40 scope:local align:4
+trans_wait_data$523 = .data:0x000362E4; // type:object size:0x20 scope:local align:4
+trans_wait_f_data$524 = .data:0x00036304; // type:object size:0x20 scope:local align:4
+eat_data$525 = .data:0x00036324; // type:object size:0x40 scope:local align:4
+change_data$526 = .data:0x00036364; // type:object size:0x30 scope:local align:4
+putaway_data$527 = .data:0x00036394; // type:object size:0x30 scope:local align:4
+putaway_f_data$528 = .data:0x000363C4; // type:object size:0x30 scope:local align:4
+send_mail_data$529 = .data:0x000363F4; // type:object size:0x30 scope:local align:4
+send_mail_wait_data$530 = .data:0x00036424; // type:object size:0x20 scope:local align:4
+contract1_data$531 = .data:0x00036444; // type:object size:0x20 scope:local align:4
+contract2_data$532 = .data:0x00036464; // type:object size:0x20 scope:local align:4
+contract3_data$533 = .data:0x00036484; // type:object size:0x30 scope:local align:4
+not_contract_data$534 = .data:0x000364B4; // type:object size:0x30 scope:local align:4
+not_contract_wait_data$535 = .data:0x000364E4; // type:object size:0x20 scope:local align:4
+trans_data_table$536 = .data:0x00036504; // type:object size:0x60 scope:local align:4
+trans_data_table_f$537 = .data:0x00036564; // type:object size:0x60 scope:local align:4
+trans_data_table_m$538 = .data:0x000365C4; // type:object size:0x60 scope:local align:4
+table$539 = .data:0x00036624; // type:object size:0xC scope:local align:4
+no_request_data$559 = .data:0x00036630; // type:object size:0x10 scope:local align:4
+transfer_data$560 = .data:0x00036640; // type:object size:0x18 scope:local align:4
+trans_wait_data$561 = .data:0x00036658; // type:object size:0x10 scope:local align:4
+eat_data$562 = .data:0x00036668; // type:object size:0x10 scope:local align:4
+change_data$563 = .data:0x00036678; // type:object size:0x10 scope:local align:4
+putaway_data$564 = .data:0x00036688; // type:object size:0x10 scope:local align:4
+send_mail_data$565 = .data:0x00036698; // type:object size:0x10 scope:local align:4
+contract3_data$566 = .data:0x000366A8; // type:object size:0x18 scope:local align:4
+scale_data_table$567 = .data:0x000366C0; // type:object size:0x60 scope:local align:4
+scale_data_table_m$568 = .data:0x00036720; // type:object size:0x60 scope:local align:4
+table$569 = .data:0x00036780; // type:object size:0xC scope:local align:4
+max_anm_cnt$585 = .data:0x0003678C; // type:object size:0x30 scope:local align:4
+max_anm_cnt_m$586 = .data:0x000367BC; // type:object size:0x30 scope:local align:4
+table$587 = .data:0x000367EC; // type:object size:0xC scope:local align:4
+dummy$663 = .data:0x000367F8; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00036808; // type:label scope:local
+Haniwa_Profile = .data:0x00036808; // type:object size:0x24 scope:global align:4
+AcHaniwaCoInfoData = .data:0x0003682C; // type:object size:0x10 scope:global align:4
+AcHaniwaStatusData = .data:0x0003683C; // type:object size:0xA scope:global align:4
+msg_no$568 = .data:0x00036848; // type:object size:0x14 scope:local align:4
+next_act_idx$576 = .data:0x0003685C; // type:object size:0x14 scope:local align:4
+msg_no$591 = .data:0x00036870; // type:object size:0x8 scope:local align:4
+next_act_idx$592 = .data:0x00036878; // type:object size:0x8 scope:local align:4
+chk_posX$728 = .data:0x00036880; // type:object size:0x10 scope:local align:4
+chk_val$729 = .data:0x00036890; // type:object size:0x10 scope:local align:4
+goal_pos$730 = .data:0x000368A0; // type:object size:0x60 scope:local align:4
+init_proc$791 = .data:0x00036900; // type:object size:0x44 scope:local align:4
+process$796 = .data:0x00036944; // type:object size:0x44 scope:local align:4
+hnw_tex_model$864 = .data:0x00036988; // type:object size:0x10 scope:local align:8
+...data.0 = .data:0x00036998; // type:label scope:local
+Hatumode_Control_Profile = .data:0x00036998; // type:object size:0x24 scope:global align:4
+process$561 = .data:0x000369BC; // type:object size:0x24 scope:local align:4
+proc$603 = .data:0x000369E0; // type:object size:0xC scope:local align:4
+dt_tbl0$608 = .data:0x000369EC; // type:object size:0x2 scope:local align:4
+dt_tbl1$609 = .data:0x000369F0; // type:object size:0x8 scope:local align:4
+table_x$622 = .data:0x000369F8; // type:object size:0xA scope:local align:4
+table_z$623 = .data:0x00036A04; // type:object size:0xA scope:local align:4
+table_root$624 = .data:0x00036A10; // type:object size:0x5 scope:local align:4
+aHN0_posX$632 = .data:0x00036A18; // type:object size:0x12 scope:local align:4
+aHN0_posZ$633 = .data:0x00036A2C; // type:object size:0x12 scope:local align:4
+aHN0_root$634 = .data:0x00036A40; // type:object size:0xA scope:local align:4
+aHN0_posX$645 = .data:0x00036A4C; // type:object size:0x8 scope:local align:4
+aHN0_posZ$646 = .data:0x00036A54; // type:object size:0x8 scope:local align:4
+dt_tbl = .data:0x00036A5C; // type:object size:0xE6 scope:local align:4
+init_table = .data:0x00036B44; // type:object size:0x34 scope:local align:4
+aHC_draw_data = .data:0x00036B78; // type:object size:0xD8 scope:global align:4
+aHC_position_data = .data:0x00036C50; // type:object size:0x90 scope:global align:4
+House_Clock_Profile = .data:0x00036CE0; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x00036D08; // type:label scope:local
+Intro_Demo_Profile = .data:0x00036D08; // type:object size:0x24 scope:global align:4
+rcn_name$542 = .data:0x00036D2C; // type:object size:0x8 scope:local align:4
+restart_ux$543 = .data:0x00036D34; // type:object size:0x10 scope:local align:4
+restart_uz$544 = .data:0x00036D44; // type:object size:0x10 scope:local align:4
+restartOffsetX$545 = .data:0x00036D54; // type:object size:0x10 scope:local align:4
+rate_table$567 = .data:0x00036D64; // type:object size:0x8 scope:local align:4
+enter_pos$609 = .data:0x00036D6C; // type:object size:0xC scope:local align:4 data:4byte
+init_proc$650 = .data:0x00036D78; // type:object size:0x34 scope:local align:4
+process$655 = .data:0x00036DAC; // type:object size:0x34 scope:local align:4
+...data.0 = .data:0x00036DE0; // type:label scope:local
+Kamakura_Indoor_Profile = .data:0x00036DE0; // type:object size:0x24 scope:global align:4
+aKI_mochi_collision_info = .data:0x00036E04; // type:object size:0x10 scope:global align:4
+mochi_pos$425 = .data:0x00036E14; // type:object size:0xC scope:local align:4 data:4byte
+candle_ring_pos$436 = .data:0x00036E20; // type:object size:0x18 scope:local align:4 data:float
+rom_kamakura_evw_anime_4_tex_table = .data:0x00036E38; // type:object size:0x8 scope:global align:4
+aKI_candle_ring_anime_data = .data:0x00036E40; // type:object size:0x440 scope:global align:4
+aKI_mochi_anime_data = .data:0x00037280; // type:object size:0x1B8 scope:global align:4
+aKI_candle_fire_rgba_data = .data:0x00037438; // type:object size:0x60 scope:global align:4
+aKI_candle_fire_anime_data = .data:0x00037498; // type:object size:0x60 scope:global align:4
+candle_ring_late_frame$564 = .data:0x000374F8; // type:object size:0x8 scope:local align:4
+candle_fire_late_frame$565 = .data:0x00037500; // type:object size:0x8 scope:local align:4
+Lighthouse_Switch_Profile = .data:0x00037508; // type:object size:0x24 scope:global align:4
+pos$490 = .data:0x0003752C; // type:object size:0xC scope:local align:4 data:4byte
+pos$497 = .data:0x00037538; // type:object size:0xC scope:local align:4 data:4byte
+nice_pos$741 = .data:0x00037544; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00037550; // type:label scope:local
+MailBox_Profile = .data:0x00037550; // type:object size:0x24 scope:global align:4
+aMBX_animeTable = .data:0x00037574; // type:object size:0x54 scope:global align:4
+aMBX_animeSeqNoTable = .data:0x000375C8; // type:object size:0x14 scope:global align:4
+aMBX_skeleton = .data:0x000375DC; // type:object size:0x8 scope:global align:4
+angle_table$429 = .data:0x000375E4; // type:object size:0x8 scope:local align:4
+part_tbl$438 = .data:0x000375EC; // type:object size:0x7 scope:local align:4
+angle$518 = .data:0x000375F4; // type:object size:0x4 scope:local align:4
+posX$519 = .data:0x000375F8; // type:object size:0x8 scope:local align:4
+process$563 = .data:0x00037600; // type:object size:0x14 scope:local align:4
+post_flag_saki_common_DL = .data:0x00037618; // type:object size:0x28 scope:global align:8
+post_flag_saki_model_type0 = .data:0x00037640; // type:object size:0x30 scope:global align:8
+post_flag_saki_model_type1 = .data:0x00037670; // type:object size:0x28 scope:global align:8
+post_flag_saki_model$581 = .data:0x00037698; // type:object size:0x8 scope:local align:4
+tex_table$614 = .data:0x000376A0; // type:object size:0x8 scope:local align:4
+evw_table$615 = .data:0x000376A8; // type:object size:0x8 scope:local align:4
+mbg_v = .data:0x000376B0; // type:object size:0x80 scope:global align:8
+mbg_model = .data:0x00037730; // type:object size:0x60 scope:global align:8
+Mbg_Profile = .data:0x00037790; // type:object size:0x24 scope:global align:4
+Misin_Profile = .data:0x000377B8; // type:object size:0x24 scope:global align:4
+aMSN_dustcloth_target_table = .data:0x000377DC; // type:object size:0x30 scope:global align:4
+target_angle_table$588 = .data:0x0003780C; // type:object size:0x8 scope:local align:4
+zero_offset$623 = .data:0x00037814; // type:object size:0xC scope:local align:4 data:4byte
+Mural_Profile = .data:0x00037820; // type:object size:0x24 scope:global align:4
+Museum_Fossil_Profile = .data:0x00037848; // type:object size:0x24 scope:global align:4
+aMF_fossil_data_table = .data:0x0003786C; // type:object size:0xC8 scope:global align:4 data:4byte
+aMF_window_color$456 = .data:0x00037934; // type:object size:0x4 scope:local align:4
+Museum_Picture_Profile = .data:0x00037938; // type:object size:0x24 scope:global align:4
+aMP_art_data_table = .data:0x0003795C; // type:object size:0xB4 scope:global align:4
+direct_table$497 = .data:0x00037A10; // type:object size:0x40 scope:local align:4
+aMP_window_color$529 = .data:0x00037A50; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00037A58; // type:label scope:local
+Museum_Fish_Profile = .data:0x00037A58; // type:object size:0x24 scope:global align:4
+suisou_pos = .data:0x00037A7C; // type:object size:0x3C scope:local align:4
+kusa_group_tbl = .data:0x00037AB8; // type:object size:0x38 scope:global align:4
+kusa_pos = .data:0x00037AF0; // type:object size:0xA8 scope:global align:4 data:float
+hasu_pos = .data:0x00037B98; // type:object size:0xC scope:global align:4 data:float
+suisou_awa_pos = .data:0x00037BA4; // type:object size:0xF0 scope:global align:4
+suisou_awa_group = .data:0x00037C94; // type:object size:0x28 scope:global align:4
+mfish_model_tbl = .data:0x00037CBC; // type:object size:0xA0 scope:global align:4
+mfish_anime_init_tbl = .data:0x00037D5C; // type:object size:0xA0 scope:global align:4
+mfish_init_data = .data:0x00037DFC; // type:object size:0x820 scope:global align:4
+mfish_group_tbl = .data:0x0003861C; // type:object size:0x50 scope:global align:4
+mfish_ct = .data:0x0003866C; // type:object size:0xA0 scope:global align:4
+mfish_mv = .data:0x0003870C; // type:object size:0xA0 scope:global align:4
+mfish_dw = .data:0x000387AC; // type:object size:0xA0 scope:global align:4 data:4byte
+unagi_rail_pos = .data:0x0003884C; // type:object size:0x12C scope:global align:4
+unagi_rail_pos2 = .data:0x00038978; // type:object size:0xF0 scope:global align:4
+unagi_rail_pos3 = .data:0x00038A68; // type:object size:0x12C scope:global align:4
+unagi_normal_to_reverse_rail_pos = .data:0x00038B94; // type:object size:0x90 scope:global align:4
+unagi_reverse_to_normal_rail_pos = .data:0x00038C24; // type:object size:0xE4 scope:global align:4
+unagi_rail_tbl = .data:0x00038D08; // type:object size:0xC scope:global align:4
+unagi_rail_num_tbl = .data:0x00038D14; // type:object size:0xC scope:global align:4
+kusa_group_tbl$9363 = .data:0x00038D20; // type:object size:0x38 scope:local align:4
+kusa_model = .data:0x00038D58; // type:object size:0x38 scope:global align:4
+kusa_anime = .data:0x00038D90; // type:object size:0x38 scope:global align:4
+kusa_start_frame = .data:0x00038DC8; // type:object size:0x38 scope:global align:4
+kanban_pos$9998 = .data:0x00038E00; // type:object size:0x3C scope:local align:4
+group_max_num$10018 = .data:0x00038E3C; // type:object size:0x14 scope:local align:4
+group_A_fish_name$10019 = .data:0x00038E50; // type:object size:0x28 scope:local align:4
+group_B_fish_name$10020 = .data:0x00038E78; // type:object size:0x24 scope:local align:4
+group_C_fish_name$10021 = .data:0x00038E9C; // type:object size:0x24 scope:local align:4
+group_D_fish_name$10022 = .data:0x00038EC0; // type:object size:0x18 scope:local align:4
+group_E_fish_name$10023 = .data:0x00038ED8; // type:object size:0x18 scope:local align:4
+group_fish_name$10024 = .data:0x00038EF0; // type:object size:0x14 scope:local align:4
+window_color$10039 = .data:0x00038F04; // type:object size:0x4 scope:local align:4
+Museum_Indoor_Profile = .data:0x00038F08; // type:object size:0x24 scope:global align:4
+aMI_museum_indoor_cull_info = .data:0x00038F2C; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00038F48; // type:label scope:local
+Museum_Insect_Profile = .data:0x00038F48; // type:object size:0x24 scope:global align:4
+window_color = .data:0x00038F6C; // type:object size:0x4 scope:global align:4
+m_monshiro_disp_tbl = .data:0x00038F70; // type:object size:0xC scope:global align:4
+m_monki_disp_tbl = .data:0x00038F7C; // type:object size:0xC scope:global align:4
+m_ageha_disp_tbl = .data:0x00038F88; // type:object size:0xC scope:global align:4
+m_ohmurasaki_disp_tbl = .data:0x00038F94; // type:object size:0xC scope:global align:4
+m_minmin_disp_tbl = .data:0x00038FA0; // type:object size:0xC scope:global align:4
+m_tukutuku_disp_tbl = .data:0x00038FAC; // type:object size:0xC scope:global align:4
+m_higurashi_disp_tbl = .data:0x00038FB8; // type:object size:0xC scope:global align:4
+m_abura_disp_tbl = .data:0x00038FC4; // type:object size:0xC scope:global align:4
+m_shiokara_disp_tbl = .data:0x00038FD0; // type:object size:0x10 scope:global align:4
+m_akiakane_disp_tbl = .data:0x00038FE0; // type:object size:0x10 scope:global align:4
+m_ginyanma_disp_tbl = .data:0x00038FF0; // type:object size:0x10 scope:global align:4
+m_oniyanma_disp_tbl = .data:0x00039000; // type:object size:0x10 scope:global align:4
+m_syouryou_disp_tbl = .data:0x00039010; // type:object size:0xC scope:global align:4
+m_tonosama_disp_tbl = .data:0x0003901C; // type:object size:0xC scope:global align:4
+m_koorogi_disp_tbl = .data:0x00039028; // type:object size:0xC scope:global align:4
+m_kirigirisu_disp_tbl = .data:0x00039034; // type:object size:0xC scope:global align:4
+m_suzumushi_disp_tbl = .data:0x00039040; // type:object size:0xC scope:global align:4
+m_matumushi_disp_tbl = .data:0x0003904C; // type:object size:0xC scope:global align:4
+m_tentou_disp_tbl = .data:0x00039058; // type:object size:0xC scope:global align:4
+m_nanahoshi_disp_tbl = .data:0x00039064; // type:object size:0xC scope:global align:4
+m_kamakiri_disp_tbl = .data:0x00039070; // type:object size:0xC scope:global align:4
+m_maimai_disp_tbl = .data:0x0003907C; // type:object size:0x8 scope:global align:4
+m_hachi_disp_tbl = .data:0x00039084; // type:object size:0x10 scope:global align:4
+m_kanabun_disp_tbl = .data:0x00039094; // type:object size:0x8 scope:global align:4
+m_kabuto_disp_tbl = .data:0x0003909C; // type:object size:0x8 scope:global align:4
+m_hirata_disp_tbl = .data:0x000390A4; // type:object size:0x8 scope:global align:4
+m_tamamushi_disp_tbl = .data:0x000390AC; // type:object size:0x8 scope:global align:4
+m_gomadara_disp_tbl = .data:0x000390B4; // type:object size:0x8 scope:global align:4
+m_nokogiri_disp_tbl = .data:0x000390BC; // type:object size:0x8 scope:global align:4
+m_miyama_disp_tbl = .data:0x000390C4; // type:object size:0x8 scope:global align:4
+m_okuwa_disp_tbl = .data:0x000390CC; // type:object size:0x8 scope:global align:4
+m_amenbo_disp_tbl = .data:0x000390D4; // type:object size:0xC scope:global align:4
+m_mino_disp_tbl = .data:0x000390E0; // type:object size:0x10 scope:global align:4
+m_kumo_disp_tbl = .data:0x000390F0; // type:object size:0x10 scope:global align:4
+m_goki_disp_tbl = .data:0x00039100; // type:object size:0xC scope:global align:4
+m_genji_disp_tbl = .data:0x0003910C; // type:object size:0x14 scope:global align:4
+m_dango_disp_tbl = .data:0x00039120; // type:object size:0xC scope:global align:4
+m_ari_disp_tbl = .data:0x0003912C; // type:object size:0x8 scope:global align:4
+m_okera_disp_tbl = .data:0x00039134; // type:object size:0x8 scope:global align:4
+m_ka_disp_tbl = .data:0x0003913C; // type:object size:0x10 scope:global align:4
+minsect_mdl = .data:0x0003914C; // type:object size:0xA0 scope:global align:4
+minsect_ct = .data:0x000391EC; // type:object size:0xA0 scope:global align:4
+minsect_mv = .data:0x0003928C; // type:object size:0xA0 scope:global align:4
+minsect_dw = .data:0x0003932C; // type:object size:0xA0 scope:global align:4
+minsect_shadow_scale_tbl = .data:0x000393CC; // type:object size:0xA0 scope:global align:4
+active_time_tbl = .data:0x0003946C; // type:object size:0xA0 scope:global align:4
+relax_time_tbl = .data:0x0003950C; // type:object size:0xA0 scope:global align:4
+flower_pos = .data:0x000395AC; // type:object size:0x60 scope:global align:4
+ohmurasaki_tree_pos = .data:0x0003960C; // type:object size:0xC scope:global align:4 data:float
+tree_pos = .data:0x00039618; // type:object size:0x60 scope:global align:4 data:float
+rock_pos = .data:0x00039678; // type:object size:0x18 scope:global align:4 data:float
+scaleX_table$799 = .data:0x00039690; // type:object size:0x1C scope:local align:4
+tonbo_rock_pos = .data:0x000396AC; // type:object size:0x48 scope:global align:4
+scaleX_table$1689 = .data:0x000396F4; // type:object size:0x1C scope:local align:4
+scaleX_table$1703 = .data:0x00039710; // type:object size:0x1C scope:local align:4
+batta_sound_data$1832 = .data:0x0003972C; // type:object size:0x4 scope:local align:4
+tentou_flower_pos = .data:0x00039730; // type:object size:0x30 scope:global align:4
+scaleX_table$1956 = .data:0x00039760; // type:object size:0x1C scope:local align:4
+init_proc$2282 = .data:0x0003977C; // type:object size:0xC scope:local align:4
+move_proc$2283 = .data:0x00039788; // type:object size:0xC scope:local align:4
+hachi_base_pos = .data:0x00039794; // type:object size:0xC scope:global align:4 data:float
+scaleX_table$2341 = .data:0x000397A0; // type:object size:0x1C scope:local align:4
+init_proc$2463 = .data:0x000397BC; // type:object size:0xC scope:local align:4
+move_proc$2464 = .data:0x000397C8; // type:object size:0xC scope:local align:4
+kabuto_base_pos = .data:0x000397D4; // type:object size:0x6C scope:global align:4
+kuwagata_model_tbl = .data:0x00039840; // type:object size:0x10 scope:global align:4
+kuwagata_anim_tbl = .data:0x00039850; // type:object size:0x10 scope:global align:4
+kuwagata_base_pos = .data:0x00039860; // type:object size:0x30 scope:global align:4
+init_proc$3000 = .data:0x00039890; // type:object size:0x18 scope:local align:4
+move_proc$3001 = .data:0x000398A8; // type:object size:0x18 scope:local align:4
+amenbo_center_pos = .data:0x000398C0; // type:object size:0xC scope:global align:4 data:float
+scaleX_table$3473 = .data:0x000398CC; // type:object size:0x1C scope:local align:4
+scaleY_table$3474 = .data:0x000398E8; // type:object size:0x1C scope:local align:4
+init_proc$3511 = .data:0x00039904; // type:object size:0x10 scope:local align:4
+move_proc$3512 = .data:0x00039914; // type:object size:0x10 scope:local align:4
+init_proc$3822 = .data:0x00039924; // type:object size:0x14 scope:local align:4
+move_proc$3823 = .data:0x00039938; // type:object size:0x14 scope:local align:4
+scaleX_table$3918 = .data:0x0003994C; // type:object size:0x1C scope:local align:4
+rail_pos = .data:0x00039968; // type:object size:0x48 scope:global align:4
+scale_table$4411 = .data:0x000399B0; // type:object size:0x1C scope:local align:4
+init_proc$4509 = .data:0x000399CC; // type:object size:0x8 scope:local align:4
+move_proc$4510 = .data:0x000399D4; // type:object size:0x8 scope:local align:4
+ari_rail_pos = .data:0x000399DC; // type:object size:0x24 scope:global align:4 data:4byte
+init_pos$4940 = .data:0x00039A00; // type:object size:0xC scope:local align:4 data:4byte
+KANBAN_XL_TBL$5249 = .data:0x00039A0C; // type:object size:0x8 scope:local align:4
+KANBAN_XR_TBL$5250 = .data:0x00039A14; // type:object size:0x8 scope:local align:4
+idx_tbl$5318 = .data:0x00039A1C; // type:object size:0x1C scope:local align:4
+minsect_scale_tbl = .data:0x00039A38; // type:object size:0xA0 scope:global align:4
+kanban_pos$5415 = .data:0x00039AD8; // type:object size:0x48 scope:local align:4
+group_max_num$5435 = .data:0x00039B20; // type:object size:0x18 scope:local align:4
+group_1_insect_name$5436 = .data:0x00039B38; // type:object size:0x1C scope:local align:4
+group_2_insect_name$5437 = .data:0x00039B54; // type:object size:0x18 scope:local align:4
+group_3_insect_name$5438 = .data:0x00039B6C; // type:object size:0x18 scope:local align:4
+group_4_insect_name$5439 = .data:0x00039B84; // type:object size:0x18 scope:local align:4
+group_5_insect_name$5440 = .data:0x00039B9C; // type:object size:0x1C scope:local align:4
+group_6_insect_name$5441 = .data:0x00039BB8; // type:object size:0x1C scope:local align:4
+group_insect_name$5442 = .data:0x00039BD4; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x00039BF0; // type:label scope:local
+aMI_size_dsp_table = .data:0x00039BF0; // type:object size:0xA8 scope:global align:4
+aMI_step_data = .data:0x00039C98; // type:object size:0x20 scope:global align:4
+aMI_scale_x_table = .data:0x00039CB8; // type:object size:0x10 scope:global align:4
+My_Indoor_Profile = .data:0x00039CC8; // type:object size:0x24 scope:global align:4
+room_kind_data$537 = .data:0x00039CEC; // type:object size:0x58 scope:local align:4 data:2byte
+step_draw_pos$615 = .data:0x00039D44; // type:object size:0x24 scope:local align:4
+wrapmirror_floor_shift_s = .data:0x00039D68; // type:object size:0x20 scope:global align:4
+wrapmirror_floor_shift_m = .data:0x00039D88; // type:object size:0x20 scope:global align:4
+wrapmirror_floor_shift_l = .data:0x00039DA8; // type:object size:0x20 scope:global align:4
+wrapmirror_floor_shift_table = .data:0x00039DC8; // type:object size:0x18 scope:global align:4
+scale_floor_shift_s = .data:0x00039DE0; // type:object size:0x20 scope:global align:4
+scale_floor_shift_m = .data:0x00039E00; // type:object size:0x20 scope:global align:4
+scale_floor_shift_l = .data:0x00039E20; // type:object size:0x20 scope:global align:4
+scale_floor_shift_table = .data:0x00039E40; // type:object size:0x18 scope:global align:4
+wrapmirror_wall_shift_s = .data:0x00039E58; // type:object size:0x10 scope:global align:4
+wrapmirror_wall_shift_m = .data:0x00039E68; // type:object size:0x10 scope:global align:4
+wrapmirror_wall_shift_l = .data:0x00039E78; // type:object size:0x10 scope:global align:4
+wrapmirror_wall_shift_table = .data:0x00039E88; // type:object size:0x18 scope:global align:4
+scale_wall_shift_s = .data:0x00039EA0; // type:object size:0x10 scope:global align:4
+scale_wall_shift_m = .data:0x00039EB0; // type:object size:0x10 scope:global align:4
+scale_wall_shift_l = .data:0x00039EC0; // type:object size:0x10 scope:global align:4
+scale_wall_shift_table = .data:0x00039ED0; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00039EE8; // type:label scope:local
+My_Room_Profile = .data:0x00039EE8; // type:object size:0x24 scope:global align:4
+l_size_typeA = .data:0x00039F0C; // type:object size:0x18 scope:global align:4
+l_size_typeB_90 = .data:0x00039F24; // type:object size:0x18 scope:global align:4
+l_size_typeB_180 = .data:0x00039F3C; // type:object size:0x18 scope:global align:4
+l_size_typeB_270 = .data:0x00039F54; // type:object size:0x18 scope:global align:4
+l_size_typeB_0 = .data:0x00039F6C; // type:object size:0x18 scope:global align:4
+l_size_typeC = .data:0x00039F84; // type:object size:0x18 scope:global align:4
+aMR_furniture_size_table = .data:0x00039F9C; // type:object size:0x18 scope:global align:4
+furniture_quality = .data:0x00039FB4; // type:object size:0x13C8 scope:local align:4
+l_place_table = .data:0x0003B37C; // type:object size:0x100 scope:global align:4
+l_place_table2 = .data:0x0003B47C; // type:object size:0x100 scope:global align:4
+aMR_place_table = .data:0x0003B57C; // type:object size:0x8 scope:global align:4 data:4byte
+aMR_layer_set_info = .data:0x0003B584; // type:object size:0x4F2 scope:global align:4
+norm_table = .data:0x0003BA78; // type:object size:0x30 scope:local align:4 data:float
+rotateDt = .data:0x0003BAA8; // type:object size:0x20 scope:global align:4
+type_target_table = .data:0x0003BAC8; // type:object size:0x200 scope:global align:4
+rotate_forbid_table = .data:0x0003BCC8; // type:object size:0x60 scope:global align:4
+rotate_forbid_friction_table = .data:0x0003BD28; // type:object size:0x60 scope:global align:4
+l_next_typea = .data:0x0003BD88; // type:object size:0x18 scope:global align:4
+l_next_place_typeA = .data:0x0003BDA0; // type:object size:0x8 scope:global align:4
+l_next_typec = .data:0x0003BDA8; // type:object size:0x30 scope:global align:4
+l_next_place_typeC = .data:0x0003BDD8; // type:object size:0x8 scope:global align:4
+next_table = .data:0x0003BDE0; // type:object size:0x18 scope:global align:4
+l_typeB_90_pattarn = .data:0x0003BDF8; // type:object size:0x18 scope:global align:4
+l_typeB_180_pattarn = .data:0x0003BE10; // type:object size:0x18 scope:global align:4
+l_typeB_270_pattarn = .data:0x0003BE28; // type:object size:0x18 scope:global align:4
+l_typeB_0_pattarn = .data:0x0003BE40; // type:object size:0x18 scope:global align:4
+pattarn_table = .data:0x0003BE58; // type:object size:0x10 scope:global align:4
+aMR_calender_info_table = .data:0x0003BE68; // type:object size:0x4F2 scope:global align:4
+aMR_icon_display_data = .data:0x0003C35C; // type:object size:0x30 scope:global align:4
+xyz0$957 = .data:0x0003C38C; // type:object size:0xC scope:local align:4 data:4byte
+xyz1$958 = .data:0x0003C398; // type:object size:0xC scope:local align:4 data:4byte
+xyz0$1214 = .data:0x0003C3A4; // type:object size:0xC scope:local align:4 data:4byte
+scene_table$1368 = .data:0x0003C3B0; // type:object size:0x5C scope:local align:4
+bank_count_table$1369 = .data:0x0003C40C; // type:object size:0x5C scope:local align:4
+dummy$1421 = .data:0x0003C468; // type:object size:0x10 scope:local align:4 data:string
+@1527 = .data:0x0003C478; // type:object size:0x1C scope:local align:4
+item_name_table$1554 = .data:0x0003C494; // type:object size:0xC scope:local align:4 data:4byte
+@2202 = .data:0x0003C4A0; // type:object size:0x20 scope:local align:4
+msg_init_table = .data:0x0003C4C0; // type:object size:0x104 scope:global align:4
+msg_ctrl_table = .data:0x0003C5C4; // type:object size:0x104 scope:global align:4
+aMR_msg_no_table = .data:0x0003C6C8; // type:object size:0x104 scope:global align:4
+aMR_none_talk_proc = .data:0x0003C7CC; // type:object size:0x104 scope:global align:4
+aMR_force_talk_flag = .data:0x0003C8D0; // type:object size:0x104 scope:global align:4
+aMR_window_se_flag = .data:0x0003C9D4; // type:object size:0x104 scope:global align:4
+aMR_window_color = .data:0x0003CAD8; // type:object size:0x4 scope:global align:4
+goki_random_make_data$2419 = .data:0x0003CADC; // type:object size:0x48 scope:local align:4 data:4byte
+off_x$2522 = .data:0x0003CB24; // type:object size:0x10 scope:local align:4
+leaf_start0$2809 = .data:0x0003CB34; // type:object size:0xC scope:local align:4 data:4byte
+aMR_poccess_typeB90 = .data:0x0003CB40; // type:object size:0xC scope:global align:4
+aMR_poccess_typeB180 = .data:0x0003CB4C; // type:object size:0xC scope:global align:4
+aMR_poccess_typeB270 = .data:0x0003CB58; // type:object size:0xC scope:global align:4
+aMR_poccess_typeB0 = .data:0x0003CB64; // type:object size:0xC scope:global align:4
+aMR_poccess_typeA = .data:0x0003CB70; // type:object size:0xC scope:global align:4
+aMR_poccess_typeC = .data:0x0003CB7C; // type:object size:0xC scope:global align:4
+aMR_poccess_table = .data:0x0003CB88; // type:object size:0x18 scope:global align:4
+init_data$3012 = .data:0x0003CBA0; // type:object size:0x24 scope:local align:4
+unit_offset$3097 = .data:0x0003CBC4; // type:object size:0x40 scope:local align:4
+high_offset$3098 = .data:0x0003CC04; // type:object size:0x20 scope:local align:4
+center0$3112 = .data:0x0003CC24; // type:object size:0xC scope:local align:4 data:4byte
+direct_vector$3215 = .data:0x0003CC30; // type:object size:0x20 scope:local align:4
+direct_table$3304 = .data:0x0003CC50; // type:object size:0x8 scope:local align:4
+move_angle_table$3395 = .data:0x0003CC58; // type:object size:0x8 scope:local align:4
+move_angle_table$3401 = .data:0x0003CC60; // type:object size:0x8 scope:local align:4
+push_target_d_table$3739 = .data:0x0003CC68; // type:object size:0x10 scope:local align:4
+init_pos$3750 = .data:0x0003CC78; // type:object size:0xC scope:local align:4 data:4byte
+direct_conv_data$3883 = .data:0x0003CC84; // type:object size:0x8 scope:local align:4
+move_table$4025 = .data:0x0003CC8C; // type:object size:0x18 scope:local align:4
+target_table$4026 = .data:0x0003CCA4; // type:object size:0x30 scope:local align:4
+push_move_table$4083 = .data:0x0003CCD4; // type:object size:0x18 scope:local align:4
+push_target_table$4084 = .data:0x0003CCEC; // type:object size:0x30 scope:local align:4
+rt_place_tbl$4213 = .data:0x0003CD1C; // type:object size:0x4 scope:local align:4
+lt_place_tbl$4214 = .data:0x0003CD20; // type:object size:0x4 scope:local align:4
+aMR_sit_small_chair1 = .data:0x0003CD24; // type:object size:0x1 scope:global align:4
+aMR_sit_small_chair1_data = .data:0x0003CD28; // type:object size:0x8 scope:global align:4
+aMR_sit_small_chair4 = .data:0x0003CD30; // type:object size:0x4 scope:global align:4
+aMR_sit_small_chair4_data = .data:0x0003CD34; // type:object size:0x8 scope:global align:4
+aMR_sit_middle_sofa = .data:0x0003CD3C; // type:object size:0x1 scope:global align:4
+aMR_sit_middle_sofa_data = .data:0x0003CD40; // type:object size:0x8 scope:global align:4
+aME_sit_data = .data:0x0003CD48; // type:object size:0xC scope:global align:4
+pos0$4337 = .data:0x0003CD54; // type:object size:0xC scope:local align:4 data:4byte
+pos0$4358 = .data:0x0003CD60; // type:object size:0xC scope:local align:4 data:4byte
+offset_data$4595 = .data:0x0003CD6C; // type:object size:0x3C scope:local align:4
+rotate_angle_types$4849 = .data:0x0003CDA8; // type:object size:0x4 scope:local align:4
+square_offset_data = .data:0x0003CDAC; // type:object size:0x10 scope:global align:4
+scale1$5407 = .data:0x0003CDBC; // type:object size:0xC scope:local align:4 data:4byte
+fproc$5541 = .data:0x0003CDC8; // type:object size:0x40 scope:local align:4
+pos0$5769 = .data:0x0003CE08; // type:object size:0xC scope:local align:4 data:4byte
+@5895 = .data:0x0003CE14; // type:object size:0x24 scope:local align:4
+@6044 = .data:0x0003CE38; // type:object size:0x20 scope:local align:4
+@6091 = .data:0x0003CE58; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x0003CE78; // type:label scope:local
+Needlework_Indoor_Profile = .data:0x0003CE78; // type:object size:0x24 scope:global align:4
+l_manekin_mBgData$468 = .data:0x0003CE9C; // type:object size:0x10 scope:local align:4
+manekin_pos$469 = .data:0x0003CEAC; // type:object size:0x30 scope:local align:4
+umbrella_pos$470 = .data:0x0003CEDC; // type:object size:0x30 scope:local align:4
+Present_Demo_Profile = .data:0x0003CF10; // type:object size:0x24 scope:global align:4
+init_proc$557 = .data:0x0003CF34; // type:object size:0x10 scope:local align:4
+process$562 = .data:0x0003CF44; // type:object size:0x10 scope:local align:4
+Psnowman_Profile = .data:0x0003CF58; // type:object size:0x24 scope:global align:4
+Pterminal_Profile = .data:0x0003CF80; // type:object size:0x24 scope:global align:4
+direct_table$528 = .data:0x0003CFA4; // type:object size:0x40 scope:local align:4
+aPT_window_color$559 = .data:0x0003CFE4; // type:object size:0x4 scope:local align:4
+aPT_stat_init_proc_table = .data:0x0003CFE8; // type:object size:0x1C scope:global align:4
+aPT_stat_main_proc_table = .data:0x0003D004; // type:object size:0x1C scope:global align:4
+...data.0 = .data:0x0003D020; // type:label scope:local
+l_set_delivery_data = .data:0x0003D020; // type:object size:0x120 scope:global align:4
+l_set_errand_data = .data:0x0003D140; // type:object size:0x438 scope:global align:4
+l_set_contest_data = .data:0x0003D578; // type:object size:0x1F8 scope:global align:4
+l_set_data = .data:0x0003D770; // type:object size:0xC scope:global align:4
+l_errand_proc = .data:0x0003D77C; // type:object size:0x3C scope:global align:4
+l_contest_proc = .data:0x0003D7B8; // type:object size:0x1C scope:global align:4
+l_contest_check = .data:0x0003D7D4; // type:object size:0x1C scope:global align:4
+l_proc_max = .data:0x0003D7F0; // type:object size:0xC scope:global align:4
+talk_init_table$577 = .data:0x0003D7FC; // type:object size:0x10 scope:local align:4
+common_proc$808 = .data:0x0003D80C; // type:object size:0x2C scope:local align:4
+save_proc$1003 = .data:0x0003D838; // type:object size:0x1C scope:local align:4
+talk_sub_proc$1130 = .data:0x0003D854; // type:object size:0x30 scope:local align:4
+talk_proc$1137 = .data:0x0003D884; // type:object size:0x8 scope:local align:4 data:4byte
+move_proc$1181 = .data:0x0003D88C; // type:object size:0x20 scope:local align:4
+@1213 = .data:0x0003D8AC; // type:object size:0x9 scope:local align:4 data:string
+@1214 = .data:0x0003D8B8; // type:object size:0x4 scope:local align:4 data:string
+@1215 = .data:0x0003D8BC; // type:object size:0x8 scope:local align:4 data:string
+save_proc$1237 = .data:0x0003D8C4; // type:object size:0xC scope:local align:4
+Quest_Manager_Profile = .data:0x0003D8D0; // type:object size:0x24 scope:global align:4
+select_msg_no$505 = .data:0x0003D8F8; // type:object size:0x10 scope:local align:4
+talk_proc$597 = .data:0x0003D908; // type:object size:0x34 scope:local align:4
+l_hello_fine_msg_tbl = .data:0x0003D940; // type:object size:0x20 scope:global align:4
+l_hello_fine_island_msg_tbl = .data:0x0003D960; // type:object size:0x20 scope:global align:4
+l_hello_rain_msg_tbl = .data:0x0003D980; // type:object size:0x20 scope:global align:4
+l_hello_snow_msg_tbl = .data:0x0003D9A0; // type:object size:0x20 scope:global align:4
+l_grad_hello_msg_tbl = .data:0x0003D9C0; // type:object size:0x20 scope:global align:4
+l_indoor_hello_msg_tbl = .data:0x0003D9E0; // type:object size:0x20 scope:global align:4
+l_hello_rage_msg = .data:0x0003DA00; // type:object size:0x18 scope:global align:4
+l_hello_rage_island_msg = .data:0x0003DA18; // type:object size:0x18 scope:global align:4
+l_hello_sad_msg = .data:0x0003DA30; // type:object size:0x18 scope:global align:4
+l_hello_sad_island_msg = .data:0x0003DA48; // type:object size:0x18 scope:global align:4
+l_hello_sleep_msg = .data:0x0003DA60; // type:object size:0x18 scope:global align:4
+l_hello_uzai_msg = .data:0x0003DA78; // type:object size:0x18 scope:global align:4
+l_hello_uzai_island_msg = .data:0x0003DA90; // type:object size:0x18 scope:global align:4
+feel_msg_table$464 = .data:0x0003DAA8; // type:object size:0x1C scope:local align:4
+feel_msg_table$474 = .data:0x0003DAC4; // type:object size:0x1C scope:local align:4
+hello_msg_tbl$545 = .data:0x0003DAE0; // type:object size:0x10 scope:local align:4
+rnd_table$565 = .data:0x0003DAF0; // type:object size:0x20 scope:local align:4
+category$629 = .data:0x0003DB10; // type:object size:0x2 scope:local align:4 data:byte
+hello_msg$742 = .data:0x0003DB14; // type:object size:0x18 scope:local align:4
+msg_table$761 = .data:0x0003DB2C; // type:object size:0x18 scope:local align:4
+l_quest_item_list = .data:0x0003DB48; // type:object size:0x14 scope:global align:4
+l_reward_msg = .data:0x0003DB5C; // type:object size:0x20 scope:global align:4
+l_fruit_reward_msg = .data:0x0003DB7C; // type:object size:0x20 scope:global align:4
+l_soccer_reward_msg = .data:0x0003DB9C; // type:object size:0x20 scope:global align:4
+l_snowman_reward_msg = .data:0x0003DBBC; // type:object size:0x20 scope:global align:4
+l_flower_reward_msg = .data:0x0003DBDC; // type:object size:0x20 scope:global align:4
+l_fish_reward_msg = .data:0x0003DBFC; // type:object size:0x20 scope:global align:4
+l_insect_reward_msg = .data:0x0003DC1C; // type:object size:0x20 scope:global align:4
+l_after_reward_msg = .data:0x0003DC3C; // type:object size:0x20 scope:global align:4
+l_quest_type_table_fj = .data:0x0003DC5C; // type:object size:0x8 scope:global align:4
+l_quest_type_table_qst = .data:0x0003DC64; // type:object size:0xC scope:global align:4
+l_quest_kind_table_fj_delivery = .data:0x0003DC70; // type:object size:0x8 scope:global align:4
+l_quest_kind_table_fj_errand = .data:0x0003DC78; // type:object size:0x4 scope:global align:4
+l_quest_kind_table_qst_delivery = .data:0x0003DC7C; // type:object size:0x10 scope:global align:4
+l_quest_kind_table_qst_errand = .data:0x0003DC8C; // type:object size:0x4 scope:global align:4
+l_quest_kind_table_qst_contest = .data:0x0003DC90; // type:object size:0x1C scope:global align:4
+l_new_fj_quest_info = .data:0x0003DCAC; // type:object size:0x20 scope:global align:4
+l_new_quest_quest_info = .data:0x0003DCCC; // type:object size:0x20 scope:global align:4
+type_kind_decide_table$620 = .data:0x0003DCEC; // type:object size:0x8 scope:local align:4
+@711 = .data:0x0003DCF4; // type:object size:0x1C scope:local align:4
+rate_table$949 = .data:0x0003DD10; // type:object size:0x38 scope:local align:4
+plus_minus$961 = .data:0x0003DD48; // type:object size:0x8 scope:local align:4
+errand_reward$1013 = .data:0x0003DD50; // type:object size:0x20 scope:local align:4
+l_contest_hoka_msg_no = .data:0x0003DD70; // type:object size:0x1C scope:global align:4
+talk_proc$1576 = .data:0x0003DD8C; // type:object size:0x80 scope:local align:4
+l_quest_category_0 = .data:0x0003DE10; // type:object size:0xC scope:local align:4
+l_quest_category_1 = .data:0x0003DE1C; // type:object size:0xC scope:local align:4
+uru_tuki$489 = .data:0x0003DE28; // type:object size:0xA scope:local align:4 data:string
+decide_proc$1022 = .data:0x0003DE34; // type:object size:0x54 scope:local align:4
+move_proc$1134 = .data:0x0003DE88; // type:object size:0x60 scope:local align:4
+input_proc$1176 = .data:0x0003DEE8; // type:object size:0x8 scope:local align:4
+base_str_no$1192 = .data:0x0003DEF0; // type:object size:0x14 scope:local align:4
+rand_max_table$1193 = .data:0x0003DF04; // type:object size:0x14 scope:local align:4
+base_str_no$1221 = .data:0x0003DF18; // type:object size:0xC scope:local align:4
+constellation_table = .data:0x0003DF24; // type:object size:0x18 scope:local align:4 data:byte
+base_str_no$1231 = .data:0x0003DF3C; // type:object size:0x8 scope:local align:4
+set_string_proc$1267 = .data:0x0003DF44; // type:object size:0x10 scope:local align:4
+msg_table$1272 = .data:0x0003DF54; // type:object size:0x18 scope:local align:4
+check_proc$1412 = .data:0x0003DF6C; // type:object size:0x24 scope:local align:4
+msg_table$1413 = .data:0x0003DF90; // type:object size:0x18 scope:local align:4
+msg_table$1437 = .data:0x0003DFA8; // type:object size:0x18 scope:local align:4
+msg_table$1486 = .data:0x0003DFC0; // type:object size:0x18 scope:local align:4
+msg_table$1506 = .data:0x0003DFD8; // type:object size:0x18 scope:local align:4
+get_msg_proc$1534 = .data:0x0003DFF0; // type:object size:0x10 scope:local align:4
+prob_table$1535 = .data:0x0003E000; // type:object size:0x10 scope:local align:4
+order_proc$1563 = .data:0x0003E010; // type:object size:0x28 scope:local align:4
+l_aqmgr_sakubunn = .data:0x0003E038; // type:object size:0x4 scope:global align:4 data:string
+talk_proc$1600 = .data:0x0003E03C; // type:object size:0x24 scope:local align:4
+...data.0 = .data:0x0003E060; // type:label scope:local
+l_ki_prob = .data:0x0003E060; // type:object size:0x5 scope:global align:4
+l_normal_1_prob = .data:0x0003E068; // type:object size:0x2 scope:global align:4
+l_game_prob = .data:0x0003E06C; // type:object size:0x2 scope:global align:4 data:string
+l_ev_prob = .data:0x0003E070; // type:object size:0x2 scope:global align:4 data:string
+l_normal_2_prob = .data:0x0003E074; // type:object size:0x4 scope:global align:4
+l_trade_prob = .data:0x0003E078; // type:object size:0x4 scope:global align:4
+l_normal_3_prob = .data:0x0003E07C; // type:object size:0x4 scope:global align:4
+l_ki_normal = .data:0x0003E080; // type:object size:0x18 scope:global align:4
+l_ki_weather_time = .data:0x0003E098; // type:object size:0x18 scope:global align:4
+l_ki_free_item = .data:0x0003E0B0; // type:object size:0x18 scope:global align:4
+l_ki_ftr = .data:0x0003E0C8; // type:object size:0x18 scope:global align:4
+l_ki_free_item_money = .data:0x0003E0E0; // type:object size:0x18 scope:global align:4
+l_ev_special = .data:0x0003E0F8; // type:object size:0x18 scope:global align:4
+l_ev_cal = .data:0x0003E110; // type:object size:0x18 scope:global align:4
+l_game_hint = .data:0x0003E128; // type:object size:0x18 scope:global align:4
+l_remove_yes = .data:0x0003E140; // type:object size:0x18 scope:global align:4
+l_normal2_letter = .data:0x0003E158; // type:object size:0x18 scope:global align:4
+l_normal2_memory = .data:0x0003E170; // type:object size:0x18 scope:global align:4
+l_trade_free_item = .data:0x0003E188; // type:object size:0x18 scope:global align:4
+l_trade_ftr = .data:0x0003E1A0; // type:object size:0x18 scope:global align:4
+l_trade_item = .data:0x0003E1B8; // type:object size:0x18 scope:global align:4
+l_trade_free_item_money = .data:0x0003E1D0; // type:object size:0x18 scope:global align:4
+l_normal3_normal = .data:0x0003E1E8; // type:object size:0x18 scope:global align:4
+l_normal3_weather_time = .data:0x0003E200; // type:object size:0x18 scope:global align:4
+l_normal3_weather = .data:0x0003E218; // type:object size:0x18 scope:global align:4
+l_normal3_season = .data:0x0003E230; // type:object size:0x18 scope:global align:4
+l_quest_category_0 = .data:0x0003E248; // type:object size:0xC scope:local align:4
+l_quest_category_1 = .data:0x0003E254; // type:object size:0xC scope:local align:4
+animal_mail$824 = .data:0x0003E260; // type:object size:0x102 scope:local align:4 data:byte
+uru_tuki$849 = .data:0x0003E364; // type:object size:0xA scope:local align:4 data:string
+msg_proc$1075 = .data:0x0003E370; // type:object size:0x14 scope:local align:4 data:4byte
+get_memory_proc$1085 = .data:0x0003E384; // type:object size:0xC scope:local align:4
+get_mail_proc$1110 = .data:0x0003E390; // type:object size:0x18 scope:local align:4
+add_table$1141 = .data:0x0003E3A8; // type:object size:0x30 scope:local align:4
+msg_proc$1149 = .data:0x0003E3D8; // type:object size:0x10 scope:local align:4
+msg_proc$1173 = .data:0x0003E3E8; // type:object size:0x10 scope:local align:4
+msg_proc$1181 = .data:0x0003E3F8; // type:object size:0x10 scope:local align:4
+msg_proc$1260 = .data:0x0003E408; // type:object size:0x8 scope:local align:4
+msg_proc$1280 = .data:0x0003E410; // type:object size:0x8 scope:local align:4
+msg_proc$1285 = .data:0x0003E418; // type:object size:0x8 scope:local align:4
+decide_proc$1403 = .data:0x0003E420; // type:object size:0x44 scope:local align:4
+move_proc$1501 = .data:0x0003E464; // type:object size:0x5C scope:local align:4
+base_str_no$1548 = .data:0x0003E4C0; // type:object size:0x14 scope:local align:4
+rand_max_table$1549 = .data:0x0003E4D4; // type:object size:0x14 scope:local align:4
+base_str_no$1580 = .data:0x0003E4E8; // type:object size:0xC scope:local align:4
+constellation_table = .data:0x0003E4F4; // type:object size:0x18 scope:local align:4 data:byte
+base_str_no$1590 = .data:0x0003E50C; // type:object size:0x8 scope:local align:4
+set_string_proc$1626 = .data:0x0003E514; // type:object size:0x10 scope:local align:4
+l_aqmgr_hint_ng_msg = .data:0x0003E524; // type:object size:0x20 scope:global align:4
+l_aqmgr_hint_ng_base_msg = .data:0x0003E544; // type:object size:0x20 scope:global align:4
+l_aqmgr_hint_ng_rnd_max = .data:0x0003E564; // type:object size:0x20 scope:global align:4
+order_proc$1673 = .data:0x0003E584; // type:object size:0x28 scope:local align:4
+talk_proc$1728 = .data:0x0003E5AC; // type:object size:0x30 scope:local align:4
+Reset_Demo_Profile = .data:0x0003E5E0; // type:object size:0x24 scope:global align:4
+majin_name$499 = .data:0x0003E604; // type:object size:0x10 scope:local align:4
+init_proc$511 = .data:0x0003E614; // type:object size:0x8 scope:local align:4
+process$516 = .data:0x0003E61C; // type:object size:0x8 scope:local align:4
+Ride_Off_Demo_Profile = .data:0x0003E628; // type:object size:0x24 scope:global align:4
+enter_pos$514 = .data:0x0003E64C; // type:object size:0xC scope:local align:4 data:4byte
+init_proc$526 = .data:0x0003E658; // type:object size:0x14 scope:local align:4
+process$531 = .data:0x0003E66C; // type:object size:0x14 scope:local align:4
+Rope_Profile = .data:0x0003E680; // type:object size:0x24 scope:global align:4
+flg$464 = .data:0x0003E6A4; // type:object size:0x3C scope:local align:4 data:byte
+proc_table$459 = .data:0x0003E6E0; // type:object size:0x8 scope:local align:4
+move$501 = .data:0x0003E6E8; // type:object size:0xC scope:local align:4
+Set_Manager_Profile = .data:0x0003E6F4; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x0003E718; // type:label scope:local
+Set_Npc_Manager_Profile = .data:0x0003E718; // type:object size:0x24 scope:global align:4
+block_wh$553 = .data:0x0003E73C; // type:object size:0x8 scope:local align:4
+half_block_wh$554 = .data:0x0003E744; // type:object size:0x8 scope:local align:4
+r_add$555 = .data:0x0003E74C; // type:object size:0x8 scope:local align:4
+gr_add$556 = .data:0x0003E754; // type:object size:0x8 scope:local align:4
+sp_event_fg$704 = .data:0x0003E75C; // type:object size:0x8 scope:local align:4
+ux_table$723 = .data:0x0003E764; // type:object size:0x24 scope:local align:4
+uz_table$724 = .data:0x0003E788; // type:object size:0x24 scope:local align:4
+l_gate_direct$798 = .data:0x0003E7AC; // type:object size:0x4 scope:local align:4
+add_bx$1104 = .data:0x0003E7B0; // type:object size:0x14 scope:local align:4
+add_bz$1105 = .data:0x0003E7C4; // type:object size:0x14 scope:local align:4
+walk_status$1106 = .data:0x0003E7D8; // type:object size:0x5 scope:local align:4
+set_proc$1275 = .data:0x0003E7E0; // type:object size:0xC scope:local align:4
+r_m1_t0 = .data:0x0003E7F0; // type:object size:0x38 scope:global align:4
+s_m1_t0 = .data:0x0003E828; // type:object size:0x8 scope:global align:4
+r_m1_t1 = .data:0x0003E830; // type:object size:0x38 scope:global align:4
+r_m1_t2 = .data:0x0003E868; // type:object size:0x38 scope:global align:4
+r_begining_january = .data:0x0003E8A0; // type:object size:0x20 scope:global align:4
+s_begining_january = .data:0x0003E8C0; // type:object size:0x20 scope:global align:4
+r_m2_t0 = .data:0x0003E8E0; // type:object size:0x38 scope:global align:4
+s_m2_t0 = .data:0x0003E918; // type:object size:0x8 scope:global align:4
+r_m2_t1 = .data:0x0003E920; // type:object size:0x38 scope:global align:4
+r_m2_t2 = .data:0x0003E958; // type:object size:0x38 scope:global align:4
+r_begining_february = .data:0x0003E990; // type:object size:0x20 scope:global align:4
+s_begining_february = .data:0x0003E9B0; // type:object size:0x20 scope:global align:4
+r_m3_t0 = .data:0x0003E9D0; // type:object size:0x3C scope:global align:4
+s_m3_t0 = .data:0x0003EA0C; // type:object size:0xC scope:global align:4
+r_m3_t1 = .data:0x0003EA18; // type:object size:0x34 scope:global align:4
+r_m3_t2 = .data:0x0003EA4C; // type:object size:0x30 scope:global align:4
+r_begining_march = .data:0x0003EA7C; // type:object size:0x20 scope:global align:4
+s_begining_march = .data:0x0003EA9C; // type:object size:0x20 scope:global align:4
+r_m4_t0 = .data:0x0003EABC; // type:object size:0x40 scope:global align:4
+s_m4_t0 = .data:0x0003EAFC; // type:object size:0xC scope:global align:4
+p_m4_t0 = .data:0x0003EB08; // type:object size:0x8 scope:global align:4
+r_m4_t1 = .data:0x0003EB10; // type:object size:0x3C scope:global align:4
+r_m4_t2 = .data:0x0003EB4C; // type:object size:0x34 scope:global align:4
+r_begining_april = .data:0x0003EB80; // type:object size:0x20 scope:global align:4
+s_begining_april = .data:0x0003EBA0; // type:object size:0x20 scope:global align:4
+p_begining_april = .data:0x0003EBC0; // type:object size:0x20 scope:global align:4
+r_m5_t0 = .data:0x0003EBE0; // type:object size:0x48 scope:global align:4
+s_m5_t0 = .data:0x0003EC28; // type:object size:0xC scope:global align:4
+p_m5_t0 = .data:0x0003EC34; // type:object size:0xC scope:global align:4
+r_m5_t1 = .data:0x0003EC40; // type:object size:0x3C scope:global align:4
+r_m5_t2 = .data:0x0003EC7C; // type:object size:0x3C scope:global align:4
+r_begining_may = .data:0x0003ECB8; // type:object size:0x20 scope:global align:4
+s_begining_may = .data:0x0003ECD8; // type:object size:0x20 scope:global align:4
+p_begining_may = .data:0x0003ECF8; // type:object size:0x20 scope:global align:4
+r_m6_t0 = .data:0x0003ED18; // type:object size:0x50 scope:global align:4
+s_m6_t0 = .data:0x0003ED68; // type:object size:0xC scope:global align:4
+p_m6_t0 = .data:0x0003ED74; // type:object size:0xC scope:global align:4
+r_m6_t1 = .data:0x0003ED80; // type:object size:0x40 scope:global align:4
+r_m6_t2 = .data:0x0003EDC0; // type:object size:0x44 scope:global align:4
+r_begining_june = .data:0x0003EE04; // type:object size:0x20 scope:global align:4
+s_begining_june = .data:0x0003EE24; // type:object size:0x20 scope:global align:4
+p_begining_june = .data:0x0003EE44; // type:object size:0x20 scope:global align:4
+r_m7_t0 = .data:0x0003EE64; // type:object size:0x4C scope:global align:4
+s_m7_t0 = .data:0x0003EEB0; // type:object size:0xC scope:global align:4
+p_m7_t0 = .data:0x0003EEBC; // type:object size:0xC scope:global align:4
+r_m7_t1 = .data:0x0003EEC8; // type:object size:0x44 scope:global align:4
+r_m7_t2 = .data:0x0003EF0C; // type:object size:0x4C scope:global align:4
+r_begining_july = .data:0x0003EF58; // type:object size:0x20 scope:global align:4
+s_begining_july = .data:0x0003EF78; // type:object size:0x20 scope:global align:4
+p_begining_july = .data:0x0003EF98; // type:object size:0x20 scope:global align:4
+r_m8_t0 = .data:0x0003EFB8; // type:object size:0x4C scope:global align:4
+s_m8_t0 = .data:0x0003F004; // type:object size:0xC scope:global align:4
+s_m8_t0_2 = .data:0x0003F010; // type:object size:0xC scope:global align:4
+p_m8_t0 = .data:0x0003F01C; // type:object size:0xC scope:global align:4
+r_m8_t1 = .data:0x0003F028; // type:object size:0x44 scope:global align:4
+s_m8_t1_2 = .data:0x0003F06C; // type:object size:0xC scope:global align:4
+r_m8_t2 = .data:0x0003F078; // type:object size:0x4C scope:global align:4
+r_begining_august = .data:0x0003F0C4; // type:object size:0x20 scope:global align:4
+s_begining_august = .data:0x0003F0E4; // type:object size:0x20 scope:global align:4
+s_latter_august = .data:0x0003F104; // type:object size:0x20 scope:global align:4
+p_begining_august = .data:0x0003F124; // type:object size:0x20 scope:global align:4
+r_m9_t0 = .data:0x0003F144; // type:object size:0x50 scope:global align:4
+r_m9_t0_2 = .data:0x0003F194; // type:object size:0x48 scope:global align:4
+s_m9_t0 = .data:0x0003F1DC; // type:object size:0xC scope:global align:4
+s_m9_t0_2 = .data:0x0003F1E8; // type:object size:0xC scope:global align:4
+p_m9_t0 = .data:0x0003F1F4; // type:object size:0x4 scope:global align:4
+r_m9_t1 = .data:0x0003F1F8; // type:object size:0x3C scope:global align:4
+r_m9_t1_2 = .data:0x0003F234; // type:object size:0x38 scope:global align:4
+s_m9_t1 = .data:0x0003F26C; // type:object size:0xC scope:global align:4
+r_m9_t2 = .data:0x0003F278; // type:object size:0x44 scope:global align:4
+r_m9_t2_2 = .data:0x0003F2BC; // type:object size:0x3C scope:global align:4
+r_begining_september = .data:0x0003F2F8; // type:object size:0x20 scope:global align:4
+r_latter_september = .data:0x0003F318; // type:object size:0x20 scope:global align:4
+s_begining_september = .data:0x0003F338; // type:object size:0x20 scope:global align:4
+s_latter_september = .data:0x0003F358; // type:object size:0x20 scope:global align:4
+p_begining_september = .data:0x0003F378; // type:object size:0x20 scope:global align:4
+r_m10_t0 = .data:0x0003F398; // type:object size:0x40 scope:global align:4
+s_m10_t0 = .data:0x0003F3D8; // type:object size:0xC scope:global align:4
+r_m10_t1 = .data:0x0003F3E4; // type:object size:0x34 scope:global align:4
+r_m10_t2 = .data:0x0003F418; // type:object size:0x34 scope:global align:4
+r_begining_october = .data:0x0003F44C; // type:object size:0x20 scope:global align:4
+s_begining_october = .data:0x0003F46C; // type:object size:0x20 scope:global align:4
+r_m11_t0 = .data:0x0003F48C; // type:object size:0x38 scope:global align:4
+s_m11_t0 = .data:0x0003F4C4; // type:object size:0xC scope:global align:4
+r_m11_t1 = .data:0x0003F4D0; // type:object size:0x34 scope:global align:4
+r_m11_t2 = .data:0x0003F504; // type:object size:0x2C scope:global align:4
+r_begining_november = .data:0x0003F530; // type:object size:0x20 scope:global align:4
+s_begining_november = .data:0x0003F550; // type:object size:0x20 scope:global align:4
+r_m12_t0 = .data:0x0003F570; // type:object size:0x38 scope:global align:4
+s_m12_t0 = .data:0x0003F5A8; // type:object size:0x8 scope:global align:4
+r_m12_t1 = .data:0x0003F5B0; // type:object size:0x38 scope:global align:4
+r_m12_t2 = .data:0x0003F5E8; // type:object size:0x38 scope:global align:4
+r_begining_december = .data:0x0003F620; // type:object size:0x20 scope:global align:4
+s_begining_december = .data:0x0003F640; // type:object size:0x20 scope:global align:4
+f_bs_t0 = .data:0x0003F660; // type:object size:0xC scope:global align:4
+f_bs_t1 = .data:0x0003F66C; // type:object size:0xC scope:global align:4
+f_bs_t2 = .data:0x0003F678; // type:object size:0xC scope:global align:4
+f_il_t0 = .data:0x0003F684; // type:object size:0xC scope:global align:4
+f_il_t1 = .data:0x0003F690; // type:object size:0xC scope:global align:4
+f_il_t2 = .data:0x0003F69C; // type:object size:0xC scope:global align:4
+r_month = .data:0x0003F6A8; // type:object size:0x60 scope:global align:4
+s_month = .data:0x0003F708; // type:object size:0x60 scope:global align:4
+p_month = .data:0x0003F768; // type:object size:0x60 scope:global align:4
+f_event = .data:0x0003F7C8; // type:object size:0x20 scope:global align:4
+f_island = .data:0x0003F7E8; // type:object size:0x20 scope:global align:4
+env_rate_table$517 = .data:0x0003F808; // type:object size:0x1C scope:local align:4
+@621 = .data:0x0003F824; // type:object size:0x13 scope:local align:4 data:string
+@622 = .data:0x0003F838; // type:object size:0x68 scope:local align:4
+rate$721 = .data:0x0003F8A0; // type:object size:0x14 scope:local align:4
+chk_kind$754 = .data:0x0003F8B4; // type:object size:0xC scope:local align:4
+kaseki_data$783 = .data:0x0003F8C0; // type:object size:0x8 scope:local align:4 data:4byte
+whale_data$819 = .data:0x0003F8C8; // type:object size:0x8 scope:local align:4 data:4byte
+make_range_data_proc$840 = .data:0x0003F8D0; // type:object size:0x18 scope:local align:4
+l_insect_birth_sum = .data:0x0003F8E8; // type:object size:0x52 scope:global align:4
+l_insect_m3_t1 = .data:0x0003F93C; // type:object size:0x28 scope:global align:4
+l_insect_m3_t2 = .data:0x0003F964; // type:object size:0x28 scope:global align:4
+l_insect_m3_t3 = .data:0x0003F98C; // type:object size:0x48 scope:global align:4
+l_insect_m3_t4 = .data:0x0003F9D4; // type:object size:0x38 scope:global align:4
+l_insect_m3_t5 = .data:0x0003FA0C; // type:object size:0x28 scope:global align:4
+l_insect_m3_t6 = .data:0x0003FA34; // type:object size:0x28 scope:global align:4
+l_insect_m4_t1 = .data:0x0003FA5C; // type:object size:0x30 scope:global align:4
+l_insect_m4_t2 = .data:0x0003FA8C; // type:object size:0x30 scope:global align:4
+l_insect_m4_t3 = .data:0x0003FABC; // type:object size:0x58 scope:global align:4
+l_insect_m4_t4 = .data:0x0003FB14; // type:object size:0x50 scope:global align:4
+l_insect_m4_t5 = .data:0x0003FB64; // type:object size:0x30 scope:global align:4
+l_insect_m4_t6 = .data:0x0003FB94; // type:object size:0x30 scope:global align:4
+l_insect_m5_t1 = .data:0x0003FBC4; // type:object size:0x30 scope:global align:4
+l_insect_m5_t2 = .data:0x0003FBF4; // type:object size:0x30 scope:global align:4
+l_insect_m5_t3 = .data:0x0003FC24; // type:object size:0x60 scope:global align:4
+l_insect_m5_t4 = .data:0x0003FC84; // type:object size:0x60 scope:global align:4
+l_insect_m5_t5 = .data:0x0003FCE4; // type:object size:0x38 scope:global align:4
+l_insect_m5_t6 = .data:0x0003FD1C; // type:object size:0x38 scope:global align:4
+l_insect_m6_t1 = .data:0x0003FD54; // type:object size:0x38 scope:global align:4
+l_insect_m6_t2 = .data:0x0003FD8C; // type:object size:0x30 scope:global align:4
+l_insect_m6_t3 = .data:0x0003FDBC; // type:object size:0x78 scope:global align:4
+l_insect_m6_t4 = .data:0x0003FE34; // type:object size:0x78 scope:global align:4
+l_insect_m6_t5 = .data:0x0003FEAC; // type:object size:0x38 scope:global align:4
+l_insect_m6_t6 = .data:0x0003FEE4; // type:object size:0x40 scope:global align:4
+l_insect_m7_t1 = .data:0x0003FF24; // type:object size:0x58 scope:global align:4
+l_insect_m7_t2 = .data:0x0003FF7C; // type:object size:0x60 scope:global align:4
+l_insect_m7_t3 = .data:0x0003FFDC; // type:object size:0xA8 scope:global align:4
+l_insect_m7_t4 = .data:0x00040084; // type:object size:0x98 scope:global align:4
+l_insect_m7_t5 = .data:0x0004011C; // type:object size:0x48 scope:global align:4
+l_insect_m7_t6 = .data:0x00040164; // type:object size:0x58 scope:global align:4
+l_insect_m8_t1 = .data:0x000401BC; // type:object size:0x58 scope:global align:4
+l_insect_m8_t2 = .data:0x00040214; // type:object size:0x60 scope:global align:4
+l_insect_m8_t3 = .data:0x00040274; // type:object size:0xA8 scope:global align:4
+l_insect_m8_t4 = .data:0x0004031C; // type:object size:0x98 scope:global align:4
+l_insect_m8_t5 = .data:0x000403B4; // type:object size:0x50 scope:global align:4
+l_insect_m8_t6 = .data:0x00040404; // type:object size:0x58 scope:global align:4
+l_insect_m9_t1 = .data:0x0004045C; // type:object size:0x40 scope:global align:4
+l_insect_m9_t2 = .data:0x0004049C; // type:object size:0x40 scope:global align:4
+l_insect_m9_t3 = .data:0x000404DC; // type:object size:0x78 scope:global align:4
+l_insect_m9_t4 = .data:0x00040554; // type:object size:0x58 scope:global align:4
+l_insect_m9_t5 = .data:0x000405AC; // type:object size:0x68 scope:global align:4
+l_insect_m9_t6 = .data:0x00040614; // type:object size:0x48 scope:global align:4
+l_insect_m10_t1 = .data:0x0004065C; // type:object size:0x38 scope:global align:4
+l_insect_m10_t2 = .data:0x00040694; // type:object size:0x38 scope:global align:4
+l_insect_m10_t3 = .data:0x000406CC; // type:object size:0x60 scope:global align:4
+l_insect_m10_t4 = .data:0x0004072C; // type:object size:0x50 scope:global align:4
+l_insect_m10_t5 = .data:0x0004077C; // type:object size:0x50 scope:global align:4
+l_insect_m10_t6 = .data:0x000407CC; // type:object size:0x38 scope:global align:4
+l_insect_m11_t1 = .data:0x00040804; // type:object size:0x30 scope:global align:4
+l_insect_m11_t2 = .data:0x00040834; // type:object size:0x30 scope:global align:4
+l_insect_m11_t3 = .data:0x00040864; // type:object size:0x38 scope:global align:4
+l_insect_m11_t4 = .data:0x0004089C; // type:object size:0x38 scope:global align:4
+l_insect_m11_t5 = .data:0x000408D4; // type:object size:0x30 scope:global align:4
+l_insect_m11_t6 = .data:0x00040904; // type:object size:0x30 scope:global align:4
+l_insect_m_other_t = .data:0x00040934; // type:object size:0x18 scope:global align:4
+l_insect_isl_t1 = .data:0x0004094C; // type:object size:0x40 scope:global align:4
+l_insect_isl_t2 = .data:0x0004098C; // type:object size:0x48 scope:global align:4
+l_insect_isl_t3 = .data:0x000409D4; // type:object size:0x88 scope:global align:4
+l_insect_isl_t4 = .data:0x00040A5C; // type:object size:0x78 scope:global align:4
+l_insect_isl_t5 = .data:0x00040AD4; // type:object size:0x28 scope:global align:4
+l_insect_isl_t6 = .data:0x00040AFC; // type:object size:0x40 scope:global align:4
+l_hitodama_time_table = .data:0x00040B3C; // type:object size:0x8 scope:global align:4 data:byte
+l_insect_month = .data:0x00040B44; // type:object size:0x240 scope:global align:4
+l_insect_island = .data:0x00040D84; // type:object size:0x30 scope:global align:4
+rate$531 = .data:0x00040DB4; // type:object size:0x14 scope:local align:4
+additional_data$559 = .data:0x00040DC8; // type:object size:0x24 scope:local align:4
+renew_table$658 = .data:0x00040DEC; // type:object size:0x10 scope:local align:4
+env_rate_table$894 = .data:0x00040DFC; // type:object size:0x1C scope:local align:4
+aSOI_chk_live_area_data = .data:0x00040E18; // type:object size:0xA8 scope:global align:4 data:2byte
+Shop_Design_Profile = .data:0x00040EC0; // type:object size:0x24 scope:global align:4
+reserve_table$523 = .data:0x00040EE4; // type:object size:0xC scope:local align:4
+garagara_set_table$667 = .data:0x00040EF0; // type:object size:0x3C scope:local align:4
+Shop_Goods_Profile = .data:0x00040F30; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x00040F58; // type:label scope:local
+aSI_disp_data_table = .data:0x00040F58; // type:object size:0x78 scope:global align:4
+aSI_wall_default_table = .data:0x00040FD0; // type:object size:0xA scope:global align:4
+aSI_floor_default_table = .data:0x00040FDC; // type:object size:0xA scope:global align:4
+Shop_Indoor_Profile = .data:0x00040FE8; // type:object size:0x24 scope:global align:4
+scene_no_table$500 = .data:0x0004100C; // type:object size:0x14 scope:local align:4
+Shop_Level_Profile = .data:0x00041020; // type:object size:0x24 scope:global align:4
+renewal_chirashi_bunmen$453 = .data:0x00041044; // type:object size:0x10 scope:local align:4
+aSL_zakka_rw = .data:0x00041054; // type:object size:0x58 scope:global align:4
+aSL_conveni_rw = .data:0x000410AC; // type:object size:0x80 scope:global align:4
+aSL_super_rw = .data:0x0004112C; // type:object size:0xB8 scope:global align:4
+table$492 = .data:0x000411E4; // type:object size:0x10 scope:local align:4
+rw_cnt$493 = .data:0x000411F4; // type:object size:0x10 scope:local align:4
+Shop_Manekin_Profile = .data:0x00041208; // type:object size:0x24 scope:global align:4
+l_manekin_mBgData = .data:0x0004122C; // type:object size:0x10 scope:global align:4
+aShopUmbrella_disp_table = .data:0x00041240; // type:object size:0x80 scope:global align:4
+aShopUmbrella_xlu_disp_table = .data:0x000412C0; // type:object size:0x80 scope:global align:4
+Shop_Umbrella_Profile = .data:0x00041340; // type:object size:0x24 scope:global align:4
+l_umbrella_mBgData = .data:0x00041364; // type:object size:0x10 scope:global align:4
+proc_table$581 = .data:0x00041374; // type:object size:0xC scope:local align:4
+aSIGN_shadow_vtx_fix_flg_table = .data:0x00041380; // type:object size:0x4 scope:global align:4
+aSIGN_shadow_data = .data:0x00041384; // type:object size:0x14 scope:global align:4
+Ac_Sign_Profile = .data:0x00041398; // type:object size:0x24 scope:global align:4
+process$840 = .data:0x000413BC; // type:object size:0x1C scope:local align:4
+mdl$1055 = .data:0x000413D8; // type:object size:0x8 scope:local align:4
+mdl$1140 = .data:0x000413E0; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000413E8; // type:label scope:local
+Snowman_Profile = .data:0x000413E8; // type:object size:0x24 scope:global align:4 data:float
+aSMAN_CoInfoData = .data:0x0004140C; // type:object size:0x10 scope:global align:4
+aSMAN_StatusData = .data:0x0004141C; // type:object size:0xA scope:global align:4
+part_tbl$457 = .data:0x00041428; // type:object size:0x8 scope:local align:4
+snow_item_table$536 = .data:0x00041430; // type:object size:0x18 scope:local align:4
+chk_pos_tbl$568 = .data:0x00041448; // type:object size:0x48 scope:local align:4 data:float
+small_offset$649 = .data:0x00041490; // type:object size:0x4 scope:local align:4
+middle_offset$650 = .data:0x00041494; // type:object size:0x4 scope:local align:4
+large_offset$651 = .data:0x00041498; // type:object size:0x4 scope:local align:4
+angl_add_table$1018 = .data:0x0004149C; // type:object size:0x4 scope:local align:4
+@1038 = .data:0x000414A0; // type:object size:0xD scope:local align:4 data:string
+base_msg_no$1485 = .data:0x000414B0; // type:object size:0x10 scope:local align:4
+displayList$1566 = .data:0x000414C0; // type:object size:0x8 scope:local align:4
+T_Anrium1_Profile = .data:0x000414C8; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x000414EC; // type:object size:0x18 scope:local align:4
+T_Bag1_Profile = .data:0x00041508; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x0004152C; // type:object size:0x18 scope:local align:4
+T_Bag2_Profile = .data:0x00041548; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x0004156C; // type:object size:0x18 scope:local align:4
+T_Biscus1_Profile = .data:0x00041588; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x000415AC; // type:object size:0x18 scope:local align:4
+T_Biscus2_Profile = .data:0x000415C8; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x000415EC; // type:object size:0x18 scope:local align:4
+T_Biscus3_Profile = .data:0x00041608; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x0004162C; // type:object size:0x18 scope:local align:4
+T_Biscus4_Profile = .data:0x00041648; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x0004166C; // type:object size:0x18 scope:local align:4
+T_Cobra1_Profile = .data:0x00041688; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x000416AC; // type:object size:0x18 scope:local align:4
+T_Cracker_Profile = .data:0x000416C8; // type:object size:0x24 scope:global align:4
+aim$433 = .data:0x000416EC; // type:object size:0x8 scope:local align:4
+process$451 = .data:0x000416F4; // type:object size:0x18 scope:local align:4
+start_scale$452 = .data:0x0004170C; // type:object size:0x18 scope:local align:4
+T_Flag_Profile = .data:0x00041728; // type:object size:0x24 scope:global align:4
+T_Hanabi_Profile = .data:0x00041750; // type:object size:0x24 scope:global align:4
+aim$437 = .data:0x00041774; // type:object size:0x8 scope:local align:4
+process$455 = .data:0x0004177C; // type:object size:0x18 scope:local align:4
+start_scale$456 = .data:0x00041794; // type:object size:0x18 scope:local align:4
+T_Hasu1_Profile = .data:0x000417B0; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x000417D4; // type:object size:0x18 scope:local align:4
+T_Hat1_Profile = .data:0x000417F0; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041814; // type:object size:0x18 scope:local align:4
+T_Hat2_Profile = .data:0x00041830; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041854; // type:object size:0x18 scope:local align:4
+T_Hat3_Profile = .data:0x00041870; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041894; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x000418B0; // type:label scope:local
+aTKT_anm_dt = .data:0x000418B0; // type:object size:0x48 scope:global align:4
+T_Keitai_Profile = .data:0x000418F8; // type:object size:0x24 scope:global align:4
+start_scale$434 = .data:0x0004191C; // type:object size:0x8 scope:local align:4
+end_scale$435 = .data:0x00041924; // type:object size:0x8 scope:local align:4
+start_chno$436 = .data:0x0004192C; // type:object size:0x8 scope:local align:4
+end_chno$437 = .data:0x00041934; // type:object size:0x8 scope:local align:4
+process$466 = .data:0x0004193C; // type:object size:0x18 scope:local align:4
+T_NpcSao_Profile = .data:0x00041958; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x0004197C; // type:object size:0x18 scope:local align:4
+T_Pistol_Profile = .data:0x00041998; // type:object size:0x24 scope:global align:4
+aim$433 = .data:0x000419BC; // type:object size:0x8 scope:local align:4
+process$451 = .data:0x000419C4; // type:object size:0x18 scope:local align:4
+start_scale$452 = .data:0x000419DC; // type:object size:0x18 scope:local align:4
+T_Rei1_Profile = .data:0x000419F8; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041A1C; // type:object size:0x18 scope:local align:4
+T_Rei2_Profile = .data:0x00041A38; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041A5C; // type:object size:0x18 scope:local align:4
+T_Tama_Profile = .data:0x00041A78; // type:object size:0x24 scope:global align:4
+displayList$431 = .data:0x00041A9C; // type:object size:0x10 scope:local align:4
+texture$432 = .data:0x00041AAC; // type:object size:0x30 scope:local align:4
+T_Tumbler_Profile = .data:0x00041AE0; // type:object size:0x24 scope:global align:4
+aim$433 = .data:0x00041B04; // type:object size:0x8 scope:local align:4
+process$451 = .data:0x00041B0C; // type:object size:0x18 scope:local align:4
+start_scale$452 = .data:0x00041B24; // type:object size:0x18 scope:local align:4
+T_Umbrella_Profile = .data:0x00041B40; // type:object size:0x24 scope:global align:4
+e_open_sect_table$445 = .data:0x00041B64; // type:object size:0x18 scope:local align:4
+e_open_scale_table$446 = .data:0x00041B7C; // type:object size:0x30 scope:local align:4
+kasa_open_sect_table$447 = .data:0x00041BAC; // type:object size:0x10 scope:local align:4
+kasa_open_scale_table$448 = .data:0x00041BBC; // type:object size:0x20 scope:local align:4
+open_data_table$449 = .data:0x00041BDC; // type:object size:0x18 scope:local align:4
+e_close_sect_table$450 = .data:0x00041BF4; // type:object size:0x18 scope:local align:4
+e_close_scale_table$451 = .data:0x00041C0C; // type:object size:0x30 scope:local align:4
+kasa_close_sect_table$452 = .data:0x00041C3C; // type:object size:0x10 scope:local align:4
+kasa_close_scale_table$453 = .data:0x00041C4C; // type:object size:0x20 scope:local align:4
+close_data_table$454 = .data:0x00041C6C; // type:object size:0x18 scope:local align:4
+data_table$455 = .data:0x00041C84; // type:object size:0x18 scope:local align:4
+max_anm$475 = .data:0x00041C9C; // type:object size:0x18 scope:local align:4
+process$496 = .data:0x00041CB4; // type:object size:0x18 scope:local align:4
+draw_dt$515 = .data:0x00041CCC; // type:object size:0x140 scope:local align:4
+T_Utiwa_Profile = .data:0x00041E10; // type:object size:0x24 scope:global align:4
+aim$433 = .data:0x00041E34; // type:object size:0x8 scope:local align:4
+process$451 = .data:0x00041E3C; // type:object size:0x18 scope:local align:4
+start_scale$452 = .data:0x00041E54; // type:object size:0x18 scope:local align:4
+T_Zinnia1_Profile = .data:0x00041E70; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041E94; // type:object size:0x18 scope:local align:4
+T_Zinnia2_Profile = .data:0x00041EB0; // type:object size:0x24 scope:global align:4
+process$437 = .data:0x00041ED4; // type:object size:0x18 scope:local align:4
+Tokyoso_Control_Profile = .data:0x00041EF0; // type:object size:0x24 scope:global align:4
+process$549 = .data:0x00041F14; // type:object size:0x24 scope:local align:4
+init_table = .data:0x00041F38; // type:object size:0x54 scope:local align:4
+tableX$732 = .data:0x00041F8C; // type:object size:0x8 scope:local align:4
+tableZ$733 = .data:0x00041F94; // type:object size:0x8 scope:local align:4
+tableX$739 = .data:0x00041F9C; // type:object size:0x4 scope:local align:4
+tableXR$740 = .data:0x00041FA0; // type:object size:0x8 scope:local align:4
+dt_tbl$750 = .data:0x00041FA8; // type:object size:0x68 scope:local align:4
+Tools_Profile = .data:0x00042010; // type:object size:0x24 scope:global align:4
+profile_table$395 = .data:0x00042034; // type:object size:0x88 scope:local align:4
+TrainDoor_Profile = .data:0x000420C0; // type:object size:0x24 scope:global align:4
+chk_pat$441 = .data:0x000420E4; // type:object size:0x8 scope:local align:4
+se_no$442 = .data:0x000420EC; // type:object size:0x4 scope:local align:4
+aTrainWindow_tree_pal_table = .data:0x00042100; // type:object size:0x1E0 scope:global align:32
+aTrainWindow_out_cloud = .data:0x000422E0; // type:object size:0x4 scope:global align:4
+aTrainWindow_evw_anime_data = .data:0x000422E4; // type:object size:0x8 scope:global align:4
+Train_Window_Profile = .data:0x000422EC; // type:object size:0x24 scope:global align:4
+till_data$434 = .data:0x00042310; // type:object size:0x1E scope:local align:4 data:byte
+Tunahiki_Control_Profile = .data:0x00042330; // type:object size:0x24 scope:global align:4
+process$431 = .data:0x00042354; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00042358; // type:label scope:local
+Uki_Profile = .data:0x00042358; // type:object size:0x24 scope:global align:4
+aUKI_CoInfoData = .data:0x0004237C; // type:object size:0x10 scope:global align:4
+aUKI_StatusData = .data:0x0004238C; // type:object size:0xA scope:global align:4
+gyoei_type = .data:0x00042398; // type:object size:0x168 scope:local align:4
+fish_data$461 = .data:0x00042500; // type:object size:0x5A scope:local align:4
+@524 = .data:0x0004255C; // type:object size:0x12 scope:local align:4 data:string
+@533 = .data:0x00042570; // type:object size:0x38 scope:local align:4
+vib_data_table$537 = .data:0x000425A8; // type:object size:0x80 scope:local align:4
+vib_data_table$544 = .data:0x00042628; // type:object size:0x80 scope:local align:4
+angl_add_table$650 = .data:0x000426A8; // type:object size:0x4 scope:local align:4
+angl$836 = .data:0x000426AC; // type:object size:0x10 scope:local align:4
+spd$837 = .data:0x000426BC; // type:object size:0x20 scope:local align:4
+timer$923 = .data:0x000426DC; // type:object size:0x10 scope:local align:4
+init_proc$944 = .data:0x000426EC; // type:object size:0x2C scope:local align:4
+Uki_move_proc$949 = .data:0x00042718; // type:object size:0x2C scope:local align:4
+@1061 = .data:0x00042744; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00042768; // type:label scope:local
+BgCherryItem_Profile = .data:0x00042768; // type:object size:0x24 scope:global align:4
+pos_table = .data:0x0004278C; // type:object size:0x40 scope:local align:4
+pos_table2 = .data:0x000427CC; // type:object size:0x40 scope:local align:4
+typeData_table_bgCherryItem = .data:0x0004280C; // type:object size:0x624 scope:global align:4
+typeData_table_bgCherryItem2 = .data:0x00042E30; // type:object size:0x4F8 scope:global align:4
+typeData_table_dummy = .data:0x00043328; // type:object size:0xC scope:local align:4
+c_tree_DL_table = .data:0x00043334; // type:object size:0x7C scope:global align:4
+c_tree0_list = .data:0x000433B0; // type:object size:0x8 scope:global align:4
+c_tree0_list2 = .data:0x000433B8; // type:object size:0x8 scope:global align:4
+c_tree0_shadow_list = .data:0x000433C0; // type:object size:0x8 scope:global align:4
+c_tree1_list = .data:0x000433C8; // type:object size:0x8 scope:global align:4
+c_tree1_list2 = .data:0x000433D0; // type:object size:0x8 scope:global align:4
+c_tree1_shadow_list = .data:0x000433D8; // type:object size:0x8 scope:global align:4
+c_tree2_list = .data:0x000433E0; // type:object size:0x8 scope:global align:4
+c_tree2_list2 = .data:0x000433E8; // type:object size:0x8 scope:global align:4
+c_tree2_shadow_list = .data:0x000433F0; // type:object size:0x8 scope:global align:4
+c_tree3_list = .data:0x000433F8; // type:object size:0x8 scope:global align:4
+c_tree4_list = .data:0x00043400; // type:object size:0x8 scope:global align:4
+tree4_ap_list = .data:0x00043408; // type:object size:0x8 scope:local align:4
+tree4_or_list = .data:0x00043410; // type:object size:0x8 scope:local align:4
+tree4_ph_list = .data:0x00043418; // type:object size:0x8 scope:local align:4
+tree4_pr_list = .data:0x00043420; // type:object size:0x8 scope:local align:4
+tree4_nt_list = .data:0x00043428; // type:object size:0x8 scope:local align:4
+tree4_bg_list = .data:0x00043430; // type:object size:0x8 scope:local align:4
+c_tree0_dead_list = .data:0x00043438; // type:object size:0x8 scope:global align:4
+c_tree0_list_table = .data:0x00043440; // type:object size:0x8 scope:global align:4
+c_tree1_list_table = .data:0x00043448; // type:object size:0x8 scope:global align:4
+c_tree2_list_table = .data:0x00043450; // type:object size:0x8 scope:global align:4
+c_tree3_list_table = .data:0x00043458; // type:object size:0x4 scope:global align:4
+c_tree4_list_table = .data:0x0004345C; // type:object size:0x4 scope:global align:4
+tree4_ap_list_table = .data:0x00043460; // type:object size:0xC scope:local align:4
+tree4_or_list_table = .data:0x0004346C; // type:object size:0xC scope:local align:4
+tree4_ph_list_table = .data:0x00043478; // type:object size:0xC scope:local align:4
+tree4_pr_list_table = .data:0x00043484; // type:object size:0xC scope:local align:4
+tree4_nt_list_table = .data:0x00043490; // type:object size:0xC scope:local align:4
+tree4_bg_list_table = .data:0x0004349C; // type:object size:0xC scope:local align:4
+c_tree0_dead_list_table = .data:0x000434A8; // type:object size:0x4 scope:global align:4
+c_tree_shadow_v_fix = .data:0x000434AC; // type:object size:0x4 scope:global align:4
+c_tree4_part = .data:0x000434B0; // type:object size:0x20 scope:global align:4
+c_tree3_part = .data:0x000434D0; // type:object size:0x20 scope:global align:4
+c_tree2_part = .data:0x000434F0; // type:object size:0x20 scope:global align:4
+c_tree1_part = .data:0x00043510; // type:object size:0x20 scope:global align:4
+c_tree0_part = .data:0x00043530; // type:object size:0x20 scope:global align:4
+tree4_ap_part = .data:0x00043550; // type:object size:0x20 scope:local align:4
+tree4_or_part = .data:0x00043570; // type:object size:0x20 scope:local align:4
+tree4_ph_part = .data:0x00043590; // type:object size:0x20 scope:local align:4
+tree4_pr_part = .data:0x000435B0; // type:object size:0x20 scope:local align:4
+tree4_nt_part = .data:0x000435D0; // type:object size:0x20 scope:local align:4
+tree4_bg_part = .data:0x000435F0; // type:object size:0x20 scope:local align:4
+c_tree0_dead_part = .data:0x00043610; // type:object size:0x20 scope:global align:4
+palm_DL_table = .data:0x00043630; // type:object size:0x68 scope:local align:4
+palm1_list = .data:0x00043698; // type:object size:0x8 scope:local align:4
+palm1_dead_list = .data:0x000436A0; // type:object size:0x8 scope:local align:4
+palm2_list = .data:0x000436A8; // type:object size:0x8 scope:local align:4
+palm3_leaf_list = .data:0x000436B0; // type:object size:0x8 scope:local align:4
+palm3_trunk_list = .data:0x000436B8; // type:object size:0x8 scope:local align:4
+palm4_leaf_list = .data:0x000436C0; // type:object size:0x8 scope:local align:4
+palm4_trunk_list = .data:0x000436C8; // type:object size:0x8 scope:local align:4
+palm5_leaf_list = .data:0x000436D0; // type:object size:0x8 scope:local align:4
+palm5_trunk_list = .data:0x000436D8; // type:object size:0x8 scope:local align:4
+palm5_coco_list = .data:0x000436E0; // type:object size:0x8 scope:local align:4
+palm3_shadow_list = .data:0x000436E8; // type:object size:0x8 scope:local align:4
+palm4_shadow_list = .data:0x000436F0; // type:object size:0x8 scope:local align:4
+palm5_shadow_list = .data:0x000436F8; // type:object size:0x8 scope:local align:4
+palm1_list_table = .data:0x00043700; // type:object size:0x4 scope:local align:4
+palm2_list_table = .data:0x00043704; // type:object size:0x4 scope:local align:4
+palm3_list_table = .data:0x00043708; // type:object size:0x8 scope:local align:4
+palm4_list_table = .data:0x00043710; // type:object size:0x8 scope:local align:4
+palm5_list_table = .data:0x00043718; // type:object size:0x8 scope:local align:4
+palm5_cc_list_table = .data:0x00043720; // type:object size:0xC scope:local align:4
+palm1_dead_list_table = .data:0x0004372C; // type:object size:0x4 scope:local align:4
+palm3_shadow_v_fix = .data:0x00043730; // type:object size:0x4 scope:local align:4
+palm5_shadow_v_fix = .data:0x00043734; // type:object size:0x4 scope:local align:4
+palm000_part = .data:0x00043738; // type:object size:0x20 scope:local align:4
+palm001_part = .data:0x00043758; // type:object size:0x20 scope:local align:4
+palm002_part = .data:0x00043778; // type:object size:0x20 scope:local align:4
+palm003_part = .data:0x00043798; // type:object size:0x20 scope:local align:4
+palm004_part = .data:0x000437B8; // type:object size:0x20 scope:local align:4
+palm004_cc_part = .data:0x000437D8; // type:object size:0x20 scope:local align:4
+palm000_dead_part = .data:0x000437F8; // type:object size:0x20 scope:local align:4
+Cedar_DL_table = .data:0x00043818; // type:object size:0x60 scope:local align:4
+cedar3_shadow_list = .data:0x00043878; // type:object size:0x8 scope:local align:4
+cedar4_shadow_list = .data:0x00043880; // type:object size:0x8 scope:local align:4
+cedar5_shadow_list = .data:0x00043888; // type:object size:0x8 scope:local align:4
+cedar1_list = .data:0x00043890; // type:object size:0x8 scope:local align:4
+cedar1_dead_list = .data:0x00043898; // type:object size:0x8 scope:local align:4
+cedar2_list = .data:0x000438A0; // type:object size:0x8 scope:local align:4
+cedar3_leaf_list = .data:0x000438A8; // type:object size:0x8 scope:local align:4
+cedar3_trunk_list = .data:0x000438B0; // type:object size:0x8 scope:local align:4
+cedar4_leaf_list = .data:0x000438B8; // type:object size:0x8 scope:local align:4
+cedar4_trunk_list = .data:0x000438C0; // type:object size:0x8 scope:local align:4
+cedar5_leaf_list = .data:0x000438C8; // type:object size:0x8 scope:local align:4
+cedar5_trunk_list = .data:0x000438D0; // type:object size:0x8 scope:local align:4
+cedar1_list_table = .data:0x000438D8; // type:object size:0x4 scope:local align:4
+cedar1_dead_list_table = .data:0x000438DC; // type:object size:0x4 scope:local align:4
+cedar2_list_table = .data:0x000438E0; // type:object size:0x4 scope:local align:4
+cedar3_list_table = .data:0x000438E4; // type:object size:0x8 scope:local align:4
+cedar4_list_table = .data:0x000438EC; // type:object size:0x8 scope:local align:4
+cedar5_list_table = .data:0x000438F4; // type:object size:0x8 scope:local align:4
+cedar_shadow_v_fix = .data:0x000438FC; // type:object size:0x4 scope:local align:4
+cedar000_part = .data:0x00043900; // type:object size:0x20 scope:local align:4
+cedar001_part = .data:0x00043920; // type:object size:0x20 scope:local align:4
+cedar002_part = .data:0x00043940; // type:object size:0x20 scope:local align:4
+cedar003_part = .data:0x00043960; // type:object size:0x20 scope:local align:4
+cedar004_part = .data:0x00043980; // type:object size:0x20 scope:local align:4
+cedar000_dead_part = .data:0x000439A0; // type:object size:0x20 scope:local align:4
+GTree_DL_table = .data:0x000439C0; // type:object size:0x60 scope:local align:4
+gold_tree1_list = .data:0x00043A20; // type:object size:0x8 scope:local align:4
+gold_tree1_dead_list = .data:0x00043A28; // type:object size:0x8 scope:local align:4
+gold_tree2_list = .data:0x00043A30; // type:object size:0x8 scope:local align:4
+gold_tree3_leaf_list = .data:0x00043A38; // type:object size:0x8 scope:local align:4
+gold_tree3_trunk_list = .data:0x00043A40; // type:object size:0x8 scope:local align:4
+gold_tree4_leaf_list = .data:0x00043A48; // type:object size:0x8 scope:local align:4
+gold_tree4_trunk_list = .data:0x00043A50; // type:object size:0x8 scope:local align:4
+gold_tree5_leaf_list = .data:0x00043A58; // type:object size:0x8 scope:local align:4
+gold_tree5_trunk_list = .data:0x00043A60; // type:object size:0x8 scope:local align:4
+gold_tree3_shadow_list = .data:0x00043A68; // type:object size:0x8 scope:local align:4
+gold_tree4_shadow_list = .data:0x00043A70; // type:object size:0x8 scope:local align:4
+gold_tree5_shadow_list = .data:0x00043A78; // type:object size:0x8 scope:local align:4
+gold_tree1_list_table = .data:0x00043A80; // type:object size:0x4 scope:local align:4
+gold_tree1_dead_list_table = .data:0x00043A84; // type:object size:0x4 scope:local align:4
+gold_tree2_list_table = .data:0x00043A88; // type:object size:0x4 scope:local align:4
+gold_tree3_list_table = .data:0x00043A8C; // type:object size:0x8 scope:local align:4
+gold_tree4_list_table = .data:0x00043A94; // type:object size:0x8 scope:local align:4
+gold_tree5_list_table = .data:0x00043A9C; // type:object size:0x8 scope:local align:4
+gold_tree_shadow_v_fix = .data:0x00043AA4; // type:object size:0x4 scope:local align:4
+gold_tree000_part = .data:0x00043AA8; // type:object size:0x20 scope:local align:4
+gold_tree001_part = .data:0x00043AC8; // type:object size:0x20 scope:local align:4
+gold_tree002_part = .data:0x00043AE8; // type:object size:0x20 scope:local align:4
+gold_tree003_part = .data:0x00043B08; // type:object size:0x20 scope:local align:4
+gold_tree004_part = .data:0x00043B28; // type:object size:0x20 scope:local align:4
+gold_tree000_dead_part = .data:0x00043B48; // type:object size:0x20 scope:local align:4
+c_stump_DL_table = .data:0x00043B68; // type:object size:0x38 scope:global align:4
+c_stump_list0 = .data:0x00043BA0; // type:object size:0x8 scope:global align:4
+c_stump_shadow_list0 = .data:0x00043BA8; // type:object size:0x8 scope:global align:4
+c_stump_list1 = .data:0x00043BB0; // type:object size:0x8 scope:global align:4
+c_stump_shadow_list1 = .data:0x00043BB8; // type:object size:0x8 scope:global align:4
+c_stump_list2 = .data:0x00043BC0; // type:object size:0x8 scope:global align:4
+c_stump_shadow_list2 = .data:0x00043BC8; // type:object size:0x8 scope:global align:4
+c_stump_list3 = .data:0x00043BD0; // type:object size:0x8 scope:global align:4
+c_stump_list_table0 = .data:0x00043BD8; // type:object size:0x4 scope:global align:4
+c_stump_list_table1 = .data:0x00043BDC; // type:object size:0x4 scope:global align:4
+c_stump_list_table2 = .data:0x00043BE0; // type:object size:0x4 scope:global align:4
+c_stump_list_table3 = .data:0x00043BE4; // type:object size:0x4 scope:global align:4
+c_stump_shadow_v_fix = .data:0x00043BE8; // type:object size:0x4 scope:global align:4
+c_stump_part4 = .data:0x00043BEC; // type:object size:0x20 scope:global align:4
+c_stump_part3 = .data:0x00043C0C; // type:object size:0x20 scope:global align:4
+c_stump_part2 = .data:0x00043C2C; // type:object size:0x20 scope:global align:4
+c_stump_part1 = .data:0x00043C4C; // type:object size:0x20 scope:global align:4
+palm_stump_DL_table = .data:0x00043C6C; // type:object size:0x38 scope:local align:4
+pstump3_shadow_list = .data:0x00043CA4; // type:object size:0x8 scope:local align:4
+pstump4_shadow_list = .data:0x00043CAC; // type:object size:0x8 scope:local align:4
+pstump5_shadow_list = .data:0x00043CB4; // type:object size:0x8 scope:local align:4
+pstump2_list = .data:0x00043CBC; // type:object size:0x8 scope:local align:4
+pstump3_list = .data:0x00043CC4; // type:object size:0x8 scope:local align:4
+pstump4_list = .data:0x00043CCC; // type:object size:0x8 scope:local align:4
+pstump5_list = .data:0x00043CD4; // type:object size:0x8 scope:local align:4
+pstump2_list_table = .data:0x00043CDC; // type:object size:0x4 scope:local align:4
+pstump3_list_table = .data:0x00043CE0; // type:object size:0x4 scope:local align:4
+pstump4_list_table = .data:0x00043CE4; // type:object size:0x4 scope:local align:4
+pstump5_list_table = .data:0x00043CE8; // type:object size:0x4 scope:local align:4
+pstump3_shadow_v_fix = .data:0x00043CEC; // type:object size:0x4 scope:local align:4
+pstump5_shadow_v_fix = .data:0x00043CF0; // type:object size:0x4 scope:local align:4
+palm_stump001_part = .data:0x00043CF4; // type:object size:0x20 scope:local align:4
+palm_stump002_part = .data:0x00043D14; // type:object size:0x20 scope:local align:4
+palm_stump003_part = .data:0x00043D34; // type:object size:0x20 scope:local align:4
+palm_stump004_part = .data:0x00043D54; // type:object size:0x20 scope:local align:4
+CedarStump_DL_table = .data:0x00043D74; // type:object size:0x38 scope:local align:4
+cstump3_shadow_list = .data:0x00043DAC; // type:object size:0x8 scope:local align:4
+cstump4_shadow_list = .data:0x00043DB4; // type:object size:0x8 scope:local align:4
+cstump5_shadow_list = .data:0x00043DBC; // type:object size:0x8 scope:local align:4
+cstump2_list = .data:0x00043DC4; // type:object size:0x8 scope:local align:4
+cstump3_list = .data:0x00043DCC; // type:object size:0x8 scope:local align:4
+cstump4_list = .data:0x00043DD4; // type:object size:0x8 scope:local align:4
+cstump5_list = .data:0x00043DDC; // type:object size:0x8 scope:local align:4
+cstump2_list_table = .data:0x00043DE4; // type:object size:0x4 scope:local align:4
+cstump3_list_table = .data:0x00043DE8; // type:object size:0x4 scope:local align:4
+cstump4_list_table = .data:0x00043DEC; // type:object size:0x4 scope:local align:4
+cstump5_list_table = .data:0x00043DF0; // type:object size:0x4 scope:local align:4
+cstump_shadow_v_fix = .data:0x00043DF4; // type:object size:0x4 scope:local align:4
+cedar_stump001_part = .data:0x00043DF8; // type:object size:0x20 scope:local align:4
+cedar_stump002_part = .data:0x00043E18; // type:object size:0x20 scope:local align:4
+cedar_stump003_part = .data:0x00043E38; // type:object size:0x20 scope:local align:4
+cedar_stump004_part = .data:0x00043E58; // type:object size:0x20 scope:local align:4
+GStump_DL_table = .data:0x00043E78; // type:object size:0x38 scope:local align:4
+gold_stump2_list = .data:0x00043EB0; // type:object size:0x8 scope:local align:4
+gold_stump3_list = .data:0x00043EB8; // type:object size:0x8 scope:local align:4
+gold_stump4_list = .data:0x00043EC0; // type:object size:0x8 scope:local align:4
+gold_stump5_list = .data:0x00043EC8; // type:object size:0x8 scope:local align:4
+gold_stump3_shadow_list = .data:0x00043ED0; // type:object size:0x8 scope:local align:4
+gold_stump4_shadow_list = .data:0x00043ED8; // type:object size:0x8 scope:local align:4
+gold_stump5_shadow_list = .data:0x00043EE0; // type:object size:0x8 scope:local align:4
+gold_stump2_list_table = .data:0x00043EE8; // type:object size:0x4 scope:local align:4
+gold_stump3_list_table = .data:0x00043EEC; // type:object size:0x4 scope:local align:4
+gold_stump4_list_table = .data:0x00043EF0; // type:object size:0x4 scope:local align:4
+gold_stump5_list_table = .data:0x00043EF4; // type:object size:0x4 scope:local align:4
+gold_stump_shadow_v_fix = .data:0x00043EF8; // type:object size:0x4 scope:local align:4
+gold_tree_stump001_part = .data:0x00043EFC; // type:object size:0x20 scope:local align:4
+gold_tree_stump002_part = .data:0x00043F1C; // type:object size:0x20 scope:local align:4
+gold_tree_stump003_part = .data:0x00043F3C; // type:object size:0x20 scope:local align:4
+gold_tree_stump004_part = .data:0x00043F5C; // type:object size:0x20 scope:local align:4
+c_fence_DL_table = .data:0x00043F7C; // type:object size:0x10 scope:global align:4
+c_fence_list = .data:0x00043F8C; // type:object size:0x8 scope:global align:4
+c_fence_list_table = .data:0x00043F94; // type:object size:0x4 scope:global align:4
+c_fence_shadow_list = .data:0x00043F98; // type:object size:0x8 scope:global align:4
+c_fence_shadow_v_fix = .data:0x00043FA0; // type:object size:0x4 scope:global align:4
+c_fence_part = .data:0x00043FA4; // type:object size:0x20 scope:global align:4
+c_notice_DL_table = .data:0x00043FC4; // type:object size:0x10 scope:global align:4
+c_notice_list = .data:0x00043FD4; // type:object size:0x8 scope:global align:4
+c_notice_list_table = .data:0x00043FDC; // type:object size:0x4 scope:global align:4
+c_notice_shadow_list = .data:0x00043FE0; // type:object size:0x8 scope:global align:4
+c_notice_shadow_v_fix = .data:0x00043FE8; // type:object size:0x4 scope:global align:4
+c_notice_part = .data:0x00043FEC; // type:object size:0x20 scope:global align:4
+c_melody_DL_table = .data:0x0004400C; // type:object size:0x10 scope:global align:4
+c_melody_list = .data:0x0004401C; // type:object size:0x8 scope:global align:4
+c_melody_list_table = .data:0x00044024; // type:object size:0x4 scope:global align:4
+c_melody_shadow_list = .data:0x00044028; // type:object size:0x8 scope:global align:4
+c_melody_shadow_v_fix = .data:0x00044030; // type:object size:0x4 scope:global align:4
+c_melody_part = .data:0x00044034; // type:object size:0x20 scope:global align:4
+c_fences_DL_table = .data:0x00044054; // type:object size:0x10 scope:global align:4
+c_fences_list = .data:0x00044064; // type:object size:0x8 scope:global align:4
+c_fences_list_table = .data:0x0004406C; // type:object size:0x4 scope:global align:4
+c_fences_shadow_list = .data:0x00044070; // type:object size:0x8 scope:global align:4
+c_fences_shadow_v_fix = .data:0x00044078; // type:object size:0x4 scope:global align:4
+c_fences_part = .data:0x0004407C; // type:object size:0x20 scope:global align:4
+c_mapboard_DL_table = .data:0x0004409C; // type:object size:0x10 scope:global align:4
+c_mapboard_list = .data:0x000440AC; // type:object size:0x8 scope:global align:4
+c_mapboard_list_table = .data:0x000440B4; // type:object size:0x4 scope:global align:4
+c_mapboard_shadow_list = .data:0x000440B8; // type:object size:0x8 scope:global align:4
+c_mapboard_shadow_v_fix = .data:0x000440C0; // type:object size:0x4 scope:global align:4
+c_mapboard_part = .data:0x000440C4; // type:object size:0x20 scope:global align:4
+hole_DL_table = .data:0x000440E4; // type:object size:0x6C scope:local align:4
+hole00_g_list = .data:0x00044150; // type:object size:0x8 scope:local align:4
+hole00_g_list_table = .data:0x00044158; // type:object size:0x4 scope:local align:4
+hole00_g_part = .data:0x0004415C; // type:object size:0x20 scope:local align:4
+hole00_s_list = .data:0x0004417C; // type:object size:0x8 scope:local align:4
+hole00_s_list_table = .data:0x00044184; // type:object size:0x4 scope:local align:4
+hole00_s_part = .data:0x00044188; // type:object size:0x20 scope:local align:4
+crack_DL_table = .data:0x000441A8; // type:object size:0x6C scope:local align:4
+crack00_g_list = .data:0x00044214; // type:object size:0x8 scope:local align:4
+crack00_g_list_table = .data:0x0004421C; // type:object size:0x4 scope:local align:4
+crack00_g_part = .data:0x00044220; // type:object size:0x20 scope:local align:4
+crack00_s_list = .data:0x00044240; // type:object size:0x8 scope:local align:4
+crack00_s_list_table = .data:0x00044248; // type:object size:0x4 scope:local align:4
+crack00_s_part = .data:0x0004424C; // type:object size:0x20 scope:local align:4
+c_flower_DL_table = .data:0x0004426C; // type:object size:0x20 scope:global align:4
+c_flower_list00 = .data:0x0004428C; // type:object size:0x8 scope:global align:4
+c_flower_list01 = .data:0x00044294; // type:object size:0x8 scope:global align:4
+c_flower_list02 = .data:0x0004429C; // type:object size:0x8 scope:global align:4
+c_flower_leaf_list = .data:0x000442A4; // type:object size:0x8 scope:global align:4
+c_flower_list_table00 = .data:0x000442AC; // type:object size:0x4 scope:global align:4
+c_flower_list_table01 = .data:0x000442B0; // type:object size:0x4 scope:global align:4
+c_flower_list_table02 = .data:0x000442B4; // type:object size:0x4 scope:global align:4
+c_flower_leaf_list_table = .data:0x000442B8; // type:object size:0x4 scope:global align:4
+c_flower_leaf_part = .data:0x000442BC; // type:object size:0x20 scope:global align:4
+c_flower_part00 = .data:0x000442DC; // type:object size:0x20 scope:global align:4
+c_flower_part01 = .data:0x000442FC; // type:object size:0x20 scope:global align:4
+c_flower_part02 = .data:0x0004431C; // type:object size:0x20 scope:global align:4
+c_grass_DL_table = .data:0x0004433C; // type:object size:0x10 scope:global align:4
+c_grass0_list = .data:0x0004434C; // type:object size:0x8 scope:global align:4
+c_grass0_list_table = .data:0x00044354; // type:object size:0x4 scope:global align:4
+c_grass0_part = .data:0x00044358; // type:object size:0x20 scope:global align:4
+honycomb_DL_table = .data:0x00044378; // type:object size:0x8 scope:local align:4
+honycomb_list = .data:0x00044380; // type:object size:0x8 scope:local align:4
+honycomb_list_table = .data:0x00044388; // type:object size:0x4 scope:local align:4
+honycomb_part = .data:0x0004438C; // type:object size:0x20 scope:local align:4
+stone_a_shadow_v_fix = .data:0x000443AC; // type:object size:0xA scope:local align:4
+stone_b_shadow_v_fix = .data:0x000443B8; // type:object size:0xC scope:local align:4
+stone_c_shadow_v_fix = .data:0x000443C4; // type:object size:0xC scope:local align:4
+stone_d_shadow_v_fix = .data:0x000443D0; // type:object size:0x8 scope:local align:4
+stone_e_shadow_v_fix = .data:0x000443D8; // type:object size:0xA scope:local align:4
+stone_DL_table = .data:0x000443E4; // type:object size:0x30 scope:local align:4
+stone_a_list = .data:0x00044414; // type:object size:0x8 scope:local align:4
+stone_a_shadow_list = .data:0x0004441C; // type:object size:0x8 scope:local align:4
+stone_a_list_table = .data:0x00044424; // type:object size:0x4 scope:local align:4
+stone_a_part = .data:0x00044428; // type:object size:0x20 scope:local align:4
+stone_b_part = .data:0x00044448; // type:object size:0x20 scope:local align:4
+stone_c_part = .data:0x00044468; // type:object size:0x20 scope:local align:4
+stone_d_part = .data:0x00044488; // type:object size:0x20 scope:local align:4
+stone_e_part = .data:0x000444A8; // type:object size:0x20 scope:local align:4
+tane_DL_table = .data:0x000444C8; // type:object size:0x8 scope:local align:4
+tane_list = .data:0x000444D0; // type:object size:0x8 scope:local align:4
+tane_list_table = .data:0x000444D8; // type:object size:0x4 scope:local align:4
+tane_part = .data:0x000444DC; // type:object size:0x20 scope:local align:4
+typeData_table_item1 = .data:0x000444FC; // type:object size:0xC scope:local align:4
+typeData_table_ftr = .data:0x00044508; // type:object size:0xC scope:local align:4
+typeData_table_crack = .data:0x00044514; // type:object size:0xC scope:local align:4
+apple_DL_table = .data:0x00044520; // type:object size:0x8 scope:local align:4
+apple_list = .data:0x00044528; // type:object size:0x8 scope:local align:4
+apple_list_table = .data:0x00044530; // type:object size:0x4 scope:local align:4
+apple_part = .data:0x00044534; // type:object size:0x20 scope:local align:4
+orange_DL_table = .data:0x00044554; // type:object size:0x8 scope:local align:4
+orange_list = .data:0x0004455C; // type:object size:0x8 scope:local align:4
+orange_list_table = .data:0x00044564; // type:object size:0x4 scope:local align:4
+orange_part = .data:0x00044568; // type:object size:0x20 scope:local align:4
+peach_DL_table = .data:0x00044588; // type:object size:0x8 scope:local align:4
+peach_list = .data:0x00044590; // type:object size:0x8 scope:local align:4
+peach_list_table = .data:0x00044598; // type:object size:0x4 scope:local align:4
+peach_part = .data:0x0004459C; // type:object size:0x20 scope:local align:4
+pear_DL_table = .data:0x000445BC; // type:object size:0x8 scope:local align:4
+pear_list = .data:0x000445C4; // type:object size:0x8 scope:local align:4
+pear_list_table = .data:0x000445CC; // type:object size:0x4 scope:local align:4
+pear_part = .data:0x000445D0; // type:object size:0x20 scope:local align:4
+nuts_DL_table = .data:0x000445F0; // type:object size:0x8 scope:local align:4
+nuts_list = .data:0x000445F8; // type:object size:0x8 scope:local align:4
+nuts_list_table = .data:0x00044600; // type:object size:0x4 scope:local align:4
+nuts_part = .data:0x00044604; // type:object size:0x20 scope:local align:4
+matutake_DL_table = .data:0x00044624; // type:object size:0x8 scope:local align:4
+matutake_list = .data:0x0004462C; // type:object size:0x8 scope:local align:4
+matutake_list_table = .data:0x00044634; // type:object size:0x4 scope:local align:4
+matutake_part = .data:0x00044638; // type:object size:0x20 scope:local align:4
+kabu_DL_table = .data:0x00044658; // type:object size:0x8 scope:local align:4
+kabu_list = .data:0x00044660; // type:object size:0x8 scope:local align:4
+kabu_list_table = .data:0x00044668; // type:object size:0x4 scope:local align:4
+kabu_part = .data:0x0004466C; // type:object size:0x20 scope:local align:4
+fish_DL_table = .data:0x0004468C; // type:object size:0x8 scope:local align:4
+fish_list = .data:0x00044694; // type:object size:0x8 scope:local align:4
+fish_list_table = .data:0x0004469C; // type:object size:0x4 scope:local align:4
+fish_part = .data:0x000446A0; // type:object size:0x20 scope:local align:4
+bag_DL_table = .data:0x000446C0; // type:object size:0x8 scope:local align:4
+bag_list = .data:0x000446C8; // type:object size:0x8 scope:local align:4
+bag_list_table = .data:0x000446D0; // type:object size:0x4 scope:local align:4
+bag_part = .data:0x000446D4; // type:object size:0x20 scope:local align:4
+leaf_DL_table = .data:0x000446F4; // type:object size:0x8 scope:local align:4
+leaf_list = .data:0x000446FC; // type:object size:0x8 scope:local align:4
+leaf_list_table = .data:0x00044704; // type:object size:0x4 scope:local align:4
+leaf_part = .data:0x00044708; // type:object size:0x20 scope:local align:4
+roll_DL_table = .data:0x00044728; // type:object size:0x8 scope:local align:4
+roll_list = .data:0x00044730; // type:object size:0x8 scope:local align:4
+roll_list_table = .data:0x00044738; // type:object size:0x4 scope:local align:4
+roll_part = .data:0x0004473C; // type:object size:0x20 scope:local align:4
+box_DL_table = .data:0x0004475C; // type:object size:0x8 scope:local align:4
+box_list = .data:0x00044764; // type:object size:0x8 scope:local align:4
+box_list_table = .data:0x0004476C; // type:object size:0x4 scope:local align:4
+box_part = .data:0x00044770; // type:object size:0x20 scope:local align:4
+pack_DL_table = .data:0x00044790; // type:object size:0x8 scope:local align:4
+pack_list = .data:0x00044798; // type:object size:0x8 scope:local align:4
+pack_list_table = .data:0x000447A0; // type:object size:0x4 scope:local align:4
+pack_part = .data:0x000447A4; // type:object size:0x20 scope:local align:4
+present_DL_table = .data:0x000447C4; // type:object size:0x8 scope:local align:4
+present_list = .data:0x000447CC; // type:object size:0x8 scope:local align:4
+present_list_table = .data:0x000447D4; // type:object size:0x4 scope:local align:4
+present_part = .data:0x000447D8; // type:object size:0x20 scope:local align:4
+seed_DL_table = .data:0x000447F8; // type:object size:0x8 scope:local align:4
+seed_list = .data:0x00044800; // type:object size:0x8 scope:local align:4
+seed_list_table = .data:0x00044808; // type:object size:0x4 scope:local align:4
+seed_part = .data:0x0004480C; // type:object size:0x20 scope:local align:4
+haniwa_DL_table = .data:0x0004482C; // type:object size:0x8 scope:local align:4
+haniwa_list = .data:0x00044834; // type:object size:0x8 scope:local align:4
+haniwa_list_table = .data:0x0004483C; // type:object size:0x4 scope:local align:4
+haniwa_part = .data:0x00044840; // type:object size:0x20 scope:local align:4
+other_DL_table = .data:0x00044860; // type:object size:0x8 scope:local align:4
+other_list = .data:0x00044868; // type:object size:0x8 scope:local align:4
+other_list_table = .data:0x00044870; // type:object size:0x4 scope:local align:4
+other_part = .data:0x00044874; // type:object size:0x20 scope:local align:4
+tool_DL_table = .data:0x00044894; // type:object size:0x8 scope:local align:4
+tool_list = .data:0x0004489C; // type:object size:0x8 scope:local align:4
+tool_list_table = .data:0x000448A4; // type:object size:0x4 scope:local align:4
+tool_part = .data:0x000448A8; // type:object size:0x20 scope:local align:4
+fossil_DL_table = .data:0x000448C8; // type:object size:0x8 scope:local align:4
+fossil_list = .data:0x000448D0; // type:object size:0x8 scope:local align:4
+fossil_list_table = .data:0x000448D8; // type:object size:0x4 scope:local align:4
+fossil_part = .data:0x000448DC; // type:object size:0x20 scope:local align:4
+trash_DL_table = .data:0x000448FC; // type:object size:0x8 scope:local align:4
+trash_list = .data:0x00044904; // type:object size:0x8 scope:local align:4
+trash_list_table = .data:0x0004490C; // type:object size:0x4 scope:local align:4
+trash_part = .data:0x00044910; // type:object size:0x20 scope:local align:4
+otosi_DL_table = .data:0x00044930; // type:object size:0x8 scope:local align:4
+otosi_list = .data:0x00044938; // type:object size:0x8 scope:local align:4
+otosi_list_table = .data:0x00044940; // type:object size:0x4 scope:local align:4
+otosi_part = .data:0x00044944; // type:object size:0x20 scope:local align:4
+shell_DL_table = .data:0x00044964; // type:object size:0x18 scope:local align:4
+shell_a_list = .data:0x0004497C; // type:object size:0x8 scope:local align:4
+shell_b_list = .data:0x00044984; // type:object size:0x8 scope:local align:4
+shell_c_list = .data:0x0004498C; // type:object size:0x8 scope:local align:4
+shell_a_list_table = .data:0x00044994; // type:object size:0x4 scope:local align:4
+shell_b_list_table = .data:0x00044998; // type:object size:0x4 scope:local align:4
+shell_c_list_table = .data:0x0004499C; // type:object size:0x4 scope:local align:4
+shell_a_part = .data:0x000449A0; // type:object size:0x20 scope:local align:4
+shell_b_part = .data:0x000449C0; // type:object size:0x20 scope:local align:4
+shell_c_part = .data:0x000449E0; // type:object size:0x20 scope:local align:4
+candy_DL_table = .data:0x00044A00; // type:object size:0x8 scope:local align:4
+candy_list = .data:0x00044A08; // type:object size:0x8 scope:local align:4
+candy_list_table = .data:0x00044A10; // type:object size:0x4 scope:local align:4
+candy_part = .data:0x00044A14; // type:object size:0x20 scope:local align:4
+coconut_DL_table = .data:0x00044A34; // type:object size:0x8 scope:local align:4
+coconut_list = .data:0x00044A3C; // type:object size:0x8 scope:local align:4
+coconut_list_table = .data:0x00044A44; // type:object size:0x4 scope:local align:4
+coconut_part = .data:0x00044A48; // type:object size:0x20 scope:local align:4
+cloth_DL_table = .data:0x00044A68; // type:object size:0x8 scope:local align:4
+cloth_list = .data:0x00044A70; // type:object size:0x8 scope:local align:4
+cloth_list_table = .data:0x00044A78; // type:object size:0x4 scope:local align:4
+cloth_part = .data:0x00044A7C; // type:object size:0x20 scope:local align:4
+carpet_DL_table = .data:0x00044A9C; // type:object size:0x8 scope:local align:4
+carpet_list = .data:0x00044AA4; // type:object size:0x8 scope:local align:4
+carpet_list_table = .data:0x00044AAC; // type:object size:0x4 scope:local align:4
+carpet_part = .data:0x00044AB0; // type:object size:0x20 scope:local align:4
+wall_DL_table = .data:0x00044AD0; // type:object size:0x8 scope:local align:4
+wall_list = .data:0x00044AD8; // type:object size:0x8 scope:local align:4
+wall_list_table = .data:0x00044AE0; // type:object size:0x4 scope:local align:4
+wall_part = .data:0x00044AE4; // type:object size:0x20 scope:local align:4
+axe_DL_table = .data:0x00044B04; // type:object size:0x8 scope:local align:4
+axe_list = .data:0x00044B0C; // type:object size:0x8 scope:local align:4
+axe_list_table = .data:0x00044B14; // type:object size:0x4 scope:local align:4
+axe_part = .data:0x00044B18; // type:object size:0x20 scope:local align:4
+net_DL_table = .data:0x00044B38; // type:object size:0x8 scope:local align:4
+net_list = .data:0x00044B40; // type:object size:0x8 scope:local align:4
+net_list_table = .data:0x00044B48; // type:object size:0x4 scope:local align:4
+net_part = .data:0x00044B4C; // type:object size:0x20 scope:local align:4
+rod_DL_table = .data:0x00044B6C; // type:object size:0x8 scope:local align:4
+rod_list = .data:0x00044B74; // type:object size:0x8 scope:local align:4
+rod_list_table = .data:0x00044B7C; // type:object size:0x4 scope:local align:4
+rod_part = .data:0x00044B80; // type:object size:0x20 scope:local align:4
+scoop_DL_table = .data:0x00044BA0; // type:object size:0x8 scope:local align:4
+scoop_list = .data:0x00044BA8; // type:object size:0x8 scope:local align:4
+scoop_list_table = .data:0x00044BB0; // type:object size:0x4 scope:local align:4
+scoop_part = .data:0x00044BB4; // type:object size:0x20 scope:local align:4
+gold_axe_DL_table = .data:0x00044BD4; // type:object size:0x8 scope:local align:4
+gold_axe_list = .data:0x00044BDC; // type:object size:0x8 scope:local align:4
+gold_axe_list_table = .data:0x00044BE4; // type:object size:0x4 scope:local align:4
+gold_axe_part = .data:0x00044BE8; // type:object size:0x20 scope:local align:4
+gold_net_DL_table = .data:0x00044C08; // type:object size:0x8 scope:local align:4
+gold_net_list = .data:0x00044C10; // type:object size:0x8 scope:local align:4
+gold_net_list_table = .data:0x00044C18; // type:object size:0x4 scope:local align:4
+gold_net_part = .data:0x00044C1C; // type:object size:0x20 scope:local align:4
+gold_rod_DL_table = .data:0x00044C3C; // type:object size:0x8 scope:local align:4
+gold_rod_list = .data:0x00044C44; // type:object size:0x8 scope:local align:4
+gold_rod_list_table = .data:0x00044C4C; // type:object size:0x4 scope:local align:4
+gold_rod_part = .data:0x00044C50; // type:object size:0x20 scope:local align:4
+gold_scoop_DL_table = .data:0x00044C70; // type:object size:0x8 scope:local align:4
+gold_scoop_list = .data:0x00044C78; // type:object size:0x8 scope:local align:4
+gold_scoop_list_table = .data:0x00044C80; // type:object size:0x4 scope:local align:4
+gold_scoop_part = .data:0x00044C84; // type:object size:0x20 scope:local align:4
+umbrella_DL_table = .data:0x00044CA4; // type:object size:0x8 scope:local align:4
+umbrella_list = .data:0x00044CAC; // type:object size:0x8 scope:local align:4
+umbrella_list_table = .data:0x00044CB4; // type:object size:0x4 scope:local align:4
+umbrella_part = .data:0x00044CB8; // type:object size:0x20 scope:local align:4
+pinwheel_DL_table = .data:0x00044CD8; // type:object size:0x8 scope:local align:4
+pinwheel_list = .data:0x00044CE0; // type:object size:0x8 scope:local align:4
+pinwheel_list_table = .data:0x00044CE8; // type:object size:0x4 scope:local align:4
+pinwheel_part = .data:0x00044CEC; // type:object size:0x20 scope:local align:4
+fan_DL_table = .data:0x00044D0C; // type:object size:0x8 scope:local align:4
+fan_list = .data:0x00044D14; // type:object size:0x8 scope:local align:4
+fan_list_table = .data:0x00044D1C; // type:object size:0x4 scope:local align:4
+fan_part = .data:0x00044D20; // type:object size:0x20 scope:local align:4
+paper_DL_table = .data:0x00044D40; // type:object size:0x8 scope:local align:4
+paper_list = .data:0x00044D48; // type:object size:0x8 scope:local align:4
+paper_list_table = .data:0x00044D50; // type:object size:0x4 scope:local align:4
+paper_part = .data:0x00044D54; // type:object size:0x20 scope:local align:4
+seedbag_DL_table = .data:0x00044D74; // type:object size:0x8 scope:local align:4
+seedbag_list = .data:0x00044D7C; // type:object size:0x8 scope:local align:4
+seedbag_list_table = .data:0x00044D84; // type:object size:0x4 scope:local align:4
+seedbag_part = .data:0x00044D88; // type:object size:0x20 scope:local align:4
+luckbag_DL_table = .data:0x00044DA8; // type:object size:0x8 scope:local align:4
+luckbag_list = .data:0x00044DB0; // type:object size:0x8 scope:local align:4
+luckbag_list_table = .data:0x00044DB8; // type:object size:0x4 scope:local align:4
+luckbag_part = .data:0x00044DBC; // type:object size:0x20 scope:local align:4
+gymcard_DL_table = .data:0x00044DDC; // type:object size:0x8 scope:local align:4
+gymcard_list = .data:0x00044DE4; // type:object size:0x8 scope:local align:4
+gymcard_list_table = .data:0x00044DEC; // type:object size:0x4 scope:local align:4
+gymcard_part = .data:0x00044DF0; // type:object size:0x20 scope:local align:4
+music_DL_table = .data:0x00044E10; // type:object size:0x8 scope:local align:4
+music_list = .data:0x00044E18; // type:object size:0x8 scope:local align:4
+music_list_table = .data:0x00044E20; // type:object size:0x4 scope:local align:4
+music_part = .data:0x00044E24; // type:object size:0x20 scope:local align:4
+lottery_DL_table = .data:0x00044E44; // type:object size:0x8 scope:local align:4
+lottery_list = .data:0x00044E4C; // type:object size:0x8 scope:local align:4
+lottery_list_table = .data:0x00044E54; // type:object size:0x4 scope:local align:4
+lottery_part = .data:0x00044E58; // type:object size:0x20 scope:local align:4
+bone_DL_table = .data:0x00044E78; // type:object size:0x8 scope:local align:4
+bone_list = .data:0x00044E80; // type:object size:0x8 scope:local align:4
+bone_list_table = .data:0x00044E88; // type:object size:0x4 scope:local align:4
+bone_part = .data:0x00044E8C; // type:object size:0x20 scope:local align:4
+diary_DL_table = .data:0x00044EAC; // type:object size:0x8 scope:local align:4
+diary_list = .data:0x00044EB4; // type:object size:0x8 scope:local align:4
+diary_list_table = .data:0x00044EBC; // type:object size:0x4 scope:local align:4
+diary_part = .data:0x00044EC0; // type:object size:0x20 scope:local align:4
+fork_DL_table = .data:0x00044EE0; // type:object size:0x8 scope:local align:4
+fork_list = .data:0x00044EE8; // type:object size:0x8 scope:local align:4
+fork_list_table = .data:0x00044EF0; // type:object size:0x4 scope:local align:4
+fork_part = .data:0x00044EF4; // type:object size:0x20 scope:local align:4
+draw_part_table_a = .data:0x00044F14; // type:object size:0x3D8 scope:local align:4
+rnd_data_x = .data:0x000452EC; // type:object size:0x40 scope:local align:4
+rnd_data_z = .data:0x0004532C; // type:object size:0x40 scope:local align:4
+BI_chk_pos$605 = .data:0x0004536C; // type:object size:0x48 scope:local align:4
+d_size$682 = .data:0x000453B4; // type:object size:0xC scope:local align:4
+d_size$828 = .data:0x000453C0; // type:object size:0xC scope:local align:4
+fr2tr_f$1018 = .data:0x000453CC; // type:object size:0x18 scope:local align:4 data:2byte
+fr2tr_f$1032 = .data:0x000453E4; // type:object size:0x10 scope:local align:4 data:2byte
+unit_offset_part$1193 = .data:0x000453F4; // type:object size:0x18 scope:local align:4
+pos_part$1194 = .data:0x0004540C; // type:object size:0x24 scope:local align:4
+pos_part_honey_comb$1195 = .data:0x00045430; // type:object size:0x24 scope:local align:4
+pos_part_present$1196 = .data:0x00045454; // type:object size:0x24 scope:local align:4
+pos_part_palm_cc$1197 = .data:0x00045478; // type:object size:0x18 scope:local align:4
+fade_out$1198 = .data:0x00045490; // type:object size:0xC scope:local align:4
+fg_ytable$1321 = .data:0x0004549C; // type:object size:0xA8 scope:local align:4 data:2byte
+wait_pos$1388 = .data:0x00045544; // type:object size:0xC scope:local align:4 data:float
+tree_cut_tbl$2190 = .data:0x00045550; // type:object size:0x14C scope:local align:4 data:2byte
+@2298 = .data:0x0004569C; // type:object size:0x15 scope:local align:4 data:string
+@2968 = .data:0x000456B4; // type:object size:0x11 scope:local align:4 data:string
+type_data_table_p_a = .data:0x000456C8; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x000456E0; // type:label scope:local
+BgItem_Profile = .data:0x000456E0; // type:object size:0x24 scope:global align:4
+pos_table = .data:0x00045704; // type:object size:0x40 scope:local align:4
+pos_table2 = .data:0x00045744; // type:object size:0x40 scope:local align:4
+typeData_table_bgItem = .data:0x00045784; // type:object size:0x624 scope:global align:4
+typeData_table_bgItem2 = .data:0x00045DA8; // type:object size:0x4F8 scope:global align:4
+typeData_table_dummy = .data:0x000462A0; // type:object size:0xC scope:local align:4
+tree_DL_table = .data:0x000462AC; // type:object size:0x64 scope:global align:4
+tree0_list = .data:0x00046310; // type:object size:0x8 scope:global align:4
+tree1_list = .data:0x00046318; // type:object size:0x8 scope:global align:4
+tree2_list = .data:0x00046320; // type:object size:0x8 scope:global align:4
+tree2_list2 = .data:0x00046328; // type:object size:0x8 scope:global align:4
+tree2_shadow_list = .data:0x00046330; // type:object size:0x8 scope:global align:4
+tree3_list = .data:0x00046338; // type:object size:0x8 scope:global align:4
+tree3_list2 = .data:0x00046340; // type:object size:0x8 scope:global align:4
+tree3_shadow_list = .data:0x00046348; // type:object size:0x8 scope:global align:4
+tree4_list = .data:0x00046350; // type:object size:0x8 scope:global align:4
+tree4_list2 = .data:0x00046358; // type:object size:0x8 scope:global align:4
+tree4_shadow_list = .data:0x00046360; // type:object size:0x8 scope:global align:4
+tree4_ap_list = .data:0x00046368; // type:object size:0x8 scope:local align:4
+tree4_or_list = .data:0x00046370; // type:object size:0x8 scope:local align:4
+tree4_ph_list = .data:0x00046378; // type:object size:0x8 scope:local align:4
+tree4_pr_list = .data:0x00046380; // type:object size:0x8 scope:local align:4
+tree4_nt_list = .data:0x00046388; // type:object size:0x8 scope:local align:4
+tree4_bg_list = .data:0x00046390; // type:object size:0x8 scope:local align:4
+tree0_dead_list = .data:0x00046398; // type:object size:0x8 scope:global align:4
+tree0_list_table = .data:0x000463A0; // type:object size:0x4 scope:global align:4
+tree1_list_table = .data:0x000463A4; // type:object size:0x4 scope:global align:4
+tree2_list_table = .data:0x000463A8; // type:object size:0x8 scope:global align:4
+tree3_list_table = .data:0x000463B0; // type:object size:0x8 scope:global align:4
+tree4_list_table = .data:0x000463B8; // type:object size:0x8 scope:global align:4
+tree4_ap_list_table = .data:0x000463C0; // type:object size:0xC scope:local align:4
+tree4_or_list_table = .data:0x000463CC; // type:object size:0xC scope:local align:4
+tree4_ph_list_table = .data:0x000463D8; // type:object size:0xC scope:local align:4
+tree4_pr_list_table = .data:0x000463E4; // type:object size:0xC scope:local align:4
+tree4_nt_list_table = .data:0x000463F0; // type:object size:0xC scope:local align:4
+tree4_bg_list_table = .data:0x000463FC; // type:object size:0xC scope:local align:4
+tree0_dead_list_table = .data:0x00046408; // type:object size:0x4 scope:global align:4
+tree_shadow_v_fix = .data:0x0004640C; // type:object size:0x4 scope:global align:4
+tree0_part = .data:0x00046410; // type:object size:0x20 scope:global align:4
+tree1_part = .data:0x00046430; // type:object size:0x20 scope:global align:4
+tree2_part = .data:0x00046450; // type:object size:0x20 scope:global align:4
+tree3_part = .data:0x00046470; // type:object size:0x20 scope:global align:4
+tree4_part = .data:0x00046490; // type:object size:0x20 scope:global align:4
+tree4_ap_part = .data:0x000464B0; // type:object size:0x20 scope:local align:4
+tree4_or_part = .data:0x000464D0; // type:object size:0x20 scope:local align:4
+tree4_ph_part = .data:0x000464F0; // type:object size:0x20 scope:local align:4
+tree4_pr_part = .data:0x00046510; // type:object size:0x20 scope:local align:4
+tree4_nt_part = .data:0x00046530; // type:object size:0x20 scope:local align:4
+tree4_bg_part = .data:0x00046550; // type:object size:0x20 scope:local align:4
+tree0_dead_part = .data:0x00046570; // type:object size:0x20 scope:global align:4
+palm_DL_table = .data:0x00046590; // type:object size:0x68 scope:local align:4
+palm1_list = .data:0x000465F8; // type:object size:0x8 scope:local align:4
+palm1_dead_list = .data:0x00046600; // type:object size:0x8 scope:local align:4
+palm2_list = .data:0x00046608; // type:object size:0x8 scope:local align:4
+palm3_leaf_list = .data:0x00046610; // type:object size:0x8 scope:local align:4
+palm3_trunk_list = .data:0x00046618; // type:object size:0x8 scope:local align:4
+palm4_leaf_list = .data:0x00046620; // type:object size:0x8 scope:local align:4
+palm4_trunk_list = .data:0x00046628; // type:object size:0x8 scope:local align:4
+palm5_leaf_list = .data:0x00046630; // type:object size:0x8 scope:local align:4
+palm5_trunk_list = .data:0x00046638; // type:object size:0x8 scope:local align:4
+palm5_coco_list = .data:0x00046640; // type:object size:0x8 scope:local align:4
+palm3_shadow_list = .data:0x00046648; // type:object size:0x8 scope:local align:4
+palm4_shadow_list = .data:0x00046650; // type:object size:0x8 scope:local align:4
+palm5_shadow_list = .data:0x00046658; // type:object size:0x8 scope:local align:4
+palm1_list_table = .data:0x00046660; // type:object size:0x4 scope:local align:4
+palm2_list_table = .data:0x00046664; // type:object size:0x4 scope:local align:4
+palm3_list_table = .data:0x00046668; // type:object size:0x8 scope:local align:4
+palm4_list_table = .data:0x00046670; // type:object size:0x8 scope:local align:4
+palm5_list_table = .data:0x00046678; // type:object size:0x8 scope:local align:4
+palm5_cc_list_table = .data:0x00046680; // type:object size:0xC scope:local align:4
+palm1_dead_list_table = .data:0x0004668C; // type:object size:0x4 scope:local align:4
+palm3_shadow_v_fix = .data:0x00046690; // type:object size:0x4 scope:local align:4
+palm5_shadow_v_fix = .data:0x00046694; // type:object size:0x4 scope:local align:4
+palm000_part = .data:0x00046698; // type:object size:0x20 scope:local align:4
+palm001_part = .data:0x000466B8; // type:object size:0x20 scope:local align:4
+palm002_part = .data:0x000466D8; // type:object size:0x20 scope:local align:4
+palm003_part = .data:0x000466F8; // type:object size:0x20 scope:local align:4
+palm004_part = .data:0x00046718; // type:object size:0x20 scope:local align:4
+palm004_cc_part = .data:0x00046738; // type:object size:0x20 scope:local align:4
+palm000_dead_part = .data:0x00046758; // type:object size:0x20 scope:local align:4
+Cedar_DL_table = .data:0x00046778; // type:object size:0x60 scope:local align:4
+cedar3_shadow_list = .data:0x000467D8; // type:object size:0x8 scope:local align:4
+cedar4_shadow_list = .data:0x000467E0; // type:object size:0x8 scope:local align:4
+cedar5_shadow_list = .data:0x000467E8; // type:object size:0x8 scope:local align:4
+cedar1_list = .data:0x000467F0; // type:object size:0x8 scope:local align:4
+cedar1_dead_list = .data:0x000467F8; // type:object size:0x8 scope:local align:4
+cedar2_list = .data:0x00046800; // type:object size:0x8 scope:local align:4
+cedar3_leaf_list = .data:0x00046808; // type:object size:0x8 scope:local align:4
+cedar3_trunk_list = .data:0x00046810; // type:object size:0x8 scope:local align:4
+cedar4_leaf_list = .data:0x00046818; // type:object size:0x8 scope:local align:4
+cedar4_trunk_list = .data:0x00046820; // type:object size:0x8 scope:local align:4
+cedar5_leaf_list = .data:0x00046828; // type:object size:0x8 scope:local align:4
+cedar5_trunk_list = .data:0x00046830; // type:object size:0x8 scope:local align:4
+cedar1_list_table = .data:0x00046838; // type:object size:0x4 scope:local align:4
+cedar1_dead_list_table = .data:0x0004683C; // type:object size:0x4 scope:local align:4
+cedar2_list_table = .data:0x00046840; // type:object size:0x4 scope:local align:4
+cedar3_list_table = .data:0x00046844; // type:object size:0x8 scope:local align:4
+cedar4_list_table = .data:0x0004684C; // type:object size:0x8 scope:local align:4
+cedar5_list_table = .data:0x00046854; // type:object size:0x8 scope:local align:4
+cedar_shadow_v_fix = .data:0x0004685C; // type:object size:0x4 scope:local align:4
+cedar000_part = .data:0x00046860; // type:object size:0x20 scope:local align:4
+cedar001_part = .data:0x00046880; // type:object size:0x20 scope:local align:4
+cedar002_part = .data:0x000468A0; // type:object size:0x20 scope:local align:4
+cedar003_part = .data:0x000468C0; // type:object size:0x20 scope:local align:4
+cedar004_part = .data:0x000468E0; // type:object size:0x20 scope:local align:4
+cedar000_dead_part = .data:0x00046900; // type:object size:0x20 scope:local align:4
+GTree_DL_table = .data:0x00046920; // type:object size:0x60 scope:local align:4
+gold_tree1_list = .data:0x00046980; // type:object size:0x8 scope:local align:4
+gold_tree1_dead_list = .data:0x00046988; // type:object size:0x8 scope:local align:4
+gold_tree2_list = .data:0x00046990; // type:object size:0x8 scope:local align:4
+gold_tree3_leaf_list = .data:0x00046998; // type:object size:0x8 scope:local align:4
+gold_tree3_trunk_list = .data:0x000469A0; // type:object size:0x8 scope:local align:4
+gold_tree4_leaf_list = .data:0x000469A8; // type:object size:0x8 scope:local align:4
+gold_tree4_trunk_list = .data:0x000469B0; // type:object size:0x8 scope:local align:4
+gold_tree5_leaf_list = .data:0x000469B8; // type:object size:0x8 scope:local align:4
+gold_tree5_trunk_list = .data:0x000469C0; // type:object size:0x8 scope:local align:4
+gold_tree3_shadow_list = .data:0x000469C8; // type:object size:0x8 scope:local align:4
+gold_tree4_shadow_list = .data:0x000469D0; // type:object size:0x8 scope:local align:4
+gold_tree5_shadow_list = .data:0x000469D8; // type:object size:0x8 scope:local align:4
+gold_tree1_list_table = .data:0x000469E0; // type:object size:0x4 scope:local align:4
+gold_tree1_dead_list_table = .data:0x000469E4; // type:object size:0x4 scope:local align:4
+gold_tree2_list_table = .data:0x000469E8; // type:object size:0x4 scope:local align:4
+gold_tree3_list_table = .data:0x000469EC; // type:object size:0x8 scope:local align:4
+gold_tree4_list_table = .data:0x000469F4; // type:object size:0x8 scope:local align:4
+gold_tree5_list_table = .data:0x000469FC; // type:object size:0x8 scope:local align:4
+gold_tree_shadow_v_fix = .data:0x00046A04; // type:object size:0x4 scope:local align:4
+gold_tree000_part = .data:0x00046A08; // type:object size:0x20 scope:local align:4
+gold_tree001_part = .data:0x00046A28; // type:object size:0x20 scope:local align:4
+gold_tree002_part = .data:0x00046A48; // type:object size:0x20 scope:local align:4
+gold_tree003_part = .data:0x00046A68; // type:object size:0x20 scope:local align:4
+gold_tree004_part = .data:0x00046A88; // type:object size:0x20 scope:local align:4
+gold_tree000_dead_part = .data:0x00046AA8; // type:object size:0x20 scope:local align:4
+stump_DL_table = .data:0x00046AC8; // type:object size:0x38 scope:global align:4
+stump_list0 = .data:0x00046B00; // type:object size:0x8 scope:global align:4
+stump_shadow_list0 = .data:0x00046B08; // type:object size:0x8 scope:global align:4
+stump_list1 = .data:0x00046B10; // type:object size:0x8 scope:global align:4
+stump_shadow_list1 = .data:0x00046B18; // type:object size:0x8 scope:global align:4
+stump_list2 = .data:0x00046B20; // type:object size:0x8 scope:global align:4
+stump_shadow_list2 = .data:0x00046B28; // type:object size:0x8 scope:global align:4
+stump_list3 = .data:0x00046B30; // type:object size:0x8 scope:global align:4
+stump_list_table0 = .data:0x00046B38; // type:object size:0x4 scope:global align:4
+stump_list_table1 = .data:0x00046B3C; // type:object size:0x4 scope:global align:4
+stump_list_table2 = .data:0x00046B40; // type:object size:0x4 scope:global align:4
+stump_list_table3 = .data:0x00046B44; // type:object size:0x4 scope:global align:4
+stump_shadow_v_fix = .data:0x00046B48; // type:object size:0x4 scope:global align:4
+stump_part4 = .data:0x00046B4C; // type:object size:0x20 scope:global align:4
+stump_part3 = .data:0x00046B6C; // type:object size:0x20 scope:global align:4
+stump_part2 = .data:0x00046B8C; // type:object size:0x20 scope:global align:4
+stump_part1 = .data:0x00046BAC; // type:object size:0x20 scope:global align:4
+palm_stump_DL_table = .data:0x00046BCC; // type:object size:0x38 scope:local align:4
+pstump3_shadow_list = .data:0x00046C04; // type:object size:0x8 scope:local align:4
+pstump4_shadow_list = .data:0x00046C0C; // type:object size:0x8 scope:local align:4
+pstump5_shadow_list = .data:0x00046C14; // type:object size:0x8 scope:local align:4
+pstump2_list = .data:0x00046C1C; // type:object size:0x8 scope:local align:4
+pstump3_list = .data:0x00046C24; // type:object size:0x8 scope:local align:4
+pstump4_list = .data:0x00046C2C; // type:object size:0x8 scope:local align:4
+pstump5_list = .data:0x00046C34; // type:object size:0x8 scope:local align:4
+pstump2_list_table = .data:0x00046C3C; // type:object size:0x4 scope:local align:4
+pstump3_list_table = .data:0x00046C40; // type:object size:0x4 scope:local align:4
+pstump4_list_table = .data:0x00046C44; // type:object size:0x4 scope:local align:4
+pstump5_list_table = .data:0x00046C48; // type:object size:0x4 scope:local align:4
+pstump3_shadow_v_fix = .data:0x00046C4C; // type:object size:0x4 scope:local align:4
+pstump5_shadow_v_fix = .data:0x00046C50; // type:object size:0x4 scope:local align:4
+palm_stump001_part = .data:0x00046C54; // type:object size:0x20 scope:local align:4
+palm_stump002_part = .data:0x00046C74; // type:object size:0x20 scope:local align:4
+palm_stump003_part = .data:0x00046C94; // type:object size:0x20 scope:local align:4
+palm_stump004_part = .data:0x00046CB4; // type:object size:0x20 scope:local align:4
+CedarStump_DL_table = .data:0x00046CD4; // type:object size:0x38 scope:local align:4
+cstump3_shadow_list = .data:0x00046D0C; // type:object size:0x8 scope:local align:4
+cstump4_shadow_list = .data:0x00046D14; // type:object size:0x8 scope:local align:4
+cstump5_shadow_list = .data:0x00046D1C; // type:object size:0x8 scope:local align:4
+cstump2_list = .data:0x00046D24; // type:object size:0x8 scope:local align:4
+cstump3_list = .data:0x00046D2C; // type:object size:0x8 scope:local align:4
+cstump4_list = .data:0x00046D34; // type:object size:0x8 scope:local align:4
+cstump5_list = .data:0x00046D3C; // type:object size:0x8 scope:local align:4
+cstump2_list_table = .data:0x00046D44; // type:object size:0x4 scope:local align:4
+cstump3_list_table = .data:0x00046D48; // type:object size:0x4 scope:local align:4
+cstump4_list_table = .data:0x00046D4C; // type:object size:0x4 scope:local align:4
+cstump5_list_table = .data:0x00046D50; // type:object size:0x4 scope:local align:4
+cstump_shadow_v_fix = .data:0x00046D54; // type:object size:0x4 scope:local align:4
+cedar_stump001_part = .data:0x00046D58; // type:object size:0x20 scope:local align:4
+cedar_stump002_part = .data:0x00046D78; // type:object size:0x20 scope:local align:4
+cedar_stump003_part = .data:0x00046D98; // type:object size:0x20 scope:local align:4
+cedar_stump004_part = .data:0x00046DB8; // type:object size:0x20 scope:local align:4
+GStump_DL_table = .data:0x00046DD8; // type:object size:0x38 scope:local align:4
+gold_stump2_list = .data:0x00046E10; // type:object size:0x8 scope:local align:4
+gold_stump3_list = .data:0x00046E18; // type:object size:0x8 scope:local align:4
+gold_stump4_list = .data:0x00046E20; // type:object size:0x8 scope:local align:4
+gold_stump5_list = .data:0x00046E28; // type:object size:0x8 scope:local align:4
+gold_stump3_shadow_list = .data:0x00046E30; // type:object size:0x8 scope:local align:4
+gold_stump4_shadow_list = .data:0x00046E38; // type:object size:0x8 scope:local align:4
+gold_stump5_shadow_list = .data:0x00046E40; // type:object size:0x8 scope:local align:4
+gold_stump2_list_table = .data:0x00046E48; // type:object size:0x4 scope:local align:4
+gold_stump3_list_table = .data:0x00046E4C; // type:object size:0x4 scope:local align:4
+gold_stump4_list_table = .data:0x00046E50; // type:object size:0x4 scope:local align:4
+gold_stump5_list_table = .data:0x00046E54; // type:object size:0x4 scope:local align:4
+gold_stump_shadow_v_fix = .data:0x00046E58; // type:object size:0x4 scope:local align:4
+gold_tree_stump001_part = .data:0x00046E5C; // type:object size:0x20 scope:local align:4
+gold_tree_stump002_part = .data:0x00046E7C; // type:object size:0x20 scope:local align:4
+gold_tree_stump003_part = .data:0x00046E9C; // type:object size:0x20 scope:local align:4
+gold_tree_stump004_part = .data:0x00046EBC; // type:object size:0x20 scope:local align:4
+fence_DL_table = .data:0x00046EDC; // type:object size:0x10 scope:global align:4
+fence_list = .data:0x00046EEC; // type:object size:0x8 scope:global align:4
+fence_list_table = .data:0x00046EF4; // type:object size:0x4 scope:global align:4
+fence_shadow_list = .data:0x00046EF8; // type:object size:0x8 scope:global align:4
+fence_shadow_v_fix = .data:0x00046F00; // type:object size:0x4 scope:global align:4
+fence_part = .data:0x00046F04; // type:object size:0x20 scope:global align:4
+notice_DL_table = .data:0x00046F24; // type:object size:0x10 scope:global align:4
+notice_list = .data:0x00046F34; // type:object size:0x8 scope:global align:4
+notice_list_table = .data:0x00046F3C; // type:object size:0x4 scope:global align:4
+notice_shadow_list = .data:0x00046F40; // type:object size:0x8 scope:global align:4
+notice_shadow_v_fix = .data:0x00046F48; // type:object size:0x4 scope:global align:4
+notice_part = .data:0x00046F4C; // type:object size:0x20 scope:global align:4
+melody_DL_table = .data:0x00046F6C; // type:object size:0x10 scope:global align:4
+melody_list = .data:0x00046F7C; // type:object size:0x8 scope:global align:4
+melody_list_table = .data:0x00046F84; // type:object size:0x4 scope:global align:4
+melody_shadow_list = .data:0x00046F88; // type:object size:0x8 scope:global align:4
+melody_shadow_v_fix = .data:0x00046F90; // type:object size:0x4 scope:global align:4
+melody_part = .data:0x00046F94; // type:object size:0x20 scope:global align:4
+mapboard_DL_table = .data:0x00046FB4; // type:object size:0x10 scope:global align:4
+mapboard_list = .data:0x00046FC4; // type:object size:0x8 scope:global align:4
+mapboard_list_table = .data:0x00046FCC; // type:object size:0x4 scope:global align:4
+mapboard_shadow_list = .data:0x00046FD0; // type:object size:0x8 scope:global align:4
+mapboard_shadow_v_fix = .data:0x00046FD8; // type:object size:0x4 scope:global align:4
+mapboard_part = .data:0x00046FDC; // type:object size:0x20 scope:global align:4
+flower_DL_table = .data:0x00046FFC; // type:object size:0x20 scope:local align:4
+flower_list00 = .data:0x0004701C; // type:object size:0x8 scope:global align:4
+flower_list01 = .data:0x00047024; // type:object size:0x8 scope:global align:4
+flower_list02 = .data:0x0004702C; // type:object size:0x8 scope:global align:4
+flower_leaf_list = .data:0x00047034; // type:object size:0x8 scope:global align:4
+flower_list_table00 = .data:0x0004703C; // type:object size:0x4 scope:global align:4
+flower_list_table01 = .data:0x00047040; // type:object size:0x4 scope:global align:4
+flower_list_table02 = .data:0x00047044; // type:object size:0x4 scope:global align:4
+flower_leaf_list_table = .data:0x00047048; // type:object size:0x4 scope:global align:4
+flower_leaf_part = .data:0x0004704C; // type:object size:0x20 scope:global align:4
+flower_part00 = .data:0x0004706C; // type:object size:0x20 scope:global align:4
+flower_part01 = .data:0x0004708C; // type:object size:0x20 scope:global align:4
+flower_part02 = .data:0x000470AC; // type:object size:0x20 scope:global align:4
+grass_DL_table = .data:0x000470CC; // type:object size:0x10 scope:local align:4
+grass_list = .data:0x000470DC; // type:object size:0x8 scope:local align:4
+grass_list_table = .data:0x000470E4; // type:object size:0x4 scope:local align:4
+grass_part = .data:0x000470E8; // type:object size:0x20 scope:global align:4
+fences_DL_table = .data:0x00047108; // type:object size:0x10 scope:global align:4
+fences_list = .data:0x00047118; // type:object size:0x8 scope:global align:4
+fences_list_table = .data:0x00047120; // type:object size:0x4 scope:global align:4
+fences_shadow_list = .data:0x00047124; // type:object size:0x8 scope:global align:4
+fences_shadow_v_fix = .data:0x0004712C; // type:object size:0x4 scope:global align:4
+fences_part = .data:0x00047130; // type:object size:0x20 scope:global align:4
+hole_DL_table = .data:0x00047150; // type:object size:0x6C scope:local align:4
+hole00_g_list = .data:0x000471BC; // type:object size:0x8 scope:local align:4
+hole00_g_list_table = .data:0x000471C4; // type:object size:0x4 scope:local align:4
+hole00_g_part = .data:0x000471C8; // type:object size:0x20 scope:local align:4
+hole00_s_list = .data:0x000471E8; // type:object size:0x8 scope:local align:4
+hole00_s_list_table = .data:0x000471F0; // type:object size:0x4 scope:local align:4
+hole00_s_part = .data:0x000471F4; // type:object size:0x20 scope:local align:4
+crack_DL_table = .data:0x00047214; // type:object size:0x6C scope:local align:4
+crack00_g_list = .data:0x00047280; // type:object size:0x8 scope:local align:4
+crack00_g_list_table = .data:0x00047288; // type:object size:0x4 scope:local align:4
+crack00_g_part = .data:0x0004728C; // type:object size:0x20 scope:local align:4
+crack00_s_list = .data:0x000472AC; // type:object size:0x8 scope:local align:4
+crack00_s_list_table = .data:0x000472B4; // type:object size:0x4 scope:local align:4
+crack00_s_part = .data:0x000472B8; // type:object size:0x20 scope:local align:4
+honycomb_DL_table = .data:0x000472D8; // type:object size:0x8 scope:local align:4
+honycomb_list = .data:0x000472E0; // type:object size:0x8 scope:local align:4
+honycomb_list_table = .data:0x000472E8; // type:object size:0x4 scope:local align:4
+honycomb_part = .data:0x000472EC; // type:object size:0x20 scope:local align:4
+stone_a_shadow_v_fix = .data:0x0004730C; // type:object size:0xA scope:local align:4
+stone_b_shadow_v_fix = .data:0x00047318; // type:object size:0xC scope:local align:4
+stone_c_shadow_v_fix = .data:0x00047324; // type:object size:0xC scope:local align:4
+stone_d_shadow_v_fix = .data:0x00047330; // type:object size:0x8 scope:local align:4
+stone_e_shadow_v_fix = .data:0x00047338; // type:object size:0xA scope:local align:4
+stone_DL_table = .data:0x00047344; // type:object size:0x30 scope:local align:4
+stone_a_list = .data:0x00047374; // type:object size:0x8 scope:local align:4
+stone_a_shadow_list = .data:0x0004737C; // type:object size:0x8 scope:local align:4
+stone_a_list_table = .data:0x00047384; // type:object size:0x4 scope:local align:4
+stone_a_part = .data:0x00047388; // type:object size:0x20 scope:local align:4
+stone_b_part = .data:0x000473A8; // type:object size:0x20 scope:local align:4
+stone_c_part = .data:0x000473C8; // type:object size:0x20 scope:local align:4
+stone_d_part = .data:0x000473E8; // type:object size:0x20 scope:local align:4
+stone_e_part = .data:0x00047408; // type:object size:0x20 scope:local align:4
+tane_DL_table = .data:0x00047428; // type:object size:0x8 scope:local align:4
+tane_list = .data:0x00047430; // type:object size:0x8 scope:local align:4
+tane_list_table = .data:0x00047438; // type:object size:0x4 scope:local align:4
+tane_part = .data:0x0004743C; // type:object size:0x20 scope:local align:4
+typeData_table_item1 = .data:0x0004745C; // type:object size:0xC scope:local align:4
+typeData_table_ftr = .data:0x00047468; // type:object size:0xC scope:local align:4
+typeData_table_crack = .data:0x00047474; // type:object size:0xC scope:local align:4
+apple_DL_table = .data:0x00047480; // type:object size:0x8 scope:local align:4
+apple_list = .data:0x00047488; // type:object size:0x8 scope:local align:4
+apple_list_table = .data:0x00047490; // type:object size:0x4 scope:local align:4
+apple_part = .data:0x00047494; // type:object size:0x20 scope:local align:4
+orange_DL_table = .data:0x000474B4; // type:object size:0x8 scope:local align:4
+orange_list = .data:0x000474BC; // type:object size:0x8 scope:local align:4
+orange_list_table = .data:0x000474C4; // type:object size:0x4 scope:local align:4
+orange_part = .data:0x000474C8; // type:object size:0x20 scope:local align:4
+peach_DL_table = .data:0x000474E8; // type:object size:0x8 scope:local align:4
+peach_list = .data:0x000474F0; // type:object size:0x8 scope:local align:4
+peach_list_table = .data:0x000474F8; // type:object size:0x4 scope:local align:4
+peach_part = .data:0x000474FC; // type:object size:0x20 scope:local align:4
+pear_DL_table = .data:0x0004751C; // type:object size:0x8 scope:local align:4
+pear_list = .data:0x00047524; // type:object size:0x8 scope:local align:4
+pear_list_table = .data:0x0004752C; // type:object size:0x4 scope:local align:4
+pear_part = .data:0x00047530; // type:object size:0x20 scope:local align:4
+nuts_DL_table = .data:0x00047550; // type:object size:0x8 scope:local align:4
+nuts_list = .data:0x00047558; // type:object size:0x8 scope:local align:4
+nuts_list_table = .data:0x00047560; // type:object size:0x4 scope:local align:4
+nuts_part = .data:0x00047564; // type:object size:0x20 scope:local align:4
+matutake_DL_table = .data:0x00047584; // type:object size:0x8 scope:local align:4
+matutake_list = .data:0x0004758C; // type:object size:0x8 scope:local align:4
+matutake_list_table = .data:0x00047594; // type:object size:0x4 scope:local align:4
+matutake_part = .data:0x00047598; // type:object size:0x20 scope:local align:4
+kabu_DL_table = .data:0x000475B8; // type:object size:0x8 scope:local align:4
+kabu_list = .data:0x000475C0; // type:object size:0x8 scope:local align:4
+kabu_list_table = .data:0x000475C8; // type:object size:0x4 scope:local align:4
+kabu_part = .data:0x000475CC; // type:object size:0x20 scope:local align:4
+fish_DL_table = .data:0x000475EC; // type:object size:0x8 scope:local align:4
+fish_list = .data:0x000475F4; // type:object size:0x8 scope:local align:4
+fish_list_table = .data:0x000475FC; // type:object size:0x4 scope:local align:4
+fish_part = .data:0x00047600; // type:object size:0x20 scope:local align:4
+bag_DL_table = .data:0x00047620; // type:object size:0x8 scope:local align:4
+bag_list = .data:0x00047628; // type:object size:0x8 scope:local align:4
+bag_list_table = .data:0x00047630; // type:object size:0x4 scope:local align:4
+bag_part = .data:0x00047634; // type:object size:0x20 scope:local align:4
+leaf_DL_table = .data:0x00047654; // type:object size:0x8 scope:local align:4
+leaf_list = .data:0x0004765C; // type:object size:0x8 scope:local align:4
+leaf_list_table = .data:0x00047664; // type:object size:0x4 scope:local align:4
+leaf_part = .data:0x00047668; // type:object size:0x20 scope:local align:4
+roll_DL_table = .data:0x00047688; // type:object size:0x8 scope:local align:4
+roll_list = .data:0x00047690; // type:object size:0x8 scope:local align:4
+roll_list_table = .data:0x00047698; // type:object size:0x4 scope:local align:4
+roll_part = .data:0x0004769C; // type:object size:0x20 scope:local align:4
+box_DL_table = .data:0x000476BC; // type:object size:0x8 scope:local align:4
+box_list = .data:0x000476C4; // type:object size:0x8 scope:local align:4
+box_list_table = .data:0x000476CC; // type:object size:0x4 scope:local align:4
+box_part = .data:0x000476D0; // type:object size:0x20 scope:local align:4
+pack_DL_table = .data:0x000476F0; // type:object size:0x8 scope:local align:4
+pack_list = .data:0x000476F8; // type:object size:0x8 scope:local align:4
+pack_list_table = .data:0x00047700; // type:object size:0x4 scope:local align:4
+pack_part = .data:0x00047704; // type:object size:0x20 scope:local align:4
+present_DL_table = .data:0x00047724; // type:object size:0x8 scope:local align:4
+present_list = .data:0x0004772C; // type:object size:0x8 scope:local align:4
+present_list_table = .data:0x00047734; // type:object size:0x4 scope:local align:4
+present_part = .data:0x00047738; // type:object size:0x20 scope:local align:4
+seed_DL_table = .data:0x00047758; // type:object size:0x8 scope:local align:4
+seed_list = .data:0x00047760; // type:object size:0x8 scope:local align:4
+seed_list_table = .data:0x00047768; // type:object size:0x4 scope:local align:4
+seed_part = .data:0x0004776C; // type:object size:0x20 scope:local align:4
+haniwa_DL_table = .data:0x0004778C; // type:object size:0x8 scope:local align:4
+haniwa_list = .data:0x00047794; // type:object size:0x8 scope:local align:4
+haniwa_list_table = .data:0x0004779C; // type:object size:0x4 scope:local align:4
+haniwa_part = .data:0x000477A0; // type:object size:0x20 scope:local align:4
+other_DL_table = .data:0x000477C0; // type:object size:0x8 scope:local align:4
+other_list = .data:0x000477C8; // type:object size:0x8 scope:local align:4
+other_list_table = .data:0x000477D0; // type:object size:0x4 scope:local align:4
+other_part = .data:0x000477D4; // type:object size:0x20 scope:local align:4
+tool_DL_table = .data:0x000477F4; // type:object size:0x8 scope:local align:4
+tool_list = .data:0x000477FC; // type:object size:0x8 scope:local align:4
+tool_list_table = .data:0x00047804; // type:object size:0x4 scope:local align:4
+tool_part = .data:0x00047808; // type:object size:0x20 scope:local align:4
+fossil_DL_table = .data:0x00047828; // type:object size:0x8 scope:local align:4
+fossil_list = .data:0x00047830; // type:object size:0x8 scope:local align:4
+fossil_list_table = .data:0x00047838; // type:object size:0x4 scope:local align:4
+fossil_part = .data:0x0004783C; // type:object size:0x20 scope:local align:4
+trash_DL_table = .data:0x0004785C; // type:object size:0x8 scope:local align:4
+trash_list = .data:0x00047864; // type:object size:0x8 scope:local align:4
+trash_list_table = .data:0x0004786C; // type:object size:0x4 scope:local align:4
+trash_part = .data:0x00047870; // type:object size:0x20 scope:local align:4
+otosi_DL_table = .data:0x00047890; // type:object size:0x8 scope:local align:4
+otosi_list = .data:0x00047898; // type:object size:0x8 scope:local align:4
+otosi_list_table = .data:0x000478A0; // type:object size:0x4 scope:local align:4
+otosi_part = .data:0x000478A4; // type:object size:0x20 scope:local align:4
+shell_DL_table = .data:0x000478C4; // type:object size:0x18 scope:local align:4
+shell_a_list = .data:0x000478DC; // type:object size:0x8 scope:local align:4
+shell_b_list = .data:0x000478E4; // type:object size:0x8 scope:local align:4
+shell_c_list = .data:0x000478EC; // type:object size:0x8 scope:local align:4
+shell_a_list_table = .data:0x000478F4; // type:object size:0x4 scope:local align:4
+shell_b_list_table = .data:0x000478F8; // type:object size:0x4 scope:local align:4
+shell_c_list_table = .data:0x000478FC; // type:object size:0x4 scope:local align:4
+shell_a_part = .data:0x00047900; // type:object size:0x20 scope:local align:4
+shell_b_part = .data:0x00047920; // type:object size:0x20 scope:local align:4
+shell_c_part = .data:0x00047940; // type:object size:0x20 scope:local align:4
+candy_DL_table = .data:0x00047960; // type:object size:0x8 scope:local align:4
+candy_list = .data:0x00047968; // type:object size:0x8 scope:local align:4
+candy_list_table = .data:0x00047970; // type:object size:0x4 scope:local align:4
+candy_part = .data:0x00047974; // type:object size:0x20 scope:local align:4
+coconut_DL_table = .data:0x00047994; // type:object size:0x8 scope:local align:4
+coconut_list = .data:0x0004799C; // type:object size:0x8 scope:local align:4
+coconut_list_table = .data:0x000479A4; // type:object size:0x4 scope:local align:4
+coconut_part = .data:0x000479A8; // type:object size:0x20 scope:local align:4
+cloth_DL_table = .data:0x000479C8; // type:object size:0x8 scope:local align:4
+cloth_list = .data:0x000479D0; // type:object size:0x8 scope:local align:4
+cloth_list_table = .data:0x000479D8; // type:object size:0x4 scope:local align:4
+cloth_part = .data:0x000479DC; // type:object size:0x20 scope:local align:4
+carpet_DL_table = .data:0x000479FC; // type:object size:0x8 scope:local align:4
+carpet_list = .data:0x00047A04; // type:object size:0x8 scope:local align:4
+carpet_list_table = .data:0x00047A0C; // type:object size:0x4 scope:local align:4
+carpet_part = .data:0x00047A10; // type:object size:0x20 scope:local align:4
+wall_DL_table = .data:0x00047A30; // type:object size:0x8 scope:local align:4
+wall_list = .data:0x00047A38; // type:object size:0x8 scope:local align:4
+wall_list_table = .data:0x00047A40; // type:object size:0x4 scope:local align:4
+wall_part = .data:0x00047A44; // type:object size:0x20 scope:local align:4
+axe_DL_table = .data:0x00047A64; // type:object size:0x8 scope:local align:4
+axe_list = .data:0x00047A6C; // type:object size:0x8 scope:local align:4
+axe_list_table = .data:0x00047A74; // type:object size:0x4 scope:local align:4
+axe_part = .data:0x00047A78; // type:object size:0x20 scope:local align:4
+net_DL_table = .data:0x00047A98; // type:object size:0x8 scope:local align:4
+net_list = .data:0x00047AA0; // type:object size:0x8 scope:local align:4
+net_list_table = .data:0x00047AA8; // type:object size:0x4 scope:local align:4
+net_part = .data:0x00047AAC; // type:object size:0x20 scope:local align:4
+rod_DL_table = .data:0x00047ACC; // type:object size:0x8 scope:local align:4
+rod_list = .data:0x00047AD4; // type:object size:0x8 scope:local align:4
+rod_list_table = .data:0x00047ADC; // type:object size:0x4 scope:local align:4
+rod_part = .data:0x00047AE0; // type:object size:0x20 scope:local align:4
+scoop_DL_table = .data:0x00047B00; // type:object size:0x8 scope:local align:4
+scoop_list = .data:0x00047B08; // type:object size:0x8 scope:local align:4
+scoop_list_table = .data:0x00047B10; // type:object size:0x4 scope:local align:4
+scoop_part = .data:0x00047B14; // type:object size:0x20 scope:local align:4
+gold_axe_DL_table = .data:0x00047B34; // type:object size:0x8 scope:local align:4
+gold_axe_list = .data:0x00047B3C; // type:object size:0x8 scope:local align:4
+gold_axe_list_table = .data:0x00047B44; // type:object size:0x4 scope:local align:4
+gold_axe_part = .data:0x00047B48; // type:object size:0x20 scope:local align:4
+gold_net_DL_table = .data:0x00047B68; // type:object size:0x8 scope:local align:4
+gold_net_list = .data:0x00047B70; // type:object size:0x8 scope:local align:4
+gold_net_list_table = .data:0x00047B78; // type:object size:0x4 scope:local align:4
+gold_net_part = .data:0x00047B7C; // type:object size:0x20 scope:local align:4
+gold_rod_DL_table = .data:0x00047B9C; // type:object size:0x8 scope:local align:4
+gold_rod_list = .data:0x00047BA4; // type:object size:0x8 scope:local align:4
+gold_rod_list_table = .data:0x00047BAC; // type:object size:0x4 scope:local align:4
+gold_rod_part = .data:0x00047BB0; // type:object size:0x20 scope:local align:4
+gold_scoop_DL_table = .data:0x00047BD0; // type:object size:0x8 scope:local align:4
+gold_scoop_list = .data:0x00047BD8; // type:object size:0x8 scope:local align:4
+gold_scoop_list_table = .data:0x00047BE0; // type:object size:0x4 scope:local align:4
+gold_scoop_part = .data:0x00047BE4; // type:object size:0x20 scope:local align:4
+umbrella_DL_table = .data:0x00047C04; // type:object size:0x8 scope:local align:4
+umbrella_list = .data:0x00047C0C; // type:object size:0x8 scope:local align:4
+umbrella_list_table = .data:0x00047C14; // type:object size:0x4 scope:local align:4
+umbrella_part = .data:0x00047C18; // type:object size:0x20 scope:local align:4
+pinwheel_DL_table = .data:0x00047C38; // type:object size:0x8 scope:local align:4
+pinwheel_list = .data:0x00047C40; // type:object size:0x8 scope:local align:4
+pinwheel_list_table = .data:0x00047C48; // type:object size:0x4 scope:local align:4
+pinwheel_part = .data:0x00047C4C; // type:object size:0x20 scope:local align:4
+fan_DL_table = .data:0x00047C6C; // type:object size:0x8 scope:local align:4
+fan_list = .data:0x00047C74; // type:object size:0x8 scope:local align:4
+fan_list_table = .data:0x00047C7C; // type:object size:0x4 scope:local align:4
+fan_part = .data:0x00047C80; // type:object size:0x20 scope:local align:4
+paper_DL_table = .data:0x00047CA0; // type:object size:0x8 scope:local align:4
+paper_list = .data:0x00047CA8; // type:object size:0x8 scope:local align:4
+paper_list_table = .data:0x00047CB0; // type:object size:0x4 scope:local align:4
+paper_part = .data:0x00047CB4; // type:object size:0x20 scope:local align:4
+seedbag_DL_table = .data:0x00047CD4; // type:object size:0x8 scope:local align:4
+seedbag_list = .data:0x00047CDC; // type:object size:0x8 scope:local align:4
+seedbag_list_table = .data:0x00047CE4; // type:object size:0x4 scope:local align:4
+seedbag_part = .data:0x00047CE8; // type:object size:0x20 scope:local align:4
+luckbag_DL_table = .data:0x00047D08; // type:object size:0x8 scope:local align:4
+luckbag_list = .data:0x00047D10; // type:object size:0x8 scope:local align:4
+luckbag_list_table = .data:0x00047D18; // type:object size:0x4 scope:local align:4
+luckbag_part = .data:0x00047D1C; // type:object size:0x20 scope:local align:4
+gymcard_DL_table = .data:0x00047D3C; // type:object size:0x8 scope:local align:4
+gymcard_list = .data:0x00047D44; // type:object size:0x8 scope:local align:4
+gymcard_list_table = .data:0x00047D4C; // type:object size:0x4 scope:local align:4
+gymcard_part = .data:0x00047D50; // type:object size:0x20 scope:local align:4
+music_DL_table = .data:0x00047D70; // type:object size:0x8 scope:local align:4
+music_list = .data:0x00047D78; // type:object size:0x8 scope:local align:4
+music_list_table = .data:0x00047D80; // type:object size:0x4 scope:local align:4
+music_part = .data:0x00047D84; // type:object size:0x20 scope:local align:4
+lottery_DL_table = .data:0x00047DA4; // type:object size:0x8 scope:local align:4
+lottery_list = .data:0x00047DAC; // type:object size:0x8 scope:local align:4
+lottery_list_table = .data:0x00047DB4; // type:object size:0x4 scope:local align:4
+lottery_part = .data:0x00047DB8; // type:object size:0x20 scope:local align:4
+bone_DL_table = .data:0x00047DD8; // type:object size:0x8 scope:local align:4
+bone_list = .data:0x00047DE0; // type:object size:0x8 scope:local align:4
+bone_list_table = .data:0x00047DE8; // type:object size:0x4 scope:local align:4
+bone_part = .data:0x00047DEC; // type:object size:0x20 scope:local align:4
+diary_DL_table = .data:0x00047E0C; // type:object size:0x8 scope:local align:4
+diary_list = .data:0x00047E14; // type:object size:0x8 scope:local align:4
+diary_list_table = .data:0x00047E1C; // type:object size:0x4 scope:local align:4
+diary_part = .data:0x00047E20; // type:object size:0x20 scope:local align:4
+fork_DL_table = .data:0x00047E40; // type:object size:0x8 scope:local align:4
+fork_list = .data:0x00047E48; // type:object size:0x8 scope:local align:4
+fork_list_table = .data:0x00047E50; // type:object size:0x4 scope:local align:4
+fork_part = .data:0x00047E54; // type:object size:0x20 scope:local align:4
+draw_part_table_a = .data:0x00047E74; // type:object size:0x3D8 scope:local align:4
+rnd_data_x = .data:0x0004824C; // type:object size:0x40 scope:local align:4
+rnd_data_z = .data:0x0004828C; // type:object size:0x40 scope:local align:4
+BI_chk_pos$605 = .data:0x000482CC; // type:object size:0x48 scope:local align:4
+d_size$682 = .data:0x00048314; // type:object size:0xC scope:local align:4
+d_size$828 = .data:0x00048320; // type:object size:0xC scope:local align:4
+fr2tr_f$1018 = .data:0x0004832C; // type:object size:0x18 scope:local align:4 data:2byte
+fr2tr_f$1032 = .data:0x00048344; // type:object size:0x10 scope:local align:4 data:2byte
+unit_offset_part$1193 = .data:0x00048354; // type:object size:0x18 scope:local align:4
+pos_part$1194 = .data:0x0004836C; // type:object size:0x24 scope:local align:4
+pos_part_honey_comb$1195 = .data:0x00048390; // type:object size:0x24 scope:local align:4
+pos_part_present$1196 = .data:0x000483B4; // type:object size:0x24 scope:local align:4
+pos_part_palm_cc$1197 = .data:0x000483D8; // type:object size:0x18 scope:local align:4
+fade_out$1198 = .data:0x000483F0; // type:object size:0xC scope:local align:4
+fg_ytable$1321 = .data:0x000483FC; // type:object size:0xA8 scope:local align:4 data:2byte
+wait_pos$1388 = .data:0x000484A4; // type:object size:0xC scope:local align:4 data:float
+tree_cut_tbl$2190 = .data:0x000484B0; // type:object size:0x14C scope:local align:4 data:2byte
+@2298 = .data:0x000485FC; // type:object size:0x15 scope:local align:4 data:string
+@2966 = .data:0x00048614; // type:object size:0xA scope:local align:4 data:string
+type_data_table_p_a = .data:0x00048620; // type:object size:0x18 scope:local align:4
+BgPoliceItem_Profile = .data:0x00048638; // type:object size:0x24 scope:global align:4
+mode_DL_table = .data:0x0004865C; // type:object size:0xD4 scope:local align:4
+vtx_DL_table = .data:0x00048730; // type:object size:0xD4 scope:local align:4
+pos_table$425 = .data:0x00048804; // type:object size:0x40 scope:local align:4
+@495 = .data:0x00048844; // type:object size:0x1A scope:local align:4 data:string
+BgPostItem_Profile = .data:0x00048860; // type:object size:0x24 scope:global align:4
+setX$383 = .data:0x00048884; // type:object size:0x14 scope:local align:4 data:float
+...data.0 = .data:0x00048898; // type:label scope:local
+BgWinterItem_Profile = .data:0x00048898; // type:object size:0x24 scope:global align:4
+pos_table = .data:0x000488BC; // type:object size:0x40 scope:local align:4
+pos_table2 = .data:0x000488FC; // type:object size:0x40 scope:local align:4
+typeData_table_bgWinterItem = .data:0x0004893C; // type:object size:0x624 scope:global align:4
+typeData_table_bgWinterItem2 = .data:0x00048F60; // type:object size:0x4F8 scope:global align:4
+typeData_table_dummy = .data:0x00049458; // type:object size:0xC scope:local align:4
+w_tree_DL_table = .data:0x00049464; // type:object size:0x7C scope:global align:4
+w_tree0_list = .data:0x000494E0; // type:object size:0x8 scope:global align:4
+w_tree0_list2 = .data:0x000494E8; // type:object size:0x8 scope:global align:4
+w_tree0_shadow_list = .data:0x000494F0; // type:object size:0x8 scope:global align:4
+w_tree1_list = .data:0x000494F8; // type:object size:0x8 scope:global align:4
+w_tree1_list2 = .data:0x00049500; // type:object size:0x8 scope:global align:4
+w_tree1_shadow_list = .data:0x00049508; // type:object size:0x8 scope:global align:4
+w_tree2_list = .data:0x00049510; // type:object size:0x8 scope:global align:4
+w_tree2_list2 = .data:0x00049518; // type:object size:0x8 scope:global align:4
+w_tree2_shadow_list = .data:0x00049520; // type:object size:0x8 scope:global align:4
+w_tree3_list = .data:0x00049528; // type:object size:0x8 scope:global align:4
+w_tree4_list = .data:0x00049530; // type:object size:0x8 scope:global align:4
+tree4_ap_list = .data:0x00049538; // type:object size:0x8 scope:local align:4
+tree4_or_list = .data:0x00049540; // type:object size:0x8 scope:local align:4
+tree4_ph_list = .data:0x00049548; // type:object size:0x8 scope:local align:4
+tree4_pr_list = .data:0x00049550; // type:object size:0x8 scope:local align:4
+tree4_nt_list = .data:0x00049558; // type:object size:0x8 scope:local align:4
+tree4_bg_list = .data:0x00049560; // type:object size:0x8 scope:local align:4
+w_tree0_dead_list = .data:0x00049568; // type:object size:0x8 scope:global align:4
+w_tree4_list_table = .data:0x00049570; // type:object size:0x4 scope:global align:4
+w_tree3_list_table = .data:0x00049574; // type:object size:0x4 scope:global align:4
+w_tree2_list_table = .data:0x00049578; // type:object size:0x8 scope:global align:4
+w_tree1_list_table = .data:0x00049580; // type:object size:0x8 scope:global align:4
+w_tree0_list_table = .data:0x00049588; // type:object size:0x8 scope:global align:4
+tree4_ap_list_table = .data:0x00049590; // type:object size:0xC scope:local align:4
+tree4_or_list_table = .data:0x0004959C; // type:object size:0xC scope:local align:4
+tree4_ph_list_table = .data:0x000495A8; // type:object size:0xC scope:local align:4
+tree4_pr_list_table = .data:0x000495B4; // type:object size:0xC scope:local align:4
+tree4_nt_list_table = .data:0x000495C0; // type:object size:0xC scope:local align:4
+tree4_bg_list_table = .data:0x000495CC; // type:object size:0xC scope:local align:4
+w_tree0_dead_list_table = .data:0x000495D8; // type:object size:0x4 scope:global align:4
+w_tree_shadow_v_fix = .data:0x000495DC; // type:object size:0x4 scope:global align:4
+w_tree0_part = .data:0x000495E0; // type:object size:0x20 scope:global align:4
+w_tree1_part = .data:0x00049600; // type:object size:0x20 scope:global align:4
+w_tree2_part = .data:0x00049620; // type:object size:0x20 scope:global align:4
+w_tree3_part = .data:0x00049640; // type:object size:0x20 scope:global align:4
+w_tree4_part = .data:0x00049660; // type:object size:0x20 scope:global align:4
+tree4_ap_part = .data:0x00049680; // type:object size:0x20 scope:local align:4
+tree4_or_part = .data:0x000496A0; // type:object size:0x20 scope:local align:4
+tree4_ph_part = .data:0x000496C0; // type:object size:0x20 scope:local align:4
+tree4_pr_part = .data:0x000496E0; // type:object size:0x20 scope:local align:4
+tree4_nt_part = .data:0x00049700; // type:object size:0x20 scope:local align:4
+tree4_bg_part = .data:0x00049720; // type:object size:0x20 scope:local align:4
+w_tree0_dead_part = .data:0x00049740; // type:object size:0x20 scope:global align:4
+palm_DL_table = .data:0x00049760; // type:object size:0x68 scope:local align:4
+palm1_list = .data:0x000497C8; // type:object size:0x8 scope:local align:4
+palm1_dead_list = .data:0x000497D0; // type:object size:0x8 scope:local align:4
+palm2_list = .data:0x000497D8; // type:object size:0x8 scope:local align:4
+palm3_leaf_list = .data:0x000497E0; // type:object size:0x8 scope:local align:4
+palm3_trunk_list = .data:0x000497E8; // type:object size:0x8 scope:local align:4
+palm4_leaf_list = .data:0x000497F0; // type:object size:0x8 scope:local align:4
+palm4_trunk_list = .data:0x000497F8; // type:object size:0x8 scope:local align:4
+palm5_leaf_list = .data:0x00049800; // type:object size:0x8 scope:local align:4
+palm5_trunk_list = .data:0x00049808; // type:object size:0x8 scope:local align:4
+palm5_coco_list = .data:0x00049810; // type:object size:0x8 scope:local align:4
+palm3_shadow_list = .data:0x00049818; // type:object size:0x8 scope:local align:4
+palm4_shadow_list = .data:0x00049820; // type:object size:0x8 scope:local align:4
+palm5_shadow_list = .data:0x00049828; // type:object size:0x8 scope:local align:4
+palm1_list_table = .data:0x00049830; // type:object size:0x4 scope:local align:4
+palm2_list_table = .data:0x00049834; // type:object size:0x4 scope:local align:4
+palm3_list_table = .data:0x00049838; // type:object size:0x8 scope:local align:4
+palm4_list_table = .data:0x00049840; // type:object size:0x8 scope:local align:4
+palm5_list_table = .data:0x00049848; // type:object size:0x8 scope:local align:4
+palm5_cc_list_table = .data:0x00049850; // type:object size:0xC scope:local align:4
+palm1_dead_list_table = .data:0x0004985C; // type:object size:0x4 scope:local align:4
+palm3_shadow_v_fix = .data:0x00049860; // type:object size:0x4 scope:local align:4
+palm5_shadow_v_fix = .data:0x00049864; // type:object size:0x4 scope:local align:4
+palm000_part = .data:0x00049868; // type:object size:0x20 scope:local align:4
+palm001_part = .data:0x00049888; // type:object size:0x20 scope:local align:4
+palm002_part = .data:0x000498A8; // type:object size:0x20 scope:local align:4
+palm003_part = .data:0x000498C8; // type:object size:0x20 scope:local align:4
+palm004_part = .data:0x000498E8; // type:object size:0x20 scope:local align:4
+palm004_cc_part = .data:0x00049908; // type:object size:0x20 scope:local align:4
+palm000_dead_part = .data:0x00049928; // type:object size:0x20 scope:local align:4
+Cedar_DL_table = .data:0x00049948; // type:object size:0x60 scope:local align:4
+cedar3_shadow_list = .data:0x000499A8; // type:object size:0x8 scope:local align:4
+cedar4_shadow_list = .data:0x000499B0; // type:object size:0x8 scope:local align:4
+cedar5_shadow_list = .data:0x000499B8; // type:object size:0x8 scope:local align:4
+cedar1_list = .data:0x000499C0; // type:object size:0x8 scope:local align:4
+cedar1_dead_list = .data:0x000499C8; // type:object size:0x8 scope:local align:4
+cedar2_list = .data:0x000499D0; // type:object size:0x8 scope:local align:4
+cedar3_leaf_list = .data:0x000499D8; // type:object size:0x8 scope:local align:4
+cedar3_trunk_list = .data:0x000499E0; // type:object size:0x8 scope:local align:4
+cedar4_leaf_list = .data:0x000499E8; // type:object size:0x8 scope:local align:4
+cedar4_trunk_list = .data:0x000499F0; // type:object size:0x8 scope:local align:4
+cedar5_leaf_list = .data:0x000499F8; // type:object size:0x8 scope:local align:4
+cedar5_trunk_list = .data:0x00049A00; // type:object size:0x8 scope:local align:4
+cedar1_list_table = .data:0x00049A08; // type:object size:0x4 scope:local align:4
+cedar1_dead_list_table = .data:0x00049A0C; // type:object size:0x4 scope:local align:4
+cedar2_list_table = .data:0x00049A10; // type:object size:0x4 scope:local align:4
+cedar3_list_table = .data:0x00049A14; // type:object size:0x8 scope:local align:4
+cedar4_list_table = .data:0x00049A1C; // type:object size:0x8 scope:local align:4
+cedar5_list_table = .data:0x00049A24; // type:object size:0x8 scope:local align:4
+cedar_shadow_v_fix = .data:0x00049A2C; // type:object size:0x4 scope:local align:4
+cedar000_part = .data:0x00049A30; // type:object size:0x20 scope:local align:4
+cedar001_part = .data:0x00049A50; // type:object size:0x20 scope:local align:4
+cedar002_part = .data:0x00049A70; // type:object size:0x20 scope:local align:4
+cedar003_part = .data:0x00049A90; // type:object size:0x20 scope:local align:4
+cedar004_part = .data:0x00049AB0; // type:object size:0x20 scope:local align:4
+cedar000_dead_part = .data:0x00049AD0; // type:object size:0x20 scope:local align:4
+GTree_DL_table = .data:0x00049AF0; // type:object size:0x60 scope:local align:4
+gold_tree1_list = .data:0x00049B50; // type:object size:0x8 scope:local align:4
+gold_tree1_dead_list = .data:0x00049B58; // type:object size:0x8 scope:local align:4
+gold_tree2_list = .data:0x00049B60; // type:object size:0x8 scope:local align:4
+gold_tree3_leaf_list = .data:0x00049B68; // type:object size:0x8 scope:local align:4
+gold_tree3_trunk_list = .data:0x00049B70; // type:object size:0x8 scope:local align:4
+gold_tree4_leaf_list = .data:0x00049B78; // type:object size:0x8 scope:local align:4
+gold_tree4_trunk_list = .data:0x00049B80; // type:object size:0x8 scope:local align:4
+gold_tree5_leaf_list = .data:0x00049B88; // type:object size:0x8 scope:local align:4
+gold_tree5_trunk_list = .data:0x00049B90; // type:object size:0x8 scope:local align:4
+gold_tree3_shadow_list = .data:0x00049B98; // type:object size:0x8 scope:local align:4
+gold_tree4_shadow_list = .data:0x00049BA0; // type:object size:0x8 scope:local align:4
+gold_tree5_shadow_list = .data:0x00049BA8; // type:object size:0x8 scope:local align:4
+gold_tree1_list_table = .data:0x00049BB0; // type:object size:0x4 scope:local align:4
+gold_tree1_dead_list_table = .data:0x00049BB4; // type:object size:0x4 scope:local align:4
+gold_tree2_list_table = .data:0x00049BB8; // type:object size:0x4 scope:local align:4
+gold_tree3_list_table = .data:0x00049BBC; // type:object size:0x8 scope:local align:4
+gold_tree4_list_table = .data:0x00049BC4; // type:object size:0x8 scope:local align:4
+gold_tree5_list_table = .data:0x00049BCC; // type:object size:0x8 scope:local align:4
+gold_tree_shadow_v_fix = .data:0x00049BD4; // type:object size:0x4 scope:local align:4
+gold_tree000_part = .data:0x00049BD8; // type:object size:0x20 scope:local align:4
+gold_tree001_part = .data:0x00049BF8; // type:object size:0x20 scope:local align:4
+gold_tree002_part = .data:0x00049C18; // type:object size:0x20 scope:local align:4
+gold_tree003_part = .data:0x00049C38; // type:object size:0x20 scope:local align:4
+gold_tree004_part = .data:0x00049C58; // type:object size:0x20 scope:local align:4
+gold_tree000_dead_part = .data:0x00049C78; // type:object size:0x20 scope:local align:4
+w_stump_DL_table = .data:0x00049C98; // type:object size:0x38 scope:global align:4
+w_stump_list0 = .data:0x00049CD0; // type:object size:0x8 scope:global align:4
+w_stump_shadow_list0 = .data:0x00049CD8; // type:object size:0x8 scope:global align:4
+w_stump_list1 = .data:0x00049CE0; // type:object size:0x8 scope:global align:4
+w_stump_shadow_list1 = .data:0x00049CE8; // type:object size:0x8 scope:global align:4
+w_stump_list2 = .data:0x00049CF0; // type:object size:0x8 scope:global align:4
+w_stump_shadow_list2 = .data:0x00049CF8; // type:object size:0x8 scope:global align:4
+w_stump_list3 = .data:0x00049D00; // type:object size:0x8 scope:global align:4
+w_stump_list_table0 = .data:0x00049D08; // type:object size:0x4 scope:global align:4
+w_stump_list_table1 = .data:0x00049D0C; // type:object size:0x4 scope:global align:4
+w_stump_list_table2 = .data:0x00049D10; // type:object size:0x4 scope:global align:4
+w_stump_list_table3 = .data:0x00049D14; // type:object size:0x4 scope:global align:4
+w_stump_shadow_v_fix = .data:0x00049D18; // type:object size:0x4 scope:global align:4
+w_stump_part1 = .data:0x00049D1C; // type:object size:0x20 scope:global align:4
+w_stump_part2 = .data:0x00049D3C; // type:object size:0x20 scope:global align:4
+w_stump_part3 = .data:0x00049D5C; // type:object size:0x20 scope:global align:4
+w_stump_part4 = .data:0x00049D7C; // type:object size:0x20 scope:global align:4
+palm_stump_DL_table = .data:0x00049D9C; // type:object size:0x38 scope:local align:4
+pstump3_shadow_list = .data:0x00049DD4; // type:object size:0x8 scope:local align:4
+pstump4_shadow_list = .data:0x00049DDC; // type:object size:0x8 scope:local align:4
+pstump5_shadow_list = .data:0x00049DE4; // type:object size:0x8 scope:local align:4
+pstump2_list = .data:0x00049DEC; // type:object size:0x8 scope:local align:4
+pstump3_list = .data:0x00049DF4; // type:object size:0x8 scope:local align:4
+pstump4_list = .data:0x00049DFC; // type:object size:0x8 scope:local align:4
+pstump5_list = .data:0x00049E04; // type:object size:0x8 scope:local align:4
+pstump2_list_table = .data:0x00049E0C; // type:object size:0x4 scope:local align:4
+pstump3_list_table = .data:0x00049E10; // type:object size:0x4 scope:local align:4
+pstump4_list_table = .data:0x00049E14; // type:object size:0x4 scope:local align:4
+pstump5_list_table = .data:0x00049E18; // type:object size:0x4 scope:local align:4
+pstump3_shadow_v_fix = .data:0x00049E1C; // type:object size:0x4 scope:local align:4
+pstump5_shadow_v_fix = .data:0x00049E20; // type:object size:0x4 scope:local align:4
+palm_stump001_part = .data:0x00049E24; // type:object size:0x20 scope:local align:4
+palm_stump002_part = .data:0x00049E44; // type:object size:0x20 scope:local align:4
+palm_stump003_part = .data:0x00049E64; // type:object size:0x20 scope:local align:4
+palm_stump004_part = .data:0x00049E84; // type:object size:0x20 scope:local align:4
+CedarStump_DL_table = .data:0x00049EA4; // type:object size:0x38 scope:local align:4
+cstump3_shadow_list = .data:0x00049EDC; // type:object size:0x8 scope:local align:4
+cstump4_shadow_list = .data:0x00049EE4; // type:object size:0x8 scope:local align:4
+cstump5_shadow_list = .data:0x00049EEC; // type:object size:0x8 scope:local align:4
+cstump2_list = .data:0x00049EF4; // type:object size:0x8 scope:local align:4
+cstump3_list = .data:0x00049EFC; // type:object size:0x8 scope:local align:4
+cstump4_list = .data:0x00049F04; // type:object size:0x8 scope:local align:4
+cstump5_list = .data:0x00049F0C; // type:object size:0x8 scope:local align:4
+cstump2_list_table = .data:0x00049F14; // type:object size:0x4 scope:local align:4
+cstump3_list_table = .data:0x00049F18; // type:object size:0x4 scope:local align:4
+cstump4_list_table = .data:0x00049F1C; // type:object size:0x4 scope:local align:4
+cstump5_list_table = .data:0x00049F20; // type:object size:0x4 scope:local align:4
+cstump_shadow_v_fix = .data:0x00049F24; // type:object size:0x4 scope:local align:4
+cedar_stump001_part = .data:0x00049F28; // type:object size:0x20 scope:local align:4
+cedar_stump002_part = .data:0x00049F48; // type:object size:0x20 scope:local align:4
+cedar_stump003_part = .data:0x00049F68; // type:object size:0x20 scope:local align:4
+cedar_stump004_part = .data:0x00049F88; // type:object size:0x20 scope:local align:4
+GStump_DL_table = .data:0x00049FA8; // type:object size:0x38 scope:local align:4
+gold_stump2_list = .data:0x00049FE0; // type:object size:0x8 scope:local align:4
+gold_stump3_list = .data:0x00049FE8; // type:object size:0x8 scope:local align:4
+gold_stump4_list = .data:0x00049FF0; // type:object size:0x8 scope:local align:4
+gold_stump5_list = .data:0x00049FF8; // type:object size:0x8 scope:local align:4
+gold_stump3_shadow_list = .data:0x0004A000; // type:object size:0x8 scope:local align:4
+gold_stump4_shadow_list = .data:0x0004A008; // type:object size:0x8 scope:local align:4
+gold_stump5_shadow_list = .data:0x0004A010; // type:object size:0x8 scope:local align:4
+gold_stump2_list_table = .data:0x0004A018; // type:object size:0x4 scope:local align:4
+gold_stump3_list_table = .data:0x0004A01C; // type:object size:0x4 scope:local align:4
+gold_stump4_list_table = .data:0x0004A020; // type:object size:0x4 scope:local align:4
+gold_stump5_list_table = .data:0x0004A024; // type:object size:0x4 scope:local align:4
+gold_stump_shadow_v_fix = .data:0x0004A028; // type:object size:0x4 scope:local align:4
+gold_tree_stump001_part = .data:0x0004A02C; // type:object size:0x20 scope:local align:4
+gold_tree_stump002_part = .data:0x0004A04C; // type:object size:0x20 scope:local align:4
+gold_tree_stump003_part = .data:0x0004A06C; // type:object size:0x20 scope:local align:4
+gold_tree_stump004_part = .data:0x0004A08C; // type:object size:0x20 scope:local align:4
+w_fence_DL_table = .data:0x0004A0AC; // type:object size:0x10 scope:global align:4
+w_fence_list = .data:0x0004A0BC; // type:object size:0x8 scope:global align:4
+w_fence_list_table = .data:0x0004A0C4; // type:object size:0x4 scope:global align:4
+w_fence_shadow_list = .data:0x0004A0C8; // type:object size:0x8 scope:global align:4
+w_fence_shadow_v_fix = .data:0x0004A0D0; // type:object size:0x4 scope:global align:4
+w_fence_part = .data:0x0004A0D4; // type:object size:0x20 scope:global align:4
+w_notice_DL_table = .data:0x0004A0F4; // type:object size:0x10 scope:global align:4
+w_notice_list = .data:0x0004A104; // type:object size:0x8 scope:global align:4
+w_notice_list_table = .data:0x0004A10C; // type:object size:0x4 scope:global align:4
+w_notice_shadow_list = .data:0x0004A110; // type:object size:0x8 scope:global align:4
+w_notice_shadow_v_fix = .data:0x0004A118; // type:object size:0x4 scope:global align:4
+w_notice_part = .data:0x0004A11C; // type:object size:0x20 scope:global align:4
+grass_DL_table = .data:0x0004A13C; // type:object size:0x10 scope:local align:4
+grass_list = .data:0x0004A14C; // type:object size:0x8 scope:local align:4
+grass_list_table = .data:0x0004A154; // type:object size:0x4 scope:local align:4
+w_grass_part = .data:0x0004A158; // type:object size:0x20 scope:global align:4
+w_melody_DL_table = .data:0x0004A178; // type:object size:0x10 scope:global align:4
+w_melody_list = .data:0x0004A188; // type:object size:0x8 scope:global align:4
+w_melody_list_table = .data:0x0004A190; // type:object size:0x4 scope:global align:4
+w_melody_shadow_list = .data:0x0004A194; // type:object size:0x8 scope:global align:4
+w_melody_shadow_v_fix = .data:0x0004A19C; // type:object size:0x4 scope:global align:4
+w_melody_part = .data:0x0004A1A0; // type:object size:0x20 scope:global align:4
+w_fences_DL_table = .data:0x0004A1C0; // type:object size:0x10 scope:global align:4
+w_fences_list = .data:0x0004A1D0; // type:object size:0x8 scope:global align:4
+w_fences_list_table = .data:0x0004A1D8; // type:object size:0x4 scope:global align:4
+w_fences_shadow_list = .data:0x0004A1DC; // type:object size:0x8 scope:global align:4
+w_fences_shadow_v_fix = .data:0x0004A1E4; // type:object size:0x4 scope:global align:4
+w_fences_part = .data:0x0004A1E8; // type:object size:0x20 scope:global align:4
+w_mapboard_DL_table = .data:0x0004A208; // type:object size:0x10 scope:global align:4
+w_mapboard_list = .data:0x0004A218; // type:object size:0x8 scope:global align:4
+w_mapboard_list_table = .data:0x0004A220; // type:object size:0x4 scope:global align:4
+w_mapboard_shadow_list = .data:0x0004A224; // type:object size:0x8 scope:global align:4
+w_mapboard_shadow_v_fix = .data:0x0004A22C; // type:object size:0x4 scope:global align:4
+w_mapboard_part = .data:0x0004A230; // type:object size:0x20 scope:global align:4
+w_flower_DL_table = .data:0x0004A250; // type:object size:0x8 scope:global align:4
+w_flower_leaf_list = .data:0x0004A258; // type:object size:0x8 scope:global align:4
+w_flower_leaf_list_table = .data:0x0004A260; // type:object size:0x4 scope:global align:4
+w_flower_part = .data:0x0004A264; // type:object size:0x20 scope:global align:4
+flower_DL_table = .data:0x0004A284; // type:object size:0x18 scope:local align:4
+w_flower_list00 = .data:0x0004A29C; // type:object size:0x8 scope:global align:4
+w_flower_list01 = .data:0x0004A2A4; // type:object size:0x8 scope:global align:4
+w_flower_list02 = .data:0x0004A2AC; // type:object size:0x8 scope:global align:4
+w_flower_list_table00 = .data:0x0004A2B4; // type:object size:0x4 scope:global align:4
+w_flower_list_table01 = .data:0x0004A2B8; // type:object size:0x4 scope:global align:4
+w_flower_list_table02 = .data:0x0004A2BC; // type:object size:0x4 scope:global align:4
+w_flower_part00 = .data:0x0004A2C0; // type:object size:0x20 scope:global align:4
+w_flower_part01 = .data:0x0004A2E0; // type:object size:0x20 scope:global align:4
+w_flower_part02 = .data:0x0004A300; // type:object size:0x20 scope:global align:4
+hole_DL_table = .data:0x0004A320; // type:object size:0x6C scope:local align:4
+hole00_g_list = .data:0x0004A38C; // type:object size:0x8 scope:local align:4
+hole00_g_list_table = .data:0x0004A394; // type:object size:0x4 scope:local align:4
+hole00_g_part = .data:0x0004A398; // type:object size:0x20 scope:local align:4
+hole00_s_list = .data:0x0004A3B8; // type:object size:0x8 scope:local align:4
+hole00_s_list_table = .data:0x0004A3C0; // type:object size:0x4 scope:local align:4
+hole00_s_part = .data:0x0004A3C4; // type:object size:0x20 scope:local align:4
+crack_DL_table = .data:0x0004A3E4; // type:object size:0x6C scope:local align:4
+crack00_g_list = .data:0x0004A450; // type:object size:0x8 scope:local align:4
+crack00_g_list_table = .data:0x0004A458; // type:object size:0x4 scope:local align:4
+crack00_g_part = .data:0x0004A45C; // type:object size:0x20 scope:local align:4
+crack00_s_list = .data:0x0004A47C; // type:object size:0x8 scope:local align:4
+crack00_s_list_table = .data:0x0004A484; // type:object size:0x4 scope:local align:4
+crack00_s_part = .data:0x0004A488; // type:object size:0x20 scope:local align:4
+honycomb_DL_table = .data:0x0004A4A8; // type:object size:0x8 scope:local align:4
+honycomb_list = .data:0x0004A4B0; // type:object size:0x8 scope:local align:4
+honycomb_list_table = .data:0x0004A4B8; // type:object size:0x4 scope:local align:4
+honycomb_part = .data:0x0004A4BC; // type:object size:0x20 scope:local align:4
+stone_a_shadow_v_fix = .data:0x0004A4DC; // type:object size:0xA scope:local align:4
+stone_b_shadow_v_fix = .data:0x0004A4E8; // type:object size:0xC scope:local align:4
+stone_c_shadow_v_fix = .data:0x0004A4F4; // type:object size:0xC scope:local align:4
+stone_d_shadow_v_fix = .data:0x0004A500; // type:object size:0x8 scope:local align:4
+stone_e_shadow_v_fix = .data:0x0004A508; // type:object size:0xA scope:local align:4
+stone_DL_table = .data:0x0004A514; // type:object size:0x30 scope:local align:4
+stone_a_list = .data:0x0004A544; // type:object size:0x8 scope:local align:4
+stone_a_shadow_list = .data:0x0004A54C; // type:object size:0x8 scope:local align:4
+stone_a_list_table = .data:0x0004A554; // type:object size:0x4 scope:local align:4
+stone_a_part = .data:0x0004A558; // type:object size:0x20 scope:local align:4
+stone_b_part = .data:0x0004A578; // type:object size:0x20 scope:local align:4
+stone_c_part = .data:0x0004A598; // type:object size:0x20 scope:local align:4
+stone_d_part = .data:0x0004A5B8; // type:object size:0x20 scope:local align:4
+stone_e_part = .data:0x0004A5D8; // type:object size:0x20 scope:local align:4
+tane_DL_table = .data:0x0004A5F8; // type:object size:0x8 scope:local align:4
+tane_list = .data:0x0004A600; // type:object size:0x8 scope:local align:4
+tane_list_table = .data:0x0004A608; // type:object size:0x4 scope:local align:4
+tane_part = .data:0x0004A60C; // type:object size:0x20 scope:local align:4
+typeData_table_item1 = .data:0x0004A62C; // type:object size:0xC scope:local align:4
+typeData_table_ftr = .data:0x0004A638; // type:object size:0xC scope:local align:4
+typeData_table_crack = .data:0x0004A644; // type:object size:0xC scope:local align:4
+apple_DL_table = .data:0x0004A650; // type:object size:0x8 scope:local align:4
+apple_list = .data:0x0004A658; // type:object size:0x8 scope:local align:4
+apple_list_table = .data:0x0004A660; // type:object size:0x4 scope:local align:4
+apple_part = .data:0x0004A664; // type:object size:0x20 scope:local align:4
+orange_DL_table = .data:0x0004A684; // type:object size:0x8 scope:local align:4
+orange_list = .data:0x0004A68C; // type:object size:0x8 scope:local align:4
+orange_list_table = .data:0x0004A694; // type:object size:0x4 scope:local align:4
+orange_part = .data:0x0004A698; // type:object size:0x20 scope:local align:4
+peach_DL_table = .data:0x0004A6B8; // type:object size:0x8 scope:local align:4
+peach_list = .data:0x0004A6C0; // type:object size:0x8 scope:local align:4
+peach_list_table = .data:0x0004A6C8; // type:object size:0x4 scope:local align:4
+peach_part = .data:0x0004A6CC; // type:object size:0x20 scope:local align:4
+pear_DL_table = .data:0x0004A6EC; // type:object size:0x8 scope:local align:4
+pear_list = .data:0x0004A6F4; // type:object size:0x8 scope:local align:4
+pear_list_table = .data:0x0004A6FC; // type:object size:0x4 scope:local align:4
+pear_part = .data:0x0004A700; // type:object size:0x20 scope:local align:4
+nuts_DL_table = .data:0x0004A720; // type:object size:0x8 scope:local align:4
+nuts_list = .data:0x0004A728; // type:object size:0x8 scope:local align:4
+nuts_list_table = .data:0x0004A730; // type:object size:0x4 scope:local align:4
+nuts_part = .data:0x0004A734; // type:object size:0x20 scope:local align:4
+matutake_DL_table = .data:0x0004A754; // type:object size:0x8 scope:local align:4
+matutake_list = .data:0x0004A75C; // type:object size:0x8 scope:local align:4
+matutake_list_table = .data:0x0004A764; // type:object size:0x4 scope:local align:4
+matutake_part = .data:0x0004A768; // type:object size:0x20 scope:local align:4
+kabu_DL_table = .data:0x0004A788; // type:object size:0x8 scope:local align:4
+kabu_list = .data:0x0004A790; // type:object size:0x8 scope:local align:4
+kabu_list_table = .data:0x0004A798; // type:object size:0x4 scope:local align:4
+kabu_part = .data:0x0004A79C; // type:object size:0x20 scope:local align:4
+fish_DL_table = .data:0x0004A7BC; // type:object size:0x8 scope:local align:4
+fish_list = .data:0x0004A7C4; // type:object size:0x8 scope:local align:4
+fish_list_table = .data:0x0004A7CC; // type:object size:0x4 scope:local align:4
+fish_part = .data:0x0004A7D0; // type:object size:0x20 scope:local align:4
+bag_DL_table = .data:0x0004A7F0; // type:object size:0x8 scope:local align:4
+bag_list = .data:0x0004A7F8; // type:object size:0x8 scope:local align:4
+bag_list_table = .data:0x0004A800; // type:object size:0x4 scope:local align:4
+bag_part = .data:0x0004A804; // type:object size:0x20 scope:local align:4
+leaf_DL_table = .data:0x0004A824; // type:object size:0x8 scope:local align:4
+leaf_list = .data:0x0004A82C; // type:object size:0x8 scope:local align:4
+leaf_list_table = .data:0x0004A834; // type:object size:0x4 scope:local align:4
+leaf_part = .data:0x0004A838; // type:object size:0x20 scope:local align:4
+roll_DL_table = .data:0x0004A858; // type:object size:0x8 scope:local align:4
+roll_list = .data:0x0004A860; // type:object size:0x8 scope:local align:4
+roll_list_table = .data:0x0004A868; // type:object size:0x4 scope:local align:4
+roll_part = .data:0x0004A86C; // type:object size:0x20 scope:local align:4
+box_DL_table = .data:0x0004A88C; // type:object size:0x8 scope:local align:4
+box_list = .data:0x0004A894; // type:object size:0x8 scope:local align:4
+box_list_table = .data:0x0004A89C; // type:object size:0x4 scope:local align:4
+box_part = .data:0x0004A8A0; // type:object size:0x20 scope:local align:4
+pack_DL_table = .data:0x0004A8C0; // type:object size:0x8 scope:local align:4
+pack_list = .data:0x0004A8C8; // type:object size:0x8 scope:local align:4
+pack_list_table = .data:0x0004A8D0; // type:object size:0x4 scope:local align:4
+pack_part = .data:0x0004A8D4; // type:object size:0x20 scope:local align:4
+present_DL_table = .data:0x0004A8F4; // type:object size:0x8 scope:local align:4
+present_list = .data:0x0004A8FC; // type:object size:0x8 scope:local align:4
+present_list_table = .data:0x0004A904; // type:object size:0x4 scope:local align:4
+present_part = .data:0x0004A908; // type:object size:0x20 scope:local align:4
+seed_DL_table = .data:0x0004A928; // type:object size:0x8 scope:local align:4
+seed_list = .data:0x0004A930; // type:object size:0x8 scope:local align:4
+seed_list_table = .data:0x0004A938; // type:object size:0x4 scope:local align:4
+seed_part = .data:0x0004A93C; // type:object size:0x20 scope:local align:4
+haniwa_DL_table = .data:0x0004A95C; // type:object size:0x8 scope:local align:4
+haniwa_list = .data:0x0004A964; // type:object size:0x8 scope:local align:4
+haniwa_list_table = .data:0x0004A96C; // type:object size:0x4 scope:local align:4
+haniwa_part = .data:0x0004A970; // type:object size:0x20 scope:local align:4
+other_DL_table = .data:0x0004A990; // type:object size:0x8 scope:local align:4
+other_list = .data:0x0004A998; // type:object size:0x8 scope:local align:4
+other_list_table = .data:0x0004A9A0; // type:object size:0x4 scope:local align:4
+other_part = .data:0x0004A9A4; // type:object size:0x20 scope:local align:4
+tool_DL_table = .data:0x0004A9C4; // type:object size:0x8 scope:local align:4
+tool_list = .data:0x0004A9CC; // type:object size:0x8 scope:local align:4
+tool_list_table = .data:0x0004A9D4; // type:object size:0x4 scope:local align:4
+tool_part = .data:0x0004A9D8; // type:object size:0x20 scope:local align:4
+fossil_DL_table = .data:0x0004A9F8; // type:object size:0x8 scope:local align:4
+fossil_list = .data:0x0004AA00; // type:object size:0x8 scope:local align:4
+fossil_list_table = .data:0x0004AA08; // type:object size:0x4 scope:local align:4
+fossil_part = .data:0x0004AA0C; // type:object size:0x20 scope:local align:4
+trash_DL_table = .data:0x0004AA2C; // type:object size:0x8 scope:local align:4
+trash_list = .data:0x0004AA34; // type:object size:0x8 scope:local align:4
+trash_list_table = .data:0x0004AA3C; // type:object size:0x4 scope:local align:4
+trash_part = .data:0x0004AA40; // type:object size:0x20 scope:local align:4
+otosi_DL_table = .data:0x0004AA60; // type:object size:0x8 scope:local align:4
+otosi_list = .data:0x0004AA68; // type:object size:0x8 scope:local align:4
+otosi_list_table = .data:0x0004AA70; // type:object size:0x4 scope:local align:4
+otosi_part = .data:0x0004AA74; // type:object size:0x20 scope:local align:4
+shell_DL_table = .data:0x0004AA94; // type:object size:0x18 scope:local align:4
+shell_a_list = .data:0x0004AAAC; // type:object size:0x8 scope:local align:4
+shell_b_list = .data:0x0004AAB4; // type:object size:0x8 scope:local align:4
+shell_c_list = .data:0x0004AABC; // type:object size:0x8 scope:local align:4
+shell_a_list_table = .data:0x0004AAC4; // type:object size:0x4 scope:local align:4
+shell_b_list_table = .data:0x0004AAC8; // type:object size:0x4 scope:local align:4
+shell_c_list_table = .data:0x0004AACC; // type:object size:0x4 scope:local align:4
+shell_a_part = .data:0x0004AAD0; // type:object size:0x20 scope:local align:4
+shell_b_part = .data:0x0004AAF0; // type:object size:0x20 scope:local align:4
+shell_c_part = .data:0x0004AB10; // type:object size:0x20 scope:local align:4
+candy_DL_table = .data:0x0004AB30; // type:object size:0x8 scope:local align:4
+candy_list = .data:0x0004AB38; // type:object size:0x8 scope:local align:4
+candy_list_table = .data:0x0004AB40; // type:object size:0x4 scope:local align:4
+candy_part = .data:0x0004AB44; // type:object size:0x20 scope:local align:4
+coconut_DL_table = .data:0x0004AB64; // type:object size:0x8 scope:local align:4
+coconut_list = .data:0x0004AB6C; // type:object size:0x8 scope:local align:4
+coconut_list_table = .data:0x0004AB74; // type:object size:0x4 scope:local align:4
+coconut_part = .data:0x0004AB78; // type:object size:0x20 scope:local align:4
+cloth_DL_table = .data:0x0004AB98; // type:object size:0x8 scope:local align:4
+cloth_list = .data:0x0004ABA0; // type:object size:0x8 scope:local align:4
+cloth_list_table = .data:0x0004ABA8; // type:object size:0x4 scope:local align:4
+cloth_part = .data:0x0004ABAC; // type:object size:0x20 scope:local align:4
+carpet_DL_table = .data:0x0004ABCC; // type:object size:0x8 scope:local align:4
+carpet_list = .data:0x0004ABD4; // type:object size:0x8 scope:local align:4
+carpet_list_table = .data:0x0004ABDC; // type:object size:0x4 scope:local align:4
+carpet_part = .data:0x0004ABE0; // type:object size:0x20 scope:local align:4
+wall_DL_table = .data:0x0004AC00; // type:object size:0x8 scope:local align:4
+wall_list = .data:0x0004AC08; // type:object size:0x8 scope:local align:4
+wall_list_table = .data:0x0004AC10; // type:object size:0x4 scope:local align:4
+wall_part = .data:0x0004AC14; // type:object size:0x20 scope:local align:4
+axe_DL_table = .data:0x0004AC34; // type:object size:0x8 scope:local align:4
+axe_list = .data:0x0004AC3C; // type:object size:0x8 scope:local align:4
+axe_list_table = .data:0x0004AC44; // type:object size:0x4 scope:local align:4
+axe_part = .data:0x0004AC48; // type:object size:0x20 scope:local align:4
+net_DL_table = .data:0x0004AC68; // type:object size:0x8 scope:local align:4
+net_list = .data:0x0004AC70; // type:object size:0x8 scope:local align:4
+net_list_table = .data:0x0004AC78; // type:object size:0x4 scope:local align:4
+net_part = .data:0x0004AC7C; // type:object size:0x20 scope:local align:4
+rod_DL_table = .data:0x0004AC9C; // type:object size:0x8 scope:local align:4
+rod_list = .data:0x0004ACA4; // type:object size:0x8 scope:local align:4
+rod_list_table = .data:0x0004ACAC; // type:object size:0x4 scope:local align:4
+rod_part = .data:0x0004ACB0; // type:object size:0x20 scope:local align:4
+scoop_DL_table = .data:0x0004ACD0; // type:object size:0x8 scope:local align:4
+scoop_list = .data:0x0004ACD8; // type:object size:0x8 scope:local align:4
+scoop_list_table = .data:0x0004ACE0; // type:object size:0x4 scope:local align:4
+scoop_part = .data:0x0004ACE4; // type:object size:0x20 scope:local align:4
+gold_axe_DL_table = .data:0x0004AD04; // type:object size:0x8 scope:local align:4
+gold_axe_list = .data:0x0004AD0C; // type:object size:0x8 scope:local align:4
+gold_axe_list_table = .data:0x0004AD14; // type:object size:0x4 scope:local align:4
+gold_axe_part = .data:0x0004AD18; // type:object size:0x20 scope:local align:4
+gold_net_DL_table = .data:0x0004AD38; // type:object size:0x8 scope:local align:4
+gold_net_list = .data:0x0004AD40; // type:object size:0x8 scope:local align:4
+gold_net_list_table = .data:0x0004AD48; // type:object size:0x4 scope:local align:4
+gold_net_part = .data:0x0004AD4C; // type:object size:0x20 scope:local align:4
+gold_rod_DL_table = .data:0x0004AD6C; // type:object size:0x8 scope:local align:4
+gold_rod_list = .data:0x0004AD74; // type:object size:0x8 scope:local align:4
+gold_rod_list_table = .data:0x0004AD7C; // type:object size:0x4 scope:local align:4
+gold_rod_part = .data:0x0004AD80; // type:object size:0x20 scope:local align:4
+gold_scoop_DL_table = .data:0x0004ADA0; // type:object size:0x8 scope:local align:4
+gold_scoop_list = .data:0x0004ADA8; // type:object size:0x8 scope:local align:4
+gold_scoop_list_table = .data:0x0004ADB0; // type:object size:0x4 scope:local align:4
+gold_scoop_part = .data:0x0004ADB4; // type:object size:0x20 scope:local align:4
+umbrella_DL_table = .data:0x0004ADD4; // type:object size:0x8 scope:local align:4
+umbrella_list = .data:0x0004ADDC; // type:object size:0x8 scope:local align:4
+umbrella_list_table = .data:0x0004ADE4; // type:object size:0x4 scope:local align:4
+umbrella_part = .data:0x0004ADE8; // type:object size:0x20 scope:local align:4
+pinwheel_DL_table = .data:0x0004AE08; // type:object size:0x8 scope:local align:4
+pinwheel_list = .data:0x0004AE10; // type:object size:0x8 scope:local align:4
+pinwheel_list_table = .data:0x0004AE18; // type:object size:0x4 scope:local align:4
+pinwheel_part = .data:0x0004AE1C; // type:object size:0x20 scope:local align:4
+fan_DL_table = .data:0x0004AE3C; // type:object size:0x8 scope:local align:4
+fan_list = .data:0x0004AE44; // type:object size:0x8 scope:local align:4
+fan_list_table = .data:0x0004AE4C; // type:object size:0x4 scope:local align:4
+fan_part = .data:0x0004AE50; // type:object size:0x20 scope:local align:4
+paper_DL_table = .data:0x0004AE70; // type:object size:0x8 scope:local align:4
+paper_list = .data:0x0004AE78; // type:object size:0x8 scope:local align:4
+paper_list_table = .data:0x0004AE80; // type:object size:0x4 scope:local align:4
+paper_part = .data:0x0004AE84; // type:object size:0x20 scope:local align:4
+seedbag_DL_table = .data:0x0004AEA4; // type:object size:0x8 scope:local align:4
+seedbag_list = .data:0x0004AEAC; // type:object size:0x8 scope:local align:4
+seedbag_list_table = .data:0x0004AEB4; // type:object size:0x4 scope:local align:4
+seedbag_part = .data:0x0004AEB8; // type:object size:0x20 scope:local align:4
+luckbag_DL_table = .data:0x0004AED8; // type:object size:0x8 scope:local align:4
+luckbag_list = .data:0x0004AEE0; // type:object size:0x8 scope:local align:4
+luckbag_list_table = .data:0x0004AEE8; // type:object size:0x4 scope:local align:4
+luckbag_part = .data:0x0004AEEC; // type:object size:0x20 scope:local align:4
+gymcard_DL_table = .data:0x0004AF0C; // type:object size:0x8 scope:local align:4
+gymcard_list = .data:0x0004AF14; // type:object size:0x8 scope:local align:4
+gymcard_list_table = .data:0x0004AF1C; // type:object size:0x4 scope:local align:4
+gymcard_part = .data:0x0004AF20; // type:object size:0x20 scope:local align:4
+music_DL_table = .data:0x0004AF40; // type:object size:0x8 scope:local align:4
+music_list = .data:0x0004AF48; // type:object size:0x8 scope:local align:4
+music_list_table = .data:0x0004AF50; // type:object size:0x4 scope:local align:4
+music_part = .data:0x0004AF54; // type:object size:0x20 scope:local align:4
+lottery_DL_table = .data:0x0004AF74; // type:object size:0x8 scope:local align:4
+lottery_list = .data:0x0004AF7C; // type:object size:0x8 scope:local align:4
+lottery_list_table = .data:0x0004AF84; // type:object size:0x4 scope:local align:4
+lottery_part = .data:0x0004AF88; // type:object size:0x20 scope:local align:4
+bone_DL_table = .data:0x0004AFA8; // type:object size:0x8 scope:local align:4
+bone_list = .data:0x0004AFB0; // type:object size:0x8 scope:local align:4
+bone_list_table = .data:0x0004AFB8; // type:object size:0x4 scope:local align:4
+bone_part = .data:0x0004AFBC; // type:object size:0x20 scope:local align:4
+diary_DL_table = .data:0x0004AFDC; // type:object size:0x8 scope:local align:4
+diary_list = .data:0x0004AFE4; // type:object size:0x8 scope:local align:4
+diary_list_table = .data:0x0004AFEC; // type:object size:0x4 scope:local align:4
+diary_part = .data:0x0004AFF0; // type:object size:0x20 scope:local align:4
+fork_DL_table = .data:0x0004B010; // type:object size:0x8 scope:local align:4
+fork_list = .data:0x0004B018; // type:object size:0x8 scope:local align:4
+fork_list_table = .data:0x0004B020; // type:object size:0x4 scope:local align:4
+fork_part = .data:0x0004B024; // type:object size:0x20 scope:local align:4
+draw_part_table_a = .data:0x0004B044; // type:object size:0x3D8 scope:local align:4
+rnd_data_x = .data:0x0004B41C; // type:object size:0x40 scope:local align:4
+rnd_data_z = .data:0x0004B45C; // type:object size:0x40 scope:local align:4
+BI_chk_pos$605 = .data:0x0004B49C; // type:object size:0x48 scope:local align:4
+d_size$682 = .data:0x0004B4E4; // type:object size:0xC scope:local align:4
+d_size$828 = .data:0x0004B4F0; // type:object size:0xC scope:local align:4
+fr2tr_f$1018 = .data:0x0004B4FC; // type:object size:0x18 scope:local align:4 data:2byte
+fr2tr_f$1032 = .data:0x0004B514; // type:object size:0x10 scope:local align:4 data:2byte
+unit_offset_part$1193 = .data:0x0004B524; // type:object size:0x18 scope:local align:4
+pos_part$1194 = .data:0x0004B53C; // type:object size:0x24 scope:local align:4
+pos_part_honey_comb$1195 = .data:0x0004B560; // type:object size:0x24 scope:local align:4
+pos_part_present$1196 = .data:0x0004B584; // type:object size:0x24 scope:local align:4
+pos_part_palm_cc$1197 = .data:0x0004B5A8; // type:object size:0x18 scope:local align:4
+fade_out$1198 = .data:0x0004B5C0; // type:object size:0xC scope:local align:4
+fg_ytable$1321 = .data:0x0004B5CC; // type:object size:0xA8 scope:local align:4 data:2byte
+wait_pos$1388 = .data:0x0004B674; // type:object size:0xC scope:local align:4 data:float
+tree_cut_tbl$2190 = .data:0x0004B680; // type:object size:0x14C scope:local align:4 data:2byte
+@2298 = .data:0x0004B7CC; // type:object size:0x15 scope:local align:4 data:string
+@2982 = .data:0x0004B7E4; // type:object size:0x11 scope:local align:4 data:string
+type_data_table_p_a = .data:0x0004B7F8; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x0004B810; // type:label scope:local
+BgXmasItem_Profile = .data:0x0004B810; // type:object size:0x24 scope:global align:4
+pos_table = .data:0x0004B834; // type:object size:0x40 scope:local align:4
+pos_table2 = .data:0x0004B874; // type:object size:0x40 scope:local align:4
+typeData_table_bgXmasItem = .data:0x0004B8B4; // type:object size:0x624 scope:global align:4
+typeData_table_bgXmasItem2 = .data:0x0004BED8; // type:object size:0x4F8 scope:global align:4
+typeData_table_dummy = .data:0x0004C3D0; // type:object size:0xC scope:local align:4
+x_tree_DL_table = .data:0x0004C3DC; // type:object size:0x84 scope:global align:4
+x_tree0_list = .data:0x0004C460; // type:object size:0x8 scope:global align:4
+x_tree0_list2 = .data:0x0004C468; // type:object size:0x8 scope:global align:4
+x_tree0_shadow_list = .data:0x0004C470; // type:object size:0x8 scope:global align:4
+x_tree1_list = .data:0x0004C478; // type:object size:0x8 scope:global align:4
+x_tree1_list2 = .data:0x0004C480; // type:object size:0x8 scope:global align:4
+x_tree1_shadow_list = .data:0x0004C488; // type:object size:0x8 scope:global align:4
+x_tree2_list = .data:0x0004C490; // type:object size:0x8 scope:global align:4
+x_tree2_list2 = .data:0x0004C498; // type:object size:0x8 scope:global align:4
+x_tree2_shadow_list = .data:0x0004C4A0; // type:object size:0x8 scope:global align:4
+x_tree3_list = .data:0x0004C4A8; // type:object size:0x8 scope:global align:4
+x_tree4_list = .data:0x0004C4B0; // type:object size:0x8 scope:global align:4
+tree4_ap_list = .data:0x0004C4B8; // type:object size:0x8 scope:local align:4
+tree4_or_list = .data:0x0004C4C0; // type:object size:0x8 scope:local align:4
+tree4_ph_list = .data:0x0004C4C8; // type:object size:0x8 scope:local align:4
+tree4_pr_list = .data:0x0004C4D0; // type:object size:0x8 scope:local align:4
+tree4_nt_list = .data:0x0004C4D8; // type:object size:0x8 scope:local align:4
+tree4_bg_list = .data:0x0004C4E0; // type:object size:0x8 scope:local align:4
+x_tree0_dead_list = .data:0x0004C4E8; // type:object size:0x8 scope:global align:4
+tree4_light_list = .data:0x0004C4F0; // type:object size:0x8 scope:global align:4
+x_tree0_list_table = .data:0x0004C4F8; // type:object size:0x8 scope:global align:4
+x_tree1_list_table = .data:0x0004C500; // type:object size:0x8 scope:global align:4
+x_tree2_list_table = .data:0x0004C508; // type:object size:0x8 scope:global align:4
+x_tree3_list_table = .data:0x0004C510; // type:object size:0x4 scope:global align:4
+x_tree4_list_table = .data:0x0004C514; // type:object size:0x4 scope:global align:4
+tree4_ap_list_table = .data:0x0004C518; // type:object size:0xC scope:local align:4
+tree4_or_list_table = .data:0x0004C524; // type:object size:0xC scope:local align:4
+tree4_ph_list_table = .data:0x0004C530; // type:object size:0xC scope:local align:4
+tree4_pr_list_table = .data:0x0004C53C; // type:object size:0xC scope:local align:4
+tree4_nt_list_table = .data:0x0004C548; // type:object size:0xC scope:local align:4
+tree4_bg_list_table = .data:0x0004C554; // type:object size:0xC scope:local align:4
+x_tree0_dead_list_table = .data:0x0004C560; // type:object size:0x4 scope:global align:4
+tree4_light_list_table = .data:0x0004C564; // type:object size:0xC scope:global align:4
+x_tree_shadow_v_fix = .data:0x0004C570; // type:object size:0x4 scope:global align:4
+x_tree4_part = .data:0x0004C574; // type:object size:0x20 scope:global align:4
+x_tree3_part = .data:0x0004C594; // type:object size:0x20 scope:global align:4
+x_tree2_part = .data:0x0004C5B4; // type:object size:0x20 scope:global align:4
+x_tree1_part = .data:0x0004C5D4; // type:object size:0x20 scope:global align:4
+x_tree0_part = .data:0x0004C5F4; // type:object size:0x20 scope:global align:4
+tree4_ap_part = .data:0x0004C614; // type:object size:0x20 scope:local align:4
+tree4_or_part = .data:0x0004C634; // type:object size:0x20 scope:local align:4
+tree4_ph_part = .data:0x0004C654; // type:object size:0x20 scope:local align:4
+tree4_pr_part = .data:0x0004C674; // type:object size:0x20 scope:local align:4
+tree4_nt_part = .data:0x0004C694; // type:object size:0x20 scope:local align:4
+tree4_bg_part = .data:0x0004C6B4; // type:object size:0x20 scope:local align:4
+x_tree0_dead_part = .data:0x0004C6D4; // type:object size:0x20 scope:global align:4
+tree4_light_part = .data:0x0004C6F4; // type:object size:0x20 scope:global align:4
+palm_DL_table = .data:0x0004C714; // type:object size:0x68 scope:local align:4
+palm1_list = .data:0x0004C77C; // type:object size:0x8 scope:local align:4
+palm1_dead_list = .data:0x0004C784; // type:object size:0x8 scope:local align:4
+palm2_list = .data:0x0004C78C; // type:object size:0x8 scope:local align:4
+palm3_leaf_list = .data:0x0004C794; // type:object size:0x8 scope:local align:4
+palm3_trunk_list = .data:0x0004C79C; // type:object size:0x8 scope:local align:4
+palm4_leaf_list = .data:0x0004C7A4; // type:object size:0x8 scope:local align:4
+palm4_trunk_list = .data:0x0004C7AC; // type:object size:0x8 scope:local align:4
+palm5_leaf_list = .data:0x0004C7B4; // type:object size:0x8 scope:local align:4
+palm5_trunk_list = .data:0x0004C7BC; // type:object size:0x8 scope:local align:4
+palm5_coco_list = .data:0x0004C7C4; // type:object size:0x8 scope:local align:4
+palm3_shadow_list = .data:0x0004C7CC; // type:object size:0x8 scope:local align:4
+palm4_shadow_list = .data:0x0004C7D4; // type:object size:0x8 scope:local align:4
+palm5_shadow_list = .data:0x0004C7DC; // type:object size:0x8 scope:local align:4
+palm1_list_table = .data:0x0004C7E4; // type:object size:0x4 scope:local align:4
+palm2_list_table = .data:0x0004C7E8; // type:object size:0x4 scope:local align:4
+palm3_list_table = .data:0x0004C7EC; // type:object size:0x8 scope:local align:4
+palm4_list_table = .data:0x0004C7F4; // type:object size:0x8 scope:local align:4
+palm5_list_table = .data:0x0004C7FC; // type:object size:0x8 scope:local align:4
+palm5_cc_list_table = .data:0x0004C804; // type:object size:0xC scope:local align:4
+palm1_dead_list_table = .data:0x0004C810; // type:object size:0x4 scope:local align:4
+palm3_shadow_v_fix = .data:0x0004C814; // type:object size:0x4 scope:local align:4
+palm5_shadow_v_fix = .data:0x0004C818; // type:object size:0x4 scope:local align:4
+palm000_part = .data:0x0004C81C; // type:object size:0x20 scope:local align:4
+palm001_part = .data:0x0004C83C; // type:object size:0x20 scope:local align:4
+palm002_part = .data:0x0004C85C; // type:object size:0x20 scope:local align:4
+palm003_part = .data:0x0004C87C; // type:object size:0x20 scope:local align:4
+palm004_part = .data:0x0004C89C; // type:object size:0x20 scope:local align:4
+palm004_cc_part = .data:0x0004C8BC; // type:object size:0x20 scope:local align:4
+palm000_dead_part = .data:0x0004C8DC; // type:object size:0x20 scope:local align:4
+Cedar_DL_table = .data:0x0004C8FC; // type:object size:0x68 scope:local align:4
+cedar3_shadow_list = .data:0x0004C964; // type:object size:0x8 scope:local align:4
+cedar4_shadow_list = .data:0x0004C96C; // type:object size:0x8 scope:local align:4
+cedar5_shadow_list = .data:0x0004C974; // type:object size:0x8 scope:local align:4
+cedar1_list = .data:0x0004C97C; // type:object size:0x8 scope:local align:4
+cedar1_dead_list = .data:0x0004C984; // type:object size:0x8 scope:local align:4
+cedar2_list = .data:0x0004C98C; // type:object size:0x8 scope:local align:4
+cedar3_leaf_list = .data:0x0004C994; // type:object size:0x8 scope:local align:4
+cedar3_trunk_list = .data:0x0004C99C; // type:object size:0x8 scope:local align:4
+cedar4_leaf_list = .data:0x0004C9A4; // type:object size:0x8 scope:local align:4
+cedar4_trunk_list = .data:0x0004C9AC; // type:object size:0x8 scope:local align:4
+cedar5_leaf_list = .data:0x0004C9B4; // type:object size:0x8 scope:local align:4
+cedar5_trunk_list = .data:0x0004C9BC; // type:object size:0x8 scope:local align:4
+cedar5_light_list = .data:0x0004C9C4; // type:object size:0x8 scope:global align:4
+cedar1_list_table = .data:0x0004C9CC; // type:object size:0x4 scope:local align:4
+cedar1_dead_list_table = .data:0x0004C9D0; // type:object size:0x4 scope:local align:4
+cedar2_list_table = .data:0x0004C9D4; // type:object size:0x4 scope:local align:4
+cedar3_list_table = .data:0x0004C9D8; // type:object size:0x8 scope:local align:4
+cedar4_list_table = .data:0x0004C9E0; // type:object size:0x8 scope:local align:4
+cedar5_list_table = .data:0x0004C9E8; // type:object size:0x8 scope:local align:4
+cedar5_light_list_table = .data:0x0004C9F0; // type:object size:0xC scope:global align:4
+cedar_shadow_v_fix = .data:0x0004C9FC; // type:object size:0x4 scope:local align:4
+cedar000_part = .data:0x0004CA00; // type:object size:0x20 scope:local align:4
+cedar001_part = .data:0x0004CA20; // type:object size:0x20 scope:local align:4
+cedar002_part = .data:0x0004CA40; // type:object size:0x20 scope:local align:4
+cedar003_part = .data:0x0004CA60; // type:object size:0x20 scope:local align:4
+cedar004_part = .data:0x0004CA80; // type:object size:0x20 scope:local align:4
+cedar004_light_part = .data:0x0004CAA0; // type:object size:0x20 scope:global align:4
+cedar000_dead_part = .data:0x0004CAC0; // type:object size:0x20 scope:local align:4
+GTree_DL_table = .data:0x0004CAE0; // type:object size:0x60 scope:local align:4
+gold_tree1_list = .data:0x0004CB40; // type:object size:0x8 scope:local align:4
+gold_tree1_dead_list = .data:0x0004CB48; // type:object size:0x8 scope:local align:4
+gold_tree2_list = .data:0x0004CB50; // type:object size:0x8 scope:local align:4
+gold_tree3_leaf_list = .data:0x0004CB58; // type:object size:0x8 scope:local align:4
+gold_tree3_trunk_list = .data:0x0004CB60; // type:object size:0x8 scope:local align:4
+gold_tree4_leaf_list = .data:0x0004CB68; // type:object size:0x8 scope:local align:4
+gold_tree4_trunk_list = .data:0x0004CB70; // type:object size:0x8 scope:local align:4
+gold_tree5_leaf_list = .data:0x0004CB78; // type:object size:0x8 scope:local align:4
+gold_tree5_trunk_list = .data:0x0004CB80; // type:object size:0x8 scope:local align:4
+gold_tree3_shadow_list = .data:0x0004CB88; // type:object size:0x8 scope:local align:4
+gold_tree4_shadow_list = .data:0x0004CB90; // type:object size:0x8 scope:local align:4
+gold_tree5_shadow_list = .data:0x0004CB98; // type:object size:0x8 scope:local align:4
+gold_tree1_list_table = .data:0x0004CBA0; // type:object size:0x4 scope:local align:4
+gold_tree1_dead_list_table = .data:0x0004CBA4; // type:object size:0x4 scope:local align:4
+gold_tree2_list_table = .data:0x0004CBA8; // type:object size:0x4 scope:local align:4
+gold_tree3_list_table = .data:0x0004CBAC; // type:object size:0x8 scope:local align:4
+gold_tree4_list_table = .data:0x0004CBB4; // type:object size:0x8 scope:local align:4
+gold_tree5_list_table = .data:0x0004CBBC; // type:object size:0x8 scope:local align:4
+gold_tree_shadow_v_fix = .data:0x0004CBC4; // type:object size:0x4 scope:local align:4
+gold_tree000_part = .data:0x0004CBC8; // type:object size:0x20 scope:local align:4
+gold_tree001_part = .data:0x0004CBE8; // type:object size:0x20 scope:local align:4
+gold_tree002_part = .data:0x0004CC08; // type:object size:0x20 scope:local align:4
+gold_tree003_part = .data:0x0004CC28; // type:object size:0x20 scope:local align:4
+gold_tree004_part = .data:0x0004CC48; // type:object size:0x20 scope:local align:4
+gold_tree000_dead_part = .data:0x0004CC68; // type:object size:0x20 scope:local align:4
+x_stump_DL_table = .data:0x0004CC88; // type:object size:0x38 scope:global align:4
+x_stump_list0 = .data:0x0004CCC0; // type:object size:0x8 scope:global align:4
+x_stump_shadow_list0 = .data:0x0004CCC8; // type:object size:0x8 scope:global align:4
+x_stump_list1 = .data:0x0004CCD0; // type:object size:0x8 scope:global align:4
+x_stump_shadow_list1 = .data:0x0004CCD8; // type:object size:0x8 scope:global align:4
+x_stump_list2 = .data:0x0004CCE0; // type:object size:0x8 scope:global align:4
+x_stump_shadow_list2 = .data:0x0004CCE8; // type:object size:0x8 scope:global align:4
+x_stump_list3 = .data:0x0004CCF0; // type:object size:0x8 scope:global align:4
+x_stump_list_table0 = .data:0x0004CCF8; // type:object size:0x4 scope:global align:4
+x_stump_list_table1 = .data:0x0004CCFC; // type:object size:0x4 scope:global align:4
+x_stump_list_table2 = .data:0x0004CD00; // type:object size:0x4 scope:global align:4
+x_stump_list_table3 = .data:0x0004CD04; // type:object size:0x4 scope:global align:4
+x_stump_shadow_v_fix = .data:0x0004CD08; // type:object size:0x4 scope:global align:4
+x_stump_part1 = .data:0x0004CD0C; // type:object size:0x20 scope:global align:4
+x_stump_part2 = .data:0x0004CD2C; // type:object size:0x20 scope:global align:4
+x_stump_part3 = .data:0x0004CD4C; // type:object size:0x20 scope:global align:4
+x_stump_part4 = .data:0x0004CD6C; // type:object size:0x20 scope:global align:4
+palm_stump_DL_table = .data:0x0004CD8C; // type:object size:0x38 scope:local align:4
+pstump3_shadow_list = .data:0x0004CDC4; // type:object size:0x8 scope:local align:4
+pstump4_shadow_list = .data:0x0004CDCC; // type:object size:0x8 scope:local align:4
+pstump5_shadow_list = .data:0x0004CDD4; // type:object size:0x8 scope:local align:4
+pstump2_list = .data:0x0004CDDC; // type:object size:0x8 scope:local align:4
+pstump3_list = .data:0x0004CDE4; // type:object size:0x8 scope:local align:4
+pstump4_list = .data:0x0004CDEC; // type:object size:0x8 scope:local align:4
+pstump5_list = .data:0x0004CDF4; // type:object size:0x8 scope:local align:4
+pstump2_list_table = .data:0x0004CDFC; // type:object size:0x4 scope:local align:4
+pstump3_list_table = .data:0x0004CE00; // type:object size:0x4 scope:local align:4
+pstump4_list_table = .data:0x0004CE04; // type:object size:0x4 scope:local align:4
+pstump5_list_table = .data:0x0004CE08; // type:object size:0x4 scope:local align:4
+pstump3_shadow_v_fix = .data:0x0004CE0C; // type:object size:0x4 scope:local align:4
+pstump5_shadow_v_fix = .data:0x0004CE10; // type:object size:0x4 scope:local align:4
+palm_stump001_part = .data:0x0004CE14; // type:object size:0x20 scope:local align:4
+palm_stump002_part = .data:0x0004CE34; // type:object size:0x20 scope:local align:4
+palm_stump003_part = .data:0x0004CE54; // type:object size:0x20 scope:local align:4
+palm_stump004_part = .data:0x0004CE74; // type:object size:0x20 scope:local align:4
+CedarStump_DL_table = .data:0x0004CE94; // type:object size:0x38 scope:local align:4
+cstump3_shadow_list = .data:0x0004CECC; // type:object size:0x8 scope:local align:4
+cstump4_shadow_list = .data:0x0004CED4; // type:object size:0x8 scope:local align:4
+cstump5_shadow_list = .data:0x0004CEDC; // type:object size:0x8 scope:local align:4
+cstump2_list = .data:0x0004CEE4; // type:object size:0x8 scope:local align:4
+cstump3_list = .data:0x0004CEEC; // type:object size:0x8 scope:local align:4
+cstump4_list = .data:0x0004CEF4; // type:object size:0x8 scope:local align:4
+cstump5_list = .data:0x0004CEFC; // type:object size:0x8 scope:local align:4
+cstump2_list_table = .data:0x0004CF04; // type:object size:0x4 scope:local align:4
+cstump3_list_table = .data:0x0004CF08; // type:object size:0x4 scope:local align:4
+cstump4_list_table = .data:0x0004CF0C; // type:object size:0x4 scope:local align:4
+cstump5_list_table = .data:0x0004CF10; // type:object size:0x4 scope:local align:4
+cstump_shadow_v_fix = .data:0x0004CF14; // type:object size:0x4 scope:local align:4
+cedar_stump001_part = .data:0x0004CF18; // type:object size:0x20 scope:local align:4
+cedar_stump002_part = .data:0x0004CF38; // type:object size:0x20 scope:local align:4
+cedar_stump003_part = .data:0x0004CF58; // type:object size:0x20 scope:local align:4
+cedar_stump004_part = .data:0x0004CF78; // type:object size:0x20 scope:local align:4
+GStump_DL_table = .data:0x0004CF98; // type:object size:0x38 scope:local align:4
+gold_stump2_list = .data:0x0004CFD0; // type:object size:0x8 scope:local align:4
+gold_stump3_list = .data:0x0004CFD8; // type:object size:0x8 scope:local align:4
+gold_stump4_list = .data:0x0004CFE0; // type:object size:0x8 scope:local align:4
+gold_stump5_list = .data:0x0004CFE8; // type:object size:0x8 scope:local align:4
+gold_stump3_shadow_list = .data:0x0004CFF0; // type:object size:0x8 scope:local align:4
+gold_stump4_shadow_list = .data:0x0004CFF8; // type:object size:0x8 scope:local align:4
+gold_stump5_shadow_list = .data:0x0004D000; // type:object size:0x8 scope:local align:4
+gold_stump2_list_table = .data:0x0004D008; // type:object size:0x4 scope:local align:4
+gold_stump3_list_table = .data:0x0004D00C; // type:object size:0x4 scope:local align:4
+gold_stump4_list_table = .data:0x0004D010; // type:object size:0x4 scope:local align:4
+gold_stump5_list_table = .data:0x0004D014; // type:object size:0x4 scope:local align:4
+gold_stump_shadow_v_fix = .data:0x0004D018; // type:object size:0x4 scope:local align:4
+gold_tree_stump001_part = .data:0x0004D01C; // type:object size:0x20 scope:local align:4
+gold_tree_stump002_part = .data:0x0004D03C; // type:object size:0x20 scope:local align:4
+gold_tree_stump003_part = .data:0x0004D05C; // type:object size:0x20 scope:local align:4
+gold_tree_stump004_part = .data:0x0004D07C; // type:object size:0x20 scope:local align:4
+x_fence_DL_table = .data:0x0004D09C; // type:object size:0x10 scope:global align:4
+x_fence_list = .data:0x0004D0AC; // type:object size:0x8 scope:global align:4
+x_fence_list_table = .data:0x0004D0B4; // type:object size:0x4 scope:global align:4
+x_fence_shadow_list = .data:0x0004D0B8; // type:object size:0x8 scope:global align:4
+x_fence_shadow_v_fix = .data:0x0004D0C0; // type:object size:0x4 scope:global align:4
+x_fence_part = .data:0x0004D0C4; // type:object size:0x20 scope:global align:4
+x_notice_DL_table = .data:0x0004D0E4; // type:object size:0x10 scope:global align:4
+x_notice_list = .data:0x0004D0F4; // type:object size:0x8 scope:global align:4
+x_notice_list_table = .data:0x0004D0FC; // type:object size:0x4 scope:global align:4
+x_notice_shadow_list = .data:0x0004D100; // type:object size:0x8 scope:global align:4
+x_notice_shadow_v_fix = .data:0x0004D108; // type:object size:0x4 scope:global align:4
+x_notice_part = .data:0x0004D10C; // type:object size:0x20 scope:global align:4
+grass_DL_table = .data:0x0004D12C; // type:object size:0x10 scope:local align:4
+grass_list = .data:0x0004D13C; // type:object size:0x8 scope:local align:4
+grass_list_table = .data:0x0004D144; // type:object size:0x4 scope:local align:4
+x_grass_part = .data:0x0004D148; // type:object size:0x20 scope:global align:4
+x_melody_DL_table = .data:0x0004D168; // type:object size:0x10 scope:global align:4
+x_melody_list = .data:0x0004D178; // type:object size:0x8 scope:global align:4
+x_melody_list_table = .data:0x0004D180; // type:object size:0x4 scope:global align:4
+x_melody_shadow_list = .data:0x0004D184; // type:object size:0x8 scope:global align:4
+x_melody_shadow_v_fix = .data:0x0004D18C; // type:object size:0x4 scope:global align:4
+x_melody_part = .data:0x0004D190; // type:object size:0x20 scope:global align:4
+x_fences_DL_table = .data:0x0004D1B0; // type:object size:0x10 scope:global align:4
+x_fences_list = .data:0x0004D1C0; // type:object size:0x8 scope:global align:4
+x_fences_list_table = .data:0x0004D1C8; // type:object size:0x4 scope:global align:4
+x_fences_shadow_list = .data:0x0004D1CC; // type:object size:0x8 scope:global align:4
+x_fences_shadow_v_fix = .data:0x0004D1D4; // type:object size:0x4 scope:global align:4
+x_fences_part = .data:0x0004D1D8; // type:object size:0x20 scope:global align:4
+hole_DL_table = .data:0x0004D1F8; // type:object size:0x6C scope:local align:4
+hole00_g_list = .data:0x0004D264; // type:object size:0x8 scope:local align:4
+hole00_g_list_table = .data:0x0004D26C; // type:object size:0x4 scope:local align:4
+hole00_g_part = .data:0x0004D270; // type:object size:0x20 scope:local align:4
+hole00_s_list = .data:0x0004D290; // type:object size:0x8 scope:local align:4
+hole00_s_list_table = .data:0x0004D298; // type:object size:0x4 scope:local align:4
+hole00_s_part = .data:0x0004D29C; // type:object size:0x20 scope:local align:4
+crack_DL_table = .data:0x0004D2BC; // type:object size:0x6C scope:local align:4
+crack00_g_list = .data:0x0004D328; // type:object size:0x8 scope:local align:4
+crack00_g_list_table = .data:0x0004D330; // type:object size:0x4 scope:local align:4
+crack00_g_part = .data:0x0004D334; // type:object size:0x20 scope:local align:4
+crack00_s_list = .data:0x0004D354; // type:object size:0x8 scope:local align:4
+crack00_s_list_table = .data:0x0004D35C; // type:object size:0x4 scope:local align:4
+crack00_s_part = .data:0x0004D360; // type:object size:0x20 scope:local align:4
+x_mapboard_DL_table = .data:0x0004D380; // type:object size:0x10 scope:global align:4
+x_mapboard_list = .data:0x0004D390; // type:object size:0x8 scope:global align:4
+x_mapboard_list_table = .data:0x0004D398; // type:object size:0x4 scope:global align:4
+x_mapboard_shadow_list = .data:0x0004D39C; // type:object size:0x8 scope:global align:4
+x_mapboard_shadow_v_fix = .data:0x0004D3A4; // type:object size:0x4 scope:global align:4
+x_mapboard_part = .data:0x0004D3A8; // type:object size:0x20 scope:global align:4
+x_flower_DL_table = .data:0x0004D3C8; // type:object size:0x8 scope:global align:4
+x_flower_leaf_list = .data:0x0004D3D0; // type:object size:0x8 scope:global align:4
+x_flower_leaf_list_table = .data:0x0004D3D8; // type:object size:0x4 scope:global align:4
+x_flower_part = .data:0x0004D3DC; // type:object size:0x20 scope:global align:4
+flower_DL_table = .data:0x0004D3FC; // type:object size:0x18 scope:local align:4
+x_flower_list00 = .data:0x0004D414; // type:object size:0x8 scope:global align:4
+x_flower_list01 = .data:0x0004D41C; // type:object size:0x8 scope:global align:4
+x_flower_list02 = .data:0x0004D424; // type:object size:0x8 scope:global align:4
+x_flower_list_table00 = .data:0x0004D42C; // type:object size:0x4 scope:global align:4
+x_flower_list_table01 = .data:0x0004D430; // type:object size:0x4 scope:global align:4
+x_flower_list_table02 = .data:0x0004D434; // type:object size:0x4 scope:global align:4
+x_flower_part00 = .data:0x0004D438; // type:object size:0x20 scope:global align:4
+x_flower_part01 = .data:0x0004D458; // type:object size:0x20 scope:global align:4
+x_flower_part02 = .data:0x0004D478; // type:object size:0x20 scope:global align:4
+honycomb_DL_table = .data:0x0004D498; // type:object size:0x8 scope:local align:4
+honycomb_list = .data:0x0004D4A0; // type:object size:0x8 scope:local align:4
+honycomb_list_table = .data:0x0004D4A8; // type:object size:0x4 scope:local align:4
+honycomb_part = .data:0x0004D4AC; // type:object size:0x20 scope:local align:4
+stone_a_shadow_v_fix = .data:0x0004D4CC; // type:object size:0xA scope:local align:4
+stone_b_shadow_v_fix = .data:0x0004D4D8; // type:object size:0xC scope:local align:4
+stone_c_shadow_v_fix = .data:0x0004D4E4; // type:object size:0xC scope:local align:4
+stone_d_shadow_v_fix = .data:0x0004D4F0; // type:object size:0x8 scope:local align:4
+stone_e_shadow_v_fix = .data:0x0004D4F8; // type:object size:0xA scope:local align:4
+stone_DL_table = .data:0x0004D504; // type:object size:0x30 scope:local align:4
+stone_a_list = .data:0x0004D534; // type:object size:0x8 scope:local align:4
+stone_a_shadow_list = .data:0x0004D53C; // type:object size:0x8 scope:local align:4
+stone_a_list_table = .data:0x0004D544; // type:object size:0x4 scope:local align:4
+stone_a_part = .data:0x0004D548; // type:object size:0x20 scope:local align:4
+stone_b_part = .data:0x0004D568; // type:object size:0x20 scope:local align:4
+stone_c_part = .data:0x0004D588; // type:object size:0x20 scope:local align:4
+stone_d_part = .data:0x0004D5A8; // type:object size:0x20 scope:local align:4
+stone_e_part = .data:0x0004D5C8; // type:object size:0x20 scope:local align:4
+tane_DL_table = .data:0x0004D5E8; // type:object size:0x8 scope:local align:4
+tane_list = .data:0x0004D5F0; // type:object size:0x8 scope:local align:4
+tane_list_table = .data:0x0004D5F8; // type:object size:0x4 scope:local align:4
+tane_part = .data:0x0004D5FC; // type:object size:0x20 scope:local align:4
+typeData_table_item1 = .data:0x0004D61C; // type:object size:0xC scope:local align:4
+typeData_table_ftr = .data:0x0004D628; // type:object size:0xC scope:local align:4
+typeData_table_crack = .data:0x0004D634; // type:object size:0xC scope:local align:4
+apple_DL_table = .data:0x0004D640; // type:object size:0x8 scope:local align:4
+apple_list = .data:0x0004D648; // type:object size:0x8 scope:local align:4
+apple_list_table = .data:0x0004D650; // type:object size:0x4 scope:local align:4
+apple_part = .data:0x0004D654; // type:object size:0x20 scope:local align:4
+orange_DL_table = .data:0x0004D674; // type:object size:0x8 scope:local align:4
+orange_list = .data:0x0004D67C; // type:object size:0x8 scope:local align:4
+orange_list_table = .data:0x0004D684; // type:object size:0x4 scope:local align:4
+orange_part = .data:0x0004D688; // type:object size:0x20 scope:local align:4
+peach_DL_table = .data:0x0004D6A8; // type:object size:0x8 scope:local align:4
+peach_list = .data:0x0004D6B0; // type:object size:0x8 scope:local align:4
+peach_list_table = .data:0x0004D6B8; // type:object size:0x4 scope:local align:4
+peach_part = .data:0x0004D6BC; // type:object size:0x20 scope:local align:4
+pear_DL_table = .data:0x0004D6DC; // type:object size:0x8 scope:local align:4
+pear_list = .data:0x0004D6E4; // type:object size:0x8 scope:local align:4
+pear_list_table = .data:0x0004D6EC; // type:object size:0x4 scope:local align:4
+pear_part = .data:0x0004D6F0; // type:object size:0x20 scope:local align:4
+nuts_DL_table = .data:0x0004D710; // type:object size:0x8 scope:local align:4
+nuts_list = .data:0x0004D718; // type:object size:0x8 scope:local align:4
+nuts_list_table = .data:0x0004D720; // type:object size:0x4 scope:local align:4
+nuts_part = .data:0x0004D724; // type:object size:0x20 scope:local align:4
+matutake_DL_table = .data:0x0004D744; // type:object size:0x8 scope:local align:4
+matutake_list = .data:0x0004D74C; // type:object size:0x8 scope:local align:4
+matutake_list_table = .data:0x0004D754; // type:object size:0x4 scope:local align:4
+matutake_part = .data:0x0004D758; // type:object size:0x20 scope:local align:4
+kabu_DL_table = .data:0x0004D778; // type:object size:0x8 scope:local align:4
+kabu_list = .data:0x0004D780; // type:object size:0x8 scope:local align:4
+kabu_list_table = .data:0x0004D788; // type:object size:0x4 scope:local align:4
+kabu_part = .data:0x0004D78C; // type:object size:0x20 scope:local align:4
+fish_DL_table = .data:0x0004D7AC; // type:object size:0x8 scope:local align:4
+fish_list = .data:0x0004D7B4; // type:object size:0x8 scope:local align:4
+fish_list_table = .data:0x0004D7BC; // type:object size:0x4 scope:local align:4
+fish_part = .data:0x0004D7C0; // type:object size:0x20 scope:local align:4
+bag_DL_table = .data:0x0004D7E0; // type:object size:0x8 scope:local align:4
+bag_list = .data:0x0004D7E8; // type:object size:0x8 scope:local align:4
+bag_list_table = .data:0x0004D7F0; // type:object size:0x4 scope:local align:4
+bag_part = .data:0x0004D7F4; // type:object size:0x20 scope:local align:4
+leaf_DL_table = .data:0x0004D814; // type:object size:0x8 scope:local align:4
+leaf_list = .data:0x0004D81C; // type:object size:0x8 scope:local align:4
+leaf_list_table = .data:0x0004D824; // type:object size:0x4 scope:local align:4
+leaf_part = .data:0x0004D828; // type:object size:0x20 scope:local align:4
+roll_DL_table = .data:0x0004D848; // type:object size:0x8 scope:local align:4
+roll_list = .data:0x0004D850; // type:object size:0x8 scope:local align:4
+roll_list_table = .data:0x0004D858; // type:object size:0x4 scope:local align:4
+roll_part = .data:0x0004D85C; // type:object size:0x20 scope:local align:4
+box_DL_table = .data:0x0004D87C; // type:object size:0x8 scope:local align:4
+box_list = .data:0x0004D884; // type:object size:0x8 scope:local align:4
+box_list_table = .data:0x0004D88C; // type:object size:0x4 scope:local align:4
+box_part = .data:0x0004D890; // type:object size:0x20 scope:local align:4
+pack_DL_table = .data:0x0004D8B0; // type:object size:0x8 scope:local align:4
+pack_list = .data:0x0004D8B8; // type:object size:0x8 scope:local align:4
+pack_list_table = .data:0x0004D8C0; // type:object size:0x4 scope:local align:4
+pack_part = .data:0x0004D8C4; // type:object size:0x20 scope:local align:4
+present_DL_table = .data:0x0004D8E4; // type:object size:0x8 scope:local align:4
+present_list = .data:0x0004D8EC; // type:object size:0x8 scope:local align:4
+present_list_table = .data:0x0004D8F4; // type:object size:0x4 scope:local align:4
+present_part = .data:0x0004D8F8; // type:object size:0x20 scope:local align:4
+seed_DL_table = .data:0x0004D918; // type:object size:0x8 scope:local align:4
+seed_list = .data:0x0004D920; // type:object size:0x8 scope:local align:4
+seed_list_table = .data:0x0004D928; // type:object size:0x4 scope:local align:4
+seed_part = .data:0x0004D92C; // type:object size:0x20 scope:local align:4
+haniwa_DL_table = .data:0x0004D94C; // type:object size:0x8 scope:local align:4
+haniwa_list = .data:0x0004D954; // type:object size:0x8 scope:local align:4
+haniwa_list_table = .data:0x0004D95C; // type:object size:0x4 scope:local align:4
+haniwa_part = .data:0x0004D960; // type:object size:0x20 scope:local align:4
+other_DL_table = .data:0x0004D980; // type:object size:0x8 scope:local align:4
+other_list = .data:0x0004D988; // type:object size:0x8 scope:local align:4
+other_list_table = .data:0x0004D990; // type:object size:0x4 scope:local align:4
+other_part = .data:0x0004D994; // type:object size:0x20 scope:local align:4
+tool_DL_table = .data:0x0004D9B4; // type:object size:0x8 scope:local align:4
+tool_list = .data:0x0004D9BC; // type:object size:0x8 scope:local align:4
+tool_list_table = .data:0x0004D9C4; // type:object size:0x4 scope:local align:4
+tool_part = .data:0x0004D9C8; // type:object size:0x20 scope:local align:4
+fossil_DL_table = .data:0x0004D9E8; // type:object size:0x8 scope:local align:4
+fossil_list = .data:0x0004D9F0; // type:object size:0x8 scope:local align:4
+fossil_list_table = .data:0x0004D9F8; // type:object size:0x4 scope:local align:4
+fossil_part = .data:0x0004D9FC; // type:object size:0x20 scope:local align:4
+trash_DL_table = .data:0x0004DA1C; // type:object size:0x8 scope:local align:4
+trash_list = .data:0x0004DA24; // type:object size:0x8 scope:local align:4
+trash_list_table = .data:0x0004DA2C; // type:object size:0x4 scope:local align:4
+trash_part = .data:0x0004DA30; // type:object size:0x20 scope:local align:4
+otosi_DL_table = .data:0x0004DA50; // type:object size:0x8 scope:local align:4
+otosi_list = .data:0x0004DA58; // type:object size:0x8 scope:local align:4
+otosi_list_table = .data:0x0004DA60; // type:object size:0x4 scope:local align:4
+otosi_part = .data:0x0004DA64; // type:object size:0x20 scope:local align:4
+shell_DL_table = .data:0x0004DA84; // type:object size:0x18 scope:local align:4
+shell_a_list = .data:0x0004DA9C; // type:object size:0x8 scope:local align:4
+shell_b_list = .data:0x0004DAA4; // type:object size:0x8 scope:local align:4
+shell_c_list = .data:0x0004DAAC; // type:object size:0x8 scope:local align:4
+shell_a_list_table = .data:0x0004DAB4; // type:object size:0x4 scope:local align:4
+shell_b_list_table = .data:0x0004DAB8; // type:object size:0x4 scope:local align:4
+shell_c_list_table = .data:0x0004DABC; // type:object size:0x4 scope:local align:4
+shell_a_part = .data:0x0004DAC0; // type:object size:0x20 scope:local align:4
+shell_b_part = .data:0x0004DAE0; // type:object size:0x20 scope:local align:4
+shell_c_part = .data:0x0004DB00; // type:object size:0x20 scope:local align:4
+candy_DL_table = .data:0x0004DB20; // type:object size:0x8 scope:local align:4
+candy_list = .data:0x0004DB28; // type:object size:0x8 scope:local align:4
+candy_list_table = .data:0x0004DB30; // type:object size:0x4 scope:local align:4
+candy_part = .data:0x0004DB34; // type:object size:0x20 scope:local align:4
+coconut_DL_table = .data:0x0004DB54; // type:object size:0x8 scope:local align:4
+coconut_list = .data:0x0004DB5C; // type:object size:0x8 scope:local align:4
+coconut_list_table = .data:0x0004DB64; // type:object size:0x4 scope:local align:4
+coconut_part = .data:0x0004DB68; // type:object size:0x20 scope:local align:4
+cloth_DL_table = .data:0x0004DB88; // type:object size:0x8 scope:local align:4
+cloth_list = .data:0x0004DB90; // type:object size:0x8 scope:local align:4
+cloth_list_table = .data:0x0004DB98; // type:object size:0x4 scope:local align:4
+cloth_part = .data:0x0004DB9C; // type:object size:0x20 scope:local align:4
+carpet_DL_table = .data:0x0004DBBC; // type:object size:0x8 scope:local align:4
+carpet_list = .data:0x0004DBC4; // type:object size:0x8 scope:local align:4
+carpet_list_table = .data:0x0004DBCC; // type:object size:0x4 scope:local align:4
+carpet_part = .data:0x0004DBD0; // type:object size:0x20 scope:local align:4
+wall_DL_table = .data:0x0004DBF0; // type:object size:0x8 scope:local align:4
+wall_list = .data:0x0004DBF8; // type:object size:0x8 scope:local align:4
+wall_list_table = .data:0x0004DC00; // type:object size:0x4 scope:local align:4
+wall_part = .data:0x0004DC04; // type:object size:0x20 scope:local align:4
+axe_DL_table = .data:0x0004DC24; // type:object size:0x8 scope:local align:4
+axe_list = .data:0x0004DC2C; // type:object size:0x8 scope:local align:4
+axe_list_table = .data:0x0004DC34; // type:object size:0x4 scope:local align:4
+axe_part = .data:0x0004DC38; // type:object size:0x20 scope:local align:4
+net_DL_table = .data:0x0004DC58; // type:object size:0x8 scope:local align:4
+net_list = .data:0x0004DC60; // type:object size:0x8 scope:local align:4
+net_list_table = .data:0x0004DC68; // type:object size:0x4 scope:local align:4
+net_part = .data:0x0004DC6C; // type:object size:0x20 scope:local align:4
+rod_DL_table = .data:0x0004DC8C; // type:object size:0x8 scope:local align:4
+rod_list = .data:0x0004DC94; // type:object size:0x8 scope:local align:4
+rod_list_table = .data:0x0004DC9C; // type:object size:0x4 scope:local align:4
+rod_part = .data:0x0004DCA0; // type:object size:0x20 scope:local align:4
+scoop_DL_table = .data:0x0004DCC0; // type:object size:0x8 scope:local align:4
+scoop_list = .data:0x0004DCC8; // type:object size:0x8 scope:local align:4
+scoop_list_table = .data:0x0004DCD0; // type:object size:0x4 scope:local align:4
+scoop_part = .data:0x0004DCD4; // type:object size:0x20 scope:local align:4
+gold_axe_DL_table = .data:0x0004DCF4; // type:object size:0x8 scope:local align:4
+gold_axe_list = .data:0x0004DCFC; // type:object size:0x8 scope:local align:4
+gold_axe_list_table = .data:0x0004DD04; // type:object size:0x4 scope:local align:4
+gold_axe_part = .data:0x0004DD08; // type:object size:0x20 scope:local align:4
+gold_net_DL_table = .data:0x0004DD28; // type:object size:0x8 scope:local align:4
+gold_net_list = .data:0x0004DD30; // type:object size:0x8 scope:local align:4
+gold_net_list_table = .data:0x0004DD38; // type:object size:0x4 scope:local align:4
+gold_net_part = .data:0x0004DD3C; // type:object size:0x20 scope:local align:4
+gold_rod_DL_table = .data:0x0004DD5C; // type:object size:0x8 scope:local align:4
+gold_rod_list = .data:0x0004DD64; // type:object size:0x8 scope:local align:4
+gold_rod_list_table = .data:0x0004DD6C; // type:object size:0x4 scope:local align:4
+gold_rod_part = .data:0x0004DD70; // type:object size:0x20 scope:local align:4
+gold_scoop_DL_table = .data:0x0004DD90; // type:object size:0x8 scope:local align:4
+gold_scoop_list = .data:0x0004DD98; // type:object size:0x8 scope:local align:4
+gold_scoop_list_table = .data:0x0004DDA0; // type:object size:0x4 scope:local align:4
+gold_scoop_part = .data:0x0004DDA4; // type:object size:0x20 scope:local align:4
+umbrella_DL_table = .data:0x0004DDC4; // type:object size:0x8 scope:local align:4
+umbrella_list = .data:0x0004DDCC; // type:object size:0x8 scope:local align:4
+umbrella_list_table = .data:0x0004DDD4; // type:object size:0x4 scope:local align:4
+umbrella_part = .data:0x0004DDD8; // type:object size:0x20 scope:local align:4
+pinwheel_DL_table = .data:0x0004DDF8; // type:object size:0x8 scope:local align:4
+pinwheel_list = .data:0x0004DE00; // type:object size:0x8 scope:local align:4
+pinwheel_list_table = .data:0x0004DE08; // type:object size:0x4 scope:local align:4
+pinwheel_part = .data:0x0004DE0C; // type:object size:0x20 scope:local align:4
+fan_DL_table = .data:0x0004DE2C; // type:object size:0x8 scope:local align:4
+fan_list = .data:0x0004DE34; // type:object size:0x8 scope:local align:4
+fan_list_table = .data:0x0004DE3C; // type:object size:0x4 scope:local align:4
+fan_part = .data:0x0004DE40; // type:object size:0x20 scope:local align:4
+paper_DL_table = .data:0x0004DE60; // type:object size:0x8 scope:local align:4
+paper_list = .data:0x0004DE68; // type:object size:0x8 scope:local align:4
+paper_list_table = .data:0x0004DE70; // type:object size:0x4 scope:local align:4
+paper_part = .data:0x0004DE74; // type:object size:0x20 scope:local align:4
+seedbag_DL_table = .data:0x0004DE94; // type:object size:0x8 scope:local align:4
+seedbag_list = .data:0x0004DE9C; // type:object size:0x8 scope:local align:4
+seedbag_list_table = .data:0x0004DEA4; // type:object size:0x4 scope:local align:4
+seedbag_part = .data:0x0004DEA8; // type:object size:0x20 scope:local align:4
+luckbag_DL_table = .data:0x0004DEC8; // type:object size:0x8 scope:local align:4
+luckbag_list = .data:0x0004DED0; // type:object size:0x8 scope:local align:4
+luckbag_list_table = .data:0x0004DED8; // type:object size:0x4 scope:local align:4
+luckbag_part = .data:0x0004DEDC; // type:object size:0x20 scope:local align:4
+gymcard_DL_table = .data:0x0004DEFC; // type:object size:0x8 scope:local align:4
+gymcard_list = .data:0x0004DF04; // type:object size:0x8 scope:local align:4
+gymcard_list_table = .data:0x0004DF0C; // type:object size:0x4 scope:local align:4
+gymcard_part = .data:0x0004DF10; // type:object size:0x20 scope:local align:4
+music_DL_table = .data:0x0004DF30; // type:object size:0x8 scope:local align:4
+music_list = .data:0x0004DF38; // type:object size:0x8 scope:local align:4
+music_list_table = .data:0x0004DF40; // type:object size:0x4 scope:local align:4
+music_part = .data:0x0004DF44; // type:object size:0x20 scope:local align:4
+lottery_DL_table = .data:0x0004DF64; // type:object size:0x8 scope:local align:4
+lottery_list = .data:0x0004DF6C; // type:object size:0x8 scope:local align:4
+lottery_list_table = .data:0x0004DF74; // type:object size:0x4 scope:local align:4
+lottery_part = .data:0x0004DF78; // type:object size:0x20 scope:local align:4
+bone_DL_table = .data:0x0004DF98; // type:object size:0x8 scope:local align:4
+bone_list = .data:0x0004DFA0; // type:object size:0x8 scope:local align:4
+bone_list_table = .data:0x0004DFA8; // type:object size:0x4 scope:local align:4
+bone_part = .data:0x0004DFAC; // type:object size:0x20 scope:local align:4
+diary_DL_table = .data:0x0004DFCC; // type:object size:0x8 scope:local align:4
+diary_list = .data:0x0004DFD4; // type:object size:0x8 scope:local align:4
+diary_list_table = .data:0x0004DFDC; // type:object size:0x4 scope:local align:4
+diary_part = .data:0x0004DFE0; // type:object size:0x20 scope:local align:4
+fork_DL_table = .data:0x0004E000; // type:object size:0x8 scope:local align:4
+fork_list = .data:0x0004E008; // type:object size:0x8 scope:local align:4
+fork_list_table = .data:0x0004E010; // type:object size:0x4 scope:local align:4
+fork_part = .data:0x0004E014; // type:object size:0x20 scope:local align:4
+draw_part_table_a = .data:0x0004E034; // type:object size:0x3E8 scope:local align:4
+rnd_data_x = .data:0x0004E41C; // type:object size:0x40 scope:local align:4
+rnd_data_z = .data:0x0004E45C; // type:object size:0x40 scope:local align:4
+BI_chk_pos$605 = .data:0x0004E49C; // type:object size:0x48 scope:local align:4
+d_size$682 = .data:0x0004E4E4; // type:object size:0xC scope:local align:4
+d_size$828 = .data:0x0004E4F0; // type:object size:0xC scope:local align:4
+fr2tr_f$1018 = .data:0x0004E4FC; // type:object size:0x18 scope:local align:4 data:2byte
+fr2tr_f$1032 = .data:0x0004E514; // type:object size:0x10 scope:local align:4 data:2byte
+unit_offset_part$1193 = .data:0x0004E524; // type:object size:0x18 scope:local align:4
+pos_part$1194 = .data:0x0004E53C; // type:object size:0x24 scope:local align:4
+pos_part_honey_comb$1195 = .data:0x0004E560; // type:object size:0x24 scope:local align:4
+pos_part_present$1196 = .data:0x0004E584; // type:object size:0x24 scope:local align:4
+pos_part_palm_cc$1197 = .data:0x0004E5A8; // type:object size:0x18 scope:local align:4
+fade_out$1198 = .data:0x0004E5C0; // type:object size:0xC scope:local align:4
+fg_ytable$1321 = .data:0x0004E5CC; // type:object size:0xA8 scope:local align:4 data:2byte
+wait_pos$1388 = .data:0x0004E674; // type:object size:0xC scope:local align:4 data:float
+tree_cut_tbl$2190 = .data:0x0004E680; // type:object size:0x14C scope:local align:4 data:2byte
+@2298 = .data:0x0004E7CC; // type:object size:0x15 scope:local align:4 data:string
+@2986 = .data:0x0004E7E4; // type:object size:0xF scope:local align:4 data:string
+type_data_table_p_a = .data:0x0004E7F4; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x0004E810; // type:label scope:local
+profile_tbl = .data:0x0004E810; // type:object size:0x1F8 scope:local align:4 data:4byte
+eEC_effect_feature = .data:0x0004EA08; // type:object size:0x7E scope:global align:4
+Effect_Control_Profile = .data:0x0004EA88; // type:object size:0x24 scope:global align:4
+default_offset$841 = .data:0x0004EAAC; // type:object size:0xC scope:local align:4 data:4byte
+defaultX$848 = .data:0x0004EAB8; // type:object size:0xC scope:local align:4
+scale_default$849 = .data:0x0004EAC4; // type:object size:0xC scope:local align:4
+Lamp_Light_Profile = .data:0x0004EAD0; // type:object size:0x24 scope:global align:4
+add_data_off$418 = .data:0x0004EAF4; // type:object size:0x6 scope:local align:4
+add_data_on$419 = .data:0x0004EAFC; // type:object size:0x6 scope:local align:4
+add_data$420 = .data:0x0004EB04; // type:object size:0x8 scope:local align:4
+cmp_data_off$421 = .data:0x0004EB0C; // type:object size:0x6 scope:local align:4
+cmp_data_on$422 = .data:0x0004EB14; // type:object size:0x6 scope:local align:4
+cmp_data$423 = .data:0x0004EB1C; // type:object size:0x8 scope:local align:4
+Room_Sunshine_Profile = .data:0x0004EB28; // type:object size:0x24 scope:global align:4
+Room_Sunshine_Police_Profile = .data:0x0004EB50; // type:object size:0x24 scope:global align:4
+Room_Sunshine_Posthouse_Profile = .data:0x0004EB78; // type:object size:0x24 scope:global align:4
+Room_Sunshine_Museum_Profile = .data:0x0004EBA0; // type:object size:0x24 scope:global align:4
+Room_Sunshine_Minsect_Profile = .data:0x0004EBC8; // type:object size:0x24 scope:global align:4
+mMkRm_ftr_info = .data:0x0004EBF0; // type:object size:0x9E4 scope:local align:4
+mHsRm_unit_max = .data:0x0004F5D4; // type:object size:0x10 scope:global align:4
+mHsRm_unit_value = .data:0x0004F5E4; // type:object size:0xC scope:global align:4
+...data.0 = .data:0x0004F5F0; // type:label scope:local
+mMkRm_series_info = .data:0x0004F5F0; // type:object size:0xB4 scope:global align:4 data:byte
+mMkRm_series_name = .data:0x0004F6A4; // type:object size:0x3C0 scope:global align:4 data:string
+mMkRm_birth_point_table = .data:0x0004FA64; // type:object size:0x98 scope:global align:4
+mMkRm_ftr_info = .data:0x0004FAFC; // type:object size:0x13C8 scope:local align:4
+mMkRm_wall_from = .data:0x00050EC4; // type:object size:0x43 scope:global align:4
+mMkRm_floor_from = .data:0x00050F08; // type:object size:0x43 scope:global align:4
+mMkRm_unit_max_table = .data:0x00050F4C; // type:object size:0x10 scope:global align:4
+mMkRm_letter_no_table = .data:0x00050F5C; // type:object size:0x100 scope:global align:4
+assign_func_table$979 = .data:0x0005105C; // type:object size:0x10 scope:local align:4
+series_name$1050 = .data:0x0005106C; // type:object size:0x10 scope:local align:4 data:string
+...data.0 = .data:0x00051080; // type:label scope:local
+tol_sponge_1_v = .data:0x00051080; // type:object size:0xA0 scope:global align:8
+tol_sponge_1_pal = .data:0x00051120; // type:object size:0x20 scope:global align:32
+tol_sponge_1_main1_tex_txt = .data:0x00051140; // type:object size:0x80 scope:global align:32 data:string
+Player_actor_OcInfoData_forStand = .data:0x000511C0; // type:object size:0x10 scope:global align:4
+Player_actor_pclobj_tris_base_forItem = .data:0x000511D0; // type:object size:0x28 scope:global align:4
+Player_actor_pclobj_tris_data_forItem = .data:0x000511F8; // type:object size:0xC scope:global align:4
+data$2627 = .data:0x00051204; // type:object size:0x10 scope:local align:4
+@3084 = .data:0x00051214; // type:object size:0x1C scope:local align:4
+@3099 = .data:0x00051230; // type:object size:0x1C scope:local align:4
+Player_actor_radio_exercise_command_key_data_type1 = .data:0x0005124C; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type2_1 = .data:0x00051250; // type:object size:0x5 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type2_2 = .data:0x00051258; // type:object size:0x5 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type3 = .data:0x00051260; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type4_1_1 = .data:0x00051264; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type4_1_2 = .data:0x00051268; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type4_2_1 = .data:0x0005126C; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type4_2_2 = .data:0x00051270; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type5_1_1 = .data:0x00051274; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type5_1_2 = .data:0x00051278; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type5_2_1 = .data:0x0005127C; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type5_2_2 = .data:0x00051280; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type6_1_1 = .data:0x00051284; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type6_1_2 = .data:0x00051288; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type6_2_1 = .data:0x0005128C; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type6_2_2 = .data:0x00051290; // type:object size:0x3 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type7_1 = .data:0x00051294; // type:object size:0x8 scope:global align:4
+Player_actor_radio_exercise_command_key_data_type7_2 = .data:0x0005129C; // type:object size:0x8 scope:global align:4
+command_key_p_data$5218 = .data:0x000512A4; // type:object size:0x48 scope:local align:4
+total_command_key_element_data$5219 = .data:0x000512EC; // type:object size:0x48 scope:local align:4
+continue_command_data$5220 = .data:0x00051334; // type:object size:0x12 scope:local align:4
+@8793 = .data:0x00051348; // type:object size:0x2C scope:local align:4
+offset$10176 = .data:0x00051374; // type:object size:0xC scope:local align:4 data:float
+@11001 = .data:0x00051380; // type:object size:0x1E scope:local align:4 data:string
+use_mark_insect_type$11349 = .data:0x000513A0; // type:object size:0x8 scope:local align:4
+@11617 = .data:0x000513A8; // type:object size:0x1E scope:local align:4 data:string
+use_mark_gyoei_type$12005 = .data:0x000513C8; // type:object size:0x4 scope:local align:4 data:4byte
+data$16513 = .data:0x000513CC; // type:object size:0x48 scope:local align:4
+data$16870 = .data:0x00051414; // type:object size:0x4 scope:local align:4
+l_base_blocks = .data:0x00051418; // type:object size:0x46 scope:global align:4
+l_cliff_startA_factor = .data:0x00051460; // type:object size:0x2 scope:global align:4
+l_cliff_startA = .data:0x00051464; // type:object size:0x8 scope:global align:4
+l_cliff_startB_factor = .data:0x0005146C; // type:object size:0x3 scope:global align:4
+l_cliff_startB = .data:0x00051470; // type:object size:0x8 scope:global align:4
+l_cliff_startC_factor = .data:0x00051478; // type:object size:0x2 scope:global align:4
+l_cliff_startC = .data:0x0005147C; // type:object size:0x8 scope:global align:4
+l_cliff_start_table = .data:0x00051484; // type:object size:0x10 scope:global align:4
+l_cliff_next_direct = .data:0x00051494; // type:object size:0x7 scope:global align:4
+l_cliff1_next = .data:0x0005149C; // type:object size:0x3 scope:global align:4
+l_cliff1_next_class = .data:0x000514A0; // type:object size:0x8 scope:global align:4
+l_cliff2_next = .data:0x000514A8; // type:object size:0x2 scope:global align:4
+l_cliff2_next_class = .data:0x000514AC; // type:object size:0x8 scope:global align:4
+l_cliff3_next = .data:0x000514B4; // type:object size:0x2 scope:global align:4
+l_cliff3_next_class = .data:0x000514B8; // type:object size:0x8 scope:global align:4
+l_cliff4_next = .data:0x000514C0; // type:object size:0x3 scope:global align:4
+l_cliff4_next_class = .data:0x000514C4; // type:object size:0x8 scope:global align:4
+l_cliff5_next = .data:0x000514CC; // type:object size:0x2 scope:global align:4
+l_cliff5_next_class = .data:0x000514D0; // type:object size:0x8 scope:global align:4
+l_cliff6_next = .data:0x000514D8; // type:object size:0x2 scope:global align:4
+l_cliff6_next_class = .data:0x000514DC; // type:object size:0x8 scope:global align:4
+l_cliff7_next = .data:0x000514E4; // type:object size:0x3 scope:global align:4
+l_cliff7_next_class = .data:0x000514E8; // type:object size:0x8 scope:global align:4
+l_cliff_next_data = .data:0x000514F0; // type:object size:0x1C scope:global align:4
+l_river1_next = .data:0x0005150C; // type:object size:0x3 scope:global align:4 data:string
+l_river1_next_class = .data:0x00051510; // type:object size:0x8 scope:global align:4
+l_river2_next = .data:0x00051518; // type:object size:0x2 scope:global align:4 data:string
+l_river2_next_class = .data:0x0005151C; // type:object size:0x8 scope:global align:4
+l_river3_next = .data:0x00051524; // type:object size:0x2 scope:global align:4 data:string
+l_river3_next_class = .data:0x00051528; // type:object size:0x8 scope:global align:4
+l_river4_next = .data:0x00051530; // type:object size:0x2 scope:global align:4 data:string
+l_river4_next_class = .data:0x00051534; // type:object size:0x8 scope:global align:4
+l_river5_next = .data:0x0005153C; // type:object size:0x3 scope:global align:4 data:string
+l_river5_next_class = .data:0x00051540; // type:object size:0x8 scope:global align:4
+l_river6_next = .data:0x00051548; // type:object size:0x2 scope:global align:4 data:string
+l_river6_next_class = .data:0x0005154C; // type:object size:0x8 scope:global align:4
+l_river7_next = .data:0x00051554; // type:object size:0x3 scope:global align:4 data:string
+l_river7_next_class = .data:0x00051558; // type:object size:0x8 scope:global align:4
+l_river_next_data = .data:0x00051560; // type:object size:0x1C scope:global align:4 data:4byte
+l_mRF_step3_blocks3 = .data:0x0005157C; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocks7 = .data:0x000515C4; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocks7R = .data:0x0005160C; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocks8 = .data:0x00051654; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksB = .data:0x0005169C; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksBR = .data:0x000516E4; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksE = .data:0x0005172C; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksER = .data:0x00051774; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksF = .data:0x000517BC; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blocksFR = .data:0x00051804; // type:object size:0x46 scope:global align:4
+l_mRF_step3_blockss = .data:0x0005184C; // type:object size:0x28 scope:global align:4
+system_block_info$381 = .data:0x00051874; // type:object size:0x1B0 scope:local align:4
+cliff_info$386 = .data:0x00051A24; // type:object size:0x1C scope:local align:4
+x_offset$409 = .data:0x00051A40; // type:object size:0x10 scope:local align:4
+z_offset$410 = .data:0x00051A50; // type:object size:0x10 scope:local align:4
+blockGroup$428 = .data:0x00051A60; // type:object size:0x48 scope:local align:4 data:4byte
+river1_album_data$528 = .data:0x00051AA8; // type:object size:0x7 scope:local align:4
+river2_album_data$529 = .data:0x00051AB0; // type:object size:0x7 scope:local align:4
+river3_album_data$530 = .data:0x00051AB8; // type:object size:0x7 scope:local align:4
+river_no_album_data$531 = .data:0x00051AC0; // type:object size:0x7 scope:local align:4
+river_cliff_album_data$532 = .data:0x00051AC8; // type:object size:0x1C scope:local align:4
+startX_table$623 = .data:0x00051AE4; // type:object size:0x10 scope:local align:4
+cross_data$686 = .data:0x00051AF4; // type:object size:0x7 scope:local align:4 data:byte
+exceptional_table$861 = .data:0x00051AFC; // type:object size:0x6C scope:local align:4 data:2byte
+init_cmb$1252 = .data:0x00051B68; // type:object size:0x2 scope:local align:4 data:2byte
+Ev_Cherry_Manager_Profile = .data:0x00051B70; // type:object size:0x24 scope:global align:4
+House_Goki_Profile = .data:0x00051B98; // type:object size:0x24 scope:global align:4
+init_proc$686 = .data:0x00051BBC; // type:object size:0x14 scope:local align:4
+act_proc$687 = .data:0x00051BD0; // type:object size:0x14 scope:local align:4
+aHG_displayList$703 = .data:0x00051BE4; // type:object size:0x8 scope:local align:4
+Ant_Profile = .data:0x00051BF0; // type:object size:0x24 scope:global align:4
+init_proc$509 = .data:0x00051C14; // type:object size:0xC scope:local align:4
+act_proc$510 = .data:0x00051C20; // type:object size:0xC scope:local align:4
+Bee_Profile = .data:0x00051C30; // type:object size:0x24 scope:global align:4
+Size_data$665 = .data:0x00051C54; // type:object size:0xC scope:local align:4
+init_proc$683 = .data:0x00051C60; // type:object size:0x18 scope:local align:4
+act_proc$684 = .data:0x00051C78; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x00051C90; // type:label scope:local
+Fuusen_Profile = .data:0x00051C90; // type:object size:0x24 scope:global align:4
+Init_Size$442 = .data:0x00051CB4; // type:object size:0xC scope:local align:4
+senkou_check_data$464 = .data:0x00051CC0; // type:object size:0xC scope:local align:4
+data_index_data$714 = .data:0x00051CCC; // type:object size:0x40 scope:local align:4
+birth_pos_data$715 = .data:0x00051D0C; // type:object size:0x60 scope:local align:4
+birth_pos_random_data$716 = .data:0x00051D6C; // type:object size:0x60 scope:local align:4
+init_proc$780 = .data:0x00051DCC; // type:object size:0x10 scope:local align:4
+act_proc$781 = .data:0x00051DDC; // type:object size:0x10 scope:local align:4
+balloon_prim_data$803 = .data:0x00051DEC; // type:object size:0x14 scope:local align:4
+balloon_env_data$804 = .data:0x00051E00; // type:object size:0x14 scope:local align:4
+offset0$868 = .data:0x00051E14; // type:object size:0xC scope:local align:4 data:4byte
+str_a_table = .data:0x00051E20; // type:object size:0x72 scope:global align:4 data:string
+str_b_table = .data:0x00051E94; // type:object size:0x62 scope:global align:4 data:string
+str_c_table = .data:0x00051EF8; // type:object size:0x58 scope:global align:4 data:string
+str_d_table = .data:0x00051F50; // type:object size:0x62 scope:global align:4 data:string
+str_e_table = .data:0x00051FB4; // type:object size:0x38 scope:global align:4 data:string
+str_f_table = .data:0x00051FEC; // type:object size:0x4E scope:global align:4 data:string
+str_g_table = .data:0x0005203C; // type:object size:0x34 scope:global align:4 data:string
+str_h_table = .data:0x00052070; // type:object size:0x48 scope:global align:4 data:string
+str_i_table = .data:0x000520B8; // type:object size:0x26 scope:global align:4 data:string
+str_j_table = .data:0x000520E0; // type:object size:0x12 scope:global align:4 data:string
+str_k_table = .data:0x000520F4; // type:object size:0x14 scope:global align:4 data:string
+str_l_table = .data:0x00052108; // type:object size:0x50 scope:global align:4 data:string
+str_m_table = .data:0x00052158; // type:object size:0x4C scope:global align:4 data:string
+str_n_table = .data:0x000521A4; // type:object size:0x30 scope:global align:4 data:string
+str_o_table = .data:0x000521D4; // type:object size:0x32 scope:global align:4 data:string
+str_p_table = .data:0x00052208; // type:object size:0x4C scope:global align:4 data:string
+str_q_table = .data:0x00052254; // type:object size:0x6 scope:global align:4 data:string
+str_r_table = .data:0x0005225C; // type:object size:0x44 scope:global align:4 data:string
+str_s_table = .data:0x000522A0; // type:object size:0xAE scope:global align:4 data:string
+str_t_table = .data:0x00052350; // type:object size:0x66 scope:global align:4 data:string
+str_u_table = .data:0x000523B8; // type:object size:0x16 scope:global align:4 data:string
+str_v_table = .data:0x000523D0; // type:object size:0x14 scope:global align:4 data:string
+str_w_table = .data:0x000523E4; // type:object size:0x50 scope:global align:4 data:string
+str_x_table = .data:0x00052434; // type:object size:0x2 scope:global align:4 data:string
+str_y_table = .data:0x00052438; // type:object size:0xE scope:global align:4 data:string
+str_z_table = .data:0x00052448; // type:object size:0x2 scope:global align:4 data:string
+cmp_str_table_c = .data:0x0005244C; // type:object size:0xD0 scope:global align:4 data:byte
+offset$474 = .data:0x0005251C; // type:object size:0x2 scope:local align:4 data:string
+check_proc$612 = .data:0x00052520; // type:object size:0x1C scope:local align:4
+Dummy_Profile = .data:0x00052540; // type:object size:0x24 scope:global align:4
+l_non_area = .data:0x00052568; // type:object size:0x2C scope:global align:4 data:byte
+hide_3_2 = .data:0x00052594; // type:object size:0x8 scope:global align:4
+hide_2_2 = .data:0x0005259C; // type:object size:0x10 scope:global align:4
+hide_3_6 = .data:0x000525AC; // type:object size:0x10 scope:global align:4
+hide_4_6 = .data:0x000525BC; // type:object size:0x10 scope:global align:4
+hide_2_3 = .data:0x000525CC; // type:object size:0x10 scope:global align:4
+hide_5_7 = .data:0x000525DC; // type:object size:0x10 scope:global align:4
+hide_6_8 = .data:0x000525EC; // type:object size:0x10 scope:global align:4
+hide_7_7 = .data:0x000525FC; // type:object size:0x10 scope:global align:4
+l_hide_area_table = .data:0x0005260C; // type:object size:0x58 scope:global align:4
+l_magrw_change_tree = .data:0x00052664; // type:object size:0x6 scope:global align:4
+l_magrw_bee_table = .data:0x0005266C; // type:object size:0x6 scope:global align:4
+l_magrw_ftr_table = .data:0x00052674; // type:object size:0x6 scope:global align:4
+l_magrw_smn_table = .data:0x0005267C; // type:object size:0x6 scope:global align:4
+d_table$692 = .data:0x00052684; // type:object size:0x8 scope:local align:4
+get_near$700 = .data:0x0005268C; // type:object size:0x10 scope:local align:4
+check_tree_proc$910 = .data:0x0005269C; // type:object size:0x28 scope:local align:4
+kill_tree_proc$911 = .data:0x000526C4; // type:object size:0x8 scope:local align:4
+base_grass_table$1010 = .data:0x000526CC; // type:object size:0x18 scope:local align:4
+first_grow_proc$1725 = .data:0x000526E4; // type:object size:0x20 scope:local align:4
+grow_proc$1726 = .data:0x00052704; // type:object size:0x28 scope:local align:4
+first_island_proc$1727 = .data:0x0005272C; // type:object size:0x4 scope:local align:4
+grow_island_proc$1728 = .data:0x00052730; // type:object size:0xC scope:local align:4
+grow_proc_table$1729 = .data:0x0005273C; // type:object size:0x18 scope:local align:4
+proc_max_table$1730 = .data:0x00052754; // type:object size:0x18 scope:local align:4
+check_fg$2016 = .data:0x0005276C; // type:object size:0x14 scope:local align:4
+check_cancel$2361 = .data:0x00052780; // type:object size:0x2C scope:local align:4
+check_hide$2407 = .data:0x000527AC; // type:object size:0x2C scope:local align:4
+clean_week$2636 = .data:0x000527D8; // type:object size:0x8 scope:local align:4
+category_list$2707 = .data:0x000527E0; // type:object size:0x28 scope:local align:4
+Aprilfool_Control_Profile = .data:0x00052808; // type:object size:0x24 scope:global align:4
+npc_data_table$387 = .data:0x0005282C; // type:object size:0x2C scope:local align:4 data:2byte
+msg_num_table$417 = .data:0x00052858; // type:object size:0x2C scope:local align:4
+Groundhog_Control_Profile = .data:0x00052888; // type:object size:0x24 scope:global align:4
+process$558 = .data:0x000528AC; // type:object size:0x24 scope:local align:4
+Mscore_Control_Profile = .data:0x000528D0; // type:object size:0x24 scope:global align:4
+next_act_idx$534 = .data:0x000528F4; // type:object size:0x8 scope:local align:4
+next_msg_num$535 = .data:0x000528FC; // type:object size:0x8 scope:local align:4
+process$574 = .data:0x00052904; // type:object size:0x34 scope:local align:4
+Countdown_Npc0_Profile = .data:0x00052938; // type:object size:0x24 scope:global align:4
+aCD0_demo_flg = .data:0x0005295C; // type:object size:0x10 scope:global align:4
+ct_data$460 = .data:0x0005296C; // type:object size:0x1C scope:local align:4
+animeSeqNo$480 = .data:0x00052988; // type:object size:0x10 scope:local align:4
+process$515 = .data:0x00052998; // type:object size:0x10 scope:local align:4
+act_proc$539 = .data:0x000529A8; // type:object size:0xC scope:local align:4
+think_proc$604 = .data:0x000529B4; // type:object size:0x8 scope:local align:4
+sche_proc$626 = .data:0x000529BC; // type:object size:0x8 scope:local align:4
+msg_base$646 = .data:0x000529C4; // type:object size:0x18 scope:local align:4
+msg_base$660 = .data:0x000529DC; // type:object size:0x18 scope:local align:4
+Countdown_Npc1_Profile = .data:0x000529F8; // type:object size:0x24 scope:global align:4
+ct_data$460 = .data:0x00052A1C; // type:object size:0x1C scope:local align:4
+animeSeqNo$480 = .data:0x00052A38; // type:object size:0x2C scope:local align:4
+offset$518 = .data:0x00052A64; // type:object size:0x8 scope:local align:4
+se_no$601 = .data:0x00052A6C; // type:object size:0x4 scope:local align:4 data:string
+process$618 = .data:0x00052A70; // type:object size:0x2C scope:local align:4
+act_proc$631 = .data:0x00052A9C; // type:object size:0xC scope:local align:4
+think_proc$732 = .data:0x00052AA8; // type:object size:0x8 scope:local align:4
+def_angle$737 = .data:0x00052AB0; // type:object size:0x1C scope:local align:4
+sche_proc$753 = .data:0x00052ACC; // type:object size:0x8 scope:local align:4
+msg_base$773 = .data:0x00052AD4; // type:object size:0x18 scope:local align:4
+Ev_Angler_Profile = .data:0x00052AF0; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00052B14; // type:object size:0x1C scope:local align:4
+init_proc = .data:0x00052B30; // type:object size:0x28 scope:global align:4
+process = .data:0x00052B58; // type:object size:0x28 scope:global align:4
+Ev_Artist_Profile = .data:0x00052B80; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00052BA4; // type:object size:0x1C scope:local align:4
+msg_no$528 = .data:0x00052BC0; // type:object size:0x14 scope:local align:4
+next_act_idx$529 = .data:0x00052BD4; // type:object size:0x14 scope:local align:4
+init_proc$583 = .data:0x00052BE8; // type:object size:0x20 scope:local align:4
+process$588 = .data:0x00052C08; // type:object size:0x20 scope:local align:4
+Ev_Broker_Profile = .data:0x00052C28; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00052C4C; // type:object size:0x1C scope:local align:4
+animeSeqNo$484 = .data:0x00052C68; // type:object size:0x10 scope:local align:4
+part$515 = .data:0x00052C78; // type:object size:0x8 scope:local align:4
+process$593 = .data:0x00052C80; // type:object size:0x10 scope:local align:4
+act_proc$610 = .data:0x00052C90; // type:object size:0xC scope:local align:4
+think_proc$634 = .data:0x00052C9C; // type:object size:0x8 scope:local align:4
+sche_proc$650 = .data:0x00052CA4; // type:object size:0x8 scope:local align:4
+Ev_Broker2_Profile = .data:0x00052CB0; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00052CD4; // type:object size:0x1C scope:local align:4
+animeSeqNoTable$486 = .data:0x00052CF0; // type:object size:0x34 scope:local align:4
+posX$607 = .data:0x00052D24; // type:object size:0x4 scope:local align:4 data:float
+posZ$608 = .data:0x00052D28; // type:object size:0x4 scope:local align:4
+item_ux$790 = .data:0x00052D2C; // type:object size:0xC scope:local align:4
+item_uz$791 = .data:0x00052D38; // type:object size:0xC scope:local align:4
+init_proc$848 = .data:0x00052D44; // type:object size:0x34 scope:local align:4
+process$853 = .data:0x00052D78; // type:object size:0x34 scope:local align:4
+...data.0 = .data:0x00052DB0; // type:label scope:local
+Ev_CarpetPeddler_Profile = .data:0x00052DB0; // type:object size:0x24 scope:global align:4
+ct_data$461 = .data:0x00052DD4; // type:object size:0x1C scope:local align:4
+next_msg$518 = .data:0x00052DF0; // type:object size:0x10 scope:local align:4
+next_act$519 = .data:0x00052E00; // type:object size:0x10 scope:local align:4
+next_act_idx$561 = .data:0x00052E10; // type:object size:0x8 scope:local align:4
+over_next_act_idx$562 = .data:0x00052E18; // type:object size:0x8 scope:local align:4
+msg_no$563 = .data:0x00052E20; // type:object size:0x8 scope:local align:4
+init_proc$666 = .data:0x00052E28; // type:object size:0x3C scope:local align:4
+process$671 = .data:0x00052E64; // type:object size:0x3C scope:local align:4
+Ev_Castaway_Profile = .data:0x00052EA0; // type:object size:0x24 scope:global align:4
+ct_data$461 = .data:0x00052EC4; // type:object size:0x1C scope:local align:4
+def_pos$462 = .data:0x00052EE0; // type:object size:0xC scope:local align:4 data:4byte
+sche_proc$489 = .data:0x00052EEC; // type:object size:0x8 scope:local align:4
+Ev_Designer_Profile = .data:0x00052EF8; // type:object size:0x24 scope:global align:4
+ct_data$469 = .data:0x00052F1C; // type:object size:0x1C scope:local align:4
+msg_no_0$535 = .data:0x00052F38; // type:object size:0x6C scope:local align:4
+msg_no_1$536 = .data:0x00052FA4; // type:object size:0x6C scope:local align:4
+msg_no$537 = .data:0x00053010; // type:object size:0x8 scope:local align:4
+msg_idx$567 = .data:0x00053018; // type:object size:0xC scope:local align:4
+next_talk_proc_idx$568 = .data:0x00053024; // type:object size:0xC scope:local align:4
+talk_proc$601 = .data:0x00053030; // type:object size:0x18 scope:local align:4
+dt_tbl$606 = .data:0x00053048; // type:object size:0x18 scope:local align:4
+msg_start_idx$617 = .data:0x00053060; // type:object size:0x8 scope:local align:4
+dt_tbl$734 = .data:0x00053068; // type:object size:0x50 scope:local align:4
+think_proc$739 = .data:0x000530B8; // type:object size:0x8 scope:local align:4
+sche_proc$757 = .data:0x000530C0; // type:object size:0x8 scope:local align:4
+Ev_Dokutu_Profile = .data:0x000530C8; // type:object size:0x24 scope:global align:4
+ct_data$472 = .data:0x000530EC; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00053108; // type:label scope:local
+Ev_Dozaemon_Profile = .data:0x00053108; // type:object size:0x24 scope:global align:4
+ct_data$474 = .data:0x0005312C; // type:object size:0x1C scope:local align:4
+proc$573 = .data:0x00053148; // type:object size:0x10 scope:local align:4
+dt_tbl = .data:0x00053158; // type:object size:0x19 scope:local align:4
+proc_table = .data:0x00053174; // type:object size:0x8 scope:local align:4
+init_table = .data:0x0005317C; // type:object size:0x14 scope:local align:4
+talk_request_table$667 = .data:0x00053190; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x000531A0; // type:label scope:local
+Ev_Ghost_Profile = .data:0x000531A0; // type:object size:0x24 scope:global align:4
+ct_data$476 = .data:0x000531C4; // type:object size:0x1C scope:local align:4
+list_haniwa = .data:0x000531E0; // type:object size:0x100 scope:global align:4
+umbrella_list = .data:0x000532E0; // type:object size:0x42 scope:local align:4
+item_list$620 = .data:0x00053324; // type:object size:0x58 scope:local align:4
+@744 = .data:0x0005337C; // type:object size:0x40 scope:local align:4
+proc$784 = .data:0x000533BC; // type:object size:0x18 scope:local align:4
+dt_tbl = .data:0x000533D4; // type:object size:0x23 scope:local align:4
+proc_table = .data:0x000533F8; // type:object size:0x14 scope:local align:4
+init_table = .data:0x0005340C; // type:object size:0x1C scope:local align:4
+talk_request_table$958 = .data:0x00053428; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00053438; // type:label scope:local
+Ev_Gypsy_Profile = .data:0x00053438; // type:object size:0x24 scope:global align:4
+ct_data$453 = .data:0x0005345C; // type:object size:0x1C scope:local align:4
+string_num$475 = .data:0x00053478; // type:object size:0x10 scope:local align:4
+msg_no$482 = .data:0x00053488; // type:object size:0xC scope:local align:4
+next_act_idx$483 = .data:0x00053494; // type:object size:0xC scope:local align:4
+msg_no$499 = .data:0x000534A0; // type:object size:0x18 scope:local align:4
+msg_no2$500 = .data:0x000534B8; // type:object size:0x14 scope:local align:4
+destiny$501 = .data:0x000534CC; // type:object size:0x6 scope:local align:4
+init_proc$520 = .data:0x000534D4; // type:object size:0x10 scope:local align:4
+process$525 = .data:0x000534E4; // type:object size:0x10 scope:local align:4
+...data.0 = .data:0x000534F8; // type:label scope:local
+Ev_KabuPeddler_Profile = .data:0x000534F8; // type:object size:0x24 scope:global align:4
+ct_data$456 = .data:0x0005351C; // type:object size:0x1C scope:local align:4
+sum$486 = .data:0x00053538; // type:object size:0x10 scope:local align:4
+kabu_no$500 = .data:0x00053548; // type:object size:0x6 scope:local align:4
+next_act$505 = .data:0x00053550; // type:object size:0x10 scope:local align:4
+sell_sum$524 = .data:0x00053560; // type:object size:0x10 scope:local align:4
+next_msg_no$525 = .data:0x00053570; // type:object size:0xC scope:local align:4
+next_msg_no2$526 = .data:0x0005357C; // type:object size:0xC scope:local align:4
+next_act$527 = .data:0x00053588; // type:object size:0xC scope:local align:4
+init_proc$574 = .data:0x00053594; // type:object size:0x20 scope:local align:4
+process$579 = .data:0x000535B4; // type:object size:0x20 scope:local align:4
+Ev_Miko_Profile = .data:0x000535D8; // type:object size:0x24 scope:global align:4
+ct_data$463 = .data:0x000535FC; // type:object size:0x1C scope:local align:4
+table$505 = .data:0x00053618; // type:object size:0x10 scope:local align:4
+kekka_table$506 = .data:0x00053628; // type:object size:0x10 scope:local align:4
+destiny$534 = .data:0x00053638; // type:object size:0x4 scope:local align:4
+init_proc$560 = .data:0x0005363C; // type:object size:0x10 scope:local align:4
+process$565 = .data:0x0005364C; // type:object size:0x10 scope:local align:4
+Ev_Pumpkin_Profile = .data:0x00053660; // type:object size:0x24 scope:global align:4
+ct_data$465 = .data:0x00053684; // type:object size:0x1C scope:local align:4
+talk_proc$658 = .data:0x000536A0; // type:object size:0x40 scope:local align:4
+Ev_Santa_Profile = .data:0x000536E0; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x00053704; // type:object size:0x1C scope:local align:4
+init_proc$531 = .data:0x00053720; // type:object size:0x1C scope:local align:4
+process$536 = .data:0x0005373C; // type:object size:0x1C scope:local align:4
+talk_data_idx$551 = .data:0x00053758; // type:object size:0x10 scope:local align:4
+category$552 = .data:0x00053768; // type:object size:0x10 scope:local align:4
+talk_data$621 = .data:0x00053778; // type:object size:0xC0 scope:local align:4
+Ev_Soncho_Profile = .data:0x00053838; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x0005385C; // type:object size:0x1C scope:local align:4
+proc$574 = .data:0x00053878; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00053888; // type:label scope:local
+Ev_Soncho2_Profile = .data:0x00053888; // type:object size:0x24 scope:global align:4
+ct_data$482 = .data:0x000538AC; // type:object size:0x1C scope:local align:4
+proc$590 = .data:0x000538C8; // type:object size:0x18 scope:local align:4
+field_table$610 = .data:0x000538E0; // type:object size:0x4 scope:local align:4
+dt_tbl = .data:0x000538E4; // type:object size:0x4B scope:local align:4
+proc_table = .data:0x00053930; // type:object size:0x20 scope:local align:4
+init_table = .data:0x00053950; // type:object size:0x1C scope:local align:4
+talk_request_table$722 = .data:0x0005396C; // type:object size:0xC scope:local align:4
+Ev_Speech_Soncho_Profile = .data:0x00053978; // type:object size:0x24 scope:global align:4
+ct_data$438 = .data:0x0005399C; // type:object size:0x1C scope:local align:4
+act_proc$472 = .data:0x000539B8; // type:object size:0xC scope:local align:4
+dt_tbl$515 = .data:0x000539C4; // type:object size:0x50 scope:local align:4
+think_proc$520 = .data:0x00053A14; // type:object size:0x8 scope:local align:4
+sche_proc$541 = .data:0x00053A1C; // type:object size:0x8 scope:local align:4
+Ev_Yomise_Profile = .data:0x00053A28; // type:object size:0x24 scope:global align:4
+ct_data$456 = .data:0x00053A4C; // type:object size:0x1C scope:local align:4
+sell_table$506 = .data:0x00053A68; // type:object size:0x6 scope:local align:4 data:string
+new_player_str$529 = .data:0x00053A70; // type:object size:0x10 scope:local align:4 data:string
+new_player_str2$530 = .data:0x00053A80; // type:object size:0x10 scope:local align:4 data:string
+msg_no$656 = .data:0x00053A90; // type:object size:0x6 scope:local align:4
+price$657 = .data:0x00053A98; // type:object size:0x6 scope:local align:4
+process$692 = .data:0x00053AA0; // type:object size:0x18 scope:local align:4
+Go_Home_Npc_Profile = .data:0x00053AB8; // type:object size:0x24 scope:global align:4
+ct_data$446 = .data:0x00053ADC; // type:object size:0x1C scope:local align:4
+Halloween_Npc_Profile = .data:0x00053AF8; // type:object size:0x24 scope:global align:4
+ct_data$468 = .data:0x00053B1C; // type:object size:0x1C scope:local align:4
+talk_proc$641 = .data:0x00053B38; // type:object size:0x38 scope:local align:4
+dt_tbl$734 = .data:0x00053B70; // type:object size:0x20 scope:local align:4
+think_proc$739 = .data:0x00053B90; // type:object size:0x8 scope:local align:4
+think_idx$744 = .data:0x00053B98; // type:object size:0xC scope:local align:4
+sche_proc$776 = .data:0x00053BA4; // type:object size:0x8 scope:local align:4
+Hanabi_Npc0_Profile = .data:0x00053BB0; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x00053BD4; // type:object size:0x1C scope:local align:4
+anime$479 = .data:0x00053BF0; // type:object size:0x18 scope:local align:4
+offset$517 = .data:0x00053C08; // type:object size:0x8 scope:local align:4
+process$570 = .data:0x00053C10; // type:object size:0xC scope:local align:4
+act_proc$590 = .data:0x00053C1C; // type:object size:0xC scope:local align:4
+chk_val$595 = .data:0x00053C28; // type:object size:0x8 scope:local align:4
+think_proc$627 = .data:0x00053C30; // type:object size:0x8 scope:local align:4
+sche_proc$644 = .data:0x00053C38; // type:object size:0x8 scope:local align:4
+msg_base$649 = .data:0x00053C40; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x00053C58; // type:label scope:local
+Hanabi_Npc1_Profile = .data:0x00053C58; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x00053C7C; // type:object size:0x1C scope:local align:4
+anime$479 = .data:0x00053C98; // type:object size:0x20 scope:local align:4
+process$531 = .data:0x00053CB8; // type:object size:0x10 scope:local align:4
+anm_loop_base$532 = .data:0x00053CC8; // type:object size:0x10 scope:local align:4
+anm_loop_rnd$533 = .data:0x00053CD8; // type:object size:0x10 scope:local align:4
+clap_se_no$534 = .data:0x00053CE8; // type:object size:0x4 scope:local align:4 data:string
+act_proc$561 = .data:0x00053CEC; // type:object size:0xC scope:local align:4
+action$566 = .data:0x00053CF8; // type:object size:0xC scope:local align:4
+think_proc$582 = .data:0x00053D04; // type:object size:0x8 scope:local align:4
+def_angle$587 = .data:0x00053D0C; // type:object size:0x38 scope:local align:4
+sche_proc$602 = .data:0x00053D44; // type:object size:0x8 scope:local align:4
+msg_base$607 = .data:0x00053D4C; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x00053D68; // type:label scope:local
+Hanami_Npc0_Profile = .data:0x00053D68; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00053D8C; // type:object size:0x1C scope:local align:4
+animeSeqNo$477 = .data:0x00053DA8; // type:object size:0xC scope:local align:4
+process$524 = .data:0x00053DB4; // type:object size:0xC scope:local align:4
+anm_loop_base$525 = .data:0x00053DC0; // type:object size:0xC scope:local align:4
+anm_loop_rnd$526 = .data:0x00053DCC; // type:object size:0xC scope:local align:4
+clap_se_no$527 = .data:0x00053DD8; // type:object size:0x4 scope:local align:4 data:string
+act_proc$549 = .data:0x00053DDC; // type:object size:0xC scope:local align:4
+action$554 = .data:0x00053DE8; // type:object size:0xC scope:local align:4
+think_proc$569 = .data:0x00053DF4; // type:object size:0x8 scope:local align:4
+def_angle$574 = .data:0x00053DFC; // type:object size:0x8 scope:local align:4
+sche_proc$586 = .data:0x00053E04; // type:object size:0x8 scope:local align:4
+msg_base$591 = .data:0x00053E0C; // type:object size:0x18 scope:local align:4
+Hanami_Npc1_Profile = .data:0x00053E28; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x00053E4C; // type:object size:0x1C scope:local align:4
+animeSeqNo$477 = .data:0x00053E68; // type:object size:0x8 scope:local align:4
+offset$507 = .data:0x00053E70; // type:object size:0x8 scope:local align:4
+process$551 = .data:0x00053E78; // type:object size:0x8 scope:local align:4
+act_proc$568 = .data:0x00053E80; // type:object size:0xC scope:local align:4
+think_proc$601 = .data:0x00053E8C; // type:object size:0x8 scope:local align:4
+def_angle$606 = .data:0x00053E94; // type:object size:0xE scope:local align:4
+sche_proc$618 = .data:0x00053EA4; // type:object size:0x8 scope:local align:4
+msg_base$623 = .data:0x00053EAC; // type:object size:0x18 scope:local align:4
+Hatumode_Npc0_Profile = .data:0x00053EC8; // type:object size:0x24 scope:global align:4
+ct_data$476 = .data:0x00053EEC; // type:object size:0x1C scope:local align:4
+base_msg_table$479 = .data:0x00053F08; // type:object size:0x18 scope:local align:4
+root_table$598 = .data:0x00053F20; // type:object size:0x4 scope:local align:4
+proc_idx_table$599 = .data:0x00053F24; // type:object size:0x4 scope:local align:4
+proc_table = .data:0x00053F28; // type:object size:0x48 scope:local align:4
+talk_request_table$727 = .data:0x00053F70; // type:object size:0xC scope:local align:4
+Kamakura_Npc0_Profile = .data:0x00053F80; // type:object size:0x24 scope:global align:4
+ct_data$451 = .data:0x00053FA4; // type:object size:0x1C scope:local align:4
+Normal_Npc_Profile = .data:0x00053FC0; // type:object size:0x24 scope:global align:4
+ct_data$427 = .data:0x00053FE4; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00054000; // type:label scope:local
+aNPC_req_default_data = .data:0x00054000; // type:object size:0xC scope:local align:4
+Npc_Profile = .data:0x0005400C; // type:object size:0x24 scope:global align:4
+aNPC_animeTable = .data:0x00054030; // type:object size:0x7B0 scope:local align:4
+aNPC_animeSeqNoTable = .data:0x000547E0; // type:object size:0x72 scope:local align:4
+aNPC_sub_animeSeqNoTable = .data:0x00054854; // type:object size:0x8 scope:local align:4
+aNPC_CoInfoData = .data:0x0005485C; // type:object size:0x10 scope:local align:4
+aNPC_StatusData = .data:0x0005486C; // type:object size:0xA scope:local align:4
+aNPC_part_tbl00 = .data:0x00054878; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl01 = .data:0x00054894; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl10 = .data:0x000548B0; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl11 = .data:0x000548CC; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl = .data:0x000548E8; // type:object size:0x10 scope:local align:4
+aNPC_spd_data = .data:0x000548F8; // type:object size:0x24 scope:local align:4
+aNPC_uzai_feel = .data:0x0005491C; // type:object size:0x18 scope:local align:4
+talk_turn_def_anime$709 = .data:0x00054934; // type:object size:0x24 scope:local align:4
+talk_def_anime$710 = .data:0x00054958; // type:object size:0x24 scope:local align:4
+eye_normal_blink$881 = .data:0x0005497C; // type:object size:0x8 scope:local align:4
+eye_angry_blink$882 = .data:0x00054984; // type:object size:0x8 scope:local align:4
+eye_sadly_blink$883 = .data:0x0005498C; // type:object size:0x8 scope:local align:4
+eye_laugh_blink$884 = .data:0x00054994; // type:object size:0x8 scope:local align:4
+eye_surprise_blink$885 = .data:0x0005499C; // type:object size:0x8 scope:local align:4
+eye_cry_blink$886 = .data:0x000549A4; // type:object size:0x8 scope:local align:4
+eye_anm_table_type$887 = .data:0x000549AC; // type:object size:0x1C scope:local align:4
+eye_anm_table$888 = .data:0x000549C8; // type:object size:0x8 scope:local align:4
+mouth_normal_move_typeA$889 = .data:0x000549D0; // type:object size:0xA scope:local align:4
+mouth_normal_move_typeB$890 = .data:0x000549DC; // type:object size:0x6 scope:local align:4
+mouth_normal_move_typeC$891 = .data:0x000549E4; // type:object size:0xE scope:local align:4
+mouth_angry_move_typeA$892 = .data:0x000549F4; // type:object size:0xA scope:local align:4
+mouth_angry_move_typeB$893 = .data:0x00054A00; // type:object size:0x6 scope:local align:4
+mouth_angry_move_typeC$894 = .data:0x00054A08; // type:object size:0xE scope:local align:4
+mouth_anm_table_typeA$895 = .data:0x00054A18; // type:object size:0xC scope:local align:4
+mouth_anm_table_typeB$896 = .data:0x00054A24; // type:object size:0xC scope:local align:4
+mouth_anm_table_typeC$897 = .data:0x00054A30; // type:object size:0xC scope:local align:4
+mouth_anm_table$898 = .data:0x00054A3C; // type:object size:0xC scope:local align:4
+anm_table$899 = .data:0x00054A48; // type:object size:0x8 scope:local align:4
+eye_seq_cnt_table_type$904 = .data:0x00054A50; // type:object size:0x7 scope:local align:4
+eye_seq_cnt_table$905 = .data:0x00054A58; // type:object size:0x8 scope:local align:4
+mouth_seq_cnt_table_typeA$906 = .data:0x00054A60; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table_typeB$907 = .data:0x00054A64; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table_typeC$908 = .data:0x00054A68; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table$909 = .data:0x00054A6C; // type:object size:0xC scope:local align:4
+seq_cnt_table$910 = .data:0x00054A78; // type:object size:0x8 scope:local align:4
+rnd_base$915 = .data:0x00054A80; // type:object size:0x8 scope:local align:4
+next_act_idx$1064 = .data:0x00054A88; // type:object size:0x2 scope:local align:4
+next_act_idx$1074 = .data:0x00054A8C; // type:object size:0x2 scope:local align:4
+itemIdx_table$1075 = .data:0x00054A90; // type:object size:0x8 scope:local align:4
+eff_idx$1273 = .data:0x00054A98; // type:object size:0x56 scope:local align:4
+eff_idx2$1274 = .data:0x00054AF0; // type:object size:0x56 scope:local align:4
+eff_idx_f$1275 = .data:0x00054B48; // type:object size:0x56 scope:local align:4
+eff_idx_f2$1276 = .data:0x00054BA0; // type:object size:0x56 scope:local align:4
+eff_idx_i$1277 = .data:0x00054BF8; // type:object size:0x56 scope:local align:4
+eff_idx_i2$1278 = .data:0x00054C50; // type:object size:0x56 scope:local align:4
+ret_code$1562 = .data:0x00054CA8; // type:object size:0x3 scope:local align:4
+chk_x_table$1649 = .data:0x00054CAC; // type:object size:0x8 scope:local align:4
+crs_flg$1664 = .data:0x00054CB4; // type:object size:0x8 scope:local align:4
+fatigue_add_table$1792 = .data:0x00054CBC; // type:object size:0xE4 scope:local align:4
+setup_data$1814 = .data:0x00054DA0; // type:object size:0x1C8 scope:local align:4
+before_proc$1885 = .data:0x00054F68; // type:object size:0x68 scope:local align:4
+after_proc$1954 = .data:0x00054FD0; // type:object size:0x68 scope:local align:4
+xlu_env_disp$1959 = .data:0x00055038; // type:object size:0x30 scope:local align:8
+aNPC_wait_action = .data:0x00055068; // type:object size:0x9 scope:local align:4
+aNPC_walk_action = .data:0x00055074; // type:object size:0x9 scope:global align:4
+aNPC_run_action = .data:0x00055080; // type:object size:0x9 scope:global align:4
+@2129 = .data:0x0005508C; // type:object size:0x24 scope:local align:4
+offset_angl$2189 = .data:0x000550B0; // type:object size:0x6 scope:local align:4
+act_proc$2296 = .data:0x000550B8; // type:object size:0xC scope:local align:4
+act_proc$2309 = .data:0x000550C4; // type:object size:0x10 scope:local align:4
+act_proc$2340 = .data:0x000550D4; // type:object size:0xC scope:local align:4
+act_proc$2346 = .data:0x000550E0; // type:object size:0x10 scope:local align:4
+act_proc$2375 = .data:0x000550F0; // type:object size:0xC scope:local align:4
+act_idx$2402 = .data:0x000550FC; // type:object size:0x4 scope:local align:4
+act_proc$2439 = .data:0x00055100; // type:object size:0x10 scope:local align:4
+act_proc$2460 = .data:0x00055110; // type:object size:0xC scope:local align:4
+feel_table$2574 = .data:0x0005511C; // type:object size:0xC scope:local align:4
+addTim_table$2575 = .data:0x00055128; // type:object size:0xC scope:local align:4
+relation_table$2576 = .data:0x00055134; // type:object size:0xC scope:local align:4
+react_rate_table$2666 = .data:0x00055140; // type:object size:0x20 scope:local align:4 data:float
+react_proc_table$2667 = .data:0x00055160; // type:object size:0x20 scope:local align:4 data:4byte
+step_table$2703 = .data:0x00055180; // type:object size:0x6 scope:local align:4
+act_idx$2708 = .data:0x00055188; // type:object size:0xB scope:local align:4
+act_proc$2770 = .data:0x00055194; // type:object size:0x2C scope:local align:4
+act_proc$2785 = .data:0x000551C0; // type:object size:0xC scope:local align:4
+act_idx$2822 = .data:0x000551CC; // type:object size:0x3 scope:local align:4
+act_proc$2860 = .data:0x000551D0; // type:object size:0xC scope:local align:4
+act_proc$2879 = .data:0x000551DC; // type:object size:0xC scope:local align:4
+act_idx$2885 = .data:0x000551E8; // type:object size:0x5 scope:local align:4
+act_proc$2938 = .data:0x000551F0; // type:object size:0x14 scope:local align:4
+act_proc$2956 = .data:0x00055204; // type:object size:0xC scope:local align:4
+act_idx$2962 = .data:0x00055210; // type:object size:0x3 scope:local align:4
+act_proc$2995 = .data:0x00055214; // type:object size:0xC scope:local align:4
+act_proc$3004 = .data:0x00055220; // type:object size:0xC scope:local align:4
+act_proc$3026 = .data:0x0005522C; // type:object size:0xC scope:local align:4
+act_proc$3047 = .data:0x00055238; // type:object size:0xC scope:local align:4
+act_idx$3053 = .data:0x00055244; // type:object size:0x7 scope:local align:4
+act_proc$3108 = .data:0x0005524C; // type:object size:0x1C scope:local align:4
+act_proc$3130 = .data:0x00055268; // type:object size:0xC scope:local align:4
+act_idx$3138 = .data:0x00055274; // type:object size:0xC scope:local align:4
+act_idx_f$3139 = .data:0x00055280; // type:object size:0xC scope:local align:4
+@3162 = .data:0x0005528C; // type:object size:0x24 scope:local align:4
+next_step$3185 = .data:0x000552B0; // type:object size:0x4 scope:local align:4
+@3211 = .data:0x000552B4; // type:object size:0x3C scope:local align:4
+act_proc$3284 = .data:0x000552F0; // type:object size:0x30 scope:local align:4
+act_proc$3307 = .data:0x00055320; // type:object size:0xC scope:local align:4
+act_proc$3323 = .data:0x0005532C; // type:object size:0xC scope:local align:4
+act_idx$3329 = .data:0x00055338; // type:object size:0x4 scope:local align:4
+act_proc$3354 = .data:0x0005533C; // type:object size:0x10 scope:local align:4
+act_proc$3366 = .data:0x0005534C; // type:object size:0xC scope:local align:4
+act_proc$3383 = .data:0x00055358; // type:object size:0xC scope:local align:4
+act_idx$3413 = .data:0x00055364; // type:object size:0x4 scope:local align:4 data:string
+act_proc$3418 = .data:0x00055368; // type:object size:0x10 scope:local align:4
+act_proc$3442 = .data:0x00055378; // type:object size:0xC scope:local align:4
+act_proc$3459 = .data:0x00055384; // type:object size:0xC scope:local align:4
+aNPC_act_proc = .data:0x00055390; // type:object size:0x5C scope:local align:4
+max_uzai_cross$3525 = .data:0x000553EC; // type:object size:0x8 scope:local align:4
+max_uzai_tool$3526 = .data:0x000553F4; // type:object size:0x8 scope:local align:4
+base_msg_no_table$3527 = .data:0x000553FC; // type:object size:0x60 scope:local align:4
+add_angl$3639 = .data:0x0005545C; // type:object size:0x18 scope:local align:4
+drt_data$3640 = .data:0x00055474; // type:object size:0x2 scope:local align:4
+turn_angl_table$3669 = .data:0x00055478; // type:object size:0x8 scope:local align:4
+req_gyo_data$3759 = .data:0x00055480; // type:object size:0xC scope:local align:4
+req_ins_data$3767 = .data:0x0005548C; // type:object size:0xC scope:local align:4
+aNPC_req_ball_search_data$3922 = .data:0x00055498; // type:object size:0xC scope:local align:4
+girl_decide_boarder$4013 = .data:0x000554A4; // type:object size:0x8 scope:local align:4
+ko_girl_decide_boarder$4014 = .data:0x000554AC; // type:object size:0x8 scope:local align:4
+boy_decide_boarder$4015 = .data:0x000554B4; // type:object size:0x8 scope:local align:4
+sport_man_decide_boarder$4016 = .data:0x000554BC; // type:object size:0x8 scope:local align:4
+grim_man_decide_boarder$4017 = .data:0x000554C4; // type:object size:0x8 scope:local align:4
+naniwa_lady_decide_boarder$4018 = .data:0x000554CC; // type:object size:0x8 scope:local align:4
+s_npc_decide_boarder$4019 = .data:0x000554D4; // type:object size:0x8 scope:local align:4 data:4byte
+decide_boarder$4020 = .data:0x000554DC; // type:object size:0x18 scope:local align:4
+think_proc$4101 = .data:0x000554F4; // type:object size:0x8 scope:local align:4
+think_proc$4150 = .data:0x000554FC; // type:object size:0x8 scope:local align:4
+think_proc$4160 = .data:0x00055504; // type:object size:0x8 scope:local align:4
+think_proc$4173 = .data:0x0005550C; // type:object size:0x8 scope:local align:4
+angle_table$4253 = .data:0x00055514; // type:object size:0x8 scope:local align:4
+mv_posX$4254 = .data:0x0005551C; // type:object size:0x10 scope:local align:4
+mv_posZ$4255 = .data:0x0005552C; // type:object size:0x10 scope:local align:4
+think_proc$4261 = .data:0x0005553C; // type:object size:0x8 scope:local align:4
+think_proc$4287 = .data:0x00055544; // type:object size:0x8 scope:local align:4
+think_proc$4318 = .data:0x0005554C; // type:object size:0x8 scope:local align:4
+aNPC_think_proc_tbl = .data:0x00055554; // type:object size:0x28 scope:local align:4
+think_idx$4373 = .data:0x0005557C; // type:object size:0x10 scope:local align:4
+hide_flg$4374 = .data:0x0005558C; // type:object size:0x4 scope:local align:4
+sche_proc$4412 = .data:0x00055590; // type:object size:0x8 scope:local align:4
+think_idx$4418 = .data:0x00055598; // type:object size:0x10 scope:local align:4
+sche_proc$4460 = .data:0x000555A8; // type:object size:0x8 scope:local align:4
+think_idx$4466 = .data:0x000555B0; // type:object size:0x10 scope:local align:4
+sche_proc$4499 = .data:0x000555C0; // type:object size:0x8 scope:local align:4
+sche_proc$4519 = .data:0x000555C8; // type:object size:0x8 scope:local align:4
+sche_proc$4534 = .data:0x000555D0; // type:object size:0x8 scope:local align:4
+sche_proc$4543 = .data:0x000555D8; // type:object size:0x8 scope:local align:4
+aNPC_sche_proc = .data:0x000555E0; // type:object size:0x1C scope:local align:4
+aNPC_island_sche_proc = .data:0x000555FC; // type:object size:0x1C scope:global align:4
+event_npc_profile_table$4912 = .data:0x00055618; // type:object size:0x120 scope:local align:4
+pos_table$4913 = .data:0x00055738; // type:object size:0x40 scope:local align:4
+...data.0 = .data:0x00055778; // type:label scope:local
+aNPC_req_default_data = .data:0x00055778; // type:object size:0xC scope:local align:4
+Npc2_Profile = .data:0x00055784; // type:object size:0x24 scope:global align:4
+aNPC_animeTable = .data:0x000557A8; // type:object size:0x7B0 scope:local align:4
+aNPC_animeSeqNoTable = .data:0x00055F58; // type:object size:0x56 scope:local align:4
+aNPC_sub_animeSeqNoTable = .data:0x00055FB0; // type:object size:0x8 scope:local align:4
+aNPC_CoInfoData = .data:0x00055FB8; // type:object size:0x10 scope:local align:4
+aNPC_StatusData = .data:0x00055FC8; // type:object size:0xA scope:local align:4
+aNPC_part_tbl00 = .data:0x00055FD4; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl01 = .data:0x00055FF0; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl10 = .data:0x0005600C; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl11 = .data:0x00056028; // type:object size:0x1B scope:local align:4
+aNPC_part_tbl = .data:0x00056044; // type:object size:0x10 scope:local align:4
+aNPC_spd_data = .data:0x00056054; // type:object size:0x24 scope:local align:4
+aNPC_uzai_feel = .data:0x00056078; // type:object size:0x18 scope:local align:4
+talk_turn_def_anime$702 = .data:0x00056090; // type:object size:0x24 scope:local align:4
+talk_def_anime$703 = .data:0x000560B4; // type:object size:0x24 scope:local align:4
+eye_normal_blink$871 = .data:0x000560D8; // type:object size:0x8 scope:local align:4
+eye_angry_blink$872 = .data:0x000560E0; // type:object size:0x8 scope:local align:4
+eye_sadly_blink$873 = .data:0x000560E8; // type:object size:0x8 scope:local align:4
+eye_laugh_blink$874 = .data:0x000560F0; // type:object size:0x8 scope:local align:4
+eye_surprise_blink$875 = .data:0x000560F8; // type:object size:0x8 scope:local align:4
+eye_cry_blink$876 = .data:0x00056100; // type:object size:0x8 scope:local align:4
+eye_anm_table_type$877 = .data:0x00056108; // type:object size:0x1C scope:local align:4
+eye_anm_table$878 = .data:0x00056124; // type:object size:0x8 scope:local align:4
+mouth_normal_move_typeA$879 = .data:0x0005612C; // type:object size:0xA scope:local align:4
+mouth_normal_move_typeB$880 = .data:0x00056138; // type:object size:0x6 scope:local align:4
+mouth_normal_move_typeC$881 = .data:0x00056140; // type:object size:0xE scope:local align:4
+mouth_angry_move_typeA$882 = .data:0x00056150; // type:object size:0xA scope:local align:4
+mouth_angry_move_typeB$883 = .data:0x0005615C; // type:object size:0x6 scope:local align:4
+mouth_angry_move_typeC$884 = .data:0x00056164; // type:object size:0xE scope:local align:4
+mouth_anm_table_typeA$885 = .data:0x00056174; // type:object size:0xC scope:local align:4
+mouth_anm_table_typeB$886 = .data:0x00056180; // type:object size:0xC scope:local align:4
+mouth_anm_table_typeC$887 = .data:0x0005618C; // type:object size:0xC scope:local align:4
+mouth_anm_table$888 = .data:0x00056198; // type:object size:0xC scope:local align:4
+anm_table$889 = .data:0x000561A4; // type:object size:0x8 scope:local align:4
+eye_seq_cnt_table_type$894 = .data:0x000561AC; // type:object size:0x7 scope:local align:4
+eye_seq_cnt_table$895 = .data:0x000561B4; // type:object size:0x8 scope:local align:4
+mouth_seq_cnt_table_typeA$896 = .data:0x000561BC; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table_typeB$897 = .data:0x000561C0; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table_typeC$898 = .data:0x000561C4; // type:object size:0x3 scope:local align:4
+mouth_seq_cnt_table$899 = .data:0x000561C8; // type:object size:0xC scope:local align:4
+seq_cnt_table$900 = .data:0x000561D4; // type:object size:0x8 scope:local align:4
+rnd_base$905 = .data:0x000561DC; // type:object size:0x8 scope:local align:4
+next_act_idx$1042 = .data:0x000561E4; // type:object size:0x2 scope:local align:4
+next_act_idx$1052 = .data:0x000561E8; // type:object size:0x2 scope:local align:4
+itemIdx_table$1053 = .data:0x000561EC; // type:object size:0x8 scope:local align:4
+eff_idx$1248 = .data:0x000561F4; // type:object size:0x56 scope:local align:4
+eff_idx2$1249 = .data:0x0005624C; // type:object size:0x56 scope:local align:4
+eff_idx_f$1250 = .data:0x000562A4; // type:object size:0x56 scope:local align:4
+eff_idx_f2$1251 = .data:0x000562FC; // type:object size:0x56 scope:local align:4
+eff_idx_i$1252 = .data:0x00056354; // type:object size:0x56 scope:local align:4
+eff_idx_i2$1253 = .data:0x000563AC; // type:object size:0x56 scope:local align:4
+@1320 = .data:0x00056404; // type:object size:0x40 scope:local align:4
+fatigue_add_table$1535 = .data:0x00056444; // type:object size:0xAC scope:local align:4
+setup_data$1545 = .data:0x000564F0; // type:object size:0x158 scope:local align:4
+before_proc$1614 = .data:0x00056648; // type:object size:0x68 scope:local align:4
+after_proc$1683 = .data:0x000566B0; // type:object size:0x68 scope:local align:4
+xlu_env_disp$1688 = .data:0x00056718; // type:object size:0x30 scope:local align:8
+aNPC_wait_action = .data:0x00056748; // type:object size:0x9 scope:local align:4
+act_proc$1955 = .data:0x00056754; // type:object size:0xC scope:local align:4
+walk_action$1961 = .data:0x00056760; // type:object size:0x9 scope:local align:4
+run_action$1962 = .data:0x0005676C; // type:object size:0x9 scope:local align:4
+act_proc$1970 = .data:0x00056778; // type:object size:0x10 scope:local align:4
+act_proc$1995 = .data:0x00056788; // type:object size:0xC scope:local align:4
+act_proc$2001 = .data:0x00056794; // type:object size:0x10 scope:local align:4
+act_proc$2030 = .data:0x000567A4; // type:object size:0xC scope:local align:4
+act_idx$2067 = .data:0x000567B0; // type:object size:0x6 scope:local align:4
+act_proc$2105 = .data:0x000567B8; // type:object size:0xC scope:local align:4
+act_proc$2122 = .data:0x000567C4; // type:object size:0xC scope:local align:4
+act_proc$2132 = .data:0x000567D0; // type:object size:0xC scope:local align:4
+act_proc$2153 = .data:0x000567DC; // type:object size:0xC scope:local align:4
+act_idx$2159 = .data:0x000567E8; // type:object size:0x7 scope:local align:4
+act_proc$2214 = .data:0x000567F0; // type:object size:0x1C scope:local align:4
+act_proc$2237 = .data:0x0005680C; // type:object size:0xC scope:local align:4
+act_idx$2245 = .data:0x00056818; // type:object size:0xC scope:local align:4
+act_idx_f$2246 = .data:0x00056824; // type:object size:0xC scope:local align:4
+@2269 = .data:0x00056830; // type:object size:0x24 scope:local align:4
+next_step$2292 = .data:0x00056854; // type:object size:0x4 scope:local align:4
+@2318 = .data:0x00056858; // type:object size:0x3C scope:local align:4
+act_proc$2356 = .data:0x00056894; // type:object size:0x30 scope:local align:4
+act_proc$2380 = .data:0x000568C4; // type:object size:0xC scope:local align:4
+act_idx$2386 = .data:0x000568D0; // type:object size:0x3 scope:local align:4 data:string
+act_proc$2427 = .data:0x000568D4; // type:object size:0xC scope:local align:4
+act_proc$2443 = .data:0x000568E0; // type:object size:0xC scope:local align:4
+act_idx$2449 = .data:0x000568EC; // type:object size:0x1 scope:local align:4 data:string
+act_proc$2468 = .data:0x000568F0; // type:object size:0x4 scope:local align:4
+act_proc$2484 = .data:0x000568F4; // type:object size:0xC scope:local align:4
+act_proc$2500 = .data:0x00056900; // type:object size:0xC scope:local align:4
+aNPC_act_proc = .data:0x0005690C; // type:object size:0x44 scope:local align:4
+max_uzai_cross$2566 = .data:0x00056950; // type:object size:0x8 scope:local align:4
+max_uzai_tool$2567 = .data:0x00056958; // type:object size:0x8 scope:local align:4
+base_msg_no_table$2568 = .data:0x00056960; // type:object size:0x30 scope:local align:4
+aNPC_drt_table = .data:0x00056990; // type:object size:0x10 scope:global align:4
+aNPC_back_drt_table = .data:0x000569A0; // type:object size:0x14 scope:global align:4
+aNPC_left_drt_table = .data:0x000569B4; // type:object size:0x14 scope:global align:4
+aNPC_right_drt_table = .data:0x000569C8; // type:object size:0x14 scope:global align:4
+aNPC_pl_chk_drt_table = .data:0x000569DC; // type:object size:0x10 scope:global align:4
+aNPC_add_numX = .data:0x000569EC; // type:object size:0x14 scope:global align:4
+aNPC_add_numZ = .data:0x00056A00; // type:object size:0x14 scope:global align:4
+search_route_proc$2805 = .data:0x00056A14; // type:object size:0x8 scope:local align:4
+think_proc$3013 = .data:0x00056A1C; // type:object size:0x8 scope:local align:4
+think_proc$3065 = .data:0x00056A24; // type:object size:0x8 scope:local align:4
+think_proc$3124 = .data:0x00056A2C; // type:object size:0x8 scope:local align:4
+think_proc$3179 = .data:0x00056A34; // type:object size:0x8 scope:local align:4
+think_proc$3194 = .data:0x00056A3C; // type:object size:0x8 scope:local align:4
+aNPC_think_proc_tbl = .data:0x00056A44; // type:object size:0x1C scope:local align:4
+think_idx$3233 = .data:0x00056A60; // type:object size:0xC scope:local align:4
+sche_proc$3257 = .data:0x00056A6C; // type:object size:0x8 scope:local align:4
+think_idx$3263 = .data:0x00056A74; // type:object size:0xC scope:local align:4
+sche_proc$3286 = .data:0x00056A80; // type:object size:0x8 scope:local align:4
+sche_proc$3301 = .data:0x00056A88; // type:object size:0x8 scope:local align:4
+sche_proc$3321 = .data:0x00056A90; // type:object size:0x8 scope:local align:4
+sche_proc$3334 = .data:0x00056A98; // type:object size:0x8 scope:local align:4
+aNPC_sche_proc = .data:0x00056AA0; // type:object size:0x1C scope:local align:4
+uz_def_tbl$3438 = .data:0x00056ABC; // type:object size:0x18 scope:local align:4
+chk_val000$3439 = .data:0x00056AD4; // type:object size:0xC scope:local align:4
+chk_val001$3440 = .data:0x00056AE0; // type:object size:0xC scope:local align:4
+chk_val010$3441 = .data:0x00056AEC; // type:object size:0xC scope:local align:4
+chk_val011$3442 = .data:0x00056AF8; // type:object size:0xC scope:local align:4
+chk_val100$3443 = .data:0x00056B04; // type:object size:0xC scope:local align:4
+chk_val101$3444 = .data:0x00056B10; // type:object size:0xC scope:local align:4
+chk_val110$3445 = .data:0x00056B1C; // type:object size:0xC scope:local align:4
+chk_val_tbl$3446 = .data:0x00056B28; // type:object size:0x20 scope:local align:4
+angl_tbl$3447 = .data:0x00056B48; // type:object size:0x8 scope:local align:4
+chkX$3621 = .data:0x00056B50; // type:object size:0x90 scope:local align:4
+chkZ$3622 = .data:0x00056BE0; // type:object size:0x90 scope:local align:4
+event_npc_profile_table$3781 = .data:0x00056C70; // type:object size:0x120 scope:local align:4
+pos_table$3782 = .data:0x00056D90; // type:object size:0x40 scope:local align:4
+...data.0 = .data:0x00056DD0; // type:label scope:local
+Npc_Conv_Master_Profile = .data:0x00056DD0; // type:object size:0x24 scope:global align:4
+ct_data$461 = .data:0x00056DF4; // type:object size:0x1C scope:local align:4
+chk$482 = .data:0x00056E10; // type:object size:0x10 scope:local align:4
+next_zone$513 = .data:0x00056E20; // type:object size:0x90 scope:local align:4
+posX$530 = .data:0x00056EB0; // type:object size:0x30 scope:local align:4
+posZ$531 = .data:0x00056EE0; // type:object size:0x30 scope:local align:4
+anime$560 = .data:0x00056F10; // type:object size:0x230 scope:local align:4
+aNSC_item1_0_tanni_type = .data:0x00057140; // type:object size:0x100 scope:local align:4
+aNSC_item1_1_tanni_type = .data:0x00057240; // type:object size:0x4 scope:local align:4
+aNSC_item1_2_tanni_type = .data:0x00057244; // type:object size:0x5C scope:local align:4
+aNSC_item1_3_tanni_type = .data:0x000572A0; // type:object size:0x28 scope:local align:4
+aNSC_item1_4_tanni_type = .data:0x000572C8; // type:object size:0xFF scope:local align:4
+aNSC_item1_5_tanni_type = .data:0x000573C8; // type:object size:0x31 scope:local align:4
+aNSC_item1_6_tanni_type = .data:0x000573FC; // type:object size:0x43 scope:local align:4
+aNSC_item1_7_tanni_type = .data:0x00057440; // type:object size:0x43 scope:local align:4
+aNSC_item1_8_tanni_type = .data:0x00057484; // type:object size:0x8 scope:local align:4
+aNSC_item1_9_tanni_type = .data:0x0005748C; // type:object size:0xB scope:local align:4
+aNSC_item1_A_tanni_type = .data:0x00057498; // type:object size:0x37 scope:local align:4
+aNSC_item1_B_tanni_type = .data:0x000574D0; // type:object size:0x10 scope:local align:4 data:string
+aNSC_item1_C_tanni_type = .data:0x000574E0; // type:object size:0x60 scope:local align:4
+aNSC_item1_D_tanni_type = .data:0x00057540; // type:object size:0x2D scope:local align:4
+aNSC_item1_E_tanni_type = .data:0x00057570; // type:object size:0x2 scope:local align:4
+aNSC_item1_F_tanni_type = .data:0x00057574; // type:object size:0x4 scope:local align:4
+aNSC_item_tanni_type = .data:0x00057578; // type:object size:0x40 scope:local align:4
+pcenter$590 = .data:0x000575B8; // type:object size:0x30 scope:local align:4
+peye$591 = .data:0x000575E8; // type:object size:0x30 scope:local align:4
+hit_rate_magazine$729 = .data:0x00057618; // type:object size:0x14 scope:local align:4
+pc_check_password_proc$755 = .data:0x0005762C; // type:object size:0x18 scope:local align:4
+tani_string_num$785 = .data:0x00057644; // type:object size:0x28 scope:local align:4
+aNSC_exchange_itemNo = .data:0x0005766C; // type:object size:0x4 scope:local align:4
+rehouse_msg$1224 = .data:0x00057670; // type:object size:0x10 scope:local align:4
+rehouse_loan$1225 = .data:0x00057680; // type:object size:0x10 scope:local align:4
+msg_no$1441 = .data:0x00057690; // type:object size:0x14 scope:local align:4
+next_act_idx$1442 = .data:0x000576A4; // type:object size:0x14 scope:local align:4
+msg_no$1459 = .data:0x000576B8; // type:object size:0x24 scope:local align:4
+next_act_idx$1460 = .data:0x000576DC; // type:object size:0x24 scope:local align:4
+msg_no_table$1515 = .data:0x00057700; // type:object size:0x20 scope:local align:4
+next_act_idx$1516 = .data:0x00057720; // type:object size:0x20 scope:local align:4
+msg_no$1544 = .data:0x00057740; // type:object size:0x10 scope:local align:4
+next_act_idx$1545 = .data:0x00057750; // type:object size:0x10 scope:local align:4
+next_act_idx$1596 = .data:0x00057760; // type:object size:0x8 scope:local align:4
+msg_no$1621 = .data:0x00057768; // type:object size:0xC scope:local align:4
+next_act_idx$1622 = .data:0x00057774; // type:object size:0xC scope:local align:4
+next_act_idx$1674 = .data:0x00057780; // type:object size:0x2C scope:local align:4
+msg_no$1675 = .data:0x000577AC; // type:object size:0x2C scope:local align:4
+msg_no$1774 = .data:0x000577D8; // type:object size:0x8 scope:local align:4
+next_act_idx$1775 = .data:0x000577E0; // type:object size:0x8 scope:local align:4
+next_act_idx$1785 = .data:0x000577E8; // type:object size:0xC scope:local align:4
+msg_no$1807 = .data:0x000577F4; // type:object size:0x8 scope:local align:4
+next_act_idx$1808 = .data:0x000577FC; // type:object size:0x8 scope:local align:4
+next_act_idx$1818 = .data:0x00057804; // type:object size:0xC scope:local align:4
+next_act_idx$1833 = .data:0x00057810; // type:object size:0x8 scope:local align:4
+msg_no$1854 = .data:0x00057818; // type:object size:0x28 scope:local align:4
+next_act_idx$1855 = .data:0x00057840; // type:object size:0x28 scope:local align:4
+next_act_idx$1863 = .data:0x00057868; // type:object size:0x8 scope:local align:4
+kabu_sum$2039 = .data:0x00057870; // type:object size:0x10 scope:local align:4
+init_proc$2173 = .data:0x00057880; // type:object size:0x118 scope:local align:4
+process$2178 = .data:0x00057998; // type:object size:0x118 scope:local align:4
+Npc_Curator_Profile = .data:0x00057AB0; // type:object size:0x24 scope:global align:4
+ct_data$472 = .data:0x00057AD4; // type:object size:0x1C scope:local align:4
+animeSeqNo$499 = .data:0x00057AF0; // type:object size:0xC scope:local align:4
+process$533 = .data:0x00057AFC; // type:object size:0xC scope:local align:4
+init_proc$534 = .data:0x00057B08; // type:object size:0xC scope:local align:4
+act_proc$561 = .data:0x00057B14; // type:object size:0xC scope:local align:4
+think_proc$589 = .data:0x00057B20; // type:object size:0x8 scope:local align:4
+sche_proc$605 = .data:0x00057B28; // type:object size:0x8 scope:local align:4
+fossil_ftr_start$611 = .data:0x00057B30; // type:object size:0x1C scope:local align:4
+fossil_ftr_end$612 = .data:0x00057B4C; // type:object size:0x1C scope:local align:4
+trikera_parts$627 = .data:0x00057B68; // type:object size:0x6 scope:local align:4
+trex_parts$628 = .data:0x00057B70; // type:object size:0x6 scope:local align:4
+bront_parts$629 = .data:0x00057B78; // type:object size:0x6 scope:local align:4
+stego_parts$630 = .data:0x00057B80; // type:object size:0x6 scope:local align:4
+ptera_parts$631 = .data:0x00057B88; // type:object size:0x6 scope:local align:4
+hutaba_parts$632 = .data:0x00057B90; // type:object size:0x6 scope:local align:4
+mammoth_parts$633 = .data:0x00057B98; // type:object size:0x4 scope:local align:4
+fossil_parts$634 = .data:0x00057B9C; // type:object size:0x38 scope:local align:4
+msg_no_table$659 = .data:0x00057BD4; // type:object size:0x1C scope:local align:4
+msg_no$667 = .data:0x00057BF0; // type:object size:0x8 scope:local align:4
+next_act_idx$668 = .data:0x00057BF8; // type:object size:0x8 scope:local align:4
+msg_no$677 = .data:0x00057C00; // type:object size:0x8 scope:local align:4
+next_act_idx$678 = .data:0x00057C08; // type:object size:0x8 scope:local align:4
+msg_no$687 = .data:0x00057C10; // type:object size:0x8 scope:local align:4
+next_act_idx$688 = .data:0x00057C18; // type:object size:0x8 scope:local align:4
+msg_no$697 = .data:0x00057C20; // type:object size:0x8 scope:local align:4
+next_act_idx$698 = .data:0x00057C28; // type:object size:0x8 scope:local align:4
+msg_no$707 = .data:0x00057C30; // type:object size:0xA0 scope:local align:4
+msg_no$728 = .data:0x00057CD0; // type:object size:0x10 scope:local align:4
+@762 = .data:0x00057CE0; // type:object size:0x44 scope:local align:4
+donate_act$895 = .data:0x00057D24; // type:object size:0xE0 scope:local align:4 data:4byte
+chk_msg_num$943 = .data:0x00057E04; // type:object size:0xC scope:local align:4
+msg_no$962 = .data:0x00057E10; // type:object size:0xA4 scope:local align:4
+msg_no$1000 = .data:0x00057EB4; // type:object size:0x8 scope:local align:4
+init_proc$1036 = .data:0x00057EBC; // type:object size:0x88 scope:local align:4
+process$1041 = .data:0x00057F44; // type:object size:0x88 scope:local align:4
+msg_no$1046 = .data:0x00057FCC; // type:object size:0x60 scope:local align:4
+...data.0 = .data:0x00058030; // type:label scope:local
+Npc_Depart_Master_Profile = .data:0x00058030; // type:object size:0x24 scope:global align:4
+ct_data$467 = .data:0x00058054; // type:object size:0x1C scope:local align:4
+chk0$506 = .data:0x00058070; // type:object size:0xC scope:local align:4
+chk1$507 = .data:0x0005807C; // type:object size:0xC scope:local align:4
+next_zone$522 = .data:0x00058088; // type:object size:0x51 scope:local align:4
+posX$539 = .data:0x000580DC; // type:object size:0x24 scope:local align:4
+posZ$540 = .data:0x00058100; // type:object size:0x24 scope:local align:4
+anime$571 = .data:0x00058124; // type:object size:0x230 scope:local align:4
+aNSC_item1_0_tanni_type = .data:0x00058354; // type:object size:0x100 scope:local align:4
+aNSC_item1_1_tanni_type = .data:0x00058454; // type:object size:0x4 scope:local align:4
+aNSC_item1_2_tanni_type = .data:0x00058458; // type:object size:0x5C scope:local align:4
+aNSC_item1_3_tanni_type = .data:0x000584B4; // type:object size:0x28 scope:local align:4
+aNSC_item1_4_tanni_type = .data:0x000584DC; // type:object size:0xFF scope:local align:4
+aNSC_item1_5_tanni_type = .data:0x000585DC; // type:object size:0x31 scope:local align:4
+aNSC_item1_6_tanni_type = .data:0x00058610; // type:object size:0x43 scope:local align:4
+aNSC_item1_7_tanni_type = .data:0x00058654; // type:object size:0x43 scope:local align:4
+aNSC_item1_8_tanni_type = .data:0x00058698; // type:object size:0x8 scope:local align:4
+aNSC_item1_9_tanni_type = .data:0x000586A0; // type:object size:0xB scope:local align:4
+aNSC_item1_A_tanni_type = .data:0x000586AC; // type:object size:0x37 scope:local align:4
+aNSC_item1_B_tanni_type = .data:0x000586E4; // type:object size:0x10 scope:local align:4 data:string
+aNSC_item1_C_tanni_type = .data:0x000586F4; // type:object size:0x60 scope:local align:4
+aNSC_item1_D_tanni_type = .data:0x00058754; // type:object size:0x2D scope:local align:4
+aNSC_item1_E_tanni_type = .data:0x00058784; // type:object size:0x2 scope:local align:4
+aNSC_item1_F_tanni_type = .data:0x00058788; // type:object size:0x4 scope:local align:4
+aNSC_item_tanni_type = .data:0x0005878C; // type:object size:0x40 scope:local align:4
+pcenter$601 = .data:0x000587CC; // type:object size:0x30 scope:local align:4
+peye$602 = .data:0x000587FC; // type:object size:0x30 scope:local align:4
+hit_rate_magazine$740 = .data:0x0005882C; // type:object size:0x14 scope:local align:4
+pc_check_password_proc$766 = .data:0x00058840; // type:object size:0x18 scope:local align:4
+tani_string_num$796 = .data:0x00058858; // type:object size:0x28 scope:local align:4
+aNSC_exchange_itemNo = .data:0x00058880; // type:object size:0x4 scope:local align:4
+rehouse_msg$1236 = .data:0x00058884; // type:object size:0x10 scope:local align:4
+rehouse_loan$1237 = .data:0x00058894; // type:object size:0x10 scope:local align:4
+msg_no$1453 = .data:0x000588A4; // type:object size:0x14 scope:local align:4
+next_act_idx$1454 = .data:0x000588B8; // type:object size:0x14 scope:local align:4
+msg_no$1471 = .data:0x000588CC; // type:object size:0x24 scope:local align:4
+next_act_idx$1472 = .data:0x000588F0; // type:object size:0x24 scope:local align:4
+msg_no_table$1527 = .data:0x00058914; // type:object size:0x20 scope:local align:4
+next_act_idx$1528 = .data:0x00058934; // type:object size:0x20 scope:local align:4
+msg_no$1556 = .data:0x00058954; // type:object size:0x10 scope:local align:4
+next_act_idx$1557 = .data:0x00058964; // type:object size:0x10 scope:local align:4
+next_act_idx$1608 = .data:0x00058974; // type:object size:0x8 scope:local align:4
+msg_no$1633 = .data:0x0005897C; // type:object size:0xC scope:local align:4
+next_act_idx$1634 = .data:0x00058988; // type:object size:0xC scope:local align:4
+next_act_idx$1686 = .data:0x00058994; // type:object size:0x2C scope:local align:4
+msg_no$1687 = .data:0x000589C0; // type:object size:0x2C scope:local align:4
+msg_no$1786 = .data:0x000589EC; // type:object size:0x8 scope:local align:4
+next_act_idx$1787 = .data:0x000589F4; // type:object size:0x8 scope:local align:4
+next_act_idx$1797 = .data:0x000589FC; // type:object size:0xC scope:local align:4
+msg_no$1819 = .data:0x00058A08; // type:object size:0x8 scope:local align:4
+next_act_idx$1820 = .data:0x00058A10; // type:object size:0x8 scope:local align:4
+next_act_idx$1830 = .data:0x00058A18; // type:object size:0xC scope:local align:4
+next_act_idx$1845 = .data:0x00058A24; // type:object size:0x8 scope:local align:4
+msg_no$1866 = .data:0x00058A2C; // type:object size:0x28 scope:local align:4
+next_act_idx$1867 = .data:0x00058A54; // type:object size:0x28 scope:local align:4
+next_act_idx$1875 = .data:0x00058A7C; // type:object size:0x8 scope:local align:4
+kabu_sum$2051 = .data:0x00058A84; // type:object size:0x10 scope:local align:4
+init_proc$2185 = .data:0x00058A94; // type:object size:0x118 scope:local align:4
+process$2190 = .data:0x00058BAC; // type:object size:0x118 scope:local align:4
+Npc_Engineer_Profile = .data:0x00058CC8; // type:object size:0x24 scope:global align:4
+ct_data$458 = .data:0x00058CEC; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00058D08; // type:label scope:local
+Npc_Guide_Profile = .data:0x00058D08; // type:object size:0x24 scope:global align:4
+ct_data$477 = .data:0x00058D2C; // type:object size:0x1C scope:local align:4
+anime$498 = .data:0x00058D48; // type:object size:0x110 scope:local align:4
+mov_def_cnt$511 = .data:0x00058E58; // type:object size:0x2 scope:local align:4
+obj_look_y_max$512 = .data:0x00058E5C; // type:object size:0x8 scope:local align:4
+obj_look_y_spd$513 = .data:0x00058E64; // type:object size:0x8 scope:local align:4
+@619 = .data:0x00058E6C; // type:object size:0x2C scope:local align:4
+face_type_table$623 = .data:0x00058E98; // type:object size:0x40 scope:local align:4
+msg_no$701 = .data:0x00058ED8; // type:object size:0xC scope:local align:4
+next_act_idx$702 = .data:0x00058EE4; // type:object size:0xC scope:local align:4
+anmSpd$823 = .data:0x00058EF0; // type:object size:0x8 scope:local align:4
+init_proc$977 = .data:0x00058EF8; // type:object size:0x88 scope:local align:4
+process$982 = .data:0x00058F80; // type:object size:0x88 scope:local align:4
+...data.0 = .data:0x00059008; // type:label scope:local
+Npc_Guide2_Profile = .data:0x00059008; // type:object size:0x24 scope:global align:4
+ct_data$464 = .data:0x0005902C; // type:object size:0x1C scope:local align:4
+anime$485 = .data:0x00059048; // type:object size:0xE8 scope:local align:4
+mov_def_cnt$490 = .data:0x00059130; // type:object size:0x2 scope:local align:4
+obj_look_y_max$491 = .data:0x00059134; // type:object size:0x8 scope:local align:4
+obj_look_y_spd$492 = .data:0x0005913C; // type:object size:0x8 scope:local align:4
+@632 = .data:0x00059144; // type:object size:0x54 scope:local align:4
+face_type_table$636 = .data:0x00059198; // type:object size:0x40 scope:local align:4
+msg_no$716 = .data:0x000591D8; // type:object size:0x8 scope:local align:4
+next_act_idx$717 = .data:0x000591E0; // type:object size:0x8 scope:local align:4
+next_act_idx$738 = .data:0x000591E8; // type:object size:0x8 scope:local align:4
+anmSpd$809 = .data:0x000591F0; // type:object size:0x8 scope:local align:4
+init_proc$942 = .data:0x000591F8; // type:object size:0x74 scope:local align:4
+process$947 = .data:0x0005926C; // type:object size:0x74 scope:local align:4
+...data.0 = .data:0x000592E0; // type:label scope:local
+Npc_Majin_Profile = .data:0x000592E0; // type:object size:0x24 scope:global align:4
+ct_data$464 = .data:0x00059304; // type:object size:0x1C scope:local align:4
+animeSeqNo$493 = .data:0x00059320; // type:object size:0x10 scope:local align:4
+msg_no$536 = .data:0x00059330; // type:object size:0x14 scope:local align:4
+act_proc$566 = .data:0x00059344; // type:object size:0xC scope:local align:4
+def_posX$619 = .data:0x00059350; // type:object size:0x14 scope:local align:4
+def_posZ$620 = .data:0x00059364; // type:object size:0x14 scope:local align:4
+def_angl$621 = .data:0x00059378; // type:object size:0xA scope:local align:4
+def_think_idx$622 = .data:0x00059384; // type:object size:0x14 scope:local align:4
+dt_tbl$639 = .data:0x00059398; // type:object size:0x80 scope:local align:4
+think_proc$644 = .data:0x00059418; // type:object size:0x8 scope:local align:4
+sche_proc$660 = .data:0x00059420; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00059428; // type:label scope:local
+Npc_Majin2_Profile = .data:0x00059428; // type:object size:0x24 scope:global align:4
+ct_data$465 = .data:0x0005944C; // type:object size:0x1C scope:local align:4
+animeSeqNo$494 = .data:0x00059468; // type:object size:0xE scope:local align:4
+talk_proc$509 = .data:0x00059478; // type:object size:0x8 scope:local align:4
+dt_tbl$514 = .data:0x00059480; // type:object size:0x18 scope:local align:4
+dt_tbl$526 = .data:0x00059498; // type:object size:0x8 scope:local align:4
+act_proc$556 = .data:0x000594A0; // type:object size:0xC scope:local align:4
+next_act_idx$601 = .data:0x000594AC; // type:object size:0x18 scope:local align:4
+def_posX$633 = .data:0x000594C4; // type:object size:0x14 scope:local align:4
+def_posZ$634 = .data:0x000594D8; // type:object size:0x14 scope:local align:4
+def_angl$635 = .data:0x000594EC; // type:object size:0xA scope:local align:4
+def_think_idx$636 = .data:0x000594F8; // type:object size:0x14 scope:local align:4
+dt_tbl$661 = .data:0x0005950C; // type:object size:0x70 scope:local align:4
+think_proc$672 = .data:0x0005957C; // type:object size:0x8 scope:local align:4
+sche_proc$688 = .data:0x00059584; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00059590; // type:label scope:local
+Npc_Majin3_Profile = .data:0x00059590; // type:object size:0x24 scope:global align:4
+ct_data$464 = .data:0x000595B4; // type:object size:0x1C scope:local align:4
+animeSeqNo$493 = .data:0x000595D0; // type:object size:0xA scope:local align:4
+chg_length$505 = .data:0x000595DC; // type:object size:0x24 scope:local align:4 data:4byte
+msg_no$551 = .data:0x00059600; // type:object size:0xC scope:local align:4
+next_talk_idx$552 = .data:0x0005960C; // type:object size:0xC scope:local align:4
+talk_proc$560 = .data:0x00059618; // type:object size:0x14 scope:local align:4
+dt_tbl$565 = .data:0x0005962C; // type:object size:0x8 scope:local align:4
+act_proc$597 = .data:0x00059634; // type:object size:0xC scope:local align:4
+def_posX$656 = .data:0x00059640; // type:object size:0x14 scope:local align:4
+def_posZ$657 = .data:0x00059654; // type:object size:0x14 scope:local align:4
+def_angl$658 = .data:0x00059668; // type:object size:0xA scope:local align:4
+def_think_idx$659 = .data:0x00059674; // type:object size:0x14 scope:local align:4
+dt_tbl$684 = .data:0x00059688; // type:object size:0x50 scope:local align:4
+think_proc$689 = .data:0x000596D8; // type:object size:0x8 scope:local align:4
+sche_proc$705 = .data:0x000596E0; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000596E8; // type:label scope:local
+Npc_Majin4_Profile = .data:0x000596E8; // type:object size:0x24 scope:global align:4
+ct_data$464 = .data:0x0005970C; // type:object size:0x1C scope:local align:4
+animeSeqNo$493 = .data:0x00059728; // type:object size:0xE scope:local align:4
+dt_tbl$499 = .data:0x00059738; // type:object size:0x10 scope:local align:4
+act_proc$536 = .data:0x00059748; // type:object size:0xC scope:local align:4
+def_posX$590 = .data:0x00059754; // type:object size:0x14 scope:local align:4
+def_posZ$591 = .data:0x00059768; // type:object size:0x14 scope:local align:4
+def_angl$592 = .data:0x0005977C; // type:object size:0xA scope:local align:4
+def_think_idx$593 = .data:0x00059788; // type:object size:0x14 scope:local align:4
+dt_tbl$629 = .data:0x0005979C; // type:object size:0x70 scope:local align:4
+think_proc$634 = .data:0x0005980C; // type:object size:0x8 scope:local align:4
+sche_proc$650 = .data:0x00059814; // type:object size:0x8 scope:local align:4
+Npc_Majin5_Profile = .data:0x00059820; // type:object size:0x24 scope:global align:4
+ct_data$478 = .data:0x00059844; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00059860; // type:label scope:local
+Npc_Mamedanuki_Profile = .data:0x00059860; // type:object size:0x24 scope:global align:4
+ct_data$470 = .data:0x00059884; // type:object size:0x1C scope:local align:4
+start_act_idx$471 = .data:0x000598A0; // type:object size:0x8 scope:local align:4
+special_sale_type$472 = .data:0x000598A8; // type:object size:0x5 scope:local align:4
+zone_sale_normal$499 = .data:0x000598B0; // type:object size:0x100 scope:local align:4
+zone_sale_ftr$500 = .data:0x000599B0; // type:object size:0x100 scope:local align:4
+zone_sale_cloth$501 = .data:0x00059AB0; // type:object size:0x100 scope:local align:4
+zone_sale_carpet$502 = .data:0x00059BB0; // type:object size:0x100 scope:local align:4
+sale_zone$503 = .data:0x00059CB0; // type:object size:0x10 scope:local align:4
+next_zone_sale_normal$524 = .data:0x00059CC0; // type:object size:0x1210 scope:local align:4
+next_zone_sale_ftr$525 = .data:0x0005AED0; // type:object size:0xE10 scope:local align:4
+next_zone_sale_cloth$526 = .data:0x0005BCE0; // type:object size:0xC4 scope:local align:4
+next_zone_sale_carpet$527 = .data:0x0005BDA4; // type:object size:0x24 scope:local align:4
+next_zone_table$528 = .data:0x0005BDC8; // type:object size:0x10 scope:local align:4
+zone_sum$529 = .data:0x0005BDD8; // type:object size:0x10 scope:local align:4
+posX_sale_normal$547 = .data:0x0005BDE8; // type:object size:0x110 scope:local align:4
+posZ_sale_normal$548 = .data:0x0005BEF8; // type:object size:0x110 scope:local align:4
+posX_sale_ftr$549 = .data:0x0005C008; // type:object size:0xF0 scope:local align:4
+posZ_sale_ftr$550 = .data:0x0005C0F8; // type:object size:0xF0 scope:local align:4
+posX_sale_cloth$551 = .data:0x0005C1E8; // type:object size:0x38 scope:local align:4
+posZ_sale_cloth$552 = .data:0x0005C220; // type:object size:0x38 scope:local align:4
+posX_sale_carpet$553 = .data:0x0005C258; // type:object size:0x18 scope:local align:4
+posZ_sale_carpet$554 = .data:0x0005C270; // type:object size:0x18 scope:local align:4
+posX_table$555 = .data:0x0005C288; // type:object size:0x10 scope:local align:4
+posZ_table$556 = .data:0x0005C298; // type:object size:0x10 scope:local align:4
+weight$568 = .data:0x0005C2A8; // type:object size:0x3 scope:local align:4
+anime$587 = .data:0x0005C2AC; // type:object size:0x238 scope:local align:4
+aNSC_item1_0_tanni_type = .data:0x0005C4E4; // type:object size:0x100 scope:local align:4
+aNSC_item1_1_tanni_type = .data:0x0005C5E4; // type:object size:0x4 scope:local align:4
+aNSC_item1_2_tanni_type = .data:0x0005C5E8; // type:object size:0x5C scope:local align:4
+aNSC_item1_3_tanni_type = .data:0x0005C644; // type:object size:0x28 scope:local align:4
+aNSC_item1_4_tanni_type = .data:0x0005C66C; // type:object size:0xFF scope:local align:4
+aNSC_item1_5_tanni_type = .data:0x0005C76C; // type:object size:0x31 scope:local align:4
+aNSC_item1_6_tanni_type = .data:0x0005C7A0; // type:object size:0x43 scope:local align:4
+aNSC_item1_7_tanni_type = .data:0x0005C7E4; // type:object size:0x43 scope:local align:4
+aNSC_item1_8_tanni_type = .data:0x0005C828; // type:object size:0x8 scope:local align:4
+aNSC_item1_9_tanni_type = .data:0x0005C830; // type:object size:0xB scope:local align:4
+aNSC_item1_A_tanni_type = .data:0x0005C83C; // type:object size:0x37 scope:local align:4
+aNSC_item1_B_tanni_type = .data:0x0005C874; // type:object size:0x10 scope:local align:4 data:string
+aNSC_item1_C_tanni_type = .data:0x0005C884; // type:object size:0x60 scope:local align:4
+aNSC_item1_D_tanni_type = .data:0x0005C8E4; // type:object size:0x2D scope:local align:4
+aNSC_item1_E_tanni_type = .data:0x0005C914; // type:object size:0x2 scope:local align:4
+aNSC_item1_F_tanni_type = .data:0x0005C918; // type:object size:0x4 scope:local align:4
+aNSC_item_tanni_type = .data:0x0005C91C; // type:object size:0x40 scope:local align:4
+pcenter$617 = .data:0x0005C95C; // type:object size:0x30 scope:local align:4
+peye$618 = .data:0x0005C98C; // type:object size:0x30 scope:local align:4
+hit_rate_magazine$748 = .data:0x0005C9BC; // type:object size:0x14 scope:local align:4
+pc_check_password_proc$774 = .data:0x0005C9D0; // type:object size:0x18 scope:local align:4
+tani_string_num$804 = .data:0x0005C9E8; // type:object size:0x28 scope:local align:4
+force_talk_start_proc$1156 = .data:0x0005CA10; // type:object size:0x8 scope:local align:4
+norm_talk_start_proc$1157 = .data:0x0005CA18; // type:object size:0x8 scope:local align:4
+request_proc$1158 = .data:0x0005CA20; // type:object size:0x8 scope:local align:4
+set_talk_info_proc$1159 = .data:0x0005CA28; // type:object size:0x8 scope:local align:4
+aNSC_exchange_itemNo = .data:0x0005CA30; // type:object size:0x4 scope:local align:4
+msg_no$1325 = .data:0x0005CA34; // type:object size:0x14 scope:local align:4
+next_act_idx$1326 = .data:0x0005CA48; // type:object size:0x14 scope:local align:4
+msg_no$1343 = .data:0x0005CA5C; // type:object size:0x24 scope:local align:4
+next_act_idx$1344 = .data:0x0005CA80; // type:object size:0x24 scope:local align:4
+msg_no_table$1399 = .data:0x0005CAA4; // type:object size:0x20 scope:local align:4
+next_act_idx$1400 = .data:0x0005CAC4; // type:object size:0x20 scope:local align:4
+msg_no$1428 = .data:0x0005CAE4; // type:object size:0x10 scope:local align:4
+next_act_idx$1429 = .data:0x0005CAF4; // type:object size:0x10 scope:local align:4
+next_act_idx$1480 = .data:0x0005CB04; // type:object size:0x8 scope:local align:4
+msg_no$1505 = .data:0x0005CB0C; // type:object size:0xC scope:local align:4
+next_act_idx$1506 = .data:0x0005CB18; // type:object size:0xC scope:local align:4
+next_act_idx$1558 = .data:0x0005CB24; // type:object size:0x2C scope:local align:4
+msg_no$1559 = .data:0x0005CB50; // type:object size:0x2C scope:local align:4
+msg_no$1658 = .data:0x0005CB7C; // type:object size:0x8 scope:local align:4
+next_act_idx$1659 = .data:0x0005CB84; // type:object size:0x8 scope:local align:4
+next_act_idx$1669 = .data:0x0005CB8C; // type:object size:0xC scope:local align:4
+msg_no$1691 = .data:0x0005CB98; // type:object size:0x8 scope:local align:4
+next_act_idx$1692 = .data:0x0005CBA0; // type:object size:0x8 scope:local align:4
+next_act_idx$1702 = .data:0x0005CBA8; // type:object size:0xC scope:local align:4
+next_act_idx$1717 = .data:0x0005CBB4; // type:object size:0x8 scope:local align:4
+msg_no$1738 = .data:0x0005CBBC; // type:object size:0x28 scope:local align:4
+next_act_idx$1739 = .data:0x0005CBE4; // type:object size:0x28 scope:local align:4
+next_act_idx$1747 = .data:0x0005CC0C; // type:object size:0x8 scope:local align:4
+stairs$1854 = .data:0x0005CC14; // type:object size:0x14 scope:local align:4
+kabu_sum$1899 = .data:0x0005CC28; // type:object size:0x10 scope:local align:4
+init_proc$2033 = .data:0x0005CC38; // type:object size:0x11C scope:local align:4
+process$2038 = .data:0x0005CD54; // type:object size:0x11C scope:local align:4
+Npc_Mask_Cat_Profile = .data:0x0005CE70; // type:object size:0x24 scope:global align:4
+ct_data$446 = .data:0x0005CE94; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x0005CEB0; // type:label scope:local
+Npc_Mask_Cat2_Profile = .data:0x0005CEB0; // type:object size:0x24 scope:global align:4
+ct_data$475 = .data:0x0005CED4; // type:object size:0x1C scope:local align:4
+anime$504 = .data:0x0005CEF0; // type:object size:0xC8 scope:local align:4
+mov_def_cnt$509 = .data:0x0005CFB8; // type:object size:0x2 scope:local align:4
+obj_look_y_max$510 = .data:0x0005CFBC; // type:object size:0x8 scope:local align:4
+obj_look_y_spd$511 = .data:0x0005CFC4; // type:object size:0x8 scope:local align:4
+next_act_idx$721 = .data:0x0005CFCC; // type:object size:0x10 scope:local align:4
+msg_no$722 = .data:0x0005CFDC; // type:object size:0x10 scope:local align:4
+@732 = .data:0x0005CFEC; // type:object size:0x5C scope:local align:4
+init_proc$957 = .data:0x0005D048; // type:object size:0x64 scope:local align:4
+process$962 = .data:0x0005D0AC; // type:object size:0x64 scope:local align:4
+...data.0 = .data:0x0005D110; // type:label scope:local
+Npc_Needlework_Profile = .data:0x0005D110; // type:object size:0x24 scope:global align:4
+ct_data$483 = .data:0x0005D134; // type:object size:0x1C scope:local align:4
+aNNW_client_prg = .data:0x0005D150; // type:object size:0xACC0 scope:global align:4
+aNNW_client_ldr = .data:0x00067E10; // type:object size:0x8D20 scope:global align:4
+aNNW_message_table = .data:0x00070B30; // type:object size:0x48 scope:global align:4
+aNNW_story_first_table = .data:0x00070B78; // type:object size:0x4 scope:global align:4
+aNNW_story_other_table = .data:0x00070B7C; // type:object size:0x4 scope:global align:4
+aNNW_string_table = .data:0x00070B80; // type:object size:0x10 scope:global align:4
+force_message_table$1363 = .data:0x00070B90; // type:object size:0x1C scope:local align:4
+proc$1450 = .data:0x00070BAC; // type:object size:0x134 scope:local align:4
+target_pos_table_x = .data:0x00070CE0; // type:object size:0x1C scope:global align:4
+target_pos_table_z = .data:0x00070CFC; // type:object size:0x1C scope:global align:4
+near_area_table = .data:0x00070D18; // type:object size:0x2D scope:global align:4
+area_table = .data:0x00070D48; // type:object size:0x64 scope:global align:4
+table_ux$1472 = .data:0x00070DAC; // type:object size:0x20 scope:local align:4
+table_uz$1473 = .data:0x00070DCC; // type:object size:0x20 scope:local align:4
+@1571 = .data:0x00070DEC; // type:object size:0x24 scope:local align:4
+@1625 = .data:0x00070E10; // type:object size:0x24 scope:local align:4
+meg_my_init_proc_table = .data:0x00070E34; // type:object size:0x14 scope:global align:4
+meg_my_proc_table = .data:0x00070E48; // type:object size:0x14 scope:global align:4
+dt_tbl = .data:0x00070E5C; // type:object size:0x4B scope:local align:4
+proc_table = .data:0x00070EA8; // type:object size:0x20 scope:local align:4
+init_table = .data:0x00070EC8; // type:object size:0x18 scope:local align:4
+talk_request_table$1860 = .data:0x00070EE0; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00070EF0; // type:label scope:local
+Npc_P_Sel_Profile = .data:0x00070EF0; // type:object size:0x24 scope:global align:4
+aNPS_sound_mode = .data:0x00070F14; // type:object size:0x3 scope:global align:4
+aNPS_voice_mode = .data:0x00070F18; // type:object size:0x3 scope:global align:4 data:byte
+ct_data$465 = .data:0x00070F1C; // type:object size:0x1C scope:local align:4
+door_data$509 = .data:0x00070F38; // type:object size:0x14 scope:local align:4
+think_proc$550 = .data:0x00070F4C; // type:object size:0x8 scope:local align:4
+sche_proc$566 = .data:0x00070F54; // type:object size:0x8 scope:local align:4
+sound_mode$573 = .data:0x00070F5C; // type:object size:0x3 scope:local align:4
+voice_mode$589 = .data:0x00070F60; // type:object size:0x3 scope:local align:4
+process$659 = .data:0x00070F64; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00070F80; // type:label scope:local
+Npc_P_Sel2_Profile = .data:0x00070F80; // type:object size:0x24 scope:global align:4
+aNPS2_sound_mode = .data:0x00070FA4; // type:object size:0x3 scope:global align:4
+aNPS2_voice_mode = .data:0x00070FA8; // type:object size:0x3 scope:global align:4
+ct_data$470 = .data:0x00070FAC; // type:object size:0x1C scope:local align:4
+base_msg_table$475 = .data:0x00070FC8; // type:object size:0x18 scope:local align:4
+base_msg_table2$476 = .data:0x00070FE0; // type:object size:0x18 scope:local align:4
+think_proc$520 = .data:0x00070FF8; // type:object size:0x8 scope:local align:4
+sche_proc$536 = .data:0x00071000; // type:object size:0x8 scope:local align:4
+sound_mode$641 = .data:0x00071008; // type:object size:0x3 scope:local align:4
+voice_mode$657 = .data:0x0007100C; // type:object size:0x3 scope:local align:4
+new_player_str$706 = .data:0x00071010; // type:object size:0x7 scope:local align:4 data:string
+demo2_data$811 = .data:0x00071018; // type:object size:0xC scope:local align:4
+home_data$812 = .data:0x00071024; // type:object size:0xC scope:local align:4
+station_data$813 = .data:0x00071030; // type:object size:0xC scope:local align:4
+data$814 = .data:0x0007103C; // type:object size:0x10 scope:local align:4
+homeX$815 = .data:0x0007104C; // type:object size:0x8 scope:local align:4
+homeZ$816 = .data:0x00071054; // type:object size:0x8 scope:local align:4
+drt$817 = .data:0x0007105C; // type:object size:0x4 scope:local align:4
+start_data_0$876 = .data:0x00071060; // type:object size:0x4 scope:local align:4
+start_data_1$877 = .data:0x00071064; // type:object size:0x4 scope:local align:4
+start_data_2$878 = .data:0x00071068; // type:object size:0x4 scope:local align:4
+start_data_3$879 = .data:0x0007106C; // type:object size:0x4 scope:local align:4
+start_data$880 = .data:0x00071070; // type:object size:0x10 scope:local align:4
+next_talk_idx$912 = .data:0x00071080; // type:object size:0x20 scope:local align:4
+msg_no$913 = .data:0x000710A0; // type:object size:0x20 scope:local align:4
+@997 = .data:0x000710C0; // type:object size:0x68 scope:local align:4
+next_talk_idx$1001 = .data:0x00071128; // type:object size:0xC scope:local align:4
+msg_no$1002 = .data:0x00071134; // type:object size:0xC scope:local align:4
+next_talk_idx$1030 = .data:0x00071140; // type:object size:0x14 scope:local align:4
+msg_no$1031 = .data:0x00071154; // type:object size:0x14 scope:local align:4
+@1082 = .data:0x00071168; // type:object size:0x68 scope:local align:4
+next_talk_idx$1122 = .data:0x000711D0; // type:object size:0x14 scope:local align:4
+msg_no$1123 = .data:0x000711E4; // type:object size:0x14 scope:local align:4
+@1181 = .data:0x000711F8; // type:object size:0x68 scope:local align:4
+init_proc$1242 = .data:0x00071260; // type:object size:0x74 scope:local align:4
+process$1247 = .data:0x000712D4; // type:object size:0x74 scope:local align:4
+...data.0 = .data:0x00071348; // type:label scope:local
+Npc_Police_Profile = .data:0x00071348; // type:object size:0x24 scope:global align:4
+ct_data$458 = .data:0x0007136C; // type:object size:0x1C scope:local align:4
+animeSeqNo$501 = .data:0x00071388; // type:object size:0x8 scope:local align:4
+morph_counter$502 = .data:0x00071390; // type:object size:0x8 scope:local align:4
+animeSeqNo$508 = .data:0x00071398; // type:object size:0xC scope:local align:4
+anm_loop$509 = .data:0x000713A4; // type:object size:0x3 scope:local align:4
+act_proc$552 = .data:0x000713A8; // type:object size:0xC scope:local align:4
+act_proc$557 = .data:0x000713B4; // type:object size:0xC scope:local align:4
+think_proc$601 = .data:0x000713C0; // type:object size:0x8 scope:local align:4
+sche_proc$617 = .data:0x000713C8; // type:object size:0x8 scope:local align:4
+msg_table$634 = .data:0x000713D0; // type:object size:0x20 scope:local align:4
+type$656 = .data:0x000713F0; // type:object size:0x8 scope:local align:4
+request$657 = .data:0x000713F8; // type:object size:0x8 scope:local align:4
+choume_str$687 = .data:0x00071400; // type:object size:0x7 scope:local align:4 data:string
+run_msg_no$700 = .data:0x00071408; // type:object size:0x18 scope:local align:4
+act_msg_no$701 = .data:0x00071420; // type:object size:0x18 scope:local align:4
+rsv_msg_no$702 = .data:0x00071438; // type:object size:0x18 scope:local align:4
+process$756 = .data:0x00071450; // type:object size:0xC scope:local align:4
+Npc_Police2_Profile = .data:0x00071460; // type:object size:0x24 scope:global align:4
+ct_data$456 = .data:0x00071484; // type:object size:0x1C scope:local align:4
+animeSeqNoTable$482 = .data:0x000714A0; // type:object size:0x24 scope:local align:4
+posX$626 = .data:0x000714C4; // type:object size:0x10 scope:local align:4
+posZ$627 = .data:0x000714D4; // type:object size:0x14 scope:local align:4
+dummy_pos$789 = .data:0x000714E8; // type:object size:0xC scope:local align:4 data:4byte
+init_proc$806 = .data:0x000714F4; // type:object size:0x24 scope:local align:4
+process$811 = .data:0x00071518; // type:object size:0x24 scope:local align:4
+Npc_Post_Girl_Profile = .data:0x00071540; // type:object size:0x24 scope:global align:4
+ct_data$470 = .data:0x00071564; // type:object size:0x1C scope:local align:4
+msg_no$533 = .data:0x00071580; // type:object size:0x8 scope:local align:4
+next_act_idx$534 = .data:0x00071588; // type:object size:0x8 scope:local align:4
+msg_no$667 = .data:0x00071590; // type:object size:0xC scope:local align:4
+next_act_idx$668 = .data:0x0007159C; // type:object size:0x8 scope:local align:4
+msg_no$706 = .data:0x000715A4; // type:object size:0x14 scope:local align:4
+next_act_idx$707 = .data:0x000715B8; // type:object size:0x14 scope:local align:4
+msg_no$779 = .data:0x000715CC; // type:object size:0xC scope:local align:4
+msg_no$804 = .data:0x000715D8; // type:object size:0x20 scope:local align:4
+init_proc$837 = .data:0x000715F8; // type:object size:0x78 scope:local align:4
+process$842 = .data:0x00071670; // type:object size:0x78 scope:local align:4
+msg_no$847 = .data:0x000716E8; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00071708; // type:label scope:local
+Npc_Post_Man_Profile = .data:0x00071708; // type:object size:0x24 scope:global align:4
+ct_data$463 = .data:0x0007172C; // type:object size:0x1C scope:local align:4
+start_Ypos$464 = .data:0x00071748; // type:object size:0x8 scope:local align:4
+start_action$465 = .data:0x00071750; // type:object size:0x2 scope:local align:4
+anime$491 = .data:0x00071754; // type:object size:0x70 scope:local align:4
+aPMAN_move_pos = .data:0x000717C4; // type:object size:0x54 scope:global align:4
+aPMAN_mailbox_pos = .data:0x00071818; // type:object size:0x30 scope:global align:4
+rnd_base$542 = .data:0x00071848; // type:object size:0x8 scope:local align:4
+msg_no_base$543 = .data:0x00071850; // type:object size:0x8 scope:local align:4
+move_idx$594 = .data:0x00071858; // type:object size:0x1C scope:local align:4
+landing_pos$621 = .data:0x00071874; // type:object size:0xC scope:local align:4
+next_act_idx$707 = .data:0x00071880; // type:object size:0x2 scope:local align:4 data:string
+exit_pos$725 = .data:0x00071884; // type:object size:0x18 scope:local align:4
+init_proc$798 = .data:0x0007189C; // type:object size:0x38 scope:local align:4
+talk_permit$803 = .data:0x000718D4; // type:object size:0xE scope:local align:4
+process$808 = .data:0x000718E4; // type:object size:0x38 scope:local align:4
+Npc_Rcn_Guide_Profile = .data:0x00071920; // type:object size:0x24 scope:global align:4
+ct_data$471 = .data:0x00071944; // type:object size:0x1C scope:local align:4
+choume_str$507 = .data:0x00071960; // type:object size:0x7 scope:local align:4 data:string
+talk_proc$550 = .data:0x00071968; // type:object size:0x18 scope:local align:4
+dt_tbl$555 = .data:0x00071980; // type:object size:0x60 scope:local align:4
+dt_tbl$569 = .data:0x000719E0; // type:object size:0xC scope:local align:4
+moveX$646 = .data:0x000719EC; // type:object size:0x8 scope:local align:4
+moveZ$647 = .data:0x000719F4; // type:object size:0x8 scope:local align:4
+moveX$742 = .data:0x000719FC; // type:object size:0x4 scope:local align:4
+moveZ$743 = .data:0x00071A00; // type:object size:0x4 scope:local align:4
+dt_tbl$757 = .data:0x00071A04; // type:object size:0x110 scope:local align:4
+think_proc$762 = .data:0x00071B14; // type:object size:0x8 scope:local align:4
+sche_proc$778 = .data:0x00071B1C; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00071B28; // type:label scope:local
+Npc_Rcn_Guide2_Profile = .data:0x00071B28; // type:object size:0x24 scope:global align:4
+ct_data$479 = .data:0x00071B4C; // type:object size:0x1C scope:local align:4
+choume_str$528 = .data:0x00071B68; // type:object size:0x7 scope:local align:4 data:string
+process$539 = .data:0x00071B70; // type:object size:0x2C scope:local align:4
+set_itemNo$544 = .data:0x00071B9C; // type:object size:0x16 scope:local align:4
+@585 = .data:0x00071BB4; // type:object size:0x2C scope:local align:4
+ng_list$611 = .data:0x00071BE0; // type:object size:0x4 scope:local align:4
+stepup_job_proc$646 = .data:0x00071BE4; // type:object size:0x2C scope:local align:4
+kind$653 = .data:0x00071C10; // type:object size:0x2C scope:local align:4
+job_start_msg_no$659 = .data:0x00071C3C; // type:object size:0x2C scope:local align:4
+job_start_refuse_msg_no$660 = .data:0x00071C68; // type:object size:0x2C scope:local align:4
+next_talk_idx$661 = .data:0x00071C94; // type:object size:0x8 scope:local align:4
+itemNo$689 = .data:0x00071C9C; // type:object size:0x16 scope:local align:4
+next_job_no$719 = .data:0x00071CB4; // type:object size:0x2C scope:local align:4
+proc$801 = .data:0x00071CE0; // type:object size:0x54 scope:local align:4
+dt_tbl$847 = .data:0x00071D34; // type:object size:0x28 scope:local align:4
+dt_tbl$864 = .data:0x00071D5C; // type:object size:0x160 scope:local align:4
+setup_job_cont_proc$963 = .data:0x00071EBC; // type:object size:0x2C scope:local align:4
+job_end_talk_idx$968 = .data:0x00071EE8; // type:object size:0x2C scope:local align:4
+job_start_talk_idx$976 = .data:0x00071F14; // type:object size:0x2C scope:local align:4
+job_start_refuse_talk_idx$977 = .data:0x00071F40; // type:object size:0x2C scope:local align:4
+dt_tbl$1034 = .data:0x00071F6C; // type:object size:0x70 scope:local align:4
+arg_data$1035 = .data:0x00071FDC; // type:object size:0xC scope:local align:4
+think_proc$1040 = .data:0x00071FE8; // type:object size:0x8 scope:local align:4
+sche_proc$1056 = .data:0x00071FF0; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00071FF8; // type:label scope:local
+Npc_Restart_Profile = .data:0x00071FF8; // type:object size:0x24 scope:global align:4
+aNRST_sound_mode = .data:0x0007201C; // type:object size:0x3 scope:global align:4
+aNRST_voice_mode = .data:0x00072020; // type:object size:0x3 scope:global align:4
+ct_data$466 = .data:0x00072024; // type:object size:0x1C scope:local align:4
+homeX$506 = .data:0x00072040; // type:object size:0x8 scope:local align:4
+homeZ$507 = .data:0x00072048; // type:object size:0x8 scope:local align:4
+drt$508 = .data:0x00072050; // type:object size:0x4 scope:local align:4
+aNRST_proc_table = .data:0x00072054; // type:object size:0x10 scope:global align:4
+think_proc$527 = .data:0x00072064; // type:object size:0x8 scope:local align:4
+sche_proc$543 = .data:0x0007206C; // type:object size:0x8 scope:local align:4
+msg_table$548 = .data:0x00072074; // type:object size:0x18 scope:local align:4
+msg_table2$549 = .data:0x0007208C; // type:object size:0x18 scope:local align:4
+msg_table3$550 = .data:0x000720A4; // type:object size:0x18 scope:local align:4
+@666 = .data:0x000720BC; // type:object size:0x68 scope:local align:4
+process$670 = .data:0x00072124; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00072148; // type:label scope:local
+Npc_Rtc_Profile = .data:0x00072148; // type:object size:0x24 scope:global align:4
+aNRTC_sound_mode = .data:0x0007216C; // type:object size:0x3 scope:global align:4
+aNRTC_voice_mode = .data:0x00072170; // type:object size:0x3 scope:global align:4
+ct_data$466 = .data:0x00072174; // type:object size:0x1C scope:local align:4
+door_data = .data:0x00072190; // type:object size:0x14 scope:global align:4
+aNRTC_proc_table = .data:0x000721A4; // type:object size:0x18 scope:global align:4
+think_proc$568 = .data:0x000721BC; // type:object size:0x8 scope:local align:4
+sche_proc$584 = .data:0x000721C4; // type:object size:0x8 scope:local align:4
+@640 = .data:0x000721CC; // type:object size:0x68 scope:local align:4
+process$685 = .data:0x00072234; // type:object size:0x2C scope:local align:4
+@703 = .data:0x00072260; // type:object size:0x28 scope:local align:4
+Npc_Sendo_Profile = .data:0x00072288; // type:object size:0x24 scope:global align:4
+ct_data$470 = .data:0x000722AC; // type:object size:0x1C scope:local align:4
+destiny_pact$544 = .data:0x000722C8; // type:object size:0x14 scope:local align:4
+sex_pact$545 = .data:0x000722DC; // type:object size:0x8 scope:local align:4
+dt_tbl$614 = .data:0x000722E4; // type:object size:0x154 scope:local align:4
+think_proc$619 = .data:0x00072438; // type:object size:0x8 scope:local align:4
+sche_proc$637 = .data:0x00072440; // type:object size:0x8 scope:local align:4
+msg_base_no$642 = .data:0x00072448; // type:object size:0x10 scope:local align:4
+next_talk_idx$713 = .data:0x00072458; // type:object size:0x2 scope:local align:4
+msg_no$714 = .data:0x0007245C; // type:object size:0x8 scope:local align:4
+next_talk_idx$771 = .data:0x00072464; // type:object size:0x2 scope:local align:4
+next_talk_idx$843 = .data:0x00072468; // type:object size:0x3 scope:local align:4
+msg_no$844 = .data:0x0007246C; // type:object size:0xC scope:local align:4
+next_talk_idx$861 = .data:0x00072478; // type:object size:0x2 scope:local align:4
+next_talk_idx$874 = .data:0x0007247C; // type:object size:0x2 scope:local align:4
+next_talk_idx$916 = .data:0x00072480; // type:object size:0x3 scope:local align:4
+msg_no$917 = .data:0x00072484; // type:object size:0xC scope:local align:4
+next_talk_idx$951 = .data:0x00072490; // type:object size:0x3 scope:local align:4
+msg_no$952 = .data:0x00072494; // type:object size:0xC scope:local align:4
+talk_proc$967 = .data:0x000724A0; // type:object size:0x70 scope:local align:4
+dt_tbl$972 = .data:0x00072510; // type:object size:0x38 scope:local align:4
+dt_tbl$981 = .data:0x00072548; // type:object size:0x38 scope:local align:4
+...data.0 = .data:0x00072580; // type:label scope:local
+Npc_Shasho_Profile = .data:0x00072580; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x000725A4; // type:object size:0x1C scope:local align:4
+start_pos$460 = .data:0x000725C0; // type:object size:0x18 scope:local align:4
+start_angl$461 = .data:0x000725D8; // type:object size:0x4 scope:local align:4
+action$462 = .data:0x000725DC; // type:object size:0x8 scope:local align:4
+seq_no$483 = .data:0x000725E4; // type:object size:0x28 scope:local align:4
+chk_pat$500 = .data:0x0007260C; // type:object size:0x8 scope:local align:4
+se_no$501 = .data:0x00072614; // type:object size:0x4 scope:local align:4
+front_door_pos$502 = .data:0x00072618; // type:object size:0xC scope:local align:4
+init_proc$615 = .data:0x00072624; // type:object size:0x28 scope:local align:4
+process$620 = .data:0x0007264C; // type:object size:0x28 scope:local align:4
+...data.0 = .data:0x00072678; // type:label scope:local
+Npc_Shop_Master_Profile = .data:0x00072678; // type:object size:0x24 scope:global align:4
+ct_data$461 = .data:0x0007269C; // type:object size:0x1C scope:local align:4
+next_zone$499 = .data:0x000726B8; // type:object size:0x10 scope:local align:4
+posX$516 = .data:0x000726C8; // type:object size:0x10 scope:local align:4
+posZ$517 = .data:0x000726D8; // type:object size:0x10 scope:local align:4
+anime$546 = .data:0x000726E8; // type:object size:0x230 scope:local align:4
+aNSC_item1_0_tanni_type = .data:0x00072918; // type:object size:0x100 scope:local align:4
+aNSC_item1_1_tanni_type = .data:0x00072A18; // type:object size:0x4 scope:local align:4
+aNSC_item1_2_tanni_type = .data:0x00072A1C; // type:object size:0x5C scope:local align:4
+aNSC_item1_3_tanni_type = .data:0x00072A78; // type:object size:0x28 scope:local align:4
+aNSC_item1_4_tanni_type = .data:0x00072AA0; // type:object size:0xFF scope:local align:4
+aNSC_item1_5_tanni_type = .data:0x00072BA0; // type:object size:0x31 scope:local align:4
+aNSC_item1_6_tanni_type = .data:0x00072BD4; // type:object size:0x43 scope:local align:4
+aNSC_item1_7_tanni_type = .data:0x00072C18; // type:object size:0x43 scope:local align:4
+aNSC_item1_8_tanni_type = .data:0x00072C5C; // type:object size:0x8 scope:local align:4
+aNSC_item1_9_tanni_type = .data:0x00072C64; // type:object size:0xB scope:local align:4
+aNSC_item1_A_tanni_type = .data:0x00072C70; // type:object size:0x37 scope:local align:4
+aNSC_item1_B_tanni_type = .data:0x00072CA8; // type:object size:0x10 scope:local align:4 data:string
+aNSC_item1_C_tanni_type = .data:0x00072CB8; // type:object size:0x60 scope:local align:4
+aNSC_item1_D_tanni_type = .data:0x00072D18; // type:object size:0x2D scope:local align:4
+aNSC_item1_E_tanni_type = .data:0x00072D48; // type:object size:0x2 scope:local align:4
+aNSC_item1_F_tanni_type = .data:0x00072D4C; // type:object size:0x4 scope:local align:4
+aNSC_item_tanni_type = .data:0x00072D50; // type:object size:0x40 scope:local align:4
+pcenter$576 = .data:0x00072D90; // type:object size:0x30 scope:local align:4
+peye$577 = .data:0x00072DC0; // type:object size:0x30 scope:local align:4
+hit_rate_magazine$715 = .data:0x00072DF0; // type:object size:0x14 scope:local align:4
+pc_check_password_proc$741 = .data:0x00072E04; // type:object size:0x18 scope:local align:4
+tani_string_num$771 = .data:0x00072E1C; // type:object size:0x28 scope:local align:4
+aNSC_exchange_itemNo = .data:0x00072E44; // type:object size:0x4 scope:local align:4
+rehouse_msg$1211 = .data:0x00072E48; // type:object size:0x10 scope:local align:4
+rehouse_loan$1212 = .data:0x00072E58; // type:object size:0x10 scope:local align:4
+msg_no$1428 = .data:0x00072E68; // type:object size:0x14 scope:local align:4
+next_act_idx$1429 = .data:0x00072E7C; // type:object size:0x14 scope:local align:4
+msg_no$1446 = .data:0x00072E90; // type:object size:0x24 scope:local align:4
+next_act_idx$1447 = .data:0x00072EB4; // type:object size:0x24 scope:local align:4
+msg_no_table$1502 = .data:0x00072ED8; // type:object size:0x20 scope:local align:4
+next_act_idx$1503 = .data:0x00072EF8; // type:object size:0x20 scope:local align:4
+msg_no$1531 = .data:0x00072F18; // type:object size:0x10 scope:local align:4
+next_act_idx$1532 = .data:0x00072F28; // type:object size:0x10 scope:local align:4
+next_act_idx$1583 = .data:0x00072F38; // type:object size:0x8 scope:local align:4
+msg_no$1608 = .data:0x00072F40; // type:object size:0xC scope:local align:4
+next_act_idx$1609 = .data:0x00072F4C; // type:object size:0xC scope:local align:4
+next_act_idx$1661 = .data:0x00072F58; // type:object size:0x2C scope:local align:4
+msg_no$1662 = .data:0x00072F84; // type:object size:0x2C scope:local align:4
+msg_no$1761 = .data:0x00072FB0; // type:object size:0x8 scope:local align:4
+next_act_idx$1762 = .data:0x00072FB8; // type:object size:0x8 scope:local align:4
+next_act_idx$1772 = .data:0x00072FC0; // type:object size:0xC scope:local align:4
+msg_no$1794 = .data:0x00072FCC; // type:object size:0x8 scope:local align:4
+next_act_idx$1795 = .data:0x00072FD4; // type:object size:0x8 scope:local align:4
+next_act_idx$1805 = .data:0x00072FDC; // type:object size:0xC scope:local align:4
+next_act_idx$1820 = .data:0x00072FE8; // type:object size:0x8 scope:local align:4
+msg_no$1841 = .data:0x00072FF0; // type:object size:0x28 scope:local align:4
+next_act_idx$1842 = .data:0x00073018; // type:object size:0x28 scope:local align:4
+next_act_idx$1850 = .data:0x00073040; // type:object size:0x8 scope:local align:4
+kabu_sum$2026 = .data:0x00073048; // type:object size:0x10 scope:local align:4
+init_proc$2160 = .data:0x00073058; // type:object size:0x118 scope:local align:4
+process$2165 = .data:0x00073170; // type:object size:0x118 scope:local align:4
+Npc_Shop_Mastersp_Profile = .data:0x00073288; // type:object size:0x24 scope:global align:4
+ct_data$473 = .data:0x000732AC; // type:object size:0x1C scope:local align:4
+base_table_x$505 = .data:0x000732C8; // type:object size:0x8 scope:local align:4
+base_table_z$506 = .data:0x000732D0; // type:object size:0x8 scope:local align:4
+root1$536 = .data:0x000732D8; // type:object size:0x1 scope:local align:4
+root2$537 = .data:0x000732DC; // type:object size:0x3 scope:local align:4
+root3$538 = .data:0x000732E0; // type:object size:0x3 scope:local align:4
+root4$539 = .data:0x000732E4; // type:object size:0x2 scope:local align:4
+root5$540 = .data:0x000732E8; // type:object size:0x2 scope:local align:4
+root6$541 = .data:0x000732EC; // type:object size:0x3 scope:local align:4
+root7$542 = .data:0x000732F0; // type:object size:0x2 scope:local align:4
+root8$543 = .data:0x000732F4; // type:object size:0x2 scope:local align:4
+root10$544 = .data:0x000732F8; // type:object size:0x3 scope:local align:4
+root_table$545 = .data:0x000732FC; // type:object size:0x28 scope:local align:4
+root_max$554 = .data:0x00073324; // type:object size:0x14 scope:local align:4
+proc$779 = .data:0x00073338; // type:object size:0x24 scope:local align:4
+dt_tbl$788 = .data:0x0007335C; // type:object size:0x84 scope:local align:4
+dt_tbl$804 = .data:0x000733E0; // type:object size:0x24 scope:local align:4
+dt_tbl$1025 = .data:0x00073404; // type:object size:0x190 scope:local align:4
+think_proc$1030 = .data:0x00073594; // type:object size:0x8 scope:local align:4
+sche_proc$1046 = .data:0x0007359C; // type:object size:0x8 scope:local align:4
+Npc_Sleep_Obaba_Profile = .data:0x000735A8; // type:object size:0x24 scope:global align:4
+ct_data$433 = .data:0x000735CC; // type:object size:0x1C scope:local align:4
+animeSeqNo$455 = .data:0x000735E8; // type:object size:0x8 scope:local align:4
+process$483 = .data:0x000735F0; // type:object size:0x8 scope:local align:4
+act_proc$502 = .data:0x000735F8; // type:object size:0xC scope:local align:4
+action$507 = .data:0x00073604; // type:object size:0x8 scope:local align:4
+think_proc$522 = .data:0x0007360C; // type:object size:0x8 scope:local align:4
+sche_proc$538 = .data:0x00073614; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00073620; // type:label scope:local
+Npc_Soncho_Profile = .data:0x00073620; // type:object size:0x24 scope:global align:4
+ct_data$479 = .data:0x00073644; // type:object size:0x1C scope:local align:4
+proc$511 = .data:0x00073660; // type:object size:0x4 scope:local align:4
+proc$539 = .data:0x00073664; // type:object size:0x4 scope:local align:4
+dt_tbl = .data:0x00073668; // type:object size:0x5 scope:local align:4
+proc_table = .data:0x00073670; // type:object size:0x4 scope:local align:4
+init_table = .data:0x00073674; // type:object size:0xC scope:local align:4
+talk_request_table$563 = .data:0x00073680; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00073690; // type:label scope:local
+Npc_Station_Master_Profile = .data:0x00073690; // type:object size:0x24 scope:global align:4
+ct_data$473 = .data:0x000736B4; // type:object size:0x1C scope:local align:4
+dt_tbl$514 = .data:0x000736D0; // type:object size:0x18 scope:local align:4
+dt_tbl$532 = .data:0x000736E8; // type:object size:0x20 scope:local align:4
+demo2_data$583 = .data:0x00073708; // type:object size:0xC scope:local align:4 data:2byte
+proc_table = .data:0x00073714; // type:object size:0x3C scope:local align:4
+enter_pos$770 = .data:0x00073750; // type:object size:0xC scope:local align:4 data:4byte
+dt_tbl = .data:0x0007375C; // type:object size:0x6E scope:local align:4
+init_table = .data:0x000737CC; // type:object size:0x30 scope:local align:4
+talk_request_table$821 = .data:0x000737FC; // type:object size:0xC scope:local align:4
+think_proc$826 = .data:0x00073808; // type:object size:0x8 scope:local align:4
+sche_proc$842 = .data:0x00073810; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00073818; // type:label scope:local
+Npc_Super_Master_Profile = .data:0x00073818; // type:object size:0x24 scope:global align:4
+ct_data$461 = .data:0x0007383C; // type:object size:0x1C scope:local align:4
+chk0$493 = .data:0x00073858; // type:object size:0x10 scope:local align:4
+chk1$494 = .data:0x00073868; // type:object size:0x10 scope:local align:4
+next_zone$539 = .data:0x00073878; // type:object size:0x2D9 scope:local align:4
+posX$556 = .data:0x00073B54; // type:object size:0x6C scope:local align:4
+posZ$557 = .data:0x00073BC0; // type:object size:0x6C scope:local align:4
+anime$587 = .data:0x00073C2C; // type:object size:0x230 scope:local align:4
+aNSC_item1_0_tanni_type = .data:0x00073E5C; // type:object size:0x100 scope:local align:4
+aNSC_item1_1_tanni_type = .data:0x00073F5C; // type:object size:0x4 scope:local align:4
+aNSC_item1_2_tanni_type = .data:0x00073F60; // type:object size:0x5C scope:local align:4
+aNSC_item1_3_tanni_type = .data:0x00073FBC; // type:object size:0x28 scope:local align:4
+aNSC_item1_4_tanni_type = .data:0x00073FE4; // type:object size:0xFF scope:local align:4
+aNSC_item1_5_tanni_type = .data:0x000740E4; // type:object size:0x31 scope:local align:4
+aNSC_item1_6_tanni_type = .data:0x00074118; // type:object size:0x43 scope:local align:4
+aNSC_item1_7_tanni_type = .data:0x0007415C; // type:object size:0x43 scope:local align:4
+aNSC_item1_8_tanni_type = .data:0x000741A0; // type:object size:0x8 scope:local align:4
+aNSC_item1_9_tanni_type = .data:0x000741A8; // type:object size:0xB scope:local align:4
+aNSC_item1_A_tanni_type = .data:0x000741B4; // type:object size:0x37 scope:local align:4
+aNSC_item1_B_tanni_type = .data:0x000741EC; // type:object size:0x10 scope:local align:4 data:string
+aNSC_item1_C_tanni_type = .data:0x000741FC; // type:object size:0x60 scope:local align:4
+aNSC_item1_D_tanni_type = .data:0x0007425C; // type:object size:0x2D scope:local align:4
+aNSC_item1_E_tanni_type = .data:0x0007428C; // type:object size:0x2 scope:local align:4
+aNSC_item1_F_tanni_type = .data:0x00074290; // type:object size:0x4 scope:local align:4
+aNSC_item_tanni_type = .data:0x00074294; // type:object size:0x40 scope:local align:4
+pcenter$617 = .data:0x000742D4; // type:object size:0x30 scope:local align:4
+peye$618 = .data:0x00074304; // type:object size:0x30 scope:local align:4
+hit_rate_magazine$756 = .data:0x00074334; // type:object size:0x14 scope:local align:4
+pc_check_password_proc$782 = .data:0x00074348; // type:object size:0x18 scope:local align:4
+tani_string_num$812 = .data:0x00074360; // type:object size:0x28 scope:local align:4
+aNSC_exchange_itemNo = .data:0x00074388; // type:object size:0x4 scope:local align:4
+rehouse_msg$1251 = .data:0x0007438C; // type:object size:0x10 scope:local align:4
+rehouse_loan$1252 = .data:0x0007439C; // type:object size:0x10 scope:local align:4
+msg_no$1468 = .data:0x000743AC; // type:object size:0x14 scope:local align:4
+next_act_idx$1469 = .data:0x000743C0; // type:object size:0x14 scope:local align:4
+msg_no$1486 = .data:0x000743D4; // type:object size:0x24 scope:local align:4
+next_act_idx$1487 = .data:0x000743F8; // type:object size:0x24 scope:local align:4
+msg_no_table$1542 = .data:0x0007441C; // type:object size:0x20 scope:local align:4
+next_act_idx$1543 = .data:0x0007443C; // type:object size:0x20 scope:local align:4
+msg_no$1571 = .data:0x0007445C; // type:object size:0x10 scope:local align:4
+next_act_idx$1572 = .data:0x0007446C; // type:object size:0x10 scope:local align:4
+next_act_idx$1623 = .data:0x0007447C; // type:object size:0x8 scope:local align:4
+msg_no$1648 = .data:0x00074484; // type:object size:0xC scope:local align:4
+next_act_idx$1649 = .data:0x00074490; // type:object size:0xC scope:local align:4
+next_act_idx$1701 = .data:0x0007449C; // type:object size:0x2C scope:local align:4
+msg_no$1702 = .data:0x000744C8; // type:object size:0x2C scope:local align:4
+msg_no$1801 = .data:0x000744F4; // type:object size:0x8 scope:local align:4
+next_act_idx$1802 = .data:0x000744FC; // type:object size:0x8 scope:local align:4
+next_act_idx$1812 = .data:0x00074504; // type:object size:0xC scope:local align:4
+msg_no$1834 = .data:0x00074510; // type:object size:0x8 scope:local align:4
+next_act_idx$1835 = .data:0x00074518; // type:object size:0x8 scope:local align:4
+next_act_idx$1845 = .data:0x00074520; // type:object size:0xC scope:local align:4
+next_act_idx$1860 = .data:0x0007452C; // type:object size:0x8 scope:local align:4
+msg_no$1881 = .data:0x00074534; // type:object size:0x28 scope:local align:4
+next_act_idx$1882 = .data:0x0007455C; // type:object size:0x28 scope:local align:4
+next_act_idx$1890 = .data:0x00074584; // type:object size:0x8 scope:local align:4
+kabu_sum$2066 = .data:0x0007458C; // type:object size:0x10 scope:local align:4
+init_proc$2200 = .data:0x0007459C; // type:object size:0x118 scope:local align:4
+process$2205 = .data:0x000746B4; // type:object size:0x118 scope:local align:4
+Npc_Totakeke_Profile = .data:0x000747D0; // type:object size:0x24 scope:global align:4
+ct_data$474 = .data:0x000747F4; // type:object size:0x1C scope:local align:4
+proc$626 = .data:0x00074810; // type:object size:0x1C scope:local align:4
+msg$633 = .data:0x0007482C; // type:object size:0x3 scope:local align:4
+msg$651 = .data:0x00074830; // type:object size:0x4 scope:local align:4
+proc_table = .data:0x00074834; // type:object size:0x1C scope:local align:4
+dt_tbl = .data:0x00074850; // type:object size:0x41 scope:local align:4
+talk_request_table$813 = .data:0x00074894; // type:object size:0xC scope:local align:4
+Present_Npc_Profile = .data:0x000748A0; // type:object size:0x24 scope:global align:4
+ct_data$468 = .data:0x000748C4; // type:object size:0x1C scope:local align:4
+talk_proc$546 = .data:0x000748E0; // type:object size:0xC scope:local align:4
+@578 = .data:0x000748EC; // type:object size:0x1C scope:local align:4
+moveX$616 = .data:0x00074908; // type:object size:0x8 scope:local align:4
+moveZ$617 = .data:0x00074910; // type:object size:0x8 scope:local align:4
+moveX$661 = .data:0x00074918; // type:object size:0x4 scope:local align:4
+moveZ$662 = .data:0x0007491C; // type:object size:0x4 scope:local align:4
+dt_tbl$675 = .data:0x00074920; // type:object size:0x40 scope:local align:4
+think_proc$680 = .data:0x00074960; // type:object size:0x8 scope:local align:4
+set_data$685 = .data:0x00074968; // type:object size:0x30 scope:local align:4
+sche_proc$702 = .data:0x00074998; // type:object size:0x8 scope:local align:4
+aTS0_leader_no = .data:0x000749A0; // type:object size:0x2 scope:global align:2 data:2byte
+aTS0_intro_startRatio = .data:0x000749A4; // type:object size:0xC scope:global align:4
+aTS0_taisou1_startRatio = .data:0x000749B0; // type:object size:0x14 scope:global align:4
+aTS0_taisou2_startRatio = .data:0x000749C4; // type:object size:0xC scope:global align:4
+aTS0_taisou3_startRatio = .data:0x000749D0; // type:object size:0x14 scope:global align:4
+aTS0_taisou4_startRatio = .data:0x000749E4; // type:object size:0xC scope:global align:4
+aTS0_taisou5_startRatio = .data:0x000749F0; // type:object size:0x14 scope:global align:4
+aTS0_taisou6_startRatio = .data:0x00074A04; // type:object size:0x14 scope:global align:4
+aTS0_taisou7_startRatio = .data:0x00074A18; // type:object size:0x14 scope:global align:4
+aTS0_taisou8_startRatio = .data:0x00074A2C; // type:object size:0x14 scope:global align:4
+aTS0_trailing_note_startRatio = .data:0x00074A40; // type:object size:0x8 scope:global align:4
+aTS0_startRatio = .data:0x00074A48; // type:object size:0x28 scope:global align:4
+aTS0_endRatio = .data:0x00074A70; // type:object size:0x28 scope:global align:4
+aTS0_morphRatio = .data:0x00074A98; // type:object size:0x28 scope:global align:4
+aTS0_ratioLength = .data:0x00074AC0; // type:object size:0x50 scope:global align:4
+Taisou_Npc0_Profile = .data:0x00074B10; // type:object size:0x24 scope:global align:4
+ct_data$465 = .data:0x00074B34; // type:object size:0x1C scope:local align:4
+event_type$480 = .data:0x00074B50; // type:object size:0x8 scope:local align:4
+animeSeqNo$499 = .data:0x00074B58; // type:object size:0x34 scope:local align:4
+act_proc$534 = .data:0x00074B8C; // type:object size:0xC scope:local align:4
+chk_failure_rate$575 = .data:0x00074B98; // type:object size:0x14 scope:local align:4
+think_proc$702 = .data:0x00074BAC; // type:object size:0x8 scope:local align:4
+def_angle$707 = .data:0x00074BB4; // type:object size:0x4 scope:local align:4
+sche_proc$721 = .data:0x00074BB8; // type:object size:0x8 scope:local align:4
+msg_base$726 = .data:0x00074BC0; // type:object size:0x30 scope:local align:4
+msg_base2$727 = .data:0x00074BF0; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00074BF8; // type:label scope:local
+Tamaire_Npc0_Profile = .data:0x00074BF8; // type:object size:0x24 scope:global align:4
+ct_data$472 = .data:0x00074C1C; // type:object size:0x1C scope:local align:4
+proc$507 = .data:0x00074C38; // type:object size:0x4 scope:local align:4
+base_msg_table$512 = .data:0x00074C3C; // type:object size:0x18 scope:local align:4
+dt_tbl = .data:0x00074C54; // type:object size:0x2D scope:local align:4
+proc_table = .data:0x00074C84; // type:object size:0x14 scope:local align:4
+init_table = .data:0x00074C98; // type:object size:0x14 scope:local align:4
+talk_request_table$616 = .data:0x00074CAC; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00074CB8; // type:label scope:local
+Tamaire_Npc1_Profile = .data:0x00074CB8; // type:object size:0x24 scope:global align:4
+ct_data$472 = .data:0x00074CDC; // type:object size:0x1C scope:local align:4
+base_msg_table$475 = .data:0x00074CF8; // type:object size:0x18 scope:local align:4
+table$507 = .data:0x00074D10; // type:object size:0x4 scope:local align:4 data:string
+dt_tbl$525 = .data:0x00074D14; // type:object size:0x12 scope:local align:4
+table$634 = .data:0x00074D28; // type:object size:0x3 scope:local align:4
+dt_tbl = .data:0x00074D2C; // type:object size:0x37 scope:local align:4
+proc_table = .data:0x00074D64; // type:object size:0x28 scope:local align:4
+init_table = .data:0x00074D8C; // type:object size:0x30 scope:local align:4
+talk_request_table$756 = .data:0x00074DBC; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00074DC8; // type:label scope:local
+Tokyoso_Npc0_Profile = .data:0x00074DC8; // type:object size:0x24 scope:global align:4
+ct_data$474 = .data:0x00074DEC; // type:object size:0x1C scope:local align:4
+base_msg_table$477 = .data:0x00074E08; // type:object size:0x18 scope:local align:4
+dt_tbl$524 = .data:0x00074E20; // type:object size:0x18 scope:local align:4
+dt_tbl = .data:0x00074E38; // type:object size:0x28 scope:local align:4
+proc_table = .data:0x00074E60; // type:object size:0x1C scope:local align:4
+init_table = .data:0x00074E7C; // type:object size:0x20 scope:local align:4
+talk_request_table$643 = .data:0x00074E9C; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00074EA8; // type:label scope:local
+Tokyoso_Npc1_Profile = .data:0x00074EA8; // type:object size:0x24 scope:global align:4
+ct_data$475 = .data:0x00074ECC; // type:object size:0x1C scope:local align:4
+base_msg_table$478 = .data:0x00074EE8; // type:object size:0x18 scope:local align:4
+dt_tbl = .data:0x00074F00; // type:object size:0x73 scope:local align:4
+proc_table = .data:0x00074F74; // type:object size:0x44 scope:local align:4
+talk_request_table$764 = .data:0x00074FB8; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00074FC8; // type:label scope:local
+Tukimi_Npc0_Profile = .data:0x00074FC8; // type:object size:0x24 scope:global align:4
+ct_data$458 = .data:0x00074FEC; // type:object size:0x1C scope:local align:4
+act_proc$498 = .data:0x00075008; // type:object size:0xC scope:local align:4
+think_proc$515 = .data:0x00075014; // type:object size:0x8 scope:local align:4
+def_angle$520 = .data:0x0007501C; // type:object size:0xE scope:local align:4
+def_posX$521 = .data:0x0007502C; // type:object size:0x1C scope:local align:4
+def_posZ$522 = .data:0x00075048; // type:object size:0x1C scope:local align:4
+sche_proc$539 = .data:0x00075064; // type:object size:0x8 scope:local align:4
+msg_base$544 = .data:0x0007506C; // type:object size:0x18 scope:local align:4
+msg_base2$545 = .data:0x00075084; // type:object size:0x18 scope:local align:4
+Tukimi_Npc1_Profile = .data:0x000750A0; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x000750C4; // type:object size:0x1C scope:local align:4
+animeSeqNo$479 = .data:0x000750E0; // type:object size:0x8 scope:local align:4
+act_proc$503 = .data:0x000750E8; // type:object size:0xC scope:local align:4
+think_proc$523 = .data:0x000750F4; // type:object size:0x8 scope:local align:4
+def_angle$528 = .data:0x000750FC; // type:object size:0x46 scope:local align:4
+sche_proc$548 = .data:0x00075144; // type:object size:0x8 scope:local align:4
+msg_base$553 = .data:0x0007514C; // type:object size:0x18 scope:local align:4
+msg_base2$554 = .data:0x00075164; // type:object size:0x18 scope:local align:4
+msg_base$570 = .data:0x0007517C; // type:object size:0x18 scope:local align:4
+msg_base2$571 = .data:0x00075194; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x000751B0; // type:label scope:local
+Tunahiki_Npc0_Profile = .data:0x000751B0; // type:object size:0x24 scope:global align:4
+ct_data$474 = .data:0x000751D4; // type:object size:0x1C scope:local align:4
+base_msg_table$477 = .data:0x000751F0; // type:object size:0x18 scope:local align:4
+dt_tbl$524 = .data:0x00075208; // type:object size:0x8 scope:local align:4
+dt_tbl = .data:0x00075210; // type:object size:0xA scope:local align:4
+proc_table = .data:0x0007521C; // type:object size:0x8 scope:local align:4
+init_table = .data:0x00075224; // type:object size:0x8 scope:local align:4
+talk_request_table$574 = .data:0x0007522C; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00075238; // type:label scope:local
+Tunahiki_Npc1_Profile = .data:0x00075238; // type:object size:0x24 scope:global align:4
+ct_data$474 = .data:0x0007525C; // type:object size:0x1C scope:local align:4
+base_msg_table$477 = .data:0x00075278; // type:object size:0x18 scope:local align:4
+dt_tbl$506 = .data:0x00075290; // type:object size:0x18 scope:local align:4
+dt_tbl = .data:0x000752A8; // type:object size:0x14 scope:local align:4
+proc_table = .data:0x000752BC; // type:object size:0xC scope:local align:4
+init_table = .data:0x000752C8; // type:object size:0x14 scope:local align:4
+talk_request_table$652 = .data:0x000752DC; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x000752E8; // type:label scope:local
+Turi_Npc0_Profile = .data:0x000752E8; // type:object size:0x24 scope:global align:4
+ct_data$459 = .data:0x0007530C; // type:object size:0x1C scope:local align:4
+animeSeqNo$488 = .data:0x00075328; // type:object size:0x4 scope:local align:4
+frame_spd$489 = .data:0x0007532C; // type:object size:0x18 scope:local align:4
+process$519 = .data:0x00075344; // type:object size:0x4 scope:local align:4
+anm_loop_base$520 = .data:0x00075348; // type:object size:0x4 scope:local align:4
+anm_loop_rnd$521 = .data:0x0007534C; // type:object size:0x4 scope:local align:4
+act_proc$540 = .data:0x00075350; // type:object size:0xC scope:local align:4
+think_proc$557 = .data:0x0007535C; // type:object size:0x8 scope:local align:4
+def_angle$562 = .data:0x00075364; // type:object size:0x46 scope:local align:4
+sche_proc$577 = .data:0x000753AC; // type:object size:0x8 scope:local align:4
+msg_base$582 = .data:0x000753B4; // type:object size:0x18 scope:local align:4
+Groundhog_Npc0_Profile = .data:0x000753D0; // type:object size:0x24 scope:global align:4
+ct_data$462 = .data:0x000753F4; // type:object size:0x1C scope:local align:4
+animeNo$488 = .data:0x00075410; // type:object size:0x8 scope:local align:4
+process$515 = .data:0x00075418; // type:object size:0x8 scope:local align:4
+act_proc$536 = .data:0x00075420; // type:object size:0xC scope:local align:4
+think_proc$574 = .data:0x0007542C; // type:object size:0x8 scope:local align:4
+def_angle$579 = .data:0x00075434; // type:object size:0x8 scope:local align:4
+def_pos$580 = .data:0x0007543C; // type:object size:0x20 scope:local align:4 data:float
+sche_proc$604 = .data:0x0007545C; // type:object size:0x8 scope:local align:4
+msg_base$609 = .data:0x00075464; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x00075480; // type:label scope:local
+Harvest_Npc0_Profile = .data:0x00075480; // type:object size:0x24 scope:global align:4
+first_angle$461 = .data:0x000754A4; // type:object size:0x8 scope:local align:4
+ct_data$466 = .data:0x000754AC; // type:object size:0x1C scope:local align:4
+animeSeqNo$486 = .data:0x000754C8; // type:object size:0x10 scope:local align:4
+process$539 = .data:0x000754D8; // type:object size:0x10 scope:local align:4
+anm_loop_base$540 = .data:0x000754E8; // type:object size:0x10 scope:local align:4
+anm_loop_rnd$541 = .data:0x000754F8; // type:object size:0x10 scope:local align:4
+clap_se_no$542 = .data:0x00075508; // type:object size:0x4 scope:local align:4 data:string
+act_proc$564 = .data:0x0007550C; // type:object size:0xC scope:local align:4
+action$569 = .data:0x00075518; // type:object size:0x10 scope:local align:4
+think_proc$590 = .data:0x00075528; // type:object size:0x8 scope:local align:4
+def_angle$595 = .data:0x00075530; // type:object size:0x8 scope:local align:4
+sche_proc$607 = .data:0x00075538; // type:object size:0x8 scope:local align:4
+msg_base$612 = .data:0x00075540; // type:object size:0x18 scope:local align:4
+Harvest_Npc1_Profile = .data:0x00075558; // type:object size:0x24 scope:global align:4
+ct_data$457 = .data:0x0007557C; // type:object size:0x1C scope:local align:4
+animeSeqNo$478 = .data:0x00075598; // type:object size:0x8 scope:local align:4
+process$510 = .data:0x000755A0; // type:object size:0x8 scope:local align:4
+act_proc$527 = .data:0x000755A8; // type:object size:0xC scope:local align:4
+think_proc$549 = .data:0x000755B4; // type:object size:0x8 scope:local align:4
+sche_proc$565 = .data:0x000755BC; // type:object size:0x8 scope:local align:4
+msg_base$570 = .data:0x000755C4; // type:object size:0x18 scope:local align:4
+Npc_Hem_Profile = .data:0x000755E0; // type:object size:0x24 scope:global align:4
+ct_data$468 = .data:0x00075604; // type:object size:0x1C scope:local align:4
+process$504 = .data:0x00075620; // type:object size:0x8 scope:local align:4
+act_proc$526 = .data:0x00075628; // type:object size:0xC scope:local align:4
+think_proc$541 = .data:0x00075634; // type:object size:0x8 scope:local align:4
+sche_proc$558 = .data:0x0007563C; // type:object size:0x8 scope:local align:4
+process$575 = .data:0x00075644; // type:object size:0xC scope:local align:4
+Ev_Majin_Profile = .data:0x00075650; // type:object size:0x24 scope:global align:4
+ct_data$438 = .data:0x00075674; // type:object size:0x1C scope:local align:4
+animeSeqNo$461 = .data:0x00075690; // type:object size:0x6 scope:local align:4
+act_proc$478 = .data:0x00075698; // type:object size:0xC scope:local align:4
+dt_tbl$511 = .data:0x000756A4; // type:object size:0x18 scope:local align:4
+think_proc$516 = .data:0x000756BC; // type:object size:0x8 scope:local align:4
+sche_proc$533 = .data:0x000756C4; // type:object size:0x8 scope:local align:4
+Ev_Turkey_Profile = .data:0x000756D0; // type:object size:0x24 scope:global align:4
+process$510 = .data:0x000756F4; // type:object size:0x8 scope:local align:4
+animeSeqNo$511 = .data:0x000756FC; // type:object size:0x8 scope:local align:4
+act_proc$537 = .data:0x00075704; // type:object size:0xC scope:local align:4
+think_proc$605 = .data:0x00075710; // type:object size:0x8 scope:local align:4
+sche_proc$621 = .data:0x00075718; // type:object size:0x8 scope:local align:4
+ct_data$642 = .data:0x00075720; // type:object size:0x1C scope:local align:4
+init_proc$659 = .data:0x0007573C; // type:object size:0x20 scope:local align:4
+process$715 = .data:0x0007575C; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00075780; // type:label scope:local
+Insect_Profile = .data:0x00075780; // type:object size:0x24 scope:global align:4
+aINS_abura_dl = .data:0x000757A4; // type:object size:0x10 scope:global align:4
+aINS_akiakane_dl = .data:0x000757B4; // type:object size:0x10 scope:global align:4
+aINS_danna_dl = .data:0x000757C4; // type:object size:0x10 scope:global align:4
+aINS_genji_dl = .data:0x000757D4; // type:object size:0x10 scope:global align:4
+aINS_ginyanma_dl = .data:0x000757E4; // type:object size:0x10 scope:global align:4
+aINS_higurashi_dl = .data:0x000757F4; // type:object size:0x10 scope:global align:4
+aINS_hirata_dl = .data:0x00075804; // type:object size:0x10 scope:global align:4
+aINS_kabuto_dl = .data:0x00075814; // type:object size:0x10 scope:global align:4
+aINS_kamakiri_dl = .data:0x00075824; // type:object size:0x10 scope:global align:4
+aINS_kanabun_dl = .data:0x00075834; // type:object size:0x10 scope:global align:4
+aINS_kiageha_dl = .data:0x00075844; // type:object size:0x10 scope:global align:4
+aINS_kirigirisu_dl = .data:0x00075854; // type:object size:0x10 scope:global align:4
+aINS_koorogi_dl = .data:0x00075864; // type:object size:0x10 scope:global align:4
+aINS_kuma_dl = .data:0x00075874; // type:object size:0x10 scope:global align:4
+aINS_matumushi_dl = .data:0x00075884; // type:object size:0x10 scope:global align:4
+aINS_minmin_dl = .data:0x00075894; // type:object size:0x10 scope:global align:4
+aINS_monki_dl = .data:0x000758A4; // type:object size:0x10 scope:global align:4
+aINS_monshiro_dl = .data:0x000758B4; // type:object size:0x10 scope:global align:4
+aINS_nanahoshi_dl = .data:0x000758C4; // type:object size:0x10 scope:global align:4
+aINS_ohmurasaki_dl = .data:0x000758D4; // type:object size:0x10 scope:global align:4
+aINS_oniyanma_dl = .data:0x000758E4; // type:object size:0x10 scope:global align:4
+aINS_shiokara_dl = .data:0x000758F4; // type:object size:0x10 scope:global align:4
+aINS_suzumushi_dl = .data:0x00075904; // type:object size:0x10 scope:global align:4
+aINS_syouryou_dl = .data:0x00075914; // type:object size:0x10 scope:global align:4
+aINS_tamamushi_dl = .data:0x00075924; // type:object size:0x10 scope:global align:4
+aINS_gomadara_dl = .data:0x00075934; // type:object size:0x10 scope:global align:4
+aINS_tentou_dl = .data:0x00075944; // type:object size:0x10 scope:global align:4
+aINS_tonosama_dl = .data:0x00075954; // type:object size:0x10 scope:global align:4
+aINS_tukutuku_dl = .data:0x00075964; // type:object size:0x10 scope:global align:4
+aINS_nokogiri_dl = .data:0x00075974; // type:object size:0x10 scope:global align:4
+aINS_miyama_dl = .data:0x00075984; // type:object size:0x10 scope:global align:4
+aINS_okuwa_dl = .data:0x00075994; // type:object size:0x10 scope:global align:4
+aINS_amenbo_dl = .data:0x000759A4; // type:object size:0x10 scope:global align:4
+aINS_ari_dl = .data:0x000759B4; // type:object size:0x10 scope:global align:4
+aINS_dango_dl = .data:0x000759C4; // type:object size:0x10 scope:global align:4
+aINS_ka_dl = .data:0x000759D4; // type:object size:0x10 scope:global align:4
+aINS_kera_dl = .data:0x000759E4; // type:object size:0x8 scope:global align:4
+aINS_kumo_dl = .data:0x000759EC; // type:object size:0x10 scope:global align:4
+aINS_maimai_dl = .data:0x000759FC; // type:object size:0x10 scope:global align:4
+aINS_mino_dl = .data:0x00075A0C; // type:object size:0x18 scope:global align:4
+aINS_hitodama_dl = .data:0x00075A24; // type:object size:0x10 scope:global align:4
+aINS_displayList = .data:0x00075A34; // type:object size:0xA4 scope:global align:4
+aINS_program_dlftbl = .data:0x00075AD8; // type:object size:0x38 scope:global align:4
+aINS_program_type = .data:0x00075B10; // type:object size:0xA4 scope:global align:4
+Dummy_Profile$594 = .data:0x00075BB4; // type:object size:0x24 scope:local align:4
+catch_ME_data = .data:0x00075BD8; // type:object size:0xA4 scope:global align:4
+calc_table$685 = .data:0x00075C7C; // type:object size:0x14 scope:local align:4
+@916 = .data:0x00075C90; // type:object size:0x70 scope:local align:4
+@418 = .data:0x00075D00; // type:object size:0x10 scope:local align:4 data:string
+init_proc$487 = .data:0x00075D10; // type:object size:0x10 scope:local align:4
+act_proc$488 = .data:0x00075D20; // type:object size:0x10 scope:local align:4
+range$599 = .data:0x00075D30; // type:object size:0x40 scope:local align:4
+batta_sound_data$629 = .data:0x00075D70; // type:object size:0x4 scope:local align:4
+@729 = .data:0x00075D74; // type:object size:0xF scope:local align:4 data:string
+init_proc$733 = .data:0x00075D84; // type:object size:0x18 scope:local align:4
+act_proc$734 = .data:0x00075D9C; // type:object size:0x18 scope:local align:4
+@601 = .data:0x00075DB8; // type:object size:0xF scope:local align:4 data:string
+init_proc$656 = .data:0x00075DC8; // type:object size:0x20 scope:local align:4
+act_proc$657 = .data:0x00075DE8; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00075E08; // type:label scope:local
+@445 = .data:0x00075E08; // type:object size:0xE scope:local align:4 data:string
+add_table$452 = .data:0x00075E18; // type:object size:0xC scope:local align:4
+add_table2$453 = .data:0x00075E24; // type:object size:0xC scope:local align:4
+ptX_table$498 = .data:0x00075E30; // type:object size:0x10 scope:local align:4
+ptZ_table$499 = .data:0x00075E40; // type:object size:0x10 scope:local align:4
+chkX_table$500 = .data:0x00075E50; // type:object size:0x10 scope:local align:4
+chkZ_table$501 = .data:0x00075E60; // type:object size:0x10 scope:local align:4
+add_angl$530 = .data:0x00075E70; // type:object size:0x4 scope:local align:4
+rest_wait_data$700 = .data:0x00075E74; // type:object size:0x24 scope:local align:4
+init_proc$784 = .data:0x00075E98; // type:object size:0x18 scope:local align:4
+act_proc$785 = .data:0x00075EB0; // type:object size:0x18 scope:local align:4
+init_posY$386 = .data:0x00075EC8; // type:object size:0x8 scope:local align:4
+init_posZ$387 = .data:0x00075ED0; // type:object size:0x8 scope:local align:4
+ref_angl$523 = .data:0x00075ED8; // type:object size:0x40 scope:local align:4
+base_angl$582 = .data:0x00075F18; // type:object size:0x8 scope:local align:4
+init_proc$624 = .data:0x00075F20; // type:object size:0x20 scope:local align:4
+act_proc$625 = .data:0x00075F40; // type:object size:0x20 scope:local align:4
+@449 = .data:0x00075F60; // type:object size:0x12 scope:local align:4 data:string
+angl_add$494 = .data:0x00075F74; // type:object size:0x10 scope:local align:4
+move_tim$495 = .data:0x00075F84; // type:object size:0x10 scope:local align:4
+init_proc$597 = .data:0x00075F94; // type:object size:0xC scope:local align:4
+act_proc$598 = .data:0x00075FA0; // type:object size:0xC scope:local align:4
+hotaru_birth_check_data$429 = .data:0x00075FB0; // type:object size:0x6C scope:local align:4 data:float
+aIHT_anim_data$479 = .data:0x0007601C; // type:object size:0x18 scope:local align:4
+init_proc$660 = .data:0x00076034; // type:object size:0xC scope:local align:4
+act_proc$661 = .data:0x00076040; // type:object size:0xC scope:local align:4
+init_proc$575 = .data:0x00076050; // type:object size:0x18 scope:local align:4
+act_proc$576 = .data:0x00076068; // type:object size:0x18 scope:local align:4
+init_posY$384 = .data:0x00076080; // type:object size:0x8 scope:local align:4
+init_posZ$385 = .data:0x00076088; // type:object size:0x8 scope:local align:4
+@410 = .data:0x00076090; // type:object size:0x34 scope:local align:4
+angle_table$492 = .data:0x000760C4; // type:object size:0x4 scope:local align:4
+init_proc$526 = .data:0x000760C8; // type:object size:0xC scope:local align:4
+act_proc$527 = .data:0x000760D4; // type:object size:0xC scope:local align:4
+target_table$450 = .data:0x000760E0; // type:object size:0x8 scope:local align:4
+drt_table$451 = .data:0x000760E8; // type:object size:0x8 scope:local align:4
+@575 = .data:0x000760F0; // type:object size:0xE scope:local align:4 data:string
+init_proc$634 = .data:0x00076100; // type:object size:0x1C scope:local align:4
+act_proc$635 = .data:0x0007611C; // type:object size:0x1C scope:local align:4
+move_range_table$561 = .data:0x00076138; // type:object size:0x8 scope:local align:4
+scaleX_table$599 = .data:0x00076140; // type:object size:0x1C scope:local align:4
+scaleY_table$600 = .data:0x0007615C; // type:object size:0x1C scope:local align:4
+@644 = .data:0x00076178; // type:object size:0xE scope:local align:4 data:string
+init_proc$731 = .data:0x00076188; // type:object size:0x28 scope:local align:4
+act_proc$732 = .data:0x000761B0; // type:object size:0x28 scope:local align:4
+init_posY$384 = .data:0x000761D8; // type:object size:0x8 scope:local align:4
+init_posZ$385 = .data:0x000761E0; // type:object size:0x8 scope:local align:4
+semi_sound_data$493 = .data:0x000761E8; // type:object size:0x4 scope:local align:4
+base_angl$515 = .data:0x000761EC; // type:object size:0x8 scope:local align:4
+init_proc$539 = .data:0x000761F4; // type:object size:0xC scope:local align:4
+act_proc$540 = .data:0x00076200; // type:object size:0xC scope:local align:4
+ref_angl$511 = .data:0x00076210; // type:object size:0x40 scope:local align:4
+init_proc$597 = .data:0x00076250; // type:object size:0x18 scope:local align:4
+act_proc$598 = .data:0x00076268; // type:object size:0x18 scope:local align:4
+angl_add$761 = .data:0x00076280; // type:object size:0x8 scope:local align:4
+init_proc$803 = .data:0x00076288; // type:object size:0x28 scope:local align:4
+act_proc$804 = .data:0x000762B0; // type:object size:0x28 scope:local align:4
+...data.0 = .data:0x000762D8; // type:label scope:local
+Gyoei_Profile = .data:0x000762D8; // type:object size:0x24 scope:global align:4 data:4byte
+aGYO_funa_dl = .data:0x000762FC; // type:object size:0xC scope:local align:4
+aGYO_hera_dl = .data:0x00076308; // type:object size:0xC scope:local align:4
+aGYO_koi_dl = .data:0x00076314; // type:object size:0xC scope:local align:4
+aGYO_nisiki_dl = .data:0x00076320; // type:object size:0xC scope:local align:4
+aGYO_namazu_dl = .data:0x0007632C; // type:object size:0xC scope:local align:4
+aGYO_bass_s_dl = .data:0x00076338; // type:object size:0xC scope:local align:4
+aGYO_bass_m_dl = .data:0x00076344; // type:object size:0xC scope:local align:4
+aGYO_bass_l_dl = .data:0x00076350; // type:object size:0xC scope:local align:4
+aGYO_blue_gill_dl = .data:0x0007635C; // type:object size:0xC scope:local align:4
+aGYO_oonamazu_dl = .data:0x00076368; // type:object size:0xC scope:local align:4
+aGYO_raigyo_dl = .data:0x00076374; // type:object size:0xC scope:local align:4
+aGYO_nigoi_dl = .data:0x00076380; // type:object size:0xC scope:local align:4
+aGYO_ugui_dl = .data:0x0007638C; // type:object size:0xC scope:local align:4
+aGYO_oikawa_dl = .data:0x00076398; // type:object size:0xC scope:local align:4
+aGYO_tanago_dl = .data:0x000763A4; // type:object size:0xC scope:local align:4
+aGYO_dojyo_dl = .data:0x000763B0; // type:object size:0xC scope:local align:4
+aGYO_wakasagi_dl = .data:0x000763BC; // type:object size:0xC scope:local align:4
+aGYO_ayu_dl = .data:0x000763C8; // type:object size:0xC scope:local align:4
+aGYO_yamame_dl = .data:0x000763D4; // type:object size:0xC scope:local align:4
+aGYO_iwana_dl = .data:0x000763E0; // type:object size:0xC scope:local align:4
+aGYO_niji_dl = .data:0x000763EC; // type:object size:0xC scope:local align:4
+aGYO_ito_dl = .data:0x000763F8; // type:object size:0xC scope:local align:4
+aGYO_sake_dl = .data:0x00076404; // type:object size:0xC scope:local align:4
+aGYO_kingyo_dl = .data:0x00076410; // type:object size:0xC scope:local align:4
+aGYO_pirania_dl = .data:0x0007641C; // type:object size:0xC scope:local align:4
+aGYO_aroana_dl = .data:0x00076428; // type:object size:0xC scope:local align:4
+aGYO_unagi_dl = .data:0x00076434; // type:object size:0xC scope:local align:4
+aGYO_donko_dl = .data:0x00076440; // type:object size:0xC scope:local align:4
+aGYO_angel_dl = .data:0x0007644C; // type:object size:0xC scope:local align:4
+aGYO_gupi_dl = .data:0x00076458; // type:object size:0xC scope:local align:4
+aGYO_demekin_dl = .data:0x00076464; // type:object size:0xC scope:local align:4
+aGYO_kaseki_dl = .data:0x00076470; // type:object size:0xC scope:local align:4
+aGYO_zarigani_dl = .data:0x0007647C; // type:object size:0xC scope:local align:4
+aGYO_kaeru_dl = .data:0x00076488; // type:object size:0xC scope:local align:4
+aGYO_medaka_dl = .data:0x00076494; // type:object size:0xC scope:local align:4
+aGYO_kurage_dl = .data:0x000764A0; // type:object size:0xC scope:local align:4
+aGYO_suzuki_dl = .data:0x000764AC; // type:object size:0xC scope:local align:4
+aGYO_tai_dl = .data:0x000764B8; // type:object size:0xC scope:local align:4
+aGYO_ishidai_dl = .data:0x000764C4; // type:object size:0xC scope:local align:4
+aGYO_piraluku_dl = .data:0x000764D0; // type:object size:0xC scope:local align:4
+aGYO_akikan_dl = .data:0x000764DC; // type:object size:0xC scope:local align:4
+aGYO_nagagutu_dl = .data:0x000764E8; // type:object size:0xC scope:local align:4
+aGYO_taiya_dl = .data:0x000764F4; // type:object size:0xC scope:local align:4
+aGYO_displayList = .data:0x00076500; // type:object size:0xB4 scope:local align:4
+aGYO_program_dlftbl = .data:0x000765B4; // type:object size:0x8 scope:global align:4 data:4byte
+Dummy_Profile$491 = .data:0x000765BC; // type:object size:0x24 scope:local align:4
+@516 = .data:0x000765E0; // type:object size:0x38 scope:local align:4
+dec_step$612 = .data:0x00076618; // type:object size:0x20 scope:local align:4
+aGYO_texture_table = .data:0x00076638; // type:object size:0x10 scope:local align:4
+aGYO_2tile_texture_idx = .data:0x00076648; // type:object size:0x28 scope:local align:4
+aGYO_prim_f = .data:0x00076670; // type:object size:0x14 scope:local align:4
+aGYO_anime_ptn = .data:0x00076684; // type:object size:0xB4 scope:global align:4
+aGYO_frame_ptn1$672 = .data:0x00076738; // type:object size:0x20 scope:local align:4
+aGYO_frame_ptn2$673 = .data:0x00076758; // type:object size:0x40 scope:local align:4
+aGYO_hosei_y$690 = .data:0x00076798; // type:object size:0xB4 scope:local align:4
+offset0$734 = .data:0x0007684C; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00076858; // type:label scope:local
+gyoei_type = .data:0x00076858; // type:object size:0x168 scope:local align:4
+aGTT_speed = .data:0x000769C0; // type:object size:0x20 scope:global align:4
+aGTT_back_speed = .data:0x000769E0; // type:object size:0x20 scope:global align:4
+aGTT_touch_count = .data:0x00076A00; // type:object size:0x10 scope:global align:4
+aGTT_touch_distance = .data:0x00076A10; // type:object size:0x20 scope:global align:4
+aGYO_shadow_scale = .data:0x00076A30; // type:object size:0x20 scope:local align:4
+aGYO_search_area = .data:0x00076A50; // type:object size:0x28 scope:global align:4
+aGYO_search_angle = .data:0x00076A78; // type:object size:0x28 scope:global align:4
+aGYO_bite_time = .data:0x00076AA0; // type:object size:0x28 scope:global align:4
+rr$475 = .data:0x00076AC8; // type:object size:0x20 scope:local align:4
+@492 = .data:0x00076AE8; // type:object size:0xE scope:local align:4 data:string
+hosei$548 = .data:0x00076AF8; // type:object size:0x20 scope:local align:4
+angl_add_table$581 = .data:0x00076B18; // type:object size:0x4 scope:local align:4
+gomi$776 = .data:0x00076B1C; // type:object size:0x20 scope:local align:4
+eff_arg$811 = .data:0x00076B3C; // type:object size:0x10 scope:local align:4
+rr$812 = .data:0x00076B4C; // type:object size:0x20 scope:local align:4
+init_proc$956 = .data:0x00076B6C; // type:object size:0x1C scope:local align:4
+act_proc$957 = .data:0x00076B88; // type:object size:0x1C scope:local align:4
+...data.0 = .data:0x00076BA8; // type:label scope:local
+gyoei_type = .data:0x00076BA8; // type:object size:0x168 scope:local align:4
+aGKK_speed = .data:0x00076D10; // type:object size:0x20 scope:global align:4
+aGKK_back_speed = .data:0x00076D30; // type:object size:0x20 scope:global align:4
+aGKK_touch_count = .data:0x00076D50; // type:object size:0x10 scope:global align:4
+aGKK_touch_distance = .data:0x00076D60; // type:object size:0x20 scope:global align:4
+aGKK_shadow_scale = .data:0x00076D80; // type:object size:0x20 scope:global align:4
+aGKK_search_area = .data:0x00076DA0; // type:object size:0x28 scope:global align:4
+aGKK_search_angle = .data:0x00076DC8; // type:object size:0x28 scope:global align:4
+aGKK_bite_time = .data:0x00076DF0; // type:object size:0x28 scope:global align:4
+rr$483 = .data:0x00076E18; // type:object size:0x20 scope:local align:4
+@500 = .data:0x00076E38; // type:object size:0x10 scope:local align:4 data:string
+hosei$546 = .data:0x00076E48; // type:object size:0x20 scope:local align:4
+chkX$630 = .data:0x00076E68; // type:object size:0x10 scope:local align:4
+chkZ$631 = .data:0x00076E78; // type:object size:0x10 scope:local align:4
+swim_action$737 = .data:0x00076E88; // type:object size:0xC scope:local align:4
+gomi$768 = .data:0x00076E94; // type:object size:0x20 scope:local align:4
+eff_arg$802 = .data:0x00076EB4; // type:object size:0x10 scope:local align:4
+rr$803 = .data:0x00076EC4; // type:object size:0x20 scope:local align:4
+init_proc$944 = .data:0x00076EE4; // type:object size:0x2C scope:local align:4
+act_proc$945 = .data:0x00076F10; // type:object size:0x2C scope:local align:4
+...data.0 = .data:0x00076F40; // type:label scope:local
+Boat_Profile = .data:0x00076F40; // type:object size:0x24 scope:global align:4
+aBT_chk_point = .data:0x00076F64; // type:object size:0x60 scope:global align:4
+aBT_last_point_idx = .data:0x00076FC4; // type:object size:0x8 scope:global align:4
+aBT_init_angleY = .data:0x00076FCC; // type:object size:0x4 scope:global align:4
+@448 = .data:0x00076FD0; // type:object size:0xA scope:local align:4 data:string
+chk_point_idx$790 = .data:0x00076FDC; // type:object size:0x8 scope:local align:4
+init_proc$819 = .data:0x00076FE4; // type:object size:0x3C scope:local align:4
+process$820 = .data:0x00077020; // type:object size:0x3C scope:local align:4
+...data.0 = .data:0x00077060; // type:label scope:local
+BrShop_Profile = .data:0x00077060; // type:object size:0x24 scope:global align:4 data:float
+aBRS_shadow_vtx_fix_flg_table = .data:0x00077084; // type:object size:0x8 scope:global align:4
+aBRS_shadow_data = .data:0x0007708C; // type:object size:0x14 scope:global align:4
+skl$456 = .data:0x000770A0; // type:object size:0x8 scope:local align:4
+aBRS_br_shop_door_data = .data:0x000770A8; // type:object size:0x14 scope:global align:4
+height_table_ct$525 = .data:0x000770BC; // type:object size:0x3F scope:local align:4
+height_table$526 = .data:0x000770FC; // type:object size:0x8 scope:local align:4
+addX$527 = .data:0x00077104; // type:object size:0xC scope:local align:4
+addZ$528 = .data:0x00077110; // type:object size:0xC scope:local align:4
+@556 = .data:0x0007711C; // type:object size:0x16 scope:local align:4 data:string
+process$641 = .data:0x00077134; // type:object size:0x10 scope:local align:4
+animation$642 = .data:0x00077144; // type:object size:0x8 scope:local align:4
+start_idx$643 = .data:0x0007714C; // type:object size:0x10 scope:local align:4
+end_idx$644 = .data:0x0007715C; // type:object size:0x10 scope:local align:4
+framespeed$645 = .data:0x0007716C; // type:object size:0x10 scope:local align:4
+mdl$734 = .data:0x0007717C; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00077188; // type:label scope:local
+Bridge_A_Profile = .data:0x00077188; // type:object size:0x24 scope:global align:4
+unit_offset_a0$432 = .data:0x000771AC; // type:object size:0x2A scope:local align:4
+unit_offset_a1$433 = .data:0x000771D8; // type:object size:0x2A scope:local align:4
+@475 = .data:0x00077204; // type:object size:0xE scope:local align:4 data:string
+skl$482 = .data:0x00077214; // type:object size:0x8 scope:local align:4
+anm$483 = .data:0x0007721C; // type:object size:0x8 scope:local align:4
+base_r_table$544 = .data:0x00077224; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x00077230; // type:label scope:local
+Buggy_Profile = .data:0x00077230; // type:object size:0x24 scope:global align:4 data:float
+aBGY_shadow_vtx_fix_flg_table = .data:0x00077254; // type:object size:0xE scope:global align:4
+aBGY_shadow_data = .data:0x00077264; // type:object size:0x14 scope:global align:4
+skl$455 = .data:0x00077278; // type:object size:0x8 scope:local align:4
+aBGY_buggy_door_data = .data:0x00077280; // type:object size:0x14 scope:global align:4
+height_table_ct$518 = .data:0x00077294; // type:object size:0x3F scope:local align:4
+height_table$519 = .data:0x000772D4; // type:object size:0x8 scope:local align:4
+addX$520 = .data:0x000772DC; // type:object size:0xC scope:local align:4
+addZ$521 = .data:0x000772E8; // type:object size:0xC scope:local align:4
+@549 = .data:0x000772F4; // type:object size:0x14 scope:local align:4 data:string
+process$647 = .data:0x00077308; // type:object size:0x10 scope:local align:4
+animation$648 = .data:0x00077318; // type:object size:0x8 scope:local align:4
+start_idx$649 = .data:0x00077320; // type:object size:0x10 scope:local align:4
+end_idx$650 = .data:0x00077330; // type:object size:0x10 scope:local align:4
+framespeed$651 = .data:0x00077340; // type:object size:0x10 scope:local align:4
+mdl$735 = .data:0x00077350; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00077358; // type:label scope:local
+Conveni_Profile = .data:0x00077358; // type:object size:0x24 scope:global align:4
+aCNV_shadow_vtx_fix_flg_table = .data:0x0007737C; // type:object size:0xC scope:global align:4
+aCNV_shadow_data = .data:0x00077388; // type:object size:0x14 scope:global align:4
+skl$456 = .data:0x0007739C; // type:object size:0x8 scope:local align:4
+aCNV_conveni_door_data = .data:0x000773A4; // type:object size:0x14 scope:global align:4
+height_table_ct$554 = .data:0x000773B8; // type:object size:0x77 scope:local align:4
+height_table$555 = .data:0x00077430; // type:object size:0x8 scope:local align:4
+addX$556 = .data:0x00077438; // type:object size:0x44 scope:local align:4
+addZ$557 = .data:0x0007747C; // type:object size:0x44 scope:local align:4
+@572 = .data:0x000774C0; // type:object size:0x16 scope:local align:4 data:string
+ani$628 = .data:0x000774D8; // type:object size:0x8 scope:local align:4
+anime_spd$629 = .data:0x000774E0; // type:object size:0x14 scope:local align:4
+set$630 = .data:0x000774F4; // type:object size:0x14 scope:local align:4
+end$631 = .data:0x00077508; // type:object size:0x14 scope:local align:4
+process$632 = .data:0x0007751C; // type:object size:0x14 scope:local align:4
+mdl$692 = .data:0x00077530; // type:object size:0x8 scope:local align:4
+Count02_Profile = .data:0x00077538; // type:object size:0x24 scope:global align:4
+process$498 = .data:0x0007755C; // type:object size:0x10 scope:local align:4
+textbl$541 = .data:0x0007756C; // type:object size:0x28 scope:local align:4
+xpos_tbl$542 = .data:0x00077594; // type:object size:0x10 scope:local align:4
+...data.0 = .data:0x000775A8; // type:label scope:local
+Count_Profile = .data:0x000775A8; // type:object size:0x24 scope:global align:4 data:float
+aCOU_shadow_vtx_fix_flg_table = .data:0x000775CC; // type:object size:0x4 scope:global align:4
+aCOU_shadow_data = .data:0x000775D0; // type:object size:0x14 scope:global align:4
+height_table_ct$454 = .data:0x000775E4; // type:object size:0x2A scope:local align:4
+height_table$455 = .data:0x00077610; // type:object size:0x8 scope:local align:4
+addX$456 = .data:0x00077618; // type:object size:0xC scope:local align:4
+addZ$457 = .data:0x00077624; // type:object size:0x8 scope:local align:4
+@485 = .data:0x0007762C; // type:object size:0x18 scope:local align:4 data:string
+process$514 = .data:0x00077644; // type:object size:0xC scope:local align:4
+anime_start$515 = .data:0x00077650; // type:object size:0xC scope:local align:4
+anime_spd$516 = .data:0x0007765C; // type:object size:0xC scope:local align:4
+prmcolor$553 = .data:0x00077668; // type:object size:0x28 scope:local align:4
+envcolor$554 = .data:0x00077690; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x000776A8; // type:label scope:local
+Depart_Profile = .data:0x000776A8; // type:object size:0x24 scope:global align:4
+aDPT_shadow_vtx_fix_flg_table = .data:0x000776CC; // type:object size:0xC scope:global align:4
+aDPT_shadow_data = .data:0x000776D8; // type:object size:0x14 scope:global align:4
+skl$456 = .data:0x000776EC; // type:object size:0x8 scope:local align:4
+aDPT_depart_door_data = .data:0x000776F4; // type:object size:0x14 scope:global align:4
+height_table_ct$554 = .data:0x00077708; // type:object size:0xA8 scope:local align:4
+height_table$555 = .data:0x000777B0; // type:object size:0x8 scope:local align:4
+addX$556 = .data:0x000777B8; // type:object size:0x60 scope:local align:4
+addZ$557 = .data:0x00077818; // type:object size:0x60 scope:local align:4
+@572 = .data:0x00077878; // type:object size:0x15 scope:local align:4 data:string
+ani$628 = .data:0x00077890; // type:object size:0x8 scope:local align:4
+anime_spd$629 = .data:0x00077898; // type:object size:0x14 scope:local align:4
+set$630 = .data:0x000778AC; // type:object size:0x14 scope:local align:4
+end$631 = .data:0x000778C0; // type:object size:0x14 scope:local align:4
+process$632 = .data:0x000778D4; // type:object size:0x14 scope:local align:4
+mdl$695 = .data:0x000778E8; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000778F0; // type:label scope:local
+Douzou_Profile = .data:0x000778F0; // type:object size:0x24 scope:global align:4 data:float
+eye_tbl = .data:0x00077914; // type:object size:0x80 scope:global align:4
+mouth_tbl = .data:0x00077994; // type:object size:0x80 scope:global align:4
+zpostbl = .data:0x00077A14; // type:object size:0x10 scope:global align:4
+xpostbl = .data:0x00077A24; // type:object size:0x10 scope:global align:4
+aDOU_shadow_vtx_fix_flg_table = .data:0x00077A34; // type:object size:0x8 scope:global align:4
+aDOU_shadow_data = .data:0x00077A3C; // type:object size:0x14 scope:global align:4
+skl$448 = .data:0x00077A50; // type:object size:0x8 scope:local align:4
+offset_tbl$519 = .data:0x00077A58; // type:object size:0x30 scope:local align:4
+mult_p_tbl$520 = .data:0x00077A88; // type:object size:0x30 scope:local align:4
+b_timetbl$534 = .data:0x00077AB8; // type:object size:0x10 scope:local align:4
+r_timetbl$535 = .data:0x00077AC8; // type:object size:0x10 scope:local align:4
+ani$625 = .data:0x00077AD8; // type:object size:0x8 scope:local align:4
+process$626 = .data:0x00077AE0; // type:object size:0x4 scope:local align:4
+prmcolor$644 = .data:0x00077AE4; // type:object size:0x10 scope:local align:4
+envcolor$645 = .data:0x00077AF4; // type:object size:0x10 scope:local align:4
+scltbl$646 = .data:0x00077B04; // type:object size:0x10 scope:local align:4
+Dump_Profile = .data:0x00077B18; // type:object size:0x24 scope:global align:4
+aDUM_shadow_vtx_fix_flg_table = .data:0x00077B3C; // type:object size:0x30 scope:global align:4
+aDUM_shadow_data = .data:0x00077B6C; // type:object size:0x14 scope:global align:4
+flag_tbl$457 = .data:0x00077B80; // type:object size:0x90 scope:local align:4
+process$502 = .data:0x00077C10; // type:object size:0x4 scope:local align:4
+model$533 = .data:0x00077C14; // type:object size:0x8 scope:local align:4
+FallS_Profile = .data:0x00077C20; // type:object size:0x24 scope:global align:4
+FallSESW_Profile = .data:0x00077C48; // type:object size:0x24 scope:global align:4
+flip_mtx$431 = .data:0x00077C6C; // type:object size:0x40 scope:local align:4
+aGhog_shadow_vtx_fix_flg_table = .data:0x00077CB0; // type:object size:0xA scope:global align:4
+aGhog_shadow_data = .data:0x00077CBC; // type:object size:0x14 scope:global align:4
+Ghog_Profile = .data:0x00077CD0; // type:object size:0x24 scope:global align:4
+@448 = .data:0x00077CF4; // type:object size:0xA scope:local align:4 data:string
+...data.0 = .data:0x00077D00; // type:label scope:local
+Goza_Profile = .data:0x00077D00; // type:object size:0x24 scope:global align:4
+aGOZ_shadow_vtx_fix_flg_tableA = .data:0x00077D24; // type:object size:0x1C scope:global align:4
+aGOZ_shadow_vtx_fix_flg_tableB = .data:0x00077D40; // type:object size:0x1C scope:global align:4
+aGOZ_shadow_dataA = .data:0x00077D5C; // type:object size:0x14 scope:global align:4
+aGOZ_shadow_dataB = .data:0x00077D70; // type:object size:0x14 scope:global align:4
+aGOZ_shadow_data_table = .data:0x00077D84; // type:object size:0x8 scope:global align:4
+rewrite_dataA$455 = .data:0x00077D8C; // type:object size:0x3F scope:local align:4
+rewrite_dataB$456 = .data:0x00077DCC; // type:object size:0x3F scope:local align:4
+rewrite_data$457 = .data:0x00077E0C; // type:object size:0x8 scope:local align:4
+@479 = .data:0x00077E14; // type:object size:0x13 scope:local align:4 data:string
+process$485 = .data:0x00077E28; // type:object size:0x4 scope:local align:4
+gfx_opa_table$532 = .data:0x00077E2C; // type:object size:0x8 scope:local align:4
+gfx_xlu_table$561 = .data:0x00077E34; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00077E40; // type:label scope:local
+House_Profile = .data:0x00077E40; // type:object size:0x24 scope:global align:4 data:4byte
+aHUS_shadow_vtx_fix_flg_table0 = .data:0x00077E64; // type:object size:0x14 scope:global align:4
+aHUS_shadow_vtx_fix_flg_table1 = .data:0x00077E78; // type:object size:0x1C scope:global align:4
+aHUS_shadow_vtx_fix_flg_table2 = .data:0x00077E94; // type:object size:0x18 scope:global align:4
+aHUS_shadow_data0 = .data:0x00077EAC; // type:object size:0x14 scope:global align:4
+aHUS_shadow_data1 = .data:0x00077EC0; // type:object size:0x14 scope:global align:4
+aHUS_shadow_data2 = .data:0x00077ED4; // type:object size:0x14 scope:global align:4
+aHUS_shadow_data3 = .data:0x00077EE8; // type:object size:0x14 scope:global align:4
+aHUS_shadow_data4 = .data:0x00077EFC; // type:object size:0x14 scope:global align:4
+aHUS_house_model_normal = .data:0x00077F10; // type:object size:0x14 scope:global align:4
+aHUS_house_model_winter = .data:0x00077F24; // type:object size:0x14 scope:global align:4
+aHUS_house_model = .data:0x00077F38; // type:object size:0x8 scope:global align:4
+aHUS_shadow_data = .data:0x00077F40; // type:object size:0x14 scope:global align:4
+chk_pat_in$513 = .data:0x00077F54; // type:object size:0x10 scope:local align:4
+chk_pat_out$514 = .data:0x00077F64; // type:object size:0x10 scope:local align:4
+se_no$515 = .data:0x00077F74; // type:object size:0x8 scope:local align:4
+aHUS_npc_house_door_data = .data:0x00077F7C; // type:object size:0x14 scope:global align:4
+animation$560 = .data:0x00077F90; // type:object size:0x50 scope:local align:4
+start_idx$561 = .data:0x00077FE0; // type:object size:0x10 scope:local align:4
+end_idx$562 = .data:0x00077FF0; // type:object size:0x10 scope:local align:4
+height_table_ct$640 = .data:0x00078000; // type:object size:0x3F scope:local align:4
+height_table$641 = .data:0x00078040; // type:object size:0x8 scope:local align:4
+addX$642 = .data:0x00078048; // type:object size:0xC scope:local align:4
+addZ$643 = .data:0x00078054; // type:object size:0xC scope:local align:4
+@671 = .data:0x00078060; // type:object size:0x14 scope:local align:4 data:string
+process$732 = .data:0x00078074; // type:object size:0x10 scope:local align:4
+window_model_table$790 = .data:0x00078084; // type:object size:0x50 scope:local align:4
+window_light_offset_table$813 = .data:0x000780D4; // type:object size:0x18 scope:local align:4 data:float
+edge_alpha$883 = .data:0x000780EC; // type:object size:0xA scope:local align:4
+adjust_mode$884 = .data:0x000780F8; // type:object size:0x28 scope:local align:4
+...data.0 = .data:0x00078120; // type:label scope:local
+aHTBL_shadow_vtx_fix_flg_tableA = .data:0x00078120; // type:object size:0x1C scope:global align:4
+aHTBL_shadow_vtx_fix_flg_tableB = .data:0x0007813C; // type:object size:0x1C scope:global align:4
+aHTBL_shadow_vtx_fix_flg_tableC = .data:0x00078158; // type:object size:0x1C scope:global align:4
+aHTBL_shadow_dataA = .data:0x00078174; // type:object size:0x14 scope:global align:4
+aHTBL_shadow_dataB = .data:0x00078188; // type:object size:0x14 scope:global align:4
+aHTBL_shadow_dataC = .data:0x0007819C; // type:object size:0x14 scope:global align:4
+aHTBL_shadow_data_table = .data:0x000781B0; // type:object size:0xC scope:global align:4
+Htable_Profile = .data:0x000781BC; // type:object size:0x24 scope:global align:4
+unit_offset$430 = .data:0x000781E0; // type:object size:0x40 scope:local align:4
+high_offset$431 = .data:0x00078220; // type:object size:0xC scope:local align:4
+@581 = .data:0x0007822C; // type:object size:0xC scope:local align:4 data:string
+aHTBL_displaylist_table_opa = .data:0x00078238; // type:object size:0xC scope:global align:4
+aHTBL_displaylist_table_xlu = .data:0x00078244; // type:object size:0xC scope:global align:4
+Kago_Profile = .data:0x00078250; // type:object size:0x24 scope:global align:4
+aKAG_shadow_vtx_fix_flg_table = .data:0x00078274; // type:object size:0xD scope:global align:4
+aKAG_shadow_data = .data:0x00078284; // type:object size:0x14 scope:global align:4
+process$448 = .data:0x00078298; // type:object size:0x4 scope:local align:4
+model$479 = .data:0x0007829C; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000782A8; // type:label scope:local
+Kamakura_Profile = .data:0x000782A8; // type:object size:0x24 scope:global align:4 data:float
+aKKR_shadow_vtx_fix_flg_table = .data:0x000782CC; // type:object size:0x14 scope:global align:4
+aKKR_shadow_data = .data:0x000782E0; // type:object size:0x14 scope:global align:4
+aKKR_kamakura_enter_data = .data:0x000782F4; // type:object size:0x14 scope:global align:4
+height_table_ct$485 = .data:0x00078308; // type:object size:0x3F scope:local align:4
+height_table$486 = .data:0x00078348; // type:object size:0x8 scope:local align:4
+addX$487 = .data:0x00078350; // type:object size:0xC scope:local align:4
+addZ$488 = .data:0x0007835C; // type:object size:0xC scope:local align:4
+@516 = .data:0x00078368; // type:object size:0x17 scope:local align:4 data:string
+process$558 = .data:0x00078380; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x000783A0; // type:label scope:local
+Koinobori_Profile = .data:0x000783A0; // type:object size:0x24 scope:global align:4
+aKOI_shadow_vtx_fix_flg_table = .data:0x000783C4; // type:object size:0x8 scope:global align:4
+aKOI_shadow_data = .data:0x000783CC; // type:object size:0x14 scope:global align:4
+process$442 = .data:0x000783E0; // type:object size:0x4 scope:local align:4
+aKOI_obj_e_koinobori_a_pal = .data:0x00078400; // type:object size:0x20 scope:global align:32
+obj_e_koinobori_b_pal = .data:0x00078420; // type:object size:0x20 scope:global align:32
+...data.0 = .data:0x00078440; // type:label scope:local
+Lotus_Profile = .data:0x00078440; // type:object size:0x24 scope:global align:4
+lotus_StatusData = .data:0x00078464; // type:object size:0xA scope:global align:4
+lotus_CoInfoData = .data:0x00078470; // type:object size:0x10 scope:global align:4
+@457 = .data:0x00078480; // type:object size:0xB scope:local align:4 data:string
+flower_pal_idx_table$465 = .data:0x0007848C; // type:object size:0x48 scope:local align:4
+process$493 = .data:0x000784D4; // type:object size:0xC scope:local align:4
+aLOT_obj_01_lotus_pal = .data:0x000784E0; // type:object size:0x20 scope:global align:32
+obj_02_lotus_pal = .data:0x00078500; // type:object size:0x20 scope:global align:32
+obj_03_lotus_pal = .data:0x00078520; // type:object size:0x20 scope:global align:32
+obj_04_lotus_pal = .data:0x00078540; // type:object size:0x20 scope:global align:32
+obj_05_lotus_pal = .data:0x00078560; // type:object size:0x20 scope:global align:32
+obj_06_lotus_pal = .data:0x00078580; // type:object size:0x20 scope:global align:32
+obj_07_lotus_pal = .data:0x000785A0; // type:object size:0x20 scope:global align:32
+obj_08_lotus_pal = .data:0x000785C0; // type:object size:0x20 scope:global align:32
+obj_09_lotus_pal = .data:0x000785E0; // type:object size:0x20 scope:global align:32
+on_off_tbl$513 = .data:0x00078600; // type:object size:0x30 scope:local align:4
+paltbl$555 = .data:0x00078630; // type:object size:0x24 scope:local align:4
+Mikanbox_Profile = .data:0x00078658; // type:object size:0x24 scope:global align:4
+page_table = .data:0x0007867C; // type:object size:0x11 scope:global align:4
+index_line_table = .data:0x00078690; // type:object size:0x20 scope:global align:4 data:byte
+init_table = .data:0x000786B0; // type:object size:0x1C scope:local align:4
+obj_e_mikanbox_v = .data:0x000786D0; // type:object size:0x40 scope:local align:8
+...data.0 = .data:0x00078710; // type:label scope:local
+Mikuji_Profile = .data:0x00078710; // type:object size:0x24 scope:global align:4 data:float
+aMIK_shadow_vtx_fix_flg_table = .data:0x00078734; // type:object size:0x8 scope:global align:4
+aMIK_shadow_data = .data:0x0007873C; // type:object size:0x14 scope:global align:4
+height_table_ct$431 = .data:0x00078750; // type:object size:0x1C scope:local align:4
+height_table$432 = .data:0x0007876C; // type:object size:0x8 scope:local align:4
+addX$433 = .data:0x00078774; // type:object size:0x8 scope:local align:4
+addZ$434 = .data:0x0007877C; // type:object size:0x8 scope:local align:4
+@455 = .data:0x00078784; // type:object size:0x15 scope:local align:4 data:string
+Museum_Profile = .data:0x000787A0; // type:object size:0x24 scope:global align:4
+aMsm_shadow_vtx_fix_flg_table = .data:0x000787C4; // type:object size:0x8 scope:global align:4
+aMsm_shadow_data = .data:0x000787CC; // type:object size:0x14 scope:global align:4
+aMsm_museum_enter_data = .data:0x000787E0; // type:object size:0x14 scope:global align:4
+unit_offset$441 = .data:0x000787F4; // type:object size:0x8C scope:local align:4 data:2byte
+@459 = .data:0x00078880; // type:object size:0xC scope:local align:4 data:string
+aMsm_summer_disp_table = .data:0x0007888C; // type:object size:0x14 scope:global align:4
+aMsm_winter_disp_table = .data:0x000788A0; // type:object size:0x14 scope:global align:4
+disp_info$523 = .data:0x000788B4; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000788C0; // type:label scope:local
+MyHouse_Profile = .data:0x000788C0; // type:object size:0x24 scope:global align:4
+aMHS_lv1_shadowE_vtx_fix_flg_table = .data:0x000788E4; // type:object size:0x12 scope:global align:4
+aMHS_lv1_shadowW_vtx_fix_flg_table = .data:0x000788F8; // type:object size:0x12 scope:global align:4
+aMHS_lv1_shadowE_data = .data:0x0007890C; // type:object size:0x14 scope:global align:4
+aMHS_lv1_shadowW_data = .data:0x00078920; // type:object size:0x14 scope:global align:4
+aMHS_lv1_shadow_data = .data:0x00078934; // type:object size:0x8 scope:global align:4
+aMHS_lv2_shadowE_data = .data:0x0007893C; // type:object size:0x14 scope:global align:4
+aMHS_lv2_shadowW_data = .data:0x00078950; // type:object size:0x14 scope:global align:4
+aMHS_lv2_shadow_data = .data:0x00078964; // type:object size:0x8 scope:global align:4
+aMHS_lv3_shadowE_data = .data:0x0007896C; // type:object size:0x14 scope:global align:4
+aMHS_lv3_shadowW_data = .data:0x00078980; // type:object size:0x14 scope:global align:4
+aMHS_lv3_shadow_data = .data:0x00078994; // type:object size:0x8 scope:global align:4
+aMHS_lv4_shadowE_data = .data:0x0007899C; // type:object size:0x14 scope:global align:4
+aMHS_lv4_shadowW_data = .data:0x000789B0; // type:object size:0x14 scope:global align:4
+aMHS_lv4_shadow_data = .data:0x000789C4; // type:object size:0x8 scope:global align:4
+aMHS_posX_table = .data:0x000789CC; // type:object size:0x8 scope:global align:4
+skl$436 = .data:0x000789D4; // type:object size:0x20 scope:local align:4
+angle_table$437 = .data:0x000789F4; // type:object size:0x4 scope:local align:4
+chk_pat_in$469 = .data:0x000789F8; // type:object size:0x10 scope:local align:4
+chk_pat_out$470 = .data:0x00078A08; // type:object size:0x10 scope:local align:4
+se_no$471 = .data:0x00078A18; // type:object size:0x8 scope:local align:4
+next_scene_no$488 = .data:0x00078A20; // type:object size:0x10 scope:local align:4
+startX$489 = .data:0x00078A30; // type:object size:0x8 scope:local align:4
+startZ$490 = .data:0x00078A38; // type:object size:0x8 scope:local align:4
+ani$495 = .data:0x00078A40; // type:object size:0x40 scope:local align:4
+start_idx$496 = .data:0x00078A80; // type:object size:0x10 scope:local align:4
+end_idx$497 = .data:0x00078A90; // type:object size:0x10 scope:local align:4
+out_drt$506 = .data:0x00078AA0; // type:object size:0x2 scope:local align:4
+restartX$507 = .data:0x00078AA4; // type:object size:0x8 scope:local align:4
+aMHS_player_chk_f = .data:0x00078AAC; // type:object size:0x8 scope:global align:4
+aMHS_player_chk_angl0 = .data:0x00078AB4; // type:object size:0x4 scope:global align:4
+aMHS_player_chk_angl1 = .data:0x00078AB8; // type:object size:0x4 scope:global align:4
+direct$568 = .data:0x00078ABC; // type:object size:0x8 scope:local align:4
+height_tbl$605 = .data:0x00078AC4; // type:object size:0xC0 scope:local align:4
+height_dt$640 = .data:0x00078B84; // type:object size:0x4 scope:local align:4
+addX$641 = .data:0x00078B88; // type:object size:0x8 scope:local align:4
+addZ$642 = .data:0x00078B90; // type:object size:0x4 scope:local align:4
+@666 = .data:0x00078B94; // type:object size:0x17 scope:local align:4 data:string
+process$716 = .data:0x00078BAC; // type:object size:0x10 scope:local align:4
+door_data$721 = .data:0x00078BBC; // type:object size:0x14 scope:local align:4
+drtbl$722 = .data:0x00078BD0; // type:object size:0x7 scope:local align:4
+angle_table$743 = .data:0x00078BD8; // type:object size:0x4 scope:local align:4
+mdl$820 = .data:0x00078BDC; // type:object size:0x20 scope:local align:4
+edge_alpha$862 = .data:0x00078BFC; // type:object size:0x4 scope:local align:4 data:string
+shadow_data$906 = .data:0x00078C00; // type:object size:0x10 scope:local align:4
+Nameplate_Profile = .data:0x00078C10; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x00078C38; // type:label scope:local
+Needlework_Shop_Profile = .data:0x00078C38; // type:object size:0x24 scope:global align:4
+aNW_shadow_vtx_fix_flg_table = .data:0x00078C5C; // type:object size:0x6 scope:global align:4
+aNW_shadow_data = .data:0x00078C64; // type:object size:0x14 scope:global align:4
+skl$432 = .data:0x00078C78; // type:object size:0x8 scope:local align:4
+aNW_needlework_shop_door_data = .data:0x00078C80; // type:object size:0x14 scope:global align:4
+chk_pat_in$455 = .data:0x00078C94; // type:object size:0x10 scope:local align:4
+chk_pat_out$456 = .data:0x00078CA4; // type:object size:0x10 scope:local align:4
+se_no$457 = .data:0x00078CB4; // type:object size:0x8 scope:local align:4
+cond$503 = .data:0x00078CBC; // type:object size:0x10 scope:local align:4
+height_table_ct$512 = .data:0x00078CCC; // type:object size:0x70 scope:local align:4
+height_table$513 = .data:0x00078D3C; // type:object size:0x8 scope:local align:4
+addX$514 = .data:0x00078D44; // type:object size:0x10 scope:local align:4
+addZ$515 = .data:0x00078D54; // type:object size:0x10 scope:local align:4
+@542 = .data:0x00078D64; // type:object size:0x1E scope:local align:4 data:string
+animation$546 = .data:0x00078D84; // type:object size:0x10 scope:local align:4
+start_idx$547 = .data:0x00078D94; // type:object size:0x10 scope:local align:4
+end_idx$548 = .data:0x00078DA4; // type:object size:0x10 scope:local align:4
+window_color$562 = .data:0x00078DB4; // type:object size:0x4 scope:local align:4
+process$619 = .data:0x00078DB8; // type:object size:0x10 scope:local align:4
+mdl$678 = .data:0x00078DC8; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00078DD0; // type:label scope:local
+Police_Box_Profile = .data:0x00078DD0; // type:object size:0x24 scope:global align:4 data:float
+aPBOX_shadow_vtx_fix_flg_table0 = .data:0x00078DF4; // type:object size:0x14 scope:global align:4
+aPBOX_shadow_data = .data:0x00078E08; // type:object size:0x14 scope:global align:4
+aPBOX_police_box_enter_data = .data:0x00078E1C; // type:object size:0x14 scope:global align:4
+height_table_ct$437 = .data:0x00078E30; // type:object size:0x3F scope:local align:4
+height_table$438 = .data:0x00078E70; // type:object size:0x8 scope:local align:4
+addX$439 = .data:0x00078E78; // type:object size:0xC scope:local align:4
+addZ$440 = .data:0x00078E84; // type:object size:0xC scope:local align:4
+@468 = .data:0x00078E90; // type:object size:0x19 scope:local align:4 data:string
+displayList$531 = .data:0x00078EAC; // type:object size:0x8 scope:local align:4
+mdl$532 = .data:0x00078EB4; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00078EC0; // type:label scope:local
+Post_Office_Profile = .data:0x00078EC0; // type:object size:0x24 scope:global align:4
+aPOFF_shadow_vtx_fix_flg_table = .data:0x00078EE4; // type:object size:0xE scope:global align:4
+aPOFF_shadow_data = .data:0x00078EF4; // type:object size:0x14 scope:global align:4
+skl$432 = .data:0x00078F08; // type:object size:0x8 scope:local align:4
+aPOFF_post_office_door_data = .data:0x00078F10; // type:object size:0x14 scope:global align:4
+chk_pat_in$452 = .data:0x00078F24; // type:object size:0x10 scope:local align:4
+chk_pat_out$453 = .data:0x00078F34; // type:object size:0x10 scope:local align:4
+se_no$454 = .data:0x00078F44; // type:object size:0x8 scope:local align:4
+cond$500 = .data:0x00078F4C; // type:object size:0x10 scope:local align:4
+height_table_ct$509 = .data:0x00078F5C; // type:object size:0x70 scope:local align:4
+height_table$510 = .data:0x00078FCC; // type:object size:0x8 scope:local align:4
+addX$511 = .data:0x00078FD4; // type:object size:0x10 scope:local align:4
+addZ$512 = .data:0x00078FE4; // type:object size:0x10 scope:local align:4
+@539 = .data:0x00078FF4; // type:object size:0x1A scope:local align:4 data:string
+animation$543 = .data:0x00079010; // type:object size:0x10 scope:local align:4
+start_idx$544 = .data:0x00079020; // type:object size:0x10 scope:local align:4
+end_idx$545 = .data:0x00079030; // type:object size:0x10 scope:local align:4
+process$597 = .data:0x00079040; // type:object size:0x10 scope:local align:4
+mdl$664 = .data:0x00079050; // type:object size:0x8 scope:local align:4
+Radio_Profile = .data:0x00079058; // type:object size:0x24 scope:global align:4
+aRAD_shadow_vtx_fix_flg_table = .data:0x0007907C; // type:object size:0x8 scope:global align:4
+aRAD_shadow_data = .data:0x00079084; // type:object size:0x14 scope:global align:4
+process$451 = .data:0x00079098; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x000790A0; // type:label scope:local
+Reserve_Profile = .data:0x000790A0; // type:object size:0x24 scope:global align:4
+aRSV_shadow_vtx_fix_flg_table = .data:0x000790C4; // type:object size:0x4 scope:global align:4
+aRSV_shadow_data = .data:0x000790C8; // type:object size:0x14 scope:global align:4
+aRSV_kappa_shadow_data = .data:0x000790DC; // type:object size:0x14 scope:global align:4
+process$480 = .data:0x000790F0; // type:object size:0x4 scope:local align:4
+displayList$496 = .data:0x000790F4; // type:object size:0x8 scope:local align:4
+displayList_kappa$497 = .data:0x000790FC; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00079108; // type:label scope:local
+S_Car_Profile = .data:0x00079108; // type:object size:0x24 scope:global align:4
+aSCR_shadow_vtx_fix_flg_table0 = .data:0x0007912C; // type:object size:0x17 scope:global align:4
+aSCR_shadow_data = .data:0x00079144; // type:object size:0x14 scope:global align:4
+height_table_ct$464 = .data:0x00079158; // type:object size:0x3F scope:local align:4
+height_table$465 = .data:0x00079198; // type:object size:0x8 scope:local align:4
+addX$466 = .data:0x000791A0; // type:object size:0xC scope:local align:4
+addZ$467 = .data:0x000791AC; // type:object size:0xC scope:local align:4
+@491 = .data:0x000791B8; // type:object size:0x14 scope:local align:4 data:string
+...data.0 = .data:0x000791D0; // type:label scope:local
+Shop_Profile = .data:0x000791D0; // type:object size:0x24 scope:global align:4
+aSHOP_shadow_vtx_fix_flg_table = .data:0x000791F4; // type:object size:0x8 scope:global align:4
+aSHOP_shadow_data = .data:0x000791FC; // type:object size:0x14 scope:global align:4
+skl$455 = .data:0x00079210; // type:object size:0x8 scope:local align:4
+aSHOP_shop_door_data = .data:0x00079218; // type:object size:0x14 scope:global align:4
+height_table_ct$480 = .data:0x0007922C; // type:object size:0x70 scope:local align:4
+height_table$481 = .data:0x0007929C; // type:object size:0x8 scope:local align:4
+addX$482 = .data:0x000792A4; // type:object size:0x10 scope:local align:4
+addZ$483 = .data:0x000792B4; // type:object size:0x10 scope:local align:4
+@510 = .data:0x000792C4; // type:object size:0x13 scope:local align:4 data:string
+ani$639 = .data:0x000792D8; // type:object size:0x8 scope:local align:4
+anime_spd$640 = .data:0x000792E0; // type:object size:0x14 scope:local align:4
+set$641 = .data:0x000792F4; // type:object size:0x14 scope:local align:4
+end$642 = .data:0x00079308; // type:object size:0x14 scope:local align:4
+process$643 = .data:0x0007931C; // type:object size:0x14 scope:local align:4
+mdl$714 = .data:0x00079330; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00079338; // type:label scope:local
+Shrine_Profile = .data:0x00079338; // type:object size:0x24 scope:global align:4 data:float
+aSHR_shadow_vtx_fix_flg_table = .data:0x0007935C; // type:object size:0x10 scope:global align:4
+aSHR_shadow_data = .data:0x0007936C; // type:object size:0x14 scope:global align:4
+height_table_ct$514 = .data:0x00079380; // type:object size:0x38 scope:local align:4
+height_table$515 = .data:0x000793B8; // type:object size:0x8 scope:local align:4
+addX$516 = .data:0x000793C0; // type:object size:0x8 scope:local align:4
+addZ$517 = .data:0x000793C8; // type:object size:0x10 scope:local align:4
+@538 = .data:0x000793D8; // type:object size:0x15 scope:local align:4 data:string
+choume_str$612 = .data:0x000793F0; // type:object size:0x7 scope:local align:4 data:string
+init_proc$708 = .data:0x000793F8; // type:object size:0x14 scope:local align:4
+process$709 = .data:0x0007940C; // type:object size:0x14 scope:local align:4
+leaf_texture_table = .data:0x00079420; // type:object size:0x10 scope:global align:4
+Station_Profile = .data:0x00079430; // type:object size:0x24 scope:global align:4
+aSTA_shadow_vtx_fix_flg_table0 = .data:0x00079454; // type:object size:0x1F scope:global align:4
+aSTA_shadow_vtx_fix_flg_table1 = .data:0x00079474; // type:object size:0x40 scope:global align:4
+aSTA_shadow_vtx_fix_flg_table2 = .data:0x000794B4; // type:object size:0x3E scope:global align:4
+aSTA_shadow_low_data0 = .data:0x000794F4; // type:object size:0x14 scope:global align:4
+aSTA_shadow_hi_data0 = .data:0x00079508; // type:object size:0x14 scope:global align:4
+aSTA_shadow_low_data1 = .data:0x0007951C; // type:object size:0x14 scope:global align:4
+aSTA_shadow_hi_data1 = .data:0x00079530; // type:object size:0x14 scope:global align:4
+aSTA_shadow_low_data2 = .data:0x00079544; // type:object size:0x14 scope:global align:4
+aSTA_shadow_hi_data2 = .data:0x00079558; // type:object size:0x14 scope:global align:4
+skl$429 = .data:0x0007956C; // type:object size:0x18 scope:local align:4
+ani$445 = .data:0x00079584; // type:object size:0x18 scope:local align:4
+process$446 = .data:0x0007959C; // type:object size:0x4 scope:local align:4
+shadow_low_data$472 = .data:0x000795A0; // type:object size:0xC scope:local align:4
+shadow_hi_data$473 = .data:0x000795AC; // type:object size:0xC scope:local align:4
+next_talk_act$579 = .data:0x000795B8; // type:object size:0x13 scope:local align:4
+msg_no$580 = .data:0x000795CC; // type:object size:0x13 scope:local align:4
+@608 = .data:0x000795E0; // type:object size:0x68 scope:local align:4
+next_talk_act$634 = .data:0x00079648; // type:object size:0x2 scope:local align:4
+msg_no$635 = .data:0x0007964C; // type:object size:0x2 scope:local align:4
+msg_no$657 = .data:0x00079650; // type:object size:0x8 scope:local align:4
+next_think_idx$658 = .data:0x00079658; // type:object size:0x2 scope:local align:4 data:string
+@695 = .data:0x0007965C; // type:object size:0x60 scope:local align:4
+proc$769 = .data:0x000796BC; // type:object size:0x40 scope:local align:4
+Structure_Profile = .data:0x00079700; // type:object size:0x24 scope:global align:4
+pal_adrs_table$390 = .data:0x00079724; // type:object size:0x8 scope:local align:4
+setupInfo_table$395 = .data:0x0007972C; // type:object size:0x298 scope:local align:4
+request$512 = .data:0x000799C4; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000799D0; // type:label scope:local
+Super_Profile = .data:0x000799D0; // type:object size:0x24 scope:global align:4
+aSPR_shadow_vtx_fix_flg_table = .data:0x000799F4; // type:object size:0x8 scope:global align:4
+aSPR_shadow_data = .data:0x000799FC; // type:object size:0x14 scope:global align:4
+skl$456 = .data:0x00079A10; // type:object size:0x8 scope:local align:4
+aSPR_super_door_data = .data:0x00079A18; // type:object size:0x14 scope:global align:4
+height_table_ct$554 = .data:0x00079A2C; // type:object size:0xA8 scope:local align:4
+height_table$555 = .data:0x00079AD4; // type:object size:0x8 scope:local align:4
+addX$556 = .data:0x00079ADC; // type:object size:0x60 scope:local align:4
+addZ$557 = .data:0x00079B3C; // type:object size:0x60 scope:local align:4
+@572 = .data:0x00079B9C; // type:object size:0x14 scope:local align:4 data:string
+ani$628 = .data:0x00079BB0; // type:object size:0x8 scope:local align:4
+anime_spd$629 = .data:0x00079BB8; // type:object size:0x14 scope:local align:4
+set$630 = .data:0x00079BCC; // type:object size:0x14 scope:local align:4
+end$631 = .data:0x00079BE0; // type:object size:0x14 scope:local align:4
+process$632 = .data:0x00079BF4; // type:object size:0x14 scope:local align:4
+mdl$692 = .data:0x00079C08; // type:object size:0x8 scope:local align:4
+Tama_Profile = .data:0x00079C10; // type:object size:0x24 scope:global align:4
+model$459 = .data:0x00079C34; // type:object size:0x8 scope:local align:4
+Tent_Profile = .data:0x00079C40; // type:object size:0x24 scope:global align:4
+aTnt_shadow_vtx_fix_flg_table = .data:0x00079C64; // type:object size:0x1C scope:global align:4
+aTnt_shadow_data = .data:0x00079C80; // type:object size:0x14 scope:global align:4
+aTnt_tent_enter_data = .data:0x00079C94; // type:object size:0x14 scope:global align:4
+height_table_ct$486 = .data:0x00079CA8; // type:object size:0x3F scope:local align:4
+height_table$487 = .data:0x00079CE8; // type:object size:0x8 scope:local align:4
+@509 = .data:0x00079CF0; // type:object size:0xA scope:local align:4 data:string
+process$552 = .data:0x00079CFC; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00079D00; // type:label scope:local
+Toudai_Profile = .data:0x00079D00; // type:object size:0x24 scope:global align:4 data:float
+aTOU_shadow_vtx_fix_flg_table = .data:0x00079D24; // type:object size:0xA scope:global align:4
+aTOU_shadow_data = .data:0x00079D30; // type:object size:0x14 scope:global align:4
+skl$494 = .data:0x00079D44; // type:object size:0x8 scope:local align:4
+aTOU_door_data = .data:0x00079D4C; // type:object size:0x14 scope:global align:4
+height_table_ct$536 = .data:0x00079D60; // type:object size:0x1C scope:local align:4
+height_table$537 = .data:0x00079D7C; // type:object size:0x8 scope:local align:4
+addX$538 = .data:0x00079D84; // type:object size:0x8 scope:local align:4
+addZ$539 = .data:0x00079D8C; // type:object size:0x8 scope:local align:4
+@560 = .data:0x00079D94; // type:object size:0x15 scope:local align:4 data:string
+ani$679 = .data:0x00079DAC; // type:object size:0x8 scope:local align:4
+process$680 = .data:0x00079DB4; // type:object size:0x10 scope:local align:4
+mdl$715 = .data:0x00079DC4; // type:object size:0x8 scope:local align:4
+prmcol$716 = .data:0x00079DCC; // type:object size:0x4 scope:local align:4 data:byte
+Train0_Profile = .data:0x00079DD0; // type:object size:0x24 scope:global align:4
+setX$484 = .data:0x00079DF4; // type:object size:0x8 scope:local align:4
+angl$485 = .data:0x00079DFC; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00079E00; // type:label scope:local
+Train1_Profile = .data:0x00079E00; // type:object size:0x24 scope:global align:4
+doorway_pos$493 = .data:0x00079E24; // type:object size:0xC scope:local align:4 data:4byte
+anime_table$525 = .data:0x00079E30; // type:object size:0x8 scope:local align:4
+anime_end$526 = .data:0x00079E38; // type:object size:0x8 scope:local align:4
+animeSeqNoTable$527 = .data:0x00079E40; // type:object size:0x24 scope:local align:4
+anime_spd$528 = .data:0x00079E64; // type:object size:0x24 scope:local align:4
+Tukimi_Profile = .data:0x00079E88; // type:object size:0x24 scope:global align:4
+aTUK_shadow_vtx_fix_flg_table = .data:0x00079EAC; // type:object size:0x8 scope:global align:4
+aTUK_shadow_data_l = .data:0x00079EB4; // type:object size:0x14 scope:global align:4
+aTUK_shadow_data_r = .data:0x00079EC8; // type:object size:0x14 scope:global align:4
+skl$428 = .data:0x00079EDC; // type:object size:0x8 scope:local align:4
+ani$447 = .data:0x00079EE4; // type:object size:0x8 scope:local align:4
+mdl$488 = .data:0x00079EEC; // type:object size:0x8 scope:local align:4
+shadow_data$522 = .data:0x00079EF4; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00079F00; // type:label scope:local
+Turi_Profile = .data:0x00079F00; // type:object size:0x24 scope:global align:4
+aTUR_shadow_vtx_fix_flg_table = .data:0x00079F24; // type:object size:0x6 scope:global align:4
+aTUR_shadow_data_l = .data:0x00079F2C; // type:object size:0x14 scope:global align:4
+aTUR_shadow_data_r = .data:0x00079F40; // type:object size:0x14 scope:global align:4
+@543 = .data:0x00079F54; // type:object size:0xA0 scope:local align:4
+l_name$547 = .data:0x00079FF4; // type:object size:0x5 scope:local align:4
+height_table_ct_l$566 = .data:0x00079FFC; // type:object size:0x3F scope:local align:4
+height_table_ct_r$567 = .data:0x0007A03C; // type:object size:0x3F scope:local align:4
+height_table$568 = .data:0x0007A07C; // type:object size:0x10 scope:local align:4
+addX$569 = .data:0x0007A08C; // type:object size:0xC scope:local align:4
+addZ$570 = .data:0x0007A098; // type:object size:0xC scope:local align:4
+@607 = .data:0x0007A0A4; // type:object size:0x13 scope:local align:4 data:string
+process$615 = .data:0x0007A0B8; // type:object size:0x4 scope:local align:4
+model$646 = .data:0x0007A0BC; // type:object size:0x8 scope:local align:4
+shadow$647 = .data:0x0007A0C4; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x0007A0D0; // type:label scope:local
+Windmill_Profile = .data:0x0007A0D0; // type:object size:0x24 scope:global align:4 data:float
+aWIN_shadow_vtx_fix_flg_table = .data:0x0007A0F4; // type:object size:0x8 scope:global align:4
+height_table_ct$431 = .data:0x0007A0FC; // type:object size:0x3F scope:local align:4
+height_table_dt$432 = .data:0x0007A13C; // type:object size:0x3F scope:local align:4
+height_table$433 = .data:0x0007A17C; // type:object size:0x8 scope:local align:4
+addX$434 = .data:0x0007A184; // type:object size:0xC scope:local align:4
+addZ$435 = .data:0x0007A190; // type:object size:0xC scope:local align:4
+@463 = .data:0x0007A19C; // type:object size:0x17 scope:local align:4 data:string
+...data.0 = .data:0x0007A1B8; // type:label scope:local
+Yatai_Profile = .data:0x0007A1B8; // type:object size:0x24 scope:global align:4
+aYAT_shadow_vtx_fix_flg_table = .data:0x0007A1DC; // type:object size:0x7 scope:global align:4
+aYAT_shadow_data_l = .data:0x0007A1E4; // type:object size:0x14 scope:global align:4
+aYAT_shadow_data_r = .data:0x0007A1F8; // type:object size:0x14 scope:global align:4
+height_table_ct_l$454 = .data:0x0007A20C; // type:object size:0x3F scope:local align:4
+height_table_ct_r$455 = .data:0x0007A24C; // type:object size:0x3F scope:local align:4
+height_table$456 = .data:0x0007A28C; // type:object size:0x10 scope:local align:4
+addX$457 = .data:0x0007A29C; // type:object size:0xC scope:local align:4
+addZ$458 = .data:0x0007A2A8; // type:object size:0xC scope:local align:4
+@496 = .data:0x0007A2B4; // type:object size:0x14 scope:local align:4 data:string
+shadow_data$526 = .data:0x0007A2C8; // type:object size:0x8 scope:local align:4
+mdl$527 = .data:0x0007A2D0; // type:object size:0x8 scope:local align:4
+mdl2$528 = .data:0x0007A2D8; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x0007A2E0; // type:label scope:local
+lat_atena_v = .data:0x0007A2E0; // type:object size:0x300 scope:global align:8 data:2byte
+l_shop_name_str = .data:0x0007A5E0; // type:object size:0x8 scope:global align:4
+mAD_title_str = .data:0x0007A5E8; // type:object size:0x14 scope:global align:4 data:string
+mAD_title_str2 = .data:0x0007A5FC; // type:object size:0x1B scope:global align:4 data:string
+play_process$660 = .data:0x0007A618; // type:object size:0x14 scope:local align:4
+ovl_move_proc$681 = .data:0x0007A62C; // type:object size:0x14 scope:local align:4
+title_table$706 = .data:0x0007A640; // type:object size:0x8 scope:local align:4
+title_length$707 = .data:0x0007A648; // type:object size:0x8 scope:local align:4
+offset$708 = .data:0x0007A650; // type:object size:0x10 scope:local align:4
+prim_color$748 = .data:0x0007A660; // type:object size:0x18 scope:local align:4
+address_color$780 = .data:0x0007A678; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x0007A690; // type:label scope:local
+aNSM_sack_amount = .data:0x0007A690; // type:object size:0x10 scope:global align:4 data:4byte
+aNSM_itemNo = .data:0x0007A6A0; // type:object size:0x8 scope:global align:4
+ovl_move_proc$544 = .data:0x0007A6A8; // type:object size:0x14 scope:local align:4
+kingaku_str$598 = .data:0x0007A6BC; // type:object size:0xC scope:local align:4 data:string
+end_str$599 = .data:0x0007A6C8; // type:object size:0x2 scope:local align:4 data:string
+normal_col$600 = .data:0x0007A6CC; // type:object size:0x4 scope:local align:4
+select_col$601 = .data:0x0007A6D0; // type:object size:0x4 scope:local align:4
+bank_bell_col$602 = .data:0x0007A6D4; // type:object size:0x4 scope:local align:4
+now_bell_col$603 = .data:0x0007A6D8; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x0007A6E0; // type:label scope:local
+work_time$410 = .data:0x0007A6E0; // type:object size:0x8 scope:local align:4 data:byte
+ovl_move_proc$467 = .data:0x0007A6E8; // type:object size:0x14 scope:local align:4
+chr_table$472 = .data:0x0007A6FC; // type:object size:0x15 scope:local align:4 data:string
+close_table$473 = .data:0x0007A714; // type:object size:0x2 scope:local align:4 data:string
+month_tex$474 = .data:0x0007A718; // type:object size:0x30 scope:local align:4
+color_type$475 = .data:0x0007A748; // type:object size:0x18 scope:local align:4
+paper_disp_model = .data:0x0007A760; // type:object size:0x400 scope:local align:4
+paper_disp_sen_model = .data:0x0007AB60; // type:object size:0x400 scope:local align:4
+letter_color = .data:0x0007AF60; // type:object size:0x400 scope:local align:4
+ovl_move_proc$573 = .data:0x0007B360; // type:object size:0x14 scope:local align:4
+header_str$790 = .data:0x0007B374; // type:object size:0x3 scope:local align:4 data:string
+footer_str$791 = .data:0x0007B378; // type:object size:0x5 scope:local align:4 data:string
+...data.0 = .data:0x0007B380; // type:label scope:local
+event_table$667 = .data:0x0007B380; // type:object size:0x30 scope:local align:4 data:4byte
+event_table$678 = .data:0x0007B3B0; // type:object size:0x28 scope:local align:4 data:byte
+mCD_play_proc$953 = .data:0x0007B3D8; // type:object size:0x20 scope:local align:4
+ovl_move_proc$977 = .data:0x0007B3F8; // type:object size:0x14 scope:local align:4
+back_pal_table = .data:0x0007B40C; // type:object size:0x30 scope:global align:4
+back_tex_table = .data:0x0007B43C; // type:object size:0x30 scope:global align:4
+month_tex_table = .data:0x0007B46C; // type:object size:0x30 scope:global align:4
+event_tex_table = .data:0x0007B49C; // type:object size:0x8 scope:global align:4
+box_prim_table = .data:0x0007B4A4; // type:object size:0xF scope:global align:4
+box_env_table = .data:0x0007B4B4; // type:object size:0xF scope:global align:4 data:string
+number_prim_table = .data:0x0007B4C4; // type:object size:0xF scope:global align:4
+number2_prim_table = .data:0x0007B4D4; // type:object size:0xF scope:global align:4
+suuji_tex_table = .data:0x0007B4E4; // type:object size:0x7C scope:global align:4
+cal_hyoji_txt_table = .data:0x0007B560; // type:object size:0x8 scope:global align:4
+cal_win_nen_table = .data:0x0007B568; // type:object size:0x10 scope:global align:4
+cal_win_nen_txt_table = .data:0x0007B578; // type:object size:0x28 scope:global align:4
+icon_mark_prim_table = .data:0x0007B5A0; // type:object size:0x9 scope:global align:4
+...data.0 = .data:0x0007B5B0; // type:label scope:local
+furniture_quality = .data:0x0007B5B0; // type:object size:0x13C8 scope:local align:4
+paper_disp_model = .data:0x0007C978; // type:object size:0x400 scope:local align:4
+paper_disp_sen_model = .data:0x0007CD78; // type:object size:0x400 scope:local align:4
+mCL_furniture_list = .data:0x0007D178; // type:object size:0x964 scope:global align:4 data:2byte
+mCL_wall_idx_list = .data:0x0007DADC; // type:object size:0x86 scope:global align:4
+mCL_carpet_idx_list = .data:0x0007DB64; // type:object size:0x86 scope:global align:4
+mCL_cloth_idx_list = .data:0x0007DBEC; // type:object size:0x1EE scope:global align:4
+mCL_umbrella_idx_list = .data:0x0007DDDC; // type:object size:0x80 scope:global align:4
+mCL_paper_idx_list = .data:0x0007DE5C; // type:object size:0x80 scope:global align:4
+mCL_haniwa_idx_list = .data:0x0007DEDC; // type:object size:0xFE scope:global align:4
+mCL_fossil_idx_list = .data:0x0007DFDC; // type:object size:0x32 scope:global align:4
+mCL_music_idx_list = .data:0x0007E010; // type:object size:0x6E scope:global align:4
+mCL_item_idx_data = .data:0x0007E080; // type:object size:0x48 scope:global align:4 data:4byte
+mCL_win_data = .data:0x0007E0C8; // type:object size:0x90 scope:global align:4 data:4byte
+not_sell = .data:0x0007E158; // type:object size:0xC scope:global align:4 data:string
+furniture_draw_data$436 = .data:0x0007E164; // type:object size:0x148 scope:local align:4 data:float
+ovl_move_proc$686 = .data:0x0007E2AC; // type:object size:0x14 scope:local align:4
+light_direction$739 = .data:0x0007E2C0; // type:object size:0xC scope:local align:4
+obj_pos$740 = .data:0x0007E2CC; // type:object size:0xC scope:local align:4
+light_data$841 = .data:0x0007E2D8; // type:object size:0x18 scope:local align:8
+draw_proc$1007 = .data:0x0007E2F0; // type:object size:0x14 scope:local align:4
+name_disp$1092 = .data:0x0007E304; // type:object size:0x1C scope:local align:4
+item_name_color$1093 = .data:0x0007E320; // type:object size:0x18 scope:local align:4
+ovl_move_proc$434 = .data:0x0007E338; // type:object size:0x14 scope:local align:4
+mCM_disp_data = .data:0x0007E350; // type:object size:0xA0 scope:global align:4
+ovl_move_proc$492 = .data:0x0007E3F0; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x0007E408; // type:label scope:local
+env_table = .data:0x0007E408; // type:object size:0x18 scope:global align:4
+ovl_move_proc$698 = .data:0x0007E420; // type:object size:0x14 scope:local align:4
+prim_table$703 = .data:0x0007E434; // type:object size:0x18 scope:local align:4
+env_table2$704 = .data:0x0007E44C; // type:object size:0x18 scope:local align:4
+prim_table$746 = .data:0x0007E464; // type:object size:0x18 scope:local align:4
+prim_table$780 = .data:0x0007E47C; // type:object size:0x18 scope:local align:4
+env2_table$781 = .data:0x0007E494; // type:object size:0x18 scope:local align:4
+prim_table$796 = .data:0x0007E4AC; // type:object size:0x18 scope:local align:4
+pallet_table$828 = .data:0x0007E4C4; // type:object size:0x20 scope:local align:4
+color1$880 = .data:0x0007E4E4; // type:object size:0x3 scope:local align:4 data:string
+color2$881 = .data:0x0007E4E8; // type:object size:0x3 scope:local align:4 data:string
+color3$882 = .data:0x0007E4EC; // type:object size:0x3 scope:local align:4 data:string
+color4$883 = .data:0x0007E4F0; // type:object size:0x3 scope:local align:4
+color_table$884 = .data:0x0007E4F4; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x0007E518; // type:label scope:local
+mCW_mes0 = .data:0x0007E518; // type:object size:0x12 scope:global align:4 data:string
+mCW_mes1 = .data:0x0007E52C; // type:object size:0x1B scope:global align:4 data:string
+mCW_yes_mes = .data:0x0007E548; // type:object size:0x3 scope:global align:4 data:string
+mCW_no_mes = .data:0x0007E54C; // type:object size:0x2 scope:global align:4 data:string
+ovl_move_proc$448 = .data:0x0007E550; // type:object size:0x14 scope:local align:4
+color_table$492 = .data:0x0007E564; // type:object size:0x6 scope:local align:4
+letter_color = .data:0x0007E570; // type:object size:0x4 scope:local align:4
+add_trigger$496 = .data:0x0007E574; // type:object size:0x10 scope:local align:4
+move_proc$798 = .data:0x0007E584; // type:object size:0x18 scope:local align:4
+ovl_move_proc$830 = .data:0x0007E59C; // type:object size:0x14 scope:local align:4
+month_tex_table$867 = .data:0x0007E5B0; // type:object size:0x30 scope:local align:4
+month_tex_adjust$868 = .data:0x0007E5E0; // type:object size:0x30 scope:local align:4
+...data.0 = .data:0x0007E610; // type:label scope:local
+mDE_SinCosTBL = .data:0x0007E610; // type:object size:0x280 scope:global align:4 data:4byte
+mDE_pen_2 = .data:0x0007E890; // type:object size:0x4 scope:global align:4
+mDE_pen_3 = .data:0x0007E894; // type:object size:0x9 scope:global align:4
+mDE_heart = .data:0x0007E8A0; // type:object size:0x90 scope:global align:4
+mDE_star = .data:0x0007E930; // type:object size:0x90 scope:global align:4
+mDE_circle = .data:0x0007E9C0; // type:object size:0x90 scope:global align:4
+mDE_square = .data:0x0007EA50; // type:object size:0x90 scope:global align:4
+mDE_kao1 = .data:0x0007EAE0; // type:object size:0x90 scope:global align:4
+mDE_kao2 = .data:0x0007EB70; // type:object size:0x90 scope:global align:4
+mDE_kao3 = .data:0x0007EC00; // type:object size:0x90 scope:global align:4
+mDE_kao4 = .data:0x0007EC90; // type:object size:0x90 scope:global align:4
+mDE_kao5 = .data:0x0007ED20; // type:object size:0x90 scope:global align:4
+mDE_paint_mizutama = .data:0x0007EDB0; // type:object size:0x100 scope:global align:4
+mDE_paint_mask_cat_mask = .data:0x0007EEB0; // type:object size:0x400 scope:global align:4 data:byte
+process$1401 = .data:0x0007F2B0; // type:object size:0x14 scope:local align:4
+process$1786 = .data:0x0007F2C4; // type:object size:0x10 scope:local align:4
+ovl_move_proc$1856 = .data:0x0007F2D4; // type:object size:0x14 scope:local align:4
+tool_pen_table$1861 = .data:0x0007F2E8; // type:object size:0xC scope:local align:4
+tool_nuri_table$1862 = .data:0x0007F2F4; // type:object size:0x18 scope:local align:4
+tool_waku_table$1863 = .data:0x0007F30C; // type:object size:0x14 scope:local align:4
+tool_mark_table$1864 = .data:0x0007F320; // type:object size:0x10 scope:local align:4
+tool_kao_table$1865 = .data:0x0007F330; // type:object size:0x14 scope:local align:4
+suuji_table$1914 = .data:0x0007F344; // type:object size:0x28 scope:local align:4 data:4byte
+cursor_table$2031 = .data:0x0007F36C; // type:object size:0x3C scope:local align:4
+area_table$2267 = .data:0x0007F3A8; // type:object size:0x10 scope:local align:4
+win_data = .data:0x0007F3B8; // type:object size:0xB4 scope:global align:4
+mEE_str_table = .data:0x0007F46C; // type:object size:0xB scope:global align:4 data:string
+mEE_str_data0 = .data:0x0007F478; // type:object size:0x3 scope:global align:4 data:string
+mEE_str_data1 = .data:0x0007F47C; // type:object size:0x7 scope:global align:4 data:string
+mEE_str_data2 = .data:0x0007F484; // type:object size:0xC scope:global align:4 data:string
+ovl_move_proc$453 = .data:0x0007F490; // type:object size:0x14 scope:local align:4
+str_table$530 = .data:0x0007F4A4; // type:object size:0x18 scope:local align:4 data:4byte
+col_table$531 = .data:0x0007F4BC; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x0007F4D8; // type:label scope:local
+mED_ornament_table = .data:0x0007F4D8; // type:object size:0x100 scope:global align:4
+letterS_table$440 = .data:0x0007F5D8; // type:object size:0x28 scope:local align:4
+letterS_table2$441 = .data:0x0007F600; // type:object size:0x28 scope:local align:4
+letterL_table$442 = .data:0x0007F628; // type:object size:0x28 scope:local align:4
+letterL_table2$443 = .data:0x0007F650; // type:object size:0x28 scope:local align:4
+sign_table$444 = .data:0x0007F678; // type:object size:0x28 scope:local align:4
+mark_table$445 = .data:0x0007F6A0; // type:object size:0x28 scope:local align:4
+dataS_table$446 = .data:0x0007F6C8; // type:object size:0xC scope:local align:4
+dataS_table2$447 = .data:0x0007F6D4; // type:object size:0xC scope:local align:4
+dataL_table$448 = .data:0x0007F6E0; // type:object size:0xC scope:local align:4
+dataL_table2$449 = .data:0x0007F6EC; // type:object size:0xC scope:local align:4
+data_table$450 = .data:0x0007F6F8; // type:object size:0x10 scope:local align:4
+usable_str_table$492 = .data:0x0007F708; // type:object size:0x40 scope:local align:4 data:byte
+add_w$528 = .data:0x0007F748; // type:object size:0x24 scope:local align:4
+add_h$529 = .data:0x0007F76C; // type:object size:0x24 scope:local align:4
+edit_line$741 = .data:0x0007F790; // type:object size:0x10 scope:local align:4
+se_no$768 = .data:0x0007F7A0; // type:object size:0x14 scope:local align:4
+mED_exchange_se_list$769 = .data:0x0007F7B4; // type:object size:0x100 scope:local align:4
+ng_word_length$1024 = .data:0x0007F8B4; // type:object size:0x38 scope:local align:4
+@1054 = .data:0x0007F8EC; // type:object size:0x24 scope:local align:4
+@1073 = .data:0x0007F910; // type:object size:0x24 scope:local align:4
+@1207 = .data:0x0007F934; // type:object size:0x24 scope:local align:4
+letter_table_col$1211 = .data:0x0007F958; // type:object size:0x6 scope:local align:4
+letter_table_width$1212 = .data:0x0007F960; // type:object size:0x6 scope:local align:4
+letter_base_func$1244 = .data:0x0007F968; // type:object size:0xC scope:local align:4
+letter_base_func$1253 = .data:0x0007F974; // type:object size:0xC scope:local align:4
+@1267 = .data:0x0007F980; // type:object size:0x24 scope:local align:4
+pm_make_table_col$1271 = .data:0x0007F9A4; // type:object size:0x4 scope:local align:4
+@1315 = .data:0x0007F9A8; // type:object size:0x24 scope:local align:4
+@1355 = .data:0x0007F9CC; // type:object size:0x24 scope:local align:4
+mED_edit_func$1363 = .data:0x0007F9F0; // type:object size:0x20 scope:local align:4
+ovl_move_proc$1401 = .data:0x0007FA10; // type:object size:0x14 scope:local align:4
+tex$1406 = .data:0x0007FA24; // type:object size:0x8 scope:local align:4
+tex$1439 = .data:0x0007FA2C; // type:object size:0x8 scope:local align:4
+tex$1472 = .data:0x0007FA34; // type:object size:0x8 scope:local align:4
+tex$1507 = .data:0x0007FA3C; // type:object size:0x8 scope:local align:4
+dl$1508 = .data:0x0007FA44; // type:object size:0xC scope:local align:4
+prim$1509 = .data:0x0007FA50; // type:object size:0xA scope:local align:4
+data$1581 = .data:0x0007FA5C; // type:object size:0x30 scope:local align:4
+btn_tex$1582 = .data:0x0007FA8C; // type:object size:0x8 scope:local align:4
+prim$1583 = .data:0x0007FA94; // type:object size:0xA scope:local align:4
+btn_tex$1618 = .data:0x0007FAA0; // type:object size:0x8 scope:local align:4
+model_type$1651 = .data:0x0007FAA8; // type:object size:0x28 scope:local align:4 data:byte
+sel_col$1652 = .data:0x0007FAD0; // type:object size:0x8 scope:local align:4 data:byte
+tex$1724 = .data:0x0007FAD8; // type:object size:0x14 scope:local align:4
+tex$1766 = .data:0x0007FAEC; // type:object size:0x24 scope:local align:4
+offset_posX$1947 = .data:0x0007FB10; // type:object size:0x28 scope:local align:4
+offset_posY$1948 = .data:0x0007FB38; // type:object size:0x10 scope:local align:4
+slide_posX$1949 = .data:0x0007FB48; // type:object size:0x10 scope:local align:4
+col$1950 = .data:0x0007FB58; // type:object size:0x8 scope:local align:4
+sp_col$1983 = .data:0x0007FB60; // type:object size:0x4 scope:local align:4
+ovl_move_proc$561 = .data:0x0007FB68; // type:object size:0x14 scope:local align:4
+gfx_table$566 = .data:0x0007FB7C; // type:object size:0x20 scope:local align:4
+mHD_animeTable = .data:0x0007FBA0; // type:object size:0xA8 scope:global align:4 data:float
+mHD_animeSpdTable = .data:0x0007FC48; // type:object size:0x1C scope:global align:4
+mHD_hand_offsetX_table = .data:0x0007FC64; // type:object size:0x1C scope:global align:4
+mHD_hand_offsetY_table = .data:0x0007FC80; // type:object size:0x1C scope:global align:4
+sack_amount$760 = .data:0x0007FC9C; // type:object size:0x10 scope:local align:4
+@883 = .data:0x0007FCAC; // type:object size:0x28 scope:local align:4
+proc_table$887 = .data:0x0007FCD4; // type:object size:0x6C scope:local align:4
+process$973 = .data:0x0007FD40; // type:object size:0x1C scope:local align:4
+mes_ikaga$433 = .data:0x0007FD60; // type:object size:0xF scope:local align:4 data:string
+mes_dono$434 = .data:0x0007FD70; // type:object size:0xB scope:local align:4 data:string
+mes_dono2$435 = .data:0x0007FD7C; // type:object size:0xF scope:local align:4 data:string
+mes_oikura$436 = .data:0x0007FD8C; // type:object size:0x9 scope:local align:4 data:string
+mes_kasiko$437 = .data:0x0007FD98; // type:object size:0x7 scope:local align:4 data:string
+mes_dorewo$438 = .data:0x0007FDA0; // type:object size:0xB scope:local align:4 data:string
+mes_mou$439 = .data:0x0007FDAC; // type:object size:0x14 scope:local align:4 data:string
+mes_okane$440 = .data:0x0007FDC0; // type:object size:0x16 scope:local align:4 data:string
+mes_maido$441 = .data:0x0007FDD8; // type:object size:0x14 scope:local align:4 data:string
+mes_tada$442 = .data:0x0007FDEC; // type:object size:0xB scope:local align:4 data:string
+mes_tada2$443 = .data:0x0007FDF8; // type:object size:0x9 scope:local align:4 data:string
+mes_mise$444 = .data:0x0007FE04; // type:object size:0x14 scope:local align:4 data:string
+mes_beru$445 = .data:0x0007FE18; // type:object size:0x5 scope:local align:4
+mes_beru2$446 = .data:0x0007FE20; // type:object size:0x5 scope:local align:4 data:string
+mes_data_tbl$447 = .data:0x0007FE28; // type:object size:0x68 scope:local align:4
+mes_beru_data$448 = .data:0x0007FE90; // type:object size:0x8 scope:local align:4 data:4byte
+ovl_move_proc$536 = .data:0x0007FE98; // type:object size:0x14 scope:local align:4
+ovl_move_proc$448 = .data:0x0007FEB0; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x0007FEC8; // type:label scope:local
+mIV_fish_collect_list = .data:0x0007FEC8; // type:object size:0x28 scope:global align:4
+mIV_insect_collect_list = .data:0x0007FEF0; // type:object size:0x28 scope:global align:4
+player_main_animation_index_table$476 = .data:0x0007FF18; // type:object size:0x8 scope:local align:4
+pl_umb_data$866 = .data:0x0007FF20; // type:object size:0x140 scope:local align:4
+dummy_eye$1010 = .data:0x00080060; // type:object size:0xC scope:local align:4
+dummy_light_direction$1011 = .data:0x0008006C; // type:object size:0xC scope:local align:4
+proc$1077 = .data:0x00080078; // type:object size:0xA0 scope:local align:4
+food_mode$1102 = .data:0x00080118; // type:object size:0x24 scope:local align:4
+food_model$1103 = .data:0x0008013C; // type:object size:0x24 scope:local align:4
+@1347 = .data:0x00080160; // type:object size:0x44 scope:local align:4
+ovl_move_proc$1394 = .data:0x000801A4; // type:object size:0x14 scope:local align:4
+base_frame$1435 = .data:0x000801B8; // type:object size:0xC scope:local align:4
+part_frame$1436 = .data:0x000801C4; // type:object size:0xC scope:local align:4
+scroll_set$1437 = .data:0x000801D0; // type:object size:0xC scope:local align:4
+item_frame_disp$1487 = .data:0x000801DC; // type:object size:0x3C scope:local align:4 data:4byte
+letter_frame_disp$1488 = .data:0x00080218; // type:object size:0x28 scope:local align:4 data:4byte
+line_data$1691 = .data:0x00080240; // type:object size:0x30 scope:local align:4
+@1867 = .data:0x00080270; // type:object size:0x44 scope:local align:4
+mLE_player_title = .data:0x000802B8; // type:object size:0x10 scope:global align:4 data:string
+mLE_country_title = .data:0x000802C8; // type:object size:0x12 scope:global align:4 data:string
+mLE_ephrase_title = .data:0x000802DC; // type:object size:0x10 scope:global align:4 data:string
+mLE_reset_title = .data:0x000802EC; // type:object size:0x7 scope:global align:4 data:string
+mLE_request_title = .data:0x000802F4; // type:object size:0xF scope:global align:4 data:string
+mLE_myoriginal_title = .data:0x00080304; // type:object size:0xD scope:global align:4 data:string
+mLE_island_title = .data:0x00080314; // type:object size:0x14 scope:global align:4 data:string
+mLE_win_data = .data:0x00080328; // type:object size:0x16C scope:global align:4
+ovl_move_proc$437 = .data:0x00080494; // type:object size:0x14 scope:local align:4
+ovl_move_proc$460 = .data:0x000804A8; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x000804C0; // type:label scope:local
+l_map_texture = .data:0x000804C0; // type:object size:0x1B0 scope:global align:4
+l_map_pal = .data:0x00080670; // type:object size:0x6C scope:global align:4
+pluss_bridge = .data:0x000806DC; // type:object size:0x6C scope:global align:4
+kan_tizu1_pal = .data:0x00080760; // type:object size:0x20 scope:global align:32
+kan_tizu2_pal = .data:0x00080780; // type:object size:0x20 scope:global align:32
+l_kan_tizu_pal = .data:0x000807A0; // type:object size:0x8 scope:global align:4
+kan_win_evw_anime_1_tex_table = .data:0x000807A8; // type:object size:0x14 scope:global align:4
+kan_win_evw_anime_2_tex_table = .data:0x000807BC; // type:object size:0x18 scope:global align:4
+kan_win_npcT_table = .data:0x000807D4; // type:object size:0xC scope:global align:4
+kan_win_npc2T_table = .data:0x000807E0; // type:object size:0xC scope:global align:4
+mMP_label_word_npc = .data:0x000807EC; // type:object size:0x10 scope:global align:4
+mMP_label_npc = .data:0x000807FC; // type:object size:0x14 scope:global align:4
+mMP_label_word_player = .data:0x00080810; // type:object size:0x10 scope:global align:4
+mMP_label_player = .data:0x00080820; // type:object size:0x14 scope:global align:4
+mMP_label_str_shop = .data:0x00080834; // type:object size:0x4 scope:global align:4 data:string
+mMP_label_word_shop = .data:0x00080838; // type:object size:0x10 scope:global align:4
+mMP_label_shop = .data:0x00080848; // type:object size:0x14 scope:global align:4
+mMP_label_str_police = .data:0x0008085C; // type:object size:0x6 scope:global align:4 data:string
+mMP_label_word_police = .data:0x00080864; // type:object size:0x10 scope:global align:4
+mMP_label_str_police2 = .data:0x00080874; // type:object size:0x7 scope:global align:4 data:string
+mMP_label_word_police2 = .data:0x0008087C; // type:object size:0x10 scope:global align:4
+mMP_label_police = .data:0x0008088C; // type:object size:0x14 scope:global align:4
+mMP_label_str_post = .data:0x000808A0; // type:object size:0x4 scope:global align:4 data:string
+mMP_label_word_post = .data:0x000808A4; // type:object size:0x10 scope:global align:4
+mMP_label_str_post2 = .data:0x000808B4; // type:object size:0x6 scope:global align:4 data:string
+mMP_label_word_post2 = .data:0x000808BC; // type:object size:0x10 scope:global align:4
+mMP_label_post = .data:0x000808CC; // type:object size:0x14 scope:global align:4
+mMP_label_str_shrine = .data:0x000808E0; // type:object size:0x7 scope:global align:4 data:string
+mMP_label_word_shrine = .data:0x000808E8; // type:object size:0x10 scope:global align:4
+mMP_label_str_shrine2 = .data:0x000808F8; // type:object size:0x4 scope:global align:4 data:string
+mMP_label_word_shrine2 = .data:0x000808FC; // type:object size:0x10 scope:global align:4
+mMP_label_shrine = .data:0x0008090C; // type:object size:0x14 scope:global align:4
+mMP_label_str_station = .data:0x00080920; // type:object size:0x5 scope:global align:4 data:string
+mMP_label_word_station = .data:0x00080928; // type:object size:0x10 scope:global align:4
+mMP_label_str_station2 = .data:0x00080938; // type:object size:0x7 scope:global align:4 data:string
+mMP_label_word_station2 = .data:0x00080940; // type:object size:0x10 scope:global align:4
+mMP_label_station = .data:0x00080950; // type:object size:0x14 scope:global align:4
+mMP_label_str_junk = .data:0x00080964; // type:object size:0x4 scope:global align:4 data:string
+mMP_label_word_junk = .data:0x00080968; // type:object size:0x10 scope:global align:4
+mMP_label_junk = .data:0x00080978; // type:object size:0x14 scope:global align:4
+mMP_label_str_museum = .data:0x0008098C; // type:object size:0x6 scope:global align:4 data:string
+mMP_label_word_museum = .data:0x00080994; // type:object size:0x10 scope:global align:4
+mMP_label_museum = .data:0x000809A4; // type:object size:0x14 scope:global align:4
+mMP_label_str_needle = .data:0x000809B8; // type:object size:0x6 scope:global align:4 data:string
+mMP_label_word_needle = .data:0x000809C0; // type:object size:0x10 scope:global align:4
+mMP_label_needle = .data:0x000809D0; // type:object size:0x14 scope:global align:4
+mMP_label_str_port = .data:0x000809E4; // type:object size:0x4 scope:global align:4 data:string
+mMP_label_word_port = .data:0x000809E8; // type:object size:0x10 scope:global align:4
+mMP_label_port = .data:0x000809F8; // type:object size:0x14 scope:global align:4
+mMP_label_data = .data:0x00080A0C; // type:object size:0x2C scope:global align:4
+akiya_str$483 = .data:0x00080A38; // type:object size:0x8 scope:local align:4 data:string
+ovl_move_proc$679 = .data:0x00080A40; // type:object size:0x14 scope:local align:4
+offset_x$696 = .data:0x00080A54; // type:object size:0xC scope:local align:4
+offset_y$697 = .data:0x00080A60; // type:object size:0xC scope:local align:4
+col_g$805 = .data:0x00080A6C; // type:object size:0x48 scope:local align:4
+cursol_scale$806 = .data:0x00080AB4; // type:object size:0x48 scope:local align:4
+land_color$998 = .data:0x00080AFC; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00080B08; // type:label scope:local
+note_frame = .data:0x00080B08; // type:object size:0x50 scope:global align:4
+note_moji = .data:0x00080B58; // type:object size:0x240 scope:global align:4
+mMS_str_title = .data:0x00080D98; // type:object size:0xD scope:global align:4 data:string
+mMS_str_ok = .data:0x00080DA8; // type:object size:0x3 scope:global align:4 data:string
+mMS_str_cancel = .data:0x00080DAC; // type:object size:0x2 scope:global align:4 data:string
+single_se$412 = .data:0x00080DB0; // type:object size:0x20 scope:local align:4
+ovl_move_proc$549 = .data:0x00080DD0; // type:object size:0x14 scope:local align:4
+color_data$558 = .data:0x00080DE4; // type:object size:0x18 scope:local align:4
+sel_str_color_data$559 = .data:0x00080DFC; // type:object size:0x18 scope:local align:4
+mMS_start_button_tex_tbl$560 = .data:0x00080E14; // type:object size:0x8 scope:local align:4
+mMS_y_button_tex_tbl$561 = .data:0x00080E1C; // type:object size:0x8 scope:local align:4
+mMS_x_button_tex_tbl$562 = .data:0x00080E24; // type:object size:0x8 scope:local align:4
+mMS_r_button_tex_tbl$563 = .data:0x00080E2C; // type:object size:0x8 scope:local align:4
+ovl_move_proc$462 = .data:0x00080E38; // type:object size:0x14 scope:local align:4
+...data.0 = .data:0x00080E50; // type:label scope:local
+ovl_move_proc$595 = .data:0x00080E50; // type:object size:0x14 scope:local align:4
+gfx_table$600 = .data:0x00080E64; // type:object size:0x20 scope:local align:4
+gfx_table$724 = .data:0x00080E84; // type:object size:0x20 scope:local align:4
+mark_table_x$725 = .data:0x00080EA4; // type:object size:0x10 scope:local align:4
+mark_table_y$726 = .data:0x00080EB4; // type:object size:0x10 scope:local align:4
+kei_win_st_tex_tbl = .data:0x00080EC8; // type:object size:0x24 scope:global align:4
+move_proc$612 = .data:0x00080EEC; // type:object size:0x10 scope:local align:4
+ovl_move_proc$677 = .data:0x00080EFC; // type:object size:0x14 scope:local align:4
+num_str$765 = .data:0x00080F10; // type:object size:0x8 scope:local align:4 data:string
+january_str$773 = .data:0x00080F18; // type:object size:0x7 scope:local align:4 data:string
+february_str$774 = .data:0x00080F20; // type:object size:0x8 scope:local align:4 data:string
+march_str$775 = .data:0x00080F28; // type:object size:0x5 scope:local align:4 data:string
+april_str$776 = .data:0x00080F30; // type:object size:0x5 scope:local align:4 data:string
+may_str$777 = .data:0x00080F38; // type:object size:0x3 scope:local align:4 data:string
+june_str$778 = .data:0x00080F3C; // type:object size:0x4 scope:local align:4 data:string
+july_str$779 = .data:0x00080F40; // type:object size:0x4 scope:local align:4 data:string
+august_str$780 = .data:0x00080F44; // type:object size:0x6 scope:local align:4 data:string
+september_str$781 = .data:0x00080F4C; // type:object size:0x9 scope:local align:4 data:string
+october_str$782 = .data:0x00080F58; // type:object size:0x7 scope:local align:4 data:string
+november_str$783 = .data:0x00080F60; // type:object size:0x8 scope:local align:4 data:string
+december_str$784 = .data:0x00080F68; // type:object size:0x8 scope:local align:4 data:string
+qqq_str$785 = .data:0x00080F70; // type:object size:0x3 scope:local align:4 data:string
+month_str$786 = .data:0x00080F74; // type:object size:0x68 scope:local align:4
+comma_str$787 = .data:0x00080FDC; // type:object size:0x1 scope:local align:1 data:string
+...data.0 = .data:0x00080FE0; // type:label scope:local
+mRP_money_name = .data:0x00080FE0; // type:object size:0x8 scope:global align:4 data:2byte
+mRP_money_amount = .data:0x00080FE8; // type:object size:0x10 scope:global align:4 data:4byte
+step_money$438 = .data:0x00080FF8; // type:object size:0x1C scope:local align:4
+ovl_move_proc$489 = .data:0x00081014; // type:object size:0x14 scope:local align:4
+kingaku_str$537 = .data:0x00081028; // type:object size:0x9 scope:local align:4 data:string
+kettei_str$538 = .data:0x00081034; // type:object size:0x2 scope:local align:4 data:string
+money_col$539 = .data:0x00081038; // type:object size:0x4 scope:local align:4
+repay_col$540 = .data:0x0008103C; // type:object size:0x4 scope:local align:4
+select_col$541 = .data:0x00081040; // type:object size:0x4 scope:local align:4
+kettei_col$542 = .data:0x00081044; // type:object size:0x4 scope:local align:4
+loan_col$543 = .data:0x00081048; // type:object size:0x4 scope:local align:4
+...data.0 = .data:0x00081050; // type:label scope:local
+viewport_data$469 = .data:0x00081050; // type:object size:0x10 scope:local align:8
+light_data$470 = .data:0x00081060; // type:object size:0x18 scope:local align:8
+viewport_data$621 = .data:0x00081078; // type:object size:0x10 scope:local align:8
+light_data$622 = .data:0x00081088; // type:object size:0x18 scope:local align:8
+furniture_tex_data$758 = .data:0x000810A0; // type:object size:0x8 scope:local align:4
+haniwa_tex_data$759 = .data:0x000810A8; // type:object size:0x8 scope:local align:4
+fossil_tex_data$760 = .data:0x000810B0; // type:object size:0x8 scope:local align:4
+unknown_tex_data$761 = .data:0x000810B8; // type:object size:0x8 scope:local align:4
+present_tex_data$762 = .data:0x000810C0; // type:object size:0x60 scope:local align:4
+binsen_tex_table$763 = .data:0x00081120; // type:object size:0x20 scope:local align:4
+money_tex_table$764 = .data:0x00081140; // type:object size:0x20 scope:local align:4
+tool_tex_table$765 = .data:0x00081160; // type:object size:0x2E0 scope:local align:4
+fish_tex_table$766 = .data:0x00081440; // type:object size:0x140 scope:local align:4
+cloth_tex_table$767 = .data:0x00081580; // type:object size:0x8 scope:local align:4
+etc_tex_table$768 = .data:0x00081588; // type:object size:0x188 scope:local align:4
+carpet_tex_table$769 = .data:0x00081710; // type:object size:0x8 scope:local align:4
+wall_tex_table$770 = .data:0x00081718; // type:object size:0x8 scope:local align:4
+food_tex_table$771 = .data:0x00081720; // type:object size:0x40 scope:local align:4
+plant_tex_table$772 = .data:0x00081760; // type:object size:0x58 scope:local align:4
+minidisk_tex_table$773 = .data:0x000817B8; // type:object size:0x8 scope:local align:4
+etc2_tex_table$774 = .data:0x000817C0; // type:object size:0x80 scope:local align:4
+ticket_tex_table$775 = .data:0x00081840; // type:object size:0x300 scope:local align:4
+insect_tex_table$776 = .data:0x00081B40; // type:object size:0x168 scope:local align:4
+hukuro_tex_table$777 = .data:0x00081CA8; // type:object size:0x30 scope:local align:4
+kabu_tex_table$778 = .data:0x00081CD8; // type:object size:0x20 scope:local align:4
+item_tex_data_table$779 = .data:0x00081CF8; // type:object size:0x40 scope:local align:4
+@833 = .data:0x00081D38; // type:object size:0x3C scope:local align:4
+letter_tex_data_table$837 = .data:0x00081D74; // type:object size:0x30 scope:local align:4
+mSM_program_dlftbl = .data:0x00081DA4; // type:object size:0x3E0 scope:global align:4
+tag_program_dlftbl = .data:0x00082184; // type:object size:0x20 scope:global align:4
+hand_program_dlftbl = .data:0x000821A4; // type:object size:0x20 scope:global align:4
+haniwa_program_dlftbl = .data:0x000821C4; // type:object size:0x20 scope:global align:4
+flg_table$916 = .data:0x000821E4; // type:object size:0x1F scope:local align:4
+data_table$935 = .data:0x00082204; // type:object size:0x1F0 scope:local align:4
+add_trigger$954 = .data:0x000823F4; // type:object size:0x10 scope:local align:4
+move_data$1027 = .data:0x00082404; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00082428; // type:label scope:local
+mTG_item_col_pos = .data:0x00082428; // type:object size:0xA scope:global align:4 data:byte
+mTG_mail_col_pos = .data:0x00082434; // type:object size:0x4 scope:global align:4
+mTG_money_col_pos = .data:0x00082438; // type:object size:0x2 scope:global align:4
+mTG_player_col_pos = .data:0x0008243C; // type:object size:0x2 scope:global align:4
+mTG_bg_col_pos = .data:0x00082440; // type:object size:0x2 scope:global align:4
+mTG_mbox_col_pos = .data:0x00082444; // type:object size:0x4 scope:global align:4
+mTG_haniwa_col_pos = .data:0x00082448; // type:object size:0x8 scope:global align:4
+mTG_collect_col_pos = .data:0x00082450; // type:object size:0x10 scope:global align:4
+mTG_wchange_col_pos = .data:0x00082460; // type:object size:0x2 scope:global align:4
+mTG_cpmail_col_pos = .data:0x00082464; // type:object size:0x8 scope:global align:4
+mTG_cpmail_wc_col_pos = .data:0x0008246C; // type:object size:0x2 scope:global align:4
+mTG_cpmail_ti_col_pos = .data:0x00082470; // type:object size:0x2 scope:global align:4
+mTG_cpedit_col_pos = .data:0x00082474; // type:object size:0x2 scope:global align:4
+mTG_cpedit_end_col_pos = .data:0x00082478; // type:object size:0x2 scope:global align:4
+mTG_catalog_col_pos = .data:0x0008247C; // type:object size:0x2 scope:global align:4
+mTG_catalog_wc_col_pos = .data:0x00082480; // type:object size:0x2 scope:global align:4
+mTG_music_main_col_pos = .data:0x00082484; // type:object size:0x16 scope:global align:4
+mTG_needlework_col_pos = .data:0x0008249C; // type:object size:0x4 scope:global align:4
+mTG_cporiginal_col_pos = .data:0x000824A0; // type:object size:0x6 scope:global align:4
+mTG_inventory_wc_org_col_pos = .data:0x000824A8; // type:object size:0x2 scope:global align:4
+mTG_cporiginal_nw_col_pos = .data:0x000824AC; // type:object size:0x4 scope:global align:4
+mTG_cporiginal_wc_col_pos = .data:0x000824B0; // type:object size:0x2 scope:global align:4
+mTG_cporiginal_ti_col_pos = .data:0x000824B4; // type:object size:0x2 scope:global align:4
+mTG_gba_col_pos = .data:0x000824B8; // type:object size:0x8 scope:global align:4
+mTG_gba_nw_col_pos = .data:0x000824C0; // type:object size:0x4 scope:global align:4
+mTG_card_col_pos = .data:0x000824C4; // type:object size:0x2 scope:global align:4
+mTG_item_line_pos = .data:0x000824C8; // type:object size:0x6 scope:global align:4
+mTG_mail_line_pos = .data:0x000824D0; // type:object size:0xA scope:global align:4
+mTG_money_line_pos = .data:0x000824DC; // type:object size:0x2 scope:global align:4
+mTG_player_line_pos = .data:0x000824E0; // type:object size:0x2 scope:global align:4
+mTG_bg_line_pos = .data:0x000824E4; // type:object size:0x2 scope:global align:4
+mTG_mbox_line_pos = .data:0x000824E8; // type:object size:0xA scope:global align:4
+mTG_haniwa_line_pos = .data:0x000824F4; // type:object size:0x2 scope:global align:4
+mTG_collect_line_pos = .data:0x000824F8; // type:object size:0xA scope:global align:4
+mTG_wchange_line_pos = .data:0x00082504; // type:object size:0x6 scope:global align:4
+mTG_cpmail_wc_line_pos = .data:0x0008250C; // type:object size:0x10 scope:global align:4
+mTG_cpmail_ti_line_pos = .data:0x0008251C; // type:object size:0x2 scope:global align:4
+mTG_cpedit_line_pos = .data:0x00082520; // type:object size:0x6 scope:global align:4
+mTG_cpedit_end_line_pos = .data:0x00082528; // type:object size:0x2 scope:global align:4
+mTG_catalog_line_pos = .data:0x0008252C; // type:object size:0xE scope:global align:4
+mTG_catalog_wc_line_pos = .data:0x0008253C; // type:object size:0x12 scope:global align:4
+mTG_music_main_line_pos = .data:0x00082550; // type:object size:0xA scope:global align:4
+mTG_needlework_line_pos = .data:0x0008255C; // type:object size:0x8 scope:global align:4
+mTG_cporiginal_line_pos = .data:0x00082564; // type:object size:0x8 scope:global align:4
+mTG_inventory_wc_org_line_pos = .data:0x0008256C; // type:object size:0x2 scope:global align:4
+mTG_cporiginal_nw_line_pos = .data:0x00082570; // type:object size:0x8 scope:global align:4
+mTG_cporiginal_wc_line_pos = .data:0x00082578; // type:object size:0x10 scope:global align:4
+mTG_cporiginal_ti_line_pos = .data:0x00082588; // type:object size:0x2 scope:global align:4
+mTG_gba_line_pos = .data:0x0008258C; // type:object size:0x4 scope:global align:4
+mTG_gba_nw_line_pos = .data:0x00082590; // type:object size:0x8 scope:global align:4
+mTG_card_line_pos = .data:0x00082598; // type:object size:0x2 scope:global align:4
+mTG_table_data = .data:0x0008259C; // type:object size:0x144 scope:global align:4
+str_omikuji = .data:0x000826E0; // type:object size:0x7 scope:global align:4 data:string
+str_happy_room = .data:0x000826E8; // type:object size:0x7 scope:global align:4 data:string
+postoffice_str = .data:0x000826F0; // type:object size:0xF scope:global align:4 data:string
+mother_str = .data:0x00082700; // type:object size:0x4 scope:global align:4 data:string
+str_otodokemono = .data:0x00082704; // type:object size:0xC scope:global align:4 data:string
+str_otegami = .data:0x00082710; // type:object size:0x9 scope:global align:4 data:string
+str_title0 = .data:0x0008271C; // type:object size:0x5 scope:global align:4
+str_title1 = .data:0x00082724; // type:object size:0x5 scope:global align:4
+str_title2 = .data:0x0008272C; // type:object size:0x5 scope:global align:4 data:string
+str_title3 = .data:0x00082734; // type:object size:0x5 scope:global align:4
+str_title4 = .data:0x0008273C; // type:object size:0x5 scope:global align:4
+mTG_tag_word_akeru = .data:0x00082744; // type:object size:0x14 scope:global align:4
+mTG_tag_word_ageru = .data:0x00082758; // type:object size:0x14 scope:global align:4
+mTG_tag_word_itadaku = .data:0x0008276C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_dump_item = .data:0x00082780; // type:object size:0x14 scope:global align:4
+mTG_tag_word_field_sign = .data:0x00082794; // type:object size:0x14 scope:global align:4
+mTG_tag_word_dump_mail = .data:0x000827A8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_sell = .data:0x000827BC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_sell_all = .data:0x000827D0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_okuru = .data:0x000827E4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_kakinaosu = .data:0x000827F8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_kabeniharu = .data:0x0008280C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_korewoireru = .data:0x00082820; // type:object size:0x14 scope:global align:4
+mTG_tag_word_zimenniueru = .data:0x00082834; // type:object size:0x14 scope:global align:4
+mTG_tag_word_zimennioku = .data:0x00082848; // type:object size:0x14 scope:global align:4
+mTG_tag_word_suteru = .data:0x0008285C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_tada = .data:0x00082870; // type:object size:0x14 scope:global align:4
+mTG_tag_word_tukamu = .data:0x00082884; // type:object size:0x14 scope:global align:4
+mTG_tag_word_tegamiwokaku = .data:0x00082898; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nedanwotukeru = .data:0x000828AC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_present = .data:0x000828C0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_miserudake = .data:0x000828D4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_yameru = .data:0x000828E8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_heyanioku = .data:0x000828FC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_yukanisiku = .data:0x00082910; // type:object size:0x14 scope:global align:4
+mTG_tag_word_yomu = .data:0x00082924; // type:object size:0x14 scope:global align:4
+mTG_tag_word_watasu = .data:0x00082938; // type:object size:0x14 scope:global align:4
+mTG_tag_word_100 = .data:0x0008294C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_1000 = .data:0x00082960; // type:object size:0x14 scope:global align:4
+mTG_tag_word_10000 = .data:0x00082974; // type:object size:0x14 scope:global align:4
+mTG_tag_word_30000 = .data:0x00082988; // type:object size:0x14 scope:global align:4
+mTG_tag_word_okane = .data:0x0008299C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_beru = .data:0x000829B0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_osameru = .data:0x000829C4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_zenbutukamu = .data:0x000829D8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_1maitukamu = .data:0x000829EC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_1tamatukamu = .data:0x00082A00; // type:object size:0x14 scope:global align:4
+mTG_tag_word_order = .data:0x00082A14; // type:object size:0x14 scope:global align:4
+mTG_tag_word_zimenniumeru = .data:0x00082A28; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nigasu = .data:0x00082A3C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_fly = .data:0x00082A50; // type:object size:0x14 scope:global align:4
+mTG_tag_word_akeru2 = .data:0x00082A64; // type:object size:0x14 scope:global align:4
+mTG_tag_word_kesu = .data:0x00082A78; // type:object size:0x14 scope:global align:4
+mTG_tag_word_hai = .data:0x00082A8C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_iie = .data:0x00082AA0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_dump_mail_mark_conf = .data:0x00082AB4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_dump_mail_mark_exe = .data:0x00082AC8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_mailbox_change_mail = .data:0x00082ADC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_cpmail_change_mail = .data:0x00082AF0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_music_listen = .data:0x00082B04; // type:object size:0x14 scope:global align:4
+mTG_tag_word_music_takeout = .data:0x00082B18; // type:object size:0x14 scope:global align:4
+mTG_tag_word_music_takeout_all = .data:0x00082B2C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_hand_over_curator = .data:0x00082B40; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_select_this = .data:0x00082B54; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_select_put = .data:0x00082B68; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_select_change = .data:0x00082B7C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_st_wear = .data:0x00082B90; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_st_umbrella = .data:0x00082BA4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_cover = .data:0x00082BB8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_carpet = .data:0x00082BCC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_catch = .data:0x00082BE0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_mr_sel_stick = .data:0x00082BF4; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_or_sel_stick = .data:0x00082C08; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_sel_put = .data:0x00082C1C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_put_umbrella = .data:0x00082C30; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_put_wear = .data:0x00082C44; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_stk_pat_nrml = .data:0x00082C58; // type:object size:0x14 scope:global align:4
+mTG_tag_word_nw_stk_pat_turn = .data:0x00082C6C; // type:object size:0x14 scope:global align:4
+mTG_tag_word_remove = .data:0x00082C80; // type:object size:0x14 scope:global align:4
+mTG_tag_word_put_all = .data:0x00082C94; // type:object size:0x14 scope:global align:4
+mTG_tag_word_put_chk = .data:0x00082CA8; // type:object size:0x14 scope:global align:4
+mTG_tag_word_never_mind = .data:0x00082CBC; // type:object size:0x14 scope:global align:4
+mTG_tag_word_change_original = .data:0x00082CD0; // type:object size:0x14 scope:global align:4
+mTG_tag_word_password_item = .data:0x00082CE4; // type:object size:0x14 scope:global align:4
+mTG_tag_str_suteruno = .data:0x00082CF8; // type:object size:0xD scope:global align:4 data:string
+mTG_tag_str_hontoni = .data:0x00082D08; // type:object size:0x6 scope:global align:4 data:string
+mTG_tag_str_iidesuka = .data:0x00082D10; // type:object size:0x6 scope:global align:4 data:string
+mTG_tag_str_put_chk1 = .data:0x00082D18; // type:object size:0xB scope:global align:4 data:string
+mTG_tag_str_put_chk2 = .data:0x00082D24; // type:object size:0xC scope:global align:4 data:string
+mTG_catalog_str = .data:0x00082D30; // type:object size:0x5A scope:global align:4 data:string
+mTG_field_default = .data:0x00082D8C; // type:object size:0xC scope:global align:4
+mTG_field_default_bury = .data:0x00082D98; // type:object size:0x10 scope:global align:4
+mTG_field_letter = .data:0x00082DA8; // type:object size:0x10 scope:global align:4
+mTG_field_letter_bury = .data:0x00082DB8; // type:object size:0x14 scope:global align:4
+mTG_field_sign = .data:0x00082DCC; // type:object size:0x10 scope:global align:4
+mTG_field_balloon = .data:0x00082DDC; // type:object size:0xC scope:global align:4
+mTG_field_hukubukuro = .data:0x00082DE8; // type:object size:0x10 scope:global align:4
+mTG_field_hukubukuro_bury = .data:0x00082DF8; // type:object size:0x14 scope:global align:4
+mTG_field_release = .data:0x00082E0C; // type:object size:0xC scope:global align:4
+mTG_catch_item = .data:0x00082E18; // type:object size:0x8 scope:global align:4
+mTG_field_plant = .data:0x00082E20; // type:object size:0x10 scope:global align:4
+mTG_field_plant_job = .data:0x00082E30; // type:object size:0xC scope:global align:4
+mTG_present_item = .data:0x00082E3C; // type:object size:0xC scope:global align:4
+mTG_room_default = .data:0x00082E48; // type:object size:0xC scope:global align:4
+mTG_room_wall = .data:0x00082E54; // type:object size:0x10 scope:global align:4
+mTG_room_carpet = .data:0x00082E64; // type:object size:0x10 scope:global align:4
+mTG_room_letter = .data:0x00082E74; // type:object size:0x10 scope:global align:4
+mTG_room_hukubukuro = .data:0x00082E84; // type:object size:0x10 scope:global align:4
+mTG_other_letter = .data:0x00082E94; // type:object size:0xC scope:global align:4
+mTG_other_hukubukuro = .data:0x00082EA0; // type:object size:0xC scope:global align:4
+mTG_def_rmail = .data:0x00082EAC; // type:object size:0x10 scope:global align:4
+mTG_room_rmail = .data:0x00082EBC; // type:object size:0xC scope:global align:4
+mTG_def_rmail_pre = .data:0x00082EC8; // type:object size:0x10 scope:global align:4
+mTG_def_smail = .data:0x00082ED8; // type:object size:0x10 scope:global align:4
+mTG_room_smail = .data:0x00082EE8; // type:object size:0xC scope:global align:4
+mTG_def_smail_pre = .data:0x00082EF4; // type:object size:0x10 scope:global align:4
+mTG_dump_mail = .data:0x00082F04; // type:object size:0x8 scope:global align:4
+mTG_dump_item = .data:0x00082F0C; // type:object size:0x8 scope:global align:4
+mTG_money_sack1 = .data:0x00082F14; // type:object size:0x8 scope:global align:4
+mTG_money_sack2 = .data:0x00082F1C; // type:object size:0xC scope:global align:4
+mTG_money_sack3 = .data:0x00082F28; // type:object size:0x10 scope:global align:4
+mTG_money_sack4 = .data:0x00082F38; // type:object size:0x14 scope:global align:4
+mTG_quest_item = .data:0x00082F4C; // type:object size:0x8 scope:global align:4
+mTG_sell_item = .data:0x00082F54; // type:object size:0x8 scope:global align:4
+mTG_give_item = .data:0x00082F5C; // type:object size:0x8 scope:global align:4
+mTG_send_mail = .data:0x00082F64; // type:object size:0x8 scope:global align:4
+mTG_field_ticket = .data:0x00082F6C; // type:object size:0x10 scope:global align:4
+mTG_field_ticket_bury = .data:0x00082F7C; // type:object size:0x14 scope:global align:4
+mTG_room_ticket = .data:0x00082F90; // type:object size:0x10 scope:global align:4
+mTG_catch_ticket = .data:0x00082FA0; // type:object size:0xC scope:global align:4
+mTG_putin_item = .data:0x00082FAC; // type:object size:0x8 scope:global align:4
+mTG_shrine_item = .data:0x00082FB4; // type:object size:0x8 scope:global align:4
+mTG_haniwa_item = .data:0x00082FBC; // type:object size:0x14 scope:global align:4
+mTG_haniwa_put_item = .data:0x00082FD0; // type:object size:0xC scope:global align:4
+mTG_haniwa_get_item = .data:0x00082FDC; // type:object size:0x8 scope:global align:4
+mTG_haniwa_price = .data:0x00082FE4; // type:object size:0x8 scope:global align:4
+mTG_order_item = .data:0x00082FEC; // type:object size:0x8 scope:global align:4
+mTG_cp_delete = .data:0x00082FF4; // type:object size:0x8 scope:global align:4
+mTG_cp_delete2 = .data:0x00082FFC; // type:object size:0x8 scope:global align:4
+mTG_field_mail_mark = .data:0x00083004; // type:object size:0x8 scope:global align:4
+mTG_dump_mail_mark_conf = .data:0x0008300C; // type:object size:0x8 scope:global align:4
+mTG_field_mail_mark2 = .data:0x00083014; // type:object size:0xC scope:global align:4
+mTG_cpack_mail_mark = .data:0x00083020; // type:object size:0xC scope:global align:4
+mTG_sell_all_item = .data:0x0008302C; // type:object size:0x8 scope:global align:4
+mTG_music_select = .data:0x00083034; // type:object size:0xC scope:global align:4
+mTG_music_select_many = .data:0x00083040; // type:object size:0x8 scope:global align:4
+mTG_field_wisp = .data:0x00083048; // type:object size:0x10 scope:global align:4
+mTG_catch_wisp = .data:0x00083058; // type:object size:0xC scope:global align:4
+mTG_tag_hand_over_curator = .data:0x00083064; // type:object size:0x8 scope:global align:4
+mTG_tag_nw_select = .data:0x0008306C; // type:object size:0x8 scope:global align:4
+mTG_tag_nw_my_room = .data:0x00083074; // type:object size:0x10 scope:global align:4
+mTG_tag_nw_ot_room = .data:0x00083084; // type:object size:0xC scope:global align:4
+mTG_tag_nw_ug_room = .data:0x00083090; // type:object size:0x10 scope:global align:4
+mTG_tag_nw_mr_sel_stick = .data:0x000830A0; // type:object size:0x14 scope:global align:4
+mTG_tag_nw_sel_put = .data:0x000830B4; // type:object size:0xC scope:global align:4
+mTG_tag_nw_or_sel_stick = .data:0x000830C0; // type:object size:0xC scope:global align:4
+mTG_tag_nw_sel_stk_pattern = .data:0x000830CC; // type:object size:0xC scope:global align:4
+mTG_tag_remove = .data:0x000830D8; // type:object size:0x8 scope:global align:4
+mTG_tag_put_all = .data:0x000830E0; // type:object size:0x8 scope:global align:4
+mTG_tag_put_chk = .data:0x000830E8; // type:object size:0x8 scope:global align:4
+mTG_field_letters = .data:0x000830F0; // type:object size:0x14 scope:global align:4
+mTG_field_letters_bury = .data:0x00083104; // type:object size:0x18 scope:global align:4
+mTG_room_letters = .data:0x0008311C; // type:object size:0x14 scope:global align:4
+mTG_other_letters = .data:0x00083130; // type:object size:0x10 scope:global align:4
+mTG_change_original = .data:0x00083140; // type:object size:0x8 scope:global align:4
+mTG_taisou_card = .data:0x00083148; // type:object size:0xC scope:global align:4
+mTG_tag_nw_select_change = .data:0x00083154; // type:object size:0x8 scope:global align:4
+mTG_tag_nw_select_put = .data:0x0008315C; // type:object size:0x8 scope:global align:4
+mTG_tag_password_item = .data:0x00083164; // type:object size:0x8 scope:global align:4
+mTG_label_table = .data:0x0008316C; // type:object size:0x270 scope:global align:4 data:4byte
+tag_win_data_pix_arrow_offset_item$598 = .data:0x000833DC; // type:object size:0x10 scope:local align:4
+tag_win_data_pix_arrow_offset_quest$599 = .data:0x000833EC; // type:object size:0x10 scope:local align:4
+tag_win_data_pix_arrow_offset_quest_up$600 = .data:0x000833FC; // type:object size:0x10 scope:local align:4
+tag_win_data_pix_arrow_offset_quest_low$601 = .data:0x0008340C; // type:object size:0x10 scope:local align:4
+tag_win_data_pix_arrow_offset_select$602 = .data:0x0008341C; // type:object size:0x10 scope:local align:4
+tag_win_data_pix$603 = .data:0x0008342C; // type:object size:0x90 scope:local align:4
+font_color_base$745 = .data:0x000834BC; // type:object size:0x6 scope:local align:4
+str_color = .data:0x000834C4; // type:object size:0x1C scope:global align:4
+proc$819 = .data:0x000834E0; // type:object size:0x30 scope:local align:4
+present_str$820 = .data:0x00083510; // type:object size:0x7 scope:local align:4 data:string
+@899 = .data:0x00083518; // type:object size:0x40 scope:local align:4
+@916 = .data:0x00083558; // type:object size:0x28 scope:local align:4
+@967 = .data:0x00083580; // type:object size:0x20 scope:local align:4
+other_arrow_min_offset$1001 = .data:0x000835A0; // type:object size:0x20 scope:local align:4
+other_arrow_offset_dis$1002 = .data:0x000835C0; // type:object size:0x20 scope:local align:4
+tag_add_item_data$1019 = .data:0x000835E0; // type:object size:0x80 scope:local align:4 data:float
+offset_pos$1194 = .data:0x00083660; // type:object size:0x40 scope:local align:4 data:float
+offset_pos$1216 = .data:0x000836A0; // type:object size:0x40 scope:local align:4
+offset_pos$1654 = .data:0x000836E0; // type:object size:0x40 scope:local align:4
+mTG_money_name$1764 = .data:0x00083720; // type:object size:0x8 scope:local align:4 data:2byte
+mTG_money_amount$1765 = .data:0x00083728; // type:object size:0x10 scope:local align:4 data:4byte
+@2164 = .data:0x00083738; // type:object size:0x20 scope:local align:4
+@2457 = .data:0x00083758; // type:object size:0x68 scope:local align:4
+@2529 = .data:0x000837C0; // type:object size:0x64 scope:local align:4
+@2669 = .data:0x00083824; // type:object size:0x34 scope:local align:4
+@2757 = .data:0x00083858; // type:object size:0x64 scope:local align:4
+add_data$3187 = .data:0x000838BC; // type:object size:0x14 scope:local align:4
+table_no$3316 = .data:0x000838D0; // type:object size:0x8 scope:local align:4
+tag_type_field$4075 = .data:0x000838D8; // type:object size:0x40 scope:local align:4
+tag_type_my_room$4076 = .data:0x00083918; // type:object size:0x40 scope:local align:4
+tag_type_other_room$4077 = .data:0x00083958; // type:object size:0x40 scope:local align:4
+tag_type$4078 = .data:0x00083998; // type:object size:0x10 scope:local align:4
+tag_type_wisp_many$4079 = .data:0x000839A8; // type:object size:0x10 scope:local align:4
+tag_type_wisp_one$4080 = .data:0x000839B8; // type:object size:0x10 scope:local align:4
+tag_type_letters$4117 = .data:0x000839C8; // type:object size:0x10 scope:local align:4
+@4211 = .data:0x000839D8; // type:object size:0x44 scope:local align:4
+mail_next_type$4215 = .data:0x00083A1C; // type:object size:0x10 scope:local align:4
+@4471 = .data:0x00083A2C; // type:object size:0x40 scope:local align:4
+@4527 = .data:0x00083A6C; // type:object size:0x68 scope:local align:4
+@4628 = .data:0x00083AD4; // type:object size:0x6C scope:local align:4
+@4701 = .data:0x00083B40; // type:object size:0x60 scope:local align:4
+decide_proc$4705 = .data:0x00083BA0; // type:object size:0x6C scope:local align:4
+table_no$4875 = .data:0x00083C0C; // type:object size:0x8 scope:local align:4
+mTG_select_col_type_on = .data:0x00083C14; // type:object size:0x10 scope:global align:4 data:byte
+mTG_select_col_type_off = .data:0x00083C24; // type:object size:0x10 scope:global align:4
+p_col_table$5180 = .data:0x00083C34; // type:object size:0x40 scope:local align:4
+e_col_table$5181 = .data:0x00083C74; // type:object size:0x40 scope:local align:4
+wc_cporiginal_color_e$5182 = .data:0x00083CB4; // type:object size:0x20 scope:local align:4
+wc_cporiginal_color_p$5183 = .data:0x00083CD4; // type:object size:0x20 scope:local align:4
+wc_cpmail_color_e$5184 = .data:0x00083CF4; // type:object size:0x20 scope:local align:4
+wc_cpmail_color_p$5185 = .data:0x00083D14; // type:object size:0x20 scope:local align:4
+tag_disp_data$5186 = .data:0x00083D34; // type:object size:0x30 scope:local align:4
+quest_up_disp$5187 = .data:0x00083D64; // type:object size:0x10 scope:local align:4
+quest_low_disp$5188 = .data:0x00083D74; // type:object size:0x10 scope:local align:4
+sel_low_disp$5189 = .data:0x00083D84; // type:object size:0x10 scope:local align:4
+cursol_color$5190 = .data:0x00083D94; // type:object size:0x10 scope:local align:4
+sel_col$5286 = .data:0x00083DA4; // type:object size:0xC scope:local align:4
+not_sel_col$5287 = .data:0x00083DB0; // type:object size:0xC scope:local align:4
+draw_turn_normal$5313 = .data:0x00083DBC; // type:object size:0xC scope:local align:4 data:4byte
+draw_turn_omikuji$5314 = .data:0x00083DC8; // type:object size:0xC scope:local align:4 data:4byte
+item_name_color$5373 = .data:0x00083DD4; // type:object size:0x8 scope:local align:4
+wc_cporiginal_color_char$5381 = .data:0x00083DDC; // type:object size:0x20 scope:local align:4
+wc_cpmail_color_char$5385 = .data:0x00083DFC; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x00083E20; // type:label scope:local
+mTI_col_type0 = .data:0x00083E20; // type:object size:0xC scope:global align:4 data:4byte
+mTI_col_type1 = .data:0x00083E2C; // type:object size:0xC scope:global align:4
+ovl_move_proc$558 = .data:0x00083E38; // type:object size:0x14 scope:local align:4
+week_tex$563 = .data:0x00083E4C; // type:object size:0x1C scope:local align:4
+month_tex$564 = .data:0x00083E68; // type:object size:0x30 scope:local align:4
+displayList_table$605 = .data:0x00083E98; // type:object size:0xC scope:local align:4
+str_line_adjust$655 = .data:0x00083EA4; // type:object size:0x11 scope:local align:4 data:string
+str_line_ok$656 = .data:0x00083EB8; // type:object size:0x2 scope:local align:4 data:string
+set_pos$657 = .data:0x00083EBC; // type:object size:0x28 scope:local align:4
+...data.0 = .data:0x00083EE8; // type:label scope:local
+wr_You_cant_hold = .data:0x00083EE8; // type:object size:0xE scope:global align:4 data:string
+wr_any_more_letters_Want_to = .data:0x00083EF8; // type:object size:0x19 scope:global align:4 data:string
+wr_throw_away_some_old_ones = .data:0x00083F14; // type:object size:0x19 scope:global align:4 data:string
+wr_Yes = .data:0x00083F30; // type:object size:0x3 scope:global align:4 data:string
+wr_No = .data:0x00083F34; // type:object size:0x2 scope:global align:4 data:string
+wr_You_cant_pull_out_a_present = .data:0x00083F38; // type:object size:0x1C scope:global align:4 data:string
+wr_when_your_item_screen_is_full = .data:0x00083F54; // type:object size:0x1E scope:global align:4 data:string
+wr_You_cant_carry = .data:0x00083F74; // type:object size:0xF scope:global align:4 data:string
+wr_more_than_99999_Bells = .data:0x00083F84; // type:object size:0x17 scope:global align:4 data:string
+wr_You_cant_mail = .data:0x00083F9C; // type:object size:0xE scope:global align:4 data:string
+wr_turnips_or_living_things = .data:0x00083FAC; // type:object size:0x19 scope:global align:4 data:string
+wr_someone_elses_belongings = .data:0x00083FC8; // type:object size:0x1A scope:global align:4 data:string
+wr_a_wrapped_present = .data:0x00083FE4; // type:object size:0x12 scope:global align:4 data:string
+wr_any_more_letters = .data:0x00083FF8; // type:object size:0x11 scope:global align:4 data:string
+wr_so_you_cant_write_a_new_one = .data:0x0008400C; // type:object size:0x1D scope:global align:4 data:string
+wr_Your_item_screen_is_full = .data:0x0008402C; // type:object size:0x19 scope:global align:4 data:string
+wr_so_you_cant_use_a_pattern = .data:0x00084048; // type:object size:0x1B scope:global align:4 data:string
+wr_an_exercise_card = .data:0x00084064; // type:object size:0x11 scope:global align:4 data:string
+wr_You_cant_put = .data:0x00084078; // type:object size:0xD scope:global align:4 data:string
+wr_any_more_items_out = .data:0x00084088; // type:object size:0x13 scope:global align:4 data:string
+wr_any_more_items_there = .data:0x0008409C; // type:object size:0x15 scope:global align:4 data:string
+wr_This_diary_is_locked = .data:0x000840B4; // type:object size:0x15 scope:global align:4 data:string
+wr_You_cant_pull_anything_out = .data:0x000840CC; // type:object size:0x1B scope:global align:4 data:string
+wr_Theres_already_music_in_there = .data:0x000840E8; // type:object size:0x1F scope:global align:4 data:string
+wr_You_cant_drop = .data:0x00084108; // type:object size:0xE scope:global align:4 data:string
+wr_any_more_items_here = .data:0x00084118; // type:object size:0x14 scope:global align:4 data:string
+wr_You_cant_plant = .data:0x0008412C; // type:object size:0xF scope:global align:4 data:string
+wr_anything_else_here = .data:0x0008413C; // type:object size:0x13 scope:global align:4 data:string
+wr_You_cant_open_a_bag = .data:0x00084150; // type:object size:0x14 scope:global align:4 data:string
+wr_unless_you_have_room = .data:0x00084164; // type:object size:0x14 scope:global align:4 data:string
+wr_for_three_more_items = .data:0x00084178; // type:object size:0x15 scope:global align:4 data:string
+wr_You_cant_plant_anything_here = .data:0x00084190; // type:object size:0x1E scope:global align:4 data:string
+wr_You_cant_put_a_sign_up_here = .data:0x000841B0; // type:object size:0x1D scope:global align:4 data:string
+wr_You_can_put_signs_up_only = .data:0x000841D0; // type:object size:0x19 scope:global align:4 data:string
+wr_in_your_own_village = .data:0x000841EC; // type:object size:0x14 scope:global align:4 data:string
+wr_You_cant_put_signs_on_the_island = .data:0x00084200; // type:object size:0x22 scope:global align:4 data:string
+wr_You_cant_leave = .data:0x00084224; // type:object size:0xF scope:global align:4 data:string
+wr_this_NES_on_the_island = .data:0x00084234; // type:object size:0x17 scope:global align:4 data:string
+wr_You_dont_have_room = .data:0x0008424C; // type:object size:0x13 scope:global align:4 data:string
+wr_to_write_any_more = .data:0x00084260; // type:object size:0x12 scope:global align:4 data:string
+wr_You_entered_letters = .data:0x00084274; // type:object size:0x13 scope:global align:4 data:string
+wr_that_have_nothing_to_do = .data:0x00084288; // type:object size:0x17 scope:global align:4 data:string
+wr_with_secret_codes = .data:0x000842A0; // type:object size:0x12 scope:global align:4 data:string
+wr_this_item = .data:0x000842B4; // type:object size:0xA scope:global align:4 data:string
+wr_mailbox_line = .data:0x000842C0; // type:object size:0x50 scope:global align:4
+wr_pr_leave_line = .data:0x00084310; // type:object size:0x20 scope:global align:4
+wr_money_line = .data:0x00084330; // type:object size:0x20 scope:global align:4
+wr_pr_food_line = .data:0x00084350; // type:object size:0x20 scope:global align:4
+wr_pr_quest_line = .data:0x00084370; // type:object size:0x20 scope:global align:4
+wr_present_mail_line = .data:0x00084390; // type:object size:0x20 scope:global align:4
+wr_write_line = .data:0x000843B0; // type:object size:0x30 scope:global align:4
+wr_original_line = .data:0x000843E0; // type:object size:0x20 scope:global align:4
+wr_pr_card_line = .data:0x00084400; // type:object size:0x20 scope:global align:4
+wr_put_max_furniture_line = .data:0x00084420; // type:object size:0x20 scope:global align:4
+wr_put_furniture_line = .data:0x00084440; // type:object size:0x20 scope:global align:4
+wr_lock_diary_line = .data:0x00084460; // type:object size:0x10 scope:global align:4
+wr_music_line = .data:0x00084470; // type:object size:0x20 scope:global align:4
+wr_music2_line = .data:0x00084490; // type:object size:0x10 scope:global align:4
+wr_hukubukuro_open_line = .data:0x000844A0; // type:object size:0x30 scope:global align:4
+wr_put_plant_line = .data:0x000844D0; // type:object size:0x10 scope:global align:4
+wr_put_sign_line = .data:0x000844E0; // type:object size:0x10 scope:global align:4
+wr_put_sign_other_line = .data:0x000844F0; // type:object size:0x20 scope:global align:4
+wr_put_sign_island_line = .data:0x00084510; // type:object size:0x10 scope:global align:4
+wr_put_fami_line = .data:0x00084520; // type:object size:0x20 scope:global align:4
+wr_word_over_line = .data:0x00084540; // type:object size:0x20 scope:global align:4
+wr_put_item_line = .data:0x00084560; // type:object size:0x20 scope:global align:4
+wr_pw_chk_line = .data:0x00084580; // type:object size:0x30 scope:global align:4
+wr_pr_fork_line = .data:0x000845B0; // type:object size:0x20 scope:global align:4
+wr_win_data = .data:0x000845D0; // type:object size:0x1C0 scope:global align:4
+add$401 = .data:0x00084790; // type:object size:0x8 scope:local align:4
+ovl_move_proc$443 = .data:0x00084798; // type:object size:0x14 scope:local align:4
+col_type0$493 = .data:0x000847AC; // type:object size:0xC scope:local align:4
+col_type1$494 = .data:0x000847B8; // type:object size:0xC scope:local align:4
+col_type2$495 = .data:0x000847C4; // type:object size:0xC scope:local align:4
+...data.0 = .data:0x000847D0; // type:label scope:local
+ovl_move_proc$431 = .data:0x000847D0; // type:object size:0x14 scope:local align:4
+waku_color$436 = .data:0x000847E4; // type:object size:0x6 scope:local align:4
+moji_color$481 = .data:0x000847EC; // type:object size:0x6 scope:local align:4
+title_str$482 = .data:0x000847F4; // type:object size:0x11 scope:local align:4 data:string
+cursol_baseX$483 = .data:0x00084808; // type:object size:0x8 scope:local align:4
+cursol_baseY$484 = .data:0x00084810; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x00084818; // type:label scope:local
+ovl_move_proc$433 = .data:0x00084818; // type:object size:0x14 scope:local align:4
+title_str$485 = .data:0x0008482C; // type:object size:0x14 scope:local align:4 data:string
+cursol_baseX$486 = .data:0x00084840; // type:object size:0x8 scope:local align:4
+cursol_baseY$487 = .data:0x00084848; // type:object size:0x8 scope:local align:4
+profile_tbl = .data:0x00084850; // type:object size:0x14 scope:local align:4
+Weather_Profile = .data:0x00084864; // type:object size:0x24 scope:global align:4
+DemoWeatherTbl$662 = .data:0x00084888; // type:object size:0x14 scope:local align:4
+iam_weather_fine = .data:0x000848A0; // type:object size:0x14 scope:global align:4
+...data.0 = .data:0x000848B8; // type:label scope:local
+aWeather_rain_picha_disp = .data:0x000848B8; // type:object size:0x10 scope:global align:4 data:float
+iam_weather_rain = .data:0x000848C8; // type:object size:0x14 scope:global align:4
+rain_scale$478 = .data:0x000848DC; // type:object size:0xC scope:local align:4
+picha_scale$479 = .data:0x000848E8; // type:object size:0xC scope:local align:4
+iam_weather_snow = .data:0x000848F8; // type:object size:0x14 scope:global align:4
+iam_weather_sakura = .data:0x00084910; // type:object size:0x14 scope:global align:4
+ef_otiba_model_tbl = .data:0x00084928; // type:object size:0xC scope:global align:4
+iam_weather_leaf = .data:0x00084934; // type:object size:0x14 scope:global align:4
+iam_ef_ami_mizu = .data:0x00084948; // type:object size:0x18 scope:global align:4
+ef_anahikari_model_tbl = .data:0x00084960; // type:object size:0x8 scope:global align:4
+ef_anahikari_anime_tbl = .data:0x00084968; // type:object size:0x8 scope:global align:4
+iam_ef_anahikari = .data:0x00084970; // type:object size:0x18 scope:global align:4
+iam_ef_ase = .data:0x00084988; // type:object size:0x18 scope:global align:4
+eAS2_model_table = .data:0x000849A0; // type:object size:0x10 scope:global align:4
+iam_ef_ase2 = .data:0x000849B0; // type:object size:0x18 scope:global align:4
+iam_ef_ase_ch = .data:0x000849C8; // type:object size:0x18 scope:global align:4
+eASC_scale_table = .data:0x000849E0; // type:object size:0x28 scope:global align:4
+iam_ef_break_axe = .data:0x00084A08; // type:object size:0x18 scope:global align:4
+iam_ef_bubu = .data:0x00084A20; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00084A38; // type:label scope:local
+iam_ef_buruburu = .data:0x00084A38; // type:object size:0x18 scope:global align:4
+eBR_scale_x = .data:0x00084A50; // type:object size:0x8 scope:global align:4
+eBR_scale_z = .data:0x00084A58; // type:object size:0x8 scope:global align:4
+eBR_tex_anime_table = .data:0x00084A60; // type:object size:0x8 scope:global align:4
+iam_ef_bush_happa = .data:0x00084A68; // type:object size:0x18 scope:global align:4
+iam_ef_bush_yuki = .data:0x00084A80; // type:object size:0x18 scope:global align:4
+light_make_pos = .data:0x00084A98; // type:object size:0xC0 scope:global align:4
+iam_ef_car_blight = .data:0x00084B58; // type:object size:0x18 scope:global align:4
+iam_ef_car_light = .data:0x00084B70; // type:object size:0x18 scope:global align:4
+iam_ef_clacker = .data:0x00084B88; // type:object size:0x18 scope:global align:4
+angle_tbl$373 = .data:0x00084BA0; // type:object size:0x6 scope:local align:4
+iam_ef_coin = .data:0x00084BC0; // type:object size:0x18 scope:global align:4
+ef_coin_gold_pal = .data:0x00084BE0; // type:object size:0x20 scope:global align:32
+ef_coin_silver_pal = .data:0x00084C00; // type:object size:0x20 scope:global align:32
+eCoin_pal_table = .data:0x00084C20; // type:object size:0x8 scope:global align:4
+iam_ef_dash_asimoto = .data:0x00084C28; // type:object size:0x18 scope:global align:4
+@500 = .data:0x00084C40; // type:object size:0x5C scope:local align:4
+asimoto_func_table$512 = .data:0x00084C9C; // type:object size:0x10 scope:local align:4
+iam_ef_dig_hole = .data:0x00084CB0; // type:object size:0x18 scope:global align:4
+fill_hole_pos_tbl$385 = .data:0x00084CC8; // type:object size:0x24 scope:local align:4
+init_data$386 = .data:0x00084CEC; // type:object size:0x30 scope:local align:4
+...data.0 = .data:0x00084D20; // type:label scope:local
+eDig_Mud_tex_tbl = .data:0x00084D20; // type:object size:0x10 scope:global align:4
+eDig_Mud_Sand_tex_tbl = .data:0x00084D30; // type:object size:0x10 scope:global align:4
+eDig_Mud_Mogura_tex_tbl = .data:0x00084D40; // type:object size:0x10 scope:global align:4
+iam_ef_dig_mud = .data:0x00084D50; // type:object size:0x18 scope:global align:4
+iam_ef_dig_scoop = .data:0x00084D68; // type:object size:0x18 scope:global align:4
+iam_ef_douzou_light = .data:0x00084D80; // type:object size:0x18 scope:global align:4
+iam_ef_doyon = .data:0x00084D98; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00084DB0; // type:label scope:local
+eDT_texture_table = .data:0x00084DB0; // type:object size:0x10 scope:global align:4
+iam_ef_dust = .data:0x00084DC0; // type:object size:0x18 scope:global align:4
+eDT_prim_table = .data:0x00084DD8; // type:object size:0x28 scope:global align:4
+eDT_2tile_texture_idx = .data:0x00084E00; // type:object size:0x24 scope:global align:4
+eDT_AlphaPtn = .data:0x00084E24; // type:object size:0x12 scope:global align:4
+eDT_prim_f = .data:0x00084E38; // type:object size:0x12 scope:global align:4
+iam_ef_flash = .data:0x00084E50; // type:object size:0x18 scope:global align:4
+light_color$383 = .data:0x00084E68; // type:object size:0x4 scope:local align:4 data:4byte
+iam_ef_flashC = .data:0x00084E6C; // type:object size:0x18 scope:global align:4
+@468 = .data:0x00084E84; // type:object size:0xAC scope:local align:4
+iam_ef_footprint = .data:0x00084F30; // type:object size:0x18 scope:global align:4
+eFootPrint_area_offset_data = .data:0x00084F48; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x00084F70; // type:label scope:local
+eFuro_Yuge_texture_table = .data:0x00084F70; // type:object size:0x10 scope:global align:4
+iam_ef_furo_yuge = .data:0x00084F80; // type:object size:0x18 scope:global align:4
+eFuro_Yuge_2tile_texture_idx = .data:0x00084F98; // type:object size:0x2C scope:global align:4
+eFuro_Yuge_prim_f = .data:0x00084FC4; // type:object size:0x16 scope:global align:4
+iam_ef_gimonhu = .data:0x00084FE0; // type:object size:0x18 scope:global align:4
+eGM_scale_data = .data:0x00084FF8; // type:object size:0xD0 scope:global align:4
+iam_ef_goki = .data:0x000850C8; // type:object size:0x18 scope:global align:4
+iam_ef_ha = .data:0x000850E0; // type:object size:0x18 scope:global align:4
+eHA_angle_z_data = .data:0x000850F8; // type:object size:0x4 scope:global align:4
+iam_ef_halloween = .data:0x00085100; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00085118; // type:label scope:local
+eHalloween_texture_table = .data:0x00085118; // type:object size:0x10 scope:global align:4
+eHalloween_2tile_texture_idx = .data:0x00085128; // type:object size:0x12 scope:global align:4
+eHalloween_prim_f = .data:0x0008513C; // type:object size:0x9 scope:global align:4
+iam_ef_halloween_smoke = .data:0x00085148; // type:object size:0x18 scope:global align:4
+iam_ef_hanabi_botan1 = .data:0x00085160; // type:object size:0x18 scope:global align:4
+botan1_light$393 = .data:0x00085178; // type:object size:0x8 scope:local align:4
+eHanabiBotan1_morph_data1 = .data:0x00085180; // type:object size:0x6C scope:global align:4
+eHanabiBotan1_morph_data2 = .data:0x000851EC; // type:object size:0x6C scope:global align:4
+eHanabiBotan1_morph_table = .data:0x00085258; // type:object size:0x8 scope:global align:4
+iam_ef_hanabi_botan2 = .data:0x00085260; // type:object size:0x18 scope:global align:4
+botan2_light$393 = .data:0x00085278; // type:object size:0x4 scope:local align:4 data:4byte
+eHanabiBotan2_morph_data_out = .data:0x0008527C; // type:object size:0x6C scope:global align:4
+eHanabiBotan2_morph_data_in = .data:0x000852E8; // type:object size:0x6C scope:global align:4
+iam_ef_hanabi_dummy = .data:0x00085358; // type:object size:0x18 scope:global align:4
+dummy_light$389 = .data:0x00085370; // type:object size:0x18 scope:local align:4
+iam_ef_hanabi_hoshi = .data:0x00085388; // type:object size:0x18 scope:global align:4
+hoshi_light$393 = .data:0x000853A0; // type:object size:0x8 scope:local align:4
+eHanabiHoshi_morph_data1 = .data:0x000853A8; // type:object size:0x6C scope:global align:4
+eHanabiHoshi_morph_data2 = .data:0x00085414; // type:object size:0x6C scope:global align:4
+eHanabiHoshi_morph_table = .data:0x00085480; // type:object size:0x8 scope:global align:4
+iam_ef_hanabi_set = .data:0x00085488; // type:object size:0x18 scope:global align:4
+eHanabiSet_sqdt1 = .data:0x000854A0; // type:object size:0x14 scope:global align:4
+eHanabiSet_set1 = .data:0x000854B4; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt2 = .data:0x000854BC; // type:object size:0x14 scope:global align:4
+eHanabiSet_set2 = .data:0x000854D0; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt3 = .data:0x000854D8; // type:object size:0x14 scope:global align:4
+eHanabiSet_set3 = .data:0x000854EC; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt4 = .data:0x000854F4; // type:object size:0x14 scope:global align:4
+eHanabiSet_set4 = .data:0x00085508; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt5 = .data:0x00085510; // type:object size:0x20 scope:global align:4
+eHanabiSet_set5 = .data:0x00085530; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt6 = .data:0x00085538; // type:object size:0x20 scope:global align:4
+eHanabiSet_set6 = .data:0x00085558; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt7 = .data:0x00085560; // type:object size:0x20 scope:global align:4
+eHanabiSet_set7 = .data:0x00085580; // type:object size:0x8 scope:global align:4
+eHanabiSet_sqdt8 = .data:0x00085588; // type:object size:0x20 scope:global align:4
+eHanabiSet_set8 = .data:0x000855A8; // type:object size:0x8 scope:global align:4
+eHanabiSet_set_table = .data:0x000855B0; // type:object size:0x20 scope:global align:4
+iam_ef_hanabi_switch = .data:0x000855D0; // type:object size:0x18 scope:global align:4
+iam_ef_hanabi_yanagi = .data:0x000855E8; // type:object size:0x18 scope:global align:4
+yanagi_light$391 = .data:0x00085600; // type:object size:0x4 scope:local align:4 data:4byte
+eHanabiYanagi_morph_data_out = .data:0x00085604; // type:object size:0x6C scope:global align:4
+eHanabiYanagi_morph_data_in = .data:0x00085670; // type:object size:0x6C scope:global align:4
+ef_hanabira_model_tbl = .data:0x000856E0; // type:object size:0x10 scope:global align:4
+iam_ef_hanabira = .data:0x000856F0; // type:object size:0x18 scope:global align:4
+iam_ef_hanatiri = .data:0x00085708; // type:object size:0x18 scope:global align:4
+iam_ef_hirameki_den = .data:0x00085720; // type:object size:0x18 scope:global align:4
+eHiramekiD_01f_primR_envRG = .data:0x00085738; // type:object size:0x2 scope:global align:4
+eHiramekiD_01f_primGB = .data:0x0008573C; // type:object size:0x2 scope:global align:4
+iam_ef_hirameki_hikari = .data:0x00085740; // type:object size:0x18 scope:global align:4
+iam_ef_ikigire = .data:0x00085758; // type:object size:0x18 scope:global align:4
+iam_ef_impact_star = .data:0x00085770; // type:object size:0x18 scope:global align:4
+iam_ef_kagu_happa = .data:0x00085788; // type:object size:0x18 scope:global align:4
+iam_ef_kamifubuki = .data:0x000857A0; // type:object size:0x18 scope:global align:4
+unit_axis$382 = .data:0x000857B8; // type:object size:0xC scope:local align:4
+rgb_tbl$454 = .data:0x000857C4; // type:object size:0x18 scope:local align:4
+iam_ef_kangaeru = .data:0x000857E0; // type:object size:0x18 scope:global align:4
+iam_ef_kantanhu = .data:0x000857F8; // type:object size:0x18 scope:global align:4
+eKT_scale_data = .data:0x00085810; // type:object size:0xD0 scope:global align:4
+iam_ef_kasamizu = .data:0x000858E0; // type:object size:0x18 scope:global align:4
+base_offset$381 = .data:0x000858F8; // type:object size:0xC scope:local align:4
+eKasamizutama_scale_table = .data:0x00085908; // type:object size:0x28 scope:global align:4
+iam_ef_kasamizutama = .data:0x00085930; // type:object size:0x18 scope:global align:4
+iam_ef_kaze = .data:0x00085948; // type:object size:0x18 scope:global align:4
+iam_ef_kaze_happa = .data:0x00085960; // type:object size:0x18 scope:global align:4
+iam_ef_kigae = .data:0x00085978; // type:object size:0x18 scope:global align:4
+iam_ef_kigae_light = .data:0x00085990; // type:object size:0x18 scope:global align:4
+iam_ef_kikuzu = .data:0x000859A8; // type:object size:0x18 scope:global align:4
+iam_ef_killer = .data:0x000859C0; // type:object size:0x18 scope:global align:4
+xyz0$385 = .data:0x000859D8; // type:object size:0xC scope:local align:4 data:4byte
+@462 = .data:0x000859E4; // type:object size:0xAC scope:local align:4
+iam_ef_kisha_kemuri = .data:0x00085A90; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00085AA8; // type:label scope:local
+eKONP_model_table = .data:0x00085AA8; // type:object size:0xC scope:global align:4
+iam_ef_konpu = .data:0x00085AB4; // type:object size:0x18 scope:global align:4
+default_start_offset$381 = .data:0x00085ACC; // type:object size:0xC scope:local align:4 data:4byte
+eKONP_prim_color_data = .data:0x00085AD8; // type:object size:0x14 scope:global align:4
+eKONP_env_color_data = .data:0x00085AEC; // type:object size:0x14 scope:global align:4
+...data.0 = .data:0x00085B00; // type:label scope:local
+eKPun_yuge_texture_table = .data:0x00085B00; // type:object size:0x14 scope:global align:4
+iam_ef_kpun = .data:0x00085B14; // type:object size:0x18 scope:global align:4
+random_start_place_offset$373 = .data:0x00085B2C; // type:object size:0x78 scope:local align:4
+eKPun_texture_anime_idx = .data:0x00085BA4; // type:object size:0x34 scope:global align:4
+eKPun_prim_f_table = .data:0x00085BD8; // type:object size:0xD scope:global align:4
+scale_y_table$406 = .data:0x00085BE8; // type:object size:0x14 scope:local align:4
+iam_ef_kyousou_onpu = .data:0x00085C00; // type:object size:0x18 scope:global align:4
+iam_ef_lovelove = .data:0x00085C18; // type:object size:0x18 scope:global align:4
+iam_ef_lovelove2 = .data:0x00085C30; // type:object size:0x18 scope:global align:4
+iam_ef_lovelove_heart = .data:0x00085C48; // type:object size:0x18 scope:global align:4
+iam_ef_make_hem = .data:0x00085C60; // type:object size:0x18 scope:global align:4
+iam_ef_make_hem_kira = .data:0x00085C78; // type:object size:0x18 scope:global align:4
+xyz0$506 = .data:0x00085C90; // type:object size:0xC scope:local align:4 data:4byte
+iam_ef_make_hem_light = .data:0x00085C9C; // type:object size:0x18 scope:global align:4
+iam_ef_mizutama = .data:0x00085CB8; // type:object size:0x18 scope:global align:4
+mzt_spd_data$381 = .data:0x00085CD0; // type:object size:0x60 scope:local align:4
+mizutama_vec_angle$382 = .data:0x00085D30; // type:object size:0x16 scope:local align:4
+@440 = .data:0x00085D48; // type:object size:0xE scope:local align:4 data:string
+mizutama_tex_tbl$445 = .data:0x00085D58; // type:object size:0x10 scope:local align:4
+eMotiyuge_tex_tbl = .data:0x00085D68; // type:object size:0xC scope:global align:4
+iam_ef_motiyuge = .data:0x00085D74; // type:object size:0x18 scope:global align:4
+iam_ef_muka = .data:0x00085D90; // type:object size:0x18 scope:global align:4
+iam_ef_naku = .data:0x00085DA8; // type:object size:0x18 scope:global align:4
+iam_ef_namida = .data:0x00085DC0; // type:object size:0x18 scope:global align:4
+iam_ef_neboke = .data:0x00085DD8; // type:object size:0x18 scope:global align:4
+iam_ef_neboke_akubi = .data:0x00085DF0; // type:object size:0x18 scope:global align:4
+scale_base$404 = .data:0x00085E08; // type:object size:0x8 scope:local align:4
+iam_ef_neboke_awa = .data:0x00085E10; // type:object size:0x18 scope:global align:4
+iam_ef_night13_moon = .data:0x00085E28; // type:object size:0x18 scope:global align:4
+iam_ef_night15_moon = .data:0x00085E40; // type:object size:0x18 scope:global align:4
+iam_ef_ongen = .data:0x00085E58; // type:object size:0x18 scope:global align:4
+timer_table$381 = .data:0x00085E70; // type:object size:0x6 scope:local align:4
+scale_table$400 = .data:0x00085E78; // type:object size:0xC scope:local align:4
+disp_table$401 = .data:0x00085E84; // type:object size:0xC scope:local align:4
+iam_ef_otikomi = .data:0x00085E90; // type:object size:0x18 scope:global align:4
+offset$373 = .data:0x00085EA8; // type:object size:0xC scope:local align:4
+iam_ef_otosiana = .data:0x00085EB8; // type:object size:0x18 scope:global align:4
+angle_tbl$391 = .data:0x00085ED0; // type:object size:0x6 scope:local align:4
+iam_ef_pun = .data:0x00085ED8; // type:object size:0x18 scope:global align:4
+iam_ef_pun_sekimen = .data:0x00085EF0; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x00085F08; // type:label scope:local
+ePunYuge_yuge_texture_table = .data:0x00085F08; // type:object size:0x14 scope:global align:4
+iam_ef_pun_yuge = .data:0x00085F1C; // type:object size:0x18 scope:global align:4
+ePunYuge_texture_anime_idx = .data:0x00085F34; // type:object size:0x34 scope:global align:4
+ePunYuge_prim_f_table = .data:0x00085F68; // type:object size:0xD scope:global align:4
+iam_ef_reset_hole = .data:0x00085F78; // type:object size:0x18 scope:global align:4
+angle_tbl$410 = .data:0x00085F90; // type:object size:0x6 scope:local align:4
+angle_tbl$428 = .data:0x00085F98; // type:object size:0x6 scope:local align:4
+iam_ef_sandsplash = .data:0x00085FA0; // type:object size:0x18 scope:global align:4
+eSunahane_pattern_table = .data:0x00085FB8; // type:object size:0x20 scope:global align:4
+iam_ef_shock = .data:0x00085FD8; // type:object size:0x18 scope:global align:4
+eSK_prim_table = .data:0x00085FF0; // type:object size:0x38 scope:global align:4
+eSK_scale_table = .data:0x00086028; // type:object size:0x38 scope:global align:4
+iam_ef_shooting = .data:0x00086060; // type:object size:0x18 scope:global align:4
+iam_ef_shooting_kira = .data:0x00086078; // type:object size:0x18 scope:global align:4
+scale0$381 = .data:0x00086090; // type:object size:0xC scope:local align:4 data:4byte
+iam_ef_shooting_set = .data:0x000860A0; // type:object size:0x18 scope:global align:4
+iam_ef_siawase_hana = .data:0x000860B8; // type:object size:0x18 scope:global align:4
+iam_ef_siawase_hana_ch = .data:0x000860D0; // type:object size:0x18 scope:global align:4
+eSSHNC_pink_prim = .data:0x000860E8; // type:object size:0x4 scope:global align:4
+eSSHNC_pink_env = .data:0x000860EC; // type:object size:0x4 scope:global align:4
+eSSHNC_yellow_prim = .data:0x000860F0; // type:object size:0x4 scope:global align:4
+eSSHNC_yellow_env = .data:0x000860F4; // type:object size:0x4 scope:global align:4
+eSSHNC_color_info = .data:0x000860F8; // type:object size:0x10 scope:global align:4
+iam_ef_siawase_hikari = .data:0x00086108; // type:object size:0x18 scope:global align:4
+iam_ef_sibuki = .data:0x00086120; // type:object size:0x18 scope:global align:4
+eSibuki_DrawSibukiPtn = .data:0x00086138; // type:object size:0x18 scope:global align:4
+iam_ef_situren = .data:0x00086150; // type:object size:0x18 scope:global align:4
+iam_ef_slip = .data:0x00086168; // type:object size:0x18 scope:global align:4
+iam_ef_slip_footprint = .data:0x00086180; // type:object size:0x18 scope:global align:4
+eSlipFootPrint_area_offset_data = .data:0x00086198; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x000861C0; // type:label scope:local
+eSoba_Yuge_texture_table = .data:0x000861C0; // type:object size:0x10 scope:global align:4
+iam_ef_soba_yuge = .data:0x000861D0; // type:object size:0x18 scope:global align:4
+eSoba_Yuge_2tile_texture_idx = .data:0x000861E8; // type:object size:0x2C scope:global align:4
+eSoba_Yuge_prim_f = .data:0x00086214; // type:object size:0x16 scope:global align:4
+...data.0 = .data:0x00086230; // type:label scope:local
+Steam_tex_tbl = .data:0x00086230; // type:object size:0x10 scope:global align:4
+Steam_tex_indx = .data:0x00086240; // type:object size:0x1E scope:global align:4
+Steam_plod_tbl = .data:0x00086260; // type:object size:0xF scope:global align:4
+iam_ef_steam = .data:0x00086270; // type:object size:0x18 scope:global align:4
+iam_ef_string = .data:0x00086288; // type:object size:0x18 scope:global align:4
+eString_string1 = .data:0x000862A0; // type:object size:0xA scope:global align:4
+eString_string1_class = .data:0x000862AC; // type:object size:0xC scope:global align:4
+eString_string2 = .data:0x000862B8; // type:object size:0x9 scope:global align:4
+eString_string2_class = .data:0x000862C4; // type:object size:0xC scope:global align:4
+eString_string_table = .data:0x000862D0; // type:object size:0x8 scope:global align:4
+iam_ef_suisou_awa = .data:0x000862D8; // type:object size:0x18 scope:global align:4
+suisou_pos = .data:0x000862F0; // type:object size:0x3C scope:local align:4
+iam_ef_swing_axe = .data:0x00086330; // type:object size:0x18 scope:global align:4
+iam_ef_swing_net = .data:0x00086348; // type:object size:0x18 scope:global align:4
+iam_ef_swing_rod = .data:0x00086360; // type:object size:0x18 scope:global align:4
+eTaberu_model_table = .data:0x00086378; // type:object size:0x10 scope:global align:4
+iam_ef_taberu = .data:0x00086388; // type:object size:0x18 scope:global align:4
+iam_ef_takurami = .data:0x000863A0; // type:object size:0x18 scope:global align:4
+eTM_direct2disp = .data:0x000863B8; // type:object size:0x8 scope:global align:4
+iam_ef_takurami_kira = .data:0x000863C0; // type:object size:0x18 scope:global align:4
+tamaire_model = .data:0x000863D8; // type:object size:0x8 scope:global align:4
+iam_ef_tamaire = .data:0x000863E0; // type:object size:0x18 scope:global align:4
+iam_ef_tape = .data:0x000863F8; // type:object size:0x18 scope:global align:4
+iam_ef_tent_lamp = .data:0x00086410; // type:object size:0x18 scope:global align:4
+iam_ef_tumble = .data:0x00086428; // type:object size:0x18 scope:global align:4
+@516 = .data:0x00086440; // type:object size:0x5C scope:local align:4
+iam_ef_tumble_bodyprint = .data:0x000864A0; // type:object size:0x18 scope:global align:4
+...data.0 = .data:0x000864B8; // type:label scope:local
+eTDT_texture_table = .data:0x000864B8; // type:object size:0x10 scope:global align:4
+iam_ef_tumble_dust = .data:0x000864C8; // type:object size:0x18 scope:global align:4
+eTDT_2tile_texture_idx = .data:0x000864E0; // type:object size:0x1E scope:global align:4
+eTDT_prim_f = .data:0x00086500; // type:object size:0xF scope:global align:4
+iam_ef_turi_hamon = .data:0x00086510; // type:object size:0x18 scope:global align:4
+iam_ef_turi_hane0 = .data:0x00086528; // type:object size:0x18 scope:global align:4
+eTuri_Hane0Ptn = .data:0x00086540; // type:object size:0x20 scope:global align:4
+iam_ef_turi_hane1 = .data:0x00086560; // type:object size:0x18 scope:global align:4
+eTuri_Hane1Ptn = .data:0x00086578; // type:object size:0x20 scope:global align:4
+iam_ef_turi_mizu = .data:0x00086598; // type:object size:0x18 scope:global align:4
+iam_ef_turi_suiteki = .data:0x000865B0; // type:object size:0x18 scope:global align:4
+@406 = .data:0x000865C8; // type:object size:0x12 scope:local align:4 data:string
+iam_ef_turn_asimoto = .data:0x000865E0; // type:object size:0x18 scope:global align:4
+iam_ef_turn_footprint = .data:0x000865F8; // type:object size:0x18 scope:global align:4
+eTurnFootPrint_area_offset_data = .data:0x00086610; // type:object size:0x24 scope:global align:4
+iam_ef_uranai = .data:0x00086638; // type:object size:0x18 scope:global align:4
+iam_ef_wait_asimoto = .data:0x00086650; // type:object size:0x18 scope:global align:4
+iam_ef_walk_asimoto = .data:0x00086668; // type:object size:0x18 scope:global align:4
+asimoto_func_table$452 = .data:0x00086680; // type:object size:0x10 scope:local align:4
+iam_ef_warau = .data:0x00086690; // type:object size:0x18 scope:global align:4
+eWU_DispTable = .data:0x000866A8; // type:object size:0x30 scope:global align:4
+iam_ef_yajirushi = .data:0x000866D8; // type:object size:0x18 scope:global align:4
+iam_ef_young_tree = .data:0x000866F0; // type:object size:0x18 scope:global align:4
+iam_ef_yukidama = .data:0x00086708; // type:object size:0x18 scope:global align:4
+ykd_spd_data$381 = .data:0x00086720; // type:object size:0x50 scope:local align:4
+yukidama_vec_angle$382 = .data:0x00086770; // type:object size:0x14 scope:local align:4
+@444 = .data:0x00086784; // type:object size:0xE scope:local align:4 data:string
+yukidama_tex_tbl$449 = .data:0x00086794; // type:object size:0x10 scope:local align:4
+ef_yukidaruma_model_tbl = .data:0x000867A8; // type:object size:0xC scope:global align:4
+iam_ef_yukidaruma = .data:0x000867B4; // type:object size:0x18 scope:global align:4
+iam_ef_yukihane = .data:0x000867D0; // type:object size:0x18 scope:global align:4
+eYukihane_pattern_table = .data:0x000867E8; // type:object size:0x20 scope:global align:4
+...data.0 = .data:0x00086808; // type:label scope:local
+@460 = .data:0x00086808; // type:object size:0x10 scope:local align:4
+@461 = .data:0x00086818; // type:object size:0x10 scope:local align:4
+@462 = .data:0x00086828; // type:object size:0x10 scope:local align:4
+@463 = .data:0x00086838; // type:object size:0x10 scope:local align:4
+@464 = .data:0x00086848; // type:object size:0xF scope:local align:4
+@465 = .data:0x00086858; // type:object size:0xF scope:local align:4
+@466 = .data:0x00086868; // type:object size:0x10 scope:local align:4
+@467 = .data:0x00086878; // type:object size:0x10 scope:local align:4
+@468 = .data:0x00086888; // type:object size:0x13 scope:local align:4
+@469 = .data:0x0008689C; // type:object size:0x8 scope:local align:4
+@470 = .data:0x000868A4; // type:object size:0x13 scope:local align:4
+@471 = .data:0x000868B8; // type:object size:0x13 scope:local align:4
+@472 = .data:0x000868CC; // type:object size:0x12 scope:local align:4
+@473 = .data:0x000868E0; // type:object size:0x12 scope:local align:4
+@474 = .data:0x000868F4; // type:object size:0xD scope:local align:4
+@475 = .data:0x00086904; // type:object size:0x11 scope:local align:4
+@476 = .data:0x00086918; // type:object size:0x11 scope:local align:4
+@477 = .data:0x0008692C; // type:object size:0xA scope:local align:4
+@478 = .data:0x00086938; // type:object size:0xB scope:local align:4
+@479 = .data:0x00086944; // type:object size:0x10 scope:local align:4
+@480 = .data:0x00086954; // type:object size:0x11 scope:local align:4
+@481 = .data:0x00086968; // type:object size:0x11 scope:local align:4
+@482 = .data:0x0008697C; // type:object size:0x11 scope:local align:4
+@483 = .data:0x00086990; // type:object size:0xA scope:local align:4
+@484 = .data:0x0008699C; // type:object size:0xA scope:local align:4
+@485 = .data:0x000869A8; // type:object size:0xD scope:local align:4
+@486 = .data:0x000869B8; // type:object size:0xD scope:local align:4
+@487 = .data:0x000869C8; // type:object size:0x12 scope:local align:4
+@488 = .data:0x000869DC; // type:object size:0x12 scope:local align:4
+@489 = .data:0x000869F0; // type:object size:0xD scope:local align:4
+@490 = .data:0x00086A00; // type:object size:0xE scope:local align:4
+@491 = .data:0x00086A10; // type:object size:0x9 scope:local align:4
+@492 = .data:0x00086A1C; // type:object size:0x13 scope:local align:4
+@493 = .data:0x00086A30; // type:object size:0xE scope:local align:4
+@494 = .data:0x00086A40; // type:object size:0x12 scope:local align:4
+@495 = .data:0x00086A54; // type:object size:0x12 scope:local align:4
+@496 = .data:0x00086A68; // type:object size:0x10 scope:local align:4
+@497 = .data:0x00086A78; // type:object size:0xF scope:local align:4
+@498 = .data:0x00086A88; // type:object size:0x11 scope:local align:4
+@499 = .data:0x00086A9C; // type:object size:0x11 scope:local align:4
+@500 = .data:0x00086AB0; // type:object size:0x13 scope:local align:4
+@501 = .data:0x00086AC4; // type:object size:0x13 scope:local align:4
+@502 = .data:0x00086AD8; // type:object size:0x12 scope:local align:4
+@503 = .data:0x00086AEC; // type:object size:0x12 scope:local align:4
+@504 = .data:0x00086B00; // type:object size:0x12 scope:local align:4
+@505 = .data:0x00086B14; // type:object size:0x14 scope:local align:4
+@506 = .data:0x00086B28; // type:object size:0x9 scope:local align:4
+@507 = .data:0x00086B34; // type:object size:0x10 scope:local align:4
+@508 = .data:0x00086B44; // type:object size:0xE scope:local align:4
+@509 = .data:0x00086B54; // type:object size:0x11 scope:local align:4
+@510 = .data:0x00086B68; // type:object size:0xF scope:local align:4
+@511 = .data:0x00086B78; // type:object size:0xC scope:local align:4
+nf_tbl = .data:0x00086B84; // type:object size:0x270 scope:global align:4
+process$629 = .data:0x00086DF4; // type:object size:0x2C scope:local align:4
+season_table$756 = .data:0x00086E20; // type:object size:0x30 scope:local align:4
+base$797 = .data:0x00086E50; // type:object size:0x8 scope:local align:4
+process$804 = .data:0x00086E58; // type:object size:0x14 scope:local align:4
+process$881 = .data:0x00086E6C; // type:object size:0x10 scope:local align:4
+@890 = .data:0x00086E7C; // type:object size:0xF scope:local align:4
+@891 = .data:0x00086E8C; // type:object size:0xB scope:local align:4
+@892 = .data:0x00086E98; // type:object size:0xE scope:local align:4
+@893 = .data:0x00086EA8; // type:object size:0xA scope:local align:4
+@894 = .data:0x00086EB4; // type:object size:0xB scope:local align:4
+@895 = .data:0x00086EC0; // type:object size:0xB scope:local align:4
+@896 = .data:0x00086ECC; // type:object size:0xC scope:local align:4
+@897 = .data:0x00086ED8; // type:object size:0xC scope:local align:4
+@898 = .data:0x00086EE4; // type:object size:0x10 scope:local align:4
+@899 = .data:0x00086EF4; // type:object size:0x15 scope:local align:4
+@900 = .data:0x00086F0C; // type:object size:0x11 scope:local align:4
+@901 = .data:0x00086F20; // type:object size:0x18 scope:local align:4
+msgs$889 = .data:0x00086F38; // type:object size:0x30 scope:local align:4
+@904 = .data:0x00086F68; // type:object size:0x3 scope:local align:4 data:string
+@923 = .data:0x00086F6C; // type:object size:0x12 scope:local align:4 data:string
+@924 = .data:0x00086F80; // type:object size:0x9 scope:local align:4 data:string
+@929 = .data:0x00086F8C; // type:object size:0xB scope:local align:4 data:string
+@951 = .data:0x00086F98; // type:object size:0xF scope:local align:4 data:string
+@952 = .data:0x00086FA8; // type:object size:0x4 scope:local align:4 data:string
+@953 = .data:0x00086FAC; // type:object size:0x4 scope:local align:4 data:string
+@954 = .data:0x00086FB0; // type:object size:0x4 scope:local align:4 data:string
+@955 = .data:0x00086FB4; // type:object size:0x4 scope:local align:4 data:string
+@956 = .data:0x00086FB8; // type:object size:0x4 scope:local align:4 data:string
+@957 = .data:0x00086FBC; // type:object size:0x4 scope:local align:4 data:string
+@958 = .data:0x00086FC0; // type:object size:0x4 scope:local align:4 data:string
+@959 = .data:0x00086FC4; // type:object size:0x4 scope:local align:4 data:string
+@960 = .data:0x00086FC8; // type:object size:0x5 scope:local align:4 data:string
+@961 = .data:0x00086FD0; // type:object size:0xA scope:local align:4 data:string
+@962 = .data:0x00086FDC; // type:object size:0x5 scope:local align:4 data:string
+@963 = .data:0x00086FE4; // type:object size:0x5 scope:local align:4 data:string
+@964 = .data:0x00086FEC; // type:object size:0x1C scope:local align:4
+@973 = .data:0x00087008; // type:object size:0xF scope:local align:4
+@982 = .data:0x00087018; // type:object size:0x4 scope:local align:4
+@983 = .data:0x0008701C; // type:object size:0x4 scope:local align:4
+@984 = .data:0x00087020; // type:object size:0x4 scope:local align:4
+@985 = .data:0x00087024; // type:object size:0x5 scope:local align:4
+@986 = .data:0x0008702C; // type:object size:0x7 scope:local align:4
+Weather_type$981 = .data:0x00087034; // type:object size:0x14 scope:local align:4
+@988 = .data:0x00087048; // type:object size:0xB scope:local align:4
+@993 = .data:0x00087054; // type:object size:0x7 scope:local align:4
+@994 = .data:0x0008705C; // type:object size:0x7 scope:local align:4
+Distinction$992 = .data:0x00087064; // type:object size:0x8 scope:local align:4
+@996 = .data:0x0008706C; // type:object size:0xA scope:local align:4
+@1003 = .data:0x00087078; // type:object size:0xC scope:local align:4
+@1011 = .data:0x00087084; // type:object size:0xD scope:local align:4
+@1012 = .data:0x00087094; // type:object size:0xC scope:local align:4
+@1020 = .data:0x000870A0; // type:object size:0xC scope:local align:4
+@1021 = .data:0x000870AC; // type:object size:0xE scope:local align:4
+@1026 = .data:0x000870BC; // type:object size:0x7 scope:local align:4
+@1027 = .data:0x000870C4; // type:object size:0x7 scope:local align:4
+@1028 = .data:0x000870CC; // type:object size:0x7 scope:local align:4
+@1029 = .data:0x000870D4; // type:object size:0x7 scope:local align:4
+@1030 = .data:0x000870DC; // type:object size:0x7 scope:local align:4
+@1031 = .data:0x000870E4; // type:object size:0x7 scope:local align:4
+@1032 = .data:0x000870EC; // type:object size:0x7 scope:local align:4
+@1033 = .data:0x000870F4; // type:object size:0x7 scope:local align:4
+Distinction$1025 = .data:0x000870FC; // type:object size:0x20 scope:local align:4
+@1035 = .data:0x0008711C; // type:object size:0xA scope:local align:4
+@1041 = .data:0x00087128; // type:object size:0x10 scope:local align:4
+@1046 = .data:0x00087138; // type:object size:0x5 scope:local align:4
+@1047 = .data:0x00087140; // type:object size:0x7 scope:local align:4
+@1048 = .data:0x00087148; // type:object size:0x9 scope:local align:4
+@1049 = .data:0x00087154; // type:object size:0x8 scope:local align:4
+@1050 = .data:0x0008715C; // type:object size:0x6 scope:local align:4
+@1051 = .data:0x00087164; // type:object size:0x8 scope:local align:4
+@1052 = .data:0x0008716C; // type:object size:0x7 scope:local align:4
+event_kind$1045 = .data:0x00087174; // type:object size:0x1C scope:local align:4 data:4byte
+@1054 = .data:0x00087190; // type:object size:0xB scope:local align:4
+print_process$1058 = .data:0x0008719C; // type:object size:0x2C scope:local align:4
+@1088 = .data:0x000871C8; // type:object size:0x8 scope:local align:4
+...data.0 = .data:0x000871D0; // type:label scope:local
+wipe_normal_proc$518 = .data:0x000871D0; // type:object size:0x24 scope:local align:4
+wipe_triforce_proc$519 = .data:0x000871F4; // type:object size:0x24 scope:local align:4
+wipe_fade_proc$520 = .data:0x00087218; // type:object size:0x24 scope:local align:4
+wipe_proc$521 = .data:0x0008723C; // type:object size:0x1C scope:local align:4
+@647 = .data:0x00087258; // type:object size:0x34 scope:local align:4
+wipe_proc$651 = .data:0x0008728C; // type:object size:0x10 scope:local align:4
+@791 = .data:0x0008729C; // type:object size:0x11 scope:local align:4 data:string
+@792 = .data:0x000872B0; // type:object size:0xA scope:local align:4 data:string
+@793 = .data:0x000872BC; // type:object size:0xD scope:local align:4 data:string
+@872 = .data:0x000872CC; // type:object size:0xB8 scope:local align:4
+scene_word_data$876 = .data:0x00087384; // type:object size:0xD0 scope:local align:4
+mTR_first_flag = .data:0x00087458; // type:object size:0x4 scope:global align:4 data:4byte
+demo_1_door_data = .data:0x0008745C; // type:object size:0x14 scope:global align:4
+demo_2_door_data = .data:0x00087470; // type:object size:0x14 scope:global align:4
+demo_3_door_data = .data:0x00087484; // type:object size:0x14 scope:global align:4
+demo_4_door_data = .data:0x00087498; // type:object size:0x14 scope:global align:4
+demo_5_door_data = .data:0x000874AC; // type:object size:0x14 scope:global align:4
+l_demo_door_data_table = .data:0x000874C0; // type:object size:0x14 scope:global align:4
+demo_npc_list = .data:0x000874D4; // type:object size:0x118 scope:global align:4
+demo_npc_num = .data:0x000875EC; // type:object size:0x4 scope:global align:4 data:4byte
+tradeday_table$453 = .data:0x000875F0; // type:object size:0x1E scope:local align:4
+s_titlebgm$533 = .data:0x00087610; // type:object size:0x5 scope:local align:4 data:string
+...data.0 = .data:0x00087618; // type:label scope:local
+mitouroku_str = .data:0x00087618; // type:object size:0x6 scope:global align:4 data:byte
+l_gaishutu_str = .data:0x00087620; // type:object size:0xA scope:global align:4
+l_zaitaku_str = .data:0x0008762C; // type:object size:0x9 scope:global align:4
+l_yosokara_str = .data:0x00087638; // type:object size:0xA scope:global align:4
+l_init_proc = .data:0x00087644; // type:object size:0x14 scope:global align:4
+l_ps_white_color = .data:0x00087658; // type:object size:0xC scope:global align:4 data:4byte
+l_ps_select_color = .data:0x00087664; // type:object size:0xC scope:global align:4
+_debug_player_select = .data:0x00087670; // type:object size:0xA scope:global align:4
+save_proc$423 = .data:0x00087680; // type:object size:0x8 scope:local align:4
+sub_proc$454 = .data:0x00087688; // type:object size:0x10 scope:local align:4
+my_malloc_func = .data:0x00087698; // type:object size:0x10 scope:global align:4
+black_color$475 = .data:0x000876A8; // type:object size:0x4 scope:local align:4 data:4byte
+@513 = .data:0x000876AC; // type:object size:0x7 scope:local align:4 data:string
+@514 = .data:0x000876B4; // type:object size:0xC scope:local align:4 data:string
+@515 = .data:0x000876C0; // type:object size:0x7 scope:local align:4 data:string
+@516 = .data:0x000876C8; // type:object size:0xC scope:local align:4 data:string
+@517 = .data:0x000876D4; // type:object size:0x8 scope:local align:4 data:string
+@518 = .data:0x000876DC; // type:object size:0x7 scope:local align:4 data:string
+@519 = .data:0x000876E4; // type:object size:0x9 scope:local align:4 data:string
+@520 = .data:0x000876F0; // type:object size:0xD scope:local align:4 data:string
+@521 = .data:0x00087700; // type:object size:0xC scope:local align:4 data:string
+@522 = .data:0x0008770C; // type:object size:0x9 scope:local align:4 data:string
+@523 = .data:0x00087718; // type:object size:0x7 scope:local align:4 data:string
+@524 = .data:0x00087720; // type:object size:0x7 scope:local align:4 data:string
+@525 = .data:0x00087728; // type:object size:0xA scope:local align:4 data:string
+@526 = .data:0x00087734; // type:object size:0x6 scope:local align:4 data:string
+@527 = .data:0x0008773C; // type:object size:0x7 scope:local align:4 data:string
+names$512 = .data:0x00087744; // type:object size:0x4C scope:local align:4
+@542 = .data:0x00087790; // type:object size:0x1B scope:local align:4 data:string
+@684 = .data:0x000877B0; // type:object size:0x60 scope:local align:4
+@699 = .data:0x00087810; // type:object size:0x24 scope:local align:4
+...data.0 = .data:0x00087840; // type:label scope:local
+fFTR_myhome_off_pal_table = .data:0x00087840; // type:object size:0x180 scope:global align:32
+fFTR_myhome_on_pal_table = .data:0x000879C0; // type:object size:0x180 scope:global align:32
+iam_ari_isu01 = .data:0x00087B40; // type:object size:0x34 scope:global align:4
+iam_ari_kitchen01 = .data:0x00087B74; // type:object size:0x34 scope:global align:4
+iam_ari_reizou01 = .data:0x00087BA8; // type:object size:0x34 scope:global align:4
+iam_ari_table01 = .data:0x00087BDC; // type:object size:0x34 scope:global align:4
+iam_din_amber = .data:0x00087C10; // type:object size:0x34 scope:global align:4
+iam_din_ammonite = .data:0x00087C44; // type:object size:0x34 scope:global align:4
+iam_din_bront_body = .data:0x00087C78; // type:object size:0x34 scope:global align:4
+iam_din_bront_dummy = .data:0x00087CAC; // type:object size:0x34 scope:global align:4
+iam_din_bront_head = .data:0x00087CE0; // type:object size:0x34 scope:global align:4
+iam_din_bront_tail = .data:0x00087D14; // type:object size:0x34 scope:global align:4
+iam_din_dummy = .data:0x00087D48; // type:object size:0x34 scope:global align:4
+iam_din_egg = .data:0x00087D7C; // type:object size:0x34 scope:global align:4
+iam_din_hutaba_body = .data:0x00087DB0; // type:object size:0x34 scope:global align:4
+iam_din_hutaba_dummy = .data:0x00087DE4; // type:object size:0x34 scope:global align:4
+iam_din_hutaba_head = .data:0x00087E18; // type:object size:0x34 scope:global align:4
+iam_din_hutaba_neck = .data:0x00087E4C; // type:object size:0x34 scope:global align:4
+iam_din_mammoth_body = .data:0x00087E80; // type:object size:0x34 scope:global align:4
+iam_din_mammoth_dummy = .data:0x00087EB4; // type:object size:0x34 scope:global align:4
+iam_din_mammoth_head = .data:0x00087EE8; // type:object size:0x34 scope:global align:4
+iam_din_ptera_dummy = .data:0x00087F1C; // type:object size:0x34 scope:global align:4
+iam_din_ptera_Lwing = .data:0x00087F50; // type:object size:0x34 scope:global align:4
+iam_din_ptera_Rwing = .data:0x00087F84; // type:object size:0x34 scope:global align:4
+iam_din_ptera_head = .data:0x00087FB8; // type:object size:0x34 scope:global align:4
+iam_din_stego_body = .data:0x00087FEC; // type:object size:0x34 scope:global align:4
+iam_din_stego_dummyA = .data:0x00088020; // type:object size:0x34 scope:global align:4
+iam_din_stego_dummyB = .data:0x00088054; // type:object size:0x34 scope:global align:4
+iam_din_stego_head = .data:0x00088088; // type:object size:0x34 scope:global align:4
+iam_din_stego_tail = .data:0x000880BC; // type:object size:0x34 scope:global align:4
+iam_din_stump = .data:0x000880F0; // type:object size:0x34 scope:global align:4
+iam_din_trex_body = .data:0x00088124; // type:object size:0x34 scope:global align:4
+iam_din_trex_dummy = .data:0x00088158; // type:object size:0x34 scope:global align:4
+iam_din_trex_head = .data:0x0008818C; // type:object size:0x34 scope:global align:4
+iam_din_trex_tail = .data:0x000881C0; // type:object size:0x34 scope:global align:4
+iam_din_trikera_body = .data:0x000881F4; // type:object size:0x34 scope:global align:4
+iam_din_trikera_dummy = .data:0x00088228; // type:object size:0x34 scope:global align:4
+iam_din_trikera_head = .data:0x0008825C; // type:object size:0x34 scope:global align:4
+iam_din_trikera_tail = .data:0x00088290; // type:object size:0x34 scope:global align:4
+iam_din_trilobite = .data:0x000882C4; // type:object size:0x34 scope:global align:4
+fFC_texture_table = .data:0x000882F8; // type:object size:0x50 scope:global align:4
+fFC_palette_table = .data:0x00088348; // type:object size:0x50 scope:global align:4
+fFC_game_table = .data:0x00088398; // type:object size:0x14 scope:global align:4
+fFC_agb_game_table = .data:0x000883AC; // type:object size:0x14 scope:global align:4
+fFC_reference_model_idx_table = .data:0x000883C0; // type:object size:0x50 scope:global align:4
+fFC_func = .data:0x00088410; // type:object size:0x14 scope:global align:4
+iam_famicom_common = .data:0x00088424; // type:object size:0x34 scope:global align:4
+aFmanekin_func = .data:0x00088458; // type:object size:0x14 scope:global align:4
+iam_fmanekin = .data:0x0008846C; // type:object size:0x34 scope:global align:4
+aFU_data = .data:0x000884A0; // type:object size:0x100 scope:global align:4
+aFU_func = .data:0x000885A0; // type:object size:0x14 scope:global align:4
+iam_fumbrella = .data:0x000885B4; // type:object size:0x34 scope:global align:4
+hnw_cKF_bs_r_table = .data:0x000885E8; // type:object size:0x200 scope:global align:4
+hnw_cKF_ba_r_table = .data:0x000887E8; // type:object size:0x200 scope:global align:4
+cKF_ckcb_r_int_hnw_off_tbl = .data:0x000889E8; // type:object size:0x7 scope:global align:4
+cKF_c_int_hnw_off_tbl = .data:0x000889F0; // type:object size:0x30 scope:global align:4
+cKF_ba_r_int_hnw_off = .data:0x00088A20; // type:object size:0x14 scope:global align:4 data:2byte
+aHnwCommon_func = .data:0x00088A34; // type:object size:0x14 scope:global align:4
+iam_hnw_common = .data:0x00088A48; // type:object size:0x34 scope:global align:4
+iam_ike_art_ang = .data:0x00088A7C; // type:object size:0x34 scope:global align:4
+iam_ike_art_fel = .data:0x00088AB0; // type:object size:0x34 scope:global align:4
+fIIH_func = .data:0x00088AE4; // type:object size:0x14 scope:global align:4
+iam_ike_island_hako01 = .data:0x00088AF8; // type:object size:0x34 scope:global align:4
+iam_ike_island_sensui01 = .data:0x00088B2C; // type:object size:0x34 scope:global align:4
+fIIUKRR_func = .data:0x00088B60; // type:object size:0x14 scope:global align:4
+iam_ike_island_uku01 = .data:0x00088B74; // type:object size:0x34 scope:global align:4
+iam_ike_jny_afmen01 = .data:0x00088BA8; // type:object size:0x34 scope:global align:4
+iam_ike_jny_botle01 = .data:0x00088BDC; // type:object size:0x34 scope:global align:4
+iam_ike_jny_gate01 = .data:0x00088C10; // type:object size:0x34 scope:global align:4
+iam_ike_jny_gojyu01 = .data:0x00088C44; // type:object size:0x34 scope:global align:4
+fIJH_func = .data:0x00088C78; // type:object size:0x14 scope:global align:4
+iam_ike_jny_hariko01 = .data:0x00088C8C; // type:object size:0x34 scope:global align:4
+@899 = .data:0x00088CC0; // type:object size:0x30 scope:local align:4
+fIJHOUI_func = .data:0x00088CF0; // type:object size:0x14 scope:global align:4
+iam_ike_jny_houi01 = .data:0x00088D04; // type:object size:0x34 scope:global align:4
+iam_ike_jny_kibori01 = .data:0x00088D38; // type:object size:0x34 scope:global align:4
+iam_ike_jny_makada01 = .data:0x00088D6C; // type:object size:0x34 scope:global align:4
+iam_ike_jny_moai01 = .data:0x00088DA0; // type:object size:0x34 scope:global align:4
+iam_ike_jny_ningyo01 = .data:0x00088DD4; // type:object size:0x34 scope:global align:4
+iam_ike_jny_pisa01 = .data:0x00088E08; // type:object size:0x34 scope:global align:4
+aIkeJnyRosia01_func = .data:0x00088E3C; // type:object size:0x14 scope:global align:4
+iam_ike_jny_rosia01 = .data:0x00088E50; // type:object size:0x34 scope:global align:4
+iam_ike_jny_sirser01 = .data:0x00088E84; // type:object size:0x34 scope:global align:4
+iam_ike_jny_sirser201 = .data:0x00088EB8; // type:object size:0x34 scope:global align:4
+fIJS_func = .data:0x00088EEC; // type:object size:0x14 scope:global align:4
+iam_ike_jny_syon01 = .data:0x00088F00; // type:object size:0x34 scope:global align:4
+iam_ike_jny_tower01 = .data:0x00088F34; // type:object size:0x34 scope:global align:4
+tex_table$1118 = .data:0x00088F68; // type:object size:0x8 scope:local align:4
+fIJT_func = .data:0x00088F70; // type:object size:0x14 scope:global align:4
+iam_ike_jny_truth01 = .data:0x00088F84; // type:object size:0x34 scope:global align:4
+iam_ike_jpn_tansu01 = .data:0x00088FB8; // type:object size:0x34 scope:global align:4
+fIKD_func = .data:0x00088FEC; // type:object size:0x14 scope:global align:4
+iam_ike_kama_danro01 = .data:0x00089000; // type:object size:0x34 scope:global align:4
+fIKC_func = .data:0x00089034; // type:object size:0x14 scope:global align:4
+iam_ike_k_count01 = .data:0x00089048; // type:object size:0x34 scope:global align:4
+iam_ike_k_iveboy01 = .data:0x0008907C; // type:object size:0x34 scope:global align:4
+iam_ike_k_kid01 = .data:0x000890B0; // type:object size:0x34 scope:global align:4
+iam_ike_k_kid02 = .data:0x000890E4; // type:object size:0x34 scope:global align:4
+iam_ike_k_mame01 = .data:0x00089118; // type:object size:0x34 scope:global align:4
+iam_ike_k_sum01 = .data:0x0008914C; // type:object size:0x34 scope:global align:4
+iam_ike_k_otome01 = .data:0x00089180; // type:object size:0x34 scope:global align:4
+iam_ike_k_sinnen01 = .data:0x000891B4; // type:object size:0x34 scope:global align:4
+fITN_func = .data:0x000891E8; // type:object size:0x14 scope:global align:4
+iam_ike_k_tanabata01 = .data:0x000891FC; // type:object size:0x34 scope:global align:4
+iam_ike_k_turis01 = .data:0x00089230; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_fan1 = .data:0x00089264; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_fan2 = .data:0x00089298; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_fan3 = .data:0x000892CC; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_fan4 = .data:0x00089300; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_fan5 = .data:0x00089334; // type:object size:0x34 scope:global align:4
+iam_ike_nikki_wafu1 = .data:0x00089368; // type:object size:0x34 scope:global align:4
+fIPP_func = .data:0x0008939C; // type:object size:0x14 scope:global align:4
+iam_ike_pst_pig01 = .data:0x000893B0; // type:object size:0x34 scope:global align:4
+iam_ike_pst_tesyu01 = .data:0x000893E4; // type:object size:0x34 scope:global align:4
+aKobDisksystem8_func = .data:0x00089418; // type:object size:0x14 scope:global align:4
+iam_kob_disksystem8 = .data:0x0008942C; // type:object size:0x34 scope:global align:4
+iam_kob_getabako1 = .data:0x00089460; // type:object size:0x34 scope:global align:4
+iam_kob_getabako2 = .data:0x00089494; // type:object size:0x34 scope:global align:4
+iam_kob_jimudesk = .data:0x000894C8; // type:object size:0x34 scope:global align:4
+iam_kob_jimuisu = .data:0x000894FC; // type:object size:0x34 scope:global align:4
+aKobLocker1_func = .data:0x00089530; // type:object size:0x14 scope:global align:4
+iam_kob_locker1 = .data:0x00089544; // type:object size:0x34 scope:global align:4
+aKobMasterSword01_func = .data:0x00089578; // type:object size:0x14 scope:global align:4
+iam_kob_mastersword = .data:0x0008958C; // type:object size:0x34 scope:global align:4
+aKobNcube_func = .data:0x000895C0; // type:object size:0x14 scope:global align:4
+iam_kob_ncube = .data:0x000895D4; // type:object size:0x34 scope:global align:4
+iam_kob_pipeisu = .data:0x00089608; // type:object size:0x34 scope:global align:4
+iam_kob_rika_desk = .data:0x0008963C; // type:object size:0x34 scope:global align:4
+iam_kob_tobibako = .data:0x00089670; // type:object size:0x34 scope:global align:4
+aKonAmeclock_func = .data:0x000896A4; // type:object size:0x14 scope:global align:4
+iam_kon_ameclock = .data:0x000896B8; // type:object size:0x34 scope:global align:4
+aKonAtqclock_func = .data:0x000896EC; // type:object size:0x14 scope:global align:4
+iam_kon_atqclock = .data:0x00089700; // type:object size:0x34 scope:global align:4
+aKonBlueclock_func = .data:0x00089734; // type:object size:0x14 scope:global align:4
+iam_kon_blueclock = .data:0x00089748; // type:object size:0x34 scope:global align:4
+aKonCracker_sklkey = .data:0x0008977C; // type:object size:0xC scope:global align:4
+aKonCracker_func = .data:0x00089788; // type:object size:0x14 scope:global align:4
+iam_kon_cracker = .data:0x0008979C; // type:object size:0x34 scope:global align:4
+iam_kon_gomi03 = .data:0x000897D0; // type:object size:0x34 scope:global align:4
+aKonGomi04_func = .data:0x00089804; // type:object size:0x14 scope:global align:4
+iam_kon_gomi04 = .data:0x00089818; // type:object size:0x34 scope:global align:4
+aKonGrclock_func = .data:0x0008984C; // type:object size:0x14 scope:global align:4
+iam_kon_grclock = .data:0x00089860; // type:object size:0x34 scope:global align:4
+iam_kon_isi01 = .data:0x00089894; // type:object size:0x34 scope:global align:4
+iam_kon_isi02 = .data:0x000898C8; // type:object size:0x34 scope:global align:4
+iam_kon_isi03 = .data:0x000898FC; // type:object size:0x34 scope:global align:4
+iam_kon_isi04 = .data:0x00089930; // type:object size:0x34 scope:global align:4
+iam_kon_isi05 = .data:0x00089964; // type:object size:0x34 scope:global align:4
+iam_kon_isi06 = .data:0x00089998; // type:object size:0x34 scope:global align:4
+aKonJihanki02_func = .data:0x000899CC; // type:object size:0x14 scope:global align:4
+iam_kon_jihanki02 = .data:0x000899E0; // type:object size:0x34 scope:global align:4
+iam_kon_jihanki03 = .data:0x00089A14; // type:object size:0x34 scope:global align:4
+aKonMimiclock_func = .data:0x00089A48; // type:object size:0x14 scope:global align:4
+iam_kon_mimiclock = .data:0x00089A5C; // type:object size:0x34 scope:global align:4
+aKonMusya_func = .data:0x00089A90; // type:object size:0x14 scope:global align:4
+iam_kon_musya = .data:0x00089AA4; // type:object size:0x34 scope:global align:4
+iam_kon_pound = .data:0x00089AD8; // type:object size:0x34 scope:global align:4
+aKonRedclock_func = .data:0x00089B0C; // type:object size:0x14 scope:global align:4
+iam_kon_redclock = .data:0x00089B20; // type:object size:0x34 scope:global align:4
+aKonSisiodosi_sklkey = .data:0x00089B54; // type:object size:0xC scope:global align:4
+aKonSisiodosi_func = .data:0x00089B60; // type:object size:0x14 scope:global align:4
+iam_kon_sisiodosi = .data:0x00089B74; // type:object size:0x34 scope:global align:4
+iam_kon_snowbed = .data:0x00089BA8; // type:object size:0x34 scope:global align:4
+aKonSnowbox_func = .data:0x00089BDC; // type:object size:0x14 scope:global align:4
+iam_kon_snowbox = .data:0x00089BF0; // type:object size:0x34 scope:global align:4
+aKonSnowclock_func = .data:0x00089C24; // type:object size:0x14 scope:global align:4
+iam_kon_snowclock = .data:0x00089C38; // type:object size:0x34 scope:global align:4
+iam_kon_snowfreezer = .data:0x00089C6C; // type:object size:0x34 scope:global align:4
+iam_kon_snowsofa = .data:0x00089CA0; // type:object size:0x34 scope:global align:4
+iam_kon_snowtable = .data:0x00089CD4; // type:object size:0x34 scope:global align:4
+aKonSnowtansu_func = .data:0x00089D08; // type:object size:0x14 scope:global align:4
+iam_kon_snowtansu = .data:0x00089D1C; // type:object size:0x34 scope:global align:4
+aKonsnowtv_on_anime = .data:0x00089D50; // type:object size:0x78 scope:global align:4
+aKonsnowtv_func = .data:0x00089DC8; // type:object size:0x14 scope:global align:4
+iam_kon_snowtv = .data:0x00089DDC; // type:object size:0x34 scope:global align:4
+iam_kon_taiju = .data:0x00089E10; // type:object size:0x34 scope:global align:4
+iam_kon_tubo = .data:0x00089E44; // type:object size:0x34 scope:global align:4
+iam_kon_tubo2 = .data:0x00089E78; // type:object size:0x34 scope:global align:4
+iam_kon_tubo3 = .data:0x00089EAC; // type:object size:0x34 scope:global align:4
+iam_kon_tukue = .data:0x00089EE0; // type:object size:0x34 scope:global align:4
+aKonWaclock_func = .data:0x00089F14; // type:object size:0x14 scope:global align:4
+iam_kon_waclock = .data:0x00089F28; // type:object size:0x34 scope:global align:4
+iam_kon_xtree02 = .data:0x00089F5C; // type:object size:0x34 scope:global align:4
+aMyfmanekin_func = .data:0x00089F90; // type:object size:0x14 scope:global align:4
+iam_myfmanekin = .data:0x00089FA4; // type:object size:0x34 scope:global align:4
+aMFU_func = .data:0x00089FD8; // type:object size:0x14 scope:global align:4
+iam_myfumbrella = .data:0x00089FEC; // type:object size:0x34 scope:global align:4
+aNogAmenbo_key_anime_data = .data:0x0008A020; // type:object size:0xC scope:global align:4
+iam_nog_amenbo = .data:0x0008A02C; // type:object size:0x34 scope:global align:4
+iam_nog_ari = .data:0x0008A060; // type:object size:0x34 scope:global align:4
+fNBC_balloon_skel_table = .data:0x0008A094; // type:object size:0x20 scope:global align:4
+fNBC_balloon_anime_table = .data:0x0008A0B4; // type:object size:0x20 scope:global align:4
+fNBC_func = .data:0x0008A0D4; // type:object size:0x14 scope:global align:4
+iam_nog_balloon_common = .data:0x0008A0E8; // type:object size:0x34 scope:global align:4
+iam_nog_beachbed = .data:0x0008A11C; // type:object size:0x34 scope:global align:4
+fNBT_func = .data:0x0008A150; // type:object size:0x14 scope:global align:4
+iam_nog_beachtable = .data:0x0008A164; // type:object size:0x34 scope:global align:4
+iam_nog_bishopB = .data:0x0008A198; // type:object size:0x34 scope:global align:4
+iam_nog_bishopW = .data:0x0008A1CC; // type:object size:0x34 scope:global align:4
+aNogDango_key_anime_data = .data:0x0008A200; // type:object size:0xC scope:global align:4
+iam_nog_dango = .data:0x0008A20C; // type:object size:0x34 scope:global align:4
+iam_nog_collegenote = .data:0x0008A240; // type:object size:0x34 scope:global align:4
+iam_nog_dump = .data:0x0008A274; // type:object size:0x34 scope:global align:4
+iam_nog_earth = .data:0x0008A2A8; // type:object size:0x34 scope:global align:4
+aNogFan_nog_fan01_anim = .data:0x0008A2DC; // type:object size:0xC scope:global align:4
+fan_kurukuru_data$2098 = .data:0x0008A2E8; // type:object size:0x28 scope:local align:4
+aNogFan_func = .data:0x0008A310; // type:object size:0x14 scope:global align:4
+iam_nog_fan01 = .data:0x0008A324; // type:object size:0x34 scope:global align:4
+iam_nog_flat = .data:0x0008A358; // type:object size:0x34 scope:global align:4
+iam_nog_harddiary = .data:0x0008A38C; // type:object size:0x34 scope:global align:4
+aNogIsidai_key_anime_data = .data:0x0008A3C0; // type:object size:0xC scope:global align:4
+iam_nog_isidai = .data:0x0008A3CC; // type:object size:0x34 scope:global align:4
+aNogKa_key_anime_data = .data:0x0008A400; // type:object size:0xC scope:global align:4
+fNKA_func = .data:0x0008A40C; // type:object size:0x14 scope:global align:4
+iam_nog_ka = .data:0x0008A420; // type:object size:0x34 scope:global align:4
+aNogKaeru_key_anime_data = .data:0x0008A454; // type:object size:0xC scope:global align:4
+fNKR_func = .data:0x0008A460; // type:object size:0x14 scope:global align:4
+iam_nog_kaeru = .data:0x0008A474; // type:object size:0x34 scope:global align:4
+int_nog_kamakura_off_pal = .data:0x0008A4C0; // type:object size:0x20 scope:global align:32
+int_nog_kamakura_on_pal = .data:0x0008A4E0; // type:object size:0x20 scope:global align:32
+fNogKamakura_func = .data:0x0008A500; // type:object size:0x14 scope:global align:4
+iam_nog_kamakura = .data:0x0008A514; // type:object size:0x34 scope:global align:4
+aNogKera_key_anime_data = .data:0x0008A548; // type:object size:0xC scope:global align:4
+fNgKr_func = .data:0x0008A554; // type:object size:0x14 scope:global align:4
+iam_nog_kera = .data:0x0008A568; // type:object size:0x34 scope:global align:4
+iam_nog_kingB = .data:0x0008A59C; // type:object size:0x34 scope:global align:4
+iam_nog_kingW = .data:0x0008A5D0; // type:object size:0x34 scope:global align:4
+iam_nog_knightB = .data:0x0008A604; // type:object size:0x34 scope:global align:4
+iam_nog_knightW = .data:0x0008A638; // type:object size:0x34 scope:global align:4
+int_nog_kouban_on_pal = .data:0x0008A680; // type:object size:0x20 scope:global align:32
+int_nog_kouban_off_pal = .data:0x0008A6A0; // type:object size:0x20 scope:global align:32
+fNKN_func = .data:0x0008A6C0; // type:object size:0x14 scope:global align:4
+iam_nog_koban = .data:0x0008A6D4; // type:object size:0x34 scope:global align:4
+aNogKumo_key_anime_data = .data:0x0008A708; // type:object size:0xC scope:global align:4
+iam_nog_kumo = .data:0x0008A714; // type:object size:0x34 scope:global align:4
+aNogKurage_key_anime_data = .data:0x0008A748; // type:object size:0xC scope:global align:4
+iam_nog_kurage = .data:0x0008A754; // type:object size:0x34 scope:global align:4
+aNogMaimai_key_anime_data = .data:0x0008A788; // type:object size:0xC scope:global align:4
+iam_nog_maimai = .data:0x0008A794; // type:object size:0x34 scope:global align:4
+aNogMino_key_anime_data = .data:0x0008A7C8; // type:object size:0xC scope:global align:4
+iam_nog_mino = .data:0x0008A7D4; // type:object size:0x34 scope:global align:4
+iam_nog_mikanbox = .data:0x0008A808; // type:object size:0x34 scope:global align:4
+aNogMedaka_key_anime_data = .data:0x0008A83C; // type:object size:0xC scope:global align:4
+iam_nog_medaka = .data:0x0008A848; // type:object size:0x34 scope:global align:4
+int_nog_museum_off_pal = .data:0x0008A880; // type:object size:0x20 scope:global align:32
+int_nog_museum_on_pal = .data:0x0008A8A0; // type:object size:0x20 scope:global align:32
+fNMM_func = .data:0x0008A8C0; // type:object size:0x14 scope:global align:4
+iam_nog_museum = .data:0x0008A8D4; // type:object size:0x34 scope:global align:4
+fNM2_func = .data:0x0008A908; // type:object size:0x14 scope:global align:4
+iam_nog_myhome2 = .data:0x0008A91C; // type:object size:0x34 scope:global align:4
+fNM4_func = .data:0x0008A950; // type:object size:0x14 scope:global align:4
+iam_nog_myhome4 = .data:0x0008A964; // type:object size:0x34 scope:global align:4
+fNNB_texture_table = .data:0x0008A998; // type:object size:0x10 scope:global align:4
+fNNB_func = .data:0x0008A9A8; // type:object size:0x14 scope:global align:4
+iam_nog_nabe = .data:0x0008A9BC; // type:object size:0x34 scope:global align:4
+aNogPawnB_func = .data:0x0008A9F0; // type:object size:0x14 scope:global align:4
+iam_nog_pawnB = .data:0x0008AA04; // type:object size:0x34 scope:global align:4
+aNogpawnW_func = .data:0x0008AA38; // type:object size:0x14 scope:global align:4
+iam_nog_pawnW = .data:0x0008AA4C; // type:object size:0x34 scope:global align:4
+aNogPiraluku_key_anime_data = .data:0x0008AA80; // type:object size:0xC scope:global align:4
+iam_nog_piraluku = .data:0x0008AA8C; // type:object size:0x34 scope:global align:4
+iam_nog_queenB = .data:0x0008AAC0; // type:object size:0x34 scope:global align:4
+iam_nog_queenW = .data:0x0008AAF4; // type:object size:0x34 scope:global align:4
+iam_nog_rail = .data:0x0008AB28; // type:object size:0x34 scope:global align:4
+iam_nog_rookB = .data:0x0008AB5C; // type:object size:0x34 scope:global align:4
+iam_nog_rookW = .data:0x0008AB90; // type:object size:0x34 scope:global align:4
+iam_nog_schoolnote = .data:0x0008ABC4; // type:object size:0x34 scope:global align:4
+fNSH_func = .data:0x0008ABF8; // type:object size:0x14 scope:global align:4
+iam_nog_shrine = .data:0x0008AC0C; // type:object size:0x34 scope:global align:4
+iam_nog_snowman = .data:0x0008AC40; // type:object size:0x34 scope:global align:4
+fNSN_station_skel_table = .data:0x0008AC74; // type:object size:0x40 scope:global align:4
+fNSN_station_anime_table = .data:0x0008ACB4; // type:object size:0x40 scope:global align:4
+int_nog_station1_a_pal = .data:0x0008AD00; // type:object size:0x20 scope:global align:32
+int_nog_station1_b_pal = .data:0x0008AD20; // type:object size:0x20 scope:global align:32
+int_nog_station1_c_pal = .data:0x0008AD40; // type:object size:0x20 scope:global align:32
+int_nog_station1_d_pal = .data:0x0008AD60; // type:object size:0x20 scope:global align:32
+int_nog_station1_e_pal = .data:0x0008AD80; // type:object size:0x20 scope:global align:32
+int_nog_station2_a_pal = .data:0x0008ADA0; // type:object size:0x20 scope:global align:32
+int_nog_station2_b_pal = .data:0x0008ADC0; // type:object size:0x20 scope:global align:32
+int_nog_station2_c_pal = .data:0x0008ADE0; // type:object size:0x20 scope:global align:32
+int_nog_station2_d_pal = .data:0x0008AE00; // type:object size:0x20 scope:global align:32
+int_nog_station2_e_pal = .data:0x0008AE20; // type:object size:0x20 scope:global align:32
+int_nog_station3_a_pal = .data:0x0008AE40; // type:object size:0x20 scope:global align:32
+int_nog_station3_b_pal = .data:0x0008AE60; // type:object size:0x20 scope:global align:32
+int_nog_station3_c_pal = .data:0x0008AE80; // type:object size:0x20 scope:global align:32
+int_nog_station3_d_pal = .data:0x0008AEA0; // type:object size:0x20 scope:global align:32
+int_nog_station3_e_pal = .data:0x0008AEC0; // type:object size:0x20 scope:global align:32
+fMSM_palette_table = .data:0x0008AEE0; // type:object size:0x40 scope:global align:4
+fNSN_func = .data:0x0008AF20; // type:object size:0x14 scope:global align:4
+iam_nog_station = .data:0x0008AF34; // type:object size:0x34 scope:global align:4
+iam_nog_systemnote = .data:0x0008AF68; // type:object size:0x34 scope:global align:4
+iam_nog_s_tree = .data:0x0008AF9C; // type:object size:0x34 scope:global align:4
+iam_nog_f_tree = .data:0x0008AFD0; // type:object size:0x34 scope:global align:4
+aNogSuzuki_key_anime_data = .data:0x0008B004; // type:object size:0xC scope:global align:4
+iam_nog_suzuki = .data:0x0008B010; // type:object size:0x34 scope:global align:4
+int_nog_shop1_on_pal = .data:0x0008B060; // type:object size:0x20 scope:global align:32
+int_nog_shop1_off_pal = .data:0x0008B080; // type:object size:0x20 scope:global align:32
+fNS1_func = .data:0x0008B0A0; // type:object size:0x14 scope:global align:4
+iam_nog_shop1 = .data:0x0008B0B4; // type:object size:0x34 scope:global align:4
+aNogTai_key_anime_data = .data:0x0008B0E8; // type:object size:0xC scope:global align:4
+iam_nog_tai = .data:0x0008B0F4; // type:object size:0x34 scope:global align:4
+aNogTriAudio01_func = .data:0x0008B128; // type:object size:0x14 scope:global align:4
+iam_nog_tri_audio01 = .data:0x0008B13C; // type:object size:0x34 scope:global align:4
+iam_nog_tri_bed01 = .data:0x0008B170; // type:object size:0x34 scope:global align:4
+iam_nog_tri_chair01 = .data:0x0008B1A4; // type:object size:0x34 scope:global align:4
+aNogTriChest01_func = .data:0x0008B1D8; // type:object size:0x14 scope:global align:4
+iam_nog_tri_chest01 = .data:0x0008B1EC; // type:object size:0x34 scope:global align:4
+aNogTriChest02_func = .data:0x0008B220; // type:object size:0x14 scope:global align:4
+iam_nog_tri_chest02 = .data:0x0008B234; // type:object size:0x34 scope:global align:4
+aNogTriChest03_func = .data:0x0008B268; // type:object size:0x14 scope:global align:4
+iam_nog_tri_chest03 = .data:0x0008B27C; // type:object size:0x34 scope:global align:4
+aNogTriClock01_func = .data:0x0008B2B0; // type:object size:0x14 scope:global align:4
+iam_nog_tri_clock01 = .data:0x0008B2C4; // type:object size:0x34 scope:global align:4
+iam_nog_tri_rack01 = .data:0x0008B2F8; // type:object size:0x34 scope:global align:4
+iam_nog_tri_sofa01 = .data:0x0008B32C; // type:object size:0x34 scope:global align:4
+iam_nog_tri_table01 = .data:0x0008B360; // type:object size:0x34 scope:global align:4
+iam_nog_tudurinote = .data:0x0008B394; // type:object size:0x34 scope:global align:4
+iam_nog_xtree = .data:0x0008B3C8; // type:object size:0x34 scope:global align:4
+int_nog_uranai_off_pal = .data:0x0008B400; // type:object size:0x20 scope:global align:32
+int_nog_uranai_on_pal = .data:0x0008B420; // type:object size:0x20 scope:global align:32
+fNU_func = .data:0x0008B440; // type:object size:0x14 scope:global align:4
+iam_nog_uranai = .data:0x0008B454; // type:object size:0x34 scope:global align:4
+int_nog_yamishop_off_pal = .data:0x0008B4A0; // type:object size:0x20 scope:global align:32
+int_nog_yamishop_on_pal = .data:0x0008B4C0; // type:object size:0x20 scope:global align:32
+fNYS_func = .data:0x0008B4E0; // type:object size:0x14 scope:global align:4
+iam_nog_yamishop = .data:0x0008B4F4; // type:object size:0x34 scope:global align:4
+int_nog_yubin_on_pal = .data:0x0008B540; // type:object size:0x20 scope:global align:32
+int_nog_yubin_off_pal = .data:0x0008B560; // type:object size:0x20 scope:global align:32
+fNYB_func = .data:0x0008B580; // type:object size:0x14 scope:global align:4
+iam_nog_yubin = .data:0x0008B594; // type:object size:0x34 scope:global align:4
+aNogZarigani_key_anime_data = .data:0x0008B5C8; // type:object size:0xC scope:global align:4
+iam_nog_zarigani = .data:0x0008B5D4; // type:object size:0x34 scope:global align:4
+iam_nog_zassou = .data:0x0008B608; // type:object size:0x34 scope:global align:4
+iam_nog_w_tree = .data:0x0008B63C; // type:object size:0x34 scope:global align:4
+aSumAbura_func = .data:0x0008B670; // type:object size:0x14 scope:global align:4
+iam_sum_abura = .data:0x0008B684; // type:object size:0x34 scope:global align:4
+aSumAkiakane_key_anime_data = .data:0x0008B6B8; // type:object size:0xC scope:global align:4
+iam_sum_akiakane = .data:0x0008B6C4; // type:object size:0x34 scope:global align:4
+aSumAngel_key_anime_data = .data:0x0008B6F8; // type:object size:0xC scope:global align:4
+iam_sum_angel = .data:0x0008B704; // type:object size:0x34 scope:global align:4
+aSumAroana_key_anime_data = .data:0x0008B738; // type:object size:0xC scope:global align:4
+iam_sum_aroana = .data:0x0008B744; // type:object size:0x34 scope:global align:4
+iam_sum_art01 = .data:0x0008B778; // type:object size:0x34 scope:global align:4
+iam_sum_art04 = .data:0x0008B7AC; // type:object size:0x34 scope:global align:4
+iam_sum_art05 = .data:0x0008B7E0; // type:object size:0x34 scope:global align:4
+iam_sum_art06 = .data:0x0008B814; // type:object size:0x34 scope:global align:4
+iam_ike_art_sya = .data:0x0008B848; // type:object size:0x34 scope:global align:4
+iam_sum_art08 = .data:0x0008B87C; // type:object size:0x34 scope:global align:4
+iam_sum_art09 = .data:0x0008B8B0; // type:object size:0x34 scope:global align:4
+iam_sum_art10 = .data:0x0008B8E4; // type:object size:0x34 scope:global align:4
+iam_sum_art11 = .data:0x0008B918; // type:object size:0x34 scope:global align:4
+iam_sum_art12 = .data:0x0008B94C; // type:object size:0x34 scope:global align:4
+iam_sum_art13 = .data:0x0008B980; // type:object size:0x34 scope:global align:4
+iam_sum_art14 = .data:0x0008B9B4; // type:object size:0x34 scope:global align:4
+iam_sum_art15 = .data:0x0008B9E8; // type:object size:0x34 scope:global align:4
+iam_sum_asi_bed01 = .data:0x0008BA1C; // type:object size:0x34 scope:global align:4
+iam_sum_asi_chair01 = .data:0x0008BA50; // type:object size:0x34 scope:global align:4
+iam_sum_asi_chair02 = .data:0x0008BA84; // type:object size:0x34 scope:global align:4
+iam_sum_asi_chest01 = .data:0x0008BAB8; // type:object size:0x34 scope:global align:4
+aSumAsiChest02_func = .data:0x0008BAEC; // type:object size:0x14 scope:global align:4
+iam_sum_asi_chest02 = .data:0x0008BB00; // type:object size:0x34 scope:global align:4
+aSumAsiChest03_func = .data:0x0008BB34; // type:object size:0x14 scope:global align:4
+iam_sum_asi_chest03 = .data:0x0008BB48; // type:object size:0x34 scope:global align:4
+iam_sum_asi_lanp01 = .data:0x0008BB7C; // type:object size:0x34 scope:global align:4
+iam_sum_asi_screen01 = .data:0x0008BBB0; // type:object size:0x34 scope:global align:4
+iam_sum_asi_table01 = .data:0x0008BBE4; // type:object size:0x34 scope:global align:4
+iam_sum_asi_table02 = .data:0x0008BC18; // type:object size:0x34 scope:global align:4
+aSumasitaiko_func = .data:0x0008BC4C; // type:object size:0x14 scope:global align:4
+iam_sum_asi_taiko = .data:0x0008BC60; // type:object size:0x34 scope:global align:4
+aSumAyu_key_anime_data = .data:0x0008BC94; // type:object size:0xC scope:global align:4
+iam_sum_ayu = .data:0x0008BCA0; // type:object size:0x34 scope:global align:4
+iam_sum_baketu = .data:0x0008BCD4; // type:object size:0x34 scope:global align:4
+aSumBass_key_anime_data = .data:0x0008BD08; // type:object size:0xC scope:global align:4
+iam_sum_bass = .data:0x0008BD14; // type:object size:0x34 scope:global align:4
+aSumBass01_func = .data:0x0008BD48; // type:object size:0x14 scope:global align:4
+iam_sum_bass01 = .data:0x0008BD5C; // type:object size:0x34 scope:global align:4
+aSumBassl_key_anime_data = .data:0x0008BD90; // type:object size:0xC scope:global align:4
+iam_sum_bassl = .data:0x0008BD9C; // type:object size:0x34 scope:global align:4
+aSumBassm_key_anime_data = .data:0x0008BDD0; // type:object size:0xC scope:global align:4
+iam_sum_bassm = .data:0x0008BDDC; // type:object size:0x34 scope:global align:4
+sum_bdcake01_func = .data:0x0008BE10; // type:object size:0x14 scope:global align:4
+iam_sum_bdcake01 = .data:0x0008BE24; // type:object size:0x34 scope:global align:4
+iam_sum_billiads = .data:0x0008BE58; // type:object size:0x34 scope:global align:4
+aSumBiwa01_func = .data:0x0008BE8C; // type:object size:0x14 scope:global align:4
+iam_sum_biwa01 = .data:0x0008BEA0; // type:object size:0x34 scope:global align:4
+iam_sum_bla_bed01 = .data:0x0008BED4; // type:object size:0x34 scope:global align:4
+iam_sum_bla_chair02 = .data:0x0008BF08; // type:object size:0x34 scope:global align:4
+aSumBlaChest01_func = .data:0x0008BF3C; // type:object size:0x14 scope:global align:4
+iam_sum_bla_chest01 = .data:0x0008BF50; // type:object size:0x34 scope:global align:4
+iam_sum_bla_chest02 = .data:0x0008BF84; // type:object size:0x34 scope:global align:4
+aSumBlaChest03_func = .data:0x0008BFB8; // type:object size:0x14 scope:global align:4
+iam_sum_bla_chest03 = .data:0x0008BFCC; // type:object size:0x34 scope:global align:4
+iam_sum_bla_desk01 = .data:0x0008C000; // type:object size:0x34 scope:global align:4
+aSumBlaLanp_func = .data:0x0008C034; // type:object size:0x14 scope:global align:4
+iam_sum_bla_lanp = .data:0x0008C048; // type:object size:0x34 scope:global align:4
+iam_sum_bla_sofa02 = .data:0x0008C07C; // type:object size:0x34 scope:global align:4
+iam_sum_bla_table01 = .data:0x0008C0B0; // type:object size:0x34 scope:global align:4
+iam_sum_bla_table02 = .data:0x0008C0E4; // type:object size:0x34 scope:global align:4
+iam_sum_blue_bed01 = .data:0x0008C118; // type:object size:0x34 scope:global align:4
+iam_sum_blue_bench01 = .data:0x0008C14C; // type:object size:0x34 scope:global align:4
+aSumBlueBureau01_func = .data:0x0008C180; // type:object size:0x14 scope:global align:4
+iam_sum_blue_bureau01 = .data:0x0008C194; // type:object size:0x34 scope:global align:4
+aSumBlueCab01_func = .data:0x0008C1C8; // type:object size:0x14 scope:global align:4
+iam_sum_blue_cab01 = .data:0x0008C1DC; // type:object size:0x34 scope:global align:4
+iam_sum_blue_chair01 = .data:0x0008C210; // type:object size:0x34 scope:global align:4
+iam_sum_blue_chest01 = .data:0x0008C244; // type:object size:0x34 scope:global align:4
+iam_sum_blue_chest02 = .data:0x0008C278; // type:object size:0x34 scope:global align:4
+aSumBlueClk_func = .data:0x0008C2AC; // type:object size:0x14 scope:global align:4
+iam_sum_blue_clk = .data:0x0008C2C0; // type:object size:0x34 scope:global align:4
+aSumBlueLowChest01_func = .data:0x0008C2F4; // type:object size:0x14 scope:global align:4
+iam_sum_blue_lowchest01 = .data:0x0008C308; // type:object size:0x34 scope:global align:4
+iam_sum_blue_table01 = .data:0x0008C33C; // type:object size:0x34 scope:global align:4
+iam_sum_bon_boke = .data:0x0008C370; // type:object size:0x34 scope:global align:4
+iam_sum_bon_matu01 = .data:0x0008C3A4; // type:object size:0x34 scope:global align:4
+iam_sum_bon_matu02 = .data:0x0008C3D8; // type:object size:0x34 scope:global align:4
+iam_sum_bon_matu03 = .data:0x0008C40C; // type:object size:0x34 scope:global align:4
+iam_sum_bon_momiji = .data:0x0008C440; // type:object size:0x34 scope:global align:4
+iam_sum_bon_pira = .data:0x0008C474; // type:object size:0x34 scope:global align:4
+iam_sum_bon_sanshu = .data:0x0008C4A8; // type:object size:0x34 scope:global align:4
+iam_sum_bon_satuki = .data:0x0008C4DC; // type:object size:0x34 scope:global align:4
+iam_sum_bon_turu = .data:0x0008C510; // type:object size:0x34 scope:global align:4
+iam_sum_bon_ume = .data:0x0008C544; // type:object size:0x34 scope:global align:4
+iam_sum_bookcht01 = .data:0x0008C578; // type:object size:0x34 scope:global align:4
+aSumCasse01_func = .data:0x0008C5AC; // type:object size:0x14 scope:global align:4
+iam_sum_casse01 = .data:0x0008C5C0; // type:object size:0x34 scope:global align:4
+aSumCello01_func = .data:0x0008C5F4; // type:object size:0x14 scope:global align:4
+iam_sum_cello01 = .data:0x0008C608; // type:object size:0x34 scope:global align:4
+iam_sum_chair01 = .data:0x0008C63C; // type:object size:0x34 scope:global align:4
+aSumChikuon01_func = .data:0x0008C670; // type:object size:0x14 scope:global align:4
+iam_sum_chikuon01 = .data:0x0008C684; // type:object size:0x34 scope:global align:4
+aSumChikuon02_func = .data:0x0008C6B8; // type:object size:0x14 scope:global align:4
+iam_sum_chikuon02 = .data:0x0008C6CC; // type:object size:0x34 scope:global align:4
+iam_sum_classiccabinet01 = .data:0x0008C700; // type:object size:0x34 scope:global align:4
+iam_sum_classicchair01 = .data:0x0008C734; // type:object size:0x34 scope:global align:4
+aSumClchest01_func = .data:0x0008C768; // type:object size:0x14 scope:global align:4
+iam_sum_classicchest01 = .data:0x0008C77C; // type:object size:0x34 scope:global align:4
+iam_sum_classicchest02 = .data:0x0008C7B0; // type:object size:0x34 scope:global align:4
+iam_sum_classictable01 = .data:0x0008C7E4; // type:object size:0x34 scope:global align:4
+iam_sum_classicwardrope01 = .data:0x0008C818; // type:object size:0x34 scope:global align:4
+iam_sum_clbed02 = .data:0x0008C84C; // type:object size:0x34 scope:global align:4
+iam_sum_clchair02 = .data:0x0008C880; // type:object size:0x34 scope:global align:4
+aSumClChest03_func = .data:0x0008C8B4; // type:object size:0x14 scope:global align:4
+iam_sum_clchest03 = .data:0x0008C8C8; // type:object size:0x34 scope:global align:4
+iam_sum_col_chair01 = .data:0x0008C8FC; // type:object size:0x34 scope:global align:4
+iam_sum_col_chair02 = .data:0x0008C930; // type:object size:0x34 scope:global align:4
+iam_sum_col_chair03 = .data:0x0008C964; // type:object size:0x34 scope:global align:4
+iam_sum_comp01 = .data:0x0008C998; // type:object size:0x34 scope:global align:4
+asumconga01_func = .data:0x0008C9CC; // type:object size:0x14 scope:global align:4
+iam_sum_conga01 = .data:0x0008C9E0; // type:object size:0x34 scope:global align:4
+aSumConpo01_func = .data:0x0008CA14; // type:object size:0x14 scope:global align:4
+iam_sum_conpo01 = .data:0x0008CA28; // type:object size:0x34 scope:global align:4
+aSumConpo02_func = .data:0x0008CA5C; // type:object size:0x14 scope:global align:4
+iam_sum_conpo02 = .data:0x0008CA70; // type:object size:0x34 scope:global align:4
+iam_sum_cont_bed01 = .data:0x0008CAA4; // type:object size:0x34 scope:global align:4
+iam_sum_cont_cab01 = .data:0x0008CAD8; // type:object size:0x34 scope:global align:4
+iam_sum_cont_chair01 = .data:0x0008CB0C; // type:object size:0x34 scope:global align:4
+iam_sum_cont_chest01 = .data:0x0008CB40; // type:object size:0x34 scope:global align:4
+aSumContChest02_func = .data:0x0008CB74; // type:object size:0x14 scope:global align:4
+iam_sum_cont_chest02 = .data:0x0008CB88; // type:object size:0x34 scope:global align:4
+aSumContChest03_func = .data:0x0008CBBC; // type:object size:0x14 scope:global align:4
+iam_sum_cont_chest03 = .data:0x0008CBD0; // type:object size:0x34 scope:global align:4
+iam_sum_cont_sofa01 = .data:0x0008CC04; // type:object size:0x34 scope:global align:4
+iam_sum_cont_sofa02 = .data:0x0008CC38; // type:object size:0x34 scope:global align:4
+iam_sum_cont_table01 = .data:0x0008CC6C; // type:object size:0x34 scope:global align:4
+iam_sum_cont_table02 = .data:0x0008CCA0; // type:object size:0x34 scope:global align:4
+iam_sum_cupboard01 = .data:0x0008CCD4; // type:object size:0x34 scope:global align:4
+aSumDanna_key_anime_data = .data:0x0008CD08; // type:object size:0xC scope:global align:4
+iam_sum_danna = .data:0x0008CD14; // type:object size:0x34 scope:global align:4
+aSumDemekin_key_anime_data = .data:0x0008CD48; // type:object size:0xC scope:global align:4
+iam_sum_demekin = .data:0x0008CD54; // type:object size:0x34 scope:global align:4
+iam_sum_desk01 = .data:0x0008CD88; // type:object size:0x34 scope:global align:4
+aSumDojyo_key_anime_data = .data:0x0008CDBC; // type:object size:0xC scope:global align:4
+iam_sum_dojyo = .data:0x0008CDC8; // type:object size:0x34 scope:global align:4
+aSumDoll01_func = .data:0x0008CDFC; // type:object size:0x14 scope:global align:4
+iam_sum_doll01 = .data:0x0008CE10; // type:object size:0x34 scope:global align:4
+iam_sum_doll02 = .data:0x0008CE44; // type:object size:0x34 scope:global align:4
+iam_sum_doll03 = .data:0x0008CE78; // type:object size:0x34 scope:global align:4
+iam_sum_doll04 = .data:0x0008CEAC; // type:object size:0x34 scope:global align:4
+iam_sum_doll05 = .data:0x0008CEE0; // type:object size:0x34 scope:global align:4
+iam_sum_doll06 = .data:0x0008CF14; // type:object size:0x34 scope:global align:4
+iam_sum_doll07 = .data:0x0008CF48; // type:object size:0x34 scope:global align:4
+iam_sum_doll08 = .data:0x0008CF7C; // type:object size:0x34 scope:global align:4
+iam_sum_doll09 = .data:0x0008CFB0; // type:object size:0x34 scope:global align:4
+iam_sum_doll10 = .data:0x0008CFE4; // type:object size:0x34 scope:global align:4
+iam_sum_doll11 = .data:0x0008D018; // type:object size:0x34 scope:global align:4
+aSumDonko_key_anime_data = .data:0x0008D04C; // type:object size:0xC scope:global align:4
+iam_sum_donko = .data:0x0008D058; // type:object size:0x34 scope:global align:4
+iam_sum_fruitbed01 = .data:0x0008D08C; // type:object size:0x34 scope:global align:4
+iam_sum_fruitchair01 = .data:0x0008D0C0; // type:object size:0x34 scope:global align:4
+iam_sum_fruitchair02 = .data:0x0008D0F4; // type:object size:0x34 scope:global align:4
+iam_sum_fruitchair03 = .data:0x0008D128; // type:object size:0x34 scope:global align:4
+iam_sum_fruitchair04 = .data:0x0008D15C; // type:object size:0x34 scope:global align:4
+aSumFruitchest01_func = .data:0x0008D190; // type:object size:0x14 scope:global align:4
+iam_sum_fruitchest01 = .data:0x0008D1A4; // type:object size:0x34 scope:global align:4
+aSumFruitchest03_func = .data:0x0008D1D8; // type:object size:0x14 scope:global align:4
+iam_sum_fruitchest03 = .data:0x0008D1EC; // type:object size:0x34 scope:global align:4
+aSumfruitclk_func = .data:0x0008D220; // type:object size:0x14 scope:global align:4
+iam_sum_fruitclk = .data:0x0008D234; // type:object size:0x34 scope:global align:4
+iam_sum_fruittable01 = .data:0x0008D268; // type:object size:0x34 scope:global align:4
+iam_sum_fruittable02 = .data:0x0008D29C; // type:object size:0x34 scope:global align:4
+iam_sum_fruittable03 = .data:0x0008D2D0; // type:object size:0x34 scope:global align:4
+aSumFruittv01_on_anime = .data:0x0008D304; // type:object size:0x34 scope:global align:4
+aSumFruittv01_func = .data:0x0008D338; // type:object size:0x14 scope:global align:4
+iam_sum_fruittv01 = .data:0x0008D34C; // type:object size:0x34 scope:global align:4
+aSumFuna_key_anime_data = .data:0x0008D380; // type:object size:0xC scope:global align:4
+iam_sum_funa = .data:0x0008D38C; // type:object size:0x34 scope:global align:4
+prim_a_table$3943 = .data:0x0008D3C0; // type:object size:0x44 scope:local align:4
+aSumgenji_func = .data:0x0008D404; // type:object size:0x14 scope:global align:4
+iam_sum_genji = .data:0x0008D418; // type:object size:0x34 scope:global align:4
+aSumGill_key_anime_data = .data:0x0008D44C; // type:object size:0xC scope:global align:4
+iam_sum_gill = .data:0x0008D458; // type:object size:0x34 scope:global align:4
+aSumGinyanma_key_anime_data = .data:0x0008D48C; // type:object size:0xC scope:global align:4
+iam_sum_ginyanma = .data:0x0008D498; // type:object size:0x34 scope:global align:4
+iam_sum_globe01 = .data:0x0008D4CC; // type:object size:0x34 scope:global align:4
+iam_sum_golfbag01 = .data:0x0008D500; // type:object size:0x34 scope:global align:4
+iam_sum_golfbag02 = .data:0x0008D534; // type:object size:0x34 scope:global align:4
+iam_sum_golfbag03 = .data:0x0008D568; // type:object size:0x34 scope:global align:4
+aSumGomadara_key_anime_data = .data:0x0008D59C; // type:object size:0xC scope:global align:4
+iam_sum_gomadara = .data:0x0008D5A8; // type:object size:0x34 scope:global align:4
+iam_sum_gre_bed01 = .data:0x0008D5DC; // type:object size:0x34 scope:global align:4
+iam_sum_gre_chair01 = .data:0x0008D610; // type:object size:0x34 scope:global align:4
+iam_sum_gre_chair02 = .data:0x0008D644; // type:object size:0x34 scope:global align:4
+iam_sum_gre_chest01 = .data:0x0008D678; // type:object size:0x34 scope:global align:4
+aSumGreChest02_func = .data:0x0008D6AC; // type:object size:0x14 scope:global align:4
+iam_sum_gre_chest02 = .data:0x0008D6C0; // type:object size:0x34 scope:global align:4
+aSumGreChest03_func = .data:0x0008D6F4; // type:object size:0x14 scope:global align:4
+iam_sum_gre_chest03 = .data:0x0008D708; // type:object size:0x34 scope:global align:4
+iam_sum_gre_counter01 = .data:0x0008D73C; // type:object size:0x34 scope:global align:4
+iam_sum_gre_desk01 = .data:0x0008D770; // type:object size:0x34 scope:global align:4
+aSumGreLanp01_func = .data:0x0008D7A4; // type:object size:0x14 scope:global align:4
+iam_sum_gre_lanp01 = .data:0x0008D7B8; // type:object size:0x34 scope:global align:4
+iam_sum_gre_table01 = .data:0x0008D7EC; // type:object size:0x34 scope:global align:4
+aSumGuitar01_func = .data:0x0008D820; // type:object size:0x14 scope:global align:4
+iam_sum_guitar01 = .data:0x0008D834; // type:object size:0x34 scope:global align:4
+aSumGuitar02_func = .data:0x0008D868; // type:object size:0x14 scope:global align:4
+iam_sum_guitar02 = .data:0x0008D87C; // type:object size:0x34 scope:global align:4
+aSumGuitar03_func = .data:0x0008D8B0; // type:object size:0x14 scope:global align:4
+iam_sum_guitar03 = .data:0x0008D8C4; // type:object size:0x34 scope:global align:4
+aSumGupi_key_anime_data = .data:0x0008D8F8; // type:object size:0xC scope:global align:4
+iam_sum_gupi = .data:0x0008D904; // type:object size:0x34 scope:global align:4
+aSumHachi_key_anime_data = .data:0x0008D938; // type:object size:0xC scope:global align:4
+iam_sum_hachi = .data:0x0008D944; // type:object size:0x34 scope:global align:4
+iam_sum_hal_bed01 = .data:0x0008D978; // type:object size:0x34 scope:global align:4
+aSumHalBox01_func = .data:0x0008D9AC; // type:object size:0x14 scope:global align:4
+iam_sum_hal_box01 = .data:0x0008D9C0; // type:object size:0x34 scope:global align:4
+iam_sum_hal_chair01 = .data:0x0008D9F4; // type:object size:0x34 scope:global align:4
+iam_sum_hal_chest01 = .data:0x0008DA28; // type:object size:0x34 scope:global align:4
+aSumHalChest02_func = .data:0x0008DA5C; // type:object size:0x14 scope:global align:4
+iam_sum_hal_chest02 = .data:0x0008DA70; // type:object size:0x34 scope:global align:4
+aSumHalChest03_func = .data:0x0008DAA4; // type:object size:0x14 scope:global align:4
+iam_sum_hal_chest03 = .data:0x0008DAB8; // type:object size:0x34 scope:global align:4
+aSumHalClk01_func = .data:0x0008DAEC; // type:object size:0x14 scope:global align:4
+iam_sum_hal_clk01 = .data:0x0008DB00; // type:object size:0x34 scope:global align:4
+aSumHalLanp01_func = .data:0x0008DB34; // type:object size:0x14 scope:global align:4
+iam_sum_hal_lanp01 = .data:0x0008DB48; // type:object size:0x34 scope:global align:4
+aSumHalMirror01_func = .data:0x0008DB7C; // type:object size:0x14 scope:global align:4
+iam_sum_hal_mirror01 = .data:0x0008DB90; // type:object size:0x34 scope:global align:4
+iam_sum_hal_pkin = .data:0x0008DBC4; // type:object size:0x34 scope:global align:4
+iam_sum_hal_sofa01 = .data:0x0008DBF8; // type:object size:0x34 scope:global align:4
+iam_sum_hal_table01 = .data:0x0008DC2C; // type:object size:0x34 scope:global align:4
+aSumHarp_func = .data:0x0008DC60; // type:object size:0x14 scope:global align:4
+iam_sum_harp = .data:0x0008DC74; // type:object size:0x34 scope:global align:4
+aSumHera_key_anime_data = .data:0x0008DCA8; // type:object size:0xC scope:global align:4
+iam_sum_hera = .data:0x0008DCB4; // type:object size:0x34 scope:global align:4
+aSumHigurashi_func = .data:0x0008DCE8; // type:object size:0x14 scope:global align:4
+iam_sum_higurashi = .data:0x0008DCFC; // type:object size:0x34 scope:global align:4
+aSumHirata_key_anime_data = .data:0x0008DD30; // type:object size:0xC scope:global align:4
+iam_sum_hirata = .data:0x0008DD3C; // type:object size:0x34 scope:global align:4
+aSumIto_key_anime_data = .data:0x0008DD70; // type:object size:0xC scope:global align:4
+iam_sum_ito = .data:0x0008DD7C; // type:object size:0x34 scope:global align:4
+aSumIwana_key_anime_data = .data:0x0008DDB0; // type:object size:0xC scope:global align:4
+iam_sum_iwana = .data:0x0008DDBC; // type:object size:0x34 scope:global align:4
+aSumJukebox_func = .data:0x0008DDF0; // type:object size:0x14 scope:global align:4
+iam_sum_jukebox = .data:0x0008DE04; // type:object size:0x34 scope:global align:4
+aSumKabuto_key_anime_data = .data:0x0008DE38; // type:object size:0xC scope:global align:4
+iam_sum_kabuto = .data:0x0008DE44; // type:object size:0x34 scope:global align:4
+aSumKamakiri_key_anime_data = .data:0x0008DE78; // type:object size:0xC scope:global align:4
+iam_sum_kamakiri = .data:0x0008DE84; // type:object size:0x34 scope:global align:4
+aSumKanabun_key_anime_data = .data:0x0008DEB8; // type:object size:0xC scope:global align:4
+iam_sum_kanabun = .data:0x0008DEC4; // type:object size:0x34 scope:global align:4
+aSumKaseki_key_anime_data = .data:0x0008DEF8; // type:object size:0xC scope:global align:4
+iam_sum_kaseki = .data:0x0008DF04; // type:object size:0x34 scope:global align:4
+aSumKiageha_key_anime_data = .data:0x0008DF38; // type:object size:0xC scope:global align:4
+iam_sum_kiageha = .data:0x0008DF44; // type:object size:0x34 scope:global align:4
+aSumKingyo_key_anime_data = .data:0x0008DF78; // type:object size:0xC scope:global align:4
+iam_sum_kingyo = .data:0x0008DF84; // type:object size:0x34 scope:global align:4
+aSumKirigirisu_func = .data:0x0008DFB8; // type:object size:0x14 scope:global align:4
+iam_sum_kirigirisu = .data:0x0008DFCC; // type:object size:0x34 scope:global align:4
+aSumKisha_func = .data:0x0008E000; // type:object size:0x14 scope:global align:4
+iam_sum_kisha = .data:0x0008E014; // type:object size:0x34 scope:global align:4
+iam_sum_kitchair01 = .data:0x0008E048; // type:object size:0x34 scope:global align:4
+iam_sum_kittable01 = .data:0x0008E07C; // type:object size:0x34 scope:global align:4
+aSumKoi_key_anime_data = .data:0x0008E0B0; // type:object size:0xC scope:global align:4
+iam_sum_koi = .data:0x0008E0BC; // type:object size:0x34 scope:global align:4
+iam_sum_kokuban = .data:0x0008E0F0; // type:object size:0x34 scope:global align:4
+aSumKoorogi_func = .data:0x0008E124; // type:object size:0x14 scope:global align:4
+iam_sum_koorogi = .data:0x0008E138; // type:object size:0x34 scope:global align:4
+iam_sum_liccabed = .data:0x0008E16C; // type:object size:0x34 scope:global align:4
+iam_sum_liccachair = .data:0x0008E1A0; // type:object size:0x34 scope:global align:4
+aSumLiccachest_func = .data:0x0008E1D4; // type:object size:0x14 scope:global align:4
+iam_sum_liccachest = .data:0x0008E1E8; // type:object size:0x34 scope:global align:4
+iam_sum_liccakitchen = .data:0x0008E21C; // type:object size:0x34 scope:global align:4
+iam_sum_liccalanp = .data:0x0008E250; // type:object size:0x34 scope:global align:4
+aSumLiccaLowChest_func = .data:0x0008E284; // type:object size:0x14 scope:global align:4
+iam_sum_liccalowchest = .data:0x0008E298; // type:object size:0x34 scope:global align:4
+iam_sum_liccalowtable = .data:0x0008E2CC; // type:object size:0x34 scope:global align:4
+aSumLiccaMirror_func = .data:0x0008E300; // type:object size:0x14 scope:global align:4
+iam_sum_liccamirror = .data:0x0008E314; // type:object size:0x34 scope:global align:4
+aSumLiccapiano_func = .data:0x0008E348; // type:object size:0x14 scope:global align:4
+iam_sum_liccapiano = .data:0x0008E35C; // type:object size:0x34 scope:global align:4
+iam_sum_liccasofa = .data:0x0008E390; // type:object size:0x34 scope:global align:4
+iam_sum_liccatable = .data:0x0008E3C4; // type:object size:0x34 scope:global align:4
+iam_sum_log_bed01 = .data:0x0008E3F8; // type:object size:0x34 scope:global align:4
+iam_sum_log_chair01 = .data:0x0008E42C; // type:object size:0x34 scope:global align:4
+iam_sum_log_chair02 = .data:0x0008E460; // type:object size:0x34 scope:global align:4
+iam_sum_log_chair03 = .data:0x0008E494; // type:object size:0x34 scope:global align:4
+aSumLogChest01_func = .data:0x0008E4C8; // type:object size:0x14 scope:global align:4
+iam_sum_log_chest01 = .data:0x0008E4DC; // type:object size:0x34 scope:global align:4
+aSumBlaChest02_func = .data:0x0008E510; // type:object size:0x14 scope:global align:4
+iam_sum_log_chest02 = .data:0x0008E524; // type:object size:0x34 scope:global align:4
+iam_sum_log_chest03 = .data:0x0008E558; // type:object size:0x34 scope:global align:4
+pappo_count_table$4758 = .data:0x0008E58C; // type:object size:0x18 scope:local align:4
+aSumLogHatoclk_func = .data:0x0008E5A4; // type:object size:0x14 scope:global align:4
+iam_sum_log_hatoclk = .data:0x0008E5B8; // type:object size:0x34 scope:global align:4
+iam_sum_log_table01 = .data:0x0008E5EC; // type:object size:0x34 scope:global align:4
+iam_sum_log_table02 = .data:0x0008E620; // type:object size:0x34 scope:global align:4
+aSumLv_Stereo_func = .data:0x0008E654; // type:object size:0x14 scope:global align:4
+iam_sum_lv_stereo = .data:0x0008E668; // type:object size:0x34 scope:global align:4
+aSumMatumushi_func = .data:0x0008E69C; // type:object size:0x14 scope:global align:4
+iam_sum_matumushi = .data:0x0008E6B0; // type:object size:0x34 scope:global align:4
+aSumMd01_func = .data:0x0008E6E4; // type:object size:0x14 scope:global align:4
+iam_sum_md01 = .data:0x0008E6F8; // type:object size:0x34 scope:global align:4
+aSumMezaClock_sklkey = .data:0x0008E72C; // type:object size:0xC scope:global align:4
+aSumMezaClock_func = .data:0x0008E738; // type:object size:0x14 scope:global align:4
+iam_sum_mezaclock = .data:0x0008E74C; // type:object size:0x34 scope:global align:4
+aSumMinmin_func = .data:0x0008E780; // type:object size:0x14 scope:global align:4
+iam_sum_minmin = .data:0x0008E794; // type:object size:0x34 scope:global align:4
+iam_sum_misin01 = .data:0x0008E7C8; // type:object size:0x34 scope:global align:4
+aSumMiyama_key_anime_data = .data:0x0008E7FC; // type:object size:0xC scope:global align:4
+iam_sum_miyama = .data:0x0008E808; // type:object size:0x34 scope:global align:4
+aSumMizunomi_sklkey = .data:0x0008E83C; // type:object size:0xC scope:global align:4
+aSumMizunomi_func = .data:0x0008E848; // type:object size:0x14 scope:global align:4
+iam_sum_mizunomi = .data:0x0008E85C; // type:object size:0x34 scope:global align:4
+aSumMonki_key_anime_data = .data:0x0008E890; // type:object size:0xC scope:global align:4
+iam_sum_monki = .data:0x0008E89C; // type:object size:0x34 scope:global align:4
+aSumMonshiro_key_anime_data = .data:0x0008E8D0; // type:object size:0xC scope:global align:4
+iam_sum_monshiro = .data:0x0008E8DC; // type:object size:0x34 scope:global align:4
+aSumNamazu_key_anime_data = .data:0x0008E910; // type:object size:0xC scope:global align:4
+iam_sum_namazu = .data:0x0008E91C; // type:object size:0x34 scope:global align:4
+aSumNanahoshi_key_anime_data = .data:0x0008E950; // type:object size:0xC scope:global align:4
+iam_sum_nanahoshi = .data:0x0008E95C; // type:object size:0x34 scope:global align:4
+aSumNigoi_key_anime_data = .data:0x0008E990; // type:object size:0xC scope:global align:4
+iam_sum_nigoi = .data:0x0008E99C; // type:object size:0x34 scope:global align:4
+aSumNiji_key_anime_data = .data:0x0008E9D0; // type:object size:0xC scope:global align:4
+iam_sum_niji = .data:0x0008E9DC; // type:object size:0x34 scope:global align:4
+aSumNisiki_key_anime_data = .data:0x0008EA10; // type:object size:0xC scope:global align:4
+iam_sum_nisiki = .data:0x0008EA1C; // type:object size:0x34 scope:global align:4
+aSumNokogiri_key_anime_data = .data:0x0008EA50; // type:object size:0xC scope:global align:4
+iam_sum_nokogiri = .data:0x0008EA5C; // type:object size:0x34 scope:global align:4
+aSumOhmurasaki_key_anime_data = .data:0x0008EA90; // type:object size:0xC scope:global align:4
+iam_sum_ohmurasaki = .data:0x0008EA9C; // type:object size:0x34 scope:global align:4
+aSumOikawa_key_anime_data = .data:0x0008EAD0; // type:object size:0xC scope:global align:4
+iam_sum_oikawa = .data:0x0008EADC; // type:object size:0x34 scope:global align:4
+aSumOkiagari01_func = .data:0x0008EB10; // type:object size:0x14 scope:global align:4
+iam_sum_okiagari01 = .data:0x0008EB24; // type:object size:0x34 scope:global align:4
+aSumOkuwa_key_anime_data = .data:0x0008EB58; // type:object size:0xC scope:global align:4
+iam_sum_okuwa = .data:0x0008EB64; // type:object size:0x34 scope:global align:4
+aSumOldClk01_func = .data:0x0008EB98; // type:object size:0x14 scope:global align:4
+iam_sum_oldclk01 = .data:0x0008EBAC; // type:object size:0x34 scope:global align:4
+iam_sum_oldsofa01 = .data:0x0008EBE0; // type:object size:0x34 scope:global align:4
+aSumOniyanma_key_anime_data = .data:0x0008EC14; // type:object size:0xC scope:global align:4
+iam_sum_oniyanma = .data:0x0008EC20; // type:object size:0x34 scope:global align:4
+aSumOonamazu_key_anime_data = .data:0x0008EC54; // type:object size:0xC scope:global align:4
+iam_sum_oonamazu = .data:0x0008EC60; // type:object size:0x34 scope:global align:4
+aSumPet01_func = .data:0x0008EC94; // type:object size:0x14 scope:global align:4
+iam_sum_pet01 = .data:0x0008ECA8; // type:object size:0x34 scope:global align:4
+aSumPiano01_func = .data:0x0008ECDC; // type:object size:0x14 scope:global align:4
+iam_sum_piano01 = .data:0x0008ECF0; // type:object size:0x34 scope:global align:4
+aSumPirania_key_anime_data = .data:0x0008ED24; // type:object size:0xC scope:global align:4
+iam_sum_pirania = .data:0x0008ED30; // type:object size:0x34 scope:global align:4
+iam_sum_pl_aloe01 = .data:0x0008ED64; // type:object size:0x34 scope:global align:4
+iam_sum_pl_ananas = .data:0x0008ED98; // type:object size:0x34 scope:global align:4
+iam_sum_pl_benjyami = .data:0x0008EDCC; // type:object size:0x34 scope:global align:4
+iam_sum_pl_caladium01 = .data:0x0008EE00; // type:object size:0x34 scope:global align:4
+iam_sum_pl_cocos = .data:0x0008EE34; // type:object size:0x34 scope:global align:4
+iam_sum_pl_compacta = .data:0x0008EE68; // type:object size:0x34 scope:global align:4
+iam_sum_pl_draca02 = .data:0x0008EE9C; // type:object size:0x34 scope:global align:4
+iam_sum_pl_dracaena = .data:0x0008EED0; // type:object size:0x34 scope:global align:4
+iam_sum_pl_gomunoki = .data:0x0008EF04; // type:object size:0x34 scope:global align:4
+iam_sum_pl_hirasabo = .data:0x0008EF38; // type:object size:0x34 scope:global align:4
+iam_sum_pl_kuroton = .data:0x0008EF6C; // type:object size:0x34 scope:global align:4
+iam_sum_pl_pakila = .data:0x0008EFA0; // type:object size:0x34 scope:global align:4
+iam_sum_pl_pothos = .data:0x0008EFD4; // type:object size:0x34 scope:global align:4
+iam_sum_pl_shuroci = .data:0x0008F008; // type:object size:0x34 scope:global align:4
+iam_sum_pl_yamayasi = .data:0x0008F03C; // type:object size:0x34 scope:global align:4
+iam_sum_popchair01 = .data:0x0008F070; // type:object size:0x34 scope:global align:4
+iam_sum_popchair02 = .data:0x0008F0A4; // type:object size:0x34 scope:global align:4
+iam_sum_popchair03 = .data:0x0008F0D8; // type:object size:0x34 scope:global align:4
+iam_sum_poptable01 = .data:0x0008F10C; // type:object size:0x34 scope:global align:4
+iam_sum_poptable02 = .data:0x0008F140; // type:object size:0x34 scope:global align:4
+iam_sum_poptable03 = .data:0x0008F174; // type:object size:0x34 scope:global align:4
+aSumRadio01_func = .data:0x0008F1A8; // type:object size:0x14 scope:global align:4
+iam_sum_radio01 = .data:0x0008F1BC; // type:object size:0x34 scope:global align:4
+aSumRadio02_func = .data:0x0008F1F0; // type:object size:0x14 scope:global align:4
+iam_sum_radio02 = .data:0x0008F204; // type:object size:0x34 scope:global align:4
+aSumRaigyo_key_anime_data = .data:0x0008F238; // type:object size:0xC scope:global align:4
+iam_sum_raigyo = .data:0x0008F244; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_bed01 = .data:0x0008F278; // type:object size:0x34 scope:global align:4
+aSumRatanChest01_func = .data:0x0008F2AC; // type:object size:0x14 scope:global align:4
+iam_sum_ratan_chest01 = .data:0x0008F2C0; // type:object size:0x34 scope:global align:4
+aSumRatanChest02_func = .data:0x0008F2F4; // type:object size:0x14 scope:global align:4
+iam_sum_ratan_chest02 = .data:0x0008F308; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_chest03 = .data:0x0008F33C; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_isu01 = .data:0x0008F370; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_isu02 = .data:0x0008F3A4; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_lanp = .data:0x0008F3D8; // type:object size:0x34 scope:global align:4
+aSumRatanMirror_func = .data:0x0008F40C; // type:object size:0x14 scope:global align:4
+iam_sum_ratan_mirror = .data:0x0008F420; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_screen = .data:0x0008F454; // type:object size:0x34 scope:global align:4
+iam_sum_ratan_table01 = .data:0x0008F488; // type:object size:0x34 scope:global align:4
+aSumReco_func = .data:0x0008F4BC; // type:object size:0x14 scope:global align:4
+iam_sum_reco01 = .data:0x0008F4D0; // type:object size:0x34 scope:global align:4
+texture_table$5258 = .data:0x0008F504; // type:object size:0x10 scope:local align:4
+aSumroboclk_func = .data:0x0008F514; // type:object size:0x14 scope:global align:4
+iam_sum_roboclk = .data:0x0008F528; // type:object size:0x34 scope:global align:4
+anime_table$5316 = .data:0x0008F55C; // type:object size:0x10 scope:local align:4
+aSumRoboconpo_func = .data:0x0008F56C; // type:object size:0x14 scope:global align:4
+iam_sum_roboconpo = .data:0x0008F580; // type:object size:0x34 scope:global align:4
+iam_sum_sabo01 = .data:0x0008F5B4; // type:object size:0x34 scope:global align:4
+iam_sum_sabo02 = .data:0x0008F5E8; // type:object size:0x34 scope:global align:4
+aSumSaiconpo_func = .data:0x0008F61C; // type:object size:0x14 scope:global align:4
+iam_sum_saiconpo = .data:0x0008F630; // type:object size:0x34 scope:global align:4
+aSumSake_key_anime_data = .data:0x0008F664; // type:object size:0xC scope:global align:4
+iam_sum_sake = .data:0x0008F670; // type:object size:0x34 scope:global align:4
+aSumShiokara_key_anime_data = .data:0x0008F6A4; // type:object size:0xC scope:global align:4
+iam_sum_shiokara = .data:0x0008F6B0; // type:object size:0x34 scope:global align:4
+iam_sum_shoukaki = .data:0x0008F6E4; // type:object size:0x34 scope:global align:4
+aSumSlot_anim = .data:0x0008F718; // type:object size:0x8 scope:global align:4
+aSumSlot_aime_idx = .data:0x0008F720; // type:object size:0x79 scope:global align:4
+aSumSlot_func = .data:0x0008F79C; // type:object size:0x14 scope:global align:4
+iam_sum_slot = .data:0x0008F7B0; // type:object size:0x34 scope:global align:4
+iam_sum_sofe01 = .data:0x0008F7E4; // type:object size:0x34 scope:global align:4
+iam_sum_sofe02 = .data:0x0008F818; // type:object size:0x34 scope:global align:4
+iam_sum_sofe03 = .data:0x0008F84C; // type:object size:0x34 scope:global align:4
+aSumStereo01_func = .data:0x0008F880; // type:object size:0x14 scope:global align:4
+iam_sum_stereo01 = .data:0x0008F894; // type:object size:0x34 scope:global align:4
+aSumStereo02_func = .data:0x0008F8C8; // type:object size:0x14 scope:global align:4
+iam_sum_stereo02 = .data:0x0008F8DC; // type:object size:0x34 scope:global align:4
+aSumStove01_func = .data:0x0008F910; // type:object size:0x14 scope:global align:4
+iam_sum_stove01 = .data:0x0008F924; // type:object size:0x34 scope:global align:4
+iam_sum_suberi01 = .data:0x0008F958; // type:object size:0x34 scope:global align:4
+aSumSuzumushi_func = .data:0x0008F98C; // type:object size:0x14 scope:global align:4
+iam_sum_suzumushi = .data:0x0008F9A0; // type:object size:0x34 scope:global align:4
+aSumSyouryou_func = .data:0x0008F9D4; // type:object size:0x14 scope:global align:4
+iam_sum_syouryou = .data:0x0008F9E8; // type:object size:0x34 scope:global align:4
+asumtaiko01_func = .data:0x0008FA1C; // type:object size:0x14 scope:global align:4
+iam_sum_taiko01 = .data:0x0008FA30; // type:object size:0x34 scope:global align:4
+iam_sum_takkyu = .data:0x0008FA64; // type:object size:0x34 scope:global align:4
+aSumTamamushi_key_anime_data = .data:0x0008FA98; // type:object size:0xC scope:global align:4
+iam_sum_tamamushi = .data:0x0008FAA4; // type:object size:0x34 scope:global align:4
+aSumTanago_key_anime_data = .data:0x0008FAD8; // type:object size:0xC scope:global align:4
+iam_sum_tanago = .data:0x0008FAE4; // type:object size:0x34 scope:global align:4
+iam_sum_taru01 = .data:0x0008FB18; // type:object size:0x34 scope:global align:4
+iam_sum_taru02 = .data:0x0008FB4C; // type:object size:0x34 scope:global align:4
+aSumTekin01_func = .data:0x0008FB80; // type:object size:0x14 scope:global align:4
+iam_sum_tekin01 = .data:0x0008FB94; // type:object size:0x34 scope:global align:4
+aSumTentou_key_anime_data = .data:0x0008FBC8; // type:object size:0xC scope:global align:4
+iam_sum_tentou = .data:0x0008FBD4; // type:object size:0x34 scope:global align:4
+aSumTimpani01_func = .data:0x0008FC08; // type:object size:0x14 scope:global align:4
+iam_sum_timpani01 = .data:0x0008FC1C; // type:object size:0x34 scope:global align:4
+aSumTonosama_func = .data:0x0008FC50; // type:object size:0x14 scope:global align:4
+iam_sum_tonosama = .data:0x0008FC64; // type:object size:0x34 scope:global align:4
+iam_sum_totemp01 = .data:0x0008FC98; // type:object size:0x34 scope:global align:4
+iam_sum_totemp02 = .data:0x0008FCCC; // type:object size:0x34 scope:global align:4
+iam_sum_totemp03 = .data:0x0008FD00; // type:object size:0x34 scope:global align:4
+iam_sum_totemp04 = .data:0x0008FD34; // type:object size:0x34 scope:global align:4
+iam_sum_touro01 = .data:0x0008FD68; // type:object size:0x34 scope:global align:4
+iam_sum_touro02 = .data:0x0008FD9C; // type:object size:0x34 scope:global align:4
+iam_sum_touro03 = .data:0x0008FDD0; // type:object size:0x34 scope:global align:4
+iam_sum_touro04 = .data:0x0008FE04; // type:object size:0x34 scope:global align:4
+aSumTukutuku_func = .data:0x0008FE38; // type:object size:0x14 scope:global align:4
+iam_sum_tukutuku = .data:0x0008FE4C; // type:object size:0x34 scope:global align:4
+aSumTv01_on_anime = .data:0x0008FE80; // type:object size:0x6C scope:global align:4
+aSumTv01_func = .data:0x0008FEEC; // type:object size:0x14 scope:global align:4
+iam_sum_tv01 = .data:0x0008FF00; // type:object size:0x34 scope:global align:4
+aSumTv02_on_anime = .data:0x0008FF34; // type:object size:0x14 scope:global align:4
+aSumTv02_func = .data:0x0008FF48; // type:object size:0x14 scope:global align:4
+iam_sum_tv02 = .data:0x0008FF5C; // type:object size:0x34 scope:global align:4
+aSumUgui_key_anime_data = .data:0x0008FF90; // type:object size:0xC scope:global align:4
+iam_sum_ugui = .data:0x0008FF9C; // type:object size:0x34 scope:global align:4
+aSumUnagi_key_anime_data = .data:0x0008FFD0; // type:object size:0xC scope:global align:4
+iam_sum_unagi = .data:0x0008FFDC; // type:object size:0x34 scope:global align:4
+iam_sum_uwa_cup01 = .data:0x00090010; // type:object size:0x34 scope:global align:4
+iam_sum_uwa_poto01 = .data:0x00090044; // type:object size:0x34 scope:global align:4
+iam_sum_uwa_vase01 = .data:0x00090078; // type:object size:0x34 scope:global align:4
+iam_sum_uwa_vase02 = .data:0x000900AC; // type:object size:0x34 scope:global align:4
+iam_sum_uwa_vase03 = .data:0x000900E0; // type:object size:0x34 scope:global align:4
+aSumViola01_func = .data:0x00090114; // type:object size:0x14 scope:global align:4
+iam_sum_viola01 = .data:0x00090128; // type:object size:0x34 scope:global align:4
+aSumWakasagi_key_anime_data = .data:0x0009015C; // type:object size:0xC scope:global align:4
+iam_sum_wakasagi = .data:0x00090168; // type:object size:0x34 scope:global align:4
+iam_sum_wc01 = .data:0x0009019C; // type:object size:0x34 scope:global align:4
+iam_sum_wc02 = .data:0x000901D0; // type:object size:0x34 scope:global align:4
+iam_sum_whi_bed01 = .data:0x00090204; // type:object size:0x34 scope:global align:4
+aSumWhiChest01_func = .data:0x00090238; // type:object size:0x14 scope:global align:4
+iam_sum_whi_chest01 = .data:0x0009024C; // type:object size:0x34 scope:global align:4
+aSumWhiChest02_func = .data:0x00090280; // type:object size:0x14 scope:global align:4
+iam_sum_whi_chest02 = .data:0x00090294; // type:object size:0x34 scope:global align:4
+aSumWhiLanp_func = .data:0x000902C8; // type:object size:0x14 scope:global align:4
+iam_sum_whi_lanp = .data:0x000902DC; // type:object size:0x34 scope:global align:4
+aSumWhiMirror_func = .data:0x00090310; // type:object size:0x14 scope:global align:4
+iam_sum_whi_mirror = .data:0x00090324; // type:object size:0x34 scope:global align:4
+iam_sum_whi_sofa01 = .data:0x00090358; // type:object size:0x34 scope:global align:4
+iam_sum_x_bed01 = .data:0x0009038C; // type:object size:0x34 scope:global align:4
+iam_sum_x_chair01 = .data:0x000903C0; // type:object size:0x34 scope:global align:4
+aSumXChest01_func = .data:0x000903F4; // type:object size:0x14 scope:global align:4
+iam_sum_x_chest01 = .data:0x00090408; // type:object size:0x34 scope:global align:4
+aSumXChest02_func = .data:0x0009043C; // type:object size:0x14 scope:global align:4
+iam_sum_x_chest02 = .data:0x00090450; // type:object size:0x34 scope:global align:4
+iam_sum_x_chest03 = .data:0x00090484; // type:object size:0x34 scope:global align:4
+aSumXClk_func = .data:0x000904B8; // type:object size:0x14 scope:global align:4
+iam_sum_x_clk = .data:0x000904CC; // type:object size:0x34 scope:global align:4
+iam_sum_x_lanp = .data:0x00090500; // type:object size:0x34 scope:global align:4
+aSumX_Piano_func = .data:0x00090534; // type:object size:0x14 scope:global align:4
+iam_sum_x_piano = .data:0x00090548; // type:object size:0x34 scope:global align:4
+iam_sum_x_sofa01 = .data:0x0009057C; // type:object size:0x34 scope:global align:4
+iam_sum_x_table01 = .data:0x000905B0; // type:object size:0x34 scope:global align:4
+aSumYamame_key_anime_data = .data:0x000905E4; // type:object size:0xC scope:global align:4
+iam_sum_yamame = .data:0x000905F0; // type:object size:0x34 scope:global align:4
+iam_tak_apollo1 = .data:0x00090624; // type:object size:0x34 scope:global align:4
+iam_tak_arwing = .data:0x00090658; // type:object size:0x34 scope:global align:4
+aTakAsteroid1_sklkey = .data:0x0009068C; // type:object size:0xC scope:global align:4
+iam_tak_asteroid1 = .data:0x00090698; // type:object size:0x34 scope:global align:4
+iam_tak_astro = .data:0x000906CC; // type:object size:0x34 scope:global align:4
+aTakBarber_sklkey = .data:0x00090700; // type:object size:0xC scope:global align:4
+iam_tak_barber = .data:0x0009070C; // type:object size:0x34 scope:global align:4
+iam_tak_cone01 = .data:0x00090740; // type:object size:0x34 scope:global align:4
+iam_tak_cone03 = .data:0x00090774; // type:object size:0x34 scope:global align:4
+iam_tak_cube = .data:0x000907A8; // type:object size:0x34 scope:global align:4
+iam_tak_drum02 = .data:0x000907DC; // type:object size:0x34 scope:global align:4
+aTakEisei_sklkey = .data:0x00090810; // type:object size:0xC scope:global align:4
+iam_tak_eisei = .data:0x0009081C; // type:object size:0x34 scope:global align:4
+iam_tak_hole01 = .data:0x00090850; // type:object size:0x34 scope:global align:4
+fTIC_func = .data:0x00090884; // type:object size:0x14 scope:global align:4
+iam_tak_ice = .data:0x00090898; // type:object size:0x34 scope:global align:4
+iam_tak_isu03 = .data:0x000908CC; // type:object size:0x34 scope:global align:4
+fTL_func = .data:0x00090900; // type:object size:0x14 scope:global align:4
+iam_tak_lion = .data:0x00090914; // type:object size:0x34 scope:global align:4
+fTM_func = .data:0x00090948; // type:object size:0x14 scope:global align:4
+iam_tak_megami = .data:0x0009095C; // type:object size:0x34 scope:global align:4
+aTakMetro_func = .data:0x00090990; // type:object size:0x14 scope:global align:4
+iam_tak_metro = .data:0x000909A4; // type:object size:0x34 scope:global align:4
+fTMny_func = .data:0x000909D8; // type:object size:0x14 scope:global align:4
+iam_tak_money = .data:0x000909EC; // type:object size:0x34 scope:global align:4
+fTMN_func = .data:0x00090A20; // type:object size:0x14 scope:global align:4
+iam_tak_moon = .data:0x00090A34; // type:object size:0x34 scope:global align:4
+iam_tak_mooncar = .data:0x00090A68; // type:object size:0x34 scope:global align:4
+iam_tak_moti = .data:0x00090A9C; // type:object size:0x34 scope:global align:4
+iam_tak_neko = .data:0x00090AD0; // type:object size:0x34 scope:global align:4
+iam_tak_nikki01 = .data:0x00090B04; // type:object size:0x34 scope:global align:4
+iam_tak_rocket1 = .data:0x00090B38; // type:object size:0x34 scope:global align:4
+iam_tak_sori01 = .data:0x00090B6C; // type:object size:0x34 scope:global align:4
+iam_tak_syogi = .data:0x00090BA0; // type:object size:0x34 scope:global align:4
+iam_tak_shuttle = .data:0x00090BD4; // type:object size:0x34 scope:global align:4
+iam_tak_snowisu = .data:0x00090C08; // type:object size:0x34 scope:global align:4
+iam_tak_snowlamp = .data:0x00090C3C; // type:object size:0x34 scope:global align:4
+aTakStation_sklkey = .data:0x00090C70; // type:object size:0xC scope:global align:4
+iam_tak_station = .data:0x00090C7C; // type:object size:0x34 scope:global align:4
+iam_tak_table02 = .data:0x00090CB0; // type:object size:0x34 scope:global align:4
+int_tak_tailor_on_pal = .data:0x00090D00; // type:object size:0x20 scope:global align:32
+int_tak_tailor_off_pal = .data:0x00090D20; // type:object size:0x20 scope:global align:32
+fTTR_func = .data:0x00090D40; // type:object size:0x14 scope:global align:4
+iam_tak_tailor = .data:0x00090D54; // type:object size:0x34 scope:global align:4
+iam_tak_tekkin = .data:0x00090D88; // type:object size:0x34 scope:global align:4
+iam_tak_tetra = .data:0x00090DBC; // type:object size:0x34 scope:global align:4
+fTTD_func = .data:0x00090DF0; // type:object size:0x14 scope:global align:4
+iam_tak_toudai = .data:0x00090E04; // type:object size:0x34 scope:global align:4
+aTakUfo_sklkey = .data:0x00090E38; // type:object size:0xC scope:global align:4
+iam_tak_ufo = .data:0x00090E44; // type:object size:0x34 scope:global align:4
+iam_tak_yaji = .data:0x00090E78; // type:object size:0x34 scope:global align:4
+iam_tak_yoroi = .data:0x00090EAC; // type:object size:0x34 scope:global align:4
+iam_iid_benti = .data:0x00090EE0; // type:object size:0x34 scope:global align:4
+iam_iid_diary = .data:0x00090F14; // type:object size:0x34 scope:global align:4
+iam_iid_funediary = .data:0x00090F48; // type:object size:0x34 scope:global align:4
+iam_iid_mdiary = .data:0x00090F7C; // type:object size:0x34 scope:global align:4
+iam_iid_newdiary = .data:0x00090FB0; // type:object size:0x34 scope:global align:4
+iam_iid_ningyou = .data:0x00090FE4; // type:object size:0x34 scope:global align:4
+iam_iid_snow = .data:0x00091018; // type:object size:0x34 scope:global align:4
+iam_iid_surf = .data:0x0009104C; // type:object size:0x34 scope:global align:4
+iam_iid_yuki = .data:0x00091080; // type:object size:0x34 scope:global align:4
+fHF_func = .data:0x000910B4; // type:object size:0x14 scope:global align:4
+iam_hayakawa_famicom = .data:0x000910C8; // type:object size:0x34 scope:global align:4
+radio_pal$6603 = .data:0x00091100; // type:object size:0x20 scope:local align:32
+fRT_func = .data:0x00091120; // type:object size:0x14 scope:global align:4
+iam_radio_test = .data:0x00091134; // type:object size:0x34 scope:global align:4
+fGI_mat_table = .data:0x00091168; // type:object size:0x10 scope:global align:4
+fGI_gfx_table = .data:0x00091178; // type:object size:0x10 scope:global align:4
+fGI_func = .data:0x00091188; // type:object size:0x14 scope:global align:4
+iam_gold_item = .data:0x0009119C; // type:object size:0x34 scope:global align:4
+fUW_mat_table = .data:0x000911D0; // type:object size:0x20 scope:global align:4
+fUW_gfx_table = .data:0x000911F0; // type:object size:0x20 scope:global align:4
+fUW_func = .data:0x00091210; // type:object size:0x14 scope:global align:4
+iam_utiwa = .data:0x00091224; // type:object size:0x34 scope:global align:4
+fKZ_model_table = .data:0x00091258; // type:object size:0x20 scope:global align:4
+fKZ_func = .data:0x00091278; // type:object size:0x14 scope:global align:4
+iam_kazaguruma = .data:0x0009128C; // type:object size:0x34 scope:global align:4
+fTOOL_mat_table = .data:0x000912C0; // type:object size:0x10 scope:global align:4
+fTOOL_gfx_table = .data:0x000912D0; // type:object size:0x10 scope:global align:4
+fTOOL_func = .data:0x000912E0; // type:object size:0x14 scope:global align:4
+iam_tool = .data:0x000912F4; // type:object size:0x34 scope:global align:4
+iam_hos_deskL = .data:0x00091328; // type:object size:0x34 scope:global align:4
+iam_hos_deskR = .data:0x0009135C; // type:object size:0x34 scope:global align:4
+iam_hos_flip = .data:0x00091390; // type:object size:0x34 scope:global align:4
+fHMD_func = .data:0x000913C4; // type:object size:0x14 scope:global align:4
+iam_hos_mario_hata = .data:0x000913D8; // type:object size:0x34 scope:global align:4
+fIMK_func = .data:0x0009140C; // type:object size:0x14 scope:global align:4
+iam_hos_mario_kinoko = .data:0x00091420; // type:object size:0x34 scope:global align:4
+iam_hos_piknic = .data:0x00091454; // type:object size:0x34 scope:global align:4
+iam_hos_Tdesk = .data:0x00091488; // type:object size:0x34 scope:global align:4
+iam_iku_bugzapper = .data:0x000914BC; // type:object size:0x34 scope:global align:4
+iam_hos_turkey_sofa = .data:0x000914F0; // type:object size:0x34 scope:global align:4
+iam_iku_busstop = .data:0x00091524; // type:object size:0x34 scope:global align:4
+iam_iku_candy = .data:0x00091558; // type:object size:0x34 scope:global align:4
+iam_iku_cement = .data:0x0009158C; // type:object size:0x34 scope:global align:4
+iam_iku_chair = .data:0x000915C0; // type:object size:0x34 scope:global align:4
+iam_iku_cocoa = .data:0x000915F4; // type:object size:0x34 scope:global align:4
+iam_iku_cow = .data:0x00091628; // type:object size:0x34 scope:global align:4
+iam_iku_denko = .data:0x0009165C; // type:object size:0x34 scope:global align:4
+iam_iku_flagman = .data:0x00091690; // type:object size:0x34 scope:global align:4
+iam_iku_flip_top = .data:0x000916C4; // type:object size:0x34 scope:global align:4
+iam_iku_gold_green = .data:0x000916F8; // type:object size:0x34 scope:global align:4
+iam_iku_gold_red = .data:0x0009172C; // type:object size:0x34 scope:global align:4
+iam_iku_ham = .data:0x00091760; // type:object size:0x34 scope:global align:4
+iam_iku_hazardous_top = .data:0x00091794; // type:object size:0x34 scope:global align:4
+iam_iku_ido = .data:0x000917C8; // type:object size:0x34 scope:global align:4
+iam_iku_jack = .data:0x000917FC; // type:object size:0x34 scope:global align:4
+iam_iku_jersey = .data:0x00091830; // type:object size:0x34 scope:global align:4
+fIMC_palette_table = .data:0x00091864; // type:object size:0x1C scope:global align:4
+fIMC_func = .data:0x00091880; // type:object size:0x14 scope:global align:4
+iam_iku_mario_coin = .data:0x00091894; // type:object size:0x34 scope:global align:4
+fIMD_func = .data:0x000918C8; // type:object size:0x14 scope:global align:4
+iam_iku_mario_dokan = .data:0x000918DC; // type:object size:0x34 scope:global align:4
+fIMH_palette_table = .data:0x00091910; // type:object size:0x1C scope:global align:4
+fIMH_func = .data:0x0009192C; // type:object size:0x14 scope:global align:4
+iam_iku_mario_hatena = .data:0x00091940; // type:object size:0x34 scope:global align:4
+fIMKoura_func = .data:0x00091974; // type:object size:0x14 scope:global align:4
+iam_iku_mario_koura = .data:0x00091988; // type:object size:0x34 scope:global align:4
+iam_iku_mario_renga = .data:0x000919BC; // type:object size:0x34 scope:global align:4
+fIMT_func = .data:0x000919F0; // type:object size:0x14 scope:global align:4
+iam_iku_mario_taihou = .data:0x00091A04; // type:object size:0x34 scope:global align:4
+fIMS_palette_table = .data:0x00091A38; // type:object size:0x10 scope:global align:4
+fIMS_func = .data:0x00091A48; // type:object size:0x14 scope:global align:4
+iam_iku_mario_star = .data:0x00091A5C; // type:object size:0x34 scope:global align:4
+iam_iku_orange = .data:0x00091A90; // type:object size:0x34 scope:global align:4
+iam_iku_reducespeed = .data:0x00091AC4; // type:object size:0x34 scope:global align:4
+iam_iku_roller = .data:0x00091AF8; // type:object size:0x34 scope:global align:4
+iam_iku_saku_a = .data:0x00091B2C; // type:object size:0x34 scope:global align:4
+iam_iku_saku_b = .data:0x00091B60; // type:object size:0x34 scope:global align:4
+iam_iku_sawhousev = .data:0x00091B94; // type:object size:0x34 scope:global align:4
+iam_iku_slip = .data:0x00091BC8; // type:object size:0x34 scope:global align:4
+iam_iku_tumble = .data:0x00091BFC; // type:object size:0x34 scope:global align:4
+iam_iku_turkey_bed = .data:0x00091C30; // type:object size:0x34 scope:global align:4
+iam_iku_turkey_lamp = .data:0x00091C64; // type:object size:0x34 scope:global align:4
+iam_iku_turkey_table = .data:0x00091C98; // type:object size:0x34 scope:global align:4
+fITT_switch_on_texture_table = .data:0x00091CCC; // type:object size:0x10 scope:global align:4
+fITT_func = .data:0x00091CDC; // type:object size:0x14 scope:global align:4
+iam_iku_turkey_TV = .data:0x00091CF0; // type:object size:0x34 scope:global align:4
+iam_iku_ukai = .data:0x00091D24; // type:object size:0x34 scope:global align:4
+iam_iku_work = .data:0x00091D58; // type:object size:0x34 scope:global align:4
+iam_sugi_alchair = .data:0x00091D8C; // type:object size:0x34 scope:global align:4
+gSBBQ_func = .data:0x00091DC0; // type:object size:0x14 scope:global align:4
+iam_sugi_barbecue = .data:0x00091DD4; // type:object size:0x34 scope:global align:4
+iam_sugi_chesstable = .data:0x00091E08; // type:object size:0x34 scope:global align:4
+fSKP_func = .data:0x00091E3C; // type:object size:0x14 scope:global align:4
+iam_sugi_kpool = .data:0x00091E50; // type:object size:0x34 scope:global align:4
+iam_sugi_radiatorl = .data:0x00091E84; // type:object size:0x34 scope:global align:4
+fSGT_func = .data:0x00091EB8; // type:object size:0x14 scope:global align:4
+iam_sugi_torch = .data:0x00091ECC; // type:object size:0x34 scope:global align:4
+iam_yaz_b_bath = .data:0x00091F00; // type:object size:0x34 scope:global align:4
+iam_yaz_b_house = .data:0x00091F34; // type:object size:0x34 scope:global align:4
+texture_table$7145 = .data:0x00091F68; // type:object size:0x8 scope:local align:4
+fYC_func = .data:0x00091F70; // type:object size:0x14 scope:global align:4
+iam_yaz_candle = .data:0x00091F84; // type:object size:0x34 scope:global align:4
+int_yaz_fish_trophy_pal = .data:0x00091FC0; // type:object size:0x20 scope:global align:32
+fYFT_func = .data:0x00091FE0; // type:object size:0x14 scope:global align:4
+iam_yaz_fish_trophy = .data:0x00091FF4; // type:object size:0x34 scope:global align:4
+fYMF_palette_table = .data:0x00092028; // type:object size:0x10 scope:global align:4
+fYMF_func = .data:0x00092038; // type:object size:0x14 scope:global align:4
+iam_yaz_mario_flower = .data:0x0009204C; // type:object size:0x34 scope:global align:4
+iam_yaz_telescope = .data:0x00092080; // type:object size:0x34 scope:global align:4
+iam_yaz_tub = .data:0x000920B4; // type:object size:0x34 scope:global align:4
+iam_yaz_turkey_chair = .data:0x000920E8; // type:object size:0x34 scope:global align:4
+fYTCST_func = .data:0x0009211C; // type:object size:0x14 scope:global align:4
+iam_yaz_turkey_chest = .data:0x00092130; // type:object size:0x34 scope:global align:4
+fYTC_func = .data:0x00092164; // type:object size:0x14 scope:global align:4
+iam_yaz_turkey_closet = .data:0x00092178; // type:object size:0x34 scope:global align:4
+iam_yaz_rocket = .data:0x000921AC; // type:object size:0x34 scope:global align:4
+iam_yaz_wagon = .data:0x000921E0; // type:object size:0x34 scope:global align:4
+iam_yos_b_feeder = .data:0x00092214; // type:object size:0x34 scope:global align:4
+iam_yos_cactus = .data:0x00092248; // type:object size:0x34 scope:global align:4
+iam_yos_flamingo = .data:0x0009227C; // type:object size:0x34 scope:global align:4
+iam_yos_flamingo2 = .data:0x000922B0; // type:object size:0x34 scope:global align:4
+iam_yos_gnome = .data:0x000922E4; // type:object size:0x34 scope:global align:4
+iam_yos_kflag = .data:0x00092318; // type:object size:0x34 scope:global align:4
+iam_yos_pbstove = .data:0x0009234C; // type:object size:0x34 scope:global align:4
+iam_yos_mailbox = .data:0x00092380; // type:object size:0x34 scope:global align:4
+iam_yos_mario = .data:0x000923B4; // type:object size:0x34 scope:global align:4
+iam_yos_luigi = .data:0x000923E8; // type:object size:0x34 scope:global align:4
+iam_yos_terrace = .data:0x0009241C; // type:object size:0x34 scope:global align:4
+iam_yos_turkey_mirror = .data:0x00092450; // type:object size:0x34 scope:global align:4
+fYTW_func = .data:0x00092484; // type:object size:0x14 scope:global align:4
+iam_yos_turkey_watch = .data:0x00092498; // type:object size:0x34 scope:global align:4
+iam_yos_wheel = .data:0x000924CC; // type:object size:0x34 scope:global align:4
+tak_ham1_texture_table = .data:0x00092500; // type:object size:0x8 scope:global align:4
+fTHM1_func = .data:0x00092508; // type:object size:0x14 scope:global align:4
+iam_tak_ham1 = .data:0x0009251C; // type:object size:0x34 scope:global align:4
+fTakNes_func = .data:0x00092550; // type:object size:0x14 scope:global align:4
+iam_tak_nes01 = .data:0x00092564; // type:object size:0x34 scope:global align:4
+fTNM_func = .data:0x00092598; // type:object size:0x14 scope:global align:4
+iam_tak_noise = .data:0x000925AC; // type:object size:0x34 scope:global align:4
+fTSW_texture_table = .data:0x000925E0; // type:object size:0x8 scope:global align:4
+fTSW_func = .data:0x000925E8; // type:object size:0x14 scope:global align:4
+iam_tak_stew = .data:0x000925FC; // type:object size:0x34 scope:global align:4
+int_tak_tent_on_pal = .data:0x00092640; // type:object size:0x20 scope:global align:32
+int_tak_tent_off_pal = .data:0x00092660; // type:object size:0x20 scope:global align:32
+fTTnt_func = .data:0x00092680; // type:object size:0x14 scope:global align:4
+iam_tak_tent = .data:0x00092694; // type:object size:0x34 scope:global align:4
+iam_tak_tent_box = .data:0x000926C8; // type:object size:0x34 scope:global align:4
+iam_tak_tent_lamp = .data:0x000926FC; // type:object size:0x34 scope:global align:4
+int_yaz_fish_trophy2_pal = .data:0x00092740; // type:object size:0x20 scope:global align:32
+fIFT2_func = .data:0x00092760; // type:object size:0x14 scope:global align:4
+iam_ike_fish_tro2 = .data:0x00092774; // type:object size:0x34 scope:global align:4
+iam_ike_prores_bench01 = .data:0x000927A8; // type:object size:0x34 scope:global align:4
+iam_ike_prores_fense01 = .data:0x000927DC; // type:object size:0x34 scope:global align:4
+iam_ike_prores_ling01 = .data:0x00092810; // type:object size:0x34 scope:global align:4
+iam_ike_prores_ling02 = .data:0x00092844; // type:object size:0x34 scope:global align:4
+iam_ike_prores_ling03 = .data:0x00092878; // type:object size:0x34 scope:global align:4
+iam_ike_prores_mat01 = .data:0x000928AC; // type:object size:0x34 scope:global align:4
+fIPPnch_func = .data:0x000928E0; // type:object size:0x14 scope:global align:4
+iam_ike_prores_punch01 = .data:0x000928F4; // type:object size:0x34 scope:global align:4
+aIPS_func = .data:0x00092928; // type:object size:0x14 scope:global align:4
+iam_ike_prores_sandbag01 = .data:0x0009293C; // type:object size:0x34 scope:global align:4
+iam_ike_prores_table01 = .data:0x00092970; // type:object size:0x34 scope:global align:4
+iam_ike_tent_bike01 = .data:0x000929A4; // type:object size:0x34 scope:global align:4
+fITF_func = .data:0x000929D8; // type:object size:0x14 scope:global align:4
+iam_ike_tent_fire01 = .data:0x000929EC; // type:object size:0x34 scope:global align:4
+fITF02_func = .data:0x00092A20; // type:object size:0x14 scope:global align:4
+iam_ike_tent_fire02 = .data:0x00092A34; // type:object size:0x34 scope:global align:4
+iam_ike_tent_kayak01 = .data:0x00092A68; // type:object size:0x34 scope:global align:4
+iam_ike_tent_knap01 = .data:0x00092A9C; // type:object size:0x34 scope:global align:4
+iam_ike_tent_sleepbag01 = .data:0x00092AD0; // type:object size:0x34 scope:global align:4
+iam_nog_burner = .data:0x00092B04; // type:object size:0x34 scope:global align:4
+iam_nog_cornucopia = .data:0x00092B38; // type:object size:0x34 scope:global align:4
+int_nog_flower_a_pal = .data:0x00092B80; // type:object size:0x20 scope:global align:32
+int_nog_flower_b_pal = .data:0x00092BA0; // type:object size:0x20 scope:global align:32
+int_nog_flower_c_pal = .data:0x00092BC0; // type:object size:0x20 scope:global align:32
+fNFL_model_data = .data:0x00092BE0; // type:object size:0x6C scope:global align:4
+fNFL_func = .data:0x00092C4C; // type:object size:0x14 scope:global align:4
+iam_nog_flower = .data:0x00092C60; // type:object size:0x34 scope:global align:4
+aNogG_func = .data:0x00092C94; // type:object size:0x14 scope:global align:4
+iam_nog_gong = .data:0x00092CA8; // type:object size:0x34 scope:global align:4
+fNLM_func = .data:0x00092CDC; // type:object size:0x14 scope:global align:4
+iam_nog_lawnmower = .data:0x00092CF0; // type:object size:0x34 scope:global align:4
+fNS_func = .data:0x00092D24; // type:object size:0x14 scope:global align:4
+iam_nog_sprinkler = .data:0x00092D38; // type:object size:0x34 scope:global align:4
+iam_dummy = .data:0x00092D6C; // type:object size:0x34 scope:global align:4
+glider_v = .data:0x00092DA0; // type:object size:0xB0 scope:global align:8
+glider_model = .data:0x00092E50; // type:object size:0x50 scope:global align:8
+bev_1_v = .data:0x00092EA0; // type:object size:0x1A50 scope:global align:8
+head_bev_model = .data:0x000948F0; // type:object size:0x260 scope:global align:8
+Rarm2_bev_model = .data:0x00094B50; // type:object size:0x88 scope:global align:8
+Rarm1_bev_model = .data:0x00094BD8; // type:object size:0x78 scope:global align:8
+Larm2_bev_model = .data:0x00094C50; // type:object size:0x88 scope:global align:8
+Larm1_bev_model = .data:0x00094CD8; // type:object size:0x78 scope:global align:8
+chest_bev_model = .data:0x00094D50; // type:object size:0x110 scope:global align:8
+tail1_bev_model = .data:0x00094E60; // type:object size:0x78 scope:global align:8
+tail2_bev_model = .data:0x00094ED8; // type:object size:0x88 scope:global align:8
+Rfoot2_bev_model = .data:0x00094F60; // type:object size:0x80 scope:global align:8
+Rfoot1_bev_model = .data:0x00094FE0; // type:object size:0x58 scope:global align:8
+Lfoot2_bev_model = .data:0x00095038; // type:object size:0x80 scope:global align:8
+Lfoot1_bev_model = .data:0x000950B8; // type:object size:0x58 scope:global align:8
+base_bev_model = .data:0x00095110; // type:object size:0x80 scope:global align:8
+cKF_je_r_bev_1_tbl = .data:0x00095190; // type:object size:0x138 scope:global align:4
+cKF_bs_r_bev_1 = .data:0x000952C8; // type:object size:0x8 scope:global align:4
+bev_1_pal = .data:0x000952E0; // type:object size:0x20 scope:global align:32
+bev_1_eye1_TA_tex_txt = .data:0x00095300; // type:object size:0x100 scope:global align:32
+bev_1_eye2_TA_tex_txt = .data:0x00095400; // type:object size:0x100 scope:global align:32
+bev_1_eye3_TA_tex_txt = .data:0x00095500; // type:object size:0x100 scope:global align:32
+bev_1_eye4_TA_tex_txt = .data:0x00095600; // type:object size:0x100 scope:global align:32
+bev_1_eye5_TA_tex_txt = .data:0x00095700; // type:object size:0x100 scope:global align:32
+bev_1_eye6_TA_tex_txt = .data:0x00095800; // type:object size:0x100 scope:global align:32
+bev_1_eye7_TA_tex_txt = .data:0x00095900; // type:object size:0x100 scope:global align:32
+bev_1_eye8_TA_tex_txt = .data:0x00095A00; // type:object size:0x100 scope:global align:32
+bev_1_tmem_txt = .data:0x00095B00; // type:object size:0x500 scope:global align:32
+act_ant_tex = .data:0x00096000; // type:object size:0x200 scope:global align:32
+act_ant_v = .data:0x00096200; // type:object size:0xB0 scope:global align:8
+act_antT_model = .data:0x000962B0; // type:object size:0x78 scope:global align:8
+act_ant_evw_anime_1 = .data:0x00096328; // type:object size:0x8 scope:global align:4
+act_ant_evw_anime = .data:0x00096330; // type:object size:0x8 scope:global align:4
+ant_1_v = .data:0x00096338; // type:object size:0x1730 scope:global align:8
+head_ant_model = .data:0x00097A68; // type:object size:0x1B0 scope:global align:8
+mouth_ant_model = .data:0x00097C18; // type:object size:0x98 scope:global align:8
+Rarm2_ant_model = .data:0x00097CB0; // type:object size:0x88 scope:global align:8
+Rarm1_ant_model = .data:0x00097D38; // type:object size:0x78 scope:global align:8
+Larm2_ant_model = .data:0x00097DB0; // type:object size:0x88 scope:global align:8
+Larm1_ant_model = .data:0x00097E38; // type:object size:0x78 scope:global align:8
+chest_ant_model = .data:0x00097EB0; // type:object size:0xB0 scope:global align:8
+tail1_ant_model = .data:0x00097F60; // type:object size:0xB0 scope:global align:8
+Rfoot2_ant_model = .data:0x00098010; // type:object size:0x80 scope:global align:8
+Rfoot1_ant_model = .data:0x00098090; // type:object size:0xA8 scope:global align:8
+Lfoot2_ant_model = .data:0x00098138; // type:object size:0x80 scope:global align:8
+Lfoot1_ant_model = .data:0x000981B8; // type:object size:0xA8 scope:global align:8
+base_ant_model = .data:0x00098260; // type:object size:0x70 scope:global align:8
+cKF_je_r_ant_1_tbl = .data:0x000982D0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_ant_1 = .data:0x00098408; // type:object size:0x8 scope:global align:4
+ant_1_pal = .data:0x00098420; // type:object size:0x20 scope:global align:32
+ant_1_eye1_TA_tex_txt = .data:0x00098440; // type:object size:0x100 scope:global align:32
+ant_1_eye2_TA_tex_txt = .data:0x00098540; // type:object size:0x100 scope:global align:32
+ant_1_eye3_TA_tex_txt = .data:0x00098640; // type:object size:0x100 scope:global align:32
+ant_1_eye4_TA_tex_txt = .data:0x00098740; // type:object size:0x100 scope:global align:32
+ant_1_eye5_TA_tex_txt = .data:0x00098840; // type:object size:0x100 scope:global align:32
+ant_1_eye6_TA_tex_txt = .data:0x00098940; // type:object size:0x100 scope:global align:32
+ant_1_eye7_TA_tex_txt = .data:0x00098A40; // type:object size:0x100 scope:global align:32
+ant_1_eye8_TA_tex_txt = .data:0x00098B40; // type:object size:0x100 scope:global align:32
+ant_1_tmem_txt = .data:0x00098C40; // type:object size:0x500 scope:global align:32
+ant_2_pal = .data:0x00099140; // type:object size:0x20 scope:global align:32
+ant_2_eye1_TA_tex_txt = .data:0x00099160; // type:object size:0x100 scope:global align:32
+ant_2_eye2_TA_tex_txt = .data:0x00099260; // type:object size:0x100 scope:global align:32
+ant_2_eye3_TA_tex_txt = .data:0x00099360; // type:object size:0x100 scope:global align:32
+ant_2_eye4_TA_tex_txt = .data:0x00099460; // type:object size:0x100 scope:global align:32
+ant_2_eye5_TA_tex_txt = .data:0x00099560; // type:object size:0x100 scope:global align:32
+ant_2_eye6_TA_tex_txt = .data:0x00099660; // type:object size:0x100 scope:global align:32
+ant_2_eye7_TA_tex_txt = .data:0x00099760; // type:object size:0x100 scope:global align:32
+ant_2_eye8_TA_tex_txt = .data:0x00099860; // type:object size:0x100 scope:global align:32
+ant_2_tmem_txt = .data:0x00099960; // type:object size:0x500 scope:global align:32
+ant_3_pal = .data:0x00099E60; // type:object size:0x20 scope:global align:32
+ant_3_eye1_TA_tex_txt = .data:0x00099E80; // type:object size:0x100 scope:global align:32
+ant_3_eye2_TA_tex_txt = .data:0x00099F80; // type:object size:0x100 scope:global align:32
+ant_3_eye3_TA_tex_txt = .data:0x0009A080; // type:object size:0x100 scope:global align:32
+ant_3_eye4_TA_tex_txt = .data:0x0009A180; // type:object size:0x100 scope:global align:32
+ant_3_eye5_TA_tex_txt = .data:0x0009A280; // type:object size:0x100 scope:global align:32
+ant_3_eye6_TA_tex_txt = .data:0x0009A380; // type:object size:0x100 scope:global align:32
+ant_3_eye7_TA_tex_txt = .data:0x0009A480; // type:object size:0x100 scope:global align:32
+ant_3_eye8_TA_tex_txt = .data:0x0009A580; // type:object size:0x100 scope:global align:32
+ant_3_tmem_txt = .data:0x0009A680; // type:object size:0x500 scope:global align:32
+ant_4_pal = .data:0x0009AB80; // type:object size:0x20 scope:global align:32
+ant_4_eye1_TA_tex_txt = .data:0x0009ABA0; // type:object size:0x100 scope:global align:32
+ant_4_eye2_TA_tex_txt = .data:0x0009ACA0; // type:object size:0x100 scope:global align:32
+ant_4_eye3_TA_tex_txt = .data:0x0009ADA0; // type:object size:0x100 scope:global align:32
+ant_4_eye4_TA_tex_txt = .data:0x0009AEA0; // type:object size:0x100 scope:global align:32
+ant_4_eye5_TA_tex_txt = .data:0x0009AFA0; // type:object size:0x100 scope:global align:32
+ant_4_eye6_TA_tex_txt = .data:0x0009B0A0; // type:object size:0x100 scope:global align:32
+ant_4_eye7_TA_tex_txt = .data:0x0009B1A0; // type:object size:0x100 scope:global align:32
+ant_4_eye8_TA_tex_txt = .data:0x0009B2A0; // type:object size:0x100 scope:global align:32
+ant_4_tmem_txt = .data:0x0009B3A0; // type:object size:0x500 scope:global align:32
+ant_5_pal = .data:0x0009B8A0; // type:object size:0x20 scope:global align:32
+ant_5_eye1_TA_tex_txt = .data:0x0009B8C0; // type:object size:0x100 scope:global align:32
+ant_5_eye2_TA_tex_txt = .data:0x0009B9C0; // type:object size:0x100 scope:global align:32
+ant_5_eye3_TA_tex_txt = .data:0x0009BAC0; // type:object size:0x100 scope:global align:32
+ant_5_eye4_TA_tex_txt = .data:0x0009BBC0; // type:object size:0x100 scope:global align:32
+ant_5_eye5_TA_tex_txt = .data:0x0009BCC0; // type:object size:0x100 scope:global align:32
+ant_5_eye6_TA_tex_txt = .data:0x0009BDC0; // type:object size:0x100 scope:global align:32
+ant_5_eye7_TA_tex_txt = .data:0x0009BEC0; // type:object size:0x100 scope:global align:32
+ant_5_eye8_TA_tex_txt = .data:0x0009BFC0; // type:object size:0x100 scope:global align:32
+ant_5_tmem_txt = .data:0x0009C0C0; // type:object size:0x500 scope:global align:32
+wls_1_v = .data:0x0009C5C0; // type:object size:0x1A50 scope:global align:8
+head_wls_model = .data:0x0009E010; // type:object size:0x1A0 scope:global align:8
+mouth_wls_model = .data:0x0009E1B0; // type:object size:0x60 scope:global align:8
+Rarm2_wls_model = .data:0x0009E210; // type:object size:0xE8 scope:global align:8
+Rarm1_wls_model = .data:0x0009E2F8; // type:object size:0x78 scope:global align:8
+Larm2_wls_model = .data:0x0009E370; // type:object size:0x88 scope:global align:8
+Larm1_wls_model = .data:0x0009E3F8; // type:object size:0x78 scope:global align:8
+chest_wls_model = .data:0x0009E470; // type:object size:0x218 scope:global align:8
+Rfoot3_wls_model = .data:0x0009E688; // type:object size:0x88 scope:global align:8
+Rfoot2_wls_model = .data:0x0009E710; // type:object size:0x78 scope:global align:8
+Rfoot1_wls_model = .data:0x0009E788; // type:object size:0x58 scope:global align:8
+Lfoot3_wls_model = .data:0x0009E7E0; // type:object size:0x88 scope:global align:8
+Lfoot2_wls_model = .data:0x0009E868; // type:object size:0x78 scope:global align:8
+Lfoot1_wls_model = .data:0x0009E8E0; // type:object size:0x58 scope:global align:8
+base_wls_model = .data:0x0009E938; // type:object size:0x78 scope:global align:8
+cKF_je_r_wls_1_tbl = .data:0x0009E9B0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_wls_1 = .data:0x0009EAE8; // type:object size:0x8 scope:global align:4
+wls_1_pal = .data:0x0009EB00; // type:object size:0x20 scope:global align:32
+wls_1_eye1_TA_tex_txt = .data:0x0009EB20; // type:object size:0x100 scope:global align:32
+wls_1_eye2_TA_tex_txt = .data:0x0009EC20; // type:object size:0x100 scope:global align:32
+wls_1_eye3_TA_tex_txt = .data:0x0009ED20; // type:object size:0x100 scope:global align:32
+wls_1_eye4_TA_tex_txt = .data:0x0009EE20; // type:object size:0x100 scope:global align:32
+wls_1_eye5_TA_tex_txt = .data:0x0009EF20; // type:object size:0x100 scope:global align:32
+wls_1_eye6_TA_tex_txt = .data:0x0009F020; // type:object size:0x100 scope:global align:32
+wls_1_eye7_TA_tex_txt = .data:0x0009F120; // type:object size:0x100 scope:global align:32
+wls_1_eye8_TA_tex_txt = .data:0x0009F220; // type:object size:0x100 scope:global align:32
+wls_1_tmem_txt = .data:0x0009F320; // type:object size:0x780 scope:global align:32
+BG_TEST01_info = .data:0x0009FAA0; // type:object size:0x28 scope:global align:4
+BG_TEST01_player_data = .data:0x0009FAC8; // type:object size:0x10 scope:global align:4
+BG_TEST01_ctrl_actor_data = .data:0x0009FAD8; // type:object size:0x16 scope:global align:4
+BG_TEST01_XLU_info = .data:0x0009FAF0; // type:object size:0x28 scope:global align:4
+BG_TEST01_XLU_player_data = .data:0x0009FB18; // type:object size:0x10 scope:global align:4
+BG_TEST01_XLU_ctrl_actor_data = .data:0x0009FB28; // type:object size:0x16 scope:global align:4
+broker_shop_info = .data:0x0009FB40; // type:object size:0x40 scope:global align:4
+BROKER_SHOP_player_data = .data:0x0009FB80; // type:object size:0x10 scope:global align:4
+BROKER_SHOP_ctrl_actor_data = .data:0x0009FB90; // type:object size:0x16 scope:global align:4
+BROKER_SHOP_door_data = .data:0x0009FBA8; // type:object size:0x14 scope:global align:4
+buggy_info = .data:0x0009FBC0; // type:object size:0x30 scope:global align:4
+BUGGY_player_data = .data:0x0009FBF0; // type:object size:0x10 scope:global align:4
+BUGGY_ctrl_actor_data = .data:0x0009FC00; // type:object size:0x10 scope:global align:4
+BUGGY_door_data = .data:0x0009FC10; // type:object size:0x14 scope:global align:4
+act_ball_b_pal = .data:0x0009FC28; // type:object size:0x20 scope:global align:4
+act_ball_b_1_tex = .data:0x0009FC48; // type:object size:0x80 scope:global align:4
+act_ball_b_v = .data:0x0009FCC8; // type:object size:0x1A0 scope:global align:8
+act_ball_b_model = .data:0x0009FE68; // type:object size:0x170 scope:global align:8
+act_ball_d_pal = .data:0x0009FFD8; // type:object size:0x20 scope:global align:4
+act_ball_d_1_tex = .data:0x0009FFF8; // type:object size:0x80 scope:global align:4
+act_ball_d_2_tex = .data:0x000A0078; // type:object size:0x80 scope:global align:4
+act_ball_d_3_tex = .data:0x000A00F8; // type:object size:0x80 scope:global align:4
+act_ball_d_v = .data:0x000A0178; // type:object size:0x360 scope:global align:8
+act_ball_d_model = .data:0x000A04D8; // type:object size:0x260 scope:global align:8
+act_ball_s_pal = .data:0x000A0738; // type:object size:0x20 scope:global align:4
+act_ball_s_5_tex = .data:0x000A0758; // type:object size:0x100 scope:global align:4
+act_ball_s_v = .data:0x000A0858; // type:object size:0x700 scope:global align:8
+act_ball_s_model = .data:0x000A0F58; // type:object size:0x1B0 scope:global align:8
+act_balloon_wire_tex_txt = .data:0x000A1120; // type:object size:0x80 scope:global align:32
+act_balloon_head_tex_rgb_ia8 = .data:0x000A11A0; // type:object size:0x400 scope:global align:32
+act_balloon_v = .data:0x000A15A0; // type:object size:0x340 scope:global align:8
+act_balloon_head_model = .data:0x000A18E0; // type:object size:0x90 scope:global align:8
+act_balloon_wireB_model = .data:0x000A1970; // type:object size:0x98 scope:global align:8
+act_balloon_wireA_model = .data:0x000A1A08; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_act_balloon_tbl = .data:0x000A1A60; // type:object size:0x4 scope:global align:4
+cKF_kn_act_balloon_tbl = .data:0x000A1A64; // type:object size:0xC scope:global align:4
+cKF_c_act_balloon_tbl = .data:0x000A1A70; // type:object size:0x12 scope:global align:4
+cKF_ds_act_balloon_tbl = .data:0x000A1A84; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_act_balloon = .data:0x000A1B2C; // type:object size:0x14 scope:global align:4
+cKF_je_r_act_balloon_tbl = .data:0x000A1B40; // type:object size:0x30 scope:global align:4
+cKF_bs_r_act_balloon = .data:0x000A1B70; // type:object size:0x8 scope:global align:4
+bea_1_v = .data:0x000A1B78; // type:object size:0x1720 scope:global align:8
+head_bea_model = .data:0x000A3298; // type:object size:0x158 scope:global align:8
+Rarm2_bea_model = .data:0x000A33F0; // type:object size:0x80 scope:global align:8
+Rarm1_bea_model = .data:0x000A3470; // type:object size:0x80 scope:global align:8
+Larm2_bea_model = .data:0x000A34F0; // type:object size:0x80 scope:global align:8
+Larm1_bea_model = .data:0x000A3570; // type:object size:0x80 scope:global align:8
+chest_bea_model = .data:0x000A35F0; // type:object size:0xB8 scope:global align:8
+tail1_bea_model = .data:0x000A36A8; // type:object size:0x88 scope:global align:8
+Rfoot2_bea_model = .data:0x000A3730; // type:object size:0x88 scope:global align:8
+Rfoot1_bea_model = .data:0x000A37B8; // type:object size:0x88 scope:global align:8
+Lfoot2_bea_model = .data:0x000A3840; // type:object size:0x88 scope:global align:8
+Lfoot1_bea_model = .data:0x000A38C8; // type:object size:0x88 scope:global align:8
+base_bea_model = .data:0x000A3950; // type:object size:0xA0 scope:global align:8
+cKF_je_r_bea_1_tbl = .data:0x000A39F0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_bea_1 = .data:0x000A3B28; // type:object size:0x8 scope:global align:4
+bea_1_pal = .data:0x000A3B40; // type:object size:0x20 scope:global align:32
+bea_1_eye1_TA_tex_txt = .data:0x000A3B60; // type:object size:0x100 scope:global align:32
+bea_1_eye2_TA_tex_txt = .data:0x000A3C60; // type:object size:0x100 scope:global align:32
+bea_1_eye3_TA_tex_txt = .data:0x000A3D60; // type:object size:0x100 scope:global align:32
+bea_1_eye4_TA_tex_txt = .data:0x000A3E60; // type:object size:0x100 scope:global align:32
+bea_1_eye5_TA_tex_txt = .data:0x000A3F60; // type:object size:0x100 scope:global align:32
+bea_1_eye6_TA_tex_txt = .data:0x000A4060; // type:object size:0x100 scope:global align:32
+bea_1_eye7_TA_tex_txt = .data:0x000A4160; // type:object size:0x100 scope:global align:32
+bea_1_eye8_TA_tex_txt = .data:0x000A4260; // type:object size:0x100 scope:global align:32
+bea_1_mouth1_TA_tex_txt = .data:0x000A4360; // type:object size:0x100 scope:global align:32
+bea_1_mouth2_TA_tex_txt = .data:0x000A4460; // type:object size:0x100 scope:global align:32
+bea_1_mouth3_TA_tex_txt = .data:0x000A4560; // type:object size:0x100 scope:global align:32
+bea_1_mouth4_TA_tex_txt = .data:0x000A4660; // type:object size:0x100 scope:global align:32
+bea_1_mouth5_TA_tex_txt = .data:0x000A4760; // type:object size:0x100 scope:global align:32
+bea_1_mouth6_TA_tex_txt = .data:0x000A4860; // type:object size:0x100 scope:global align:32
+bea_1_tmem_txt = .data:0x000A4960; // type:object size:0x400 scope:global align:32
+bea_2_pal = .data:0x000A4D60; // type:object size:0x20 scope:global align:32
+bea_2_eye1_TA_tex_txt = .data:0x000A4D80; // type:object size:0x100 scope:global align:32
+bea_2_eye2_TA_tex_txt = .data:0x000A4E80; // type:object size:0x100 scope:global align:32
+bea_2_eye3_TA_tex_txt = .data:0x000A4F80; // type:object size:0x100 scope:global align:32
+bea_2_eye4_TA_tex_txt = .data:0x000A5080; // type:object size:0x100 scope:global align:32
+bea_2_eye5_TA_tex_txt = .data:0x000A5180; // type:object size:0x100 scope:global align:32
+bea_2_eye6_TA_tex_txt = .data:0x000A5280; // type:object size:0x100 scope:global align:32
+bea_2_eye7_TA_tex_txt = .data:0x000A5380; // type:object size:0x100 scope:global align:32
+bea_2_eye8_TA_tex_txt = .data:0x000A5480; // type:object size:0x100 scope:global align:32
+bea_2_mouth1_TA_tex_txt = .data:0x000A5580; // type:object size:0x100 scope:global align:32
+bea_2_mouth2_TA_tex_txt = .data:0x000A5680; // type:object size:0x100 scope:global align:32
+bea_2_mouth3_TA_tex_txt = .data:0x000A5780; // type:object size:0x100 scope:global align:32
+bea_2_mouth4_TA_tex_txt = .data:0x000A5880; // type:object size:0x100 scope:global align:32
+bea_2_mouth5_TA_tex_txt = .data:0x000A5980; // type:object size:0x100 scope:global align:32
+bea_2_mouth6_TA_tex_txt = .data:0x000A5A80; // type:object size:0x100 scope:global align:32
+bea_2_tmem_txt = .data:0x000A5B80; // type:object size:0x400 scope:global align:32
+bea_3_pal = .data:0x000A5F80; // type:object size:0x20 scope:global align:32
+bea_3_eye1_TA_tex_txt = .data:0x000A5FA0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye2_TA_tex_txt = .data:0x000A60A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye3_TA_tex_txt = .data:0x000A61A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye4_TA_tex_txt = .data:0x000A62A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye5_TA_tex_txt = .data:0x000A63A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye6_TA_tex_txt = .data:0x000A64A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_eye7_TA_tex_txt = .data:0x000A65A0; // type:object size:0x100 scope:global align:32
+bea_3_eye8_TA_tex_txt = .data:0x000A66A0; // type:object size:0x100 scope:global align:32 data:string
+bea_3_mouth1_TA_tex_txt = .data:0x000A67A0; // type:object size:0x100 scope:global align:32
+bea_3_mouth2_TA_tex_txt = .data:0x000A68A0; // type:object size:0x100 scope:global align:32
+bea_3_mouth3_TA_tex_txt = .data:0x000A69A0; // type:object size:0x100 scope:global align:32
+bea_3_mouth4_TA_tex_txt = .data:0x000A6AA0; // type:object size:0x100 scope:global align:32
+bea_3_mouth5_TA_tex_txt = .data:0x000A6BA0; // type:object size:0x100 scope:global align:32
+bea_3_mouth6_TA_tex_txt = .data:0x000A6CA0; // type:object size:0x100 scope:global align:32
+bea_3_tmem_txt = .data:0x000A6DA0; // type:object size:0x400 scope:global align:32
+bea_5_pal = .data:0x000A71A0; // type:object size:0x20 scope:global align:32
+bea_5_eye1_TA_tex_txt = .data:0x000A71C0; // type:object size:0x100 scope:global align:32
+bea_5_eye2_TA_tex_txt = .data:0x000A72C0; // type:object size:0x100 scope:global align:32
+bea_5_eye3_TA_tex_txt = .data:0x000A73C0; // type:object size:0x100 scope:global align:32
+bea_5_eye4_TA_tex_txt = .data:0x000A74C0; // type:object size:0x100 scope:global align:32
+bea_5_eye5_TA_tex_txt = .data:0x000A75C0; // type:object size:0x100 scope:global align:32
+bea_5_eye6_TA_tex_txt = .data:0x000A76C0; // type:object size:0x100 scope:global align:32
+bea_5_eye7_TA_tex_txt = .data:0x000A77C0; // type:object size:0x100 scope:global align:32
+bea_5_eye8_TA_tex_txt = .data:0x000A78C0; // type:object size:0x100 scope:global align:32
+bea_5_mouth1_TA_tex_txt = .data:0x000A79C0; // type:object size:0x100 scope:global align:32
+bea_5_mouth2_TA_tex_txt = .data:0x000A7AC0; // type:object size:0x100 scope:global align:32
+bea_5_mouth3_TA_tex_txt = .data:0x000A7BC0; // type:object size:0x100 scope:global align:32
+bea_5_mouth4_TA_tex_txt = .data:0x000A7CC0; // type:object size:0x100 scope:global align:32
+bea_5_mouth5_TA_tex_txt = .data:0x000A7DC0; // type:object size:0x100 scope:global align:32
+bea_5_mouth6_TA_tex_txt = .data:0x000A7EC0; // type:object size:0x100 scope:global align:32
+bea_5_tmem_txt = .data:0x000A7FC0; // type:object size:0x400 scope:global align:32
+bea_6_pal = .data:0x000A83C0; // type:object size:0x20 scope:global align:32
+bea_6_eye1_TA_tex_txt = .data:0x000A83E0; // type:object size:0x100 scope:global align:32
+bea_6_eye2_TA_tex_txt = .data:0x000A84E0; // type:object size:0x100 scope:global align:32
+bea_6_eye3_TA_tex_txt = .data:0x000A85E0; // type:object size:0x100 scope:global align:32
+bea_6_eye4_TA_tex_txt = .data:0x000A86E0; // type:object size:0x100 scope:global align:32
+bea_6_eye5_TA_tex_txt = .data:0x000A87E0; // type:object size:0x100 scope:global align:32
+bea_6_eye6_TA_tex_txt = .data:0x000A88E0; // type:object size:0x100 scope:global align:32
+bea_6_eye7_TA_tex_txt = .data:0x000A89E0; // type:object size:0x100 scope:global align:32
+bea_6_eye8_TA_tex_txt = .data:0x000A8AE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth1_TA_tex_txt = .data:0x000A8BE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth2_TA_tex_txt = .data:0x000A8CE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth3_TA_tex_txt = .data:0x000A8DE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth4_TA_tex_txt = .data:0x000A8EE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth5_TA_tex_txt = .data:0x000A8FE0; // type:object size:0x100 scope:global align:32
+bea_6_mouth6_TA_tex_txt = .data:0x000A90E0; // type:object size:0x100 scope:global align:32
+bea_6_tmem_txt = .data:0x000A91E0; // type:object size:0x400 scope:global align:32
+bea_7_pal = .data:0x000A95E0; // type:object size:0x20 scope:global align:32
+bea_7_eye1_TA_tex_txt = .data:0x000A9600; // type:object size:0x100 scope:global align:32
+bea_7_eye2_TA_tex_txt = .data:0x000A9700; // type:object size:0x100 scope:global align:32
+bea_7_eye3_TA_tex_txt = .data:0x000A9800; // type:object size:0x100 scope:global align:32
+bea_7_eye4_TA_tex_txt = .data:0x000A9900; // type:object size:0x100 scope:global align:32
+bea_7_eye5_TA_tex_txt = .data:0x000A9A00; // type:object size:0x100 scope:global align:32
+bea_7_eye6_TA_tex_txt = .data:0x000A9B00; // type:object size:0x100 scope:global align:32
+bea_7_eye7_TA_tex_txt = .data:0x000A9C00; // type:object size:0x100 scope:global align:32
+bea_7_eye8_TA_tex_txt = .data:0x000A9D00; // type:object size:0x100 scope:global align:32
+bea_7_mouth1_TA_tex_txt = .data:0x000A9E00; // type:object size:0x100 scope:global align:32
+bea_7_mouth2_TA_tex_txt = .data:0x000A9F00; // type:object size:0x100 scope:global align:32
+bea_7_mouth3_TA_tex_txt = .data:0x000AA000; // type:object size:0x100 scope:global align:32
+bea_7_mouth4_TA_tex_txt = .data:0x000AA100; // type:object size:0x100 scope:global align:32
+bea_7_mouth5_TA_tex_txt = .data:0x000AA200; // type:object size:0x100 scope:global align:32
+bea_7_mouth6_TA_tex_txt = .data:0x000AA300; // type:object size:0x100 scope:global align:32
+bea_7_tmem_txt = .data:0x000AA400; // type:object size:0x400 scope:global align:32
+bea_8_pal = .data:0x000AA800; // type:object size:0x20 scope:global align:32
+bea_8_eye1_TA_tex_txt = .data:0x000AA820; // type:object size:0x100 scope:global align:32
+bea_8_eye2_TA_tex_txt = .data:0x000AA920; // type:object size:0x100 scope:global align:32
+bea_8_eye3_TA_tex_txt = .data:0x000AAA20; // type:object size:0x100 scope:global align:32
+bea_8_eye4_TA_tex_txt = .data:0x000AAB20; // type:object size:0x100 scope:global align:32
+bea_8_eye5_TA_tex_txt = .data:0x000AAC20; // type:object size:0x100 scope:global align:32
+bea_8_eye6_TA_tex_txt = .data:0x000AAD20; // type:object size:0x100 scope:global align:32
+bea_8_eye7_TA_tex_txt = .data:0x000AAE20; // type:object size:0x100 scope:global align:32
+bea_8_eye8_TA_tex_txt = .data:0x000AAF20; // type:object size:0x100 scope:global align:32
+bea_8_mouth1_TA_tex_txt = .data:0x000AB020; // type:object size:0x100 scope:global align:32
+bea_8_mouth2_TA_tex_txt = .data:0x000AB120; // type:object size:0x100 scope:global align:32
+bea_8_mouth3_TA_tex_txt = .data:0x000AB220; // type:object size:0x100 scope:global align:32
+bea_8_mouth4_TA_tex_txt = .data:0x000AB320; // type:object size:0x100 scope:global align:32
+bea_8_mouth5_TA_tex_txt = .data:0x000AB420; // type:object size:0x100 scope:global align:32
+bea_8_mouth6_TA_tex_txt = .data:0x000AB520; // type:object size:0x100 scope:global align:32
+bea_8_tmem_txt = .data:0x000AB620; // type:object size:0x400 scope:global align:32
+bea_9_pal = .data:0x000ABA20; // type:object size:0x20 scope:global align:32
+bea_9_eye1_TA_tex_txt = .data:0x000ABA40; // type:object size:0x100 scope:global align:32
+bea_9_eye2_TA_tex_txt = .data:0x000ABB40; // type:object size:0x100 scope:global align:32
+bea_9_eye3_TA_tex_txt = .data:0x000ABC40; // type:object size:0x100 scope:global align:32
+bea_9_eye4_TA_tex_txt = .data:0x000ABD40; // type:object size:0x100 scope:global align:32
+bea_9_eye5_TA_tex_txt = .data:0x000ABE40; // type:object size:0x100 scope:global align:32
+bea_9_eye6_TA_tex_txt = .data:0x000ABF40; // type:object size:0x100 scope:global align:32
+bea_9_eye7_TA_tex_txt = .data:0x000AC040; // type:object size:0x100 scope:global align:32
+bea_9_eye8_TA_tex_txt = .data:0x000AC140; // type:object size:0x100 scope:global align:32
+bea_9_mouth1_TA_tex_txt = .data:0x000AC240; // type:object size:0x100 scope:global align:32
+bea_9_mouth2_TA_tex_txt = .data:0x000AC340; // type:object size:0x100 scope:global align:32
+bea_9_mouth3_TA_tex_txt = .data:0x000AC440; // type:object size:0x100 scope:global align:32
+bea_9_mouth4_TA_tex_txt = .data:0x000AC540; // type:object size:0x100 scope:global align:32
+bea_9_mouth5_TA_tex_txt = .data:0x000AC640; // type:object size:0x100 scope:global align:32
+bea_9_mouth6_TA_tex_txt = .data:0x000AC740; // type:object size:0x100 scope:global align:32
+bea_9_tmem_txt = .data:0x000AC840; // type:object size:0x400 scope:global align:32
+bea_10_pal = .data:0x000ACC40; // type:object size:0x20 scope:global align:32
+bea_10_eye1_TA_tex_txt = .data:0x000ACC60; // type:object size:0x100 scope:global align:32
+bea_10_eye2_TA_tex_txt = .data:0x000ACD60; // type:object size:0x100 scope:global align:32
+bea_10_eye3_TA_tex_txt = .data:0x000ACE60; // type:object size:0x100 scope:global align:32
+bea_10_eye4_TA_tex_txt = .data:0x000ACF60; // type:object size:0x100 scope:global align:32
+bea_10_eye5_TA_tex_txt = .data:0x000AD060; // type:object size:0x100 scope:global align:32
+bea_10_eye6_TA_tex_txt = .data:0x000AD160; // type:object size:0x100 scope:global align:32
+bea_10_eye7_TA_tex_txt = .data:0x000AD260; // type:object size:0x100 scope:global align:32
+bea_10_eye8_TA_tex_txt = .data:0x000AD360; // type:object size:0x100 scope:global align:32
+bea_10_mouth1_TA_tex_txt = .data:0x000AD460; // type:object size:0x100 scope:global align:32
+bea_10_mouth2_TA_tex_txt = .data:0x000AD560; // type:object size:0x100 scope:global align:32
+bea_10_mouth3_TA_tex_txt = .data:0x000AD660; // type:object size:0x100 scope:global align:32
+bea_10_mouth4_TA_tex_txt = .data:0x000AD760; // type:object size:0x100 scope:global align:32
+bea_10_mouth5_TA_tex_txt = .data:0x000AD860; // type:object size:0x100 scope:global align:32
+bea_10_mouth6_TA_tex_txt = .data:0x000AD960; // type:object size:0x100 scope:global align:32
+bea_10_tmem_txt = .data:0x000ADA60; // type:object size:0x400 scope:global align:32
+act_bee_tex_txt = .data:0x000ADE60; // type:object size:0x200 scope:global align:32
+act_bee_v = .data:0x000AE060; // type:object size:0x3A0 scope:global align:8
+act_bee_C_model = .data:0x000AE400; // type:object size:0x98 scope:global align:8
+act_bee_B_model = .data:0x000AE498; // type:object size:0x88 scope:global align:8
+act_bee_A_model = .data:0x000AE520; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_act_bee_tbl = .data:0x000AE598; // type:object size:0x4 scope:global align:4
+cKF_kn_act_bee_tbl = .data:0x000AE59C; // type:object size:0x4 scope:global align:4
+cKF_c_act_bee_tbl = .data:0x000AE5A0; // type:object size:0x1A scope:global align:4
+cKF_ds_act_bee_tbl = .data:0x000AE5BC; // type:object size:0x18 scope:global align:4
+cKF_ba_r_act_bee = .data:0x000AE5D4; // type:object size:0x14 scope:global align:4
+cKF_je_r_act_bee_tbl = .data:0x000AE5E8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_act_bee = .data:0x000AE618; // type:object size:0x8 scope:global align:4
+obj_f_honeycomb_pal = .data:0x000AE620; // type:object size:0x20 scope:global align:4
+obj_f_honeycomb_tex = .data:0x000AE640; // type:object size:0x200 scope:global align:4
+obj_f_honeycomb_v = .data:0x000AE840; // type:object size:0x40 scope:global align:8
+obj_f_honeycombT_mat_model = .data:0x000AE880; // type:object size:0x78 scope:global align:8
+obj_f_honeycombT_gfx_model = .data:0x000AE8F8; // type:object size:0x18 scope:global align:8
+obj_f_tree_baby_tex = .data:0x000AE920; // type:object size:0x180 scope:global align:32
+obj_f_tree1_v = .data:0x000AEAA0; // type:object size:0x40 scope:global align:8
+obj_f_tree1T_mat_model = .data:0x000AEAE0; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree1T_mat_model = .data:0x000AEB00; // type:object size:0x20 scope:global align:8
+obj_f_tree1T_gfx_model = .data:0x000AEB20; // type:object size:0x18 scope:global align:8
+obj_f_tree_dead_tex = .data:0x000AEB40; // type:object size:0x100 scope:global align:32
+obj_f_tree1_dead_v = .data:0x000AEC40; // type:object size:0x40 scope:global align:8
+obj_f_tree1_deadT_mat_model = .data:0x000AEC80; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree1_deadT_mat_model = .data:0x000AECA0; // type:object size:0x20 scope:global align:8
+obj_f_tree1_deadT_gfx_model = .data:0x000AECC0; // type:object size:0x18 scope:global align:8
+obj_f_tree_young_tex = .data:0x000AECE0; // type:object size:0x800 scope:global align:32
+obj_f_tree2_v = .data:0x000AF4E0; // type:object size:0x70 scope:global align:8
+obj_f_tree2T_mat_model = .data:0x000AF550; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree2T_mat_model = .data:0x000AF570; // type:object size:0x20 scope:global align:8
+obj_f_tree2T_gfx_model = .data:0x000AF590; // type:object size:0x20 scope:global align:8
+obj_f_tree_leaf_tex = .data:0x000AF5C0; // type:object size:0x800 scope:global align:32
+obj_f_tree3_v = .data:0x000AFDC0; // type:object size:0xC0 scope:global align:8
+obj_f_tree3_leafT_mat_model = .data:0x000AFE80; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree3_leafT_mat_model = .data:0x000AFEA0; // type:object size:0x20 scope:global align:8
+obj_f_tree3_leafT_gfx_model = .data:0x000AFEC0; // type:object size:0x20 scope:global align:8
+obj_f_tree3_trunkT_mat_model = .data:0x000AFEE0; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree3_trunkT_mat_model = .data:0x000AFF00; // type:object size:0x20 scope:global align:8
+obj_f_tree3_trunkT_gfx_model = .data:0x000AFF20; // type:object size:0x20 scope:global align:8
+obj_f_tree_trunk_tex = .data:0x000AFF40; // type:object size:0x800 scope:global align:32
+obj_f_tree4_v = .data:0x000B0740; // type:object size:0x110 scope:global align:8
+obj_f_tree4_leafT_mat_model = .data:0x000B0850; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree4_leafT_mat_model = .data:0x000B0870; // type:object size:0x20 scope:global align:8
+obj_f_tree4_leafT_gfx_model = .data:0x000B0890; // type:object size:0x28 scope:global align:8
+obj_f_tree4_trunkT_mat_model = .data:0x000B08B8; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree4_trunkT_mat_model = .data:0x000B08D8; // type:object size:0x20 scope:global align:8
+obj_f_tree4_trunkT_gfx_model = .data:0x000B08F8; // type:object size:0x20 scope:global align:8
+obj_f_tree5_v = .data:0x000B0918; // type:object size:0x160 scope:global align:8
+obj_f_tree5_leafT_mat_model = .data:0x000B0A78; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree5_leafT_mat_model = .data:0x000B0A98; // type:object size:0x20 scope:global align:8
+obj_f_tree5_leafT_gfx_model = .data:0x000B0AB8; // type:object size:0x30 scope:global align:8
+obj_f_tree5_trunkT_mat_model = .data:0x000B0AE8; // type:object size:0x20 scope:global align:8
+obj_f_gold_tree5_trunkT_mat_model = .data:0x000B0B08; // type:object size:0x20 scope:global align:8
+obj_f_tree5_trunkT_gfx_model = .data:0x000B0B28; // type:object size:0x20 scope:global align:8
+data_bgd = .data:0x000B0B48; // type:object size:0x4D7EC scope:global align:4
+data_bgd_number = .data:0x000FE334; // type:object size:0x4 scope:global align:4 data:4byte
+mFM_obj_a_01_flower_pal = .data:0x000FE340; // type:object size:0x360 scope:global align:32
+mFM_obj_gold_01_pal_dol = .data:0x000FE6A0; // type:object size:0x1C0 scope:global align:4
+mFM_obj_01_zassou_pal = .data:0x000FE860; // type:object size:0x120 scope:global align:32
+obj_cedar3_shadow_v = .data:0x000FE980; // type:object size:0x40 scope:global align:8
+obj_cedar3_shadowT_mat_model = .data:0x000FE9C0; // type:object size:0x20 scope:global align:8
+obj_cedar3_shadowT_gfx_model = .data:0x000FE9E0; // type:object size:0x10 scope:global align:8
+obj_cedar4_shadow_v = .data:0x000FE9F0; // type:object size:0x40 scope:global align:8
+obj_cedar4_shadowT_mat_model = .data:0x000FEA30; // type:object size:0x20 scope:global align:8
+obj_cedar4_shadowT_gfx_model = .data:0x000FEA50; // type:object size:0x10 scope:global align:8
+obj_cedar_shadow_tex = .data:0x000FEA60; // type:object size:0x200 scope:global align:32
+obj_cedar5_shadow_v = .data:0x000FEC60; // type:object size:0x40 scope:global align:8
+obj_cedar5_shadowT_mat_model = .data:0x000FECA0; // type:object size:0x20 scope:global align:8
+obj_cedar5_shadowT_gfx_model = .data:0x000FECC0; // type:object size:0x10 scope:global align:8
+obj_cstump3_shadow_v = .data:0x000FECD0; // type:object size:0x40 scope:global align:8
+obj_cstump3_shadowT_mat_model = .data:0x000FED10; // type:object size:0x20 scope:global align:8
+obj_cstump3_shadowT_gfx_model = .data:0x000FED30; // type:object size:0x10 scope:global align:8
+obj_cstump4_shadow_v = .data:0x000FED40; // type:object size:0x40 scope:global align:8
+obj_cstump4_shadowT_mat_model = .data:0x000FED80; // type:object size:0x20 scope:global align:8
+obj_cstump4_shadowT_gfx_model = .data:0x000FEDA0; // type:object size:0x10 scope:global align:8
+obj_cstump_shadow_tex = .data:0x000FEDC0; // type:object size:0x200 scope:global align:32
+obj_cstump5_shadow_v = .data:0x000FEFC0; // type:object size:0x40 scope:global align:8
+obj_cstump5_shadowT_mat_model = .data:0x000FF000; // type:object size:0x20 scope:global align:8
+obj_cstump5_shadowT_gfx_model = .data:0x000FF020; // type:object size:0x10 scope:global align:8
+obj_s_cedar_baby_tex = .data:0x000FF040; // type:object size:0x180 scope:global align:32
+obj_s_cedar1_v = .data:0x000FF1C0; // type:object size:0x40 scope:global align:8
+obj_s_cedar1T_mat_model = .data:0x000FF200; // type:object size:0x20 scope:global align:8
+obj_s_cedar1T_gfx_model = .data:0x000FF220; // type:object size:0x18 scope:global align:8
+obj_s_cedar_dead_tex = .data:0x000FF240; // type:object size:0x100 scope:global align:32
+obj_s_cedar1_dead_v = .data:0x000FF340; // type:object size:0x40 scope:global align:8
+obj_s_cedar1_deadT_mat_model = .data:0x000FF380; // type:object size:0x20 scope:global align:8
+obj_s_cedar1_deadT_gfx_model = .data:0x000FF3A0; // type:object size:0x18 scope:global align:8
+obj_s_cedar2_v = .data:0x000FF3B8; // type:object size:0x70 scope:global align:8
+obj_s_cedar2T_mat_model = .data:0x000FF428; // type:object size:0x20 scope:global align:8
+obj_s_cedar2T_gfx_model = .data:0x000FF448; // type:object size:0x20 scope:global align:8
+obj_s_cedar_leaf_tex = .data:0x000FF480; // type:object size:0x800 scope:global align:32
+obj_s_cedar_young_tex = .data:0x000FFC80; // type:object size:0x800 scope:global align:32
+obj_s_cedar3_v = .data:0x00100480; // type:object size:0x1E0 scope:global align:8
+obj_s_cedar3_leafT_mat_model = .data:0x00100660; // type:object size:0x20 scope:global align:8
+obj_s_cedar3_leafT_gfx_model = .data:0x00100680; // type:object size:0x28 scope:global align:8
+obj_s_cedar3_trunkT_mat_model = .data:0x001006A8; // type:object size:0x20 scope:global align:8
+obj_s_cedar3_trunkT_gfx_model = .data:0x001006C8; // type:object size:0x20 scope:global align:8
+obj_s_cedar_trunk_tex = .data:0x00100700; // type:object size:0x800 scope:global align:32
+obj_s_cedar4_v = .data:0x00100F00; // type:object size:0x360 scope:global align:8
+obj_s_cedar4_trunkT_mat_model = .data:0x00101260; // type:object size:0x20 scope:global align:8
+obj_s_cedar4_trunkT_gfx_model = .data:0x00101280; // type:object size:0x20 scope:global align:8
+obj_s_cedar4_leafT_mat_model = .data:0x001012A0; // type:object size:0x20 scope:global align:8
+obj_s_cedar4_leafT_gfx_model = .data:0x001012C0; // type:object size:0x48 scope:global align:8
+obj_s_cedar5_v = .data:0x00101308; // type:object size:0x4B0 scope:global align:8
+obj_s_cedar5_leafT_mat_model = .data:0x001017B8; // type:object size:0x20 scope:global align:8
+obj_s_cedar5_leafT_gfx_model = .data:0x001017D8; // type:object size:0x68 scope:global align:8
+obj_s_cedar5_trunkT_mat_model = .data:0x00101840; // type:object size:0x20 scope:global align:8
+obj_s_cedar5_trunkT_gfx_model = .data:0x00101860; // type:object size:0x20 scope:global align:8
+obj_s_cstump2_v = .data:0x00101880; // type:object size:0x70 scope:global align:8
+obj_s_cstump2T_mat_model = .data:0x001018F0; // type:object size:0x20 scope:global align:8
+obj_s_cstump2T_gfx_model = .data:0x00101910; // type:object size:0x20 scope:global align:8
+obj_s_cstump3_v = .data:0x00101930; // type:object size:0x70 scope:global align:8
+obj_s_cstump3T_mat_model = .data:0x001019A0; // type:object size:0x20 scope:global align:8
+obj_s_cstump3T_gfx_model = .data:0x001019C0; // type:object size:0x20 scope:global align:8
+obj_s_cedar_stump_tex = .data:0x001019E0; // type:object size:0x400 scope:global align:32
+obj_s_cstump4_v = .data:0x00101DE0; // type:object size:0x70 scope:global align:8
+obj_s_cstump4T_mat_model = .data:0x00101E50; // type:object size:0x20 scope:global align:8
+obj_s_cstump4T_gfx_model = .data:0x00101E70; // type:object size:0x20 scope:global align:8
+obj_s_cstump5_v = .data:0x00101E90; // type:object size:0x70 scope:global align:8
+obj_s_cstump5T_mat_model = .data:0x00101F00; // type:object size:0x20 scope:global align:8
+obj_s_cstump5T_gfx_model = .data:0x00101F20; // type:object size:0x20 scope:global align:8
+obj_crack_tex = .data:0x00101F40; // type:object size:0x200 scope:global align:32
+obj_crack0T_g_mat_model = .data:0x00102140; // type:object size:0x20 scope:global align:8
+obj_crack0T_s_mat_model = .data:0x00102160; // type:object size:0x20 scope:global align:8
+obj_fence_pal = .data:0x00102180; // type:object size:0x20 scope:global align:32
+obj_s_fence_tex = .data:0x001021A0; // type:object size:0x400 scope:global align:32
+obj_s_fenceL_v = .data:0x001025A0; // type:object size:0x40 scope:global align:8
+obj_s_fenceLT_mat_model = .data:0x001025E0; // type:object size:0x28 scope:global align:8
+obj_s_fenceLT_gfx_model = .data:0x00102608; // type:object size:0x18 scope:global align:8
+obj_fence_shadow_tex = .data:0x00102620; // type:object size:0x200 scope:global align:32
+obj_fenceL_shadow_v = .data:0x00102820; // type:object size:0x40 scope:global align:8
+obj_fenceL_shadowT_mat_model = .data:0x00102860; // type:object size:0x20 scope:global align:8
+obj_fenceL_shadowT_gfx_model = .data:0x00102880; // type:object size:0x10 scope:global align:8
+obj_s_fenceS_v = .data:0x00102890; // type:object size:0x40 scope:global align:8
+obj_s_fenceST_mat_model = .data:0x001028D0; // type:object size:0x28 scope:global align:8
+obj_s_fenceST_gfx_model = .data:0x001028F8; // type:object size:0x18 scope:global align:8
+obj_fenceS_shadow_v = .data:0x00102910; // type:object size:0x40 scope:global align:8
+obj_fenceS_shadowT_mat_model = .data:0x00102950; // type:object size:0x20 scope:global align:8
+obj_fenceS_shadowT_gfx_model = .data:0x00102970; // type:object size:0x10 scope:global align:8
+obj_flower_tex = .data:0x00102980; // type:object size:0x800 scope:local align:32
+obj_flower_a_v = .data:0x00103180; // type:object size:0x80 scope:global align:8
+obj_flower_b_v = .data:0x00103200; // type:object size:0x80 scope:global align:8
+obj_flower_c_v = .data:0x00103280; // type:object size:0x80 scope:global align:8
+obj_flower_aT_mat_model = .data:0x00103300; // type:object size:0x20 scope:global align:8
+obj_flower_bT_mat_model = .data:0x00103320; // type:object size:0x20 scope:global align:8
+obj_flower_cT_mat_model = .data:0x00103340; // type:object size:0x20 scope:global align:8
+obj_flower_aT_gfx_model = .data:0x00103360; // type:object size:0x20 scope:global align:8
+obj_flower_bT_gfx_model = .data:0x00103380; // type:object size:0x20 scope:global align:8
+obj_flower_cT_gfx_model = .data:0x001033A0; // type:object size:0x20 scope:global align:8
+obj_flower_tex = .data:0x001033C0; // type:object size:0x800 scope:local align:32
+obj_flower_leaf_v = .data:0x00103BC0; // type:object size:0x40 scope:global align:8
+obj_flower_leafT_mat_model = .data:0x00103C00; // type:object size:0x20 scope:global align:8
+obj_flower_leafT_gfx_model = .data:0x00103C20; // type:object size:0x18 scope:global align:8
+obj_zassou_tex = .data:0x00103C40; // type:object size:0x400 scope:global align:32
+obj_zassou_a_v = .data:0x00104040; // type:object size:0x40 scope:global align:8
+obj_zassou_aT_mat_model = .data:0x00104080; // type:object size:0x20 scope:global align:8
+obj_zassou_aT_gfx_model = .data:0x001040A0; // type:object size:0x18 scope:global align:8
+obj_zassou_b_v = .data:0x001040B8; // type:object size:0x40 scope:global align:8
+obj_zassou_bT_gfx_model = .data:0x001040F8; // type:object size:0x18 scope:global align:8
+obj_zassou_c_v = .data:0x00104110; // type:object size:0x40 scope:global align:8
+obj_zassou_cT_gfx_model = .data:0x00104150; // type:object size:0x18 scope:global align:8
+obj_hole_tex = .data:0x00104180; // type:object size:0x200 scope:global align:32
+obj_hole0_v = .data:0x00104380; // type:object size:0x50 scope:global align:8
+obj_hole1_v = .data:0x001043D0; // type:object size:0x50 scope:global align:8
+obj_hole2_v = .data:0x00104420; // type:object size:0x50 scope:global align:8
+obj_hole3_v = .data:0x00104470; // type:object size:0x50 scope:global align:8
+obj_hole4_v = .data:0x001044C0; // type:object size:0x50 scope:global align:8
+obj_hole5_v = .data:0x00104510; // type:object size:0x50 scope:global align:8
+obj_hole6_v = .data:0x00104560; // type:object size:0x50 scope:global align:8
+obj_hole7_v = .data:0x001045B0; // type:object size:0x50 scope:global align:8
+obj_hole8_v = .data:0x00104600; // type:object size:0x50 scope:global align:8
+obj_hole9_v = .data:0x00104650; // type:object size:0x50 scope:global align:8
+obj_hole10_v = .data:0x001046A0; // type:object size:0x50 scope:global align:8
+obj_hole11_v = .data:0x001046F0; // type:object size:0x50 scope:global align:8
+obj_hole12_v = .data:0x00104740; // type:object size:0x50 scope:global align:8
+obj_hole13_v = .data:0x00104790; // type:object size:0x50 scope:global align:8
+obj_hole14_v = .data:0x001047E0; // type:object size:0x50 scope:global align:8
+obj_hole15_v = .data:0x00104830; // type:object size:0x50 scope:global align:8
+obj_hole16_v = .data:0x00104880; // type:object size:0x50 scope:global align:8
+obj_hole17_v = .data:0x001048D0; // type:object size:0x50 scope:global align:8
+obj_hole18_v = .data:0x00104920; // type:object size:0x50 scope:global align:8
+obj_hole19_v = .data:0x00104970; // type:object size:0x50 scope:global align:8
+obj_hole20_v = .data:0x001049C0; // type:object size:0x50 scope:global align:8
+obj_hole21_v = .data:0x00104A10; // type:object size:0x50 scope:global align:8
+obj_hole22_v = .data:0x00104A60; // type:object size:0x50 scope:global align:8
+obj_hole23_v = .data:0x00104AB0; // type:object size:0x50 scope:global align:8
+obj_hole24_v = .data:0x00104B00; // type:object size:0x50 scope:global align:8
+obj_hole0T_g_mat_model = .data:0x00104B50; // type:object size:0x20 scope:global align:8
+obj_hole0T_s_mat_model = .data:0x00104B70; // type:object size:0x20 scope:global align:8
+obj_hole0T_gfx_model = .data:0x00104B90; // type:object size:0x20 scope:global align:8
+obj_hole1T_gfx_model = .data:0x00104BB0; // type:object size:0x20 scope:global align:8
+obj_hole2T_gfx_model = .data:0x00104BD0; // type:object size:0x20 scope:global align:8
+obj_hole3T_gfx_model = .data:0x00104BF0; // type:object size:0x20 scope:global align:8
+obj_hole4T_gfx_model = .data:0x00104C10; // type:object size:0x20 scope:global align:8
+obj_hole5T_gfx_model = .data:0x00104C30; // type:object size:0x20 scope:global align:8
+obj_hole6T_gfx_model = .data:0x00104C50; // type:object size:0x20 scope:global align:8
+obj_hole7T_gfx_model = .data:0x00104C70; // type:object size:0x20 scope:global align:8
+obj_hole8T_gfx_model = .data:0x00104C90; // type:object size:0x20 scope:global align:8
+obj_hole9T_gfx_model = .data:0x00104CB0; // type:object size:0x20 scope:global align:8
+obj_hole10T_gfx_model = .data:0x00104CD0; // type:object size:0x20 scope:global align:8
+obj_hole11T_gfx_model = .data:0x00104CF0; // type:object size:0x20 scope:global align:8
+obj_hole12T_gfx_model = .data:0x00104D10; // type:object size:0x20 scope:global align:8
+obj_hole13T_gfx_model = .data:0x00104D30; // type:object size:0x20 scope:global align:8
+obj_hole14T_gfx_model = .data:0x00104D50; // type:object size:0x20 scope:global align:8
+obj_hole15T_gfx_model = .data:0x00104D70; // type:object size:0x20 scope:global align:8
+obj_hole16T_gfx_model = .data:0x00104D90; // type:object size:0x20 scope:global align:8
+obj_hole17T_gfx_model = .data:0x00104DB0; // type:object size:0x20 scope:global align:8
+obj_hole18T_gfx_model = .data:0x00104DD0; // type:object size:0x20 scope:global align:8
+obj_hole19T_gfx_model = .data:0x00104DF0; // type:object size:0x20 scope:global align:8
+obj_hole20T_gfx_model = .data:0x00104E10; // type:object size:0x20 scope:global align:8
+obj_hole21T_gfx_model = .data:0x00104E30; // type:object size:0x20 scope:global align:8
+obj_hole22T_gfx_model = .data:0x00104E50; // type:object size:0x20 scope:global align:8
+obj_hole23T_gfx_model = .data:0x00104E70; // type:object size:0x20 scope:global align:8
+obj_hole24T_gfx_model = .data:0x00104E90; // type:object size:0x20 scope:global align:8
+obj_b_hole_pal = .data:0x00104EC0; // type:object size:0x20 scope:global align:32
+obj_g_hole_pal = .data:0x00104EE0; // type:object size:0x20 scope:global align:32
+obj_s_honeycomb_pal = .data:0x00104F00; // type:object size:0x20 scope:global align:4
+obj_s_honeycomb_tex = .data:0x00104F20; // type:object size:0x200 scope:global align:4
+obj_s_honeycomb_v = .data:0x00105120; // type:object size:0x40 scope:global align:8
+obj_s_honeycombT_mat_model = .data:0x00105160; // type:object size:0x78 scope:global align:8
+obj_s_honeycombT_gfx_model = .data:0x001051D8; // type:object size:0x18 scope:global align:8
+obj_melody_pal = .data:0x00105200; // type:object size:0x20 scope:local align:32
+obj_s_melody_tex = .data:0x00105220; // type:object size:0x800 scope:global align:32
+obj_s_melody_v = .data:0x00105A20; // type:object size:0x80 scope:global align:8
+obj_s_melodyT_mat_model = .data:0x00105AA0; // type:object size:0x28 scope:global align:8
+obj_s_melodyT_gfx_model = .data:0x00105AC8; // type:object size:0x20 scope:global align:8
+obj_melody_shadow_tex = .data:0x00105B00; // type:object size:0x200 scope:global align:32
+obj_melody_shadow_v = .data:0x00105D00; // type:object size:0x40 scope:global align:8
+obj_melody_shadowT_mat_model = .data:0x00105D40; // type:object size:0x20 scope:global align:8
+obj_melody_shadowT_gfx_model = .data:0x00105D60; // type:object size:0x10 scope:global align:8
+obj_notice_pal = .data:0x00105D80; // type:object size:0x20 scope:local align:32
+obj_s_notice_tex = .data:0x00105DA0; // type:object size:0x800 scope:global align:32
+obj_s_notice_v = .data:0x001065A0; // type:object size:0x80 scope:global align:8
+obj_s_noticeT_mat_model = .data:0x00106620; // type:object size:0x28 scope:global align:8
+obj_s_noticeT_gfx_model = .data:0x00106648; // type:object size:0x20 scope:global align:8
+obj_notice_shadow_tex = .data:0x00106680; // type:object size:0x200 scope:global align:32
+obj_notice_shadow_v = .data:0x00106880; // type:object size:0x40 scope:global align:8
+obj_notice_shadowT_mat_model = .data:0x001068C0; // type:object size:0x20 scope:global align:8
+obj_notice_shadowT_gfx_model = .data:0x001068E0; // type:object size:0x10 scope:global align:8
+obj_palm_shadow_tex = .data:0x00106900; // type:object size:0x200 scope:global align:32
+obj_palm3_shadow_v = .data:0x00106B00; // type:object size:0x40 scope:global align:8
+obj_palm3_shadowT_mat_model = .data:0x00106B40; // type:object size:0x20 scope:global align:8
+obj_palm3_shadowT_gfx_model = .data:0x00106B60; // type:object size:0x10 scope:global align:8
+obj_palm4_shadow_v = .data:0x00106B70; // type:object size:0x40 scope:global align:8
+obj_palm4_shadowT_mat_model = .data:0x00106BB0; // type:object size:0x20 scope:global align:8
+obj_palm4_shadowT_gfx_model = .data:0x00106BD0; // type:object size:0x10 scope:global align:8
+obj_palm5_shadow_v = .data:0x00106BE0; // type:object size:0x40 scope:global align:8
+obj_palm5_shadowT_mat_model = .data:0x00106C20; // type:object size:0x20 scope:global align:8
+obj_palm5_shadowT_gfx_model = .data:0x00106C40; // type:object size:0x10 scope:global align:8
+obj_pstump_shadow_tex = .data:0x00106C60; // type:object size:0x200 scope:local align:32
+obj_pstump3_shadow_v = .data:0x00106E60; // type:object size:0x40 scope:global align:8
+obj_pstump3_shadowT_mat_model = .data:0x00106EA0; // type:object size:0x20 scope:global align:8
+obj_pstump3_shadowT_gfx_model = .data:0x00106EC0; // type:object size:0x10 scope:global align:8
+obj_pstump_shadow_tex = .data:0x00106EE0; // type:object size:0x200 scope:local align:32
+obj_pstump4_shadow_v = .data:0x001070E0; // type:object size:0x40 scope:global align:8
+obj_pstump4_shadowT_mat_model = .data:0x00107120; // type:object size:0x20 scope:global align:8
+obj_pstump4_shadowT_gfx_model = .data:0x00107140; // type:object size:0x10 scope:global align:8
+obj_pstump_shadow_tex = .data:0x00107160; // type:object size:0x200 scope:local align:32
+obj_pstump5_shadow_v = .data:0x00107360; // type:object size:0x40 scope:global align:8
+obj_pstump5_shadowT_mat_model = .data:0x001073A0; // type:object size:0x20 scope:global align:8
+obj_pstump5_shadowT_gfx_model = .data:0x001073C0; // type:object size:0x10 scope:global align:8
+obj_w_palm_baby_tex = .data:0x001073E0; // type:object size:0x180 scope:global align:32
+obj_s_palm1_v = .data:0x00107560; // type:object size:0x40 scope:global align:8
+obj_w_palm1T_mat_model = .data:0x001075A0; // type:object size:0x20 scope:global align:8
+obj_w_palm1T_gfx_model = .data:0x001075C0; // type:object size:0x18 scope:global align:8
+obj_s_palm_dead_tex = .data:0x001075E0; // type:object size:0x100 scope:global align:32
+obj_s_palm1_dead_v = .data:0x001076E0; // type:object size:0x40 scope:global align:8
+obj_s_palm1_deadT_mat_model = .data:0x00107720; // type:object size:0x20 scope:global align:8
+obj_s_palm1_deadT_gfx_model = .data:0x00107740; // type:object size:0x18 scope:global align:8
+obj_s_palm_young_tex = .data:0x00107760; // type:object size:0x800 scope:local align:32
+obj_s_palm2_v = .data:0x00107F60; // type:object size:0x70 scope:global align:8
+obj_s_palm2T_mat_model = .data:0x00107FD0; // type:object size:0x20 scope:global align:8
+obj_s_palm2T_gfx_model = .data:0x00107FF0; // type:object size:0x20 scope:global align:8
+obj_s_palm_leaf_tex = .data:0x00108020; // type:object size:0x800 scope:local align:32
+obj_s_palm_young_tex = .data:0x00108820; // type:object size:0x800 scope:local align:32
+obj_s_palm3_v = .data:0x00109020; // type:object size:0x170 scope:global align:8
+obj_s_palm3_leafT_mat_model = .data:0x00109190; // type:object size:0x18 scope:global align:8
+obj_s_palm3_leafT_gfx_model = .data:0x001091A8; // type:object size:0x28 scope:global align:8
+obj_s_palm3_trunkT_mat_model = .data:0x001091D0; // type:object size:0x20 scope:global align:8
+obj_s_palm3_trunkT_gfx_model = .data:0x001091F0; // type:object size:0x20 scope:global align:8
+obj_s_palm_leaf_tex = .data:0x00109220; // type:object size:0x800 scope:local align:32
+obj_s_palm_trunk_tex = .data:0x00109A20; // type:object size:0x800 scope:local align:32
+obj_s_palm4_v = .data:0x0010A220; // type:object size:0x270 scope:global align:8
+obj_s_palm4_leafT_mat_model = .data:0x0010A490; // type:object size:0x18 scope:global align:8
+obj_s_palm4_leafT_gfx_model = .data:0x0010A4A8; // type:object size:0x38 scope:global align:8
+obj_s_palm4_trunkT_mat_model = .data:0x0010A4E0; // type:object size:0x20 scope:global align:8
+obj_s_palm4_trunkT_gfx_model = .data:0x0010A500; // type:object size:0x20 scope:global align:8
+obj_s_palm_leaf_tex = .data:0x0010A520; // type:object size:0x800 scope:local align:32
+obj_s_palm_trunk_tex = .data:0x0010AD20; // type:object size:0x800 scope:local align:32
+obj_s_palm5_v = .data:0x0010B520; // type:object size:0x370 scope:global align:8
+obj_s_palm5_trunkT_mat_model = .data:0x0010B890; // type:object size:0x20 scope:global align:8
+obj_s_palm5_trunkT_gfx_model = .data:0x0010B8B0; // type:object size:0x20 scope:global align:8
+obj_s_palm5_leafT_mat_model = .data:0x0010B8D0; // type:object size:0x20 scope:global align:8
+obj_s_palm5_leafT_gfx_model = .data:0x0010B8F0; // type:object size:0x58 scope:global align:8
+obj_s_palm5_coco_v = .data:0x0010B960; // type:object size:0x80 scope:global align:32
+obj_s_palm5_cocoT_gfx_model = .data:0x0010B9E0; // type:object size:0x20 scope:global align:8
+obj_s_palm_young_tex = .data:0x0010BA00; // type:object size:0x800 scope:local align:32
+obj_s_pstump2_v = .data:0x0010C200; // type:object size:0x70 scope:global align:8
+obj_s_pstump2T_mat_model = .data:0x0010C270; // type:object size:0x20 scope:global align:8
+obj_s_pstump2T_gfx_model = .data:0x0010C290; // type:object size:0x20 scope:global align:8
+obj_s_palm_young_tex = .data:0x0010C2C0; // type:object size:0x800 scope:local align:32
+obj_s_pstump3_v = .data:0x0010CAC0; // type:object size:0x70 scope:global align:8
+obj_s_pstump3T_mat_model = .data:0x0010CB30; // type:object size:0x20 scope:global align:8
+obj_s_pstump3T_gfx_model = .data:0x0010CB50; // type:object size:0x20 scope:global align:8
+obj_s_palm_stump_tex = .data:0x0010CB80; // type:object size:0x400 scope:local align:32
+obj_s_pstump4_v = .data:0x0010CF80; // type:object size:0x70 scope:global align:8
+obj_s_pstump4T_mat_model = .data:0x0010CFF0; // type:object size:0x20 scope:global align:8
+obj_s_pstump4T_gfx_model = .data:0x0010D010; // type:object size:0x20 scope:global align:8
+obj_s_palm_stump_tex = .data:0x0010D040; // type:object size:0x400 scope:local align:32
+obj_s_pstump5_v = .data:0x0010D440; // type:object size:0x70 scope:global align:8
+obj_s_spstump5T_mat_model = .data:0x0010D4B0; // type:object size:0x20 scope:global align:8
+obj_s_spstump5T_gfx_model = .data:0x0010D4D0; // type:object size:0x20 scope:global align:8
+obj_sightmap_pal = .data:0x0010D500; // type:object size:0x20 scope:local align:32
+obj_s_sightmap_tex = .data:0x0010D520; // type:object size:0x800 scope:global align:32
+obj_s_sightmap_v = .data:0x0010DD20; // type:object size:0x80 scope:global align:8
+obj_s_sightmapT_mat_model = .data:0x0010DDA0; // type:object size:0x28 scope:global align:8
+obj_s_sightmapT_gfx_model = .data:0x0010DDC8; // type:object size:0x20 scope:global align:8
+obj_sightmap_shadow_tex = .data:0x0010DE00; // type:object size:0x200 scope:global align:32
+obj_sightmap_shadow_v = .data:0x0010E000; // type:object size:0x40 scope:global align:8
+obj_sightmap_shadowT_mat_model = .data:0x0010E040; // type:object size:0x20 scope:global align:8
+obj_sightmap_shadowT_gfx_model = .data:0x0010E060; // type:object size:0x10 scope:global align:8
+obj_s_stoneA_pal = .data:0x0010E080; // type:object size:0x20 scope:global align:32
+obj_s_stoneA_tex = .data:0x0010E0A0; // type:object size:0x200 scope:global align:32
+obj_s_stoneA_v = .data:0x0010E2A0; // type:object size:0xA0 scope:global align:8
+obj_s_stoneA_mat_model = .data:0x0010E340; // type:object size:0x28 scope:global align:8
+obj_s_stoneA_gfx_model = .data:0x0010E368; // type:object size:0x28 scope:global align:8
+obj_stone_shadow_tex = .data:0x0010E3A0; // type:object size:0x80 scope:global align:32
+obj_stoneA_shadow_v = .data:0x0010E420; // type:object size:0xA0 scope:global align:8
+obj_stoneA_shadowT_mat_model = .data:0x0010E4C0; // type:object size:0x20 scope:global align:8
+obj_stoneA_shadowT_gfx_model = .data:0x0010E4E0; // type:object size:0x20 scope:global align:8
+obj_s_stoneB_v = .data:0x0010E500; // type:object size:0xC0 scope:global align:8
+obj_s_stoneB_gfx_model = .data:0x0010E5C0; // type:object size:0x30 scope:global align:8
+obj_stoneB_shadow_v = .data:0x0010E5F0; // type:object size:0xC0 scope:global align:8
+obj_stoneB_shadowT_gfx_model = .data:0x0010E6B0; // type:object size:0x20 scope:global align:8
+obj_s_stoneC_v = .data:0x0010E6D0; // type:object size:0xC0 scope:global align:8
+obj_s_stoneC_gfx_model = .data:0x0010E790; // type:object size:0x30 scope:global align:8
+obj_stoneC_shadow_v = .data:0x0010E7C0; // type:object size:0xC0 scope:global align:8
+obj_stoneC_shadowT_gfx_model = .data:0x0010E880; // type:object size:0x20 scope:global align:8
+obj_s_stoneD_v = .data:0x0010E8A0; // type:object size:0xF0 scope:global align:8
+obj_s_stoneD_gfx_model = .data:0x0010E990; // type:object size:0x38 scope:global align:8
+obj_stoneD_shadow_v = .data:0x0010E9C8; // type:object size:0x80 scope:global align:8
+obj_stoneD_shadowT_gfx_model = .data:0x0010EA48; // type:object size:0x18 scope:global align:8
+obj_s_stoneE_v = .data:0x0010EA60; // type:object size:0xF0 scope:global align:8
+obj_s_stoneE_gfx_model = .data:0x0010EB50; // type:object size:0x38 scope:global align:8
+obj_stoneE_shadow_v = .data:0x0010EB88; // type:object size:0xA0 scope:global align:8
+obj_stoneE_shadowT_gfx_model = .data:0x0010EC28; // type:object size:0x20 scope:global align:8
+obj_s_stump2_v = .data:0x0010EC48; // type:object size:0x70 scope:global align:8
+obj_stump2T_mat_model = .data:0x0010ECB8; // type:object size:0x20 scope:global align:8
+obj_gold_stump2T_mat_model = .data:0x0010ECD8; // type:object size:0x20 scope:global align:8
+obj_stump2T_gfx_model = .data:0x0010ECF8; // type:object size:0x20 scope:global align:8
+obj_s_stump3_v = .data:0x0010ED18; // type:object size:0x70 scope:global align:8
+obj_stump3T_mat_model = .data:0x0010ED88; // type:object size:0x20 scope:global align:8
+obj_gold_stump3T_mat_model = .data:0x0010EDA8; // type:object size:0x20 scope:global align:8
+obj_stump3T_gfx_model = .data:0x0010EDC8; // type:object size:0x20 scope:global align:8
+obj_stump_shadow_tex = .data:0x0010EE00; // type:object size:0x200 scope:global align:32
+obj_stump3_shadow_v = .data:0x0010F000; // type:object size:0x40 scope:global align:8
+obj_stump3_shadowT_mat_model = .data:0x0010F040; // type:object size:0x20 scope:global align:8
+obj_stump3_shadowT_gfx_model = .data:0x0010F060; // type:object size:0x10 scope:global align:8
+obj_s_tree_stump_tex = .data:0x0010F080; // type:object size:0x400 scope:global align:32
+obj_s_stump4_v = .data:0x0010F480; // type:object size:0x70 scope:global align:8
+obj_stump4T_mat_model = .data:0x0010F4F0; // type:object size:0x20 scope:global align:8
+obj_gold_stump4T_mat_model = .data:0x0010F510; // type:object size:0x20 scope:global align:8
+obj_stump4T_gfx_model = .data:0x0010F530; // type:object size:0x20 scope:global align:8
+obj_stump4_shadow_v = .data:0x0010F550; // type:object size:0x40 scope:global align:8
+obj_stump4_shadowT_mat_model = .data:0x0010F590; // type:object size:0x20 scope:global align:8
+obj_stump4_shadowT_gfx_model = .data:0x0010F5B0; // type:object size:0x10 scope:global align:8
+obj_s_stump5_v = .data:0x0010F5C0; // type:object size:0x70 scope:global align:8
+obj_stump5T_mat_model = .data:0x0010F630; // type:object size:0x20 scope:global align:8
+obj_gold_stump5T_mat_model = .data:0x0010F650; // type:object size:0x20 scope:global align:8
+obj_stump5T_gfx_model = .data:0x0010F670; // type:object size:0x20 scope:global align:8
+obj_stump5_shadow_v = .data:0x0010F690; // type:object size:0x40 scope:global align:8
+obj_stump5_shadowT_mat_model = .data:0x0010F6D0; // type:object size:0x20 scope:global align:8
+obj_stump5_shadowT_gfx_model = .data:0x0010F6F0; // type:object size:0x10 scope:global align:8
+obj_item_tane_pal = .data:0x0010F700; // type:object size:0x20 scope:local align:32
+obj_item_tane_tex = .data:0x0010F720; // type:object size:0x80 scope:local align:32
+obj_item_tane_v = .data:0x0010F7A0; // type:object size:0x40 scope:local align:8
+obj_taneT_mat_model = .data:0x0010F7E0; // type:object size:0x28 scope:global align:8
+obj_taneT_gfx_model = .data:0x0010F808; // type:object size:0x18 scope:global align:8
+obj_s_tree_baby_tex = .data:0x0010F820; // type:object size:0x180 scope:global align:32
+obj_s_tree1_v = .data:0x0010F9A0; // type:object size:0x40 scope:global align:8
+obj_s_tree1T_mat_model = .data:0x0010F9E0; // type:object size:0x20 scope:global align:8
+obj_s_gold_tree1T_mat_model = .data:0x0010FA00; // type:object size:0x20 scope:global align:8
+obj_s_tree1T_gfx_model = .data:0x0010FA20; // type:object size:0x18 scope:global align:8
+obj_s_tree_dead_tex = .data:0x0010FA40; // type:object size:0x100 scope:global align:32
+obj_s_tree1_dead_v = .data:0x0010FB40; // type:object size:0x40 scope:global align:8
+obj_s_tree1_deadT_mat_model = .data:0x0010FB80; // type:object size:0x20 scope:global align:8
+obj_s_gold_tree1_deadT_mat_model = .data:0x0010FBA0; // type:object size:0x20 scope:global align:8
+obj_s_tree1_deadT_gfx_model = .data:0x0010FBC0; // type:object size:0x18 scope:global align:8
+obj_s_tree_young_tex = .data:0x0010FBE0; // type:object size:0x800 scope:global align:32
+obj_s_tree2_v = .data:0x001103E0; // type:object size:0x70 scope:global align:8
+obj_s_gold_tree2T_mat_model = .data:0x00110450; // type:object size:0x20 scope:global align:8
+obj_s_tree2T_gfx_model = .data:0x00110470; // type:object size:0x20 scope:global align:8
+obj_s_tree3_leaf_tex = .data:0x001104A0; // type:object size:0x800 scope:global align:32
+obj_s_tree3_v = .data:0x00110CA0; // type:object size:0xC0 scope:global align:8
+obj_s_gold_tree3_leafT_mat_model = .data:0x00110D60; // type:object size:0x20 scope:global align:8
+obj_s_tree3_leafT_gfx_model = .data:0x00110D80; // type:object size:0x20 scope:global align:8
+obj_s_tree3_trunkT_mat_model = .data:0x00110DA0; // type:object size:0x20 scope:global align:8
+obj_s_gold_tree3_trunkT_mat_model = .data:0x00110DC0; // type:object size:0x20 scope:global align:8
+obj_s_tree3_trunkT_gfx_model = .data:0x00110DE0; // type:object size:0x20 scope:global align:8
+obj_tree_shadow_tex = .data:0x00110E00; // type:object size:0x200 scope:global align:32
+obj_tree3_shadow_v = .data:0x00111000; // type:object size:0x40 scope:global align:8
+obj_tree3_shadowT_mat_model = .data:0x00111040; // type:object size:0x20 scope:global align:8
+obj_tree3_shadowT_gfx_model = .data:0x00111060; // type:object size:0x10 scope:global align:8
+obj_s_tree4_trunk_tex = .data:0x00111080; // type:object size:0x800 scope:global align:32
+obj_s_tree4_v = .data:0x00111880; // type:object size:0x110 scope:global align:8
+obj_s_gold_tree4_leafT_mat_model = .data:0x00111990; // type:object size:0x20 scope:global align:8
+obj_s_tree4_leafT_gfx_model = .data:0x001119B0; // type:object size:0x28 scope:global align:8
+obj_s_gold_tree4_trunkT_mat_model = .data:0x001119D8; // type:object size:0x20 scope:global align:8
+obj_s_tree4_trunkT_gfx_model = .data:0x001119F8; // type:object size:0x20 scope:global align:8
+obj_tree4_shadow_v = .data:0x00111A18; // type:object size:0x40 scope:global align:8
+obj_tree4_shadowT_mat_model = .data:0x00111A58; // type:object size:0x20 scope:global align:8
+obj_tree4_shadowT_gfx_model = .data:0x00111A78; // type:object size:0x10 scope:global align:8
+obj_s_tree5_v = .data:0x00111AA0; // type:object size:0x160 scope:global align:32
+obj_s_tree5_leafT_mat_model = .data:0x00111C00; // type:object size:0x20 scope:global align:8
+obj_s_gold_tree5_leafT_mat_model = .data:0x00111C20; // type:object size:0x20 scope:global align:8
+obj_s_tree5_leafT_gfx_model = .data:0x00111C40; // type:object size:0x30 scope:global align:8
+obj_s_tree5_trunkT_mat_model = .data:0x00111C70; // type:object size:0x20 scope:global align:8
+obj_s_gold_tree5_trunkT_mat_model = .data:0x00111C90; // type:object size:0x20 scope:global align:8
+obj_s_tree5_trunkT_gfx_model = .data:0x00111CB0; // type:object size:0x20 scope:global align:8
+obj_s_tree5_apple_v = .data:0x00111CD0; // type:object size:0xC0 scope:global align:8
+obj_s_tree5_apple_appleT_gfx_model = .data:0x00111D90; // type:object size:0x20 scope:global align:8
+obj_tree5_shadow_v = .data:0x00111DB0; // type:object size:0x40 scope:global align:8
+obj_tree5_shadowT_mat_model = .data:0x00111DF0; // type:object size:0x20 scope:global align:8
+obj_tree5_shadowT_gfx_model = .data:0x00111E10; // type:object size:0x10 scope:global align:8
+mFM_obj_palm_01_pal = .data:0x00111E20; // type:object size:0x1C0 scope:global align:4
+mFM_obj_tree_01_pal = .data:0x00111FE0; // type:object size:0x1C0 scope:global align:4
+mFM_obj_tree_01_pal_dol = .data:0x001121A0; // type:object size:0x1C0 scope:global align:4
+obj_w_cedar_baby_tex = .data:0x00112360; // type:object size:0x180 scope:global align:32
+obj_w_cedar1_v = .data:0x001124E0; // type:object size:0x40 scope:global align:8
+obj_w_cedar1T_mat_model = .data:0x00112520; // type:object size:0x20 scope:global align:8
+obj_w_cedar1T_gfx_model = .data:0x00112540; // type:object size:0x18 scope:global align:8
+obj_w_cedar_dead_tex = .data:0x00112560; // type:object size:0x100 scope:global align:32
+obj_w_cedar1_dead_v = .data:0x00112660; // type:object size:0x40 scope:global align:8
+obj_w_cedar1_deadT_mat_model = .data:0x001126A0; // type:object size:0x20 scope:global align:8
+obj_w_cedar1_deadT_gfx_model = .data:0x001126C0; // type:object size:0x18 scope:global align:8
+obj_w_cedar2_v = .data:0x001126D8; // type:object size:0x70 scope:global align:8
+obj_w_cedar2T_mat_model = .data:0x00112748; // type:object size:0x20 scope:global align:8
+obj_w_cedar2T_gfx_model = .data:0x00112768; // type:object size:0x20 scope:global align:8
+obj_w_cedar_leaf_tex = .data:0x001127A0; // type:object size:0x800 scope:global align:32
+obj_w_cedar_young_tex = .data:0x00112FA0; // type:object size:0x800 scope:global align:32
+obj_w_cedar3_v = .data:0x001137A0; // type:object size:0x1E0 scope:global align:8
+obj_w_cedar3_leafT_mat_model = .data:0x00113980; // type:object size:0x20 scope:global align:8
+obj_w_cedar3_leafT_gfx_model = .data:0x001139A0; // type:object size:0x28 scope:global align:8
+obj_w_cedar3_trunkT_mat_model = .data:0x001139C8; // type:object size:0x20 scope:global align:8
+obj_w_cedar3_trunkT_gfx_model = .data:0x001139E8; // type:object size:0x20 scope:global align:8
+obj_w_cedar_trunk_tex = .data:0x00113A20; // type:object size:0x800 scope:global align:32
+obj_w_cedar4_v = .data:0x00114220; // type:object size:0x360 scope:global align:8
+obj_w_cedar4_trunkT_mat_model = .data:0x00114580; // type:object size:0x20 scope:global align:8
+obj_w_cedar4_trunkT_gfx_model = .data:0x001145A0; // type:object size:0x20 scope:global align:8
+obj_w_cedar4_leafT_mat_model = .data:0x001145C0; // type:object size:0x20 scope:global align:8
+obj_w_cedar4_leafT_gfx_model = .data:0x001145E0; // type:object size:0x48 scope:global align:8
+obj_w_cedar5_v = .data:0x00114628; // type:object size:0x4B0 scope:global align:8
+obj_w_cedar5_leafT_mat_model = .data:0x00114AD8; // type:object size:0x20 scope:global align:8
+obj_w_cedar5_leafT_gfx_model = .data:0x00114AF8; // type:object size:0x68 scope:global align:8
+obj_w_cedar5_trunkT_mat_model = .data:0x00114B60; // type:object size:0x20 scope:global align:8
+obj_w_cedar5_trunkT_gfx_model = .data:0x00114B80; // type:object size:0x20 scope:global align:8
+obj_w_cstump2_v = .data:0x00114BA0; // type:object size:0x70 scope:global align:8
+obj_w_cstump2T_mat_model = .data:0x00114C10; // type:object size:0x20 scope:global align:8
+obj_w_cstump2T_gfx_model = .data:0x00114C30; // type:object size:0x20 scope:global align:8
+obj_w_cstump3_v = .data:0x00114C50; // type:object size:0x70 scope:global align:8
+obj_w_cstump3T_mat_model = .data:0x00114CC0; // type:object size:0x20 scope:global align:8
+obj_w_cstump3T_gfx_model = .data:0x00114CE0; // type:object size:0x20 scope:global align:8
+obj_w_cedar_stump_tex = .data:0x00114D00; // type:object size:0x400 scope:global align:32
+obj_w_cstump4_v = .data:0x00115100; // type:object size:0x70 scope:global align:8
+obj_w_cstump4T_mat_model = .data:0x00115170; // type:object size:0x20 scope:global align:8
+obj_w_cstump4T_gfx_model = .data:0x00115190; // type:object size:0x20 scope:global align:8
+obj_w_cstump5_v = .data:0x001151B0; // type:object size:0x70 scope:global align:8
+obj_w_cstump5T_mat_model = .data:0x00115220; // type:object size:0x20 scope:global align:8
+obj_w_cstump5T_gfx_model = .data:0x00115240; // type:object size:0x20 scope:global align:8
+obj_w_fence_tex = .data:0x00115260; // type:object size:0x400 scope:global align:32
+obj_w_fenceL_v = .data:0x00115660; // type:object size:0x40 scope:global align:8
+obj_w_fenceLT_mat_model = .data:0x001156A0; // type:object size:0x28 scope:global align:8
+obj_w_fenceLT_gfx_model = .data:0x001156C8; // type:object size:0x18 scope:global align:8
+obj_w_fenceS_v = .data:0x001156E0; // type:object size:0x40 scope:global align:8
+obj_w_fenceST_mat_model = .data:0x00115720; // type:object size:0x28 scope:global align:8
+obj_w_fenceST_gfx_model = .data:0x00115748; // type:object size:0x18 scope:global align:8
+obj_w_honeycomb_pal = .data:0x00115760; // type:object size:0x20 scope:global align:4
+obj_w_honeycomb_tex = .data:0x00115780; // type:object size:0x200 scope:global align:4
+obj_w_honeycomb_v = .data:0x00115980; // type:object size:0x40 scope:global align:8
+obj_w_honeycombT_mat_model = .data:0x001159C0; // type:object size:0x78 scope:global align:8
+obj_w_honeycombT_gfx_model = .data:0x00115A38; // type:object size:0x18 scope:global align:8
+obj_melody_pal = .data:0x00115A60; // type:object size:0x20 scope:local align:32
+obj_w_melody_tex = .data:0x00115A80; // type:object size:0x800 scope:global align:32
+obj_w_melody_v = .data:0x00116280; // type:object size:0x80 scope:global align:8
+obj_w_melodyT_mat_model = .data:0x00116300; // type:object size:0x28 scope:global align:8
+obj_w_melodyT_gfx_model = .data:0x00116328; // type:object size:0x20 scope:global align:8
+obj_notice_pal = .data:0x00116360; // type:object size:0x20 scope:local align:32
+obj_w_notice_tex = .data:0x00116380; // type:object size:0x800 scope:global align:32
+obj_w_notice_v = .data:0x00116B80; // type:object size:0x80 scope:global align:8
+obj_w_noticeT_mat_model = .data:0x00116C00; // type:object size:0x28 scope:global align:8
+obj_w_noticeT_gfx_model = .data:0x00116C28; // type:object size:0x20 scope:global align:8
+obj_s_palm_baby_tex = .data:0x00116C60; // type:object size:0x180 scope:global align:32
+obj_w_palm1_v = .data:0x00116DE0; // type:object size:0x40 scope:global align:8
+obj_s_palm1T_mat_model = .data:0x00116E20; // type:object size:0x20 scope:global align:8
+obj_s_palm1T_gfx_model = .data:0x00116E40; // type:object size:0x18 scope:global align:8
+obj_w_palm_dead_tex = .data:0x00116E60; // type:object size:0x100 scope:global align:32
+obj_w_palm1_dead_v = .data:0x00116F60; // type:object size:0x40 scope:global align:8
+obj_w_palm1_deadT_mat_model = .data:0x00116FA0; // type:object size:0x20 scope:global align:8
+obj_w_palm1_deadT_gfx_model = .data:0x00116FC0; // type:object size:0x18 scope:global align:8
+obj_w_palm_young_tex = .data:0x00116FE0; // type:object size:0x800 scope:local align:32
+obj_w_palm2_v = .data:0x001177E0; // type:object size:0x70 scope:global align:8
+obj_w_palm2T_mat_model = .data:0x00117850; // type:object size:0x20 scope:global align:8
+obj_w_palm2T_gfx_model = .data:0x00117870; // type:object size:0x20 scope:global align:8
+obj_w_palm_leaf_tex = .data:0x001178A0; // type:object size:0x800 scope:local align:32
+obj_w_palm_young_tex = .data:0x001180A0; // type:object size:0x800 scope:local align:32
+obj_w_palm3_v = .data:0x001188A0; // type:object size:0x170 scope:global align:8
+obj_w_palm3_leafT_mat_model = .data:0x00118A10; // type:object size:0x20 scope:global align:8
+obj_w_palm3_leafT_gfx_model = .data:0x00118A30; // type:object size:0x28 scope:global align:8
+obj_w_palm3_trunkT_mat_model = .data:0x00118A58; // type:object size:0x20 scope:global align:8
+obj_w_palm3_trunkT_gfx_model = .data:0x00118A78; // type:object size:0x20 scope:global align:8
+obj_w_palm_leaf_tex = .data:0x00118AA0; // type:object size:0x800 scope:local align:32
+obj_w_palm_trunk_tex = .data:0x001192A0; // type:object size:0x800 scope:local align:32
+obj_w_palm4_v = .data:0x00119AA0; // type:object size:0x270 scope:global align:8
+obj_w_palm4_leafT_mat_model = .data:0x00119D10; // type:object size:0x20 scope:global align:8
+obj_w_palm4_leafT_gfx_model = .data:0x00119D30; // type:object size:0x38 scope:global align:8
+obj_w_palm4_trunkT_mat_model = .data:0x00119D68; // type:object size:0x20 scope:global align:8
+obj_w_palm4_trunkT_gfx_model = .data:0x00119D88; // type:object size:0x20 scope:global align:8
+obj_w_palm_leaf_tex = .data:0x00119DC0; // type:object size:0x800 scope:local align:32
+obj_w_palm_trunk_tex = .data:0x0011A5C0; // type:object size:0x800 scope:local align:32
+obj_w_palm5_v = .data:0x0011ADC0; // type:object size:0x370 scope:global align:8
+obj_w_palm5_trunkT_mat_model = .data:0x0011B130; // type:object size:0x20 scope:global align:8
+obj_w_palm5_trunkT_gfx_model = .data:0x0011B150; // type:object size:0x20 scope:global align:8
+obj_w_palm5_leafT_mat_model = .data:0x0011B170; // type:object size:0x20 scope:global align:8
+obj_w_palm5_leafT_gfx_model = .data:0x0011B190; // type:object size:0x58 scope:global align:8
+obj_w_palm5_coco_v = .data:0x0011B200; // type:object size:0x80 scope:global align:32
+obj_w_palm5_cocoT_gfx_model = .data:0x0011B280; // type:object size:0x20 scope:global align:8
+obj_w_palm_young_tex = .data:0x0011B2A0; // type:object size:0x800 scope:local align:32
+obj_w_pstump2_v = .data:0x0011BAA0; // type:object size:0x70 scope:global align:8
+obj_w_pstump2T_mat_model = .data:0x0011BB10; // type:object size:0x20 scope:global align:8
+obj_w_pstump2T_gfx_model = .data:0x0011BB30; // type:object size:0x20 scope:global align:8
+obj_w_palm_young_tex = .data:0x0011BB60; // type:object size:0x800 scope:local align:32
+obj_w_pstump3_v = .data:0x0011C360; // type:object size:0x70 scope:global align:8
+obj_w_pstump3T_mat_model = .data:0x0011C3D0; // type:object size:0x20 scope:global align:8
+obj_w_pstump3T_gfx_model = .data:0x0011C3F0; // type:object size:0x20 scope:global align:8
+obj_w_palm_stump_tex = .data:0x0011C420; // type:object size:0x400 scope:local align:32
+obj_w_pstump4_v = .data:0x0011C820; // type:object size:0x70 scope:global align:8
+obj_w_pstump4T_mat_model = .data:0x0011C890; // type:object size:0x20 scope:global align:8
+obj_w_pstump4T_gfx_model = .data:0x0011C8B0; // type:object size:0x20 scope:global align:8
+obj_w_palm_stump_tex = .data:0x0011C8E0; // type:object size:0x400 scope:local align:32
+obj_w_pstump5_v = .data:0x0011CCE0; // type:object size:0x70 scope:global align:8
+obj_w_spstump5T_mat_model = .data:0x0011CD50; // type:object size:0x20 scope:global align:8
+obj_w_spstump5T_gfx_model = .data:0x0011CD70; // type:object size:0x20 scope:global align:8
+obj_sightmap_pal = .data:0x0011CDA0; // type:object size:0x20 scope:local align:32
+obj_w_sightmap_tex = .data:0x0011CDC0; // type:object size:0x800 scope:global align:32
+obj_w_sightmap_v = .data:0x0011D5C0; // type:object size:0x80 scope:global align:8
+obj_w_sightmapT_mat_model = .data:0x0011D640; // type:object size:0x28 scope:global align:8
+obj_w_sightmapT_gfx_model = .data:0x0011D668; // type:object size:0x20 scope:global align:8
+obj_w_stone_pal = .data:0x0011D6A0; // type:object size:0x20 scope:global align:32
+obj_w_stone_tex = .data:0x0011D6C0; // type:object size:0x200 scope:global align:32
+obj_w_stoneA_v = .data:0x0011D8C0; // type:object size:0xA0 scope:global align:8
+obj_w_stoneA_mat_model = .data:0x0011D960; // type:object size:0x28 scope:global align:8
+obj_w_stoneA_gfx_model = .data:0x0011D988; // type:object size:0x28 scope:global align:8
+obj_w_stoneB_v = .data:0x0011D9B0; // type:object size:0xC0 scope:global align:8
+obj_w_stoneB_gfx_model = .data:0x0011DA70; // type:object size:0x30 scope:global align:8
+obj_w_stoneC_v = .data:0x0011DAA0; // type:object size:0xC0 scope:global align:8
+obj_w_stoneC_gfx_model = .data:0x0011DB60; // type:object size:0x30 scope:global align:8
+obj_w_stoneD_v = .data:0x0011DB90; // type:object size:0xF0 scope:global align:8
+obj_w_stoneD_gfx_model = .data:0x0011DC80; // type:object size:0x38 scope:global align:8
+obj_w_stoneE_v = .data:0x0011DCB8; // type:object size:0xF0 scope:global align:8
+obj_w_stoneE_gfx_model = .data:0x0011DDA8; // type:object size:0x38 scope:global align:8
+obj_w_tree_baby_tex = .data:0x0011DDE0; // type:object size:0x180 scope:global align:32
+obj_w_tree1_v = .data:0x0011DF60; // type:object size:0x40 scope:global align:8
+obj_w_tree1T_mat_model = .data:0x0011DFA0; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree1T_mat_model = .data:0x0011DFC0; // type:object size:0x20 scope:global align:8
+obj_w_tree1T_gfx_model = .data:0x0011DFE0; // type:object size:0x18 scope:global align:8
+obj_w_tree_dead_tex = .data:0x0011E000; // type:object size:0x100 scope:global align:32
+obj_w_tree1_dead_v = .data:0x0011E100; // type:object size:0x40 scope:global align:8
+obj_w_tree1_deadT_mat_model = .data:0x0011E140; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree1_deadT_mat_model = .data:0x0011E160; // type:object size:0x20 scope:global align:8
+obj_w_tree1_deadT_gfx_model = .data:0x0011E180; // type:object size:0x18 scope:global align:8
+obj_w_tree_young_tex = .data:0x0011E1A0; // type:object size:0x800 scope:global align:32
+obj_w_tree2_v = .data:0x0011E9A0; // type:object size:0x70 scope:global align:8
+obj_w_tree2T_mat_model = .data:0x0011EA10; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree2T_mat_model = .data:0x0011EA30; // type:object size:0x20 scope:global align:8
+obj_w_tree2T_gfx_model = .data:0x0011EA50; // type:object size:0x20 scope:global align:8
+obj_w_tree_leaf_tex = .data:0x0011EA80; // type:object size:0x800 scope:global align:32
+obj_w_tree3_v = .data:0x0011F280; // type:object size:0xC0 scope:global align:8
+obj_w_tree3_leafT_mat_model = .data:0x0011F340; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree3_leafT_mat_model = .data:0x0011F360; // type:object size:0x20 scope:global align:8
+obj_w_tree3_leafT_gfx_model = .data:0x0011F380; // type:object size:0x20 scope:global align:8
+obj_w_tree3_trunkT_mat_model = .data:0x0011F3A0; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree3_trunkT_mat_model = .data:0x0011F3C0; // type:object size:0x20 scope:global align:8
+obj_w_tree3_trunkT_gfx_model = .data:0x0011F3E0; // type:object size:0x20 scope:global align:8
+obj_w_tree_trunk_tex = .data:0x0011F400; // type:object size:0x800 scope:global align:32
+obj_w_tree4_v = .data:0x0011FC00; // type:object size:0x110 scope:global align:8
+obj_w_tree4_leafT_mat_model = .data:0x0011FD10; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree4_leafT_mat_model = .data:0x0011FD30; // type:object size:0x20 scope:global align:8
+obj_w_tree4_leafT_gfx_model = .data:0x0011FD50; // type:object size:0x28 scope:global align:8
+obj_w_tree4_trunkT_mat_model = .data:0x0011FD78; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree4_trunkT_mat_model = .data:0x0011FD98; // type:object size:0x20 scope:global align:8
+obj_w_tree4_trunkT_gfx_model = .data:0x0011FDB8; // type:object size:0x20 scope:global align:8
+obj_w_tree5_v = .data:0x0011FDD8; // type:object size:0x160 scope:global align:8
+obj_w_tree5_leafT_mat_model = .data:0x0011FF38; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree5_leafT_mat_model = .data:0x0011FF58; // type:object size:0x20 scope:global align:8
+obj_w_tree5_leafT_gfx_model = .data:0x0011FF78; // type:object size:0x30 scope:global align:8
+obj_w_tree5_trunkT_mat_model = .data:0x0011FFA8; // type:object size:0x20 scope:global align:8
+obj_w_gold_tree5_trunkT_mat_model = .data:0x0011FFC8; // type:object size:0x20 scope:global align:8
+obj_w_tree5_trunkT_gfx_model = .data:0x0011FFE8; // type:object size:0x20 scope:global align:8
+obj_cedar_light_pal = .data:0x00120020; // type:object size:0x20 scope:local align:32
+obj_x_cedar_light_tex = .data:0x00120040; // type:object size:0x200 scope:global align:32
+obj_x_cedar5_light_v = .data:0x00120240; // type:object size:0x1C0 scope:global align:8
+obj_x_ceder5_lightT_mat_model = .data:0x00120400; // type:object size:0x48 scope:global align:8
+obj_x_ceder5_lightT_gfx_model = .data:0x00120448; // type:object size:0x40 scope:global align:8
+obj_x_honeycomb_pal = .data:0x00120488; // type:object size:0x20 scope:global align:4
+obj_x_honeycomb_tex = .data:0x001204A8; // type:object size:0x200 scope:global align:4
+obj_x_honeycomb_v = .data:0x001206A8; // type:object size:0x40 scope:global align:8
+obj_x_honeycombT_mat_model = .data:0x001206E8; // type:object size:0x78 scope:global align:8
+obj_x_honeycombT_gfx_model = .data:0x00120760; // type:object size:0x18 scope:global align:8
+obj_x_tree_light_tex = .data:0x00120780; // type:object size:0x200 scope:global align:32
+obj_x_tree5_light_v = .data:0x00120980; // type:object size:0xC0 scope:global align:8
+obj_x_tree5_lightT_mat_model = .data:0x00120A40; // type:object size:0x48 scope:global align:8
+obj_x_tree5_lightT_gfx_model = .data:0x00120A88; // type:object size:0x20 scope:global align:8
+pbr_1_v = .data:0x00120AA8; // type:object size:0x1740 scope:global align:8
+head_pbr_model = .data:0x001221E8; // type:object size:0x1C8 scope:global align:8
+mouth_pbr_model = .data:0x001223B0; // type:object size:0x80 scope:global align:8
+Rarm2_pbr_model = .data:0x00122430; // type:object size:0x80 scope:global align:8
+Rarm1_pbr_model = .data:0x001224B0; // type:object size:0x78 scope:global align:8
+Larm2_pbr_model = .data:0x00122528; // type:object size:0x80 scope:global align:8
+Larm1_pbr_model = .data:0x001225A8; // type:object size:0x78 scope:global align:8
+chest_pbr_model = .data:0x00122620; // type:object size:0xD8 scope:global align:8
+tail1_pbr_model = .data:0x001226F8; // type:object size:0xB0 scope:global align:8
+Rfoot3_pbr_model = .data:0x001227A8; // type:object size:0xB0 scope:global align:8
+Rfoot2_pbr_model = .data:0x00122858; // type:object size:0x80 scope:global align:8
+Rfoot1_pbr_model = .data:0x001228D8; // type:object size:0x58 scope:global align:8
+Lfoot3_pbr_model = .data:0x00122930; // type:object size:0xB0 scope:global align:8
+Lfoot2_pbr_model = .data:0x001229E0; // type:object size:0x80 scope:global align:8
+Lfoot1_pbr_model = .data:0x00122A60; // type:object size:0x58 scope:global align:8
+base_pbr_model = .data:0x00122AB8; // type:object size:0x80 scope:global align:8
+cKF_je_r_pbr_1_tbl = .data:0x00122B38; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pbr_1 = .data:0x00122C70; // type:object size:0x8 scope:global align:4
+pbr_1_pal = .data:0x00122C80; // type:object size:0x20 scope:global align:32
+pbr_1_eye1_TA_tex_txt = .data:0x00122CA0; // type:object size:0x100 scope:global align:32
+pbr_1_eye2_TA_tex_txt = .data:0x00122DA0; // type:object size:0x100 scope:global align:32
+pbr_1_eye3_TA_tex_txt = .data:0x00122EA0; // type:object size:0x100 scope:global align:32
+pbr_1_eye4_TA_tex_txt = .data:0x00122FA0; // type:object size:0x100 scope:global align:32
+pbr_1_eye5_TA_tex_txt = .data:0x001230A0; // type:object size:0x100 scope:global align:32
+pbr_1_eye6_TA_tex_txt = .data:0x001231A0; // type:object size:0x100 scope:global align:32
+pbr_1_eye7_TA_tex_txt = .data:0x001232A0; // type:object size:0x100 scope:global align:32
+pbr_1_eye8_TA_tex_txt = .data:0x001233A0; // type:object size:0x100 scope:global align:32
+pbr_1_tmem_txt = .data:0x001234A0; // type:object size:0x500 scope:global align:32
+pbr_2_pal = .data:0x001239A0; // type:object size:0x20 scope:global align:32
+pbr_2_eye1_TA_tex_txt = .data:0x001239C0; // type:object size:0x100 scope:global align:32
+pbr_2_eye2_TA_tex_txt = .data:0x00123AC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye3_TA_tex_txt = .data:0x00123BC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye4_TA_tex_txt = .data:0x00123CC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye5_TA_tex_txt = .data:0x00123DC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye6_TA_tex_txt = .data:0x00123EC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye7_TA_tex_txt = .data:0x00123FC0; // type:object size:0x100 scope:global align:32
+pbr_2_eye8_TA_tex_txt = .data:0x001240C0; // type:object size:0x100 scope:global align:32
+pbr_2_tmem_txt = .data:0x001241C0; // type:object size:0x500 scope:global align:32
+pbr_3_pal = .data:0x001246C0; // type:object size:0x20 scope:global align:32
+pbr_3_eye1_TA_tex_txt = .data:0x001246E0; // type:object size:0x100 scope:global align:32
+pbr_3_eye2_TA_tex_txt = .data:0x001247E0; // type:object size:0x100 scope:global align:32
+pbr_3_eye3_TA_tex_txt = .data:0x001248E0; // type:object size:0x100 scope:global align:32
+pbr_3_eye4_TA_tex_txt = .data:0x001249E0; // type:object size:0x100 scope:global align:32
+pbr_3_eye5_TA_tex_txt = .data:0x00124AE0; // type:object size:0x100 scope:global align:32
+pbr_3_eye6_TA_tex_txt = .data:0x00124BE0; // type:object size:0x100 scope:global align:32
+pbr_3_eye7_TA_tex_txt = .data:0x00124CE0; // type:object size:0x100 scope:global align:32
+pbr_3_eye8_TA_tex_txt = .data:0x00124DE0; // type:object size:0x100 scope:global align:32
+pbr_3_tmem_txt = .data:0x00124EE0; // type:object size:0x500 scope:global align:32
+pbr_4_pal = .data:0x001253E0; // type:object size:0x20 scope:global align:32
+pbr_4_eye1_TA_tex_txt = .data:0x00125400; // type:object size:0x100 scope:global align:32
+pbr_4_eye2_TA_tex_txt = .data:0x00125500; // type:object size:0x100 scope:global align:32
+pbr_4_eye3_TA_tex_txt = .data:0x00125600; // type:object size:0x100 scope:global align:32
+pbr_4_eye4_TA_tex_txt = .data:0x00125700; // type:object size:0x100 scope:global align:32
+pbr_4_eye5_TA_tex_txt = .data:0x00125800; // type:object size:0x100 scope:global align:32
+pbr_4_eye6_TA_tex_txt = .data:0x00125900; // type:object size:0x100 scope:global align:32
+pbr_4_eye7_TA_tex_txt = .data:0x00125A00; // type:object size:0x100 scope:global align:32
+pbr_4_eye8_TA_tex_txt = .data:0x00125B00; // type:object size:0x100 scope:global align:32
+pbr_4_tmem_txt = .data:0x00125C00; // type:object size:0x500 scope:global align:32
+pbr_5_pal = .data:0x00126100; // type:object size:0x20 scope:global align:32
+pbr_5_eye1_TA_tex_txt = .data:0x00126120; // type:object size:0x100 scope:global align:32
+pbr_5_eye2_TA_tex_txt = .data:0x00126220; // type:object size:0x100 scope:global align:32
+pbr_5_eye3_TA_tex_txt = .data:0x00126320; // type:object size:0x100 scope:global align:32
+pbr_5_eye4_TA_tex_txt = .data:0x00126420; // type:object size:0x100 scope:global align:32
+pbr_5_eye5_TA_tex_txt = .data:0x00126520; // type:object size:0x100 scope:global align:32
+pbr_5_eye6_TA_tex_txt = .data:0x00126620; // type:object size:0x100 scope:global align:32
+pbr_5_eye7_TA_tex_txt = .data:0x00126720; // type:object size:0x100 scope:global align:32
+pbr_5_eye8_TA_tex_txt = .data:0x00126820; // type:object size:0x100 scope:global align:32
+pbr_5_tmem_txt = .data:0x00126920; // type:object size:0x500 scope:global align:32
+brd_1_v = .data:0x00126E20; // type:object size:0x1600 scope:global align:8
+head_brd_model = .data:0x00128420; // type:object size:0x180 scope:global align:8
+mouth_brd_model = .data:0x001285A0; // type:object size:0x78 scope:global align:8
+Rarm2_brd_model = .data:0x00128618; // type:object size:0x80 scope:global align:8
+Rarm1_brd_model = .data:0x00128698; // type:object size:0x78 scope:global align:8
+Larm2_brd_model = .data:0x00128710; // type:object size:0x80 scope:global align:8
+Larm1_brd_model = .data:0x00128790; // type:object size:0x78 scope:global align:8
+chest_brd_model = .data:0x00128808; // type:object size:0xC8 scope:global align:8
+tail1_brd_model = .data:0x001288D0; // type:object size:0xD0 scope:global align:8
+Rfoot3_brd_model = .data:0x001289A0; // type:object size:0xA0 scope:global align:8
+Rfoot2_brd_model = .data:0x00128A40; // type:object size:0x80 scope:global align:8
+Rfoot1_brd_model = .data:0x00128AC0; // type:object size:0x58 scope:global align:8
+Lfoot3_brd_model = .data:0x00128B18; // type:object size:0xA0 scope:global align:8
+Lfoot2_brd_model = .data:0x00128BB8; // type:object size:0x80 scope:global align:8
+Lfoot1_brd_model = .data:0x00128C38; // type:object size:0x58 scope:global align:8
+base_brd_model = .data:0x00128C90; // type:object size:0x88 scope:global align:8
+cKF_je_r_brd_1_tbl = .data:0x00128D18; // type:object size:0x138 scope:global align:4
+cKF_bs_r_brd_1 = .data:0x00128E50; // type:object size:0x8 scope:global align:4
+brd_1_pal = .data:0x00128E60; // type:object size:0x20 scope:global align:32
+brd_1_eye1_TA_tex_txt = .data:0x00128E80; // type:object size:0x100 scope:global align:32
+brd_1_eye2_TA_tex_txt = .data:0x00128F80; // type:object size:0x100 scope:global align:32
+brd_1_eye3_TA_tex_txt = .data:0x00129080; // type:object size:0x100 scope:global align:32
+brd_1_eye4_TA_tex_txt = .data:0x00129180; // type:object size:0x100 scope:global align:32
+brd_1_eye5_TA_tex_txt = .data:0x00129280; // type:object size:0x100 scope:global align:32
+brd_1_eye6_TA_tex_txt = .data:0x00129380; // type:object size:0x100 scope:global align:32
+brd_1_eye7_TA_tex_txt = .data:0x00129480; // type:object size:0x100 scope:global align:32
+brd_1_eye8_TA_tex_txt = .data:0x00129580; // type:object size:0x100 scope:global align:32
+brd_1_tmem_txt = .data:0x00129680; // type:object size:0x500 scope:global align:32
+brd_2_pal = .data:0x00129B80; // type:object size:0x20 scope:global align:32
+brd_2_eye1_TA_tex_txt = .data:0x00129BA0; // type:object size:0x100 scope:global align:32
+brd_2_eye2_TA_tex_txt = .data:0x00129CA0; // type:object size:0x100 scope:global align:32
+brd_2_eye3_TA_tex_txt = .data:0x00129DA0; // type:object size:0x100 scope:global align:32
+brd_2_eye4_TA_tex_txt = .data:0x00129EA0; // type:object size:0x100 scope:global align:32
+brd_2_eye5_TA_tex_txt = .data:0x00129FA0; // type:object size:0x100 scope:global align:32
+brd_2_eye6_TA_tex_txt = .data:0x0012A0A0; // type:object size:0x100 scope:global align:32
+brd_2_eye7_TA_tex_txt = .data:0x0012A1A0; // type:object size:0x100 scope:global align:32
+brd_2_eye8_TA_tex_txt = .data:0x0012A2A0; // type:object size:0x100 scope:global align:32
+brd_2_tmem_txt = .data:0x0012A3A0; // type:object size:0x500 scope:global align:32
+brd_11_pal = .data:0x0012A8A0; // type:object size:0x20 scope:global align:32
+brd_11_eye1_TA_tex_txt = .data:0x0012A8C0; // type:object size:0x100 scope:global align:32
+brd_11_eye2_TA_tex_txt = .data:0x0012A9C0; // type:object size:0x100 scope:global align:32
+brd_11_eye3_TA_tex_txt = .data:0x0012AAC0; // type:object size:0x100 scope:global align:32
+brd_11_eye4_TA_tex_txt = .data:0x0012ABC0; // type:object size:0x100 scope:global align:32
+brd_11_eye5_TA_tex_txt = .data:0x0012ACC0; // type:object size:0x100 scope:global align:32
+brd_11_eye6_TA_tex_txt = .data:0x0012ADC0; // type:object size:0x100 scope:global align:32
+brd_11_eye7_TA_tex_txt = .data:0x0012AEC0; // type:object size:0x100 scope:global align:32
+brd_11_eye8_TA_tex_txt = .data:0x0012AFC0; // type:object size:0x100 scope:global align:32
+brd_11_tmem_txt = .data:0x0012B0C0; // type:object size:0x500 scope:global align:32
+brd_3_pal = .data:0x0012B5C0; // type:object size:0x20 scope:global align:32
+brd_3_eye1_TA_tex_txt = .data:0x0012B5E0; // type:object size:0x100 scope:global align:32
+brd_3_eye2_TA_tex_txt = .data:0x0012B6E0; // type:object size:0x100 scope:global align:32
+brd_3_eye3_TA_tex_txt = .data:0x0012B7E0; // type:object size:0x100 scope:global align:32
+brd_3_eye4_TA_tex_txt = .data:0x0012B8E0; // type:object size:0x100 scope:global align:32
+brd_3_eye5_TA_tex_txt = .data:0x0012B9E0; // type:object size:0x100 scope:global align:32
+brd_3_eye6_TA_tex_txt = .data:0x0012BAE0; // type:object size:0x100 scope:global align:32
+brd_3_eye7_TA_tex_txt = .data:0x0012BBE0; // type:object size:0x100 scope:global align:32
+brd_3_eye8_TA_tex_txt = .data:0x0012BCE0; // type:object size:0x100 scope:global align:32
+brd_3_tmem_txt = .data:0x0012BDE0; // type:object size:0x500 scope:global align:32
+brd_4_pal = .data:0x0012C2E0; // type:object size:0x20 scope:global align:32
+brd_4_eye1_TA_tex_txt = .data:0x0012C300; // type:object size:0x100 scope:global align:32
+brd_4_eye2_TA_tex_txt = .data:0x0012C400; // type:object size:0x100 scope:global align:32
+brd_4_eye3_TA_tex_txt = .data:0x0012C500; // type:object size:0x100 scope:global align:32
+brd_4_eye4_TA_tex_txt = .data:0x0012C600; // type:object size:0x100 scope:global align:32
+brd_4_eye5_TA_tex_txt = .data:0x0012C700; // type:object size:0x100 scope:global align:32
+brd_4_eye6_TA_tex_txt = .data:0x0012C800; // type:object size:0x100 scope:global align:32
+brd_4_eye7_TA_tex_txt = .data:0x0012C900; // type:object size:0x100 scope:global align:32
+brd_4_eye8_TA_tex_txt = .data:0x0012CA00; // type:object size:0x100 scope:global align:32
+brd_4_tmem_txt = .data:0x0012CB00; // type:object size:0x500 scope:global align:32
+brd_5_pal = .data:0x0012D000; // type:object size:0x20 scope:global align:32
+brd_5_eye1_TA_tex_txt = .data:0x0012D020; // type:object size:0x100 scope:global align:32
+brd_5_eye2_TA_tex_txt = .data:0x0012D120; // type:object size:0x100 scope:global align:32
+brd_5_eye3_TA_tex_txt = .data:0x0012D220; // type:object size:0x100 scope:global align:32
+brd_5_eye4_TA_tex_txt = .data:0x0012D320; // type:object size:0x100 scope:global align:32
+brd_5_eye5_TA_tex_txt = .data:0x0012D420; // type:object size:0x100 scope:global align:32
+brd_5_eye6_TA_tex_txt = .data:0x0012D520; // type:object size:0x100 scope:global align:32
+brd_5_eye7_TA_tex_txt = .data:0x0012D620; // type:object size:0x100 scope:global align:32
+brd_5_eye8_TA_tex_txt = .data:0x0012D720; // type:object size:0x100 scope:global align:32
+brd_5_tmem_txt = .data:0x0012D820; // type:object size:0x500 scope:global align:32
+brd_6_pal = .data:0x0012DD20; // type:object size:0x20 scope:global align:32
+brd_6_eye1_TA_tex_txt = .data:0x0012DD40; // type:object size:0x100 scope:global align:32
+brd_6_eye2_TA_tex_txt = .data:0x0012DE40; // type:object size:0x100 scope:global align:32
+brd_6_eye3_TA_tex_txt = .data:0x0012DF40; // type:object size:0x100 scope:global align:32
+brd_6_eye4_TA_tex_txt = .data:0x0012E040; // type:object size:0x100 scope:global align:32
+brd_6_eye5_TA_tex_txt = .data:0x0012E140; // type:object size:0x100 scope:global align:32
+brd_6_eye6_TA_tex_txt = .data:0x0012E240; // type:object size:0x100 scope:global align:32
+brd_6_eye7_TA_tex_txt = .data:0x0012E340; // type:object size:0x100 scope:global align:32
+brd_6_eye8_TA_tex_txt = .data:0x0012E440; // type:object size:0x100 scope:global align:32
+brd_6_tmem_txt = .data:0x0012E540; // type:object size:0x500 scope:global align:32
+brd_7_pal = .data:0x0012EA40; // type:object size:0x20 scope:global align:32
+brd_7_eye1_TA_tex_txt = .data:0x0012EA60; // type:object size:0x100 scope:global align:32
+brd_7_eye2_TA_tex_txt = .data:0x0012EB60; // type:object size:0x100 scope:global align:32
+brd_7_eye3_TA_tex_txt = .data:0x0012EC60; // type:object size:0x100 scope:global align:32
+brd_7_eye4_TA_tex_txt = .data:0x0012ED60; // type:object size:0x100 scope:global align:32
+brd_7_eye5_TA_tex_txt = .data:0x0012EE60; // type:object size:0x100 scope:global align:32
+brd_7_eye6_TA_tex_txt = .data:0x0012EF60; // type:object size:0x100 scope:global align:32
+brd_7_eye7_TA_tex_txt = .data:0x0012F060; // type:object size:0x100 scope:global align:32
+brd_7_eye8_TA_tex_txt = .data:0x0012F160; // type:object size:0x100 scope:global align:32
+brd_7_tmem_txt = .data:0x0012F260; // type:object size:0x500 scope:global align:32
+brd_8_pal = .data:0x0012F760; // type:object size:0x20 scope:global align:32
+brd_8_eye1_TA_tex_txt = .data:0x0012F780; // type:object size:0x100 scope:global align:32
+brd_8_eye2_TA_tex_txt = .data:0x0012F880; // type:object size:0x100 scope:global align:32
+brd_8_eye3_TA_tex_txt = .data:0x0012F980; // type:object size:0x100 scope:global align:32
+brd_8_eye4_TA_tex_txt = .data:0x0012FA80; // type:object size:0x100 scope:global align:32
+brd_8_eye5_TA_tex_txt = .data:0x0012FB80; // type:object size:0x100 scope:global align:32
+brd_8_eye6_TA_tex_txt = .data:0x0012FC80; // type:object size:0x100 scope:global align:32
+brd_8_eye7_TA_tex_txt = .data:0x0012FD80; // type:object size:0x100 scope:global align:32
+brd_8_eye8_TA_tex_txt = .data:0x0012FE80; // type:object size:0x100 scope:global align:32
+brd_8_tmem_txt = .data:0x0012FF80; // type:object size:0x500 scope:global align:32
+brd_9_pal = .data:0x00130480; // type:object size:0x20 scope:global align:32
+brd_9_eye1_TA_tex_txt = .data:0x001304A0; // type:object size:0x100 scope:global align:32
+brd_9_eye2_TA_tex_txt = .data:0x001305A0; // type:object size:0x100 scope:global align:32
+brd_9_eye3_TA_tex_txt = .data:0x001306A0; // type:object size:0x100 scope:global align:32
+brd_9_eye4_TA_tex_txt = .data:0x001307A0; // type:object size:0x100 scope:global align:32
+brd_9_eye5_TA_tex_txt = .data:0x001308A0; // type:object size:0x100 scope:global align:32
+brd_9_eye6_TA_tex_txt = .data:0x001309A0; // type:object size:0x100 scope:global align:32
+brd_9_eye7_TA_tex_txt = .data:0x00130AA0; // type:object size:0x100 scope:global align:32
+brd_9_eye8_TA_tex_txt = .data:0x00130BA0; // type:object size:0x100 scope:global align:32
+brd_9_tmem_txt = .data:0x00130CA0; // type:object size:0x500 scope:global align:32
+brd_10_pal = .data:0x001311A0; // type:object size:0x20 scope:global align:32
+brd_10_eye1_TA_tex_txt = .data:0x001311C0; // type:object size:0x100 scope:global align:32
+brd_10_eye2_TA_tex_txt = .data:0x001312C0; // type:object size:0x100 scope:global align:32
+brd_10_eye3_TA_tex_txt = .data:0x001313C0; // type:object size:0x100 scope:global align:32
+brd_10_eye4_TA_tex_txt = .data:0x001314C0; // type:object size:0x100 scope:global align:32
+brd_10_eye5_TA_tex_txt = .data:0x001315C0; // type:object size:0x100 scope:global align:32
+brd_10_eye6_TA_tex_txt = .data:0x001316C0; // type:object size:0x100 scope:global align:32
+brd_10_eye7_TA_tex_txt = .data:0x001317C0; // type:object size:0x100 scope:global align:32
+brd_10_eye8_TA_tex_txt = .data:0x001318C0; // type:object size:0x100 scope:global align:32
+brd_10_tmem_txt = .data:0x001319C0; // type:object size:0x500 scope:global align:32
+boy_1_horn_tex_txt = .data:0x00131EC0; // type:object size:0x80 scope:global align:32
+boy_1_skin_tex_txt = .data:0x00131F40; // type:object size:0x80 scope:global align:32 data:string
+boy_1_hole_tex_txt = .data:0x00131FC0; // type:object size:0x80 scope:global align:32
+boy_1_shoe_tex_txt = .data:0x00132040; // type:object size:0x80 scope:global align:32
+boy_1_bottom_tex_txt = .data:0x001320C0; // type:object size:0x80 scope:global align:32
+boy_1_foot_tex_txt = .data:0x00132140; // type:object size:0x80 scope:global align:32
+boy_1_pants_tex_txt = .data:0x001321C0; // type:object size:0x80 scope:global align:32
+boy_1_v = .data:0x00132240; // type:object size:0x1980 scope:global align:8
+head_boy_model = .data:0x00133BC0; // type:object size:0x218 scope:global align:8
+Rarm2_boy_model = .data:0x00133DD8; // type:object size:0xA8 scope:global align:8
+Rarm1_boy_model = .data:0x00133E80; // type:object size:0xE0 scope:global align:8
+Larm2_boy_model = .data:0x00133F60; // type:object size:0xA8 scope:global align:8
+Larm1_boy_model = .data:0x00134008; // type:object size:0xE0 scope:global align:8
+chest_boy_model = .data:0x001340E8; // type:object size:0x98 scope:global align:8
+Rfoot3_boy_model = .data:0x00134180; // type:object size:0xA8 scope:global align:8
+Rffot2_boy_model = .data:0x00134228; // type:object size:0x80 scope:global align:8
+Rfoot1_boy_model = .data:0x001342A8; // type:object size:0x60 scope:global align:8
+Lfoot3_boy_model = .data:0x00134308; // type:object size:0xA8 scope:global align:8
+Lfoot2_boy_model = .data:0x001343B0; // type:object size:0x80 scope:global align:8
+Lfoot1_boy_model = .data:0x00134430; // type:object size:0x60 scope:global align:8
+base_boy_model = .data:0x00134490; // type:object size:0x128 scope:global align:8
+cKF_je_r_boy_1_tbl = .data:0x001345B8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_boy_1 = .data:0x001346F0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ply_1_wait1_tbl = .data:0x001346F8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wait1_tbl = .data:0x00134714; // type:object size:0x62 scope:global align:4
+cKF_c_ply_1_wait1_tbl = .data:0x00134778; // type:object size:0x40 scope:global align:4
+cKF_ds_ply_1_wait1_tbl = .data:0x001347B8; // type:object size:0x378 scope:global align:4
+cKF_ba_r_ply_1_wait1 = .data:0x00134B30; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_walk1_tbl = .data:0x00134B44; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_walk1_tbl = .data:0x00134B60; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_walk1_tbl = .data:0x00134BCC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_walk1_tbl = .data:0x00134C04; // type:object size:0x3A8 scope:global align:4
+cKF_ba_r_ply_1_walk1 = .data:0x00134FAC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_axe1_tbl = .data:0x00134FC0; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_axe1_tbl = .data:0x00134FDC; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_axe1 = .data:0x00135080; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_run1_tbl = .data:0x00135094; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_run1_tbl = .data:0x001350B0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_run1_tbl = .data:0x0013511C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_run1_tbl = .data:0x00135154; // type:object size:0x43E scope:global align:4
+cKF_ba_r_ply_1_run1 = .data:0x00135594; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_push1_tbl = .data:0x001355A8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_push1_tbl = .data:0x001355C4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_push1_tbl = .data:0x00135630; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_push1_tbl = .data:0x00135668; // type:object size:0x3E4 scope:global align:4
+cKF_ba_r_ply_1_push1 = .data:0x00135A4C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_pull1_tbl = .data:0x00135A60; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_pull1_tbl = .data:0x00135A7C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_pull1_tbl = .data:0x00135AE8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_pull1_tbl = .data:0x00135B20; // type:object size:0x44A scope:global align:4
+cKF_ba_r_ply_1_pull1 = .data:0x00135F6C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_hold_wait1_tbl = .data:0x00135F80; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_hold_wait1_tbl = .data:0x00135F9C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_hold_wait1_tbl = .data:0x00136008; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_hold_wait1_tbl = .data:0x00136040; // type:object size:0x342 scope:global align:4
+cKF_ba_r_ply_1_hold_wait1 = .data:0x00136384; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_pickup1_tbl = .data:0x00136398; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_pickup1_tbl = .data:0x001363B4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_pickup1_tbl = .data:0x00136420; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_pickup1_tbl = .data:0x00136458; // type:object size:0x540 scope:global align:4
+cKF_ba_r_ply_1_pickup1 = .data:0x00136998; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_Lturn1_tbl = .data:0x001369AC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_Lturn1_tbl = .data:0x001369C8; // type:object size:0x66 scope:global align:4
+cKF_c_ply_1_Lturn1_tbl = .data:0x00136A30; // type:object size:0x3C scope:global align:4
+cKF_ds_ply_1_Lturn1_tbl = .data:0x00136A6C; // type:object size:0x2C4 scope:global align:4
+cKF_ba_r_ply_1_Lturn1 = .data:0x00136D30; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_Rturn1_tbl = .data:0x00136D44; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_Rturn1_tbl = .data:0x00136D60; // type:object size:0x66 scope:global align:4
+cKF_c_ply_1_Rturn1_tbl = .data:0x00136DC8; // type:object size:0x3C scope:global align:4
+cKF_ds_ply_1_Rturn1_tbl = .data:0x00136E04; // type:object size:0x29A scope:global align:4
+cKF_ba_r_ply_1_Rturn1 = .data:0x001370A0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get1_tbl = .data:0x001370B4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get1_tbl = .data:0x001370D0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get1_tbl = .data:0x0013713C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get1_tbl = .data:0x00137174; // type:object size:0x2A0 scope:global align:4
+cKF_ba_r_ply_1_get1 = .data:0x00137414; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_change1_tbl = .data:0x00137428; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_change1_tbl = .data:0x00137444; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_change1_tbl = .data:0x001374B0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_change1_tbl = .data:0x001374E8; // type:object size:0x6E4 scope:global align:4
+cKF_ba_r_ply_1_get_change1 = .data:0x00137BCC; // type:object size:0x14 scope:global align:4
+ply_1_get_change11_tex_index = .data:0x00137BE0; // type:object size:0x5D scope:global align:4
+ply_1_get_change12_tex_index = .data:0x00137C40; // type:object size:0x5D scope:global align:4
+cKF_ckcb_r_ply_1_get_putaway1_tbl = .data:0x00137CA0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_putaway1_tbl = .data:0x00137CBC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_putaway1_tbl = .data:0x00137D28; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_putaway1_tbl = .data:0x00137D60; // type:object size:0x4FE scope:global align:4
+cKF_ba_r_ply_1_get_putaway1 = .data:0x00138260; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_open1_tbl = .data:0x00138274; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_open1_tbl = .data:0x00138290; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_open1_tbl = .data:0x001382FC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_open1_tbl = .data:0x00138334; // type:object size:0x8CA scope:global align:4
+cKF_ba_r_ply_1_open1 = .data:0x00138C00; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_putaway1_tbl = .data:0x00138C14; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_putaway1_tbl = .data:0x00138C30; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_putaway1_tbl = .data:0x00138C9C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_putaway1_tbl = .data:0x00138CD4; // type:object size:0x32A scope:global align:4
+cKF_ba_r_ply_1_putaway1 = .data:0x00139000; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_trans_wait1_tbl = .data:0x00139014; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_trans_wait1_tbl = .data:0x00139030; // type:object size:0x68 scope:global align:4
+cKF_c_ply_1_trans_wait1_tbl = .data:0x00139098; // type:object size:0x3A scope:global align:4
+cKF_ds_ply_1_trans_wait1_tbl = .data:0x001390D4; // type:object size:0x2E2 scope:global align:4
+cKF_ba_r_ply_1_trans_wait1 = .data:0x001393B8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_transfer1_tbl = .data:0x001393CC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_transfer1_tbl = .data:0x001393E8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_transfer1_tbl = .data:0x00139454; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_transfer1_tbl = .data:0x0013948C; // type:object size:0x7B0 scope:global align:4
+cKF_ba_r_ply_1_transfer1 = .data:0x00139C3C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_umb_open1_tbl = .data:0x00139C50; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_umb_open1_tbl = .data:0x00139C6C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_umb_open1_tbl = .data:0x00139CD8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_umb_open1_tbl = .data:0x00139D10; // type:object size:0x4E0 scope:global align:4
+cKF_ba_r_ply_1_umb_open1 = .data:0x0013A1F0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_umbrella1_tbl = .data:0x0013A204; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_umbrella1_tbl = .data:0x0013A220; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_umbrella1 = .data:0x0013A2C4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_dash1_tbl = .data:0x0013A2D8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_dash1_tbl = .data:0x0013A2F4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_dash1_tbl = .data:0x0013A360; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_dash1_tbl = .data:0x0013A398; // type:object size:0x408 scope:global align:4
+cKF_ba_r_ply_1_dash1 = .data:0x0013A7A0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_run_slip1_tbl = .data:0x0013A7B4; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_run_slip1_tbl = .data:0x0013A7D0; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_run_slip1 = .data:0x0013A874; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_pull1_tbl = .data:0x0013A888; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_pull1_tbl = .data:0x0013A8A4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_pull1_tbl = .data:0x0013A910; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_pull1_tbl = .data:0x0013A948; // type:object size:0x312 scope:global align:4
+cKF_ba_r_ply_1_get_pull1 = .data:0x0013AC5C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_m1_tbl = .data:0x0013AC70; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_m1_tbl = .data:0x0013AC8C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_m1_tbl = .data:0x0013ACF8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_m1_tbl = .data:0x0013AD30; // type:object size:0x71A scope:global align:4
+cKF_ba_r_ply_1_get_m1 = .data:0x0013B44C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kamae_move_m1_tbl = .data:0x0013B460; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kamae_move_m1_tbl = .data:0x0013B47C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kamae_move_m1_tbl = .data:0x0013B4E8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kamae_move_m1_tbl = .data:0x0013B520; // type:object size:0x44A scope:global align:4
+cKF_ba_r_ply_1_kamae_move_m1 = .data:0x0013B96C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kamae_wait_m1_tbl = .data:0x0013B980; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kamae_wait_m1_tbl = .data:0x0013B99C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kamae_wait_m1_tbl = .data:0x0013BA08; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kamae_wait_m1_tbl = .data:0x0013BA40; // type:object size:0x37E scope:global align:4
+cKF_ba_r_ply_1_kamae_wait_m1 = .data:0x0013BDC0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru_a1_tbl = .data:0x0013BDD4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru_a1_tbl = .data:0x0013BDF0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru_a1_tbl = .data:0x0013BE5C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru_a1_tbl = .data:0x0013BE94; // type:object size:0x43E scope:global align:4
+cKF_ba_r_ply_1_kokeru_a1 = .data:0x0013C2D4; // type:object size:0x14 scope:global align:4
+ply_1_kokeru_a11_tex_index = .data:0x0013C2E8; // type:object size:0x11 scope:global align:4
+ply_1_kokeru_a12_tex_index = .data:0x0013C2FC; // type:object size:0x11 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru_getup_a1_tbl = .data:0x0013C310; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru_getup_a1_tbl = .data:0x0013C32C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru_getup_a1_tbl = .data:0x0013C398; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru_getup_a1_tbl = .data:0x0013C3D0; // type:object size:0x57C scope:global align:4
+cKF_ba_r_ply_1_kokeru_getup_a1 = .data:0x0013C94C; // type:object size:0x14 scope:global align:4
+ply_1_kokeru_getup_a11_tex_index = .data:0x0013C960; // type:object size:0x20 scope:global align:4
+ply_1_kokeru_getup_a12_tex_index = .data:0x0013C980; // type:object size:0x20 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru_getup_n1_tbl = .data:0x0013C9A0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru_getup_n1_tbl = .data:0x0013C9BC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru_getup_n1_tbl = .data:0x0013CA28; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru_getup_n1_tbl = .data:0x0013CA60; // type:object size:0x51C scope:global align:4
+cKF_ba_r_ply_1_kokeru_getup_n1 = .data:0x0013CF7C; // type:object size:0x14 scope:global align:4
+ply_1_kokeru_getup_n11_tex_index = .data:0x0013CF90; // type:object size:0x20 scope:global align:4
+ply_1_kokeru_getup_n12_tex_index = .data:0x0013CFB0; // type:object size:0x20 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru_n1_tbl = .data:0x0013CFD0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru_n1_tbl = .data:0x0013CFEC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru_n1_tbl = .data:0x0013D058; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru_n1_tbl = .data:0x0013D090; // type:object size:0x432 scope:global align:4
+cKF_ba_r_ply_1_kokeru_n1 = .data:0x0013D4C4; // type:object size:0x14 scope:global align:4
+ply_1_kokeru_n11_tex_index = .data:0x0013D4D8; // type:object size:0x11 scope:global align:4
+ply_1_kokeru_n12_tex_index = .data:0x0013D4EC; // type:object size:0x11 scope:global align:4
+cKF_ckcb_r_ply_1_net1_tbl = .data:0x0013D500; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_net1_tbl = .data:0x0013D51C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_net1 = .data:0x0013D5C0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_net_swing1_tbl = .data:0x0013D5D4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_net_swing1_tbl = .data:0x0013D5F0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_net_swing1_tbl = .data:0x0013D65C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_net_swing1_tbl = .data:0x0013D694; // type:object size:0x4C2 scope:global align:4
+cKF_ba_r_ply_1_net_swing1 = .data:0x0013DB58; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_axe_swing1_tbl = .data:0x0013DB6C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_axe_swing1_tbl = .data:0x0013DB88; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_axe_swing1_tbl = .data:0x0013DBF4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_axe_swing1_tbl = .data:0x0013DC2C; // type:object size:0x6F6 scope:global align:4
+cKF_ba_r_ply_1_axe_swing1 = .data:0x0013E324; // type:object size:0x14 scope:global align:4
+ply_1_axe_swing11_tex_index = .data:0x0013E338; // type:object size:0x1E scope:global align:4
+ply_1_axe_swing12_tex_index = .data:0x0013E358; // type:object size:0x1E scope:global align:4
+cKF_ckcb_r_ply_1_kamae_slip_m1_tbl = .data:0x0013E378; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_kamae_slip_m1_tbl = .data:0x0013E394; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_kamae_slip_m1 = .data:0x0013E438; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru1_tbl = .data:0x0013E44C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru1_tbl = .data:0x0013E468; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru1_tbl = .data:0x0013E4D4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru1_tbl = .data:0x0013E50C; // type:object size:0x3FC scope:global align:4
+cKF_ba_r_ply_1_kokeru1 = .data:0x0013E908; // type:object size:0x14 scope:global align:4
+ply_1_kokeru11_tex_index = .data:0x0013E91C; // type:object size:0x11 scope:global align:4
+ply_1_kokeru12_tex_index = .data:0x0013E930; // type:object size:0x11 scope:global align:4
+cKF_ckcb_r_ply_1_kokeru_getup1_tbl = .data:0x0013E944; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kokeru_getup1_tbl = .data:0x0013E960; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kokeru_getup1_tbl = .data:0x0013E9CC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kokeru_getup1_tbl = .data:0x0013EA04; // type:object size:0x4E6 scope:global align:4
+cKF_ba_r_ply_1_kokeru_getup1 = .data:0x0013EEEC; // type:object size:0x14 scope:global align:4
+ply_1_kokeru_getup11_tex_index = .data:0x0013EF00; // type:object size:0x20 scope:global align:4
+ply_1_kokeru_getup12_tex_index = .data:0x0013EF20; // type:object size:0x20 scope:global align:4
+cKF_ckcb_r_ply_1_sitdown1_tbl = .data:0x0013EF40; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_sitdown1_tbl = .data:0x0013EF5C; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_sitdown1_tbl = .data:0x0013EFD0; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_sitdown1_tbl = .data:0x0013F000; // type:object size:0x6C0 scope:global align:4
+cKF_ba_r_ply_1_sitdown1 = .data:0x0013F6C0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_sitdown_wait1_tbl = .data:0x0013F6D4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_sitdown_wait1_tbl = .data:0x0013F6F0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_sitdown_wait1_tbl = .data:0x0013F75C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_sitdown_wait1_tbl = .data:0x0013F794; // type:object size:0x35A scope:global align:4
+cKF_ba_r_ply_1_sitdown_wait1 = .data:0x0013FAF0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_standup1_tbl = .data:0x0013FB04; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_standup1_tbl = .data:0x0013FB20; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_standup1_tbl = .data:0x0013FB8C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_standup1_tbl = .data:0x0013FBC4; // type:object size:0x5D6 scope:global align:4
+cKF_ba_r_ply_1_standup1 = .data:0x0014019C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_putaway_m1_tbl = .data:0x001401B0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_putaway_m1_tbl = .data:0x001401CC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_putaway_m1_tbl = .data:0x00140238; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_putaway_m1_tbl = .data:0x00140270; // type:object size:0x432 scope:global align:4
+cKF_ba_r_ply_1_putaway_m1 = .data:0x001406A4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_bed_wait1_tbl = .data:0x001406B8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_bed_wait1_tbl = .data:0x001406D4; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_bed_wait1_tbl = .data:0x00140748; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_bed_wait1_tbl = .data:0x00140778; // type:object size:0x306 scope:global align:4
+cKF_ba_r_ply_1_bed_wait1 = .data:0x00140A80; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_inbed_L1_tbl = .data:0x00140A94; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_inbed_L1_tbl = .data:0x00140AB0; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_inbed_L1_tbl = .data:0x00140B24; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_inbed_L1_tbl = .data:0x00140B54; // type:object size:0x672 scope:global align:4
+cKF_ba_r_ply_1_inbed_L1 = .data:0x001411C8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_inbed_R1_tbl = .data:0x001411DC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_inbed_R1_tbl = .data:0x001411F8; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_inbed_R1_tbl = .data:0x0014126C; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_inbed_R1_tbl = .data:0x0014129C; // type:object size:0x67E scope:global align:4
+cKF_ba_r_ply_1_inbed_R1 = .data:0x0014191C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_intrain1_tbl = .data:0x00141930; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_intrain1_tbl = .data:0x0014194C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_intrain1_tbl = .data:0x001419B8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_intrain1_tbl = .data:0x001419F0; // type:object size:0xA20 scope:global align:4
+cKF_ba_r_ply_1_intrain1 = .data:0x00142410; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_open_d1_tbl = .data:0x00142424; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_open_d1_tbl = .data:0x00142440; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_open_d1_tbl = .data:0x001424AC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_open_d1_tbl = .data:0x001424E4; // type:object size:0x56A scope:global align:4
+cKF_ba_r_ply_1_kagu_open_d1 = .data:0x00142A50; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_open_h1_tbl = .data:0x00142A64; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_open_h1_tbl = .data:0x00142A80; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_open_h1_tbl = .data:0x00142AEC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_open_h1_tbl = .data:0x00142B24; // type:object size:0x2EE scope:global align:4
+cKF_ba_r_ply_1_kagu_open_h1 = .data:0x00142E14; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_open_k1_tbl = .data:0x00142E28; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_open_k1_tbl = .data:0x00142E44; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_open_k1_tbl = .data:0x00142EB0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_open_k1_tbl = .data:0x00142EE8; // type:object size:0x31E scope:global align:4
+cKF_ba_r_ply_1_kagu_open_k1 = .data:0x00143208; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_negaeri_L1_tbl = .data:0x0014321C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_negaeri_L1_tbl = .data:0x00143238; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_negaeri_L1_tbl = .data:0x001432AC; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_negaeri_L1_tbl = .data:0x001432DC; // type:object size:0x5BE scope:global align:4
+cKF_ba_r_ply_1_negaeri_L1 = .data:0x0014389C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_negaeri_R1_tbl = .data:0x001438B0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_negaeri_R1_tbl = .data:0x001438CC; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_negaeri_R1_tbl = .data:0x00143940; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_negaeri_R1_tbl = .data:0x00143970; // type:object size:0x5BE scope:global align:4
+cKF_ba_r_ply_1_negaeri_R1 = .data:0x00143F30; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_outbed_L1_tbl = .data:0x00143F44; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_outbed_L1_tbl = .data:0x00143F60; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_outbed_L1_tbl = .data:0x00143FD4; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_outbed_L1_tbl = .data:0x00144004; // type:object size:0x6AE scope:global align:4
+cKF_ba_r_ply_1_outbed_L1 = .data:0x001446B4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_outbed_R1_tbl = .data:0x001446C8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_outbed_R1_tbl = .data:0x001446E4; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_outbed_R1_tbl = .data:0x00144758; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_outbed_R1_tbl = .data:0x00144788; // type:object size:0x6AE scope:global align:4
+cKF_ba_r_ply_1_outbed_R1 = .data:0x00144E38; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_outtrain1_tbl = .data:0x00144E4C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_outtrain1_tbl = .data:0x00144E68; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_outtrain1_tbl = .data:0x00144ED4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_outtrain1_tbl = .data:0x00144F0C; // type:object size:0x63C scope:global align:4
+cKF_ba_r_ply_1_outtrain1 = .data:0x00145548; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_close_d1_tbl = .data:0x0014555C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_close_d1_tbl = .data:0x00145578; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_close_d1_tbl = .data:0x001455E4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_close_d1_tbl = .data:0x0014561C; // type:object size:0x4AA scope:global align:4
+cKF_ba_r_ply_1_kagu_close_d1 = .data:0x00145AC8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_close_h1_tbl = .data:0x00145ADC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_close_h1_tbl = .data:0x00145AF8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_close_h1_tbl = .data:0x00145B64; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_close_h1_tbl = .data:0x00145B9C; // type:object size:0x2D0 scope:global align:4
+cKF_ba_r_ply_1_kagu_close_h1 = .data:0x00145E6C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_close_k1_tbl = .data:0x00145E80; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_close_k1_tbl = .data:0x00145E9C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_close_k1_tbl = .data:0x00145F08; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_close_k1_tbl = .data:0x00145F40; // type:object size:0x324 scope:global align:4
+cKF_ba_r_ply_1_kagu_close_k1 = .data:0x00146264; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_wait_d1_tbl = .data:0x00146278; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_wait_d1_tbl = .data:0x00146294; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_wait_d1_tbl = .data:0x00146300; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_wait_d1_tbl = .data:0x00146338; // type:object size:0x3BA scope:global align:4
+cKF_ba_r_ply_1_kagu_wait_d1 = .data:0x001466F4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_wait_h1_tbl = .data:0x00146708; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_wait_h1_tbl = .data:0x00146724; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_wait_h1_tbl = .data:0x00146790; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_wait_h1_tbl = .data:0x001467C8; // type:object size:0x366 scope:global align:4
+cKF_ba_r_ply_1_kagu_wait_h1 = .data:0x00146B30; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_kagu_wait_k1_tbl = .data:0x00146B44; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_kagu_wait_k1_tbl = .data:0x00146B60; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_kagu_wait_k1_tbl = .data:0x00146BCC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_kagu_wait_k1_tbl = .data:0x00146C04; // type:object size:0x372 scope:global align:4
+cKF_ba_r_ply_1_kagu_wait_k1 = .data:0x00146F78; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_go_out_o1_tbl = .data:0x00146F8C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_go_out_o1_tbl = .data:0x00146FA8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_go_out_o1_tbl = .data:0x00147014; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_go_out_o1_tbl = .data:0x0014704C; // type:object size:0x840 scope:global align:4
+cKF_ba_r_ply_1_go_out_o1 = .data:0x0014788C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_go_out_s1_tbl = .data:0x001478A0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_go_out_s1_tbl = .data:0x001478BC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_go_out_s1_tbl = .data:0x00147928; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_go_out_s1_tbl = .data:0x00147960; // type:object size:0x516 scope:global align:4
+cKF_ba_r_ply_1_go_out_s1 = .data:0x00147E78; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_into_s1_tbl = .data:0x00147E8C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_into_s1_tbl = .data:0x00147EA8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_into_s1_tbl = .data:0x00147F14; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_into_s1_tbl = .data:0x00147F4C; // type:object size:0x4C2 scope:global align:4
+cKF_ba_r_ply_1_into_s1 = .data:0x00148410; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_axe_hane1_tbl = .data:0x00148424; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_axe_hane1_tbl = .data:0x00148440; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_axe_hane1_tbl = .data:0x001484AC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_axe_hane1_tbl = .data:0x001484E4; // type:object size:0x810 scope:global align:4
+cKF_ba_r_ply_1_axe_hane1 = .data:0x00148CF4; // type:object size:0x14 scope:global align:4
+ply_1_axe_hane11_tex_index = .data:0x00148D08; // type:object size:0x26 scope:global align:4
+ply_1_axe_hane12_tex_index = .data:0x00148D30; // type:object size:0x26 scope:global align:4
+cKF_ckcb_r_ply_1_axe_suka1_tbl = .data:0x00148D58; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_axe_suka1_tbl = .data:0x00148D74; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_axe_suka1_tbl = .data:0x00148DE0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_axe_suka1_tbl = .data:0x00148E18; // type:object size:0x7D4 scope:global align:4
+cKF_ba_r_ply_1_axe_suka1 = .data:0x001495EC; // type:object size:0x14 scope:global align:4
+ply_1_axe_suka11_tex_index = .data:0x00149600; // type:object size:0x29 scope:global align:4
+ply_1_axe_suka12_tex_index = .data:0x0014962C; // type:object size:0x29 scope:global align:4
+cKF_ckcb_r_ply_1_hold_wait_h1_tbl = .data:0x00149658; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_hold_wait_h1_tbl = .data:0x00149674; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_hold_wait_h1 = .data:0x00149718; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_hold_wait_o1_tbl = .data:0x0014972C; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_hold_wait_o1_tbl = .data:0x00149748; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_hold_wait_o1 = .data:0x001497EC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_t1_tbl = .data:0x00149800; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_t1_tbl = .data:0x0014981C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_t1_tbl = .data:0x00149888; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_t1_tbl = .data:0x001498C0; // type:object size:0x3C6 scope:global align:4
+cKF_ba_r_ply_1_get_t1 = .data:0x00149C88; // type:object size:0x14 scope:global align:4
+ply_1_get_t11_tex_index = .data:0x00149C9C; // type:object size:0x16 scope:global align:4
+ply_1_get_t12_tex_index = .data:0x00149CB4; // type:object size:0x16 scope:global align:4
+cKF_ckcb_r_ply_1_get_t2_tbl = .data:0x00149CCC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_t2_tbl = .data:0x00149CE8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_t2_tbl = .data:0x00149D54; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_t2_tbl = .data:0x00149D8C; // type:object size:0x582 scope:global align:4
+cKF_ba_r_ply_1_get_t2 = .data:0x0014A310; // type:object size:0x14 scope:global align:4
+ply_1_get_t21_tex_index = .data:0x0014A324; // type:object size:0x22 scope:global align:4
+cKF_ckcb_r_ply_1_putaway_t1_tbl = .data:0x0014A348; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_putaway_t1_tbl = .data:0x0014A364; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_putaway_t1_tbl = .data:0x0014A3D0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_putaway_t1_tbl = .data:0x0014A408; // type:object size:0x432 scope:global align:4
+cKF_ba_r_ply_1_putaway_t1 = .data:0x0014A83C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_sao1_tbl = .data:0x0014A850; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_sao1_tbl = .data:0x0014A86C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_sao1 = .data:0x0014A910; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_sao_swing1_tbl = .data:0x0014A924; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_sao_swing1_tbl = .data:0x0014A940; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_sao_swing1_tbl = .data:0x0014A9AC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_sao_swing1_tbl = .data:0x0014A9E4; // type:object size:0x5D0 scope:global align:4
+cKF_ba_r_ply_1_sao_swing1 = .data:0x0014AFB4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_turi_hiki1_tbl = .data:0x0014AFC8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_turi_hiki1_tbl = .data:0x0014AFE4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_turi_hiki1_tbl = .data:0x0014B050; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_turi_hiki1_tbl = .data:0x0014B088; // type:object size:0x480 scope:global align:4
+cKF_ba_r_ply_1_turi_hiki1 = .data:0x0014B508; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_turi_wait1_tbl = .data:0x0014B51C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_turi_wait1_tbl = .data:0x0014B538; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_turi_wait1_tbl = .data:0x0014B5A4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_turi_wait1_tbl = .data:0x0014B5DC; // type:object size:0x348 scope:global align:4
+cKF_ba_r_ply_1_turi_wait1 = .data:0x0014B924; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_not_get_t1_tbl = .data:0x0014B938; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_not_get_t1_tbl = .data:0x0014B954; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_not_get_t1_tbl = .data:0x0014B9C0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_not_get_t1_tbl = .data:0x0014B9F8; // type:object size:0x444 scope:global align:4
+cKF_ba_r_ply_1_not_get_t1 = .data:0x0014BE3C; // type:object size:0x14 scope:global align:4
+ply_1_not_get_t11_tex_index = .data:0x0014BE50; // type:object size:0x1B scope:global align:4
+cKF_ckcb_r_ply_1_menu_catch1_tbl = .data:0x0014BE6C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_menu_catch1_tbl = .data:0x0014BE88; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_menu_catch1_tbl = .data:0x0014BEF4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_menu_catch1_tbl = .data:0x0014BF2C; // type:object size:0x2B8 scope:global align:4
+cKF_ba_r_ply_1_menu_catch1 = .data:0x0014C1E4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_menu_change1_tbl = .data:0x0014C1F8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_menu_change1_tbl = .data:0x0014C214; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_menu_change1_tbl = .data:0x0014C280; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_menu_change1_tbl = .data:0x0014C2B8; // type:object size:0x786 scope:global align:4
+cKF_ba_r_ply_1_menu_change1 = .data:0x0014CA40; // type:object size:0x14 scope:global align:4
+ply_1_menu_change11_tex_index = .data:0x0014CA54; // type:object size:0x5D scope:global align:4
+ply_1_menu_change12_tex_index = .data:0x0014CAB4; // type:object size:0x5D scope:global align:4
+cKF_ckcb_r_ply_1_umb_close1_tbl = .data:0x0014CB14; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_umb_close1_tbl = .data:0x0014CB30; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_umb_close1_tbl = .data:0x0014CB9C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_umb_close1_tbl = .data:0x0014CBD4; // type:object size:0x6C0 scope:global align:4
+cKF_ba_r_ply_1_umb_close1 = .data:0x0014D294; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_not_sao_swing1_tbl = .data:0x0014D2A8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_not_sao_swing1_tbl = .data:0x0014D2C4; // type:object size:0x5A scope:global align:4
+cKF_c_ply_1_not_sao_swing1_tbl = .data:0x0014D320; // type:object size:0x48 scope:global align:4
+cKF_ds_ply_1_not_sao_swing1_tbl = .data:0x0014D368; // type:object size:0x3EA scope:global align:4
+cKF_ba_r_ply_1_not_sao_swing1 = .data:0x0014D754; // type:object size:0x14 scope:global align:4
+ply_1_not_sao_swing11_tex_index = .data:0x0014D768; // type:object size:0x19 scope:global align:4
+ply_1_not_sao_swing12_tex_index = .data:0x0014D784; // type:object size:0x19 scope:global align:4
+cKF_ckcb_r_ply_1_intrain_wait1_tbl = .data:0x0014D7A0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_intrain_wait1_tbl = .data:0x0014D7BC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_intrain_wait1_tbl = .data:0x0014D828; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_intrain_wait1_tbl = .data:0x0014D860; // type:object size:0x2F4 scope:global align:4
+cKF_ba_r_ply_1_intrain_wait1 = .data:0x0014DB54; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_clear_table1_tbl = .data:0x0014DB68; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_clear_table1_tbl = .data:0x0014DB84; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_clear_table1_tbl = .data:0x0014DBF0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_clear_table1_tbl = .data:0x0014DC28; // type:object size:0x82E scope:global align:4
+cKF_ba_r_ply_1_clear_table1 = .data:0x0014E458; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_dig1_tbl = .data:0x0014E46C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_dig1_tbl = .data:0x0014E488; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_dig1_tbl = .data:0x0014E4F4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_dig1_tbl = .data:0x0014E52C; // type:object size:0x900 scope:global align:4
+cKF_ba_r_ply_1_dig1 = .data:0x0014EE2C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_fill_up1_tbl = .data:0x0014EE40; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_fill_up1_tbl = .data:0x0014EE5C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_fill_up1_tbl = .data:0x0014EEC8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_fill_up1_tbl = .data:0x0014EF00; // type:object size:0xB94 scope:global align:4
+cKF_ba_r_ply_1_fill_up1 = .data:0x0014FA94; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_not_dig1_tbl = .data:0x0014FAA8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_not_dig1_tbl = .data:0x0014FAC4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_not_dig1_tbl = .data:0x0014FB30; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_not_dig1_tbl = .data:0x0014FB68; // type:object size:0x846 scope:global align:4
+cKF_ba_r_ply_1_not_dig1 = .data:0x001503B0; // type:object size:0x14 scope:global align:4
+ply_1_not_dig11_tex_index = .data:0x001503C4; // type:object size:0x23 scope:global align:4
+ply_1_not_dig12_tex_index = .data:0x001503E8; // type:object size:0x23 scope:global align:4
+cKF_ckcb_r_ply_1_clear_table_l1_tbl = .data:0x0015040C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_clear_table_l1_tbl = .data:0x00150428; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_clear_table_l1_tbl = .data:0x00150494; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_clear_table_l1_tbl = .data:0x001504CC; // type:object size:0x852 scope:global align:4
+cKF_ba_r_ply_1_clear_table_l1 = .data:0x00150D20; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_pickup_l1_tbl = .data:0x00150D34; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_pickup_l1_tbl = .data:0x00150D50; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_pickup_l1_tbl = .data:0x00150DBC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_pickup_l1_tbl = .data:0x00150DF4; // type:object size:0x5E2 scope:global align:4
+cKF_ba_r_ply_1_pickup_l1 = .data:0x001513D8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_scoop1_tbl = .data:0x001513EC; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_scoop1_tbl = .data:0x00151408; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_scoop1 = .data:0x001514AC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_confirm1_tbl = .data:0x001514C0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_confirm1_tbl = .data:0x001514DC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_confirm1_tbl = .data:0x00151548; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_confirm1_tbl = .data:0x00151580; // type:object size:0x654 scope:global align:4
+cKF_ba_r_ply_1_confirm1 = .data:0x00151BD4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_dig_suka1_tbl = .data:0x00151BE8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_dig_suka1_tbl = .data:0x00151C04; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_dig_suka1_tbl = .data:0x00151C70; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_dig_suka1_tbl = .data:0x00151CA8; // type:object size:0x810 scope:global align:4
+cKF_ba_r_ply_1_dig_suka1 = .data:0x001524B8; // type:object size:0x14 scope:global align:4
+ply_1_dig_suka11_tex_index = .data:0x001524CC; // type:object size:0x29 scope:global align:4
+ply_1_dig_suka12_tex_index = .data:0x001524F8; // type:object size:0x29 scope:global align:4
+cKF_ckcb_r_ply_1_get_d1_tbl = .data:0x00152524; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_d1_tbl = .data:0x00152540; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_d1_tbl = .data:0x001525AC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_d1_tbl = .data:0x001525E4; // type:object size:0xDEC scope:global align:4
+cKF_ba_r_ply_1_get_d1 = .data:0x001533D0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_putaway_d1_tbl = .data:0x001533E4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_putaway_d1_tbl = .data:0x00153400; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_putaway_d1_tbl = .data:0x0015346C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_putaway_d1_tbl = .data:0x001534A4; // type:object size:0x432 scope:global align:4
+cKF_ba_r_ply_1_putaway_d1 = .data:0x001538D8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_dig_kabu1_tbl = .data:0x001538EC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_dig_kabu1_tbl = .data:0x00153908; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_dig_kabu1_tbl = .data:0x00153974; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_dig_kabu1_tbl = .data:0x001539AC; // type:object size:0xC60 scope:global align:4
+cKF_ba_r_ply_1_dig_kabu1 = .data:0x0015460C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_fill_up_i1_tbl = .data:0x00154620; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_fill_up_i1_tbl = .data:0x0015463C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_fill_up_i1_tbl = .data:0x001546A8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_fill_up_i1_tbl = .data:0x001546E0; // type:object size:0xE1C scope:global align:4
+cKF_ba_r_ply_1_fill_up_i1 = .data:0x001554FC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_send_mail1_tbl = .data:0x00155510; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_send_mail1_tbl = .data:0x0015552C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_send_mail1_tbl = .data:0x00155598; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_send_mail1_tbl = .data:0x001555D0; // type:object size:0x6D2 scope:global align:4
+cKF_ba_r_ply_1_send_mail1 = .data:0x00155CA4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_f1_tbl = .data:0x00155CB8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_f1_tbl = .data:0x00155CD4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_f1_tbl = .data:0x00155D40; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_f1_tbl = .data:0x00155D78; // type:object size:0x2A0 scope:global align:4
+cKF_ba_r_ply_1_get_f1 = .data:0x00156018; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_pull_f1_tbl = .data:0x0015602C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_pull_f1_tbl = .data:0x00156048; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_pull_f1_tbl = .data:0x001560B4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_pull_f1_tbl = .data:0x001560EC; // type:object size:0x2BE scope:global align:4
+cKF_ba_r_ply_1_get_pull_f1 = .data:0x001563AC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_get_putaway_f1_tbl = .data:0x001563C0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_get_putaway_f1_tbl = .data:0x001563DC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_get_putaway_f1_tbl = .data:0x00156448; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_get_putaway_f1_tbl = .data:0x00156480; // type:object size:0x4EC scope:global align:4
+cKF_ba_r_ply_1_get_putaway_f1 = .data:0x0015696C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_trans_wait_f1_tbl = .data:0x00156980; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_trans_wait_f1_tbl = .data:0x0015699C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_trans_wait_f1_tbl = .data:0x00156A08; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_trans_wait_f1_tbl = .data:0x00156A40; // type:object size:0x2FA scope:global align:4
+cKF_ba_r_ply_1_trans_wait_f1 = .data:0x00156D3C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_transfer_f1_tbl = .data:0x00156D50; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_transfer_f1_tbl = .data:0x00156D6C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_transfer_f1_tbl = .data:0x00156DD8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_transfer_f1_tbl = .data:0x00156E10; // type:object size:0x7BC scope:global align:4
+cKF_ba_r_ply_1_transfer_f1 = .data:0x001575CC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_shake1_tbl = .data:0x001575E0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_shake1_tbl = .data:0x001575FC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_shake1_tbl = .data:0x00157668; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_shake1_tbl = .data:0x001576A0; // type:object size:0x7C2 scope:global align:4
+cKF_ba_r_ply_1_shake1 = .data:0x00157E64; // type:object size:0x14 scope:global align:4
+ply_1_shake12_tex_index = .data:0x00157E78; // type:object size:0x27 scope:global align:4
+cKF_ckcb_r_ply_1_tired1_tbl = .data:0x00157EA0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_tired1_tbl = .data:0x00157EBC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_tired1_tbl = .data:0x00157F28; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_tired1_tbl = .data:0x00157F60; // type:object size:0x3A2 scope:global align:4
+cKF_ba_r_ply_1_tired1 = .data:0x00158304; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_wash1_tbl = .data:0x00158318; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wash1_tbl = .data:0x00158334; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_wash1_tbl = .data:0x001583A0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_wash1_tbl = .data:0x001583D8; // type:object size:0x49E scope:global align:4
+cKF_ba_r_ply_1_wash1 = .data:0x00158878; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_wash2_tbl = .data:0x0015888C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wash2_tbl = .data:0x001588A8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_wash2_tbl = .data:0x00158914; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_wash2_tbl = .data:0x0015894C; // type:object size:0x444 scope:global align:4
+cKF_ba_r_ply_1_wash2 = .data:0x00158D90; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_wash3_tbl = .data:0x00158DA4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wash3_tbl = .data:0x00158DC0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_wash3_tbl = .data:0x00158E2C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_wash3_tbl = .data:0x00158E64; // type:object size:0x3C0 scope:global align:4
+cKF_ba_r_ply_1_wash3 = .data:0x00159224; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_wash4_tbl = .data:0x00159238; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wash4_tbl = .data:0x00159254; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_wash4_tbl = .data:0x001592C0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_wash4_tbl = .data:0x001592F8; // type:object size:0x366 scope:global align:4
+cKF_ba_r_ply_1_wash4 = .data:0x00159660; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_wash5_tbl = .data:0x00159674; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_wash5_tbl = .data:0x00159690; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_wash5_tbl = .data:0x001596FC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_wash5_tbl = .data:0x00159734; // type:object size:0x38A scope:global align:4
+cKF_ba_r_ply_1_wash5 = .data:0x00159AC0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_fukubiki1_tbl = .data:0x00159AD4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_fukubiki1_tbl = .data:0x00159AF0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_fukubiki1_tbl = .data:0x00159B5C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_fukubiki1_tbl = .data:0x00159B94; // type:object size:0x672 scope:global align:4
+cKF_ba_r_ply_1_fukubiki1 = .data:0x0015A208; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_omairi1_tbl = .data:0x0015A21C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_omairi1_tbl = .data:0x0015A238; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_omairi1_tbl = .data:0x0015A2A4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_omairi1_tbl = .data:0x0015A2DC; // type:object size:0x90C scope:global align:4
+cKF_ba_r_ply_1_omairi1 = .data:0x0015ABE8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_saisen1_tbl = .data:0x0015ABFC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_saisen1_tbl = .data:0x0015AC18; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_saisen1_tbl = .data:0x0015AC84; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_saisen1_tbl = .data:0x0015ACBC; // type:object size:0x684 scope:global align:4
+cKF_ba_r_ply_1_saisen1 = .data:0x0015B340; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_return_mail1_tbl = .data:0x0015B354; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_return_mail1_tbl = .data:0x0015B370; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_return_mail1_tbl = .data:0x0015B3DC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_return_mail1_tbl = .data:0x0015B414; // type:object size:0x2F4 scope:global align:4
+cKF_ba_r_ply_1_return_mail1 = .data:0x0015B708; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_return_mail2_tbl = .data:0x0015B71C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_return_mail2_tbl = .data:0x0015B738; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_return_mail2_tbl = .data:0x0015B7A4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_return_mail2_tbl = .data:0x0015B7DC; // type:object size:0x468 scope:global align:4
+cKF_ba_r_ply_1_return_mail2 = .data:0x0015BC44; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_return_mail3_tbl = .data:0x0015BC58; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_return_mail3_tbl = .data:0x0015BC74; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_return_mail3_tbl = .data:0x0015BCE0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_return_mail3_tbl = .data:0x0015BD18; // type:object size:0x432 scope:global align:4
+cKF_ba_r_ply_1_return_mail3 = .data:0x0015C14C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_eat1_tbl = .data:0x0015C160; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_eat1_tbl = .data:0x0015C17C; // type:object size:0x66 scope:global align:4
+cKF_c_ply_1_eat1_tbl = .data:0x0015C1E4; // type:object size:0x3C scope:global align:4
+cKF_ds_ply_1_eat1_tbl = .data:0x0015C220; // type:object size:0x6EA scope:global align:4
+cKF_ba_r_ply_1_eat1 = .data:0x0015C90C; // type:object size:0x14 scope:global align:4
+ply_1_eat11_tex_index = .data:0x0015C920; // type:object size:0x52 scope:global align:4
+ply_1_eat12_tex_index = .data:0x0015C974; // type:object size:0x52 scope:global align:4
+cKF_ckcb_r_ply_1_gaaan1_tbl = .data:0x0015C9C8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_gaaan1_tbl = .data:0x0015C9E4; // type:object size:0x5A scope:global align:4
+cKF_c_ply_1_gaaan1_tbl = .data:0x0015CA40; // type:object size:0x48 scope:global align:4
+cKF_ds_ply_1_gaaan1_tbl = .data:0x0015CA88; // type:object size:0x318 scope:global align:4
+cKF_ba_r_ply_1_gaaan1 = .data:0x0015CDA0; // type:object size:0x14 scope:global align:4
+ply_1_gaaan11_tex_index = .data:0x0015CDB4; // type:object size:0xB scope:global align:4
+ply_1_gaaan12_tex_index = .data:0x0015CDC0; // type:object size:0xB scope:global align:4
+cKF_ckcb_r_ply_1_gaaan2_tbl = .data:0x0015CDCC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_gaaan2_tbl = .data:0x0015CDE8; // type:object size:0x5A scope:global align:4
+cKF_c_ply_1_gaaan2_tbl = .data:0x0015CE44; // type:object size:0x48 scope:global align:4
+cKF_ds_ply_1_gaaan2_tbl = .data:0x0015CE8C; // type:object size:0x2CA scope:global align:4
+cKF_ba_r_ply_1_gaaan2 = .data:0x0015D158; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_deru1_tbl = .data:0x0015D16C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_deru1_tbl = .data:0x0015D188; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_deru1_tbl = .data:0x0015D1F4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_deru1_tbl = .data:0x0015D22C; // type:object size:0x600 scope:global align:4
+cKF_ba_r_ply_1_deru1 = .data:0x0015D82C; // type:object size:0x14 scope:global align:4
+ply_1_deru11_tex_index = .data:0x0015D840; // type:object size:0x39 scope:global align:4
+ply_1_deru12_tex_index = .data:0x0015D87C; // type:object size:0x39 scope:global align:4
+cKF_ckcb_r_ply_1_guratuku1_tbl = .data:0x0015D8B8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_guratuku1_tbl = .data:0x0015D8D4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_guratuku1_tbl = .data:0x0015D940; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_guratuku1_tbl = .data:0x0015D978; // type:object size:0x59A scope:global align:4
+cKF_ba_r_ply_1_guratuku1 = .data:0x0015DF14; // type:object size:0x14 scope:global align:4
+ply_1_guratuku11_tex_index = .data:0x0015DF28; // type:object size:0x19 scope:global align:4
+ply_1_guratuku12_tex_index = .data:0x0015DF44; // type:object size:0x19 scope:global align:4
+cKF_ckcb_r_ply_1_mogaku1_tbl = .data:0x0015DF60; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_mogaku1_tbl = .data:0x0015DF7C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_mogaku1_tbl = .data:0x0015DFE8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_mogaku1_tbl = .data:0x0015E020; // type:object size:0x666 scope:global align:4
+cKF_ba_r_ply_1_mogaku1 = .data:0x0015E688; // type:object size:0x14 scope:global align:4
+ply_1_mogaku11_tex_index = .data:0x0015E69C; // type:object size:0x29 scope:global align:4
+cKF_ckcb_r_ply_1_otiru1_tbl = .data:0x0015E6C8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_otiru1_tbl = .data:0x0015E6E4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_otiru1_tbl = .data:0x0015E750; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_otiru1_tbl = .data:0x0015E788; // type:object size:0x354 scope:global align:4
+cKF_ba_r_ply_1_otiru1 = .data:0x0015EADC; // type:object size:0x14 scope:global align:4
+ply_1_otiru11_tex_index = .data:0x0015EAF0; // type:object size:0x9 scope:global align:4
+ply_1_otiru12_tex_index = .data:0x0015EAFC; // type:object size:0x9 scope:global align:4
+cKF_ckcb_r_ply_1_zassou1_tbl = .data:0x0015EB08; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_zassou1_tbl = .data:0x0015EB24; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_zassou1_tbl = .data:0x0015EB90; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_zassou1_tbl = .data:0x0015EBC8; // type:object size:0x53A scope:global align:4
+cKF_ba_r_ply_1_zassou1 = .data:0x0015F104; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_knock1_tbl = .data:0x0015F118; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_knock1_tbl = .data:0x0015F134; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_knock1_tbl = .data:0x0015F1A0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_knock1_tbl = .data:0x0015F1D8; // type:object size:0x5B2 scope:global align:4
+cKF_ba_r_ply_1_knock1 = .data:0x0015F78C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_biku1_tbl = .data:0x0015F7A0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_biku1_tbl = .data:0x0015F7BC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_biku1_tbl = .data:0x0015F828; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_biku1_tbl = .data:0x0015F860; // type:object size:0x66C scope:global align:4
+cKF_ba_r_ply_1_biku1 = .data:0x0015FECC; // type:object size:0x14 scope:global align:4
+ply_1_biku11_tex_index = .data:0x0015FEE0; // type:object size:0x19 scope:global align:4
+ply_1_biku12_tex_index = .data:0x0015FEFC; // type:object size:0x19 scope:global align:4
+cKF_ckcb_r_ply_1_hati1_tbl = .data:0x0015FF18; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_hati1_tbl = .data:0x0015FF34; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_hati1_tbl = .data:0x0015FFA0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_hati1_tbl = .data:0x0015FFD8; // type:object size:0xDAA scope:global align:4
+cKF_ba_r_ply_1_hati1 = .data:0x00160D84; // type:object size:0x14 scope:global align:4
+ply_1_hati11_tex_index = .data:0x00160D98; // type:object size:0x41 scope:global align:4
+ply_1_hati12_tex_index = .data:0x00160DDC; // type:object size:0x41 scope:global align:4
+cKF_ckcb_r_ply_1_hati2_tbl = .data:0x00160E20; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_hati2_tbl = .data:0x00160E3C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_hati2_tbl = .data:0x00160EA8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_hati2_tbl = .data:0x00160EE0; // type:object size:0x6E4 scope:global align:4
+cKF_ba_r_ply_1_hati2 = .data:0x001615C4; // type:object size:0x14 scope:global align:4
+ply_1_hati21_tex_index = .data:0x001615D8; // type:object size:0x3E scope:global align:4
+ply_1_hati22_tex_index = .data:0x00161618; // type:object size:0x3E scope:global align:4
+cKF_ckcb_r_ply_1_hati3_tbl = .data:0x00161658; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_hati3_tbl = .data:0x00161674; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_hati3_tbl = .data:0x001616E8; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_hati3_tbl = .data:0x00161718; // type:object size:0x750 scope:global align:4
+cKF_ba_r_ply_1_hati3 = .data:0x00161E68; // type:object size:0x14 scope:global align:4
+ply_1_hati31_tex_index = .data:0x00161E7C; // type:object size:0x20 scope:global align:4
+ply_1_hati32_tex_index = .data:0x00161E9C; // type:object size:0x20 scope:global align:4
+cKF_ckcb_r_ply_1_push_yuki1_tbl = .data:0x00161EBC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_push_yuki1_tbl = .data:0x00161ED8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_push_yuki1_tbl = .data:0x00161F44; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_push_yuki1_tbl = .data:0x00161F7C; // type:object size:0x40E scope:global align:4
+cKF_ba_r_ply_1_push_yuki1 = .data:0x0016238C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_deru2_tbl = .data:0x001623A0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_deru2_tbl = .data:0x001623BC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_deru2_tbl = .data:0x00162428; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_deru2_tbl = .data:0x00162460; // type:object size:0x6D8 scope:global align:4
+cKF_ba_r_ply_1_deru2 = .data:0x00162B38; // type:object size:0x14 scope:global align:4
+ply_1_deru21_tex_index = .data:0x00162B4C; // type:object size:0x39 scope:global align:4
+ply_1_deru22_tex_index = .data:0x00162B88; // type:object size:0x39 scope:global align:4
+cKF_ckcb_r_ply_1_otiru2_tbl = .data:0x00162BC4; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_otiru2_tbl = .data:0x00162BE0; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_otiru2_tbl = .data:0x00162C4C; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_otiru2_tbl = .data:0x00162C84; // type:object size:0x360 scope:global align:4
+cKF_ba_r_ply_1_otiru2 = .data:0x00162FE4; // type:object size:0x14 scope:global align:4
+ply_1_otiru21_tex_index = .data:0x00162FF8; // type:object size:0x9 scope:global align:4
+ply_1_otiru22_tex_index = .data:0x00163004; // type:object size:0x9 scope:global align:4
+cKF_ckcb_r_ply_1_itazura1_tbl = .data:0x00163010; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_itazura1_tbl = .data:0x0016302C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_itazura1_tbl = .data:0x00163098; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_itazura1_tbl = .data:0x001630D0; // type:object size:0x918 scope:global align:4
+cKF_ba_r_ply_1_itazura1 = .data:0x001639E8; // type:object size:0x14 scope:global align:4
+ply_1_itazura11_tex_index = .data:0x001639FC; // type:object size:0x31 scope:global align:4
+ply_1_itazura12_tex_index = .data:0x00163A30; // type:object size:0x31 scope:global align:4
+cKF_ckcb_r_ply_1_umb_rot1_tbl = .data:0x00163A64; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_umb_rot1_tbl = .data:0x00163A80; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_umb_rot1_tbl = .data:0x00163AEC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_umb_rot1_tbl = .data:0x00163B24; // type:object size:0x51C scope:global align:4
+cKF_ba_r_ply_1_umb_rot1 = .data:0x00164040; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_pickup_wait1_tbl = .data:0x00164054; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_pickup_wait1_tbl = .data:0x00164070; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_pickup_wait1_tbl = .data:0x001640DC; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_pickup_wait1_tbl = .data:0x00164114; // type:object size:0x55E scope:global align:4
+cKF_ba_r_ply_1_pickup_wait1 = .data:0x00164674; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_yatta1_tbl = .data:0x00164688; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_yatta1_tbl = .data:0x001646A4; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_yatta1_tbl = .data:0x00164710; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_yatta1_tbl = .data:0x00164748; // type:object size:0xB64 scope:global align:4
+cKF_ba_r_ply_1_yatta1 = .data:0x001652AC; // type:object size:0x14 scope:global align:4
+ply_1_yatta11_tex_index = .data:0x001652C0; // type:object size:0x35 scope:global align:4
+ply_1_yatta12_tex_index = .data:0x001652F8; // type:object size:0x35 scope:global align:4
+cKF_ckcb_r_ply_1_yatta2_tbl = .data:0x00165330; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_yatta2_tbl = .data:0x0016534C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_yatta2_tbl = .data:0x001653B8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_yatta2_tbl = .data:0x001653F0; // type:object size:0xBCA scope:global align:4
+cKF_ba_r_ply_1_yatta2 = .data:0x00165FBC; // type:object size:0x14 scope:global align:4
+ply_1_yatta21_tex_index = .data:0x00165FD0; // type:object size:0x35 scope:global align:4
+ply_1_yatta22_tex_index = .data:0x00166008; // type:object size:0x35 scope:global align:4
+cKF_ckcb_r_ply_1_yatta3_tbl = .data:0x00166040; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_yatta3_tbl = .data:0x0016605C; // type:object size:0x64 scope:global align:4
+cKF_c_ply_1_yatta3_tbl = .data:0x001660C0; // type:object size:0x3E scope:global align:4
+cKF_ds_ply_1_yatta3_tbl = .data:0x00166100; // type:object size:0xB22 scope:global align:4
+cKF_ba_r_ply_1_yatta3 = .data:0x00166C24; // type:object size:0x14 scope:global align:4
+ply_1_yatta31_tex_index = .data:0x00166C38; // type:object size:0x35 scope:global align:4
+ply_1_yatta32_tex_index = .data:0x00166C70; // type:object size:0x35 scope:global align:4
+cKF_ckcb_r_ply_1_kaza1_tbl = .data:0x00166CA8; // type:object size:0x1A scope:global align:4
+cKF_c_ply_1_kaza1_tbl = .data:0x00166CC4; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_ply_1_kaza1 = .data:0x00166D68; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_mosquito1_tbl = .data:0x00166D7C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_mosquito1_tbl = .data:0x00166D98; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_mosquito1_tbl = .data:0x00166E04; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_mosquito1_tbl = .data:0x00166E3C; // type:object size:0x5A0 scope:global align:4
+cKF_ba_r_ply_1_mosquito1 = .data:0x001673DC; // type:object size:0x14 scope:global align:4
+ply_1_mosquito11_tex_index = .data:0x001673F0; // type:object size:0x1F scope:global align:4
+ply_1_mosquito12_tex_index = .data:0x00167410; // type:object size:0x1F scope:global align:4
+cKF_ckcb_r_ply_1_mosquito2_tbl = .data:0x00167430; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_mosquito2_tbl = .data:0x0016744C; // type:object size:0x66 scope:global align:4
+cKF_c_ply_1_mosquito2_tbl = .data:0x001674B4; // type:object size:0x3C scope:global align:4
+cKF_ds_ply_1_mosquito2_tbl = .data:0x001674F0; // type:object size:0x2FA scope:global align:4
+cKF_ba_r_ply_1_mosquito2 = .data:0x001677EC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_ride1_tbl = .data:0x00167800; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_ride1_tbl = .data:0x0016781C; // type:object size:0x70 scope:global align:4
+cKF_c_ply_1_ride1_tbl = .data:0x0016788C; // type:object size:0x32 scope:global align:4
+cKF_ds_ply_1_ride1_tbl = .data:0x001678C0; // type:object size:0x7DA scope:global align:4
+cKF_ba_r_ply_1_ride1 = .data:0x0016809C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_ride2_tbl = .data:0x001680B0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_ride2_tbl = .data:0x001680CC; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_ride2_tbl = .data:0x00168140; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_ride2_tbl = .data:0x00168170; // type:object size:0x762 scope:global align:4
+cKF_ba_r_ply_1_ride2 = .data:0x001688D4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_ridewait_tbl = .data:0x001688E8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_ridewait_tbl = .data:0x00168904; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_ridewait_tbl = .data:0x00168978; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_ridewait_tbl = .data:0x001689A8; // type:object size:0x37E scope:global align:4
+cKF_ba_r_ply_1_ridewait = .data:0x00168D28; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_getoff1_tbl = .data:0x00168D3C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_getoff1_tbl = .data:0x00168D58; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_getoff1_tbl = .data:0x00168DCC; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_getoff1_tbl = .data:0x00168DFC; // type:object size:0xA8C scope:global align:4
+cKF_ba_r_ply_1_getoff1 = .data:0x00169888; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_getoff2_tbl = .data:0x0016989C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_getoff2_tbl = .data:0x001698B8; // type:object size:0x72 scope:global align:4
+cKF_c_ply_1_getoff2_tbl = .data:0x0016992C; // type:object size:0x30 scope:global align:4
+cKF_ds_ply_1_getoff2_tbl = .data:0x0016995C; // type:object size:0x7C2 scope:global align:4
+cKF_ba_r_ply_1_getoff2 = .data:0x0016A120; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_utiwa_wait1_tbl = .data:0x0016A134; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_utiwa_wait1_tbl = .data:0x0016A150; // type:object size:0x12 scope:global align:4
+cKF_c_ply_1_utiwa_wait1_tbl = .data:0x0016A164; // type:object size:0x90 scope:global align:4
+cKF_ds_ply_1_utiwa_wait1_tbl = .data:0x0016A1F4; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_ply_1_utiwa_wait1 = .data:0x0016A2A8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_utiwa_d1_tbl = .data:0x0016A2BC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_utiwa_d1_tbl = .data:0x0016A2D8; // type:object size:0x18 scope:global align:4
+cKF_c_ply_1_utiwa_d1_tbl = .data:0x0016A2F0; // type:object size:0x8A scope:global align:4
+cKF_ds_ply_1_utiwa_d1_tbl = .data:0x0016A37C; // type:object size:0x120 scope:global align:4
+cKF_ba_r_ply_1_utiwa_d1 = .data:0x0016A49C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_axe_break1_tbl = .data:0x0016A4B0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_axe_break1_tbl = .data:0x0016A4CC; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_axe_break1_tbl = .data:0x0016A538; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_axe_break1_tbl = .data:0x0016A570; // type:object size:0x9C6 scope:global align:4
+cKF_ba_r_ply_1_axe_break1 = .data:0x0016AF38; // type:object size:0x14 scope:global align:4
+ply_1_axe_break11_tex_index = .data:0x0016AF4C; // type:object size:0x3D scope:global align:4
+ply_1_axe_break12_tex_index = .data:0x0016AF8C; // type:object size:0x3D scope:global align:4
+cKF_ckcb_r_ply_1_axe_breakwait1_tbl = .data:0x0016AFCC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_axe_breakwait1_tbl = .data:0x0016AFE8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_axe_breakwait1_tbl = .data:0x0016B054; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_axe_breakwait1_tbl = .data:0x0016B08C; // type:object size:0x50A scope:global align:4
+cKF_ba_r_ply_1_axe_breakwait1 = .data:0x0016B598; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_light_on1_tbl = .data:0x0016B5AC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_light_on1_tbl = .data:0x0016B5C8; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_light_on1_tbl = .data:0x0016B634; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_light_on1_tbl = .data:0x0016B66C; // type:object size:0x70E scope:global align:4
+cKF_ba_r_ply_1_light_on1 = .data:0x0016BD7C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou1_tbl = .data:0x0016BD90; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou1_tbl = .data:0x0016BDAC; // type:object size:0x42 scope:global align:4
+cKF_c_ply_1_taisou1_tbl = .data:0x0016BDF0; // type:object size:0x60 scope:global align:4
+cKF_ds_ply_1_taisou1_tbl = .data:0x0016BE50; // type:object size:0x4F2 scope:global align:4
+cKF_ba_r_ply_1_taisou1 = .data:0x0016C344; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou2_1_tbl = .data:0x0016C358; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou2_1_tbl = .data:0x0016C374; // type:object size:0x56 scope:global align:4
+cKF_c_ply_1_taisou2_1_tbl = .data:0x0016C3CC; // type:object size:0x4C scope:global align:4
+cKF_ds_ply_1_taisou2_1_tbl = .data:0x0016C418; // type:object size:0x342 scope:global align:4
+cKF_ba_r_ply_1_taisou2_1 = .data:0x0016C75C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou2_2_tbl = .data:0x0016C770; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou2_2_tbl = .data:0x0016C78C; // type:object size:0x56 scope:global align:4
+cKF_c_ply_1_taisou2_2_tbl = .data:0x0016C7E4; // type:object size:0x4C scope:global align:4
+cKF_ds_ply_1_taisou2_2_tbl = .data:0x0016C830; // type:object size:0x312 scope:global align:4
+cKF_ba_r_ply_1_taisou2_2 = .data:0x0016CB44; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou3_tbl = .data:0x0016CB58; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou3_tbl = .data:0x0016CB74; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_taisou3_tbl = .data:0x0016CBE0; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_taisou3_tbl = .data:0x0016CC18; // type:object size:0x1212 scope:global align:4
+cKF_ba_r_ply_1_taisou3 = .data:0x0016DE2C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou4_1_tbl = .data:0x0016DE40; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou4_1_tbl = .data:0x0016DE5C; // type:object size:0x68 scope:global align:4
+cKF_c_ply_1_taisou4_1_tbl = .data:0x0016DEC4; // type:object size:0x3A scope:global align:4
+cKF_ds_ply_1_taisou4_1_tbl = .data:0x0016DF00; // type:object size:0x6CC scope:global align:4
+cKF_ba_r_ply_1_taisou4_1 = .data:0x0016E5CC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou4_2_tbl = .data:0x0016E5E0; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou4_2_tbl = .data:0x0016E5FC; // type:object size:0x66 scope:global align:4
+cKF_c_ply_1_taisou4_2_tbl = .data:0x0016E664; // type:object size:0x3C scope:global align:4
+cKF_ds_ply_1_taisou4_2_tbl = .data:0x0016E6A0; // type:object size:0x6BA scope:global align:4
+cKF_ba_r_ply_1_taisou4_2 = .data:0x0016ED5C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou5_1_tbl = .data:0x0016ED70; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou5_1_tbl = .data:0x0016ED8C; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_taisou5_1_tbl = .data:0x0016EDF8; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_taisou5_1_tbl = .data:0x0016EE30; // type:object size:0x8FA scope:global align:4
+cKF_ba_r_ply_1_taisou5_1 = .data:0x0016F72C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou5_2_tbl = .data:0x0016F740; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou5_2_tbl = .data:0x0016F75C; // type:object size:0x6A scope:global align:4
+cKF_c_ply_1_taisou5_2_tbl = .data:0x0016F7C8; // type:object size:0x38 scope:global align:4
+cKF_ds_ply_1_taisou5_2_tbl = .data:0x0016F800; // type:object size:0x8FA scope:global align:4
+cKF_ba_r_ply_1_taisou5_2 = .data:0x001700FC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou6_1_tbl = .data:0x00170110; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou6_1_tbl = .data:0x0017012C; // type:object size:0x68 scope:global align:4
+cKF_c_ply_1_taisou6_1_tbl = .data:0x00170194; // type:object size:0x3A scope:global align:4
+cKF_ds_ply_1_taisou6_1_tbl = .data:0x001701D0; // type:object size:0x5F4 scope:global align:4
+cKF_ba_r_ply_1_taisou6_1 = .data:0x001707C4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou6_2_tbl = .data:0x001707D8; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou6_2_tbl = .data:0x001707F4; // type:object size:0x68 scope:global align:4
+cKF_c_ply_1_taisou6_2_tbl = .data:0x0017085C; // type:object size:0x3A scope:global align:4
+cKF_ds_ply_1_taisou6_2_tbl = .data:0x00170898; // type:object size:0x600 scope:global align:4
+cKF_ba_r_ply_1_taisou6_2 = .data:0x00170E98; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou7_1_tbl = .data:0x00170EAC; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou7_1_tbl = .data:0x00170EC8; // type:object size:0x5C scope:global align:4
+cKF_c_ply_1_taisou7_1_tbl = .data:0x00170F24; // type:object size:0x46 scope:global align:4
+cKF_ds_ply_1_taisou7_1_tbl = .data:0x00170F6C; // type:object size:0x480 scope:global align:4
+cKF_ba_r_ply_1_taisou7_1 = .data:0x001713EC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_taisou7_2_tbl = .data:0x00171400; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_taisou7_2_tbl = .data:0x0017141C; // type:object size:0x5C scope:global align:4
+cKF_c_ply_1_taisou7_2_tbl = .data:0x00171478; // type:object size:0x46 scope:global align:4
+cKF_ds_ply_1_taisou7_2_tbl = .data:0x001714C0; // type:object size:0x486 scope:global align:4
+cKF_ba_r_ply_1_taisou7_2 = .data:0x00171948; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ply_1_omairi_us1_tbl = .data:0x0017195C; // type:object size:0x1A scope:global align:4
+cKF_kn_ply_1_omairi_us1_tbl = .data:0x00171978; // type:object size:0x6C scope:global align:4
+cKF_c_ply_1_omairi_us1_tbl = .data:0x001719E4; // type:object size:0x36 scope:global align:4
+cKF_ds_ply_1_omairi_us1_tbl = .data:0x00171A1C; // type:object size:0x3C0 scope:global align:4
+cKF_ba_r_ply_1_omairi_us1 = .data:0x00171DDC; // type:object size:0x14 scope:global align:4
+tol_axe_1_pal = .data:0x00171E00; // type:object size:0x20 scope:global align:32
+tol_axe_1_tuka1_tex_txt = .data:0x00171E20; // type:object size:0x200 scope:global align:32
+tol_axe_1_edge2_tex_txt = .data:0x00172020; // type:object size:0x100 scope:global align:32 data:string
+tol_axe_1_edge1_tex_txt = .data:0x00172120; // type:object size:0x100 scope:global align:32
+tol_axe_1_v = .data:0x00172220; // type:object size:0x220 scope:global align:8
+tol_axe_1_model = .data:0x00172440; // type:object size:0xD8 scope:global align:8
+tol_axe_1_b_pal = .data:0x00172520; // type:object size:0x20 scope:global align:32
+tol_axe_1_b_tuka1_tex_txt = .data:0x00172540; // type:object size:0x200 scope:global align:32
+tol_axe_1_b_edge2_tex_txt = .data:0x00172740; // type:object size:0x100 scope:global align:32 data:string
+tol_axe_1_b_edge1_tex_txt = .data:0x00172840; // type:object size:0x100 scope:global align:32
+tol_axe_1_b_v = .data:0x00172940; // type:object size:0x220 scope:global align:8
+tol_axe_1_b_model = .data:0x00172B60; // type:object size:0xD8 scope:global align:8
+tol_axe_1_c_pal = .data:0x00172C40; // type:object size:0x20 scope:global align:32
+tol_axe_1_c_tuka1_tex_txt = .data:0x00172C60; // type:object size:0x200 scope:global align:32
+tol_axe_1_c_edge2_tex_txt = .data:0x00172E60; // type:object size:0x100 scope:global align:32 data:string
+tol_axe_1_c_edge1_tex_txt = .data:0x00172F60; // type:object size:0x200 scope:global align:32
+tol_axe_1_c_v = .data:0x00173160; // type:object size:0x220 scope:global align:8
+tol_axe_1_c_model = .data:0x00173380; // type:object size:0xD0 scope:global align:8
+tol_axe_2_pal = .data:0x00173460; // type:object size:0x20 scope:global align:32
+tol_axe_2_tuka1_tex_txt = .data:0x00173480; // type:object size:0x200 scope:global align:32
+tol_axe_2_edge2_tex_txt = .data:0x00173680; // type:object size:0x100 scope:global align:32
+tol_axe_2_edge1_tex_txt = .data:0x00173780; // type:object size:0x100 scope:global align:32
+tol_axe_2_v = .data:0x00173880; // type:object size:0x220 scope:global align:8
+tol_axe_2_model = .data:0x00173AA0; // type:object size:0xD8 scope:global align:8
+act_m_net1_pal = .data:0x00173B80; // type:object size:0x20 scope:global align:32
+tol_net_1_tuka1_tex_txt = .data:0x00173BA0; // type:object size:0x200 scope:global align:32
+tol_net_1_main1_tex_txt = .data:0x00173DA0; // type:object size:0x300 scope:global align:32
+tol_net_1_hole1_tex_txt = .data:0x001740A0; // type:object size:0x100 scope:global align:32
+tol_net_1_v = .data:0x001741A0; // type:object size:0x4F0 scope:global align:8
+main_net_model = .data:0x00174690; // type:object size:0xA0 scope:global align:8
+main2_net_model = .data:0x00174730; // type:object size:0x98 scope:global align:8
+e_net_model = .data:0x001747C8; // type:object size:0xC8 scope:global align:8
+cKF_je_r_tol_net_1_tbl = .data:0x00174890; // type:object size:0x48 scope:global align:4
+cKF_bs_r_tol_net_1 = .data:0x001748D8; // type:object size:0x8 scope:global align:4
+tol_net_2_pal = .data:0x001748E0; // type:object size:0x20 scope:global align:32
+tol_net_2_main1_tex_txt = .data:0x00174900; // type:object size:0x300 scope:global align:32
+tol_net_2_tuka1_tex_txt = .data:0x00174C00; // type:object size:0x200 scope:global align:32
+tol_net_2_hole1_tex_txt = .data:0x00174E00; // type:object size:0x100 scope:global align:32
+tol_net_2_v = .data:0x00174F00; // type:object size:0x500 scope:global align:8
+main_netB_model = .data:0x00175400; // type:object size:0xA0 scope:global align:8
+main2_netB_model = .data:0x001754A0; // type:object size:0x98 scope:global align:8
+e_netB_model = .data:0x00175538; // type:object size:0xC8 scope:global align:8
+cKF_je_r_tol_net_2_tbl = .data:0x00175600; // type:object size:0x48 scope:global align:4
+cKF_bs_r_tol_net_2 = .data:0x00175648; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_tol_net_1_get_m1_tbl = .data:0x00175650; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_get_m1_tbl = .data:0x00175658; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_get_m1_tbl = .data:0x0017566C; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_get_m1_tbl = .data:0x00175684; // type:object size:0xFC scope:global align:4
+cKF_ba_r_tol_net_1_get_m1 = .data:0x00175780; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_net_swing1_tbl = .data:0x00175794; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_net_swing1_tbl = .data:0x0017579C; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_net_swing1_tbl = .data:0x001757B0; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_net_swing1_tbl = .data:0x001757C8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_tol_net_1_net_swing1 = .data:0x0017584C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_kamae_main_m1_tbl = .data:0x00175860; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_kamae_main_m1_tbl = .data:0x00175868; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_kamae_main_m1_tbl = .data:0x0017587C; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_kamae_main_m1_tbl = .data:0x00175894; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_tol_net_1_kamae_main_m1 = .data:0x0017593C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_kokeru_getup_n1_tbl = .data:0x00175950; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_kokeru_getup_n1_tbl = .data:0x00175958; // type:object size:0xA scope:global align:4
+cKF_c_tol_net_1_kokeru_getup_n1_tbl = .data:0x00175964; // type:object size:0x20 scope:global align:4
+cKF_ds_tol_net_1_kokeru_getup_n1_tbl = .data:0x00175984; // type:object size:0x10E scope:global align:4
+cKF_ba_r_tol_net_1_kokeru_getup_n1 = .data:0x00175A94; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_kokeru_n1_tbl = .data:0x00175AA8; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_kokeru_n1_tbl = .data:0x00175AB0; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_kokeru_n1_tbl = .data:0x00175AC4; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_kokeru_n1_tbl = .data:0x00175ADC; // type:object size:0xCC scope:global align:4
+cKF_ba_r_tol_net_1_kokeru_n1 = .data:0x00175BA8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_swing_wait1_tbl = .data:0x00175BBC; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_swing_wait1_tbl = .data:0x00175BC4; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_swing_wait1_tbl = .data:0x00175BD8; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_swing_wait1_tbl = .data:0x00175BF0; // type:object size:0x96 scope:global align:4
+cKF_ba_r_tol_net_1_swing_wait1 = .data:0x00175C88; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_net_1_yatta_m1_tbl = .data:0x00175C9C; // type:object size:0x6 scope:global align:4
+cKF_kn_tol_net_1_yatta_m1_tbl = .data:0x00175CA4; // type:object size:0x12 scope:global align:4
+cKF_c_tol_net_1_yatta_m1_tbl = .data:0x00175CB8; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_net_1_yatta_m1_tbl = .data:0x00175CD0; // type:object size:0x138 scope:global align:4
+cKF_ba_r_tol_net_1_yatta_m1 = .data:0x00175E08; // type:object size:0x14 scope:global align:4
+tol_sao_1_pal = .data:0x00175E20; // type:object size:0x20 scope:local align:32
+tol_sao_1_main1_tex_txt = .data:0x00175E40; // type:object size:0x200 scope:global align:32
+tol_sao_1_v = .data:0x00176040; // type:object size:0x3A0 scope:global align:8
+main1_sao_model = .data:0x001763E0; // type:object size:0x60 scope:global align:8
+main2_sao_model = .data:0x00176440; // type:object size:0x90 scope:global align:8
+main3_sao_model = .data:0x001764D0; // type:object size:0x90 scope:global align:8
+main4_sao_model = .data:0x00176560; // type:object size:0x88 scope:global align:8
+cKF_je_r_tol_sao_1_tbl = .data:0x001765E8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_tol_sao_1 = .data:0x00176624; // type:object size:0x8 scope:global align:4
+tol_sao_2_pal = .data:0x00176640; // type:object size:0x20 scope:local align:32
+tol_sao_2_main1_tex_txt = .data:0x00176660; // type:object size:0x200 scope:global align:32
+tol_sao_2_v = .data:0x00176860; // type:object size:0x3A0 scope:global align:8
+main1_saoB_model = .data:0x00176C00; // type:object size:0x60 scope:global align:8
+main2_saoB_model = .data:0x00176C60; // type:object size:0x90 scope:global align:8
+main3_saoB_model = .data:0x00176CF0; // type:object size:0x90 scope:global align:8
+main4_saoB_model = .data:0x00176D80; // type:object size:0x88 scope:global align:8
+cKF_je_r_tol_sao_2_tbl = .data:0x00176E08; // type:object size:0x3C scope:global align:4
+cKF_bs_r_tol_sao_2 = .data:0x00176E44; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_tol_sao_1_sao_get_t1_tbl = .data:0x00176E4C; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_sao_get_t1_tbl = .data:0x00176E54; // type:object size:0x6 scope:global align:4
+cKF_c_tol_sao_1_sao_get_t1_tbl = .data:0x00176E5C; // type:object size:0x1E scope:global align:4
+cKF_ds_tol_sao_1_sao_get_t1_tbl = .data:0x00176E7C; // type:object size:0xAE scope:global align:4
+cKF_ba_r_tol_sao_1_sao_get_t1 = .data:0x00176F2C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_sao_1_sao_move1_tbl = .data:0x00176F40; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_sao_move1_tbl = .data:0x00176F48; // type:object size:0x1A scope:global align:4
+cKF_c_tol_sao_1_sao_move1_tbl = .data:0x00176F64; // type:object size:0xA scope:global align:4
+cKF_ds_tol_sao_1_sao_move1_tbl = .data:0x00176F70; // type:object size:0xE4 scope:global align:4
+cKF_ba_r_tol_sao_1_sao_move1 = .data:0x00177054; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_sao_1_sao_sinari1_tbl = .data:0x00177068; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_sao_sinari1_tbl = .data:0x00177070; // type:object size:0x6 scope:global align:4
+cKF_c_tol_sao_1_sao_sinari1_tbl = .data:0x00177078; // type:object size:0x1E scope:global align:4
+cKF_ds_tol_sao_1_sao_sinari1_tbl = .data:0x00177098; // type:object size:0x24 scope:global align:4
+cKF_ba_r_tol_sao_1_sao_sinari1 = .data:0x001770BC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_sao_1_sao_swing1_tbl = .data:0x001770D0; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_sao_swing1_tbl = .data:0x001770D8; // type:object size:0x6 scope:global align:4
+cKF_c_tol_sao_1_sao_swing1_tbl = .data:0x001770E0; // type:object size:0x1E scope:global align:4
+cKF_ds_tol_sao_1_sao_swing1_tbl = .data:0x00177100; // type:object size:0x12C scope:global align:4
+cKF_ba_r_tol_sao_1_sao_swing1 = .data:0x0017722C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_sao_1_sao_wait1_tbl = .data:0x00177240; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_sao_wait1_tbl = .data:0x00177248; // type:object size:0x1E scope:global align:4
+cKF_c_tol_sao_1_sao_wait1_tbl = .data:0x00177268; // type:object size:0x6 scope:global align:4
+cKF_ds_tol_sao_1_sao_wait1_tbl = .data:0x00177270; // type:object size:0x10E scope:global align:4
+cKF_ba_r_tol_sao_1_sao_wait1 = .data:0x00177380; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_sao_1_not_sao_swing1_tbl = .data:0x00177394; // type:object size:0x5 scope:global align:4
+cKF_kn_tol_sao_1_not_sao_swing1_tbl = .data:0x0017739C; // type:object size:0x6 scope:global align:4
+cKF_c_tol_sao_1_not_sao_swing1_tbl = .data:0x001773A4; // type:object size:0x1E scope:global align:4
+cKF_ds_tol_sao_1_not_sao_swing1_tbl = .data:0x001773C4; // type:object size:0x120 scope:global align:4
+cKF_ba_r_tol_sao_1_not_sao_swing1 = .data:0x001774E4; // type:object size:0x14 scope:global align:4
+act_m_scoop_1_pal = .data:0x00177500; // type:object size:0x20 scope:global align:32
+tol_scoop_1_main1_tex_txt = .data:0x00177520; // type:object size:0x100 scope:global align:32
+tol_scoop_1_tuka1_tex_txt = .data:0x00177620; // type:object size:0x200 scope:global align:32
+tol_scoop_1_tuka2_tex_txt = .data:0x00177820; // type:object size:0x80 scope:global align:32
+tol_scoop_1_tuka3_tex_txt = .data:0x001778A0; // type:object size:0x80 scope:global align:32
+tol_scoop_1_main2_tex_txt = .data:0x00177920; // type:object size:0x100 scope:global align:32
+tol_scoop_1_v = .data:0x00177A20; // type:object size:0x330 scope:global align:8
+tol_scoop_1_model = .data:0x00177D50; // type:object size:0x158 scope:global align:8
+tol_scoop_2_pal = .data:0x00177EC0; // type:object size:0x20 scope:global align:32
+tol_scoop_2_main1_tex_txt = .data:0x00177EE0; // type:object size:0x100 scope:global align:32
+tol_scoop_2_tuka1_tex_txt = .data:0x00177FE0; // type:object size:0x200 scope:global align:32
+tol_scoop_2_tuka2_tex_txt = .data:0x001781E0; // type:object size:0x80 scope:global align:32
+tol_scoop_2_tuka3_tex_txt = .data:0x00178260; // type:object size:0x80 scope:global align:32
+tol_scoop_2_main2_tex_txt = .data:0x001782E0; // type:object size:0x100 scope:global align:32
+tol_scoop_2_v = .data:0x001783E0; // type:object size:0x330 scope:global align:8
+tol_scoop_2_model = .data:0x00178710; // type:object size:0x158 scope:global align:8
+tol_balloon1_wire_tex_txt = .data:0x00178880; // type:object size:0x80 scope:local align:32
+tol_balloonA_head_tex_rgb_ia8 = .data:0x00178900; // type:object size:0x400 scope:global align:32
+tol_balloon1_v = .data:0x00178D00; // type:object size:0x460 scope:global align:8
+tol_balloonA_a_model = .data:0x00179160; // type:object size:0x58 scope:global align:8
+tol_balloonA_b_model = .data:0x001791B8; // type:object size:0x98 scope:global align:8
+tol_balloonA_c_model = .data:0x00179250; // type:object size:0x98 scope:global align:8
+tol_balloonA_head_model = .data:0x001792E8; // type:object size:0xA0 scope:global align:8
+cKF_je_r_tol_balloon1_tbl = .data:0x00179388; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon1 = .data:0x001793DC; // type:object size:0x8 scope:global align:4
+tol_balloonB_wire_tex_txt = .data:0x00179400; // type:object size:0x80 scope:global align:32
+tol_balloonB_head_tex_rgb_ia8 = .data:0x00179480; // type:object size:0x400 scope:global align:32
+tol_balloon2_v = .data:0x00179880; // type:object size:0x460 scope:global align:8
+tol_balloonB_a_model = .data:0x00179CE0; // type:object size:0x58 scope:global align:8
+tol_balloonB_b_model = .data:0x00179D38; // type:object size:0x98 scope:global align:8
+tol_balloonB_c_model = .data:0x00179DD0; // type:object size:0x98 scope:global align:8
+tol_balloonB_head_model = .data:0x00179E68; // type:object size:0xA0 scope:global align:8
+cKF_je_r_tol_balloon2_tbl = .data:0x00179F08; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon2 = .data:0x00179F5C; // type:object size:0x8 scope:global align:4
+tol_balloonC_wire_tex_txt = .data:0x00179F80; // type:object size:0x80 scope:global align:32
+tol_balloonC_head_tex_rgb_ia8 = .data:0x0017A000; // type:object size:0x400 scope:global align:32
+tol_balloon3_v = .data:0x0017A400; // type:object size:0x460 scope:global align:8
+tol_balloonC_a_model = .data:0x0017A860; // type:object size:0x58 scope:global align:8
+tol_balloonC_b_model = .data:0x0017A8B8; // type:object size:0x98 scope:global align:8
+tol_balloonC_c_model = .data:0x0017A950; // type:object size:0x98 scope:global align:8
+tol_balloonC_head_model = .data:0x0017A9E8; // type:object size:0xA0 scope:global align:8
+cKF_je_r_tol_balloon3_tbl = .data:0x0017AA88; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon3 = .data:0x0017AADC; // type:object size:0x8 scope:global align:4
+tol_balloonD_wire_tex_txt = .data:0x0017AB00; // type:object size:0x80 scope:global align:32
+tol_balloonD_head_tex_rgb_ia8 = .data:0x0017AB80; // type:object size:0x400 scope:global align:32
+tol_balloon4_v = .data:0x0017AF80; // type:object size:0x460 scope:global align:8
+tol_balloonD_a_model = .data:0x0017B3E0; // type:object size:0x58 scope:global align:8
+tol_balloonD_b_model = .data:0x0017B438; // type:object size:0x98 scope:global align:8
+tol_balloonD_c_model = .data:0x0017B4D0; // type:object size:0x98 scope:global align:8
+tol_balloonD_head_model = .data:0x0017B568; // type:object size:0xA0 scope:global align:8
+cKF_je_r_tol_balloon4_tbl = .data:0x0017B608; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon4 = .data:0x0017B65C; // type:object size:0x8 scope:global align:4
+tol_balloonE_wire_tex_txt = .data:0x0017B680; // type:object size:0x80 scope:global align:32
+tol_balloonE_head_tex_rgb_ia8 = .data:0x0017B700; // type:object size:0x400 scope:global align:32
+tol_balloon5_v = .data:0x0017BB00; // type:object size:0x460 scope:global align:8
+tol_balloonE_a_model = .data:0x0017BF60; // type:object size:0x58 scope:global align:8
+tol_balloonE_b_model = .data:0x0017BFB8; // type:object size:0x98 scope:global align:8
+tol_balloonE_c_model = .data:0x0017C050; // type:object size:0x98 scope:global align:8
+tol_balloonE_head_model = .data:0x0017C0E8; // type:object size:0xA0 scope:global align:8
+cKF_je_r_tol_balloon5_tbl = .data:0x0017C188; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon5 = .data:0x0017C1DC; // type:object size:0x8 scope:global align:4
+tol_balloonF_wire_tex_txt = .data:0x0017C200; // type:object size:0x80 scope:global align:32
+tol_balloonF5_head_tex_rgb_ia8 = .data:0x0017C280; // type:object size:0x400 scope:global align:32
+tol_balloon6_v = .data:0x0017C680; // type:object size:0xC60 scope:global align:8
+tol_balloonF_a_model = .data:0x0017D2E0; // type:object size:0x58 scope:global align:8
+tol_balloonF_b_model = .data:0x0017D338; // type:object size:0x98 scope:global align:8
+tol_balloonF_c_model = .data:0x0017D3D0; // type:object size:0x98 scope:global align:8
+tol_balloonF_head_model = .data:0x0017D468; // type:object size:0x168 scope:global align:8
+cKF_je_r_tol_balloon6_tbl = .data:0x0017D5D0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon6 = .data:0x0017D624; // type:object size:0x8 scope:global align:4
+tol_balloonG_wire_tex_txt = .data:0x0017D640; // type:object size:0x80 scope:global align:32
+tol_balloonG5_head_tex_rgb_ia8 = .data:0x0017D6C0; // type:object size:0x400 scope:global align:32
+tol_balloon7_v = .data:0x0017DAC0; // type:object size:0xC60 scope:global align:8
+tol_balloonG_a_model = .data:0x0017E720; // type:object size:0x58 scope:global align:8
+tol_balloonG_b_model = .data:0x0017E778; // type:object size:0x98 scope:global align:8
+tol_balloonG_c_model = .data:0x0017E810; // type:object size:0x98 scope:global align:8
+tol_balloonG_head_model = .data:0x0017E8A8; // type:object size:0x168 scope:global align:8
+cKF_je_r_tol_balloon7_tbl = .data:0x0017EA10; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon7 = .data:0x0017EA64; // type:object size:0x8 scope:global align:4
+tol_balloonH_wire_tex_txt = .data:0x0017EA80; // type:object size:0x80 scope:global align:32
+tol_balloonH5_head_tex_rgb_ia8 = .data:0x0017EB00; // type:object size:0x400 scope:global align:32
+tol_balloon8_v = .data:0x0017EF00; // type:object size:0xC60 scope:global align:8
+tol_balloonH_a_model = .data:0x0017FB60; // type:object size:0x58 scope:global align:8
+tol_balloonH_b_model = .data:0x0017FBB8; // type:object size:0x98 scope:global align:8
+tol_balloonH_c_model = .data:0x0017FC50; // type:object size:0x98 scope:global align:8
+tol_balloonH_head_model = .data:0x0017FCE8; // type:object size:0x168 scope:global align:8
+cKF_je_r_tol_balloon8_tbl = .data:0x0017FE50; // type:object size:0x54 scope:global align:4
+cKF_bs_r_tol_balloon8 = .data:0x0017FEA4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_tol_balloon1_wait_tbl = .data:0x0017FEAC; // type:object size:0x7 scope:global align:4
+cKF_kn_tol_balloon1_wait_tbl = .data:0x0017FEB4; // type:object size:0x16 scope:global align:4
+cKF_c_tol_balloon1_wait_tbl = .data:0x0017FECC; // type:object size:0x1A scope:global align:4
+cKF_ds_tol_balloon1_wait_tbl = .data:0x0017FEE8; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_tol_balloon1_wait = .data:0x0017FFC0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_balloon1_gyaza1_tbl = .data:0x0017FFD4; // type:object size:0x7 scope:global align:4
+cKF_kn_tol_balloon1_gyaza1_tbl = .data:0x0017FFDC; // type:object size:0x18 scope:global align:4
+cKF_c_tol_balloon1_gyaza1_tbl = .data:0x0017FFF4; // type:object size:0x18 scope:global align:4
+cKF_ds_tol_balloon1_gyaza1_tbl = .data:0x0018000C; // type:object size:0x546 scope:global align:4
+cKF_ba_r_tol_balloon1_gyaza1 = .data:0x00180554; // type:object size:0x14 scope:global align:4
+tol_kaza_1_pal = .data:0x00180580; // type:object size:0x20 scope:local align:32
+tol_kaza_1_a_tex_txt = .data:0x001805A0; // type:object size:0x200 scope:local align:32
+tol_kaza_1_c_tex_txt = .data:0x001807A0; // type:object size:0x200 scope:local align:32
+tol_kaza_1_b_tex_txt = .data:0x001809A0; // type:object size:0x100 scope:local align:32
+tol_kaza1_v = .data:0x00180AA0; // type:object size:0x300 scope:global align:8
+tol_kaza1_base_model = .data:0x00180DA0; // type:object size:0x60 scope:global align:8
+tol_kaza1_fan_model = .data:0x00180E00; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza1_tbl = .data:0x00180EB0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza1 = .data:0x00180ED4; // type:object size:0x8 scope:global align:4
+tol_kaza_2_pal = .data:0x00180EE0; // type:object size:0x20 scope:local align:32
+tol_kaza_2_a_tex_txt = .data:0x00180F00; // type:object size:0x200 scope:local align:32
+tol_kaza_2_c_tex_txt = .data:0x00181100; // type:object size:0x200 scope:local align:32
+tol_kaza_2_b_tex_txt = .data:0x00181300; // type:object size:0x100 scope:local align:32
+tol_kaza2_v = .data:0x00181400; // type:object size:0x300 scope:global align:8
+tol_kaza2_base_model = .data:0x00181700; // type:object size:0x60 scope:global align:8
+tol_kaza2_fan_model = .data:0x00181760; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza2_tbl = .data:0x00181810; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza2 = .data:0x00181834; // type:object size:0x8 scope:global align:4
+tol_kaza_3_pal = .data:0x00181840; // type:object size:0x20 scope:local align:32
+tol_kaza_3_a_tex_txt = .data:0x00181860; // type:object size:0x200 scope:local align:32
+tol_kaza_3_c_tex_txt = .data:0x00181A60; // type:object size:0x200 scope:local align:32
+tol_kaza_3_b_tex_txt = .data:0x00181C60; // type:object size:0x100 scope:local align:32
+tol_kaza3_v = .data:0x00181D60; // type:object size:0x300 scope:global align:8
+tol_kaza3_base_model = .data:0x00182060; // type:object size:0x60 scope:global align:8
+tol_kaza3_fan_model = .data:0x001820C0; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza3_tbl = .data:0x00182170; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza3 = .data:0x00182194; // type:object size:0x8 scope:global align:4
+tol_kaza_4_pal = .data:0x001821A0; // type:object size:0x20 scope:local align:32
+tol_kaza_4_a_tex_txt = .data:0x001821C0; // type:object size:0x200 scope:local align:32
+tol_kaza_4_c_tex_txt = .data:0x001823C0; // type:object size:0x200 scope:local align:32
+tol_kaza_4_b_tex_txt = .data:0x001825C0; // type:object size:0x100 scope:local align:32
+tol_kaza4_v = .data:0x001826C0; // type:object size:0x300 scope:global align:8
+tol_kaza4_base_model = .data:0x001829C0; // type:object size:0x60 scope:global align:8
+tol_kaza4_fan_model = .data:0x00182A20; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza4_tbl = .data:0x00182AD0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza4 = .data:0x00182AF4; // type:object size:0x8 scope:global align:4
+tol_kaza_5_pal = .data:0x00182B00; // type:object size:0x20 scope:local align:32
+tol_kaza_5_a_tex_txt = .data:0x00182B20; // type:object size:0x200 scope:local align:32
+tol_kaza_5_c_tex_txt = .data:0x00182D20; // type:object size:0x200 scope:local align:32
+tol_kaza_5_b_tex_txt = .data:0x00182F20; // type:object size:0x100 scope:local align:32
+tol_kaza5_v = .data:0x00183020; // type:object size:0x300 scope:global align:8
+tol_kaza5_base_model = .data:0x00183320; // type:object size:0x60 scope:global align:8
+tol_kaza5_fan_model = .data:0x00183380; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza5_tbl = .data:0x00183430; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza5 = .data:0x00183454; // type:object size:0x8 scope:global align:4
+tol_kaza_6_pal = .data:0x00183460; // type:object size:0x20 scope:local align:32
+tol_kaza_6_a_tex_txt = .data:0x00183480; // type:object size:0x200 scope:local align:32
+tol_kaza_6_c_tex_txt = .data:0x00183680; // type:object size:0x200 scope:local align:32
+tol_kaza_6_b_tex_txt = .data:0x00183880; // type:object size:0x100 scope:local align:32
+tol_kaza6_v = .data:0x00183980; // type:object size:0x300 scope:global align:8
+tol_kaza6_base_model = .data:0x00183C80; // type:object size:0x60 scope:global align:8
+tol_kaza6_fan_model = .data:0x00183CE0; // type:object size:0xB0 scope:global align:8
+cKF_je_r_tol_kaza6_tbl = .data:0x00183D90; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza6 = .data:0x00183DB4; // type:object size:0x8 scope:global align:4
+tol_kaza_7_pal = .data:0x00183DC0; // type:object size:0x20 scope:local align:32
+tol_kaza_7_a_tex_txt = .data:0x00183DE0; // type:object size:0x200 scope:local align:32
+tol_kaza_7_c_tex_txt = .data:0x00183FE0; // type:object size:0x200 scope:local align:32
+tol_kaza_7_d_tex_txt = .data:0x001841E0; // type:object size:0x80 scope:local align:32
+tol_kaza_7_b_tex_txt = .data:0x00184260; // type:object size:0x100 scope:local align:32
+tol_kaza7_v = .data:0x00184360; // type:object size:0x980 scope:global align:8
+tol_kaza7_base_model = .data:0x00184CE0; // type:object size:0x60 scope:global align:8
+tol_kaza7_fan_model = .data:0x00184D40; // type:object size:0x1F0 scope:global align:8
+cKF_je_r_tol_kaza7_tbl = .data:0x00184F30; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza7 = .data:0x00184F54; // type:object size:0x8 scope:global align:4
+tol_kaza_8_pal = .data:0x00184F60; // type:object size:0x20 scope:local align:32
+tol_kaza_8_d_tex_txt = .data:0x00184F80; // type:object size:0x80 scope:local align:32
+tol_kaza_8_a_tex_txt = .data:0x00185000; // type:object size:0x200 scope:local align:32
+tol_kaza_8_c_tex_txt = .data:0x00185200; // type:object size:0x200 scope:local align:32
+tol_kaza_8_e_tex_txt = .data:0x00185400; // type:object size:0x80 scope:local align:32
+tol_kaza_8_b_tex_txt = .data:0x00185480; // type:object size:0x100 scope:local align:32
+tol_kaza8_v = .data:0x00185580; // type:object size:0x780 scope:global align:8
+tol_kaza8_base_model = .data:0x00185D00; // type:object size:0x60 scope:global align:8
+tol_kaza8_fan_model = .data:0x00185D60; // type:object size:0x1D8 scope:global align:8
+cKF_je_r_tol_kaza8_tbl = .data:0x00185F38; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_kaza8 = .data:0x00185F5C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_tol_kaza1_wait_tbl = .data:0x00185F64; // type:object size:0x3 scope:global align:4
+cKF_kn_tol_kaza1_wait_tbl = .data:0x00185F68; // type:object size:0x12 scope:global align:4
+cKF_c_tol_kaza1_wait_tbl = .data:0x00185F7C; // type:object size:0x6 scope:global align:4
+cKF_ds_tol_kaza1_wait_tbl = .data:0x00185F84; // type:object size:0x6C scope:global align:4
+cKF_ba_r_tol_kaza1_wait = .data:0x00185FF0; // type:object size:0x14 scope:global align:4
+tol_fan1_pal = .data:0x00186020; // type:object size:0x20 scope:local align:32
+tol_fan1_tex_txt = .data:0x00186040; // type:object size:0x400 scope:local align:32
+tol_fan1_v = .data:0x00186440; // type:object size:0x80 scope:global align:8
+tol_fan1_model = .data:0x001864C0; // type:object size:0x60 scope:global align:8
+tol_fan2_pal = .data:0x00186520; // type:object size:0x20 scope:local align:32
+tol_fan2_tex_txt = .data:0x00186540; // type:object size:0x400 scope:local align:32
+tol_fan2_v = .data:0x00186940; // type:object size:0x80 scope:global align:8
+tol_fan2_model = .data:0x001869C0; // type:object size:0x60 scope:global align:8
+tol_fan3_pal = .data:0x00186A20; // type:object size:0x20 scope:local align:32
+tol_fan3_tex_txt = .data:0x00186A40; // type:object size:0x400 scope:local align:32
+tol_fan3_v = .data:0x00186E40; // type:object size:0x80 scope:global align:8
+tol_fan3_model = .data:0x00186EC0; // type:object size:0x60 scope:global align:8
+tol_fan4_pal = .data:0x00186F20; // type:object size:0x20 scope:local align:32
+tol_fan4_tex_txt = .data:0x00186F40; // type:object size:0x400 scope:local align:32
+tol_fan4_v = .data:0x00187340; // type:object size:0x80 scope:global align:8
+tol_fan4_model = .data:0x001873C0; // type:object size:0x60 scope:global align:8
+tol_fan5_pal = .data:0x00187420; // type:object size:0x20 scope:local align:32
+tol_fan5_tex_txt = .data:0x00187440; // type:object size:0x400 scope:local align:32
+tol_fan5_v = .data:0x00187840; // type:object size:0x80 scope:global align:8
+tol_fan5_model = .data:0x001878C0; // type:object size:0x60 scope:global align:8
+tol_fan6_pal = .data:0x00187920; // type:object size:0x20 scope:local align:32
+tol_fan6_tex_txt = .data:0x00187940; // type:object size:0x400 scope:local align:32
+tol_fan6_v = .data:0x00187D40; // type:object size:0x280 scope:global align:8
+tol_fan6_model = .data:0x00187FC0; // type:object size:0x88 scope:global align:8
+tol_fan7_pal = .data:0x00188060; // type:object size:0x20 scope:local align:32
+tol_fan7_tex_txt = .data:0x00188080; // type:object size:0x400 scope:local align:32
+tol_fan7_v = .data:0x00188480; // type:object size:0x80 scope:global align:8
+tol_fan7_model = .data:0x00188500; // type:object size:0x60 scope:global align:8
+tol_fan8_pal = .data:0x00188560; // type:object size:0x20 scope:local align:32
+tol_fan8_tex_txt = .data:0x00188580; // type:object size:0x400 scope:local align:32
+tol_fan8_v = .data:0x00188980; // type:object size:0x80 scope:global align:8
+tol_fan8_model = .data:0x00188A00; // type:object size:0x60 scope:global align:8
+BOY_part_data = .data:0x00188A60; // type:object size:0x87 scope:global align:4
+fox_1_v = .data:0x00188AE8; // type:object size:0x1700 scope:global align:8
+head_fox_model = .data:0x0018A1E8; // type:object size:0x130 scope:global align:8
+mouth_fox_model = .data:0x0018A318; // type:object size:0x88 scope:global align:8
+Rarm2_fox_model = .data:0x0018A3A0; // type:object size:0x88 scope:global align:8
+Rarm1_fox_model = .data:0x0018A428; // type:object size:0x78 scope:global align:8
+Larm2_fox_model = .data:0x0018A4A0; // type:object size:0x88 scope:global align:8
+Larm1_fox_model = .data:0x0018A528; // type:object size:0x78 scope:global align:8
+chest_fox_model = .data:0x0018A5A0; // type:object size:0x108 scope:global align:8
+tail1_fox_model = .data:0x0018A6A8; // type:object size:0x78 scope:global align:8
+tail2_fox_model = .data:0x0018A720; // type:object size:0xB8 scope:global align:8
+Rfoot2_fox_model = .data:0x0018A7D8; // type:object size:0x80 scope:global align:8
+Rfoot1_fox_model = .data:0x0018A858; // type:object size:0x58 scope:global align:8
+Lfoot2_fox_model = .data:0x0018A8B0; // type:object size:0x80 scope:global align:8
+Lfoot1_fox_model = .data:0x0018A930; // type:object size:0x58 scope:global align:8
+base_fox_model = .data:0x0018A988; // type:object size:0xD0 scope:global align:8
+cKF_je_r_fox_1_tbl = .data:0x0018AA58; // type:object size:0x138 scope:global align:4
+cKF_bs_r_fox_1 = .data:0x0018AB90; // type:object size:0x8 scope:global align:4
+fox_1_pal = .data:0x0018ABA0; // type:object size:0x20 scope:global align:32
+fox_1_eye1_TA_tex_txt = .data:0x0018ABC0; // type:object size:0x100 scope:global align:32
+fox_1_eye2_TA_tex_txt = .data:0x0018ACC0; // type:object size:0x100 scope:global align:32
+fox_1_eye3_TA_tex_txt = .data:0x0018ADC0; // type:object size:0x100 scope:global align:32
+fox_1_eye4_TA_tex_txt = .data:0x0018AEC0; // type:object size:0x100 scope:global align:32
+fox_1_eye5_TA_tex_txt = .data:0x0018AFC0; // type:object size:0x100 scope:global align:32
+fox_1_eye6_TA_tex_txt = .data:0x0018B0C0; // type:object size:0x100 scope:global align:32
+fox_1_eye7_TA_tex_txt = .data:0x0018B1C0; // type:object size:0x100 scope:global align:32
+fox_1_eye8_TA_tex_txt = .data:0x0018B2C0; // type:object size:0x100 scope:global align:32
+fox_1_tmem_txt = .data:0x0018B3C0; // type:object size:0x700 scope:global align:32
+bul_1_v = .data:0x0018BAC0; // type:object size:0x1680 scope:global align:8
+head_bul_model = .data:0x0018D140; // type:object size:0x208 scope:global align:8
+Rarm2_bul_model = .data:0x0018D348; // type:object size:0x88 scope:global align:8
+Rarm1_bul_model = .data:0x0018D3D0; // type:object size:0x78 scope:global align:8
+Larm2_bul_model = .data:0x0018D448; // type:object size:0x88 scope:global align:8
+Larm1_bul_model = .data:0x0018D4D0; // type:object size:0x78 scope:global align:8
+chest_bul_model = .data:0x0018D548; // type:object size:0xA0 scope:global align:8
+tail1_bul_model = .data:0x0018D5E8; // type:object size:0x60 scope:global align:8
+tail2_bul_model = .data:0x0018D648; // type:object size:0x90 scope:global align:8
+Rfoot2_bul_model = .data:0x0018D6D8; // type:object size:0x80 scope:global align:8
+Rfoot1_bul_model = .data:0x0018D758; // type:object size:0x80 scope:global align:8
+Lfoot2_bul_model = .data:0x0018D7D8; // type:object size:0x80 scope:global align:8
+Lfoot1_bul_model = .data:0x0018D858; // type:object size:0x80 scope:global align:8
+base_bul_model = .data:0x0018D8D8; // type:object size:0x98 scope:global align:8
+cKF_je_r_bul_1_tbl = .data:0x0018D970; // type:object size:0x138 scope:global align:4
+cKF_bs_r_bul_1 = .data:0x0018DAA8; // type:object size:0x8 scope:global align:4
+bul_1_pal = .data:0x0018DAC0; // type:object size:0x20 scope:global align:32
+bul_1_eye1_TA_tex_txt = .data:0x0018DAE0; // type:object size:0x100 scope:global align:32
+bul_1_eye2_TA_tex_txt = .data:0x0018DBE0; // type:object size:0x100 scope:global align:32
+bul_1_eye3_TA_tex_txt = .data:0x0018DCE0; // type:object size:0x100 scope:global align:32
+bul_1_eye4_TA_tex_txt = .data:0x0018DDE0; // type:object size:0x100 scope:global align:32
+bul_1_eye5_TA_tex_txt = .data:0x0018DEE0; // type:object size:0x100 scope:global align:32
+bul_1_eye6_TA_tex_txt = .data:0x0018DFE0; // type:object size:0x100 scope:global align:32
+bul_1_eye7_TA_tex_txt = .data:0x0018E0E0; // type:object size:0x100 scope:global align:32
+bul_1_eye8_TA_tex_txt = .data:0x0018E1E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth1_TA_tex_txt = .data:0x0018E2E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth2_TA_tex_txt = .data:0x0018E3E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth3_TA_tex_txt = .data:0x0018E4E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth4_TA_tex_txt = .data:0x0018E5E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth5_TA_tex_txt = .data:0x0018E6E0; // type:object size:0x100 scope:global align:32
+bul_1_mouth6_TA_tex_txt = .data:0x0018E7E0; // type:object size:0x100 scope:global align:32
+bul_1_tmem_txt = .data:0x0018E8E0; // type:object size:0x400 scope:global align:32
+bul_2_pal = .data:0x0018ECE0; // type:object size:0x20 scope:global align:32
+bul_2_eye1_TA_tex_txt = .data:0x0018ED00; // type:object size:0x100 scope:global align:32
+bul_2_eye2_TA_tex_txt = .data:0x0018EE00; // type:object size:0x100 scope:global align:32
+bul_2_eye3_TA_tex_txt = .data:0x0018EF00; // type:object size:0x100 scope:global align:32
+bul_2_eye4_TA_tex_txt = .data:0x0018F000; // type:object size:0x100 scope:global align:32
+bul_2_eye5_TA_tex_txt = .data:0x0018F100; // type:object size:0x100 scope:global align:32
+bul_2_eye6_TA_tex_txt = .data:0x0018F200; // type:object size:0x100 scope:global align:32
+bul_2_eye7_TA_tex_txt = .data:0x0018F300; // type:object size:0x100 scope:global align:32
+bul_2_eye8_TA_tex_txt = .data:0x0018F400; // type:object size:0x100 scope:global align:32
+bul_2_mouth1_TA_tex_txt = .data:0x0018F500; // type:object size:0x100 scope:global align:32
+bul_2_mouth2_TA_tex_txt = .data:0x0018F600; // type:object size:0x100 scope:global align:32
+bul_2_mouth3_TA_tex_txt = .data:0x0018F700; // type:object size:0x100 scope:global align:32
+bul_2_mouth4_TA_tex_txt = .data:0x0018F800; // type:object size:0x100 scope:global align:32
+bul_2_mouth5_TA_tex_txt = .data:0x0018F900; // type:object size:0x100 scope:global align:32
+bul_2_mouth6_TA_tex_txt = .data:0x0018FA00; // type:object size:0x100 scope:global align:32
+bul_2_tmem_txt = .data:0x0018FB00; // type:object size:0x400 scope:global align:32
+bul_3_pal = .data:0x0018FF00; // type:object size:0x20 scope:global align:32
+bul_3_eye1_TA_tex_txt = .data:0x0018FF20; // type:object size:0x100 scope:global align:32
+bul_3_eye2_TA_tex_txt = .data:0x00190020; // type:object size:0x100 scope:global align:32
+bul_3_eye3_TA_tex_txt = .data:0x00190120; // type:object size:0x100 scope:global align:32
+bul_3_eye4_TA_tex_txt = .data:0x00190220; // type:object size:0x100 scope:global align:32
+bul_3_eye5_TA_tex_txt = .data:0x00190320; // type:object size:0x100 scope:global align:32
+bul_3_eye6_TA_tex_txt = .data:0x00190420; // type:object size:0x100 scope:global align:32
+bul_3_eye7_TA_tex_txt = .data:0x00190520; // type:object size:0x100 scope:global align:32
+bul_3_eye8_TA_tex_txt = .data:0x00190620; // type:object size:0x100 scope:global align:32
+bul_3_mouth1_TA_tex_txt = .data:0x00190720; // type:object size:0x100 scope:global align:32
+bul_3_mouth2_TA_tex_txt = .data:0x00190820; // type:object size:0x100 scope:global align:32
+bul_3_mouth3_TA_tex_txt = .data:0x00190920; // type:object size:0x100 scope:global align:32
+bul_3_mouth4_TA_tex_txt = .data:0x00190A20; // type:object size:0x100 scope:global align:32
+bul_3_mouth5_TA_tex_txt = .data:0x00190B20; // type:object size:0x100 scope:global align:32
+bul_3_mouth6_TA_tex_txt = .data:0x00190C20; // type:object size:0x100 scope:global align:32
+bul_3_tmem_txt = .data:0x00190D20; // type:object size:0x400 scope:global align:32
+bul_4_pal = .data:0x00191120; // type:object size:0x20 scope:global align:32
+bul_4_eye1_TA_tex_txt = .data:0x00191140; // type:object size:0x100 scope:global align:32
+bul_4_eye2_TA_tex_txt = .data:0x00191240; // type:object size:0x100 scope:global align:32
+bul_4_eye3_TA_tex_txt = .data:0x00191340; // type:object size:0x100 scope:global align:32
+bul_4_eye4_TA_tex_txt = .data:0x00191440; // type:object size:0x100 scope:global align:32
+bul_4_eye5_TA_tex_txt = .data:0x00191540; // type:object size:0x100 scope:global align:32
+bul_4_eye6_TA_tex_txt = .data:0x00191640; // type:object size:0x100 scope:global align:32
+bul_4_eye7_TA_tex_txt = .data:0x00191740; // type:object size:0x100 scope:global align:32
+bul_4_eye8_TA_tex_txt = .data:0x00191840; // type:object size:0x100 scope:global align:32
+bul_4_mouth1_TA_tex_txt = .data:0x00191940; // type:object size:0x100 scope:global align:32
+bul_4_mouth2_TA_tex_txt = .data:0x00191A40; // type:object size:0x100 scope:global align:32
+bul_4_mouth3_TA_tex_txt = .data:0x00191B40; // type:object size:0x100 scope:global align:32
+bul_4_mouth4_TA_tex_txt = .data:0x00191C40; // type:object size:0x100 scope:global align:32
+bul_4_mouth5_TA_tex_txt = .data:0x00191D40; // type:object size:0x100 scope:global align:32
+bul_4_mouth6_TA_tex_txt = .data:0x00191E40; // type:object size:0x100 scope:global align:32
+bul_4_tmem_txt = .data:0x00191F40; // type:object size:0x400 scope:global align:32
+cml_1_v = .data:0x00192340; // type:object size:0x1C30 scope:global align:8
+head_cml_model = .data:0x00193F70; // type:object size:0x1C0 scope:global align:8
+mouth_cml_model = .data:0x00194130; // type:object size:0xC0 scope:global align:8
+Rarm2_cml_model = .data:0x001941F0; // type:object size:0x88 scope:global align:8
+Rarm1_cml_model = .data:0x00194278; // type:object size:0x78 scope:global align:8
+Larm2_cml_model = .data:0x001942F0; // type:object size:0x88 scope:global align:8
+Larm1_cml_model = .data:0x00194378; // type:object size:0x78 scope:global align:8
+chest_cml_model = .data:0x001943F0; // type:object size:0x250 scope:global align:8
+Rfoot2_cml_model = .data:0x00194640; // type:object size:0x80 scope:global align:8
+Rfoot1_cml_model = .data:0x001946C0; // type:object size:0x58 scope:global align:8
+Lfoot2_cml_model = .data:0x00194718; // type:object size:0x80 scope:global align:8
+Lfoot1_cml_model = .data:0x00194798; // type:object size:0x58 scope:global align:8
+base_cml_model = .data:0x001947F0; // type:object size:0x78 scope:global align:8
+cKF_je_r_cml_1_tbl = .data:0x00194868; // type:object size:0x138 scope:global align:4
+cKF_bs_r_cml_1 = .data:0x001949A0; // type:object size:0x8 scope:global align:4
+cml_1_pal = .data:0x001949C0; // type:object size:0x20 scope:global align:32
+cml_1_eye1_TA_tex_txt = .data:0x001949E0; // type:object size:0x100 scope:global align:32
+cml_1_eye2_TA_tex_txt = .data:0x00194AE0; // type:object size:0x100 scope:global align:32
+cml_1_eye3_TA_tex_txt = .data:0x00194BE0; // type:object size:0x100 scope:global align:32
+cml_1_eye4_TA_tex_txt = .data:0x00194CE0; // type:object size:0x100 scope:global align:32
+cml_1_eye5_TA_tex_txt = .data:0x00194DE0; // type:object size:0x100 scope:global align:32
+cml_1_eye6_TA_tex_txt = .data:0x00194EE0; // type:object size:0x100 scope:global align:32
+cml_1_eye7_TA_tex_txt = .data:0x00194FE0; // type:object size:0x100 scope:global align:32
+cml_1_eye8_TA_tex_txt = .data:0x001950E0; // type:object size:0x100 scope:global align:32
+cml_1_tmem_txt = .data:0x001951E0; // type:object size:0x780 scope:global align:32
+cat_1_v = .data:0x00195960; // type:object size:0x1430 scope:global align:8
+head_cat_model = .data:0x00196D90; // type:object size:0x158 scope:global align:8
+Rarm2_cat_model = .data:0x00196EE8; // type:object size:0x88 scope:global align:8
+Rarm1_cat_model = .data:0x00196F70; // type:object size:0x78 scope:global align:8
+Larm2_cat_model = .data:0x00196FE8; // type:object size:0x88 scope:global align:8
+Larm1_cat_model = .data:0x00197070; // type:object size:0x78 scope:global align:8
+chest_cat_model = .data:0x001970E8; // type:object size:0x90 scope:global align:8
+tail1_cat_model = .data:0x00197178; // type:object size:0x58 scope:global align:8
+tail2_cat_model = .data:0x001971D0; // type:object size:0x90 scope:global align:8
+Rfoot2_cat_model = .data:0x00197260; // type:object size:0x90 scope:global align:8
+Rfoot1_cat_model = .data:0x001972F0; // type:object size:0xC0 scope:global align:8
+Lfoot2_cat_model = .data:0x001973B0; // type:object size:0x90 scope:global align:8
+Lfoot1_cat_model = .data:0x00197440; // type:object size:0xC0 scope:global align:8
+base_cat_model = .data:0x00197500; // type:object size:0x70 scope:global align:8
+cKF_je_r_cat_1_tbl = .data:0x00197570; // type:object size:0x138 scope:global align:4
+cKF_bs_r_cat_1 = .data:0x001976A8; // type:object size:0x8 scope:global align:4
+cat_1_pal = .data:0x001976C0; // type:object size:0x20 scope:global align:32
+cat_1_eye1_TA_tex_txt = .data:0x001976E0; // type:object size:0x100 scope:global align:32
+cat_1_eye2_TA_tex_txt = .data:0x001977E0; // type:object size:0x100 scope:global align:32
+cat_1_eye3_TA_tex_txt = .data:0x001978E0; // type:object size:0x100 scope:global align:32
+cat_1_eye4_TA_tex_txt = .data:0x001979E0; // type:object size:0x100 scope:global align:32
+cat_1_eye5_TA_tex_txt = .data:0x00197AE0; // type:object size:0x100 scope:global align:32
+cat_1_eye6_TA_tex_txt = .data:0x00197BE0; // type:object size:0x100 scope:global align:32
+cat_1_eye7_TA_tex_txt = .data:0x00197CE0; // type:object size:0x100 scope:global align:32
+cat_1_eye8_TA_tex_txt = .data:0x00197DE0; // type:object size:0x100 scope:global align:32
+cat_1_mouth1_TA_tex_txt = .data:0x00197EE0; // type:object size:0x100 scope:global align:32
+cat_1_mouth2_TA_tex_txt = .data:0x00197FE0; // type:object size:0x100 scope:global align:32
+cat_1_mouth3_TA_tex_txt = .data:0x001980E0; // type:object size:0x100 scope:global align:32
+cat_1_mouth4_TA_tex_txt = .data:0x001981E0; // type:object size:0x100 scope:global align:32
+cat_1_mouth5_TA_tex_txt = .data:0x001982E0; // type:object size:0x100 scope:global align:32
+cat_1_mouth6_TA_tex_txt = .data:0x001983E0; // type:object size:0x100 scope:global align:32
+cat_1_tmem_txt = .data:0x001984E0; // type:object size:0x400 scope:global align:32
+cat_2_pal = .data:0x001988E0; // type:object size:0x20 scope:global align:32
+cat_2_eye1_TA_tex_txt = .data:0x00198900; // type:object size:0x100 scope:global align:32
+cat_2_eye2_TA_tex_txt = .data:0x00198A00; // type:object size:0x100 scope:global align:32
+cat_2_eye3_TA_tex_txt = .data:0x00198B00; // type:object size:0x100 scope:global align:32
+cat_2_eye4_TA_tex_txt = .data:0x00198C00; // type:object size:0x100 scope:global align:32
+cat_2_eye5_TA_tex_txt = .data:0x00198D00; // type:object size:0x100 scope:global align:32
+cat_2_eye6_TA_tex_txt = .data:0x00198E00; // type:object size:0x100 scope:global align:32
+cat_2_eye7_TA_tex_txt = .data:0x00198F00; // type:object size:0x100 scope:global align:32
+cat_2_eye8_TA_tex_txt = .data:0x00199000; // type:object size:0x100 scope:global align:32
+cat_2_mouth1_TA_tex_txt = .data:0x00199100; // type:object size:0x100 scope:global align:32
+cat_2_mouth2_TA_tex_txt = .data:0x00199200; // type:object size:0x100 scope:global align:32
+cat_2_mouth3_TA_tex_txt = .data:0x00199300; // type:object size:0x100 scope:global align:32
+cat_2_mouth4_TA_tex_txt = .data:0x00199400; // type:object size:0x100 scope:global align:32
+cat_2_mouth5_TA_tex_txt = .data:0x00199500; // type:object size:0x100 scope:global align:32
+cat_2_mouth6_TA_tex_txt = .data:0x00199600; // type:object size:0x100 scope:global align:32
+cat_2_tmem_txt = .data:0x00199700; // type:object size:0x400 scope:global align:32
+cat_11_pal = .data:0x00199B00; // type:object size:0x20 scope:global align:32
+cat_11_eye1_TA_tex_txt = .data:0x00199B20; // type:object size:0x100 scope:global align:32
+cat_11_eye2_TA_tex_txt = .data:0x00199C20; // type:object size:0x100 scope:global align:32
+cat_11_eye3_TA_tex_txt = .data:0x00199D20; // type:object size:0x100 scope:global align:32
+cat_11_eye4_TA_tex_txt = .data:0x00199E20; // type:object size:0x100 scope:global align:32
+cat_11_eye5_TA_tex_txt = .data:0x00199F20; // type:object size:0x100 scope:global align:32
+cat_11_eye6_TA_tex_txt = .data:0x0019A020; // type:object size:0x100 scope:global align:32
+cat_11_eye7_TA_tex_txt = .data:0x0019A120; // type:object size:0x100 scope:global align:32
+cat_11_eye8_TA_tex_txt = .data:0x0019A220; // type:object size:0x100 scope:global align:32
+cat_11_mouth1_TA_tex_txt = .data:0x0019A320; // type:object size:0x100 scope:global align:32
+cat_11_mouth2_TA_tex_txt = .data:0x0019A420; // type:object size:0x100 scope:global align:32
+cat_11_mouth3_TA_tex_txt = .data:0x0019A520; // type:object size:0x100 scope:global align:32
+cat_11_mouth4_TA_tex_txt = .data:0x0019A620; // type:object size:0x100 scope:global align:32
+cat_11_mouth5_TA_tex_txt = .data:0x0019A720; // type:object size:0x100 scope:global align:32
+cat_11_mouth6_TA_tex_txt = .data:0x0019A820; // type:object size:0x100 scope:global align:32
+cat_11_tmem_txt = .data:0x0019A920; // type:object size:0x400 scope:global align:32
+cat_12_pal = .data:0x0019AD20; // type:object size:0x20 scope:global align:32
+cat_12_eye1_TA_tex_txt = .data:0x0019AD40; // type:object size:0x100 scope:global align:32
+cat_12_eye2_TA_tex_txt = .data:0x0019AE40; // type:object size:0x100 scope:global align:32
+cat_12_eye3_TA_tex_txt = .data:0x0019AF40; // type:object size:0x100 scope:global align:32
+cat_12_eye4_TA_tex_txt = .data:0x0019B040; // type:object size:0x100 scope:global align:32
+cat_12_eye5_TA_tex_txt = .data:0x0019B140; // type:object size:0x100 scope:global align:32
+cat_12_eye6_TA_tex_txt = .data:0x0019B240; // type:object size:0x100 scope:global align:32
+cat_12_eye7_TA_tex_txt = .data:0x0019B340; // type:object size:0x100 scope:global align:32
+cat_12_eye8_TA_tex_txt = .data:0x0019B440; // type:object size:0x100 scope:global align:32
+cat_12_mouth1_TA_tex_txt = .data:0x0019B540; // type:object size:0x100 scope:global align:32
+cat_12_mouth2_TA_tex_txt = .data:0x0019B640; // type:object size:0x100 scope:global align:32
+cat_12_mouth3_TA_tex_txt = .data:0x0019B740; // type:object size:0x100 scope:global align:32
+cat_12_mouth4_TA_tex_txt = .data:0x0019B840; // type:object size:0x100 scope:global align:32
+cat_12_mouth5_TA_tex_txt = .data:0x0019B940; // type:object size:0x100 scope:global align:32
+cat_12_mouth6_TA_tex_txt = .data:0x0019BA40; // type:object size:0x100 scope:global align:32
+cat_12_tmem_txt = .data:0x0019BB40; // type:object size:0x400 scope:global align:32
+cat_13_pal = .data:0x0019BF40; // type:object size:0x20 scope:global align:32
+cat_13_eye1_TA_tex_txt = .data:0x0019BF60; // type:object size:0x100 scope:global align:32
+cat_13_eye2_TA_tex_txt = .data:0x0019C060; // type:object size:0x100 scope:global align:32
+cat_13_eye3_TA_tex_txt = .data:0x0019C160; // type:object size:0x100 scope:global align:32
+cat_13_eye4_TA_tex_txt = .data:0x0019C260; // type:object size:0x100 scope:global align:32
+cat_13_eye5_TA_tex_txt = .data:0x0019C360; // type:object size:0x100 scope:global align:32
+cat_13_eye6_TA_tex_txt = .data:0x0019C460; // type:object size:0x100 scope:global align:32
+cat_13_eye7_TA_tex_txt = .data:0x0019C560; // type:object size:0x100 scope:global align:32
+cat_13_eye8_TA_tex_txt = .data:0x0019C660; // type:object size:0x100 scope:global align:32
+cat_13_mouth1_TA_tex_txt = .data:0x0019C760; // type:object size:0x100 scope:global align:32 data:string
+cat_13_mouth2_TA_tex_txt = .data:0x0019C860; // type:object size:0x100 scope:global align:32
+cat_13_mouth3_TA_tex_txt = .data:0x0019C960; // type:object size:0x100 scope:global align:32
+cat_13_mouth4_TA_tex_txt = .data:0x0019CA60; // type:object size:0x100 scope:global align:32 data:string
+cat_13_mouth5_TA_tex_txt = .data:0x0019CB60; // type:object size:0x100 scope:global align:32
+cat_13_mouth6_TA_tex_txt = .data:0x0019CC60; // type:object size:0x100 scope:global align:32
+cat_13_tmem_txt = .data:0x0019CD60; // type:object size:0x400 scope:global align:32
+cat_14_pal = .data:0x0019D160; // type:object size:0x20 scope:global align:32
+cat_14_eye1_TA_tex_txt = .data:0x0019D180; // type:object size:0x100 scope:global align:32
+cat_14_eye2_TA_tex_txt = .data:0x0019D280; // type:object size:0x100 scope:global align:32
+cat_14_eye3_TA_tex_txt = .data:0x0019D380; // type:object size:0x100 scope:global align:32
+cat_14_eye4_TA_tex_txt = .data:0x0019D480; // type:object size:0x100 scope:global align:32
+cat_14_eye5_TA_tex_txt = .data:0x0019D580; // type:object size:0x100 scope:global align:32
+cat_14_eye6_TA_tex_txt = .data:0x0019D680; // type:object size:0x100 scope:global align:32
+cat_14_eye7_TA_tex_txt = .data:0x0019D780; // type:object size:0x100 scope:global align:32
+cat_14_eye8_TA_tex_txt = .data:0x0019D880; // type:object size:0x100 scope:global align:32
+cat_14_mouth1_TA_tex_txt = .data:0x0019D980; // type:object size:0x100 scope:global align:32
+cat_14_mouth2_TA_tex_txt = .data:0x0019DA80; // type:object size:0x100 scope:global align:32
+cat_14_mouth3_TA_tex_txt = .data:0x0019DB80; // type:object size:0x100 scope:global align:32
+cat_14_mouth4_TA_tex_txt = .data:0x0019DC80; // type:object size:0x100 scope:global align:32
+cat_14_mouth5_TA_tex_txt = .data:0x0019DD80; // type:object size:0x100 scope:global align:32
+cat_14_mouth6_TA_tex_txt = .data:0x0019DE80; // type:object size:0x100 scope:global align:32
+cat_14_tmem_txt = .data:0x0019DF80; // type:object size:0x400 scope:global align:32
+cat_15_pal = .data:0x0019E380; // type:object size:0x20 scope:global align:32
+cat_15_eye1_TA_tex_txt = .data:0x0019E3A0; // type:object size:0x100 scope:global align:32
+cat_15_eye2_TA_tex_txt = .data:0x0019E4A0; // type:object size:0x100 scope:global align:32
+cat_15_eye3_TA_tex_txt = .data:0x0019E5A0; // type:object size:0x100 scope:global align:32
+cat_15_eye4_TA_tex_txt = .data:0x0019E6A0; // type:object size:0x100 scope:global align:32
+cat_15_eye5_TA_tex_txt = .data:0x0019E7A0; // type:object size:0x100 scope:global align:32
+cat_15_eye6_TA_tex_txt = .data:0x0019E8A0; // type:object size:0x100 scope:global align:32
+cat_15_eye7_TA_tex_txt = .data:0x0019E9A0; // type:object size:0x100 scope:global align:32
+cat_15_eye8_TA_tex_txt = .data:0x0019EAA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth1_TA_tex_txt = .data:0x0019EBA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth2_TA_tex_txt = .data:0x0019ECA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth3_TA_tex_txt = .data:0x0019EDA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth4_TA_tex_txt = .data:0x0019EEA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth5_TA_tex_txt = .data:0x0019EFA0; // type:object size:0x100 scope:global align:32
+cat_15_mouth6_TA_tex_txt = .data:0x0019F0A0; // type:object size:0x100 scope:global align:32
+cat_15_tmem_txt = .data:0x0019F1A0; // type:object size:0x400 scope:global align:32
+cat_3_pal = .data:0x0019F5A0; // type:object size:0x20 scope:global align:32
+cat_3_eye1_TA_tex_txt = .data:0x0019F5C0; // type:object size:0x100 scope:global align:32
+cat_3_eye2_TA_tex_txt = .data:0x0019F6C0; // type:object size:0x100 scope:global align:32
+cat_3_eye3_TA_tex_txt = .data:0x0019F7C0; // type:object size:0x100 scope:global align:32
+cat_3_eye4_TA_tex_txt = .data:0x0019F8C0; // type:object size:0x100 scope:global align:32
+cat_3_eye5_TA_tex_txt = .data:0x0019F9C0; // type:object size:0x100 scope:global align:32
+cat_3_eye6_TA_tex_txt = .data:0x0019FAC0; // type:object size:0x100 scope:global align:32
+cat_3_eye7_TA_tex_txt = .data:0x0019FBC0; // type:object size:0x100 scope:global align:32
+cat_3_eye8_TA_tex_txt = .data:0x0019FCC0; // type:object size:0x100 scope:global align:32
+cat_3_mouth1_TA_tex_txt = .data:0x0019FDC0; // type:object size:0x100 scope:global align:32
+cat_3_mouth2_TA_tex_txt = .data:0x0019FEC0; // type:object size:0x100 scope:global align:32
+cat_3_mouth3_TA_tex_txt = .data:0x0019FFC0; // type:object size:0x100 scope:global align:32
+cat_3_mouth4_TA_tex_txt = .data:0x001A00C0; // type:object size:0x100 scope:global align:32
+cat_3_mouth5_TA_tex_txt = .data:0x001A01C0; // type:object size:0x100 scope:global align:32
+cat_3_mouth6_TA_tex_txt = .data:0x001A02C0; // type:object size:0x100 scope:global align:32
+cat_3_tmem_txt = .data:0x001A03C0; // type:object size:0x400 scope:global align:32
+cat_4_pal = .data:0x001A07C0; // type:object size:0x20 scope:global align:32
+cat_4_eye1_TA_tex_txt = .data:0x001A07E0; // type:object size:0x100 scope:global align:32
+cat_4_eye2_TA_tex_txt = .data:0x001A08E0; // type:object size:0x100 scope:global align:32
+cat_4_eye3_TA_tex_txt = .data:0x001A09E0; // type:object size:0x100 scope:global align:32
+cat_4_eye4_TA_tex_txt = .data:0x001A0AE0; // type:object size:0x100 scope:global align:32
+cat_4_eye5_TA_tex_txt = .data:0x001A0BE0; // type:object size:0x100 scope:global align:32
+cat_4_eye6_TA_tex_txt = .data:0x001A0CE0; // type:object size:0x100 scope:global align:32
+cat_4_eye7_TA_tex_txt = .data:0x001A0DE0; // type:object size:0x100 scope:global align:32
+cat_4_eye8_TA_tex_txt = .data:0x001A0EE0; // type:object size:0x100 scope:global align:32
+cat_4_mouth1_TA_tex_txt = .data:0x001A0FE0; // type:object size:0x100 scope:global align:32
+cat_4_mouth2_TA_tex_txt = .data:0x001A10E0; // type:object size:0x100 scope:global align:32
+cat_4_mouth3_TA_tex_txt = .data:0x001A11E0; // type:object size:0x100 scope:global align:32
+cat_4_mouth4_TA_tex_txt = .data:0x001A12E0; // type:object size:0x100 scope:global align:32
+cat_4_mouth5_TA_tex_txt = .data:0x001A13E0; // type:object size:0x100 scope:global align:32
+cat_4_mouth6_TA_tex_txt = .data:0x001A14E0; // type:object size:0x100 scope:global align:32
+cat_4_tmem_txt = .data:0x001A15E0; // type:object size:0x400 scope:global align:32
+cat_5_pal = .data:0x001A19E0; // type:object size:0x20 scope:global align:32
+cat_5_eye1_TA_tex_txt = .data:0x001A1A00; // type:object size:0x100 scope:global align:32
+cat_5_eye2_TA_tex_txt = .data:0x001A1B00; // type:object size:0x100 scope:global align:32
+cat_5_eye3_TA_tex_txt = .data:0x001A1C00; // type:object size:0x100 scope:global align:32
+cat_5_eye4_TA_tex_txt = .data:0x001A1D00; // type:object size:0x100 scope:global align:32
+cat_5_eye5_TA_tex_txt = .data:0x001A1E00; // type:object size:0x100 scope:global align:32
+cat_5_eye6_TA_tex_txt = .data:0x001A1F00; // type:object size:0x100 scope:global align:32
+cat_5_eye7_TA_tex_txt = .data:0x001A2000; // type:object size:0x100 scope:global align:32
+cat_5_eye8_TA_tex_txt = .data:0x001A2100; // type:object size:0x100 scope:global align:32
+cat_5_mouth1_TA_tex_txt = .data:0x001A2200; // type:object size:0x100 scope:global align:32
+cat_5_mouth2_TA_tex_txt = .data:0x001A2300; // type:object size:0x100 scope:global align:32
+cat_5_mouth3_TA_tex_txt = .data:0x001A2400; // type:object size:0x100 scope:global align:32
+cat_5_mouth4_TA_tex_txt = .data:0x001A2500; // type:object size:0x100 scope:global align:32
+cat_5_mouth5_TA_tex_txt = .data:0x001A2600; // type:object size:0x100 scope:global align:32
+cat_5_mouth6_TA_tex_txt = .data:0x001A2700; // type:object size:0x100 scope:global align:32
+cat_5_tmem_txt = .data:0x001A2800; // type:object size:0x400 scope:global align:32
+cat_6_pal = .data:0x001A2C00; // type:object size:0x20 scope:global align:32
+cat_6_eye1_TA_tex_txt = .data:0x001A2C20; // type:object size:0x100 scope:global align:32
+cat_6_eye2_TA_tex_txt = .data:0x001A2D20; // type:object size:0x100 scope:global align:32
+cat_6_eye3_TA_tex_txt = .data:0x001A2E20; // type:object size:0x100 scope:global align:32
+cat_6_eye4_TA_tex_txt = .data:0x001A2F20; // type:object size:0x100 scope:global align:32
+cat_6_eye5_TA_tex_txt = .data:0x001A3020; // type:object size:0x100 scope:global align:32
+cat_6_eye6_TA_tex_txt = .data:0x001A3120; // type:object size:0x100 scope:global align:32
+cat_6_eye7_TA_tex_txt = .data:0x001A3220; // type:object size:0x100 scope:global align:32
+cat_6_eye8_TA_tex_txt = .data:0x001A3320; // type:object size:0x100 scope:global align:32
+cat_6_mouth1_TA_tex_txt = .data:0x001A3420; // type:object size:0x100 scope:global align:32
+cat_6_mouth2_TA_tex_txt = .data:0x001A3520; // type:object size:0x100 scope:global align:32
+cat_6_mouth3_TA_tex_txt = .data:0x001A3620; // type:object size:0x100 scope:global align:32
+cat_6_mouth4_TA_tex_txt = .data:0x001A3720; // type:object size:0x100 scope:global align:32
+cat_6_mouth5_TA_tex_txt = .data:0x001A3820; // type:object size:0x100 scope:global align:32
+cat_6_mouth6_TA_tex_txt = .data:0x001A3920; // type:object size:0x100 scope:global align:32
+cat_6_tmem_txt = .data:0x001A3A20; // type:object size:0x400 scope:global align:32
+cat_7_pal = .data:0x001A3E20; // type:object size:0x20 scope:global align:32
+cat_7_eye1_TA_tex_txt = .data:0x001A3E40; // type:object size:0x100 scope:global align:32
+cat_7_eye2_TA_tex_txt = .data:0x001A3F40; // type:object size:0x100 scope:global align:32
+cat_7_eye3_TA_tex_txt = .data:0x001A4040; // type:object size:0x100 scope:global align:32
+cat_7_eye4_TA_tex_txt = .data:0x001A4140; // type:object size:0x100 scope:global align:32
+cat_7_eye5_TA_tex_txt = .data:0x001A4240; // type:object size:0x100 scope:global align:32
+cat_7_eye6_TA_tex_txt = .data:0x001A4340; // type:object size:0x100 scope:global align:32
+cat_7_eye7_TA_tex_txt = .data:0x001A4440; // type:object size:0x100 scope:global align:32
+cat_7_eye8_TA_tex_txt = .data:0x001A4540; // type:object size:0x100 scope:global align:32
+cat_7_mouth1_TA_tex_txt = .data:0x001A4640; // type:object size:0x100 scope:global align:32
+cat_7_mouth2_TA_tex_txt = .data:0x001A4740; // type:object size:0x100 scope:global align:32
+cat_7_mouth3_TA_tex_txt = .data:0x001A4840; // type:object size:0x100 scope:global align:32
+cat_7_mouth4_TA_tex_txt = .data:0x001A4940; // type:object size:0x100 scope:global align:32
+cat_7_mouth5_TA_tex_txt = .data:0x001A4A40; // type:object size:0x100 scope:global align:32
+cat_7_mouth6_TA_tex_txt = .data:0x001A4B40; // type:object size:0x100 scope:global align:32
+cat_7_tmem_txt = .data:0x001A4C40; // type:object size:0x400 scope:global align:32
+cat_8_pal = .data:0x001A5040; // type:object size:0x20 scope:global align:32
+cat_8_eye1_TA_tex_txt = .data:0x001A5060; // type:object size:0x100 scope:global align:32
+cat_8_eye2_TA_tex_txt = .data:0x001A5160; // type:object size:0x100 scope:global align:32
+cat_8_eye3_TA_tex_txt = .data:0x001A5260; // type:object size:0x100 scope:global align:32
+cat_8_eye4_TA_tex_txt = .data:0x001A5360; // type:object size:0x100 scope:global align:32
+cat_8_eye5_TA_tex_txt = .data:0x001A5460; // type:object size:0x100 scope:global align:32
+cat_8_eye6_TA_tex_txt = .data:0x001A5560; // type:object size:0x100 scope:global align:32
+cat_8_eye7_TA_tex_txt = .data:0x001A5660; // type:object size:0x100 scope:global align:32
+cat_8_eye8_TA_tex_txt = .data:0x001A5760; // type:object size:0x100 scope:global align:32
+cat_8_mouth1_TA_tex_txt = .data:0x001A5860; // type:object size:0x100 scope:global align:32
+cat_8_mouth2_TA_tex_txt = .data:0x001A5960; // type:object size:0x100 scope:global align:32
+cat_8_mouth3_TA_tex_txt = .data:0x001A5A60; // type:object size:0x100 scope:global align:32
+cat_8_mouth4_TA_tex_txt = .data:0x001A5B60; // type:object size:0x100 scope:global align:32
+cat_8_mouth5_TA_tex_txt = .data:0x001A5C60; // type:object size:0x100 scope:global align:32
+cat_8_mouth6_TA_tex_txt = .data:0x001A5D60; // type:object size:0x100 scope:global align:32
+cat_8_tmem_txt = .data:0x001A5E60; // type:object size:0x400 scope:global align:32
+cat_9_pal = .data:0x001A6260; // type:object size:0x20 scope:global align:32
+cat_9_eye1_TA_tex_txt = .data:0x001A6280; // type:object size:0x100 scope:global align:32
+cat_9_eye2_TA_tex_txt = .data:0x001A6380; // type:object size:0x100 scope:global align:32
+cat_9_eye3_TA_tex_txt = .data:0x001A6480; // type:object size:0x100 scope:global align:32
+cat_9_eye4_TA_tex_txt = .data:0x001A6580; // type:object size:0x100 scope:global align:32
+cat_9_eye5_TA_tex_txt = .data:0x001A6680; // type:object size:0x100 scope:global align:32
+cat_9_eye6_TA_tex_txt = .data:0x001A6780; // type:object size:0x100 scope:global align:32
+cat_9_eye7_TA_tex_txt = .data:0x001A6880; // type:object size:0x100 scope:global align:32
+cat_9_eye8_TA_tex_txt = .data:0x001A6980; // type:object size:0x100 scope:global align:32
+cat_9_mouth1_TA_tex_txt = .data:0x001A6A80; // type:object size:0x100 scope:global align:32
+cat_9_mouth2_TA_tex_txt = .data:0x001A6B80; // type:object size:0x100 scope:global align:32
+cat_9_mouth3_TA_tex_txt = .data:0x001A6C80; // type:object size:0x100 scope:global align:32
+cat_9_mouth4_TA_tex_txt = .data:0x001A6D80; // type:object size:0x100 scope:global align:32
+cat_9_mouth5_TA_tex_txt = .data:0x001A6E80; // type:object size:0x100 scope:global align:32
+cat_9_mouth6_TA_tex_txt = .data:0x001A6F80; // type:object size:0x100 scope:global align:32
+cat_9_tmem_txt = .data:0x001A7080; // type:object size:0x400 scope:global align:32
+cat_10_pal = .data:0x001A7480; // type:object size:0x20 scope:global align:32
+cat_10_eye1_TA_tex_txt = .data:0x001A74A0; // type:object size:0x100 scope:global align:32
+cat_10_eye2_TA_tex_txt = .data:0x001A75A0; // type:object size:0x100 scope:global align:32
+cat_10_eye3_TA_tex_txt = .data:0x001A76A0; // type:object size:0x100 scope:global align:32
+cat_10_eye4_TA_tex_txt = .data:0x001A77A0; // type:object size:0x100 scope:global align:32
+cat_10_eye5_TA_tex_txt = .data:0x001A78A0; // type:object size:0x100 scope:global align:32
+cat_10_eye6_TA_tex_txt = .data:0x001A79A0; // type:object size:0x100 scope:global align:32
+cat_10_eye7_TA_tex_txt = .data:0x001A7AA0; // type:object size:0x100 scope:global align:32
+cat_10_eye8_TA_tex_txt = .data:0x001A7BA0; // type:object size:0x100 scope:global align:32
+cat_10_mouth1_TA_tex_txt = .data:0x001A7CA0; // type:object size:0x100 scope:global align:32
+cat_10_mouth2_TA_tex_txt = .data:0x001A7DA0; // type:object size:0x100 scope:global align:32
+cat_10_mouth3_TA_tex_txt = .data:0x001A7EA0; // type:object size:0x100 scope:global align:32
+cat_10_mouth4_TA_tex_txt = .data:0x001A7FA0; // type:object size:0x100 scope:global align:32
+cat_10_mouth5_TA_tex_txt = .data:0x001A80A0; // type:object size:0x100 scope:global align:32
+cat_10_mouth6_TA_tex_txt = .data:0x001A81A0; // type:object size:0x100 scope:global align:32
+cat_10_tmem_txt = .data:0x001A82A0; // type:object size:0x400 scope:global align:32
+chn_1_v = .data:0x001A86A0; // type:object size:0x1C20 scope:global align:8
+head_chn_model = .data:0x001AA2C0; // type:object size:0x240 scope:global align:8
+mouth_chn_model = .data:0x001AA500; // type:object size:0x78 scope:global align:8
+Rarm2_chn_model = .data:0x001AA578; // type:object size:0x80 scope:global align:8
+Rarm1_chn_model = .data:0x001AA5F8; // type:object size:0x78 scope:global align:8
+Larm2_chn_model = .data:0x001AA670; // type:object size:0x80 scope:global align:8
+Larm1_chn_model = .data:0x001AA6F0; // type:object size:0x78 scope:global align:8
+chest_chn_model = .data:0x001AA768; // type:object size:0xC0 scope:global align:8
+tail1_chn_model = .data:0x001AA828; // type:object size:0xC0 scope:global align:8
+Rfoot3_chn_model = .data:0x001AA8E8; // type:object size:0x98 scope:global align:8
+Rfoot2_chn_model = .data:0x001AA980; // type:object size:0x80 scope:global align:8
+Rfoot1_chn_model = .data:0x001AAA00; // type:object size:0xC0 scope:global align:8
+Lfoot3_chn_model = .data:0x001AAAC0; // type:object size:0x98 scope:global align:8
+Lfoot2_chn_model = .data:0x001AAB58; // type:object size:0x80 scope:global align:8
+Lfoot1_chn_model = .data:0x001AABD8; // type:object size:0xC0 scope:global align:8
+base_chn_model = .data:0x001AAC98; // type:object size:0x70 scope:global align:8
+cKF_je_r_chn_1_tbl = .data:0x001AAD08; // type:object size:0x138 scope:global align:4
+cKF_bs_r_chn_1 = .data:0x001AAE40; // type:object size:0x8 scope:global align:4
+chn_1_pal = .data:0x001AAE60; // type:object size:0x20 scope:global align:32
+chn_1_eye1_TA_tex_txt = .data:0x001AAE80; // type:object size:0x100 scope:global align:32
+chn_1_eye2_TA_tex_txt = .data:0x001AAF80; // type:object size:0x100 scope:global align:32
+chn_1_eye3_TA_tex_txt = .data:0x001AB080; // type:object size:0x100 scope:global align:32
+chn_1_eye4_TA_tex_txt = .data:0x001AB180; // type:object size:0x100 scope:global align:32
+chn_1_eye5_TA_tex_txt = .data:0x001AB280; // type:object size:0x100 scope:global align:32
+chn_1_eye6_TA_tex_txt = .data:0x001AB380; // type:object size:0x100 scope:global align:32
+chn_1_eye7_TA_tex_txt = .data:0x001AB480; // type:object size:0x100 scope:global align:32
+chn_1_eye8_TA_tex_txt = .data:0x001AB580; // type:object size:0x100 scope:global align:32
+chn_1_tmem_txt = .data:0x001AB680; // type:object size:0x4C0 scope:global align:32
+chn_2_pal = .data:0x001ABB40; // type:object size:0x20 scope:global align:32
+chn_2_eye1_TA_tex_txt = .data:0x001ABB60; // type:object size:0x100 scope:global align:32
+chn_2_eye2_TA_tex_txt = .data:0x001ABC60; // type:object size:0x100 scope:global align:32
+chn_2_eye3_TA_tex_txt = .data:0x001ABD60; // type:object size:0x100 scope:global align:32
+chn_2_eye4_TA_tex_txt = .data:0x001ABE60; // type:object size:0x100 scope:global align:32
+chn_2_eye5_TA_tex_txt = .data:0x001ABF60; // type:object size:0x100 scope:global align:32
+chn_2_eye6_TA_tex_txt = .data:0x001AC060; // type:object size:0x100 scope:global align:32
+chn_2_eye7_TA_tex_txt = .data:0x001AC160; // type:object size:0x100 scope:global align:32
+chn_2_eye8_TA_tex_txt = .data:0x001AC260; // type:object size:0x100 scope:global align:32
+chn_2_tmem_txt = .data:0x001AC360; // type:object size:0x4C0 scope:global align:32
+chn_3_pal = .data:0x001AC820; // type:object size:0x20 scope:global align:32
+chn_3_eye1_TA_tex_txt = .data:0x001AC840; // type:object size:0x100 scope:global align:32
+chn_3_eye2_TA_tex_txt = .data:0x001AC940; // type:object size:0x100 scope:global align:32
+chn_3_eye3_TA_tex_txt = .data:0x001ACA40; // type:object size:0x100 scope:global align:32
+chn_3_eye4_TA_tex_txt = .data:0x001ACB40; // type:object size:0x100 scope:global align:32
+chn_3_eye5_TA_tex_txt = .data:0x001ACC40; // type:object size:0x100 scope:global align:32
+chn_3_eye6_TA_tex_txt = .data:0x001ACD40; // type:object size:0x100 scope:global align:32
+chn_3_eye7_TA_tex_txt = .data:0x001ACE40; // type:object size:0x100 scope:global align:32
+chn_3_eye8_TA_tex_txt = .data:0x001ACF40; // type:object size:0x100 scope:global align:32
+chn_3_tmem_txt = .data:0x001AD040; // type:object size:0x4C0 scope:global align:32
+chn_4_pal = .data:0x001AD500; // type:object size:0x20 scope:global align:32
+chn_4_eye1_TA_tex_txt = .data:0x001AD520; // type:object size:0x100 scope:global align:32
+chn_4_eye2_TA_tex_txt = .data:0x001AD620; // type:object size:0x100 scope:global align:32
+chn_4_eye3_TA_tex_txt = .data:0x001AD720; // type:object size:0x100 scope:global align:32
+chn_4_eye4_TA_tex_txt = .data:0x001AD820; // type:object size:0x100 scope:global align:32
+chn_4_eye5_TA_tex_txt = .data:0x001AD920; // type:object size:0x100 scope:global align:32
+chn_4_eye6_TA_tex_txt = .data:0x001ADA20; // type:object size:0x100 scope:global align:32
+chn_4_eye7_TA_tex_txt = .data:0x001ADB20; // type:object size:0x100 scope:global align:32
+chn_4_eye8_TA_tex_txt = .data:0x001ADC20; // type:object size:0x100 scope:global align:32
+chn_4_tmem_txt = .data:0x001ADD20; // type:object size:0x4C0 scope:global align:32
+chn_5_pal = .data:0x001AE1E0; // type:object size:0x20 scope:global align:32
+chn_5_eye1_TA_tex_txt = .data:0x001AE200; // type:object size:0x100 scope:global align:32
+chn_5_eye2_TA_tex_txt = .data:0x001AE300; // type:object size:0x100 scope:global align:32
+chn_5_eye3_TA_tex_txt = .data:0x001AE400; // type:object size:0x100 scope:global align:32
+chn_5_eye4_TA_tex_txt = .data:0x001AE500; // type:object size:0x100 scope:global align:32
+chn_5_eye5_TA_tex_txt = .data:0x001AE600; // type:object size:0x100 scope:global align:32
+chn_5_eye6_TA_tex_txt = .data:0x001AE700; // type:object size:0x100 scope:global align:32
+chn_5_eye7_TA_tex_txt = .data:0x001AE800; // type:object size:0x100 scope:global align:32
+chn_5_eye8_TA_tex_txt = .data:0x001AE900; // type:object size:0x100 scope:global align:32
+chn_5_tmem_txt = .data:0x001AEA00; // type:object size:0x4C0 scope:global align:32
+chn_6_pal = .data:0x001AEEC0; // type:object size:0x20 scope:global align:32
+chn_6_eye1_TA_tex_txt = .data:0x001AEEE0; // type:object size:0x100 scope:global align:32
+chn_6_eye2_TA_tex_txt = .data:0x001AEFE0; // type:object size:0x100 scope:global align:32
+chn_6_eye3_TA_tex_txt = .data:0x001AF0E0; // type:object size:0x100 scope:global align:32
+chn_6_eye4_TA_tex_txt = .data:0x001AF1E0; // type:object size:0x100 scope:global align:32
+chn_6_eye5_TA_tex_txt = .data:0x001AF2E0; // type:object size:0x100 scope:global align:32
+chn_6_eye6_TA_tex_txt = .data:0x001AF3E0; // type:object size:0x100 scope:global align:32
+chn_6_eye7_TA_tex_txt = .data:0x001AF4E0; // type:object size:0x100 scope:global align:32
+chn_6_eye8_TA_tex_txt = .data:0x001AF5E0; // type:object size:0x100 scope:global align:32
+chn_6_tmem_txt = .data:0x001AF6E0; // type:object size:0x4C0 scope:global align:32
+chn_7_pal = .data:0x001AFBA0; // type:object size:0x20 scope:global align:32
+chn_7_eye1_TA_tex_txt = .data:0x001AFBC0; // type:object size:0x100 scope:global align:32
+chn_7_eye2_TA_tex_txt = .data:0x001AFCC0; // type:object size:0x100 scope:global align:32
+chn_7_eye3_TA_tex_txt = .data:0x001AFDC0; // type:object size:0x100 scope:global align:32
+chn_7_eye4_TA_tex_txt = .data:0x001AFEC0; // type:object size:0x100 scope:global align:32
+chn_7_eye5_TA_tex_txt = .data:0x001AFFC0; // type:object size:0x100 scope:global align:32
+chn_7_eye6_TA_tex_txt = .data:0x001B00C0; // type:object size:0x100 scope:global align:32
+chn_7_eye7_TA_tex_txt = .data:0x001B01C0; // type:object size:0x100 scope:global align:32
+chn_7_eye8_TA_tex_txt = .data:0x001B02C0; // type:object size:0x100 scope:global align:32
+chn_7_tmem_txt = .data:0x001B03C0; // type:object size:0x4C0 scope:global align:32
+chn_8_pal = .data:0x001B0880; // type:object size:0x20 scope:global align:32
+chn_8_eye1_TA_tex_txt = .data:0x001B08A0; // type:object size:0x100 scope:global align:32
+chn_8_eye2_TA_tex_txt = .data:0x001B09A0; // type:object size:0x100 scope:global align:32
+chn_8_eye3_TA_tex_txt = .data:0x001B0AA0; // type:object size:0x100 scope:global align:32
+chn_8_eye4_TA_tex_txt = .data:0x001B0BA0; // type:object size:0x100 scope:global align:32
+chn_8_eye5_TA_tex_txt = .data:0x001B0CA0; // type:object size:0x100 scope:global align:32
+chn_8_eye6_TA_tex_txt = .data:0x001B0DA0; // type:object size:0x100 scope:global align:32
+chn_8_eye7_TA_tex_txt = .data:0x001B0EA0; // type:object size:0x100 scope:global align:32
+chn_8_eye8_TA_tex_txt = .data:0x001B0FA0; // type:object size:0x100 scope:global align:32
+chn_8_tmem_txt = .data:0x001B10A0; // type:object size:0x4C0 scope:global align:32
+chn_9_pal = .data:0x001B1560; // type:object size:0x20 scope:global align:32
+chn_9_eye1_TA_tex_txt = .data:0x001B1580; // type:object size:0x100 scope:global align:32
+chn_9_eye2_TA_tex_txt = .data:0x001B1680; // type:object size:0x100 scope:global align:32
+chn_9_eye3_TA_tex_txt = .data:0x001B1780; // type:object size:0x100 scope:global align:32
+chn_9_eye4_TA_tex_txt = .data:0x001B1880; // type:object size:0x100 scope:global align:32
+chn_9_eye5_TA_tex_txt = .data:0x001B1980; // type:object size:0x100 scope:global align:32
+chn_9_eye6_TA_tex_txt = .data:0x001B1A80; // type:object size:0x100 scope:global align:32
+chn_9_eye7_TA_tex_txt = .data:0x001B1B80; // type:object size:0x100 scope:global align:32
+chn_9_eye8_TA_tex_txt = .data:0x001B1C80; // type:object size:0x100 scope:global align:32
+chn_9_tmem_txt = .data:0x001B1D80; // type:object size:0x4C0 scope:global align:32
+cbr_1_v = .data:0x001B2240; // type:object size:0x15A0 scope:global align:8
+head_cbr_model = .data:0x001B37E0; // type:object size:0x1D8 scope:global align:8
+Rarm2_cbr_model = .data:0x001B39B8; // type:object size:0x90 scope:global align:8
+Rarm1_cbr_model = .data:0x001B3A48; // type:object size:0x88 scope:global align:8
+Larm2_cbr_model = .data:0x001B3AD0; // type:object size:0x90 scope:global align:8
+Larm1_cbr_model = .data:0x001B3B60; // type:object size:0x88 scope:global align:8
+chest_cbr_model = .data:0x001B3BE8; // type:object size:0xC0 scope:global align:8
+tail1_cbr_model = .data:0x001B3CA8; // type:object size:0x68 scope:global align:8
+Rfoot2_cbr_model = .data:0x001B3D10; // type:object size:0x98 scope:global align:8
+Rfoot1_cbr_model = .data:0x001B3DA8; // type:object size:0x68 scope:global align:8
+Lfoot2_cbr_model = .data:0x001B3E10; // type:object size:0x98 scope:global align:8
+Lfoot1_cbr_model = .data:0x001B3EA8; // type:object size:0x68 scope:global align:8
+base_cbr_model = .data:0x001B3F10; // type:object size:0xD0 scope:global align:8
+cKF_je_r_cbr_1_tbl = .data:0x001B3FE0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_cbr_1 = .data:0x001B4118; // type:object size:0x8 scope:global align:4
+cbr_1_pal = .data:0x001B4120; // type:object size:0x20 scope:global align:32
+cbr_1_eye1_TA_tex_txt = .data:0x001B4140; // type:object size:0x100 scope:global align:32
+cbr_1_eye2_TA_tex_txt = .data:0x001B4240; // type:object size:0x100 scope:global align:32
+cbr_1_eye3_TA_tex_txt = .data:0x001B4340; // type:object size:0x100 scope:global align:32
+cbr_1_eye4_TA_tex_txt = .data:0x001B4440; // type:object size:0x100 scope:global align:32
+cbr_1_eye5_TA_tex_txt = .data:0x001B4540; // type:object size:0x100 scope:global align:32
+cbr_1_eye6_TA_tex_txt = .data:0x001B4640; // type:object size:0x100 scope:global align:32
+cbr_1_eye7_TA_tex_txt = .data:0x001B4740; // type:object size:0x100 scope:global align:32
+cbr_1_eye8_TA_tex_txt = .data:0x001B4840; // type:object size:0x100 scope:global align:32
+cbr_1_mouth1_TA_tex_txt = .data:0x001B4940; // type:object size:0x100 scope:global align:32
+cbr_1_mouth2_TA_tex_txt = .data:0x001B4A40; // type:object size:0x100 scope:global align:32
+cbr_1_mouth3_TA_tex_txt = .data:0x001B4B40; // type:object size:0x100 scope:global align:32
+cbr_1_mouth4_TA_tex_txt = .data:0x001B4C40; // type:object size:0x100 scope:global align:32
+cbr_1_mouth5_TA_tex_txt = .data:0x001B4D40; // type:object size:0x100 scope:global align:32
+cbr_1_mouth6_TA_tex_txt = .data:0x001B4E40; // type:object size:0x100 scope:global align:32
+cbr_1_tmem_txt = .data:0x001B4F40; // type:object size:0x400 scope:global align:32
+cbr_2_pal = .data:0x001B5340; // type:object size:0x20 scope:global align:32
+cbr_2_eye1_TA_tex_txt = .data:0x001B5360; // type:object size:0x100 scope:global align:32
+cbr_2_eye2_TA_tex_txt = .data:0x001B5460; // type:object size:0x100 scope:global align:32
+cbr_2_eye3_TA_tex_txt = .data:0x001B5560; // type:object size:0x100 scope:global align:32
+cbr_2_eye4_TA_tex_txt = .data:0x001B5660; // type:object size:0x100 scope:global align:32
+cbr_2_eye5_TA_tex_txt = .data:0x001B5760; // type:object size:0x100 scope:global align:32
+cbr_2_eye6_TA_tex_txt = .data:0x001B5860; // type:object size:0x100 scope:global align:32
+cbr_2_eye7_TA_tex_txt = .data:0x001B5960; // type:object size:0x100 scope:global align:32
+cbr_2_eye8_TA_tex_txt = .data:0x001B5A60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth1_TA_tex_txt = .data:0x001B5B60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth2_TA_tex_txt = .data:0x001B5C60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth3_TA_tex_txt = .data:0x001B5D60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth4_TA_tex_txt = .data:0x001B5E60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth5_TA_tex_txt = .data:0x001B5F60; // type:object size:0x100 scope:global align:32
+cbr_2_mouth6_TA_tex_txt = .data:0x001B6060; // type:object size:0x100 scope:global align:32
+cbr_2_tmem_txt = .data:0x001B6160; // type:object size:0x400 scope:global align:32
+cbr_11_pal = .data:0x001B6560; // type:object size:0x20 scope:global align:32
+cbr_11_eye1_TA_tex_txt = .data:0x001B6580; // type:object size:0x100 scope:global align:32
+cbr_11_eye2_TA_tex_txt = .data:0x001B6680; // type:object size:0x100 scope:global align:32
+cbr_11_eye3_TA_tex_txt = .data:0x001B6780; // type:object size:0x100 scope:global align:32
+cbr_11_eye4_TA_tex_txt = .data:0x001B6880; // type:object size:0x100 scope:global align:32
+cbr_11_eye5_TA_tex_txt = .data:0x001B6980; // type:object size:0x100 scope:global align:32
+cbr_11_eye6_TA_tex_txt = .data:0x001B6A80; // type:object size:0x100 scope:global align:32
+cbr_11_eye7_TA_tex_txt = .data:0x001B6B80; // type:object size:0x100 scope:global align:32
+cbr_11_eye8_TA_tex_txt = .data:0x001B6C80; // type:object size:0x100 scope:global align:32
+cbr_11_mouth1_TA_tex_txt = .data:0x001B6D80; // type:object size:0x100 scope:global align:32
+cbr_11_mouth2_TA_tex_txt = .data:0x001B6E80; // type:object size:0x100 scope:global align:32
+cbr_11_mouth3_TA_tex_txt = .data:0x001B6F80; // type:object size:0x100 scope:global align:32
+cbr_11_mouth4_TA_tex_txt = .data:0x001B7080; // type:object size:0x100 scope:global align:32
+cbr_11_mouth5_TA_tex_txt = .data:0x001B7180; // type:object size:0x100 scope:global align:32
+cbr_11_mouth6_TA_tex_txt = .data:0x001B7280; // type:object size:0x100 scope:global align:32
+cbr_11_tmem_txt = .data:0x001B7380; // type:object size:0x400 scope:global align:32
+cbr_3_pal = .data:0x001B7780; // type:object size:0x20 scope:global align:32
+cbr_3_eye1_TA_tex_txt = .data:0x001B77A0; // type:object size:0x100 scope:global align:32
+cbr_3_eye2_TA_tex_txt = .data:0x001B78A0; // type:object size:0x100 scope:global align:32
+cbr_3_eye3_TA_tex_txt = .data:0x001B79A0; // type:object size:0x100 scope:global align:32
+cbr_3_eye4_TA_tex_txt = .data:0x001B7AA0; // type:object size:0x100 scope:global align:32
+cbr_3_eye5_TA_tex_txt = .data:0x001B7BA0; // type:object size:0x100 scope:global align:32
+cbr_3_eye6_TA_tex_txt = .data:0x001B7CA0; // type:object size:0x100 scope:global align:32
+cbr_3_eye7_TA_tex_txt = .data:0x001B7DA0; // type:object size:0x100 scope:global align:32
+cbr_3_eye8_TA_tex_txt = .data:0x001B7EA0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth1_TA_tex_txt = .data:0x001B7FA0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth2_TA_tex_txt = .data:0x001B80A0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth3_TA_tex_txt = .data:0x001B81A0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth4_TA_tex_txt = .data:0x001B82A0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth5_TA_tex_txt = .data:0x001B83A0; // type:object size:0x100 scope:global align:32
+cbr_3_mouth6_TA_tex_txt = .data:0x001B84A0; // type:object size:0x100 scope:global align:32
+cbr_3_tmem_txt = .data:0x001B85A0; // type:object size:0x400 scope:global align:32
+cbr_4_pal = .data:0x001B89A0; // type:object size:0x20 scope:global align:32
+cbr_4_eye1_TA_tex_txt = .data:0x001B89C0; // type:object size:0x100 scope:global align:32
+cbr_4_eye2_TA_tex_txt = .data:0x001B8AC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye3_TA_tex_txt = .data:0x001B8BC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye4_TA_tex_txt = .data:0x001B8CC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye5_TA_tex_txt = .data:0x001B8DC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye6_TA_tex_txt = .data:0x001B8EC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye7_TA_tex_txt = .data:0x001B8FC0; // type:object size:0x100 scope:global align:32
+cbr_4_eye8_TA_tex_txt = .data:0x001B90C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth1_TA_tex_txt = .data:0x001B91C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth2_TA_tex_txt = .data:0x001B92C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth3_TA_tex_txt = .data:0x001B93C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth4_TA_tex_txt = .data:0x001B94C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth5_TA_tex_txt = .data:0x001B95C0; // type:object size:0x100 scope:global align:32
+cbr_4_mouth6_TA_tex_txt = .data:0x001B96C0; // type:object size:0x100 scope:global align:32
+cbr_4_tmem_txt = .data:0x001B97C0; // type:object size:0x400 scope:global align:32
+cbr_5_pal = .data:0x001B9BC0; // type:object size:0x20 scope:global align:32
+cbr_5_eye1_TA_tex_txt = .data:0x001B9BE0; // type:object size:0x100 scope:global align:32
+cbr_5_eye2_TA_tex_txt = .data:0x001B9CE0; // type:object size:0x100 scope:global align:32
+cbr_5_eye3_TA_tex_txt = .data:0x001B9DE0; // type:object size:0x100 scope:global align:32
+cbr_5_eye4_TA_tex_txt = .data:0x001B9EE0; // type:object size:0x100 scope:global align:32
+cbr_5_eye5_TA_tex_txt = .data:0x001B9FE0; // type:object size:0x100 scope:global align:32
+cbr_5_eye6_TA_tex_txt = .data:0x001BA0E0; // type:object size:0x100 scope:global align:32
+cbr_5_eye7_TA_tex_txt = .data:0x001BA1E0; // type:object size:0x100 scope:global align:32
+cbr_5_eye8_TA_tex_txt = .data:0x001BA2E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth1_TA_tex_txt = .data:0x001BA3E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth2_TA_tex_txt = .data:0x001BA4E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth3_TA_tex_txt = .data:0x001BA5E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth4_TA_tex_txt = .data:0x001BA6E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth5_TA_tex_txt = .data:0x001BA7E0; // type:object size:0x100 scope:global align:32
+cbr_5_mouth6_TA_tex_txt = .data:0x001BA8E0; // type:object size:0x100 scope:global align:32
+cbr_5_tmem_txt = .data:0x001BA9E0; // type:object size:0x400 scope:global align:32
+cbr_6_pal = .data:0x001BADE0; // type:object size:0x20 scope:global align:32
+cbr_6_eye1_TA_tex_txt = .data:0x001BAE00; // type:object size:0x100 scope:global align:32
+cbr_6_eye2_TA_tex_txt = .data:0x001BAF00; // type:object size:0x100 scope:global align:32
+cbr_6_eye3_TA_tex_txt = .data:0x001BB000; // type:object size:0x100 scope:global align:32
+cbr_6_eye4_TA_tex_txt = .data:0x001BB100; // type:object size:0x100 scope:global align:32
+cbr_6_eye5_TA_tex_txt = .data:0x001BB200; // type:object size:0x100 scope:global align:32
+cbr_6_eye6_TA_tex_txt = .data:0x001BB300; // type:object size:0x100 scope:global align:32
+cbr_6_eye7_TA_tex_txt = .data:0x001BB400; // type:object size:0x100 scope:global align:32
+cbr_6_eye8_TA_tex_txt = .data:0x001BB500; // type:object size:0x100 scope:global align:32
+cbr_6_mouth1_TA_tex_txt = .data:0x001BB600; // type:object size:0x100 scope:global align:32
+cbr_6_mouth2_TA_tex_txt = .data:0x001BB700; // type:object size:0x100 scope:global align:32
+cbr_6_mouth3_TA_tex_txt = .data:0x001BB800; // type:object size:0x100 scope:global align:32
+cbr_6_mouth4_TA_tex_txt = .data:0x001BB900; // type:object size:0x100 scope:global align:32
+cbr_6_mouth5_TA_tex_txt = .data:0x001BBA00; // type:object size:0x100 scope:global align:32
+cbr_6_mouth6_TA_tex_txt = .data:0x001BBB00; // type:object size:0x100 scope:global align:32
+cbr_6_tmem_txt = .data:0x001BBC00; // type:object size:0x400 scope:global align:32
+cbr_7_pal = .data:0x001BC000; // type:object size:0x20 scope:global align:32
+cbr_7_eye1_TA_tex_txt = .data:0x001BC020; // type:object size:0x100 scope:global align:32
+cbr_7_eye2_TA_tex_txt = .data:0x001BC120; // type:object size:0x100 scope:global align:32
+cbr_7_eye3_TA_tex_txt = .data:0x001BC220; // type:object size:0x100 scope:global align:32
+cbr_7_eye4_TA_tex_txt = .data:0x001BC320; // type:object size:0x100 scope:global align:32
+cbr_7_eye5_TA_tex_txt = .data:0x001BC420; // type:object size:0x100 scope:global align:32
+cbr_7_eye6_TA_tex_txt = .data:0x001BC520; // type:object size:0x100 scope:global align:32
+cbr_7_eye7_TA_tex_txt = .data:0x001BC620; // type:object size:0x100 scope:global align:32
+cbr_7_eye8_TA_tex_txt = .data:0x001BC720; // type:object size:0x100 scope:global align:32
+cbr_7_mouth1_TA_tex_txt = .data:0x001BC820; // type:object size:0x100 scope:global align:32
+cbr_7_mouth2_TA_tex_txt = .data:0x001BC920; // type:object size:0x100 scope:global align:32
+cbr_7_mouth3_TA_tex_txt = .data:0x001BCA20; // type:object size:0x100 scope:global align:32
+cbr_7_mouth4_TA_tex_txt = .data:0x001BCB20; // type:object size:0x100 scope:global align:32
+cbr_7_mouth5_TA_tex_txt = .data:0x001BCC20; // type:object size:0x100 scope:global align:32
+cbr_7_mouth6_TA_tex_txt = .data:0x001BCD20; // type:object size:0x100 scope:global align:32
+cbr_7_tmem_txt = .data:0x001BCE20; // type:object size:0x400 scope:global align:32
+cbr_8_pal = .data:0x001BD220; // type:object size:0x20 scope:global align:32
+cbr_8_eye1_TA_tex_txt = .data:0x001BD240; // type:object size:0x100 scope:global align:32
+cbr_8_eye2_TA_tex_txt = .data:0x001BD340; // type:object size:0x100 scope:global align:32
+cbr_8_eye3_TA_tex_txt = .data:0x001BD440; // type:object size:0x100 scope:global align:32
+cbr_8_eye4_TA_tex_txt = .data:0x001BD540; // type:object size:0x100 scope:global align:32
+cbr_8_eye5_TA_tex_txt = .data:0x001BD640; // type:object size:0x100 scope:global align:32
+cbr_8_eye6_TA_tex_txt = .data:0x001BD740; // type:object size:0x100 scope:global align:32
+cbr_8_eye7_TA_tex_txt = .data:0x001BD840; // type:object size:0x100 scope:global align:32
+cbr_8_eye8_TA_tex_txt = .data:0x001BD940; // type:object size:0x100 scope:global align:32
+cbr_8_mouth1_TA_tex_txt = .data:0x001BDA40; // type:object size:0x100 scope:global align:32
+cbr_8_mouth2_TA_tex_txt = .data:0x001BDB40; // type:object size:0x100 scope:global align:32
+cbr_8_mouth3_TA_tex_txt = .data:0x001BDC40; // type:object size:0x100 scope:global align:32
+cbr_8_mouth4_TA_tex_txt = .data:0x001BDD40; // type:object size:0x100 scope:global align:32
+cbr_8_mouth5_TA_tex_txt = .data:0x001BDE40; // type:object size:0x100 scope:global align:32
+cbr_8_mouth6_TA_tex_txt = .data:0x001BDF40; // type:object size:0x100 scope:global align:32
+cbr_8_tmem_txt = .data:0x001BE040; // type:object size:0x400 scope:global align:32
+cbr_9_pal = .data:0x001BE440; // type:object size:0x20 scope:global align:32
+cbr_9_eye1_TA_tex_txt = .data:0x001BE460; // type:object size:0x100 scope:global align:32
+cbr_9_eye2_TA_tex_txt = .data:0x001BE560; // type:object size:0x100 scope:global align:32
+cbr_9_eye3_TA_tex_txt = .data:0x001BE660; // type:object size:0x100 scope:global align:32
+cbr_9_eye4_TA_tex_txt = .data:0x001BE760; // type:object size:0x100 scope:global align:32
+cbr_9_eye5_TA_tex_txt = .data:0x001BE860; // type:object size:0x100 scope:global align:32
+cbr_9_eye6_TA_tex_txt = .data:0x001BE960; // type:object size:0x100 scope:global align:32
+cbr_9_eye7_TA_tex_txt = .data:0x001BEA60; // type:object size:0x100 scope:global align:32
+cbr_9_eye8_TA_tex_txt = .data:0x001BEB60; // type:object size:0x100 scope:global align:32
+cbr_9_mouth1_TA_tex_txt = .data:0x001BEC60; // type:object size:0x100 scope:global align:32
+cbr_9_mouth2_TA_tex_txt = .data:0x001BED60; // type:object size:0x100 scope:global align:32
+cbr_9_mouth3_TA_tex_txt = .data:0x001BEE60; // type:object size:0x100 scope:global align:32
+cbr_9_mouth4_TA_tex_txt = .data:0x001BEF60; // type:object size:0x100 scope:global align:32
+cbr_9_mouth5_TA_tex_txt = .data:0x001BF060; // type:object size:0x100 scope:global align:32
+cbr_9_mouth6_TA_tex_txt = .data:0x001BF160; // type:object size:0x100 scope:global align:32
+cbr_9_tmem_txt = .data:0x001BF260; // type:object size:0x400 scope:global align:32
+cbr_10_pal = .data:0x001BF660; // type:object size:0x20 scope:global align:32
+cbr_10_eye1_TA_tex_txt = .data:0x001BF680; // type:object size:0x100 scope:global align:32
+cbr_10_eye2_TA_tex_txt = .data:0x001BF780; // type:object size:0x100 scope:global align:32
+cbr_10_eye3_TA_tex_txt = .data:0x001BF880; // type:object size:0x100 scope:global align:32
+cbr_10_eye4_TA_tex_txt = .data:0x001BF980; // type:object size:0x100 scope:global align:32
+cbr_10_eye5_TA_tex_txt = .data:0x001BFA80; // type:object size:0x100 scope:global align:32
+cbr_10_eye6_TA_tex_txt = .data:0x001BFB80; // type:object size:0x100 scope:global align:32
+cbr_10_eye7_TA_tex_txt = .data:0x001BFC80; // type:object size:0x100 scope:global align:32
+cbr_10_eye8_TA_tex_txt = .data:0x001BFD80; // type:object size:0x100 scope:global align:32
+cbr_10_mouth1_TA_tex_txt = .data:0x001BFE80; // type:object size:0x100 scope:global align:32
+cbr_10_mouth2_TA_tex_txt = .data:0x001BFF80; // type:object size:0x100 scope:global align:32
+cbr_10_mouth3_TA_tex_txt = .data:0x001C0080; // type:object size:0x100 scope:global align:32
+cbr_10_mouth4_TA_tex_txt = .data:0x001C0180; // type:object size:0x100 scope:global align:32
+cbr_10_mouth5_TA_tex_txt = .data:0x001C0280; // type:object size:0x100 scope:global align:32
+cbr_10_mouth6_TA_tex_txt = .data:0x001C0380; // type:object size:0x100 scope:global align:32
+cbr_10_tmem_txt = .data:0x001C0480; // type:object size:0x400 scope:global align:32
+data_combi_table = .data:0x001C0880; // type:object size:0x8A0 scope:global align:4 data:byte
+data_combi_table_number = .data:0x001C1120; // type:object size:0x4 scope:global align:4 data:4byte
+rcc_1_v = .data:0x001C1128; // type:object size:0x15B0 scope:global align:8
+head_rcc_model = .data:0x001C26D8; // type:object size:0x208 scope:global align:8
+mouth_rcc_model = .data:0x001C28E0; // type:object size:0x78 scope:global align:8
+Rarm2_rcc_model = .data:0x001C2958; // type:object size:0xB8 scope:global align:8
+Rarm1_rcc_model = .data:0x001C2A10; // type:object size:0x78 scope:global align:8
+Larm2_rcc_model = .data:0x001C2A88; // type:object size:0xB8 scope:global align:8
+Larm1_rcc_model = .data:0x001C2B40; // type:object size:0x78 scope:global align:8
+chest_rcc_model = .data:0x001C2BB8; // type:object size:0xC8 scope:global align:8
+tail1_rcc_model = .data:0x001C2C80; // type:object size:0x78 scope:global align:8
+tail2_rcc_model = .data:0x001C2CF8; // type:object size:0xA0 scope:global align:8
+Rfoot2_rcc_model = .data:0x001C2D98; // type:object size:0x80 scope:global align:8
+Rfoot1_rcc_model = .data:0x001C2E18; // type:object size:0x58 scope:global align:8
+Lfoot2_rcc_model = .data:0x001C2E70; // type:object size:0x80 scope:global align:8
+Lfoot1_rcc_model = .data:0x001C2EF0; // type:object size:0x58 scope:global align:8
+base_rcc_model = .data:0x001C2F48; // type:object size:0x80 scope:global align:8
+cKF_je_r_rcc_1_tbl = .data:0x001C2FC8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rcc_1 = .data:0x001C3100; // type:object size:0x8 scope:global align:4
+rcc_1_pal = .data:0x001C3120; // type:object size:0x20 scope:global align:32
+rcc_1_eye1_TA_tex_txt = .data:0x001C3140; // type:object size:0x100 scope:global align:32
+rcc_1_eye2_TA_tex_txt = .data:0x001C3240; // type:object size:0x100 scope:global align:32
+rcc_1_eye3_TA_tex_txt = .data:0x001C3340; // type:object size:0x100 scope:global align:32
+rcc_1_eye4_TA_tex_txt = .data:0x001C3440; // type:object size:0x100 scope:global align:32
+rcc_1_eye5_TA_tex_txt = .data:0x001C3540; // type:object size:0x100 scope:global align:32
+rcc_1_eye6_TA_tex_txt = .data:0x001C3640; // type:object size:0x100 scope:global align:32
+rcc_1_eye7_TA_tex_txt = .data:0x001C3740; // type:object size:0x100 scope:global align:32
+rcc_1_eye8_TA_tex_txt = .data:0x001C3840; // type:object size:0x100 scope:global align:32
+rcc_1_tmem_txt = .data:0x001C3940; // type:object size:0x6C0 scope:global align:32
+cow_1_v = .data:0x001C4000; // type:object size:0x1630 scope:global align:8
+head_cow_model = .data:0x001C5630; // type:object size:0x1E8 scope:global align:8
+Rarm2_cow_model = .data:0x001C5818; // type:object size:0x88 scope:global align:8
+Rarm1_cow_model = .data:0x001C58A0; // type:object size:0x78 scope:global align:8
+Larm2_cow_model = .data:0x001C5918; // type:object size:0x88 scope:global align:8
+Larm1_cow_model = .data:0x001C59A0; // type:object size:0x78 scope:global align:8
+chest_cow_model = .data:0x001C5A18; // type:object size:0xA8 scope:global align:8
+tail1_cow_model = .data:0x001C5AC0; // type:object size:0x60 scope:global align:8
+tail2_cow_model = .data:0x001C5B20; // type:object size:0x90 scope:global align:8
+Rfoot2_cow_model = .data:0x001C5BB0; // type:object size:0x80 scope:global align:8
+Rfoot1_cow_model = .data:0x001C5C30; // type:object size:0xC0 scope:global align:8
+Lfoot2_cow_model = .data:0x001C5CF0; // type:object size:0x80 scope:global align:8
+Lfoot1_cow_model = .data:0x001C5D70; // type:object size:0xC0 scope:global align:8
+base_cow_model = .data:0x001C5E30; // type:object size:0x70 scope:global align:8
+cKF_je_r_cow_1_tbl = .data:0x001C5EA0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_cow_1 = .data:0x001C5FD8; // type:object size:0x8 scope:global align:4
+cow_1_pal = .data:0x001C5FE0; // type:object size:0x20 scope:global align:32
+cow_1_eye1_TA_tex_txt = .data:0x001C6000; // type:object size:0x100 scope:global align:32
+cow_1_eye2_TA_tex_txt = .data:0x001C6100; // type:object size:0x100 scope:global align:32
+cow_1_eye3_TA_tex_txt = .data:0x001C6200; // type:object size:0x100 scope:global align:32
+cow_1_eye4_TA_tex_txt = .data:0x001C6300; // type:object size:0x100 scope:global align:32
+cow_1_eye5_TA_tex_txt = .data:0x001C6400; // type:object size:0x100 scope:global align:32
+cow_1_eye6_TA_tex_txt = .data:0x001C6500; // type:object size:0x100 scope:global align:32
+cow_1_eye7_TA_tex_txt = .data:0x001C6600; // type:object size:0x100 scope:global align:32
+cow_1_eye8_TA_tex_txt = .data:0x001C6700; // type:object size:0x100 scope:global align:32
+cow_1_mouth1_TA_tex_txt = .data:0x001C6800; // type:object size:0x100 scope:global align:32
+cow_1_mouth2_TA_tex_txt = .data:0x001C6900; // type:object size:0x100 scope:global align:32
+cow_1_mouth3_TA_tex_txt = .data:0x001C6A00; // type:object size:0x100 scope:global align:32
+cow_1_mouth4_TA_tex_txt = .data:0x001C6B00; // type:object size:0x100 scope:global align:32
+cow_1_mouth5_TA_tex_txt = .data:0x001C6C00; // type:object size:0x100 scope:global align:32
+cow_1_mouth6_TA_tex_txt = .data:0x001C6D00; // type:object size:0x100 scope:global align:32
+cow_1_tmem_txt = .data:0x001C6E00; // type:object size:0x400 scope:global align:32
+cow_2_pal = .data:0x001C7200; // type:object size:0x20 scope:global align:32
+cow_2_eye1_TA_tex_txt = .data:0x001C7220; // type:object size:0x100 scope:global align:32
+cow_2_eye2_TA_tex_txt = .data:0x001C7320; // type:object size:0x100 scope:global align:32
+cow_2_eye3_TA_tex_txt = .data:0x001C7420; // type:object size:0x100 scope:global align:32
+cow_2_eye4_TA_tex_txt = .data:0x001C7520; // type:object size:0x100 scope:global align:32
+cow_2_eye5_TA_tex_txt = .data:0x001C7620; // type:object size:0x100 scope:global align:32
+cow_2_eye6_TA_tex_txt = .data:0x001C7720; // type:object size:0x100 scope:global align:32
+cow_2_eye7_TA_tex_txt = .data:0x001C7820; // type:object size:0x100 scope:global align:32
+cow_2_eye8_TA_tex_txt = .data:0x001C7920; // type:object size:0x100 scope:global align:32
+cow_2_mouth1_TA_tex_txt = .data:0x001C7A20; // type:object size:0x100 scope:global align:32
+cow_2_mouth2_TA_tex_txt = .data:0x001C7B20; // type:object size:0x100 scope:global align:32
+cow_2_mouth3_TA_tex_txt = .data:0x001C7C20; // type:object size:0x100 scope:global align:32
+cow_2_mouth4_TA_tex_txt = .data:0x001C7D20; // type:object size:0x100 scope:global align:32
+cow_2_mouth5_TA_tex_txt = .data:0x001C7E20; // type:object size:0x100 scope:global align:32
+cow_2_mouth6_TA_tex_txt = .data:0x001C7F20; // type:object size:0x100 scope:global align:32
+cow_2_tmem_txt = .data:0x001C8020; // type:object size:0x400 scope:global align:32
+cow_3_pal = .data:0x001C8420; // type:object size:0x20 scope:global align:32
+cow_3_eye1_TA_tex_txt = .data:0x001C8440; // type:object size:0x100 scope:global align:32
+cow_3_eye2_TA_tex_txt = .data:0x001C8540; // type:object size:0x100 scope:global align:32
+cow_3_eye3_TA_tex_txt = .data:0x001C8640; // type:object size:0x100 scope:global align:32
+cow_3_eye4_TA_tex_txt = .data:0x001C8740; // type:object size:0x100 scope:global align:32
+cow_3_eye5_TA_tex_txt = .data:0x001C8840; // type:object size:0x100 scope:global align:32
+cow_3_eye6_TA_tex_txt = .data:0x001C8940; // type:object size:0x100 scope:global align:32
+cow_3_eye7_TA_tex_txt = .data:0x001C8A40; // type:object size:0x100 scope:global align:32
+cow_3_eye8_TA_tex_txt = .data:0x001C8B40; // type:object size:0x100 scope:global align:32
+cow_3_mouth1_TA_tex_txt = .data:0x001C8C40; // type:object size:0x100 scope:global align:32
+cow_3_mouth2_TA_tex_txt = .data:0x001C8D40; // type:object size:0x100 scope:global align:32
+cow_3_mouth3_TA_tex_txt = .data:0x001C8E40; // type:object size:0x100 scope:global align:32
+cow_3_mouth4_TA_tex_txt = .data:0x001C8F40; // type:object size:0x100 scope:global align:32
+cow_3_mouth5_TA_tex_txt = .data:0x001C9040; // type:object size:0x100 scope:global align:32
+cow_3_mouth6_TA_tex_txt = .data:0x001C9140; // type:object size:0x100 scope:global align:32
+cow_3_tmem_txt = .data:0x001C9240; // type:object size:0x400 scope:global align:32
+cow_4_pal = .data:0x001C9640; // type:object size:0x20 scope:global align:32
+cow_4_eye1_TA_tex_txt = .data:0x001C9660; // type:object size:0x100 scope:global align:32
+cow_4_eye2_TA_tex_txt = .data:0x001C9760; // type:object size:0x100 scope:global align:32
+cow_4_eye3_TA_tex_txt = .data:0x001C9860; // type:object size:0x100 scope:global align:32
+cow_4_eye4_TA_tex_txt = .data:0x001C9960; // type:object size:0x100 scope:global align:32
+cow_4_eye5_TA_tex_txt = .data:0x001C9A60; // type:object size:0x100 scope:global align:32
+cow_4_eye6_TA_tex_txt = .data:0x001C9B60; // type:object size:0x100 scope:global align:32
+cow_4_eye7_TA_tex_txt = .data:0x001C9C60; // type:object size:0x100 scope:global align:32
+cow_4_eye8_TA_tex_txt = .data:0x001C9D60; // type:object size:0x100 scope:global align:32
+cow_4_mouth1_TA_tex_txt = .data:0x001C9E60; // type:object size:0x100 scope:global align:32
+cow_4_mouth2_TA_tex_txt = .data:0x001C9F60; // type:object size:0x100 scope:global align:32
+cow_4_mouth3_TA_tex_txt = .data:0x001CA060; // type:object size:0x100 scope:global align:32
+cow_4_mouth4_TA_tex_txt = .data:0x001CA160; // type:object size:0x100 scope:global align:32
+cow_4_mouth5_TA_tex_txt = .data:0x001CA260; // type:object size:0x100 scope:global align:32
+cow_4_mouth6_TA_tex_txt = .data:0x001CA360; // type:object size:0x100 scope:global align:32
+cow_4_tmem_txt = .data:0x001CA460; // type:object size:0x400 scope:global align:32
+crd_1_v = .data:0x001CA860; // type:object size:0x1790 scope:global align:8
+head_crd_model = .data:0x001CBFF0; // type:object size:0x1A8 scope:global align:8
+mouth_crd_model = .data:0x001CC198; // type:object size:0x108 scope:global align:8
+Rarm2_crd_model = .data:0x001CC2A0; // type:object size:0x88 scope:global align:8
+Rarm1_crd_model = .data:0x001CC328; // type:object size:0x78 scope:global align:8
+Larm2_crd_model = .data:0x001CC3A0; // type:object size:0x88 scope:global align:8
+Larm1_crd_model = .data:0x001CC428; // type:object size:0x78 scope:global align:8
+chest_crd_model = .data:0x001CC4A0; // type:object size:0xC8 scope:global align:8
+tail1_crd_model = .data:0x001CC568; // type:object size:0x80 scope:global align:8
+tail2_crd_model = .data:0x001CC5E8; // type:object size:0x88 scope:global align:8
+Rfoot2_crd_model = .data:0x001CC670; // type:object size:0x80 scope:global align:8
+Rfoot1_crd_model = .data:0x001CC6F0; // type:object size:0x58 scope:global align:8
+Lfoot2_crd_model = .data:0x001CC748; // type:object size:0x80 scope:global align:8
+Lfoot1_crd_model = .data:0x001CC7C8; // type:object size:0x58 scope:global align:8
+base_crd_model = .data:0x001CC820; // type:object size:0x88 scope:global align:8
+cKF_je_r_crd_1_tbl = .data:0x001CC8A8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_crd_1 = .data:0x001CC9E0; // type:object size:0x8 scope:global align:4
+crd_1_pal = .data:0x001CCA00; // type:object size:0x20 scope:global align:32
+crd_1_eye1_TA_tex_txt = .data:0x001CCA20; // type:object size:0x100 scope:global align:32
+crd_1_eye2_TA_tex_txt = .data:0x001CCB20; // type:object size:0x100 scope:global align:32
+crd_1_eye3_TA_tex_txt = .data:0x001CCC20; // type:object size:0x100 scope:global align:32
+crd_1_eye4_TA_tex_txt = .data:0x001CCD20; // type:object size:0x100 scope:global align:32
+crd_1_eye5_TA_tex_txt = .data:0x001CCE20; // type:object size:0x100 scope:global align:32
+crd_1_eye6_TA_tex_txt = .data:0x001CCF20; // type:object size:0x100 scope:global align:32
+crd_1_eye7_TA_tex_txt = .data:0x001CD020; // type:object size:0x100 scope:global align:32
+crd_1_eye8_TA_tex_txt = .data:0x001CD120; // type:object size:0x100 scope:global align:32
+crd_1_tmem_txt = .data:0x001CD220; // type:object size:0x500 scope:global align:32
+crd_2_pal = .data:0x001CD720; // type:object size:0x20 scope:global align:32
+crd_2_eye1_TA_tex_txt = .data:0x001CD740; // type:object size:0x100 scope:global align:32
+crd_2_eye2_TA_tex_txt = .data:0x001CD840; // type:object size:0x100 scope:global align:32
+crd_2_eye3_TA_tex_txt = .data:0x001CD940; // type:object size:0x100 scope:global align:32
+crd_2_eye4_TA_tex_txt = .data:0x001CDA40; // type:object size:0x100 scope:global align:32
+crd_2_eye5_TA_tex_txt = .data:0x001CDB40; // type:object size:0x100 scope:global align:32
+crd_2_eye6_TA_tex_txt = .data:0x001CDC40; // type:object size:0x100 scope:global align:32
+crd_2_eye7_TA_tex_txt = .data:0x001CDD40; // type:object size:0x100 scope:global align:32
+crd_2_eye8_TA_tex_txt = .data:0x001CDE40; // type:object size:0x100 scope:global align:32
+crd_2_tmem_txt = .data:0x001CDF40; // type:object size:0x500 scope:global align:32
+crd_3_pal = .data:0x001CE440; // type:object size:0x20 scope:global align:32
+crd_3_eye1_TA_tex_txt = .data:0x001CE460; // type:object size:0x100 scope:global align:32
+crd_3_eye2_TA_tex_txt = .data:0x001CE560; // type:object size:0x100 scope:global align:32
+crd_3_eye3_TA_tex_txt = .data:0x001CE660; // type:object size:0x100 scope:global align:32
+crd_3_eye4_TA_tex_txt = .data:0x001CE760; // type:object size:0x100 scope:global align:32
+crd_3_eye5_TA_tex_txt = .data:0x001CE860; // type:object size:0x100 scope:global align:32
+crd_3_eye6_TA_tex_txt = .data:0x001CE960; // type:object size:0x100 scope:global align:32
+crd_3_eye7_TA_tex_txt = .data:0x001CEA60; // type:object size:0x100 scope:global align:32
+crd_3_eye8_TA_tex_txt = .data:0x001CEB60; // type:object size:0x100 scope:global align:32
+crd_3_tmem_txt = .data:0x001CEC60; // type:object size:0x500 scope:global align:32
+crd_4_pal = .data:0x001CF160; // type:object size:0x20 scope:global align:32
+crd_4_eye1_TA_tex_txt = .data:0x001CF180; // type:object size:0x100 scope:global align:32
+crd_4_eye2_TA_tex_txt = .data:0x001CF280; // type:object size:0x100 scope:global align:32
+crd_4_eye3_TA_tex_txt = .data:0x001CF380; // type:object size:0x100 scope:global align:32
+crd_4_eye4_TA_tex_txt = .data:0x001CF480; // type:object size:0x100 scope:global align:32
+crd_4_eye5_TA_tex_txt = .data:0x001CF580; // type:object size:0x100 scope:global align:32
+crd_4_eye6_TA_tex_txt = .data:0x001CF680; // type:object size:0x100 scope:global align:32
+crd_4_eye7_TA_tex_txt = .data:0x001CF780; // type:object size:0x100 scope:global align:32
+crd_4_eye8_TA_tex_txt = .data:0x001CF880; // type:object size:0x100 scope:global align:32
+crd_4_tmem_txt = .data:0x001CF980; // type:object size:0x500 scope:global align:32
+owl_1_v = .data:0x001CFE80; // type:object size:0x1A90 scope:global align:8
+head_owl_model = .data:0x001D1910; // type:object size:0x240 scope:global align:8
+mouth_owl_model = .data:0x001D1B50; // type:object size:0x98 scope:global align:8
+Rarm2_owl_model = .data:0x001D1BE8; // type:object size:0xD0 scope:global align:8
+Rarm1_owl_model = .data:0x001D1CB8; // type:object size:0x78 scope:global align:8
+Larm2_owl_model = .data:0x001D1D30; // type:object size:0xD0 scope:global align:8
+Larm1_owl_model = .data:0x001D1E00; // type:object size:0x78 scope:global align:8
+chest_owl_model = .data:0x001D1E78; // type:object size:0xD0 scope:global align:8
+tail1_owl_model = .data:0x001D1F48; // type:object size:0xA8 scope:global align:8
+Rfoot3_owl_model = .data:0x001D1FF0; // type:object size:0xA8 scope:global align:8
+Rfoot2_owl_model = .data:0x001D2098; // type:object size:0x80 scope:global align:8
+Rfoot1_owl_model = .data:0x001D2118; // type:object size:0x58 scope:global align:8
+Lfoot3_owl_model = .data:0x001D2170; // type:object size:0xA8 scope:global align:8
+Lfoot2_owl_model = .data:0x001D2218; // type:object size:0x80 scope:global align:8
+Lfoot1_owl_model = .data:0x001D2298; // type:object size:0x58 scope:global align:8
+base_owl_model = .data:0x001D22F0; // type:object size:0x78 scope:global align:8
+cKF_je_r_owl_1_tbl = .data:0x001D2368; // type:object size:0x138 scope:global align:4
+cKF_bs_r_owl_1 = .data:0x001D24A0; // type:object size:0x8 scope:global align:4
+owl_1_pal = .data:0x001D24C0; // type:object size:0x20 scope:global align:32
+owl_1_eye1_TA_tex_txt = .data:0x001D24E0; // type:object size:0x100 scope:global align:32
+owl_1_eye2_TA_tex_txt = .data:0x001D25E0; // type:object size:0x100 scope:global align:32
+owl_1_eye3_TA_tex_txt = .data:0x001D26E0; // type:object size:0x100 scope:global align:32
+owl_1_eye4_TA_tex_txt = .data:0x001D27E0; // type:object size:0x100 scope:global align:32
+owl_1_eye5_TA_tex_txt = .data:0x001D28E0; // type:object size:0x100 scope:global align:32
+owl_1_eye6_TA_tex_txt = .data:0x001D29E0; // type:object size:0x100 scope:global align:32
+owl_1_eye7_TA_tex_txt = .data:0x001D2AE0; // type:object size:0x100 scope:global align:32
+owl_1_eye8_TA_tex_txt = .data:0x001D2BE0; // type:object size:0x100 scope:global align:32
+owl_1_tmem_txt = .data:0x001D2CE0; // type:object size:0x640 scope:global align:32
+rcd_1_v = .data:0x001D3320; // type:object size:0x1520 scope:global align:8
+head_rcd_model = .data:0x001D4840; // type:object size:0x1B8 scope:global align:8
+mouth_rcd_model = .data:0x001D49F8; // type:object size:0x78 scope:global align:8
+Rarm2_rcd_model = .data:0x001D4A70; // type:object size:0xB8 scope:global align:8
+Rarm1_rcd_model = .data:0x001D4B28; // type:object size:0x78 scope:global align:8
+Larm2_rcd_model = .data:0x001D4BA0; // type:object size:0xB8 scope:global align:8
+Larm1_rcd_model = .data:0x001D4C58; // type:object size:0x78 scope:global align:8
+chest_rcd_model = .data:0x001D4CD0; // type:object size:0xC8 scope:global align:8
+tail1_rcd_model = .data:0x001D4D98; // type:object size:0x78 scope:global align:8
+tail2_rcd_model = .data:0x001D4E10; // type:object size:0xA0 scope:global align:8
+Rfoot2_rcd_model = .data:0x001D4EB0; // type:object size:0x80 scope:global align:8
+Rfoot1_rcd_model = .data:0x001D4F30; // type:object size:0x58 scope:global align:8
+Lfoot2_rcd_model = .data:0x001D4F88; // type:object size:0x80 scope:local align:8
+Lfoot1_rcd_model = .data:0x001D5008; // type:object size:0x58 scope:global align:8
+base_rcd_model = .data:0x001D5060; // type:object size:0x80 scope:global align:8
+cKF_je_r_rcd_1_tbl = .data:0x001D50E0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rcd_1 = .data:0x001D5218; // type:object size:0x8 scope:global align:4
+rcd_1_pal = .data:0x001D5220; // type:object size:0x20 scope:global align:32
+rcd_1_eye1_TA_tex_txt = .data:0x001D5240; // type:object size:0x100 scope:global align:32
+rcd_1_eye2_TA_tex_txt = .data:0x001D5340; // type:object size:0x100 scope:global align:32
+rcd_1_eye3_TA_tex_txt = .data:0x001D5440; // type:object size:0x100 scope:global align:32
+rcd_1_eye4_TA_tex_txt = .data:0x001D5540; // type:object size:0x100 scope:global align:32
+rcd_1_eye5_TA_tex_txt = .data:0x001D5640; // type:object size:0x100 scope:global align:32
+rcd_1_eye6_TA_tex_txt = .data:0x001D5740; // type:object size:0x100 scope:global align:32
+rcd_1_eye7_TA_tex_txt = .data:0x001D5840; // type:object size:0x100 scope:global align:32
+rcd_1_eye8_TA_tex_txt = .data:0x001D5940; // type:object size:0x100 scope:global align:32
+rcd_1_tmem_txt = .data:0x001D5A40; // type:object size:0x640 scope:global align:32
+grf_1_v = .data:0x001D6080; // type:object size:0x1AE0 scope:global align:8
+head_grf_model = .data:0x001D7B60; // type:object size:0x220 scope:global align:8
+mouth_grf_model = .data:0x001D7D80; // type:object size:0xD8 scope:global align:8
+Rarm2_grf_model = .data:0x001D7E58; // type:object size:0x88 scope:global align:8
+Rarm1_grf_model = .data:0x001D7EE0; // type:object size:0x78 scope:global align:8
+Larm2_grf_model = .data:0x001D7F58; // type:object size:0x88 scope:global align:8
+Larm1_grf_model = .data:0x001D7FE0; // type:object size:0x78 scope:global align:8
+chest_grf_model = .data:0x001D8058; // type:object size:0x130 scope:global align:8
+tail1_grf_model = .data:0x001D8188; // type:object size:0x58 scope:global align:8
+tail2_grf_model = .data:0x001D81E0; // type:object size:0x90 scope:global align:8
+Rfoot2_grf_model = .data:0x001D8270; // type:object size:0xA0 scope:global align:8
+Rfoot1_grf_model = .data:0x001D8310; // type:object size:0x60 scope:global align:8
+Lfoot2_grf_model = .data:0x001D8370; // type:object size:0xA0 scope:global align:8
+Lfoot1_grf_model = .data:0x001D8410; // type:object size:0x60 scope:global align:8
+base_grf_model = .data:0x001D8470; // type:object size:0x78 scope:global align:8
+cKF_je_r_grf_1_tbl = .data:0x001D84E8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_grf_1 = .data:0x001D8620; // type:object size:0x8 scope:global align:4
+grf_1_pal = .data:0x001D8640; // type:object size:0x20 scope:global align:32
+grf_1_eye1_TA_tex_txt = .data:0x001D8660; // type:object size:0x100 scope:global align:32
+grf_1_eye2_TA_tex_txt = .data:0x001D8760; // type:object size:0x100 scope:global align:32
+grf_1_eye3_TA_tex_txt = .data:0x001D8860; // type:object size:0x100 scope:global align:32
+grf_1_eye4_TA_tex_txt = .data:0x001D8960; // type:object size:0x100 scope:global align:32
+grf_1_eye5_TA_tex_txt = .data:0x001D8A60; // type:object size:0x100 scope:global align:32
+grf_1_eye6_TA_tex_txt = .data:0x001D8B60; // type:object size:0x100 scope:global align:32
+grf_1_eye7_TA_tex_txt = .data:0x001D8C60; // type:object size:0x100 scope:global align:32
+grf_1_eye8_TA_tex_txt = .data:0x001D8D60; // type:object size:0x100 scope:global align:32
+grf_1_tmem_txt = .data:0x001D8E60; // type:object size:0x700 scope:global align:32
+dog_1_v = .data:0x001D9560; // type:object size:0x16B0 scope:global align:8
+head_dog_model = .data:0x001DAC10; // type:object size:0x1E8 scope:global align:8
+Rarm2_dog_model = .data:0x001DADF8; // type:object size:0x80 scope:global align:8
+Rarm_dog_model = .data:0x001DAE78; // type:object size:0x78 scope:global align:8
+Larm2_dog_model = .data:0x001DAEF0; // type:object size:0x80 scope:global align:8
+Larm1_dog_model = .data:0x001DAF70; // type:object size:0x78 scope:global align:8
+chest_dog_model = .data:0x001DAFE8; // type:object size:0xA8 scope:global align:8
+tail1_dog_model = .data:0x001DB090; // type:object size:0x58 scope:global align:8
+tail2_dog_model = .data:0x001DB0E8; // type:object size:0x90 scope:global align:8
+Rfoot2_dog_model = .data:0x001DB178; // type:object size:0x88 scope:global align:8
+Rfoot1_dog_model = .data:0x001DB200; // type:object size:0x80 scope:global align:8
+Lfoot2_dog_model = .data:0x001DB280; // type:object size:0x88 scope:global align:8
+Lfoot1_dog_model = .data:0x001DB308; // type:object size:0x80 scope:global align:8
+base_dog_model = .data:0x001DB388; // type:object size:0x78 scope:global align:8
+cKF_je_r_dog_1_tbl = .data:0x001DB400; // type:object size:0x138 scope:global align:4
+cKF_bs_r_dog_1 = .data:0x001DB538; // type:object size:0x8 scope:global align:4
+dog_1_pal = .data:0x001DB540; // type:object size:0x20 scope:global align:32
+dog_1_eye1_TA_tex_txt = .data:0x001DB560; // type:object size:0x100 scope:global align:32
+dog_1_eye2_TA_tex_txt = .data:0x001DB660; // type:object size:0x100 scope:global align:32
+dog_1_eye3_TA_tex_txt = .data:0x001DB760; // type:object size:0x100 scope:global align:32
+dog_1_eye4_TA_tex_txt = .data:0x001DB860; // type:object size:0x100 scope:global align:32
+dog_1_eye5_TA_tex_txt = .data:0x001DB960; // type:object size:0x100 scope:global align:32
+dog_1_eye6_TA_tex_txt = .data:0x001DBA60; // type:object size:0x100 scope:global align:32
+dog_1_eye7_TA_tex_txt = .data:0x001DBB60; // type:object size:0x100 scope:global align:32
+dog_1_eye8_TA_tex_txt = .data:0x001DBC60; // type:object size:0x100 scope:global align:32
+dog_1_mouth1_TA_tex_txt = .data:0x001DBD60; // type:object size:0x100 scope:global align:32
+dog_1_mouth2_TA_tex_txt = .data:0x001DBE60; // type:object size:0x100 scope:global align:32
+dog_1_mouth3_TA_tex_txt = .data:0x001DBF60; // type:object size:0x100 scope:global align:32
+dog_1_mouth4_TA_tex_txt = .data:0x001DC060; // type:object size:0x100 scope:global align:32
+dog_1_mouth5_TA_tex_txt = .data:0x001DC160; // type:object size:0x100 scope:global align:32
+dog_1_mouth6_TA_tex_txt = .data:0x001DC260; // type:object size:0x100 scope:global align:32
+dog_1_tmem_txt = .data:0x001DC360; // type:object size:0x400 scope:global align:32
+dog_2_pal = .data:0x001DC760; // type:object size:0x20 scope:global align:32
+dog_2_eye1_TA_tex_txt = .data:0x001DC780; // type:object size:0x100 scope:global align:32
+dog_2_eye2_TA_tex_txt = .data:0x001DC880; // type:object size:0x100 scope:global align:32
+dog_2_eye3_TA_tex_txt = .data:0x001DC980; // type:object size:0x100 scope:global align:32
+dog_2_eye4_TA_tex_txt = .data:0x001DCA80; // type:object size:0x100 scope:global align:32
+dog_2_eye5_TA_tex_txt = .data:0x001DCB80; // type:object size:0x100 scope:global align:32
+dog_2_eye6_TA_tex_txt = .data:0x001DCC80; // type:object size:0x100 scope:global align:32
+dog_2_eye7_TA_tex_txt = .data:0x001DCD80; // type:object size:0x100 scope:global align:32
+dog_2_eye8_TA_tex_txt = .data:0x001DCE80; // type:object size:0x100 scope:global align:32
+dog_2_mouth1_TA_tex_txt = .data:0x001DCF80; // type:object size:0x100 scope:global align:32
+dog_2_mouth2_TA_tex_txt = .data:0x001DD080; // type:object size:0x100 scope:global align:32
+dog_2_mouth3_TA_tex_txt = .data:0x001DD180; // type:object size:0x100 scope:global align:32
+dog_2_mouth4_TA_tex_txt = .data:0x001DD280; // type:object size:0x100 scope:global align:32
+dog_2_mouth5_TA_tex_txt = .data:0x001DD380; // type:object size:0x100 scope:global align:32
+dog_2_mouth6_TA_tex_txt = .data:0x001DD480; // type:object size:0x100 scope:global align:32
+dog_2_tmem_txt = .data:0x001DD580; // type:object size:0x400 scope:global align:32
+dog_3_pal = .data:0x001DD980; // type:object size:0x20 scope:global align:32
+dog_3_eye1_TA_tex_txt = .data:0x001DD9A0; // type:object size:0x100 scope:global align:32
+dog_3_eye2_TA_tex_txt = .data:0x001DDAA0; // type:object size:0x100 scope:global align:32
+dog_3_eye3_TA_tex_txt = .data:0x001DDBA0; // type:object size:0x100 scope:global align:32
+dog_3_eye4_TA_tex_txt = .data:0x001DDCA0; // type:object size:0x100 scope:global align:32
+dog_3_eye5_TA_tex_txt = .data:0x001DDDA0; // type:object size:0x100 scope:global align:32
+dog_3_eye6_TA_tex_txt = .data:0x001DDEA0; // type:object size:0x100 scope:global align:32
+dog_3_eye7_TA_tex_txt = .data:0x001DDFA0; // type:object size:0x100 scope:global align:32
+dog_3_eye8_TA_tex_txt = .data:0x001DE0A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth1_TA_tex_txt = .data:0x001DE1A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth2_TA_tex_txt = .data:0x001DE2A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth3_TA_tex_txt = .data:0x001DE3A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth4_TA_tex_txt = .data:0x001DE4A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth5_TA_tex_txt = .data:0x001DE5A0; // type:object size:0x100 scope:global align:32
+dog_3_mouth6_TA_tex_txt = .data:0x001DE6A0; // type:object size:0x100 scope:global align:32
+dog_3_tmem_txt = .data:0x001DE7A0; // type:object size:0x400 scope:global align:32
+dog_4_pal = .data:0x001DEBA0; // type:object size:0x20 scope:global align:32
+dog_4_eye1_TA_tex_txt = .data:0x001DEBC0; // type:object size:0x100 scope:global align:32
+dog_4_eye2_TA_tex_txt = .data:0x001DECC0; // type:object size:0x100 scope:global align:32
+dog_4_eye3_TA_tex_txt = .data:0x001DEDC0; // type:object size:0x100 scope:global align:32
+dog_4_eye4_TA_tex_txt = .data:0x001DEEC0; // type:object size:0x100 scope:global align:32
+dog_4_eye5_TA_tex_txt = .data:0x001DEFC0; // type:object size:0x100 scope:global align:32
+dog_4_eye6_TA_tex_txt = .data:0x001DF0C0; // type:object size:0x100 scope:global align:32
+dog_4_eye7_TA_tex_txt = .data:0x001DF1C0; // type:object size:0x100 scope:global align:32
+dog_4_eye8_TA_tex_txt = .data:0x001DF2C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth1_TA_tex_txt = .data:0x001DF3C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth2_TA_tex_txt = .data:0x001DF4C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth3_TA_tex_txt = .data:0x001DF5C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth4_TA_tex_txt = .data:0x001DF6C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth5_TA_tex_txt = .data:0x001DF7C0; // type:object size:0x100 scope:global align:32
+dog_4_mouth6_TA_tex_txt = .data:0x001DF8C0; // type:object size:0x100 scope:global align:32
+dog_4_tmem_txt = .data:0x001DF9C0; // type:object size:0x400 scope:global align:32
+dog_5_pal = .data:0x001DFDC0; // type:object size:0x20 scope:global align:32
+dog_5_eye1_TA_tex_txt = .data:0x001DFDE0; // type:object size:0x100 scope:global align:32
+dog_5_eye2_TA_tex_txt = .data:0x001DFEE0; // type:object size:0x100 scope:global align:32
+dog_5_eye3_TA_tex_txt = .data:0x001DFFE0; // type:object size:0x100 scope:global align:32
+dog_5_eye4_TA_tex_txt = .data:0x001E00E0; // type:object size:0x100 scope:global align:32
+dog_5_eye5_TA_tex_txt = .data:0x001E01E0; // type:object size:0x100 scope:global align:32
+dog_5_eye6_TA_tex_txt = .data:0x001E02E0; // type:object size:0x100 scope:global align:32
+dog_5_eye7_TA_tex_txt = .data:0x001E03E0; // type:object size:0x100 scope:global align:32
+dog_5_eye8_TA_tex_txt = .data:0x001E04E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth1_TA_tex_txt = .data:0x001E05E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth2_TA_tex_txt = .data:0x001E06E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth3_TA_tex_txt = .data:0x001E07E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth4_TA_tex_txt = .data:0x001E08E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth5_TA_tex_txt = .data:0x001E09E0; // type:object size:0x100 scope:global align:32
+dog_5_mouth6_TA_tex_txt = .data:0x001E0AE0; // type:object size:0x100 scope:global align:32
+dog_5_tmem_txt = .data:0x001E0BE0; // type:object size:0x400 scope:global align:32
+dog_6_pal = .data:0x001E0FE0; // type:object size:0x20 scope:global align:32
+dog_6_eye1_TA_tex_txt = .data:0x001E1000; // type:object size:0x100 scope:global align:32
+dog_6_eye2_TA_tex_txt = .data:0x001E1100; // type:object size:0x100 scope:global align:32
+dog_6_eye3_TA_tex_txt = .data:0x001E1200; // type:object size:0x100 scope:global align:32
+dog_6_eye4_TA_tex_txt = .data:0x001E1300; // type:object size:0x100 scope:global align:32
+dog_6_eye5_TA_tex_txt = .data:0x001E1400; // type:object size:0x100 scope:global align:32
+dog_6_eye6_TA_tex_txt = .data:0x001E1500; // type:object size:0x100 scope:global align:32
+dog_6_eye7_TA_tex_txt = .data:0x001E1600; // type:object size:0x100 scope:global align:32
+dog_6_eye8_TA_tex_txt = .data:0x001E1700; // type:object size:0x100 scope:global align:32
+dog_6_mouth1_TA_tex_txt = .data:0x001E1800; // type:object size:0x100 scope:global align:32
+dog_6_mouth2_TA_tex_txt = .data:0x001E1900; // type:object size:0x100 scope:global align:32
+dog_6_mouth3_TA_tex_txt = .data:0x001E1A00; // type:object size:0x100 scope:global align:32
+dog_6_mouth4_TA_tex_txt = .data:0x001E1B00; // type:object size:0x100 scope:global align:32
+dog_6_mouth5_TA_tex_txt = .data:0x001E1C00; // type:object size:0x100 scope:global align:32
+dog_6_mouth6_TA_tex_txt = .data:0x001E1D00; // type:object size:0x100 scope:global align:32
+dog_6_tmem_txt = .data:0x001E1E00; // type:object size:0x400 scope:global align:32
+dog_7_pal = .data:0x001E2200; // type:object size:0x20 scope:global align:32
+dog_7_eye1_TA_tex_txt = .data:0x001E2220; // type:object size:0x100 scope:global align:32
+dog_7_eye2_TA_tex_txt = .data:0x001E2320; // type:object size:0x100 scope:global align:32
+dog_7_eye3_TA_tex_txt = .data:0x001E2420; // type:object size:0x100 scope:global align:32
+dog_7_eye4_TA_tex_txt = .data:0x001E2520; // type:object size:0x100 scope:global align:32
+dog_7_eye5_TA_tex_txt = .data:0x001E2620; // type:object size:0x100 scope:global align:32
+dog_7_eye6_TA_tex_txt = .data:0x001E2720; // type:object size:0x100 scope:global align:32
+dog_7_eye7_TA_tex_txt = .data:0x001E2820; // type:object size:0x100 scope:global align:32
+dog_7_eye8_TA_tex_txt = .data:0x001E2920; // type:object size:0x100 scope:global align:32
+dog_7_mouth1_TA_tex_txt = .data:0x001E2A20; // type:object size:0x100 scope:global align:32
+dog_7_mouth2_TA_tex_txt = .data:0x001E2B20; // type:object size:0x100 scope:global align:32
+dog_7_mouth3_TA_tex_txt = .data:0x001E2C20; // type:object size:0x100 scope:global align:32
+dog_7_mouth4_TA_tex_txt = .data:0x001E2D20; // type:object size:0x100 scope:global align:32
+dog_7_mouth5_TA_tex_txt = .data:0x001E2E20; // type:object size:0x100 scope:global align:32
+dog_7_mouth6_TA_tex_txt = .data:0x001E2F20; // type:object size:0x100 scope:global align:32
+dog_7_tmem_txt = .data:0x001E3020; // type:object size:0x400 scope:global align:32
+dog_8_pal = .data:0x001E3420; // type:object size:0x20 scope:global align:32
+dog_8_eye1_TA_tex_txt = .data:0x001E3440; // type:object size:0x100 scope:global align:32
+dog_8_eye2_TA_tex_txt = .data:0x001E3540; // type:object size:0x100 scope:global align:32
+dog_8_eye3_TA_tex_txt = .data:0x001E3640; // type:object size:0x100 scope:global align:32
+dog_8_eye4_TA_tex_txt = .data:0x001E3740; // type:object size:0x100 scope:global align:32
+dog_8_eye5_TA_tex_txt = .data:0x001E3840; // type:object size:0x100 scope:global align:32
+dog_8_eye6_TA_tex_txt = .data:0x001E3940; // type:object size:0x100 scope:global align:32
+dog_8_eye7_TA_tex_txt = .data:0x001E3A40; // type:object size:0x100 scope:global align:32
+dog_8_eye8_TA_tex_txt = .data:0x001E3B40; // type:object size:0x100 scope:global align:32
+dog_8_mouth1_TA_tex_txt = .data:0x001E3C40; // type:object size:0x100 scope:global align:32
+dog_8_mouth2_TA_tex_txt = .data:0x001E3D40; // type:object size:0x100 scope:global align:32
+dog_8_mouth3_TA_tex_txt = .data:0x001E3E40; // type:object size:0x100 scope:global align:32
+dog_8_mouth4_TA_tex_txt = .data:0x001E3F40; // type:object size:0x100 scope:global align:32
+dog_8_mouth5_TA_tex_txt = .data:0x001E4040; // type:object size:0x100 scope:global align:32
+dog_8_mouth6_TA_tex_txt = .data:0x001E4140; // type:object size:0x100 scope:global align:32
+dog_8_tmem_txt = .data:0x001E4240; // type:object size:0x400 scope:global align:32
+dog_9_pal = .data:0x001E4640; // type:object size:0x20 scope:global align:32
+dog_9_eye1_TA_tex_txt = .data:0x001E4660; // type:object size:0x100 scope:global align:32
+dog_9_eye2_TA_tex_txt = .data:0x001E4760; // type:object size:0x100 scope:global align:32
+dog_9_eye3_TA_tex_txt = .data:0x001E4860; // type:object size:0x100 scope:global align:32
+dog_9_eye4_TA_tex_txt = .data:0x001E4960; // type:object size:0x100 scope:global align:32
+dog_9_eye5_TA_tex_txt = .data:0x001E4A60; // type:object size:0x100 scope:global align:32
+dog_9_eye6_TA_tex_txt = .data:0x001E4B60; // type:object size:0x100 scope:global align:32
+dog_9_eye7_TA_tex_txt = .data:0x001E4C60; // type:object size:0x100 scope:global align:32
+dog_9_eye8_TA_tex_txt = .data:0x001E4D60; // type:object size:0x100 scope:global align:32
+dog_9_mouth1_TA_tex_txt = .data:0x001E4E60; // type:object size:0x100 scope:global align:32
+dog_9_mouth2_TA_tex_txt = .data:0x001E4F60; // type:object size:0x100 scope:global align:32
+dog_9_mouth3_TA_tex_txt = .data:0x001E5060; // type:object size:0x100 scope:global align:32
+dog_9_mouth4_TA_tex_txt = .data:0x001E5160; // type:object size:0x100 scope:global align:32
+dog_9_mouth5_TA_tex_txt = .data:0x001E5260; // type:object size:0x100 scope:global align:32
+dog_9_mouth6_TA_tex_txt = .data:0x001E5360; // type:object size:0x100 scope:global align:32
+dog_9_tmem_txt = .data:0x001E5460; // type:object size:0x400 scope:global align:32
+dog_10_pal = .data:0x001E5860; // type:object size:0x20 scope:global align:32
+dog_10_eye1_TA_tex_txt = .data:0x001E5880; // type:object size:0x100 scope:global align:32
+dog_10_eye2_TA_tex_txt = .data:0x001E5980; // type:object size:0x100 scope:global align:32
+dog_10_eye3_TA_tex_txt = .data:0x001E5A80; // type:object size:0x100 scope:global align:32
+dog_10_eye4_TA_tex_txt = .data:0x001E5B80; // type:object size:0x100 scope:global align:32
+dog_10_eye5_TA_tex_txt = .data:0x001E5C80; // type:object size:0x100 scope:global align:32
+dog_10_eye6_TA_tex_txt = .data:0x001E5D80; // type:object size:0x100 scope:global align:32
+dog_10_eye7_TA_tex_txt = .data:0x001E5E80; // type:object size:0x100 scope:global align:32
+dog_10_eye8_TA_tex_txt = .data:0x001E5F80; // type:object size:0x100 scope:global align:32
+dog_10_mouth1_TA_tex_txt = .data:0x001E6080; // type:object size:0x100 scope:global align:32
+dog_10_mouth2_TA_tex_txt = .data:0x001E6180; // type:object size:0x100 scope:global align:32
+dog_10_mouth3_TA_tex_txt = .data:0x001E6280; // type:object size:0x100 scope:global align:32
+dog_10_mouth4_TA_tex_txt = .data:0x001E6380; // type:object size:0x100 scope:global align:32
+dog_10_mouth5_TA_tex_txt = .data:0x001E6480; // type:object size:0x100 scope:global align:32
+dog_10_mouth6_TA_tex_txt = .data:0x001E6580; // type:object size:0x100 scope:global align:32
+dog_10_tmem_txt = .data:0x001E6680; // type:object size:0x400 scope:global align:32
+seg_1_v = .data:0x001E6A80; // type:object size:0x1860 scope:global align:8
+head_seg_model = .data:0x001E82E0; // type:object size:0x198 scope:global align:8
+mouth_seg_model = .data:0x001E8478; // type:object size:0x80 scope:global align:8
+Rarm2_seg_model = .data:0x001E84F8; // type:object size:0xC8 scope:global align:8
+Rarm1_seg_model = .data:0x001E85C0; // type:object size:0x68 scope:global align:8
+Larm2_seg_model = .data:0x001E8628; // type:object size:0xC8 scope:global align:8
+Larm1_seg_model = .data:0x001E86F0; // type:object size:0x68 scope:global align:8
+chest_seg_model = .data:0x001E8758; // type:object size:0x108 scope:global align:8
+tail1_seg_model = .data:0x001E8860; // type:object size:0x80 scope:global align:8
+tail2_seg_model = .data:0x001E88E0; // type:object size:0x88 scope:global align:8
+Rfoot3_seg_model = .data:0x001E8968; // type:object size:0x88 scope:global align:8
+Rfoot2_seg_model = .data:0x001E89F0; // type:object size:0x80 scope:global align:8
+Rfoot1_seg_model = .data:0x001E8A70; // type:object size:0x58 scope:global align:8
+Lfoot3_seg_model = .data:0x001E8AC8; // type:object size:0x88 scope:global align:8
+Lfoot2_seg_model = .data:0x001E8B50; // type:object size:0x80 scope:global align:8
+Lfoot1_seg_model = .data:0x001E8BD0; // type:object size:0x58 scope:global align:8
+base_seg_model = .data:0x001E8C28; // type:object size:0x80 scope:global align:8
+cKF_je_r_seg_1_tbl = .data:0x001E8CA8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_seg_1 = .data:0x001E8DE0; // type:object size:0x8 scope:global align:4
+seg_1_pal = .data:0x001E8E00; // type:object size:0x20 scope:global align:32
+seg_1_eye1_TA_tex_txt = .data:0x001E8E20; // type:object size:0x100 scope:global align:32
+seg_1_eye2_TA_tex_txt = .data:0x001E8F20; // type:object size:0x100 scope:global align:32
+seg_1_eye3_TA_tex_txt = .data:0x001E9020; // type:object size:0x100 scope:global align:32
+seg_1_eye4_TA_tex_txt = .data:0x001E9120; // type:object size:0x100 scope:global align:32
+seg_1_eye5_TA_tex_txt = .data:0x001E9220; // type:object size:0x100 scope:global align:32
+seg_1_eye6_TA_tex_txt = .data:0x001E9320; // type:object size:0x100 scope:global align:32
+seg_1_eye7_TA_tex_txt = .data:0x001E9420; // type:object size:0x100 scope:global align:32
+seg_1_eye8_TA_tex_txt = .data:0x001E9520; // type:object size:0x100 scope:global align:32
+seg_1_tmem_txt = .data:0x001E9620; // type:object size:0x640 scope:global align:32
+duk_1_v = .data:0x001E9C60; // type:object size:0x1580 scope:global align:8
+head_duk_model = .data:0x001EB1E0; // type:object size:0x148 scope:global align:8
+mouth_duk_model = .data:0x001EB328; // type:object size:0x90 scope:global align:8
+Rarm2_duk_model = .data:0x001EB3B8; // type:object size:0x80 scope:global align:8
+Rarm1_duk_model = .data:0x001EB438; // type:object size:0x78 scope:global align:8
+Larm2_duk_model = .data:0x001EB4B0; // type:object size:0x80 scope:global align:8
+Larm1_duk_model = .data:0x001EB530; // type:object size:0x78 scope:global align:8
+chest_duk_model = .data:0x001EB5A8; // type:object size:0xC8 scope:global align:8
+tail1_duk_model = .data:0x001EB670; // type:object size:0x78 scope:global align:8
+Rfoot3_duk_model = .data:0x001EB6E8; // type:object size:0x88 scope:global align:8
+Rfoot2_duk_model = .data:0x001EB770; // type:object size:0x80 scope:global align:8
+Rfoot1_duk_model = .data:0x001EB7F0; // type:object size:0x58 scope:global align:8
+Lfoot3_duk_model = .data:0x001EB848; // type:object size:0x88 scope:global align:8
+Lfoot2_duk_model = .data:0x001EB8D0; // type:object size:0x80 scope:global align:8
+Lfoot1_duk_model = .data:0x001EB950; // type:object size:0x58 scope:global align:8
+base_duk_model = .data:0x001EB9A8; // type:object size:0x88 scope:global align:8
+cKF_je_r_duk_1_tbl = .data:0x001EBA30; // type:object size:0x138 scope:global align:4
+cKF_bs_r_duk_1 = .data:0x001EBB68; // type:object size:0x8 scope:global align:4
+duk_1_pal = .data:0x001EBB80; // type:object size:0x20 scope:global align:32
+duk_1_eye1_TA_tex_txt = .data:0x001EBBA0; // type:object size:0x100 scope:global align:32
+duk_1_eye2_TA_tex_txt = .data:0x001EBCA0; // type:object size:0x100 scope:global align:32
+duk_1_eye3_TA_tex_txt = .data:0x001EBDA0; // type:object size:0x100 scope:global align:32
+duk_1_eye4_TA_tex_txt = .data:0x001EBEA0; // type:object size:0x100 scope:global align:32
+duk_1_eye5_TA_tex_txt = .data:0x001EBFA0; // type:object size:0x100 scope:global align:32
+duk_1_eye6_TA_tex_txt = .data:0x001EC0A0; // type:object size:0x100 scope:global align:32
+duk_1_eye7_TA_tex_txt = .data:0x001EC1A0; // type:object size:0x100 scope:global align:32
+duk_1_eye8_TA_tex_txt = .data:0x001EC2A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth1_TA_tex_txt = .data:0x001EC3A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth2_TA_tex_txt = .data:0x001EC4A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth3_TA_tex_txt = .data:0x001EC5A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth4_TA_tex_txt = .data:0x001EC6A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth5_TA_tex_txt = .data:0x001EC7A0; // type:object size:0x100 scope:global align:32
+duk_1_mouth6_TA_tex_txt = .data:0x001EC8A0; // type:object size:0x100 scope:global align:32
+duk_1_tmem_txt = .data:0x001EC9A0; // type:object size:0x400 scope:global align:32
+duk_2_pal = .data:0x001ECDA0; // type:object size:0x20 scope:global align:32
+duk_2_eye1_TA_tex_txt = .data:0x001ECDC0; // type:object size:0x100 scope:global align:32
+duk_2_eye2_TA_tex_txt = .data:0x001ECEC0; // type:object size:0x100 scope:global align:32
+duk_2_eye3_TA_tex_txt = .data:0x001ECFC0; // type:object size:0x100 scope:global align:32
+duk_2_eye4_TA_tex_txt = .data:0x001ED0C0; // type:object size:0x100 scope:global align:32
+duk_2_eye5_TA_tex_txt = .data:0x001ED1C0; // type:object size:0x100 scope:global align:32
+duk_2_eye6_TA_tex_txt = .data:0x001ED2C0; // type:object size:0x100 scope:global align:32
+duk_2_eye7_TA_tex_txt = .data:0x001ED3C0; // type:object size:0x100 scope:global align:32
+duk_2_eye8_TA_tex_txt = .data:0x001ED4C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth1_TA_tex_txt = .data:0x001ED5C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth2_TA_tex_txt = .data:0x001ED6C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth3_TA_tex_txt = .data:0x001ED7C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth4_TA_tex_txt = .data:0x001ED8C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth5_TA_tex_txt = .data:0x001ED9C0; // type:object size:0x100 scope:global align:32
+duk_2_mouth6_TA_tex_txt = .data:0x001EDAC0; // type:object size:0x100 scope:global align:32
+duk_2_tmem_txt = .data:0x001EDBC0; // type:object size:0x400 scope:global align:32
+duk_11_pal = .data:0x001EDFC0; // type:object size:0x20 scope:global align:32
+duk_11_eye1_TA_tex_txt = .data:0x001EDFE0; // type:object size:0x100 scope:global align:32
+duk_11_eye2_TA_tex_txt = .data:0x001EE0E0; // type:object size:0x100 scope:global align:32
+duk_11_eye3_TA_tex_txt = .data:0x001EE1E0; // type:object size:0x100 scope:global align:32
+duk_11_eye4_TA_tex_txt = .data:0x001EE2E0; // type:object size:0x100 scope:global align:32
+duk_11_eye5_TA_tex_txt = .data:0x001EE3E0; // type:object size:0x100 scope:global align:32
+duk_11_eye6_TA_tex_txt = .data:0x001EE4E0; // type:object size:0x100 scope:global align:32
+duk_11_eye7_TA_tex_txt = .data:0x001EE5E0; // type:object size:0x100 scope:global align:32
+duk_11_eye8_TA_tex_txt = .data:0x001EE6E0; // type:object size:0x100 scope:global align:32
+duk_11_mouth1_TA_tex_txt = .data:0x001EE7E0; // type:object size:0x100 scope:global align:32
+duk_11_mouth2_TA_tex_txt = .data:0x001EE8E0; // type:object size:0x100 scope:global align:32
+duk_11_mouth3_TA_tex_txt = .data:0x001EE9E0; // type:object size:0x100 scope:global align:32
+duk_11_mouth4_TA_tex_txt = .data:0x001EEAE0; // type:object size:0x100 scope:global align:32
+duk_11_mouth5_TA_tex_txt = .data:0x001EEBE0; // type:object size:0x100 scope:global align:32
+duk_11_mouth6_TA_tex_txt = .data:0x001EECE0; // type:object size:0x100 scope:global align:32
+duk_11_tmem_txt = .data:0x001EEDE0; // type:object size:0x400 scope:global align:32
+duk_3_pal = .data:0x001EF1E0; // type:object size:0x20 scope:global align:32
+duk_3_eye1_TA_tex_txt = .data:0x001EF200; // type:object size:0x100 scope:global align:32
+duk_3_eye2_TA_tex_txt = .data:0x001EF300; // type:object size:0x100 scope:global align:32
+duk_3_eye3_TA_tex_txt = .data:0x001EF400; // type:object size:0x100 scope:global align:32
+duk_3_eye4_TA_tex_txt = .data:0x001EF500; // type:object size:0x100 scope:global align:32
+duk_3_eye5_TA_tex_txt = .data:0x001EF600; // type:object size:0x100 scope:global align:32
+duk_3_eye6_TA_tex_txt = .data:0x001EF700; // type:object size:0x100 scope:global align:32
+duk_3_eye7_TA_tex_txt = .data:0x001EF800; // type:object size:0x100 scope:global align:32
+duk_3_eye8_TA_tex_txt = .data:0x001EF900; // type:object size:0x100 scope:global align:32
+duk_3_mouth1_TA_tex_txt = .data:0x001EFA00; // type:object size:0x100 scope:global align:32
+duk_3_mouth2_TA_tex_txt = .data:0x001EFB00; // type:object size:0x100 scope:global align:32
+duk_3_mouth3_TA_tex_txt = .data:0x001EFC00; // type:object size:0x100 scope:global align:32
+duk_3_mouth4_TA_tex_txt = .data:0x001EFD00; // type:object size:0x100 scope:global align:32
+duk_3_mouth5_TA_tex_txt = .data:0x001EFE00; // type:object size:0x100 scope:global align:32
+duk_3_mouth6_TA_tex_txt = .data:0x001EFF00; // type:object size:0x100 scope:global align:32
+duk_3_tmem_txt = .data:0x001F0000; // type:object size:0x400 scope:global align:32
+duk_4_pal = .data:0x001F0400; // type:object size:0x20 scope:global align:32
+duk_4_eye1_TA_tex_txt = .data:0x001F0420; // type:object size:0x100 scope:global align:32
+duk_4_eye2_TA_tex_txt = .data:0x001F0520; // type:object size:0x100 scope:global align:32
+duk_4_eye3_TA_tex_txt = .data:0x001F0620; // type:object size:0x100 scope:global align:32
+duk_4_eye4_TA_tex_txt = .data:0x001F0720; // type:object size:0x100 scope:global align:32
+duk_4_eye5_TA_tex_txt = .data:0x001F0820; // type:object size:0x100 scope:global align:32
+duk_4_eye6_TA_tex_txt = .data:0x001F0920; // type:object size:0x100 scope:global align:32
+duk_4_eye7_TA_tex_txt = .data:0x001F0A20; // type:object size:0x100 scope:global align:32
+duk_4_eye8_TA_tex_txt = .data:0x001F0B20; // type:object size:0x100 scope:global align:32
+duk_4_mouth1_TA_tex_txt = .data:0x001F0C20; // type:object size:0x100 scope:global align:32
+duk_4_mouth2_TA_tex_txt = .data:0x001F0D20; // type:object size:0x100 scope:global align:32
+duk_4_mouth3_TA_tex_txt = .data:0x001F0E20; // type:object size:0x100 scope:global align:32
+duk_4_mouth4_TA_tex_txt = .data:0x001F0F20; // type:object size:0x100 scope:global align:32
+duk_4_mouth5_TA_tex_txt = .data:0x001F1020; // type:object size:0x100 scope:global align:32
+duk_4_mouth6_TA_tex_txt = .data:0x001F1120; // type:object size:0x100 scope:global align:32
+duk_4_tmem_txt = .data:0x001F1220; // type:object size:0x400 scope:global align:32
+duk_5_pal = .data:0x001F1620; // type:object size:0x20 scope:global align:32
+duk_5_eye1_TA_tex_txt = .data:0x001F1640; // type:object size:0x100 scope:global align:32
+duk_5_eye2_TA_tex_txt = .data:0x001F1740; // type:object size:0x100 scope:global align:32
+duk_5_eye3_TA_tex_txt = .data:0x001F1840; // type:object size:0x100 scope:global align:32
+duk_5_eye4_TA_tex_txt = .data:0x001F1940; // type:object size:0x100 scope:global align:32
+duk_5_eye5_TA_tex_txt = .data:0x001F1A40; // type:object size:0x100 scope:global align:32
+duk_5_eye6_TA_tex_txt = .data:0x001F1B40; // type:object size:0x100 scope:global align:32
+duk_5_eye7_TA_tex_txt = .data:0x001F1C40; // type:object size:0x100 scope:global align:32
+duk_5_eye8_TA_tex_txt = .data:0x001F1D40; // type:object size:0x100 scope:global align:32
+duk_5_mouth1_TA_tex_txt = .data:0x001F1E40; // type:object size:0x100 scope:global align:32 data:string
+duk_5_mouth2_TA_tex_txt = .data:0x001F1F40; // type:object size:0x100 scope:global align:32 data:string
+duk_5_mouth3_TA_tex_txt = .data:0x001F2040; // type:object size:0x100 scope:global align:32 data:string
+duk_5_mouth4_TA_tex_txt = .data:0x001F2140; // type:object size:0x100 scope:global align:32 data:string
+duk_5_mouth5_TA_tex_txt = .data:0x001F2240; // type:object size:0x100 scope:global align:32 data:string
+duk_5_mouth6_TA_tex_txt = .data:0x001F2340; // type:object size:0x100 scope:global align:32 data:string
+duk_5_tmem_txt = .data:0x001F2440; // type:object size:0x400 scope:global align:32
+duk_6_pal = .data:0x001F2840; // type:object size:0x20 scope:global align:32
+duk_6_eye1_TA_tex_txt = .data:0x001F2860; // type:object size:0x100 scope:global align:32
+duk_6_eye2_TA_tex_txt = .data:0x001F2960; // type:object size:0x100 scope:global align:32
+duk_6_eye3_TA_tex_txt = .data:0x001F2A60; // type:object size:0x100 scope:global align:32
+duk_6_eye4_TA_tex_txt = .data:0x001F2B60; // type:object size:0x100 scope:global align:32
+duk_6_eye5_TA_tex_txt = .data:0x001F2C60; // type:object size:0x100 scope:global align:32
+duk_6_eye6_TA_tex_txt = .data:0x001F2D60; // type:object size:0x100 scope:global align:32
+duk_6_eye7_TA_tex_txt = .data:0x001F2E60; // type:object size:0x100 scope:global align:32
+duk_6_eye8_TA_tex_txt = .data:0x001F2F60; // type:object size:0x100 scope:global align:32
+duk_6_mouth1_TA_tex_txt = .data:0x001F3060; // type:object size:0x100 scope:global align:32
+duk_6_mouth2_TA_tex_txt = .data:0x001F3160; // type:object size:0x100 scope:global align:32
+duk_6_mouth3_TA_tex_txt = .data:0x001F3260; // type:object size:0x100 scope:global align:32
+duk_6_mouth4_TA_tex_txt = .data:0x001F3360; // type:object size:0x100 scope:global align:32
+duk_6_mouth5_TA_tex_txt = .data:0x001F3460; // type:object size:0x100 scope:global align:32
+duk_6_mouth6_TA_tex_txt = .data:0x001F3560; // type:object size:0x100 scope:global align:32
+duk_6_tmem_txt = .data:0x001F3660; // type:object size:0x400 scope:global align:32
+duk_7_pal = .data:0x001F3A60; // type:object size:0x20 scope:global align:32
+duk_7_eye1_TA_tex_txt = .data:0x001F3A80; // type:object size:0x100 scope:global align:32
+duk_7_eye2_TA_tex_txt = .data:0x001F3B80; // type:object size:0x100 scope:global align:32
+duk_7_eye3_TA_tex_txt = .data:0x001F3C80; // type:object size:0x100 scope:global align:32
+duk_7_eye4_TA_tex_txt = .data:0x001F3D80; // type:object size:0x100 scope:global align:32
+duk_7_eye5_TA_tex_txt = .data:0x001F3E80; // type:object size:0x100 scope:global align:32
+duk_7_eye6_TA_tex_txt = .data:0x001F3F80; // type:object size:0x100 scope:global align:32
+duk_7_eye7_TA_tex_txt = .data:0x001F4080; // type:object size:0x100 scope:global align:32
+duk_7_eye8_TA_tex_txt = .data:0x001F4180; // type:object size:0x100 scope:global align:32
+duk_7_mouth1_TA_tex_txt = .data:0x001F4280; // type:object size:0x100 scope:global align:32
+duk_7_mouth2_TA_tex_txt = .data:0x001F4380; // type:object size:0x100 scope:global align:32
+duk_7_mouth3_TA_tex_txt = .data:0x001F4480; // type:object size:0x100 scope:global align:32
+duk_7_mouth4_TA_tex_txt = .data:0x001F4580; // type:object size:0x100 scope:global align:32
+duk_7_mouth5_TA_tex_txt = .data:0x001F4680; // type:object size:0x100 scope:global align:32
+duk_7_mouth6_TA_tex_txt = .data:0x001F4780; // type:object size:0x100 scope:global align:32
+duk_7_tmem_txt = .data:0x001F4880; // type:object size:0x400 scope:global align:32
+duk_8_pal = .data:0x001F4C80; // type:object size:0x20 scope:global align:32
+duk_8_eye1_TA_tex_txt = .data:0x001F4CA0; // type:object size:0x100 scope:global align:32
+duk_8_eye2_TA_tex_txt = .data:0x001F4DA0; // type:object size:0x100 scope:global align:32
+duk_8_eye3_TA_tex_txt = .data:0x001F4EA0; // type:object size:0x100 scope:global align:32
+duk_8_eye4_TA_tex_txt = .data:0x001F4FA0; // type:object size:0x100 scope:global align:32
+duk_8_eye5_TA_tex_txt = .data:0x001F50A0; // type:object size:0x100 scope:global align:32
+duk_8_eye6_TA_tex_txt = .data:0x001F51A0; // type:object size:0x100 scope:global align:32
+duk_8_eye7_TA_tex_txt = .data:0x001F52A0; // type:object size:0x100 scope:global align:32
+duk_8_eye8_TA_tex_txt = .data:0x001F53A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth1_TA_tex_txt = .data:0x001F54A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth2_TA_tex_txt = .data:0x001F55A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth3_TA_tex_txt = .data:0x001F56A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth4_TA_tex_txt = .data:0x001F57A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth5_TA_tex_txt = .data:0x001F58A0; // type:object size:0x100 scope:global align:32
+duk_8_mouth6_TA_tex_txt = .data:0x001F59A0; // type:object size:0x100 scope:global align:32
+duk_8_tmem_txt = .data:0x001F5AA0; // type:object size:0x400 scope:global align:32
+duk_9_pal = .data:0x001F5EA0; // type:object size:0x20 scope:global align:32
+duk_9_eye1_TA_tex_txt = .data:0x001F5EC0; // type:object size:0x100 scope:global align:32
+duk_9_eye2_TA_tex_txt = .data:0x001F5FC0; // type:object size:0x100 scope:global align:32
+duk_9_eye3_TA_tex_txt = .data:0x001F60C0; // type:object size:0x100 scope:global align:32
+duk_9_eye4_TA_tex_txt = .data:0x001F61C0; // type:object size:0x100 scope:global align:32
+duk_9_eye5_TA_tex_txt = .data:0x001F62C0; // type:object size:0x100 scope:global align:32
+duk_9_eye6_TA_tex_txt = .data:0x001F63C0; // type:object size:0x100 scope:global align:32
+duk_9_eye7_TA_tex_txt = .data:0x001F64C0; // type:object size:0x100 scope:global align:32
+duk_9_eye8_TA_tex_txt = .data:0x001F65C0; // type:object size:0x100 scope:global align:32
+duk_9_mouth1_TA_tex_txt = .data:0x001F66C0; // type:object size:0x100 scope:global align:32
+duk_9_mouth2_TA_tex_txt = .data:0x001F67C0; // type:object size:0x100 scope:global align:32
+duk_9_mouth3_TA_tex_txt = .data:0x001F68C0; // type:object size:0x100 scope:global align:32
+duk_9_mouth4_TA_tex_txt = .data:0x001F69C0; // type:object size:0x100 scope:global align:32
+duk_9_mouth5_TA_tex_txt = .data:0x001F6AC0; // type:object size:0x100 scope:global align:32
+duk_9_mouth6_TA_tex_txt = .data:0x001F6BC0; // type:object size:0x100 scope:global align:32
+duk_9_tmem_txt = .data:0x001F6CC0; // type:object size:0x400 scope:global align:32
+duk_10_pal = .data:0x001F70C0; // type:object size:0x20 scope:global align:32
+duk_10_eye1_TA_tex_txt = .data:0x001F70E0; // type:object size:0x100 scope:global align:32
+duk_10_eye2_TA_tex_txt = .data:0x001F71E0; // type:object size:0x100 scope:global align:32
+duk_10_eye3_TA_tex_txt = .data:0x001F72E0; // type:object size:0x100 scope:global align:32
+duk_10_eye4_TA_tex_txt = .data:0x001F73E0; // type:object size:0x100 scope:global align:32
+duk_10_eye5_TA_tex_txt = .data:0x001F74E0; // type:object size:0x100 scope:global align:32
+duk_10_eye6_TA_tex_txt = .data:0x001F75E0; // type:object size:0x100 scope:global align:32
+duk_10_eye7_TA_tex_txt = .data:0x001F76E0; // type:object size:0x100 scope:global align:32
+duk_10_eye8_TA_tex_txt = .data:0x001F77E0; // type:object size:0x100 scope:global align:32
+duk_10_mouth1_TA_tex_txt = .data:0x001F78E0; // type:object size:0x100 scope:global align:32
+duk_10_mouth2_TA_tex_txt = .data:0x001F79E0; // type:object size:0x100 scope:global align:32
+duk_10_mouth3_TA_tex_txt = .data:0x001F7AE0; // type:object size:0x100 scope:global align:32
+duk_10_mouth4_TA_tex_txt = .data:0x001F7BE0; // type:object size:0x100 scope:global align:32
+duk_10_mouth5_TA_tex_txt = .data:0x001F7CE0; // type:object size:0x100 scope:global align:32
+duk_10_mouth6_TA_tex_txt = .data:0x001F7DE0; // type:object size:0x100 scope:global align:32
+duk_10_tmem_txt = .data:0x001F7EE0; // type:object size:0x400 scope:global align:32
+event_notification_info = .data:0x001F82E0; // type:object size:0x28 scope:global align:4
+EVENT_NOTIFICATION_player_data = .data:0x001F8308; // type:object size:0x10 scope:global align:4
+EVENT_NOTIFICATION_ctrl_actor_data = .data:0x001F8318; // type:object size:0x18 scope:global align:4
+elp_1_v = .data:0x001F8330; // type:object size:0x17C0 scope:global align:8
+head_elp_model = .data:0x001F9AF0; // type:object size:0x1C0 scope:global align:8
+mouth_elp_model = .data:0x001F9CB0; // type:object size:0x90 scope:global align:8
+Rarm2_elp_model = .data:0x001F9D40; // type:object size:0x88 scope:global align:8
+Rarm1_elp_model = .data:0x001F9DC8; // type:object size:0x78 scope:global align:8
+Larm2_elp_model = .data:0x001F9E40; // type:object size:0x88 scope:global align:8
+Larm1_elp_model = .data:0x001F9EC8; // type:object size:0x78 scope:global align:8
+chest_elp_model = .data:0x001F9F40; // type:object size:0xA0 scope:global align:8
+tail1_elp_model = .data:0x001F9FE0; // type:object size:0x58 scope:global align:8
+tail2_elp_model = .data:0x001FA038; // type:object size:0x90 scope:global align:8
+Rfoot2_elp_model = .data:0x001FA0C8; // type:object size:0x90 scope:global align:8
+Rfoot1_elp_model = .data:0x001FA158; // type:object size:0x80 scope:global align:8
+Lfoot2_elp_model = .data:0x001FA1D8; // type:object size:0x90 scope:global align:8
+Lfoot1_elp_model = .data:0x001FA268; // type:object size:0x80 scope:global align:8
+base_elp_model = .data:0x001FA2E8; // type:object size:0x78 scope:global align:8
+cKF_je_r_elp_1_tbl = .data:0x001FA360; // type:object size:0x138 scope:global align:4
+cKF_bs_r_elp_1 = .data:0x001FA498; // type:object size:0x8 scope:global align:4
+elp_1_pal = .data:0x001FA4A0; // type:object size:0x20 scope:global align:32
+elp_1_eye1_TA_tex_txt = .data:0x001FA4C0; // type:object size:0x100 scope:global align:32
+elp_1_eye2_TA_tex_txt = .data:0x001FA5C0; // type:object size:0x100 scope:global align:32
+elp_1_eye3_TA_tex_txt = .data:0x001FA6C0; // type:object size:0x100 scope:global align:32
+elp_1_eye4_TA_tex_txt = .data:0x001FA7C0; // type:object size:0x100 scope:global align:32
+elp_1_eye5_TA_tex_txt = .data:0x001FA8C0; // type:object size:0x100 scope:global align:32
+elp_1_eye6_TA_tex_txt = .data:0x001FA9C0; // type:object size:0x100 scope:global align:32
+elp_1_eye7_TA_tex_txt = .data:0x001FAAC0; // type:object size:0x100 scope:global align:32
+elp_1_eye8_TA_tex_txt = .data:0x001FABC0; // type:object size:0x100 scope:global align:32
+elp_1_mouth1_TA_tex_txt = .data:0x001FACC0; // type:object size:0x100 scope:global align:32
+elp_1_mouth2_TA_tex_txt = .data:0x001FADC0; // type:object size:0x100 scope:global align:32
+elp_1_mouth3_TA_tex_txt = .data:0x001FAEC0; // type:object size:0x100 scope:global align:32
+elp_1_mouth4_TA_tex_txt = .data:0x001FAFC0; // type:object size:0x100 scope:global align:32
+elp_1_mouth5_TA_tex_txt = .data:0x001FB0C0; // type:object size:0x100 scope:global align:32
+elp_1_mouth6_TA_tex_txt = .data:0x001FB1C0; // type:object size:0x100 scope:global align:32
+elp_1_tmem_txt = .data:0x001FB2C0; // type:object size:0x400 scope:global align:32
+elp_2_pal = .data:0x001FB6C0; // type:object size:0x20 scope:global align:32
+elp_2_eye1_TA_tex_txt = .data:0x001FB6E0; // type:object size:0x100 scope:global align:32
+elp_2_eye2_TA_tex_txt = .data:0x001FB7E0; // type:object size:0x100 scope:global align:32
+elp_2_eye3_TA_tex_txt = .data:0x001FB8E0; // type:object size:0x100 scope:global align:32
+elp_2_eye4_TA_tex_txt = .data:0x001FB9E0; // type:object size:0x100 scope:global align:32
+elp_2_eye5_TA_tex_txt = .data:0x001FBAE0; // type:object size:0x100 scope:global align:32
+elp_2_eye6_TA_tex_txt = .data:0x001FBBE0; // type:object size:0x100 scope:global align:32
+elp_2_eye7_TA_tex_txt = .data:0x001FBCE0; // type:object size:0x100 scope:global align:32
+elp_2_eye8_TA_tex_txt = .data:0x001FBDE0; // type:object size:0x100 scope:global align:32
+elp_2_mouth1_TA_tex_txt = .data:0x001FBEE0; // type:object size:0x100 scope:global align:32
+elp_2_mouth2_TA_tex_txt = .data:0x001FBFE0; // type:object size:0x100 scope:global align:32
+elp_2_mouth3_TA_tex_txt = .data:0x001FC0E0; // type:object size:0x100 scope:global align:32
+elp_2_mouth4_TA_tex_txt = .data:0x001FC1E0; // type:object size:0x100 scope:global align:32
+elp_2_mouth5_TA_tex_txt = .data:0x001FC2E0; // type:object size:0x100 scope:global align:32
+elp_2_mouth6_TA_tex_txt = .data:0x001FC3E0; // type:object size:0x100 scope:global align:32
+elp_2_tmem_txt = .data:0x001FC4E0; // type:object size:0x400 scope:global align:32
+elp_3_pal = .data:0x001FC8E0; // type:object size:0x20 scope:global align:32
+elp_3_eye1_TA_tex_txt = .data:0x001FC900; // type:object size:0x100 scope:global align:32
+elp_3_eye2_TA_tex_txt = .data:0x001FCA00; // type:object size:0x100 scope:global align:32
+elp_3_eye3_TA_tex_txt = .data:0x001FCB00; // type:object size:0x100 scope:global align:32
+elp_3_eye4_TA_tex_txt = .data:0x001FCC00; // type:object size:0x100 scope:global align:32
+elp_3_eye5_TA_tex_txt = .data:0x001FCD00; // type:object size:0x100 scope:global align:32
+elp_3_eye6_TA_tex_txt = .data:0x001FCE00; // type:object size:0x100 scope:global align:32
+elp_3_eye7_TA_tex_txt = .data:0x001FCF00; // type:object size:0x100 scope:global align:32
+elp_3_eye8_TA_tex_txt = .data:0x001FD000; // type:object size:0x100 scope:global align:32
+elp_3_mouth1_TA_tex_txt = .data:0x001FD100; // type:object size:0x100 scope:global align:32
+elp_3_mouth2_TA_tex_txt = .data:0x001FD200; // type:object size:0x100 scope:global align:32
+elp_3_mouth3_TA_tex_txt = .data:0x001FD300; // type:object size:0x100 scope:global align:32
+elp_3_mouth4_TA_tex_txt = .data:0x001FD400; // type:object size:0x100 scope:global align:32
+elp_3_mouth5_TA_tex_txt = .data:0x001FD500; // type:object size:0x100 scope:global align:32
+elp_3_mouth6_TA_tex_txt = .data:0x001FD600; // type:object size:0x100 scope:global align:32
+elp_3_tmem_txt = .data:0x001FD700; // type:object size:0x400 scope:global align:32
+elp_4_pal = .data:0x001FDB00; // type:object size:0x20 scope:global align:32
+elp_4_eye1_TA_tex_txt = .data:0x001FDB20; // type:object size:0x100 scope:global align:32
+elp_4_eye2_TA_tex_txt = .data:0x001FDC20; // type:object size:0x100 scope:global align:32
+elp_4_eye3_TA_tex_txt = .data:0x001FDD20; // type:object size:0x100 scope:global align:32
+elp_4_eye4_TA_tex_txt = .data:0x001FDE20; // type:object size:0x100 scope:global align:32
+elp_4_eye5_TA_tex_txt = .data:0x001FDF20; // type:object size:0x100 scope:global align:32
+elp_4_eye6_TA_tex_txt = .data:0x001FE020; // type:object size:0x100 scope:global align:32
+elp_4_eye7_TA_tex_txt = .data:0x001FE120; // type:object size:0x100 scope:global align:32
+elp_4_eye8_TA_tex_txt = .data:0x001FE220; // type:object size:0x100 scope:global align:32
+elp_4_mouth1_TA_tex_txt = .data:0x001FE320; // type:object size:0x100 scope:global align:32
+elp_4_mouth2_TA_tex_txt = .data:0x001FE420; // type:object size:0x100 scope:global align:32
+elp_4_mouth3_TA_tex_txt = .data:0x001FE520; // type:object size:0x100 scope:global align:32
+elp_4_mouth4_TA_tex_txt = .data:0x001FE620; // type:object size:0x100 scope:global align:32
+elp_4_mouth5_TA_tex_txt = .data:0x001FE720; // type:object size:0x100 scope:global align:32
+elp_4_mouth6_TA_tex_txt = .data:0x001FE820; // type:object size:0x100 scope:global align:32
+elp_4_tmem_txt = .data:0x001FE920; // type:object size:0x400 scope:global align:32
+elp_5_pal = .data:0x001FED20; // type:object size:0x20 scope:global align:32
+elp_5_eye1_TA_tex_txt = .data:0x001FED40; // type:object size:0x100 scope:global align:32
+elp_5_eye2_TA_tex_txt = .data:0x001FEE40; // type:object size:0x100 scope:global align:32
+elp_5_eye3_TA_tex_txt = .data:0x001FEF40; // type:object size:0x100 scope:global align:32
+elp_5_eye4_TA_tex_txt = .data:0x001FF040; // type:object size:0x100 scope:global align:32
+elp_5_eye5_TA_tex_txt = .data:0x001FF140; // type:object size:0x100 scope:global align:32
+elp_5_eye6_TA_tex_txt = .data:0x001FF240; // type:object size:0x100 scope:global align:32
+elp_5_eye7_TA_tex_txt = .data:0x001FF340; // type:object size:0x100 scope:global align:32
+elp_5_eye8_TA_tex_txt = .data:0x001FF440; // type:object size:0x100 scope:global align:32
+elp_5_mouth1_TA_tex_txt = .data:0x001FF540; // type:object size:0x100 scope:global align:32
+elp_5_mouth2_TA_tex_txt = .data:0x001FF640; // type:object size:0x100 scope:global align:32
+elp_5_mouth3_TA_tex_txt = .data:0x001FF740; // type:object size:0x100 scope:global align:32
+elp_5_mouth4_TA_tex_txt = .data:0x001FF840; // type:object size:0x100 scope:global align:32
+elp_5_mouth5_TA_tex_txt = .data:0x001FF940; // type:object size:0x100 scope:global align:32
+elp_5_mouth6_TA_tex_txt = .data:0x001FFA40; // type:object size:0x100 scope:global align:32
+elp_5_tmem_txt = .data:0x001FFB40; // type:object size:0x400 scope:global align:32
+elp_6_pal = .data:0x001FFF40; // type:object size:0x20 scope:global align:32
+elp_6_eye1_TA_tex_txt = .data:0x001FFF60; // type:object size:0x100 scope:global align:32
+elp_6_eye2_TA_tex_txt = .data:0x00200060; // type:object size:0x100 scope:global align:32
+elp_6_eye3_TA_tex_txt = .data:0x00200160; // type:object size:0x100 scope:global align:32
+elp_6_eye4_TA_tex_txt = .data:0x00200260; // type:object size:0x100 scope:global align:32
+elp_6_eye5_TA_tex_txt = .data:0x00200360; // type:object size:0x100 scope:global align:32
+elp_6_eye6_TA_tex_txt = .data:0x00200460; // type:object size:0x100 scope:global align:32
+elp_6_eye7_TA_tex_txt = .data:0x00200560; // type:object size:0x100 scope:global align:32
+elp_6_eye8_TA_tex_txt = .data:0x00200660; // type:object size:0x100 scope:global align:32
+elp_6_mouth1_TA_tex_txt = .data:0x00200760; // type:object size:0x100 scope:global align:32
+elp_6_mouth2_TA_tex_txt = .data:0x00200860; // type:object size:0x100 scope:global align:32
+elp_6_mouth3_TA_tex_txt = .data:0x00200960; // type:object size:0x100 scope:global align:32
+elp_6_mouth4_TA_tex_txt = .data:0x00200A60; // type:object size:0x100 scope:global align:32
+elp_6_mouth5_TA_tex_txt = .data:0x00200B60; // type:object size:0x100 scope:global align:32
+elp_6_mouth6_TA_tex_txt = .data:0x00200C60; // type:object size:0x100 scope:global align:32
+elp_6_tmem_txt = .data:0x00200D60; // type:object size:0x400 scope:global align:32
+elp_7_pal = .data:0x00201160; // type:object size:0x20 scope:global align:32
+elp_7_eye1_TA_tex_txt = .data:0x00201180; // type:object size:0x100 scope:global align:32
+elp_7_eye2_TA_tex_txt = .data:0x00201280; // type:object size:0x100 scope:global align:32
+elp_7_eye3_TA_tex_txt = .data:0x00201380; // type:object size:0x100 scope:global align:32
+elp_7_eye4_TA_tex_txt = .data:0x00201480; // type:object size:0x100 scope:global align:32
+elp_7_eye5_TA_tex_txt = .data:0x00201580; // type:object size:0x100 scope:global align:32
+elp_7_eye6_TA_tex_txt = .data:0x00201680; // type:object size:0x100 scope:global align:32
+elp_7_eye7_TA_tex_txt = .data:0x00201780; // type:object size:0x100 scope:global align:32
+elp_7_eye8_TA_tex_txt = .data:0x00201880; // type:object size:0x100 scope:global align:32
+elp_7_mouth1_TA_tex_txt = .data:0x00201980; // type:object size:0x100 scope:global align:32
+elp_7_mouth2_TA_tex_txt = .data:0x00201A80; // type:object size:0x100 scope:global align:32
+elp_7_mouth3_TA_tex_txt = .data:0x00201B80; // type:object size:0x100 scope:global align:32
+elp_7_mouth4_TA_tex_txt = .data:0x00201C80; // type:object size:0x100 scope:global align:32
+elp_7_mouth5_TA_tex_txt = .data:0x00201D80; // type:object size:0x100 scope:global align:32
+elp_7_mouth6_TA_tex_txt = .data:0x00201E80; // type:object size:0x100 scope:global align:32
+elp_7_tmem_txt = .data:0x00201F80; // type:object size:0x400 scope:global align:32
+fg_tool_in_info = .data:0x00202380; // type:object size:0x50 scope:global align:4
+FG_TOOL_IN_player_data = .data:0x002023D0; // type:object size:0x10 scope:global align:4
+FG_TOOL_IN_ctrl_actor_data = .data:0x002023E0; // type:object size:0x12 scope:global align:4
+FG_TOOL_IN_actor_data = .data:0x002023F4; // type:object size:0x30 scope:global align:4
+FG_TOOL_IN_object_bank = .data:0x00202424; // type:object size:0x2 scope:global align:4
+FG_TOOL_IN_door_data = .data:0x00202428; // type:object size:0x14 scope:global align:4
+field_tool_field_info = .data:0x00202440; // type:object size:0x38 scope:global align:4
+FIELD_TOOL_FIELD_player_data = .data:0x00202478; // type:object size:0x10 scope:global align:4
+FIELD_TOOL_FIELD_ctrl_actor_data = .data:0x00202488; // type:object size:0x12 scope:global align:4
+FIELD_TOOL_FIELD_actor_data = .data:0x0020249C; // type:object size:0x10 scope:global align:4
+FIELD_TOOL_FIELD_object_bank = .data:0x002024AC; // type:object size:0x2 scope:global align:4
+data_fdd = .data:0x002024B0; // type:object size:0x2150 scope:global align:4
+FONT_nes_tex_choice = .data:0x00204600; // type:object size:0x80 scope:global align:32
+FONT_nes_tex_cursor = .data:0x00204680; // type:object size:0x80 scope:global align:32
+FONT_nes_tex_font1 = .data:0x00204700; // type:object size:0x6000 scope:global align:32
+FONT_nes_tex_jyouge = .data:0x0020A700; // type:object size:0x80 scope:global align:32
+FONT_nes_tex_next = .data:0x0020A780; // type:object size:0x80 scope:global align:32
+FONT_nes_tex_sayuu = .data:0x0020A800; // type:object size:0x80 scope:global align:32
+flg_1_v = .data:0x0020A880; // type:object size:0x1240 scope:global align:8
+head_flg_model = .data:0x0020BAC0; // type:object size:0x148 scope:global align:8
+Rarm2_flg_model = .data:0x0020BC08; // type:object size:0x88 scope:global align:8
+Rarm1_flg_model = .data:0x0020BC90; // type:object size:0x78 scope:global align:8
+Larm2_flg_model = .data:0x0020BD08; // type:object size:0x88 scope:global align:8
+Larm1_flg_model = .data:0x0020BD90; // type:object size:0x78 scope:global align:8
+chest_flg_model = .data:0x0020BE08; // type:object size:0xA8 scope:global align:8
+Rfoot2_flg_model = .data:0x0020BEB0; // type:object size:0x80 scope:global align:8
+Rfoot1_flg_model = .data:0x0020BF30; // type:object size:0xC0 scope:global align:8
+Lfoot2_flg_model = .data:0x0020BFF0; // type:object size:0x80 scope:global align:8
+Lfoot1_flg_model = .data:0x0020C070; // type:object size:0xC0 scope:global align:8
+base_flg_model = .data:0x0020C130; // type:object size:0x70 scope:global align:8
+cKF_je_r_flg_1_tbl = .data:0x0020C1A0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_flg_1 = .data:0x0020C2D8; // type:object size:0x8 scope:global align:4
+flg_1_pal = .data:0x0020C2E0; // type:object size:0x20 scope:global align:32
+flg_1_eye1_TA_tex_txt = .data:0x0020C300; // type:object size:0x100 scope:global align:32
+flg_1_eye2_TA_tex_txt = .data:0x0020C400; // type:object size:0x100 scope:global align:32
+flg_1_eye3_TA_tex_txt = .data:0x0020C500; // type:object size:0x100 scope:global align:32
+flg_1_eye4_TA_tex_txt = .data:0x0020C600; // type:object size:0x100 scope:global align:32
+flg_1_eye5_TA_tex_txt = .data:0x0020C700; // type:object size:0x100 scope:global align:32
+flg_1_eye6_TA_tex_txt = .data:0x0020C800; // type:object size:0x100 scope:global align:32
+flg_1_eye7_TA_tex_txt = .data:0x0020C900; // type:object size:0x100 scope:global align:32
+flg_1_eye8_TA_tex_txt = .data:0x0020CA00; // type:object size:0x100 scope:global align:32
+flg_1_mouth1_TA_tex_txt = .data:0x0020CB00; // type:object size:0x100 scope:global align:32
+flg_1_mouth2_TA_tex_txt = .data:0x0020CC00; // type:object size:0x100 scope:global align:32
+flg_1_mouth3_TA_tex_txt = .data:0x0020CD00; // type:object size:0x100 scope:global align:32
+flg_1_mouth4_TA_tex_txt = .data:0x0020CE00; // type:object size:0x100 scope:global align:32
+flg_1_mouth5_TA_tex_txt = .data:0x0020CF00; // type:object size:0x100 scope:global align:32
+flg_1_mouth6_TA_tex_txt = .data:0x0020D000; // type:object size:0x100 scope:global align:32
+flg_1_tmem_txt = .data:0x0020D100; // type:object size:0x400 scope:global align:32
+flg_2_pal = .data:0x0020D500; // type:object size:0x20 scope:global align:32
+flg_2_eye1_TA_tex_txt = .data:0x0020D520; // type:object size:0x100 scope:global align:32
+flg_2_eye2_TA_tex_txt = .data:0x0020D620; // type:object size:0x100 scope:global align:32
+flg_2_eye3_TA_tex_txt = .data:0x0020D720; // type:object size:0x100 scope:global align:32
+flg_2_eye4_TA_tex_txt = .data:0x0020D820; // type:object size:0x100 scope:global align:32
+flg_2_eye5_TA_tex_txt = .data:0x0020D920; // type:object size:0x100 scope:global align:32
+flg_2_eye6_TA_tex_txt = .data:0x0020DA20; // type:object size:0x100 scope:global align:32
+flg_2_eye7_TA_tex_txt = .data:0x0020DB20; // type:object size:0x100 scope:global align:32
+flg_2_eye8_TA_tex_txt = .data:0x0020DC20; // type:object size:0x100 scope:global align:32
+flg_2_mouth1_TA_tex_txt = .data:0x0020DD20; // type:object size:0x100 scope:global align:32
+flg_2_mouth2_TA_tex_txt = .data:0x0020DE20; // type:object size:0x100 scope:global align:32
+flg_2_mouth3_TA_tex_txt = .data:0x0020DF20; // type:object size:0x100 scope:global align:32
+flg_2_mouth4_TA_tex_txt = .data:0x0020E020; // type:object size:0x100 scope:global align:32
+flg_2_mouth5_TA_tex_txt = .data:0x0020E120; // type:object size:0x100 scope:global align:32
+flg_2_mouth6_TA_tex_txt = .data:0x0020E220; // type:object size:0x100 scope:global align:32
+flg_2_tmem_txt = .data:0x0020E320; // type:object size:0x400 scope:global align:32
+flg_11_pal = .data:0x0020E720; // type:object size:0x20 scope:global align:32
+flg_11_eye1_TA_tex_txt = .data:0x0020E740; // type:object size:0x100 scope:global align:32
+flg_11_eye2_TA_tex_txt = .data:0x0020E840; // type:object size:0x100 scope:global align:32
+flg_11_eye3_TA_tex_txt = .data:0x0020E940; // type:object size:0x100 scope:global align:32
+flg_11_eye4_TA_tex_txt = .data:0x0020EA40; // type:object size:0x100 scope:global align:32
+flg_11_eye5_TA_tex_txt = .data:0x0020EB40; // type:object size:0x100 scope:global align:32
+flg_11_eye6_TA_tex_txt = .data:0x0020EC40; // type:object size:0x100 scope:global align:32
+flg_11_eye7_TA_tex_txt = .data:0x0020ED40; // type:object size:0x100 scope:global align:32
+flg_11_eye8_TA_tex_txt = .data:0x0020EE40; // type:object size:0x100 scope:global align:32
+flg_11_mouth1_TA_tex_txt = .data:0x0020EF40; // type:object size:0x100 scope:global align:32
+flg_11_mouth2_TA_tex_txt = .data:0x0020F040; // type:object size:0x100 scope:global align:32
+flg_11_mouth3_TA_tex_txt = .data:0x0020F140; // type:object size:0x100 scope:global align:32
+flg_11_mouth4_TA_tex_txt = .data:0x0020F240; // type:object size:0x100 scope:global align:32
+flg_11_mouth5_TA_tex_txt = .data:0x0020F340; // type:object size:0x100 scope:global align:32
+flg_11_mouth6_TA_tex_txt = .data:0x0020F440; // type:object size:0x100 scope:global align:32
+flg_11_tmem_txt = .data:0x0020F540; // type:object size:0x400 scope:global align:32
+flg_12_pal = .data:0x0020F940; // type:object size:0x20 scope:global align:32
+flg_12_eye1_TA_tex_txt = .data:0x0020F960; // type:object size:0x100 scope:global align:32
+flg_12_eye2_TA_tex_txt = .data:0x0020FA60; // type:object size:0x100 scope:global align:32
+flg_12_eye3_TA_tex_txt = .data:0x0020FB60; // type:object size:0x100 scope:global align:32
+flg_12_eye4_TA_tex_txt = .data:0x0020FC60; // type:object size:0x100 scope:global align:32
+flg_12_eye5_TA_tex_txt = .data:0x0020FD60; // type:object size:0x100 scope:global align:32
+flg_12_eye6_TA_tex_txt = .data:0x0020FE60; // type:object size:0x100 scope:global align:32
+flg_12_eye7_TA_tex_txt = .data:0x0020FF60; // type:object size:0x100 scope:global align:32
+flg_12_eye8_TA_tex_txt = .data:0x00210060; // type:object size:0x100 scope:global align:32
+flg_12_mouth1_TA_tex_txt = .data:0x00210160; // type:object size:0x100 scope:global align:32
+flg_12_mouth2_TA_tex_txt = .data:0x00210260; // type:object size:0x100 scope:global align:32
+flg_12_mouth3_TA_tex_txt = .data:0x00210360; // type:object size:0x100 scope:global align:32
+flg_12_mouth4_TA_tex_txt = .data:0x00210460; // type:object size:0x100 scope:global align:32
+flg_12_mouth5_TA_tex_txt = .data:0x00210560; // type:object size:0x100 scope:global align:32
+flg_12_mouth6_TA_tex_txt = .data:0x00210660; // type:object size:0x100 scope:global align:32
+flg_12_tmem_txt = .data:0x00210760; // type:object size:0x380 scope:global align:32
+flg_13_pal = .data:0x00210AE0; // type:object size:0x20 scope:global align:32
+flg_13_eye1_TA_tex_txt = .data:0x00210B00; // type:object size:0x100 scope:global align:32
+flg_13_eye2_TA_tex_txt = .data:0x00210C00; // type:object size:0x100 scope:global align:32
+flg_13_eye3_TA_tex_txt = .data:0x00210D00; // type:object size:0x100 scope:global align:32
+flg_13_eye4_TA_tex_txt = .data:0x00210E00; // type:object size:0x100 scope:global align:32
+flg_13_eye5_TA_tex_txt = .data:0x00210F00; // type:object size:0x100 scope:global align:32
+flg_13_eye6_TA_tex_txt = .data:0x00211000; // type:object size:0x100 scope:global align:32
+flg_13_eye7_TA_tex_txt = .data:0x00211100; // type:object size:0x100 scope:global align:32
+flg_13_eye8_TA_tex_txt = .data:0x00211200; // type:object size:0x100 scope:global align:32
+flg_13_mouth1_TA_tex_txt = .data:0x00211300; // type:object size:0x100 scope:global align:32
+flg_13_mouth2_TA_tex_txt = .data:0x00211400; // type:object size:0x100 scope:global align:32
+flg_13_mouth3_TA_tex_txt = .data:0x00211500; // type:object size:0x100 scope:global align:32
+flg_13_mouth4_TA_tex_txt = .data:0x00211600; // type:object size:0x100 scope:global align:32
+flg_13_mouth5_TA_tex_txt = .data:0x00211700; // type:object size:0x100 scope:global align:32
+flg_13_mouth6_TA_tex_txt = .data:0x00211800; // type:object size:0x100 scope:global align:32
+flg_13_tmem_txt = .data:0x00211900; // type:object size:0x400 scope:global align:32
+flg_3_pal = .data:0x00211D00; // type:object size:0x20 scope:global align:32
+flg_3_eye1_TA_tex_txt = .data:0x00211D20; // type:object size:0x100 scope:global align:32
+flg_3_eye2_TA_tex_txt = .data:0x00211E20; // type:object size:0x100 scope:global align:32
+flg_3_eye3_TA_tex_txt = .data:0x00211F20; // type:object size:0x100 scope:global align:32
+flg_3_eye4_TA_tex_txt = .data:0x00212020; // type:object size:0x100 scope:global align:32
+flg_3_eye5_TA_tex_txt = .data:0x00212120; // type:object size:0x100 scope:global align:32
+flg_3_eye6_TA_tex_txt = .data:0x00212220; // type:object size:0x100 scope:global align:32
+flg_3_eye7_TA_tex_txt = .data:0x00212320; // type:object size:0x100 scope:global align:32
+flg_3_eye8_TA_tex_txt = .data:0x00212420; // type:object size:0x100 scope:global align:32
+flg_3_mouth1_TA_tex_txt = .data:0x00212520; // type:object size:0x100 scope:global align:32
+flg_3_mouth2_TA_tex_txt = .data:0x00212620; // type:object size:0x100 scope:global align:32
+flg_3_mouth3_TA_tex_txt = .data:0x00212720; // type:object size:0x100 scope:global align:32
+flg_3_mouth4_TA_tex_txt = .data:0x00212820; // type:object size:0x100 scope:global align:32
+flg_3_mouth5_TA_tex_txt = .data:0x00212920; // type:object size:0x100 scope:global align:32
+flg_3_mouth6_TA_tex_txt = .data:0x00212A20; // type:object size:0x100 scope:global align:32
+flg_3_tmem_txt = .data:0x00212B20; // type:object size:0x400 scope:global align:32
+flg_4_pal = .data:0x00212F20; // type:object size:0x20 scope:global align:32
+flg_4_eye1_TA_tex_txt = .data:0x00212F40; // type:object size:0x100 scope:global align:32
+flg_4_eye2_TA_tex_txt = .data:0x00213040; // type:object size:0x100 scope:global align:32
+flg_4_eye3_TA_tex_txt = .data:0x00213140; // type:object size:0x100 scope:global align:32
+flg_4_eye4_TA_tex_txt = .data:0x00213240; // type:object size:0x100 scope:global align:32
+flg_4_eye5_TA_tex_txt = .data:0x00213340; // type:object size:0x100 scope:global align:32
+flg_4_eye6_TA_tex_txt = .data:0x00213440; // type:object size:0x100 scope:global align:32
+flg_4_eye7_TA_tex_txt = .data:0x00213540; // type:object size:0x100 scope:global align:32
+flg_4_eye8_TA_tex_txt = .data:0x00213640; // type:object size:0x100 scope:global align:32
+flg_4_mouth1_TA_tex_txt = .data:0x00213740; // type:object size:0x100 scope:global align:32
+flg_4_mouth2_TA_tex_txt = .data:0x00213840; // type:object size:0x100 scope:global align:32
+flg_4_mouth3_TA_tex_txt = .data:0x00213940; // type:object size:0x100 scope:global align:32
+flg_4_mouth4_TA_tex_txt = .data:0x00213A40; // type:object size:0x100 scope:global align:32
+flg_4_mouth5_TA_tex_txt = .data:0x00213B40; // type:object size:0x100 scope:global align:32
+flg_4_mouth6_TA_tex_txt = .data:0x00213C40; // type:object size:0x100 scope:global align:32
+flg_4_tmem_txt = .data:0x00213D40; // type:object size:0x400 scope:global align:32
+flg_5_pal = .data:0x00214140; // type:object size:0x20 scope:global align:32
+flg_5_eye1_TA_tex_txt = .data:0x00214160; // type:object size:0x100 scope:global align:32
+flg_5_eye2_TA_tex_txt = .data:0x00214260; // type:object size:0x100 scope:global align:32
+flg_5_eye3_TA_tex_txt = .data:0x00214360; // type:object size:0x100 scope:global align:32
+flg_5_eye4_TA_tex_txt = .data:0x00214460; // type:object size:0x100 scope:global align:32
+flg_5_eye5_TA_tex_txt = .data:0x00214560; // type:object size:0x100 scope:global align:32
+flg_5_eye6_TA_tex_txt = .data:0x00214660; // type:object size:0x100 scope:global align:32
+flg_5_eye7_TA_tex_txt = .data:0x00214760; // type:object size:0x100 scope:global align:32
+flg_5_eye8_TA_tex_txt = .data:0x00214860; // type:object size:0x100 scope:global align:32
+flg_5_mouth1_TA_tex_txt = .data:0x00214960; // type:object size:0x100 scope:global align:32
+flg_5_mouth2_TA_tex_txt = .data:0x00214A60; // type:object size:0x100 scope:global align:32
+flg_5_mouth3_TA_tex_txt = .data:0x00214B60; // type:object size:0x100 scope:global align:32
+flg_5_mouth4_TA_tex_txt = .data:0x00214C60; // type:object size:0x100 scope:global align:32
+flg_5_mouth5_TA_tex_txt = .data:0x00214D60; // type:object size:0x100 scope:global align:32
+flg_5_mouth6_TA_tex_txt = .data:0x00214E60; // type:object size:0x100 scope:global align:32
+flg_5_tmem_txt = .data:0x00214F60; // type:object size:0x400 scope:global align:32
+flg_6_pal = .data:0x00215360; // type:object size:0x20 scope:global align:32
+flg_6_eye1_TA_tex_txt = .data:0x00215380; // type:object size:0x100 scope:global align:32
+flg_6_eye2_TA_tex_txt = .data:0x00215480; // type:object size:0x100 scope:global align:32
+flg_6_eye3_TA_tex_txt = .data:0x00215580; // type:object size:0x100 scope:global align:32
+flg_6_eye4_TA_tex_txt = .data:0x00215680; // type:object size:0x100 scope:global align:32
+flg_6_eye5_TA_tex_txt = .data:0x00215780; // type:object size:0x100 scope:global align:32
+flg_6_eye6_TA_tex_txt = .data:0x00215880; // type:object size:0x100 scope:global align:32
+flg_6_eye7_TA_tex_txt = .data:0x00215980; // type:object size:0x100 scope:global align:32
+flg_6_eye8_TA_tex_txt = .data:0x00215A80; // type:object size:0x100 scope:global align:32
+flg_6_mouth1_TA_tex_txt = .data:0x00215B80; // type:object size:0x100 scope:global align:32
+flg_6_mouth2_TA_tex_txt = .data:0x00215C80; // type:object size:0x100 scope:global align:32
+flg_6_mouth3_TA_tex_txt = .data:0x00215D80; // type:object size:0x100 scope:global align:32
+flg_6_mouth4_TA_tex_txt = .data:0x00215E80; // type:object size:0x100 scope:global align:32
+flg_6_mouth5_TA_tex_txt = .data:0x00215F80; // type:object size:0x100 scope:global align:32
+flg_6_mouth6_TA_tex_txt = .data:0x00216080; // type:object size:0x100 scope:global align:32
+flg_6_tmem_txt = .data:0x00216180; // type:object size:0x400 scope:global align:32
+flg_7_pal = .data:0x00216580; // type:object size:0x20 scope:global align:32
+flg_7_eye1_TA_tex_txt = .data:0x002165A0; // type:object size:0x100 scope:global align:32
+flg_7_eye2_TA_tex_txt = .data:0x002166A0; // type:object size:0x100 scope:global align:32
+flg_7_eye3_TA_tex_txt = .data:0x002167A0; // type:object size:0x100 scope:global align:32
+flg_7_eye4_TA_tex_txt = .data:0x002168A0; // type:object size:0x100 scope:global align:32
+flg_7_eye5_TA_tex_txt = .data:0x002169A0; // type:object size:0x100 scope:global align:32
+flg_7_eye6_TA_tex_txt = .data:0x00216AA0; // type:object size:0x100 scope:global align:32
+flg_7_eye7_TA_tex_txt = .data:0x00216BA0; // type:object size:0x100 scope:global align:32
+flg_7_eye8_TA_tex_txt = .data:0x00216CA0; // type:object size:0x100 scope:global align:32
+flg_7_mouth1_TA_tex_txt = .data:0x00216DA0; // type:object size:0x100 scope:global align:32
+flg_7_mouth2_TA_tex_txt = .data:0x00216EA0; // type:object size:0x100 scope:global align:32
+flg_7_mouth3_TA_tex_txt = .data:0x00216FA0; // type:object size:0x100 scope:global align:32
+flg_7_mouth4_TA_tex_txt = .data:0x002170A0; // type:object size:0x100 scope:global align:32
+flg_7_mouth5_TA_tex_txt = .data:0x002171A0; // type:object size:0x100 scope:global align:32
+flg_7_mouth6_TA_tex_txt = .data:0x002172A0; // type:object size:0x100 scope:global align:32
+flg_7_tmem_txt = .data:0x002173A0; // type:object size:0x400 scope:global align:32
+flg_8_pal = .data:0x002177A0; // type:object size:0x20 scope:global align:32
+flg_8_eye1_TA_tex_txt = .data:0x002177C0; // type:object size:0x100 scope:global align:32
+flg_8_eye2_TA_tex_txt = .data:0x002178C0; // type:object size:0x100 scope:global align:32
+flg_8_eye3_TA_tex_txt = .data:0x002179C0; // type:object size:0x100 scope:global align:32
+flg_8_eye4_TA_tex_txt = .data:0x00217AC0; // type:object size:0x100 scope:global align:32
+flg_8_eye5_TA_tex_txt = .data:0x00217BC0; // type:object size:0x100 scope:global align:32
+flg_8_eye6_TA_tex_txt = .data:0x00217CC0; // type:object size:0x100 scope:global align:32
+flg_8_eye7_TA_tex_txt = .data:0x00217DC0; // type:object size:0x100 scope:global align:32
+flg_8_eye8_TA_tex_txt = .data:0x00217EC0; // type:object size:0x100 scope:global align:32
+flg_8_mouth1_TA_tex_txt = .data:0x00217FC0; // type:object size:0x100 scope:global align:32
+flg_8_mouth2_TA_tex_txt = .data:0x002180C0; // type:object size:0x100 scope:global align:32
+flg_8_mouth3_TA_tex_txt = .data:0x002181C0; // type:object size:0x100 scope:global align:32
+flg_8_mouth4_TA_tex_txt = .data:0x002182C0; // type:object size:0x100 scope:global align:32
+flg_8_mouth5_TA_tex_txt = .data:0x002183C0; // type:object size:0x100 scope:global align:32
+flg_8_mouth6_TA_tex_txt = .data:0x002184C0; // type:object size:0x100 scope:global align:32
+flg_8_tmem_txt = .data:0x002185C0; // type:object size:0x400 scope:global align:32
+flg_9_pal = .data:0x002189C0; // type:object size:0x20 scope:global align:32
+flg_9_eye1_TA_tex_txt = .data:0x002189E0; // type:object size:0x100 scope:global align:32
+flg_9_eye2_TA_tex_txt = .data:0x00218AE0; // type:object size:0x100 scope:global align:32
+flg_9_eye3_TA_tex_txt = .data:0x00218BE0; // type:object size:0x100 scope:global align:32
+flg_9_eye4_TA_tex_txt = .data:0x00218CE0; // type:object size:0x100 scope:global align:32
+flg_9_eye5_TA_tex_txt = .data:0x00218DE0; // type:object size:0x100 scope:global align:32
+flg_9_eye6_TA_tex_txt = .data:0x00218EE0; // type:object size:0x100 scope:global align:32
+flg_9_eye7_TA_tex_txt = .data:0x00218FE0; // type:object size:0x100 scope:global align:32
+flg_9_eye8_TA_tex_txt = .data:0x002190E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth1_TA_tex_txt = .data:0x002191E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth2_TA_tex_txt = .data:0x002192E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth3_TA_tex_txt = .data:0x002193E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth4_TA_tex_txt = .data:0x002194E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth5_TA_tex_txt = .data:0x002195E0; // type:object size:0x100 scope:global align:32
+flg_9_mouth6_TA_tex_txt = .data:0x002196E0; // type:object size:0x100 scope:global align:32
+flg_9_tmem_txt = .data:0x002197E0; // type:object size:0x400 scope:global align:32
+flg_10_pal = .data:0x00219BE0; // type:object size:0x20 scope:global align:32
+flg_10_eye1_TA_tex_txt = .data:0x00219C00; // type:object size:0x100 scope:global align:32
+flg_10_eye2_TA_tex_txt = .data:0x00219D00; // type:object size:0x100 scope:global align:32
+flg_10_eye3_TA_tex_txt = .data:0x00219E00; // type:object size:0x100 scope:global align:32
+flg_10_eye4_TA_tex_txt = .data:0x00219F00; // type:object size:0x100 scope:global align:32
+flg_10_eye5_TA_tex_txt = .data:0x0021A000; // type:object size:0x100 scope:global align:32
+flg_10_eye6_TA_tex_txt = .data:0x0021A100; // type:object size:0x100 scope:global align:32
+flg_10_eye7_TA_tex_txt = .data:0x0021A200; // type:object size:0x100 scope:global align:32
+flg_10_eye8_TA_tex_txt = .data:0x0021A300; // type:object size:0x100 scope:global align:32
+flg_10_mouth1_TA_tex_txt = .data:0x0021A400; // type:object size:0x100 scope:global align:32
+flg_10_mouth2_TA_tex_txt = .data:0x0021A500; // type:object size:0x100 scope:global align:32
+flg_10_mouth3_TA_tex_txt = .data:0x0021A600; // type:object size:0x100 scope:global align:32
+flg_10_mouth4_TA_tex_txt = .data:0x0021A700; // type:object size:0x100 scope:global align:32
+flg_10_mouth5_TA_tex_txt = .data:0x0021A800; // type:object size:0x100 scope:global align:32
+flg_10_mouth6_TA_tex_txt = .data:0x0021A900; // type:object size:0x100 scope:global align:32
+flg_10_tmem_txt = .data:0x0021AA00; // type:object size:0x400 scope:global align:32
+rcf_1_v = .data:0x0021AE00; // type:object size:0x1B30 scope:global align:8
+head_rcf_model = .data:0x0021C930; // type:object size:0x230 scope:global align:8
+mouth_rcf_model = .data:0x0021CB60; // type:object size:0x78 scope:global align:8
+hand_rcf_model = .data:0x0021CBD8; // type:object size:0xE0 scope:global align:8
+Rarm2_rcf_model = .data:0x0021CCB8; // type:object size:0x88 scope:global align:8
+Rarm1_rcf_model = .data:0x0021CD40; // type:object size:0x78 scope:global align:8
+Larm2_rcf_model = .data:0x0021CDB8; // type:object size:0x88 scope:global align:8
+Larm1_rcf_model = .data:0x0021CE40; // type:object size:0x78 scope:global align:8
+chest_rcf_model = .data:0x0021CEB8; // type:object size:0x108 scope:global align:8
+tail1_rcf_model = .data:0x0021CFC0; // type:object size:0x78 scope:global align:8
+tail2_rcf_model = .data:0x0021D038; // type:object size:0xA0 scope:global align:8
+Rfoot2_rcf_model = .data:0x0021D0D8; // type:object size:0x80 scope:global align:8
+Rfoot1_rcf_model = .data:0x0021D158; // type:object size:0x58 scope:global align:8
+Lfoot2_rcf_model = .data:0x0021D1B0; // type:object size:0x80 scope:global align:8
+Lfoot1_rcf_model = .data:0x0021D230; // type:object size:0x58 scope:global align:8
+base_rcf_model = .data:0x0021D288; // type:object size:0xD8 scope:global align:8
+cKF_je_r_rcf_1_tbl = .data:0x0021D360; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rcf_1 = .data:0x0021D498; // type:object size:0x8 scope:global align:4
+rcf_1_pal = .data:0x0021D4A0; // type:object size:0x20 scope:global align:32
+rcf_1_eye1_TA_tex_txt = .data:0x0021D4C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye2_TA_tex_txt = .data:0x0021D5C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye3_TA_tex_txt = .data:0x0021D6C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye4_TA_tex_txt = .data:0x0021D7C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye5_TA_tex_txt = .data:0x0021D8C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye6_TA_tex_txt = .data:0x0021D9C0; // type:object size:0x100 scope:global align:32
+rcf_1_eye7_TA_tex_txt = .data:0x0021DAC0; // type:object size:0x100 scope:global align:32
+rcf_1_eye8_TA_tex_txt = .data:0x0021DBC0; // type:object size:0x100 scope:global align:32
+rcf_1_tmem_txt = .data:0x0021DCC0; // type:object size:0x700 scope:global align:32
+obj_gara_pal = .data:0x0021E3C0; // type:object size:0x20 scope:global align:4
+obj_gara_tex_txt = .data:0x0021E3E0; // type:object size:0x800 scope:global align:4
+obj_gara_v = .data:0x0021EBE0; // type:object size:0x420 scope:global align:8
+obj_gara_base_model = .data:0x0021F000; // type:object size:0x118 scope:global align:8
+obj_gara_hex_model = .data:0x0021F118; // type:object size:0x120 scope:global align:8
+cKF_ckcb_r_obj_gara_tbl = .data:0x0021F238; // type:object size:0x3 scope:global align:4
+cKF_kn_obj_gara_tbl = .data:0x0021F23C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_gara_tbl = .data:0x0021F240; // type:object size:0x16 scope:global align:4
+cKF_ds_obj_gara_tbl = .data:0x0021F258; // type:object size:0x3C scope:global align:4
+cKF_ba_r_obj_gara = .data:0x0021F294; // type:object size:0x14 scope:global align:4
+act_fukuball_pal = .data:0x0021F2A8; // type:object size:0x20 scope:global align:4
+act_fukutama1_tex = .data:0x0021F2C8; // type:object size:0x80 scope:global align:4
+act_fukutama2_tex = .data:0x0021F348; // type:object size:0x80 scope:global align:4
+act_fukutama3_tex = .data:0x0021F3C8; // type:object size:0x80 scope:global align:4
+act_fukutama4_tex = .data:0x0021F448; // type:object size:0x80 scope:global align:4
+act_fukutama_v = .data:0x0021F4C8; // type:object size:0x50 scope:global align:8
+act_fukutama_modelT = .data:0x0021F518; // type:object size:0xC0 scope:global align:8
+cKF_je_r_obj_gara_tbl = .data:0x0021F5D8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_obj_gara = .data:0x0021F5FC; // type:object size:0x8 scope:global align:4
+gst_1_v = .data:0x0021F608; // type:object size:0x1110 scope:global align:8
+head_gst_model = .data:0x00220718; // type:object size:0x218 scope:global align:8
+feel_gst_model = .data:0x00220930; // type:object size:0x50 scope:global align:8
+chest_gst_model = .data:0x00220980; // type:object size:0xA8 scope:global align:8
+tail1_gst_model = .data:0x00220A28; // type:object size:0xA8 scope:global align:8
+base_gst_model = .data:0x00220AD0; // type:object size:0x70 scope:global align:8
+cKF_je_r_gst_1_tbl = .data:0x00220B40; // type:object size:0x138 scope:global align:4
+cKF_bs_r_gst_1 = .data:0x00220C78; // type:object size:0x8 scope:global align:4
+gst_1_pal = .data:0x00220C80; // type:object size:0x20 scope:global align:32
+gst_1_eye1_TA_tex_txt = .data:0x00220CA0; // type:object size:0x100 scope:global align:32
+gst_1_eye2_TA_tex_txt = .data:0x00220DA0; // type:object size:0x100 scope:global align:32
+gst_1_eye3_TA_tex_txt = .data:0x00220EA0; // type:object size:0x100 scope:global align:32
+gst_1_eye4_TA_tex_txt = .data:0x00220FA0; // type:object size:0x100 scope:global align:32
+gst_1_eye5_TA_tex_txt = .data:0x002210A0; // type:object size:0x100 scope:global align:32
+gst_1_eye6_TA_tex_txt = .data:0x002211A0; // type:object size:0x100 scope:global align:32
+gst_1_eye7_TA_tex_txt = .data:0x002212A0; // type:object size:0x100 scope:global align:32
+gst_1_eye8_TA_tex_txt = .data:0x002213A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth1_TA_tex_txt = .data:0x002214A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth2_TA_tex_txt = .data:0x002215A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth3_TA_tex_txt = .data:0x002216A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth4_TA_tex_txt = .data:0x002217A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth5_TA_tex_txt = .data:0x002218A0; // type:object size:0x100 scope:global align:32
+gst_1_mouth6_TA_tex_txt = .data:0x002219A0; // type:object size:0x100 scope:global align:32
+gst_1_tmem_txt = .data:0x00221AA0; // type:object size:0x180 scope:global align:32
+grl_1_skin_tex_txt = .data:0x00221C20; // type:object size:0x80 scope:global align:32 data:string
+grl_1_hair_tex_txt = .data:0x00221CA0; // type:object size:0x80 scope:global align:32
+grl_1_shoe_tex_txt = .data:0x00221D20; // type:object size:0x80 scope:global align:32
+grl_1_bottom_tex_txt = .data:0x00221DA0; // type:object size:0x80 scope:global align:32
+grl_1_foot_tex_txt = .data:0x00221E20; // type:object size:0x80 scope:global align:32
+grl_1_hole_tex_txt = .data:0x00221EA0; // type:object size:0x80 scope:global align:32
+grl_1_v = .data:0x00221F20; // type:object size:0x18C0 scope:global align:8
+head_grl_model = .data:0x002237E0; // type:object size:0x1B0 scope:global align:8
+Rarm2_grl_model = .data:0x00223990; // type:object size:0xA8 scope:global align:8
+Rarm1_grl_model = .data:0x00223A38; // type:object size:0xD8 scope:global align:8
+Larm2_grl_model = .data:0x00223B10; // type:object size:0xA8 scope:global align:8
+Larm1_grl_model = .data:0x00223BB8; // type:object size:0xD8 scope:global align:8
+chest_grl_model = .data:0x00223C90; // type:object size:0x98 scope:global align:8
+Rfoot3_grl_model = .data:0x00223D28; // type:object size:0xA8 scope:global align:8
+Rffot2_grl_model = .data:0x00223DD0; // type:object size:0x80 scope:global align:8
+Rfoot1_grl_model = .data:0x00223E50; // type:object size:0x60 scope:global align:8
+Lfoot3_grl_model = .data:0x00223EB0; // type:object size:0xA8 scope:global align:8
+Lfoot2_grl_model = .data:0x00223F58; // type:object size:0x80 scope:global align:8
+Lfoot1_grl_model = .data:0x00223FD8; // type:object size:0x60 scope:global align:8
+bace_grl_model = .data:0x00224038; // type:object size:0xB8 scope:global align:8
+cKF_je_r_grl_1_tbl = .data:0x002240F0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_grl_1 = .data:0x00224228; // type:object size:0x8 scope:global align:4
+goa_1_v = .data:0x00224230; // type:object size:0x1640 scope:global align:8
+head_goa_model = .data:0x00225870; // type:object size:0x220 scope:global align:8
+mouth_goa_model = .data:0x00225A90; // type:object size:0x70 scope:global align:8
+Rarm2_goa_model = .data:0x00225B00; // type:object size:0x88 scope:global align:8
+Rarm1_goa_model = .data:0x00225B88; // type:object size:0x78 scope:global align:8
+Larm2_goa_model = .data:0x00225C00; // type:object size:0x88 scope:global align:8
+Larm1_goa_model = .data:0x00225C88; // type:object size:0x78 scope:global align:8
+chest_goa_model = .data:0x00225D00; // type:object size:0xA0 scope:global align:8
+tail1_goa_model = .data:0x00225DA0; // type:object size:0x60 scope:global align:8
+Rfoot2_goa_model = .data:0x00225E00; // type:object size:0x80 scope:global align:8
+Rfoot1_goa_model = .data:0x00225E80; // type:object size:0x80 scope:global align:8
+Lfoot2_goa_model = .data:0x00225F00; // type:object size:0x80 scope:global align:8
+Lfoot1_goa_model = .data:0x00225F80; // type:object size:0x80 scope:global align:8
+base_goa_model = .data:0x00226000; // type:object size:0xA8 scope:global align:8
+cKF_je_r_goa_1_tbl = .data:0x002260A8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_goa_1 = .data:0x002261E0; // type:object size:0x8 scope:global align:4
+goa_1_pal = .data:0x00226200; // type:object size:0x20 scope:global align:32
+goa_1_eye1_TA_tex_txt = .data:0x00226220; // type:object size:0x100 scope:global align:32
+goa_1_eye2_TA_tex_txt = .data:0x00226320; // type:object size:0x100 scope:global align:32
+goa_1_eye3_TA_tex_txt = .data:0x00226420; // type:object size:0x100 scope:global align:32
+goa_1_eye4_TA_tex_txt = .data:0x00226520; // type:object size:0x100 scope:global align:32
+goa_1_eye5_TA_tex_txt = .data:0x00226620; // type:object size:0x100 scope:global align:32
+goa_1_eye6_TA_tex_txt = .data:0x00226720; // type:object size:0x100 scope:global align:32
+goa_1_eye7_TA_tex_txt = .data:0x00226820; // type:object size:0x100 scope:global align:32
+goa_1_eye8_TA_tex_txt = .data:0x00226920; // type:object size:0x100 scope:global align:32
+goa_1_mouth1_TA_tex_txt = .data:0x00226A20; // type:object size:0x100 scope:global align:32
+goa_1_mouth2_TA_tex_txt = .data:0x00226B20; // type:object size:0x100 scope:global align:32
+goa_1_mouth3_TA_tex_txt = .data:0x00226C20; // type:object size:0x100 scope:global align:32
+goa_1_mouth4_TA_tex_txt = .data:0x00226D20; // type:object size:0x100 scope:global align:32
+goa_1_mouth5_TA_tex_txt = .data:0x00226E20; // type:object size:0x100 scope:global align:32
+goa_1_mouth6_TA_tex_txt = .data:0x00226F20; // type:object size:0x100 scope:global align:32
+goa_1_tmem_txt = .data:0x00227020; // type:object size:0x400 scope:global align:32
+goa_2_pal = .data:0x00227420; // type:object size:0x20 scope:global align:32
+goa_2_eye1_TA_tex_txt = .data:0x00227440; // type:object size:0x100 scope:global align:32
+goa_2_eye2_TA_tex_txt = .data:0x00227540; // type:object size:0x100 scope:global align:32
+goa_2_eye3_TA_tex_txt = .data:0x00227640; // type:object size:0x100 scope:global align:32
+goa_2_eye4_TA_tex_txt = .data:0x00227740; // type:object size:0x100 scope:global align:32
+goa_2_eye5_TA_tex_txt = .data:0x00227840; // type:object size:0x100 scope:global align:32
+goa_2_eye6_TA_tex_txt = .data:0x00227940; // type:object size:0x100 scope:global align:32
+goa_2_eye7_TA_tex_txt = .data:0x00227A40; // type:object size:0x100 scope:global align:32
+goa_2_eye8_TA_tex_txt = .data:0x00227B40; // type:object size:0x100 scope:global align:32
+goa_2_mouth1_TA_tex_txt = .data:0x00227C40; // type:object size:0x100 scope:global align:32
+goa_2_mouth2_TA_tex_txt = .data:0x00227D40; // type:object size:0x100 scope:global align:32
+goa_2_mouth3_TA_tex_txt = .data:0x00227E40; // type:object size:0x100 scope:global align:32
+goa_2_mouth4_TA_tex_txt = .data:0x00227F40; // type:object size:0x100 scope:global align:32
+goa_2_mouth5_TA_tex_txt = .data:0x00228040; // type:object size:0x100 scope:global align:32
+goa_2_mouth6_TA_tex_txt = .data:0x00228140; // type:object size:0x100 scope:global align:32
+goa_2_tmem_txt = .data:0x00228240; // type:object size:0x400 scope:global align:32
+goa_3_pal = .data:0x00228640; // type:object size:0x20 scope:global align:32
+goa_3_eye1_TA_tex_txt = .data:0x00228660; // type:object size:0x100 scope:global align:32
+goa_3_eye2_TA_tex_txt = .data:0x00228760; // type:object size:0x100 scope:global align:32
+goa_3_eye3_TA_tex_txt = .data:0x00228860; // type:object size:0x100 scope:global align:32
+goa_3_eye4_TA_tex_txt = .data:0x00228960; // type:object size:0x100 scope:global align:32
+goa_3_eye5_TA_tex_txt = .data:0x00228A60; // type:object size:0x100 scope:global align:32
+goa_3_eye6_TA_tex_txt = .data:0x00228B60; // type:object size:0x100 scope:global align:32
+goa_3_eye7_TA_tex_txt = .data:0x00228C60; // type:object size:0x100 scope:global align:32
+goa_3_eye8_TA_tex_txt = .data:0x00228D60; // type:object size:0x100 scope:global align:32
+goa_3_mouth1_TA_tex_txt = .data:0x00228E60; // type:object size:0x100 scope:global align:32
+goa_3_mouth2_TA_tex_txt = .data:0x00228F60; // type:object size:0x100 scope:global align:32
+goa_3_mouth3_TA_tex_txt = .data:0x00229060; // type:object size:0x100 scope:global align:32
+goa_3_mouth4_TA_tex_txt = .data:0x00229160; // type:object size:0x100 scope:global align:32
+goa_3_mouth5_TA_tex_txt = .data:0x00229260; // type:object size:0x100 scope:global align:32
+goa_3_mouth6_TA_tex_txt = .data:0x00229360; // type:object size:0x100 scope:global align:32
+goa_3_tmem_txt = .data:0x00229460; // type:object size:0x400 scope:global align:32
+goa_4_pal = .data:0x00229860; // type:object size:0x20 scope:global align:32
+goa_4_eye1_TA_tex_txt = .data:0x00229880; // type:object size:0x100 scope:global align:32
+goa_4_eye2_TA_tex_txt = .data:0x00229980; // type:object size:0x100 scope:global align:32
+goa_4_eye3_TA_tex_txt = .data:0x00229A80; // type:object size:0x100 scope:global align:32
+goa_4_eye4_TA_tex_txt = .data:0x00229B80; // type:object size:0x100 scope:global align:32
+goa_4_eye5_TA_tex_txt = .data:0x00229C80; // type:object size:0x100 scope:global align:32
+goa_4_eye6_TA_tex_txt = .data:0x00229D80; // type:object size:0x100 scope:global align:32
+goa_4_eye7_TA_tex_txt = .data:0x00229E80; // type:object size:0x100 scope:global align:32
+goa_4_eye8_TA_tex_txt = .data:0x00229F80; // type:object size:0x100 scope:global align:32
+goa_4_mouth1_TA_tex_txt = .data:0x0022A080; // type:object size:0x100 scope:global align:32
+goa_4_mouth2_TA_tex_txt = .data:0x0022A180; // type:object size:0x100 scope:global align:32
+goa_4_mouth3_TA_tex_txt = .data:0x0022A280; // type:object size:0x100 scope:global align:32
+goa_4_mouth4_TA_tex_txt = .data:0x0022A380; // type:object size:0x100 scope:global align:32
+goa_4_mouth5_TA_tex_txt = .data:0x0022A480; // type:object size:0x100 scope:global align:32
+goa_4_mouth6_TA_tex_txt = .data:0x0022A580; // type:object size:0x100 scope:global align:32
+goa_4_tmem_txt = .data:0x0022A680; // type:object size:0x400 scope:global align:32
+goa_5_pal = .data:0x0022AA80; // type:object size:0x20 scope:global align:32
+goa_5_eye1_TA_tex_txt = .data:0x0022AAA0; // type:object size:0x100 scope:global align:32
+goa_5_eye2_TA_tex_txt = .data:0x0022ABA0; // type:object size:0x100 scope:global align:32
+goa_5_eye3_TA_tex_txt = .data:0x0022ACA0; // type:object size:0x100 scope:global align:32
+goa_5_eye4_TA_tex_txt = .data:0x0022ADA0; // type:object size:0x100 scope:global align:32
+goa_5_eye5_TA_tex_txt = .data:0x0022AEA0; // type:object size:0x100 scope:global align:32
+goa_5_eye6_TA_tex_txt = .data:0x0022AFA0; // type:object size:0x100 scope:global align:32
+goa_5_eye7_TA_tex_txt = .data:0x0022B0A0; // type:object size:0x100 scope:global align:32
+goa_5_eye8_TA_tex_txt = .data:0x0022B1A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth1_TA_tex_txt = .data:0x0022B2A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth2_TA_tex_txt = .data:0x0022B3A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth3_TA_tex_txt = .data:0x0022B4A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth4_TA_tex_txt = .data:0x0022B5A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth5_TA_tex_txt = .data:0x0022B6A0; // type:object size:0x100 scope:global align:32
+goa_5_mouth6_TA_tex_txt = .data:0x0022B7A0; // type:object size:0x100 scope:global align:32
+goa_5_tmem_txt = .data:0x0022B8A0; // type:object size:0x400 scope:global align:32
+goa_6_pal = .data:0x0022BCA0; // type:object size:0x20 scope:global align:32
+goa_6_eye1_TA_tex_txt = .data:0x0022BCC0; // type:object size:0x100 scope:global align:32
+goa_6_eye2_TA_tex_txt = .data:0x0022BDC0; // type:object size:0x100 scope:global align:32
+goa_6_eye3_TA_tex_txt = .data:0x0022BEC0; // type:object size:0x100 scope:global align:32
+goa_6_eye4_TA_tex_txt = .data:0x0022BFC0; // type:object size:0x100 scope:global align:32
+goa_6_eye5_TA_tex_txt = .data:0x0022C0C0; // type:object size:0x100 scope:global align:32
+goa_6_eye6_TA_tex_txt = .data:0x0022C1C0; // type:object size:0x100 scope:global align:32
+goa_6_eye7_TA_tex_txt = .data:0x0022C2C0; // type:object size:0x100 scope:global align:32
+goa_6_eye8_TA_tex_txt = .data:0x0022C3C0; // type:object size:0x100 scope:global align:32
+goa_6_mouth1_TA_tex_txt = .data:0x0022C4C0; // type:object size:0x100 scope:global align:32 data:string
+goa_6_mouth2_TA_tex_txt = .data:0x0022C5C0; // type:object size:0x100 scope:global align:32
+goa_6_mouth3_TA_tex_txt = .data:0x0022C6C0; // type:object size:0x100 scope:global align:32
+goa_6_mouth4_TA_tex_txt = .data:0x0022C7C0; // type:object size:0x100 scope:global align:32 data:string
+goa_6_mouth5_TA_tex_txt = .data:0x0022C8C0; // type:object size:0x100 scope:global align:32
+goa_6_mouth6_TA_tex_txt = .data:0x0022C9C0; // type:object size:0x100 scope:global align:32
+goa_6_tmem_txt = .data:0x0022CAC0; // type:object size:0x400 scope:global align:32
+gor_1_v = .data:0x0022CEC0; // type:object size:0x1AD0 scope:global align:8
+head_gor_model = .data:0x0022E990; // type:object size:0x220 scope:global align:8
+mouth_gor_model = .data:0x0022EBB0; // type:object size:0xF0 scope:global align:8
+Rarm2_gor_model = .data:0x0022ECA0; // type:object size:0xA0 scope:global align:8
+Rarm1_gor_model = .data:0x0022ED40; // type:object size:0x90 scope:global align:8
+Larm2_gor_model = .data:0x0022EDD0; // type:object size:0xA0 scope:global align:8
+Larm1_gor_model = .data:0x0022EE70; // type:object size:0x90 scope:global align:8
+chest_gor_model = .data:0x0022EF00; // type:object size:0xD8 scope:global align:8
+Rfoot2_gor_model = .data:0x0022EFD8; // type:object size:0x90 scope:global align:8
+Rfoot1_gor_model = .data:0x0022F068; // type:object size:0xC0 scope:global align:8
+Lfoot2_gor_model = .data:0x0022F128; // type:object size:0x90 scope:global align:8
+Lfoot1_gor_model = .data:0x0022F1B8; // type:object size:0xC0 scope:global align:8
+base_gor_model = .data:0x0022F278; // type:object size:0x90 scope:global align:8
+cKF_je_r_gor_1_tbl = .data:0x0022F308; // type:object size:0x138 scope:global align:4
+cKF_bs_r_gor_1 = .data:0x0022F440; // type:object size:0x8 scope:global align:4
+gor_1_pal = .data:0x0022F460; // type:object size:0x20 scope:global align:32
+gor_1_eye1_TA_tex_txt = .data:0x0022F480; // type:object size:0x100 scope:global align:32
+gor_1_eye2_TA_tex_txt = .data:0x0022F580; // type:object size:0x100 scope:global align:32
+gor_1_eye3_TA_tex_txt = .data:0x0022F680; // type:object size:0x100 scope:global align:32
+gor_1_eye4_TA_tex_txt = .data:0x0022F780; // type:object size:0x100 scope:global align:32
+gor_1_eye5_TA_tex_txt = .data:0x0022F880; // type:object size:0x100 scope:global align:32
+gor_1_eye6_TA_tex_txt = .data:0x0022F980; // type:object size:0x100 scope:global align:32
+gor_1_eye7_TA_tex_txt = .data:0x0022FA80; // type:object size:0x100 scope:global align:32
+gor_1_eye8_TA_tex_txt = .data:0x0022FB80; // type:object size:0x100 scope:global align:32
+gor_1_mouth1_TA_tex_txt = .data:0x0022FC80; // type:object size:0x100 scope:global align:32
+gor_1_mouth2_TA_tex_txt = .data:0x0022FD80; // type:object size:0x100 scope:global align:32
+gor_1_mouth3_TA_tex_txt = .data:0x0022FE80; // type:object size:0x100 scope:global align:32
+gor_1_mouth4_TA_tex_txt = .data:0x0022FF80; // type:object size:0x100 scope:global align:32
+gor_1_mouth5_TA_tex_txt = .data:0x00230080; // type:object size:0x100 scope:global align:32
+gor_1_mouth6_TA_tex_txt = .data:0x00230180; // type:object size:0x100 scope:global align:32
+gor_1_tmem_txt = .data:0x00230280; // type:object size:0x400 scope:global align:32
+gor_2_pal = .data:0x00230680; // type:object size:0x20 scope:global align:32
+gor_2_eye1_TA_tex_txt = .data:0x002306A0; // type:object size:0x100 scope:global align:32
+gor_2_eye2_TA_tex_txt = .data:0x002307A0; // type:object size:0x100 scope:global align:32
+gor_2_eye3_TA_tex_txt = .data:0x002308A0; // type:object size:0x100 scope:global align:32
+gor_2_eye4_TA_tex_txt = .data:0x002309A0; // type:object size:0x100 scope:global align:32
+gor_2_eye5_TA_tex_txt = .data:0x00230AA0; // type:object size:0x100 scope:global align:32
+gor_2_eye6_TA_tex_txt = .data:0x00230BA0; // type:object size:0x100 scope:global align:32
+gor_2_eye7_TA_tex_txt = .data:0x00230CA0; // type:object size:0x100 scope:global align:32
+gor_2_eye8_TA_tex_txt = .data:0x00230DA0; // type:object size:0x100 scope:global align:32
+gor_2_mouth1_TA_tex_txt = .data:0x00230EA0; // type:object size:0x100 scope:global align:32
+gor_2_mouth2_TA_tex_txt = .data:0x00230FA0; // type:object size:0x100 scope:global align:32
+gor_2_mouth3_TA_tex_txt = .data:0x002310A0; // type:object size:0x100 scope:global align:32
+gor_2_mouth4_TA_tex_txt = .data:0x002311A0; // type:object size:0x100 scope:global align:32
+gor_2_mouth5_TA_tex_txt = .data:0x002312A0; // type:object size:0x100 scope:global align:32
+gor_2_mouth6_TA_tex_txt = .data:0x002313A0; // type:object size:0x100 scope:global align:32
+gor_2_tmem_txt = .data:0x002314A0; // type:object size:0x400 scope:global align:32
+gor_3_pal = .data:0x002318A0; // type:object size:0x20 scope:global align:32
+gor_3_eye1_TA_tex_txt = .data:0x002318C0; // type:object size:0x100 scope:global align:32
+gor_3_eye2_TA_tex_txt = .data:0x002319C0; // type:object size:0x100 scope:global align:32
+gor_3_eye3_TA_tex_txt = .data:0x00231AC0; // type:object size:0x100 scope:global align:32
+gor_3_eye4_TA_tex_txt = .data:0x00231BC0; // type:object size:0x100 scope:global align:32
+gor_3_eye5_TA_tex_txt = .data:0x00231CC0; // type:object size:0x100 scope:global align:32
+gor_3_eye6_TA_tex_txt = .data:0x00231DC0; // type:object size:0x100 scope:global align:32
+gor_3_eye7_TA_tex_txt = .data:0x00231EC0; // type:object size:0x100 scope:global align:32
+gor_3_eye8_TA_tex_txt = .data:0x00231FC0; // type:object size:0x100 scope:global align:32
+gor_3_mouth1_TA_tex_txt = .data:0x002320C0; // type:object size:0x100 scope:global align:32
+gor_3_mouth2_TA_tex_txt = .data:0x002321C0; // type:object size:0x100 scope:global align:32
+gor_3_mouth3_TA_tex_txt = .data:0x002322C0; // type:object size:0x100 scope:global align:32
+gor_3_mouth4_TA_tex_txt = .data:0x002323C0; // type:object size:0x100 scope:global align:32
+gor_3_mouth5_TA_tex_txt = .data:0x002324C0; // type:object size:0x100 scope:global align:32
+gor_3_mouth6_TA_tex_txt = .data:0x002325C0; // type:object size:0x100 scope:global align:32
+gor_3_tmem_txt = .data:0x002326C0; // type:object size:0x400 scope:global align:32
+gor_4_pal = .data:0x00232AC0; // type:object size:0x20 scope:global align:32
+gor_4_eye1_TA_tex_txt = .data:0x00232AE0; // type:object size:0x100 scope:global align:32
+gor_4_eye2_TA_tex_txt = .data:0x00232BE0; // type:object size:0x100 scope:global align:32
+gor_4_eye3_TA_tex_txt = .data:0x00232CE0; // type:object size:0x100 scope:global align:32
+gor_4_eye4_TA_tex_txt = .data:0x00232DE0; // type:object size:0x100 scope:global align:32
+gor_4_eye5_TA_tex_txt = .data:0x00232EE0; // type:object size:0x100 scope:global align:32
+gor_4_eye6_TA_tex_txt = .data:0x00232FE0; // type:object size:0x100 scope:global align:32
+gor_4_eye7_TA_tex_txt = .data:0x002330E0; // type:object size:0x100 scope:global align:32
+gor_4_eye8_TA_tex_txt = .data:0x002331E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth1_TA_tex_txt = .data:0x002332E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth2_TA_tex_txt = .data:0x002333E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth3_TA_tex_txt = .data:0x002334E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth4_TA_tex_txt = .data:0x002335E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth5_TA_tex_txt = .data:0x002336E0; // type:object size:0x100 scope:global align:32
+gor_4_mouth6_TA_tex_txt = .data:0x002337E0; // type:object size:0x100 scope:global align:32
+gor_4_tmem_txt = .data:0x002338E0; // type:object size:0x400 scope:global align:32
+gor_5_pal = .data:0x00233CE0; // type:object size:0x20 scope:global align:32
+gor_5_eye1_TA_tex_txt = .data:0x00233D00; // type:object size:0x100 scope:global align:32
+gor_5_eye2_TA_tex_txt = .data:0x00233E00; // type:object size:0x100 scope:global align:32
+gor_5_eye3_TA_tex_txt = .data:0x00233F00; // type:object size:0x100 scope:global align:32
+gor_5_eye4_TA_tex_txt = .data:0x00234000; // type:object size:0x100 scope:global align:32
+gor_5_eye5_TA_tex_txt = .data:0x00234100; // type:object size:0x100 scope:global align:32
+gor_5_eye6_TA_tex_txt = .data:0x00234200; // type:object size:0x100 scope:global align:32
+gor_5_eye7_TA_tex_txt = .data:0x00234300; // type:object size:0x100 scope:global align:32
+gor_5_eye8_TA_tex_txt = .data:0x00234400; // type:object size:0x100 scope:global align:32
+gor_5_mouth1_TA_tex_txt = .data:0x00234500; // type:object size:0x100 scope:global align:32
+gor_5_mouth2_TA_tex_txt = .data:0x00234600; // type:object size:0x100 scope:global align:32
+gor_5_mouth3_TA_tex_txt = .data:0x00234700; // type:object size:0x100 scope:global align:32
+gor_5_mouth4_TA_tex_txt = .data:0x00234800; // type:object size:0x100 scope:global align:32
+gor_5_mouth5_TA_tex_txt = .data:0x00234900; // type:object size:0x100 scope:global align:32
+gor_5_mouth6_TA_tex_txt = .data:0x00234A00; // type:object size:0x100 scope:global align:32
+gor_5_tmem_txt = .data:0x00234B00; // type:object size:0x400 scope:global align:32
+xct_1_v = .data:0x00234F00; // type:object size:0x13B0 scope:global align:8
+head_xct_model = .data:0x002362B0; // type:object size:0x190 scope:global align:8
+Rarm2_xct_model = .data:0x00236440; // type:object size:0x88 scope:global align:8
+Rarm1_xct_model = .data:0x002364C8; // type:object size:0x78 scope:global align:8
+Larm2_xct_model = .data:0x00236540; // type:object size:0x88 scope:global align:8
+Larm1_xct_model = .data:0x002365C8; // type:object size:0x78 scope:global align:8
+chest_xct_model = .data:0x00236640; // type:object size:0xB0 scope:global align:8
+tail1_xct_model = .data:0x002366F0; // type:object size:0x58 scope:global align:8
+tail2_xct_model = .data:0x00236748; // type:object size:0x90 scope:global align:8
+Rfoot2_xct_model = .data:0x002367D8; // type:object size:0x90 scope:global align:8
+Rfoot1_xct_model = .data:0x00236868; // type:object size:0x58 scope:global align:8
+Lfoot2_xct_model = .data:0x002368C0; // type:object size:0x90 scope:global align:8
+Lfoot1_xct_model = .data:0x00236950; // type:object size:0x58 scope:global align:8
+base_xct_model = .data:0x002369A8; // type:object size:0x80 scope:global align:8
+cKF_je_r_xct_1_tbl = .data:0x00236A28; // type:object size:0x138 scope:global align:4
+cKF_bs_r_xct_1 = .data:0x00236B60; // type:object size:0x8 scope:global align:4
+xct_1_pal = .data:0x00236B80; // type:object size:0x20 scope:global align:32
+xct_1_eye1_TA_tex_txt = .data:0x00236BA0; // type:object size:0x100 scope:global align:32
+xct_1_eye2_TA_tex_txt = .data:0x00236CA0; // type:object size:0x100 scope:global align:32
+xct_1_eye3_TA_tex_txt = .data:0x00236DA0; // type:object size:0x100 scope:global align:32
+xct_1_eye4_TA_tex_txt = .data:0x00236EA0; // type:object size:0x100 scope:global align:32
+xct_1_eye5_TA_tex_txt = .data:0x00236FA0; // type:object size:0x100 scope:global align:32
+xct_1_eye6_TA_tex_txt = .data:0x002370A0; // type:object size:0x100 scope:global align:32
+xct_1_eye7_TA_tex_txt = .data:0x002371A0; // type:object size:0x100 scope:global align:32
+xct_1_eye8_TA_tex_txt = .data:0x002372A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth1_TA_tex_txt = .data:0x002373A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth2_TA_tex_txt = .data:0x002374A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth3_TA_tex_txt = .data:0x002375A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth4_TA_tex_txt = .data:0x002376A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth5_TA_tex_txt = .data:0x002377A0; // type:object size:0x100 scope:global align:32
+xct_1_mouth6_TA_tex_txt = .data:0x002378A0; // type:object size:0x100 scope:global align:32
+xct_1_tmem_txt = .data:0x002379A0; // type:object size:0x580 scope:global align:32
+act_f28_akikan_pal = .data:0x00237F20; // type:object size:0x20 scope:global align:32
+act_f28_akikan_tex = .data:0x00237F40; // type:object size:0x100 scope:global align:32
+act_f28_akikan_v = .data:0x00238040; // type:object size:0x60 scope:global align:8
+act_f28_akikanT_model = .data:0x002380A0; // type:object size:0x60 scope:global align:8
+act_f29_angel_pal = .data:0x00238100; // type:object size:0x20 scope:global align:32
+act_f29_angel_tex = .data:0x00238120; // type:object size:0x300 scope:global align:32
+act_f29_angel_a_v = .data:0x00238420; // type:object size:0x90 scope:global align:8
+act_f29_angel_aT_model = .data:0x002384B0; // type:object size:0x68 scope:global align:8
+act_f29_angel_b_v = .data:0x00238518; // type:object size:0x90 scope:global align:8
+act_f29_angel_bT_model = .data:0x002385A8; // type:object size:0x68 scope:global align:8
+act_f29_angel_c_v = .data:0x00238610; // type:object size:0x90 scope:global align:8
+act_f29_angel_cT_model = .data:0x002386A0; // type:object size:0x68 scope:global align:8
+act_f26_aroana_pal = .data:0x00238720; // type:object size:0x20 scope:global align:32
+act_f26_aroana_tex = .data:0x00238740; // type:object size:0x300 scope:global align:32
+act_f26_aroana_a_v = .data:0x00238A40; // type:object size:0x90 scope:global align:8
+act_f26_aroana_aT_model = .data:0x00238AD0; // type:object size:0x68 scope:global align:8
+act_f26_aroana_b_v = .data:0x00238B38; // type:object size:0x90 scope:global align:8
+act_f26_aroana_bT_model = .data:0x00238BC8; // type:object size:0x68 scope:global align:8
+act_f26_aroana_c_v = .data:0x00238C30; // type:object size:0x90 scope:global align:8
+act_f26_aroana_cT_model = .data:0x00238CC0; // type:object size:0x68 scope:global align:8
+act_f18_ayu_pal = .data:0x00238D40; // type:object size:0x20 scope:global align:32
+act_f18_ayu_tex = .data:0x00238D60; // type:object size:0x300 scope:global align:32
+act_f18_ayu_a_v = .data:0x00239060; // type:object size:0x90 scope:global align:8
+act_f18_ayu_aT_model = .data:0x002390F0; // type:object size:0x68 scope:global align:8
+act_f18_ayu_b_v = .data:0x00239158; // type:object size:0x90 scope:global align:8
+act_f18_ayu_bT_model = .data:0x002391E8; // type:object size:0x68 scope:global align:8
+act_f18_ayu_c_v = .data:0x00239250; // type:object size:0x90 scope:global align:8
+act_f18_ayu_cT_model = .data:0x002392E0; // type:object size:0x68 scope:global align:8
+act_f08_bassl_pal = .data:0x00239360; // type:object size:0x20 scope:global align:32
+act_f08_bassl_tex = .data:0x00239380; // type:object size:0x300 scope:global align:32
+act_f08_bassl_a_v = .data:0x00239680; // type:object size:0x90 scope:global align:8
+act_f08_bassl_aT_model = .data:0x00239710; // type:object size:0x68 scope:global align:8
+act_f08_bassl_b_v = .data:0x00239778; // type:object size:0x90 scope:global align:8
+act_f08_bassl_bT_model = .data:0x00239808; // type:object size:0x68 scope:global align:8
+act_f08_bassl_c_v = .data:0x00239870; // type:object size:0x90 scope:global align:8
+act_f08_bassl_cT_model = .data:0x00239900; // type:object size:0x68 scope:global align:8
+act_f07_bassm_pal = .data:0x00239980; // type:object size:0x20 scope:global align:32
+act_f07_bassm_tex = .data:0x002399A0; // type:object size:0x300 scope:global align:32
+act_f07_bassm_a_v = .data:0x00239CA0; // type:object size:0x90 scope:global align:8
+act_f07_bassm_aT_model = .data:0x00239D30; // type:object size:0x68 scope:global align:8
+act_f07_bassm_b_v = .data:0x00239D98; // type:object size:0x90 scope:global align:8
+act_f07_bassm_bT_model = .data:0x00239E28; // type:object size:0x68 scope:global align:8
+act_f07_bassm_c_v = .data:0x00239E90; // type:object size:0x90 scope:global align:8
+act_f07_bassm_cT_model = .data:0x00239F20; // type:object size:0x68 scope:global align:8
+act_f06_bass_pal = .data:0x00239FA0; // type:object size:0x20 scope:global align:32
+act_f06_bass_tex = .data:0x00239FC0; // type:object size:0x200 scope:global align:32
+act_f06_bass_a_v = .data:0x0023A1C0; // type:object size:0x90 scope:global align:8
+act_f06_bass_aT_model = .data:0x0023A250; // type:object size:0x68 scope:global align:8
+act_f06_bass_b_v = .data:0x0023A2B8; // type:object size:0x90 scope:global align:8
+act_f06_bass_bT_model = .data:0x0023A348; // type:object size:0x68 scope:global align:8
+act_f06_bass_c_v = .data:0x0023A3B0; // type:object size:0x90 scope:global align:8
+act_f06_bass_cT_model = .data:0x0023A440; // type:object size:0x68 scope:global align:8
+act_f09_gill_pal = .data:0x0023A4C0; // type:object size:0x20 scope:global align:32
+act_f09_gill_tex = .data:0x0023A4E0; // type:object size:0x200 scope:global align:32
+act_f09_gill_a_v = .data:0x0023A6E0; // type:object size:0x90 scope:global align:8
+act_f09_gill_aT_model = .data:0x0023A770; // type:object size:0x68 scope:global align:8
+act_f09_gill_b_v = .data:0x0023A7D8; // type:object size:0x90 scope:global align:8
+act_f09_gill_bT_model = .data:0x0023A868; // type:object size:0x68 scope:global align:8
+act_f09_gill_c_v = .data:0x0023A8D0; // type:object size:0x90 scope:global align:8
+act_f09_gill_cT_model = .data:0x0023A960; // type:object size:0x68 scope:global align:8
+act_f31_demekin_pal = .data:0x0023A9E0; // type:object size:0x20 scope:global align:32
+act_f31_demekin_tex = .data:0x0023AA00; // type:object size:0x200 scope:global align:32
+act_f31_demekin_a_v = .data:0x0023AC00; // type:object size:0x90 scope:global align:8
+act_f31_demekin_aT_model = .data:0x0023AC90; // type:object size:0x68 scope:global align:8
+act_f31_demekin_b_v = .data:0x0023ACF8; // type:object size:0x90 scope:global align:8
+act_f31_demekin_bT_model = .data:0x0023AD88; // type:object size:0x68 scope:global align:8
+act_f31_demekin_c_v = .data:0x0023ADF0; // type:object size:0x90 scope:global align:8
+act_f31_demekin_cT_model = .data:0x0023AE80; // type:object size:0x68 scope:global align:8
+act_f16_dojyo_pal = .data:0x0023AF00; // type:object size:0x20 scope:global align:32
+act_f16_dojyo_tex = .data:0x0023AF20; // type:object size:0x100 scope:global align:32
+act_f16_dojyo_a_v = .data:0x0023B020; // type:object size:0x90 scope:global align:8
+act_f16_dojyo_aT_model = .data:0x0023B0B0; // type:object size:0x68 scope:global align:8
+act_f16_dojyo_b_v = .data:0x0023B118; // type:object size:0x90 scope:global align:8
+act_f16_dojyo_bT_model = .data:0x0023B1A8; // type:object size:0x68 scope:global align:8
+act_f16_dojyo_c_v = .data:0x0023B210; // type:object size:0x90 scope:global align:8
+act_f16_dojyo_cT_model = .data:0x0023B2A0; // type:object size:0x68 scope:global align:8
+act_f28_donko_pal = .data:0x0023B320; // type:object size:0x20 scope:global align:32
+act_f28_donko_tex = .data:0x0023B340; // type:object size:0x200 scope:global align:32
+act_f28_donko_a_v = .data:0x0023B540; // type:object size:0x90 scope:global align:8
+act_f28_donko_aT_model = .data:0x0023B5D0; // type:object size:0x68 scope:global align:8
+act_f28_donko_b_v = .data:0x0023B638; // type:object size:0x90 scope:global align:8
+act_f28_donko_bT_model = .data:0x0023B6C8; // type:object size:0x68 scope:global align:8
+act_f28_donko_c_v = .data:0x0023B730; // type:object size:0x90 scope:global align:8
+act_f28_donko_cT_model = .data:0x0023B7C0; // type:object size:0x68 scope:global align:8
+act_f01_funa_pal = .data:0x0023B840; // type:object size:0x20 scope:global align:32
+act_f01_funa_tex = .data:0x0023B860; // type:object size:0x200 scope:global align:32
+act_f01_funa_a_v = .data:0x0023BA60; // type:object size:0x90 scope:global align:8
+act_f01_funa_aT_model = .data:0x0023BAF0; // type:object size:0x68 scope:global align:8
+act_f01_funa_b_v = .data:0x0023BB58; // type:object size:0xA0 scope:global align:8
+act_f01_funa_bT_model = .data:0x0023BBF8; // type:object size:0x68 scope:global align:8
+act_f01_funa_c_v = .data:0x0023BC60; // type:object size:0x90 scope:global align:8
+act_f01_funa_cT_model = .data:0x0023BCF0; // type:object size:0x68 scope:global align:8
+act_f30_gupi_pal = .data:0x0023BD60; // type:object size:0x20 scope:global align:32
+act_f30_gupi_tex = .data:0x0023BD80; // type:object size:0x200 scope:global align:32
+act_f30_gupi_a_v = .data:0x0023BF80; // type:object size:0x90 scope:global align:8
+act_f30_gupi_aT_model = .data:0x0023C010; // type:object size:0x68 scope:global align:8
+act_f30_gupi_b_v = .data:0x0023C078; // type:object size:0x90 scope:global align:8
+act_f30_gupi_bT_model = .data:0x0023C108; // type:object size:0x68 scope:global align:8
+act_f30_gupi_c_v = .data:0x0023C170; // type:object size:0x90 scope:global align:8
+act_f30_gupi_cT_model = .data:0x0023C200; // type:object size:0x68 scope:global align:8
+act_f02_hera_pal = .data:0x0023C280; // type:object size:0x20 scope:global align:32
+act_f02_hera_tex = .data:0x0023C2A0; // type:object size:0x300 scope:global align:32
+act_f02_hera_a_v = .data:0x0023C5A0; // type:object size:0x90 scope:global align:8
+act_f02_hera_aT_model = .data:0x0023C630; // type:object size:0x68 scope:global align:8
+act_f02_hera_b_v = .data:0x0023C698; // type:object size:0x90 scope:global align:8
+act_f02_hera_bT_model = .data:0x0023C728; // type:object size:0x68 scope:global align:8
+act_f02_hera_c_v = .data:0x0023C790; // type:object size:0x90 scope:global align:8
+act_f02_hera_cT_model = .data:0x0023C820; // type:object size:0x68 scope:global align:8
+int_nog_isidai_pal = .data:0x0023C8A0; // type:object size:0x20 scope:local align:32
+act_f40_isidai_tex = .data:0x0023C8C0; // type:object size:0x300 scope:global align:32
+act_f40_isidai_a_v = .data:0x0023CBC0; // type:object size:0x90 scope:global align:8
+act_f40_isidai_aT_model = .data:0x0023CC50; // type:object size:0x68 scope:global align:8
+act_f40_isidai_b_v = .data:0x0023CCB8; // type:object size:0x90 scope:global align:8
+act_f40_isidai_bT_model = .data:0x0023CD48; // type:object size:0x68 scope:global align:8
+act_f40_isidai_c_v = .data:0x0023CDB0; // type:object size:0x90 scope:global align:8
+act_f40_isidai_cT_model = .data:0x0023CE40; // type:object size:0x68 scope:global align:8
+act_f22_ito_pal = .data:0x0023CEC0; // type:object size:0x20 scope:global align:32
+act_f22_ito_tex = .data:0x0023CEE0; // type:object size:0x400 scope:global align:32
+act_f22_ito_a_v = .data:0x0023D2E0; // type:object size:0x90 scope:global align:8
+act_f22_ito_aT_model = .data:0x0023D370; // type:object size:0x68 scope:global align:8
+act_f22_ito_b_v = .data:0x0023D3D8; // type:object size:0x90 scope:global align:8
+act_f22_ito_bT_model = .data:0x0023D468; // type:object size:0x68 scope:global align:8
+act_f22_ito_c_v = .data:0x0023D4D0; // type:object size:0x90 scope:global align:8
+act_f22_ito_cT_model = .data:0x0023D560; // type:object size:0x68 scope:global align:8
+int_nog_kaeru_pal = .data:0x0023D5E0; // type:object size:0x20 scope:local align:32
+act_f36_kaeru_tex = .data:0x0023D600; // type:object size:0x400 scope:global align:32
+act_f36_kaeru_a_v = .data:0x0023DA00; // type:object size:0x80 scope:global align:8
+act_f36_kaeru_aT_model = .data:0x0023DA80; // type:object size:0x60 scope:global align:8
+act_f36_kaeru_b_v = .data:0x0023DAE0; // type:object size:0x80 scope:global align:8
+act_f36_kaeru_bT_model = .data:0x0023DB60; // type:object size:0x60 scope:global align:8
+act_f36_kaeru_c_v = .data:0x0023DBC0; // type:object size:0x80 scope:global align:8
+act_f36_kaeru_cT_model = .data:0x0023DC40; // type:object size:0x60 scope:global align:8
+act_gyoei02_0_int_i4 = .data:0x0023DCA0; // type:object size:0x100 scope:global align:32
+act_gyoei02_1_int_i4 = .data:0x0023DDA0; // type:object size:0x100 scope:global align:32
+act_gyoei02_2_int_i4 = .data:0x0023DEA0; // type:object size:0x100 scope:global align:32
+act_gyoei02_3_int_i4 = .data:0x0023DFA0; // type:object size:0x100 scope:global align:32
+act_gyoei02_00_v = .data:0x0023E0A0; // type:object size:0x40 scope:global align:8
+act_gyoei02_00_modelT = .data:0x0023E0E0; // type:object size:0x58 scope:global align:8
+act_f32_kaseki_pal = .data:0x0023E140; // type:object size:0x20 scope:global align:32
+act_f32_kaseki_tex = .data:0x0023E160; // type:object size:0x400 scope:global align:32
+act_f32_kaseki_a_v = .data:0x0023E560; // type:object size:0xA0 scope:global align:8
+act_f32_kaseki_aT_model = .data:0x0023E600; // type:object size:0x68 scope:global align:8
+act_f32_kaseki_b_v = .data:0x0023E668; // type:object size:0xA0 scope:global align:8
+act_f32_kasekiT_model = .data:0x0023E708; // type:object size:0x68 scope:global align:8
+act_f32_kaseki_c_v = .data:0x0023E770; // type:object size:0xA0 scope:global align:8
+act_f32_kaseki_cT_model = .data:0x0023E810; // type:object size:0x68 scope:global align:8
+act_f24_kingyo_pal = .data:0x0023E880; // type:object size:0x20 scope:global align:32
+act_f24_kingyo_tex = .data:0x0023E8A0; // type:object size:0x200 scope:global align:32
+act_f24_kingyo_a_v = .data:0x0023EAA0; // type:object size:0x90 scope:global align:8
+act_f24_kingyo_aT_model = .data:0x0023EB30; // type:object size:0x68 scope:global align:8
+act_f24_kingyo_b_v = .data:0x0023EB98; // type:object size:0x90 scope:global align:8
+act_f24_kingyo_bT_model = .data:0x0023EC28; // type:object size:0x68 scope:global align:8
+act_f24_kingyo_c_v = .data:0x0023EC90; // type:object size:0x90 scope:global align:8
+act_f24_kingyo_cT_model = .data:0x0023ED20; // type:object size:0x68 scope:global align:8
+act_f03_koi_pal = .data:0x0023EDA0; // type:object size:0x20 scope:global align:32
+act_f03_koi_tex = .data:0x0023EDC0; // type:object size:0x300 scope:global align:32
+act_f03_koi_a_v = .data:0x0023F0C0; // type:object size:0x90 scope:global align:8
+act_f03_koi_aT_model = .data:0x0023F150; // type:object size:0x68 scope:global align:8
+act_f03_koi_b_v = .data:0x0023F1B8; // type:object size:0x90 scope:global align:8
+act_f03_koi_bT_model = .data:0x0023F248; // type:object size:0x68 scope:global align:8
+act_f03_koi_c_v = .data:0x0023F2B0; // type:object size:0x90 scope:global align:8
+act_f03_koi_cT_model = .data:0x0023F340; // type:object size:0x68 scope:global align:8
+act_f37_kurage_pal = .data:0x0023F3C0; // type:object size:0x20 scope:local align:32
+act_f37_kurage_head_tex = .data:0x0023F3E0; // type:object size:0x100 scope:global align:32
+act_f37_kurage_foot_tex = .data:0x0023F4E0; // type:object size:0x100 scope:global align:32
+act_f37_kurage_a_v = .data:0x0023F5E0; // type:object size:0xD0 scope:global align:8
+act_f37_kurage_aT_model = .data:0x0023F6B0; // type:object size:0x80 scope:global align:8
+act_f37_kurage_b_v = .data:0x0023F730; // type:object size:0xD0 scope:global align:8
+act_f37_kurage_bT_model = .data:0x0023F800; // type:object size:0x80 scope:global align:8
+act_f37_kurage_c_v = .data:0x0023F880; // type:object size:0xD0 scope:global align:8
+act_f37_kurage_cT_model = .data:0x0023F950; // type:object size:0x80 scope:global align:8
+int_nog_medaka_pal = .data:0x0023F9E0; // type:object size:0x20 scope:local align:32
+act_f33_medaka_tex = .data:0x0023FA00; // type:object size:0x100 scope:global align:32
+act_f33_medaka_a_v = .data:0x0023FB00; // type:object size:0x90 scope:global align:8
+act_f33_medaka_aT_model = .data:0x0023FB90; // type:object size:0x68 scope:global align:8
+act_f33_medaka_b_v = .data:0x0023FBF8; // type:object size:0x90 scope:global align:8
+act_f33_medaka_bT_model = .data:0x0023FC88; // type:object size:0x68 scope:global align:8
+act_f33_medaka_c_v = .data:0x0023FCF0; // type:object size:0x90 scope:global align:8
+act_f33_medaka_cT_model = .data:0x0023FD80; // type:object size:0x68 scope:global align:8
+act_f30_nagagutu_pal = .data:0x0023FE00; // type:object size:0x20 scope:global align:32
+act_f30_nagagutu_tex = .data:0x0023FE20; // type:object size:0x200 scope:global align:32
+act_f30_nagagutu_v = .data:0x00240020; // type:object size:0x50 scope:global align:8
+act_f30_nagagutuT_model = .data:0x00240070; // type:object size:0x60 scope:global align:8
+act_f05_namazu_pal = .data:0x002400E0; // type:object size:0x20 scope:global align:32
+act_f05_namazu_tex = .data:0x00240100; // type:object size:0x300 scope:global align:32
+act_f05_namazu_a_v = .data:0x00240400; // type:object size:0x90 scope:global align:8
+act_f05_namazu_aT_model = .data:0x00240490; // type:object size:0x68 scope:global align:8
+act_f05_namazu_b_v = .data:0x002404F8; // type:object size:0x90 scope:global align:8
+act_f05_namazu_bT_model = .data:0x00240588; // type:object size:0x68 scope:global align:8
+act_f05_namazu_c_v = .data:0x002405F0; // type:object size:0x90 scope:global align:8
+act_f05_namazu_cT_model = .data:0x00240680; // type:object size:0x68 scope:global align:8
+act_f12_nigoi_pal = .data:0x00240700; // type:object size:0x20 scope:global align:32
+act_f12_nigoi_tex = .data:0x00240720; // type:object size:0x300 scope:global align:32
+act_f12_nigoi_a_v = .data:0x00240A20; // type:object size:0x90 scope:global align:8
+act_f12_nigoi_aT_model = .data:0x00240AB0; // type:object size:0x68 scope:global align:8
+act_f12_nigoi_b_v = .data:0x00240B18; // type:object size:0x90 scope:global align:8
+act_f12_nigoi_bT_model = .data:0x00240BA8; // type:object size:0x68 scope:global align:8
+act_f12_nigoi_c_v = .data:0x00240C10; // type:object size:0x90 scope:global align:8
+act_f12_nigoi_cT_model = .data:0x00240CA0; // type:object size:0x68 scope:global align:8
+act_f21_niji_pal = .data:0x00240D20; // type:object size:0x20 scope:global align:32
+act_f21_niji_tex = .data:0x00240D40; // type:object size:0x300 scope:global align:32
+act_f21_niji_a_v = .data:0x00241040; // type:object size:0x90 scope:global align:8
+act_f21_niji_aT_model = .data:0x002410D0; // type:object size:0x68 scope:global align:8
+act_f21_niji_b_v = .data:0x00241138; // type:object size:0x90 scope:global align:8
+act_f21_niji_bT_model = .data:0x002411C8; // type:object size:0x68 scope:global align:8
+act_f21_niji_c_v = .data:0x00241230; // type:object size:0x90 scope:global align:8
+act_f21_niji_cT_model = .data:0x002412C0; // type:object size:0x68 scope:global align:8
+act_f04_nisiki_pal = .data:0x00241340; // type:object size:0x20 scope:global align:32
+act_f04_nisiki_tex = .data:0x00241360; // type:object size:0x300 scope:global align:32
+act_f04_nisiki_a_v = .data:0x00241660; // type:object size:0x90 scope:global align:8
+act_f04_nisiki_aT_model = .data:0x002416F0; // type:object size:0x68 scope:global align:8
+act_f04_nisiki_b_v = .data:0x00241758; // type:object size:0x90 scope:global align:8
+act_f04_nisiki_bT_model = .data:0x002417E8; // type:object size:0x68 scope:global align:8
+act_f04_nisiki_c_v = .data:0x00241850; // type:object size:0x90 scope:global align:8
+act_f04_nisiki_cT_model = .data:0x002418E0; // type:object size:0x68 scope:global align:8
+act_f14_oikawa_pal = .data:0x00241960; // type:object size:0x20 scope:global align:32
+act_f14_oikawa_tex = .data:0x00241980; // type:object size:0x200 scope:global align:32
+act_f14_oikawa_a_v = .data:0x00241B80; // type:object size:0x90 scope:global align:8
+act_f14_oikawa_aT_model = .data:0x00241C10; // type:object size:0x68 scope:global align:8
+act_f14_oikawa_b_v = .data:0x00241C78; // type:object size:0x90 scope:global align:8
+act_f14_oikawa_bT_model = .data:0x00241D08; // type:object size:0x68 scope:global align:8
+act_f14_oikawa_c_v = .data:0x00241D70; // type:object size:0x90 scope:global align:8
+act_f14_oikawa_cT_model = .data:0x00241E00; // type:object size:0x68 scope:global align:8
+act_f20_iwana_pal = .data:0x00241E80; // type:object size:0x20 scope:global align:32
+act_f20_iwana_tex = .data:0x00241EA0; // type:object size:0x300 scope:global align:32
+act_f20_iwana_a_v = .data:0x002421A0; // type:object size:0x90 scope:global align:8
+act_f20_iwana_aT_model = .data:0x00242230; // type:object size:0x68 scope:global align:8
+act_f20_iwana_b_v = .data:0x00242298; // type:object size:0x90 scope:global align:8
+act_f20_iwana_bT_model = .data:0x00242328; // type:object size:0x68 scope:global align:8
+act_f20_iwana_c_v = .data:0x00242390; // type:object size:0x90 scope:global align:8
+act_f20_iwana_cT_model = .data:0x00242420; // type:object size:0x68 scope:global align:8
+act_f10_oonamazu_pal = .data:0x002424A0; // type:object size:0x20 scope:global align:32
+act_f10_oonamazu_tex = .data:0x002424C0; // type:object size:0x400 scope:global align:32
+act_f10_oonamazu_a_v = .data:0x002428C0; // type:object size:0x90 scope:global align:8
+act_f10_oonamazu_aT_model = .data:0x00242950; // type:object size:0x68 scope:global align:8
+act_f10_oonamazu_b_v = .data:0x002429B8; // type:object size:0x90 scope:global align:8
+act_f10_oonamazu_bT_model = .data:0x00242A48; // type:object size:0x68 scope:global align:8
+act_f10_oonamazu_c_v = .data:0x00242AB0; // type:object size:0x90 scope:global align:8
+act_f10_oonamazu_cT_model = .data:0x00242B40; // type:object size:0x68 scope:global align:8
+int_nog_piraluku_pal = .data:0x00242BC0; // type:object size:0x20 scope:local align:32
+act_f34_piraluku_tex = .data:0x00242BE0; // type:object size:0x400 scope:global align:32
+act_f34_piraluku_a_v = .data:0x00242FE0; // type:object size:0x90 scope:global align:8
+act_f34_piraluku_aT_model = .data:0x00243070; // type:object size:0x68 scope:global align:8
+act_f34_piraluku_b_v = .data:0x002430D8; // type:object size:0x90 scope:global align:8
+act_f34_piraluku_bT_model = .data:0x00243168; // type:object size:0x68 scope:global align:8
+act_f34_piraluku_c_v = .data:0x002431D0; // type:object size:0x90 scope:global align:8
+act_f34_piraluku_cT_model = .data:0x00243260; // type:object size:0x68 scope:global align:8
+act_f25_pirania_pal = .data:0x002432E0; // type:object size:0x20 scope:global align:32
+act_f25_pirania_tex = .data:0x00243300; // type:object size:0x200 scope:global align:32
+act_f25_pirania_a_v = .data:0x00243500; // type:object size:0x90 scope:global align:8
+act_f25_pirania_aT_model = .data:0x00243590; // type:object size:0x68 scope:global align:8
+act_f25_pirania_b_v = .data:0x002435F8; // type:object size:0x90 scope:global align:8
+act_f25_pirania_bT_model = .data:0x00243688; // type:object size:0x68 scope:global align:8
+act_f25_pirania_c_v = .data:0x002436F0; // type:object size:0x90 scope:global align:8
+act_f25_pirania_cT_model = .data:0x00243780; // type:object size:0x68 scope:global align:8
+act_f11_raigyo_pal = .data:0x00243800; // type:object size:0x20 scope:global align:32
+act_f11_raigyo_tex = .data:0x00243820; // type:object size:0x400 scope:global align:32
+act_f11_raigyo_a_v = .data:0x00243C20; // type:object size:0xA0 scope:global align:8
+act_f11_raigyo_aT_model = .data:0x00243CC0; // type:object size:0x68 scope:global align:8
+act_f11_raigyo_b_v = .data:0x00243D28; // type:object size:0xA0 scope:global align:8
+act_f11_raigyo_bT_model = .data:0x00243DC8; // type:object size:0x68 scope:global align:8
+act_f11_raigyo_c_v = .data:0x00243E30; // type:object size:0xA0 scope:global align:8
+act_f11_raigyo_cT_model = .data:0x00243ED0; // type:object size:0x68 scope:global align:8
+act_f23_sake_pal = .data:0x00243F40; // type:object size:0x20 scope:global align:32
+act_f23_sake_tex = .data:0x00243F60; // type:object size:0x300 scope:global align:32
+act_f23_sake_a_v = .data:0x00244260; // type:object size:0x90 scope:global align:8
+act_f23_sake_aT_model = .data:0x002442F0; // type:object size:0x68 scope:global align:8
+act_f23_sake_b_v = .data:0x00244358; // type:object size:0x90 scope:global align:8
+act_f23_sake_bT_model = .data:0x002443E8; // type:object size:0x68 scope:global align:8
+act_f23_sake_c_v = .data:0x00244450; // type:object size:0x90 scope:global align:8
+act_f23_sake_cT_model = .data:0x002444E0; // type:object size:0x68 scope:global align:8
+int_nog_suzuki_pal = .data:0x00244560; // type:object size:0x20 scope:local align:32
+act_f38_suzuki_tex = .data:0x00244580; // type:object size:0x300 scope:global align:32
+act_f38_suzuki_a_v = .data:0x00244880; // type:object size:0x90 scope:global align:8
+act_f38_suzuki_aT_model = .data:0x00244910; // type:object size:0x68 scope:global align:8
+act_f38_suzuki_b_v = .data:0x00244978; // type:object size:0x90 scope:global align:8
+act_f38_suzuki_bT_model = .data:0x00244A08; // type:object size:0x68 scope:global align:8
+act_f38_suzuki_c_v = .data:0x00244A70; // type:object size:0x90 scope:global align:8
+act_f38_suzuki_cT_model = .data:0x00244B00; // type:object size:0x68 scope:global align:8
+int_nog_tai_pal = .data:0x00244B80; // type:object size:0x20 scope:local align:32
+act_f39_tai_tex = .data:0x00244BA0; // type:object size:0x300 scope:global align:32
+act_f39_tai_a_v = .data:0x00244EA0; // type:object size:0x90 scope:global align:8
+act_f39_tai_aT_model = .data:0x00244F30; // type:object size:0x68 scope:global align:8
+act_f39_tai_b_v = .data:0x00244F98; // type:object size:0x90 scope:global align:8
+act_f39_tai_bT_model = .data:0x00245028; // type:object size:0x68 scope:global align:8
+act_f39_tai_c_v = .data:0x00245090; // type:object size:0x90 scope:global align:8
+act_f39_tai_cT_model = .data:0x00245120; // type:object size:0x68 scope:global align:8
+act_f31_taiya_pal = .data:0x002451A0; // type:object size:0x20 scope:global align:32
+act_f31_taiya_tex = .data:0x002451C0; // type:object size:0x300 scope:global align:32
+act_f31_taiya_v = .data:0x002454C0; // type:object size:0x50 scope:global align:8
+act_f29_petT_model = .data:0x00245510; // type:object size:0x60 scope:global align:8
+act_f15_tanago_pal = .data:0x00245580; // type:object size:0x20 scope:global align:32
+act_f15_tanago_tex = .data:0x002455A0; // type:object size:0x200 scope:global align:32
+act_f15_tanago_a_v = .data:0x002457A0; // type:object size:0x90 scope:global align:8
+act_f15_tanago_aT_model = .data:0x00245830; // type:object size:0x68 scope:global align:8
+act_f15_tanago_b_v = .data:0x00245898; // type:object size:0x90 scope:global align:8
+act_f15_tanago_bT_model = .data:0x00245928; // type:object size:0x68 scope:global align:8
+act_f15_tanago_c_v = .data:0x00245990; // type:object size:0x90 scope:global align:8
+act_f15_tanago_cT_model = .data:0x00245A20; // type:object size:0x68 scope:global align:8
+act_f13_ugui_pal = .data:0x00245AA0; // type:object size:0x20 scope:global align:32
+act_f13_ugui_tex = .data:0x00245AC0; // type:object size:0x300 scope:global align:32
+act_f13_ugui_a_v = .data:0x00245DC0; // type:object size:0x90 scope:global align:8
+act_f13_ugui_aT_model = .data:0x00245E50; // type:object size:0x68 scope:global align:8
+act_f13_ugui_b_v = .data:0x00245EB8; // type:object size:0x90 scope:global align:8
+act_f13_ugui_bT_model = .data:0x00245F48; // type:object size:0x68 scope:global align:8
+act_f13_ugui_c_v = .data:0x00245FB0; // type:object size:0x90 scope:global align:8
+act_f13_ugui_cT_model = .data:0x00246040; // type:object size:0x68 scope:global align:8
+act_f27_unagi_pal = .data:0x002460C0; // type:object size:0x20 scope:global align:32
+act_f27_unagi_tex = .data:0x002460E0; // type:object size:0x200 scope:global align:32
+act_f27_unagi_a_v = .data:0x002462E0; // type:object size:0x90 scope:global align:8
+act_f27_unagi_aT_model = .data:0x00246370; // type:object size:0x68 scope:global align:8
+act_f27_unagi_b_v = .data:0x002463D8; // type:object size:0x90 scope:global align:8
+act_f27_unagi_bT_model = .data:0x00246468; // type:object size:0x68 scope:global align:8
+act_f27_unagi_c_v = .data:0x002464D0; // type:object size:0x90 scope:global align:8
+act_f27_unagi_cT_model = .data:0x00246560; // type:object size:0x68 scope:global align:8
+act_f17_wakasagi_pal = .data:0x002465E0; // type:object size:0x20 scope:global align:32
+act_f17_wakasagi_tex = .data:0x00246600; // type:object size:0x100 scope:global align:32
+act_f17_wakasagi_a_v = .data:0x00246700; // type:object size:0x90 scope:global align:8
+act_f17_wakasagi_aT_model = .data:0x00246790; // type:object size:0x68 scope:global align:8
+act_f17_wakasagi_b_v = .data:0x002467F8; // type:object size:0x90 scope:global align:8
+act_f17_wakasagi_bT_model = .data:0x00246888; // type:object size:0x68 scope:global align:8
+act_f17_wakasagi_c_v = .data:0x002468F0; // type:object size:0x90 scope:global align:8
+act_f17_wakasagi_cT_model = .data:0x00246980; // type:object size:0x68 scope:global align:8
+act_f19_yamame_pal = .data:0x00246A00; // type:object size:0x20 scope:global align:32
+act_f19_yamame_tex = .data:0x00246A20; // type:object size:0x300 scope:global align:32
+act_f19_yamame_a_v = .data:0x00246D20; // type:object size:0x90 scope:global align:8
+act_f19_yamame_aT_model = .data:0x00246DB0; // type:object size:0x68 scope:global align:8
+act_f19_yamame_b_v = .data:0x00246E18; // type:object size:0x90 scope:global align:8
+act_f19_yamame_bT_model = .data:0x00246EA8; // type:object size:0x68 scope:global align:8
+act_f19_yamame_c_v = .data:0x00246F10; // type:object size:0x90 scope:global align:8
+act_f19_yamame_cT_model = .data:0x00246FA0; // type:object size:0x68 scope:global align:8
+int_nog_zarigani_pal = .data:0x00247020; // type:object size:0x20 scope:local align:32
+act_f35_zarigani_tex = .data:0x00247040; // type:object size:0x100 scope:global align:32
+act_f35_zarigani_a_v = .data:0x00247140; // type:object size:0x90 scope:global align:8
+act_f35_zarigani_aT_model = .data:0x002471D0; // type:object size:0x68 scope:global align:8
+act_f35_zarigani_b_v = .data:0x00247238; // type:object size:0x90 scope:global align:8
+act_f35_zarigani_bT_model = .data:0x002472C8; // type:object size:0x68 scope:global align:8
+act_f35_zarigani_c_v = .data:0x00247330; // type:object size:0x90 scope:global align:8
+act_f35_zarigani_cT_model = .data:0x002473C0; // type:object size:0x68 scope:global align:8
+bpt_1_v = .data:0x00247428; // type:object size:0x16E0 scope:global align:8
+head_bpt_model = .data:0x00248B08; // type:object size:0x1A8 scope:global align:8
+feel_bpt_model = .data:0x00248CB0; // type:object size:0x68 scope:global align:8
+mouth_bpt_model = .data:0x00248D18; // type:object size:0x88 scope:global align:8
+Rarm2_bpt_model = .data:0x00248DA0; // type:object size:0xC8 scope:global align:8
+Rarm1_bpt_model = .data:0x00248E68; // type:object size:0x90 scope:global align:8
+Larm2_bpt_model = .data:0x00248EF8; // type:object size:0xC8 scope:global align:8
+Larm1_bpt_model = .data:0x00248FC0; // type:object size:0x90 scope:global align:8
+chest_bpt_model = .data:0x00249050; // type:object size:0xB8 scope:global align:8
+tail1_bpt_model = .data:0x00249108; // type:object size:0x58 scope:global align:8
+tail2_bpt_model = .data:0x00249160; // type:object size:0x90 scope:global align:8
+Rfoot2_bpt_model = .data:0x002491F0; // type:object size:0x60 scope:global align:8
+Rfoot1_bpt_model = .data:0x00249250; // type:object size:0x80 scope:global align:8
+Lfoot2_bpt_model = .data:0x002492D0; // type:object size:0x60 scope:global align:8
+Lfoot1_bpt_model = .data:0x00249330; // type:object size:0x88 scope:global align:8
+base_bpt_model = .data:0x002493B8; // type:object size:0x88 scope:global align:8
+cKF_je_r_bpt_1_tbl = .data:0x00249440; // type:object size:0x138 scope:global align:4
+cKF_bs_r_bpt_1 = .data:0x00249578; // type:object size:0x8 scope:global align:4
+bpt_1_pal = .data:0x00249580; // type:object size:0x20 scope:global align:32
+bpt_1_eye1_TA_tex_txt = .data:0x002495A0; // type:object size:0x100 scope:global align:32
+bpt_1_eye2_TA_tex_txt = .data:0x002496A0; // type:object size:0x100 scope:global align:32
+bpt_1_eye3_TA_tex_txt = .data:0x002497A0; // type:object size:0x100 scope:global align:32
+bpt_1_eye4_TA_tex_txt = .data:0x002498A0; // type:object size:0x100 scope:global align:32
+bpt_1_eye5_TA_tex_txt = .data:0x002499A0; // type:object size:0x100 scope:global align:32
+bpt_1_eye6_TA_tex_txt = .data:0x00249AA0; // type:object size:0x100 scope:global align:32
+bpt_1_eye7_TA_tex_txt = .data:0x00249BA0; // type:object size:0x100 scope:global align:32
+bpt_1_eye8_TA_tex_txt = .data:0x00249CA0; // type:object size:0x100 scope:global align:32
+bpt_1_tmem_txt = .data:0x00249DA0; // type:object size:0x700 scope:global align:32
+pkn_1_v = .data:0x0024A4A0; // type:object size:0x1200 scope:global align:8
+head_pkn_model = .data:0x0024B6A0; // type:object size:0x180 scope:global align:8
+Rarm2_pkn_model = .data:0x0024B820; // type:object size:0x88 scope:global align:8
+Rarm1_pkn_model = .data:0x0024B8A8; // type:object size:0x78 scope:global align:8
+Larm2_pkn_model = .data:0x0024B920; // type:object size:0x88 scope:global align:8
+Larm1_pkn_model = .data:0x0024B9A8; // type:object size:0x78 scope:global align:8
+chest_pkn_model = .data:0x0024BA20; // type:object size:0xA0 scope:global align:8
+Rfoot2_pkn_model = .data:0x0024BAC0; // type:object size:0x80 scope:global align:8
+Rfoot1_pkn_model = .data:0x0024BB40; // type:object size:0xB0 scope:global align:8
+Lfoot2_pkn_model = .data:0x0024BBF0; // type:object size:0x80 scope:global align:8
+Lfoot1_pkn_model = .data:0x0024BC70; // type:object size:0xB0 scope:global align:8
+base_pkn_model = .data:0x0024BD20; // type:object size:0x68 scope:global align:8
+cKF_je_r_pkn_1_tbl = .data:0x0024BD88; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pkn_1 = .data:0x0024BEC0; // type:object size:0x8 scope:global align:4
+pkn_1_pal = .data:0x0024BEE0; // type:object size:0x20 scope:global align:32
+pkn_1_tmem_txt = .data:0x0024BF00; // type:object size:0x680 scope:global align:32
+hnw_v = .data:0x0024C580; // type:object size:0x1140 scope:global align:8
+head_hnw_model = .data:0x0024D6C0; // type:object size:0x308 scope:global align:8
+handR_hnw_model = .data:0x0024D9C8; // type:object size:0x88 scope:global align:8
+handL_hnw_model = .data:0x0024DA50; // type:object size:0x88 scope:global align:8
+body_hnw_model = .data:0x0024DAD8; // type:object size:0x118 scope:global align:8
+cKF_je_r_hnw_tbl = .data:0x0024DBF0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_hnw = .data:0x0024DC44; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_hnw_move_tbl = .data:0x0024DC50; // type:object size:0x7 scope:global align:4
+cKF_kn_hnw_move_tbl = .data:0x0024DC58; // type:object size:0x8 scope:global align:4
+cKF_c_hnw_move_tbl = .data:0x0024DC60; // type:object size:0x28 scope:global align:4
+cKF_ds_hnw_move_tbl = .data:0x0024DC88; // type:object size:0xC0 scope:global align:4
+cKF_ba_r_hnw_move = .data:0x0024DD48; // type:object size:0x14 scope:global align:4
+hnw_face = .data:0x0024DD60; // type:object size:0x20 scope:global align:32
+hnw_tmem_txt = .data:0x0024DD80; // type:object size:0x800 scope:global align:32
+hem_1_v = .data:0x0024E580; // type:object size:0x14D0 scope:global align:8
+head_hem_model = .data:0x0024FA50; // type:object size:0x1A0 scope:global align:8
+feel_hem_model = .data:0x0024FBF0; // type:object size:0x80 scope:global align:8
+mouth_hem_model = .data:0x0024FC70; // type:object size:0x90 scope:global align:8
+Rarm2_hem_model = .data:0x0024FD00; // type:object size:0x88 scope:global align:8
+Rarm1_hem_model = .data:0x0024FD88; // type:object size:0x58 scope:global align:8
+chest_hem_model = .data:0x0024FDE0; // type:object size:0xD0 scope:global align:8
+base_hem_model = .data:0x0024FEB0; // type:object size:0x1F0 scope:global align:8
+cKF_je_r_hem_1_tbl = .data:0x002500A0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_hem_1 = .data:0x002501D8; // type:object size:0x8 scope:global align:4
+hem_1_pal = .data:0x002501E0; // type:object size:0x20 scope:global align:32
+hem_1_tmem_txt = .data:0x00250200; // type:object size:0x740 scope:global align:32
+hip_1_v = .data:0x00250940; // type:object size:0x1C60 scope:global align:8
+head_hip_model = .data:0x002525A0; // type:object size:0x2D8 scope:global align:8
+mouth_hip_model = .data:0x00252878; // type:object size:0xC8 scope:global align:8
+Rarm2_hip_model = .data:0x00252940; // type:object size:0x80 scope:global align:8
+Rarm1_hip_model = .data:0x002529C0; // type:object size:0x78 scope:global align:8
+Larm2_hip_model = .data:0x00252A38; // type:object size:0x80 scope:global align:8
+Larm1_hip_model = .data:0x00252AB8; // type:object size:0x78 scope:global align:8
+chest_hip_model = .data:0x00252B30; // type:object size:0x90 scope:global align:8
+tail1_hip_model = .data:0x00252BC0; // type:object size:0x58 scope:global align:8
+tail2_hip_model = .data:0x00252C18; // type:object size:0x50 scope:global align:8
+Rfoot2_hip_model = .data:0x00252C68; // type:object size:0x90 scope:global align:8
+Rfoot1_hip_model = .data:0x00252CF8; // type:object size:0x88 scope:global align:8
+lfoot1_hip_model = .data:0x00252D80; // type:object size:0x88 scope:global align:8
+Lfoot2_hip_model = .data:0x00252E08; // type:object size:0x90 scope:global align:8
+base_hip_model = .data:0x00252E98; // type:object size:0x80 scope:global align:8
+cKF_je_r_hip_1_tbl = .data:0x00252F18; // type:object size:0x138 scope:global align:4
+cKF_bs_r_hip_1 = .data:0x00253050; // type:object size:0x8 scope:global align:4
+hip_1_pal = .data:0x00253060; // type:object size:0x20 scope:global align:32
+hip_1_eye1_TA_tex_txt = .data:0x00253080; // type:object size:0x100 scope:global align:32
+hip_1_eye2_TA_tex_txt = .data:0x00253180; // type:object size:0x100 scope:global align:32
+hip_1_eye3_TA_tex_txt = .data:0x00253280; // type:object size:0x100 scope:global align:32
+hip_1_eye4_TA_tex_txt = .data:0x00253380; // type:object size:0x100 scope:global align:32
+hip_1_eye5_TA_tex_txt = .data:0x00253480; // type:object size:0x100 scope:global align:32
+hip_1_eye6_TA_tex_txt = .data:0x00253580; // type:object size:0x100 scope:global align:32
+hip_1_eye7_TA_tex_txt = .data:0x00253680; // type:object size:0x100 scope:global align:32
+hip_1_eye8_TA_tex_txt = .data:0x00253780; // type:object size:0x100 scope:global align:32
+hip_1_tmem_txt = .data:0x00253880; // type:object size:0x500 scope:global align:32
+hip_2_pal = .data:0x00253D80; // type:object size:0x20 scope:global align:32
+hip_2_eye1_TA_tex_txt = .data:0x00253DA0; // type:object size:0x100 scope:global align:32
+hip_2_eye2_TA_tex_txt = .data:0x00253EA0; // type:object size:0x100 scope:global align:32
+hip_2_eye3_TA_tex_txt = .data:0x00253FA0; // type:object size:0x100 scope:global align:32
+hip_2_eye4_TA_tex_txt = .data:0x002540A0; // type:object size:0x100 scope:global align:32
+hip_2_eye5_TA_tex_txt = .data:0x002541A0; // type:object size:0x100 scope:global align:32
+hip_2_eye6_TA_tex_txt = .data:0x002542A0; // type:object size:0x100 scope:global align:32
+hip_2_eye7_TA_tex_txt = .data:0x002543A0; // type:object size:0x100 scope:global align:32
+hip_2_eye8_TA_tex_txt = .data:0x002544A0; // type:object size:0x100 scope:global align:32
+hip_2_tmem_txt = .data:0x002545A0; // type:object size:0x500 scope:global align:32
+hip_3_pal = .data:0x00254AA0; // type:object size:0x20 scope:global align:32
+hip_3_eye1_TA_tex_txt = .data:0x00254AC0; // type:object size:0x100 scope:global align:32
+hip_3_eye2_TA_tex_txt = .data:0x00254BC0; // type:object size:0x100 scope:global align:32
+hip_3_eye3_TA_tex_txt = .data:0x00254CC0; // type:object size:0x100 scope:global align:32
+hip_3_eye4_TA_tex_txt = .data:0x00254DC0; // type:object size:0x100 scope:global align:32
+hip_3_eye5_TA_tex_txt = .data:0x00254EC0; // type:object size:0x100 scope:global align:32
+hip_3_eye6_TA_tex_txt = .data:0x00254FC0; // type:object size:0x100 scope:global align:32
+hip_3_eye7_TA_tex_txt = .data:0x002550C0; // type:object size:0x100 scope:global align:32
+hip_3_eye8_TA_tex_txt = .data:0x002551C0; // type:object size:0x100 scope:global align:32
+hip_3_tmem_txt = .data:0x002552C0; // type:object size:0x500 scope:global align:32
+hip_4_pal = .data:0x002557C0; // type:object size:0x20 scope:global align:32
+hip_4_eye1_TA_tex_txt = .data:0x002557E0; // type:object size:0x100 scope:global align:32
+hip_4_eye2_TA_tex_txt = .data:0x002558E0; // type:object size:0x100 scope:global align:32
+hip_4_eye3_TA_tex_txt = .data:0x002559E0; // type:object size:0x100 scope:global align:32
+hip_4_eye4_TA_tex_txt = .data:0x00255AE0; // type:object size:0x100 scope:global align:32
+hip_4_eye5_TA_tex_txt = .data:0x00255BE0; // type:object size:0x100 scope:global align:32
+hip_4_eye6_TA_tex_txt = .data:0x00255CE0; // type:object size:0x100 scope:global align:32
+hip_4_eye7_TA_tex_txt = .data:0x00255DE0; // type:object size:0x100 scope:global align:32
+hip_4_eye8_TA_tex_txt = .data:0x00255EE0; // type:object size:0x100 scope:global align:32
+hip_4_tmem_txt = .data:0x00255FE0; // type:object size:0x500 scope:global align:32
+hip_5_pal = .data:0x002564E0; // type:object size:0x20 scope:global align:32
+hip_5_eye1_TA_tex_txt = .data:0x00256500; // type:object size:0x100 scope:global align:32
+hip_5_eye2_TA_tex_txt = .data:0x00256600; // type:object size:0x100 scope:global align:32
+hip_5_eye3_TA_tex_txt = .data:0x00256700; // type:object size:0x100 scope:global align:32
+hip_5_eye4_TA_tex_txt = .data:0x00256800; // type:object size:0x100 scope:global align:32
+hip_5_eye5_TA_tex_txt = .data:0x00256900; // type:object size:0x100 scope:global align:32
+hip_5_eye6_TA_tex_txt = .data:0x00256A00; // type:object size:0x100 scope:global align:32
+hip_5_eye7_TA_tex_txt = .data:0x00256B00; // type:object size:0x100 scope:global align:32
+hip_5_eye8_TA_tex_txt = .data:0x00256C00; // type:object size:0x100 scope:global align:32
+hip_5_tmem_txt = .data:0x00256D00; // type:object size:0x500 scope:global align:32
+hip_6_pal = .data:0x00257200; // type:object size:0x20 scope:global align:32
+hip_6_eye1_TA_tex_txt = .data:0x00257220; // type:object size:0x100 scope:global align:32
+hip_6_eye2_TA_tex_txt = .data:0x00257320; // type:object size:0x100 scope:global align:32
+hip_6_eye3_TA_tex_txt = .data:0x00257420; // type:object size:0x100 scope:global align:32
+hip_6_eye4_TA_tex_txt = .data:0x00257520; // type:object size:0x100 scope:global align:32
+hip_6_eye5_TA_tex_txt = .data:0x00257620; // type:object size:0x100 scope:global align:32
+hip_6_eye6_TA_tex_txt = .data:0x00257720; // type:object size:0x100 scope:global align:32
+hip_6_eye7_TA_tex_txt = .data:0x00257820; // type:object size:0x100 scope:global align:32
+hip_6_eye8_TA_tex_txt = .data:0x00257920; // type:object size:0x100 scope:global align:32
+hip_6_tmem_txt = .data:0x00257A20; // type:object size:0x500 scope:global align:32
+hip_7_pal = .data:0x00257F20; // type:object size:0x20 scope:global align:32
+hip_7_eye1_TA_tex_txt = .data:0x00257F40; // type:object size:0x100 scope:global align:32
+hip_7_eye2_TA_tex_txt = .data:0x00258040; // type:object size:0x100 scope:global align:32
+hip_7_eye3_TA_tex_txt = .data:0x00258140; // type:object size:0x100 scope:global align:32
+hip_7_eye4_TA_tex_txt = .data:0x00258240; // type:object size:0x100 scope:global align:32
+hip_7_eye5_TA_tex_txt = .data:0x00258340; // type:object size:0x100 scope:global align:32
+hip_7_eye6_TA_tex_txt = .data:0x00258440; // type:object size:0x100 scope:global align:32
+hip_7_eye7_TA_tex_txt = .data:0x00258540; // type:object size:0x100 scope:global align:32
+hip_7_eye8_TA_tex_txt = .data:0x00258640; // type:object size:0x100 scope:global align:32
+hip_7_tmem_txt = .data:0x00258740; // type:object size:0x500 scope:global align:32
+hrs_1_v = .data:0x00258C40; // type:object size:0x1930 scope:global align:8
+head_hrs_model = .data:0x0025A570; // type:object size:0x230 scope:global align:8
+mouth_hrs_model = .data:0x0025A7A0; // type:object size:0x90 scope:global align:8
+Rarm2_hrs_model = .data:0x0025A830; // type:object size:0x88 scope:global align:8
+Rarm1_hrs_model = .data:0x0025A8B8; // type:object size:0x78 scope:global align:8
+Larm2_hrs_model = .data:0x0025A930; // type:object size:0x88 scope:global align:8
+Larm1_hrs_model = .data:0x0025A9B8; // type:object size:0x78 scope:global align:8
+chest_hrs_model = .data:0x0025AA30; // type:object size:0xB8 scope:global align:8
+tail1_hrs_model = .data:0x0025AAE8; // type:object size:0x60 scope:global align:8
+tail2_hrs_model = .data:0x0025AB48; // type:object size:0x90 scope:global align:8
+Rfoot2_hrs_model = .data:0x0025ABD8; // type:object size:0x80 scope:global align:8
+Rfoot1_hrs_model = .data:0x0025AC58; // type:object size:0xC0 scope:global align:8
+Lfoot2_hrs_model = .data:0x0025AD18; // type:object size:0x80 scope:global align:8
+Lfoot1_hrs_model = .data:0x0025AD98; // type:object size:0xC0 scope:global align:8
+base_hrs_model = .data:0x0025AE58; // type:object size:0x70 scope:global align:8
+cKF_je_r_hrs_1_tbl = .data:0x0025AEC8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_hrs_1 = .data:0x0025B000; // type:object size:0x8 scope:global align:4
+hrs_1_pal = .data:0x0025B020; // type:object size:0x20 scope:global align:32
+hrs_1_eye1_TA_tex_txt = .data:0x0025B040; // type:object size:0x100 scope:global align:32
+hrs_1_eye2_TA_tex_txt = .data:0x0025B140; // type:object size:0x100 scope:global align:32
+hrs_1_eye3_TA_tex_txt = .data:0x0025B240; // type:object size:0x100 scope:global align:32
+hrs_1_eye4_TA_tex_txt = .data:0x0025B340; // type:object size:0x100 scope:global align:32
+hrs_1_eye5_TA_tex_txt = .data:0x0025B440; // type:object size:0x100 scope:global align:32
+hrs_1_eye6_TA_tex_txt = .data:0x0025B540; // type:object size:0x100 scope:global align:32
+hrs_1_eye7_TA_tex_txt = .data:0x0025B640; // type:object size:0x100 scope:global align:32
+hrs_1_eye8_TA_tex_txt = .data:0x0025B740; // type:object size:0x100 scope:global align:32
+hrs_1_tmem_txt = .data:0x0025B840; // type:object size:0x580 scope:global align:32
+hrs_2_pal = .data:0x0025BDC0; // type:object size:0x20 scope:global align:32
+hrs_2_eye1_TA_tex_txt = .data:0x0025BDE0; // type:object size:0x100 scope:global align:32
+hrs_2_eye2_TA_tex_txt = .data:0x0025BEE0; // type:object size:0x100 scope:global align:32
+hrs_2_eye3_TA_tex_txt = .data:0x0025BFE0; // type:object size:0x100 scope:global align:32
+hrs_2_eye4_TA_tex_txt = .data:0x0025C0E0; // type:object size:0x100 scope:global align:32
+hrs_2_eye5_TA_tex_txt = .data:0x0025C1E0; // type:object size:0x100 scope:global align:32
+hrs_2_eye6_TA_tex_txt = .data:0x0025C2E0; // type:object size:0x100 scope:global align:32
+hrs_2_eye7_TA_tex_txt = .data:0x0025C3E0; // type:object size:0x100 scope:global align:32
+hrs_2_eye8_TA_tex_txt = .data:0x0025C4E0; // type:object size:0x100 scope:global align:32
+hrs_2_tmem_txt = .data:0x0025C5E0; // type:object size:0x580 scope:global align:32
+hrs_3_pal = .data:0x0025CB60; // type:object size:0x20 scope:global align:32
+hrs_3_eye1_TA_tex_txt = .data:0x0025CB80; // type:object size:0x100 scope:global align:32
+hrs_3_eye2_TA_tex_txt = .data:0x0025CC80; // type:object size:0x100 scope:global align:32
+hrs_3_eye3_TA_tex_txt = .data:0x0025CD80; // type:object size:0x100 scope:global align:32
+hrs_3_eye4_TA_tex_txt = .data:0x0025CE80; // type:object size:0x100 scope:global align:32
+hrs_3_eye5_TA_tex_txt = .data:0x0025CF80; // type:object size:0x100 scope:global align:32
+hrs_3_eye6_TA_tex_txt = .data:0x0025D080; // type:object size:0x100 scope:global align:32
+hrs_3_eye7_TA_tex_txt = .data:0x0025D180; // type:object size:0x100 scope:global align:32
+hrs_3_eye8_TA_tex_txt = .data:0x0025D280; // type:object size:0x100 scope:global align:32
+hrs_3_tmem_txt = .data:0x0025D380; // type:object size:0x580 scope:global align:32
+hrs_4_pal = .data:0x0025D900; // type:object size:0x20 scope:global align:32
+hrs_4_eye1_TA_tex_txt = .data:0x0025D920; // type:object size:0x100 scope:global align:32
+hrs_4_eye2_TA_tex_txt = .data:0x0025DA20; // type:object size:0x100 scope:global align:32
+hrs_4_eye3_TA_tex_txt = .data:0x0025DB20; // type:object size:0x100 scope:global align:32
+hrs_4_eye4_TA_tex_txt = .data:0x0025DC20; // type:object size:0x100 scope:global align:32
+hrs_4_eye5_TA_tex_txt = .data:0x0025DD20; // type:object size:0x100 scope:global align:32
+hrs_4_eye6_TA_tex_txt = .data:0x0025DE20; // type:object size:0x100 scope:global align:32
+hrs_4_eye7_TA_tex_txt = .data:0x0025DF20; // type:object size:0x100 scope:global align:32
+hrs_4_eye8_TA_tex_txt = .data:0x0025E020; // type:object size:0x100 scope:global align:32
+hrs_4_tmem_txt = .data:0x0025E120; // type:object size:0x580 scope:global align:32
+hrs_5_pal = .data:0x0025E6A0; // type:object size:0x20 scope:global align:32
+hrs_5_eye1_TA_tex_txt = .data:0x0025E6C0; // type:object size:0x100 scope:global align:32
+hrs_5_eye2_TA_tex_txt = .data:0x0025E7C0; // type:object size:0x100 scope:global align:32
+hrs_5_eye3_TA_tex_txt = .data:0x0025E8C0; // type:object size:0x100 scope:global align:32
+hrs_5_eye4_TA_tex_txt = .data:0x0025E9C0; // type:object size:0x100 scope:global align:32
+hrs_5_eye5_TA_tex_txt = .data:0x0025EAC0; // type:object size:0x100 scope:global align:32
+hrs_5_eye6_TA_tex_txt = .data:0x0025EBC0; // type:object size:0x100 scope:global align:32
+hrs_5_eye7_TA_tex_txt = .data:0x0025ECC0; // type:object size:0x100 scope:global align:32
+hrs_5_eye8_TA_tex_txt = .data:0x0025EDC0; // type:object size:0x100 scope:global align:32
+hrs_5_tmem_txt = .data:0x0025EEC0; // type:object size:0x580 scope:global align:32
+hrs_6_pal = .data:0x0025F440; // type:object size:0x20 scope:global align:32
+hrs_6_eye1_TA_tex_txt = .data:0x0025F460; // type:object size:0x100 scope:global align:32
+hrs_6_eye2_TA_tex_txt = .data:0x0025F560; // type:object size:0x100 scope:global align:32
+hrs_6_eye3_TA_tex_txt = .data:0x0025F660; // type:object size:0x100 scope:global align:32
+hrs_6_eye4_TA_tex_txt = .data:0x0025F760; // type:object size:0x100 scope:global align:32
+hrs_6_eye5_TA_tex_txt = .data:0x0025F860; // type:object size:0x100 scope:global align:32
+hrs_6_eye6_TA_tex_txt = .data:0x0025F960; // type:object size:0x100 scope:global align:32
+hrs_6_eye7_TA_tex_txt = .data:0x0025FA60; // type:object size:0x100 scope:global align:32
+hrs_6_eye8_TA_tex_txt = .data:0x0025FB60; // type:object size:0x100 scope:global align:32
+hrs_6_tmem_txt = .data:0x0025FC60; // type:object size:0x580 scope:global align:32
+hrs_7_pal = .data:0x002601E0; // type:object size:0x20 scope:global align:32
+hrs_7_eye1_TA_tex_txt = .data:0x00260200; // type:object size:0x100 scope:global align:32
+hrs_7_eye2_TA_tex_txt = .data:0x00260300; // type:object size:0x100 scope:global align:32
+hrs_7_eye3_TA_tex_txt = .data:0x00260400; // type:object size:0x100 scope:global align:32
+hrs_7_eye4_TA_tex_txt = .data:0x00260500; // type:object size:0x100 scope:global align:32
+hrs_7_eye5_TA_tex_txt = .data:0x00260600; // type:object size:0x100 scope:global align:32
+hrs_7_eye6_TA_tex_txt = .data:0x00260700; // type:object size:0x100 scope:global align:32
+hrs_7_eye7_TA_tex_txt = .data:0x00260800; // type:object size:0x100 scope:global align:32
+hrs_7_eye8_TA_tex_txt = .data:0x00260900; // type:object size:0x100 scope:global align:32
+hrs_7_tmem_txt = .data:0x00260A00; // type:object size:0x580 scope:global align:32
+hrs_8_pal = .data:0x00260F80; // type:object size:0x20 scope:global align:32
+hrs_8_eye1_TA_tex_txt = .data:0x00260FA0; // type:object size:0x100 scope:global align:32
+hrs_8_eye2_TA_tex_txt = .data:0x002610A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye3_TA_tex_txt = .data:0x002611A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye4_TA_tex_txt = .data:0x002612A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye5_TA_tex_txt = .data:0x002613A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye6_TA_tex_txt = .data:0x002614A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye7_TA_tex_txt = .data:0x002615A0; // type:object size:0x100 scope:global align:32
+hrs_8_eye8_TA_tex_txt = .data:0x002616A0; // type:object size:0x100 scope:global align:32
+hrs_8_tmem_txt = .data:0x002617A0; // type:object size:0x580 scope:global align:32
+act_m_house_goki_pal = .data:0x00261D20; // type:object size:0x20 scope:global align:32
+act_m_house_goki = .data:0x00261D40; // type:object size:0x200 scope:global align:32
+act_m_house_goki_v = .data:0x00261F40; // type:object size:0xC0 scope:global align:8
+act_m_house_goki1T_model = .data:0x00262000; // type:object size:0x60 scope:global align:8
+act_m_house_goki2T_model = .data:0x00262060; // type:object size:0x60 scope:global align:8
+act_m_abura_pal = .data:0x002620C0; // type:object size:0x20 scope:local align:32
+act_m_abura = .data:0x002620E0; // type:object size:0x200 scope:local align:32
+act_m_abura_v = .data:0x002622E0; // type:object size:0x160 scope:local align:8
+act_m_abura1_1T_model = .data:0x00262440; // type:object size:0x60 scope:global align:8
+act_m_abura1_2T_model = .data:0x002624A0; // type:object size:0x60 scope:global align:8
+act_m_abura2_2T_model = .data:0x00262500; // type:object size:0x60 scope:global align:8
+act_m_akiakane_pal = .data:0x00262560; // type:object size:0x20 scope:local align:32
+act_m_akiakane = .data:0x00262580; // type:object size:0x180 scope:local align:32
+act_m_akiakane_v = .data:0x00262700; // type:object size:0x120 scope:local align:8
+act_m_akiakane1_1T_model = .data:0x00262820; // type:object size:0x60 scope:global align:8
+act_m_akiakane1_2T_model = .data:0x00262880; // type:object size:0x60 scope:global align:8
+act_m_akiakane2_2T_model = .data:0x002628E0; // type:object size:0x60 scope:global align:8
+act_m_amenbo_pal = .data:0x00262940; // type:object size:0x20 scope:local align:32
+act_m_amenbo_tex = .data:0x00262960; // type:object size:0x180 scope:local align:32
+act_m_amenbo_v = .data:0x00262AE0; // type:object size:0xE0 scope:local align:8
+act_m_amenbo1T_model = .data:0x00262BC0; // type:object size:0x60 scope:global align:8
+act_m_amenbo2T_model = .data:0x00262C20; // type:object size:0x60 scope:global align:8
+act_m_ari_pal = .data:0x00262C80; // type:object size:0x20 scope:local align:32
+act_m_ari_tex = .data:0x00262CA0; // type:object size:0x100 scope:local align:32
+act_m_ari_v = .data:0x00262DA0; // type:object size:0x60 scope:local align:8
+act_m_ariT_model = .data:0x00262E00; // type:object size:0x60 scope:global align:8
+act_m_dango_pal = .data:0x00262E60; // type:object size:0x20 scope:local align:32
+act_m_dango_tex = .data:0x00262E80; // type:object size:0x180 scope:local align:32
+act_m_dango_v = .data:0x00263000; // type:object size:0xB0 scope:local align:8
+act_m_dango1T_model = .data:0x002630B0; // type:object size:0x60 scope:global align:8
+act_m_dango2T_model = .data:0x00263110; // type:object size:0x60 scope:global align:8
+act_m_danna_pal = .data:0x00263180; // type:object size:0x20 scope:local align:32
+act_m_danna = .data:0x002631A0; // type:object size:0x200 scope:local align:32
+act_m_danna_v = .data:0x002633A0; // type:object size:0xC0 scope:local align:8
+act_m_danna1T_model = .data:0x00263460; // type:object size:0x60 scope:global align:8
+act_m_danna2T_model = .data:0x002634C0; // type:object size:0x60 scope:global align:8
+act_m_genji_h1_txt = .data:0x00263520; // type:object size:0x200 scope:local align:32
+act_m_genji2_v = .data:0x00263720; // type:object size:0x100 scope:local align:8
+act_m_genji2_d_model = .data:0x00263820; // type:object size:0x58 scope:global align:8
+act_m_genji2_c_model = .data:0x00263878; // type:object size:0x58 scope:global align:8
+act_m_genji2_b_model = .data:0x002638D0; // type:object size:0x58 scope:global align:8
+act_m_genji2_a_model = .data:0x00263928; // type:object size:0x58 scope:global align:8
+act_m_ginyanma_pal = .data:0x00263980; // type:object size:0x20 scope:local align:32
+act_m_ginyanma = .data:0x002639A0; // type:object size:0x180 scope:local align:32
+act_m_ginyanma_v = .data:0x00263B20; // type:object size:0x120 scope:local align:8
+act_m_ginyanma1_1T_model = .data:0x00263C40; // type:object size:0x60 scope:global align:8
+act_m_ginyanma1_2T_model = .data:0x00263CA0; // type:object size:0x60 scope:global align:8
+act_m_ginyanma2_2T_model = .data:0x00263D00; // type:object size:0x60 scope:global align:8
+act_m_gomadara_pal = .data:0x00263D60; // type:object size:0x20 scope:local align:32
+act_m_gomadara = .data:0x00263D80; // type:object size:0x200 scope:local align:32
+act_m_gomadara_v = .data:0x00263F80; // type:object size:0xC0 scope:local align:8
+act_m_gomadara1T_model = .data:0x00264040; // type:object size:0x60 scope:global align:8
+act_m_gomadara2T_model = .data:0x002640A0; // type:object size:0x60 scope:global align:8
+act_m_higurashi_pal = .data:0x00264100; // type:object size:0x20 scope:local align:32
+act_m_higurashi = .data:0x00264120; // type:object size:0x200 scope:local align:32
+act_m_higurashi_v = .data:0x00264320; // type:object size:0x160 scope:local align:8
+act_m_higurashi1_1T_model = .data:0x00264480; // type:object size:0x60 scope:global align:8
+act_m_higurashi1_2T_model = .data:0x002644E0; // type:object size:0x60 scope:global align:8
+act_m_higurashi2_2T_model = .data:0x00264540; // type:object size:0x60 scope:global align:8
+act_m_hirata_pal = .data:0x002645A0; // type:object size:0x20 scope:local align:32
+act_m_hirata = .data:0x002645C0; // type:object size:0x200 scope:local align:32
+act_m_hirata_v = .data:0x002647C0; // type:object size:0xC0 scope:local align:8
+act_m_hirata1T_model = .data:0x00264880; // type:object size:0x60 scope:global align:8
+act_m_hirata2T_model = .data:0x002648E0; // type:object size:0x60 scope:global align:8
+act_m_hitodama_h2_txt = .data:0x00264940; // type:object size:0x200 scope:global align:32
+act_m_hitodama_h1_txt = .data:0x00264B40; // type:object size:0x200 scope:global align:32
+act_m_hitodama_v = .data:0x00264D40; // type:object size:0x80 scope:global align:8
+act_m_hitodama_b_model = .data:0x00264DC0; // type:object size:0x50 scope:global align:8
+act_m_hitodama_a_model = .data:0x00264E10; // type:object size:0x50 scope:global align:8
+act_m_ka_pal = .data:0x00264E60; // type:object size:0x20 scope:local align:32
+act_m_ka_tex = .data:0x00264E80; // type:object size:0x180 scope:local align:32
+act_m_ka_v = .data:0x00265000; // type:object size:0x180 scope:local align:8
+act_m_ka1T_model = .data:0x00265180; // type:object size:0x60 scope:global align:8
+act_m_ka2_1T_model = .data:0x002651E0; // type:object size:0x60 scope:global align:8
+act_m_ka2_2T_model = .data:0x00265240; // type:object size:0x60 scope:global align:8
+act_m_kabuto_pal = .data:0x002652A0; // type:object size:0x20 scope:local align:32
+act_m_kabuto = .data:0x002652C0; // type:object size:0x200 scope:local align:32
+act_m_kabuto_v = .data:0x002654C0; // type:object size:0xE0 scope:local align:8
+act_m_kabuto1T_model = .data:0x002655A0; // type:object size:0x60 scope:global align:8
+act_m_kabuto2T_model = .data:0x00265600; // type:object size:0x60 scope:global align:8
+act_m_kamakiri_pal = .data:0x00265660; // type:object size:0x20 scope:local align:32
+act_m_kamakiri = .data:0x00265680; // type:object size:0x200 scope:local align:32
+act_m_kamakiri_v = .data:0x00265880; // type:object size:0x120 scope:local align:8
+act_m_kamakiri1T_model = .data:0x002659A0; // type:object size:0x68 scope:global align:8
+act_m_kamakiri2_2T_model = .data:0x00265A08; // type:object size:0x58 scope:global align:8
+act_m_kanabun_pal = .data:0x00265A60; // type:object size:0x20 scope:local align:32
+act_m_kanabun = .data:0x00265A80; // type:object size:0x200 scope:local align:32
+act_m_kanabun_v = .data:0x00265C80; // type:object size:0xC0 scope:local align:8
+act_m_kanabun1T_model = .data:0x00265D40; // type:object size:0x60 scope:global align:8
+act_m_kanabun2T_model = .data:0x00265DA0; // type:object size:0x60 scope:global align:8
+act_m_kera_pal = .data:0x00265E00; // type:object size:0x20 scope:local align:32
+act_m_kera_tex = .data:0x00265E20; // type:object size:0x100 scope:local align:32
+act_m_kera_v = .data:0x00265F20; // type:object size:0x60 scope:local align:8
+act_m_keraT_model = .data:0x00265F80; // type:object size:0x60 scope:global align:8
+act_m_kiageha_pal = .data:0x00265FE0; // type:object size:0x20 scope:local align:32
+act_m_kiageha = .data:0x00266000; // type:object size:0x200 scope:local align:32
+act_m_kiageha_v = .data:0x00266200; // type:object size:0xC0 scope:local align:8
+act_m_kiageha1T_model = .data:0x002662C0; // type:object size:0x60 scope:global align:8
+act_m_kiageha2T_model = .data:0x00266320; // type:object size:0x60 scope:global align:8
+act_m_kirigirisu_pal = .data:0x00266380; // type:object size:0x20 scope:local align:32
+act_m_kirigirisu = .data:0x002663A0; // type:object size:0x200 scope:local align:32
+act_m_kirigirisu_v = .data:0x002665A0; // type:object size:0x130 scope:local align:8
+act_m_kirigirisu1T_model = .data:0x002666D0; // type:object size:0x68 scope:global align:8
+act_m_kirigirisu2_2T_model = .data:0x00266738; // type:object size:0x58 scope:global align:8
+act_m_koorogi_pal = .data:0x002667A0; // type:object size:0x20 scope:local align:32
+act_m_koorogi = .data:0x002667C0; // type:object size:0x180 scope:local align:32
+act_m_koorogi_v = .data:0x00266940; // type:object size:0xA0 scope:local align:8
+act_m_koorogi1T_model = .data:0x002669E0; // type:object size:0x60 scope:global align:8
+act_m_hachi_pal = .data:0x00266A40; // type:object size:0x20 scope:local align:32
+act_m_hachi = .data:0x00266A60; // type:object size:0x200 scope:local align:32
+act_m_hachi_v = .data:0x00266C60; // type:object size:0x160 scope:local align:8
+act_m_hachi1_1T_model = .data:0x00266DC0; // type:object size:0x60 scope:global align:8
+act_m_hachi1_2T_model = .data:0x00266E20; // type:object size:0x60 scope:global align:8
+act_m_hachi2_2T_model = .data:0x00266E80; // type:object size:0x60 scope:global align:8
+act_m_kumo_pal = .data:0x00266EE0; // type:object size:0x20 scope:local align:32
+act_m_kumo_tex = .data:0x00266F00; // type:object size:0x180 scope:local align:32
+act_m_kumo_v = .data:0x00267080; // type:object size:0x100 scope:local align:8
+act_m_kumo1_1T_model = .data:0x00267180; // type:object size:0x60 scope:global align:8
+act_m_kumo1_2T_model = .data:0x002671E0; // type:object size:0x60 scope:global align:8
+act_m_kumo2T_model = .data:0x00267240; // type:object size:0x58 scope:global align:8
+act_m_maimai_pal = .data:0x002672A0; // type:object size:0x20 scope:local align:32
+act_m_maimai_tex = .data:0x002672C0; // type:object size:0x200 scope:local align:32
+act_m_maimai_v = .data:0x002674C0; // type:object size:0x100 scope:local align:8
+act_m_maimaiT_model = .data:0x002675C0; // type:object size:0x78 scope:global align:8
+act_m_matumushi_pal = .data:0x00267640; // type:object size:0x20 scope:local align:32
+act_m_matumushi = .data:0x00267660; // type:object size:0x180 scope:local align:32
+act_m_matumushi_v = .data:0x002677E0; // type:object size:0xA0 scope:local align:8
+act_m_matumushi1T_model = .data:0x00267880; // type:object size:0x60 scope:global align:8
+act_m_minmin_pal = .data:0x002678E0; // type:object size:0x20 scope:local align:32
+act_m_minmin = .data:0x00267900; // type:object size:0x200 scope:local align:32
+act_m_minmin_v = .data:0x00267B00; // type:object size:0x160 scope:local align:8
+act_m_minmin1_1T_model = .data:0x00267C60; // type:object size:0x60 scope:global align:8
+act_m_minmin1_2T_model = .data:0x00267CC0; // type:object size:0x60 scope:global align:8
+act_m_minmin2_2T_model = .data:0x00267D20; // type:object size:0x60 scope:global align:8
+act_m_mino_pal = .data:0x00267D80; // type:object size:0x20 scope:local align:32
+act_m_mino_tex = .data:0x00267DA0; // type:object size:0x200 scope:local align:32
+act_m_mino_v = .data:0x00267FA0; // type:object size:0x130 scope:local align:8
+act_m_mino1_1T_model = .data:0x002680D0; // type:object size:0x60 scope:global align:8
+act_m_mino1_2T_model = .data:0x00268130; // type:object size:0x60 scope:global align:8
+act_m_mino2T_model = .data:0x00268190; // type:object size:0x58 scope:global align:8
+act_m_miyama_pal = .data:0x00268200; // type:object size:0x20 scope:local align:32
+act_m_miyama = .data:0x00268220; // type:object size:0x200 scope:local align:32
+act_m_miyama_v = .data:0x00268420; // type:object size:0xC0 scope:local align:8
+act_m_miyama1T_model = .data:0x002684E0; // type:object size:0x60 scope:global align:8
+act_m_miyama2T_model = .data:0x00268540; // type:object size:0x60 scope:global align:8
+act_m_monki_pal = .data:0x002685A0; // type:object size:0x20 scope:local align:32
+act_m_monki = .data:0x002685C0; // type:object size:0x80 scope:local align:32
+act_m_monki_v = .data:0x00268640; // type:object size:0xC0 scope:local align:8
+act_m_monki1T_model = .data:0x00268700; // type:object size:0x60 scope:global align:8
+act_m_monki2T_model = .data:0x00268760; // type:object size:0x60 scope:global align:8
+act_m_monshiro_pal = .data:0x002687C0; // type:object size:0x20 scope:local align:32
+act_m_monshiro = .data:0x002687E0; // type:object size:0x80 scope:local align:32
+act_m_monshiro_v = .data:0x00268860; // type:object size:0xC0 scope:local align:8
+act_m_monshiro1T_model = .data:0x00268920; // type:object size:0x60 scope:global align:8
+act_m_monshiro2T_model = .data:0x00268980; // type:object size:0x60 scope:global align:8
+act_m_nanahoshi_pal = .data:0x002689E0; // type:object size:0x20 scope:local align:32
+act_m_nanahoshi = .data:0x00268A00; // type:object size:0x100 scope:local align:32
+act_m_nanahoshi_v = .data:0x00268B00; // type:object size:0x1D0 scope:local align:8
+act_m_nanahoshi1T_model = .data:0x00268CD0; // type:object size:0x70 scope:global align:8
+act_m_nanahoshi2T_model = .data:0x00268D40; // type:object size:0x70 scope:global align:8
+act_m_nokogiri_pal = .data:0x00268DC0; // type:object size:0x20 scope:local align:32
+act_m_nokogiri = .data:0x00268DE0; // type:object size:0x200 scope:local align:32
+act_m_nokogiri_v = .data:0x00268FE0; // type:object size:0xC0 scope:local align:8
+act_m_nokogiri1T_model = .data:0x002690A0; // type:object size:0x60 scope:global align:8
+act_m_nokogiri2T_model = .data:0x00269100; // type:object size:0x60 scope:global align:8
+act_m_ohmurasaki_pal = .data:0x00269160; // type:object size:0x20 scope:local align:32
+act_m_ohmurasaki = .data:0x00269180; // type:object size:0x200 scope:local align:32
+act_m_ohmurasaki_v = .data:0x00269380; // type:object size:0xC0 scope:local align:8
+act_m_ohmurasaki1T_model = .data:0x00269440; // type:object size:0x60 scope:global align:8
+act_m_ohmurasaki2T_model = .data:0x002694A0; // type:object size:0x60 scope:global align:8
+act_m_okuwa_pal = .data:0x00269500; // type:object size:0x20 scope:local align:32
+act_m_okuwa = .data:0x00269520; // type:object size:0x200 scope:local align:32
+act_m_okuwa_v = .data:0x00269720; // type:object size:0xC0 scope:local align:8
+act_m_okuwa1T_model = .data:0x002697E0; // type:object size:0x60 scope:global align:8
+act_m_okuwa2T_model = .data:0x00269840; // type:object size:0x60 scope:global align:8
+act_m_oniyanma_pal = .data:0x002698A0; // type:object size:0x20 scope:local align:32
+act_m_oniyanma = .data:0x002698C0; // type:object size:0x180 scope:local align:32
+act_m_oniyanma_v = .data:0x00269A40; // type:object size:0x120 scope:local align:8
+act_m_oniyanma1_1T_model = .data:0x00269B60; // type:object size:0x60 scope:global align:8
+act_m_oniyanma1_2T_model = .data:0x00269BC0; // type:object size:0x60 scope:global align:8
+act_m_oniyanma2_2T_model = .data:0x00269C20; // type:object size:0x60 scope:global align:8
+act_m_shiokara_pal = .data:0x00269C80; // type:object size:0x20 scope:local align:32
+act_m_shiokara = .data:0x00269CA0; // type:object size:0x180 scope:local align:32
+act_m_shiokara_v = .data:0x00269E20; // type:object size:0x120 scope:local align:8
+act_m_shiokara1_1T_model = .data:0x00269F40; // type:object size:0x60 scope:global align:8
+act_m_shiokara1_2T_model = .data:0x00269FA0; // type:object size:0x60 scope:global align:8
+act_m_shiokara2_2T_model = .data:0x0026A000; // type:object size:0x60 scope:global align:8
+act_m_suzumushi_pal = .data:0x0026A060; // type:object size:0x20 scope:local align:32
+act_m_suzumushi = .data:0x0026A080; // type:object size:0x200 scope:local align:32
+act_m_suzumushi_v = .data:0x0026A280; // type:object size:0xA0 scope:local align:8
+act_m_suzumushi1T_model = .data:0x0026A320; // type:object size:0x60 scope:global align:8
+act_m_suzumushi2_2T_model = .data:0x0026A380; // type:object size:0x58 scope:global align:8
+act_m_syouryou_pal = .data:0x0026A3E0; // type:object size:0x20 scope:local align:32
+act_m_syouryou = .data:0x0026A400; // type:object size:0x200 scope:local align:32
+act_m_syouryou_v = .data:0x0026A600; // type:object size:0x110 scope:local align:8
+act_m_syouryou1T_model = .data:0x0026A710; // type:object size:0x68 scope:global align:8
+act_m_syouryou2_2T_model = .data:0x0026A778; // type:object size:0x58 scope:global align:8
+act_m_tamamushi_pal = .data:0x0026A7E0; // type:object size:0x20 scope:local align:32
+act_m_tamamushi = .data:0x0026A800; // type:object size:0x200 scope:local align:32
+act_m_tamamushi_v = .data:0x0026AA00; // type:object size:0xC0 scope:local align:8
+act_m_tamamushi1T_model = .data:0x0026AAC0; // type:object size:0x60 scope:global align:8
+act_m_tamamushi2T_model = .data:0x0026AB20; // type:object size:0x60 scope:global align:8
+act_m_tentou_pal = .data:0x0026AB80; // type:object size:0x20 scope:local align:32
+act_m_tentou = .data:0x0026ABA0; // type:object size:0x100 scope:local align:32
+act_m_tentou_v = .data:0x0026ACA0; // type:object size:0x1D0 scope:local align:8
+act_m_tentou1T_model = .data:0x0026AE70; // type:object size:0x70 scope:global align:8
+act_m_tentou2T_model = .data:0x0026AEE0; // type:object size:0x70 scope:global align:8
+act_m_tonosama_pal = .data:0x0026AF60; // type:object size:0x20 scope:local align:32
+act_m_tonosama = .data:0x0026AF80; // type:object size:0x200 scope:local align:32
+act_m_tonosama_v = .data:0x0026B180; // type:object size:0x120 scope:local align:8
+act_m_tonosama1T_model = .data:0x0026B2A0; // type:object size:0x68 scope:global align:8
+act_m_tonosama2_2T_model = .data:0x0026B308; // type:object size:0x58 scope:global align:8
+act_m_tukutuku_pal = .data:0x0026B360; // type:object size:0x20 scope:local align:32
+act_m_tukutuku = .data:0x0026B380; // type:object size:0x200 scope:local align:32
+act_m_tukutuku_v = .data:0x0026B580; // type:object size:0x160 scope:local align:8
+act_m_tukutuku1_1T_model = .data:0x0026B6E0; // type:object size:0x60 scope:global align:8
+act_m_tukutuku1_2T_model = .data:0x0026B740; // type:object size:0x60 scope:global align:8
+act_m_tukutuku2_2T_model = .data:0x0026B7A0; // type:object size:0x60 scope:global align:8
+plj_1_v = .data:0x0026B800; // type:object size:0x16A0 scope:global align:8
+head_plj_model = .data:0x0026CEA0; // type:object size:0x150 scope:global align:8
+Rarm2_plj_model = .data:0x0026CFF0; // type:object size:0x80 scope:global align:8
+Rarm1_plj_model = .data:0x0026D070; // type:object size:0x88 scope:global align:8
+Larm2_plj_model = .data:0x0026D0F8; // type:object size:0x80 scope:global align:8
+Larm1_plj_model = .data:0x0026D178; // type:object size:0x88 scope:global align:8
+chest_plj_model = .data:0x0026D200; // type:object size:0x140 scope:global align:8
+tail1_plj_model = .data:0x0026D340; // type:object size:0x58 scope:global align:8
+tail2_plj_model = .data:0x0026D398; // type:object size:0xA0 scope:global align:8
+Rfoot2_plj_model = .data:0x0026D438; // type:object size:0x88 scope:global align:8
+Rfoot1_plj_model = .data:0x0026D4C0; // type:object size:0x80 scope:global align:8
+Lfoot2_plj_model = .data:0x0026D540; // type:object size:0x88 scope:global align:8
+Lfoot1_plj_model = .data:0x0026D5C8; // type:object size:0x80 scope:global align:8
+base_plj_model = .data:0x0026D648; // type:object size:0x78 scope:global align:8
+cKF_je_r_plj_1_tbl = .data:0x0026D6C0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_plj_1 = .data:0x0026D7F8; // type:object size:0x8 scope:global align:4
+plj_1_pal = .data:0x0026D800; // type:object size:0x20 scope:global align:32
+plj_1_eye1_TA_tex_txt = .data:0x0026D820; // type:object size:0x100 scope:global align:32
+plj_1_eye2_TA_tex_txt = .data:0x0026D920; // type:object size:0x100 scope:global align:32
+plj_1_eye3_TA_tex_txt = .data:0x0026DA20; // type:object size:0x100 scope:global align:32
+plj_1_eye4_TA_tex_txt = .data:0x0026DB20; // type:object size:0x100 scope:global align:32
+plj_1_eye5_TA_tex_txt = .data:0x0026DC20; // type:object size:0x100 scope:global align:32
+plj_1_eye6_TA_tex_txt = .data:0x0026DD20; // type:object size:0x100 scope:global align:32
+plj_1_eye7_TA_tex_txt = .data:0x0026DE20; // type:object size:0x100 scope:global align:32
+plj_1_eye8_TA_tex_txt = .data:0x0026DF20; // type:object size:0x100 scope:global align:32
+plj_1_mouth1_TA_tex_txt = .data:0x0026E020; // type:object size:0x100 scope:global align:32
+plj_1_mouth2_TA_tex_txt = .data:0x0026E120; // type:object size:0x100 scope:global align:32
+plj_1_mouth3_TA_tex_txt = .data:0x0026E220; // type:object size:0x100 scope:global align:32
+plj_1_mouth4_TA_tex_txt = .data:0x0026E320; // type:object size:0x100 scope:global align:32
+plj_1_mouth5_TA_tex_txt = .data:0x0026E420; // type:object size:0x100 scope:global align:32
+plj_1_mouth6_TA_tex_txt = .data:0x0026E520; // type:object size:0x100 scope:global align:32
+plj_1_tmem_txt = .data:0x0026E620; // type:object size:0x680 scope:global align:32
+xsq_1_v = .data:0x0026ECA0; // type:object size:0x16F0 scope:global align:8
+head_xsq_model = .data:0x00270390; // type:object size:0x198 scope:global align:8
+Rarm2_xsq_model = .data:0x00270528; // type:object size:0x88 scope:global align:8
+Rarm1_xsq_model = .data:0x002705B0; // type:object size:0x78 scope:global align:8
+Larm2_xsq_model = .data:0x00270628; // type:object size:0x88 scope:global align:8
+Larm1_xsq_model = .data:0x002706B0; // type:object size:0x78 scope:global align:8
+chest_xsq_model = .data:0x00270728; // type:object size:0xA8 scope:global align:8
+tail1_xsq_model = .data:0x002707D0; // type:object size:0x70 scope:global align:8
+tail2_xsq_model = .data:0x00270840; // type:object size:0xD0 scope:global align:8
+Rfoot2_xsq_model = .data:0x00270910; // type:object size:0x80 scope:global align:8
+Rfoot1_xsq_model = .data:0x00270990; // type:object size:0xC0 scope:global align:8
+Lfoot2_xsq_model = .data:0x00270A50; // type:object size:0x80 scope:global align:8
+Lfoot1_xsq_model = .data:0x00270AD0; // type:object size:0xC0 scope:global align:8
+base_xsq_model = .data:0x00270B90; // type:object size:0x70 scope:global align:8
+cKF_je_r_xsq_1_tbl = .data:0x00270C00; // type:object size:0x138 scope:global align:4
+cKF_bs_r_xsq_1 = .data:0x00270D38; // type:object size:0x8 scope:global align:4
+xsq_1_pal = .data:0x00270D40; // type:object size:0x20 scope:global align:32
+xsq_1_eye1_TA_tex_txt = .data:0x00270D60; // type:object size:0x100 scope:global align:32
+xsq_1_eye2_TA_tex_txt = .data:0x00270E60; // type:object size:0x100 scope:global align:32
+xsq_1_eye3_TA_tex_txt = .data:0x00270F60; // type:object size:0x100 scope:global align:32
+xsq_1_eye4_TA_tex_txt = .data:0x00271060; // type:object size:0x100 scope:global align:32
+xsq_1_eye5_TA_tex_txt = .data:0x00271160; // type:object size:0x100 scope:global align:32
+xsq_1_eye6_TA_tex_txt = .data:0x00271260; // type:object size:0x100 scope:global align:32
+xsq_1_eye7_TA_tex_txt = .data:0x00271360; // type:object size:0x100 scope:global align:32
+xsq_1_eye8_TA_tex_txt = .data:0x00271460; // type:object size:0x100 scope:global align:32
+xsq_1_mouth1_TA_tex_txt = .data:0x00271560; // type:object size:0x100 scope:global align:32
+xsq_1_mouth2_TA_tex_txt = .data:0x00271660; // type:object size:0x100 scope:global align:32
+xsq_1_mouth3_TA_tex_txt = .data:0x00271760; // type:object size:0x100 scope:global align:32
+xsq_1_mouth4_TA_tex_txt = .data:0x00271860; // type:object size:0x100 scope:global align:32
+xsq_1_mouth5_TA_tex_txt = .data:0x00271960; // type:object size:0x100 scope:global align:32
+xsq_1_mouth6_TA_tex_txt = .data:0x00271A60; // type:object size:0x100 scope:global align:32
+xsq_1_tmem_txt = .data:0x00271B60; // type:object size:0x600 scope:global align:32
+itemName_paper = .data:0x00272160; // type:object size:0x1000 scope:global align:4 data:string
+itemName_money = .data:0x00273160; // type:object size:0x40 scope:global align:4 data:string
+itemName_tool = .data:0x002731A0; // type:object size:0x5C0 scope:global align:4 data:string
+itemName_fish = .data:0x00273760; // type:object size:0x280 scope:global align:4 data:string
+itemName_cloth = .data:0x002739E0; // type:object size:0xFF0 scope:global align:4 data:string
+itemName_etc = .data:0x002749D0; // type:object size:0x310 scope:global align:4
+itemName_carpet = .data:0x00274CE0; // type:object size:0x430 scope:global align:4 data:string
+itemName_wall = .data:0x00275110; // type:object size:0x430 scope:global align:4 data:string
+itemName_fruit = .data:0x00275540; // type:object size:0x80 scope:global align:4 data:string
+itemName_plant = .data:0x002755C0; // type:object size:0xB0 scope:global align:4 data:string
+itemName_minidisk = .data:0x00275670; // type:object size:0x370 scope:global align:4
+itemName_dummy = .data:0x002759E0; // type:object size:0x100 scope:global align:4 data:string
+itemName_ticket = .data:0x00275AE0; // type:object size:0x600 scope:global align:4 data:string
+itemName_insect = .data:0x002760E0; // type:object size:0x2D0 scope:global align:4 data:string
+itemName_hukubukuro = .data:0x002763B0; // type:object size:0x20 scope:global align:4 data:string
+itemName_kabu = .data:0x002763D0; // type:object size:0x40 scope:global align:4 data:string
+ftrName_table = .data:0x00276410; // type:object size:0x4000 scope:global align:4
+ftrName2_table = .data:0x0027A410; // type:object size:0xF20 scope:global align:4 data:string
+kamakura_info = .data:0x0027B330; // type:object size:0x38 scope:global align:4
+KAMAKURA_player_data = .data:0x0027B368; // type:object size:0x10 scope:global align:4
+KAMAKURA_ctrl_actor_data = .data:0x0027B378; // type:object size:0x16 scope:global align:4
+KAMAKURA_door_data = .data:0x0027B390; // type:object size:0x14 scope:global align:4
+boa_1_v = .data:0x0027B3A8; // type:object size:0x1C50 scope:global align:8
+head_boa_model = .data:0x0027CFF8; // type:object size:0x1D8 scope:global align:8
+mouth_boa_model = .data:0x0027D1D0; // type:object size:0x88 scope:global align:8
+Rarm2_boa_model = .data:0x0027D258; // type:object size:0x88 scope:global align:8
+Rarm1_boa_model = .data:0x0027D2E0; // type:object size:0x78 scope:global align:8
+Larm2_boa_model = .data:0x0027D358; // type:object size:0x88 scope:global align:8
+Larm1_boa_model = .data:0x0027D3E0; // type:object size:0x78 scope:global align:8
+chest_boa_model = .data:0x0027D458; // type:object size:0x1F8 scope:global align:8
+Rfoot2_boa_model = .data:0x0027D650; // type:object size:0xA8 scope:global align:8
+Rfoot1_boa_model = .data:0x0027D6F8; // type:object size:0x80 scope:global align:8
+Lfoot2_boa_model = .data:0x0027D778; // type:object size:0x98 scope:global align:8
+Lfoot1_boa_model = .data:0x0027D810; // type:object size:0x80 scope:global align:8
+base_boa_model = .data:0x0027D890; // type:object size:0x78 scope:global align:8
+cKF_je_r_boa_1_tbl = .data:0x0027D908; // type:object size:0x138 scope:global align:4
+cKF_bs_r_boa_1 = .data:0x0027DA40; // type:object size:0x8 scope:global align:4
+boa_1_pal = .data:0x0027DA60; // type:object size:0x20 scope:global align:32
+boa_1_eye1_TA_tex_txt = .data:0x0027DA80; // type:object size:0x100 scope:global align:32
+boa_1_eye2_TA_tex_txt = .data:0x0027DB80; // type:object size:0x100 scope:global align:32
+boa_1_eye3_TA_tex_txt = .data:0x0027DC80; // type:object size:0x100 scope:global align:32
+boa_1_eye4_TA_tex_txt = .data:0x0027DD80; // type:object size:0x100 scope:global align:32
+boa_1_eye5_TA_tex_txt = .data:0x0027DE80; // type:object size:0x100 scope:global align:32
+boa_1_eye6_TA_tex_txt = .data:0x0027DF80; // type:object size:0x100 scope:global align:32
+boa_1_eye7_TA_tex_txt = .data:0x0027E080; // type:object size:0x100 scope:global align:32
+boa_1_eye8_TA_tex_txt = .data:0x0027E180; // type:object size:0x100 scope:global align:32
+boa_1_tmem_txt = .data:0x0027E280; // type:object size:0x5C0 scope:global align:32
+kgr_1_v = .data:0x0027E840; // type:object size:0x1AF0 scope:global align:8
+head_kgr_model = .data:0x00280330; // type:object size:0x160 scope:global align:8
+mouth_kgr_model = .data:0x00280490; // type:object size:0x80 scope:global align:8
+Rarm2_kgr_model = .data:0x00280510; // type:object size:0x88 scope:global align:8
+Rarm1_kgr_model = .data:0x00280598; // type:object size:0x78 scope:global align:8
+Larm2_kgr_model = .data:0x00280610; // type:object size:0x88 scope:global align:8
+Larm1_kgr_model = .data:0x00280698; // type:object size:0x78 scope:global align:8
+chest_kgr_model = .data:0x00280710; // type:object size:0x188 scope:global align:8
+tail1_kgr_model = .data:0x00280898; // type:object size:0x88 scope:global align:8
+Rfoot3_kgr_model = .data:0x00280920; // type:object size:0x80 scope:global align:8
+Rfoot2_kgr_model = .data:0x002809A0; // type:object size:0x80 scope:global align:8
+Rfoot1_kgr_model = .data:0x00280A20; // type:object size:0xC8 scope:global align:8
+Lfoot3_kgr_model = .data:0x00280AE8; // type:object size:0x80 scope:global align:8
+Lfoot2_kgr_model = .data:0x00280B68; // type:object size:0x80 scope:global align:8
+Lfoot1_kgr_model = .data:0x00280BE8; // type:object size:0xC8 scope:global align:8
+base_kgr_model = .data:0x00280CB0; // type:object size:0xD8 scope:global align:8
+cKF_je_r_kgr_1_tbl = .data:0x00280D88; // type:object size:0x138 scope:global align:4
+cKF_bs_r_kgr_1 = .data:0x00280EC0; // type:object size:0x8 scope:global align:4
+kgr_1_pal = .data:0x00280EE0; // type:object size:0x20 scope:global align:32
+kgr_1_eye1_TA_tex_txt = .data:0x00280F00; // type:object size:0x100 scope:global align:32
+kgr_1_eye2_TA_tex_txt = .data:0x00281000; // type:object size:0x100 scope:global align:32
+kgr_1_eye3_TA_tex_txt = .data:0x00281100; // type:object size:0x100 scope:global align:32
+kgr_1_eye4_TA_tex_txt = .data:0x00281200; // type:object size:0x100 scope:global align:32
+kgr_1_eye5_TA_tex_txt = .data:0x00281300; // type:object size:0x100 scope:global align:32
+kgr_1_eye6_TA_tex_txt = .data:0x00281400; // type:object size:0x100 scope:global align:32
+kgr_1_eye7_TA_tex_txt = .data:0x00281500; // type:object size:0x100 scope:global align:32
+kgr_1_eye8_TA_tex_txt = .data:0x00281600; // type:object size:0x100 scope:global align:32
+kgr_1_tmem_txt = .data:0x00281700; // type:object size:0x440 scope:global align:32
+kgr_2_pal = .data:0x00281B40; // type:object size:0x20 scope:global align:32
+kgr_2_eye1_TA_tex_txt = .data:0x00281B60; // type:object size:0x100 scope:global align:32
+kgr_2_eye2_TA_tex_txt = .data:0x00281C60; // type:object size:0x100 scope:global align:32
+kgr_2_eye3_TA_tex_txt = .data:0x00281D60; // type:object size:0x100 scope:global align:32
+kgr_2_eye4_TA_tex_txt = .data:0x00281E60; // type:object size:0x100 scope:global align:32
+kgr_2_eye5_TA_tex_txt = .data:0x00281F60; // type:object size:0x100 scope:global align:32
+kgr_2_eye6_TA_tex_txt = .data:0x00282060; // type:object size:0x100 scope:global align:32
+kgr_2_eye7_TA_tex_txt = .data:0x00282160; // type:object size:0x100 scope:global align:32
+kgr_2_eye8_TA_tex_txt = .data:0x00282260; // type:object size:0x100 scope:global align:32
+kgr_2_tmem_txt = .data:0x00282360; // type:object size:0x440 scope:global align:32
+kgr_3_pal = .data:0x002827A0; // type:object size:0x20 scope:global align:32
+kgr_3_eye1_TA_tex_txt = .data:0x002827C0; // type:object size:0x100 scope:global align:32
+kgr_3_eye2_TA_tex_txt = .data:0x002828C0; // type:object size:0x100 scope:global align:32
+kgr_3_eye3_TA_tex_txt = .data:0x002829C0; // type:object size:0x100 scope:global align:32
+kgr_3_eye4_TA_tex_txt = .data:0x00282AC0; // type:object size:0x100 scope:global align:32
+kgr_3_eye5_TA_tex_txt = .data:0x00282BC0; // type:object size:0x100 scope:global align:32
+kgr_3_eye6_TA_tex_txt = .data:0x00282CC0; // type:object size:0x100 scope:global align:32
+kgr_3_eye7_TA_tex_txt = .data:0x00282DC0; // type:object size:0x100 scope:global align:32
+kgr_3_eye8_TA_tex_txt = .data:0x00282EC0; // type:object size:0x100 scope:global align:32
+kgr_3_tmem_txt = .data:0x00282FC0; // type:object size:0x440 scope:global align:32
+kgr_4_pal = .data:0x00283400; // type:object size:0x20 scope:global align:32
+kgr_4_eye1_TA_tex_txt = .data:0x00283420; // type:object size:0x100 scope:global align:32
+kgr_4_eye2_TA_tex_txt = .data:0x00283520; // type:object size:0x100 scope:global align:32
+kgr_4_eye3_TA_tex_txt = .data:0x00283620; // type:object size:0x100 scope:global align:32
+kgr_4_eye4_TA_tex_txt = .data:0x00283720; // type:object size:0x100 scope:global align:32
+kgr_4_eye5_TA_tex_txt = .data:0x00283820; // type:object size:0x100 scope:global align:32
+kgr_4_eye6_TA_tex_txt = .data:0x00283920; // type:object size:0x100 scope:global align:32
+kgr_4_eye7_TA_tex_txt = .data:0x00283A20; // type:object size:0x100 scope:global align:32
+kgr_4_eye8_TA_tex_txt = .data:0x00283B20; // type:object size:0x100 scope:global align:32
+kgr_4_tmem_txt = .data:0x00283C20; // type:object size:0x440 scope:global align:32
+kgr_5_pal = .data:0x00284060; // type:object size:0x20 scope:global align:32
+kgr_5_eye1_TA_tex_txt = .data:0x00284080; // type:object size:0x100 scope:global align:32
+kgr_5_eye2_TA_tex_txt = .data:0x00284180; // type:object size:0x100 scope:global align:32
+kgr_5_eye3_TA_tex_txt = .data:0x00284280; // type:object size:0x100 scope:global align:32
+kgr_5_eye4_TA_tex_txt = .data:0x00284380; // type:object size:0x100 scope:global align:32
+kgr_5_eye5_TA_tex_txt = .data:0x00284480; // type:object size:0x100 scope:global align:32
+kgr_5_eye6_TA_tex_txt = .data:0x00284580; // type:object size:0x100 scope:global align:32
+kgr_5_eye7_TA_tex_txt = .data:0x00284680; // type:object size:0x100 scope:global align:32
+kgr_5_eye8_TA_tex_txt = .data:0x00284780; // type:object size:0x100 scope:global align:32
+kgr_5_tmem_txt = .data:0x00284880; // type:object size:0x440 scope:global align:32
+kgr_6_pal = .data:0x00284CC0; // type:object size:0x20 scope:global align:32
+kgr_6_eye1_TA_tex_txt = .data:0x00284CE0; // type:object size:0x100 scope:global align:32
+kgr_6_eye2_TA_tex_txt = .data:0x00284DE0; // type:object size:0x100 scope:global align:32
+kgr_6_eye3_TA_tex_txt = .data:0x00284EE0; // type:object size:0x100 scope:global align:32
+kgr_6_eye4_TA_tex_txt = .data:0x00284FE0; // type:object size:0x100 scope:global align:32
+kgr_6_eye5_TA_tex_txt = .data:0x002850E0; // type:object size:0x100 scope:global align:32
+kgr_6_eye6_TA_tex_txt = .data:0x002851E0; // type:object size:0x100 scope:global align:32
+kgr_6_eye7_TA_tex_txt = .data:0x002852E0; // type:object size:0x100 scope:global align:32
+kgr_6_eye8_TA_tex_txt = .data:0x002853E0; // type:object size:0x100 scope:global align:32
+kgr_6_tmem_txt = .data:0x002854E0; // type:object size:0x440 scope:global align:32
+fob_1_v = .data:0x00285920; // type:object size:0x1A30 scope:global align:8
+head_fob_model = .data:0x00287350; // type:object size:0x1B8 scope:global align:8
+mouth_fob_model = .data:0x00287508; // type:object size:0xA0 scope:global align:8
+Rarm2_fob_model = .data:0x002875A8; // type:object size:0x90 scope:global align:8
+Rarm1_fob_model = .data:0x00287638; // type:object size:0xA0 scope:global align:8
+Larm2_fob_model = .data:0x002876D8; // type:object size:0x90 scope:global align:8
+Larm1_fob_model = .data:0x00287768; // type:object size:0x90 scope:global align:8
+chest_fob_model = .data:0x002877F8; // type:object size:0x130 scope:global align:8
+tail1_fob_model = .data:0x00287928; // type:object size:0x80 scope:global align:8
+tail2_fob_model = .data:0x002879A8; // type:object size:0xC0 scope:global align:8
+Rfoot2_fob_model = .data:0x00287A68; // type:object size:0x88 scope:global align:8
+Rfoot1_fob_model = .data:0x00287AF0; // type:object size:0x58 scope:global align:8
+Lfoot2_fob_model = .data:0x00287B48; // type:object size:0x88 scope:global align:8
+Lfoot1_fob_model = .data:0x00287BD0; // type:object size:0x58 scope:global align:8
+base_fob_model = .data:0x00287C28; // type:object size:0xF8 scope:global align:8
+cKF_je_r_fob_1_tbl = .data:0x00287D20; // type:object size:0x138 scope:global align:4
+cKF_bs_r_fob_1 = .data:0x00287E58; // type:object size:0x8 scope:global align:4
+fob_1_pal = .data:0x00287E60; // type:object size:0x20 scope:global align:32
+fob_1_eye1_TA_tex_txt = .data:0x00287E80; // type:object size:0x100 scope:global align:32
+fob_1_eye2_TA_tex_txt = .data:0x00287F80; // type:object size:0x100 scope:global align:32
+fob_1_eye3_TA_tex_txt = .data:0x00288080; // type:object size:0x100 scope:global align:32
+fob_1_eye4_TA_tex_txt = .data:0x00288180; // type:object size:0x100 scope:global align:32
+fob_1_eye5_TA_tex_txt = .data:0x00288280; // type:object size:0x100 scope:global align:32
+fob_1_eye6_TA_tex_txt = .data:0x00288380; // type:object size:0x100 scope:global align:32
+fob_1_eye7_TA_tex_txt = .data:0x00288480; // type:object size:0x100 scope:global align:32
+fob_1_eye8_TA_tex_txt = .data:0x00288580; // type:object size:0x100 scope:global align:32
+fob_1_tmem_txt = .data:0x00288680; // type:object size:0x740 scope:global align:32
+kal_1_v = .data:0x00288DC0; // type:object size:0x1690 scope:global align:8
+head_kal_model = .data:0x0028A450; // type:object size:0x1B0 scope:global align:8
+Rarm2_kal_model = .data:0x0028A600; // type:object size:0x88 scope:global align:8
+Rarm1_kal_model = .data:0x0028A688; // type:object size:0x78 scope:global align:8
+Larm2_kal_model = .data:0x0028A700; // type:object size:0x88 scope:global align:8
+Larm1_kal_model = .data:0x0028A788; // type:object size:0x78 scope:global align:8
+chest_kal_model = .data:0x0028A800; // type:object size:0xA8 scope:global align:8
+Rfoot2_kal_model = .data:0x0028A8A8; // type:object size:0x80 scope:global align:8
+Rfoot1_kal_model = .data:0x0028A928; // type:object size:0xC0 scope:global align:8
+Lfoot2_kal_model = .data:0x0028A9E8; // type:object size:0x80 scope:global align:8
+Lfoot1_kal_model = .data:0x0028AA68; // type:object size:0xC0 scope:global align:8
+base_kal_model = .data:0x0028AB28; // type:object size:0x70 scope:global align:8
+cKF_je_r_kal_1_tbl = .data:0x0028AB98; // type:object size:0x138 scope:global align:4
+cKF_bs_r_kal_1 = .data:0x0028ACD0; // type:object size:0x8 scope:global align:4
+kal_1_pal = .data:0x0028ACE0; // type:object size:0x20 scope:global align:32
+kal_1_eye1_TA_tex_txt = .data:0x0028AD00; // type:object size:0x100 scope:global align:32
+kal_1_eye2_TA_tex_txt = .data:0x0028AE00; // type:object size:0x100 scope:global align:32
+kal_1_eye3_TA_tex_txt = .data:0x0028AF00; // type:object size:0x100 scope:global align:32
+kal_1_eye4_TA_tex_txt = .data:0x0028B000; // type:object size:0x100 scope:global align:32
+kal_1_eye5_TA_tex_txt = .data:0x0028B100; // type:object size:0x100 scope:global align:32
+kal_1_eye6_TA_tex_txt = .data:0x0028B200; // type:object size:0x100 scope:global align:32
+kal_1_eye7_TA_tex_txt = .data:0x0028B300; // type:object size:0x100 scope:global align:32
+kal_1_eye8_TA_tex_txt = .data:0x0028B400; // type:object size:0x100 scope:global align:32
+kal_1_mouth1_TA_tex_txt = .data:0x0028B500; // type:object size:0x100 scope:global align:32
+kal_1_mouth2_TA_tex_txt = .data:0x0028B600; // type:object size:0x100 scope:global align:32
+kal_1_mouth3_TA_tex_txt = .data:0x0028B700; // type:object size:0x100 scope:global align:32
+kal_1_mouth4_TA_tex_txt = .data:0x0028B800; // type:object size:0x100 scope:global align:32
+kal_1_mouth5_TA_tex_txt = .data:0x0028B900; // type:object size:0x100 scope:global align:32
+kal_1_mouth6_TA_tex_txt = .data:0x0028BA00; // type:object size:0x100 scope:global align:32
+kal_1_tmem_txt = .data:0x0028BB00; // type:object size:0x480 scope:global align:32
+kal_2_pal = .data:0x0028BF80; // type:object size:0x20 scope:global align:32
+kal_2_eye1_TA_tex_txt = .data:0x0028BFA0; // type:object size:0x100 scope:global align:32
+kal_2_eye2_TA_tex_txt = .data:0x0028C0A0; // type:object size:0x100 scope:global align:32
+kal_2_eye3_TA_tex_txt = .data:0x0028C1A0; // type:object size:0x100 scope:global align:32
+kal_2_eye4_TA_tex_txt = .data:0x0028C2A0; // type:object size:0x100 scope:global align:32
+kal_2_eye5_TA_tex_txt = .data:0x0028C3A0; // type:object size:0x100 scope:global align:32
+kal_2_eye6_TA_tex_txt = .data:0x0028C4A0; // type:object size:0x100 scope:global align:32
+kal_2_eye7_TA_tex_txt = .data:0x0028C5A0; // type:object size:0x100 scope:global align:32
+kal_2_eye8_TA_tex_txt = .data:0x0028C6A0; // type:object size:0x100 scope:global align:32
+kal_2_mouth1_TA_tex_txt = .data:0x0028C7A0; // type:object size:0x100 scope:global align:32
+kal_2_mouth2_TA_tex_txt = .data:0x0028C8A0; // type:object size:0x100 scope:global align:32
+kal_2_mouth3_TA_tex_txt = .data:0x0028C9A0; // type:object size:0x100 scope:global align:32
+kal_2_mouth4_TA_tex_txt = .data:0x0028CAA0; // type:object size:0x100 scope:global align:32
+kal_2_mouth5_TA_tex_txt = .data:0x0028CBA0; // type:object size:0x100 scope:global align:32
+kal_2_mouth6_TA_tex_txt = .data:0x0028CCA0; // type:object size:0x100 scope:global align:32
+kal_2_tmem_txt = .data:0x0028CDA0; // type:object size:0x480 scope:global align:32
+kal_3_pal = .data:0x0028D220; // type:object size:0x20 scope:global align:32
+kal_3_eye1_TA_tex_txt = .data:0x0028D240; // type:object size:0x100 scope:global align:32
+kal_3_eye2_TA_tex_txt = .data:0x0028D340; // type:object size:0x100 scope:global align:32
+kal_3_eye3_TA_tex_txt = .data:0x0028D440; // type:object size:0x100 scope:global align:32
+kal_3_eye4_TA_tex_txt = .data:0x0028D540; // type:object size:0x100 scope:global align:32
+kal_3_eye5_TA_tex_txt = .data:0x0028D640; // type:object size:0x100 scope:global align:32
+kal_3_eye6_TA_tex_txt = .data:0x0028D740; // type:object size:0x100 scope:global align:32
+kal_3_eye7_TA_tex_txt = .data:0x0028D840; // type:object size:0x100 scope:global align:32
+kal_3_eye8_TA_tex_txt = .data:0x0028D940; // type:object size:0x100 scope:global align:32
+kal_3_mouth1_TA_tex_txt = .data:0x0028DA40; // type:object size:0x100 scope:global align:32
+kal_3_mouth2_TA_tex_txt = .data:0x0028DB40; // type:object size:0x100 scope:global align:32
+kal_3_mouth3_TA_tex_txt = .data:0x0028DC40; // type:object size:0x100 scope:global align:32
+kal_3_mouth4_TA_tex_txt = .data:0x0028DD40; // type:object size:0x100 scope:global align:32
+kal_3_mouth5_TA_tex_txt = .data:0x0028DE40; // type:object size:0x100 scope:global align:32
+kal_3_mouth6_TA_tex_txt = .data:0x0028DF40; // type:object size:0x100 scope:global align:32
+kal_3_tmem_txt = .data:0x0028E040; // type:object size:0x480 scope:global align:32
+kal_4_pal = .data:0x0028E4C0; // type:object size:0x20 scope:global align:32
+kal_4_eye1_TA_tex_txt = .data:0x0028E4E0; // type:object size:0x100 scope:global align:32
+kal_4_eye2_TA_tex_txt = .data:0x0028E5E0; // type:object size:0x100 scope:global align:32
+kal_4_eye3_TA_tex_txt = .data:0x0028E6E0; // type:object size:0x100 scope:global align:32
+kal_4_eye4_TA_tex_txt = .data:0x0028E7E0; // type:object size:0x100 scope:global align:32
+kal_4_eye5_TA_tex_txt = .data:0x0028E8E0; // type:object size:0x100 scope:global align:32
+kal_4_eye6_TA_tex_txt = .data:0x0028E9E0; // type:object size:0x100 scope:global align:32
+kal_4_eye7_TA_tex_txt = .data:0x0028EAE0; // type:object size:0x100 scope:global align:32
+kal_4_eye8_TA_tex_txt = .data:0x0028EBE0; // type:object size:0x100 scope:global align:32
+kal_4_mouth1_TA_tex_txt = .data:0x0028ECE0; // type:object size:0x100 scope:global align:32
+kal_4_mouth2_TA_tex_txt = .data:0x0028EDE0; // type:object size:0x100 scope:global align:32
+kal_4_mouth3_TA_tex_txt = .data:0x0028EEE0; // type:object size:0x100 scope:global align:32
+kal_4_mouth4_TA_tex_txt = .data:0x0028EFE0; // type:object size:0x100 scope:global align:32
+kal_4_mouth5_TA_tex_txt = .data:0x0028F0E0; // type:object size:0x100 scope:global align:32
+kal_4_mouth6_TA_tex_txt = .data:0x0028F1E0; // type:object size:0x100 scope:global align:32
+kal_4_tmem_txt = .data:0x0028F2E0; // type:object size:0x480 scope:global align:32
+kal_5_pal = .data:0x0028F760; // type:object size:0x20 scope:global align:32
+kal_5_eye1_TA_tex_txt = .data:0x0028F780; // type:object size:0x100 scope:global align:32
+kal_5_eye2_TA_tex_txt = .data:0x0028F880; // type:object size:0x100 scope:global align:32
+kal_5_eye3_TA_tex_txt = .data:0x0028F980; // type:object size:0x100 scope:global align:32
+kal_5_eye4_TA_tex_txt = .data:0x0028FA80; // type:object size:0x100 scope:global align:32
+kal_5_eye5_TA_tex_txt = .data:0x0028FB80; // type:object size:0x100 scope:global align:32
+kal_5_eye6_TA_tex_txt = .data:0x0028FC80; // type:object size:0x100 scope:global align:32
+kal_5_eye7_TA_tex_txt = .data:0x0028FD80; // type:object size:0x100 scope:global align:32
+kal_5_eye8_TA_tex_txt = .data:0x0028FE80; // type:object size:0x100 scope:global align:32
+kal_5_mouth1_TA_tex_txt = .data:0x0028FF80; // type:object size:0x100 scope:global align:32
+kal_5_mouth2_TA_tex_txt = .data:0x00290080; // type:object size:0x100 scope:global align:32
+kal_5_mouth3_TA_tex_txt = .data:0x00290180; // type:object size:0x100 scope:global align:32
+kal_5_mouth4_TA_tex_txt = .data:0x00290280; // type:object size:0x100 scope:global align:32
+kal_5_mouth5_TA_tex_txt = .data:0x00290380; // type:object size:0x100 scope:global align:32
+kal_5_mouth6_TA_tex_txt = .data:0x00290480; // type:object size:0x100 scope:global align:32
+kal_5_tmem_txt = .data:0x00290580; // type:object size:0x480 scope:global align:32
+kal_6_pal = .data:0x00290A00; // type:object size:0x20 scope:global align:32
+kal_6_eye1_TA_tex_txt = .data:0x00290A20; // type:object size:0x100 scope:global align:32
+kal_6_eye2_TA_tex_txt = .data:0x00290B20; // type:object size:0x100 scope:global align:32
+kal_6_eye3_TA_tex_txt = .data:0x00290C20; // type:object size:0x100 scope:global align:32
+kal_6_eye4_TA_tex_txt = .data:0x00290D20; // type:object size:0x100 scope:global align:32
+kal_6_eye5_TA_tex_txt = .data:0x00290E20; // type:object size:0x100 scope:global align:32
+kal_6_eye6_TA_tex_txt = .data:0x00290F20; // type:object size:0x100 scope:global align:32
+kal_6_eye7_TA_tex_txt = .data:0x00291020; // type:object size:0x100 scope:global align:32
+kal_6_eye8_TA_tex_txt = .data:0x00291120; // type:object size:0x100 scope:global align:32
+kal_6_mouth1_TA_tex_txt = .data:0x00291220; // type:object size:0x100 scope:global align:32
+kal_6_mouth2_TA_tex_txt = .data:0x00291320; // type:object size:0x100 scope:global align:32
+kal_6_mouth3_TA_tex_txt = .data:0x00291420; // type:object size:0x100 scope:global align:32
+kal_6_mouth4_TA_tex_txt = .data:0x00291520; // type:object size:0x100 scope:global align:32
+kal_6_mouth5_TA_tex_txt = .data:0x00291620; // type:object size:0x100 scope:global align:32
+kal_6_mouth6_TA_tex_txt = .data:0x00291720; // type:object size:0x100 scope:global align:32
+kal_6_tmem_txt = .data:0x00291820; // type:object size:0x480 scope:global align:32
+lighthouse_info = .data:0x00291CA0; // type:object size:0x38 scope:global align:4
+LIGHTHOUSE_player_data = .data:0x00291CD8; // type:object size:0x10 scope:global align:4
+LIGHTHOUSE_ctrl_actor_data = .data:0x00291CE8; // type:object size:0x18 scope:global align:4
+LIGHTHOUSE_door_data = .data:0x00291D00; // type:object size:0x14 scope:global align:4
+obj_otiba01_pal = .data:0x00291D20; // type:object size:0x20 scope:global align:32
+ef_otiba_0_tex = .data:0x00291D40; // type:object size:0x80 scope:global align:32
+ef_otiba01_setmode = .data:0x00291DC0; // type:object size:0x40 scope:global align:8
+ef_otiba01_00_v = .data:0x00291E00; // type:object size:0x50 scope:global align:8
+ef_otiba01_00_modelT = .data:0x00291E50; // type:object size:0x30 scope:global align:8
+ef_otiba_1_tex = .data:0x00291E80; // type:object size:0x80 scope:global align:32
+ef_otiba01_01_v = .data:0x00291F00; // type:object size:0x50 scope:global align:8
+ef_otiba01_01_modelT = .data:0x00291F50; // type:object size:0x30 scope:global align:8
+ef_otiba_2_tex = .data:0x00291F80; // type:object size:0x80 scope:global align:32
+ef_otiba01_02_v = .data:0x00292000; // type:object size:0x50 scope:global align:8
+ef_otiba01_02_modelT = .data:0x00292050; // type:object size:0x30 scope:global align:8
+obj_toudai_pole_pal = .data:0x00292080; // type:object size:0x20 scope:global align:32
+obj_toudai_poleA_tex_pic_ci4_pal = .data:0x002920A0; // type:object size:0x20 scope:global align:32
+obj_toudai_poleE_tex_txt = .data:0x002920C0; // type:object size:0x20 scope:global align:32
+obj_toudai_pole_kage_txt = .data:0x002920E0; // type:object size:0x100 scope:global align:32
+obj_toudai_poleB_tex_txt = .data:0x002921E0; // type:object size:0x40 scope:global align:32
+obj_toudai_poleC_tex_txt = .data:0x00292220; // type:object size:0x200 scope:global align:32
+obj_toudai_poleD_tex_txt = .data:0x00292420; // type:object size:0x40 scope:global align:32
+obj_toudai_poleA_tex_txt = .data:0x00292460; // type:object size:0x40 scope:global align:32
+obj_toudai_pole_v = .data:0x002924A0; // type:object size:0x1630 scope:global align:8
+obj_toudai_pole_kage_model = .data:0x00293AD0; // type:object size:0x118 scope:global align:8
+obj_toudai_pole_evw_model = .data:0x00293BE8; // type:object size:0x120 scope:global align:8
+obj_toudai_poleE_model = .data:0x00293D08; // type:object size:0xA0 scope:global align:8
+obj_toudai_poleD1_model = .data:0x00293DA8; // type:object size:0x78 scope:global align:8
+obj_toudai_poleC1_model = .data:0x00293E20; // type:object size:0x68 scope:global align:8
+obj_toudai_poleB_model = .data:0x00293E88; // type:object size:0x78 scope:global align:8
+obj_toudai_poleD2_model = .data:0x00293F00; // type:object size:0x88 scope:global align:8
+obj_toudai_poleC2_model = .data:0x00293F88; // type:object size:0x68 scope:global align:8
+obj_toudai_poleD3_model = .data:0x00293FF0; // type:object size:0x88 scope:global align:8
+obj_toudai_poleC3_model = .data:0x00294078; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_obj_toudai_pole_tbl = .data:0x002940F0; // type:object size:0xE scope:global align:4
+cKF_kn_obj_toudai_pole_tbl = .data:0x00294100; // type:object size:0x6 scope:global align:4
+cKF_c_obj_toudai_pole_tbl = .data:0x00294108; // type:object size:0x54 scope:global align:4
+cKF_ds_obj_toudai_pole_tbl = .data:0x0029415C; // type:object size:0x24 scope:global align:4
+cKF_ba_r_obj_toudai_pole = .data:0x00294180; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_toudai_pole_tbl = .data:0x00294194; // type:object size:0xA8 scope:global align:4
+cKF_bs_r_obj_toudai_pole = .data:0x0029423C; // type:object size:0x8 scope:global align:4
+obj_toudai_switch_pal = .data:0x00294260; // type:object size:0x20 scope:global align:32
+obj_toudai_switch_tex_txt = .data:0x00294280; // type:object size:0x80 scope:global align:32
+obj_toudai_switch_v = .data:0x00294300; // type:object size:0xB0 scope:global align:8
+obj_toudai_switch_model = .data:0x002943B0; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_obj_toudai_switch_tbl = .data:0x00294418; // type:object size:0x2 scope:global align:4
+cKF_kn_obj_toudai_switch_tbl = .data:0x0029441C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_toudai_switch_tbl = .data:0x00294420; // type:object size:0x10 scope:global align:4
+cKF_ds_obj_toudai_switch_tbl = .data:0x00294430; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_toudai_switch = .data:0x00294474; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_toudai_switch_off_tbl = .data:0x00294488; // type:object size:0x2 scope:global align:4
+cKF_kn_obj_toudai_switch_off_tbl = .data:0x0029448C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_toudai_switch_off_tbl = .data:0x00294490; // type:object size:0x10 scope:global align:4
+cKF_ds_obj_toudai_switch_off_tbl = .data:0x002944A0; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_toudai_switch_off = .data:0x002944D8; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_toudai_switch_tbl = .data:0x002944EC; // type:object size:0x18 scope:global align:4
+cKF_bs_r_obj_toudai_switch = .data:0x00294504; // type:object size:0x8 scope:global align:4
+lon_1_v = .data:0x00294510; // type:object size:0x1B20 scope:global align:8
+head_lon_model = .data:0x00296030; // type:object size:0x280 scope:global align:8
+Rarm2_lon_model = .data:0x002962B0; // type:object size:0x88 scope:global align:8
+Rarm1_lon_model = .data:0x00296338; // type:object size:0x78 scope:global align:8
+Larm2_lon_model = .data:0x002963B0; // type:object size:0x88 scope:global align:8
+Larm1_lon_model = .data:0x00296438; // type:object size:0x78 scope:global align:8
+chest_lon_model = .data:0x002964B0; // type:object size:0xA8 scope:global align:8
+tail1_lon_model = .data:0x00296558; // type:object size:0x60 scope:global align:8
+tail2_lon_model = .data:0x002965B8; // type:object size:0x90 scope:global align:8
+Rfoot2_lon_model = .data:0x00296648; // type:object size:0x80 scope:global align:8
+Rfoot1_lon_model = .data:0x002966C8; // type:object size:0xC0 scope:global align:8
+Lfoot2_lon_model = .data:0x00296788; // type:object size:0x80 scope:global align:8
+Lfoot1_lon_model = .data:0x00296808; // type:object size:0xC0 scope:global align:8
+base_lon_model = .data:0x002968C8; // type:object size:0x70 scope:global align:8
+cKF_je_r_lon_1_tbl = .data:0x00296938; // type:object size:0x138 scope:global align:4
+cKF_bs_r_lon_1 = .data:0x00296A70; // type:object size:0x8 scope:global align:4
+lon_1_pal = .data:0x00296A80; // type:object size:0x20 scope:global align:32
+lon_1_eye1_TA_tex_txt = .data:0x00296AA0; // type:object size:0x100 scope:global align:32
+lon_1_eye2_TA_tex_txt = .data:0x00296BA0; // type:object size:0x100 scope:global align:32
+lon_1_eye3_TA_tex_txt = .data:0x00296CA0; // type:object size:0x100 scope:global align:32
+lon_1_eye4_TA_tex_txt = .data:0x00296DA0; // type:object size:0x100 scope:global align:32
+lon_1_eye5_TA_tex_txt = .data:0x00296EA0; // type:object size:0x100 scope:global align:32
+lon_1_eye6_TA_tex_txt = .data:0x00296FA0; // type:object size:0x100 scope:global align:32
+lon_1_eye7_TA_tex_txt = .data:0x002970A0; // type:object size:0x100 scope:global align:32
+lon_1_eye8_TA_tex_txt = .data:0x002971A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth1_TA_tex_txt = .data:0x002972A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth2_TA_tex_txt = .data:0x002973A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth3_TA_tex_txt = .data:0x002974A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth4_TA_tex_txt = .data:0x002975A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth5_TA_tex_txt = .data:0x002976A0; // type:object size:0x100 scope:global align:32
+lon_1_mouth6_TA_tex_txt = .data:0x002977A0; // type:object size:0x100 scope:global align:32
+lon_1_tmem_txt = .data:0x002978A0; // type:object size:0x4C0 scope:global align:32
+lon_2_pal = .data:0x00297D60; // type:object size:0x20 scope:global align:32
+lon_2_eye1_TA_tex_txt = .data:0x00297D80; // type:object size:0x100 scope:global align:32
+lon_2_eye2_TA_tex_txt = .data:0x00297E80; // type:object size:0x100 scope:global align:32
+lon_2_eye3_TA_tex_txt = .data:0x00297F80; // type:object size:0x100 scope:global align:32
+lon_2_eye4_TA_tex_txt = .data:0x00298080; // type:object size:0x100 scope:global align:32
+lon_2_eye5_TA_tex_txt = .data:0x00298180; // type:object size:0x100 scope:global align:32
+lon_2_eye6_TA_tex_txt = .data:0x00298280; // type:object size:0x100 scope:global align:32
+lon_2_eye7_TA_tex_txt = .data:0x00298380; // type:object size:0x100 scope:global align:32
+lon_2_eye8_TA_tex_txt = .data:0x00298480; // type:object size:0x100 scope:global align:32
+lon_2_mouth1_TA_tex_txt = .data:0x00298580; // type:object size:0x100 scope:global align:32
+lon_2_mouth2_TA_tex_txt = .data:0x00298680; // type:object size:0x100 scope:global align:32
+lon_2_mouth3_TA_tex_txt = .data:0x00298780; // type:object size:0x100 scope:global align:32
+lon_2_mouth4_TA_tex_txt = .data:0x00298880; // type:object size:0x100 scope:global align:32
+lon_2_mouth5_TA_tex_txt = .data:0x00298980; // type:object size:0x100 scope:global align:32
+lon_2_mouth6_TA_tex_txt = .data:0x00298A80; // type:object size:0x100 scope:global align:32
+lon_2_tmem_txt = .data:0x00298B80; // type:object size:0x4C0 scope:global align:32
+lon_3_pal = .data:0x00299040; // type:object size:0x20 scope:global align:32
+lon_3_eye1_TA_tex_txt = .data:0x00299060; // type:object size:0x100 scope:global align:32
+lon_3_eye2_TA_tex_txt = .data:0x00299160; // type:object size:0x100 scope:global align:32
+lon_3_eye3_TA_tex_txt = .data:0x00299260; // type:object size:0x100 scope:global align:32
+lon_3_eye4_TA_tex_txt = .data:0x00299360; // type:object size:0x100 scope:global align:32
+lon_3_eye5_TA_tex_txt = .data:0x00299460; // type:object size:0x100 scope:global align:32
+lon_3_eye6_TA_tex_txt = .data:0x00299560; // type:object size:0x100 scope:global align:32
+lon_3_eye7_TA_tex_txt = .data:0x00299660; // type:object size:0x100 scope:global align:32
+lon_3_eye8_TA_tex_txt = .data:0x00299760; // type:object size:0x100 scope:global align:32
+lon_3_mouth1_TA_tex_txt = .data:0x00299860; // type:object size:0x100 scope:global align:32
+lon_3_mouth2_TA_tex_txt = .data:0x00299960; // type:object size:0x100 scope:global align:32
+lon_3_mouth3_TA_tex_txt = .data:0x00299A60; // type:object size:0x100 scope:global align:32
+lon_3_mouth4_TA_tex_txt = .data:0x00299B60; // type:object size:0x100 scope:global align:32
+lon_3_mouth5_TA_tex_txt = .data:0x00299C60; // type:object size:0x100 scope:global align:32
+lon_3_mouth6_TA_tex_txt = .data:0x00299D60; // type:object size:0x100 scope:global align:32
+lon_3_tmem_txt = .data:0x00299E60; // type:object size:0x4C0 scope:global align:32
+lon_4_pal = .data:0x0029A320; // type:object size:0x20 scope:global align:32
+lon_4_eye1_TA_tex_txt = .data:0x0029A340; // type:object size:0x100 scope:global align:32
+lon_4_eye2_TA_tex_txt = .data:0x0029A440; // type:object size:0x100 scope:global align:32
+lon_4_eye3_TA_tex_txt = .data:0x0029A540; // type:object size:0x100 scope:global align:32
+lon_4_eye4_TA_tex_txt = .data:0x0029A640; // type:object size:0x100 scope:global align:32
+lon_4_eye5_TA_tex_txt = .data:0x0029A740; // type:object size:0x100 scope:global align:32
+lon_4_eye6_TA_tex_txt = .data:0x0029A840; // type:object size:0x100 scope:global align:32
+lon_4_eye7_TA_tex_txt = .data:0x0029A940; // type:object size:0x100 scope:global align:32
+lon_4_eye8_TA_tex_txt = .data:0x0029AA40; // type:object size:0x100 scope:global align:32
+lon_4_mouth1_TA_tex_txt = .data:0x0029AB40; // type:object size:0x100 scope:global align:32
+lon_4_mouth2_TA_tex_txt = .data:0x0029AC40; // type:object size:0x100 scope:global align:32
+lon_4_mouth3_TA_tex_txt = .data:0x0029AD40; // type:object size:0x100 scope:global align:32
+lon_4_mouth4_TA_tex_txt = .data:0x0029AE40; // type:object size:0x100 scope:global align:32
+lon_4_mouth5_TA_tex_txt = .data:0x0029AF40; // type:object size:0x100 scope:global align:32
+lon_4_mouth6_TA_tex_txt = .data:0x0029B040; // type:object size:0x100 scope:global align:32
+lon_4_tmem_txt = .data:0x0029B140; // type:object size:0x4C0 scope:global align:32
+museum_entrance_info = .data:0x0029B600; // type:object size:0x48 scope:global align:4
+MUSEUM_ENTRANCE_player_data = .data:0x0029B648; // type:object size:0x10 scope:global align:4
+MUSEUM_ENTRANCE_ctrl_actor_data = .data:0x0029B658; // type:object size:0x18 scope:global align:4
+MUSEUM_ENTRANCE_actor_data = .data:0x0029B670; // type:object size:0x40 scope:global align:4
+MUSEUM_ENTRANCE_object_bank = .data:0x0029B6B0; // type:object size:0x2 scope:global align:4
+MUSEUM_ENTRANCE_door_data = .data:0x0029B6B4; // type:object size:0x50 scope:global align:4
+museum_fish_info = .data:0x0029B708; // type:object size:0x48 scope:global align:4
+MUSEUM_FISH_player_data = .data:0x0029B750; // type:object size:0x10 scope:global align:4
+MUSEUM_FISH_ctrl_actor_data = .data:0x0029B760; // type:object size:0x16 scope:global align:4
+MUSEUM_FISH_actor_data = .data:0x0029B778; // type:object size:0x20 scope:global align:4
+MUSEUM_FISH_object_bank = .data:0x0029B798; // type:object size:0x2 scope:global align:4
+MUSEUM_FISH_door_data = .data:0x0029B79C; // type:object size:0x14 scope:global align:4
+museum_fossil_info = .data:0x0029B7B0; // type:object size:0x40 scope:global align:4
+MUSEUM_FOSSIL_player_data = .data:0x0029B7F0; // type:object size:0x10 scope:global align:4
+MUSEUM_FOSSIL_ctrl_actor_data = .data:0x0029B800; // type:object size:0x18 scope:global align:4
+MUSEUM_FOSSIL_object_bank = .data:0x0029B818; // type:object size:0x2 scope:global align:4
+MUSEUM_FOSSIL_door_data = .data:0x0029B81C; // type:object size:0x14 scope:global align:4
+museum_insect_info = .data:0x0029B830; // type:object size:0x40 scope:global align:4
+MUSEUM_INSECT_player_data = .data:0x0029B870; // type:object size:0x10 scope:global align:4
+MUSEUM_INSECT_ctrl_actor_data = .data:0x0029B880; // type:object size:0x16 scope:global align:4
+MUSEUM_INSECT_actor_data = .data:0x0029B898; // type:object size:0x40 scope:global align:4
+MUSEUM_INSECT_object_bank = .data:0x0029B8D8; // type:object size:0x4 scope:global align:4
+MUSEUM_INSECT_door_data = .data:0x0029B8DC; // type:object size:0x14 scope:global align:4
+museum_picture_info = .data:0x0029B8F0; // type:object size:0x48 scope:global align:4
+MUSEUM_PICTURE_player_data = .data:0x0029B938; // type:object size:0x10 scope:global align:4
+MUSEUM_PICTURE_ctrl_actor_data = .data:0x0029B948; // type:object size:0x16 scope:global align:4
+MUSEUM_PICTURE_actor_data = .data:0x0029B960; // type:object size:0x10 scope:global align:4
+MUSEUM_PICTURE_object_bank = .data:0x0029B970; // type:object size:0x2 scope:global align:4
+MUSEUM_PICTURE_door_data = .data:0x0029B974; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_post_tbl = .data:0x0029B9A0; // type:object size:0x6 scope:global align:32
+cKF_c_obj_s_post_tbl = .data:0x0029B9A8; // type:object size:0x2A scope:global align:4
+cKF_ba_r_obj_s_post = .data:0x0029B9D4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_post_delivery1_tbl = .data:0x0029B9E8; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_post_delivery1_tbl = .data:0x0029B9F0; // type:object size:0x12 scope:global align:4
+cKF_c_obj_s_post_delivery1_tbl = .data:0x0029BA04; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_post_delivery1_tbl = .data:0x0029BA1C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_obj_s_post_delivery1 = .data:0x0029BAC0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_post_flag_off1_tbl = .data:0x0029BAD8; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_post_flag_off1_tbl = .data:0x0029BAE0; // type:object size:0x12 scope:global align:4
+cKF_c_obj_s_post_flag_off1_tbl = .data:0x0029BAF4; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_post_flag_off1_tbl = .data:0x0029BB0C; // type:object size:0x78 scope:global align:4
+cKF_ba_r_obj_s_post_flag_off1 = .data:0x0029BB84; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_post_flag_on1_tbl = .data:0x0029BB98; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_post_flag_on1_tbl = .data:0x0029BBA0; // type:object size:0x12 scope:global align:4
+cKF_c_obj_s_post_flag_on1_tbl = .data:0x0029BBB4; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_post_flag_on1_tbl = .data:0x0029BBCC; // type:object size:0x8A scope:global align:4
+cKF_ba_r_obj_s_post_flag_on1 = .data:0x0029BC58; // type:object size:0x14 scope:global align:4
+obj_s_post_flag_on_wait1_evw_anime_2_tex_table = .data:0x0029BC70; // type:object size:0x8 scope:global align:4
+obj_s_post_flag_on_wait1_evw_anime_2_anime_ptn = .data:0x0029BC78; // type:object size:0x1E scope:global align:4
+obj_s_post_flag_on_wait1_evw_anime_2 = .data:0x0029BC98; // type:object size:0x10 scope:global align:4
+obj_s_post_flag_on_wait1_evw_anime = .data:0x0029BCA8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_post_flag_on_wait1_tbl = .data:0x0029BCB0; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_post_flag_on_wait1_tbl = .data:0x0029BCB8; // type:object size:0x12 scope:global align:4
+cKF_c_obj_s_post_flag_on_wait1_tbl = .data:0x0029BCCC; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_post_flag_on_wait1_tbl = .data:0x0029BCE4; // type:object size:0x6C scope:global align:4
+cKF_ba_r_obj_s_post_flag_on_wait1 = .data:0x0029BD50; // type:object size:0x14 scope:global align:4
+obj_s_post_pal = .data:0x0029BD80; // type:object size:0x20 scope:global align:32
+obj_s_post_flag1_tex_txt = .data:0x0029BDA0; // type:object size:0x100 scope:global align:32
+obj_s_post_flag2_TA_tex_txt = .data:0x0029BEA0; // type:object size:0x100 scope:global align:32
+obj_s_post_flag3_TA_tex_txt = .data:0x0029BFA0; // type:object size:0x100 scope:global align:32
+obj_s_post_front1_tex_txt = .data:0x0029C0A0; // type:object size:0x100 scope:global align:32
+obj_s_post_front2_tex_txt = .data:0x0029C1A0; // type:object size:0x100 scope:global align:32
+obj_s_post_side1_tex_txt = .data:0x0029C2A0; // type:object size:0x200 scope:global align:32
+obj_s_post_leg1_tex_txt = .data:0x0029C4A0; // type:object size:0x80 scope:global align:32
+obj_s_post_inside1_tex_txt = .data:0x0029C520; // type:object size:0x80 scope:global align:32
+obj_s_post_v = .data:0x0029C5A0; // type:object size:0x350 scope:global align:8
+obj_s_post_main_model = .data:0x0029C8F0; // type:object size:0xC8 scope:global align:8
+obj_s_post_front_model = .data:0x0029C9B8; // type:object size:0x80 scope:global align:8
+obj_s_post_flag_saki_model = .data:0x0029CA38; // type:object size:0x18 scope:global align:8
+obj_s_post_flag_ne_model = .data:0x0029CA50; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_s_post_tbl = .data:0x0029CAB0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_s_post = .data:0x0029CAF8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_post_open1_tbl = .data:0x0029CB00; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_post_open1_tbl = .data:0x0029CB08; // type:object size:0x12 scope:global align:4
+cKF_c_obj_s_post_open1_tbl = .data:0x0029CB1C; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_post_open1_tbl = .data:0x0029CB34; // type:object size:0x84 scope:global align:4
+cKF_ba_r_obj_s_post_open1 = .data:0x0029CBB8; // type:object size:0x14 scope:global align:4
+obj_w_post_flag_on_wait1_evw_anime_2_tex_table = .data:0x0029CBD0; // type:object size:0x8 scope:global align:4
+obj_w_post_flag_on_wait1_evw_anime_2_anime_ptn = .data:0x0029CBD8; // type:object size:0x1E scope:global align:4
+obj_w_post_flag_on_wait1_evw_anime_2 = .data:0x0029CBF8; // type:object size:0x10 scope:global align:4
+obj_w_post_flag_on_wait1_evw_anime = .data:0x0029CC08; // type:object size:0x8 scope:global align:4
+obj_w_post_pal = .data:0x0029CC20; // type:object size:0x20 scope:global align:32
+obj_w_post_flag1_tex_txt = .data:0x0029CC40; // type:object size:0x100 scope:global align:32
+obj_w_post_flag2_TA_tex_txt = .data:0x0029CD40; // type:object size:0x100 scope:global align:32
+obj_w_post_flag3_TA_tex_txt = .data:0x0029CE40; // type:object size:0x100 scope:global align:32
+obj_w_post_front1_tex_txt = .data:0x0029CF40; // type:object size:0x100 scope:global align:32
+obj_w_post_front2_tex_txt = .data:0x0029D040; // type:object size:0x100 scope:global align:32
+obj_w_post_side1_tex_txt = .data:0x0029D140; // type:object size:0x200 scope:global align:32
+obj_w_post_leg1_tex_txt = .data:0x0029D340; // type:object size:0x80 scope:global align:32
+obj_w_post_inside1_tex_txt = .data:0x0029D3C0; // type:object size:0x80 scope:global align:32
+obj_w_post_v = .data:0x0029D440; // type:object size:0x350 scope:global align:8
+obj_w_post_main_model = .data:0x0029D790; // type:object size:0xC8 scope:global align:8
+obj_w_post_front_model = .data:0x0029D858; // type:object size:0x80 scope:global align:8
+obj_w_post_flag_saki_model = .data:0x0029D8D8; // type:object size:0x18 scope:global align:8
+obj_w_post_flag_ne_model = .data:0x0029D8F0; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_w_post_tbl = .data:0x0029D950; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_w_post = .data:0x0029D998; // type:object size:0x8 scope:global align:4
+mos_1_v = .data:0x0029D9A0; // type:object size:0x1420 scope:global align:8
+head_mos_model = .data:0x0029EDC0; // type:object size:0x1D0 scope:global align:8
+mouth_mos_model = .data:0x0029EF90; // type:object size:0xE0 scope:global align:8
+hand_mos_model = .data:0x0029F070; // type:object size:0xB8 scope:global align:8
+Rarm2_mos_model = .data:0x0029F128; // type:object size:0x88 scope:global align:8
+Rarm1_mos_model = .data:0x0029F1B0; // type:object size:0x78 scope:global align:8
+Larm2_mos_model = .data:0x0029F228; // type:object size:0x88 scope:global align:8
+Larm1_mos_model = .data:0x0029F2B0; // type:object size:0x78 scope:global align:8
+chest_mos_model = .data:0x0029F328; // type:object size:0xD8 scope:global align:8
+base_mos_model = .data:0x0029F400; // type:object size:0x88 scope:global align:8
+cKF_je_r_mos_1_tbl = .data:0x0029F488; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mos_1 = .data:0x0029F5C0; // type:object size:0x8 scope:global align:4
+mos_1_pal = .data:0x0029F5E0; // type:object size:0x20 scope:global align:32
+mos_1_eye1_TA_tex_txt = .data:0x0029F600; // type:object size:0x100 scope:global align:32
+mos_1_eye2_TA_tex_txt = .data:0x0029F700; // type:object size:0x100 scope:global align:32
+mos_1_eye3_TA_tex_txt = .data:0x0029F800; // type:object size:0x100 scope:global align:32
+mos_1_eye4_TA_tex_txt = .data:0x0029F900; // type:object size:0x100 scope:global align:32
+mos_1_eye5_TA_tex_txt = .data:0x0029FA00; // type:object size:0x100 scope:global align:32
+mos_1_eye6_TA_tex_txt = .data:0x0029FB00; // type:object size:0x100 scope:global align:32
+mos_1_eye7_TA_tex_txt = .data:0x0029FC00; // type:object size:0x100 scope:global align:32
+mos_1_eye8_TA_tex_txt = .data:0x0029FD00; // type:object size:0x100 scope:global align:32
+mos_1_mouth1_TA_tex_txt = .data:0x0029FE00; // type:object size:0x100 scope:global align:32
+mos_1_mouth2_TA_tex_txt = .data:0x0029FF00; // type:object size:0x100 scope:global align:32
+mos_1_mouth3_TA_tex_txt = .data:0x002A0000; // type:object size:0x100 scope:global align:32
+mos_1_mouth4_TA_tex_txt = .data:0x002A0100; // type:object size:0x100 scope:global align:32
+mos_1_mouth5_TA_tex_txt = .data:0x002A0200; // type:object size:0x100 scope:global align:32
+mos_1_mouth6_TA_tex_txt = .data:0x002A0300; // type:object size:0x100 scope:global align:32
+mos_1_tmem_txt = .data:0x002A0400; // type:object size:0x680 scope:global align:32
+mol_1_v = .data:0x002A0A80; // type:object size:0x1420 scope:global align:8
+head_mol_model = .data:0x002A1EA0; // type:object size:0x1D0 scope:global align:8
+mouth_mol_model = .data:0x002A2070; // type:object size:0xE0 scope:global align:8
+hand_mol_model = .data:0x002A2150; // type:object size:0xB8 scope:global align:8
+Rarm2_mol_model = .data:0x002A2208; // type:object size:0x88 scope:global align:8
+Rarm1_mol_model = .data:0x002A2290; // type:object size:0x78 scope:global align:8
+Larm2_mol_model = .data:0x002A2308; // type:object size:0x88 scope:global align:8
+Larm1_mol_model = .data:0x002A2390; // type:object size:0x78 scope:global align:8
+chest_mol_model = .data:0x002A2408; // type:object size:0xD8 scope:global align:8
+base_mol_model = .data:0x002A24E0; // type:object size:0x88 scope:global align:8
+cKF_je_r_mol_1_tbl = .data:0x002A2568; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mol_1 = .data:0x002A26A0; // type:object size:0x8 scope:global align:4
+mol_1_pal = .data:0x002A26C0; // type:object size:0x20 scope:global align:32
+mol_1_eye1_TA_tex_txt = .data:0x002A26E0; // type:object size:0x100 scope:global align:32
+mol_1_eye2_TA_tex_txt = .data:0x002A27E0; // type:object size:0x100 scope:global align:32
+mol_1_eye3_TA_tex_txt = .data:0x002A28E0; // type:object size:0x100 scope:global align:32
+mol_1_eye4_TA_tex_txt = .data:0x002A29E0; // type:object size:0x100 scope:global align:32
+mol_1_eye5_TA_tex_txt = .data:0x002A2AE0; // type:object size:0x100 scope:global align:32
+mol_1_eye6_TA_tex_txt = .data:0x002A2BE0; // type:object size:0x100 scope:global align:32
+mol_1_eye7_TA_tex_txt = .data:0x002A2CE0; // type:object size:0x100 scope:global align:32
+mol_1_eye8_TA_tex_txt = .data:0x002A2DE0; // type:object size:0x100 scope:global align:32
+mol_1_mouth1_TA_tex_txt = .data:0x002A2EE0; // type:object size:0x100 scope:global align:32
+mol_1_mouth2_TA_tex_txt = .data:0x002A2FE0; // type:object size:0x100 scope:global align:32
+mol_1_mouth3_TA_tex_txt = .data:0x002A30E0; // type:object size:0x100 scope:global align:32
+mol_1_mouth4_TA_tex_txt = .data:0x002A31E0; // type:object size:0x100 scope:global align:32
+mol_1_mouth5_TA_tex_txt = .data:0x002A32E0; // type:object size:0x100 scope:global align:32
+mol_1_mouth6_TA_tex_txt = .data:0x002A33E0; // type:object size:0x100 scope:global align:32
+mol_1_tmem_txt = .data:0x002A34E0; // type:object size:0x680 scope:global align:32
+lrc_1_v = .data:0x002A3B60; // type:object size:0x1540 scope:global align:8
+head_lrc_model = .data:0x002A50A0; // type:object size:0x188 scope:global align:8
+mouth_lrc_model = .data:0x002A5228; // type:object size:0x78 scope:global align:8
+Rarm2_lrc_model = .data:0x002A52A0; // type:object size:0xB8 scope:global align:8
+Rarm1_lrc_model = .data:0x002A5358; // type:object size:0x78 scope:global align:8
+Larm2_lrc_model = .data:0x002A53D0; // type:object size:0xB8 scope:global align:8
+Larm1_lrc_model = .data:0x002A5488; // type:object size:0x78 scope:global align:8
+chest_lrc_model = .data:0x002A5500; // type:object size:0xC8 scope:global align:8
+tail1_lrc_model = .data:0x002A55C8; // type:object size:0x78 scope:global align:8
+tail2_lrc_model = .data:0x002A5640; // type:object size:0xA0 scope:global align:8
+Rfoot2_lrc_model = .data:0x002A56E0; // type:object size:0x80 scope:global align:8
+Rfoot1_lrc_model = .data:0x002A5760; // type:object size:0x58 scope:global align:8
+Lfoot2_rcd_model = .data:0x002A57B8; // type:object size:0x80 scope:local align:8
+Lfoot1_lrc_model = .data:0x002A5838; // type:object size:0x58 scope:global align:8
+base_lrc_model = .data:0x002A5890; // type:object size:0x80 scope:global align:8
+cKF_je_r_lrc_1_tbl = .data:0x002A5910; // type:object size:0x138 scope:global align:4
+cKF_bs_r_lrc_1 = .data:0x002A5A48; // type:object size:0x8 scope:global align:4
+lrc_1_pal = .data:0x002A5A60; // type:object size:0x20 scope:global align:32
+lrc_1_eye1_TA_tex_txt = .data:0x002A5A80; // type:object size:0x100 scope:global align:32
+lrc_1_eye2_TA_tex_txt = .data:0x002A5B80; // type:object size:0x100 scope:global align:32
+lrc_1_eye3_TA_tex_txt = .data:0x002A5C80; // type:object size:0x100 scope:global align:32
+lrc_1_eye4_TA_tex_txt = .data:0x002A5D80; // type:object size:0x100 scope:global align:32
+lrc_1_eye5_TA_tex_txt = .data:0x002A5E80; // type:object size:0x100 scope:global align:32
+lrc_1_eye6_TA_tex_txt = .data:0x002A5F80; // type:object size:0x100 scope:global align:32
+lrc_1_eye7_TA_tex_txt = .data:0x002A6080; // type:object size:0x100 scope:global align:32
+lrc_1_eye8_TA_tex_txt = .data:0x002A6180; // type:object size:0x100 scope:global align:32
+lrc_1_tmem_txt = .data:0x002A6280; // type:object size:0x680 scope:global align:32
+mka_1_v = .data:0x002A6900; // type:object size:0x1480 scope:global align:8
+head_mka_model = .data:0x002A7D80; // type:object size:0x160 scope:global align:8
+Rarm2_mka_model = .data:0x002A7EE0; // type:object size:0x88 scope:global align:8
+Rarm1_mka_model = .data:0x002A7F68; // type:object size:0x78 scope:global align:8
+Larm2_mka_model = .data:0x002A7FE0; // type:object size:0x88 scope:global align:8
+Larm1_mka_model = .data:0x002A8068; // type:object size:0x78 scope:global align:8
+chest_mka_model = .data:0x002A80E0; // type:object size:0x90 scope:global align:8
+tail1_mka_model = .data:0x002A8170; // type:object size:0x58 scope:global align:8
+tail2_mka_model = .data:0x002A81C8; // type:object size:0x90 scope:global align:8
+Rfoot2_mka_model = .data:0x002A8258; // type:object size:0x90 scope:global align:8
+Rfoot1_mka_model = .data:0x002A82E8; // type:object size:0xC0 scope:global align:8
+Lfoot2_mka_model = .data:0x002A83A8; // type:object size:0x90 scope:global align:8
+Lfoot1_mka_model = .data:0x002A8438; // type:object size:0xC0 scope:global align:8
+base_mka_model = .data:0x002A84F8; // type:object size:0x70 scope:global align:8
+cKF_je_r_mka_1_tbl = .data:0x002A8568; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mka_1 = .data:0x002A86A0; // type:object size:0x8 scope:global align:4
+mka_1_pal = .data:0x002A86C0; // type:object size:0x20 scope:global align:32
+mka_1_tmem_txt = .data:0x002A86E0; // type:object size:0x480 scope:global align:32
+obj_misin_cloth_v = .data:0x002A8B60; // type:object size:0x40 scope:global align:8
+obj_misin_cloth_model = .data:0x002A8BA0; // type:object size:0x58 scope:global align:8
+obj_misin_pal = .data:0x002A8C00; // type:object size:0x20 scope:global align:32
+obj_misin_belt_tex_pic_ci4_pal = .data:0x002A8C20; // type:object size:0x20 scope:global align:32
+obj_misin_ito1_tex_txt = .data:0x002A8C40; // type:object size:0x20 scope:global align:32
+obj_misin_ito2_tex_txt = .data:0x002A8C60; // type:object size:0x40 scope:global align:32
+obj_misin_maru_tex_txt = .data:0x002A8CA0; // type:object size:0x80 scope:global align:32
+obj_misin_jiku_tex_txt = .data:0x002A8D20; // type:object size:0x20 scope:global align:32
+obj_misin_ana_tex_txt = .data:0x002A8D40; // type:object size:0x80 scope:global align:32
+obj_misin_hari_tex_txt = .data:0x002A8DC0; // type:object size:0x80 scope:global align:32
+obj_misin_ito3_tex_txt = .data:0x002A8E40; // type:object size:0x100 scope:global align:32
+obj_misin_belt_tex_txt = .data:0x002A8F40; // type:object size:0x80 scope:global align:32
+obj_misin_v = .data:0x002A8FC0; // type:object size:0x4C0 scope:global align:8
+obj_misin_belt_model = .data:0x002A9480; // type:object size:0x78 scope:global align:8
+obj_misin_ana_model = .data:0x002A94F8; // type:object size:0x58 scope:global align:8
+obj_misin_ito2_model = .data:0x002A9550; // type:object size:0x70 scope:global align:8
+obj_misin_ito1_model = .data:0x002A95C0; // type:object size:0x60 scope:global align:8
+obj_misin_maru_model = .data:0x002A9620; // type:object size:0x60 scope:global align:8
+obj_misin_jiku_model = .data:0x002A9680; // type:object size:0x70 scope:global align:8
+obj_misin_ito4_model = .data:0x002A96F0; // type:object size:0x58 scope:global align:8
+obj_misin_ito3_model = .data:0x002A9748; // type:object size:0x80 scope:global align:8
+obj_misin_hari_model = .data:0x002A97C8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_obj_misin_tbl = .data:0x002A9820; // type:object size:0xD scope:global align:4
+cKF_kn_obj_misin_tbl = .data:0x002A9830; // type:object size:0x6 scope:global align:4
+cKF_c_obj_misin_tbl = .data:0x002A9838; // type:object size:0x4E scope:global align:4
+cKF_ds_obj_misin_tbl = .data:0x002A9888; // type:object size:0x66 scope:global align:4
+cKF_ba_r_obj_misin = .data:0x002A98F0; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_misin_tbl = .data:0x002A9904; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_misin = .data:0x002A99A0; // type:object size:0x8 scope:global align:4
+mus_1_v = .data:0x002A99A8; // type:object size:0x1800 scope:global align:8
+head_mus_model = .data:0x002AB1A8; // type:object size:0x1D8 scope:global align:8
+mouth_mus_model = .data:0x002AB380; // type:object size:0x68 scope:global align:8
+Rarm2_mus_model = .data:0x002AB3E8; // type:object size:0x88 scope:global align:8
+Rarm1_mus_model = .data:0x002AB470; // type:object size:0x78 scope:global align:8
+Larm2_mus_model = .data:0x002AB4E8; // type:object size:0x88 scope:global align:8
+Larm1_mus_model = .data:0x002AB570; // type:object size:0x78 scope:global align:8
+chest_mus_model = .data:0x002AB5E8; // type:object size:0xA8 scope:global align:8
+tail1_mus_model = .data:0x002AB690; // type:object size:0x60 scope:global align:8
+tail2_mus_model = .data:0x002AB6F0; // type:object size:0x90 scope:global align:8
+Rfoot2_mus_model = .data:0x002AB780; // type:object size:0x80 scope:global align:8
+Rfoot1_mus_model = .data:0x002AB800; // type:object size:0xC0 scope:global align:8
+Lfoot2_mus_model = .data:0x002AB8C0; // type:object size:0x80 scope:global align:8
+Lfoot1_mus_model = .data:0x002AB940; // type:object size:0xC0 scope:global align:8
+base_mus_model = .data:0x002ABA00; // type:object size:0x70 scope:global align:8
+cKF_je_r_mus_1_tbl = .data:0x002ABA70; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mus_1 = .data:0x002ABBA8; // type:object size:0x8 scope:global align:4
+mus_1_pal = .data:0x002ABBC0; // type:object size:0x20 scope:global align:32
+mus_1_eye1_TA_tex_txt = .data:0x002ABBE0; // type:object size:0x100 scope:global align:32
+mus_1_eye2_TA_tex_txt = .data:0x002ABCE0; // type:object size:0x100 scope:global align:32
+mus_1_eye3_TA_tex_txt = .data:0x002ABDE0; // type:object size:0x100 scope:global align:32
+mus_1_eye4_TA_tex_txt = .data:0x002ABEE0; // type:object size:0x100 scope:global align:32
+mus_1_eye5_TA_tex_txt = .data:0x002ABFE0; // type:object size:0x100 scope:global align:32
+mus_1_eye6_TA_tex_txt = .data:0x002AC0E0; // type:object size:0x100 scope:global align:32
+mus_1_eye7_TA_tex_txt = .data:0x002AC1E0; // type:object size:0x100 scope:global align:32
+mus_1_eye8_TA_tex_txt = .data:0x002AC2E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth1_TA_tex_txt = .data:0x002AC3E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth2_TA_tex_txt = .data:0x002AC4E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth3_TA_tex_txt = .data:0x002AC5E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth4_TA_tex_txt = .data:0x002AC6E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth5_TA_tex_txt = .data:0x002AC7E0; // type:object size:0x100 scope:global align:32
+mus_1_mouth6_TA_tex_txt = .data:0x002AC8E0; // type:object size:0x100 scope:global align:32
+mus_1_tmem_txt = .data:0x002AC9E0; // type:object size:0x400 scope:global align:32
+mus_2_pal = .data:0x002ACDE0; // type:object size:0x20 scope:global align:32
+mus_2_eye1_TA_tex_txt = .data:0x002ACE00; // type:object size:0x100 scope:global align:32
+mus_2_eye2_TA_tex_txt = .data:0x002ACF00; // type:object size:0x100 scope:global align:32
+mus_2_eye3_TA_tex_txt = .data:0x002AD000; // type:object size:0x100 scope:global align:32
+mus_2_eye4_TA_tex_txt = .data:0x002AD100; // type:object size:0x100 scope:global align:32
+mus_2_eye5_TA_tex_txt = .data:0x002AD200; // type:object size:0x100 scope:global align:32
+mus_2_eye6_TA_tex_txt = .data:0x002AD300; // type:object size:0x100 scope:global align:32
+mus_2_eye7_TA_tex_txt = .data:0x002AD400; // type:object size:0x100 scope:global align:32
+mus_2_eye8_TA_tex_txt = .data:0x002AD500; // type:object size:0x100 scope:global align:32
+mus_2_mouth1_TA_tex_txt = .data:0x002AD600; // type:object size:0x100 scope:global align:32
+mus_2_mouth2_TA_tex_txt = .data:0x002AD700; // type:object size:0x100 scope:global align:32
+mus_2_mouth3_TA_tex_txt = .data:0x002AD800; // type:object size:0x100 scope:global align:32
+mus_2_mouth4_TA_tex_txt = .data:0x002AD900; // type:object size:0x100 scope:global align:32
+mus_2_mouth5_TA_tex_txt = .data:0x002ADA00; // type:object size:0x100 scope:global align:32
+mus_2_mouth6_TA_tex_txt = .data:0x002ADB00; // type:object size:0x100 scope:global align:32
+mus_2_tmem_txt = .data:0x002ADC00; // type:object size:0x400 scope:global align:32
+mus_3_pal = .data:0x002AE000; // type:object size:0x20 scope:global align:32
+mus_3_eye1_TA_tex_txt = .data:0x002AE020; // type:object size:0x100 scope:global align:32
+mus_3_eye2_TA_tex_txt = .data:0x002AE120; // type:object size:0x100 scope:global align:32
+mus_3_eye3_TA_tex_txt = .data:0x002AE220; // type:object size:0x100 scope:global align:32
+mus_3_eye4_TA_tex_txt = .data:0x002AE320; // type:object size:0x100 scope:global align:32
+mus_3_eye5_TA_tex_txt = .data:0x002AE420; // type:object size:0x100 scope:global align:32
+mus_3_eye6_TA_tex_txt = .data:0x002AE520; // type:object size:0x100 scope:global align:32
+mus_3_eye7_TA_tex_txt = .data:0x002AE620; // type:object size:0x100 scope:global align:32
+mus_3_eye8_TA_tex_txt = .data:0x002AE720; // type:object size:0x100 scope:global align:32
+mus_3_mouth1_TA_tex_txt = .data:0x002AE820; // type:object size:0x100 scope:global align:32
+mus_3_mouth2_TA_tex_txt = .data:0x002AE920; // type:object size:0x100 scope:global align:32
+mus_3_mouth3_TA_tex_txt = .data:0x002AEA20; // type:object size:0x100 scope:global align:32
+mus_3_mouth4_TA_tex_txt = .data:0x002AEB20; // type:object size:0x100 scope:global align:32
+mus_3_mouth5_TA_tex_txt = .data:0x002AEC20; // type:object size:0x100 scope:global align:32
+mus_3_mouth6_TA_tex_txt = .data:0x002AED20; // type:object size:0x100 scope:global align:32
+mus_3_tmem_txt = .data:0x002AEE20; // type:object size:0x400 scope:global align:32
+mus_4_pal = .data:0x002AF220; // type:object size:0x20 scope:global align:32
+mus_4_eye1_TA_tex_txt = .data:0x002AF240; // type:object size:0x100 scope:global align:32
+mus_4_eye2_TA_tex_txt = .data:0x002AF340; // type:object size:0x100 scope:global align:32
+mus_4_eye3_TA_tex_txt = .data:0x002AF440; // type:object size:0x100 scope:global align:32
+mus_4_eye4_TA_tex_txt = .data:0x002AF540; // type:object size:0x100 scope:global align:32
+mus_4_eye5_TA_tex_txt = .data:0x002AF640; // type:object size:0x100 scope:global align:32
+mus_4_eye6_TA_tex_txt = .data:0x002AF740; // type:object size:0x100 scope:global align:32
+mus_4_eye7_TA_tex_txt = .data:0x002AF840; // type:object size:0x100 scope:global align:32
+mus_4_eye8_TA_tex_txt = .data:0x002AF940; // type:object size:0x100 scope:global align:32
+mus_4_mouth1_TA_tex_txt = .data:0x002AFA40; // type:object size:0x100 scope:global align:32
+mus_4_mouth2_TA_tex_txt = .data:0x002AFB40; // type:object size:0x100 scope:global align:32
+mus_4_mouth3_TA_tex_txt = .data:0x002AFC40; // type:object size:0x100 scope:global align:32
+mus_4_mouth4_TA_tex_txt = .data:0x002AFD40; // type:object size:0x100 scope:global align:32
+mus_4_mouth5_TA_tex_txt = .data:0x002AFE40; // type:object size:0x100 scope:global align:32
+mus_4_mouth6_TA_tex_txt = .data:0x002AFF40; // type:object size:0x100 scope:global align:32
+mus_4_tmem_txt = .data:0x002B0040; // type:object size:0x400 scope:global align:32
+mus_5_pal = .data:0x002B0440; // type:object size:0x20 scope:global align:32
+mus_5_eye1_TA_tex_txt = .data:0x002B0460; // type:object size:0x100 scope:global align:32
+mus_5_eye2_TA_tex_txt = .data:0x002B0560; // type:object size:0x100 scope:global align:32
+mus_5_eye3_TA_tex_txt = .data:0x002B0660; // type:object size:0x100 scope:global align:32
+mus_5_eye4_TA_tex_txt = .data:0x002B0760; // type:object size:0x100 scope:global align:32
+mus_5_eye5_TA_tex_txt = .data:0x002B0860; // type:object size:0x100 scope:global align:32
+mus_5_eye6_TA_tex_txt = .data:0x002B0960; // type:object size:0x100 scope:global align:32
+mus_5_eye7_TA_tex_txt = .data:0x002B0A60; // type:object size:0x100 scope:global align:32
+mus_5_eye8_TA_tex_txt = .data:0x002B0B60; // type:object size:0x100 scope:global align:32
+mus_5_mouth1_TA_tex_txt = .data:0x002B0C60; // type:object size:0x100 scope:global align:32
+mus_5_mouth2_TA_tex_txt = .data:0x002B0D60; // type:object size:0x100 scope:global align:32
+mus_5_mouth3_TA_tex_txt = .data:0x002B0E60; // type:object size:0x100 scope:global align:32
+mus_5_mouth4_TA_tex_txt = .data:0x002B0F60; // type:object size:0x100 scope:global align:32
+mus_5_mouth5_TA_tex_txt = .data:0x002B1060; // type:object size:0x100 scope:global align:32
+mus_5_mouth6_TA_tex_txt = .data:0x002B1160; // type:object size:0x100 scope:global align:32
+mus_5_tmem_txt = .data:0x002B1260; // type:object size:0x400 scope:global align:32
+mus_6_pal = .data:0x002B1660; // type:object size:0x20 scope:global align:32
+mus_6_eye1_TA_tex_txt = .data:0x002B1680; // type:object size:0x100 scope:global align:32
+mus_6_eye2_TA_tex_txt = .data:0x002B1780; // type:object size:0x100 scope:global align:32
+mus_6_eye3_TA_tex_txt = .data:0x002B1880; // type:object size:0x100 scope:global align:32
+mus_6_eye4_TA_tex_txt = .data:0x002B1980; // type:object size:0x100 scope:global align:32
+mus_6_eye5_TA_tex_txt = .data:0x002B1A80; // type:object size:0x100 scope:global align:32
+mus_6_eye6_TA_tex_txt = .data:0x002B1B80; // type:object size:0x100 scope:global align:32
+mus_6_eye7_TA_tex_txt = .data:0x002B1C80; // type:object size:0x100 scope:global align:32
+mus_6_eye8_TA_tex_txt = .data:0x002B1D80; // type:object size:0x100 scope:global align:32
+mus_6_mouth1_TA_tex_txt = .data:0x002B1E80; // type:object size:0x100 scope:global align:32
+mus_6_mouth2_TA_tex_txt = .data:0x002B1F80; // type:object size:0x100 scope:global align:32
+mus_6_mouth3_TA_tex_txt = .data:0x002B2080; // type:object size:0x100 scope:global align:32
+mus_6_mouth4_TA_tex_txt = .data:0x002B2180; // type:object size:0x100 scope:global align:32
+mus_6_mouth5_TA_tex_txt = .data:0x002B2280; // type:object size:0x100 scope:global align:32
+mus_6_mouth6_TA_tex_txt = .data:0x002B2380; // type:object size:0x100 scope:global align:32
+mus_6_tmem_txt = .data:0x002B2480; // type:object size:0x400 scope:global align:32
+mus_7_pal = .data:0x002B2880; // type:object size:0x20 scope:global align:32
+mus_7_eye1_TA_tex_txt = .data:0x002B28A0; // type:object size:0x100 scope:global align:32
+mus_7_eye2_TA_tex_txt = .data:0x002B29A0; // type:object size:0x100 scope:global align:32
+mus_7_eye3_TA_tex_txt = .data:0x002B2AA0; // type:object size:0x100 scope:global align:32
+mus_7_eye4_TA_tex_txt = .data:0x002B2BA0; // type:object size:0x100 scope:global align:32
+mus_7_eye5_TA_tex_txt = .data:0x002B2CA0; // type:object size:0x100 scope:global align:32
+mus_7_eye6_TA_tex_txt = .data:0x002B2DA0; // type:object size:0x100 scope:global align:32
+mus_7_eye7_TA_tex_txt = .data:0x002B2EA0; // type:object size:0x100 scope:global align:32
+mus_7_eye8_TA_tex_txt = .data:0x002B2FA0; // type:object size:0x100 scope:global align:32
+mus_7_mouth1_TA_tex_txt = .data:0x002B30A0; // type:object size:0x100 scope:global align:32
+mus_7_mouth2_TA_tex_txt = .data:0x002B31A0; // type:object size:0x100 scope:global align:32
+mus_7_mouth3_TA_tex_txt = .data:0x002B32A0; // type:object size:0x100 scope:global align:32
+mus_7_mouth4_TA_tex_txt = .data:0x002B33A0; // type:object size:0x100 scope:global align:32
+mus_7_mouth5_TA_tex_txt = .data:0x002B34A0; // type:object size:0x100 scope:global align:32
+mus_7_mouth6_TA_tex_txt = .data:0x002B35A0; // type:object size:0x100 scope:global align:32
+mus_7_tmem_txt = .data:0x002B36A0; // type:object size:0x400 scope:global align:32
+mus_8_pal = .data:0x002B3AA0; // type:object size:0x20 scope:global align:32
+mus_8_eye1_TA_tex_txt = .data:0x002B3AC0; // type:object size:0x100 scope:global align:32
+mus_8_eye2_TA_tex_txt = .data:0x002B3BC0; // type:object size:0x100 scope:global align:32
+mus_8_eye3_TA_tex_txt = .data:0x002B3CC0; // type:object size:0x100 scope:global align:32
+mus_8_eye4_TA_tex_txt = .data:0x002B3DC0; // type:object size:0x100 scope:global align:32
+mus_8_eye5_TA_tex_txt = .data:0x002B3EC0; // type:object size:0x100 scope:global align:32
+mus_8_eye6_TA_tex_txt = .data:0x002B3FC0; // type:object size:0x100 scope:global align:32
+mus_8_eye7_TA_tex_txt = .data:0x002B40C0; // type:object size:0x100 scope:global align:32
+mus_8_eye8_TA_tex_txt = .data:0x002B41C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth1_TA_tex_txt = .data:0x002B42C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth2_TA_tex_txt = .data:0x002B43C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth3_TA_tex_txt = .data:0x002B44C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth4_TA_tex_txt = .data:0x002B45C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth5_TA_tex_txt = .data:0x002B46C0; // type:object size:0x100 scope:global align:32
+mus_8_mouth6_TA_tex_txt = .data:0x002B47C0; // type:object size:0x100 scope:global align:32
+mus_8_tmem_txt = .data:0x002B48C0; // type:object size:0x400 scope:global align:32
+mus_9_pal = .data:0x002B4CC0; // type:object size:0x20 scope:global align:32
+mus_9_eye1_TA_tex_txt = .data:0x002B4CE0; // type:object size:0x100 scope:global align:32
+mus_9_eye2_TA_tex_txt = .data:0x002B4DE0; // type:object size:0x100 scope:global align:32
+mus_9_eye3_TA_tex_txt = .data:0x002B4EE0; // type:object size:0x100 scope:global align:32
+mus_9_eye4_TA_tex_txt = .data:0x002B4FE0; // type:object size:0x100 scope:global align:32
+mus_9_eye5_TA_tex_txt = .data:0x002B50E0; // type:object size:0x100 scope:global align:32
+mus_9_eye6_TA_tex_txt = .data:0x002B51E0; // type:object size:0x100 scope:global align:32
+mus_9_eye7_TA_tex_txt = .data:0x002B52E0; // type:object size:0x100 scope:global align:32
+mus_9_eye8_TA_tex_txt = .data:0x002B53E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth1_TA_tex_txt = .data:0x002B54E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth2_TA_tex_txt = .data:0x002B55E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth3_TA_tex_txt = .data:0x002B56E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth4_TA_tex_txt = .data:0x002B57E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth5_TA_tex_txt = .data:0x002B58E0; // type:object size:0x100 scope:global align:32
+mus_9_mouth6_TA_tex_txt = .data:0x002B59E0; // type:object size:0x100 scope:global align:32
+mus_9_tmem_txt = .data:0x002B5AE0; // type:object size:0x400 scope:global align:32
+mus_10_pal = .data:0x002B5EE0; // type:object size:0x20 scope:global align:32
+mus_10_eye1_TA_tex_txt = .data:0x002B5F00; // type:object size:0x100 scope:global align:32
+mus_10_eye2_TA_tex_txt = .data:0x002B6000; // type:object size:0x100 scope:global align:32
+mus_10_eye3_TA_tex_txt = .data:0x002B6100; // type:object size:0x100 scope:global align:32
+mus_10_eye4_TA_tex_txt = .data:0x002B6200; // type:object size:0x100 scope:global align:32
+mus_10_eye5_TA_tex_txt = .data:0x002B6300; // type:object size:0x100 scope:global align:32
+mus_10_eye6_TA_tex_txt = .data:0x002B6400; // type:object size:0x100 scope:global align:32
+mus_10_eye7_TA_tex_txt = .data:0x002B6500; // type:object size:0x100 scope:global align:32
+mus_10_eye8_TA_tex_txt = .data:0x002B6600; // type:object size:0x100 scope:global align:32
+mus_10_mouth1_TA_tex_txt = .data:0x002B6700; // type:object size:0x100 scope:global align:32
+mus_10_mouth2_TA_tex_txt = .data:0x002B6800; // type:object size:0x100 scope:global align:32
+mus_10_mouth3_TA_tex_txt = .data:0x002B6900; // type:object size:0x100 scope:global align:32
+mus_10_mouth4_TA_tex_txt = .data:0x002B6A00; // type:object size:0x100 scope:global align:32
+mus_10_mouth5_TA_tex_txt = .data:0x002B6B00; // type:object size:0x100 scope:global align:32
+mus_10_mouth6_TA_tex_txt = .data:0x002B6C00; // type:object size:0x100 scope:global align:32
+mus_10_tmem_txt = .data:0x002B6D00; // type:object size:0x400 scope:global align:32
+obj_mural_v = .data:0x002B7100; // type:object size:0x40 scope:global align:8
+obj_mural_model = .data:0x002B7140; // type:object size:0xB8 scope:global align:8
+rom_myhome1_floor_v = .data:0x002B7200; // type:object size:0x560 scope:global align:32
+rom_myhome1_floor_model = .data:0x002B7760; // type:object size:0x128 scope:global align:8
+rom_myhome1_floor_new_model = .data:0x002B7888; // type:object size:0x128 scope:global align:8
+rom_myhome1_floor_new2_model = .data:0x002B79B0; // type:object size:0x148 scope:global align:8
+rom_myhome_pal = .data:0x002B7B00; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002B7B20; // type:object size:0x200 scope:local align:32
+rom_myhome_enter2_tex = .data:0x002B7D20; // type:object size:0x800 scope:local align:32
+rom_myhome1_wall_v = .data:0x002B8520; // type:object size:0x550 scope:global align:8
+rom_myhome1_wall_model = .data:0x002B8A70; // type:object size:0x188 scope:global align:8
+rom_myhome1_wall_new_model = .data:0x002B8BF8; // type:object size:0x188 scope:global align:8
+rom_myhome1_wall_new2_model = .data:0x002B8D80; // type:object size:0x198 scope:global align:8
+rom_myhome2_floor_v = .data:0x002B8F20; // type:object size:0x5B0 scope:global align:16
+rom_myhome2_floor_model = .data:0x002B94D0; // type:object size:0x130 scope:global align:8
+rom_myhome_pal = .data:0x002B9600; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002B9620; // type:object size:0x200 scope:local align:32
+rom_myhome_enter_tex = .data:0x002B9820; // type:object size:0x400 scope:global align:32
+rom_myhome2_wall_v = .data:0x002B9C20; // type:object size:0x5B0 scope:global align:8
+rom_myhome2_wall_modelT = .data:0x002BA1D0; // type:object size:0x8 scope:global align:8
+rom_myhome2_wall_model = .data:0x002BA1D8; // type:object size:0x190 scope:global align:8
+rom_myhome2B_floor_v = .data:0x002BA380; // type:object size:0x5B0 scope:global align:32
+rom_myhome2B_floor_model = .data:0x002BA930; // type:object size:0x130 scope:global align:8
+rom_myhome2B_floor_new_model = .data:0x002BAA60; // type:object size:0x148 scope:global align:8
+rom_myhome2B_floor_new2_model = .data:0x002BABA8; // type:object size:0x148 scope:global align:8
+rom_myhome_pal = .data:0x002BAD00; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002BAD20; // type:object size:0x200 scope:local align:32
+rom_myhome_enter2_tex = .data:0x002BAF20; // type:object size:0x800 scope:local align:32
+rom_myhome2B_wall_v = .data:0x002BB720; // type:object size:0x5B0 scope:global align:8
+rom_myhome2B_wall_model = .data:0x002BBCD0; // type:object size:0x190 scope:global align:8
+rom_myhome2B_wall_new_model = .data:0x002BBE60; // type:object size:0x190 scope:global align:8
+rom_myhome2B_wall_new2_model = .data:0x002BBFF0; // type:object size:0x190 scope:global align:8
+rom_myhome3_floor_v = .data:0x002BC180; // type:object size:0x5B0 scope:global align:8
+rom_myhome3_floor_model = .data:0x002BC730; // type:object size:0x130 scope:global align:8
+rom_myhome3_floor_new_model = .data:0x002BC860; // type:object size:0x130 scope:global align:8
+rom_myhome3_floor_new2_model = .data:0x002BC990; // type:object size:0x130 scope:global align:8
+rom_myhome_pal = .data:0x002BCAC0; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002BCAE0; // type:object size:0x200 scope:local align:32
+rom_myhome_enter2_tex = .data:0x002BCCE0; // type:object size:0x800 scope:local align:32
+rom_myhome3_wall_v = .data:0x002BD4E0; // type:object size:0x4F0 scope:global align:8
+rom_myhome3_wall_model = .data:0x002BD9D0; // type:object size:0x170 scope:global align:8
+rom_myhome3_wall_new_model = .data:0x002BDB40; // type:object size:0x170 scope:global align:8
+rom_myhome3_wall_new2_model = .data:0x002BDCB0; // type:object size:0x170 scope:global align:8
+rom_myhome4_1_floor_v = .data:0x002BDE20; // type:object size:0x5B0 scope:global align:8
+rom_myhome4_1_floor_model = .data:0x002BE3D0; // type:object size:0x130 scope:global align:8
+rom_myhome4_1_floor_new_model = .data:0x002BE500; // type:object size:0x130 scope:global align:8
+rom_myhome4_1_floor_new2_model = .data:0x002BE630; // type:object size:0x130 scope:global align:8
+rom_myhome_pal = .data:0x002BE760; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002BE780; // type:object size:0x200 scope:local align:32
+rom_myhome_enter2_tex = .data:0x002BE980; // type:object size:0x800 scope:local align:32
+rom_myhome4_1_wall_v = .data:0x002BF180; // type:object size:0x4F0 scope:global align:8
+rom_myhome4_1_wall_model = .data:0x002BF670; // type:object size:0x170 scope:global align:8
+rom_myhome4_1_wall_new_model = .data:0x002BF7E0; // type:object size:0x170 scope:global align:8
+rom_myhome4_1_wall_new2_model = .data:0x002BF950; // type:object size:0x170 scope:global align:8
+rom_myhome4_2_floor_v = .data:0x002BFAC0; // type:object size:0x5B0 scope:global align:8
+rom_myhome4_2_floor_model = .data:0x002C0070; // type:object size:0x130 scope:global align:8
+rom_myhome4_2_floor_new_model = .data:0x002C01A0; // type:object size:0x148 scope:global align:8
+rom_myhome4_2_floor_new2_model = .data:0x002C02E8; // type:object size:0x148 scope:global align:8
+rom_myhome_pal = .data:0x002C0440; // type:object size:0x20 scope:local align:32
+rom_myhome_window_tex = .data:0x002C0460; // type:object size:0x200 scope:local align:32
+rom_myhome_enter2_tex = .data:0x002C0660; // type:object size:0x800 scope:local align:32
+rom_myhome4_2_wall_v = .data:0x002C0E60; // type:object size:0x730 scope:global align:8
+rom_myhome4_2_wall_model = .data:0x002C1590; // type:object size:0x190 scope:global align:8
+rom_myhome4_2_wall_new_model = .data:0x002C1720; // type:object size:0x190 scope:global align:8
+rom_myhome4_2_wall_new2_model = .data:0x002C18B0; // type:object size:0x190 scope:global align:8
+rom_myhome_ug_pal = .data:0x002C1A40; // type:object size:0x20 scope:global align:32
+rom_myhome_pal = .data:0x002C1A60; // type:object size:0x20 scope:local align:32
+rom_myhome_ugf1_tex = .data:0x002C1A80; // type:object size:0x800 scope:global align:32
+rom_myhome_enter2_tex = .data:0x002C2280; // type:object size:0x800 scope:local align:32
+rom_myhome_ugw1_tex = .data:0x002C2A80; // type:object size:0x800 scope:global align:32
+rom_myhome_ugw2_tex = .data:0x002C3280; // type:object size:0x800 scope:global align:32
+rom_myhome_ug_v = .data:0x002C3A80; // type:object size:0x980 scope:global align:8
+rom_myhome_ug_model = .data:0x002C4400; // type:object size:0x1D0 scope:global align:8
+cKF_ckcb_r_furniture_pull_tbl = .data:0x002C45D0; // type:object size:0x1 scope:global align:4
+cKF_kn_furniture_pull_tbl = .data:0x002C45D4; // type:object size:0x2 scope:global align:4
+cKF_c_furniture_pull_tbl = .data:0x002C45D8; // type:object size:0xA scope:global align:4
+cKF_ds_furniture_pull_tbl = .data:0x002C45E4; // type:object size:0x84 scope:global align:4
+cKF_ba_r_furniture_pull = .data:0x002C4668; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_furniture_push_tbl = .data:0x002C4680; // type:object size:0x1 scope:global align:4
+cKF_kn_furniture_push_tbl = .data:0x002C4684; // type:object size:0x2 scope:global align:4
+cKF_c_furniture_push_tbl = .data:0x002C4688; // type:object size:0xA scope:global align:4
+cKF_ds_furniture_push_tbl = .data:0x002C4694; // type:object size:0x84 scope:global align:4
+cKF_ba_r_furniture_push = .data:0x002C4718; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_furniture_stop_tbl = .data:0x002C4730; // type:object size:0x1 scope:global align:4
+cKF_c_furniture_stop_tbl = .data:0x002C4734; // type:object size:0xC scope:global align:4
+cKF_ba_r_furniture_stop = .data:0x002C4740; // type:object size:0x14 scope:global align:4
+cKF_je_r_furniture_stop_tbl = .data:0x002C4754; // type:object size:0xC scope:global align:4
+cKF_bs_r_furniture_stop = .data:0x002C4760; // type:object size:0x8 scope:global align:4
+NEEDLEWORK_info = .data:0x002C4768; // type:object size:0x48 scope:global align:4
+NEEDLEWORK_player_data = .data:0x002C47B0; // type:object size:0x10 scope:global align:4
+NEEDLEWORK_ctrl_actor_data = .data:0x002C47C0; // type:object size:0x18 scope:global align:4
+NEEDLEWORK_actor_data = .data:0x002C47D8; // type:object size:0x30 scope:global align:4
+NEEDLEWORK_object_bank = .data:0x002C4808; // type:object size:0x2 scope:global align:4
+NEEDLEWORK_door_data = .data:0x002C480C; // type:object size:0x14 scope:global align:4
+npc_room01_info = .data:0x002C4820; // type:object size:0x48 scope:global align:4
+NPC_ROOM01_player_data = .data:0x002C4868; // type:object size:0x10 scope:global align:4
+NPC_ROOM01_ctrl_actor_data = .data:0x002C4878; // type:object size:0x18 scope:global align:4
+NPC_ROOM01_actor_data = .data:0x002C4890; // type:object size:0x20 scope:global align:4
+NPC_ROOM01_object_bank = .data:0x002C48B0; // type:object size:0x2 scope:global align:4
+NPC_ROOM01_door_data = .data:0x002C48B4; // type:object size:0x14 scope:global align:4
+npc_room_island_info = .data:0x002C48C8; // type:object size:0x48 scope:global align:4
+NPC_ROOM_ISLAND_player_data = .data:0x002C4910; // type:object size:0x10 scope:global align:4
+NPC_ROOM_ISLAND_ctrl_actor_data = .data:0x002C4920; // type:object size:0x18 scope:global align:4
+NPC_ROOM_ISLAND_actor_data = .data:0x002C4938; // type:object size:0x20 scope:global align:4
+NPC_ROOM_ISLAND_object_bank = .data:0x002C4958; // type:object size:0x2 scope:global align:4
+NPC_ROOM_ISLAND_door_data = .data:0x002C495C; // type:object size:0x14 scope:global align:4
+hgh_1_v = .data:0x002C4970; // type:object size:0x1CA0 scope:global align:8
+head_hgh_model = .data:0x002C6610; // type:object size:0x2E0 scope:global align:8
+mouth_hgh_model = .data:0x002C68F0; // type:object size:0x90 scope:global align:8
+Rarm2_hgh_model = .data:0x002C6980; // type:object size:0x88 scope:global align:8
+Rarm1_hgh_model = .data:0x002C6A08; // type:object size:0x78 scope:global align:8
+Larm2_hgh_model = .data:0x002C6A80; // type:object size:0x88 scope:global align:8
+Larm1_hgh_model = .data:0x002C6B08; // type:object size:0x78 scope:global align:8
+chest_hgh_model = .data:0x002C6B80; // type:object size:0x128 scope:global align:8
+tail1_hgh_model = .data:0x002C6CA8; // type:object size:0x80 scope:global align:8
+tail2_hgh_model = .data:0x002C6D28; // type:object size:0x88 scope:global align:8
+Rfoot2_hgh_model = .data:0x002C6DB0; // type:object size:0x80 scope:global align:8
+Rfoot1_hgh_model = .data:0x002C6E30; // type:object size:0x58 scope:global align:8
+Lfoot2_hgh_model = .data:0x002C6E88; // type:object size:0x80 scope:global align:8
+Lfoot1_hgh_model = .data:0x002C6F08; // type:object size:0x58 scope:global align:8
+base_hgh_model = .data:0x002C6F60; // type:object size:0x70 scope:global align:8
+cKF_je_r_hgh_1_tbl = .data:0x002C6FD0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_hgh_1 = .data:0x002C7108; // type:object size:0x8 scope:global align:4
+hgh_1_pal = .data:0x002C7120; // type:object size:0x20 scope:global align:32
+hgh_1_eye1_TA_tex_txt = .data:0x002C7140; // type:object size:0x100 scope:global align:32
+hgh_1_eye2_TA_tex_txt = .data:0x002C7240; // type:object size:0x100 scope:global align:32
+hgh_1_eye3_TA_tex_txt = .data:0x002C7340; // type:object size:0x100 scope:global align:32
+hgh_1_eye4_TA_tex_txt = .data:0x002C7440; // type:object size:0x100 scope:global align:32
+hgh_1_eye5_TA_tex_txt = .data:0x002C7540; // type:object size:0x100 scope:global align:32
+hgh_1_eye6_TA_tex_txt = .data:0x002C7640; // type:object size:0x100 scope:global align:32
+hgh_1_eye7_TA_tex_txt = .data:0x002C7740; // type:object size:0x100 scope:global align:32
+hgh_1_eye8_TA_tex_txt = .data:0x002C7840; // type:object size:0x100 scope:global align:32
+hgh_1_tmem_txt = .data:0x002C7940; // type:object size:0x6C0 scope:global align:32
+hgs_1_v = .data:0x002C8000; // type:object size:0x1C80 scope:global align:8
+head_hgs_model = .data:0x002C9C80; // type:object size:0x2E0 scope:global align:8
+mouth_hgs_model = .data:0x002C9F60; // type:object size:0x90 scope:global align:8
+Rarm2_hgs_model = .data:0x002C9FF0; // type:object size:0x88 scope:global align:8
+Rarm1_hgs_model = .data:0x002CA078; // type:object size:0x78 scope:global align:8
+Larm2_hgs_model = .data:0x002CA0F0; // type:object size:0x88 scope:global align:8
+Larm1_hgs_model = .data:0x002CA178; // type:object size:0x78 scope:global align:8
+chest_hgs_model = .data:0x002CA1F0; // type:object size:0x128 scope:global align:8
+tail1_hgs_model = .data:0x002CA318; // type:object size:0x80 scope:global align:8
+tail2_hgs_model = .data:0x002CA398; // type:object size:0x88 scope:global align:8
+Rfoot2_hgs_model = .data:0x002CA420; // type:object size:0x80 scope:global align:8
+Rfoot1_hgs_model = .data:0x002CA4A0; // type:object size:0x58 scope:global align:8
+Lfoot2_hgs_model = .data:0x002CA4F8; // type:object size:0x80 scope:global align:8
+Lfoot1_hgs_model = .data:0x002CA578; // type:object size:0x58 scope:global align:8
+base_hgs_model = .data:0x002CA5D0; // type:object size:0x70 scope:global align:8
+cKF_je_r_hgs_1_tbl = .data:0x002CA640; // type:object size:0x138 scope:global align:4
+cKF_bs_r_hgs_1 = .data:0x002CA778; // type:object size:0x8 scope:global align:4
+hgs_1_pal = .data:0x002CA780; // type:object size:0x20 scope:global align:32
+hgs_1_eye1_TA_tex_txt = .data:0x002CA7A0; // type:object size:0x100 scope:global align:32
+hgs_1_eye2_TA_tex_txt = .data:0x002CA8A0; // type:object size:0x100 scope:global align:32
+hgs_1_eye3_TA_tex_txt = .data:0x002CA9A0; // type:object size:0x100 scope:global align:32
+hgs_1_eye4_TA_tex_txt = .data:0x002CAAA0; // type:object size:0x100 scope:global align:32
+hgs_1_eye5_TA_tex_txt = .data:0x002CABA0; // type:object size:0x100 scope:global align:32
+hgs_1_eye6_TA_tex_txt = .data:0x002CACA0; // type:object size:0x100 scope:global align:32
+hgs_1_eye7_TA_tex_txt = .data:0x002CADA0; // type:object size:0x100 scope:global align:32
+hgs_1_eye8_TA_tex_txt = .data:0x002CAEA0; // type:object size:0x100 scope:global align:32
+hgs_1_tmem_txt = .data:0x002CAFA0; // type:object size:0x6C0 scope:global align:32
+cKF_ckcb_r_npc_1_a1_tbl = .data:0x002CB660; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a1_tbl = .data:0x002CB67C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_a1_tbl = .data:0x002CB6E8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_a1_tbl = .data:0x002CB720; // type:object size:0x366 scope:global align:4
+npc_1_a10_tex_index = .data:0x002CBA88; // type:object size:0x9 scope:global align:4
+npc_1_a11_tex_index = .data:0x002CBA94; // type:object size:0x9 scope:global align:4
+cKF_ba_r_npc_1_a1 = .data:0x002CBAA0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a2_tbl = .data:0x002CBAE0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a2_tbl = .data:0x002CBAFC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_a2_tbl = .data:0x002CBB68; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_a2_tbl = .data:0x002CBBA0; // type:object size:0x30C scope:global align:4
+cKF_ba_r_npc_1_a2 = .data:0x002CBEAC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a2_r1_tbl = .data:0x002CBEF0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a2_r1_tbl = .data:0x002CBF0C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_a2_r1_tbl = .data:0x002CBF78; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_a2_r1_tbl = .data:0x002CBFB0; // type:object size:0x2EE scope:global align:4
+npc_1_a_r10_tex_index = .data:0x002CC2A0; // type:object size:0x9 scope:local align:4
+npc_1_a_r11_tex_index = .data:0x002CC2AC; // type:object size:0x9 scope:local align:4
+cKF_ba_r_npc_1_a2_r1 = .data:0x002CC2B8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a_f1_tbl = .data:0x002CC2F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a_f1_tbl = .data:0x002CC314; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_a_f1_tbl = .data:0x002CC380; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_a_f1_tbl = .data:0x002CC3B8; // type:object size:0x2CA scope:global align:4
+npc_1_a_f10_tex_index = .data:0x002CC684; // type:object size:0x9 scope:global align:4
+npc_1_a_f11_tex_index = .data:0x002CC690; // type:object size:0x9 scope:global align:4
+cKF_ba_r_npc_1_a_f1 = .data:0x002CC69C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a_f2_tbl = .data:0x002CC6E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a_f2_tbl = .data:0x002CC6FC; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_a_f2_tbl = .data:0x002CC764; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_a_f2_tbl = .data:0x002CC7A0; // type:object size:0x2F4 scope:global align:4
+cKF_ba_r_npc_1_a_f2 = .data:0x002CCA94; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a_r1_tbl = .data:0x002CCAD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a_r1_tbl = .data:0x002CCAF4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_a_r1_tbl = .data:0x002CCB60; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_a_r1_tbl = .data:0x002CCB98; // type:object size:0x2EE scope:global align:4
+npc_1_a_r10_tex_index = .data:0x002CCE88; // type:object size:0x9 scope:local align:4
+npc_1_a_r11_tex_index = .data:0x002CCE94; // type:object size:0x9 scope:local align:4
+cKF_ba_r_npc_1_a_r1 = .data:0x002CCEA0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_a_r2_tbl = .data:0x002CCEE0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_a_r2_tbl = .data:0x002CCEFC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_a_r2_tbl = .data:0x002CCF68; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_a_r2_tbl = .data:0x002CCFA0; // type:object size:0x2D0 scope:global align:4
+cKF_ba_r_npc_1_a_r2 = .data:0x002CD270; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aisatu1_tbl = .data:0x002CD2B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aisatu1_tbl = .data:0x002CD2CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aisatu1_tbl = .data:0x002CD338; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aisatu1_tbl = .data:0x002CD370; // type:object size:0x516 scope:global align:4
+npc_1_aisatu10_tex_index = .data:0x002CD888; // type:object size:0x1F scope:global align:4
+npc_1_aisatu11_tex_index = .data:0x002CD8A8; // type:object size:0x1F scope:global align:4
+cKF_ba_r_npc_1_aisatu1 = .data:0x002CD8C8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aisatu2_tbl = .data:0x002CD908; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aisatu2_tbl = .data:0x002CD924; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aisatu2_tbl = .data:0x002CD990; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aisatu2_tbl = .data:0x002CD9C8; // type:object size:0x426 scope:global align:4
+npc_1_aisatu20_tex_index = .data:0x002CDDF0; // type:object size:0x1F scope:global align:4
+npc_1_aisatu21_tex_index = .data:0x002CDE10; // type:object size:0x1F scope:global align:4
+cKF_ba_r_npc_1_aisatu2 = .data:0x002CDE30; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aisatu3_tbl = .data:0x002CDE70; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aisatu3_tbl = .data:0x002CDE8C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aisatu3_tbl = .data:0x002CDEF8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aisatu3_tbl = .data:0x002CDF30; // type:object size:0x4EC scope:global align:4
+npc_1_aisatu30_tex_index = .data:0x002CE41C; // type:object size:0x1F scope:global align:4
+npc_1_aisatu31_tex_index = .data:0x002CE43C; // type:object size:0x1F scope:global align:4
+cKF_ba_r_npc_1_aisatu3 = .data:0x002CE45C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aisatu4_tbl = .data:0x002CE4A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aisatu4_tbl = .data:0x002CE4BC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aisatu4_tbl = .data:0x002CE528; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aisatu4_tbl = .data:0x002CE560; // type:object size:0x444 scope:global align:4
+npc_1_aisatu40_tex_index = .data:0x002CE9A4; // type:object size:0x1F scope:global align:4
+npc_1_aisatu41_tex_index = .data:0x002CE9C4; // type:object size:0x1F scope:global align:4
+lfoot_se_chk_pat = .data:0x002CE9E4; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002CE9E8; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002CE9F0; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002CE9F4; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002CE9FC; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_aisatu4 = .data:0x002CEA0C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_akireru_r1_tbl = .data:0x002CEA50; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_akireru_r1_tbl = .data:0x002CEA6C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_akireru_r1_tbl = .data:0x002CEAD8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_akireru_r1_tbl = .data:0x002CEB10; // type:object size:0x300 scope:global align:4
+npc_1_akireru_r10_tex_index = .data:0x002CEE10; // type:object size:0x16 scope:global align:4
+npc_1_akireru_r11_tex_index = .data:0x002CEE28; // type:object size:0x16 scope:global align:4
+cKF_ba_r_npc_1_akireru_r1 = .data:0x002CEE40; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_akireru_r2_tbl = .data:0x002CEE80; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_akireru_r2_tbl = .data:0x002CEE9C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_akireru_r2 = .data:0x002CEF40; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru1_tbl = .data:0x002CEF80; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru1_tbl = .data:0x002CEF9C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru1_tbl = .data:0x002CF008; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru1_tbl = .data:0x002CF040; // type:object size:0x390 scope:global align:4
+npc_1_aseru11_tex_index = .data:0x002CF3D0; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_aseru1 = .data:0x002CF3E0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru2_tbl = .data:0x002CF420; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru2_tbl = .data:0x002CF43C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru2_tbl = .data:0x002CF4A8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru2_tbl = .data:0x002CF4E0; // type:object size:0x546 scope:global align:4
+cKF_ba_r_npc_1_aseru2 = .data:0x002CFA28; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru_f1_tbl = .data:0x002CFA68; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru_f1_tbl = .data:0x002CFA84; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru_f1_tbl = .data:0x002CFAF0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru_f1_tbl = .data:0x002CFB28; // type:object size:0x390 scope:global align:4
+npc_1_aseru_f11_tex_index = .data:0x002CFEB8; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_aseru_f1 = .data:0x002CFEC8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru_f2_tbl = .data:0x002CFF08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru_f2_tbl = .data:0x002CFF24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru_f2_tbl = .data:0x002CFF90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru_f2_tbl = .data:0x002CFFC8; // type:object size:0x582 scope:global align:4
+cKF_ba_r_npc_1_aseru_f2 = .data:0x002D054C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru_i1_tbl = .data:0x002D0590; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru_i1_tbl = .data:0x002D05AC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru_i1_tbl = .data:0x002D0618; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru_i1_tbl = .data:0x002D0650; // type:object size:0x390 scope:global align:4
+npc_1_aseru_i11_tex_index = .data:0x002D09E0; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_aseru_i1 = .data:0x002D09F0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_aseru_i2_tbl = .data:0x002D0A30; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_aseru_i2_tbl = .data:0x002D0A4C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_aseru_i2_tbl = .data:0x002D0AB8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_aseru_i2_tbl = .data:0x002D0AF0; // type:object size:0x4FE scope:global align:4
+cKF_ba_r_npc_1_aseru_i2 = .data:0x002D0FF0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_buruburu1_tbl = .data:0x002D1030; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_buruburu1_tbl = .data:0x002D104C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_buruburu1_tbl = .data:0x002D10B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_buruburu1_tbl = .data:0x002D10F0; // type:object size:0x348 scope:global align:4
+npc_1_buruburu10_tex_index = .data:0x002D1438; // type:object size:0x13 scope:global align:4
+npc_1_buruburu11_tex_index = .data:0x002D144C; // type:object size:0x13 scope:global align:4
+cKF_ba_r_npc_1_buruburu1 = .data:0x002D1460; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_buruburu2_tbl = .data:0x002D14A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_buruburu2_tbl = .data:0x002D14BC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_buruburu2_tbl = .data:0x002D1528; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_buruburu2_tbl = .data:0x002D1560; // type:object size:0x426 scope:global align:4
+cKF_ba_r_npc_1_buruburu2 = .data:0x002D1988; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_contract1_tbl = .data:0x002D19C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_contract1_tbl = .data:0x002D19E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_contract1_tbl = .data:0x002D1A50; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_contract1_tbl = .data:0x002D1A88; // type:object size:0x2E2 scope:global align:4
+cKF_ba_r_npc_1_contract1 = .data:0x002D1D6C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_contract2_tbl = .data:0x002D1DB0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_contract2_tbl = .data:0x002D1DCC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_contract2_tbl = .data:0x002D1E38; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_contract2_tbl = .data:0x002D1E70; // type:object size:0x3F6 scope:global align:4
+npc_1_contract20_tex_index = .data:0x002D2268; // type:object size:0x12 scope:global align:4
+cKF_ba_r_npc_1_contract2 = .data:0x002D227C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_contract3_tbl = .data:0x002D22C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_contract3_tbl = .data:0x002D22DC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_contract3_tbl = .data:0x002D2348; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_contract3_tbl = .data:0x002D2380; // type:object size:0x5A6 scope:global align:4
+npc_1_contract30_tex_index = .data:0x002D2928; // type:object size:0x1D scope:global align:4
+cKF_ba_r_npc_1_contract3 = .data:0x002D2948; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_not_contract1_tbl = .data:0x002D2988; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_not_contract1_tbl = .data:0x002D29A4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_not_contract1_tbl = .data:0x002D2A10; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_not_contract1_tbl = .data:0x002D2A48; // type:object size:0x4F2 scope:global align:4
+npc_1_not_contract10_tex_index = .data:0x002D2F3C; // type:object size:0x1D scope:global align:4
+cKF_ba_r_npc_1_not_contract1 = .data:0x002D2F5C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_cracker_count1_tbl = .data:0x002D2FA0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_cracker_count1_tbl = .data:0x002D2FBC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_cracker_count1_tbl = .data:0x002D3028; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_cracker_count1_tbl = .data:0x002D3060; // type:object size:0x360 scope:global align:4
+cKF_ba_r_npc_1_cracker_count1 = .data:0x002D33C0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_cracker_fire1_tbl = .data:0x002D3400; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_cracker_fire1_tbl = .data:0x002D341C; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_cracker_fire1_tbl = .data:0x002D3484; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_cracker_fire1_tbl = .data:0x002D34C0; // type:object size:0x558 scope:global align:4
+npc_1_cracker_fire10_tex_index = .data:0x002D3A18; // type:object size:0x1F scope:global align:4
+npc_1_cracker_fire11_tex_index = .data:0x002D3A38; // type:object size:0x1F scope:global align:4
+other_se_chk_pat = .data:0x002D3A58; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002D3A5C; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002D3A68; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_cracker_fire1 = .data:0x002D3A78; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_cracker_run1_tbl = .data:0x002D3AB8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_cracker_run1_tbl = .data:0x002D3AD4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_cracker_run1_tbl = .data:0x002D3B40; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_cracker_run1_tbl = .data:0x002D3B78; // type:object size:0x3DE scope:global align:4
+cKF_ba_r_npc_1_cracker_run1 = .data:0x002D3F58; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_cracker_wait1_tbl = .data:0x002D3F98; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_cracker_wait1_tbl = .data:0x002D3FB4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_cracker_wait1_tbl = .data:0x002D4020; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_cracker_wait1_tbl = .data:0x002D4058; // type:object size:0x6B4 scope:global align:4
+cKF_ba_r_npc_1_cracker_wait1 = .data:0x002D470C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_getup_seg1_tbl = .data:0x002D4750; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_getup_seg1_tbl = .data:0x002D476C; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_getup_seg1_tbl = .data:0x002D47D4; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_getup_seg1_tbl = .data:0x002D4810; // type:object size:0x576 scope:global align:4
+npc_1_getup_seg11_tex_index = .data:0x002D4D88; // type:object size:0x29 scope:global align:4
+cKF_ba_r_npc_1_getup_seg1 = .data:0x002D4DB4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_getup_wait_seg1_tbl = .data:0x002D4DF8; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_getup_wait_seg1_tbl = .data:0x002D4E14; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_getup_wait_seg1 = .data:0x002D4EB8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_piku_seg1_tbl = .data:0x002D4EF8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_piku_seg1_tbl = .data:0x002D4F14; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_piku_seg1_tbl = .data:0x002D4F80; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_piku_seg1_tbl = .data:0x002D4FB8; // type:object size:0x49E scope:global align:4
+npc_1_piku_seg11_tex_index = .data:0x002D5458; // type:object size:0x47 scope:global align:4
+cKF_ba_r_npc_1_piku_seg1 = .data:0x002D54A0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_delivery1_tbl = .data:0x002D54E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_delivery1_tbl = .data:0x002D54FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_delivery1_tbl = .data:0x002D5568; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_delivery1_tbl = .data:0x002D55A0; // type:object size:0xAC2 scope:global align:4
+lfoot_se_chk_pat = .data:0x002D6064; // type:object size:0x10 scope:local align:4
+lfoot_se_dt = .data:0x002D6074; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002D607C; // type:object size:0xC scope:local align:4
+rfoot_se_dt = .data:0x002D6088; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002D6090; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_delivery1 = .data:0x002D60A0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_fly1_tbl = .data:0x002D60E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_fly1_tbl = .data:0x002D60FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_fly1_tbl = .data:0x002D6168; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_fly1_tbl = .data:0x002D61A0; // type:object size:0x38A scope:global align:4
+other_se_chk_pat = .data:0x002D652C; // type:object size:0x8 scope:local align:4
+other_se_dt = .data:0x002D6534; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002D6540; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_fly1 = .data:0x002D6550; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_flyaway1_tbl = .data:0x002D6590; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_flyaway1_tbl = .data:0x002D65AC; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_flyaway1_tbl = .data:0x002D6614; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_flyaway1_tbl = .data:0x002D6650; // type:object size:0x6AE scope:global align:4
+other_se_chk_pat = .data:0x002D6D00; // type:object size:0x14 scope:local align:4
+other_se_dt = .data:0x002D6D14; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002D6D20; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_flyaway1 = .data:0x002D6D30; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kyoro1_tbl = .data:0x002D6D70; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kyoro1_tbl = .data:0x002D6D8C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kyoro1_tbl = .data:0x002D6DF8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kyoro1_tbl = .data:0x002D6E30; // type:object size:0x44A scope:global align:4
+cKF_ba_r_npc_1_kyoro1 = .data:0x002D727C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_landing1_tbl = .data:0x002D72C0; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_landing1_tbl = .data:0x002D72DC; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_landing1 = .data:0x002D7380; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_landing2_tbl = .data:0x002D73C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_landing2_tbl = .data:0x002D73DC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_landing2_tbl = .data:0x002D7448; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_landing2_tbl = .data:0x002D7480; // type:object size:0x390 scope:global align:4
+other_se_chk_pat = .data:0x002D7810; // type:object size:0x8 scope:local align:4
+other_se_dt = .data:0x002D7818; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002D7824; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_landing2 = .data:0x002D7834; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_landing3_tbl = .data:0x002D7878; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_landing3_tbl = .data:0x002D7894; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_landing3_tbl = .data:0x002D7900; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_landing3_tbl = .data:0x002D7938; // type:object size:0x408 scope:global align:4
+other_se_chk_pat = .data:0x002D7D40; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002D7D44; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002D7D50; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_landing3 = .data:0x002D7D60; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gaaan1_tbl = .data:0x002D7DA0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gaaan1_tbl = .data:0x002D7DBC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gaaan1_tbl = .data:0x002D7E28; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gaaan1_tbl = .data:0x002D7E60; // type:object size:0x3F6 scope:global align:4
+npc_1_gaaan10_tex_index = .data:0x002D8258; // type:object size:0xB scope:global align:4
+npc_1_gaaan11_tex_index = .data:0x002D8264; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_gaaan1 = .data:0x002D8270; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gaaan2_tbl = .data:0x002D82B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gaaan2_tbl = .data:0x002D82CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gaaan2_tbl = .data:0x002D8338; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gaaan2_tbl = .data:0x002D8370; // type:object size:0x2DC scope:global align:4
+cKF_ba_r_npc_1_gaaan2 = .data:0x002D864C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gekido_r1_tbl = .data:0x002D8690; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gekido_r1_tbl = .data:0x002D86AC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gekido_r1_tbl = .data:0x002D8718; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gekido_r1_tbl = .data:0x002D8750; // type:object size:0x2A6 scope:global align:4
+npc_1_gekido_r10_tex_index = .data:0x002D89F8; // type:object size:0x6 scope:global align:4
+npc_1_gekido_r11_tex_index = .data:0x002D8A00; // type:object size:0x6 scope:global align:4
+cKF_ba_r_npc_1_gekido_r1 = .data:0x002D8A08; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gekido_r2_tbl = .data:0x002D8A48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gekido_r2_tbl = .data:0x002D8A64; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_gekido_r2_tbl = .data:0x002D8ACC; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_gekido_r2_tbl = .data:0x002D8B08; // type:object size:0x47A scope:global align:4
+npc_1_gekido_r21_tex_index = .data:0x002D8F84; // type:object size:0x1F scope:global align:4
+cKF_ba_r_npc_1_gekido_r2 = .data:0x002D8FA4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_estimate_f1_tbl = .data:0x002D8FE8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_estimate_f1_tbl = .data:0x002D9004; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_estimate_f1_tbl = .data:0x002D9070; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_estimate_f1_tbl = .data:0x002D90A8; // type:object size:0x8E8 scope:global align:4
+npc_1_estimate_f11_tex_index = .data:0x002D9990; // type:object size:0x51 scope:global align:4
+cKF_ba_r_npc_1_estimate_f1 = .data:0x002D99E4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get1_tbl = .data:0x002D9A28; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get1_tbl = .data:0x002D9A44; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get1_tbl = .data:0x002D9AB0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get1_tbl = .data:0x002D9AE8; // type:object size:0x2A6 scope:global align:4
+cKF_ba_r_npc_1_get1 = .data:0x002D9D90; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_change1_tbl = .data:0x002D9DD0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_change1_tbl = .data:0x002D9DEC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_change1_tbl = .data:0x002D9E58; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_change1_tbl = .data:0x002D9E90; // type:object size:0x88E scope:global align:4
+npc_1_get_change10_tex_index = .data:0x002DA720; // type:object size:0x71 scope:global align:4
+npc_1_get_change11_tex_index = .data:0x002DA794; // type:object size:0x71 scope:global align:4
+cKF_ba_r_npc_1_get_change1 = .data:0x002DA808; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_eat1_tbl = .data:0x002DA848; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_eat1_tbl = .data:0x002DA864; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_eat1_tbl = .data:0x002DA8D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_eat1_tbl = .data:0x002DA908; // type:object size:0x6D2 scope:global align:4
+npc_1_get_eat11_tex_index = .data:0x002DAFDC; // type:object size:0x3B scope:global align:4
+other_se_chk_pat = .data:0x002DB018; // type:object size:0x10 scope:local align:4
+other_se_dt = .data:0x002DB028; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002DB034; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_get_eat1 = .data:0x002DB044; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_f1_tbl = .data:0x002DB088; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_f1_tbl = .data:0x002DB0A4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_f1_tbl = .data:0x002DB110; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_f1_tbl = .data:0x002DB148; // type:object size:0x2A6 scope:global align:4
+cKF_ba_r_npc_1_get_f1 = .data:0x002DB3F0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_pull1_tbl = .data:0x002DB430; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_pull1_tbl = .data:0x002DB44C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_pull1_tbl = .data:0x002DB4B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_pull1_tbl = .data:0x002DB4F0; // type:object size:0x312 scope:global align:4
+cKF_ba_r_npc_1_get_pull1 = .data:0x002DB804; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_pull_f1_tbl = .data:0x002DB848; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_pull_f1_tbl = .data:0x002DB864; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_pull_f1_tbl = .data:0x002DB8D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_pull_f1_tbl = .data:0x002DB908; // type:object size:0x2BE scope:global align:4
+cKF_ba_r_npc_1_get_pull_f1 = .data:0x002DBBC8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_pull_wait1_tbl = .data:0x002DBC08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_pull_wait1_tbl = .data:0x002DBC24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_pull_wait1_tbl = .data:0x002DBC90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_pull_wait1_tbl = .data:0x002DBCC8; // type:object size:0x318 scope:global align:4
+cKF_ba_r_npc_1_get_pull_wait1 = .data:0x002DBFE0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_pull_wait_f1_tbl = .data:0x002DC020; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_pull_wait_f1_tbl = .data:0x002DC03C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_pull_wait_f1_tbl = .data:0x002DC0A8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_pull_wait_f1_tbl = .data:0x002DC0E0; // type:object size:0x324 scope:global align:4
+cKF_ba_r_npc_1_get_pull_wait_f1 = .data:0x002DC404; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_putaway1_tbl = .data:0x002DC448; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_putaway1_tbl = .data:0x002DC464; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_putaway1_tbl = .data:0x002DC4D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_putaway1_tbl = .data:0x002DC508; // type:object size:0x522 scope:global align:4
+cKF_ba_r_npc_1_get_putaway1 = .data:0x002DCA2C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_putaway_f1_tbl = .data:0x002DCA70; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_putaway_f1_tbl = .data:0x002DCA8C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_putaway_f1_tbl = .data:0x002DCAF8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_putaway_f1_tbl = .data:0x002DCB30; // type:object size:0x540 scope:global align:4
+cKF_ba_r_npc_1_get_putaway_f1 = .data:0x002DD070; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_return1_tbl = .data:0x002DD0B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_return1_tbl = .data:0x002DD0CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_return1_tbl = .data:0x002DD138; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_return1_tbl = .data:0x002DD170; // type:object size:0x312 scope:global align:4
+cKF_ba_r_npc_1_get_return1 = .data:0x002DD484; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_get_return_f1_tbl = .data:0x002DD4C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_get_return_f1_tbl = .data:0x002DD4E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_get_return_f1_tbl = .data:0x002DD550; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_get_return_f1_tbl = .data:0x002DD588; // type:object size:0x2BE scope:global align:4
+cKF_ba_r_npc_1_get_return_f1 = .data:0x002DD848; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gstwait1_tbl = .data:0x002DD888; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gstwait1_tbl = .data:0x002DD8A4; // type:object size:0x30 scope:global align:4
+cKF_c_npc_1_gstwait1_tbl = .data:0x002DD8D4; // type:object size:0x72 scope:global align:4
+cKF_ds_npc_1_gstwait1_tbl = .data:0x002DD948; // type:object size:0x294 scope:global align:4
+cKF_ba_r_npc_1_gstwait1 = .data:0x002DDBDC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_goukyu1_tbl = .data:0x002DDC20; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_goukyu1_tbl = .data:0x002DDC3C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_goukyu1_tbl = .data:0x002DDCA8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_goukyu1_tbl = .data:0x002DDCE0; // type:object size:0x312 scope:global align:4
+npc_1_goukyu10_tex_index = .data:0x002DDFF4; // type:object size:0x10 scope:global align:4
+npc_1_goukyu11_tex_index = .data:0x002DE004; // type:object size:0x10 scope:global align:4
+cKF_ba_r_npc_1_goukyu1 = .data:0x002DE014; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_goukyu2_tbl = .data:0x002DE058; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_goukyu2_tbl = .data:0x002DE074; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_goukyu2_tbl = .data:0x002DE0E0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_goukyu2_tbl = .data:0x002DE118; // type:object size:0x2D6 scope:global align:4
+npc_1_goukyu20_tex_index = .data:0x002DE3F0; // type:object size:0x9 scope:global align:4
+cKF_ba_r_npc_1_goukyu2 = .data:0x002DE3FC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha1_tbl = .data:0x002DE440; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha1_tbl = .data:0x002DE45C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha1_tbl = .data:0x002DE4C8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha1_tbl = .data:0x002DE500; // type:object size:0x37E scope:global align:4
+npc_1_ha10_tex_index = .data:0x002DE880; // type:object size:0x8 scope:global align:4
+npc_1_ha11_tex_index = .data:0x002DE888; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_ha1 = .data:0x002DE890; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha2_tbl = .data:0x002DE8D0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha2_tbl = .data:0x002DE8EC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha2_tbl = .data:0x002DE958; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha2_tbl = .data:0x002DE990; // type:object size:0x306 scope:global align:4
+cKF_ba_r_npc_1_ha2 = .data:0x002DEC98; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_e1_tbl = .data:0x002DECD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_e1_tbl = .data:0x002DECF4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_e1_tbl = .data:0x002DED60; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_e1_tbl = .data:0x002DED98; // type:object size:0x318 scope:global align:4
+npc_1_ha_e10_tex_index = .data:0x002DF0B0; // type:object size:0x8 scope:global align:4
+npc_1_ha_e11_tex_index = .data:0x002DF0B8; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_ha_e1 = .data:0x002DF0C0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_e2_tbl = .data:0x002DF100; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_e2_tbl = .data:0x002DF11C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_e2_tbl = .data:0x002DF188; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_e2_tbl = .data:0x002DF1C0; // type:object size:0x2BE scope:global align:4
+cKF_ba_r_npc_1_ha_e2 = .data:0x002DF480; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_f1_tbl = .data:0x002DF4C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_f1_tbl = .data:0x002DF4DC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_f1_tbl = .data:0x002DF548; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_f1_tbl = .data:0x002DF580; // type:object size:0x31E scope:global align:4
+npc_1_ha_f10_tex_index = .data:0x002DF8A0; // type:object size:0x8 scope:global align:4
+npc_1_ha_f11_tex_index = .data:0x002DF8A8; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_ha_f1 = .data:0x002DF8B0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_f2_tbl = .data:0x002DF8F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_f2_tbl = .data:0x002DF90C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_f2_tbl = .data:0x002DF978; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_f2_tbl = .data:0x002DF9B0; // type:object size:0x312 scope:global align:4
+cKF_ba_r_npc_1_ha_f2 = .data:0x002DFCC4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_i1_tbl = .data:0x002DFD08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_i1_tbl = .data:0x002DFD24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_i1_tbl = .data:0x002DFD90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_i1_tbl = .data:0x002DFDC8; // type:object size:0x2F4 scope:global align:4
+npc_1_ha_i10_tex_index = .data:0x002E00BC; // type:object size:0x8 scope:global align:4
+npc_1_ha_i11_tex_index = .data:0x002E00C4; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_ha_i1 = .data:0x002E00CC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_i2_tbl = .data:0x002E0110; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_i2_tbl = .data:0x002E012C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ha_i2_tbl = .data:0x002E0198; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ha_i2_tbl = .data:0x002E01D0; // type:object size:0x2FA scope:global align:4
+cKF_ba_r_npc_1_ha_i2 = .data:0x002E04CC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_banzai1_tbl = .data:0x002E0510; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_banzai1_tbl = .data:0x002E052C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_banzai1_tbl = .data:0x002E0598; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_banzai1_tbl = .data:0x002E05D0; // type:object size:0x5DC scope:global align:4
+npc_1_banzai10_tex_index = .data:0x002E0BAC; // type:object size:0x1C scope:global align:4
+lfoot_se_chk_pat = .data:0x002E0BC8; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002E0BCC; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002E0BD4; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002E0BD8; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002E0BE0; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_banzai1 = .data:0x002E0BF0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_clap1_tbl = .data:0x002E0C30; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_clap1_tbl = .data:0x002E0C4C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_clap1_tbl = .data:0x002E0CB8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_clap1_tbl = .data:0x002E0CF0; // type:object size:0x342 scope:global align:4
+cKF_ba_r_npc_1_clap1 = .data:0x002E1034; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_utiwa_wait1_tbl = .data:0x002E1078; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_utiwa_wait1_tbl = .data:0x002E1094; // type:object size:0x12 scope:global align:4
+cKF_c_npc_1_utiwa_wait1_tbl = .data:0x002E10A8; // type:object size:0x90 scope:global align:4
+cKF_ds_npc_1_utiwa_wait1_tbl = .data:0x002E1138; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_npc_1_utiwa_wait1 = .data:0x002E11EC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_dance1_tbl = .data:0x002E1230; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_dance1_tbl = .data:0x002E124C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_dance1_tbl = .data:0x002E12B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_dance1_tbl = .data:0x002E12F0; // type:object size:0xA98 scope:global align:4
+cKF_ba_r_npc_1_dance1 = .data:0x002E1D88; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sitdown_clap1_tbl = .data:0x002E1DC8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sitdown_clap1_tbl = .data:0x002E1DE4; // type:object size:0x62 scope:global align:4
+cKF_c_npc_1_sitdown_clap1_tbl = .data:0x002E1E48; // type:object size:0x40 scope:global align:4
+cKF_ds_npc_1_sitdown_clap1_tbl = .data:0x002E1E88; // type:object size:0x51C scope:global align:4
+cKF_ba_r_npc_1_sitdown_clap1 = .data:0x002E23A4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sitdown_drink1_tbl = .data:0x002E23E8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sitdown_drink1_tbl = .data:0x002E2404; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_sitdown_drink1_tbl = .data:0x002E2470; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_sitdown_drink1_tbl = .data:0x002E24A8; // type:object size:0x5EE scope:global align:4
+npc_1_sitdown_drink10_tex_index = .data:0x002E2A98; // type:object size:0x3D scope:global align:4
+npc_1_sitdown_drink11_tex_index = .data:0x002E2AD8; // type:object size:0x3D scope:global align:4
+cKF_ba_r_npc_1_sitdown_drink1 = .data:0x002E2B18; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sitdown_wait1_tbl = .data:0x002E2B58; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sitdown_wait1_tbl = .data:0x002E2B74; // type:object size:0x5A scope:global align:4
+cKF_c_npc_1_sitdown_wait1_tbl = .data:0x002E2BD0; // type:object size:0x48 scope:global align:4
+cKF_ds_npc_1_sitdown_wait1_tbl = .data:0x002E2C18; // type:object size:0x354 scope:global align:4
+cKF_ba_r_npc_1_sitdown_wait1 = .data:0x002E2F6C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy1_tbl = .data:0x002E2FB0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy1_tbl = .data:0x002E2FCC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy1_tbl = .data:0x002E3038; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy1_tbl = .data:0x002E3070; // type:object size:0x28E scope:global align:4
+npc_1_happy10_tex_index = .data:0x002E3300; // type:object size:0xB scope:global align:4
+npc_1_happy11_tex_index = .data:0x002E330C; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_happy1 = .data:0x002E3318; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy2_tbl = .data:0x002E3358; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy2_tbl = .data:0x002E3374; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy2_tbl = .data:0x002E33E0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy2_tbl = .data:0x002E3418; // type:object size:0x564 scope:global align:4
+npc_1_happy20_tex_index = .data:0x002E397C; // type:object size:0x3D scope:global align:4
+cKF_ba_r_npc_1_happy2 = .data:0x002E39BC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy_f1_tbl = .data:0x002E3A00; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy_f1_tbl = .data:0x002E3A1C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy_f1_tbl = .data:0x002E3A88; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy_f1_tbl = .data:0x002E3AC0; // type:object size:0x294 scope:global align:4
+npc_1_happy_f10_tex_index = .data:0x002E3D54; // type:object size:0xB scope:global align:4
+npc_1_happy_f11_tex_index = .data:0x002E3D60; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_happy_f1 = .data:0x002E3D6C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy_f2_tbl = .data:0x002E3DB0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy_f2_tbl = .data:0x002E3DCC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy_f2_tbl = .data:0x002E3E38; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy_f2_tbl = .data:0x002E3E70; // type:object size:0x552 scope:global align:4
+npc_1_happy_f20_tex_index = .data:0x002E43C4; // type:object size:0x3D scope:global align:4
+cKF_ba_r_npc_1_happy_f2 = .data:0x002E4404; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy_i1_tbl = .data:0x002E4448; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy_i1_tbl = .data:0x002E4464; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy_i1_tbl = .data:0x002E44D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy_i1_tbl = .data:0x002E4508; // type:object size:0x294 scope:global align:4
+npc_1_happy_i10_tex_index = .data:0x002E479C; // type:object size:0xB scope:global align:4
+npc_1_happy_i11_tex_index = .data:0x002E47A8; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_happy_i1 = .data:0x002E47B4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_happy_i2_tbl = .data:0x002E47F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_happy_i2_tbl = .data:0x002E4814; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_happy_i2_tbl = .data:0x002E4880; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_happy_i2_tbl = .data:0x002E48B8; // type:object size:0x4AA scope:global align:4
+npc_1_happy_i20_tex_index = .data:0x002E4D64; // type:object size:0x3D scope:global align:4
+cKF_ba_r_npc_1_happy_i2 = .data:0x002E4DA4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate1_tbl = .data:0x002E4DE8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate1_tbl = .data:0x002E4E04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate1_tbl = .data:0x002E4E70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate1_tbl = .data:0x002E4EA8; // type:object size:0x2FA scope:global align:4
+npc_1_hate11_tex_index = .data:0x002E51A4; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_hate1 = .data:0x002E51B4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate2_tbl = .data:0x002E51F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate2_tbl = .data:0x002E5214; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate2_tbl = .data:0x002E5280; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate2_tbl = .data:0x002E52B8; // type:object size:0x2FA scope:global align:4
+cKF_ba_r_npc_1_hate2 = .data:0x002E55B4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_f1_tbl = .data:0x002E55F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_f1_tbl = .data:0x002E5614; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate_f1_tbl = .data:0x002E5680; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate_f1_tbl = .data:0x002E56B8; // type:object size:0x2E8 scope:global align:4
+npc_1_hate_f11_tex_index = .data:0x002E59A0; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_hate_f1 = .data:0x002E59B0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_f2_tbl = .data:0x002E59F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_f2_tbl = .data:0x002E5A0C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate_f2_tbl = .data:0x002E5A78; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate_f2_tbl = .data:0x002E5AB0; // type:object size:0x306 scope:global align:4
+cKF_ba_r_npc_1_hate_f2 = .data:0x002E5DB8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_i1_tbl = .data:0x002E5DF8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_i1_tbl = .data:0x002E5E14; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate_i1_tbl = .data:0x002E5E80; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate_i1_tbl = .data:0x002E5EB8; // type:object size:0x2A6 scope:global align:4
+npc_1_hate_i11_tex_index = .data:0x002E6160; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_hate_i1 = .data:0x002E6170; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_i2_tbl = .data:0x002E61B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_i2_tbl = .data:0x002E61CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hate_i2_tbl = .data:0x002E6238; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hate_i2_tbl = .data:0x002E6270; // type:object size:0x318 scope:global align:4
+cKF_ba_r_npc_1_hate_i2 = .data:0x002E6588; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_omairi1_tbl = .data:0x002E65C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_omairi1_tbl = .data:0x002E65E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_omairi1_tbl = .data:0x002E6650; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_omairi1_tbl = .data:0x002E6688; // type:object size:0x3C0 scope:global align:4
+cKF_ba_r_npc_1_omairi1 = .data:0x002E6A48; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_saisen1_tbl = .data:0x002E6A88; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_saisen1_tbl = .data:0x002E6AA4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_saisen1_tbl = .data:0x002E6B10; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_saisen1_tbl = .data:0x002E6B48; // type:object size:0x732 scope:global align:4
+other_se_chk_pat = .data:0x002E727C; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002E7280; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002E728C; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_saisen1 = .data:0x002E729C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hirameki1_tbl = .data:0x002E72E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hirameki1_tbl = .data:0x002E72FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hirameki1_tbl = .data:0x002E7368; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hirameki1_tbl = .data:0x002E73A0; // type:object size:0x3F6 scope:global align:4
+npc_1_hirameki10_tex_index = .data:0x002E7798; // type:object size:0x13 scope:global align:4
+npc_1_hirameki11_tex_index = .data:0x002E77AC; // type:object size:0x13 scope:global align:4
+cKF_ba_r_npc_1_hirameki1 = .data:0x002E77C0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hirameki2_tbl = .data:0x002E7800; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hirameki2_tbl = .data:0x002E781C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hirameki2_tbl = .data:0x002E7888; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hirameki2_tbl = .data:0x002E78C0; // type:object size:0x348 scope:global align:4
+cKF_ba_r_npc_1_hirameki2 = .data:0x002E7C08; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hyuuu1_tbl = .data:0x002E7C48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hyuuu1_tbl = .data:0x002E7C64; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hyuuu1_tbl = .data:0x002E7CD0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hyuuu1_tbl = .data:0x002E7D08; // type:object size:0x522 scope:global align:4
+npc_1_hyuuu11_tex_index = .data:0x002E822C; // type:object size:0x33 scope:global align:4
+cKF_ba_r_npc_1_hyuuu1 = .data:0x002E8260; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hyuuu2_tbl = .data:0x002E82A0; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_hyuuu2_tbl = .data:0x002E82BC; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_hyuuu2 = .data:0x002E8360; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hyuuu_r1_tbl = .data:0x002E83A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hyuuu_r1_tbl = .data:0x002E83BC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hyuuu_r1_tbl = .data:0x002E8428; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hyuuu_r1_tbl = .data:0x002E8460; // type:object size:0x3D8 scope:global align:4
+npc_1_hyuuu_r11_tex_index = .data:0x002E8838; // type:object size:0x33 scope:global align:4
+cKF_ba_r_npc_1_hyuuu_r1 = .data:0x002E886C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hyuuu_r2_tbl = .data:0x002E88B0; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_hyuuu_r2_tbl = .data:0x002E88CC; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_hyuuu_r2 = .data:0x002E8970; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wipkogu1_tbl = .data:0x002E89B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wipkogu1_tbl = .data:0x002E89CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wipkogu1_tbl = .data:0x002E8A38; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wipkogu1_tbl = .data:0x002E8A70; // type:object size:0x5E8 scope:global align:4
+push_se_chk_pat = .data:0x002E9058; // type:object size:0x4 scope:global align:4
+pull_se_chk_pat = .data:0x002E905C; // type:object size:0x4 scope:global align:4
+other_se_dt = .data:0x002E9060; // type:object size:0x18 scope:local align:4
+se_dt_tbl = .data:0x002E9078; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_wipkogu1 = .data:0x002E9088; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wipwait1_tbl = .data:0x002E90C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wipwait1_tbl = .data:0x002E90E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wipwait1_tbl = .data:0x002E9150; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wipwait1_tbl = .data:0x002E9188; // type:object size:0x4F8 scope:global align:4
+cKF_ba_r_npc_1_wipwait1 = .data:0x002E9680; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wipwait2_tbl = .data:0x002E96C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wipwait2_tbl = .data:0x002E96DC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wipwait2_tbl = .data:0x002E9748; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wipwait2_tbl = .data:0x002E9780; // type:object size:0x49E scope:global align:4
+cKF_ba_r_npc_1_wipwait2 = .data:0x002E9C20; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_keirei1_tbl = .data:0x002E9C60; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_keirei1_tbl = .data:0x002E9C7C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_keirei1_tbl = .data:0x002E9CE8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_keirei1_tbl = .data:0x002E9D20; // type:object size:0x522 scope:global align:4
+npc_1_keirei10_tex_index = .data:0x002EA244; // type:object size:0x1F scope:global align:4
+npc_1_keirei11_tex_index = .data:0x002EA264; // type:object size:0x1F scope:global align:4
+cKF_ba_r_npc_1_keirei1 = .data:0x002EA284; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kieeeei1_tbl = .data:0x002EA2C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kieeeei1_tbl = .data:0x002EA2E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kieeeei1_tbl = .data:0x002EA350; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kieeeei1_tbl = .data:0x002EA388; // type:object size:0x46E scope:global align:4
+npc_1_muka10_tex_index = .data:0x002EA7F8; // type:object size:0xE scope:local align:4
+npc_1_muka11_tex_index = .data:0x002EA808; // type:object size:0xE scope:local align:4
+cKF_ba_r_npc_1_kieeeei1 = .data:0x002EA818; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kieeeei2_tbl = .data:0x002EA858; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kieeeei2_tbl = .data:0x002EA874; // type:object size:0x1C scope:global align:4
+cKF_c_npc_1_kieeeei2_tbl = .data:0x002EA890; // type:object size:0x86 scope:global align:4
+cKF_ds_npc_1_kieeeei2_tbl = .data:0x002EA918; // type:object size:0x18C scope:global align:4
+cKF_ba_r_npc_1_kieeeei2 = .data:0x002EAAA4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gaaan_d1_tbl = .data:0x002EAAE8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gaaan_d1_tbl = .data:0x002EAB04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gaaan_d1_tbl = .data:0x002EAB70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gaaan_d1_tbl = .data:0x002EABA8; // type:object size:0x354 scope:global align:4
+npc_1_gaaan_d10_tex_index = .data:0x002EAEFC; // type:object size:0xB scope:global align:4
+npc_1_gaaan_d11_tex_index = .data:0x002EAF08; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_gaaan_d1 = .data:0x002EAF14; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gaaan_d2_tbl = .data:0x002EAF58; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gaaan_d2_tbl = .data:0x002EAF74; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_gaaan_d2_tbl = .data:0x002EAFDC; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_gaaan_d2_tbl = .data:0x002EB018; // type:object size:0x342 scope:global align:4
+cKF_ba_r_npc_1_gaaan_d2 = .data:0x002EB35C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_d1_tbl = .data:0x002EB3A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_d1_tbl = .data:0x002EB3BC; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_ha_d1_tbl = .data:0x002EB424; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_ha_d1_tbl = .data:0x002EB460; // type:object size:0x312 scope:global align:4
+npc_1_ha_d10_tex_index = .data:0x002EB774; // type:object size:0x8 scope:global align:4
+npc_1_ha_d11_tex_index = .data:0x002EB77C; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_ha_d1 = .data:0x002EB784; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ha_d2_tbl = .data:0x002EB7C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ha_d2_tbl = .data:0x002EB7E4; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_ha_d2_tbl = .data:0x002EB84C; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_ha_d2_tbl = .data:0x002EB888; // type:object size:0x30C scope:global align:4
+cKF_ba_r_npc_1_ha_d2 = .data:0x002EBB94; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_d1_tbl = .data:0x002EBBD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_d1_tbl = .data:0x002EBBF4; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_hate_d1_tbl = .data:0x002EBC5C; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_hate_d1_tbl = .data:0x002EBC98; // type:object size:0x2E8 scope:global align:4
+npc_1_hate_d10_tex_index = .data:0x002EBF80; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_hate_d1 = .data:0x002EBF90; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hate_d2_tbl = .data:0x002EBFD0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hate_d2_tbl = .data:0x002EBFEC; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_hate_d2_tbl = .data:0x002EC054; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_hate_d2_tbl = .data:0x002EC090; // type:object size:0x2DC scope:global align:4
+cKF_ba_r_npc_1_hate_d2 = .data:0x002EC36C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hirameki_d1_tbl = .data:0x002EC3B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hirameki_d1_tbl = .data:0x002EC3CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hirameki_d1_tbl = .data:0x002EC438; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hirameki_d1_tbl = .data:0x002EC470; // type:object size:0x3D2 scope:global align:4
+npc_1_hirameki_d10_tex_index = .data:0x002EC844; // type:object size:0x13 scope:global align:4
+npc_1_hirameki_d11_tex_index = .data:0x002EC858; // type:object size:0x13 scope:global align:4
+cKF_ba_r_npc_1_hirameki_d1 = .data:0x002EC86C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hirameki_d2_tbl = .data:0x002EC8B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hirameki_d2_tbl = .data:0x002EC8CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hirameki_d2_tbl = .data:0x002EC938; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hirameki_d2_tbl = .data:0x002EC970; // type:object size:0x336 scope:global align:4
+cKF_ba_r_npc_1_hirameki_d2 = .data:0x002ECCA8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_keitai_off1_tbl = .data:0x002ECCE8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_keitai_off1_tbl = .data:0x002ECD04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_keitai_off1_tbl = .data:0x002ECD70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_keitai_off1_tbl = .data:0x002ECDA8; // type:object size:0x582 scope:global align:4
+cKF_ba_r_npc_1_keitai_off1 = .data:0x002ED32C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_keitai_on1_tbl = .data:0x002ED370; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_keitai_on1_tbl = .data:0x002ED38C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_keitai_on1_tbl = .data:0x002ED3F8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_keitai_on1_tbl = .data:0x002ED430; // type:object size:0x62A scope:global align:4
+cKF_ba_r_npc_1_keitai_on1 = .data:0x002EDA5C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_keitai_talk1_tbl = .data:0x002EDAA0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_keitai_talk1_tbl = .data:0x002EDABC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_keitai_talk1_tbl = .data:0x002EDB28; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_keitai_talk1_tbl = .data:0x002EDB60; // type:object size:0x2D0 scope:global align:4
+npc_1_keitai_talk10_tex_index = .data:0x002EDE30; // type:object size:0xF scope:global align:4
+npc_1_keitai_talk11_tex_index = .data:0x002EDE40; // type:object size:0xF scope:global align:4
+cKF_ba_r_npc_1_keitai_talk1 = .data:0x002EDE50; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_keitai_talk2_tbl = .data:0x002EDE90; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_keitai_talk2_tbl = .data:0x002EDEAC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_keitai_talk2_tbl = .data:0x002EDF18; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_keitai_talk2_tbl = .data:0x002EDF50; // type:object size:0x384 scope:global align:4
+cKF_ba_r_npc_1_keitai_talk2 = .data:0x002EE2D4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_komari_d1_tbl = .data:0x002EE318; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_komari_d1_tbl = .data:0x002EE334; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_komari_d1_tbl = .data:0x002EE3A0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_komari_d1_tbl = .data:0x002EE3D8; // type:object size:0x31E scope:global align:4
+cKF_ba_r_npc_1_komari_d1 = .data:0x002EE6F8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_musu_d1_tbl = .data:0x002EE738; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_musu_d1_tbl = .data:0x002EE754; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_musu_d1_tbl = .data:0x002EE7C0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_musu_d1_tbl = .data:0x002EE7F8; // type:object size:0x31E scope:global align:4
+cKF_ba_r_npc_1_musu_d1 = .data:0x002EEB18; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_niko_d1_tbl = .data:0x002EEB58; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_niko_d1_tbl = .data:0x002EEB74; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_niko_d1_tbl = .data:0x002EEBE0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_niko_d1_tbl = .data:0x002EEC18; // type:object size:0x324 scope:global align:4
+cKF_ba_r_npc_1_niko_d1 = .data:0x002EEF3C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_open_d1_tbl = .data:0x002EEF80; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_open_d1_tbl = .data:0x002EEF9C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_open_d1_tbl = .data:0x002EF008; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_open_d1_tbl = .data:0x002EF040; // type:object size:0x732 scope:global align:4
+npc_1_open_d10_tex_index = .data:0x002EF774; // type:object size:0x83 scope:global align:4
+npc_1_open_d11_tex_index = .data:0x002EF7F8; // type:object size:0x83 scope:global align:4
+cKF_ba_r_npc_1_open_d1 = .data:0x002EF87C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_open_d2_tbl = .data:0x002EF8C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_open_d2_tbl = .data:0x002EF8DC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_open_d2_tbl = .data:0x002EF948; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_open_d2_tbl = .data:0x002EF980; // type:object size:0x5B2 scope:global align:4
+cKF_ba_r_npc_1_open_d2 = .data:0x002EFF34; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sitdown_d1_tbl = .data:0x002EFF78; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sitdown_d1_tbl = .data:0x002EFF94; // type:object size:0x72 scope:global align:4
+cKF_c_npc_1_sitdown_d1_tbl = .data:0x002F0008; // type:object size:0x30 scope:global align:4
+cKF_ds_npc_1_sitdown_d1_tbl = .data:0x002F0038; // type:object size:0x8F4 scope:global align:4
+lfoot_se_chk_pat = .data:0x002F092C; // type:object size:0x8 scope:local align:4
+lfoot_se_dt = .data:0x002F0934; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002F093C; // type:object size:0x8 scope:local align:4
+rfoot_se_dt = .data:0x002F0944; // type:object size:0x8 scope:local align:4
+jump_se_chk_pat = .data:0x002F094C; // type:object size:0x4 scope:global align:4
+sit_se_chk_pat = .data:0x002F0950; // type:object size:0x4 scope:global align:4
+other_se_dt = .data:0x002F0954; // type:object size:0x18 scope:local align:4
+se_dt_tbl = .data:0x002F096C; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_sitdown_d1 = .data:0x002F097C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sitdown_wait_d1_tbl = .data:0x002F09C0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sitdown_wait_d1_tbl = .data:0x002F09DC; // type:object size:0x72 scope:global align:4
+cKF_c_npc_1_sitdown_wait_d1_tbl = .data:0x002F0A50; // type:object size:0x30 scope:global align:4
+cKF_ds_npc_1_sitdown_wait_d1_tbl = .data:0x002F0A80; // type:object size:0x342 scope:global align:4
+cKF_ba_r_npc_1_sitdown_wait_d1 = .data:0x002F0DC4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile_d1_tbl = .data:0x002F0E08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile_d1_tbl = .data:0x002F0E24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_smile_d1_tbl = .data:0x002F0E90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_smile_d1_tbl = .data:0x002F0EC8; // type:object size:0x33C scope:global align:4
+npc_1_smile_d10_tex_index = .data:0x002F1204; // type:object size:0xC scope:global align:4
+npc_1_smile_d11_tex_index = .data:0x002F1210; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_smile_d1 = .data:0x002F121C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile_d2_tbl = .data:0x002F1260; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile_d2_tbl = .data:0x002F127C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_smile_d2_tbl = .data:0x002F12E8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_smile_d2_tbl = .data:0x002F1320; // type:object size:0x34E scope:global align:4
+cKF_ba_r_npc_1_smile_d2 = .data:0x002F1670; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_standup_d1_tbl = .data:0x002F16B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_standup_d1_tbl = .data:0x002F16CC; // type:object size:0x70 scope:global align:4
+cKF_c_npc_1_standup_d1_tbl = .data:0x002F173C; // type:object size:0x32 scope:global align:4
+cKF_ds_npc_1_standup_d1_tbl = .data:0x002F1770; // type:object size:0x570 scope:global align:4
+other_se_chk_pat = .data:0x002F1CE0; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002F1CE4; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002F1CF0; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_standup_d1 = .data:0x002F1D00; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_to_deck_d1_tbl = .data:0x002F1D40; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_to_deck_d1_tbl = .data:0x002F1D5C; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_to_deck_d1_tbl = .data:0x002F1DC8; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_to_deck_d1_tbl = .data:0x002F1E00; // type:object size:0x51C scope:global align:4
+npc_1_to_deck_d10_tex_index = .data:0x002F231C; // type:object size:0x4F scope:global align:4
+cKF_ba_r_npc_1_to_deck_d1 = .data:0x002F236C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_komari1_tbl = .data:0x002F23B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_komari1_tbl = .data:0x002F23CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_komari1_tbl = .data:0x002F2438; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_komari1_tbl = .data:0x002F2470; // type:object size:0x37E scope:global align:4
+cKF_ba_r_npc_1_komari1 = .data:0x002F27F0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_komari_f1_tbl = .data:0x002F2830; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_komari_f1_tbl = .data:0x002F284C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_komari_f1_tbl = .data:0x002F28B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_komari_f1_tbl = .data:0x002F28F0; // type:object size:0x360 scope:global align:4
+cKF_ba_r_npc_1_komari_f1 = .data:0x002F2C50; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_komari_i1_tbl = .data:0x002F2C90; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_komari_i1_tbl = .data:0x002F2CAC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_komari_i1_tbl = .data:0x002F2D18; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_komari_i1_tbl = .data:0x002F2D50; // type:object size:0x336 scope:global align:4
+cKF_ba_r_npc_1_komari_i1 = .data:0x002F3088; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kutipaku1_tbl = .data:0x002F30C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kutipaku1_tbl = .data:0x002F30E4; // type:object size:0x2 scope:global align:4
+cKF_c_npc_1_kutipaku1_tbl = .data:0x002F30E8; // type:object size:0xA0 scope:global align:4
+cKF_ds_npc_1_kutipaku1_tbl = .data:0x002F3188; // type:object size:0x90 scope:global align:4
+cKF_ba_r_npc_1_kutipaku1 = .data:0x002F3218; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kutipaku2_tbl = .data:0x002F3258; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kutipaku2_tbl = .data:0x002F3274; // type:object size:0x2 scope:global align:4
+cKF_c_npc_1_kutipaku2_tbl = .data:0x002F3278; // type:object size:0xA0 scope:global align:4
+cKF_ds_npc_1_kutipaku2_tbl = .data:0x002F3318; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_kutipaku2 = .data:0x002F33BC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_love1_tbl = .data:0x002F3400; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_love1_tbl = .data:0x002F341C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_love1_tbl = .data:0x002F3488; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_love1_tbl = .data:0x002F34C0; // type:object size:0x3EA scope:global align:4
+npc_1_love11_tex_index = .data:0x002F38AC; // type:object size:0x15 scope:global align:4
+cKF_ba_r_npc_1_love1 = .data:0x002F38C4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_love2_tbl = .data:0x002F3908; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_love2_tbl = .data:0x002F3924; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_love2_tbl = .data:0x002F3990; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_love2_tbl = .data:0x002F39C8; // type:object size:0x33C scope:global align:4
+cKF_ba_r_npc_1_love2 = .data:0x002F3D04; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_love_i1_tbl = .data:0x002F3D48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_love_i1_tbl = .data:0x002F3D64; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_love_i1_tbl = .data:0x002F3DD0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_love_i1_tbl = .data:0x002F3E08; // type:object size:0x432 scope:global align:4
+npc_1_love_i11_tex_index = .data:0x002F423C; // type:object size:0x15 scope:global align:4
+cKF_ba_r_npc_1_love_i1 = .data:0x002F4254; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_love_i2_tbl = .data:0x002F4298; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_love_i2_tbl = .data:0x002F42B4; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_love_i2_tbl = .data:0x002F431C; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_love_i2_tbl = .data:0x002F4358; // type:object size:0x31E scope:global align:4
+cKF_ba_r_npc_1_love_i2 = .data:0x002F4678; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_lovelove1_tbl = .data:0x002F46B8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_lovelove1_tbl = .data:0x002F46D4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_lovelove1_tbl = .data:0x002F4740; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_lovelove1_tbl = .data:0x002F4778; // type:object size:0x414 scope:global align:4
+npc_1_lovelove10_tex_index = .data:0x002F4B8C; // type:object size:0x1A scope:global align:4
+npc_1_lovelove11_tex_index = .data:0x002F4BA8; // type:object size:0x1A scope:global align:4
+cKF_ba_r_npc_1_lovelove1 = .data:0x002F4BC4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_lovelove2_tbl = .data:0x002F4C08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_lovelove2_tbl = .data:0x002F4C24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_lovelove2_tbl = .data:0x002F4C90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_lovelove2_tbl = .data:0x002F4CC8; // type:object size:0x612 scope:global align:4
+npc_1_lovelove20_tex_index = .data:0x002F52DC; // type:object size:0x33 scope:global align:4
+cKF_ba_r_npc_1_lovelove2 = .data:0x002F5310; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_lovelove_f1_tbl = .data:0x002F5350; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_lovelove_f1_tbl = .data:0x002F536C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_lovelove_f1_tbl = .data:0x002F53D8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_lovelove_f1_tbl = .data:0x002F5410; // type:object size:0x414 scope:global align:4
+npc_1_lovelove_f10_tex_index = .data:0x002F5824; // type:object size:0x1A scope:global align:4
+npc_1_lovelove_f11_tex_index = .data:0x002F5840; // type:object size:0x1A scope:global align:4
+cKF_ba_r_npc_1_lovelove_f1 = .data:0x002F585C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_lovelove_f2_tbl = .data:0x002F58A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_lovelove_f2_tbl = .data:0x002F58BC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_lovelove_f2_tbl = .data:0x002F5928; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_lovelove_f2_tbl = .data:0x002F5960; // type:object size:0x636 scope:global align:4
+npc_1_lovelove_f20_tex_index = .data:0x002F5F98; // type:object size:0x33 scope:global align:4
+cKF_ba_r_npc_1_lovelove_f2 = .data:0x002F5FCC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_appear1_tbl = .data:0x002F6010; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_appear1_tbl = .data:0x002F602C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_appear1_tbl = .data:0x002F6098; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_appear1_tbl = .data:0x002F60D0; // type:object size:0x4E0 scope:global align:4
+npc_1_appear10_tex_index = .data:0x002F65B0; // type:object size:0x1D scope:global align:4
+npc_1_appear11_tex_index = .data:0x002F65D0; // type:object size:0x1D scope:global align:4
+other_se_chk_pat = .data:0x002F65F0; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002F65F4; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002F6600; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_appear1 = .data:0x002F6610; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_go_ug1_tbl = .data:0x002F6650; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_go_ug1_tbl = .data:0x002F666C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_go_ug1_tbl = .data:0x002F66D8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_go_ug1_tbl = .data:0x002F6710; // type:object size:0x4A4 scope:global align:4
+other_se_chk_pat = .data:0x002F6BB4; // type:object size:0x4 scope:local align:4
+other_se_dt = .data:0x002F6BB8; // type:object size:0xC scope:local align:4
+se_dt_tbl = .data:0x002F6BC4; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_go_ug1 = .data:0x002F6BD4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_r1_tbl = .data:0x002F6C18; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_r1_tbl = .data:0x002F6C34; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wait_r1_tbl = .data:0x002F6CA0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wait_r1_tbl = .data:0x002F6CD8; // type:object size:0x3F6 scope:global align:4
+cKF_ba_r_npc_1_wait_r1 = .data:0x002F70D0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_matarou_r1_tbl = .data:0x002F7110; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_matarou_r1_tbl = .data:0x002F712C; // type:object size:0x64 scope:global align:4
+cKF_c_npc_1_matarou_r1_tbl = .data:0x002F7190; // type:object size:0x3E scope:global align:4
+cKF_ds_npc_1_matarou_r1_tbl = .data:0x002F71D0; // type:object size:0x2FA scope:global align:4
+npc_1_matarou_r10_tex_index = .data:0x002F74CC; // type:object size:0xB scope:global align:4
+npc_1_matarou_r11_tex_index = .data:0x002F74D8; // type:object size:0xB scope:global align:4
+cKF_ba_r_npc_1_matarou_r1 = .data:0x002F74E4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_matarou_r2_tbl = .data:0x002F7528; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_matarou_r2_tbl = .data:0x002F7544; // type:object size:0x64 scope:global align:4
+cKF_c_npc_1_matarou_r2_tbl = .data:0x002F75A8; // type:object size:0x3E scope:global align:4
+cKF_ds_npc_1_matarou_r2_tbl = .data:0x002F75E8; // type:object size:0x276 scope:global align:4
+cKF_ba_r_npc_1_matarou_r2 = .data:0x002F7860; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_misin1_tbl = .data:0x002F78A0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_misin1_tbl = .data:0x002F78BC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_misin1_tbl = .data:0x002F7928; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_misin1_tbl = .data:0x002F7960; // type:object size:0x68A scope:global align:4
+cKF_ba_r_npc_1_misin1 = .data:0x002F7FEC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_run1_tbl = .data:0x002F8030; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_run1_tbl = .data:0x002F804C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_run1_tbl = .data:0x002F80B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_run1_tbl = .data:0x002F80F0; // type:object size:0x408 scope:global align:4
+lfoot_se_chk_pat = .data:0x002F84F8; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002F84FC; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002F8504; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002F8508; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002F8510; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_run1 = .data:0x002F8520; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait1_tbl = .data:0x002F8560; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait1_tbl = .data:0x002F857C; // type:object size:0x2E scope:global align:4
+cKF_c_npc_1_wait1_tbl = .data:0x002F85AC; // type:object size:0x74 scope:global align:4
+cKF_ds_npc_1_wait1_tbl = .data:0x002F8620; // type:object size:0x26A scope:global align:4
+cKF_ba_r_npc_1_wait1 = .data:0x002F888C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_ai1_tbl = .data:0x002F88D0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_ai1_tbl = .data:0x002F88EC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wait_ai1_tbl = .data:0x002F8958; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wait_ai1_tbl = .data:0x002F8990; // type:object size:0x35A scope:global align:4
+feel_eff_set = .data:0x002F8CEC; // type:object size:0x4 scope:local align:4
+feel_set = .data:0x002F8CF0; // type:object size:0x8 scope:global align:4
+cKF_ba_r_npc_1_wait_ai1 = .data:0x002F8CF8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_do1_tbl = .data:0x002F8D38; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_do1_tbl = .data:0x002F8D54; // type:object size:0x64 scope:global align:4
+cKF_c_npc_1_wait_do1_tbl = .data:0x002F8DB8; // type:object size:0x3E scope:global align:4
+cKF_ds_npc_1_wait_do1_tbl = .data:0x002F8DF8; // type:object size:0x71A scope:global align:4
+feel_eff_set = .data:0x002F9514; // type:object size:0x4 scope:local align:4
+feel_eff = .data:0x002F9518; // type:object size:0x8 scope:local align:4
+cKF_ba_r_npc_1_wait_do1 = .data:0x002F9520; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_ki1_tbl = .data:0x002F9560; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_ki1_tbl = .data:0x002F957C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wait_ki1_tbl = .data:0x002F95E8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wait_ki1_tbl = .data:0x002F9620; // type:object size:0x5A0 scope:global align:4
+feel_eff_set = .data:0x002F9BC0; // type:object size:0x4 scope:local align:4
+feel_eff = .data:0x002F9BC4; // type:object size:0x8 scope:local align:4
+cKF_ba_r_npc_1_wait_ki1 = .data:0x002F9BCC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_nemu1_tbl = .data:0x002F9C10; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_nemu1_tbl = .data:0x002F9C2C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wait_nemu1_tbl = .data:0x002F9C98; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wait_nemu1_tbl = .data:0x002F9CD0; // type:object size:0x3FC scope:global align:4
+feel_eff_set = .data:0x002FA0CC; // type:object size:0x8 scope:local align:4
+feel_eff = .data:0x002FA0D4; // type:object size:0x8 scope:local align:4
+cKF_ba_r_npc_1_wait_nemu1 = .data:0x002FA0DC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_walk1_tbl = .data:0x002FA120; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_walk1_tbl = .data:0x002FA13C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_walk1_tbl = .data:0x002FA1A8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_walk1_tbl = .data:0x002FA1E0; // type:object size:0x3DE scope:global align:4
+lfoot_se_chk_pat = .data:0x002FA5C0; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002FA5C4; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002FA5CC; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002FA5D0; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002FA5D8; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_walk1 = .data:0x002FA5E8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_walk_ai1_tbl = .data:0x002FA628; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_walk_ai1_tbl = .data:0x002FA644; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_walk_ai1_tbl = .data:0x002FA6B0; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_walk_ai1_tbl = .data:0x002FA6E8; // type:object size:0x3DE scope:global align:4
+feel_eff_set = .data:0x002FAAC8; // type:object size:0x4 scope:local align:4
+feel_eff = .data:0x002FAACC; // type:object size:0x8 scope:local align:4
+lfoot_se_chk_pat = .data:0x002FAAD4; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002FAAD8; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002FAAE0; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002FAAE4; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002FAAEC; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_walk_ai1 = .data:0x002FAAFC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_walk_do1_tbl = .data:0x002FAB40; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_walk_do1_tbl = .data:0x002FAB5C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_walk_do1_tbl = .data:0x002FABC8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_walk_do1_tbl = .data:0x002FAC00; // type:object size:0x5B8 scope:global align:4
+feel_eff_set = .data:0x002FB1B8; // type:object size:0x4 scope:local align:4
+feel_eff = .data:0x002FB1BC; // type:object size:0x8 scope:local align:4
+lfoot_se_chk_pat = .data:0x002FB1C4; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002FB1C8; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002FB1D0; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002FB1D4; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002FB1DC; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_walk_do1 = .data:0x002FB1EC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_walk_ki1_tbl = .data:0x002FB230; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_walk_ki1_tbl = .data:0x002FB24C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_walk_ki1_tbl = .data:0x002FB2B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_walk_ki1_tbl = .data:0x002FB2F0; // type:object size:0x540 scope:global align:4
+lfoot_se_chk_pat = .data:0x002FB830; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x002FB834; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x002FB83C; // type:object size:0x4 scope:local align:4
+rfoot_se_dt = .data:0x002FB840; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x002FB848; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_walk_ki1 = .data:0x002FB858; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muka1_tbl = .data:0x002FB898; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muka1_tbl = .data:0x002FB8B4; // type:object size:0x38 scope:global align:4
+cKF_c_npc_1_muka1_tbl = .data:0x002FB8EC; // type:object size:0x6A scope:global align:4
+cKF_ds_npc_1_muka1_tbl = .data:0x002FB958; // type:object size:0x636 scope:global align:4
+npc_1_muka10_tex_index = .data:0x002FBF90; // type:object size:0xE scope:local align:4
+npc_1_muka11_tex_index = .data:0x002FBFA0; // type:object size:0xE scope:local align:4
+cKF_ba_r_npc_1_muka1 = .data:0x002FBFB0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muka2_tbl = .data:0x002FBFF0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muka2_tbl = .data:0x002FC00C; // type:object size:0x24 scope:global align:4
+cKF_c_npc_1_muka2_tbl = .data:0x002FC030; // type:object size:0x7E scope:global align:4
+cKF_ds_npc_1_muka2_tbl = .data:0x002FC0B0; // type:object size:0x1F8 scope:global align:4
+cKF_ba_r_npc_1_muka2 = .data:0x002FC2A8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_musu1_tbl = .data:0x002FC2E8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_musu1_tbl = .data:0x002FC304; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_musu1_tbl = .data:0x002FC370; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_musu1_tbl = .data:0x002FC3A8; // type:object size:0x366 scope:global align:4
+cKF_ba_r_npc_1_musu1 = .data:0x002FC710; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_musu_f1_tbl = .data:0x002FC750; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_musu_f1_tbl = .data:0x002FC76C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_musu_f1_tbl = .data:0x002FC7D8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_musu_f1_tbl = .data:0x002FC810; // type:object size:0x342 scope:global align:4
+cKF_ba_r_npc_1_musu_f1 = .data:0x002FCB54; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_musu_i1_tbl = .data:0x002FCB98; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_musu_i1_tbl = .data:0x002FCBB4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_musu_i1_tbl = .data:0x002FCC20; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_musu_i1_tbl = .data:0x002FCC58; // type:object size:0x35A scope:global align:4
+cKF_ba_r_npc_1_musu_i1 = .data:0x002FCFB4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_musu_r1_tbl = .data:0x002FCFF8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_musu_r1_tbl = .data:0x002FD014; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_musu_r1_tbl = .data:0x002FD080; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_musu_r1_tbl = .data:0x002FD0B8; // type:object size:0x3F6 scope:global align:4
+cKF_ba_r_npc_1_musu_r1 = .data:0x002FD4B0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu1_tbl = .data:0x002FD4F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu1_tbl = .data:0x002FD50C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu1_tbl = .data:0x002FD578; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu1_tbl = .data:0x002FD5B0; // type:object size:0x44A scope:global align:4
+npc_1_muuuuu10_tex_index = .data:0x002FD9FC; // type:object size:0x21 scope:global align:4
+npc_1_muuuuu11_tex_index = .data:0x002FDA20; // type:object size:0x21 scope:global align:4
+cKF_ba_r_npc_1_muuuuu1 = .data:0x002FDA44; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu2_tbl = .data:0x002FDA88; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu2_tbl = .data:0x002FDAA4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu2_tbl = .data:0x002FDB10; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu2_tbl = .data:0x002FDB48; // type:object size:0x306 scope:global align:4
+cKF_ba_r_npc_1_muuuuu2 = .data:0x002FDE50; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu_f1_tbl = .data:0x002FDE90; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu_f1_tbl = .data:0x002FDEAC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu_f1_tbl = .data:0x002FDF18; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu_f1_tbl = .data:0x002FDF50; // type:object size:0x414 scope:global align:4
+npc_1_muuuuu_f10_tex_index = .data:0x002FE364; // type:object size:0x21 scope:global align:4
+npc_1_muuuuu_f11_tex_index = .data:0x002FE388; // type:object size:0x21 scope:global align:4
+cKF_ba_r_npc_1_muuuuu_f1 = .data:0x002FE3AC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu_f2_tbl = .data:0x002FE3F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu_f2_tbl = .data:0x002FE40C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu_f2_tbl = .data:0x002FE478; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu_f2_tbl = .data:0x002FE4B0; // type:object size:0x306 scope:global align:4
+cKF_ba_r_npc_1_muuuuu_f2 = .data:0x002FE7B8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu_i1_tbl = .data:0x002FE7F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu_i1_tbl = .data:0x002FE814; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu_i1_tbl = .data:0x002FE880; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu_i1_tbl = .data:0x002FE8B8; // type:object size:0x3D2 scope:global align:4
+npc_1_muuuuu_i10_tex_index = .data:0x002FEC8C; // type:object size:0x21 scope:global align:4
+npc_1_muuuuu_i11_tex_index = .data:0x002FECB0; // type:object size:0x21 scope:global align:4
+cKF_ba_r_npc_1_muuuuu_i1 = .data:0x002FECD4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_muuuuu_i2_tbl = .data:0x002FED18; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_muuuuu_i2_tbl = .data:0x002FED34; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_muuuuu_i2_tbl = .data:0x002FEDA0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_muuuuu_i2_tbl = .data:0x002FEDD8; // type:object size:0x306 scope:global align:4
+cKF_ba_r_npc_1_muuuuu_i2 = .data:0x002FF0E0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_neboke1_tbl = .data:0x002FF120; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_neboke1_tbl = .data:0x002FF13C; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_neboke1_tbl = .data:0x002FF1A4; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_neboke1_tbl = .data:0x002FF1E0; // type:object size:0x4E0 scope:global align:4
+npc_1_neboke10_tex_index = .data:0x002FF6C0; // type:object size:0x38 scope:global align:4
+npc_1_neboke11_tex_index = .data:0x002FF6F8; // type:object size:0x38 scope:global align:4
+cKF_ba_r_npc_1_neboke1 = .data:0x002FF730; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_neboke2_tbl = .data:0x002FF770; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_neboke2_tbl = .data:0x002FF78C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_neboke2_tbl = .data:0x002FF7F8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_neboke2_tbl = .data:0x002FF830; // type:object size:0x3D2 scope:global align:4
+cKF_ba_r_npc_1_neboke2 = .data:0x002FFC04; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_niko1_tbl = .data:0x002FFC48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_niko1_tbl = .data:0x002FFC64; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_niko1_tbl = .data:0x002FFCD0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_niko1_tbl = .data:0x002FFD08; // type:object size:0x3DE scope:global align:4
+cKF_ba_r_npc_1_niko1 = .data:0x003000E8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_niko_f1_tbl = .data:0x00300128; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_niko_f1_tbl = .data:0x00300144; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_niko_f1_tbl = .data:0x003001B0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_niko_f1_tbl = .data:0x003001E8; // type:object size:0x3FC scope:global align:4
+cKF_ba_r_npc_1_niko_f1 = .data:0x003005E4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_niko_i1_tbl = .data:0x00300628; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_niko_i1_tbl = .data:0x00300644; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_niko_i1_tbl = .data:0x003006B0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_niko_i1_tbl = .data:0x003006E8; // type:object size:0x3F0 scope:global align:4
+cKF_ba_r_npc_1_niko_i1 = .data:0x00300AD8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kokkuri_d1_tbl = .data:0x00300B18; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kokkuri_d1_tbl = .data:0x00300B34; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kokkuri_d1_tbl = .data:0x00300BA0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kokkuri_d1_tbl = .data:0x00300BD8; // type:object size:0x2D6 scope:global align:4
+cKF_ba_r_npc_1_kokkuri_d1 = .data:0x00300EB0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kokkuri_d2_tbl = .data:0x00300EF0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kokkuri_d2_tbl = .data:0x00300F0C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kokkuri_d2_tbl = .data:0x00300F78; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kokkuri_d2_tbl = .data:0x00300FB0; // type:object size:0x5E8 scope:global align:4
+npc_1_kokkuri_d21_tex_index = .data:0x00301598; // type:object size:0x8D scope:global align:4
+cKF_ba_r_npc_1_kokkuri_d2 = .data:0x00301628; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_go_out1_tbl = .data:0x00301668; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_go_out1_tbl = .data:0x00301684; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_go_out1_tbl = .data:0x003016F0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_go_out1_tbl = .data:0x00301728; // type:object size:0x972 scope:global align:4
+cKF_ba_r_npc_1_go_out1 = .data:0x0030209C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_open1_tbl = .data:0x003020E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_open1_tbl = .data:0x003020FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_open1_tbl = .data:0x00302168; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_open1_tbl = .data:0x003021A0; // type:object size:0x804 scope:global align:4
+cKF_ba_r_npc_1_open1 = .data:0x003029A4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_otikomu1_tbl = .data:0x003029E8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_otikomu1_tbl = .data:0x00302A04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_otikomu1_tbl = .data:0x00302A70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_otikomu1_tbl = .data:0x00302AA8; // type:object size:0x50A scope:global align:4
+cKF_ba_r_npc_1_otikomu1 = .data:0x00302FB4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_otikomu2_tbl = .data:0x00302FF8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_otikomu2_tbl = .data:0x00303014; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_otikomu2_tbl = .data:0x00303080; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_otikomu2_tbl = .data:0x003030B8; // type:object size:0x342 scope:global align:4
+cKF_ba_r_npc_1_otikomu2 = .data:0x003033FC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_deru1_tbl = .data:0x00303440; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_deru1_tbl = .data:0x0030345C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_deru1_tbl = .data:0x003034C8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_deru1_tbl = .data:0x00303500; // type:object size:0x58E scope:global align:4
+npc_1_deru10_tex_index = .data:0x00303A90; // type:object size:0x39 scope:global align:4
+npc_1_deru11_tex_index = .data:0x00303ACC; // type:object size:0x39 scope:global align:4
+cKF_ba_r_npc_1_deru1 = .data:0x00303B08; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_deru2_tbl = .data:0x00303B48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_deru2_tbl = .data:0x00303B64; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_deru2_tbl = .data:0x00303BD0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_deru2_tbl = .data:0x00303C08; // type:object size:0x636 scope:global align:4
+npc_1_deru20_tex_index = .data:0x00304240; // type:object size:0x39 scope:global align:4
+npc_1_deru21_tex_index = .data:0x0030427C; // type:object size:0x39 scope:global align:4
+cKF_ba_r_npc_1_deru2 = .data:0x003042B8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_guratuku1_tbl = .data:0x003042F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_guratuku1_tbl = .data:0x00304314; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_guratuku1_tbl = .data:0x00304380; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_guratuku1_tbl = .data:0x003043B8; // type:object size:0x636 scope:global align:4
+npc_1_guratuku10_tex_index = .data:0x003049F0; // type:object size:0x19 scope:global align:4
+npc_1_guratuku11_tex_index = .data:0x00304A0C; // type:object size:0x19 scope:global align:4
+cKF_ba_r_npc_1_guratuku1 = .data:0x00304A28; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_mogaku1_tbl = .data:0x00304A68; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_mogaku1_tbl = .data:0x00304A84; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_mogaku1_tbl = .data:0x00304AF0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_mogaku1_tbl = .data:0x00304B28; // type:object size:0x6AE scope:global align:4
+npc_1_mogaku10_tex_index = .data:0x003051D8; // type:object size:0x29 scope:global align:4
+cKF_ba_r_npc_1_mogaku1 = .data:0x00305204; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_otiru1_tbl = .data:0x00305248; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_otiru1_tbl = .data:0x00305264; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_otiru1_tbl = .data:0x003052D0; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_otiru1_tbl = .data:0x00305308; // type:object size:0x354 scope:global align:4
+npc_1_otiru10_tex_index = .data:0x0030565C; // type:object size:0x9 scope:global align:4
+npc_1_otiru11_tex_index = .data:0x00305668; // type:object size:0x9 scope:global align:4
+cKF_ba_r_npc_1_otiru1 = .data:0x00305674; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_otiru2_tbl = .data:0x003056B8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_otiru2_tbl = .data:0x003056D4; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_otiru2_tbl = .data:0x00305740; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_otiru2_tbl = .data:0x00305778; // type:object size:0x360 scope:global align:4
+npc_1_otiru20_tex_index = .data:0x00305AD8; // type:object size:0x9 scope:global align:4
+npc_1_otiru21_tex_index = .data:0x00305AE4; // type:object size:0x9 scope:global align:4
+cKF_ba_r_npc_1_otiru2 = .data:0x00305AF0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_punpun1_tbl = .data:0x00305B30; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_punpun1_tbl = .data:0x00305B4C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_punpun1_tbl = .data:0x00305BB8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_punpun1_tbl = .data:0x00305BF0; // type:object size:0x390 scope:global align:4
+npc_1_punpun10_tex_index = .data:0x00305F80; // type:object size:0xC scope:global align:4
+npc_1_punpun11_tex_index = .data:0x00305F8C; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_punpun1 = .data:0x00305F98; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_punpun2_tbl = .data:0x00305FD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_punpun2_tbl = .data:0x00305FF4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_punpun2_tbl = .data:0x00306060; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_punpun2_tbl = .data:0x00306098; // type:object size:0x32A scope:global align:4
+cKF_ba_r_npc_1_punpun2 = .data:0x003063C4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_punpun_r1_tbl = .data:0x00306408; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_punpun_r1_tbl = .data:0x00306424; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_punpun_r1_tbl = .data:0x00306490; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_punpun_r1_tbl = .data:0x003064C8; // type:object size:0x312 scope:global align:4
+npc_1_punpun_r10_tex_index = .data:0x003067DC; // type:object size:0xC scope:global align:4
+npc_1_punpun_r11_tex_index = .data:0x003067E8; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_punpun_r1 = .data:0x003067F4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_punpun_r2_tbl = .data:0x00306838; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_punpun_r2_tbl = .data:0x00306854; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_punpun_r2_tbl = .data:0x003068C0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_punpun_r2_tbl = .data:0x003068F8; // type:object size:0x2E2 scope:global align:4
+cKF_ba_r_npc_1_punpun_r2 = .data:0x00306BDC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gyafun1_tbl = .data:0x00306C20; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gyafun1_tbl = .data:0x00306C3C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gyafun1_tbl = .data:0x00306CA8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gyafun1_tbl = .data:0x00306CE0; // type:object size:0x756 scope:global align:4
+npc_1_gyafun10_tex_index = .data:0x00307438; // type:object size:0x3A scope:global align:4
+npc_1_gyafun11_tex_index = .data:0x00307474; // type:object size:0x3A scope:global align:4
+cKF_ba_r_npc_1_gyafun1 = .data:0x003074B0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_gyafun2_tbl = .data:0x003074F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_gyafun2_tbl = .data:0x0030750C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_gyafun2_tbl = .data:0x00307578; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_gyafun2_tbl = .data:0x003075B0; // type:object size:0x5AC scope:global align:4
+npc_1_gyafun20_tex_index = .data:0x00307B5C; // type:object size:0x1C scope:global align:4
+npc_1_gyafun21_tex_index = .data:0x00307B78; // type:object size:0x1C scope:global align:4
+cKF_ba_r_npc_1_gyafun2 = .data:0x00307B94; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_shituren1_tbl = .data:0x00307BD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_shituren1_tbl = .data:0x00307BF4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_shituren1_tbl = .data:0x00307C60; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_shituren1_tbl = .data:0x00307C98; // type:object size:0x510 scope:global align:4
+npc_1_shituren10_tex_index = .data:0x003081A8; // type:object size:0x28 scope:global align:4
+npc_1_shituren11_tex_index = .data:0x003081D0; // type:object size:0x28 scope:global align:4
+cKF_ba_r_npc_1_shituren1 = .data:0x003081F8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_shituren2_tbl = .data:0x00308238; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_shituren2_tbl = .data:0x00308254; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_shituren2 = .data:0x003082F8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_shituren_i1_tbl = .data:0x00308338; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_shituren_i1_tbl = .data:0x00308354; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_shituren_i1_tbl = .data:0x003083C0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_shituren_i1_tbl = .data:0x003083F8; // type:object size:0x498 scope:global align:4
+npc_1_shituren_i10_tex_index = .data:0x00308890; // type:object size:0x28 scope:global align:4
+npc_1_shituren_i11_tex_index = .data:0x003088B8; // type:object size:0x28 scope:global align:4
+cKF_ba_r_npc_1_shituren_i1 = .data:0x003088E0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_shituren_i2_tbl = .data:0x00308920; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_shituren_i2_tbl = .data:0x0030893C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_shituren_i2 = .data:0x003089E0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile1_tbl = .data:0x00308A20; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile1_tbl = .data:0x00308A3C; // type:object size:0x30 scope:global align:4
+cKF_c_npc_1_smile1_tbl = .data:0x00308A6C; // type:object size:0x72 scope:global align:4
+cKF_ds_npc_1_smile1_tbl = .data:0x00308AE0; // type:object size:0x462 scope:global align:4
+npc_1_smile10_tex_index = .data:0x00308F44; // type:object size:0xC scope:global align:4
+npc_1_smile11_tex_index = .data:0x00308F50; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_smile1 = .data:0x00308F5C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile2_tbl = .data:0x00308FA0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile2_tbl = .data:0x00308FBC; // type:object size:0x20 scope:global align:4
+cKF_c_npc_1_smile2_tbl = .data:0x00308FDC; // type:object size:0x82 scope:global align:4
+cKF_ds_npc_1_smile2_tbl = .data:0x00309060; // type:object size:0x324 scope:global align:4
+cKF_ba_r_npc_1_smile2 = .data:0x00309384; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile_f1_tbl = .data:0x003093C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile_f1_tbl = .data:0x003093E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_smile_f1_tbl = .data:0x00309450; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_smile_f1_tbl = .data:0x00309488; // type:object size:0x40E scope:global align:4
+npc_1_smile_f10_tex_index = .data:0x00309898; // type:object size:0xC scope:global align:4
+npc_1_smile_f11_tex_index = .data:0x003098A4; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_smile_f1 = .data:0x003098B0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_smile_f2_tbl = .data:0x003098F0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_smile_f2_tbl = .data:0x0030990C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_smile_f2_tbl = .data:0x00309978; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_smile_f2_tbl = .data:0x003099B0; // type:object size:0x3F6 scope:global align:4
+cKF_ba_r_npc_1_smile_f2 = .data:0x00309DA8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_intro1_a_tbl = .data:0x00309DE8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_intro1_a_tbl = .data:0x00309E04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_intro1_a_tbl = .data:0x00309E70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_intro1_a_tbl = .data:0x00309EA8; // type:object size:0x8CA scope:global align:4
+cKF_ba_r_npc_1_intro1_a = .data:0x0030A774; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_intro1_b_tbl = .data:0x0030A7B8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_intro1_b_tbl = .data:0x0030A7D4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_intro1_b_tbl = .data:0x0030A840; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_intro1_b_tbl = .data:0x0030A878; // type:object size:0x816 scope:global align:4
+cKF_ba_r_npc_1_intro1_b = .data:0x0030B090; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kiduku1_tbl = .data:0x0030B0D0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kiduku1_tbl = .data:0x0030B0EC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kiduku1_tbl = .data:0x0030B158; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kiduku1_tbl = .data:0x0030B190; // type:object size:0x7DA scope:global align:4
+npc_1_kiduku10_tex_index = .data:0x0030B96C; // type:object size:0x32 scope:global align:4
+npc_1_kiduku11_tex_index = .data:0x0030B9A0; // type:object size:0x32 scope:global align:4
+cKF_ba_r_npc_1_kiduku1 = .data:0x0030B9D4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kiduku2_tbl = .data:0x0030BA18; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kiduku2_tbl = .data:0x0030BA34; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kiduku2_tbl = .data:0x0030BAA0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kiduku2_tbl = .data:0x0030BAD8; // type:object size:0x56A scope:global align:4
+cKF_ba_r_npc_1_kiduku2 = .data:0x0030C044; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou1_tbl = .data:0x0030C088; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou1_tbl = .data:0x0030C0A4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou1_tbl = .data:0x0030C110; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou1_tbl = .data:0x0030C148; // type:object size:0x654 scope:global align:4
+cKF_ba_r_npc_1_taisou1 = .data:0x0030C79C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou2_tbl = .data:0x0030C7E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou2_tbl = .data:0x0030C7FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou2_tbl = .data:0x0030C868; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou2_tbl = .data:0x0030C8A0; // type:object size:0x5D6 scope:global align:4
+cKF_ba_r_npc_1_taisou2 = .data:0x0030CE78; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou3_a_tbl = .data:0x0030CEB8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou3_a_tbl = .data:0x0030CED4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou3_a_tbl = .data:0x0030CF40; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou3_a_tbl = .data:0x0030CF78; // type:object size:0x9F6 scope:global align:4
+cKF_ba_r_npc_1_taisou3_a = .data:0x0030D970; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou3_b_tbl = .data:0x0030D9B0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou3_b_tbl = .data:0x0030D9CC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou3_b_tbl = .data:0x0030DA38; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou3_b_tbl = .data:0x0030DA70; // type:object size:0x9F6 scope:global align:4
+cKF_ba_r_npc_1_taisou3_b = .data:0x0030E468; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou4_a_tbl = .data:0x0030E4A8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou4_a_tbl = .data:0x0030E4C4; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_taisou4_a_tbl = .data:0x0030E52C; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_taisou4_a_tbl = .data:0x0030E568; // type:object size:0x750 scope:global align:4
+cKF_ba_r_npc_1_taisou4_a = .data:0x0030ECB8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou4_b_tbl = .data:0x0030ECF8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou4_b_tbl = .data:0x0030ED14; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_taisou4_b_tbl = .data:0x0030ED7C; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_taisou4_b_tbl = .data:0x0030EDB8; // type:object size:0x74A scope:global align:4
+cKF_ba_r_npc_1_taisou4_b = .data:0x0030F504; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou5_a_tbl = .data:0x0030F548; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou5_a_tbl = .data:0x0030F564; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou5_a_tbl = .data:0x0030F5D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou5_a_tbl = .data:0x0030F608; // type:object size:0x8FA scope:global align:4
+cKF_ba_r_npc_1_taisou5_a = .data:0x0030FF04; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou5_b_tbl = .data:0x0030FF48; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou5_b_tbl = .data:0x0030FF64; // type:object size:0x6A scope:global align:4
+cKF_c_npc_1_taisou5_b_tbl = .data:0x0030FFD0; // type:object size:0x38 scope:global align:4
+cKF_ds_npc_1_taisou5_b_tbl = .data:0x00310008; // type:object size:0x8FA scope:global align:4
+cKF_ba_r_npc_1_taisou5_b = .data:0x00310904; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou6_a_tbl = .data:0x00310948; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou6_a_tbl = .data:0x00310964; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou6_a_tbl = .data:0x003109D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou6_a_tbl = .data:0x00310A08; // type:object size:0x6F6 scope:global align:4
+cKF_ba_r_npc_1_taisou6_a = .data:0x00311100; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou6_b_tbl = .data:0x00311140; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou6_b_tbl = .data:0x0031115C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou6_b_tbl = .data:0x003111C8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou6_b_tbl = .data:0x00311200; // type:object size:0x6F0 scope:global align:4
+cKF_ba_r_npc_1_taisou6_b = .data:0x003118F0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_taisou7_tbl = .data:0x00311930; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_taisou7_tbl = .data:0x0031194C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_taisou7_tbl = .data:0x003119B8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_taisou7_tbl = .data:0x003119F0; // type:object size:0x89A scope:global align:4
+cKF_ba_r_npc_1_taisou7 = .data:0x0031228C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tamahiroi1_tbl = .data:0x003122D0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tamahiroi1_tbl = .data:0x003122EC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tamahiroi1_tbl = .data:0x00312358; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tamahiroi1_tbl = .data:0x00312390; // type:object size:0x870 scope:global align:4
+cKF_ba_r_npc_1_tamahiroi1 = .data:0x00312C00; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tamanage1_tbl = .data:0x00312C40; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tamanage1_tbl = .data:0x00312C5C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tamanage1_tbl = .data:0x00312CC8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tamanage1_tbl = .data:0x00312D00; // type:object size:0x588 scope:global align:4
+cKF_ba_r_npc_1_tamanage1 = .data:0x00313288; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_asihumi1_tbl = .data:0x003132C8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_asihumi1_tbl = .data:0x003132E4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_asihumi1_tbl = .data:0x00313350; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_asihumi1_tbl = .data:0x00313388; // type:object size:0x480 scope:global align:4
+cKF_ba_r_npc_1_asihumi1 = .data:0x00313808; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_don1_tbl = .data:0x00313848; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_don1_tbl = .data:0x00313864; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_don1_tbl = .data:0x003138D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_don1_tbl = .data:0x00313908; // type:object size:0x3D2 scope:global align:4
+npc_1_don10_tex_index = .data:0x00313CDC; // type:object size:0xD scope:global align:4
+npc_1_don11_tex_index = .data:0x00313CEC; // type:object size:0xD scope:global align:4
+cKF_ba_r_npc_1_don1 = .data:0x00313CFC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kokeru1_tbl = .data:0x00313D40; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kokeru1_tbl = .data:0x00313D5C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kokeru1_tbl = .data:0x00313DC8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kokeru1_tbl = .data:0x00313E00; // type:object size:0x480 scope:global align:4
+npc_1_kokeru10_tex_index = .data:0x00314280; // type:object size:0x11 scope:global align:4
+npc_1_kokeru11_tex_index = .data:0x00314294; // type:object size:0x11 scope:global align:4
+lfoot_se_chk_pat = .data:0x003142A8; // type:object size:0x4 scope:local align:4
+lfoot_se_dt = .data:0x003142AC; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x003142B4; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_kokeru1 = .data:0x003142C4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kokeru_getup1_tbl = .data:0x00314308; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kokeru_getup1_tbl = .data:0x00314324; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kokeru_getup1_tbl = .data:0x00314390; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kokeru_getup1_tbl = .data:0x003143C8; // type:object size:0x5A0 scope:global align:4
+npc_1_kokeru_getup10_tex_index = .data:0x00314968; // type:object size:0x20 scope:global align:4
+npc_1_kokeru_getup11_tex_index = .data:0x00314988; // type:object size:0x20 scope:global align:4
+cKF_ba_r_npc_1_kokeru_getup1 = .data:0x003149A8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ready1_tbl = .data:0x003149E8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ready1_tbl = .data:0x00314A04; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_ready1_tbl = .data:0x00314A70; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_ready1_tbl = .data:0x00314AA8; // type:object size:0x3D2 scope:global align:4
+cKF_ba_r_npc_1_ready1 = .data:0x00314E7C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tamakome1_tbl = .data:0x00314EC0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tamakome1_tbl = .data:0x00314EDC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tamakome1_tbl = .data:0x00314F48; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tamakome1_tbl = .data:0x00314F80; // type:object size:0x366 scope:global align:4
+cKF_ba_r_npc_1_tamakome1 = .data:0x003152E8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tired1_tbl = .data:0x00315328; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tired1_tbl = .data:0x00315344; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tired1_tbl = .data:0x003153B0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tired1_tbl = .data:0x003153E8; // type:object size:0x3CC scope:global align:4
+cKF_ba_r_npc_1_tired1 = .data:0x003157B4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_warmup1_tbl = .data:0x003157F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_warmup1_tbl = .data:0x00315814; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_warmup1_tbl = .data:0x00315880; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_warmup1_tbl = .data:0x003158B8; // type:object size:0x7E0 scope:global align:4
+cKF_ba_r_npc_1_warmup1 = .data:0x00316098; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_youi1_tbl = .data:0x003160D8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_youi1_tbl = .data:0x003160F4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_youi1_tbl = .data:0x00316160; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_youi1_tbl = .data:0x00316198; // type:object size:0x33C scope:global align:4
+cKF_ba_r_npc_1_youi1 = .data:0x003164D4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_3haku_e1_tbl = .data:0x00316518; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_3haku_e1_tbl = .data:0x00316534; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_3haku_e1_tbl = .data:0x0031659C; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_3haku_e1_tbl = .data:0x003165D8; // type:object size:0x4D4 scope:global align:4
+cKF_ba_r_npc_1_3haku_e1 = .data:0x00316AAC; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_4haku_e1_tbl = .data:0x00316AF0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_4haku_e1_tbl = .data:0x00316B0C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_4haku_e1_tbl = .data:0x00316B78; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_4haku_e1_tbl = .data:0x00316BB0; // type:object size:0x546 scope:global align:4
+cKF_ba_r_npc_1_4haku_e1 = .data:0x003170F8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_ensou_e1_tbl = .data:0x00317138; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_ensou_e1_tbl = .data:0x00317154; // type:object size:0x66 scope:global align:4
+cKF_c_npc_1_ensou_e1_tbl = .data:0x003171BC; // type:object size:0x3C scope:global align:4
+cKF_ds_npc_1_ensou_e1_tbl = .data:0x003171F8; // type:object size:0x6A8 scope:global align:4
+cKF_ba_r_npc_1_ensou_e1 = .data:0x003178A0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_wait_e1_tbl = .data:0x003178E0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_wait_e1_tbl = .data:0x003178FC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_wait_e1_tbl = .data:0x00317968; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_wait_e1_tbl = .data:0x003179A0; // type:object size:0x37E scope:global align:4
+cKF_ba_r_npc_1_wait_e1 = .data:0x00317D20; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_send_mail1_tbl = .data:0x00317D60; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_send_mail1_tbl = .data:0x00317D7C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_send_mail1_tbl = .data:0x00317DE8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_send_mail1_tbl = .data:0x00317E20; // type:object size:0x6D2 scope:global align:4
+cKF_ba_r_npc_1_send_mail1 = .data:0x003184F4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_trans_wait1_tbl = .data:0x00318538; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_trans_wait1_tbl = .data:0x00318554; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_trans_wait1_tbl = .data:0x003185C0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_trans_wait1_tbl = .data:0x003185F8; // type:object size:0x312 scope:global align:4
+cKF_ba_r_npc_1_trans_wait1 = .data:0x0031890C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_trans_wait_f1_tbl = .data:0x00318950; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_trans_wait_f1_tbl = .data:0x0031896C; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_trans_wait_f1_tbl = .data:0x003189D8; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_trans_wait_f1_tbl = .data:0x00318A10; // type:object size:0x312 scope:global align:4
+cKF_ba_r_npc_1_trans_wait_f1 = .data:0x00318D24; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_transfer1_tbl = .data:0x00318D68; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_transfer1_tbl = .data:0x00318D84; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_transfer1_tbl = .data:0x00318DF0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_transfer1_tbl = .data:0x00318E28; // type:object size:0x822 scope:global align:4
+cKF_ba_r_npc_1_transfer1 = .data:0x0031964C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_transfer_f1_tbl = .data:0x00319690; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_transfer_f1_tbl = .data:0x003196AC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_transfer_f1_tbl = .data:0x00319718; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_transfer_f1_tbl = .data:0x00319750; // type:object size:0x82E scope:global align:4
+cKF_ba_r_npc_1_transfer_f1 = .data:0x00319F80; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tue_tbl = .data:0x00319FC0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tue_tbl = .data:0x00319FDC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tue_tbl = .data:0x0031A048; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tue_tbl = .data:0x0031A080; // type:object size:0x288 scope:global align:4
+cKF_ba_r_npc_1_tue1 = .data:0x0031A308; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_kuisinbo1_tbl = .data:0x0031A348; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_kuisinbo1_tbl = .data:0x0031A364; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_kuisinbo1_tbl = .data:0x0031A3D0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_kuisinbo1_tbl = .data:0x0031A408; // type:object size:0x77A scope:global align:4
+npc_1_kuisinbo10_tex_index = .data:0x0031AB84; // type:object size:0x3D scope:global align:4
+cKF_ba_r_npc_1_kuisinbo1 = .data:0x0031ABC4; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_sanbasi1_tbl = .data:0x0031AC08; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_sanbasi1_tbl = .data:0x0031AC24; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_sanbasi1_tbl = .data:0x0031AC90; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_sanbasi1_tbl = .data:0x0031ACC8; // type:object size:0x40E scope:global align:4
+cKF_ba_r_npc_1_sanbasi1 = .data:0x0031B0D8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_hatafuri1_tbl = .data:0x0031B118; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_hatafuri1_tbl = .data:0x0031B134; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_hatafuri1_tbl = .data:0x0031B1A0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_hatafuri1_tbl = .data:0x0031B1D8; // type:object size:0x7A4 scope:global align:4
+npc_1_hatafuri10_tex_index = .data:0x0031B97C; // type:object size:0x39 scope:global align:4
+cKF_ba_r_npc_1_hatafuri1 = .data:0x0031B9B8; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tunahiki_aiko1_tbl = .data:0x0031B9F8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tunahiki_aiko1_tbl = .data:0x0031BA14; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tunahiki_aiko1_tbl = .data:0x0031BA80; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tunahiki_aiko1_tbl = .data:0x0031BAB8; // type:object size:0x4A4 scope:global align:4
+cKF_ba_r_npc_1_tunahiki_aiko1 = .data:0x0031BF5C; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tunahiki_furi1_tbl = .data:0x0031BFA0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tunahiki_furi1_tbl = .data:0x0031BFBC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tunahiki_furi1_tbl = .data:0x0031C028; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tunahiki_furi1_tbl = .data:0x0031C060; // type:object size:0x5AC scope:global align:4
+npc_1_tunahiki_furi10_tex_index = .data:0x0031C60C; // type:object size:0x21 scope:global align:4
+npc_1_tunahiki_furi11_tex_index = .data:0x0031C630; // type:object size:0x21 scope:global align:4
+cKF_ba_r_npc_1_tunahiki_furi1 = .data:0x0031C654; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tunahiki_yuri1_tbl = .data:0x0031C698; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tunahiki_yuri1_tbl = .data:0x0031C6B4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_tunahiki_yuri1_tbl = .data:0x0031C720; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_tunahiki_yuri1_tbl = .data:0x0031C758; // type:object size:0x4FE scope:global align:4
+npc_1_tunahiki_yuri10_tex_index = .data:0x0031CC58; // type:object size:0x21 scope:global align:4
+npc_1_tunahiki_yuri11_tex_index = .data:0x0031CC7C; // type:object size:0x21 scope:global align:4
+cKF_ba_r_npc_1_tunahiki_yuri1 = .data:0x0031CCA0; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_turi_wait1_tbl = .data:0x0031CCE0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_turi_wait1_tbl = .data:0x0031CCFC; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_turi_wait1_tbl = .data:0x0031CD68; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_turi_wait1_tbl = .data:0x0031CDA0; // type:object size:0x396 scope:global align:4
+cKF_ba_r_npc_1_turi_wait1 = .data:0x0031D138; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_tkykyoro1_tbl = .data:0x0031D178; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_tkykyoro1_tbl = .data:0x0031D194; // type:object size:0x68 scope:global align:4
+cKF_c_npc_1_tkykyoro1_tbl = .data:0x0031D1FC; // type:object size:0x3A scope:global align:4
+cKF_ds_npc_1_tkykyoro1_tbl = .data:0x0031D238; // type:object size:0x9DE scope:global align:4
+npc_1_tkykyoro11_tex_index = .data:0x0031DC18; // type:object size:0x7D scope:global align:4
+cKF_ba_r_npc_1_tkykyoro1 = .data:0x0031DC98; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_umb_close1_tbl = .data:0x0031DCD8; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_umb_close1_tbl = .data:0x0031DCF4; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_umb_close1_tbl = .data:0x0031DD60; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_umb_close1_tbl = .data:0x0031DD98; // type:object size:0x6C6 scope:global align:4
+lfoot_se_chk_pat = .data:0x0031E460; // type:object size:0x8 scope:local align:4
+lfoot_se_dt = .data:0x0031E468; // type:object size:0x8 scope:local align:4
+rfoot_se_chk_pat = .data:0x0031E470; // type:object size:0x8 scope:local align:4
+rfoot_se_dt = .data:0x0031E478; // type:object size:0x8 scope:local align:4
+se_dt_tbl = .data:0x0031E480; // type:object size:0x10 scope:local align:4
+cKF_ba_r_npc_1_umb_close1 = .data:0x0031E490; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_umb_open1_tbl = .data:0x0031E4D0; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_umb_open1_tbl = .data:0x0031E4EC; // type:object size:0x44 scope:global align:4
+cKF_c_npc_1_umb_open1_tbl = .data:0x0031E530; // type:object size:0x5E scope:global align:4
+cKF_ds_npc_1_umb_open1_tbl = .data:0x0031E590; // type:object size:0x798 scope:global align:4
+cKF_ba_r_npc_1_umb_open1 = .data:0x0031ED28; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_umbrella1_tbl = .data:0x0031ED68; // type:object size:0x1A scope:global align:4
+cKF_c_npc_1_umbrella1_tbl = .data:0x0031ED84; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_npc_1_umbrella1 = .data:0x0031EE28; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_warudakumi1_tbl = .data:0x0031EE68; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_warudakumi1_tbl = .data:0x0031EE84; // type:object size:0x64 scope:global align:4
+cKF_c_npc_1_warudakumi1_tbl = .data:0x0031EEE8; // type:object size:0x3E scope:global align:4
+cKF_ds_npc_1_warudakumi1_tbl = .data:0x0031EF28; // type:object size:0x2E2 scope:global align:4
+npc_1_warudakumi10_tex_index = .data:0x0031F20C; // type:object size:0xC scope:global align:4
+npc_1_warudakumi11_tex_index = .data:0x0031F218; // type:object size:0xC scope:global align:4
+cKF_ba_r_npc_1_warudakumi1 = .data:0x0031F224; // type:object size:0x40 scope:global align:4
+cKF_ckcb_r_npc_1_warudakumi2_tbl = .data:0x0031F268; // type:object size:0x1A scope:global align:4
+cKF_kn_npc_1_warudakumi2_tbl = .data:0x0031F284; // type:object size:0x6C scope:global align:4
+cKF_c_npc_1_warudakumi2_tbl = .data:0x0031F2F0; // type:object size:0x36 scope:global align:4
+cKF_ds_npc_1_warudakumi2_tbl = .data:0x0031F328; // type:object size:0x522 scope:global align:4
+cKF_ba_r_npc_1_warudakumi2 = .data:0x0031F84C; // type:object size:0x40 scope:global align:4
+npc_def_list = .data:0x0031F890; // type:object size:0x594 scope:global align:4
+npc_draw_data_tbl = .data:0x0031FE28; // type:object size:0xA128 scope:global align:4
+npc_grow_list = .data:0x00329F50; // type:object size:0xEE scope:global align:4 data:byte
+npc_house_list = .data:0x0032A040; // type:object size:0x770 scope:global align:4 data:byte
+oct_1_v = .data:0x0032A7B0; // type:object size:0x1D80 scope:global align:8
+head_oct_model = .data:0x0032C530; // type:object size:0x108 scope:global align:8
+Rarm2_oct_model = .data:0x0032C638; // type:object size:0xA8 scope:global align:8
+Rarm1_oct_model = .data:0x0032C6E0; // type:object size:0x80 scope:global align:8
+Larm2_oct_model = .data:0x0032C760; // type:object size:0xB0 scope:global align:8
+Larm1_oct_model = .data:0x0032C810; // type:object size:0x80 scope:global align:8
+chest_oct_model = .data:0x0032C890; // type:object size:0xA8 scope:global align:8
+Rfoot3_oct_model = .data:0x0032C938; // type:object size:0xC0 scope:global align:8
+Rfoot2_oct_model = .data:0x0032C9F8; // type:object size:0xC0 scope:global align:8
+Rfoot1_oct_model = .data:0x0032CAB8; // type:object size:0xB8 scope:global align:8
+Lfoot3_oct_model = .data:0x0032CB70; // type:object size:0xC0 scope:global align:8
+Lfoot2_oct_model = .data:0x0032CC30; // type:object size:0xC0 scope:global align:8
+Lfoot1_oct_model = .data:0x0032CCF0; // type:object size:0xC0 scope:global align:8
+base_oct_model = .data:0x0032CDB0; // type:object size:0x70 scope:global align:8
+cKF_je_r_oct_1_tbl = .data:0x0032CE20; // type:object size:0x138 scope:global align:4
+cKF_bs_r_oct_1 = .data:0x0032CF58; // type:object size:0x8 scope:global align:4
+oct_1_pal = .data:0x0032CF60; // type:object size:0x20 scope:global align:32
+oct_1_eye1_TA_tex_txt = .data:0x0032CF80; // type:object size:0x100 scope:global align:32
+oct_1_eye2_TA_tex_txt = .data:0x0032D080; // type:object size:0x100 scope:global align:32
+oct_1_eye3_TA_tex_txt = .data:0x0032D180; // type:object size:0x100 scope:global align:32
+oct_1_eye4_TA_tex_txt = .data:0x0032D280; // type:object size:0x100 scope:global align:32
+oct_1_eye5_TA_tex_txt = .data:0x0032D380; // type:object size:0x100 scope:global align:32
+oct_1_eye6_TA_tex_txt = .data:0x0032D480; // type:object size:0x100 scope:global align:32
+oct_1_eye7_TA_tex_txt = .data:0x0032D580; // type:object size:0x100 scope:global align:32
+oct_1_eye8_TA_tex_txt = .data:0x0032D680; // type:object size:0x100 scope:global align:32
+oct_1_tmem_txt = .data:0x0032D780; // type:object size:0x200 scope:global align:32
+ost_1_v = .data:0x0032D980; // type:object size:0x17D0 scope:global align:8
+head_ost_model = .data:0x0032F150; // type:object size:0x1D0 scope:global align:8
+mouth_ost_model = .data:0x0032F320; // type:object size:0x78 scope:global align:8
+Rarm2_ost_model = .data:0x0032F398; // type:object size:0x80 scope:global align:8
+Rarm1_ost_model = .data:0x0032F418; // type:object size:0x78 scope:global align:8
+Larm2_ost_model = .data:0x0032F490; // type:object size:0x80 scope:global align:8
+Larm1_ost_model = .data:0x0032F510; // type:object size:0x78 scope:global align:8
+chest_ost_model = .data:0x0032F588; // type:object size:0xD8 scope:global align:8
+tail_ost_model = .data:0x0032F660; // type:object size:0xF8 scope:global align:8
+Rfoot3_ost_model = .data:0x0032F758; // type:object size:0xA0 scope:global align:8
+Rfoot2_ost_model = .data:0x0032F7F8; // type:object size:0x80 scope:global align:8
+Rfoot1_ost_model = .data:0x0032F878; // type:object size:0x58 scope:global align:8
+Lfoot3_ost_model = .data:0x0032F8D0; // type:object size:0xA0 scope:global align:8
+Lfoot2_ost_model = .data:0x0032F970; // type:object size:0x80 scope:global align:8
+Lfoot1_ost_model = .data:0x0032F9F0; // type:object size:0x58 scope:global align:8
+base_ost_model = .data:0x0032FA48; // type:object size:0x78 scope:global align:8
+cKF_je_r_ost_1_tbl = .data:0x0032FAC0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_ost_1 = .data:0x0032FBF8; // type:object size:0x8 scope:global align:4
+ost_1_pal = .data:0x0032FC00; // type:object size:0x20 scope:global align:32
+ost_1_eye1_TA_tex_txt = .data:0x0032FC20; // type:object size:0x100 scope:global align:32
+ost_1_eye2_TA_tex_txt = .data:0x0032FD20; // type:object size:0x100 scope:global align:32
+ost_1_eye3_TA_tex_txt = .data:0x0032FE20; // type:object size:0x100 scope:global align:32
+ost_1_eye4_TA_tex_txt = .data:0x0032FF20; // type:object size:0x100 scope:global align:32
+ost_1_eye5_TA_tex_txt = .data:0x00330020; // type:object size:0x100 scope:global align:32
+ost_1_eye6_TA_tex_txt = .data:0x00330120; // type:object size:0x100 scope:global align:32
+ost_1_eye7_TA_tex_txt = .data:0x00330220; // type:object size:0x100 scope:global align:32
+ost_1_eye8_TA_tex_txt = .data:0x00330320; // type:object size:0x100 scope:global align:32
+ost_1_tmem_txt = .data:0x00330420; // type:object size:0x540 scope:global align:32
+ost_2_pal = .data:0x00330960; // type:object size:0x20 scope:global align:32
+ost_2_eye1_TA_tex_txt = .data:0x00330980; // type:object size:0x100 scope:global align:32
+ost_2_eye2_TA_tex_txt = .data:0x00330A80; // type:object size:0x100 scope:global align:32
+ost_2_eye3_TA_tex_txt = .data:0x00330B80; // type:object size:0x100 scope:global align:32
+ost_2_eye4_TA_tex_txt = .data:0x00330C80; // type:object size:0x100 scope:global align:32
+ost_2_eye5_TA_tex_txt = .data:0x00330D80; // type:object size:0x100 scope:global align:32
+ost_2_eye6_TA_tex_txt = .data:0x00330E80; // type:object size:0x100 scope:global align:32
+ost_2_eye7_TA_tex_txt = .data:0x00330F80; // type:object size:0x100 scope:global align:32
+ost_2_eye8_TA_tex_txt = .data:0x00331080; // type:object size:0x100 scope:global align:32
+ost_2_tmem_txt = .data:0x00331180; // type:object size:0x540 scope:global align:32
+ost_3_pal = .data:0x003316C0; // type:object size:0x20 scope:global align:32
+ost_3_eye1_TA_tex_txt = .data:0x003316E0; // type:object size:0x100 scope:global align:32
+ost_3_eye2_TA_tex_txt = .data:0x003317E0; // type:object size:0x100 scope:global align:32
+ost_3_eye3_TA_tex_txt = .data:0x003318E0; // type:object size:0x100 scope:global align:32
+ost_3_eye4_TA_tex_txt = .data:0x003319E0; // type:object size:0x100 scope:global align:32
+ost_3_eye5_TA_tex_txt = .data:0x00331AE0; // type:object size:0x100 scope:global align:32
+ost_3_eye6_TA_tex_txt = .data:0x00331BE0; // type:object size:0x100 scope:global align:32
+ost_3_eye7_TA_tex_txt = .data:0x00331CE0; // type:object size:0x100 scope:global align:32
+ost_3_eye8_TA_tex_txt = .data:0x00331DE0; // type:object size:0x100 scope:global align:32
+ost_3_tmem_txt = .data:0x00331EE0; // type:object size:0x540 scope:global align:32
+ost_4_pal = .data:0x00332420; // type:object size:0x20 scope:global align:32
+ost_4_eye1_TA_tex_txt = .data:0x00332440; // type:object size:0x100 scope:global align:32
+ost_4_eye2_TA_tex_txt = .data:0x00332540; // type:object size:0x100 scope:global align:32
+ost_4_eye3_TA_tex_txt = .data:0x00332640; // type:object size:0x100 scope:global align:32
+ost_4_eye4_TA_tex_txt = .data:0x00332740; // type:object size:0x100 scope:global align:32
+ost_4_eye5_TA_tex_txt = .data:0x00332840; // type:object size:0x100 scope:global align:32
+ost_4_eye6_TA_tex_txt = .data:0x00332940; // type:object size:0x100 scope:global align:32
+ost_4_eye7_TA_tex_txt = .data:0x00332A40; // type:object size:0x100 scope:global align:32
+ost_4_eye8_TA_tex_txt = .data:0x00332B40; // type:object size:0x100 scope:global align:32
+ost_4_tmem_txt = .data:0x00332C40; // type:object size:0x540 scope:global align:32
+player_room_island_info = .data:0x00333180; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_ISLAND_player_data = .data:0x003331C8; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_ISLAND_ctrl_actor_data = .data:0x003331D8; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_ISLAND_actor_data = .data:0x003331F0; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_ISLAND_object_bank = .data:0x00333210; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_ISLAND_door_data = .data:0x00333214; // type:object size:0x14 scope:global align:4
+player_room_ll1_info = .data:0x00333228; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_LL1_player_data = .data:0x00333270; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_LL1_ctrl_actor_data = .data:0x00333280; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_LL1_actor_data = .data:0x00333298; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_LL1_object_bank = .data:0x003332B8; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_LL1_door_data = .data:0x003332BC; // type:object size:0x28 scope:global align:4
+player_room_ll2_info = .data:0x003332E8; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_LL2_player_data = .data:0x00333330; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_LL2_ctrl_actor_data = .data:0x00333340; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_LL2_actor_data = .data:0x00333358; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_LL2_object_bank = .data:0x00333378; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_LL2_door_data = .data:0x0033337C; // type:object size:0x14 scope:global align:4
+player_room_l_info = .data:0x00333390; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_L_player_data = .data:0x003333D8; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_L_ctrl_actor_data = .data:0x003333E8; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_L_actor_data = .data:0x00333400; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_L_object_bank = .data:0x00333420; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_L_door_data = .data:0x00333424; // type:object size:0x14 scope:global align:4
+player_room_m_info = .data:0x00333438; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_M_player_data = .data:0x00333480; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_M_ctrl_actor_data = .data:0x00333490; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_M_actor_data = .data:0x003334A8; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_M_object_bank = .data:0x003334C8; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_M_door_data = .data:0x003334CC; // type:object size:0x14 scope:global align:4
+player_room_s_info = .data:0x003334E0; // type:object size:0x48 scope:global align:4
+PLAYER_ROOM_S_player_data = .data:0x00333528; // type:object size:0x10 scope:global align:4
+PLAYER_ROOM_S_ctrl_actor_data = .data:0x00333538; // type:object size:0x18 scope:global align:4
+PLAYER_ROOM_S_actor_data = .data:0x00333550; // type:object size:0x20 scope:global align:4
+PLAYER_ROOM_S_object_bank = .data:0x00333570; // type:object size:0x4 scope:global align:4
+PLAYER_ROOM_S_door_data = .data:0x00333574; // type:object size:0x14 scope:global align:4
+PLAYER_SELECT2_info = .data:0x00333588; // type:object size:0x30 scope:global align:4
+PLAYER_SELECT2_player_data = .data:0x003335B8; // type:object size:0x10 scope:global align:4
+PLAYER_SELECT2_ctrl_actor_data = .data:0x003335C8; // type:object size:0x6 scope:global align:4
+PLAYER_SELECT3_info = .data:0x003335D0; // type:object size:0x30 scope:global align:4
+PLAYER_SELECT3_player_data = .data:0x00333600; // type:object size:0x10 scope:global align:4
+PLAYER_SELECT3_ctrl_actor_data = .data:0x00333610; // type:object size:0x6 scope:global align:4
+PLAYER_SELECT4_info = .data:0x00333618; // type:object size:0x30 scope:global align:4
+PLAYER_SELECT4_player_data = .data:0x00333648; // type:object size:0x10 scope:global align:4
+PLAYER_SELECT4_ctrl_actor_data = .data:0x00333658; // type:object size:0x6 scope:global align:4
+player_select_info = .data:0x00333660; // type:object size:0x30 scope:global align:4
+PLAYER_SELECT_player_data = .data:0x00333690; // type:object size:0x10 scope:global align:4
+PLAYER_SELECT_ctrl_actor_data = .data:0x003336A0; // type:object size:0x6 scope:global align:4
+police_box_info = .data:0x003336A8; // type:object size:0x40 scope:global align:4
+POLICE_BOX_player_data = .data:0x003336E8; // type:object size:0x10 scope:global align:4
+POLICE_BOX_ctrl_actor_data = .data:0x003336F8; // type:object size:0x14 scope:global align:4
+POLICE_BOX_actor_data = .data:0x0033370C; // type:object size:0x20 scope:global align:4
+POLICE_BOX_object_bank = .data:0x0033372C; // type:object size:0x4 scope:global align:4
+POLICE_BOX_door_data = .data:0x00333730; // type:object size:0x14 scope:global align:4
+post_office_info = .data:0x00333748; // type:object size:0x48 scope:global align:4
+POST_OFFICE_player_data = .data:0x00333790; // type:object size:0x10 scope:global align:4
+POST_OFFICE_ctrl_actor_data = .data:0x003337A0; // type:object size:0x14 scope:global align:4
+POST_OFFICE_actor_data = .data:0x003337B4; // type:object size:0x30 scope:global align:4
+POST_OFFICE_object_bank = .data:0x003337E4; // type:object size:0x2 scope:global align:4
+POST_OFFICE_door_data = .data:0x003337E8; // type:object size:0x14 scope:global align:4
+p_room_bm_ll1_info = .data:0x00333800; // type:object size:0x40 scope:global align:4
+P_ROOM_BM_LL1_player_data = .data:0x00333840; // type:object size:0x10 scope:global align:4
+P_ROOM_BM_LL1_ctrl_actor_data = .data:0x00333850; // type:object size:0x18 scope:global align:4
+P_ROOM_BM_LL1_object_bank = .data:0x00333868; // type:object size:0x2 scope:global align:4
+P_ROOM_BM_LL1_door_data = .data:0x0033386C; // type:object size:0x14 scope:global align:4
+p_room_bm_l_info = .data:0x00333880; // type:object size:0x40 scope:global align:4
+P_ROOM_BM_L_player_data = .data:0x003338C0; // type:object size:0x10 scope:global align:4
+P_ROOM_BM_L_ctrl_actor_data = .data:0x003338D0; // type:object size:0x18 scope:global align:4
+P_ROOM_BM_L_object_bank = .data:0x003338E8; // type:object size:0x2 scope:global align:4
+P_ROOM_BM_L_door_data = .data:0x003338EC; // type:object size:0x14 scope:global align:4
+p_room_bm_m_info = .data:0x00333900; // type:object size:0x40 scope:global align:4
+P_ROOM_BM_M_player_data = .data:0x00333940; // type:object size:0x10 scope:global align:4
+P_ROOM_BM_M_ctrl_actor_data = .data:0x00333950; // type:object size:0x18 scope:global align:4
+P_ROOM_BM_M_object_bank = .data:0x00333968; // type:object size:0x2 scope:global align:4
+P_ROOM_BM_M_door_data = .data:0x0033396C; // type:object size:0x14 scope:global align:4
+p_room_bm_s_info = .data:0x00333980; // type:object size:0x40 scope:global align:4
+P_ROOM_BM_S_player_data = .data:0x003339C0; // type:object size:0x10 scope:global align:4
+P_ROOM_BM_S_ctrl_actor_data = .data:0x003339D0; // type:object size:0x18 scope:global align:4
+P_ROOM_BM_S_object_bank = .data:0x003339E8; // type:object size:0x2 scope:global align:4
+P_ROOM_BM_S_door_data = .data:0x003339EC; // type:object size:0x14 scope:global align:4
+pswd_famicom_list_max = .data:0x00333A00; // type:object size:0x4 scope:global align:4 data:4byte
+pswd_famicom_list = .data:0x00333A04; // type:object size:0x1E scope:global align:4
+pgn_1_v = .data:0x00333A28; // type:object size:0x17E0 scope:global align:8
+head_pgn_model = .data:0x00335208; // type:object size:0x1D0 scope:global align:8
+mouth_pgn_model = .data:0x003353D8; // type:object size:0x78 scope:global align:8
+Rarm2_pgn_model = .data:0x00335450; // type:object size:0x80 scope:global align:8
+Rarm1_pgn_model = .data:0x003354D0; // type:object size:0x78 scope:global align:8
+Larm2_pgn_model = .data:0x00335548; // type:object size:0x80 scope:global align:8
+Larm1_pgn_model = .data:0x003355C8; // type:object size:0x78 scope:global align:8
+chest_pgn_model = .data:0x00335640; // type:object size:0xD8 scope:global align:8
+tail1_pgn_model = .data:0x00335718; // type:object size:0x88 scope:global align:8
+Rfoot3_pgn_model = .data:0x003357A0; // type:object size:0x88 scope:global align:8
+Rfoot2_pgn_model = .data:0x00335828; // type:object size:0x80 scope:global align:8
+Rfoot1_pgn_model = .data:0x003358A8; // type:object size:0x58 scope:global align:8
+Lfoot3_pgn_model = .data:0x00335900; // type:object size:0x88 scope:global align:8
+Lfoot2_pgn_model = .data:0x00335988; // type:object size:0x80 scope:global align:8
+Lfoot1_pgn_model = .data:0x00335A08; // type:object size:0x58 scope:global align:8
+base_pgn_model = .data:0x00335A60; // type:object size:0xA0 scope:global align:8
+cKF_je_r_pgn_1_tbl = .data:0x00335B00; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pgn_1 = .data:0x00335C38; // type:object size:0x8 scope:global align:4
+pgn_1_pal = .data:0x00335C40; // type:object size:0x20 scope:global align:32
+pgn_1_eye1_TA_tex_txt = .data:0x00335C60; // type:object size:0x100 scope:global align:32
+pgn_1_eye2_TA_tex_txt = .data:0x00335D60; // type:object size:0x100 scope:global align:32
+pgn_1_eye3_TA_tex_txt = .data:0x00335E60; // type:object size:0x100 scope:global align:32
+pgn_1_eye4_TA_tex_txt = .data:0x00335F60; // type:object size:0x100 scope:global align:32
+pgn_1_eye5_TA_tex_txt = .data:0x00336060; // type:object size:0x100 scope:global align:32
+pgn_1_eye6_TA_tex_txt = .data:0x00336160; // type:object size:0x100 scope:global align:32
+pgn_1_eye7_TA_tex_txt = .data:0x00336260; // type:object size:0x100 scope:global align:32
+pgn_1_eye8_TA_tex_txt = .data:0x00336360; // type:object size:0x100 scope:global align:32
+pgn_1_tmem_txt = .data:0x00336460; // type:object size:0x580 scope:global align:32
+pgn_2_pal = .data:0x003369E0; // type:object size:0x20 scope:global align:32
+pgn_2_eye1_TA_tex_txt = .data:0x00336A00; // type:object size:0x100 scope:global align:32
+pgn_2_eye2_TA_tex_txt = .data:0x00336B00; // type:object size:0x100 scope:global align:32
+pgn_2_eye3_TA_tex_txt = .data:0x00336C00; // type:object size:0x100 scope:global align:32
+pgn_2_eye4_TA_tex_txt = .data:0x00336D00; // type:object size:0x100 scope:global align:32
+pgn_2_eye5_TA_tex_txt = .data:0x00336E00; // type:object size:0x100 scope:global align:32
+pgn_2_eye6_TA_tex_txt = .data:0x00336F00; // type:object size:0x100 scope:global align:32
+pgn_2_eye7_TA_tex_txt = .data:0x00337000; // type:object size:0x100 scope:global align:32
+pgn_2_eye8_TA_tex_txt = .data:0x00337100; // type:object size:0x100 scope:global align:32
+pgn_2_tmem_txt = .data:0x00337200; // type:object size:0x580 scope:global align:32
+pgn_3_pal = .data:0x00337780; // type:object size:0x20 scope:global align:32
+pgn_3_eye1_TA_tex_txt = .data:0x003377A0; // type:object size:0x100 scope:global align:32
+pgn_3_eye2_TA_tex_txt = .data:0x003378A0; // type:object size:0x100 scope:global align:32
+pgn_3_eye3_TA_tex_txt = .data:0x003379A0; // type:object size:0x100 scope:global align:32
+pgn_3_eye4_TA_tex_txt = .data:0x00337AA0; // type:object size:0x100 scope:global align:32
+pgn_3_eye5_TA_tex_txt = .data:0x00337BA0; // type:object size:0x100 scope:global align:32
+pgn_3_eye6_TA_tex_txt = .data:0x00337CA0; // type:object size:0x100 scope:global align:32
+pgn_3_eye7_TA_tex_txt = .data:0x00337DA0; // type:object size:0x100 scope:global align:32
+pgn_3_eye8_TA_tex_txt = .data:0x00337EA0; // type:object size:0x100 scope:global align:32
+pgn_3_tmem_txt = .data:0x00337FA0; // type:object size:0x580 scope:global align:32
+pgn_4_pal = .data:0x00338520; // type:object size:0x20 scope:global align:32
+pgn_4_eye1_TA_tex_txt = .data:0x00338540; // type:object size:0x100 scope:global align:32
+pgn_4_eye2_TA_tex_txt = .data:0x00338640; // type:object size:0x100 scope:global align:32
+pgn_4_eye3_TA_tex_txt = .data:0x00338740; // type:object size:0x100 scope:global align:32
+pgn_4_eye4_TA_tex_txt = .data:0x00338840; // type:object size:0x100 scope:global align:32
+pgn_4_eye5_TA_tex_txt = .data:0x00338940; // type:object size:0x100 scope:global align:32
+pgn_4_eye6_TA_tex_txt = .data:0x00338A40; // type:object size:0x100 scope:global align:32
+pgn_4_eye7_TA_tex_txt = .data:0x00338B40; // type:object size:0x100 scope:global align:32
+pgn_4_eye8_TA_tex_txt = .data:0x00338C40; // type:object size:0x100 scope:global align:32
+pgn_4_tmem_txt = .data:0x00338D40; // type:object size:0x580 scope:global align:32
+pgn_5_pal = .data:0x003392C0; // type:object size:0x20 scope:global align:32
+pgn_5_eye1_TA_tex_txt = .data:0x003392E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye2_TA_tex_txt = .data:0x003393E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye3_TA_tex_txt = .data:0x003394E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye4_TA_tex_txt = .data:0x003395E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye5_TA_tex_txt = .data:0x003396E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye6_TA_tex_txt = .data:0x003397E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye7_TA_tex_txt = .data:0x003398E0; // type:object size:0x100 scope:global align:32
+pgn_5_eye8_TA_tex_txt = .data:0x003399E0; // type:object size:0x100 scope:global align:32
+pgn_5_tmem_txt = .data:0x00339AE0; // type:object size:0x580 scope:global align:32
+pgn_6_pal = .data:0x0033A060; // type:object size:0x20 scope:global align:32
+pgn_6_eye1_TA_tex_txt = .data:0x0033A080; // type:object size:0x100 scope:global align:32
+pgn_6_eye2_TA_tex_txt = .data:0x0033A180; // type:object size:0x100 scope:global align:32
+pgn_6_eye3_TA_tex_txt = .data:0x0033A280; // type:object size:0x100 scope:global align:32
+pgn_6_eye4_TA_tex_txt = .data:0x0033A380; // type:object size:0x100 scope:global align:32
+pgn_6_eye5_TA_tex_txt = .data:0x0033A480; // type:object size:0x100 scope:global align:32
+pgn_6_eye6_TA_tex_txt = .data:0x0033A580; // type:object size:0x100 scope:global align:32
+pgn_6_eye7_TA_tex_txt = .data:0x0033A680; // type:object size:0x100 scope:global align:32
+pgn_6_eye8_TA_tex_txt = .data:0x0033A780; // type:object size:0x100 scope:global align:32
+pgn_6_tmem_txt = .data:0x0033A880; // type:object size:0x580 scope:global align:32
+pgn_7_pal = .data:0x0033AE00; // type:object size:0x20 scope:global align:32
+pgn_7_eye1_TA_tex_txt = .data:0x0033AE20; // type:object size:0x100 scope:global align:32
+pgn_7_eye2_TA_tex_txt = .data:0x0033AF20; // type:object size:0x100 scope:global align:32
+pgn_7_eye3_TA_tex_txt = .data:0x0033B020; // type:object size:0x100 scope:global align:32
+pgn_7_eye4_TA_tex_txt = .data:0x0033B120; // type:object size:0x100 scope:global align:32
+pgn_7_eye5_TA_tex_txt = .data:0x0033B220; // type:object size:0x100 scope:global align:32
+pgn_7_eye6_TA_tex_txt = .data:0x0033B320; // type:object size:0x100 scope:global align:32
+pgn_7_eye7_TA_tex_txt = .data:0x0033B420; // type:object size:0x100 scope:global align:32
+pgn_7_eye8_TA_tex_txt = .data:0x0033B520; // type:object size:0x100 scope:global align:32
+pgn_7_tmem_txt = .data:0x0033B620; // type:object size:0x580 scope:global align:32
+pgn_8_pal = .data:0x0033BBA0; // type:object size:0x20 scope:global align:32
+pgn_8_eye1_TA_tex_txt = .data:0x0033BBC0; // type:object size:0x100 scope:global align:32
+pgn_8_eye2_TA_tex_txt = .data:0x0033BCC0; // type:object size:0x100 scope:global align:32
+pgn_8_eye3_TA_tex_txt = .data:0x0033BDC0; // type:object size:0x100 scope:global align:32
+pgn_8_eye4_TA_tex_txt = .data:0x0033BEC0; // type:object size:0x100 scope:global align:32
+pgn_8_eye5_TA_tex_txt = .data:0x0033BFC0; // type:object size:0x100 scope:global align:32
+pgn_8_eye6_TA_tex_txt = .data:0x0033C0C0; // type:object size:0x100 scope:global align:32
+pgn_8_eye7_TA_tex_txt = .data:0x0033C1C0; // type:object size:0x100 scope:global align:32
+pgn_8_eye8_TA_tex_txt = .data:0x0033C2C0; // type:object size:0x100 scope:global align:32
+pgn_8_tmem_txt = .data:0x0033C3C0; // type:object size:0x580 scope:global align:32
+pig_1_v = .data:0x0033C940; // type:object size:0x13F0 scope:global align:8
+head_pig_model = .data:0x0033DD30; // type:object size:0x138 scope:global align:8
+Rarm2_pig_model = .data:0x0033DE68; // type:object size:0x88 scope:global align:8
+Rarm1_pig_model = .data:0x0033DEF0; // type:object size:0x78 scope:global align:8
+Larm2_pig_model = .data:0x0033DF68; // type:object size:0x88 scope:global align:8
+Larm1_pig_model = .data:0x0033DFF0; // type:object size:0x78 scope:global align:8
+chest_pig_model = .data:0x0033E068; // type:object size:0xA8 scope:global align:8
+tail1_pig_model = .data:0x0033E110; // type:object size:0x80 scope:global align:8
+Rfoot2_pig_model = .data:0x0033E190; // type:object size:0x80 scope:global align:8
+Rfoot1_pig_model = .data:0x0033E210; // type:object size:0xC0 scope:global align:8
+Lfoot2_pig_model = .data:0x0033E2D0; // type:object size:0x80 scope:global align:8
+Lfoot1_pig_model = .data:0x0033E350; // type:object size:0xC0 scope:global align:8
+base_pig_model = .data:0x0033E410; // type:object size:0x70 scope:global align:8
+cKF_je_r_pig_1_tbl = .data:0x0033E480; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pig_1 = .data:0x0033E5B8; // type:object size:0x8 scope:global align:4
+pig_1_pal = .data:0x0033E5C0; // type:object size:0x20 scope:global align:32
+pig_1_eye1_TA_tex_txt = .data:0x0033E5E0; // type:object size:0x100 scope:global align:32
+pig_1_eye2_TA_tex_txt = .data:0x0033E6E0; // type:object size:0x100 scope:global align:32
+pig_1_eye3_TA_tex_txt = .data:0x0033E7E0; // type:object size:0x100 scope:global align:32
+pig_1_eye4_TA_tex_txt = .data:0x0033E8E0; // type:object size:0x100 scope:global align:32
+pig_1_eye5_TA_tex_txt = .data:0x0033E9E0; // type:object size:0x100 scope:global align:32
+pig_1_eye6_TA_tex_txt = .data:0x0033EAE0; // type:object size:0x100 scope:global align:32
+pig_1_eye7_TA_tex_txt = .data:0x0033EBE0; // type:object size:0x100 scope:global align:32
+pig_1_eye8_TA_tex_txt = .data:0x0033ECE0; // type:object size:0x100 scope:global align:32
+pig_1_mouth1_TA_tex_txt = .data:0x0033EDE0; // type:object size:0x100 scope:global align:32
+pig_1_mouth2_TA_tex_txt = .data:0x0033EEE0; // type:object size:0x100 scope:global align:32
+pig_1_mouth3_TA_tex_txt = .data:0x0033EFE0; // type:object size:0x100 scope:global align:32
+pig_1_mouth4_TA_tex_txt = .data:0x0033F0E0; // type:object size:0x100 scope:global align:32
+pig_1_mouth5_TA_tex_txt = .data:0x0033F1E0; // type:object size:0x100 scope:global align:32
+pig_1_mouth6_TA_tex_txt = .data:0x0033F2E0; // type:object size:0x100 scope:global align:32
+pig_1_tmem_txt = .data:0x0033F3E0; // type:object size:0x380 scope:global align:32
+pig_2_pal = .data:0x0033F760; // type:object size:0x20 scope:global align:32
+pig_2_eye1_TA_tex_txt = .data:0x0033F780; // type:object size:0x100 scope:global align:32
+pig_2_eye2_TA_tex_txt = .data:0x0033F880; // type:object size:0x100 scope:global align:32
+pig_2_eye3_TA_tex_txt = .data:0x0033F980; // type:object size:0x100 scope:global align:32
+pig_2_eye4_TA_tex_txt = .data:0x0033FA80; // type:object size:0x100 scope:global align:32
+pig_2_eye5_TA_tex_txt = .data:0x0033FB80; // type:object size:0x100 scope:global align:32
+pig_2_eye6_TA_tex_txt = .data:0x0033FC80; // type:object size:0x100 scope:global align:32
+pig_2_eye7_TA_tex_txt = .data:0x0033FD80; // type:object size:0x100 scope:global align:32
+pig_2_eye8_TA_tex_txt = .data:0x0033FE80; // type:object size:0x100 scope:global align:32
+pig_2_mouth1_TA_tex_txt = .data:0x0033FF80; // type:object size:0x100 scope:global align:32
+pig_2_mouth2_TA_tex_txt = .data:0x00340080; // type:object size:0x100 scope:global align:32
+pig_2_mouth3_TA_tex_txt = .data:0x00340180; // type:object size:0x100 scope:global align:32
+pig_2_mouth4_TA_tex_txt = .data:0x00340280; // type:object size:0x100 scope:global align:32
+pig_2_mouth5_TA_tex_txt = .data:0x00340380; // type:object size:0x100 scope:global align:32
+pig_2_mouth6_TA_tex_txt = .data:0x00340480; // type:object size:0x100 scope:global align:32
+pig_2_tmem_txt = .data:0x00340580; // type:object size:0x380 scope:global align:32
+pig_11_pal = .data:0x00340900; // type:object size:0x20 scope:global align:32
+pig_11_eye1_TA_tex_txt = .data:0x00340920; // type:object size:0x100 scope:global align:32
+pig_11_eye2_TA_tex_txt = .data:0x00340A20; // type:object size:0x100 scope:global align:32
+pig_11_eye3_TA_tex_txt = .data:0x00340B20; // type:object size:0x100 scope:global align:32
+pig_11_eye4_TA_tex_txt = .data:0x00340C20; // type:object size:0x100 scope:global align:32
+pig_11_eye5_TA_tex_txt = .data:0x00340D20; // type:object size:0x100 scope:global align:32
+pig_11_eye6_TA_tex_txt = .data:0x00340E20; // type:object size:0x100 scope:global align:32
+pig_11_eye7_TA_tex_txt = .data:0x00340F20; // type:object size:0x100 scope:global align:32
+pig_11_eye8_TA_tex_txt = .data:0x00341020; // type:object size:0x100 scope:global align:32
+pig_11_mouth1_TA_tex_txt = .data:0x00341120; // type:object size:0x100 scope:global align:32
+pig_11_mouth2_TA_tex_txt = .data:0x00341220; // type:object size:0x100 scope:global align:32
+pig_11_mouth3_TA_tex_txt = .data:0x00341320; // type:object size:0x100 scope:global align:32
+pig_11_mouth4_TA_tex_txt = .data:0x00341420; // type:object size:0x100 scope:global align:32
+pig_11_mouth5_TA_tex_txt = .data:0x00341520; // type:object size:0x100 scope:global align:32
+pig_11_mouth6_TA_tex_txt = .data:0x00341620; // type:object size:0x100 scope:global align:32
+pig_11_tmem_txt = .data:0x00341720; // type:object size:0x380 scope:global align:32
+pig_3_pal = .data:0x00341AA0; // type:object size:0x20 scope:global align:32
+pig_3_eye1_TA_tex_txt = .data:0x00341AC0; // type:object size:0x100 scope:global align:32
+pig_3_eye2_TA_tex_txt = .data:0x00341BC0; // type:object size:0x100 scope:global align:32
+pig_3_eye3_TA_tex_txt = .data:0x00341CC0; // type:object size:0x100 scope:global align:32
+pig_3_eye4_TA_tex_txt = .data:0x00341DC0; // type:object size:0x100 scope:global align:32
+pig_3_eye5_TA_tex_txt = .data:0x00341EC0; // type:object size:0x100 scope:global align:32
+pig_3_eye6_TA_tex_txt = .data:0x00341FC0; // type:object size:0x100 scope:global align:32
+pig_3_eye7_TA_tex_txt = .data:0x003420C0; // type:object size:0x100 scope:global align:32
+pig_3_eye8_TA_tex_txt = .data:0x003421C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth1_TA_tex_txt = .data:0x003422C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth2_TA_tex_txt = .data:0x003423C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth3_TA_tex_txt = .data:0x003424C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth4_TA_tex_txt = .data:0x003425C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth5_TA_tex_txt = .data:0x003426C0; // type:object size:0x100 scope:global align:32
+pig_3_mouth6_TA_tex_txt = .data:0x003427C0; // type:object size:0x100 scope:global align:32
+pig_3_tmem_txt = .data:0x003428C0; // type:object size:0x380 scope:global align:32
+pig_4_pal = .data:0x00342C40; // type:object size:0x20 scope:global align:32
+pig_4_eye1_TA_tex_txt = .data:0x00342C60; // type:object size:0x100 scope:global align:32
+pig_4_eye2_TA_tex_txt = .data:0x00342D60; // type:object size:0x100 scope:global align:32
+pig_4_eye3_TA_tex_txt = .data:0x00342E60; // type:object size:0x100 scope:global align:32
+pig_4_eye4_TA_tex_txt = .data:0x00342F60; // type:object size:0x100 scope:global align:32
+pig_4_eye5_TA_tex_txt = .data:0x00343060; // type:object size:0x100 scope:global align:32
+pig_4_eye6_TA_tex_txt = .data:0x00343160; // type:object size:0x100 scope:global align:32
+pig_4_eye7_TA_tex_txt = .data:0x00343260; // type:object size:0x100 scope:global align:32
+pig_4_eye8_TA_tex_txt = .data:0x00343360; // type:object size:0x100 scope:global align:32
+pig_4_mouth1_TA_tex_txt = .data:0x00343460; // type:object size:0x100 scope:global align:32
+pig_4_mouth2_TA_tex_txt = .data:0x00343560; // type:object size:0x100 scope:global align:32
+pig_4_mouth3_TA_tex_txt = .data:0x00343660; // type:object size:0x100 scope:global align:32
+pig_4_mouth4_TA_tex_txt = .data:0x00343760; // type:object size:0x100 scope:global align:32
+pig_4_mouth5_TA_tex_txt = .data:0x00343860; // type:object size:0x100 scope:global align:32
+pig_4_mouth6_TA_tex_txt = .data:0x00343960; // type:object size:0x100 scope:global align:32
+pig_4_tmem_txt = .data:0x00343A60; // type:object size:0x380 scope:global align:32
+pig_5_pal = .data:0x00343DE0; // type:object size:0x20 scope:global align:32
+pig_5_eye1_TA_tex_txt = .data:0x00343E00; // type:object size:0x100 scope:global align:32
+pig_5_eye2_TA_tex_txt = .data:0x00343F00; // type:object size:0x100 scope:global align:32
+pig_5_eye3_TA_tex_txt = .data:0x00344000; // type:object size:0x100 scope:global align:32
+pig_5_eye4_TA_tex_txt = .data:0x00344100; // type:object size:0x100 scope:global align:32
+pig_5_eye5_TA_tex_txt = .data:0x00344200; // type:object size:0x100 scope:global align:32
+pig_5_eye6_TA_tex_txt = .data:0x00344300; // type:object size:0x100 scope:global align:32
+pig_5_eye7_TA_tex_txt = .data:0x00344400; // type:object size:0x100 scope:global align:32
+pig_5_eye8_TA_tex_txt = .data:0x00344500; // type:object size:0x100 scope:global align:32
+pig_5_mouth1_TA_tex_txt = .data:0x00344600; // type:object size:0x100 scope:global align:32
+pig_5_mouth2_TA_tex_txt = .data:0x00344700; // type:object size:0x100 scope:global align:32
+pig_5_mouth3_TA_tex_txt = .data:0x00344800; // type:object size:0x100 scope:global align:32
+pig_5_mouth4_TA_tex_txt = .data:0x00344900; // type:object size:0x100 scope:global align:32
+pig_5_mouth5_TA_tex_txt = .data:0x00344A00; // type:object size:0x100 scope:global align:32
+pig_5_mouth6_TA_tex_txt = .data:0x00344B00; // type:object size:0x100 scope:global align:32
+pig_5_tmem_txt = .data:0x00344C00; // type:object size:0x380 scope:global align:32
+pig_6_pal = .data:0x00344F80; // type:object size:0x20 scope:global align:32
+pig_6_eye1_TA_tex_txt = .data:0x00344FA0; // type:object size:0x100 scope:global align:32
+pig_6_eye2_TA_tex_txt = .data:0x003450A0; // type:object size:0x100 scope:global align:32
+pig_6_eye3_TA_tex_txt = .data:0x003451A0; // type:object size:0x100 scope:global align:32
+pig_6_eye4_TA_tex_txt = .data:0x003452A0; // type:object size:0x100 scope:global align:32
+pig_6_eye5_TA_tex_txt = .data:0x003453A0; // type:object size:0x100 scope:global align:32
+pig_6_eye6_TA_tex_txt = .data:0x003454A0; // type:object size:0x100 scope:global align:32
+pig_6_eye7_TA_tex_txt = .data:0x003455A0; // type:object size:0x100 scope:global align:32
+pig_6_eye8_TA_tex_txt = .data:0x003456A0; // type:object size:0x100 scope:global align:32
+pig_6_mouth1_TA_tex_txt = .data:0x003457A0; // type:object size:0x100 scope:global align:32
+pig_6_mouth2_TA_tex_txt = .data:0x003458A0; // type:object size:0x100 scope:global align:32
+pig_6_mouth3_TA_tex_txt = .data:0x003459A0; // type:object size:0x100 scope:global align:32
+pig_6_mouth4_TA_tex_txt = .data:0x00345AA0; // type:object size:0x100 scope:global align:32
+pig_6_mouth5_TA_tex_txt = .data:0x00345BA0; // type:object size:0x100 scope:global align:32
+pig_6_mouth6_TA_tex_txt = .data:0x00345CA0; // type:object size:0x100 scope:global align:32
+pig_6_tmem_txt = .data:0x00345DA0; // type:object size:0x380 scope:global align:32
+pig_7_pal = .data:0x00346120; // type:object size:0x20 scope:global align:32
+pig_7_eye1_TA_tex_txt = .data:0x00346140; // type:object size:0x100 scope:global align:32
+pig_7_eye2_TA_tex_txt = .data:0x00346240; // type:object size:0x100 scope:global align:32
+pig_7_eye3_TA_tex_txt = .data:0x00346340; // type:object size:0x100 scope:global align:32
+pig_7_eye4_TA_tex_txt = .data:0x00346440; // type:object size:0x100 scope:global align:32
+pig_7_eye5_TA_tex_txt = .data:0x00346540; // type:object size:0x100 scope:global align:32
+pig_7_eye6_TA_tex_txt = .data:0x00346640; // type:object size:0x100 scope:global align:32
+pig_7_eye7_TA_tex_txt = .data:0x00346740; // type:object size:0x100 scope:global align:32
+pig_7_eye8_TA_tex_txt = .data:0x00346840; // type:object size:0x100 scope:global align:32
+pig_7_mouth1_TA_tex_txt = .data:0x00346940; // type:object size:0x100 scope:global align:32
+pig_7_mouth2_TA_tex_txt = .data:0x00346A40; // type:object size:0x100 scope:global align:32
+pig_7_mouth3_TA_tex_txt = .data:0x00346B40; // type:object size:0x100 scope:global align:32
+pig_7_mouth4_TA_tex_txt = .data:0x00346C40; // type:object size:0x100 scope:global align:32
+pig_7_mouth5_TA_tex_txt = .data:0x00346D40; // type:object size:0x100 scope:global align:32
+pig_7_mouth6_TA_tex_txt = .data:0x00346E40; // type:object size:0x100 scope:global align:32
+pig_7_tmem_txt = .data:0x00346F40; // type:object size:0x380 scope:global align:32
+pig_8_pal = .data:0x003472C0; // type:object size:0x20 scope:global align:32
+pig_8_eye1_TA_tex_txt = .data:0x003472E0; // type:object size:0x100 scope:global align:32
+pig_8_eye2_TA_tex_txt = .data:0x003473E0; // type:object size:0x100 scope:global align:32
+pig_8_eye3_TA_tex_txt = .data:0x003474E0; // type:object size:0x100 scope:global align:32
+pig_8_eye4_TA_tex_txt = .data:0x003475E0; // type:object size:0x100 scope:global align:32
+pig_8_eye5_TA_tex_txt = .data:0x003476E0; // type:object size:0x100 scope:global align:32
+pig_8_eye6_TA_tex_txt = .data:0x003477E0; // type:object size:0x100 scope:global align:32
+pig_8_eye7_TA_tex_txt = .data:0x003478E0; // type:object size:0x100 scope:global align:32
+pig_8_eye8_TA_tex_txt = .data:0x003479E0; // type:object size:0x100 scope:global align:32
+pig_8_mouth1_TA_tex_txt = .data:0x00347AE0; // type:object size:0x100 scope:global align:32
+pig_8_mouth2_TA_tex_txt = .data:0x00347BE0; // type:object size:0x100 scope:global align:32
+pig_8_mouth3_TA_tex_txt = .data:0x00347CE0; // type:object size:0x100 scope:global align:32
+pig_8_mouth4_TA_tex_txt = .data:0x00347DE0; // type:object size:0x100 scope:global align:32
+pig_8_mouth5_TA_tex_txt = .data:0x00347EE0; // type:object size:0x100 scope:global align:32
+pig_8_mouth6_TA_tex_txt = .data:0x00347FE0; // type:object size:0x100 scope:global align:32
+pig_8_tmem_txt = .data:0x003480E0; // type:object size:0x380 scope:global align:32
+pig_9_pal = .data:0x00348460; // type:object size:0x20 scope:global align:32
+pig_9_eye1_TA_tex_txt = .data:0x00348480; // type:object size:0x100 scope:global align:32
+pig_9_eye2_TA_tex_txt = .data:0x00348580; // type:object size:0x100 scope:global align:32
+pig_9_eye3_TA_tex_txt = .data:0x00348680; // type:object size:0x100 scope:global align:32
+pig_9_eye4_TA_tex_txt = .data:0x00348780; // type:object size:0x100 scope:global align:32
+pig_9_eye5_TA_tex_txt = .data:0x00348880; // type:object size:0x100 scope:global align:32
+pig_9_eye6_TA_tex_txt = .data:0x00348980; // type:object size:0x100 scope:global align:32
+pig_9_eye7_TA_tex_txt = .data:0x00348A80; // type:object size:0x100 scope:global align:32
+pig_9_eye8_TA_tex_txt = .data:0x00348B80; // type:object size:0x100 scope:global align:32
+pig_9_mouth1_TA_tex_txt = .data:0x00348C80; // type:object size:0x100 scope:global align:32
+pig_9_mouth2_TA_tex_txt = .data:0x00348D80; // type:object size:0x100 scope:global align:32
+pig_9_mouth3_TA_tex_txt = .data:0x00348E80; // type:object size:0x100 scope:global align:32
+pig_9_mouth4_TA_tex_txt = .data:0x00348F80; // type:object size:0x100 scope:global align:32
+pig_9_mouth5_TA_tex_txt = .data:0x00349080; // type:object size:0x100 scope:global align:32
+pig_9_mouth6_TA_tex_txt = .data:0x00349180; // type:object size:0x100 scope:global align:32
+pig_9_tmem_txt = .data:0x00349280; // type:object size:0x380 scope:global align:32
+pig_10_pal = .data:0x00349600; // type:object size:0x20 scope:global align:32
+pig_10_eye1_TA_tex_txt = .data:0x00349620; // type:object size:0x100 scope:global align:32
+pig_10_eye2_TA_tex_txt = .data:0x00349720; // type:object size:0x100 scope:global align:32
+pig_10_eye3_TA_tex_txt = .data:0x00349820; // type:object size:0x100 scope:global align:32
+pig_10_eye4_TA_tex_txt = .data:0x00349920; // type:object size:0x100 scope:global align:32
+pig_10_eye5_TA_tex_txt = .data:0x00349A20; // type:object size:0x100 scope:global align:32
+pig_10_eye6_TA_tex_txt = .data:0x00349B20; // type:object size:0x100 scope:global align:32
+pig_10_eye7_TA_tex_txt = .data:0x00349C20; // type:object size:0x100 scope:global align:32
+pig_10_eye8_TA_tex_txt = .data:0x00349D20; // type:object size:0x100 scope:global align:32
+pig_10_mouth1_TA_tex_txt = .data:0x00349E20; // type:object size:0x100 scope:global align:32
+pig_10_mouth2_TA_tex_txt = .data:0x00349F20; // type:object size:0x100 scope:global align:32
+pig_10_mouth3_TA_tex_txt = .data:0x0034A020; // type:object size:0x100 scope:global align:32
+pig_10_mouth4_TA_tex_txt = .data:0x0034A120; // type:object size:0x100 scope:global align:32
+pig_10_mouth5_TA_tex_txt = .data:0x0034A220; // type:object size:0x100 scope:global align:32
+pig_10_mouth6_TA_tex_txt = .data:0x0034A320; // type:object size:0x100 scope:global align:32
+pig_10_tmem_txt = .data:0x0034A420; // type:object size:0x380 scope:global align:32
+pla_1_v = .data:0x0034A7A0; // type:object size:0x1CB0 scope:global align:8
+head_pla_model = .data:0x0034C450; // type:object size:0x2B8 scope:global align:8
+Rarm2_pla_model = .data:0x0034C708; // type:object size:0x88 scope:global align:8
+Rarm1_pla_model = .data:0x0034C790; // type:object size:0x78 scope:global align:8
+Larm2_pla_model = .data:0x0034C808; // type:object size:0x88 scope:global align:8
+Larm1_pla_model = .data:0x0034C890; // type:object size:0x78 scope:global align:8
+chest_pla_model = .data:0x0034C908; // type:object size:0xF8 scope:global align:8
+tail1_pla_model = .data:0x0034CA00; // type:object size:0x88 scope:global align:8
+Rfoot2_pla_model = .data:0x0034CA88; // type:object size:0x80 scope:global align:8
+Rfoot1_pla_model = .data:0x0034CB08; // type:object size:0x58 scope:global align:8
+Lfoot2_pla_model = .data:0x0034CB60; // type:object size:0x80 scope:global align:8
+Lfoot1_pla_model = .data:0x0034CBE0; // type:object size:0x58 scope:global align:8
+base_pla_model = .data:0x0034CC38; // type:object size:0xA0 scope:global align:8
+cKF_je_r_pla_1_tbl = .data:0x0034CCD8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pla_1 = .data:0x0034CE10; // type:object size:0x8 scope:global align:4
+plc_1_v = .data:0x0034CE18; // type:object size:0x1730 scope:global align:8
+head_plc_model = .data:0x0034E548; // type:object size:0x198 scope:global align:8
+Rarm2_plc_model = .data:0x0034E6E0; // type:object size:0x80 scope:global align:8
+Rarm1_plc_model = .data:0x0034E760; // type:object size:0x88 scope:global align:8
+Larm2_plc_model = .data:0x0034E7E8; // type:object size:0x80 scope:global align:8
+Larm1_plc_model = .data:0x0034E868; // type:object size:0x88 scope:global align:8
+chest_plc_model = .data:0x0034E8F0; // type:object size:0x108 scope:global align:8
+tail1_plc_model = .data:0x0034E9F8; // type:object size:0x58 scope:global align:8
+tail2_plc_model = .data:0x0034EA50; // type:object size:0xA0 scope:global align:8
+Rfoot2_plc_model = .data:0x0034EAF0; // type:object size:0x88 scope:global align:8
+Rfoot1_plc_model = .data:0x0034EB78; // type:object size:0x80 scope:global align:8
+Lfoot2_plc_model = .data:0x0034EBF8; // type:object size:0x88 scope:global align:8
+Lfoot1_plc_model = .data:0x0034EC80; // type:object size:0x80 scope:global align:8
+base_plc_model = .data:0x0034ED00; // type:object size:0xD0 scope:global align:8
+cKF_je_r_plc_1_tbl = .data:0x0034EDD0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_plc_1 = .data:0x0034EF08; // type:object size:0x8 scope:global align:4
+plc_1_pal = .data:0x0034EF20; // type:object size:0x20 scope:global align:32
+plc_1_eye1_TA_tex_txt = .data:0x0034EF40; // type:object size:0x100 scope:global align:32
+plc_1_eye2_TA_tex_txt = .data:0x0034F040; // type:object size:0x100 scope:global align:32
+plc_1_eye3_TA_tex_txt = .data:0x0034F140; // type:object size:0x100 scope:global align:32
+plc_1_eye4_TA_tex_txt = .data:0x0034F240; // type:object size:0x100 scope:global align:32
+plc_1_eye5_TA_tex_txt = .data:0x0034F340; // type:object size:0x100 scope:global align:32
+plc_1_eye6_TA_tex_txt = .data:0x0034F440; // type:object size:0x100 scope:global align:32
+plc_1_eye7_TA_tex_txt = .data:0x0034F540; // type:object size:0x100 scope:global align:32
+plc_1_eye8_TA_tex_txt = .data:0x0034F640; // type:object size:0x100 scope:global align:32
+plc_1_mouth1_TA_tex_txt = .data:0x0034F740; // type:object size:0x100 scope:global align:32
+plc_1_mouth2_TA_tex_txt = .data:0x0034F840; // type:object size:0x100 scope:global align:32
+plc_1_mouth3_TA_tex_txt = .data:0x0034F940; // type:object size:0x100 scope:global align:32
+plc_1_mouth4_TA_tex_txt = .data:0x0034FA40; // type:object size:0x100 scope:global align:32
+plc_1_mouth5_TA_tex_txt = .data:0x0034FB40; // type:object size:0x100 scope:global align:32
+plc_1_mouth6_TA_tex_txt = .data:0x0034FC40; // type:object size:0x100 scope:global align:32
+plc_1_tmem_txt = .data:0x0034FD40; // type:object size:0x6C0 scope:global align:32
+pla_1_pal = .data:0x00350400; // type:object size:0x20 scope:global align:32
+pla_1_eye1_TA_tex_txt = .data:0x00350420; // type:object size:0x100 scope:global align:32
+pla_1_eye2_TA_tex_txt = .data:0x00350520; // type:object size:0x100 scope:global align:32
+pla_1_eye3_TA_tex_txt = .data:0x00350620; // type:object size:0x100 scope:global align:32
+pla_1_eye4_TA_tex_txt = .data:0x00350720; // type:object size:0x100 scope:global align:32
+pla_1_eye5_TA_tex_txt = .data:0x00350820; // type:object size:0x100 scope:global align:32
+pla_1_eye6_TA_tex_txt = .data:0x00350920; // type:object size:0x100 scope:global align:32
+pla_1_eye7_TA_tex_txt = .data:0x00350A20; // type:object size:0x100 scope:global align:32
+pla_1_eye8_TA_tex_txt = .data:0x00350B20; // type:object size:0x100 scope:global align:32
+pla_1_mouth1_TA_tex_txt = .data:0x00350C20; // type:object size:0x100 scope:global align:32
+pla_1_mouth2_TA_tex_txt = .data:0x00350D20; // type:object size:0x100 scope:global align:32
+pla_1_mouth3_TA_tex_txt = .data:0x00350E20; // type:object size:0x100 scope:global align:32 data:string
+pla_1_mouth4_TA_tex_txt = .data:0x00350F20; // type:object size:0x100 scope:global align:32
+pla_1_mouth5_TA_tex_txt = .data:0x00351020; // type:object size:0x100 scope:global align:32
+pla_1_mouth6_TA_tex_txt = .data:0x00351120; // type:object size:0x100 scope:global align:32 data:string
+pla_1_tmem_txt = .data:0x00351220; // type:object size:0x580 scope:global align:32
+pga_1_v = .data:0x003517A0; // type:object size:0x1A20 scope:global align:8
+head_pga_model = .data:0x003531C0; // type:object size:0x1A0 scope:global align:8
+mouth_pga_model = .data:0x00353360; // type:object size:0xF0 scope:global align:8
+Rarm2_pga_model = .data:0x00353450; // type:object size:0xB8 scope:global align:8
+Rarm1_pga_model = .data:0x00353508; // type:object size:0xA8 scope:global align:8
+Larm2_pga_model = .data:0x003535B0; // type:object size:0xB8 scope:global align:8
+Larm1_pga_model = .data:0x00353668; // type:object size:0xA8 scope:global align:8
+chest_pga_model = .data:0x00353710; // type:object size:0xA0 scope:global align:8
+tail1_pga_model = .data:0x003537B0; // type:object size:0x78 scope:global align:8
+Rfoot3_pga_model = .data:0x00353828; // type:object size:0x88 scope:global align:8
+Rfoot2_pga_model = .data:0x003538B0; // type:object size:0x80 scope:global align:8
+Rfoot1_pga_model = .data:0x00353930; // type:object size:0x58 scope:global align:8
+Lfoot3_pga_model = .data:0x00353988; // type:object size:0x88 scope:global align:8
+Lfoot2_pga_model = .data:0x00353A10; // type:object size:0x80 scope:global align:8
+Lfoot1_pga_model = .data:0x00353A90; // type:object size:0x58 scope:global align:8
+base_pga_model = .data:0x00353AE8; // type:object size:0x78 scope:global align:8
+cKF_je_r_pga_1_tbl = .data:0x00353B60; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pga_1 = .data:0x00353C98; // type:object size:0x8 scope:global align:4
+pga_1_pal = .data:0x00353CA0; // type:object size:0x20 scope:global align:32
+pga_1_eye1_TA_tex_txt = .data:0x00353CC0; // type:object size:0x100 scope:global align:32
+pga_1_eye2_TA_tex_txt = .data:0x00353DC0; // type:object size:0x100 scope:global align:32
+pga_1_eye3_TA_tex_txt = .data:0x00353EC0; // type:object size:0x100 scope:global align:32
+pga_1_eye4_TA_tex_txt = .data:0x00353FC0; // type:object size:0x100 scope:global align:32
+pga_1_eye5_TA_tex_txt = .data:0x003540C0; // type:object size:0x100 scope:global align:32
+pga_1_eye6_TA_tex_txt = .data:0x003541C0; // type:object size:0x100 scope:global align:32
+pga_1_eye7_TA_tex_txt = .data:0x003542C0; // type:object size:0x100 scope:global align:32
+pga_1_eye8_TA_tex_txt = .data:0x003543C0; // type:object size:0x100 scope:global align:32
+pga_1_tmem_txt = .data:0x003544C0; // type:object size:0x640 scope:global align:32
+pgb_1_v = .data:0x00354B00; // type:object size:0x1990 scope:global align:8
+head_pgb_model = .data:0x00356490; // type:object size:0x1C0 scope:global align:8
+mouth_pgb_model = .data:0x00356650; // type:object size:0xB0 scope:global align:8
+Rarm2_pgb_model = .data:0x00356700; // type:object size:0xB8 scope:global align:8
+Rarm1_pgb_model = .data:0x003567B8; // type:object size:0xA8 scope:global align:8
+Larm2_pgb_model = .data:0x00356860; // type:object size:0xB8 scope:global align:8
+Larm1_pgb_model = .data:0x00356918; // type:object size:0xA8 scope:global align:8
+chest_pgb_model = .data:0x003569C0; // type:object size:0xA0 scope:global align:8
+tail1_pgb_model = .data:0x00356A60; // type:object size:0x78 scope:global align:8
+Rfoot3_pgb_model = .data:0x00356AD8; // type:object size:0x88 scope:global align:8
+Rfoot2_pgb_model = .data:0x00356B60; // type:object size:0x80 scope:global align:8
+Rfoot1_pgb_model = .data:0x00356BE0; // type:object size:0x58 scope:global align:8
+Lfoot3_pgb_model = .data:0x00356C38; // type:object size:0x88 scope:global align:8
+Lfoot2_pgb_model = .data:0x00356CC0; // type:object size:0x80 scope:global align:8
+Lfoot1_pgb_model = .data:0x00356D40; // type:object size:0x58 scope:global align:8
+base_pgb_model = .data:0x00356D98; // type:object size:0x78 scope:global align:8
+cKF_je_r_pgb_1_tbl = .data:0x00356E10; // type:object size:0x138 scope:global align:4
+cKF_bs_r_pgb_1 = .data:0x00356F48; // type:object size:0x8 scope:global align:4
+pgb_1_pal = .data:0x00356F60; // type:object size:0x20 scope:global align:32
+pgb_1_eye1_TA_tex_txt = .data:0x00356F80; // type:object size:0x100 scope:global align:32
+pgb_1_eye2_TA_tex_txt = .data:0x00357080; // type:object size:0x100 scope:global align:32
+pgb_1_eye3_TA_tex_txt = .data:0x00357180; // type:object size:0x100 scope:global align:32
+pgb_1_eye4_TA_tex_txt = .data:0x00357280; // type:object size:0x100 scope:global align:32
+pgb_1_eye5_TA_tex_txt = .data:0x00357380; // type:object size:0x100 scope:global align:32
+pgb_1_eye6_TA_tex_txt = .data:0x00357480; // type:object size:0x100 scope:global align:32
+pgb_1_eye7_TA_tex_txt = .data:0x00357580; // type:object size:0x100 scope:global align:32
+pgb_1_eye8_TA_tex_txt = .data:0x00357680; // type:object size:0x100 scope:global align:32
+pgb_1_tmem_txt = .data:0x00357780; // type:object size:0x780 scope:global align:32
+plb_1_v = .data:0x00357F00; // type:object size:0x1A80 scope:global align:8
+head_plb_model = .data:0x00359980; // type:object size:0x190 scope:global align:8
+mouth_plb_model = .data:0x00359B10; // type:object size:0xF0 scope:global align:8
+Rarm2_plb_model = .data:0x00359C00; // type:object size:0xB8 scope:global align:8
+Rarm1_plb_model = .data:0x00359CB8; // type:object size:0x78 scope:global align:8
+Larm2_plb_model = .data:0x00359D30; // type:object size:0xB8 scope:global align:8
+Larm1_plb_model = .data:0x00359DE8; // type:object size:0x78 scope:global align:8
+chest_plb_model = .data:0x00359E60; // type:object size:0x150 scope:global align:8
+Rfoot3_plb_model = .data:0x00359FB0; // type:object size:0x88 scope:global align:8
+Rfoot2_plb_model = .data:0x0035A038; // type:object size:0x80 scope:global align:8
+Rfoot1_plb_model = .data:0x0035A0B8; // type:object size:0x58 scope:global align:8
+Lfoot3_plb_model = .data:0x0035A110; // type:object size:0x88 scope:global align:8
+Lfoot2_plb_model = .data:0x0035A198; // type:object size:0x80 scope:global align:8
+Lfoot1_plb_model = .data:0x0035A218; // type:object size:0x58 scope:global align:8
+base_plb_model = .data:0x0035A270; // type:object size:0xD0 scope:global align:8
+cKF_je_r_plb_1_tbl = .data:0x0035A340; // type:object size:0x138 scope:global align:4
+cKF_bs_r_plb_1 = .data:0x0035A478; // type:object size:0x8 scope:global align:4
+plb_1_pal = .data:0x0035A480; // type:object size:0x20 scope:global align:32
+plb_1_eye1_TA_tex_txt = .data:0x0035A4A0; // type:object size:0x100 scope:global align:32
+plb_1_eye2_TA_tex_txt = .data:0x0035A5A0; // type:object size:0x100 scope:global align:32
+plb_1_eye3_TA_tex_txt = .data:0x0035A6A0; // type:object size:0x100 scope:global align:32
+plb_1_eye4_TA_tex_txt = .data:0x0035A7A0; // type:object size:0x100 scope:global align:32
+plb_1_eye5_TA_tex_txt = .data:0x0035A8A0; // type:object size:0x100 scope:global align:32
+plb_1_eye6_TA_tex_txt = .data:0x0035A9A0; // type:object size:0x100 scope:global align:32
+plb_1_eye7_TA_tex_txt = .data:0x0035AAA0; // type:object size:0x100 scope:global align:32
+plb_1_eye8_TA_tex_txt = .data:0x0035ABA0; // type:object size:0x100 scope:global align:32
+plb_1_tmem_txt = .data:0x0035ACA0; // type:object size:0x780 scope:global align:32
+rbt_1_v = .data:0x0035B420; // type:object size:0x15A0 scope:global align:8
+head_rbt_model = .data:0x0035C9C0; // type:object size:0x1A8 scope:global align:8
+Rarm2_rbt_model = .data:0x0035CB68; // type:object size:0x88 scope:global align:8
+Rarm1_rbt_model = .data:0x0035CBF0; // type:object size:0x78 scope:global align:8
+Larm2_rbt_model = .data:0x0035CC68; // type:object size:0x88 scope:global align:8
+Larm1_rbt_model = .data:0x0035CCF0; // type:object size:0x78 scope:global align:8
+chest_rbt_model = .data:0x0035CD68; // type:object size:0xA8 scope:global align:8
+tail1_rbt_model = .data:0x0035CE10; // type:object size:0x78 scope:global align:8
+Rfoot2_rbt_model = .data:0x0035CE88; // type:object size:0x80 scope:global align:8
+Rfoot1_rbt_model = .data:0x0035CF08; // type:object size:0xC0 scope:global align:8
+Lfoot2_rbt_model = .data:0x0035CFC8; // type:object size:0x80 scope:global align:8
+Lfoot1_rbt_model = .data:0x0035D048; // type:object size:0xC0 scope:global align:8
+base_rbt_model = .data:0x0035D108; // type:object size:0x70 scope:global align:8
+cKF_je_r_rbt_1_tbl = .data:0x0035D178; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rbt_1 = .data:0x0035D2B0; // type:object size:0x8 scope:global align:4
+rbt_1_pal = .data:0x0035D2C0; // type:object size:0x20 scope:global align:32
+rbt_1_eye1_TA_tex_txt = .data:0x0035D2E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye2_TA_tex_txt = .data:0x0035D3E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye3_TA_tex_txt = .data:0x0035D4E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye4_TA_tex_txt = .data:0x0035D5E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye5_TA_tex_txt = .data:0x0035D6E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye6_TA_tex_txt = .data:0x0035D7E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye7_TA_tex_txt = .data:0x0035D8E0; // type:object size:0x100 scope:global align:32
+rbt_1_eye8_TA_tex_txt = .data:0x0035D9E0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth1_TA_tex_txt = .data:0x0035DAE0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth2_TA_tex_txt = .data:0x0035DBE0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth3_TA_tex_txt = .data:0x0035DCE0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth4_TA_tex_txt = .data:0x0035DDE0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth5_TA_tex_txt = .data:0x0035DEE0; // type:object size:0x100 scope:global align:32
+rbt_1_mouth6_TA_tex_txt = .data:0x0035DFE0; // type:object size:0x100 scope:global align:32
+rbt_1_tmem_txt = .data:0x0035E0E0; // type:object size:0x400 scope:global align:32
+rbt_2_pal = .data:0x0035E4E0; // type:object size:0x20 scope:global align:32
+rbt_2_eye1_TA_tex_txt = .data:0x0035E500; // type:object size:0x100 scope:global align:32
+rbt_2_eye2_TA_tex_txt = .data:0x0035E600; // type:object size:0x100 scope:global align:32
+rbt_2_eye3_TA_tex_txt = .data:0x0035E700; // type:object size:0x100 scope:global align:32 data:string
+rbt_2_eye4_TA_tex_txt = .data:0x0035E800; // type:object size:0x100 scope:global align:32
+rbt_2_eye5_TA_tex_txt = .data:0x0035E900; // type:object size:0x100 scope:global align:32
+rbt_2_eye6_TA_tex_txt = .data:0x0035EA00; // type:object size:0x100 scope:global align:32
+rbt_2_eye7_TA_tex_txt = .data:0x0035EB00; // type:object size:0x100 scope:global align:32
+rbt_2_eye8_TA_tex_txt = .data:0x0035EC00; // type:object size:0x100 scope:global align:32
+rbt_2_mouth1_TA_tex_txt = .data:0x0035ED00; // type:object size:0x100 scope:global align:32
+rbt_2_mouth2_TA_tex_txt = .data:0x0035EE00; // type:object size:0x100 scope:global align:32
+rbt_2_mouth3_TA_tex_txt = .data:0x0035EF00; // type:object size:0x100 scope:global align:32
+rbt_2_mouth4_TA_tex_txt = .data:0x0035F000; // type:object size:0x100 scope:global align:32
+rbt_2_mouth5_TA_tex_txt = .data:0x0035F100; // type:object size:0x100 scope:global align:32
+rbt_2_mouth6_TA_tex_txt = .data:0x0035F200; // type:object size:0x100 scope:global align:32
+rbt_2_tmem_txt = .data:0x0035F300; // type:object size:0x400 scope:global align:32
+rbt_11_pal = .data:0x0035F700; // type:object size:0x20 scope:global align:32
+rbt_11_eye1_TA_tex_txt = .data:0x0035F720; // type:object size:0x100 scope:global align:32
+rbt_11_eye2_TA_tex_txt = .data:0x0035F820; // type:object size:0x100 scope:global align:32
+rbt_11_eye3_TA_tex_txt = .data:0x0035F920; // type:object size:0x100 scope:global align:32
+rbt_11_eye4_TA_tex_txt = .data:0x0035FA20; // type:object size:0x100 scope:global align:32
+rbt_11_eye5_TA_tex_txt = .data:0x0035FB20; // type:object size:0x100 scope:global align:32
+rbt_11_eye6_TA_tex_txt = .data:0x0035FC20; // type:object size:0x100 scope:global align:32
+rbt_11_eye7_TA_tex_txt = .data:0x0035FD20; // type:object size:0x100 scope:global align:32
+rbt_11_eye8_TA_tex_txt = .data:0x0035FE20; // type:object size:0x100 scope:global align:32
+rbt_11_mouth1_TA_tex_txt = .data:0x0035FF20; // type:object size:0x100 scope:global align:32
+rbt_11_mouth2_TA_tex_txt = .data:0x00360020; // type:object size:0x100 scope:global align:32
+rbt_11_mouth3_TA_tex_txt = .data:0x00360120; // type:object size:0x100 scope:global align:32
+rbt_11_mouth4_TA_tex_txt = .data:0x00360220; // type:object size:0x100 scope:global align:32
+rbt_11_mouth5_TA_tex_txt = .data:0x00360320; // type:object size:0x100 scope:global align:32
+rbt_11_mouth6_TA_tex_txt = .data:0x00360420; // type:object size:0x100 scope:global align:32
+rbt_11_tmem_txt = .data:0x00360520; // type:object size:0x400 scope:global align:32
+rbt_3_pal = .data:0x00360920; // type:object size:0x20 scope:global align:32
+rbt_3_eye1_TA_tex_txt = .data:0x00360940; // type:object size:0x100 scope:global align:32
+rbt_3_eye2_TA_tex_txt = .data:0x00360A40; // type:object size:0x100 scope:global align:32
+rbt_3_eye3_TA_tex_txt = .data:0x00360B40; // type:object size:0x100 scope:global align:32
+rbt_3_eye4_TA_tex_txt = .data:0x00360C40; // type:object size:0x100 scope:global align:32
+rbt_3_eye5_TA_tex_txt = .data:0x00360D40; // type:object size:0x100 scope:global align:32
+rbt_3_eye6_TA_tex_txt = .data:0x00360E40; // type:object size:0x100 scope:global align:32
+rbt_3_eye7_TA_tex_txt = .data:0x00360F40; // type:object size:0x100 scope:global align:32
+rbt_3_eye8_TA_tex_txt = .data:0x00361040; // type:object size:0x100 scope:global align:32
+rbt_3_mouth1_TA_tex_txt = .data:0x00361140; // type:object size:0x100 scope:global align:32
+rbt_3_mouth2_TA_tex_txt = .data:0x00361240; // type:object size:0x100 scope:global align:32
+rbt_3_mouth3_TA_tex_txt = .data:0x00361340; // type:object size:0x100 scope:global align:32
+rbt_3_mouth4_TA_tex_txt = .data:0x00361440; // type:object size:0x100 scope:global align:32
+rbt_3_mouth5_TA_tex_txt = .data:0x00361540; // type:object size:0x100 scope:global align:32
+rbt_3_mouth6_TA_tex_txt = .data:0x00361640; // type:object size:0x100 scope:global align:32
+rbt_3_tmem_txt = .data:0x00361740; // type:object size:0x400 scope:global align:32
+rbt_4_pal = .data:0x00361B40; // type:object size:0x20 scope:global align:32
+rbt_4_eye1_TA_tex_txt = .data:0x00361B60; // type:object size:0x100 scope:global align:32
+rbt_4_eye2_TA_tex_txt = .data:0x00361C60; // type:object size:0x100 scope:global align:32
+rbt_4_eye3_TA_tex_txt = .data:0x00361D60; // type:object size:0x100 scope:global align:32
+rbt_4_eye4_TA_tex_txt = .data:0x00361E60; // type:object size:0x100 scope:global align:32
+rbt_4_eye5_TA_tex_txt = .data:0x00361F60; // type:object size:0x100 scope:global align:32
+rbt_4_eye6_TA_tex_txt = .data:0x00362060; // type:object size:0x100 scope:global align:32
+rbt_4_eye7_TA_tex_txt = .data:0x00362160; // type:object size:0x100 scope:global align:32
+rbt_4_eye8_TA_tex_txt = .data:0x00362260; // type:object size:0x100 scope:global align:32
+rbt_4_mouth1_TA_tex_txt = .data:0x00362360; // type:object size:0x100 scope:global align:32
+rbt_4_mouth2_TA_tex_txt = .data:0x00362460; // type:object size:0x100 scope:global align:32
+rbt_4_mouth3_TA_tex_txt = .data:0x00362560; // type:object size:0x100 scope:global align:32
+rbt_4_mouth4_TA_tex_txt = .data:0x00362660; // type:object size:0x100 scope:global align:32
+rbt_4_mouth5_TA_tex_txt = .data:0x00362760; // type:object size:0x100 scope:global align:32
+rbt_4_mouth6_TA_tex_txt = .data:0x00362860; // type:object size:0x100 scope:global align:32
+rbt_4_tmem_txt = .data:0x00362960; // type:object size:0x400 scope:global align:32
+rbt_5_pal = .data:0x00362D60; // type:object size:0x20 scope:global align:32
+rbt_5_eye1_TA_tex_txt = .data:0x00362D80; // type:object size:0x100 scope:global align:32
+rbt_5_eye2_TA_tex_txt = .data:0x00362E80; // type:object size:0x100 scope:global align:32
+rbt_5_eye3_TA_tex_txt = .data:0x00362F80; // type:object size:0x100 scope:global align:32
+rbt_5_eye4_TA_tex_txt = .data:0x00363080; // type:object size:0x100 scope:global align:32
+rbt_5_eye5_TA_tex_txt = .data:0x00363180; // type:object size:0x100 scope:global align:32
+rbt_5_eye6_TA_tex_txt = .data:0x00363280; // type:object size:0x100 scope:global align:32
+rbt_5_eye7_TA_tex_txt = .data:0x00363380; // type:object size:0x100 scope:global align:32
+rbt_5_eye8_TA_tex_txt = .data:0x00363480; // type:object size:0x100 scope:global align:32
+rbt_5_mouth1_TA_tex_txt = .data:0x00363580; // type:object size:0x100 scope:global align:32
+rbt_5_mouth2_TA_tex_txt = .data:0x00363680; // type:object size:0x100 scope:global align:32
+rbt_5_mouth3_TA_tex_txt = .data:0x00363780; // type:object size:0x100 scope:global align:32
+rbt_5_mouth4_TA_tex_txt = .data:0x00363880; // type:object size:0x100 scope:global align:32
+rbt_5_mouth5_TA_tex_txt = .data:0x00363980; // type:object size:0x100 scope:global align:32
+rbt_5_mouth6_TA_tex_txt = .data:0x00363A80; // type:object size:0x100 scope:global align:32
+rbt_5_tmem_txt = .data:0x00363B80; // type:object size:0x400 scope:global align:32
+rbt_6_pal = .data:0x00363F80; // type:object size:0x20 scope:global align:32
+rbt_6_eye1_TA_tex_txt = .data:0x00363FA0; // type:object size:0x100 scope:global align:32
+rbt_6_eye2_TA_tex_txt = .data:0x003640A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye3_TA_tex_txt = .data:0x003641A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye4_TA_tex_txt = .data:0x003642A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye5_TA_tex_txt = .data:0x003643A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye6_TA_tex_txt = .data:0x003644A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye7_TA_tex_txt = .data:0x003645A0; // type:object size:0x100 scope:global align:32
+rbt_6_eye8_TA_tex_txt = .data:0x003646A0; // type:object size:0x100 scope:global align:32
+rbt_6_mouth1_TA_tex_txt = .data:0x003647A0; // type:object size:0x100 scope:global align:32 data:string
+rbt_6_mouth2_TA_tex_txt = .data:0x003648A0; // type:object size:0x100 scope:global align:32
+rbt_6_mouth3_TA_tex_txt = .data:0x003649A0; // type:object size:0x100 scope:global align:32
+rbt_6_mouth4_TA_tex_txt = .data:0x00364AA0; // type:object size:0x100 scope:global align:32 data:string
+rbt_6_mouth5_TA_tex_txt = .data:0x00364BA0; // type:object size:0x100 scope:global align:32
+rbt_6_mouth6_TA_tex_txt = .data:0x00364CA0; // type:object size:0x100 scope:global align:32
+rbt_6_tmem_txt = .data:0x00364DA0; // type:object size:0x400 scope:global align:32
+rbt_7_pal = .data:0x003651A0; // type:object size:0x20 scope:global align:32
+rbt_7_eye1_TA_tex_txt = .data:0x003651C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye2_TA_tex_txt = .data:0x003652C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye3_TA_tex_txt = .data:0x003653C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye4_TA_tex_txt = .data:0x003654C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye5_TA_tex_txt = .data:0x003655C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye6_TA_tex_txt = .data:0x003656C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye7_TA_tex_txt = .data:0x003657C0; // type:object size:0x100 scope:global align:32
+rbt_7_eye8_TA_tex_txt = .data:0x003658C0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth1_TA_tex_txt = .data:0x003659C0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth2_TA_tex_txt = .data:0x00365AC0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth3_TA_tex_txt = .data:0x00365BC0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth4_TA_tex_txt = .data:0x00365CC0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth5_TA_tex_txt = .data:0x00365DC0; // type:object size:0x100 scope:global align:32
+rbt_7_mouth6_TA_tex_txt = .data:0x00365EC0; // type:object size:0x100 scope:global align:32
+rbt_7_tmem_txt = .data:0x00365FC0; // type:object size:0x400 scope:global align:32
+rbt_8_pal = .data:0x003663C0; // type:object size:0x20 scope:global align:32
+rbt_8_eye1_TA_tex_txt = .data:0x003663E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye2_TA_tex_txt = .data:0x003664E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye3_TA_tex_txt = .data:0x003665E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye4_TA_tex_txt = .data:0x003666E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye5_TA_tex_txt = .data:0x003667E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye6_TA_tex_txt = .data:0x003668E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye7_TA_tex_txt = .data:0x003669E0; // type:object size:0x100 scope:global align:32
+rbt_8_eye8_TA_tex_txt = .data:0x00366AE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth1_TA_tex_txt = .data:0x00366BE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth2_TA_tex_txt = .data:0x00366CE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth3_TA_tex_txt = .data:0x00366DE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth4_TA_tex_txt = .data:0x00366EE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth5_TA_tex_txt = .data:0x00366FE0; // type:object size:0x100 scope:global align:32
+rbt_8_mouth6_TA_tex_txt = .data:0x003670E0; // type:object size:0x100 scope:global align:32
+rbt_8_tmem_txt = .data:0x003671E0; // type:object size:0x400 scope:global align:32
+rbt_9_pal = .data:0x003675E0; // type:object size:0x20 scope:global align:32
+rbt_9_eye1_TA_tex_txt = .data:0x00367600; // type:object size:0x100 scope:global align:32
+rbt_9_eye2_TA_tex_txt = .data:0x00367700; // type:object size:0x100 scope:global align:32
+rbt_9_eye3_TA_tex_txt = .data:0x00367800; // type:object size:0x100 scope:global align:32
+rbt_9_eye4_TA_tex_txt = .data:0x00367900; // type:object size:0x100 scope:global align:32
+rbt_9_eye5_TA_tex_txt = .data:0x00367A00; // type:object size:0x100 scope:global align:32
+rbt_9_eye6_TA_tex_txt = .data:0x00367B00; // type:object size:0x100 scope:global align:32
+rbt_9_eye7_TA_tex_txt = .data:0x00367C00; // type:object size:0x100 scope:global align:32
+rbt_9_eye8_TA_tex_txt = .data:0x00367D00; // type:object size:0x100 scope:global align:32
+rbt_9_mouth1_TA_tex_txt = .data:0x00367E00; // type:object size:0x100 scope:global align:32
+rbt_9_mouth2_TA_tex_txt = .data:0x00367F00; // type:object size:0x100 scope:global align:32
+rbt_9_mouth3_TA_tex_txt = .data:0x00368000; // type:object size:0x100 scope:global align:32
+rbt_9_mouth4_TA_tex_txt = .data:0x00368100; // type:object size:0x100 scope:global align:32
+rbt_9_mouth5_TA_tex_txt = .data:0x00368200; // type:object size:0x100 scope:global align:32
+rbt_9_mouth6_TA_tex_txt = .data:0x00368300; // type:object size:0x100 scope:global align:32
+rbt_9_tmem_txt = .data:0x00368400; // type:object size:0x400 scope:global align:32
+rbt_10_pal = .data:0x00368800; // type:object size:0x20 scope:global align:32
+rbt_10_eye1_TA_tex_txt = .data:0x00368820; // type:object size:0x100 scope:global align:32
+rbt_10_eye2_TA_tex_txt = .data:0x00368920; // type:object size:0x100 scope:global align:32
+rbt_10_eye3_TA_tex_txt = .data:0x00368A20; // type:object size:0x100 scope:global align:32
+rbt_10_eye4_TA_tex_txt = .data:0x00368B20; // type:object size:0x100 scope:global align:32
+rbt_10_eye5_TA_tex_txt = .data:0x00368C20; // type:object size:0x100 scope:global align:32
+rbt_10_eye6_TA_tex_txt = .data:0x00368D20; // type:object size:0x100 scope:global align:32
+rbt_10_eye7_TA_tex_txt = .data:0x00368E20; // type:object size:0x100 scope:global align:32
+rbt_10_eye8_TA_tex_txt = .data:0x00368F20; // type:object size:0x100 scope:global align:32
+rbt_10_mouth1_TA_tex_txt = .data:0x00369020; // type:object size:0x100 scope:global align:32
+rbt_10_mouth2_TA_tex_txt = .data:0x00369120; // type:object size:0x100 scope:global align:32
+rbt_10_mouth3_TA_tex_txt = .data:0x00369220; // type:object size:0x100 scope:global align:32
+rbt_10_mouth4_TA_tex_txt = .data:0x00369320; // type:object size:0x100 scope:global align:32
+rbt_10_mouth5_TA_tex_txt = .data:0x00369420; // type:object size:0x100 scope:global align:32
+rbt_10_mouth6_TA_tex_txt = .data:0x00369520; // type:object size:0x100 scope:global align:32
+rbt_10_tmem_txt = .data:0x00369620; // type:object size:0x400 scope:global align:32
+mob_1_v = .data:0x00369A20; // type:object size:0x13B0 scope:global align:8
+head_mob_model = .data:0x0036ADD0; // type:object size:0x1B8 scope:global align:8
+mouth_mob_model = .data:0x0036AF88; // type:object size:0xD0 scope:global align:8
+hand_mob_model = .data:0x0036B058; // type:object size:0xB8 scope:global align:8
+Rarm2_mob_model = .data:0x0036B110; // type:object size:0x88 scope:global align:8
+Rarm1_mob_model = .data:0x0036B198; // type:object size:0x78 scope:global align:8
+Larm2_mob_model = .data:0x0036B210; // type:object size:0x88 scope:global align:8
+Larm1_mob_model = .data:0x0036B298; // type:object size:0x78 scope:global align:8
+chest_mob_model = .data:0x0036B310; // type:object size:0xD0 scope:global align:8
+base_mob_model = .data:0x0036B3E0; // type:object size:0x80 scope:global align:8
+cKF_je_r_mob_1_tbl = .data:0x0036B460; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mob_1 = .data:0x0036B598; // type:object size:0x8 scope:global align:4
+mob_1_pal = .data:0x0036B5A0; // type:object size:0x20 scope:global align:32
+mob_1_eye1_TA_tex_txt = .data:0x0036B5C0; // type:object size:0x100 scope:global align:32
+mob_1_eye2_TA_tex_txt = .data:0x0036B6C0; // type:object size:0x100 scope:global align:32
+mob_1_eye3_TA_tex_txt = .data:0x0036B7C0; // type:object size:0x100 scope:global align:32
+mob_1_eye4_TA_tex_txt = .data:0x0036B8C0; // type:object size:0x100 scope:global align:32
+mob_1_eye5_TA_tex_txt = .data:0x0036B9C0; // type:object size:0x100 scope:global align:32
+mob_1_eye6_TA_tex_txt = .data:0x0036BAC0; // type:object size:0x100 scope:global align:32
+mob_1_eye7_TA_tex_txt = .data:0x0036BBC0; // type:object size:0x100 scope:global align:32
+mob_1_eye8_TA_tex_txt = .data:0x0036BCC0; // type:object size:0x100 scope:global align:32
+mob_1_mouth1_TA_tex_txt = .data:0x0036BDC0; // type:object size:0x100 scope:global align:32
+mob_1_mouth2_TA_tex_txt = .data:0x0036BEC0; // type:object size:0x100 scope:global align:32
+mob_1_mouth3_TA_tex_txt = .data:0x0036BFC0; // type:object size:0x100 scope:global align:32
+mob_1_mouth4_TA_tex_txt = .data:0x0036C0C0; // type:object size:0x100 scope:global align:32
+mob_1_mouth5_TA_tex_txt = .data:0x0036C1C0; // type:object size:0x100 scope:global align:32
+mob_1_mouth6_TA_tex_txt = .data:0x0036C2C0; // type:object size:0x100 scope:global align:32
+mob_1_tmem_txt = .data:0x0036C3C0; // type:object size:0x680 scope:global align:32
+ef_ame02_0 = .data:0x0036CA40; // type:object size:0x200 scope:global align:32
+ef_ame02_00_v = .data:0x0036CC40; // type:object size:0x40 scope:global align:8
+ef_ame02_setmode = .data:0x0036CC80; // type:object size:0x48 scope:global align:8
+ef_ame02_00_modelT = .data:0x0036CCC8; // type:object size:0x18 scope:global align:8
+ef_ame02_01_v = .data:0x0036CCE0; // type:object size:0x40 scope:global align:8
+ef_ame02_01_modelT = .data:0x0036CD20; // type:object size:0x18 scope:global align:8
+ef_ame02_02_v = .data:0x0036CD38; // type:object size:0x40 scope:global align:8
+ef_ame02_02_modelT = .data:0x0036CD78; // type:object size:0x18 scope:global align:8
+ef_ame02_03_v = .data:0x0036CD90; // type:object size:0x40 scope:global align:8
+ef_ame02_03_modelT = .data:0x0036CDD0; // type:object size:0x18 scope:global align:8
+ef_ame02_04_v = .data:0x0036CDE8; // type:object size:0x40 scope:global align:8
+ef_ame02_04_modelT = .data:0x0036CE28; // type:object size:0x18 scope:global align:8
+rhn_1_v = .data:0x0036CE40; // type:object size:0x1C00 scope:global align:8
+head_rhn_model = .data:0x0036EA40; // type:object size:0x300 scope:global align:8
+mouth_rhn_model = .data:0x0036ED40; // type:object size:0xD0 scope:global align:8
+Rarm2_rhn_model = .data:0x0036EE10; // type:object size:0x90 scope:global align:8
+Rarm1_rhn_model = .data:0x0036EEA0; // type:object size:0x80 scope:global align:8
+Larm2_rhn_model = .data:0x0036EF20; // type:object size:0x90 scope:global align:8
+Larm1_rhn_model = .data:0x0036EFB0; // type:object size:0x80 scope:global align:8
+chest_rhn_model = .data:0x0036F030; // type:object size:0x98 scope:global align:8
+tail1_rhn_model = .data:0x0036F0C8; // type:object size:0x58 scope:global align:8
+tail2_rhn_model = .data:0x0036F120; // type:object size:0x90 scope:global align:8
+Rfoot2_rhn_model = .data:0x0036F1B0; // type:object size:0x98 scope:global align:8
+Rfoot1_rhn_model = .data:0x0036F248; // type:object size:0xB0 scope:global align:8
+Lfoot2_rhn_model = .data:0x0036F2F8; // type:object size:0x98 scope:global align:8
+Lfoot1_rhn_model = .data:0x0036F390; // type:object size:0xB0 scope:global align:8
+base_rhn_model = .data:0x0036F440; // type:object size:0x70 scope:global align:8
+cKF_je_r_rhn_1_tbl = .data:0x0036F4B0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rhn_1 = .data:0x0036F5E8; // type:object size:0x8 scope:global align:4
+rhn_1_pal = .data:0x0036F600; // type:object size:0x20 scope:global align:32
+rhn_1_eye1_TA_tex_txt = .data:0x0036F620; // type:object size:0x100 scope:global align:32
+rhn_1_eye2_TA_tex_txt = .data:0x0036F720; // type:object size:0x100 scope:global align:32
+rhn_1_eye3_TA_tex_txt = .data:0x0036F820; // type:object size:0x100 scope:global align:32 data:string
+rhn_1_eye4_TA_tex_txt = .data:0x0036F920; // type:object size:0x100 scope:global align:32
+rhn_1_eye5_TA_tex_txt = .data:0x0036FA20; // type:object size:0x100 scope:global align:32
+rhn_1_eye6_TA_tex_txt = .data:0x0036FB20; // type:object size:0x100 scope:global align:32
+rhn_1_eye7_TA_tex_txt = .data:0x0036FC20; // type:object size:0x100 scope:global align:32
+rhn_1_eye8_TA_tex_txt = .data:0x0036FD20; // type:object size:0x100 scope:global align:32 data:string
+rhn_1_mouth1_TA_tex_txt = .data:0x0036FE20; // type:object size:0x100 scope:global align:32
+rhn_1_mouth2_TA_tex_txt = .data:0x0036FF20; // type:object size:0x100 scope:global align:32
+rhn_1_mouth3_TA_tex_txt = .data:0x00370020; // type:object size:0x100 scope:global align:32
+rhn_1_mouth4_TA_tex_txt = .data:0x00370120; // type:object size:0x100 scope:global align:32
+rhn_1_mouth5_TA_tex_txt = .data:0x00370220; // type:object size:0x100 scope:global align:32
+rhn_1_mouth6_TA_tex_txt = .data:0x00370320; // type:object size:0x100 scope:global align:32
+rhn_1_tmem_txt = .data:0x00370420; // type:object size:0x400 scope:global align:32
+rhn_2_pal = .data:0x00370820; // type:object size:0x20 scope:global align:32
+rhn_2_eye1_TA_tex_txt = .data:0x00370840; // type:object size:0x100 scope:global align:32
+rhn_2_eye2_TA_tex_txt = .data:0x00370940; // type:object size:0x100 scope:global align:32
+rhn_2_eye3_TA_tex_txt = .data:0x00370A40; // type:object size:0x100 scope:global align:32 data:string
+rhn_2_eye4_TA_tex_txt = .data:0x00370B40; // type:object size:0x100 scope:global align:32
+rhn_2_eye5_TA_tex_txt = .data:0x00370C40; // type:object size:0x100 scope:global align:32
+rhn_2_eye6_TA_tex_txt = .data:0x00370D40; // type:object size:0x100 scope:global align:32 data:string
+rhn_2_eye7_TA_tex_txt = .data:0x00370E40; // type:object size:0x100 scope:global align:32
+rhn_2_eye8_TA_tex_txt = .data:0x00370F40; // type:object size:0x100 scope:global align:32 data:string
+rhn_2_mouth1_TA_tex_txt = .data:0x00371040; // type:object size:0x100 scope:global align:32
+rhn_2_mouth2_TA_tex_txt = .data:0x00371140; // type:object size:0x100 scope:global align:32
+rhn_2_mouth3_TA_tex_txt = .data:0x00371240; // type:object size:0x100 scope:global align:32
+rhn_2_mouth4_TA_tex_txt = .data:0x00371340; // type:object size:0x100 scope:global align:32
+rhn_2_mouth5_TA_tex_txt = .data:0x00371440; // type:object size:0x100 scope:global align:32
+rhn_2_mouth6_TA_tex_txt = .data:0x00371540; // type:object size:0x100 scope:global align:32
+rhn_2_tmem_txt = .data:0x00371640; // type:object size:0x400 scope:global align:32
+rhn_3_pal = .data:0x00371A40; // type:object size:0x20 scope:global align:32
+rhn_3_eye1_TA_tex_txt = .data:0x00371A60; // type:object size:0x100 scope:global align:32
+rhn_3_eye2_TA_tex_txt = .data:0x00371B60; // type:object size:0x100 scope:global align:32
+rhn_3_eye3_TA_tex_txt = .data:0x00371C60; // type:object size:0x100 scope:global align:32
+rhn_3_eye4_TA_tex_txt = .data:0x00371D60; // type:object size:0x100 scope:global align:32
+rhn_3_eye5_TA_tex_txt = .data:0x00371E60; // type:object size:0x100 scope:global align:32
+rhn_3_eye6_TA_tex_txt = .data:0x00371F60; // type:object size:0x100 scope:global align:32
+rhn_3_eye7_TA_tex_txt = .data:0x00372060; // type:object size:0x100 scope:global align:32
+rhn_3_eye8_TA_tex_txt = .data:0x00372160; // type:object size:0x100 scope:global align:32
+rhn_3_mouth1_TA_tex_txt = .data:0x00372260; // type:object size:0x100 scope:global align:32
+rhn_3_mouth2_TA_tex_txt = .data:0x00372360; // type:object size:0x100 scope:global align:32
+rhn_3_mouth3_TA_tex_txt = .data:0x00372460; // type:object size:0x100 scope:global align:32
+rhn_3_mouth4_TA_tex_txt = .data:0x00372560; // type:object size:0x100 scope:global align:32
+rhn_3_mouth5_TA_tex_txt = .data:0x00372660; // type:object size:0x100 scope:global align:32
+rhn_3_mouth6_TA_tex_txt = .data:0x00372760; // type:object size:0x100 scope:global align:32
+rhn_3_tmem_txt = .data:0x00372860; // type:object size:0x400 scope:global align:32
+rhn_4_pal = .data:0x00372C60; // type:object size:0x20 scope:global align:32
+rhn_4_eye1_TA_tex_txt = .data:0x00372C80; // type:object size:0x100 scope:global align:32
+rhn_4_eye2_TA_tex_txt = .data:0x00372D80; // type:object size:0x100 scope:global align:32
+rhn_4_eye3_TA_tex_txt = .data:0x00372E80; // type:object size:0x100 scope:global align:32
+rhn_4_eye4_TA_tex_txt = .data:0x00372F80; // type:object size:0x100 scope:global align:32
+rhn_4_eye5_TA_tex_txt = .data:0x00373080; // type:object size:0x100 scope:global align:32
+rhn_4_eye6_TA_tex_txt = .data:0x00373180; // type:object size:0x100 scope:global align:32
+rhn_4_eye7_TA_tex_txt = .data:0x00373280; // type:object size:0x100 scope:global align:32
+rhn_4_eye8_TA_tex_txt = .data:0x00373380; // type:object size:0x100 scope:global align:32
+rhn_4_mouth1_TA_tex_txt = .data:0x00373480; // type:object size:0x100 scope:global align:32
+rhn_4_mouth2_TA_tex_txt = .data:0x00373580; // type:object size:0x100 scope:global align:32
+rhn_4_mouth3_TA_tex_txt = .data:0x00373680; // type:object size:0x100 scope:global align:32
+rhn_4_mouth4_TA_tex_txt = .data:0x00373780; // type:object size:0x100 scope:global align:32
+rhn_4_mouth5_TA_tex_txt = .data:0x00373880; // type:object size:0x100 scope:global align:32
+rhn_4_mouth6_TA_tex_txt = .data:0x00373980; // type:object size:0x100 scope:global align:32
+rhn_4_tmem_txt = .data:0x00373A80; // type:object size:0x400 scope:global align:32
+light_window = .data:0x00373E80; // type:object size:0x80 scope:global align:4
+room_lightR_v = .data:0x00373F00; // type:object size:0xA0 scope:global align:8
+room_lightL_v = .data:0x00373FA0; // type:object size:0xA0 scope:global align:8
+light_shine01_mode = .data:0x00374040; // type:object size:0x20 scope:global align:8
+light_shineL01_vtx = .data:0x00374060; // type:object size:0x20 scope:global align:8
+light_shineR01_vtx = .data:0x00374080; // type:object size:0x20 scope:global align:8
+light_floor01_mode = .data:0x003740A0; // type:object size:0x68 scope:global align:8
+light_floorL01_vtx = .data:0x00374108; // type:object size:0x18 scope:global align:8
+light_floorR01_vtx = .data:0x00374120; // type:object size:0x18 scope:global align:8
+obj_museum4_shine_1 = .data:0x00374140; // type:object size:0x80 scope:global align:32
+obj_museum4_shine_2 = .data:0x003741C0; // type:object size:0x400 scope:global align:32
+obj_museum4_shine_v = .data:0x003745C0; // type:object size:0x2F0 scope:global align:8
+obj_museum4_shine_2T_model = .data:0x003748B0; // type:object size:0xC0 scope:global align:8
+obj_museum4_shine_1T_model = .data:0x00374970; // type:object size:0x58 scope:global align:8
+rom_museum4_step_pal = .data:0x003749E0; // type:object size:0x20 scope:global align:32
+obj_s_stone_pal = .data:0x00374A00; // type:object size:0x20 scope:global align:32
+obj_01_zassou_pal = .data:0x00374A20; // type:object size:0x20 scope:global align:32
+obj_c_01_flower_pal = .data:0x00374A40; // type:object size:0x20 scope:global align:32
+obj_b_01_flower_pal = .data:0x00374A60; // type:object size:0x20 scope:global align:32
+obj_a_01_flower_pal = .data:0x00374A80; // type:object size:0x20 scope:global align:32
+obj_tree_pal = .data:0x00374AA0; // type:object size:0x20 scope:global align:32
+obj_s_tree_leaf_tex = .data:0x00374AC0; // type:object size:0x800 scope:global align:32
+obj_s_tree_trunk_tex = .data:0x003752C0; // type:object size:0x800 scope:global align:32
+obj_c_01_flower_tex = .data:0x00375AC0; // type:object size:0x800 scope:global align:32
+obj_b_01_flower_tex = .data:0x003762C0; // type:object size:0x800 scope:global align:32
+obj_a_01_flower_tex = .data:0x00376AC0; // type:object size:0x800 scope:global align:32
+obj_zassou_01_tex = .data:0x003772C0; // type:object size:0x400 scope:global align:32
+obj_s_stone_tex = .data:0x003776C0; // type:object size:0x200 scope:global align:32
+rom_museum4_plate_tex = .data:0x003778C0; // type:object size:0x200 scope:global align:32
+rom_museum4_ue_v = .data:0x00377AC0; // type:object size:0x1650 scope:global align:8
+rom_museum4_ue_model = .data:0x00379110; // type:object size:0x3B8 scope:global align:8
+obj_museum1_shine_2_pal = .data:0x003794C8; // type:object size:0x20 scope:global align:4
+obj_museum1_shine_2_tex = .data:0x003794E8; // type:object size:0x400 scope:global align:4
+obj_museum1_shine_1_tex = .data:0x003798E8; // type:object size:0x800 scope:global align:4
+obj_museum1_shine_3__tex_rgb_i4 = .data:0x0037A0E8; // type:object size:0x80 scope:global align:4
+obj_museum1_shine_v = .data:0x0037A168; // type:object size:0x140 scope:global align:8
+obj_museum1_shine_modelT = .data:0x0037A2A8; // type:object size:0xB8 scope:global align:8
+obj_museum1_shine_model = .data:0x0037A360; // type:object size:0xF0 scope:global align:8
+obj_koban_shine_1 = .data:0x0037A450; // type:object size:0x80 scope:global align:4
+obj_koban_shine_2 = .data:0x0037A4D0; // type:object size:0x200 scope:global align:4
+obj_koban_shine_v = .data:0x0037A6D0; // type:object size:0xC0 scope:global align:8
+obj_koban_shine_modelT = .data:0x0037A790; // type:object size:0x100 scope:global align:8
+rom_yubinkyoku_mado_tex = .data:0x0037A890; // type:object size:0x80 scope:global align:4
+rom_yubinkyoku_waku_tex = .data:0x0037A910; // type:object size:0x200 scope:global align:4
+obj_yubinkyoku_shine_v = .data:0x0037AB10; // type:object size:0xF0 scope:global align:8
+obj_yubinkyoku_shine_modelT = .data:0x0037AC00; // type:object size:0xF8 scope:global align:8
+tol_rope_1_pal = .data:0x0037AD00; // type:object size:0x20 scope:global align:32
+tol_rope_1_tex = .data:0x0037AD20; // type:object size:0x200 scope:global align:32
+tol_rope_1_v = .data:0x0037AF20; // type:object size:0x3C0 scope:global align:8 data:2byte
+tol_rope_1T_model = .data:0x0037B2E0; // type:object size:0xB0 scope:global align:8
+tol_rope_1_shadow_tex = .data:0x0037B3A0; // type:object size:0x80 scope:global align:32
+tol_rope_1_shadow_v = .data:0x0037B420; // type:object size:0x200 scope:global align:8
+tol_rope_1_shadowT_model = .data:0x0037B620; // type:object size:0x78 scope:global align:8
+shop01_info = .data:0x0037B698; // type:object size:0x40 scope:global align:4
+SHOP01_player_data = .data:0x0037B6D8; // type:object size:0x10 scope:global align:4
+SHOP01_ctrl_actor_data = .data:0x0037B6E8; // type:object size:0x20 scope:global align:4
+SHOP01_object_bank = .data:0x0037B708; // type:object size:0x2 scope:global align:4
+SHOP01_door_data = .data:0x0037B70C; // type:object size:0x14 scope:global align:4
+shop02_info = .data:0x0037B720; // type:object size:0x40 scope:global align:4
+SHOP02_player_data = .data:0x0037B760; // type:object size:0x10 scope:global align:4
+SHOP02_ctrl_actor_data = .data:0x0037B770; // type:object size:0x20 scope:global align:4
+SHOP02_object_bank = .data:0x0037B790; // type:object size:0x2 scope:global align:4
+SHOP02_door_data = .data:0x0037B794; // type:object size:0x14 scope:global align:4
+shop03_info = .data:0x0037B7A8; // type:object size:0x38 scope:global align:4
+SHOP03_player_data = .data:0x0037B7E0; // type:object size:0x10 scope:global align:4
+SHOP03_ctrl_actor_data = .data:0x0037B7F0; // type:object size:0x1E scope:global align:4
+SHOP03_door_data = .data:0x0037B810; // type:object size:0x14 scope:global align:4
+shop04_1f_info = .data:0x0037B828; // type:object size:0x40 scope:global align:4
+SHOP04_1F_player_data = .data:0x0037B868; // type:object size:0x10 scope:global align:4
+SHOP04_1F_ctrl_actor_data = .data:0x0037B878; // type:object size:0x1E scope:global align:4
+SHOP04_1F_object_bank = .data:0x0037B898; // type:object size:0x2 scope:global align:4
+SHOP04_1F_door_data = .data:0x0037B89C; // type:object size:0x14 scope:global align:4
+shop04_2f_info = .data:0x0037B8B0; // type:object size:0x40 scope:global align:4
+SHOP04_2F_player_data = .data:0x0037B8F0; // type:object size:0x10 scope:global align:4
+SHOP04_2F_ctrl_actor_data = .data:0x0037B900; // type:object size:0x20 scope:global align:4
+SHOP04_2F_object_bank = .data:0x0037B920; // type:object size:0x2 scope:global align:4
+SHOP04_2F_door_data = .data:0x0037B924; // type:object size:0x14 scope:global align:4
+start_demo1_info = .data:0x0037B938; // type:object size:0x40 scope:global align:4
+START_DEMO1_player_data = .data:0x0037B978; // type:object size:0x10 scope:global align:4
+START_DEMO1_ctrl_actor_data = .data:0x0037B988; // type:object size:0xC scope:global align:4
+START_DEMO1_door_data = .data:0x0037B994; // type:object size:0x14 scope:global align:4
+start_demo2_info = .data:0x0037B9A8; // type:object size:0x40 scope:global align:4
+START_DEMO2_player_data = .data:0x0037B9E8; // type:object size:0x10 scope:global align:4
+START_DEMO2_ctrl_actor_data = .data:0x0037B9F8; // type:object size:0xC scope:global align:4
+START_DEMO2_door_data = .data:0x0037BA04; // type:object size:0x14 scope:global align:4
+start_demo3_info = .data:0x0037BA18; // type:object size:0x40 scope:global align:4
+START_DEMO3_player_data = .data:0x0037BA58; // type:object size:0x10 scope:global align:4
+START_DEMO3_ctrl_actor_data = .data:0x0037BA68; // type:object size:0xC scope:global align:4
+START_DEMO3_door_data = .data:0x0037BA74; // type:object size:0x14 scope:global align:4
+ef_hanabira01_0 = .data:0x0037BAA0; // type:object size:0x100 scope:global align:32
+ef_hanabira01_00_v = .data:0x0037BBA0; // type:object size:0x40 scope:global align:8
+ef_hanabira01_00_setmode = .data:0x0037BBE0; // type:object size:0x48 scope:global align:8
+ef_hanabira01_00_modelT = .data:0x0037BC28; // type:object size:0x20 scope:global align:8
+snt_1_v = .data:0x0037BC48; // type:object size:0x13C0 scope:global align:8
+head_snt_model = .data:0x0037D008; // type:object size:0x250 scope:global align:8
+Larm2_snt_model = .data:0x0037D258; // type:object size:0x88 scope:global align:8
+Larm1_snt_model = .data:0x0037D2E0; // type:object size:0x78 scope:global align:8
+chest_snt_model = .data:0x0037D358; // type:object size:0x178 scope:global align:8
+Rfoot2_snt_model = .data:0x0037D4D0; // type:object size:0x80 scope:global align:8
+Rfoot1_snt_model = .data:0x0037D550; // type:object size:0x58 scope:global align:8
+Lfoot2_snt_model = .data:0x0037D5A8; // type:object size:0x80 scope:global align:8
+Lfoot1_snt_model = .data:0x0037D628; // type:object size:0x58 scope:global align:8
+base_snt_model = .data:0x0037D680; // type:object size:0x70 scope:global align:8
+cKF_je_r_snt_1_tbl = .data:0x0037D6F0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_snt_1 = .data:0x0037D828; // type:object size:0x8 scope:global align:4
+snt_1_pal = .data:0x0037D840; // type:object size:0x20 scope:global align:32
+snt_1_eye1_TA_tex_txt = .data:0x0037D860; // type:object size:0x100 scope:global align:32
+snt_1_eye2_TA_tex_txt = .data:0x0037D960; // type:object size:0x100 scope:global align:32
+snt_1_eye3_TA_tex_txt = .data:0x0037DA60; // type:object size:0x100 scope:global align:32
+snt_1_eye4_TA_tex_txt = .data:0x0037DB60; // type:object size:0x100 scope:global align:32
+snt_1_eye5_TA_tex_txt = .data:0x0037DC60; // type:object size:0x100 scope:global align:32
+snt_1_eye6_TA_tex_txt = .data:0x0037DD60; // type:object size:0x100 scope:global align:32
+snt_1_eye7_TA_tex_txt = .data:0x0037DE60; // type:object size:0x100 scope:global align:32
+snt_1_eye8_TA_tex_txt = .data:0x0037DF60; // type:object size:0x100 scope:global align:32
+snt_1_mouth1_TA_tex_txt = .data:0x0037E060; // type:object size:0x100 scope:global align:32
+snt_1_mouth2_TA_tex_txt = .data:0x0037E160; // type:object size:0x100 scope:global align:32
+snt_1_mouth3_TA_tex_txt = .data:0x0037E260; // type:object size:0x100 scope:global align:32
+snt_1_mouth4_TA_tex_txt = .data:0x0037E360; // type:object size:0x100 scope:global align:32
+snt_1_mouth5_TA_tex_txt = .data:0x0037E460; // type:object size:0x100 scope:global align:32
+snt_1_mouth6_TA_tex_txt = .data:0x0037E560; // type:object size:0x100 scope:global align:32
+snt_1_tmem_txt = .data:0x0037E660; // type:object size:0x680 scope:global align:32
+wip_1_v = .data:0x0037ECE0; // type:object size:0x1700 scope:global align:8
+head_wip_model = .data:0x003803E0; // type:object size:0x208 scope:global align:8
+Rarm2_wip_model = .data:0x003805E8; // type:object size:0x88 scope:global align:8
+Rarm1_wip_model = .data:0x00380670; // type:object size:0x78 scope:global align:8
+Larm2_wip_model = .data:0x003806E8; // type:object size:0x88 scope:global align:8
+Larm1_wip_model = .data:0x00380770; // type:object size:0x78 scope:global align:8
+chest_wip_model = .data:0x003807E8; // type:object size:0x120 scope:global align:8
+Rfoot2_wip_model = .data:0x00380908; // type:object size:0x80 scope:global align:8
+Rfoot1_wip_model = .data:0x00380988; // type:object size:0x58 scope:global align:8
+Lfoot2_wip_model = .data:0x003809E0; // type:object size:0x80 scope:global align:8
+Lfoot1_wip_model = .data:0x00380A60; // type:object size:0x58 scope:global align:8
+base_wip_model = .data:0x00380AB8; // type:object size:0x78 scope:global align:8
+cKF_je_r_wip_1_tbl = .data:0x00380B30; // type:object size:0x138 scope:global align:4
+cKF_bs_r_wip_1 = .data:0x00380C68; // type:object size:0x8 scope:global align:4
+wip_1_pal = .data:0x00380C80; // type:object size:0x20 scope:global align:32
+wip_1_eye1_TA_tex_txt = .data:0x00380CA0; // type:object size:0x100 scope:global align:32
+wip_1_eye2_TA_tex_txt = .data:0x00380DA0; // type:object size:0x100 scope:global align:32
+wip_1_eye3_TA_tex_txt = .data:0x00380EA0; // type:object size:0x100 scope:global align:32
+wip_1_eye4_TA_tex_txt = .data:0x00380FA0; // type:object size:0x100 scope:global align:32
+wip_1_eye5_TA_tex_txt = .data:0x003810A0; // type:object size:0x100 scope:global align:32
+wip_1_eye6_TA_tex_txt = .data:0x003811A0; // type:object size:0x100 scope:global align:32
+wip_1_eye7_TA_tex_txt = .data:0x003812A0; // type:object size:0x100 scope:global align:32
+wip_1_eye8_TA_tex_txt = .data:0x003813A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth1_TA_tex_txt = .data:0x003814A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth2_TA_tex_txt = .data:0x003815A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth3_TA_tex_txt = .data:0x003816A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth4_TA_tex_txt = .data:0x003817A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth5_TA_tex_txt = .data:0x003818A0; // type:object size:0x100 scope:global align:32
+wip_1_mouth6_TA_tex_txt = .data:0x003819A0; // type:object size:0x100 scope:global align:32
+wip_1_tmem_txt = .data:0x00381AA0; // type:object size:0x5C0 scope:global align:32
+shp_1_v = .data:0x00382060; // type:object size:0x1460 scope:global align:8
+head_shp_model = .data:0x003834C0; // type:object size:0x1B0 scope:global align:8
+Rarm2_shp_model = .data:0x00383670; // type:object size:0x88 scope:global align:8
+Rarm1_shp_model = .data:0x003836F8; // type:object size:0x60 scope:global align:8
+Larm2_shp_model = .data:0x00383758; // type:object size:0x88 scope:global align:8
+Larm1_shp_model = .data:0x003837E0; // type:object size:0x60 scope:global align:8
+chest_shp_model = .data:0x00383840; // type:object size:0xD8 scope:global align:8
+Rfoot2_shp_model = .data:0x00383918; // type:object size:0x88 scope:global align:8
+Rfoot1_shp_model = .data:0x003839A0; // type:object size:0x60 scope:global align:8
+Lfoot2_shp_model = .data:0x00383A00; // type:object size:0x88 scope:global align:8
+Lfoot1_shp_model = .data:0x00383A88; // type:object size:0x60 scope:global align:8
+base_shp_model = .data:0x00383AE8; // type:object size:0x78 scope:global align:8
+cKF_je_r_shp_1_tbl = .data:0x00383B60; // type:object size:0x138 scope:global align:4
+cKF_bs_r_shp_1 = .data:0x00383C98; // type:object size:0x8 scope:global align:4
+shp_1_pal = .data:0x00383CA0; // type:object size:0x20 scope:global align:32
+shp_1_eye1_TA_tex_txt = .data:0x00383CC0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye2_TA_tex_txt = .data:0x00383DC0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye3_TA_tex_txt = .data:0x00383EC0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye4_TA_tex_txt = .data:0x00383FC0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye5_TA_tex_txt = .data:0x003840C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye6_TA_tex_txt = .data:0x003841C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye7_TA_tex_txt = .data:0x003842C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_eye8_TA_tex_txt = .data:0x003843C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_mouth1_TA_tex_txt = .data:0x003844C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_mouth2_TA_tex_txt = .data:0x003845C0; // type:object size:0x100 scope:global align:32
+shp_1_mouth3_TA_tex_txt = .data:0x003846C0; // type:object size:0x100 scope:global align:32
+shp_1_mouth4_TA_tex_txt = .data:0x003847C0; // type:object size:0x100 scope:global align:32 data:string
+shp_1_mouth5_TA_tex_txt = .data:0x003848C0; // type:object size:0x100 scope:global align:32
+shp_1_mouth6_TA_tex_txt = .data:0x003849C0; // type:object size:0x100 scope:global align:32
+shp_1_tmem_txt = .data:0x00384AC0; // type:object size:0x400 scope:global align:32
+shp_2_pal = .data:0x00384EC0; // type:object size:0x20 scope:global align:32
+shp_2_eye1_TA_tex_txt = .data:0x00384EE0; // type:object size:0x100 scope:global align:32
+shp_2_eye2_TA_tex_txt = .data:0x00384FE0; // type:object size:0x100 scope:global align:32
+shp_2_eye3_TA_tex_txt = .data:0x003850E0; // type:object size:0x100 scope:global align:32
+shp_2_eye4_TA_tex_txt = .data:0x003851E0; // type:object size:0x100 scope:global align:32
+shp_2_eye5_TA_tex_txt = .data:0x003852E0; // type:object size:0x100 scope:global align:32
+shp_2_eye6_TA_tex_txt = .data:0x003853E0; // type:object size:0x100 scope:global align:32
+shp_2_eye7_TA_tex_txt = .data:0x003854E0; // type:object size:0x100 scope:global align:32
+shp_2_eye8_TA_tex_txt = .data:0x003855E0; // type:object size:0x100 scope:global align:32
+shp_2_mouth1_TA_tex_txt = .data:0x003856E0; // type:object size:0x100 scope:global align:32
+shp_2_mouth2_TA_tex_txt = .data:0x003857E0; // type:object size:0x100 scope:global align:32
+shp_2_mouth3_TA_tex_txt = .data:0x003858E0; // type:object size:0x100 scope:global align:32
+shp_2_mouth4_TA_tex_txt = .data:0x003859E0; // type:object size:0x100 scope:global align:32
+shp_2_mouth5_TA_tex_txt = .data:0x00385AE0; // type:object size:0x100 scope:global align:32
+shp_2_mouth6_TA_tex_txt = .data:0x00385BE0; // type:object size:0x100 scope:global align:32
+shp_2_tmem_txt = .data:0x00385CE0; // type:object size:0x400 scope:global align:32
+shp_3_pal = .data:0x003860E0; // type:object size:0x20 scope:global align:32
+shp_3_eye1_TA_tex_txt = .data:0x00386100; // type:object size:0x100 scope:global align:32
+shp_3_eye2_TA_tex_txt = .data:0x00386200; // type:object size:0x100 scope:global align:32
+shp_3_eye3_TA_tex_txt = .data:0x00386300; // type:object size:0x100 scope:global align:32
+shp_3_eye4_TA_tex_txt = .data:0x00386400; // type:object size:0x100 scope:global align:32
+shp_3_eye5_TA_tex_txt = .data:0x00386500; // type:object size:0x100 scope:global align:32
+shp_3_eye6_TA_tex_txt = .data:0x00386600; // type:object size:0x100 scope:global align:32
+shp_3_eye7_TA_tex_txt = .data:0x00386700; // type:object size:0x100 scope:global align:32
+shp_3_eye8_TA_tex_txt = .data:0x00386800; // type:object size:0x100 scope:global align:32
+shp_3_mouth1_TA_tex_txt = .data:0x00386900; // type:object size:0x100 scope:global align:32
+shp_3_mouth2_TA_tex_txt = .data:0x00386A00; // type:object size:0x100 scope:global align:32
+shp_3_mouth3_TA_tex_txt = .data:0x00386B00; // type:object size:0x100 scope:global align:32
+shp_3_mouth4_TA_tex_txt = .data:0x00386C00; // type:object size:0x100 scope:global align:32
+shp_3_mouth5_TA_tex_txt = .data:0x00386D00; // type:object size:0x100 scope:global align:32
+shp_3_mouth6_TA_tex_txt = .data:0x00386E00; // type:object size:0x100 scope:global align:32
+shp_3_tmem_txt = .data:0x00386F00; // type:object size:0x400 scope:global align:32
+shp_4_pal = .data:0x00387300; // type:object size:0x20 scope:global align:32
+shp_4_eye1_TA_tex_txt = .data:0x00387320; // type:object size:0x100 scope:global align:32
+shp_4_eye2_TA_tex_txt = .data:0x00387420; // type:object size:0x100 scope:global align:32
+shp_4_eye3_TA_tex_txt = .data:0x00387520; // type:object size:0x100 scope:global align:32
+shp_4_eye4_TA_tex_txt = .data:0x00387620; // type:object size:0x100 scope:global align:32
+shp_4_eye5_TA_tex_txt = .data:0x00387720; // type:object size:0x100 scope:global align:32
+shp_4_eye6_TA_tex_txt = .data:0x00387820; // type:object size:0x100 scope:global align:32
+shp_4_eye7_TA_tex_txt = .data:0x00387920; // type:object size:0x100 scope:global align:32
+shp_4_eye8_TA_tex_txt = .data:0x00387A20; // type:object size:0x100 scope:global align:32
+shp_4_mouth1_TA_tex_txt = .data:0x00387B20; // type:object size:0x100 scope:global align:32
+shp_4_mouth2_TA_tex_txt = .data:0x00387C20; // type:object size:0x100 scope:global align:32
+shp_4_mouth3_TA_tex_txt = .data:0x00387D20; // type:object size:0x100 scope:global align:32
+shp_4_mouth4_TA_tex_txt = .data:0x00387E20; // type:object size:0x100 scope:global align:32
+shp_4_mouth5_TA_tex_txt = .data:0x00387F20; // type:object size:0x100 scope:global align:32
+shp_4_mouth6_TA_tex_txt = .data:0x00388020; // type:object size:0x100 scope:global align:32
+shp_4_tmem_txt = .data:0x00388120; // type:object size:0x400 scope:global align:32
+shp_5_pal = .data:0x00388520; // type:object size:0x20 scope:global align:32
+shp_5_eye1_TA_tex_txt = .data:0x00388540; // type:object size:0x100 scope:global align:32
+shp_5_eye2_TA_tex_txt = .data:0x00388640; // type:object size:0x100 scope:global align:32
+shp_5_eye3_TA_tex_txt = .data:0x00388740; // type:object size:0x100 scope:global align:32
+shp_5_eye4_TA_tex_txt = .data:0x00388840; // type:object size:0x100 scope:global align:32
+shp_5_eye5_TA_tex_txt = .data:0x00388940; // type:object size:0x100 scope:global align:32
+shp_5_eye6_TA_tex_txt = .data:0x00388A40; // type:object size:0x100 scope:global align:32
+shp_5_eye7_TA_tex_txt = .data:0x00388B40; // type:object size:0x100 scope:global align:32
+shp_5_eye8_TA_tex_txt = .data:0x00388C40; // type:object size:0x100 scope:global align:32
+shp_5_mouth1_TA_tex_txt = .data:0x00388D40; // type:object size:0x100 scope:global align:32
+shp_5_mouth2_TA_tex_txt = .data:0x00388E40; // type:object size:0x100 scope:global align:32
+shp_5_mouth3_TA_tex_txt = .data:0x00388F40; // type:object size:0x100 scope:global align:32
+shp_5_mouth4_TA_tex_txt = .data:0x00389040; // type:object size:0x100 scope:global align:32
+shp_5_mouth5_TA_tex_txt = .data:0x00389140; // type:object size:0x100 scope:global align:32
+shp_5_mouth6_TA_tex_txt = .data:0x00389240; // type:object size:0x100 scope:global align:32
+shp_5_tmem_txt = .data:0x00389340; // type:object size:0x400 scope:global align:32
+shp_6_pal = .data:0x00389740; // type:object size:0x20 scope:global align:32
+shp_6_eye1_TA_tex_txt = .data:0x00389760; // type:object size:0x100 scope:global align:32
+shp_6_eye2_TA_tex_txt = .data:0x00389860; // type:object size:0x100 scope:global align:32
+shp_6_eye3_TA_tex_txt = .data:0x00389960; // type:object size:0x100 scope:global align:32
+shp_6_eye4_TA_tex_txt = .data:0x00389A60; // type:object size:0x100 scope:global align:32
+shp_6_eye5_TA_tex_txt = .data:0x00389B60; // type:object size:0x100 scope:global align:32
+shp_6_eye6_TA_tex_txt = .data:0x00389C60; // type:object size:0x100 scope:global align:32
+shp_6_eye7_TA_tex_txt = .data:0x00389D60; // type:object size:0x100 scope:global align:32
+shp_6_eye8_TA_tex_txt = .data:0x00389E60; // type:object size:0x100 scope:global align:32
+shp_6_mouth1_TA_tex_txt = .data:0x00389F60; // type:object size:0x100 scope:global align:32
+shp_6_mouth2_TA_tex_txt = .data:0x0038A060; // type:object size:0x100 scope:global align:32
+shp_6_mouth3_TA_tex_txt = .data:0x0038A160; // type:object size:0x100 scope:global align:32
+shp_6_mouth4_TA_tex_txt = .data:0x0038A260; // type:object size:0x100 scope:global align:32
+shp_6_mouth5_TA_tex_txt = .data:0x0038A360; // type:object size:0x100 scope:global align:32
+shp_6_mouth6_TA_tex_txt = .data:0x0038A460; // type:object size:0x100 scope:global align:32
+shp_6_tmem_txt = .data:0x0038A560; // type:object size:0x400 scope:global align:32
+rcn_1_v = .data:0x0038A960; // type:object size:0x1650 scope:global align:8
+head_rcn_model = .data:0x0038BFB0; // type:object size:0x188 scope:global align:8
+mouth_rcn_model = .data:0x0038C138; // type:object size:0x78 scope:global align:8
+Rarm2_rcn_model = .data:0x0038C1B0; // type:object size:0x88 scope:global align:8
+Rarm1_rcn_model = .data:0x0038C238; // type:object size:0x78 scope:global align:8
+Larm2_rcn_model = .data:0x0038C2B0; // type:object size:0x88 scope:global align:8
+Larm1_rcn_model = .data:0x0038C338; // type:object size:0x78 scope:global align:8
+chest_rcn_model = .data:0x0038C3B0; // type:object size:0x108 scope:global align:8
+tail1_rcn_model = .data:0x0038C4B8; // type:object size:0x78 scope:global align:8
+tail2_rcn_model = .data:0x0038C530; // type:object size:0xA0 scope:global align:8
+Rfoot2_rcn_model = .data:0x0038C5D0; // type:object size:0x80 scope:global align:8
+Rfoot1_rcn_model = .data:0x0038C650; // type:object size:0x58 scope:global align:8
+Lfoot2_rcn_model = .data:0x0038C6A8; // type:object size:0x80 scope:global align:8
+Lfoot1_rcn_model = .data:0x0038C728; // type:object size:0x58 scope:global align:8
+base_rcn_model = .data:0x0038C780; // type:object size:0xC0 scope:global align:8
+cKF_je_r_rcn_1_tbl = .data:0x0038C840; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rcn_1 = .data:0x0038C978; // type:object size:0x8 scope:global align:4
+rcn_1_pal = .data:0x0038C980; // type:object size:0x20 scope:global align:32
+rcn_1_eye1_TA_tex_txt = .data:0x0038C9A0; // type:object size:0x100 scope:global align:32
+rcn_1_eye2_TA_tex_txt = .data:0x0038CAA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye3_TA_tex_txt = .data:0x0038CBA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye4_TA_tex_txt = .data:0x0038CCA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye5_TA_tex_txt = .data:0x0038CDA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye6_TA_tex_txt = .data:0x0038CEA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye7_TA_tex_txt = .data:0x0038CFA0; // type:object size:0x100 scope:global align:32
+rcn_1_eye8_TA_tex_txt = .data:0x0038D0A0; // type:object size:0x100 scope:global align:32
+rcn_1_tmem_txt = .data:0x0038D1A0; // type:object size:0x640 scope:global align:32
+obj_item_apple_pal = .data:0x0038D7E0; // type:object size:0x20 scope:local align:32
+obj_item_apple_tex = .data:0x0038D800; // type:object size:0x200 scope:local align:32
+obj_item_apple_v = .data:0x0038DA00; // type:object size:0x40 scope:local align:8
+obj_apple2_modelT = .data:0x0038DA40; // type:object size:0x58 scope:global align:8
+obj_shop_axe_pal = .data:0x0038DAA0; // type:object size:0x20 scope:global align:32
+obj_shop_axe_tex = .data:0x0038DAC0; // type:object size:0x200 scope:global align:32
+obj_shop_axe_v = .data:0x0038DCC0; // type:object size:0x1A0 scope:global align:8
+obj_axeT_mat_model = .data:0x0038DE60; // type:object size:0x48 scope:global align:8
+obj_axeT_gfx_model = .data:0x0038DEA8; // type:object size:0x38 scope:global align:8
+obj_shop_paper_pal = .data:0x0038DEE0; // type:object size:0x20 scope:global align:32
+obj_shop_paper_tex = .data:0x0038DF00; // type:object size:0x200 scope:global align:32
+obj_shop_paper_v = .data:0x0038E100; // type:object size:0x230 scope:global align:8
+obj_paper_mat_model = .data:0x0038E330; // type:object size:0x48 scope:global align:8
+obj_paper_gfx_model = .data:0x0038E378; // type:object size:0x50 scope:global align:8
+obj_shop_carpet_pal = .data:0x0038E3E0; // type:object size:0x20 scope:global align:32
+obj_shop_carpet_tex = .data:0x0038E400; // type:object size:0x200 scope:global align:32
+obj_shop_carpet_v = .data:0x0038E600; // type:object size:0x2F0 scope:global align:8
+obj_carpetT_mat_model = .data:0x0038E8F0; // type:object size:0x48 scope:global align:8
+obj_carpetT_gfx_model = .data:0x0038E938; // type:object size:0x80 scope:global align:8
+obj_item_fish_pal = .data:0x0038E9B8; // type:object size:0x20 scope:local align:4
+obj_item_fish_tex = .data:0x0038E9D8; // type:object size:0x200 scope:local align:4
+item_fish_v = .data:0x0038EBD8; // type:object size:0x40 scope:global align:8
+item_fish_modelT = .data:0x0038EC18; // type:object size:0xB8 scope:global align:8
+obj_item_fossil_pal = .data:0x0038ECE0; // type:object size:0x20 scope:local align:32
+obj_shop_fossil_tex = .data:0x0038ED00; // type:object size:0x200 scope:global align:32
+obj_item_fossil_v = .data:0x0038EF00; // type:object size:0x190 scope:local align:8
+obj_shop_fossil_mat_model = .data:0x0038F090; // type:object size:0x48 scope:global align:8
+obj_shop_fossil_gfx_model = .data:0x0038F0D8; // type:object size:0x40 scope:global align:8
+obj_shop_fuku_pal = .data:0x0038F120; // type:object size:0x20 scope:global align:32
+obj_shop_fuku_tex = .data:0x0038F140; // type:object size:0x200 scope:global align:32
+obj_shop_fuku_v = .data:0x0038F340; // type:object size:0x260 scope:global align:8
+obj_fukuT_mat_model = .data:0x0038F5A0; // type:object size:0x48 scope:global align:8
+obj_fukuT_gfx_model = .data:0x0038F5E8; // type:object size:0x60 scope:global align:8
+obj_item_kabu_pal = .data:0x0038F660; // type:object size:0x20 scope:local align:32
+obj_item_kabu_tex = .data:0x0038F680; // type:object size:0x200 scope:local align:32
+obj_item_kabu_v = .data:0x0038F880; // type:object size:0x40 scope:local align:8
+item_kabu_modelT = .data:0x0038F8C0; // type:object size:0x58 scope:global align:8
+obj_shop_kanban_pal = .data:0x0038F920; // type:object size:0x20 scope:global align:32
+obj_shop_kanban_tex = .data:0x0038F940; // type:object size:0x200 scope:global align:32
+obj_shop_kanban_v = .data:0x0038FB40; // type:object size:0xE0 scope:global align:8
+obj_shop_kanbanT_mat_model = .data:0x0038FC20; // type:object size:0x48 scope:global align:8
+obj_shop_kanbanT_gfx_model = .data:0x0038FC68; // type:object size:0x28 scope:global align:8
+tol_kaza_1_pal = .data:0x0038FCA0; // type:object size:0x20 scope:local align:32
+tol_kaza_1_b_tex_txt = .data:0x0038FCC0; // type:object size:0x100 scope:local align:32
+tol_kaza_1_a_tex_txt = .data:0x0038FDC0; // type:object size:0x200 scope:local align:32
+tol_kaza_1_c_tex_txt = .data:0x0038FFC0; // type:object size:0x200 scope:local align:32
+obj_shop_kaza1_v = .data:0x003901C0; // type:object size:0x360 scope:global align:8
+obj_shop_kaza1_model = .data:0x00390520; // type:object size:0xF8 scope:global align:8
+tol_kaza_2_pal = .data:0x00390620; // type:object size:0x20 scope:local align:32
+tol_kaza_2_a_tex_txt = .data:0x00390640; // type:object size:0x200 scope:local align:32
+tol_kaza_2_c_tex_txt = .data:0x00390840; // type:object size:0x200 scope:local align:32
+tol_kaza_2_b_tex_txt = .data:0x00390A40; // type:object size:0x100 scope:local align:32
+obj_shop_kaza2_v = .data:0x00390B40; // type:object size:0x360 scope:global align:8
+obj_shop_kaza2_model = .data:0x00390EA0; // type:object size:0xF0 scope:global align:8
+tol_kaza_3_pal = .data:0x00390FA0; // type:object size:0x20 scope:local align:32
+tol_kaza_3_a_tex_txt = .data:0x00390FC0; // type:object size:0x200 scope:local align:32
+tol_kaza_3_c_tex_txt = .data:0x003911C0; // type:object size:0x200 scope:local align:32
+tol_kaza_3_b_tex_txt = .data:0x003913C0; // type:object size:0x100 scope:local align:32
+obj_shop_kaza3_v = .data:0x003914C0; // type:object size:0x360 scope:global align:8
+obj_shop_kaza3_model = .data:0x00391820; // type:object size:0xF0 scope:global align:8
+tol_kaza_4_pal = .data:0x00391920; // type:object size:0x20 scope:local align:32
+tol_kaza_4_a_tex_txt = .data:0x00391940; // type:object size:0x200 scope:local align:32
+tol_kaza_4_c_tex_txt = .data:0x00391B40; // type:object size:0x200 scope:local align:32
+tol_kaza_4_b_tex_txt = .data:0x00391D40; // type:object size:0x100 scope:local align:32
+obj_shop_kaza4_v = .data:0x00391E40; // type:object size:0x360 scope:global align:8
+obj_shop_kaza4_model = .data:0x003921A0; // type:object size:0xF0 scope:global align:8
+tol_kaza_5_pal = .data:0x003922A0; // type:object size:0x20 scope:local align:32
+tol_kaza_5_a_tex_txt = .data:0x003922C0; // type:object size:0x200 scope:local align:32
+tol_kaza_5_c_tex_txt = .data:0x003924C0; // type:object size:0x200 scope:local align:32
+tol_kaza_5_b_tex_txt = .data:0x003926C0; // type:object size:0x100 scope:local align:32
+obj_shop_kaza5_v = .data:0x003927C0; // type:object size:0x360 scope:global align:8
+obj_shop_kaza5_model = .data:0x00392B20; // type:object size:0xF0 scope:global align:8
+tol_kaza_6_pal = .data:0x00392C20; // type:object size:0x20 scope:local align:32
+tol_kaza_6_a_tex_txt = .data:0x00392C40; // type:object size:0x200 scope:local align:32
+tol_kaza_6_c_tex_txt = .data:0x00392E40; // type:object size:0x200 scope:local align:32
+tol_kaza_6_b_tex_txt = .data:0x00393040; // type:object size:0x100 scope:local align:32
+obj_shop_kaza6_v = .data:0x00393140; // type:object size:0x360 scope:global align:8
+obj_shop_kaza6_model = .data:0x003934A0; // type:object size:0xF0 scope:global align:8
+tol_kaza_7_pal = .data:0x003935A0; // type:object size:0x20 scope:local align:32
+tol_kaza_7_a_tex_txt = .data:0x003935C0; // type:object size:0x200 scope:local align:32
+tol_kaza_7_c_tex_txt = .data:0x003937C0; // type:object size:0x200 scope:local align:32
+tol_kaza_7_d_tex_txt = .data:0x003939C0; // type:object size:0x80 scope:local align:32
+tol_kaza_7_b_tex_txt = .data:0x00393A40; // type:object size:0x100 scope:local align:32
+obj_shop_kaza7_v = .data:0x00393B40; // type:object size:0x980 scope:global align:8
+obj_shop_kaza7_model = .data:0x003944C0; // type:object size:0x238 scope:global align:8
+tol_kaza_8_pal = .data:0x00394700; // type:object size:0x20 scope:local align:32
+tol_kaza_8_d_tex_txt = .data:0x00394720; // type:object size:0x80 scope:local align:32
+tol_kaza_8_a_tex_txt = .data:0x003947A0; // type:object size:0x200 scope:local align:32
+tol_kaza_8_c_tex_txt = .data:0x003949A0; // type:object size:0x200 scope:local align:32
+tol_kaza_8_e_tex_txt = .data:0x00394BA0; // type:object size:0x80 scope:local align:32
+tol_kaza_8_b_tex_txt = .data:0x00394C20; // type:object size:0x100 scope:local align:32
+obj_shop_kaza8_v = .data:0x00394D20; // type:object size:0x7E0 scope:global align:8
+obj_shop_kaza8_model = .data:0x00395500; // type:object size:0x210 scope:global align:8
+obj_item_matutake_pal = .data:0x00395720; // type:object size:0x20 scope:local align:32
+obj_item_matutake_tex = .data:0x00395740; // type:object size:0x200 scope:local align:32
+obj_item_matutake_v = .data:0x00395940; // type:object size:0x40 scope:local align:8
+item_matutake_modelT = .data:0x00395980; // type:object size:0x58 scope:global align:8
+obj_shop_md_pal = .data:0x003959E0; // type:object size:0x20 scope:global align:32
+obj_shop_md_tex = .data:0x00395A00; // type:object size:0x200 scope:global align:32
+obj_shop_md_v = .data:0x00395C00; // type:object size:0x40 scope:global align:8
+obj_mdT_mat_model = .data:0x00395C40; // type:object size:0x48 scope:global align:8
+obj_mdT_gfx_model = .data:0x00395C88; // type:object size:0x18 scope:global align:8
+obj_shop_cnaegi_pal = .data:0x00395CA0; // type:object size:0x20 scope:global align:32
+obj_shop_cnaegi_tex = .data:0x00395CC0; // type:object size:0x200 scope:global align:32
+obj_shop_cnaegi_v = .data:0x00395EC0; // type:object size:0x130 scope:global align:8
+obj_shop_cnaegiT_mat_model = .data:0x00395FF0; // type:object size:0x48 scope:global align:8
+obj_shop_cnaegiT_gfx_model = .data:0x00396038; // type:object size:0x38 scope:global align:8
+obj_shop_naegi_pal = .data:0x00396080; // type:object size:0x20 scope:global align:32
+obj_shop_naegi_tex = .data:0x003960A0; // type:object size:0x200 scope:global align:32
+obj_shop_naegi_v = .data:0x003962A0; // type:object size:0x1B0 scope:global align:8
+obj_naegiT_mat_model = .data:0x00396450; // type:object size:0x48 scope:global align:8
+obj_naegiT_gfx_model = .data:0x00396498; // type:object size:0x40 scope:global align:8
+obj_shop_net_pal = .data:0x003964E0; // type:object size:0x20 scope:global align:32
+obj_shop_net_tex = .data:0x00396500; // type:object size:0x200 scope:global align:32
+obj_shop_net_v = .data:0x00396700; // type:object size:0x110 scope:global align:8
+obj_netT_mat_model = .data:0x00396810; // type:object size:0x48 scope:global align:8
+obj_netT_gfx_model = .data:0x00396858; // type:object size:0x30 scope:global align:8
+obj_item_peach_pal = .data:0x003968A0; // type:object size:0x20 scope:local align:32
+obj_item_orange_tex = .data:0x003968C0; // type:object size:0x200 scope:local align:32
+obj_item_orange_v = .data:0x00396AC0; // type:object size:0x40 scope:local align:8
+item_orange_modelT = .data:0x00396B00; // type:object size:0x58 scope:global align:8
+obj_shop_paint_a_pal = .data:0x00396B60; // type:object size:0x20 scope:global align:32
+obj_shop_paint_b_pal = .data:0x00396B80; // type:object size:0x20 scope:global align:32
+obj_shop_paint_c_pal = .data:0x00396BA0; // type:object size:0x20 scope:global align:32
+obj_shop_paint_d_pal = .data:0x00396BC0; // type:object size:0x20 scope:global align:32
+obj_shop_paint_e_pal = .data:0x00396BE0; // type:object size:0x20 scope:global align:32
+obj_shop_paint_f_pal = .data:0x00396C00; // type:object size:0x20 scope:global align:32
+obj_shop_paint_g_pal = .data:0x00396C20; // type:object size:0x20 scope:global align:32
+obj_shop_paint_h_pal = .data:0x00396C40; // type:object size:0x20 scope:global align:32
+obj_shop_paint_i_pal = .data:0x00396C60; // type:object size:0x20 scope:global align:32
+obj_shop_paint_j_pal = .data:0x00396C80; // type:object size:0x20 scope:global align:32
+obj_shop_paint_k_pal = .data:0x00396CA0; // type:object size:0x20 scope:global align:32
+obj_shop_paint_l_pal = .data:0x00396CC0; // type:object size:0x20 scope:global align:32
+obj_shop_paint_tex = .data:0x00396CE0; // type:object size:0x400 scope:global align:32
+obj_shop_paint_v = .data:0x003970E0; // type:object size:0x1B0 scope:global align:8
+obj_shop_paintT_mat_model = .data:0x00397290; // type:object size:0x40 scope:global align:8
+obj_paintT_a_mat_model = .data:0x003972D0; // type:object size:0x18 scope:global align:8
+obj_paintT_b_mat_model = .data:0x003972E8; // type:object size:0x18 scope:global align:8
+obj_paintT_c_mat_model = .data:0x00397300; // type:object size:0x18 scope:global align:8
+obj_paintT_d_mat_model = .data:0x00397318; // type:object size:0x18 scope:global align:8
+obj_paintT_e_mat_model = .data:0x00397330; // type:object size:0x18 scope:global align:8
+obj_paintT_f_mat_model = .data:0x00397348; // type:object size:0x18 scope:global align:8
+obj_paintT_g_mat_model = .data:0x00397360; // type:object size:0x18 scope:global align:8
+obj_paintT_h_mat_model = .data:0x00397378; // type:object size:0x18 scope:global align:8
+obj_paintT_i_mat_model = .data:0x00397390; // type:object size:0x18 scope:global align:8
+obj_paintT_j_mat_model = .data:0x003973A8; // type:object size:0x18 scope:global align:8
+obj_paintT_k_mat_model = .data:0x003973C0; // type:object size:0x18 scope:global align:8
+obj_paintT_l_mat_model = .data:0x003973D8; // type:object size:0x18 scope:global align:8
+obj_paintT_gfx_model = .data:0x003973F0; // type:object size:0x40 scope:global align:8
+obj_shop_rod_pal = .data:0x00397440; // type:object size:0x20 scope:global align:32
+obj_shop_rod_tex = .data:0x00397460; // type:object size:0x200 scope:global align:32
+obj_shop_rod_v = .data:0x00397660; // type:object size:0x190 scope:global align:8
+obj_rodT_mat_model = .data:0x003977F0; // type:object size:0x48 scope:global align:8
+obj_rodT_gfx_model = .data:0x00397838; // type:object size:0x38 scope:global align:8
+obj_rod_lineT_mat_model = .data:0x00397870; // type:object size:0x48 scope:global align:8
+obj_rod_lineT_gfx_model = .data:0x003978B8; // type:object size:0x18 scope:global align:8
+obj_shop_sango_pal = .data:0x003978E0; // type:object size:0x20 scope:global align:32
+obj_shop_sango_tex = .data:0x00397900; // type:object size:0x200 scope:global align:32
+obj_shop_sango_v = .data:0x00397B00; // type:object size:0x80 scope:global align:8
+obj_sangoT_mat_model = .data:0x00397B80; // type:object size:0x48 scope:global align:8
+obj_sangoT_gfx_model = .data:0x00397BC8; // type:object size:0x20 scope:global align:8
+obj_shop_seed_pal = .data:0x00397C00; // type:object size:0x20 scope:global align:32
+obj_shop_seed_tex = .data:0x00397C20; // type:object size:0x200 scope:global align:32
+obj_shop_seed_v = .data:0x00397E20; // type:object size:0x140 scope:global align:8
+obj_seed_mat_model = .data:0x00397F60; // type:object size:0x48 scope:global align:8
+obj_seed_gfx_model = .data:0x00397FA8; // type:object size:0x30 scope:global align:8
+obj_shop_honegai_pal = .data:0x00397FE0; // type:object size:0x20 scope:global align:32
+obj_shop_honegai_tex = .data:0x00398000; // type:object size:0xC0 scope:global align:32
+obj_shop_honegai_v = .data:0x003980C0; // type:object size:0x70 scope:global align:8
+obj_honegaiT_mat_model = .data:0x00398130; // type:object size:0x48 scope:global align:8
+obj_honegaiT_gfx_model = .data:0x00398178; // type:object size:0x20 scope:global align:8
+obj_shop_horagai_pal = .data:0x003981A0; // type:object size:0x20 scope:global align:32
+obj_shop_horagai_tex = .data:0x003981C0; // type:object size:0x100 scope:global align:32
+obj_shop_horagai_v = .data:0x003982C0; // type:object size:0xA0 scope:global align:8
+obj_horagaiT_mat_model = .data:0x00398360; // type:object size:0x48 scope:global align:8
+obj_horagaiT_gfx_model = .data:0x003983A8; // type:object size:0x30 scope:global align:8
+obj_shop_komagai_pal = .data:0x003983E0; // type:object size:0x20 scope:global align:32
+obj_shop_komagai_tex = .data:0x00398400; // type:object size:0x80 scope:global align:32
+obj_shop_komagai_v = .data:0x00398480; // type:object size:0x70 scope:global align:8
+obj_komagaiT_mat_model = .data:0x003984F0; // type:object size:0x48 scope:global align:8
+obj_komagaiT_gfx_model = .data:0x00398538; // type:object size:0x20 scope:global align:8
+obj_shop_takaragai_pal = .data:0x00398560; // type:object size:0x20 scope:global align:32
+obj_shop_takaragai_tex = .data:0x00398580; // type:object size:0x80 scope:global align:32
+obj_shop_takaragai_v = .data:0x00398600; // type:object size:0x70 scope:global align:8
+obj_takaragaiT_mat_model = .data:0x00398670; // type:object size:0x48 scope:global align:8
+obj_takaragaiT_gfx_model = .data:0x003986B8; // type:object size:0x20 scope:global align:8
+obj_shop_ougigai_pal = .data:0x003986E0; // type:object size:0x20 scope:global align:32
+obj_shop_ougigai_tex = .data:0x00398700; // type:object size:0x120 scope:global align:32
+obj_shop_ougigai_v = .data:0x00398820; // type:object size:0x60 scope:global align:8
+obj_ougigaiT_mat_model = .data:0x00398880; // type:object size:0x48 scope:global align:8
+obj_ougigaiT_gfx_model = .data:0x003988C8; // type:object size:0x20 scope:global align:8
+obj_shop_sakuragai_pal = .data:0x00398900; // type:object size:0x20 scope:global align:32
+obj_shop_sakuragai_tex = .data:0x00398920; // type:object size:0x200 scope:global align:32
+obj_shop_sakuragai_v = .data:0x00398B20; // type:object size:0x60 scope:global align:8
+obj_sakuragaiT_mat_model = .data:0x00398B80; // type:object size:0x48 scope:global align:8
+obj_sakuragaiT_gfx_model = .data:0x00398BC8; // type:object size:0x20 scope:global align:8
+obj_shop_shakogai_pal = .data:0x00398C00; // type:object size:0x20 scope:global align:32
+obj_shop_shakogai_tex = .data:0x00398C20; // type:object size:0xC0 scope:global align:32
+obj_shop_shakogai_v = .data:0x00398CE0; // type:object size:0xC0 scope:global align:8
+obj_shakogaiT_mat_model = .data:0x00398DA0; // type:object size:0x48 scope:global align:8
+obj_shakogaiT_gfx_model = .data:0x00398DE8; // type:object size:0x28 scope:global align:8
+obj_shop_shovel_pal = .data:0x00398E20; // type:object size:0x20 scope:global align:32
+obj_shop_shovel_tex = .data:0x00398E40; // type:object size:0x200 scope:global align:32
+obj_shop_shovel_v = .data:0x00399040; // type:object size:0x190 scope:global align:8
+obj_shovelT_mat_model = .data:0x003991D0; // type:object size:0x48 scope:global align:8
+obj_shovelT_gfx_model = .data:0x00399218; // type:object size:0x40 scope:global align:8
+obj_shop_soldout_pal = .data:0x00399260; // type:object size:0x20 scope:global align:32
+obj_shop_soldout_tex = .data:0x00399280; // type:object size:0x200 scope:global align:32
+obj_shop_soldout_v = .data:0x00399480; // type:object size:0xC0 scope:global align:8
+obj_soldoutT_mat_model = .data:0x00399540; // type:object size:0x48 scope:global align:8
+obj_soldoutT_gfx_model = .data:0x00399588; // type:object size:0x20 scope:global align:8
+obj_shop_ticket_pal = .data:0x003995C0; // type:object size:0x20 scope:global align:32
+obj_shop_ticket_tex = .data:0x003995E0; // type:object size:0x80 scope:global align:32
+obj_shop_ticket_v = .data:0x00399660; // type:object size:0x140 scope:global align:8
+obj_ticketT_mat_model = .data:0x003997A0; // type:object size:0x48 scope:global align:8
+obj_ticketT_gfx_model = .data:0x003997E8; // type:object size:0x28 scope:global align:8
+obj_shop_net2_pal = .data:0x00399820; // type:object size:0x20 scope:local align:32
+obj_shop_axe2_tex = .data:0x00399840; // type:object size:0x200 scope:global align:32
+obj_shop_axe2_v = .data:0x00399A40; // type:object size:0x1A0 scope:global align:8
+obj_axe2T_mat_model = .data:0x00399BE0; // type:object size:0x48 scope:global align:8
+obj_axe2T_gfx_model = .data:0x00399C28; // type:object size:0x38 scope:global align:8
+obj_shop_net2_pal = .data:0x00399C60; // type:object size:0x20 scope:local align:32
+obj_shop_net2_tex = .data:0x00399C80; // type:object size:0x200 scope:global align:32
+obj_shop_net2_v = .data:0x00399E80; // type:object size:0x110 scope:global align:8
+obj_net2T_mat_model = .data:0x00399F90; // type:object size:0x48 scope:global align:8
+obj_net2T_gfx_model = .data:0x00399FD8; // type:object size:0x30 scope:global align:8
+obj_shop_rod2_pal = .data:0x0039A020; // type:object size:0x20 scope:local align:32
+obj_shop_rod2_tex = .data:0x0039A040; // type:object size:0x200 scope:global align:32
+obj_shop_rod2_v = .data:0x0039A240; // type:object size:0x190 scope:global align:8
+obj_rod2T_mat_model = .data:0x0039A3D0; // type:object size:0x48 scope:global align:8
+obj_rod2T_gfx_model = .data:0x0039A418; // type:object size:0x38 scope:global align:8
+obj_rod2_lineT_mat_model = .data:0x0039A450; // type:object size:0x48 scope:global align:8
+obj_rod2_lineT_gfx_model = .data:0x0039A498; // type:object size:0x18 scope:global align:8
+obj_shop_shovel2_pal = .data:0x0039A4C0; // type:object size:0x20 scope:local align:32
+obj_shop_shovel2_tex = .data:0x0039A4E0; // type:object size:0x200 scope:global align:32
+obj_shop_shovel2_v = .data:0x0039A6E0; // type:object size:0x190 scope:global align:8
+obj_shovel2T_mat_model = .data:0x0039A870; // type:object size:0x48 scope:global align:8
+obj_shovel2T_gfx_model = .data:0x0039A8B8; // type:object size:0x40 scope:global align:8
+obj_shop_akican_pal = .data:0x0039A900; // type:object size:0x20 scope:local align:32
+obj_shop_akican_tex = .data:0x0039A920; // type:object size:0x200 scope:global align:32
+obj_shop_akican_v = .data:0x0039AB20; // type:object size:0x330 scope:global align:8
+obj_g2T_mat_model = .data:0x0039AE50; // type:object size:0x48 scope:global align:8
+obj_g2T_gfx_model = .data:0x0039AE98; // type:object size:0x60 scope:global align:8
+obj_shop_akican_pal = .data:0x0039AF00; // type:object size:0x20 scope:local align:32
+obj_shop_nagagutu_tex = .data:0x0039AF20; // type:object size:0x200 scope:global align:32
+obj_shop_nagagutu_v = .data:0x0039B120; // type:object size:0x2B0 scope:global align:8
+obj_nagagutuT_mat_model = .data:0x0039B3D0; // type:object size:0x48 scope:global align:8
+obj_nagagutuT_gfx_model = .data:0x0039B418; // type:object size:0x68 scope:global align:8
+obj_shop_tire_pal = .data:0x0039B480; // type:object size:0x20 scope:global align:32
+obj_shop_tire_tex = .data:0x0039B4A0; // type:object size:0x200 scope:global align:32
+obj_shop_tire_v = .data:0x0039B6A0; // type:object size:0x2C0 scope:global align:8
+obj_g1T_mat_model = .data:0x0039B960; // type:object size:0x48 scope:global align:8
+obj_g1T_gfx_model = .data:0x0039B9A8; // type:object size:0x60 scope:global align:8
+tol_fan1_pal = .data:0x0039BA20; // type:object size:0x20 scope:local align:32
+tol_fan1_tex_txt = .data:0x0039BA40; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa1_v = .data:0x0039BE40; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa1_mat_model = .data:0x0039BEC0; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa1_gfx_model = .data:0x0039BF08; // type:object size:0x20 scope:global align:8
+tol_fan2_pal = .data:0x0039BF40; // type:object size:0x20 scope:local align:32
+tol_fan2_tex_txt = .data:0x0039BF60; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa2_v = .data:0x0039C360; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa2_mat_model = .data:0x0039C3E0; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa2_gfx_model = .data:0x0039C428; // type:object size:0x20 scope:global align:8
+tol_fan3_pal = .data:0x0039C460; // type:object size:0x20 scope:local align:32
+tol_fan3_tex_txt = .data:0x0039C480; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa3_v = .data:0x0039C880; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa3_mat_model = .data:0x0039C900; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa3_gfx_model = .data:0x0039C948; // type:object size:0x20 scope:global align:8
+tol_fan4_pal = .data:0x0039C980; // type:object size:0x20 scope:local align:32
+tol_fan4_tex_txt = .data:0x0039C9A0; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa4_v = .data:0x0039CDA0; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa4_mat_model = .data:0x0039CE20; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa4_gfx_model = .data:0x0039CE68; // type:object size:0x20 scope:global align:8
+tol_fan5_pal = .data:0x0039CEA0; // type:object size:0x20 scope:local align:32
+tol_fan5_tex_txt = .data:0x0039CEC0; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa5_v = .data:0x0039D2C0; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa5_mat_model = .data:0x0039D340; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa5_gfx_model = .data:0x0039D388; // type:object size:0x20 scope:global align:8
+tol_fan6_pal = .data:0x0039D3C0; // type:object size:0x20 scope:local align:32
+tol_fan6_tex_txt = .data:0x0039D3E0; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa6_v = .data:0x0039D7E0; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa6_mat_model = .data:0x0039D860; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa6_gfx_model = .data:0x0039D8A8; // type:object size:0x20 scope:global align:8
+tol_fan7_pal = .data:0x0039D8E0; // type:object size:0x20 scope:local align:32
+tol_fan7_tex_txt = .data:0x0039D900; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa7_v = .data:0x0039DD00; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa7_mat_model = .data:0x0039DD80; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa7_gfx_model = .data:0x0039DDC8; // type:object size:0x20 scope:global align:8
+tol_fan8_pal = .data:0x0039DE00; // type:object size:0x20 scope:local align:32
+tol_fan8_tex_txt = .data:0x0039DE20; // type:object size:0x400 scope:local align:32
+obj_shop_utiwa8_v = .data:0x0039E220; // type:object size:0x80 scope:global align:8
+obj_shop_utiwa8_mat_model = .data:0x0039E2A0; // type:object size:0x48 scope:global align:8
+obj_shop_utiwa8_gfx_model = .data:0x0039E2E8; // type:object size:0x20 scope:global align:8
+obj_shop_wall_pal = .data:0x0039E320; // type:object size:0x20 scope:global align:32
+obj_shop_wall_tex = .data:0x0039E340; // type:object size:0x200 scope:global align:32
+obj_shop_wall_v = .data:0x0039E540; // type:object size:0x240 scope:global align:8
+obj_wallT_mat_model = .data:0x0039E780; // type:object size:0x48 scope:global align:8
+obj_wallT_gfx_model = .data:0x0039E7C8; // type:object size:0x60 scope:global align:8
+obj_shop_manekin_pal = .data:0x0039E840; // type:object size:0x20 scope:global align:32
+obj_shop_manekin_bottom_tex_txt = .data:0x0039E860; // type:object size:0x200 scope:global align:32
+obj_shop_manekin_foot_tex_txt = .data:0x0039EA60; // type:object size:0x100 scope:global align:32
+obj_shop_manekin_top_tex_txt = .data:0x0039EB60; // type:object size:0x80 scope:global align:32
+obj_shop_manekin_v = .data:0x0039EBE0; // type:object size:0x390 scope:global align:8
+obj_shop_manekin_model = .data:0x0039EF70; // type:object size:0xE0 scope:global align:8
+obj_shop_umb_01_pal = .data:0x0039F060; // type:object size:0x20 scope:global align:32
+obj_shop_umb_01_kasa1_tex_txt = .data:0x0039F080; // type:object size:0x200 scope:global align:32
+obj_shop_umb_01_tuka1_tex_txt = .data:0x0039F280; // type:object size:0x200 scope:global align:32
+obj_shop_umb01_v = .data:0x0039F480; // type:object size:0x380 scope:global align:8
+obj_shop_umb01_model = .data:0x0039F800; // type:object size:0xB0 scope:global align:8
+obj_shop_umb01_modelT = .data:0x0039F8B0; // type:object size:0x8 scope:global align:8
+tol_umb02_pal = .data:0x0039F8C0; // type:object size:0x20 scope:local align:32
+tol_umb02_kasa2_tex_txt = .data:0x0039F8E0; // type:object size:0x200 scope:local align:32
+tol_umb02_kasa1_tex_txt = .data:0x0039FAE0; // type:object size:0x200 scope:local align:32
+tol_umb02_tuka_tex_txt = .data:0x0039FCE0; // type:object size:0x200 scope:local align:32
+obj_shop_umb02_v = .data:0x0039FEE0; // type:object size:0x3E0 scope:global align:8
+obj_shop_umb02_model = .data:0x003A02C0; // type:object size:0xD8 scope:global align:8
+obj_shop_umb02_modelT = .data:0x003A0398; // type:object size:0x8 scope:global align:8
+obj_shop_umb_03_pal = .data:0x003A03A0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_03_kasa1_tex_txt = .data:0x003A03C0; // type:object size:0x400 scope:global align:32
+obj_shop_umb_03_tuka1_tex_txt = .data:0x003A07C0; // type:object size:0x200 scope:global align:32
+obj_shop_umb03_v = .data:0x003A09C0; // type:object size:0x380 scope:global align:8
+obj_shop_umb03_model = .data:0x003A0D40; // type:object size:0xB8 scope:global align:8
+obj_shop_umb03_modelT = .data:0x003A0DF8; // type:object size:0x8 scope:global align:8
+obj_shop_umb_04_pal = .data:0x003A0E00; // type:object size:0x20 scope:global align:32
+obj_shop_umb_04_kasa2_tex_txt = .data:0x003A0E20; // type:object size:0x100 scope:global align:32
+obj_shop_umb_04_kasa1_tex_txt = .data:0x003A0F20; // type:object size:0x100 scope:global align:32
+obj_shop_umb_04_tuka1_tex_txt = .data:0x003A1020; // type:object size:0x200 scope:global align:32
+obj_shop_umb04_v = .data:0x003A1220; // type:object size:0x380 scope:global align:8
+obj_shop_umb04_model = .data:0x003A15A0; // type:object size:0xC8 scope:global align:8
+obj_shop_umb04_modelT = .data:0x003A1668; // type:object size:0x8 scope:global align:8
+tol_umb_05_pal = .data:0x003A1680; // type:object size:0x20 scope:local align:32
+tol_umb_05_kasa_tex_txt = .data:0x003A16A0; // type:object size:0x200 scope:local align:32
+tol_umb_05_tuka_tex_txt = .data:0x003A18A0; // type:object size:0x200 scope:local align:32
+obj_shop_umb05_v = .data:0x003A1AA0; // type:object size:0x380 scope:global align:8
+obj_shop_umb05_model = .data:0x003A1E20; // type:object size:0xB0 scope:global align:8
+obj_shop_umb05_modelT = .data:0x003A1ED0; // type:object size:0x8 scope:global align:8
+obj_shop_umb_06_pal = .data:0x003A1EE0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_06_tuka1_tex_txt = .data:0x003A1F00; // type:object size:0x200 scope:global align:32
+obj_shop_umb_06_kasa1_tex_txt = .data:0x003A2100; // type:object size:0x200 scope:global align:32
+obj_shop_umb06_v = .data:0x003A2300; // type:object size:0x5E0 scope:global align:8
+obj_shop_umb06_model = .data:0x003A28E0; // type:object size:0xD8 scope:global align:8
+obj_shop_umb06_modelT = .data:0x003A29B8; // type:object size:0x8 scope:global align:8
+tol_umb07_pal = .data:0x003A29C0; // type:object size:0x20 scope:local align:32
+tol_umb07_kasa2_tex_txt = .data:0x003A29E0; // type:object size:0x100 scope:local align:32
+tol_umb07_kasa1_tex_txt = .data:0x003A2AE0; // type:object size:0x400 scope:local align:32
+tol_umb07_tuka_tex_txt = .data:0x003A2EE0; // type:object size:0x200 scope:local align:32
+obj_shop_umb07_v = .data:0x003A30E0; // type:object size:0x260 scope:global align:8
+obj_shop_umb07_modelT = .data:0x003A3340; // type:object size:0x8 scope:global align:8
+obj_shop_umb07_model = .data:0x003A3348; // type:object size:0xE0 scope:global align:8
+tol_umb08_pal = .data:0x003A3440; // type:object size:0x20 scope:local align:32
+tol_umb08_kasa1_tex_txt = .data:0x003A3460; // type:object size:0x200 scope:local align:32
+tol_umb08_kasa2_tex_txt = .data:0x003A3660; // type:object size:0x40 scope:local align:32
+tol_umb08_tuka_tex_txt = .data:0x003A36A0; // type:object size:0x200 scope:local align:32
+obj_shop_umb08_v = .data:0x003A38A0; // type:object size:0x390 scope:global align:8
+obj_shop_umb08_model = .data:0x003A3C30; // type:object size:0xD0 scope:global align:8
+obj_shop_umb08_modelT = .data:0x003A3D00; // type:object size:0x8 scope:global align:8
+tol_umb09_pal = .data:0x003A3D20; // type:object size:0x20 scope:local align:32
+tol_umb09_kasa1_tex_txt = .data:0x003A3D40; // type:object size:0x200 scope:local align:32
+tol_umb09_kasa2_tex_txt = .data:0x003A3F40; // type:object size:0x40 scope:local align:32
+tol_umb09_tuka_tex_txt = .data:0x003A3F80; // type:object size:0x200 scope:local align:32
+obj_shop_umb09_v = .data:0x003A4180; // type:object size:0x390 scope:global align:8
+obj_shop_umb09_model = .data:0x003A4510; // type:object size:0xD0 scope:global align:8
+obj_shop_umb09_modelT = .data:0x003A45E0; // type:object size:0x8 scope:global align:8
+tol_umb10_pal = .data:0x003A4600; // type:object size:0x20 scope:local align:32
+tol_umb10_kasa1_tex_txt = .data:0x003A4620; // type:object size:0x200 scope:local align:32
+tol_umb10_kasa2_tex_txt = .data:0x003A4820; // type:object size:0x40 scope:local align:32
+tol_umb10_tuka_tex_txt = .data:0x003A4860; // type:object size:0x200 scope:local align:32
+obj_shop_umb10_v = .data:0x003A4A60; // type:object size:0x390 scope:global align:8
+obj_shop_umb10_model = .data:0x003A4DF0; // type:object size:0xD0 scope:global align:8
+obj_shop_umb10_modelT = .data:0x003A4EC0; // type:object size:0x8 scope:global align:8
+tol_umb11_pal = .data:0x003A4EE0; // type:object size:0x20 scope:local align:32
+tol_umb11_kasa1_tex_txt = .data:0x003A4F00; // type:object size:0x200 scope:local align:32
+tol_umb11_kasa2_tex_txt = .data:0x003A5100; // type:object size:0x40 scope:local align:32
+tol_umb11_tuka_tex_txt = .data:0x003A5140; // type:object size:0x200 scope:local align:32
+obj_shop_umb11_v = .data:0x003A5340; // type:object size:0x390 scope:global align:8
+obj_shop_umb11_model = .data:0x003A56D0; // type:object size:0xD0 scope:global align:8
+obj_shop_umb11_modelT = .data:0x003A57A0; // type:object size:0x8 scope:global align:8
+tol_umb12_pal = .data:0x003A57C0; // type:object size:0x20 scope:local align:32
+tol_umb12_kasa1_tex_txt = .data:0x003A57E0; // type:object size:0x400 scope:local align:32
+tol_umb12_kasa2_tex_txt = .data:0x003A5BE0; // type:object size:0x40 scope:local align:32 data:string
+tol_umb12_tuka_tex_txt = .data:0x003A5C20; // type:object size:0x200 scope:local align:32
+obj_shop_umb12_v = .data:0x003A5E20; // type:object size:0x390 scope:global align:8
+obj_shop_umb12_model = .data:0x003A61B0; // type:object size:0xD0 scope:global align:8
+obj_shop_umb12_modelT = .data:0x003A6280; // type:object size:0x8 scope:global align:8
+tol_umb13_pal = .data:0x003A62A0; // type:object size:0x20 scope:local align:32
+tol_umb13_kasa1_tex_txt = .data:0x003A62C0; // type:object size:0x200 scope:local align:32
+tol_umb13_kasa2_tex_txt = .data:0x003A64C0; // type:object size:0x40 scope:local align:32
+tol_umb13_tuka_tex_txt = .data:0x003A6500; // type:object size:0x200 scope:local align:32
+obj_shop_umb13_v = .data:0x003A6700; // type:object size:0x390 scope:global align:8
+obj_shop_umb13_model = .data:0x003A6A90; // type:object size:0xD0 scope:global align:8
+obj_shop_umb13_modelT = .data:0x003A6B60; // type:object size:0x8 scope:global align:8
+tol_umb_14_pal = .data:0x003A6B80; // type:object size:0x20 scope:local align:32
+tol_umb_14_kasa_tex_txt = .data:0x003A6BA0; // type:object size:0x200 scope:local align:32
+tol_umb_14_tuka_tex_txt = .data:0x003A6DA0; // type:object size:0x200 scope:local align:32
+obj_shop_umb14_v = .data:0x003A6FA0; // type:object size:0x380 scope:global align:8
+obj_shop_umb14_model = .data:0x003A7320; // type:object size:0xB0 scope:global align:8
+obj_shop_umb14_modelT = .data:0x003A73D0; // type:object size:0x8 scope:global align:8
+obj_shop_umb_15_pal = .data:0x003A73E0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_15_kasa1_tex_txt = .data:0x003A7400; // type:object size:0x100 scope:global align:32
+obj_shop_umb_15_kasa2_tex_txt = .data:0x003A7500; // type:object size:0x200 scope:global align:32
+obj_shop_umb_15_tuka1_tex_txt = .data:0x003A7700; // type:object size:0x200 scope:global align:32
+obj_shop_umb15_v = .data:0x003A7900; // type:object size:0x3C0 scope:global align:8
+obj_shop_umb15_model = .data:0x003A7CC0; // type:object size:0xC0 scope:global align:8
+obj_shop_umb15_modelT = .data:0x003A7D80; // type:object size:0x8 scope:global align:8
+obj_shop_umb_16_pal = .data:0x003A7DA0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_16_kasa1_tex_txt = .data:0x003A7DC0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_16_tuka1_tex_txt = .data:0x003A7FC0; // type:object size:0x200 scope:global align:32
+obj_shop_umb16_v = .data:0x003A81C0; // type:object size:0x380 scope:global align:8
+obj_shop_umb16_model = .data:0x003A8540; // type:object size:0xB0 scope:global align:8
+obj_shop_umb16_modelT = .data:0x003A85F0; // type:object size:0x8 scope:global align:8
+obj_shop_umb_17_pal = .data:0x003A8600; // type:object size:0x20 scope:global align:32
+obj_shop_umb_17_tuka1_tex_txt = .data:0x003A8620; // type:object size:0x200 scope:global align:32
+obj_shop_umb_17_kasa1_tex_txt = .data:0x003A8820; // type:object size:0x200 scope:global align:32
+obj_shop_umb17_v = .data:0x003A8A20; // type:object size:0x4D0 scope:global align:8
+obj_shop_umb17_model = .data:0x003A8EF0; // type:object size:0xD8 scope:global align:8
+obj_shop_umb17_modelT = .data:0x003A8FC8; // type:object size:0x8 scope:global align:8
+tol_umb18_pal = .data:0x003A8FE0; // type:object size:0x20 scope:local align:32
+tol_umb18_kasa1_tex_txt = .data:0x003A9000; // type:object size:0x100 scope:local align:32
+tol_umb18_kasa2_tex_txt = .data:0x003A9100; // type:object size:0x80 scope:local align:32
+tol_umb18_tuka_tex_txt = .data:0x003A9180; // type:object size:0x200 scope:local align:32
+obj_shop_umb18_v = .data:0x003A9380; // type:object size:0x390 scope:global align:8
+obj_shop_umb18_model = .data:0x003A9710; // type:object size:0xD0 scope:global align:8
+obj_shop_umb18_modelT = .data:0x003A97E0; // type:object size:0x8 scope:global align:8
+obj_shop_umb_19_pal = .data:0x003A9800; // type:object size:0x20 scope:global align:32
+obj_shop_umb_19_e_tex_txt = .data:0x003A9820; // type:object size:0x80 scope:global align:32
+obj_shop_umb_19_kasa_tex_txt = .data:0x003A98A0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_19_tuka_tex_txt = .data:0x003A9AA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb19_v = .data:0x003A9CA0; // type:object size:0x400 scope:global align:8
+obj_shop_umb19_model = .data:0x003AA0A0; // type:object size:0xE0 scope:global align:8
+obj_shop_umb19_modelT = .data:0x003AA180; // type:object size:0x8 scope:global align:8
+obj_shop_umb_20_pal = .data:0x003AA1A0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_20_e_tex_txt = .data:0x003AA1C0; // type:object size:0x80 scope:global align:32
+obj_shop_umb_20_kasa_tex_txt = .data:0x003AA240; // type:object size:0x400 scope:global align:32
+obj_shop_umb20_v = .data:0x003AA640; // type:object size:0x270 scope:global align:8
+obj_shop_umb20_model = .data:0x003AA8B0; // type:object size:0xB8 scope:global align:8
+obj_shop_umb20_modelT = .data:0x003AA968; // type:object size:0x8 scope:global align:8
+obj_shop_umb_21_pal = .data:0x003AA980; // type:object size:0x20 scope:global align:32
+obj_shop_umb_21_kasa_tex_txt = .data:0x003AA9A0; // type:object size:0x400 scope:global align:32
+obj_shop_umb_21_tuka_tex_txt = .data:0x003AADA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb21_v = .data:0x003AAFA0; // type:object size:0x380 scope:global align:8
+obj_shop_umb21_model = .data:0x003AB320; // type:object size:0xC8 scope:global align:8
+obj_shop_umb21_modelT = .data:0x003AB3E8; // type:object size:0x8 scope:global align:8
+tol_umb_22_pal = .data:0x003AB400; // type:object size:0x20 scope:local align:32
+obj_shop_umb_22_pal = .data:0x003AB420; // type:object size:0x20 scope:global align:32
+obj_shop_umb_22_kasa_tex_txt = .data:0x003AB440; // type:object size:0x200 scope:global align:32
+obj_shop_umb_22_e_tex_txt = .data:0x003AB640; // type:object size:0x100 scope:global align:32
+obj_shop_umb22_v = .data:0x003AB740; // type:object size:0x480 scope:global align:8
+obj_shop_umb22_model = .data:0x003ABBC0; // type:object size:0xD8 scope:global align:8
+obj_shop_umb22_modelT = .data:0x003ABC98; // type:object size:0x8 scope:global align:8
+obj_shop_umb_23_pal = .data:0x003ABCA0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_23_kasa_tex_txt = .data:0x003ABCC0; // type:object size:0x400 scope:global align:32
+obj_shop_umb_23_e_tex_txt = .data:0x003AC0C0; // type:object size:0x80 scope:global align:32
+obj_shop_umb_23_tuka_tex_txt = .data:0x003AC140; // type:object size:0x200 scope:global align:32
+obj_shop_umb23_v = .data:0x003AC340; // type:object size:0x360 scope:global align:8
+obj_shop_umb23_model = .data:0x003AC6A0; // type:object size:0xC8 scope:global align:8
+obj_shop_umb23_modelT = .data:0x003AC768; // type:object size:0x8 scope:global align:8
+obj_shop_umb_24_pal = .data:0x003AC780; // type:object size:0x20 scope:global align:32
+obj_shop_umb_24_kasa1_tex_txt = .data:0x003AC7A0; // type:object size:0x200 scope:global align:32 data:string
+obj_shop_umb_24_kasa2_tex_txt = .data:0x003AC9A0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_24_tuka1_tex_txt = .data:0x003ACBA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb24_v = .data:0x003ACDA0; // type:object size:0x3C0 scope:global align:8
+obj_shop_umb24_model = .data:0x003AD160; // type:object size:0xC0 scope:global align:8
+obj_shop_umb24_modelT = .data:0x003AD220; // type:object size:0x8 scope:global align:8
+tol_umb_25_pal = .data:0x003AD240; // type:object size:0x20 scope:local align:32
+tol_umb_25_ya_tex_txt = .data:0x003AD260; // type:object size:0x200 scope:local align:32
+tol_umb_25_kasa_tex_txt = .data:0x003AD460; // type:object size:0x200 scope:local align:32
+obj_shop_umb25_v = .data:0x003AD660; // type:object size:0x350 scope:global align:8
+obj_shop_umb25_model = .data:0x003AD9B0; // type:object size:0xB0 scope:global align:8
+obj_shop_umb25_modelT = .data:0x003ADA60; // type:object size:0x8 scope:global align:8
+obj_shop_umb_26_pal = .data:0x003ADA80; // type:object size:0x20 scope:global align:32
+obj_shop_umb_26_kasa1_tex_txt = .data:0x003ADAA0; // type:object size:0x100 scope:global align:32
+obj_shop_umb_26_kasa2_tex_txt = .data:0x003ADBA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_26_tuka1_tex_txt = .data:0x003ADDA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb26_v = .data:0x003ADFA0; // type:object size:0x3C0 scope:global align:8
+obj_shop_umb26_model = .data:0x003AE360; // type:object size:0xD0 scope:global align:8
+obj_shop_umb26_modelT = .data:0x003AE430; // type:object size:0x8 scope:global align:8
+obj_shop_umb_27_pal = .data:0x003AE440; // type:object size:0x20 scope:global align:32
+obj_shop_umb_27_kasa1_tex_txt = .data:0x003AE460; // type:object size:0x200 scope:global align:32
+obj_shop_umb_27_kasa2_tex_txt = .data:0x003AE660; // type:object size:0x200 scope:global align:32
+obj_shop_umb_27_e_tex_txt = .data:0x003AE860; // type:object size:0x100 scope:global align:32
+obj_shop_umb27_v = .data:0x003AE960; // type:object size:0x480 scope:global align:8
+obj_shop_umb27_model = .data:0x003AEDE0; // type:object size:0xF8 scope:global align:8
+obj_shop_umb27_modelT = .data:0x003AEED8; // type:object size:0x8 scope:global align:8
+obj_shop_umb_28_pal = .data:0x003AEEE0; // type:object size:0x20 scope:global align:32
+obj_shop_umb_28_kasa_tex_txt = .data:0x003AEF00; // type:object size:0x200 scope:global align:32
+obj_shop_umb_28_tuka_tex_txt = .data:0x003AF100; // type:object size:0x200 scope:global align:32
+obj_shop_umb28_v = .data:0x003AF300; // type:object size:0x380 scope:global align:8
+obj_shop_umb28_model = .data:0x003AF680; // type:object size:0xB0 scope:global align:8
+obj_shop_umb28_modelT = .data:0x003AF730; // type:object size:0x8 scope:global align:8
+obj_shop_umb_29_pal = .data:0x003AF740; // type:object size:0x20 scope:global align:32
+obj_shop_umb_29_kasa1_tex_txt = .data:0x003AF760; // type:object size:0x200 scope:global align:32
+obj_shop_umb_29_tuka1_tex_txt = .data:0x003AF960; // type:object size:0x200 scope:global align:32
+obj_shop_umb29_v = .data:0x003AFB60; // type:object size:0x380 scope:global align:8
+obj_shop_umb29_model = .data:0x003AFEE0; // type:object size:0xB0 scope:global align:8
+obj_shop_umb29_modelT = .data:0x003AFF90; // type:object size:0x8 scope:global align:8
+obj_shop_umb_30_pal = .data:0x003AFFA0; // type:object size:0x20 scope:local align:32
+obj_shop_umb_30_kasa1_tex_txt = .data:0x003AFFC0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_30_tuka1_tex_txt = .data:0x003B01C0; // type:object size:0x200 scope:global align:32
+obj_shop_umb30_v = .data:0x003B03C0; // type:object size:0x380 scope:global align:8
+obj_shop_umb30_model = .data:0x003B0740; // type:object size:0xB8 scope:global align:8
+obj_shop_umb30_modelT = .data:0x003B07F8; // type:object size:0x8 scope:global align:8
+obj_shop_umb_31_pal = .data:0x003B0800; // type:object size:0x20 scope:global align:32
+obj_shop_umb_31_e_tex_txt = .data:0x003B0820; // type:object size:0x80 scope:global align:32
+obj_shop_umb_31_kasa_tex_txt = .data:0x003B08A0; // type:object size:0x200 scope:global align:32
+obj_shop_umb_31_tuka_tex_txt = .data:0x003B0AA0; // type:object size:0x200 scope:global align:32
+obj_shop_umb31_v = .data:0x003B0CA0; // type:object size:0x360 scope:global align:8
+obj_shop_umb31_model = .data:0x003B1000; // type:object size:0xD0 scope:global align:8
+obj_shop_umb31_modelT = .data:0x003B10D0; // type:object size:0x8 scope:global align:8
+obj_shop_umb_32_pal = .data:0x003B10E0; // type:object size:0x20 scope:local align:32
+obj_shop_umb_32_tuka1_tex_txt = .data:0x003B1100; // type:object size:0x200 scope:local align:32
+obj_shop_umb_32_kasa1_tex_txt = .data:0x003B1300; // type:object size:0x200 scope:local align:32
+obj_shop_umb32_v = .data:0x003B1500; // type:object size:0x380 scope:global align:8
+obj_shop_umb32_model = .data:0x003B1880; // type:object size:0xB0 scope:global align:8
+obj_shop_umb32_modelT = .data:0x003B1930; // type:object size:0x8 scope:global align:8
+tol_umb_w_tuka_pal = .data:0x003B1940; // type:object size:0x20 scope:local align:32
+tol_umb_w_tuka_tex_txt = .data:0x003B1960; // type:object size:0x200 scope:local align:32
+obj_shop_umb_w_v = .data:0x003B1B60; // type:object size:0x380 scope:global align:8
+obj_shop_umbmy_model = .data:0x003B1EE0; // type:object size:0xC0 scope:global align:8
+obj_kanban_pal = .data:0x003B1FA0; // type:object size:0x20 scope:global align:32
+hakushi_pal = .data:0x003B1FC0; // type:object size:0x20 scope:global align:32
+hakushi_tex = .data:0x003B1FE0; // type:object size:0x200 scope:global align:32
+obj_s_kanban_base_tex = .data:0x003B21E0; // type:object size:0x300 scope:global align:32
+obj_s_kanban_v = .data:0x003B24E0; // type:object size:0x80 scope:global align:8
+obj_w_kanban_base_tex = .data:0x003B2560; // type:object size:0x300 scope:global align:32
+obj_w_kanban_v = .data:0x003B2860; // type:object size:0x80 scope:global align:8
+write_model = .data:0x003B28E0; // type:object size:0x58 scope:global align:8
+obj_sign_s_model = .data:0x003B2938; // type:object size:0x58 scope:global align:8
+obj_sign_w_model = .data:0x003B2990; // type:object size:0x58 scope:global align:8
+obj_kanban_shadow_tex = .data:0x003B29E8; // type:object size:0x200 scope:global align:4
+obj_kanban_shadow_v = .data:0x003B2BE8; // type:object size:0x40 scope:global align:8
+obj_kanban_shadowT_model = .data:0x003B2C28; // type:object size:0x88 scope:global align:8
+kab_1_v = .data:0x003B2CB0; // type:object size:0x18C0 scope:global align:8
+head_kab_model = .data:0x003B4570; // type:object size:0x1E0 scope:global align:8
+mouth_kab_model = .data:0x003B4750; // type:object size:0x88 scope:global align:8
+Rarm2_kab_model = .data:0x003B47D8; // type:object size:0x88 scope:global align:8
+Rarm1_kab_model = .data:0x003B4860; // type:object size:0x78 scope:global align:8
+Larm2_kab_model = .data:0x003B48D8; // type:object size:0x88 scope:global align:8
+Larm1_kab_model = .data:0x003B4960; // type:object size:0x78 scope:global align:8
+chest_kab_model = .data:0x003B49D8; // type:object size:0xC8 scope:global align:8
+Rfoot2_kab_model = .data:0x003B4AA0; // type:object size:0xA8 scope:global align:8
+Rfoot1_kab_model = .data:0x003B4B48; // type:object size:0x80 scope:global align:8
+Lfoot2_kab_model = .data:0x003B4BC8; // type:object size:0x98 scope:global align:8
+Lfoot1_kab_model = .data:0x003B4C60; // type:object size:0x80 scope:global align:8
+base_kab_model = .data:0x003B4CE0; // type:object size:0x78 scope:global align:8
+cKF_je_r_kab_1_tbl = .data:0x003B4D58; // type:object size:0x138 scope:global align:4
+cKF_bs_r_kab_1 = .data:0x003B4E90; // type:object size:0x8 scope:global align:4
+kab_1_pal = .data:0x003B4EA0; // type:object size:0x20 scope:global align:32
+kab_1_eye1_TA_tex_txt = .data:0x003B4EC0; // type:object size:0x100 scope:global align:32
+kab_1_eye2_TA_tex_txt = .data:0x003B4FC0; // type:object size:0x100 scope:global align:32
+kab_1_eye3_TA_tex_txt = .data:0x003B50C0; // type:object size:0x100 scope:global align:32
+kab_1_eye4_TA_tex_txt = .data:0x003B51C0; // type:object size:0x100 scope:global align:32
+kab_1_eye5_TA_tex_txt = .data:0x003B52C0; // type:object size:0x100 scope:global align:32
+kab_1_eye6_TA_tex_txt = .data:0x003B53C0; // type:object size:0x100 scope:global align:32
+kab_1_eye7_TA_tex_txt = .data:0x003B54C0; // type:object size:0x100 scope:global align:32
+kab_1_eye8_TA_tex_txt = .data:0x003B55C0; // type:object size:0x100 scope:global align:32
+kab_1_tmem_txt = .data:0x003B56C0; // type:object size:0x400 scope:global align:32
+lat_atena_win_tex = .data:0x003B5AC0; // type:object size:0x200 scope:global align:32
+lat_atena_kageT_model = .data:0x003B5CC0; // type:object size:0x30 scope:global align:8
+lat_atena_winT_model = .data:0x003B5CF0; // type:object size:0x28 scope:global align:8
+lat_atena_mode = .data:0x003B5D18; // type:object size:0x30 scope:global align:8
+lat_atena_model = .data:0x003B5D48; // type:object size:0x18 scope:global align:8
+lat_mes_win_tex = .data:0x003B5D60; // type:object size:0x400 scope:global align:32
+lat_mes_v = .data:0x003B6160; // type:object size:0x40 scope:global align:8
+lat_mes_winT_model = .data:0x003B61A0; // type:object size:0x58 scope:global align:8
+tyo_win_icon2_pal = .data:0x003B6200; // type:object size:0x20 scope:global align:32
+tyo_win_nuno_tex_rgb_ci4_pal = .data:0x003B6220; // type:object size:0x20 scope:global align:32
+tyo_win_sw1_tex_rgb_ci4_pal = .data:0x003B6240; // type:object size:0x20 scope:global align:32
+tyo_win_sw2_tex_rgb_ci4_pal = .data:0x003B6260; // type:object size:0x20 scope:global align:32
+tyo_win_sw3_tex_rgb_ci4_pal = .data:0x003B6280; // type:object size:0x20 scope:global align:32
+fkm_win_fuki2_tex = .data:0x003B62A0; // type:object size:0x800 scope:local align:32
+tyo_win_balance_tex = .data:0x003B6AA0; // type:object size:0x200 scope:global align:32
+fri_win_bell_tex = .data:0x003B6CA0; // type:object size:0x100 scope:local align:32
+fri_win_cash_tex = .data:0x003B6DA0; // type:object size:0x200 scope:local align:32
+tyo_win_icon_tex = .data:0x003B6FA0; // type:object size:0x800 scope:global align:32
+fkm_win_w4_tex = .data:0x003B77A0; // type:object size:0x80 scope:local align:32
+fkm_win_w3_tex = .data:0x003B7820; // type:object size:0x200 scope:local align:32
+fkm_win_w2_tex = .data:0x003B7A20; // type:object size:0x200 scope:local align:32
+fkm_win_w1_tex = .data:0x003B7C20; // type:object size:0x400 scope:local align:32
+tyo_win_deposit_tex_rgb_ia8 = .data:0x003B8020; // type:object size:0x1000 scope:global align:32
+tyo_win_withdraw_tex = .data:0x003B9020; // type:object size:0x1000 scope:global align:32
+tyo_win_nuno_tex_rgb_ci4 = .data:0x003BA020; // type:object size:0x200 scope:global align:32
+tyo_win_sw1_tex_rgb_ci4 = .data:0x003BA220; // type:object size:0x400 scope:global align:32
+tyo_win_sw2_tex_rgb_ci4 = .data:0x003BA620; // type:object size:0x400 scope:global align:32
+tyo_win_sw3_tex_rgb_ci4 = .data:0x003BAA20; // type:object size:0x400 scope:global align:32
+tyo_win_v = .data:0x003BAE20; // type:object size:0x740 scope:global align:8
+tyo_win_fuki_model = .data:0x003BB560; // type:object size:0x38 scope:global align:8
+tyo_win_moji1_model = .data:0x003BB598; // type:object size:0x70 scope:global align:8
+tyo_win_w1T_model = .data:0x003BB608; // type:object size:0x30 scope:global align:8
+tyo_win_w2T_model = .data:0x003BB638; // type:object size:0x30 scope:global align:8
+tyo_win_w3T_model = .data:0x003BB668; // type:object size:0x30 scope:global align:8
+tyo_win_w4T_model = .data:0x003BB698; // type:object size:0x30 scope:global align:8
+tyo_win_w5T_model = .data:0x003BB6C8; // type:object size:0x30 scope:global align:8
+tyo_win_w6T_model = .data:0x003BB6F8; // type:object size:0x30 scope:global align:8
+tyo_win_w7T_model = .data:0x003BB728; // type:object size:0x30 scope:global align:8
+tyo_win_w8T_model = .data:0x003BB758; // type:object size:0x30 scope:global align:8
+tyo_win_w9T_model = .data:0x003BB788; // type:object size:0x30 scope:global align:8
+tyo_win_w10T_model = .data:0x003BB7B8; // type:object size:0x30 scope:global align:8
+tyo_win_wakuT_model = .data:0x003BB7E8; // type:object size:0xB0 scope:global align:8
+tyo_win_iconT_model = .data:0x003BB898; // type:object size:0x40 scope:global align:8
+tyo_win_moji2T_model = .data:0x003BB8D8; // type:object size:0x48 scope:global align:8
+tyo_win_moji3T_model = .data:0x003BB920; // type:object size:0x28 scope:global align:8
+tyo_win_mode = .data:0x003BB948; // type:object size:0x40 scope:global align:8
+tyo_win_model = .data:0x003BB988; // type:object size:0xB0 scope:global align:8
+brt_win_cake2_pal = .data:0x003BBA40; // type:object size:0x20 scope:global align:32
+brt_win_star_tex_rgb_ci4_pal = .data:0x003BBA60; // type:object size:0x20 scope:global align:32
+brt_win_sw1_tex_rgb_ci4_pal = .data:0x003BBA80; // type:object size:0x20 scope:global align:32
+brt_win_sw2_tex_rgb_ci4_pal = .data:0x003BBAA0; // type:object size:0x20 scope:global align:32
+brt_win_sw3_tex_rgb_ci4_pal = .data:0x003BBAC0; // type:object size:0x20 scope:global align:32
+brt_win_sw4_tex_rgb_ci4_pal = .data:0x003BBAE0; // type:object size:0x20 scope:global align:32
+brt_win_sw5_tex_rgb_ci4_pal = .data:0x003BBB00; // type:object size:0x20 scope:global align:32
+brt_win_sw6_tex_rgb_ci4_pal = .data:0x003BBB20; // type:object size:0x20 scope:global align:32
+brt_win_sw7_tex_rgb_ci4_pal = .data:0x003BBB40; // type:object size:0x20 scope:global align:32
+brt_win_cake2_tex = .data:0x003BBB60; // type:object size:0x800 scope:global align:32
+brt_win_ue1_tex = .data:0x003BC360; // type:object size:0x400 scope:global align:32
+brt_win_ue2_tex = .data:0x003BC760; // type:object size:0x400 scope:global align:32
+brt_win_ue3_tex = .data:0x003BCB60; // type:object size:0x200 scope:global align:32
+brt_win_ue4_tex = .data:0x003BCD60; // type:object size:0x400 scope:global align:32
+brt_win_ue5_tex = .data:0x003BD160; // type:object size:0x400 scope:global align:32
+mra_win_fuki_tex = .data:0x003BD560; // type:object size:0x800 scope:local align:32
+brt_win_star_tex_rgb_ci4 = .data:0x003BDD60; // type:object size:0x200 scope:global align:32
+brt_win_sw1_tex_rgb_ci4 = .data:0x003BDF60; // type:object size:0x400 scope:global align:32
+brt_win_sw2_tex_rgb_ci4 = .data:0x003BE360; // type:object size:0x400 scope:global align:32
+brt_win_sw3_tex_rgb_ci4 = .data:0x003BE760; // type:object size:0x400 scope:global align:32
+brt_win_sw4_tex_rgb_ci4 = .data:0x003BEB60; // type:object size:0x400 scope:global align:32
+brt_win_sw5_tex_rgb_ci4 = .data:0x003BEF60; // type:object size:0x400 scope:global align:32
+brt_win_sw6_tex_rgb_ci4 = .data:0x003BF360; // type:object size:0x400 scope:global align:32
+brt_win_sw7_tex_rgb_ci4 = .data:0x003BF760; // type:object size:0x400 scope:global align:32
+bir_win_v = .data:0x003BFB60; // type:object size:0x700 scope:global align:8
+brt_win_month_model = .data:0x003C0260; // type:object size:0x30 scope:global align:8
+brt_win_ueT_model = .data:0x003C0290; // type:object size:0xC8 scope:global align:8
+brt_win_fukiT_model = .data:0x003C0358; // type:object size:0x38 scope:global align:8
+brt_win_cakeT_model = .data:0x003C0390; // type:object size:0x40 scope:global align:8
+brt_win_sw1T_model = .data:0x003C03D0; // type:object size:0x30 scope:global align:8
+brt_win_sw2T_model = .data:0x003C0400; // type:object size:0x30 scope:global align:8
+brt_win_sw3T_model = .data:0x003C0430; // type:object size:0x30 scope:global align:8
+brt_win_sw4T_model = .data:0x003C0460; // type:object size:0x30 scope:global align:8
+brt_win_sw5T_model = .data:0x003C0490; // type:object size:0x30 scope:global align:8
+brt_win_sw6T_model = .data:0x003C04C0; // type:object size:0x30 scope:global align:8
+brt_win_sw7T_model = .data:0x003C04F0; // type:object size:0x30 scope:global align:8
+brt_win_sw8T_model = .data:0x003C0520; // type:object size:0x30 scope:global align:8
+brt_win_sw9T_model = .data:0x003C0550; // type:object size:0x30 scope:global align:8
+brt_win_sw10T_model = .data:0x003C0580; // type:object size:0x30 scope:global align:8
+brt_win_sw11T_model = .data:0x003C05B0; // type:object size:0x30 scope:global align:8
+brt_win_sw12T_model = .data:0x003C05E0; // type:object size:0x30 scope:global align:8
+brt_win_sw13T_model = .data:0x003C0610; // type:object size:0x30 scope:global align:8
+brt_win_sw14T_model = .data:0x003C0640; // type:object size:0x30 scope:global align:8
+birthday_win_mode = .data:0x003C0670; // type:object size:0x40 scope:global align:8
+birthday_win_model = .data:0x003C06B0; // type:object size:0xB8 scope:global align:8
+lat_fusen_TXT = .data:0x003C0780; // type:object size:0x80 scope:local align:32
+lat_hani_v = .data:0x003C0800; // type:object size:0x40 scope:global align:8
+lat_hani_senT_model = .data:0x003C0840; // type:object size:0x30 scope:global align:8
+lat_letter_mode = .data:0x003C0870; // type:object size:0x38 scope:global align:8
+lat_letter_sen_mode = .data:0x003C08A8; // type:object size:0x28 scope:global align:8
+lat_tegami_point_tex = .data:0x003C08D0; // type:object size:0x80 scope:global align:4
+lat_point_v = .data:0x003C0950; // type:object size:0x40 scope:global align:8
+lat_point_mT_model = .data:0x003C0990; // type:object size:0x78 scope:global align:8
+ctl_win_tagu3_tex = .data:0x003C0A20; // type:object size:0x200 scope:local align:32
+ctl_sentaku_v = .data:0x003C0C20; // type:object size:0x40 scope:global align:8
+ctl_sentaku_taguT_model = .data:0x003C0C60; // type:object size:0x48 scope:global align:8
+inv_mwin_nwaku_tex = .data:0x003C0CC0; // type:object size:0x400 scope:local align:32
+ctl_win_aw1_tex = .data:0x003C10C0; // type:object size:0x800 scope:global align:32
+ctl_win_aw2_tex = .data:0x003C18C0; // type:object size:0x400 scope:global align:32
+ctl_win_aw3_tex = .data:0x003C1CC0; // type:object size:0x800 scope:global align:32
+ctl_win_aw4_tex = .data:0x003C24C0; // type:object size:0x400 scope:global align:32
+ctl_win_aw5_tex = .data:0x003C28C0; // type:object size:0x400 scope:global align:32
+ctl_win_kage1_tex = .data:0x003C2CC0; // type:object size:0x200 scope:global align:32
+ctl_win_aw6_tex = .data:0x003C2EC0; // type:object size:0x400 scope:global align:32
+ctl_win_tagu2_tex = .data:0x003C32C0; // type:object size:0x200 scope:local align:32
+ctl_win_waku1_tex = .data:0x003C34C0; // type:object size:0x800 scope:local align:32
+ctl_win_waku2_tex = .data:0x003C3CC0; // type:object size:0x800 scope:local align:32
+ctl_win_aw8_tex = .data:0x003C44C0; // type:object size:0x100 scope:global align:32
+ctl_win_aw7_tex = .data:0x003C45C0; // type:object size:0x400 scope:global align:32
+ctl_win_kage2_tex = .data:0x003C49C0; // type:object size:0x200 scope:global align:32
+ctl_win_kage3_tex = .data:0x003C4BC0; // type:object size:0x200 scope:global align:32
+ctl_win_waku3_tex = .data:0x003C4DC0; // type:object size:0x800 scope:global align:32
+ctl_win_waku4_tex = .data:0x003C55C0; // type:object size:0x800 scope:global align:32
+ctl_win_nuno1_tex_rgb_ci4_pal = .data:0x003C5DC0; // type:object size:0x20 scope:global align:32
+ctl_win_nuno2_tex_rgb_ci4_pal = .data:0x003C5DE0; // type:object size:0x20 scope:global align:32
+ctl_win_nuno3_tex_rgb_ci4_pal = .data:0x003C5E00; // type:object size:0x20 scope:global align:32
+ctl_win_nuno4_tex_rgb_ci4_pal = .data:0x003C5E20; // type:object size:0x20 scope:global align:32
+ctl_win_nuno5_tex_rgb_ci4_pal = .data:0x003C5E40; // type:object size:0x20 scope:global align:32
+ctl_win_nuno6_tex_rgb_ci4_pal = .data:0x003C5E60; // type:object size:0x20 scope:global align:32
+ctl_win_nuno7_tex_rgb_ci4_pal = .data:0x003C5E80; // type:object size:0x20 scope:global align:32
+ctl_win_nuno8_tex_rgb_ci4_pal = .data:0x003C5EA0; // type:object size:0x20 scope:global align:32
+ctl_win_w8_tex_rgb_ci4_pal = .data:0x003C5EC0; // type:object size:0x20 scope:global align:32
+ctl_win_w1_tex_rgb_ci4_pal = .data:0x003C5EE0; // type:object size:0x20 scope:global align:32
+ctl_win_w2_tex_rgb_ci4_pal = .data:0x003C5F00; // type:object size:0x20 scope:global align:32
+ctl_win_w3_tex_rgb_ci4_pal = .data:0x003C5F20; // type:object size:0x20 scope:global align:32
+ctl_win_w4_tex_rgb_ci4_pal = .data:0x003C5F40; // type:object size:0x20 scope:global align:32
+ctl_win_w5_tex_rgb_ci4_pal = .data:0x003C5F60; // type:object size:0x20 scope:global align:32
+ctl_win_w6_tex_rgb_ci4_pal = .data:0x003C5F80; // type:object size:0x20 scope:global align:32
+ctl_win_w7_tex_rgb_ci4_pal = .data:0x003C5FA0; // type:object size:0x20 scope:global align:32
+ctl_win_nuno1_tex_rgb_ci4 = .data:0x003C5FC0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno2_tex_rgb_ci4 = .data:0x003C61C0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno3_tex_rgb_ci4 = .data:0x003C63C0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno4_tex_rgb_ci4 = .data:0x003C65C0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno5_tex_rgb_ci4 = .data:0x003C67C0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno6_tex_rgb_ci4 = .data:0x003C69C0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno7_tex_rgb_ci4 = .data:0x003C6BC0; // type:object size:0x200 scope:global align:32
+ctl_win_nuno8_tex_rgb_ci4 = .data:0x003C6DC0; // type:object size:0x200 scope:global align:32
+ctl_win_w8_tex_rgb_ci4 = .data:0x003C6FC0; // type:object size:0x80 scope:global align:32
+ctl_win_w1_tex_rgb_ci4 = .data:0x003C7040; // type:object size:0x400 scope:global align:32
+ctl_win_w2_tex_rgb_ci4 = .data:0x003C7440; // type:object size:0x200 scope:global align:32
+ctl_win_w3_tex_rgb_ci4 = .data:0x003C7640; // type:object size:0x400 scope:global align:32
+ctl_win_w4_tex_rgb_ci4 = .data:0x003C7A40; // type:object size:0x200 scope:global align:32
+ctl_win_w5_tex_rgb_ci4 = .data:0x003C7C40; // type:object size:0x200 scope:global align:32
+ctl_win_w6_tex_rgb_ci4 = .data:0x003C7E40; // type:object size:0x200 scope:global align:32
+ctl_win_w7_tex_rgb_ci4 = .data:0x003C8040; // type:object size:0x200 scope:global align:32
+ctl_win1_v = .data:0x003C8240; // type:object size:0xBA0 scope:global align:8
+ctl_win1_w13_model = .data:0x003C8DE0; // type:object size:0x38 scope:global align:8
+ctl_win1_ue1T_model = .data:0x003C8E18; // type:object size:0x40 scope:global align:8
+ctl_win1_ue2T_model = .data:0x003C8E58; // type:object size:0x190 scope:global align:8
+ctl_win1_nameT_model = .data:0x003C8FE8; // type:object size:0xB0 scope:global align:8
+ctl_win1_tagu1T_model = .data:0x003C9098; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu2T_model = .data:0x003C90D8; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu3T_model = .data:0x003C9118; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu4T_model = .data:0x003C9158; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu5T_model = .data:0x003C9198; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu6T_model = .data:0x003C91D8; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu7T_model = .data:0x003C9218; // type:object size:0x40 scope:global align:8
+ctl_win1_tagu8T_model = .data:0x003C9258; // type:object size:0x40 scope:global align:8
+ctl_win1_w1T_model = .data:0x003C9298; // type:object size:0x38 scope:global align:8
+ctl_win1_w2T_model = .data:0x003C92D0; // type:object size:0x38 scope:global align:8
+ctl_win1_w3T_model = .data:0x003C9308; // type:object size:0x38 scope:global align:8
+ctl_win1_w4T_model = .data:0x003C9340; // type:object size:0x38 scope:global align:8
+ctl_win1_w5T_model = .data:0x003C9378; // type:object size:0x38 scope:global align:8
+ctl_win1_w6T_model = .data:0x003C93B0; // type:object size:0x40 scope:global align:8
+ctl_win1_w7T_model = .data:0x003C93F0; // type:object size:0x38 scope:global align:8
+ctl_win1_w8T_model = .data:0x003C9428; // type:object size:0x38 scope:global align:8
+ctl_win1_w9T_model = .data:0x003C9460; // type:object size:0x38 scope:global align:8
+ctl_win1_w10T_model = .data:0x003C9498; // type:object size:0x38 scope:global align:8
+ctl_win1_w11T_model = .data:0x003C94D0; // type:object size:0x38 scope:global align:8
+ctl_win1_w12T_model = .data:0x003C9508; // type:object size:0x38 scope:global align:8
+ctl_win1_kageT_model = .data:0x003C9540; // type:object size:0xA0 scope:global align:8
+ctl_win_mode = .data:0x003C95E0; // type:object size:0x30 scope:global align:8
+ctl_tag_mode = .data:0x003C9610; // type:object size:0x30 scope:global align:8
+ctl_win_model = .data:0x003C9640; // type:object size:0xB8 scope:global align:8
+ctl_win8_color_mode = .data:0x003C96F8; // type:object size:0x48 scope:global align:8
+ctl_win7_color_mode = .data:0x003C9740; // type:object size:0x48 scope:global align:8
+ctl_win6_color_mode = .data:0x003C9788; // type:object size:0x48 scope:global align:8
+ctl_win5_color_mode = .data:0x003C97D0; // type:object size:0x48 scope:global align:8
+ctl_win4_color_mode = .data:0x003C9818; // type:object size:0x48 scope:global align:8
+ctl_win3_color_mode = .data:0x003C9860; // type:object size:0x48 scope:global align:8
+ctl_win2_color_mode = .data:0x003C98A8; // type:object size:0x48 scope:global align:8
+ctl_win1_color_mode = .data:0x003C98F0; // type:object size:0x48 scope:global align:8
+ctl_att_w1_tex = .data:0x003C9940; // type:object size:0x400 scope:global align:32
+ctl_att_w2_tex = .data:0x003C9D40; // type:object size:0x400 scope:global align:32
+ctl_att_w3_tex = .data:0x003CA140; // type:object size:0x400 scope:global align:32
+ctl_att_w4_tex = .data:0x003CA540; // type:object size:0x400 scope:global align:32
+ctl_att_w5_tex = .data:0x003CA940; // type:object size:0x400 scope:global align:32
+ctl_att_w6_tex = .data:0x003CAD40; // type:object size:0x80 scope:global align:32
+dia_att_v = .data:0x003CADC0; // type:object size:0x2F0 scope:global align:8
+dia_att_cursor_model = .data:0x003CB0B0; // type:object size:0x38 scope:global align:8
+dia_att_winT_model = .data:0x003CB0E8; // type:object size:0x100 scope:global align:8
+cal_win_choose_tex = .data:0x003CB200; // type:object size:0x400 scope:global align:32
+lat_sousa_2b1_tex = .data:0x003CB600; // type:object size:0x200 scope:local align:32
+cal_hyouji_yaji2_tex = .data:0x003CB800; // type:object size:0x400 scope:global align:32
+std_tex = .data:0x003CBC00; // type:object size:0x800 scope:local align:32
+cal_hyouji_st1_tex_rgb_ia8 = .data:0x003CC400; // type:object size:0x1000 scope:global align:32
+cal_hyouji_st5_tex_rgb_ia8 = .data:0x003CD400; // type:object size:0x1000 scope:global align:32
+lat_tegami_b3_tex = .data:0x003CE400; // type:object size:0x800 scope:local align:32
+cal_hyouji_2b1_tex_rgb_i4 = .data:0x003CEC00; // type:object size:0x200 scope:global align:32
+cal_hyouji_v = .data:0x003CEE00; // type:object size:0x1C0 scope:global align:8
+cal_hyouji_b2_model = .data:0x003CEFC0; // type:object size:0x58 scope:global align:8
+cal_hyouji_3DT_model = .data:0x003CF018; // type:object size:0x50 scope:global align:8
+cal_hyouji_shitaT_model = .data:0x003CF068; // type:object size:0x48 scope:global align:8
+cal_hyouji_amojiT_model = .data:0x003CF0B0; // type:object size:0x50 scope:global align:8
+cal_hyouji_stT_model = .data:0x003CF100; // type:object size:0x40 scope:global align:8
+cal_hyoji_yaji1T_model = .data:0x003CF140; // type:object size:0x48 scope:global align:8
+cal_hyoji_yajiA_gfx = .data:0x003CF188; // type:object size:0x10 scope:global align:8
+cal_hyoji_yajiB_gfx = .data:0x003CF198; // type:object size:0x10 scope:global align:8
+cal_win_pick_tex = .data:0x003CF1C0; // type:object size:0x500 scope:global align:32
+cal_win_view_tex = .data:0x003CF6C0; // type:object size:0x500 scope:global align:32
+lat_sousa_2b1_tex = .data:0x003CFBC0; // type:object size:0x200 scope:local align:32
+lat_sousa_b1_tex = .data:0x003CFDC0; // type:object size:0x800 scope:global align:32
+lat_tegami_b3_tex = .data:0x003D05C0; // type:object size:0x800 scope:local align:32
+cal_hyouji2_2b1_tex_rgb_i4 = .data:0x003D0DC0; // type:object size:0x200 scope:global align:32
+cal_hyouji2_v = .data:0x003D0FC0; // type:object size:0x1C0 scope:global align:8
+cal_hyouji2_bt_model = .data:0x003D1180; // type:object size:0x58 scope:global align:8
+cal_hyouji2_b2_model = .data:0x003D11D8; // type:object size:0x58 scope:global align:8
+cal_hyouji2_shitaT_model = .data:0x003D1230; // type:object size:0x50 scope:global align:8
+cal_hyouji2_bmojiT_model = .data:0x003D1280; // type:object size:0x50 scope:global align:8
+cal_hyouji2_amojiT_model = .data:0x003D12D0; // type:object size:0x50 scope:global align:8
+cal_win_cursor_tex = .data:0x003D1320; // type:object size:0x100 scope:global align:32
+cal_icon1_v = .data:0x003D1420; // type:object size:0x40 scope:global align:8
+cal_icon_cursor_model = .data:0x003D1460; // type:object size:0x48 scope:global align:8
+cal_win_mark_tex = .data:0x003D14C0; // type:object size:0x80 scope:global align:32
+cal_icon2_v = .data:0x003D1540; // type:object size:0x40 scope:global align:8
+cal_icon_mark_model = .data:0x003D1580; // type:object size:0x40 scope:global align:8
+cal_win_mark2_tex = .data:0x003D15C0; // type:object size:0x80 scope:global align:32
+cal_icon3_v = .data:0x003D1640; // type:object size:0xA0 scope:global align:8
+cal_icon_sakana_model = .data:0x003D16E0; // type:object size:0x48 scope:global align:8
+cal_icon_yajirushi_model = .data:0x003D1728; // type:object size:0x20 scope:global align:8
+cal_icon_yajirushi_gfx = .data:0x003D1748; // type:object size:0x18 scope:global align:8
+cal_icon_yajirushi_gfx2 = .data:0x003D1760; // type:object size:0x18 scope:global align:8
+cal_win_nen0_tex_rgb_i4 = .data:0x003D1780; // type:object size:0x80 scope:global align:32
+cal_win_nen1_tex_rgb_i4 = .data:0x003D1800; // type:object size:0x80 scope:global align:32
+cal_win_nen2_tex_rgb_i4 = .data:0x003D1880; // type:object size:0x80 scope:global align:32
+cal_win_nen3_tex_rgb_i4 = .data:0x003D1900; // type:object size:0x80 scope:global align:32
+cal_win_nen4_tex_rgb_i4 = .data:0x003D1980; // type:object size:0x80 scope:global align:32
+cal_win_nen5_tex_rgb_i4 = .data:0x003D1A00; // type:object size:0x80 scope:global align:32
+cal_win_nen6_tex_rgb_i4 = .data:0x003D1A80; // type:object size:0x80 scope:global align:32
+cal_win_nen7_tex_rgb_i4 = .data:0x003D1B00; // type:object size:0x80 scope:global align:32
+cal_win_nen8_tex_rgb_i4 = .data:0x003D1B80; // type:object size:0x80 scope:global align:32
+cal_win_nen9_tex_rgb_i4 = .data:0x003D1C00; // type:object size:0x80 scope:global align:32
+cal_nen_v = .data:0x003D1C80; // type:object size:0x100 scope:global align:8
+cal_win_nen_before = .data:0x003D1D80; // type:object size:0x28 scope:global align:8
+cal_win_nen1_model = .data:0x003D1DA8; // type:object size:0x18 scope:global align:8
+cal_win_nen2_model = .data:0x003D1DC0; // type:object size:0x18 scope:global align:8
+cal_win_nen3_model = .data:0x003D1DD8; // type:object size:0x18 scope:global align:8
+cal_win_nen4_model = .data:0x003D1DF0; // type:object size:0x18 scope:global align:8
+cal_win_tuki10_pal = .data:0x003D1E20; // type:object size:0x20 scope:global align:32
+cal_win_tuki11_pal = .data:0x003D1E40; // type:object size:0x20 scope:global align:32
+cal_win_tuki12_pal = .data:0x003D1E60; // type:object size:0x20 scope:global align:32
+cal_win_tuki2_pal = .data:0x003D1E80; // type:object size:0x20 scope:global align:32
+cal_win_tuki3_pal = .data:0x003D1EA0; // type:object size:0x20 scope:global align:32
+cal_win_tuki4_pal = .data:0x003D1EC0; // type:object size:0x20 scope:global align:32
+cal_win_tuki5_pal = .data:0x003D1EE0; // type:object size:0x20 scope:global align:32
+cal_win_tuki6_pal = .data:0x003D1F00; // type:object size:0x20 scope:global align:32
+cal_win_tuki7_pal = .data:0x003D1F20; // type:object size:0x20 scope:global align:32
+cal_win_tuki8_pal = .data:0x003D1F40; // type:object size:0x20 scope:global align:32
+cal_win_tuki9_pal = .data:0x003D1F60; // type:object size:0x20 scope:global align:32
+cal_win_tuki2_tex = .data:0x003D1F80; // type:object size:0x200 scope:global align:32
+cal_win_tuki1_pal = .data:0x003D2180; // type:object size:0x20 scope:global align:32
+cal_win_f1_tex = .data:0x003D21A0; // type:object size:0x400 scope:global align:32
+cal_win_f2_tex = .data:0x003D25A0; // type:object size:0x400 scope:global align:32
+cal_win_f3_tex = .data:0x003D29A0; // type:object size:0x100 scope:global align:32
+cal_win_f4_tex = .data:0x003D2AA0; // type:object size:0x400 scope:global align:32
+cal_win_event_tex = .data:0x003D2EA0; // type:object size:0x800 scope:global align:32
+cal_win_m_tex = .data:0x003D36A0; // type:object size:0x100 scope:global align:32
+cal_win_f_tex = .data:0x003D37A0; // type:object size:0x100 scope:global align:32
+cal_win_s_tex = .data:0x003D38A0; // type:object size:0x100 scope:global align:32
+cal_win_t_tex = .data:0x003D39A0; // type:object size:0x100 scope:global align:32
+cal_win_w_tex = .data:0x003D3AA0; // type:object size:0x100 scope:global align:32
+cal_win_tuki1_tex = .data:0x003D3BA0; // type:object size:0x200 scope:global align:32
+cal_win_april_tex_rgb_ia8 = .data:0x003D3DA0; // type:object size:0x1000 scope:global align:32
+cal_win_august_tex_rgb_ia8 = .data:0x003D4DA0; // type:object size:0x1000 scope:global align:32
+cal_win_december_tex_rgb_ia8 = .data:0x003D5DA0; // type:object size:0x1000 scope:global align:32
+cal_win_february_tex_rgb_ia8 = .data:0x003D6DA0; // type:object size:0x1000 scope:global align:32
+cal_win_january_tex_rgb_ia8 = .data:0x003D7DA0; // type:object size:0x1000 scope:global align:32
+cal_win_july_tex_rgb_ia8 = .data:0x003D8DA0; // type:object size:0x1000 scope:global align:32
+cal_win_june_tex_rgb_ia8 = .data:0x003D9DA0; // type:object size:0x1000 scope:global align:32
+cal_win_march_tex_rgb_ia8 = .data:0x003DADA0; // type:object size:0x1000 scope:global align:32
+cal_win_may_tex_rgb_ia8 = .data:0x003DBDA0; // type:object size:0x1000 scope:global align:32
+cal_win_november_tex_rgb_ia8 = .data:0x003DCDA0; // type:object size:0x1000 scope:global align:32
+cal_win_october_tex_rgb_ia8 = .data:0x003DDDA0; // type:object size:0x1000 scope:global align:32
+cal_win_september_tex_rgb_ia8 = .data:0x003DEDA0; // type:object size:0x1000 scope:global align:32
+cal_win_suuji10_tex_rgb_i4 = .data:0x003DFDA0; // type:object size:0x80 scope:global align:32
+cal_win_suuji11_tex_rgb_i4 = .data:0x003DFE20; // type:object size:0x80 scope:global align:32
+cal_win_suuji12_tex_rgb_i4 = .data:0x003DFEA0; // type:object size:0x80 scope:global align:32
+cal_win_suuji13_tex_rgb_i4 = .data:0x003DFF20; // type:object size:0x80 scope:global align:32
+cal_win_suuji14_tex_rgb_i4 = .data:0x003DFFA0; // type:object size:0x80 scope:global align:32
+cal_win_suuji15_tex_rgb_i4 = .data:0x003E0020; // type:object size:0x80 scope:global align:32
+cal_win_suuji16_tex_rgb_i4 = .data:0x003E00A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji17_tex_rgb_i4 = .data:0x003E0120; // type:object size:0x80 scope:global align:32
+cal_win_suuji18_tex_rgb_i4 = .data:0x003E01A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji19_tex_rgb_i4 = .data:0x003E0220; // type:object size:0x80 scope:global align:32
+cal_win_suuji1_tex_rgb_i4 = .data:0x003E02A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji20_tex_rgb_i4 = .data:0x003E0320; // type:object size:0x80 scope:global align:32
+cal_win_suuji21_tex_rgb_i4 = .data:0x003E03A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji22_tex_rgb_i4 = .data:0x003E0420; // type:object size:0x80 scope:global align:32
+cal_win_suuji23_tex_rgb_i4 = .data:0x003E04A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji24_tex_rgb_i4 = .data:0x003E0520; // type:object size:0x80 scope:global align:32
+cal_win_suuji25_tex_rgb_i4 = .data:0x003E05A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji26_tex_rgb_i4 = .data:0x003E0620; // type:object size:0x80 scope:global align:32
+cal_win_suuji27_tex_rgb_i4 = .data:0x003E06A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji28_tex_rgb_i4 = .data:0x003E0720; // type:object size:0x80 scope:global align:32
+cal_win_suuji29_tex_rgb_i4 = .data:0x003E07A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji2_tex_rgb_i4 = .data:0x003E0820; // type:object size:0x80 scope:global align:32
+cal_win_suuji30_tex_rgb_i4 = .data:0x003E08A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji31_tex_rgb_i4 = .data:0x003E0920; // type:object size:0x80 scope:global align:32
+cal_win_suuji3_tex_rgb_i4 = .data:0x003E09A0; // type:object size:0x80 scope:global align:32
+cal_win_suuji4_tex_rgb_i4 = .data:0x003E0A20; // type:object size:0x80 scope:global align:32
+cal_win_suuji5_tex_rgb_i4 = .data:0x003E0AA0; // type:object size:0x80 scope:global align:32
+cal_win_suuji6_tex_rgb_i4 = .data:0x003E0B20; // type:object size:0x80 scope:global align:32
+cal_win_suuji7_tex_rgb_i4 = .data:0x003E0BA0; // type:object size:0x80 scope:global align:32
+cal_win_suuji8_tex_rgb_i4 = .data:0x003E0C20; // type:object size:0x80 scope:global align:32
+cal_win_suuji9_tex_rgb_i4 = .data:0x003E0CA0; // type:object size:0x80 scope:global align:32
+cal_win_box2_tex_rgb_ia8 = .data:0x003E0D20; // type:object size:0x400 scope:global align:32
+cal_win_box_tex_rgb_ia8 = .data:0x003E1120; // type:object size:0x400 scope:global align:32
+cal_win_v = .data:0x003E1520; // type:object size:0xA40 scope:global align:8
+cal_win_tuki_model = .data:0x003E1F60; // type:object size:0xC0 scope:global align:8
+cal_win_shita_model = .data:0x003E2020; // type:object size:0x38 scope:global align:8
+cal_win_futi_model = .data:0x003E2058; // type:object size:0xD8 scope:global align:8
+cal_win_suuji_model = .data:0x003E2130; // type:object size:0x30 scope:global align:8
+cal_win_eventT_model = .data:0x003E2160; // type:object size:0x30 scope:global align:8
+cal_win_boxT_model = .data:0x003E2190; // type:object size:0x30 scope:global align:8
+cal_win_hijituT_model = .data:0x003E21C0; // type:object size:0xA0 scope:global align:8
+cal_win_doyouT_model = .data:0x003E2260; // type:object size:0x50 scope:global align:8
+cal_win_nitiyouT_model = .data:0x003E22B0; // type:object size:0x50 scope:global align:8
+cal_win_monthT_model = .data:0x003E2300; // type:object size:0x40 scope:global align:8
+cad_win_ws4_tex_rgb_ci4_pal = .data:0x003E2340; // type:object size:0x20 scope:global align:32
+cad_win_ws1_tex_rgb_ci4_pal = .data:0x003E2360; // type:object size:0x20 scope:global align:32
+cad_win_ws2_tex_rgb_ci4_pal = .data:0x003E2380; // type:object size:0x20 scope:global align:32
+cad_win_ws3_tex_rgb_ci4_pal = .data:0x003E23A0; // type:object size:0x20 scope:global align:32
+cad_win_nuno_tex_rgb_ci4_pal = .data:0x003E23C0; // type:object size:0x20 scope:global align:32
+cad_win_w1_tex = .data:0x003E23E0; // type:object size:0x800 scope:global align:32
+cad_win_w2_tex = .data:0x003E2BE0; // type:object size:0x400 scope:global align:32
+cad_win_w3_tex = .data:0x003E2FE0; // type:object size:0x400 scope:global align:32
+cad_win_w4_tex = .data:0x003E33E0; // type:object size:0x100 scope:global align:32
+inv_carde_waku_tex = .data:0x003E34E0; // type:object size:0x200 scope:global align:32
+cad_win_ws4_tex_rgb_ci4 = .data:0x003E36E0; // type:object size:0x80 scope:global align:32
+cad_win_ws1_tex_rgb_ci4 = .data:0x003E3760; // type:object size:0x400 scope:global align:32
+cad_win_ws2_tex_rgb_ci4 = .data:0x003E3B60; // type:object size:0x200 scope:global align:32
+cad_win_ws3_tex_rgb_ci4 = .data:0x003E3D60; // type:object size:0x200 scope:global align:32
+cad_win_nuno_tex_rgb_ci4 = .data:0x003E3F60; // type:object size:0x200 scope:global align:32
+cad_win_v = .data:0x003E4160; // type:object size:0x500 scope:global align:8
+cad_win_w9_model = .data:0x003E4660; // type:object size:0x30 scope:global align:8
+cad_win_mb_model = .data:0x003E4690; // type:object size:0x38 scope:global align:8
+cad_win_f_model = .data:0x003E46C8; // type:object size:0x38 scope:global align:8
+cad_win_w1T_model = .data:0x003E4700; // type:object size:0x30 scope:global align:8
+cad_win_w2T_model = .data:0x003E4730; // type:object size:0x30 scope:global align:8
+cad_win_w3T_model = .data:0x003E4760; // type:object size:0x30 scope:global align:8
+cad_win_w4T_model = .data:0x003E4790; // type:object size:0x30 scope:global align:8
+cad_win_w5T_model = .data:0x003E47C0; // type:object size:0x30 scope:global align:8
+cad_win_w6T_model = .data:0x003E47F0; // type:object size:0x30 scope:global align:8
+cad_win_w7T_model = .data:0x003E4820; // type:object size:0x30 scope:global align:8
+cad_win_w8T_model = .data:0x003E4850; // type:object size:0x30 scope:global align:8
+cad_win_ueT_model = .data:0x003E4880; // type:object size:0xB0 scope:global align:8
+cad_win_mode = .data:0x003E4930; // type:object size:0x40 scope:global align:8
+cad_win_model = .data:0x003E4970; // type:object size:0x78 scope:global align:8
+clg_floor2_v = .data:0x003E4A00; // type:object size:0x240 scope:global align:32
+mCL_rom_myhome1_floor_model = .data:0x003E4C40; // type:object size:0xE8 scope:global align:8
+clg_win_star_tex = .data:0x003E4D40; // type:object size:0x80 scope:global align:32
+clg_hoshi_v = .data:0x003E4DC0; // type:object size:0x40 scope:global align:8
+clg_win_hoshiT_model = .data:0x003E4E00; // type:object size:0x48 scope:global align:8
+clg_win_top_tex = .data:0x003E4E60; // type:object size:0x200 scope:global align:32
+clg_win_bottom_tex = .data:0x003E5060; // type:object size:0x400 scope:global align:32
+cat_c_tex = .data:0x003E5460; // type:object size:0x400 scope:global align:32
+yaji = .data:0x003E5860; // type:object size:0x80 scope:local align:32
+clg_hyouji_v = .data:0x003E58E0; // type:object size:0x140 scope:global align:8
+clg_win_cbT_model = .data:0x003E5A20; // type:object size:0xD0 scope:global align:8
+mCL_lat_letter_mode = .data:0x003E5AF0; // type:object size:0x38 scope:global align:8
+mCL_lat_letter_sen_mode = .data:0x003E5B28; // type:object size:0x28 scope:global align:8
+clg_music_pal = .data:0x003E5B50; // type:object size:0x20 scope:global align:4
+clg_music_tex = .data:0x003E5B70; // type:object size:0x200 scope:global align:4
+clg_music_v = .data:0x003E5D70; // type:object size:0x40 scope:global align:8
+mCL_music_model = .data:0x003E5DB0; // type:object size:0xA0 scope:global align:8
+dlt_win_yajirushi_tex = .data:0x003E5E60; // type:object size:0x80 scope:global align:32
+clg_shirushi_v = .data:0x003E5EE0; // type:object size:0x40 scope:global align:8
+clg_win_shirushi1T_model = .data:0x003E5F20; // type:object size:0x40 scope:global align:8
+ctl_win_tagu2_tex = .data:0x003E5F60; // type:object size:0x200 scope:local align:32
+clg_win_ha2_tex = .data:0x003E6160; // type:object size:0x80 scope:global align:32
+clg_win_jyuutan2_tex = .data:0x003E61E0; // type:object size:0x80 scope:global align:32
+clg_win_kabe2_tex = .data:0x003E6260; // type:object size:0x80 scope:global align:32
+clg_win_fuku2_tex = .data:0x003E62E0; // type:object size:0x80 scope:global align:32
+clg_win_hone2_tex = .data:0x003E6360; // type:object size:0x80 scope:global align:32
+clg_win_tegami2_tex = .data:0x003E63E0; // type:object size:0x80 scope:global align:32
+clg_win_onpu2_tex = .data:0x003E6460; // type:object size:0x80 scope:global align:32
+clg_win_hani2_tex = .data:0x003E64E0; // type:object size:0x80 scope:global align:32
+clg_win_kasa2_tex = .data:0x003E6560; // type:object size:0x80 scope:global align:32
+clg_tagu_v = .data:0x003E65E0; // type:object size:0x480 scope:global align:8
+clg_tag_win_mode = .data:0x003E6A60; // type:object size:0x30 scope:global align:8
+clg_tag_picture_mode = .data:0x003E6A90; // type:object size:0x20 scope:global align:8
+clg_win_haT_model = .data:0x003E6AB0; // type:object size:0x18 scope:global align:8
+clg_win_kabeT_model = .data:0x003E6AC8; // type:object size:0x18 scope:global align:8
+clg_win_jyuutanT_model = .data:0x003E6AE0; // type:object size:0x18 scope:global align:8
+clg_win_fukuT_model = .data:0x003E6AF8; // type:object size:0x18 scope:global align:8
+clg_win_kasaT_model = .data:0x003E6B10; // type:object size:0x18 scope:global align:8
+clg_win_tegamiT_model = .data:0x003E6B28; // type:object size:0x18 scope:global align:8
+clg_win_haniwaT_model = .data:0x003E6B40; // type:object size:0x18 scope:global align:8
+clg_win_honeT_model = .data:0x003E6B58; // type:object size:0x18 scope:global align:8
+clg_win_onpuT_model = .data:0x003E6B70; // type:object size:0x18 scope:global align:8
+clg_win_ha2T_model = .data:0x003E6B88; // type:object size:0x28 scope:global align:8
+clg_win_kabe2T_model = .data:0x003E6BB0; // type:object size:0x28 scope:global align:8
+clg_win_jyuutan2T_model = .data:0x003E6BD8; // type:object size:0x28 scope:global align:8
+clg_win_fuku2T_model = .data:0x003E6C00; // type:object size:0x28 scope:global align:8
+clg_win_kasa2T_model = .data:0x003E6C28; // type:object size:0x28 scope:global align:8
+clg_win_tegami2T_model = .data:0x003E6C50; // type:object size:0x28 scope:global align:8
+clg_win_haniwa2T_model = .data:0x003E6C78; // type:object size:0x28 scope:global align:8
+clg_win_hone2T_model = .data:0x003E6CA0; // type:object size:0x28 scope:global align:8
+clg_win_onpu2T_model = .data:0x003E6CC8; // type:object size:0x28 scope:global align:8
+mCL_rom_myhome1_wall_v = .data:0x003E6CF0; // type:object size:0x100 scope:global align:8
+mCL_rom_myhome1_wall_model = .data:0x003E6DF0; // type:object size:0x80 scope:global align:8
+clg_win_kabe_tex_rgb_ci4_pal = .data:0x003E6E80; // type:object size:0x20 scope:global align:32
+clg_win_kabe_tex_rgb_ci4 = .data:0x003E6EA0; // type:object size:0x200 scope:global align:32
+clg_win_jyuutan_tex_rgb_ci4_pal = .data:0x003E70A0; // type:object size:0x20 scope:global align:32
+clg_win_jyuutan_tex_rgb_ci4 = .data:0x003E70C0; // type:object size:0x200 scope:global align:32
+clg_win_fuku_tex_rgb_ci4_pal = .data:0x003E72C0; // type:object size:0x20 scope:global align:32
+clg_win_fuku_tex_rgb_ci4 = .data:0x003E72E0; // type:object size:0x200 scope:global align:32
+clg_win_kasa_tex_rgb_ci4_pal = .data:0x003E74E0; // type:object size:0x20 scope:global align:32
+clg_win_kasa_tex_rgb_ci4 = .data:0x003E7500; // type:object size:0x200 scope:global align:32
+clg_win_tegami_tex_rgb_ci4_pal = .data:0x003E7700; // type:object size:0x20 scope:global align:32
+clg_win_tegami_tex_rgb_ci4 = .data:0x003E7720; // type:object size:0x200 scope:global align:32
+clg_win_hani_tex_rgb_ci4_pal = .data:0x003E7920; // type:object size:0x20 scope:global align:32
+clg_win_hani_tex_rgb_ci4 = .data:0x003E7940; // type:object size:0x200 scope:global align:32
+clg_win_hone_tex_rgb_ci4_pal = .data:0x003E7B40; // type:object size:0x20 scope:global align:32
+clg_win_hone_tex_rgb_ci4 = .data:0x003E7B60; // type:object size:0x200 scope:global align:32
+clg_win_onpu_tex_rgb_ci4_pal = .data:0x003E7D60; // type:object size:0x20 scope:global align:32
+clg_win_onpu_tex_rgb_ci4 = .data:0x003E7D80; // type:object size:0x200 scope:global align:32
+clg_win_waku8_tex_rgb_ci4_pal = .data:0x003E7F80; // type:object size:0x20 scope:global align:32
+clg_win_waku1_tex_rgb_ci4_pal = .data:0x003E7FA0; // type:object size:0x20 scope:global align:32
+clg_win_waku2_tex_rgb_ci4_pal = .data:0x003E7FC0; // type:object size:0x20 scope:global align:32
+clg_win_waku3_tex_rgb_ci4_pal = .data:0x003E7FE0; // type:object size:0x20 scope:global align:32
+clg_win_waku4_tex_rgb_ci4_pal = .data:0x003E8000; // type:object size:0x20 scope:global align:32
+clg_win_waku5_tex_rgb_ci4_pal = .data:0x003E8020; // type:object size:0x20 scope:global align:32
+clg_win_waku6_tex_rgb_ci4_pal = .data:0x003E8040; // type:object size:0x20 scope:global align:32
+clg_win_waku7_tex_rgb_ci4_pal = .data:0x003E8060; // type:object size:0x20 scope:global align:32
+clg_win_ha_tex_rgb_ci4_pal = .data:0x003E8080; // type:object size:0x20 scope:global align:32
+inv_mwin_3Dma_tex = .data:0x003E80A0; // type:object size:0x800 scope:local align:32
+fri_win_bell_tex = .data:0x003E88A0; // type:object size:0x100 scope:local align:32
+clg_win_ran_tex = .data:0x003E89A0; // type:object size:0x400 scope:global align:32
+clg_win_w1_tex = .data:0x003E8DA0; // type:object size:0x800 scope:global align:32
+clg_win_w2_tex = .data:0x003E95A0; // type:object size:0x800 scope:global align:32
+clg_win_w3_tex = .data:0x003E9DA0; // type:object size:0x800 scope:global align:32
+clg_win_w4_tex = .data:0x003EA5A0; // type:object size:0x800 scope:global align:32
+dlt_win_aw5_tex = .data:0x003EADA0; // type:object size:0x100 scope:global align:32
+clk_win_sen_tex = .data:0x003EAEA0; // type:object size:0x80 scope:global align:32
+clg_win_w5_tex = .data:0x003EAF20; // type:object size:0x800 scope:global align:32
+clg_win_w6_tex = .data:0x003EB720; // type:object size:0x800 scope:global align:32
+clg_win_w7_tex = .data:0x003EBF20; // type:object size:0x800 scope:global align:32
+clg_win_waku8_tex_rgb_ci4 = .data:0x003EC720; // type:object size:0x200 scope:global align:32
+clg_win_waku1_tex_rgb_ci4 = .data:0x003EC920; // type:object size:0x400 scope:global align:32
+clg_win_waku2_tex_rgb_ci4 = .data:0x003ECD20; // type:object size:0x400 scope:global align:32
+clg_win_waku3_tex_rgb_ci4 = .data:0x003ED120; // type:object size:0x400 scope:global align:32
+clg_win_waku4_tex_rgb_ci4 = .data:0x003ED520; // type:object size:0x400 scope:global align:32
+clg_win_waku5_tex_rgb_ci4 = .data:0x003ED920; // type:object size:0x400 scope:global align:32
+clg_win_waku6_tex_rgb_ci4 = .data:0x003EDD20; // type:object size:0x400 scope:global align:32
+clg_win_waku7_tex_rgb_ci4 = .data:0x003EE120; // type:object size:0x400 scope:global align:32
+clg_win_ha_tex_rgb_ci4 = .data:0x003EE520; // type:object size:0x200 scope:global align:32
+clg_win1_v = .data:0x003EE720; // type:object size:0xAD0 scope:global align:8
+clg_win_sen_model = .data:0x003EF1F0; // type:object size:0x20 scope:global align:8
+clg_win_waku13_model = .data:0x003EF210; // type:object size:0x38 scope:global align:8
+clg_win_ueT_model = .data:0x003EF248; // type:object size:0x128 scope:global align:8
+clg_win_ue2T_model = .data:0x003EF370; // type:object size:0x40 scope:global align:8
+clg_win_na1T_model = .data:0x003EF3B0; // type:object size:0x20 scope:global align:8
+clg_win_na2T_model = .data:0x003EF3D0; // type:object size:0x18 scope:global align:8
+clg_win_na3T_model = .data:0x003EF3E8; // type:object size:0x18 scope:global align:8
+clg_win_na4T_model = .data:0x003EF400; // type:object size:0x18 scope:global align:8
+clg_win_na5T_model = .data:0x003EF418; // type:object size:0x18 scope:global align:8
+clg_win_na6T_model = .data:0x003EF430; // type:object size:0x18 scope:global align:8
+clg_win_na7T_model = .data:0x003EF448; // type:object size:0x18 scope:global align:8
+clg_win_3dT_model = .data:0x003EF460; // type:object size:0x30 scope:global align:8
+clg_win_beruT_model = .data:0x003EF490; // type:object size:0x40 scope:global align:8
+clg_win_shikiriT_model = .data:0x003EF4D0; // type:object size:0x30 scope:global align:8
+clg_win_waku1T_model = .data:0x003EF500; // type:object size:0x30 scope:global align:8
+clg_win_waku2T_model = .data:0x003EF530; // type:object size:0x30 scope:global align:8
+clg_win_waku3T_model = .data:0x003EF560; // type:object size:0x30 scope:global align:8
+clg_win_waku4T_model = .data:0x003EF590; // type:object size:0x30 scope:global align:8
+clg_win_waku5T_model = .data:0x003EF5C0; // type:object size:0x30 scope:global align:8
+clg_win_waku6T_model = .data:0x003EF5F0; // type:object size:0x30 scope:global align:8
+clg_win_waku7T_model = .data:0x003EF620; // type:object size:0x30 scope:global align:8
+clg_win_waku8T_model = .data:0x003EF650; // type:object size:0x30 scope:global align:8
+clg_win_waku9T_model = .data:0x003EF680; // type:object size:0x30 scope:global align:8
+clg_win_waku10T_model = .data:0x003EF6B0; // type:object size:0x30 scope:global align:8
+clg_win_waku11T_model = .data:0x003EF6E0; // type:object size:0x30 scope:global align:8
+clg_win_waku12T_model = .data:0x003EF710; // type:object size:0x30 scope:global align:8
+clg_mwin_mode = .data:0x003EF740; // type:object size:0x28 scope:global align:8
+clg_name_mode = .data:0x003EF768; // type:object size:0x30 scope:global align:8
+clg_mwin1_model = .data:0x003EF798; // type:object size:0xA8 scope:global align:8
+clg_mwin2_model = .data:0x003EF840; // type:object size:0x40 scope:global align:8
+inv_mb_v = .data:0x003EF880; // type:object size:0x80 scope:global align:8
+inv_md_base_model_before = .data:0x003EF900; // type:object size:0x40 scope:global align:8
+inv_md_base_model_a = .data:0x003EF940; // type:object size:0x18 scope:global align:8
+inv_md_base_model_b = .data:0x003EF958; // type:object size:0x18 scope:global align:8
+sav_nuki_tex = .data:0x003EF980; // type:object size:0x200 scope:global align:32
+sav_v = .data:0x003EFB80; // type:object size:0x40 scope:global align:8
+sav_mb_model = .data:0x003EFBC0; // type:object size:0x48 scope:global align:8
+ctl_win_tagu3_tex = .data:0x003EFC20; // type:object size:0x200 scope:local align:32
+sav_sentaku_v = .data:0x003EFE20; // type:object size:0x40 scope:global align:8
+sav_sentaku_taguT_model = .data:0x003EFE60; // type:object size:0x38 scope:global align:8
+sav_win_w6_tex_rgb_ci4_pal = .data:0x003EFEA0; // type:object size:0x20 scope:global align:32
+sav_win_w1_tex_rgb_ci4_pal = .data:0x003EFEC0; // type:object size:0x20 scope:global align:32
+sav_win_w2_tex_rgb_ci4_pal = .data:0x003EFEE0; // type:object size:0x20 scope:global align:32
+sav_win_w3_tex_rgb_ci4_pal = .data:0x003EFF00; // type:object size:0x20 scope:global align:32
+sav_win_w4_tex_rgb_ci4_pal = .data:0x003EFF20; // type:object size:0x20 scope:global align:32
+sav_win_w5_tex_rgb_ci4_pal = .data:0x003EFF40; // type:object size:0x20 scope:global align:32
+inv_original_futa2_tex = .data:0x003EFF60; // type:object size:0x200 scope:local align:32
+sav_win1_aw1_tex = .data:0x003F0160; // type:object size:0x800 scope:global align:32
+sav_win1_aw6_tex = .data:0x003F0960; // type:object size:0x100 scope:global align:32
+sav_win_waku_tex = .data:0x003F0A60; // type:object size:0x200 scope:local align:32
+sav_win1_aw2_tex = .data:0x003F0C60; // type:object size:0x800 scope:global align:32
+sav_win1_aw3_tex = .data:0x003F1460; // type:object size:0x800 scope:global align:32
+sav_win1_aw4_tex = .data:0x003F1C60; // type:object size:0x800 scope:global align:32
+sav_win1_aw5_tex = .data:0x003F2460; // type:object size:0x800 scope:global align:32
+ctl_win_tagu2_tex = .data:0x003F2C60; // type:object size:0x200 scope:local align:32
+ctl_win_waku1_tex = .data:0x003F2E60; // type:object size:0x800 scope:local align:32
+ctl_win_waku2_tex = .data:0x003F3660; // type:object size:0x800 scope:local align:32
+sav_win_1_kage1_tex = .data:0x003F3E60; // type:object size:0x200 scope:global align:32
+sav_win_1_kage2_tex = .data:0x003F4060; // type:object size:0x400 scope:global align:32
+sav_win1_nuno_tex_rgb_ci4 = .data:0x003F4460; // type:object size:0x200 scope:global align:32
+sav_win_w6_tex_rgb_ci4 = .data:0x003F4660; // type:object size:0x80 scope:global align:32
+sav_win_w1_tex_rgb_ci4 = .data:0x003F46E0; // type:object size:0x400 scope:global align:32
+sav_win_w2_tex_rgb_ci4 = .data:0x003F4AE0; // type:object size:0x400 scope:global align:32
+sav_win_w3_tex_rgb_ci4 = .data:0x003F4EE0; // type:object size:0x400 scope:global align:32
+sav_win_w4_tex_rgb_ci4 = .data:0x003F52E0; // type:object size:0x400 scope:global align:32
+sav_win_w5_tex_rgb_ci4 = .data:0x003F56E0; // type:object size:0x400 scope:global align:32
+sav_win1_v = .data:0x003F5AE0; // type:object size:0x1180 scope:global align:8
+sav_win1_w9_model = .data:0x003F6C60; // type:object size:0x38 scope:global align:8
+sav_win1_kage_model = .data:0x003F6C98; // type:object size:0x68 scope:global align:8
+sav_win1_waku_model = .data:0x003F6D00; // type:object size:0x88 scope:global align:8
+sav_win1_f_model = .data:0x003F6D88; // type:object size:0x88 scope:global align:8
+sav_win1_w1T_model = .data:0x003F6E10; // type:object size:0x38 scope:global align:8
+sav_win1_w2T_model = .data:0x003F6E48; // type:object size:0x38 scope:global align:8
+sav_win1_w3T_model = .data:0x003F6E80; // type:object size:0x38 scope:global align:8
+sav_win1_w4T_model = .data:0x003F6EB8; // type:object size:0x38 scope:global align:8
+sav_win1_w5T_model = .data:0x003F6EF0; // type:object size:0x38 scope:global align:8
+sav_win1_w6T_model = .data:0x003F6F28; // type:object size:0x38 scope:global align:8
+sav_win1_w7T_model = .data:0x003F6F60; // type:object size:0x38 scope:global align:8
+sav_win1_w8T_model = .data:0x003F6F98; // type:object size:0x38 scope:global align:8
+sav_win1_taguT_model = .data:0x003F6FD0; // type:object size:0x40 scope:global align:8
+sav_win1_ueT_model = .data:0x003F7010; // type:object size:0x158 scope:global align:8
+sav_win1_nameT_model2 = .data:0x003F7168; // type:object size:0x60 scope:global align:8
+save_win1_w_before_model = .data:0x003F71C8; // type:object size:0x38 scope:global align:8
+save_win1_w_all_model = .data:0x003F7200; // type:object size:0x50 scope:global align:8
+sav_win1_nuno_tex_rgb_ci4_pal = .data:0x003F7260; // type:object size:0x20 scope:global align:32
+sav_win2_nuno_tex_rgb_ci4_pal = .data:0x003F7280; // type:object size:0x20 scope:global align:32
+sav_win3_nuno_tex_rgb_ci4_pal = .data:0x003F72A0; // type:object size:0x20 scope:global align:32
+sav_win4_nuno_tex_rgb_ci4_pal = .data:0x003F72C0; // type:object size:0x20 scope:global align:32
+sav_win5_nuno_tex_rgb_ci4_pal = .data:0x003F72E0; // type:object size:0x20 scope:global align:32
+sav_win6_nuno_tex_rgb_ci4_pal = .data:0x003F7300; // type:object size:0x20 scope:global align:32
+sav_win7_nuno_tex_rgb_ci4_pal = .data:0x003F7320; // type:object size:0x20 scope:global align:32
+sav_win8_nuno_tex_rgb_ci4_pal = .data:0x003F7340; // type:object size:0x20 scope:global align:32
+des_cursor_undo_tex = .data:0x003F7360; // type:object size:0x200 scope:global align:32
+des_cursor_sp_tex = .data:0x003F7560; // type:object size:0x400 scope:global align:32
+des_cursor_sen_tex = .data:0x003F7960; // type:object size:0x400 scope:global align:32
+des_cursor_pen_tex = .data:0x003F7D60; // type:object size:0x400 scope:global align:32
+des_cursor_nuri_tex = .data:0x003F8160; // type:object size:0x400 scope:global align:32
+des_cursor_mark1_tex = .data:0x003F8560; // type:object size:0x100 scope:global align:32
+des_cursor_mark2_tex = .data:0x003F8660; // type:object size:0x100 scope:global align:32
+des_cursor_mark3_tex = .data:0x003F8760; // type:object size:0x80 scope:global align:32
+des_cursor_mark4_tex = .data:0x003F87E0; // type:object size:0x80 scope:global align:32
+des_cursor_waku_tex = .data:0x003F8860; // type:object size:0x400 scope:global align:32
+des_cursor_v = .data:0x003F8C60; // type:object size:0x2C0 scope:global align:8
+des_cursor_mark1_model = .data:0x003F8F20; // type:object size:0x48 scope:global align:8
+des_cursor_mark2_model = .data:0x003F8F68; // type:object size:0x48 scope:global align:8
+des_cursor_mark3_model = .data:0x003F8FB0; // type:object size:0x48 scope:global align:8
+des_cursor_mark4_model = .data:0x003F8FF8; // type:object size:0x48 scope:global align:8
+des_cursor_undo_model = .data:0x003F9040; // type:object size:0x48 scope:global align:8
+des_cursor_penT_model = .data:0x003F9088; // type:object size:0x50 scope:global align:8
+des_cursor_nuriT_model = .data:0x003F90D8; // type:object size:0x50 scope:global align:8
+des_cursor_waku1T_model = .data:0x003F9128; // type:object size:0x50 scope:global align:8
+des_cursor_waku2T_model = .data:0x003F9178; // type:object size:0x50 scope:global align:8
+des_cursor_spT_model = .data:0x003F91C8; // type:object size:0x50 scope:global align:8
+des_cursor_wakuT_model = .data:0x003F9218; // type:object size:0x50 scope:global align:8
+des_cursor_kao1_tex = .data:0x003F9280; // type:object size:0x400 scope:global align:32
+des_cursor_kao2_tex = .data:0x003F9680; // type:object size:0x400 scope:global align:32
+des_cursor_kao3_tex = .data:0x003F9A80; // type:object size:0x400 scope:global align:32
+des_cursor_kao4_tex = .data:0x003F9E80; // type:object size:0x200 scope:global align:32
+des_cursor_kao5_tex = .data:0x003FA080; // type:object size:0x200 scope:global align:32
+des_cursor2_v = .data:0x003FA280; // type:object size:0x140 scope:global align:8
+des_cursor_kao4_model = .data:0x003FA3C0; // type:object size:0x48 scope:global align:8
+des_cursor_kao5_model = .data:0x003FA408; // type:object size:0x48 scope:global align:8
+des_cursor_kao1T_model = .data:0x003FA450; // type:object size:0x50 scope:global align:8
+des_cursor_kao2T_model = .data:0x003FA4A0; // type:object size:0x50 scope:global align:8
+des_cursor_kao3T_model = .data:0x003FA4F0; // type:object size:0x50 scope:global align:8
+des_win_marking3_tex = .data:0x003FA540; // type:object size:0x100 scope:global align:32
+des_win_marking_tex = .data:0x003FA640; // type:object size:0x80 scope:global align:32
+des_marking_v = .data:0x003FA6C0; // type:object size:0x80 scope:global align:8
+des_win_marking_model = .data:0x003FA740; // type:object size:0x38 scope:global align:8
+des_win_marking2T_model = .data:0x003FA778; // type:object size:0x38 scope:global align:8
+des_sen_v = .data:0x003FA7B0; // type:object size:0x40 scope:global align:8
+des_sen_waku_model = .data:0x003FA7F0; // type:object size:0x38 scope:global align:8
+des_win_suuji0_tex_rgb_i4 = .data:0x003FA840; // type:object size:0x80 scope:global align:32
+des_win_suuji1_tex_rgb_i4 = .data:0x003FA8C0; // type:object size:0x80 scope:global align:32
+des_win_suuji2_tex_rgb_i4 = .data:0x003FA940; // type:object size:0x80 scope:global align:32
+des_win_suuji3_tex_rgb_i4 = .data:0x003FA9C0; // type:object size:0x80 scope:global align:32
+des_win_suuji4_tex_rgb_i4 = .data:0x003FAA40; // type:object size:0x80 scope:global align:32
+des_win_suuji5_tex_rgb_i4 = .data:0x003FAAC0; // type:object size:0x80 scope:global align:32
+des_win_suuji6_tex_rgb_i4 = .data:0x003FAB40; // type:object size:0x80 scope:global align:32
+des_win_suuji7_tex_rgb_i4 = .data:0x003FABC0; // type:object size:0x80 scope:global align:32
+des_win_suuji8_tex_rgb_i4 = .data:0x003FAC40; // type:object size:0x80 scope:global align:32
+des_win_suuji9_tex_rgb_i4 = .data:0x003FACC0; // type:object size:0x80 scope:global align:32
+des_suuji_v = .data:0x003FAD40; // type:object size:0x100 scope:global align:8
+des_win_suuji_before = .data:0x003FAE40; // type:object size:0x28 scope:global align:8
+des_win_suuji1_model = .data:0x003FAE68; // type:object size:0x28 scope:global align:8
+des_win_suuji2_model = .data:0x003FAE90; // type:object size:0x28 scope:global align:8
+des_win_suuji3_model = .data:0x003FAEB8; // type:object size:0x28 scope:global align:8
+des_win_suuji4_model = .data:0x003FAEE0; // type:object size:0x28 scope:global align:8
+des_tool_undo_tex = .data:0x003FAF20; // type:object size:0x400 scope:global align:32
+des_tool_waku5_tex_rgb_ia8 = .data:0x003FB320; // type:object size:0x400 scope:global align:32
+des_tool_nuri6_tex_rgb_ia8 = .data:0x003FB720; // type:object size:0x400 scope:global align:32
+des_tool_mark1_tex_rgb_ia8 = .data:0x003FBB20; // type:object size:0x400 scope:global align:32
+des_tool_mark2_tex_rgb_ia8 = .data:0x003FBF20; // type:object size:0x400 scope:global align:32
+des_tool_mark3_tex_rgb_ia8 = .data:0x003FC320; // type:object size:0x400 scope:global align:32
+des_tool_mark4_tex_rgb_ia8 = .data:0x003FC720; // type:object size:0x400 scope:global align:32
+des_tool_nuri1_tex_rgb_ia8 = .data:0x003FCB20; // type:object size:0x400 scope:global align:32
+des_tool_nuri2_tex_rgb_ia8 = .data:0x003FCF20; // type:object size:0x400 scope:global align:32
+des_tool_nuri3_tex_rgb_ia8 = .data:0x003FD320; // type:object size:0x400 scope:global align:32
+des_tool_nuri4_tex_rgb_ia8 = .data:0x003FD720; // type:object size:0x400 scope:global align:32
+des_tool_nuri5_tex_rgb_ia8 = .data:0x003FDB20; // type:object size:0x400 scope:global align:32
+des_tool_pen1_tex_rgb_ia8 = .data:0x003FDF20; // type:object size:0x400 scope:global align:32
+des_tool_pen2_tex_rgb_ia8 = .data:0x003FE320; // type:object size:0x400 scope:global align:32
+des_tool_pen3_tex_rgb_ia8 = .data:0x003FE720; // type:object size:0x400 scope:global align:32
+des_tool_waku1_tex_rgb_ia8 = .data:0x003FEB20; // type:object size:0x400 scope:global align:32
+des_tool_waku2_tex_rgb_ia8 = .data:0x003FEF20; // type:object size:0x400 scope:global align:32
+des_tool_waku3_tex_rgb_ia8 = .data:0x003FF320; // type:object size:0x400 scope:global align:32
+des_tool_waku4_tex_rgb_ia8 = .data:0x003FF720; // type:object size:0x400 scope:global align:32
+des_tool_v = .data:0x003FFB20; // type:object size:0x4C0 scope:global align:8
+des_tool_pen1T_model = .data:0x003FFFE0; // type:object size:0x50 scope:global align:8
+des_tool_pen2T_model = .data:0x00400030; // type:object size:0x50 scope:global align:8
+des_tool_pen3T_model = .data:0x00400080; // type:object size:0x50 scope:global align:8
+des_tool_nuriT_model = .data:0x004000D0; // type:object size:0x50 scope:global align:8
+des_tool_nuri2T_model = .data:0x00400120; // type:object size:0x50 scope:global align:8
+des_tool_nuri3T_model = .data:0x00400170; // type:object size:0x50 scope:global align:8
+des_tool_nuri4T_model = .data:0x004001C0; // type:object size:0x50 scope:global align:8
+des_tool_nuri5T_model = .data:0x00400210; // type:object size:0x50 scope:global align:8
+des_tool_nuri6T_model = .data:0x00400260; // type:object size:0x50 scope:global align:8
+des_tool_waku1T_model = .data:0x004002B0; // type:object size:0x50 scope:global align:8
+des_tool_waku2T_model = .data:0x00400300; // type:object size:0x50 scope:global align:8
+des_tool_waku3T_model = .data:0x00400350; // type:object size:0x50 scope:global align:8
+des_tool_waku4T_model = .data:0x004003A0; // type:object size:0x50 scope:global align:8
+des_tool_waku5T_model = .data:0x004003F0; // type:object size:0x50 scope:global align:8
+des_tool_mark1T_model = .data:0x00400440; // type:object size:0x50 scope:global align:8
+des_tool_mark2T_model = .data:0x00400490; // type:object size:0x50 scope:global align:8
+des_tool_mark3T_model = .data:0x004004E0; // type:object size:0x50 scope:global align:8
+des_tool_mark4T_model = .data:0x00400530; // type:object size:0x50 scope:global align:8
+des_tool_undoT_model = .data:0x00400580; // type:object size:0x50 scope:global align:8
+des_tool_pen_all_model = .data:0x004005D0; // type:object size:0x20 scope:global align:8
+des_tool_nuri_all_model = .data:0x004005F0; // type:object size:0x38 scope:global align:8
+des_tool_waku_all_model = .data:0x00400628; // type:object size:0x30 scope:global align:8
+des_tool_mark_all_model = .data:0x00400658; // type:object size:0x28 scope:global align:8
+des_tool_kao1_tex = .data:0x00400680; // type:object size:0x400 scope:global align:32
+des_tool_kao2_tex = .data:0x00400A80; // type:object size:0x400 scope:global align:32
+des_tool_kao3_tex = .data:0x00400E80; // type:object size:0x400 scope:global align:32
+des_tool_kao4_tex = .data:0x00401280; // type:object size:0x400 scope:global align:32
+des_tool_kao5_tex = .data:0x00401680; // type:object size:0x400 scope:global align:32
+des_tool2_v = .data:0x00401A80; // type:object size:0x140 scope:global align:8
+des_tool_kao1T_model = .data:0x00401BC0; // type:object size:0x50 scope:global align:8
+des_tool_kao2T_model = .data:0x00401C10; // type:object size:0x50 scope:global align:8
+des_tool_kao3T_model = .data:0x00401C60; // type:object size:0x50 scope:global align:8
+des_tool_kao4T_model = .data:0x00401CB0; // type:object size:0x50 scope:global align:8
+des_tool_kao5T_model = .data:0x00401D00; // type:object size:0x50 scope:global align:8
+des_tool_kao_all_model = .data:0x00401D50; // type:object size:0x30 scope:global align:8
+des_win_sen_tex = .data:0x00401D80; // type:object size:0x80 scope:global align:32
+des_win_kirikae_tex = .data:0x00401E00; // type:object size:0x400 scope:global align:32
+des_win_cwaku_tex = .data:0x00402200; // type:object size:0x80 scope:global align:32
+des_win_aw1_tex = .data:0x00402280; // type:object size:0x800 scope:global align:32
+des_win_aw2_tex = .data:0x00402A80; // type:object size:0x800 scope:global align:32
+des_win_aw3_tex = .data:0x00403280; // type:object size:0x200 scope:global align:32
+des_win_aw4_tex = .data:0x00403480; // type:object size:0x800 scope:global align:32
+des_win_aw5_tex = .data:0x00403C80; // type:object size:0x200 scope:global align:32
+des_win_aw6_tex = .data:0x00403E80; // type:object size:0x200 scope:global align:32
+des_win_aw7_tex = .data:0x00404080; // type:object size:0x200 scope:global align:32
+des_win_aw8_tex = .data:0x00404280; // type:object size:0x100 scope:global align:32
+des_win_color_tex = .data:0x00404380; // type:object size:0x80 scope:global align:32
+des_win_start_tex = .data:0x00404400; // type:object size:0x100 scope:global align:32
+kei_win_quit_tex = .data:0x00404500; // type:object size:0x200 scope:local align:32
+des_win_v = .data:0x00404700; // type:object size:0xD80 scope:global align:8
+des_win_before = .data:0x00405480; // type:object size:0x20 scope:global align:8
+des_win_area1_model = .data:0x004054A0; // type:object size:0x28 scope:global align:8
+des_win_area2_model = .data:0x004054C8; // type:object size:0x18 scope:global align:8
+des_win_area3_model = .data:0x004054E0; // type:object size:0x18 scope:global align:8
+des_win_area4_model = .data:0x004054F8; // type:object size:0x18 scope:global align:8
+des_win_waku_model = .data:0x00405510; // type:object size:0x40 scope:global align:8
+des_win_toubai_model = .data:0x00405550; // type:object size:0x38 scope:global align:8
+des_win_main_model = .data:0x00405588; // type:object size:0x38 scope:global align:8
+des_win_grid_model = .data:0x004055C0; // type:object size:0x48 scope:global align:8
+des_win_color_before_model = .data:0x00405608; // type:object size:0x28 scope:global align:8
+des_win_color_model = .data:0x00405630; // type:object size:0x18 scope:global align:8
+des_win_waku2_model = .data:0x00405648; // type:object size:0x48 scope:global align:8
+des_win_shikiri_model = .data:0x00405690; // type:object size:0x30 scope:global align:8
+des_win_grid2_model = .data:0x004056C0; // type:object size:0x48 scope:global align:8
+des_win_shitaT_model = .data:0x00405708; // type:object size:0x160 scope:global align:8
+des_win_kirikaeT_model = .data:0x00405868; // type:object size:0x50 scope:global align:8
+des_win_startT_model = .data:0x004058B8; // type:object size:0x50 scope:global align:8
+des_win_owariT_model = .data:0x00405908; // type:object size:0x50 scope:global align:8
+des_win_before_model = .data:0x00405958; // type:object size:0x18 scope:global align:8
+des_win_before_model_2 = .data:0x00405970; // type:object size:0x20 scope:global align:8
+dir_win_diary_tex = .data:0x004059A0; // type:object size:0x500 scope:global align:32
+kei_win_quit_tex = .data:0x00405EA0; // type:object size:0x200 scope:local align:32
+lat_tegami_b2_tex = .data:0x004060A0; // type:object size:0x800 scope:local align:32
+lat_sousa_2b1_tex_rgb_i4 = .data:0x004068A0; // type:object size:0x200 scope:global align:32
+lat_tegami_b3_tex = .data:0x00406AA0; // type:object size:0x800 scope:local align:32
+kei_win_2b1_tex_rgb_i4 = .data:0x004072A0; // type:object size:0x200 scope:local align:32
+dia_hyouji_v = .data:0x004074A0; // type:object size:0x100 scope:global align:8
+kei_win_b2_model = .data:0x004075A0; // type:object size:0x40 scope:local align:8
+dia_win_bb_model = .data:0x004075E0; // type:object size:0x40 scope:global align:8
+kei_win_amojiT_model = .data:0x00407620; // type:object size:0x40 scope:local align:8
+dia_win_mojiT_model = .data:0x00407660; // type:object size:0x40 scope:global align:8
+dia_init_mode_letter = .data:0x004076A0; // type:object size:0x20 scope:global align:8
+dia_init_mode = .data:0x004076C0; // type:object size:0x20 scope:global align:8
+lat_letter01_pal = .data:0x004076E0; // type:object size:0x20 scope:local align:32
+dia_win_entry_tex = .data:0x00407700; // type:object size:0x100 scope:global align:32
+lat_letter01_04_tex = .data:0x00407800; // type:object size:0x80 scope:local align:32
+lat_tegami_fusen_tex = .data:0x00407880; // type:object size:0x80 scope:local align:32
+dia_win_april_tex_rgb_ia8 = .data:0x00407900; // type:object size:0x400 scope:global align:32
+dia_win_august_tex_rgb_ia8 = .data:0x00407D00; // type:object size:0x400 scope:global align:32
+dia_win_december_tex_rgb_ia8 = .data:0x00408100; // type:object size:0x400 scope:global align:32
+dia_win_february_tex_rgb_ia8 = .data:0x00408500; // type:object size:0x400 scope:global align:32
+dia_win_january_tex_rgb_ia8 = .data:0x00408900; // type:object size:0x400 scope:global align:32
+dia_win_july_tex_rgb_ia8 = .data:0x00408D00; // type:object size:0x400 scope:global align:32
+dia_win_june_tex_rgb_ia8 = .data:0x00409100; // type:object size:0x400 scope:global align:32
+dia_win_march_tex_rgb_ia8 = .data:0x00409500; // type:object size:0x400 scope:global align:32
+dia_win_may_tex_rgb_ia8 = .data:0x00409900; // type:object size:0x400 scope:global align:32
+dia_win_november_tex_rgb_ia8 = .data:0x00409D00; // type:object size:0x400 scope:global align:32
+dia_win_october_tex_rgb_ia8 = .data:0x0040A100; // type:object size:0x400 scope:global align:32
+dia_win_september_tex_rgb_ia8 = .data:0x0040A500; // type:object size:0x400 scope:global align:32
+dia_win_v = .data:0x0040A900; // type:object size:0x1B0 scope:global align:8
+dia_win_moji_model = .data:0x0040AAB0; // type:object size:0x38 scope:global align:8
+dia_win_wT_model = .data:0x0040AAE8; // type:object size:0x50 scope:global align:8
+dia_win_fusenT_model = .data:0x0040AB38; // type:object size:0x38 scope:global align:8
+dia_win_tukiT_model = .data:0x0040AB70; // type:object size:0x30 scope:global align:8
+lat_letter01_pal = .data:0x0040ABA0; // type:object size:0x20 scope:local align:32
+lat_letter01_04_tex = .data:0x0040ABC0; // type:object size:0x80 scope:local align:32
+lat_tegami_fusen_tex = .data:0x0040AC40; // type:object size:0x80 scope:local align:32
+dia_win2_v = .data:0x0040ACC0; // type:object size:0xE0 scope:global align:8
+dia_win2_wT_model = .data:0x0040ADA0; // type:object size:0x40 scope:global align:8
+dia_win2_fusenT_model = .data:0x0040ADE0; // type:object size:0x38 scope:global align:8
+lat_letter01_pal = .data:0x0040AE20; // type:object size:0x20 scope:local align:32
+lat_letter01_04_tex = .data:0x0040AE40; // type:object size:0x80 scope:local align:32
+lat_tegami_fusen_tex = .data:0x0040AEC0; // type:object size:0x80 scope:local align:32
+dia_win3_v = .data:0x0040AF40; // type:object size:0x130 scope:global align:8
+dia_win3_wT_model = .data:0x0040B070; // type:object size:0x50 scope:global align:8
+dia_win3_fusenT_model = .data:0x0040B0C0; // type:object size:0x38 scope:global align:8
+lat_tegami_waku_tex = .data:0x0040B100; // type:object size:0x400 scope:global align:32
+lat_kakunin_v = .data:0x0040B500; // type:object size:0x70 scope:global align:8
+lat_kakunin_DL_mode = .data:0x0040B570; // type:object size:0x30 scope:global align:8
+lat_kakunin_c_model = .data:0x0040B5A0; // type:object size:0x30 scope:global align:8
+lat_kakunin_wakuT_model = .data:0x0040B5D0; // type:object size:0x50 scope:global align:8
+lat_tegami_sw_tex = .data:0x0040B620; // type:object size:0x1000 scope:global align:32
+onp_sentaku_v = .data:0x0040C620; // type:object size:0xB0 scope:global align:8
+lat_sentaku_c_model = .data:0x0040C6D0; // type:object size:0x40 scope:global align:8
+lat_sentaku_winT_model = .data:0x0040C710; // type:object size:0x68 scope:global align:8
+lat_tegami_sw3_tex = .data:0x0040C780; // type:object size:0x1000 scope:global align:32
+lat_sentaku2_v = .data:0x0040D780; // type:object size:0xB0 scope:global align:8
+lat_sentaku2_c_model = .data:0x0040D830; // type:object size:0x38 scope:global align:8
+lat_sentaku2_winT_model = .data:0x0040D868; // type:object size:0x58 scope:global align:8
+kai_sousa_icons_tex = .data:0x0040D8C0; // type:object size:0x200 scope:global align:32
+kai_sousa_lwaku_tex = .data:0x0040DAC0; // type:object size:0x200 scope:global align:32
+kai_sousa_letters_tex = .data:0x0040DCC0; // type:object size:0x200 scope:global align:32
+kai_sousa_rcontroller_tex = .data:0x0040DEC0; // type:object size:0x400 scope:global align:32
+kai_sousa_lcontroller_a_tex = .data:0x0040E2C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_punct_tex = .data:0x0040F2C0; // type:object size:0x200 scope:global align:32
+kai_sousa_lcontroller_b_tex = .data:0x0040F4C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_lcontroller_c_tex = .data:0x004104C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_lcontroller_d_tex = .data:0x004114C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_mojiban_tex = .data:0x004124C0; // type:object size:0x400 scope:global align:32
+kai_sousa_mojiban2_tex = .data:0x004128C0; // type:object size:0x400 scope:global align:32
+kai_sousa_kirikae_tex = .data:0x00412CC0; // type:object size:0x200 scope:global align:32
+kai_sousa_3D_tex = .data:0x00412EC0; // type:object size:0x400 scope:global align:32
+kai_sousa_ok_tex = .data:0x004132C0; // type:object size:0x200 scope:global align:32
+kai_sousa_backspace_tex = .data:0x004134C0; // type:object size:0x500 scope:global align:32
+kai_sousa_cursor_tex = .data:0x004139C0; // type:object size:0x400 scope:global align:32
+kai_sousa_button3_tex = .data:0x00413DC0; // type:object size:0x100 scope:local align:32
+kai_sousa_shita_tex = .data:0x00413EC0; // type:object size:0x400 scope:global align:32
+kai_sousa_space_tex = .data:0x004142C0; // type:object size:0x400 scope:global align:32
+kai_sousa_caps_tex_rgb_i4 = .data:0x004146C0; // type:object size:0x180 scope:global align:32
+kai_sousa_small_tex_rgb_i4 = .data:0x00414840; // type:object size:0x180 scope:global align:32
+kai_sousa_rbutton2_tex_rgb_ia8 = .data:0x004149C0; // type:object size:0x800 scope:global align:32
+kai_sousa_rbutton_tex_rgb_ia8 = .data:0x004151C0; // type:object size:0x800 scope:global align:32
+kai_sousa_3Dst2_tex_rgb_ia8 = .data:0x004159C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_3Dst3_tex_rgb_ia8 = .data:0x004169C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_3Dst4_tex_rgb_ia8 = .data:0x004179C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_3Dst5_tex_rgb_ia8 = .data:0x004189C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_3Dst6_tex_rgb_ia8 = .data:0x004199C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_3Dst_tex_rgb_ia8 = .data:0x0041A9C0; // type:object size:0x1000 scope:global align:32
+kai_sousa_button1a_tex_rgb_ia8 = .data:0x0041B9C0; // type:object size:0x800 scope:global align:32
+kai_sousa_button1b_tex_rgb_ia8 = .data:0x0041C1C0; // type:object size:0x800 scope:global align:32
+kai_sousa_button2a_tex_rgb_ia8 = .data:0x0041C9C0; // type:object size:0x200 scope:global align:32
+kai_sousa_button2b_tex_rgb_ia8 = .data:0x0041CBC0; // type:object size:0x200 scope:global align:32
+kai_sousa_controllpad1_tex_rgb_ia8 = .data:0x0041CDC0; // type:object size:0x400 scope:global align:32
+kai_sousa_controllpad2_tex_rgb_ia8 = .data:0x0041D1C0; // type:object size:0x400 scope:global align:32
+kai_sousa_controllpad3_tex_rgb_ia8 = .data:0x0041D5C0; // type:object size:0x400 scope:global align:32
+kai_sousa_controllpad4_tex_rgb_ia8 = .data:0x0041D9C0; // type:object size:0x400 scope:global align:32
+kai_sousa_controllpad5_tex_rgb_ia8 = .data:0x0041DDC0; // type:object size:0x400 scope:global align:32
+kai_sousa_lbutton2_tex_rgb_ia8 = .data:0x0041E1C0; // type:object size:0x800 scope:global align:32
+kai_sousa_lbutton_tex_rgb_ia8 = .data:0x0041E9C0; // type:object size:0x800 scope:global align:32
+kai_sousa_xbutton2_tex_rgb_ia8 = .data:0x0041F1C0; // type:object size:0x200 scope:global align:32
+kai_sousa_xbutton_tex_rgb_ia8 = .data:0x0041F3C0; // type:object size:0x200 scope:global align:32
+kai_sousa_ybutton2_tex_rgb_ia8 = .data:0x0041F5C0; // type:object size:0x200 scope:global align:32
+kai_sousa_ybutton_tex_rgb_ia8 = .data:0x0041F7C0; // type:object size:0x200 scope:global align:32
+kai_sousa_lwaku_tex_rgb_i4 = .data:0x0041F9C0; // type:object size:0x200 scope:global align:32
+kai_sousa_v = .data:0x0041FBC0; // type:object size:0x830 scope:global align:8
+kai_sousa_mode = .data:0x004203F0; // type:object size:0x28 scope:global align:8
+kai_sousa_lwaku_model = .data:0x00420418; // type:object size:0x30 scope:global align:8
+kai_sousa_kirikae_model = .data:0x00420448; // type:object size:0x38 scope:global align:8
+kai_sousa_henkan_model = .data:0x00420480; // type:object size:0x38 scope:global align:8
+kai_sousa_letter_model = .data:0x004204B8; // type:object size:0x30 scope:global align:8
+kai_sousa_sign_model = .data:0x004204E8; // type:object size:0x30 scope:global align:8
+kai_sousa_mark_model = .data:0x00420518; // type:object size:0x30 scope:global align:8
+kai_sousa_yajirushi_model = .data:0x00420548; // type:object size:0x28 scope:global align:8
+kai_sousa_lmoji_model = .data:0x00420570; // type:object size:0x38 scope:global align:8
+kai_sousa_lbuttonT_model = .data:0x004205A8; // type:object size:0x40 scope:global align:8
+kai_sousa_rbuttonT_model = .data:0x004205E8; // type:object size:0x40 scope:global align:8
+kai_sousa_controllerT_model = .data:0x00420628; // type:object size:0x88 scope:global align:8
+kai_sousa_shitaT_model = .data:0x004206B0; // type:object size:0x40 scope:global align:8
+kai_sousa_controller2T_model = .data:0x004206F0; // type:object size:0x40 scope:global align:8
+kai_sousa_mojibanT_model = .data:0x00420730; // type:object size:0x68 scope:global align:8
+kai_sousa_controllpadT_model = .data:0x00420798; // type:object size:0x40 scope:global align:8
+kai_sousa_ybuttonT_model = .data:0x004207D8; // type:object size:0x40 scope:global align:8
+kai_sousa_xbuttonT_model = .data:0x00420818; // type:object size:0x40 scope:global align:8
+kai_sousa_3DT_model = .data:0x00420858; // type:object size:0x40 scope:global align:8
+kai_sousa_3DstT_model = .data:0x00420898; // type:object size:0x40 scope:global align:8
+kai_sousa_bbuttonT_model = .data:0x004208D8; // type:object size:0x40 scope:global align:8
+kai_sousa_abuttonT_model = .data:0x00420918; // type:object size:0x40 scope:global align:8
+kai_sousa_startbuttonT_model = .data:0x00420958; // type:object size:0x40 scope:global align:8
+kai_sousa_endT_model = .data:0x00420998; // type:object size:0x40 scope:global align:8
+kai_sousa_cancelT_model = .data:0x004209D8; // type:object size:0x40 scope:global align:8
+kai_sousa_cursorT_model = .data:0x00420A18; // type:object size:0x40 scope:global align:8
+kai_sousa_spaceT_model = .data:0x00420A58; // type:object size:0x40 scope:global align:8
+testbutton = .data:0x00420AA0; // type:object size:0x80 scope:global align:32
+kai_sousa2_v = .data:0x00420B20; // type:object size:0xA00 scope:global align:8
+lat_sousa_mode = .data:0x00421520; // type:object size:0x30 scope:global align:8
+lat_sousa_sp_tex = .data:0x00421550; // type:object size:0x80 scope:global align:4
+lat_sp_v = .data:0x004215D0; // type:object size:0x40 scope:global align:8
+lat_sousa_spT_model = .data:0x00421610; // type:object size:0x78 scope:global align:8
+lat_tegami_end_tex = .data:0x00421688; // type:object size:0x400 scope:global align:4
+lat_end_v = .data:0x00421A88; // type:object size:0x40 scope:global align:8
+lat_end_cordT_model = .data:0x00421AC8; // type:object size:0x88 scope:global align:8
+kai_sousa_ink_tex = .data:0x00421B60; // type:object size:0x1000 scope:global align:32
+kai_sousa_inkmoji_tex = .data:0x00422B60; // type:object size:0x200 scope:global align:32
+kai_sousa_ink2_tex_rgb_i4 = .data:0x00422D60; // type:object size:0x200 scope:global align:32
+kai_sousa_ink3_tex_rgb_i4 = .data:0x00422F60; // type:object size:0x200 scope:global align:32
+sousa_ink_v = .data:0x00423160; // type:object size:0xC0 scope:global align:8
+kai_sousa_ink_mode = .data:0x00423220; // type:object size:0x28 scope:global align:8
+kai_sousa_ink_model = .data:0x00423248; // type:object size:0x70 scope:global align:8
+kai_sousa_inktuboT_model = .data:0x004232B8; // type:object size:0x40 scope:global align:8
+kai_sousa_inkmojiT_model = .data:0x004232F8; // type:object size:0x40 scope:global align:8
+agb_win_yajirushi_tex = .data:0x00423340; // type:object size:0x400 scope:global align:32
+agb_yajirushi_v = .data:0x00423740; // type:object size:0x40 scope:global align:8
+agb_win_yajirushiT_model = .data:0x00423780; // type:object size:0x50 scope:global align:8
+gba_win_nuno_tex_rgb_ci4_pal = .data:0x004237E0; // type:object size:0x20 scope:global align:32
+gba_win_w4_tex_rgb_ci4_pal = .data:0x00423800; // type:object size:0x20 scope:global align:32
+gba_win_w1_tex_rgb_ci4_pal = .data:0x00423820; // type:object size:0x20 scope:global align:32
+gba_win_w2_tex_rgb_ci4_pal = .data:0x00423840; // type:object size:0x20 scope:global align:32
+gba_win_w3_tex_rgb_ci4_pal = .data:0x00423860; // type:object size:0x20 scope:global align:32
+sav_win_waku_tex = .data:0x00423880; // type:object size:0x200 scope:local align:32
+gba_win_aw1_tex = .data:0x00423A80; // type:object size:0x800 scope:global align:32
+gba_win_aw2_tex = .data:0x00424280; // type:object size:0x800 scope:global align:32
+gba_win_aw3_tex = .data:0x00424A80; // type:object size:0x200 scope:global align:32
+gba_win_aw4_tex = .data:0x00424C80; // type:object size:0x100 scope:global align:32
+inv_original_futa2_tex = .data:0x00424D80; // type:object size:0x200 scope:local align:32
+gba_win_nuno_tex_rgb_ci4 = .data:0x00424F80; // type:object size:0x200 scope:global align:32
+gba_win_w4_tex_rgb_ci4 = .data:0x00425180; // type:object size:0x80 scope:global align:32
+gba_win_w1_tex_rgb_ci4 = .data:0x00425200; // type:object size:0x400 scope:global align:32
+gba_win_w2_tex_rgb_ci4 = .data:0x00425600; // type:object size:0x400 scope:global align:32
+gba_win_w3_tex_rgb_ci4 = .data:0x00425A00; // type:object size:0x100 scope:global align:32
+gba_win_v = .data:0x00425B00; // type:object size:0xFA0 scope:global align:8
+gba_win_w_before_model = .data:0x00426AA0; // type:object size:0x38 scope:global align:8
+gba_win_w11_model = .data:0x00426AD8; // type:object size:0x38 scope:global align:8
+gba_win_waku_model = .data:0x00426B10; // type:object size:0x68 scope:global align:8
+gba_win_mb_before_model = .data:0x00426B78; // type:object size:0x18 scope:global align:8
+gba_win_mb1_model = .data:0x00426B90; // type:object size:0x18 scope:global align:8
+gba_win_mb2_model = .data:0x00426BA8; // type:object size:0x18 scope:global align:8
+gba_win_mb3_model = .data:0x00426BC0; // type:object size:0x18 scope:global align:8
+gba_win_mb4_model = .data:0x00426BD8; // type:object size:0x18 scope:global align:8
+gba_win_mb5_model = .data:0x00426BF0; // type:object size:0x18 scope:global align:8
+gba_win_mb6_model = .data:0x00426C08; // type:object size:0x18 scope:global align:8
+gba_win_mb7_model = .data:0x00426C20; // type:object size:0x18 scope:global align:8
+gba_win_mb8_model = .data:0x00426C38; // type:object size:0x18 scope:global align:8
+gba_win_f_model = .data:0x00426C50; // type:object size:0x68 scope:global align:8
+gba_win_w1T_model = .data:0x00426CB8; // type:object size:0x38 scope:global align:8
+gba_win_w2T_model = .data:0x00426CF0; // type:object size:0x38 scope:global align:8
+gba_win_w3T_model = .data:0x00426D28; // type:object size:0x38 scope:global align:8
+gba_win_w4T_model = .data:0x00426D60; // type:object size:0x38 scope:global align:8
+gba_win_w5T_model = .data:0x00426D98; // type:object size:0x38 scope:global align:8
+gba_win_w6T_model = .data:0x00426DD0; // type:object size:0x38 scope:global align:8
+gba_win_w7T_model = .data:0x00426E08; // type:object size:0x38 scope:global align:8
+gba_win_w8T_model = .data:0x00426E40; // type:object size:0x38 scope:global align:8
+gba_win_w9T_model = .data:0x00426E78; // type:object size:0x38 scope:global align:8
+gba_win_w10T_model = .data:0x00426EB0; // type:object size:0x38 scope:global align:8
+gba_win_ueT_model = .data:0x00426EE8; // type:object size:0x128 scope:global align:8
+lat_fusen_TXT = .data:0x00427010; // type:object size:0x80 scope:local align:4
+hni_den_2dl_tex = .data:0x00427090; // type:object size:0x200 scope:global align:4
+hni_den_2dml_tex = .data:0x00427290; // type:object size:0x400 scope:global align:4
+hni_den_2dmr_tex = .data:0x00427690; // type:object size:0x400 scope:global align:4
+hni_den_2dm_tex = .data:0x00427A90; // type:object size:0x400 scope:global align:4
+hni_den_2dr_tex = .data:0x00427E90; // type:object size:0x200 scope:global align:4
+hni_den_2ml_tex = .data:0x00428090; // type:object size:0x400 scope:global align:4
+hni_den_2mr_tex = .data:0x00428490; // type:object size:0x400 scope:global align:4
+hni_den_2ul_tex = .data:0x00428890; // type:object size:0x200 scope:global align:4
+hni_den_2uml_tex = .data:0x00428A90; // type:object size:0x400 scope:global align:4
+hni_den_2umr_tex = .data:0x00428E90; // type:object size:0x400 scope:global align:4
+hni_den_2um_tex = .data:0x00429290; // type:object size:0x400 scope:global align:4
+hni_den_2m_tex = .data:0x00429690; // type:object size:0x200 scope:global align:4
+inv_mwin_3Dma_tex = .data:0x00429890; // type:object size:0x800 scope:local align:4
+hni_den_2ur_tex = .data:0x0042A090; // type:object size:0x200 scope:global align:4
+hni_den_v = .data:0x0042A290; // type:object size:0x400 scope:global align:8
+hni_den_senT_model = .data:0x0042A690; // type:object size:0x68 scope:global align:8
+hni_den_win2T_model = .data:0x0042A6F8; // type:object size:0x438 scope:global align:8
+hni_den_3DmT_model = .data:0x0042AB30; // type:object size:0x68 scope:global align:8
+hni_den_mode = .data:0x0042AB98; // type:object size:0x28 scope:global align:8
+hni_den_model = .data:0x0042ABC0; // type:object size:0x28 scope:global align:8
+hnd_pal = .data:0x0042AC00; // type:object size:0x20 scope:global align:32
+hnd_white_txt = .data:0x0042AC20; // type:object size:0x20 scope:global align:32
+hnd_fin_txt = .data:0x0042AC40; // type:object size:0x80 scope:global align:32
+hnd_back_txt = .data:0x0042ACC0; // type:object size:0x200 scope:global align:32
+hnd_neck_txt = .data:0x0042AEC0; // type:object size:0x80 scope:global align:32
+hnd_front_txt = .data:0x0042AF40; // type:object size:0x200 scope:global align:32
+hnd_v = .data:0x0042B140; // type:object size:0x1320 scope:global align:8
+ko_hnd_model = .data:0x0042C460; // type:object size:0x78 scope:global align:8
+koT_hnd_model = .data:0x0042C4D8; // type:object size:0x78 scope:global align:8
+kusuri_hnd_model = .data:0x0042C550; // type:object size:0x78 scope:global align:8
+kusuriT_hnd_model = .data:0x0042C5C8; // type:object size:0x78 scope:global align:8
+naka_hnd_model = .data:0x0042C640; // type:object size:0x78 scope:global align:8
+nakaT_hnd_model = .data:0x0042C6B8; // type:object size:0x78 scope:global align:8
+hito_hnd_model = .data:0x0042C730; // type:object size:0x78 scope:global align:8
+hitoT_hnd_model = .data:0x0042C7A8; // type:object size:0x78 scope:global align:8
+oya_hnd_model = .data:0x0042C820; // type:object size:0xB8 scope:global align:8
+oyaT_hnd_model = .data:0x0042C8D8; // type:object size:0x78 scope:global align:8
+body_hnd_model = .data:0x0042C950; // type:object size:0x108 scope:global align:8
+cKF_ckcb_r_hnd_sasu_tbl = .data:0x0042CA58; // type:object size:0x1C scope:global align:4
+cKF_kn_hnd_sasu_tbl = .data:0x0042CA74; // type:object size:0xE scope:global align:4
+cKF_c_hnd_sasu_tbl = .data:0x0042CA84; // type:object size:0xA0 scope:global align:4
+cKF_ds_hnd_sasu_tbl = .data:0x0042CB24; // type:object size:0x1F8 scope:global align:4
+cKF_ba_r_hnd_sasu = .data:0x0042CD1C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_hnd_side_tbl = .data:0x0042CD30; // type:object size:0x1C scope:global align:4
+cKF_kn_hnd_side_tbl = .data:0x0042CD4C; // type:object size:0xE scope:global align:4
+cKF_c_hnd_side_tbl = .data:0x0042CD5C; // type:object size:0xA0 scope:global align:4
+cKF_ds_hnd_side_tbl = .data:0x0042CDFC; // type:object size:0x1F8 scope:global align:4
+cKF_ba_r_hnd_side = .data:0x0042CFF4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_hnd_catch_tbl = .data:0x0042D008; // type:object size:0x1C scope:global align:4
+cKF_kn_hnd_catch_tbl = .data:0x0042D024; // type:object size:0x1A scope:global align:4
+cKF_c_hnd_catch_tbl = .data:0x0042D040; // type:object size:0x94 scope:global align:4
+cKF_ds_hnd_catch_tbl = .data:0x0042D0D4; // type:object size:0x1BC scope:global align:4
+cKF_ba_r_hnd_catch = .data:0x0042D290; // type:object size:0x14 scope:global align:4
+cKF_je_r_hnd_tbl = .data:0x0042D2A4; // type:object size:0x150 scope:global align:4
+cKF_bs_r_hnd = .data:0x0042D3F4; // type:object size:0x8 scope:global align:4
+hni_nwin2_hani_tex_rgb_ci4_pal = .data:0x0042D400; // type:object size:0x20 scope:global align:32
+hni_win_shita7_tex_rgb_ci4_pal = .data:0x0042D420; // type:object size:0x20 scope:global align:32
+hni_win_shita1_tex_rgb_ci4_pal = .data:0x0042D440; // type:object size:0x20 scope:global align:32
+hni_win_shita2_tex_rgb_ci4_pal = .data:0x0042D460; // type:object size:0x20 scope:global align:32
+hni_win_shita3_tex_rgb_ci4_pal = .data:0x0042D480; // type:object size:0x20 scope:global align:32
+hni_win_shita4_tex_rgb_ci4_pal = .data:0x0042D4A0; // type:object size:0x20 scope:global align:32
+hni_win_shita5_tex_rgb_ci4_pal = .data:0x0042D4C0; // type:object size:0x20 scope:global align:32
+hni_win_shita6_tex_rgb_ci4_pal = .data:0x0042D4E0; // type:object size:0x20 scope:global align:32
+inv_mwin_nwaku_tex = .data:0x0042D500; // type:object size:0x400 scope:local align:32
+hni_nwin2_w_tex = .data:0x0042D900; // type:object size:0xA00 scope:global align:32
+hni_win_ue1_tex = .data:0x0042E300; // type:object size:0x800 scope:global align:32
+hni_win_ue2_tex = .data:0x0042EB00; // type:object size:0x800 scope:global align:32
+hni_win_ue3_tex = .data:0x0042F300; // type:object size:0x400 scope:global align:32
+hni_win_ue4_tex = .data:0x0042F700; // type:object size:0x100 scope:global align:32
+hni_win_ue5_tex = .data:0x0042F800; // type:object size:0x800 scope:global align:32
+hni_win_ue6_tex = .data:0x00430000; // type:object size:0x800 scope:global align:32
+hni_win_ue7_tex = .data:0x00430800; // type:object size:0x800 scope:global align:32
+inv_mwin_3Dma_tex = .data:0x00431000; // type:object size:0x800 scope:local align:32
+hni_nwin2_hani_tex_rgb_ci4 = .data:0x00431800; // type:object size:0x200 scope:global align:32
+hni_win_shita7_tex_rgb_ci4 = .data:0x00431A00; // type:object size:0x200 scope:global align:32
+hni_win_shita1_tex_rgb_ci4 = .data:0x00431C00; // type:object size:0x400 scope:global align:32
+hni_win_shita2_tex_rgb_ci4 = .data:0x00432000; // type:object size:0x400 scope:global align:32
+hni_win_shita3_tex_rgb_ci4 = .data:0x00432400; // type:object size:0x200 scope:global align:32
+hni_win_shita4_tex_rgb_ci4 = .data:0x00432600; // type:object size:0x400 scope:global align:32
+hni_win_shita5_tex_rgb_ci4 = .data:0x00432A00; // type:object size:0x400 scope:global align:32
+hni_win_shita6_tex_rgb_ci4 = .data:0x00432E00; // type:object size:0x400 scope:global align:32
+hni_win_v = .data:0x00433200; // type:object size:0x800 scope:global align:8
+hni_win_w13_model = .data:0x00433A00; // type:object size:0x38 scope:global align:8
+hni_nwin2_winT_model = .data:0x00433A38; // type:object size:0x120 scope:global align:8
+hni_nwin2_win2T_model = .data:0x00433B58; // type:object size:0x48 scope:global align:8
+hni_nwin_3DmT_model = .data:0x00433BA0; // type:object size:0x40 scope:global align:8
+hni_nwin2_wakuT_model = .data:0x00433BE0; // type:object size:0x40 scope:global align:8
+hni_win_w1T_model = .data:0x00433C20; // type:object size:0x38 scope:global align:8
+hni_win_w2T_model = .data:0x00433C58; // type:object size:0x38 scope:global align:8
+hni_win_w3T_model = .data:0x00433C90; // type:object size:0x38 scope:global align:8
+hni_win_w4T_model = .data:0x00433CC8; // type:object size:0x38 scope:global align:8
+hni_win_w5T_model = .data:0x00433D00; // type:object size:0x38 scope:global align:8
+hni_win_w6T_model = .data:0x00433D38; // type:object size:0x38 scope:global align:8
+hni_win_w7T_model = .data:0x00433D70; // type:object size:0x38 scope:global align:8
+hni_win_w8T_model = .data:0x00433DA8; // type:object size:0x38 scope:global align:8
+hni_win_w9T_model = .data:0x00433DE0; // type:object size:0x38 scope:global align:8
+hni_win_w10T_model = .data:0x00433E18; // type:object size:0x38 scope:global align:8
+hni_win_w11T_model = .data:0x00433E50; // type:object size:0x38 scope:global align:8
+hni_win_w12T_model = .data:0x00433E88; // type:object size:0x38 scope:global align:8
+hni_win_mode = .data:0x00433EC0; // type:object size:0x50 scope:global align:8
+hni_win_modelT = .data:0x00433F10; // type:object size:0xB0 scope:global align:8
+inv_mushi_nuno_tex_rgb_ci4_pal = .data:0x00433FC0; // type:object size:0x20 scope:global align:32
+inv_mushi_w5_tex_rgb_ci4_pal = .data:0x00433FE0; // type:object size:0x20 scope:local align:32
+inv_mushi_w1_tex_rgb_ci4_pal = .data:0x00434000; // type:object size:0x20 scope:local align:32
+inv_mushi_w2_tex_rgb_ci4_pal = .data:0x00434020; // type:object size:0x20 scope:local align:32
+inv_mushi_w3_tex_rgb_ci4_pal = .data:0x00434040; // type:object size:0x20 scope:local align:32
+inv_mushi_w4_tex_rgb_ci4_pal = .data:0x00434060; // type:object size:0x20 scope:local align:32
+inv_mushi_w6_tex_rgb_ci4_pal = .data:0x00434080; // type:object size:0x20 scope:local align:32
+inv_mushi_w7_tex_rgb_ci4_pal = .data:0x004340A0; // type:object size:0x20 scope:local align:32
+inv_mwin_nwaku_tex = .data:0x004340C0; // type:object size:0x400 scope:local align:32
+inv_mwin_shirushi1_tex = .data:0x004344C0; // type:object size:0x200 scope:global align:32
+inv_mwin_shirushi_tex = .data:0x004346C0; // type:object size:0x400 scope:local align:32
+inv_mushi_aw1_tex = .data:0x00434AC0; // type:object size:0x200 scope:local align:32
+inv_mushi_aw2_tex = .data:0x00434CC0; // type:object size:0x400 scope:local align:32
+inv_mushi_aw3_tex = .data:0x004350C0; // type:object size:0x400 scope:local align:32
+inv_mushi_aw4_tex = .data:0x004354C0; // type:object size:0x200 scope:local align:32
+inv_mushi_waku2_tex = .data:0x004356C0; // type:object size:0x800 scope:global align:32
+inv_mushi_aw7_tex = .data:0x00435EC0; // type:object size:0x400 scope:local align:32
+inv_mushi_moji_tex = .data:0x004362C0; // type:object size:0x280 scope:global align:32
+inv_mushi_aw5_tex = .data:0x00436540; // type:object size:0x80 scope:global align:32
+inv_mushi_nuno_tex_rgb_ci4 = .data:0x004365C0; // type:object size:0x200 scope:global align:32
+inv_mushi_w5_tex_rgb_ci4 = .data:0x004367C0; // type:object size:0x80 scope:local align:32
+inv_mushi_w1_tex_rgb_ci4 = .data:0x00436840; // type:object size:0x200 scope:local align:32
+inv_mushi_w2_tex_rgb_ci4 = .data:0x00436A40; // type:object size:0x400 scope:local align:32
+inv_mushi_w3_tex_rgb_ci4 = .data:0x00436E40; // type:object size:0x400 scope:local align:32
+inv_mushi_w4_tex_rgb_ci4 = .data:0x00437240; // type:object size:0x200 scope:local align:32
+inv_mushi_w6_tex_rgb_ci4 = .data:0x00437440; // type:object size:0x400 scope:local align:32
+inv_mushi_w7_tex_rgb_ci4 = .data:0x00437840; // type:object size:0x400 scope:local align:32
+inv_mushi_v = .data:0x00437C40; // type:object size:0x920 scope:global align:8
+inv_mushi_w14_model = .data:0x00438560; // type:object size:0x30 scope:global align:8
+inv_mushi_moji_model = .data:0x00438590; // type:object size:0x30 scope:global align:8
+inv_mushi_w1T_model = .data:0x004385C0; // type:object size:0x30 scope:global align:8
+inv_mushi_w2T_model = .data:0x004385F0; // type:object size:0x30 scope:global align:8
+inv_mushi_w3T_model = .data:0x00438620; // type:object size:0x30 scope:global align:8
+inv_mushi_w4T_model = .data:0x00438650; // type:object size:0x30 scope:global align:8
+inv_mushi_w5T_model = .data:0x00438680; // type:object size:0x30 scope:global align:8
+inv_mushi_w6T_model = .data:0x004386B0; // type:object size:0x30 scope:global align:8
+inv_mushi_w7T_model = .data:0x004386E0; // type:object size:0x30 scope:global align:8
+inv_mushi_w8T_model = .data:0x00438710; // type:object size:0x30 scope:global align:8
+inv_mushi_w9T_model = .data:0x00438740; // type:object size:0x30 scope:global align:8
+inv_mushi_w10T_model = .data:0x00438770; // type:object size:0x30 scope:global align:8
+inv_mushi_w11T_model = .data:0x004387A0; // type:object size:0x30 scope:global align:8
+inv_mushi_w12T_model = .data:0x004387D0; // type:object size:0x30 scope:global align:8
+inv_mushi_w13T_model = .data:0x00438800; // type:object size:0x30 scope:global align:8
+inv_mushi_waku2T_model = .data:0x00438830; // type:object size:0x50 scope:global align:8
+inv_mushi_ueT_model = .data:0x00438880; // type:object size:0xF8 scope:global align:8
+inv_mushi_ue2T_model = .data:0x00438978; // type:object size:0x40 scope:global align:8
+inv_mushi_daimeiT_model = .data:0x004389B8; // type:object size:0x40 scope:global align:8
+inv_mushi_shirushiT_model = .data:0x004389F8; // type:object size:0x38 scope:global align:8
+inv_mushi_scroll_mode = .data:0x00438A30; // type:object size:0x20 scope:global align:8
+inv_mushi_model = .data:0x00438A50; // type:object size:0xC0 scope:global align:8
+inv_mushi_part_model = .data:0x00438B10; // type:object size:0x18 scope:global align:8
+inv_mwin_w1_tex_rgb_ci4_pal = .data:0x00438B40; // type:object size:0x20 scope:global align:32
+inv_mwin_w2_tex_rgb_ci4_pal = .data:0x00438B60; // type:object size:0x20 scope:global align:32
+inv_mwin_w3_tex_rgb_ci4_pal = .data:0x00438B80; // type:object size:0x20 scope:global align:32
+inv_mwin_w4_tex_rgb_ci4_pal = .data:0x00438BA0; // type:object size:0x20 scope:global align:32
+inv_mwin_w6_tex_rgb_ci4_pal = .data:0x00438BC0; // type:object size:0x20 scope:global align:32
+inv_mwin_nwaku_tex = .data:0x00438BE0; // type:object size:0x400 scope:local align:32
+inv_mwin_aw6_tex = .data:0x00438FE0; // type:object size:0x400 scope:global align:32
+inv_mwin_shirushi4_tex = .data:0x004393E0; // type:object size:0x200 scope:global align:32
+inv_mwin_sen_tex = .data:0x004395E0; // type:object size:0x80 scope:global align:32
+inv_mwin_sen2_tex = .data:0x00439660; // type:object size:0x80 scope:global align:32
+inv_mwin_suujiwaku1_tex = .data:0x004396E0; // type:object size:0x200 scope:global align:32
+inv_original_shirushi_tex = .data:0x004398E0; // type:object size:0x200 scope:global align:32
+inv_mwin_suujiwaku2_tex = .data:0x00439AE0; // type:object size:0x200 scope:global align:32
+inv_original_shirushi3_tex = .data:0x00439CE0; // type:object size:0x800 scope:global align:32
+inv_mwin_3Dma_tex = .data:0x0043A4E0; // type:object size:0x800 scope:local align:32
+originl = .data:0x0043ACE0; // type:object size:0x200 scope:global align:32
+original2 = .data:0x0043AEE0; // type:object size:0x400 scope:global align:32
+inv_mwin_aw3_tex = .data:0x0043B2E0; // type:object size:0x400 scope:global align:32
+inv_mwin_aw4_tex = .data:0x0043B6E0; // type:object size:0x200 scope:global align:32
+inv_mwin_aw5_tex = .data:0x0043B8E0; // type:object size:0x80 scope:local align:32
+inv_mwin_items_tex = .data:0x0043B960; // type:object size:0x200 scope:global align:32
+inv_mwin_letters_tex = .data:0x0043BB60; // type:object size:0x200 scope:global align:32
+inv_mwin_bells_tex = .data:0x0043BD60; // type:object size:0x200 scope:global align:32
+inv_mwin_w5_tex_rgb_ci4 = .data:0x0043BF60; // type:object size:0x80 scope:global align:32
+inv_mwin_w1_tex_rgb_ci4 = .data:0x0043BFE0; // type:object size:0x200 scope:global align:32
+inv_mwin_w2_tex_rgb_ci4 = .data:0x0043C1E0; // type:object size:0x400 scope:global align:32
+inv_mwin_w3_tex_rgb_ci4 = .data:0x0043C5E0; // type:object size:0x400 scope:global align:32
+inv_mwin_w4_tex_rgb_ci4 = .data:0x0043C9E0; // type:object size:0x200 scope:global align:32
+inv_mwin_w6_tex_rgb_ci4 = .data:0x0043CBE0; // type:object size:0x400 scope:global align:32
+inv_mwin_v = .data:0x0043CFE0; // type:object size:0x1280 scope:global align:8
+inv_mwin_w13_model = .data:0x0043E260; // type:object size:0x28 scope:global align:8
+inv_mwin_1c_model = .data:0x0043E288; // type:object size:0x68 scope:global align:8
+inv_mwin_kuni_model = .data:0x0043E2F0; // type:object size:0x58 scope:global align:8
+inv_mwin_kuni2_model = .data:0x0043E348; // type:object size:0x50 scope:global align:8
+inv_mwin_item_model = .data:0x0043E398; // type:object size:0x30 scope:global align:8
+inv_mwin_tegami_model = .data:0x0043E3C8; // type:object size:0x30 scope:global align:8
+inv_mwin_okane_model = .data:0x0043E3F8; // type:object size:0x30 scope:global align:8
+inv_mwin_shirushi3_model = .data:0x0043E428; // type:object size:0x30 scope:global align:8
+inv_mwin_w1T_model = .data:0x0043E458; // type:object size:0x30 scope:global align:8
+inv_mwin_w2T_model = .data:0x0043E488; // type:object size:0x30 scope:global align:8
+inv_mwin_w3T_model = .data:0x0043E4B8; // type:object size:0x30 scope:global align:8
+inv_mwin_w4T_model = .data:0x0043E4E8; // type:object size:0x30 scope:global align:8
+inv_mwin_w5T_model = .data:0x0043E518; // type:object size:0x40 scope:global align:8
+inv_mwin_w6T_model = .data:0x0043E558; // type:object size:0x30 scope:global align:8
+inv_mwin_w7T_model = .data:0x0043E588; // type:object size:0x30 scope:global align:8
+inv_mwin_w8T_model = .data:0x0043E5B8; // type:object size:0x30 scope:global align:8
+inv_mwin_w9T_model = .data:0x0043E5E8; // type:object size:0x30 scope:global align:8
+inv_mwin_w10T_model = .data:0x0043E618; // type:object size:0x30 scope:global align:8
+inv_mwin_w11T_model = .data:0x0043E648; // type:object size:0x30 scope:global align:8
+inv_mwin_w12T_model = .data:0x0043E678; // type:object size:0x30 scope:global align:8
+inv_mwin_shirushi2T_model = .data:0x0043E6A8; // type:object size:0x38 scope:global align:8
+inv_mwin_1cT_model = .data:0x0043E6E0; // type:object size:0xC0 scope:global align:8
+inv_mwin_1bT_model = .data:0x0043E7A0; // type:object size:0x28 scope:global align:8
+inv_mwin_2bT_model = .data:0x0043E7C8; // type:object size:0x28 scope:global align:8
+inv_mwin_3bT_model = .data:0x0043E7F0; // type:object size:0x28 scope:global align:8
+inv_mwin_4bT_model = .data:0x0043E818; // type:object size:0x28 scope:global align:8
+inv_mwin_5bT_model = .data:0x0043E840; // type:object size:0x28 scope:global align:8
+inv_mwin_6bT_model = .data:0x0043E868; // type:object size:0x28 scope:global align:8
+inv_mwin_7bT_model = .data:0x0043E890; // type:object size:0x28 scope:global align:8
+inv_mwin_8bT_model = .data:0x0043E8B8; // type:object size:0x28 scope:global align:8
+inv_mwin_9bT_model = .data:0x0043E8E0; // type:object size:0x28 scope:global align:8
+inv_mwin_10bT_model = .data:0x0043E908; // type:object size:0x28 scope:global align:8
+inv_mwin_11bT_model = .data:0x0043E930; // type:object size:0x28 scope:global align:8
+inv_mwin_12bT_model = .data:0x0043E958; // type:object size:0x28 scope:global align:8
+inv_mwin_13bT_model = .data:0x0043E980; // type:object size:0x28 scope:global align:8
+inv_mwin_14bT_model = .data:0x0043E9A8; // type:object size:0x28 scope:global align:8
+inv_mwin_15bT_model = .data:0x0043E9D0; // type:object size:0x28 scope:global align:8
+inv_mwin_1aT_model = .data:0x0043E9F8; // type:object size:0x28 scope:global align:8
+inv_mwin_2aT_model = .data:0x0043EA20; // type:object size:0x28 scope:global align:8
+inv_mwin_3aT_model = .data:0x0043EA48; // type:object size:0x28 scope:global align:8
+inv_mwin_4aT_model = .data:0x0043EA70; // type:object size:0x28 scope:global align:8
+inv_mwin_5aT_model = .data:0x0043EA98; // type:object size:0x28 scope:global align:8
+inv_mwin_6aT_model = .data:0x0043EAC0; // type:object size:0x28 scope:global align:8
+inv_mwin_7aT_model = .data:0x0043EAE8; // type:object size:0x28 scope:global align:8
+inv_mwin_8aT_model = .data:0x0043EB10; // type:object size:0x28 scope:global align:8
+inv_mwin_9aT_model = .data:0x0043EB38; // type:object size:0x28 scope:global align:8
+inv_mwin_10aT_model = .data:0x0043EB60; // type:object size:0x28 scope:global align:8
+inv_mwin_3DmT_model = .data:0x0043EB88; // type:object size:0x30 scope:global align:8
+inv_mwin_shirushiT_model = .data:0x0043EBB8; // type:object size:0x30 scope:global align:8
+inv_mwin_suujiwakuT_model = .data:0x0043EBE8; // type:object size:0x58 scope:global align:8
+inv_mwin_mode = .data:0x0043EC40; // type:object size:0x28 scope:global align:8
+inv_mwin_model = .data:0x0043EC68; // type:object size:0xE8 scope:global align:8
+inv_mwin_item_frame_mode = .data:0x0043ED50; // type:object size:0x20 scope:global align:8
+inv_mushi_w5_tex_rgb_ci4_pal = .data:0x0043ED80; // type:object size:0x20 scope:local align:32
+inv_sakana_nuno_tex_rgb_ci4_pal = .data:0x0043EDA0; // type:object size:0x20 scope:global align:32
+inv_mushi_w1_tex_rgb_ci4_pal = .data:0x0043EDC0; // type:object size:0x20 scope:local align:32
+inv_mushi_w2_tex_rgb_ci4_pal = .data:0x0043EDE0; // type:object size:0x20 scope:local align:32
+inv_mushi_w3_tex_rgb_ci4_pal = .data:0x0043EE00; // type:object size:0x20 scope:local align:32
+inv_mushi_w4_tex_rgb_ci4_pal = .data:0x0043EE20; // type:object size:0x20 scope:local align:32
+inv_mushi_w6_tex_rgb_ci4_pal = .data:0x0043EE40; // type:object size:0x20 scope:local align:32
+inv_mushi_w7_tex_rgb_ci4_pal = .data:0x0043EE60; // type:object size:0x20 scope:local align:32
+inv_mwin_nwaku_tex = .data:0x0043EE80; // type:object size:0x400 scope:local align:32
+inv_mwin_shirushi2_tex = .data:0x0043F280; // type:object size:0x200 scope:global align:32
+inv_mwin_shirushi_tex = .data:0x0043F480; // type:object size:0x400 scope:local align:32
+inv_mushi_aw1_tex = .data:0x0043F880; // type:object size:0x200 scope:local align:32
+inv_mushi_aw2_tex = .data:0x0043FA80; // type:object size:0x400 scope:local align:32
+inv_mushi_aw3_tex = .data:0x0043FE80; // type:object size:0x400 scope:local align:32
+inv_mushi_aw4_tex = .data:0x00440280; // type:object size:0x200 scope:local align:32
+inv_sakana_waku1_tex = .data:0x00440480; // type:object size:0x800 scope:global align:32
+inv_mushi_aw7_tex = .data:0x00440C80; // type:object size:0x400 scope:local align:32
+inv_sakana_moji_tex = .data:0x00441080; // type:object size:0x200 scope:global align:32
+inv_sakana_waku2_tex = .data:0x00441280; // type:object size:0x800 scope:global align:32
+inv_mwin_aw5_tex = .data:0x00441A80; // type:object size:0x80 scope:local align:32
+inv_mushi_w5_tex_rgb_ci4 = .data:0x00441B00; // type:object size:0x80 scope:local align:32
+inv_sakana_nuno_tex_rgb_ci4 = .data:0x00441B80; // type:object size:0x200 scope:global align:32
+inv_mushi_w1_tex_rgb_ci4 = .data:0x00441D80; // type:object size:0x200 scope:local align:32
+inv_mushi_w2_tex_rgb_ci4 = .data:0x00441F80; // type:object size:0x400 scope:local align:32
+inv_mushi_w3_tex_rgb_ci4 = .data:0x00442380; // type:object size:0x400 scope:local align:32
+inv_mushi_w4_tex_rgb_ci4 = .data:0x00442780; // type:object size:0x200 scope:local align:32
+inv_mushi_w6_tex_rgb_ci4 = .data:0x00442980; // type:object size:0x400 scope:local align:32
+inv_mushi_w7_tex_rgb_ci4 = .data:0x00442D80; // type:object size:0x400 scope:local align:32
+inv_sakana_v = .data:0x00443180; // type:object size:0x940 scope:global align:8
+inv_sakana_w14_model = .data:0x00443AC0; // type:object size:0x30 scope:global align:8
+inv_sakana_moji_model = .data:0x00443AF0; // type:object size:0x30 scope:global align:8
+inv_sakana_w1T_model = .data:0x00443B20; // type:object size:0x30 scope:global align:8
+inv_sakana_w2T_model = .data:0x00443B50; // type:object size:0x30 scope:global align:8
+inv_sakana_w3T_model = .data:0x00443B80; // type:object size:0x30 scope:global align:8
+inv_sakana_w4T_model = .data:0x00443BB0; // type:object size:0x30 scope:global align:8
+inv_sakana_w5T_model = .data:0x00443BE0; // type:object size:0x30 scope:global align:8
+inv_sakana_w6T_model = .data:0x00443C10; // type:object size:0x30 scope:global align:8
+inv_sakana_w7T_model = .data:0x00443C40; // type:object size:0x30 scope:global align:8
+inv_sakana_w8T_model = .data:0x00443C70; // type:object size:0x30 scope:global align:8
+inv_sakana_w9T_model = .data:0x00443CA0; // type:object size:0x30 scope:global align:8
+inv_sakana_w10T_model = .data:0x00443CD0; // type:object size:0x30 scope:global align:8
+inv_sakana_w11T_model = .data:0x00443D00; // type:object size:0x30 scope:global align:8
+inv_sakana_w12T_model = .data:0x00443D30; // type:object size:0x40 scope:global align:8
+inv_sakana_w13T_model = .data:0x00443D70; // type:object size:0x30 scope:global align:8
+inv_sakana_waku2T_model = .data:0x00443DA0; // type:object size:0x58 scope:global align:8
+inv_sakana_ueT_model = .data:0x00443DF8; // type:object size:0xF8 scope:global align:8
+inv_sakana_ue2T_model = .data:0x00443EF0; // type:object size:0x40 scope:global align:8
+inv_sakana_daimeiT_model = .data:0x00443F30; // type:object size:0x50 scope:global align:8
+inv_sakana_shirushiT_model = .data:0x00443F80; // type:object size:0x38 scope:global align:8
+inv_sakana_scroll_mode = .data:0x00443FB8; // type:object size:0x28 scope:global align:8
+inv_sakana_model = .data:0x00443FE0; // type:object size:0xD8 scope:global align:8
+inv_sakana_part_model = .data:0x004440B8; // type:object size:0x18 scope:global align:8
+tol_sao_1_pal = .data:0x004440D0; // type:object size:0x20 scope:local align:4
+tol_sao_1_uki1_tex_txt = .data:0x004440F0; // type:object size:0x100 scope:local align:4
+tol_uki_1_v = .data:0x004441F0; // type:object size:0x180 scope:local align:4
+inv_uki_model = .data:0x00444370; // type:object size:0x120 scope:global align:8
+tol_uki_2_v = .data:0x00444490; // type:object size:0x180 scope:local align:4
+tol_sao_2_pal = .data:0x00444610; // type:object size:0x20 scope:local align:4
+tol_sao_2_uki1_tex_txt = .data:0x00444630; // type:object size:0x100 scope:local align:4
+inv_uki2_model = .data:0x00444730; // type:object size:0x120 scope:global align:8
+inv_mwin_binsen1_pal = .data:0x00444860; // type:object size:0x20 scope:global align:32
+inv_mwin_binsen1_tex = .data:0x00444880; // type:object size:0x200 scope:global align:32
+inv_mwin_binsen2_tex = .data:0x00444A80; // type:object size:0x200 scope:global align:32
+inv_mwin_binsen3_tex = .data:0x00444C80; // type:object size:0x200 scope:global align:32
+inv_mwin_binsen4_tex = .data:0x00444E80; // type:object size:0x200 scope:global align:32
+inv_mwin_cnaegi_pal = .data:0x00445080; // type:object size:0x20 scope:global align:32
+inv_mwin_cnaegi_tex = .data:0x004450A0; // type:object size:0x200 scope:global align:32
+inv_mwin_2cabu1_pal = .data:0x004452A0; // type:object size:0x20 scope:global align:32
+inv_mwin_2cabu1_tex = .data:0x004452C0; // type:object size:0x200 scope:global align:32
+inv_mwin_fukubukuro2_pal = .data:0x004454C0; // type:object size:0x20 scope:global align:32
+inv_mwin_fukubukuro2_tex_rgb_ci4_pal = .data:0x004454E0; // type:object size:0x20 scope:global align:32
+inv_mwin_fukubukuro_tex_rgb_ci4 = .data:0x00445500; // type:object size:0x200 scope:global align:32
+inv_mwin_fukubukuro2_tex_rgb_ci4 = .data:0x00445700; // type:object size:0x200 scope:global align:32
+inv_mwin_gmushi_pal = .data:0x00445900; // type:object size:0x20 scope:global align:32
+inv_mwin_gturi_pal = .data:0x00445920; // type:object size:0x20 scope:global align:32
+inv_mwin_gscoop_pal = .data:0x00445940; // type:object size:0x20 scope:global align:32
+inv_mwin_gono_pal = .data:0x00445960; // type:object size:0x20 scope:global align:32
+inv_mwin_gmushi_tex = .data:0x00445980; // type:object size:0x200 scope:global align:32
+inv_mwin_gturi_tex = .data:0x00445B80; // type:object size:0x200 scope:global align:32
+inv_mwin_gscoop_tex = .data:0x00445D80; // type:object size:0x200 scope:global align:32
+inv_mwin_gono_tex = .data:0x00445F80; // type:object size:0x200 scope:global align:32
+inv_mwin_hitodama_pal = .data:0x00446180; // type:object size:0x20 scope:global align:32
+inv_mwin_hitodama1_tex = .data:0x004461A0; // type:object size:0x200 scope:global align:32
+inv_mwin_hitodama2_tex = .data:0x004463A0; // type:object size:0x200 scope:global align:32
+inv_mwin_hitodama3_tex = .data:0x004465A0; // type:object size:0x200 scope:global align:32
+inv_mwin_hitodama4_tex = .data:0x004467A0; // type:object size:0x200 scope:global align:32
+inv_mwin_hitodama5_tex = .data:0x004469A0; // type:object size:0x200 scope:global align:32
+inv_mwin_01monshiro_pal = .data:0x00446BA0; // type:object size:0x40 scope:global align:32
+inv_mwin_02monki_pal = .data:0x00446BE0; // type:object size:0x40 scope:global align:32
+inv_mwin_03kiageha_pal = .data:0x00446C20; // type:object size:0x40 scope:global align:32
+inv_mwin_04ohmurasaki_pal = .data:0x00446C60; // type:object size:0x40 scope:global align:32
+inv_mwin_05abura_pal = .data:0x00446CA0; // type:object size:0x40 scope:global align:32
+inv_mwin_06minmin_pal = .data:0x00446CE0; // type:object size:0x40 scope:global align:32
+inv_mwin_07tukutuku_pal = .data:0x00446D20; // type:object size:0x40 scope:global align:32
+inv_mwin_08higurashi_pal = .data:0x00446D60; // type:object size:0x40 scope:global align:32
+inv_mwin_09akiakane_pal = .data:0x00446DA0; // type:object size:0x40 scope:global align:32
+inv_mwin_10shiokara_pal = .data:0x00446DE0; // type:object size:0x40 scope:global align:32
+inv_mwin_11ginyanma_pal = .data:0x00446E20; // type:object size:0x40 scope:global align:32
+inv_mwin_12oniyanma_pal = .data:0x00446E60; // type:object size:0x40 scope:global align:32
+inv_mwin_13koorogi_pal = .data:0x00446EA0; // type:object size:0x40 scope:global align:32
+inv_mwin_14kirigirisu_pal = .data:0x00446EE0; // type:object size:0x40 scope:global align:32
+inv_mwin_15matumushi_pal = .data:0x00446F20; // type:object size:0x40 scope:global align:32
+inv_mwin_16suzumushi_pal = .data:0x00446F60; // type:object size:0x40 scope:global align:32
+inv_mwin_17tentou_pal = .data:0x00446FA0; // type:object size:0x40 scope:global align:32
+inv_mwin_18nanahoshi_pal = .data:0x00446FE0; // type:object size:0x40 scope:global align:32
+inv_mwin_19kamakiri_pal = .data:0x00447020; // type:object size:0x40 scope:global align:32
+inv_mwin_20syouryou_pal = .data:0x00447060; // type:object size:0x40 scope:global align:32
+inv_mwin_21tonosama_pal = .data:0x004470A0; // type:object size:0x40 scope:global align:32
+inv_mwin_22danna_pal = .data:0x004470E0; // type:object size:0x40 scope:global align:32
+inv_mwin_23hati_pal = .data:0x00447120; // type:object size:0x40 scope:global align:32
+inv_mwin_24genji_pal = .data:0x00447160; // type:object size:0x40 scope:global align:32
+inv_mwin_25kanabun_pal = .data:0x004471A0; // type:object size:0x40 scope:global align:32
+inv_mwin_26gomadara_pal = .data:0x004471E0; // type:object size:0x40 scope:global align:32
+inv_mwin_27tamamushi_pal = .data:0x00447220; // type:object size:0x40 scope:global align:32
+inv_mwin_28kabuto_pal = .data:0x00447260; // type:object size:0x40 scope:global align:32
+inv_mwin_29hirata_pal = .data:0x004472A0; // type:object size:0x40 scope:global align:32
+inv_mwin_30nokogiri_pal = .data:0x004472E0; // type:object size:0x40 scope:global align:32
+inv_mwin_31miyama_pal = .data:0x00447320; // type:object size:0x40 scope:global align:32
+inv_mwin_32okuwa_pal = .data:0x00447360; // type:object size:0x40 scope:global align:32
+inv_mwin_01monshiro_tex = .data:0x004473A0; // type:object size:0x200 scope:global align:32
+inv_mwin_02monki_tex = .data:0x004475A0; // type:object size:0x200 scope:global align:32
+inv_mwin_03kiageha_tex = .data:0x004477A0; // type:object size:0x200 scope:global align:32
+inv_mwin_04ohmurasaki_tex = .data:0x004479A0; // type:object size:0x200 scope:global align:32
+inv_mwin_05abura_tex = .data:0x00447BA0; // type:object size:0x200 scope:global align:32
+inv_mwin_06minmin_tex = .data:0x00447DA0; // type:object size:0x200 scope:global align:32
+inv_mwin_07tukutuku_tex = .data:0x00447FA0; // type:object size:0x200 scope:global align:32
+inv_mwin_08higurashi_tex = .data:0x004481A0; // type:object size:0x200 scope:global align:32
+inv_mwin_09akiakane_tex = .data:0x004483A0; // type:object size:0x200 scope:global align:32
+inv_mwin_10shiokara_tex = .data:0x004485A0; // type:object size:0x200 scope:global align:32
+inv_mwin_11ginyanma_tex = .data:0x004487A0; // type:object size:0x200 scope:global align:32
+inv_mwin_12oniyanma_tex = .data:0x004489A0; // type:object size:0x200 scope:global align:32
+inv_mwin_13koorogi_tex = .data:0x00448BA0; // type:object size:0x200 scope:global align:32
+inv_mwin_14kirigirisu_tex = .data:0x00448DA0; // type:object size:0x200 scope:global align:32
+inv_mwin_15matumushi_tex = .data:0x00448FA0; // type:object size:0x200 scope:global align:32
+inv_mwin_16suzumushi_tex = .data:0x004491A0; // type:object size:0x200 scope:global align:32
+inv_mwin_17tentou_tex = .data:0x004493A0; // type:object size:0x200 scope:global align:32
+inv_mwin_18nanahoshi_tex = .data:0x004495A0; // type:object size:0x200 scope:global align:32
+inv_mwin_19kamakiri_tex = .data:0x004497A0; // type:object size:0x200 scope:global align:32
+inv_mwin_20syouryou_tex = .data:0x004499A0; // type:object size:0x200 scope:global align:32
+inv_mwin_21tonosama_tex = .data:0x00449BA0; // type:object size:0x200 scope:global align:32
+inv_mwin_22danna_tex = .data:0x00449DA0; // type:object size:0x200 scope:global align:32
+inv_mwin_23hati_tex = .data:0x00449FA0; // type:object size:0x200 scope:global align:32
+inv_mwin_24genji_tex = .data:0x0044A1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_25kanabun_tex = .data:0x0044A3A0; // type:object size:0x200 scope:global align:32
+inv_mwin_26gomadara_tex = .data:0x0044A5A0; // type:object size:0x200 scope:global align:32
+inv_mwin_27tamamushi_tex = .data:0x0044A7A0; // type:object size:0x200 scope:global align:32
+inv_mwin_28kabuto_tex = .data:0x0044A9A0; // type:object size:0x200 scope:global align:32
+inv_mwin_29hirata_tex = .data:0x0044ABA0; // type:object size:0x200 scope:global align:32
+inv_mwin_30nokogiri_tex = .data:0x0044ADA0; // type:object size:0x200 scope:global align:32
+inv_mwin_31miyama_tex = .data:0x0044AFA0; // type:object size:0x200 scope:global align:32
+inv_mwin_32okuwa_tex = .data:0x0044B1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_08oonamazu_pal = .data:0x0044B3A0; // type:object size:0x40 scope:global align:32
+inv_mwin_01funa_pal = .data:0x0044B3E0; // type:object size:0x40 scope:global align:32
+inv_mwin_02masu_pal = .data:0x0044B420; // type:object size:0x40 scope:global align:32
+inv_mwin_03koi_pal = .data:0x0044B460; // type:object size:0x40 scope:global align:32
+inv_mwin_04nishiki_pal = .data:0x0044B4A0; // type:object size:0x40 scope:global align:32
+inv_mwin_05nigoi_pal = .data:0x0044B4E0; // type:object size:0x40 scope:global align:32
+inv_mwin_06ugui_pal = .data:0x0044B520; // type:object size:0x40 scope:global align:32
+inv_mwin_07namazu_pal = .data:0x0044B560; // type:object size:0x40 scope:global align:32
+inv_mwin_09oikawa_pal = .data:0x0044B5A0; // type:object size:0x40 scope:global align:32
+inv_mwin_10tanago_pal = .data:0x0044B5E0; // type:object size:0x40 scope:global align:32
+inv_mwin_11dojyou_pal = .data:0x0044B620; // type:object size:0x40 scope:global align:32
+inv_mwin_12gill_pal = .data:0x0044B660; // type:object size:0x40 scope:global align:32
+inv_mwin_13bass_pal = .data:0x0044B6A0; // type:object size:0x40 scope:global align:32
+inv_mwin_14bassm_pal = .data:0x0044B6E0; // type:object size:0x40 scope:global align:32
+inv_mwin_15bassl_pal = .data:0x0044B720; // type:object size:0x40 scope:global align:32
+inv_mwin_16raigyo_pal = .data:0x0044B760; // type:object size:0x40 scope:global align:32
+inv_mwin_17unagi_pal = .data:0x0044B7A0; // type:object size:0x40 scope:global align:32
+inv_mwin_18donko_pal = .data:0x0044B7E0; // type:object size:0x40 scope:global align:32
+inv_mwin_19wakasagi_pal = .data:0x0044B820; // type:object size:0x40 scope:global align:32
+inv_mwin_20ayu_pal = .data:0x0044B860; // type:object size:0x40 scope:global align:32
+inv_mwin_21yamame_pal = .data:0x0044B8A0; // type:object size:0x40 scope:global align:32
+inv_mwin_22niji_pal = .data:0x0044B8E0; // type:object size:0x40 scope:global align:32
+inv_mwin_23iwana_pal = .data:0x0044B920; // type:object size:0x40 scope:global align:32
+inv_mwin_24itou_pal = .data:0x0044B960; // type:object size:0x40 scope:global align:32
+inv_mwin_25sake_pal = .data:0x0044B9A0; // type:object size:0x40 scope:global align:32
+inv_mwin_26kingyo_pal = .data:0x0044B9E0; // type:object size:0x40 scope:global align:32
+inv_mwin_27demekin_pal = .data:0x0044BA20; // type:object size:0x40 scope:global align:32
+inv_mwin_28gupi_pal = .data:0x0044BA60; // type:object size:0x40 scope:global align:32
+inv_mwin_29angel_pal = .data:0x0044BAA0; // type:object size:0x40 scope:global align:32
+inv_mwin_30pirania_pal = .data:0x0044BAE0; // type:object size:0x40 scope:global align:32
+inv_mwin_31aroana_pal = .data:0x0044BB20; // type:object size:0x40 scope:global align:32
+inv_mwin_32kaseki_pal = .data:0x0044BB60; // type:object size:0x40 scope:global align:32
+inv_mwin_08oonamazu_tex = .data:0x0044BBA0; // type:object size:0x200 scope:global align:32
+inv_mwin_01funa_tex = .data:0x0044BDA0; // type:object size:0x200 scope:global align:32
+inv_mwin_02masu_tex = .data:0x0044BFA0; // type:object size:0x200 scope:global align:32
+inv_mwin_03koi_tex = .data:0x0044C1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_04nishiki_tex = .data:0x0044C3A0; // type:object size:0x200 scope:global align:32
+inv_mwin_05nigoi_tex = .data:0x0044C5A0; // type:object size:0x200 scope:global align:32
+inv_mwin_06ugui_tex = .data:0x0044C7A0; // type:object size:0x200 scope:global align:32
+inv_mwin_07namazu_tex = .data:0x0044C9A0; // type:object size:0x200 scope:global align:32
+inv_mwin_09oikawa_tex = .data:0x0044CBA0; // type:object size:0x200 scope:global align:32
+inv_mwin_10tanago_tex = .data:0x0044CDA0; // type:object size:0x200 scope:global align:32
+inv_mwin_11dojyou_tex = .data:0x0044CFA0; // type:object size:0x200 scope:global align:32
+inv_mwin_12gill_tex = .data:0x0044D1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_13bass_tex = .data:0x0044D3A0; // type:object size:0x200 scope:global align:32
+inv_mwin_14bassm_tex = .data:0x0044D5A0; // type:object size:0x200 scope:global align:32
+inv_mwin_15bassl_tex = .data:0x0044D7A0; // type:object size:0x200 scope:global align:32
+inv_mwin_16raigyo_tex = .data:0x0044D9A0; // type:object size:0x200 scope:global align:32
+inv_mwin_17unagi_tex = .data:0x0044DBA0; // type:object size:0x200 scope:global align:32
+inv_mwin_18donko_tex = .data:0x0044DDA0; // type:object size:0x200 scope:global align:32
+inv_mwin_19wakasagi_tex = .data:0x0044DFA0; // type:object size:0x200 scope:global align:32
+inv_mwin_20ayu_tex = .data:0x0044E1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_21yamame_tex = .data:0x0044E3A0; // type:object size:0x200 scope:global align:32
+inv_mwin_22niji_tex = .data:0x0044E5A0; // type:object size:0x200 scope:global align:32
+inv_mwin_23iwana_tex = .data:0x0044E7A0; // type:object size:0x200 scope:global align:32
+inv_mwin_24itou_tex = .data:0x0044E9A0; // type:object size:0x200 scope:global align:32
+inv_mwin_25sake_tex = .data:0x0044EBA0; // type:object size:0x200 scope:global align:32
+inv_mwin_26kingyo_tex = .data:0x0044EDA0; // type:object size:0x200 scope:global align:32
+inv_mwin_27demekin_tex = .data:0x0044EFA0; // type:object size:0x200 scope:global align:32
+inv_mwin_28gupi_tex = .data:0x0044F1A0; // type:object size:0x200 scope:global align:32
+inv_mwin_29angel_tex = .data:0x0044F3A0; // type:object size:0x200 scope:global align:32
+inv_mwin_30pirania_tex = .data:0x0044F5A0; // type:object size:0x200 scope:global align:32
+inv_mwin_31aroana_tex = .data:0x0044F7A0; // type:object size:0x200 scope:global align:32
+inv_mwin_32kaseki_tex = .data:0x0044F9A0; // type:object size:0x200 scope:global align:32
+inv_mwin_7fukubiki_pal = .data:0x0044FBA0; // type:object size:0x20 scope:global align:32
+inv_mwin_8fukubiki_pal = .data:0x0044FBC0; // type:object size:0x20 scope:global align:32
+inv_mwin_9fukubiki_pal = .data:0x0044FBE0; // type:object size:0x20 scope:global align:32
+inv_mwin_10fukubiki_pal = .data:0x0044FC00; // type:object size:0x20 scope:global align:32
+inv_mwin_11fukubiki_pal = .data:0x0044FC20; // type:object size:0x20 scope:global align:32
+inv_mwin_12fukubiki_pal = .data:0x0044FC40; // type:object size:0x20 scope:global align:32
+inv_mwin_nuts_pal = .data:0x0044FC60; // type:object size:0x20 scope:global align:32
+inv_mwin_nuts_tex = .data:0x0044FC80; // type:object size:0x200 scope:global align:32
+inv_mwin_fork_pal = .data:0x0044FE80; // type:object size:0x20 scope:global align:32
+inv_mwin_fork_tex = .data:0x0044FEA0; // type:object size:0x200 scope:global align:32
+inv_mwin_fuku3_pal = .data:0x004500A0; // type:object size:0x20 scope:global align:32
+inv_mwin_fuku3_tex = .data:0x004500C0; // type:object size:0x200 scope:global align:32
+inv_mwin_ame_pal = .data:0x004502C0; // type:object size:0x20 scope:global align:32
+inv_mwin_ame_tex = .data:0x004502E0; // type:object size:0x200 scope:global align:32
+inv_mwin_2fukubiki_pal = .data:0x004504E0; // type:object size:0x20 scope:global align:32
+inv_mwin_3fukubiki_pal = .data:0x00450500; // type:object size:0x20 scope:global align:32
+inv_mwin_4fukubiki_pal = .data:0x00450520; // type:object size:0x20 scope:global align:32
+inv_mwin_5fukubiki_pal = .data:0x00450540; // type:object size:0x20 scope:global align:32
+inv_mwin_6fukubiki_pal = .data:0x00450560; // type:object size:0x20 scope:global align:32
+inv_mwin_1fukubiki_pal = .data:0x00450580; // type:object size:0x20 scope:global align:32
+inv_mwin_1biki3_tex = .data:0x004505A0; // type:object size:0x200 scope:global align:32
+inv_mwin_1biki5_tex = .data:0x004507A0; // type:object size:0x200 scope:global align:32
+inv_mwin_1biki4_tex = .data:0x004509A0; // type:object size:0x200 scope:global align:32
+inv_mwin_1biki2_tex = .data:0x00450BA0; // type:object size:0x200 scope:global align:32
+inv_mwin_1biki1_tex = .data:0x00450DA0; // type:object size:0x200 scope:global align:32
+inv_mwin_leaf_pal = .data:0x00450FA0; // type:object size:0x20 scope:global align:32
+inv_mwin_naegi_pal = .data:0x00450FC0; // type:object size:0x20 scope:global align:32
+inv_mwin_seed_pal = .data:0x00450FE0; // type:object size:0x20 scope:global align:32
+inv_mwin_unbrella_pal = .data:0x00451000; // type:object size:0x20 scope:global align:32
+inv_mwin_jyuutan_pal = .data:0x00451020; // type:object size:0x20 scope:global align:32
+inv_mwin_kabe2_pal = .data:0x00451040; // type:object size:0x20 scope:global align:32
+inv_mwin_leaf_tex = .data:0x00451060; // type:object size:0x200 scope:global align:32
+inv_mwin_naegi_tex = .data:0x00451260; // type:object size:0x200 scope:global align:32
+inv_mwin_seed_tex = .data:0x00451460; // type:object size:0x200 scope:global align:32
+inv_mwin_unbrella_tex = .data:0x00451660; // type:object size:0x200 scope:global align:32
+inv_mwin_jyuutan_tex = .data:0x00451860; // type:object size:0x200 scope:global align:32
+inv_mwin_kabe_tex = .data:0x00451A60; // type:object size:0x200 scope:global align:32
+inv_mwin_matutake2_pal = .data:0x00451C60; // type:object size:0x20 scope:global align:32
+inv_mwin_matutake_tex = .data:0x00451C80; // type:object size:0x200 scope:global align:32
+inv_mwin_haniwa_pal = .data:0x00451E80; // type:object size:0x20 scope:global align:32
+inv_mwin_haniwa_tex = .data:0x00451EA0; // type:object size:0x200 scope:global align:32
+inv_mwin_aki_pal = .data:0x004520A0; // type:object size:0x20 scope:global align:32
+inv_mwin_fukubukuro_pal = .data:0x004520C0; // type:object size:0x20 scope:global align:32
+inv_mwin_kutu_pal = .data:0x004520E0; // type:object size:0x20 scope:global align:32
+inv_mwin_akikan_tex = .data:0x00452100; // type:object size:0x200 scope:global align:32
+inv_mwin_fukubukuro_tex = .data:0x00452300; // type:object size:0x200 scope:global align:32
+inv_mwin_taiya_tex = .data:0x00452500; // type:object size:0x200 scope:global align:32
+inv_mwin_kutu_tex = .data:0x00452700; // type:object size:0x200 scope:global align:32
+inv_mwin_ana_pal = .data:0x00452900; // type:object size:0x20 scope:global align:32
+inv_mwin_onpu_pal = .data:0x00452920; // type:object size:0x20 scope:global align:32
+inv_mwin_ana_tex = .data:0x00452940; // type:object size:0x200 scope:global align:32
+inv_mwin_onpu_tex = .data:0x00452B40; // type:object size:0x200 scope:global align:32
+inv_mwin_video_pal = .data:0x00452D40; // type:object size:0x20 scope:global align:32
+inv_mwin_camera2_pal = .data:0x00452D60; // type:object size:0x20 scope:global align:32
+inv_mwin_GB_pal = .data:0x00452D80; // type:object size:0x20 scope:global align:32
+inv_mwin_hankati_pal = .data:0x00452DA0; // type:object size:0x20 scope:global align:32
+inv_mwin_ehon_pal = .data:0x00452DC0; // type:object size:0x20 scope:global align:32
+inv_mwin_manga_pal = .data:0x00452DE0; // type:object size:0x20 scope:global align:32
+inv_mwin_glasses_pal = .data:0x00452E00; // type:object size:0x20 scope:global align:32
+inv_mwin_pokepi_pal = .data:0x00452E20; // type:object size:0x20 scope:global align:32
+inv_mwin_tetyou_pal = .data:0x00452E40; // type:object size:0x20 scope:global align:32
+inv_mwin_tokei_pal = .data:0x00452E60; // type:object size:0x20 scope:global align:32
+inv_mwin_video_tex = .data:0x00452E80; // type:object size:0x200 scope:global align:32
+inv_mwin_camera_tex = .data:0x00453080; // type:object size:0x200 scope:global align:32
+inv_mwin_GB_tex = .data:0x00453280; // type:object size:0x200 scope:global align:32
+inv_mwin_hankati_tex = .data:0x00453480; // type:object size:0x200 scope:global align:32
+inv_mwin_ehon_tex = .data:0x00453680; // type:object size:0x200 scope:global align:32
+inv_mwin_manga_tex = .data:0x00453880; // type:object size:0x200 scope:global align:32
+inv_mwin_glasses_tex = .data:0x00453A80; // type:object size:0x200 scope:global align:32
+inv_mwin_pokepi_tex = .data:0x00453C80; // type:object size:0x200 scope:global align:32
+inv_mwin_tetyou_tex = .data:0x00453E80; // type:object size:0x200 scope:global align:32
+inv_mwin_tokei_tex = .data:0x00454080; // type:object size:0x200 scope:global align:32
+inv_mwin_kaseki2_pal = .data:0x00454280; // type:object size:0x20 scope:global align:32
+inv_mwin_kaseki_pal = .data:0x004542A0; // type:object size:0x20 scope:global align:32
+inv_mwin_kaseki2_tex = .data:0x004542C0; // type:object size:0x200 scope:global align:32
+inv_mwin_kaseki_tex = .data:0x004544C0; // type:object size:0x200 scope:global align:32
+inv_mwin_apple_pal = .data:0x004546C0; // type:object size:0x20 scope:global align:32
+inv_mwin_orange_pal = .data:0x004546E0; // type:object size:0x20 scope:global align:32
+inv_mwin_peach_pal = .data:0x00454700; // type:object size:0x20 scope:global align:32
+inv_mwin_pear_pal = .data:0x00454720; // type:object size:0x20 scope:global align:32
+inv_mwin_apple_tex = .data:0x00454740; // type:object size:0x200 scope:global align:32
+inv_mwin_orange_tex = .data:0x00454940; // type:object size:0x200 scope:global align:32
+inv_mwin_peach_tex = .data:0x00454B40; // type:object size:0x200 scope:global align:32
+inv_mwin_pear_tex = .data:0x00454D40; // type:object size:0x200 scope:global align:32
+inv_mwin_mtegami2_pal = .data:0x00454F40; // type:object size:0x20 scope:global align:32
+inv_mwin_mtegami_pal = .data:0x00454F60; // type:object size:0x20 scope:global align:32
+inv_mwin_otegami_pal = .data:0x00454F80; // type:object size:0x20 scope:global align:32
+inv_mwin_mtegami2_tex = .data:0x00454FA0; // type:object size:0x200 scope:global align:32
+inv_mwin_pmtegami2_tex = .data:0x004551A0; // type:object size:0x200 scope:global align:32
+inv_mwin_mtegami_tex = .data:0x004553A0; // type:object size:0x200 scope:global align:32
+inv_mwin_pmtegami_tex = .data:0x004555A0; // type:object size:0x200 scope:global align:32
+inv_mwin_otegami_tex = .data:0x004557A0; // type:object size:0x200 scope:global align:32
+inv_mwin_potegami_tex = .data:0x004559A0; // type:object size:0x200 scope:global align:32
+inv_mwin_ono_pal = .data:0x00455BA0; // type:object size:0x20 scope:global align:32
+inv_mwin_scoop_pal = .data:0x00455BC0; // type:object size:0x20 scope:global align:32
+inv_mwin_turi_tex_pal = .data:0x00455BE0; // type:object size:0x20 scope:global align:32
+inv_mwin_mushi_pal = .data:0x00455C00; // type:object size:0x20 scope:global align:32
+inv_mwin_ono_tex = .data:0x00455C20; // type:object size:0x200 scope:global align:32
+inv_mwin_scoop_tex = .data:0x00455E20; // type:object size:0x200 scope:global align:32
+inv_mwin_turi_tex = .data:0x00456020; // type:object size:0x200 scope:global align:32
+inv_mwin_mushi_tex = .data:0x00456220; // type:object size:0x200 scope:global align:32
+inv_mwin_cabu1_pal = .data:0x00456420; // type:object size:0x20 scope:global align:32
+inv_mwin_cabu1_tex = .data:0x00456440; // type:object size:0x200 scope:global align:32
+inv_mwin_cabu2_tex = .data:0x00456640; // type:object size:0x200 scope:global align:32
+inv_mwin_cabu3_tex = .data:0x00456840; // type:object size:0x200 scope:global align:32
+inv_mwin_okane1_pal = .data:0x00456A40; // type:object size:0x20 scope:global align:32
+inv_mwin_okane4_tex = .data:0x00456A60; // type:object size:0x200 scope:global align:32
+inv_mwin_okane1_tex = .data:0x00456C60; // type:object size:0x200 scope:global align:32
+inv_mwin_okane2_tex = .data:0x00456E60; // type:object size:0x200 scope:global align:32
+inv_mwin_okane3_tex = .data:0x00457060; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox2_pal = .data:0x00457260; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox_tex = .data:0x00457280; // type:object size:0x200 scope:global align:32
+inv_mwin_hiougi_pal = .data:0x00457480; // type:object size:0x20 scope:global align:32
+inv_mwin_hirako_pal = .data:0x004574A0; // type:object size:0x20 scope:global align:32
+inv_mwin_hone_pal = .data:0x004574C0; // type:object size:0x20 scope:global align:32
+inv_mwin_hora_pal = .data:0x004574E0; // type:object size:0x20 scope:global align:32
+inv_mwin_hoshida_pal = .data:0x00457500; // type:object size:0x20 scope:global align:32
+inv_mwin_sango_pal = .data:0x00457520; // type:object size:0x20 scope:global align:32
+inv_mwin_syako_pal = .data:0x00457540; // type:object size:0x20 scope:global align:32
+inv_mwin_hiougi_tex = .data:0x00457560; // type:object size:0x200 scope:global align:32
+inv_mwin_hirako_tex = .data:0x00457760; // type:object size:0x200 scope:global align:32
+inv_mwin_hone_tex = .data:0x00457960; // type:object size:0x200 scope:global align:32
+inv_mwin_hora_tex = .data:0x00457B60; // type:object size:0x200 scope:global align:32
+inv_mwin_hoshida_tex = .data:0x00457D60; // type:object size:0x200 scope:global align:32
+inv_mwin_sango_tex = .data:0x00457F60; // type:object size:0x200 scope:global align:32
+inv_mwin_syako_tex = .data:0x00458160; // type:object size:0x200 scope:global align:32
+inv_win_mark_tex = .data:0x00458360; // type:object size:0x100 scope:global align:32
+inv_mark_v = .data:0x00458460; // type:object size:0x40 scope:global align:8
+inv_mark_model = .data:0x004584A0; // type:object size:0x30 scope:global align:8
+inv_item_v = .data:0x004584D0; // type:object size:0x40 scope:global align:8
+inv_item_mode = .data:0x00458510; // type:object size:0x28 scope:global align:8
+inv_item_shadow_mode = .data:0x00458538; // type:object size:0x38 scope:global align:8
+inv_item_model = .data:0x00458570; // type:object size:0x30 scope:global align:8
+inv_mwin_sanddollar_pal = .data:0x004585A0; // type:object size:0x20 scope:global align:32
+inv_mwin_sanddollar_tex = .data:0x004585C0; // type:object size:0x200 scope:global align:32
+inv_mwin_unknown_pal = .data:0x004587C0; // type:object size:0x20 scope:global align:32
+inv_mwin_unknown_tex = .data:0x004587E0; // type:object size:0x200 scope:global align:32
+inv_mwin_kanban_pal = .data:0x004589E0; // type:object size:0x20 scope:global align:32
+inv_mwin_kanban_tex = .data:0x00458A00; // type:object size:0x200 scope:global align:32
+inv_mwin_utiwa_pal = .data:0x00458C00; // type:object size:0x20 scope:global align:32
+inv_mwin_kazaguruma_pal = .data:0x00458C20; // type:object size:0x20 scope:global align:32
+inv_mwin_fuusen_pal = .data:0x00458C40; // type:object size:0x20 scope:global align:32
+inv_mwin_utiwa_tex = .data:0x00458C60; // type:object size:0x200 scope:global align:32
+inv_mwin_kazaguruma_tex = .data:0x00458E60; // type:object size:0x200 scope:global align:32
+inv_mwin_fuusen_tex = .data:0x00459060; // type:object size:0x200 scope:global align:32
+inv_mwin_39ari_pal = .data:0x00459260; // type:object size:0x40 scope:global align:32
+inv_mwin_33maimai_pal = .data:0x004592A0; // type:object size:0x40 scope:global align:32
+inv_mwin_34kera_pal = .data:0x004592E0; // type:object size:0x40 scope:global align:32
+inv_mwin_35amenbo_pal = .data:0x00459320; // type:object size:0x40 scope:global align:32
+inv_mwin_36mino_pal = .data:0x00459360; // type:object size:0x40 scope:global align:32
+inv_mwin_37dango_pal = .data:0x004593A0; // type:object size:0x40 scope:global align:32
+inv_mwin_38kumo_pal = .data:0x004593E0; // type:object size:0x40 scope:global align:32
+inv_mwin_40ka_pal = .data:0x00459420; // type:object size:0x40 scope:global align:32
+inv_mwin_39ari_tex = .data:0x00459460; // type:object size:0x200 scope:global align:32
+inv_mwin_33maimai_tex = .data:0x00459660; // type:object size:0x200 scope:global align:32
+inv_mwin_34kera_tex = .data:0x00459860; // type:object size:0x200 scope:global align:32
+inv_mwin_35amenbo_tex = .data:0x00459A60; // type:object size:0x200 scope:global align:32
+inv_mwin_36mino_tex = .data:0x00459C60; // type:object size:0x200 scope:global align:32
+inv_mwin_37dango_tex = .data:0x00459E60; // type:object size:0x200 scope:global align:32
+inv_mwin_38kumo_tex = .data:0x0045A060; // type:object size:0x200 scope:global align:32
+inv_mwin_40ka_tex = .data:0x0045A260; // type:object size:0x200 scope:global align:32
+inv_mwin_nittki_pal = .data:0x0045A460; // type:object size:0x20 scope:global align:32
+inv_mwin_nittki_tex = .data:0x0045A480; // type:object size:0x200 scope:global align:32
+inv_mwin_ono2_tex = .data:0x0045A680; // type:object size:0x200 scope:global align:32
+inv_mwin_ono3_tex = .data:0x0045A880; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox1_tex_rgb_ci4_pal = .data:0x0045AA80; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox2_tex_rgb_ci4_pal = .data:0x0045AAA0; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox3_tex_rgb_ci4_pal = .data:0x0045AAC0; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox4_tex_rgb_ci4_pal = .data:0x0045AAE0; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox5_tex_rgb_ci4_pal = .data:0x0045AB00; // type:object size:0x20 scope:global align:32
+inv_mwin_pbox1_tex_rgb_ci4 = .data:0x0045AB20; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox2_tex_rgb_ci4 = .data:0x0045AD20; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox3_tex_rgb_ci4 = .data:0x0045AF20; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox4_tex_rgb_ci4 = .data:0x0045B120; // type:object size:0x200 scope:global align:32
+inv_mwin_pbox5_tex_rgb_ci4 = .data:0x0045B320; // type:object size:0x200 scope:global align:32
+inv_mwin_39ishidai_pal = .data:0x0045B520; // type:object size:0x40 scope:global align:32
+inv_mwin_33zarigani_pal = .data:0x0045B560; // type:object size:0x40 scope:global align:32
+inv_mwin_34kaeru_pal = .data:0x0045B5A0; // type:object size:0x40 scope:global align:32
+inv_mwin_35medaka_pal = .data:0x0045B5E0; // type:object size:0x40 scope:global align:32
+inv_mwin_36kurage_pal = .data:0x0045B620; // type:object size:0x40 scope:global align:32
+inv_mwin_37suzuki_pal = .data:0x0045B660; // type:object size:0x40 scope:global align:32
+inv_mwin_38tai_pal = .data:0x0045B6A0; // type:object size:0x40 scope:global align:32
+inv_mwin_40piraruku_pal = .data:0x0045B6E0; // type:object size:0x40 scope:global align:32
+inv_mwin_39ishidai_tex = .data:0x0045B720; // type:object size:0x200 scope:global align:32
+inv_mwin_33zarigani_tex = .data:0x0045B920; // type:object size:0x200 scope:global align:32
+inv_mwin_34kaeru_tex = .data:0x0045BB20; // type:object size:0x200 scope:global align:32
+inv_mwin_35medaka_tex = .data:0x0045BD20; // type:object size:0x200 scope:global align:32
+inv_mwin_36kurage_tex = .data:0x0045BF20; // type:object size:0x200 scope:global align:32
+inv_mwin_37suzuki_tex = .data:0x0045C120; // type:object size:0x200 scope:global align:32
+inv_mwin_38tai_tex = .data:0x0045C320; // type:object size:0x200 scope:global align:32
+inv_mwin_40piraruku_tex = .data:0x0045C520; // type:object size:0x200 scope:global align:32
+inv_mwin_taisou_pal = .data:0x0045C720; // type:object size:0x20 scope:global align:32
+inv_mwin_taisou_tex = .data:0x0045C740; // type:object size:0x200 scope:global align:32
+inv_mwin_yashi_pal = .data:0x0045C940; // type:object size:0x20 scope:global align:32
+inv_mwin_yashi_tex = .data:0x0045C960; // type:object size:0x200 scope:global align:32
+dna_win_icon_pal = .data:0x0045CB60; // type:object size:0x20 scope:global align:32
+dna_win_nuno_tex_rgb_ci4_pal = .data:0x0045CB80; // type:object size:0x20 scope:global align:32
+dna_win_sw4_tex_rgb_ci4_pal = .data:0x0045CBA0; // type:object size:0x20 scope:global align:32
+dna_win_sw1_tex_rgb_ci4_pal = .data:0x0045CBC0; // type:object size:0x20 scope:global align:32
+dna_win_sw2_tex_rgb_ci4_pal = .data:0x0045CBE0; // type:object size:0x20 scope:global align:32
+dna_win_sw3_tex_rgb_ci4_pal = .data:0x0045CC00; // type:object size:0x20 scope:global align:32
+nam_win_fuki_tex = .data:0x0045CC20; // type:object size:0x800 scope:local align:32
+dna_win_aw1_tex = .data:0x0045D420; // type:object size:0x400 scope:global align:32
+dna_win_aw2_tex = .data:0x0045D820; // type:object size:0x400 scope:global align:32
+dna_win_aw3_tex = .data:0x0045DC20; // type:object size:0x200 scope:global align:32
+dna_win_icon_tex = .data:0x0045DE20; // type:object size:0x800 scope:global align:32
+dna_win_batu_tex = .data:0x0045E620; // type:object size:0x100 scope:global align:32
+dna_win_aw4_tex = .data:0x0045E720; // type:object size:0x80 scope:global align:32
+dna_win_nuno_tex_rgb_ci4 = .data:0x0045E7A0; // type:object size:0x200 scope:global align:32
+dna_win_sw4_tex_rgb_ci4 = .data:0x0045E9A0; // type:object size:0x200 scope:global align:32
+dna_win_sw1_tex_rgb_ci4 = .data:0x0045EBA0; // type:object size:0x400 scope:global align:32
+dna_win_sw2_tex_rgb_ci4 = .data:0x0045EFA0; // type:object size:0x400 scope:global align:32
+dna_win_sw3_tex_rgb_ci4 = .data:0x0045F3A0; // type:object size:0x200 scope:global align:32
+dna_win_v = .data:0x0045F5A0; // type:object size:0x600 scope:global align:8
+dna_win_w11_model = .data:0x0045FBA0; // type:object size:0x30 scope:global align:8
+dna_win_ue_model = .data:0x0045FBD0; // type:object size:0xB0 scope:global align:8
+dna_win_w1T_model = .data:0x0045FC80; // type:object size:0x30 scope:global align:8
+dna_win_w2T_model = .data:0x0045FCB0; // type:object size:0x30 scope:global align:8
+dna_win_w3T_model = .data:0x0045FCE0; // type:object size:0x30 scope:global align:8
+dna_win_w4T_model = .data:0x0045FD10; // type:object size:0x30 scope:global align:8
+dna_win_w5T_model = .data:0x0045FD40; // type:object size:0x30 scope:global align:8
+dna_win_w6T_model = .data:0x0045FD70; // type:object size:0x30 scope:global align:8
+dna_win_w7T_model = .data:0x0045FDA0; // type:object size:0x30 scope:global align:8
+dna_win_w8T_model = .data:0x0045FDD0; // type:object size:0x30 scope:global align:8
+dna_win_w9T_model = .data:0x0045FE00; // type:object size:0x30 scope:global align:8
+dna_win_w10T_model = .data:0x0045FE30; // type:object size:0x30 scope:global align:8
+dna_win_fukiT_model = .data:0x0045FE60; // type:object size:0x38 scope:global align:8
+dna_win_iconT_model = .data:0x0045FE98; // type:object size:0x40 scope:global align:8
+dna_win_garaT_model = .data:0x0045FED8; // type:object size:0x40 scope:global align:8
+dna_win_mode = .data:0x0045FF18; // type:object size:0x20 scope:global align:8
+dna_win_model = .data:0x0045FF38; // type:object size:0x98 scope:global align:8
+kti_win_hate_pal = .data:0x0045FFE0; // type:object size:0x20 scope:global align:32
+kti_win_nuno_tex_rgb_ci4_pal = .data:0x00460000; // type:object size:0x20 scope:global align:32
+kti_win_sw1_tex_rgb_ci4_pal = .data:0x00460020; // type:object size:0x20 scope:global align:32
+kti_win_sw2_tex_rgb_ci4_pal = .data:0x00460040; // type:object size:0x20 scope:global align:32
+kti_win_sw3_tex_rgb_ci4_pal = .data:0x00460060; // type:object size:0x20 scope:global align:32
+kti_win_sw4_tex_rgb_ci4_pal = .data:0x00460080; // type:object size:0x20 scope:global align:32
+kti_win_sw5_tex_rgb_ci4_pal = .data:0x004600A0; // type:object size:0x20 scope:global align:32
+kti_win_sw6_tex_rgb_ci4_pal = .data:0x004600C0; // type:object size:0x20 scope:global align:32
+kti_win_sw7_tex_rgb_ci4_pal = .data:0x004600E0; // type:object size:0x20 scope:global align:32
+kti_win_w1_tex = .data:0x00460100; // type:object size:0x400 scope:global align:32
+kti_win_w2_tex = .data:0x00460500; // type:object size:0x400 scope:global align:32
+kti_win_w3_tex = .data:0x00460900; // type:object size:0x200 scope:global align:32
+kti_win_w4_tex = .data:0x00460B00; // type:object size:0x400 scope:global align:32
+kti_win_w5_tex = .data:0x00460F00; // type:object size:0x400 scope:global align:32
+kti_win_fuki_tex = .data:0x00461300; // type:object size:0x800 scope:global align:32
+kti_win_hate_tex = .data:0x00461B00; // type:object size:0x800 scope:global align:32
+kti_win_nuno_tex_rgb_ci4 = .data:0x00462300; // type:object size:0x200 scope:global align:32
+kti_win_sw1_tex_rgb_ci4 = .data:0x00462500; // type:object size:0x400 scope:global align:32
+kti_win_sw2_tex_rgb_ci4 = .data:0x00462900; // type:object size:0x400 scope:global align:32
+kti_win_sw3_tex_rgb_ci4 = .data:0x00462D00; // type:object size:0x400 scope:global align:32
+kti_win_sw4_tex_rgb_ci4 = .data:0x00463100; // type:object size:0x400 scope:global align:32
+kti_win_sw5_tex_rgb_ci4 = .data:0x00463500; // type:object size:0x400 scope:global align:32
+kti_win_sw6_tex_rgb_ci4 = .data:0x00463900; // type:object size:0x400 scope:global align:32
+kti_win_sw7_tex_rgb_ci4 = .data:0x00463D00; // type:object size:0x400 scope:global align:32
+kti_win_v = .data:0x00464100; // type:object size:0x7A0 scope:global align:8
+kti_win_sen_model = .data:0x004648A0; // type:object size:0x38 scope:global align:8
+kti_win_ueT_model = .data:0x004648D8; // type:object size:0xC8 scope:global align:8
+kti_win_fukiT_model = .data:0x004649A0; // type:object size:0x38 scope:global align:8
+kti_win_kafuT_model = .data:0x004649D8; // type:object size:0x40 scope:global align:8
+kti_win_sw1T_model = .data:0x00464A18; // type:object size:0x30 scope:global align:8
+kti_win_sw2T_model = .data:0x00464A48; // type:object size:0x30 scope:global align:8
+kti_win_sw3T_model = .data:0x00464A78; // type:object size:0x30 scope:global align:8
+kti_win_sw4T_model = .data:0x00464AA8; // type:object size:0x30 scope:global align:8
+kti_win_sw5T_model = .data:0x00464AD8; // type:object size:0x30 scope:global align:8
+kti_win_sw6T_model = .data:0x00464B08; // type:object size:0x30 scope:global align:8
+kti_win_sw7T_model = .data:0x00464B38; // type:object size:0x30 scope:global align:8
+kti_win_sw8T_model = .data:0x00464B68; // type:object size:0x30 scope:global align:8
+kti_win_sw9T_model = .data:0x00464B98; // type:object size:0x30 scope:global align:8
+kti_win_sw10T_model = .data:0x00464BC8; // type:object size:0x30 scope:global align:8
+kti_win_sw11T_model = .data:0x00464BF8; // type:object size:0x30 scope:global align:8
+kti_win_sw12T_model = .data:0x00464C28; // type:object size:0x30 scope:global align:8
+kti_win_sw13T_model = .data:0x00464C58; // type:object size:0x30 scope:global align:8
+kti_win_sw14T_model = .data:0x00464C88; // type:object size:0x30 scope:global align:8
+ephrase_win_mode = .data:0x00464CB8; // type:object size:0x20 scope:global align:8
+ephrase_win_model = .data:0x00464CD8; // type:object size:0xC8 scope:global align:8
+mra_win_bag_pal = .data:0x00464DA0; // type:object size:0x20 scope:global align:32
+mra_win_shita_tex_rgb_ci4_pal = .data:0x00464DC0; // type:object size:0x20 scope:global align:32
+mra_win_sw1_tex_rgb_ci4_pal = .data:0x00464DE0; // type:object size:0x20 scope:global align:32
+mra_win_sw2_tex_rgb_ci4_pal = .data:0x00464E00; // type:object size:0x20 scope:global align:32
+mra_win_sw3_tex_rgb_ci4_pal = .data:0x00464E20; // type:object size:0x20 scope:global align:32
+mra_win_sw4_tex_rgb_ci4_pal = .data:0x00464E40; // type:object size:0x20 scope:global align:32
+mra_win_sw5_tex_rgb_ci4_pal = .data:0x00464E60; // type:object size:0x20 scope:global align:32
+mra_win_sw6_tex_rgb_ci4_pal = .data:0x00464E80; // type:object size:0x20 scope:global align:32
+mra_win_sw7_tex_rgb_ci4_pal = .data:0x00464EA0; // type:object size:0x20 scope:global align:32
+mra_win_w1_tex = .data:0x00464EC0; // type:object size:0x400 scope:local align:32
+mra_win_w2_tex = .data:0x004652C0; // type:object size:0x400 scope:local align:32
+mra_win_w3_tex = .data:0x004656C0; // type:object size:0x200 scope:local align:32
+mra_win_w4_tex = .data:0x004658C0; // type:object size:0x400 scope:local align:32
+mra_win_w5_tex = .data:0x00465CC0; // type:object size:0x400 scope:local align:32
+mra_win_fuki_tex = .data:0x004660C0; // type:object size:0x800 scope:local align:32
+mra_win_bag_tex = .data:0x004668C0; // type:object size:0x800 scope:global align:32
+mra_win_yaji1_tex = .data:0x004670C0; // type:object size:0x400 scope:global align:32
+mra_win_yaji2_tex = .data:0x004674C0; // type:object size:0x100 scope:global align:32
+mra_win_shita_tex_rgb_ci4 = .data:0x004675C0; // type:object size:0x200 scope:global align:32
+mra_win_sw1_tex_rgb_ci4 = .data:0x004677C0; // type:object size:0x400 scope:global align:32
+mra_win_sw2_tex_rgb_ci4 = .data:0x00467BC0; // type:object size:0x400 scope:global align:32
+mra_win_sw3_tex_rgb_ci4 = .data:0x00467FC0; // type:object size:0x400 scope:global align:32
+mra_win_sw4_tex_rgb_ci4 = .data:0x004683C0; // type:object size:0x400 scope:global align:32
+mra_win_sw5_tex_rgb_ci4 = .data:0x004687C0; // type:object size:0x400 scope:global align:32
+mra_win_sw6_tex_rgb_ci4 = .data:0x00468BC0; // type:object size:0x400 scope:global align:32
+mra_win_sw7_tex_rgb_ci4 = .data:0x00468FC0; // type:object size:0x400 scope:global align:32
+mra_win_v = .data:0x004693C0; // type:object size:0x730 scope:global align:8
+mra_win_yaji_model = .data:0x00469AF0; // type:object size:0x50 scope:global align:8
+mra_win_ueT_model = .data:0x00469B40; // type:object size:0xC8 scope:global align:8
+mra_win_fukiT_model = .data:0x00469C08; // type:object size:0x38 scope:global align:8
+mra_win_bagT_model = .data:0x00469C40; // type:object size:0x40 scope:global align:8
+mra_win_sw1T_model = .data:0x00469C80; // type:object size:0x30 scope:global align:8
+mra_win_sw2T_model = .data:0x00469CB0; // type:object size:0x30 scope:global align:8
+mra_win_sw3T_model = .data:0x00469CE0; // type:object size:0x30 scope:global align:8
+mra_win_sw4T_model = .data:0x00469D10; // type:object size:0x30 scope:global align:8
+mra_win_sw5T_model = .data:0x00469D40; // type:object size:0x30 scope:global align:8
+mra_win_sw6T_model = .data:0x00469D70; // type:object size:0x30 scope:global align:8
+mra_win_sw7T_model = .data:0x00469DA0; // type:object size:0x30 scope:global align:8
+mra_win_sw8T_model = .data:0x00469DD0; // type:object size:0x30 scope:global align:8
+mra_win_sw9T_model = .data:0x00469E00; // type:object size:0x30 scope:global align:8
+mra_win_sw10T_model = .data:0x00469E30; // type:object size:0x30 scope:global align:8
+mra_win_sw11T_model = .data:0x00469E60; // type:object size:0x30 scope:global align:8
+mra_win_sw12T_model = .data:0x00469E90; // type:object size:0x30 scope:global align:8
+mra_win_sw13T_model = .data:0x00469EC0; // type:object size:0x30 scope:global align:8
+mra_win_sw14T_model = .data:0x00469EF0; // type:object size:0x30 scope:global align:8
+mra_win_mode = .data:0x00469F20; // type:object size:0x20 scope:global align:8
+mra_win_model = .data:0x00469F40; // type:object size:0xC0 scope:global align:8
+nam_win_enpitu_pal = .data:0x0046A000; // type:object size:0x20 scope:global align:32
+nam_win_uzu_tex_rgb_ci4_pal = .data:0x0046A020; // type:object size:0x20 scope:global align:32
+nam_win_sw1_tex_rgb_ci4_pal = .data:0x0046A040; // type:object size:0x20 scope:global align:32
+nam_win_sw2_tex_rgb_ci4_pal = .data:0x0046A060; // type:object size:0x20 scope:global align:32
+nam_win_sw3_tex_rgb_ci4_pal = .data:0x0046A080; // type:object size:0x20 scope:global align:32
+nam_win_sw4_tex_rgb_ci4_pal = .data:0x0046A0A0; // type:object size:0x20 scope:global align:32
+nam_win_sw5_tex_rgb_ci4_pal = .data:0x0046A0C0; // type:object size:0x20 scope:global align:32
+nam_win_sw6_tex_rgb_ci4_pal = .data:0x0046A0E0; // type:object size:0x20 scope:global align:32
+nam_win_sw7_tex_rgb_ci4_pal = .data:0x0046A100; // type:object size:0x20 scope:global align:32
+nam_win_w1_tex = .data:0x0046A120; // type:object size:0x400 scope:global align:32
+nam_win_w2_tex = .data:0x0046A520; // type:object size:0x400 scope:global align:32
+nam_win_w3_tex = .data:0x0046A920; // type:object size:0x200 scope:global align:32
+nam_win_w4_tex = .data:0x0046AB20; // type:object size:0x400 scope:global align:32
+nam_win_w5_tex = .data:0x0046AF20; // type:object size:0x400 scope:global align:32
+nam_win_fuki_tex = .data:0x0046B320; // type:object size:0x800 scope:local align:32
+nam_win_enpitu_tex = .data:0x0046BB20; // type:object size:0x800 scope:global align:32
+nam_win_waku1_tex = .data:0x0046C320; // type:object size:0x200 scope:global align:32
+nam_win_waku2_tex = .data:0x0046C520; // type:object size:0x100 scope:global align:32
+nam_win_uzu_tex_rgb_ci4 = .data:0x0046C620; // type:object size:0x200 scope:global align:32
+nam_win_sw1_tex_rgb_ci4 = .data:0x0046C820; // type:object size:0x400 scope:global align:32
+nam_win_sw2_tex_rgb_ci4 = .data:0x0046CC20; // type:object size:0x400 scope:global align:32
+nam_win_sw3_tex_rgb_ci4 = .data:0x0046D020; // type:object size:0x400 scope:global align:32
+nam_win_sw4_tex_rgb_ci4 = .data:0x0046D420; // type:object size:0x400 scope:global align:32
+nam_win_sw5_tex_rgb_ci4 = .data:0x0046D820; // type:object size:0x400 scope:global align:32
+nam_win_sw6_tex_rgb_ci4 = .data:0x0046DC20; // type:object size:0x400 scope:global align:32
+nam_win_sw7_tex_rgb_ci4 = .data:0x0046E020; // type:object size:0x400 scope:global align:32
+nam_win_v = .data:0x0046E420; // type:object size:0x730 scope:global align:8
+nam_win_nm_model = .data:0x0046EB50; // type:object size:0x50 scope:global align:8
+nam_win_ueT_model = .data:0x0046EBA0; // type:object size:0xC8 scope:global align:8
+nam_win_fukiT_model = .data:0x0046EC68; // type:object size:0x38 scope:global align:8
+nam_win_enpituT_model = .data:0x0046ECA0; // type:object size:0x40 scope:global align:8
+nam_win_sw1T_model = .data:0x0046ECE0; // type:object size:0x30 scope:global align:8
+nam_win_sw2T_model = .data:0x0046ED10; // type:object size:0x30 scope:global align:8
+nam_win_sw3T_model = .data:0x0046ED40; // type:object size:0x30 scope:global align:8
+nam_win_sw4T_model = .data:0x0046ED70; // type:object size:0x30 scope:global align:8
+nam_win_sw5T_model = .data:0x0046EDA0; // type:object size:0x30 scope:global align:8
+nam_win_sw6T_model = .data:0x0046EDD0; // type:object size:0x30 scope:global align:8
+nam_win_sw7T_model = .data:0x0046EE00; // type:object size:0x30 scope:global align:8
+nam_win_sw8T_model = .data:0x0046EE30; // type:object size:0x30 scope:global align:8
+nam_win_sw9T_model = .data:0x0046EE60; // type:object size:0x30 scope:global align:8
+nam_win_sw10T_model = .data:0x0046EE90; // type:object size:0x30 scope:global align:8
+nam_win_sw11T_model = .data:0x0046EEC0; // type:object size:0x30 scope:global align:8
+nam_win_sw12T_model = .data:0x0046EEF0; // type:object size:0x30 scope:global align:8
+nam_win_sw13T_model = .data:0x0046EF20; // type:object size:0x30 scope:global align:8
+nam_win_sw14T_model = .data:0x0046EF50; // type:object size:0x30 scope:global align:8
+nam_win_mode = .data:0x0046EF80; // type:object size:0x20 scope:global align:8
+nam_win_model = .data:0x0046EFA0; // type:object size:0xB0 scope:global align:8
+req_win_kao_pal = .data:0x0046F060; // type:object size:0x20 scope:global align:32
+req_win_nuno_tex_rgb_ci4_pal = .data:0x0046F080; // type:object size:0x20 scope:global align:32
+req_win_sw4_tex_rgb_ci4_pal = .data:0x0046F0A0; // type:object size:0x20 scope:global align:32
+req_win_sw1_tex_rgb_ci4_pal = .data:0x0046F0C0; // type:object size:0x20 scope:global align:32
+req_win_sw2_tex_rgb_ci4_pal = .data:0x0046F0E0; // type:object size:0x20 scope:global align:32
+req_win_sw3_tex_rgb_ci4_pal = .data:0x0046F100; // type:object size:0x20 scope:global align:32
+req_win_fuki_tex = .data:0x0046F120; // type:object size:0x800 scope:global align:32
+req_win_w1_tex = .data:0x0046F920; // type:object size:0x400 scope:local align:32
+req_win_w2_tex = .data:0x0046FD20; // type:object size:0x400 scope:local align:32
+req_win_w3_tex = .data:0x00470120; // type:object size:0x200 scope:local align:32
+req_win_kao_tex = .data:0x00470320; // type:object size:0x800 scope:global align:32
+req_win_sen2_tex = .data:0x00470B20; // type:object size:0xC00 scope:global align:32
+req_win_w4_tex = .data:0x00471720; // type:object size:0x80 scope:local align:32
+req_win_nuno_tex_rgb_ci4 = .data:0x004717A0; // type:object size:0x200 scope:global align:32
+req_win_sw4_tex_rgb_ci4 = .data:0x004719A0; // type:object size:0x200 scope:global align:32
+req_win_sw1_tex_rgb_ci4 = .data:0x00471BA0; // type:object size:0x400 scope:global align:32
+req_win_sw2_tex_rgb_ci4 = .data:0x00471FA0; // type:object size:0x400 scope:global align:32
+req_win_sw3_tex_rgb_ci4 = .data:0x004723A0; // type:object size:0x200 scope:global align:32
+req_win_v = .data:0x004725A0; // type:object size:0x600 scope:global align:8
+req_win_req_model = .data:0x00472BA0; // type:object size:0x38 scope:global align:8
+req_win_w11_model = .data:0x00472BD8; // type:object size:0x30 scope:global align:8
+req_win_ueT_model = .data:0x00472C08; // type:object size:0xB0 scope:global align:8
+req_win_fukiT_model = .data:0x00472CB8; // type:object size:0x38 scope:global align:8
+req_win_iconT_model = .data:0x00472CF0; // type:object size:0x40 scope:global align:8
+req_win_w1T_model = .data:0x00472D30; // type:object size:0x30 scope:global align:8
+req_win_w2T_model = .data:0x00472D60; // type:object size:0x30 scope:global align:8
+req_win_w3T_model = .data:0x00472D90; // type:object size:0x30 scope:global align:8
+req_win_w4T_model = .data:0x00472DC0; // type:object size:0x30 scope:global align:8
+req_win_w5T_model = .data:0x00472DF0; // type:object size:0x30 scope:global align:8
+req_win_w6T_model = .data:0x00472E20; // type:object size:0x30 scope:global align:8
+req_win_w7T_model = .data:0x00472E50; // type:object size:0x30 scope:global align:8
+req_win_w8T_model = .data:0x00472E80; // type:object size:0x30 scope:global align:8
+req_win_w9T_model = .data:0x00472EB0; // type:object size:0x30 scope:global align:8
+req_win_w10T_model = .data:0x00472EE0; // type:object size:0x30 scope:global align:8
+req_win_mode = .data:0x00472F10; // type:object size:0x20 scope:global align:8
+req_win_model = .data:0x00472F30; // type:object size:0x98 scope:global align:8
+rst_win_kao2_pal = .data:0x00472FE0; // type:object size:0x20 scope:global align:32
+rst_win_bittkuri_tex_rgb_ci4_pal = .data:0x00473000; // type:object size:0x20 scope:global align:32
+rst_win_sw4_tex_rgb_ci4_pal = .data:0x00473020; // type:object size:0x20 scope:global align:32
+rst_win_sw1_tex_rgb_ci4_pal = .data:0x00473040; // type:object size:0x20 scope:global align:32
+rst_win_sw2_tex_rgb_ci4_pal = .data:0x00473060; // type:object size:0x20 scope:global align:32
+rst_win_sw3_tex_rgb_ci4_pal = .data:0x00473080; // type:object size:0x20 scope:global align:32
+rst_win_kagi2_tex = .data:0x004730A0; // type:object size:0x80 scope:global align:32
+rst_win_seri_tex = .data:0x00473120; // type:object size:0x400 scope:global align:32
+req_win_w1_tex = .data:0x00473520; // type:object size:0x400 scope:local align:32
+req_win_w2_tex = .data:0x00473920; // type:object size:0x400 scope:local align:32
+req_win_w3_tex = .data:0x00473D20; // type:object size:0x200 scope:local align:32
+rst_win_kao_tex = .data:0x00473F20; // type:object size:0x800 scope:global align:32
+rst_win_kagi1_tex = .data:0x00474720; // type:object size:0x80 scope:global align:32
+req_win_w4_tex = .data:0x004747A0; // type:object size:0x80 scope:local align:32
+rst_win_bittkuri_tex_rgb_ci4 = .data:0x00474820; // type:object size:0x200 scope:global align:32
+rst_win_sw4_tex_rgb_ci4 = .data:0x00474A20; // type:object size:0x200 scope:global align:32
+rst_win_sw1_tex_rgb_ci4 = .data:0x00474C20; // type:object size:0x400 scope:global align:32
+rst_win_sw2_tex_rgb_ci4 = .data:0x00475020; // type:object size:0x400 scope:global align:32
+rst_win_sw3_tex_rgb_ci4 = .data:0x00475420; // type:object size:0x200 scope:global align:32
+rst_win_v = .data:0x00475620; // type:object size:0x680 scope:global align:8
+rst_win_fuki_model = .data:0x00475CA0; // type:object size:0x40 scope:global align:8
+rst_win_waku11_model = .data:0x00475CE0; // type:object size:0x30 scope:global align:8
+rst_win_ueT_model = .data:0x00475D10; // type:object size:0xB0 scope:global align:8
+rst_win_kaoT_model = .data:0x00475DC0; // type:object size:0x40 scope:global align:8
+rst_win_kagiT_model = .data:0x00475E00; // type:object size:0x50 scope:global align:8
+rst_win_waku1T_model = .data:0x00475E50; // type:object size:0x30 scope:global align:8
+rst_win_waku2T_model = .data:0x00475E80; // type:object size:0x30 scope:global align:8
+rst_win_waku3T_model = .data:0x00475EB0; // type:object size:0x30 scope:global align:8
+rst_win_waku4T_model = .data:0x00475EE0; // type:object size:0x30 scope:global align:8
+rst_win_waku5T_model = .data:0x00475F10; // type:object size:0x30 scope:global align:8
+rst_win_waku6T_model = .data:0x00475F40; // type:object size:0x30 scope:global align:8
+rst_win_waku7T_model = .data:0x00475F70; // type:object size:0x30 scope:global align:8
+rst_win_waku8T_model = .data:0x00475FA0; // type:object size:0x30 scope:global align:8
+rst_win_waku9T_model = .data:0x00475FD0; // type:object size:0x30 scope:global align:8
+rst_win_waku10T_model = .data:0x00476000; // type:object size:0x30 scope:global align:8
+ledit_common_mode = .data:0x00476030; // type:object size:0x28 scope:global align:8
+rst_win_mode = .data:0x00476058; // type:object size:0x20 scope:global align:8
+rst_win_model = .data:0x00476078; // type:object size:0x98 scope:global align:8
+shi_win_yashi_pal = .data:0x00476120; // type:object size:0x20 scope:global align:32
+shi_win_nuno_tex_rgb_ci4_pal = .data:0x00476140; // type:object size:0x20 scope:global align:32
+shi_win_w4_tex_rgb_ci4_pal = .data:0x00476160; // type:object size:0x20 scope:global align:32
+shi_win_w1_tex_rgb_ci4_pal = .data:0x00476180; // type:object size:0x20 scope:global align:32
+shi_win_w2_tex_rgb_ci4_pal = .data:0x004761A0; // type:object size:0x20 scope:global align:32
+shi_win_w3_tex_rgb_ci4_pal = .data:0x004761C0; // type:object size:0x20 scope:global align:32
+mra_win_w1_tex = .data:0x004761E0; // type:object size:0x400 scope:local align:32
+mra_win_w2_tex = .data:0x004765E0; // type:object size:0x400 scope:local align:32
+mra_win_w3_tex = .data:0x004769E0; // type:object size:0x200 scope:local align:32
+mra_win_w4_tex = .data:0x00476BE0; // type:object size:0x400 scope:local align:32
+mra_win_w5_tex = .data:0x00476FE0; // type:object size:0x400 scope:local align:32
+mra_win_fuki_tex = .data:0x004773E0; // type:object size:0x800 scope:local align:32
+shi_win_yashi_tex = .data:0x00477BE0; // type:object size:0x800 scope:global align:32
+shi_win_yajirushi1_tex = .data:0x004783E0; // type:object size:0x400 scope:global align:32
+shi_win_yajirushi2_tex = .data:0x004787E0; // type:object size:0x100 scope:global align:32
+shi_win_nuno_tex_rgb_ci4 = .data:0x004788E0; // type:object size:0x200 scope:global align:32
+shi_win_w4_tex_rgb_ci4 = .data:0x00478AE0; // type:object size:0x80 scope:global align:32
+shi_win_w1_tex_rgb_ci4 = .data:0x00478B60; // type:object size:0x400 scope:global align:32
+shi_win_w2_tex_rgb_ci4 = .data:0x00478F60; // type:object size:0x400 scope:global align:32
+shi_win_w3_tex_rgb_ci4 = .data:0x00479360; // type:object size:0x200 scope:global align:32
+shi_win_v = .data:0x00479560; // type:object size:0x670 scope:global align:8
+shi_win_w11_model = .data:0x00479BD0; // type:object size:0x30 scope:global align:8
+shi_win_yaji_model = .data:0x00479C00; // type:object size:0x50 scope:global align:8
+shi_win_w1T_model = .data:0x00479C50; // type:object size:0x30 scope:global align:8
+shi_win_w2T_model = .data:0x00479C80; // type:object size:0x30 scope:global align:8
+shi_win_w3T_model = .data:0x00479CB0; // type:object size:0x30 scope:global align:8
+shi_win_w4T_model = .data:0x00479CE0; // type:object size:0x30 scope:global align:8
+shi_win_w5T_model = .data:0x00479D10; // type:object size:0x30 scope:global align:8
+shi_win_w6T_model = .data:0x00479D40; // type:object size:0x30 scope:global align:8
+shi_win_w7T_model = .data:0x00479D70; // type:object size:0x30 scope:global align:8
+shi_win_w8T_model = .data:0x00479DA0; // type:object size:0x30 scope:global align:8
+shi_win_w9T_model = .data:0x00479DD0; // type:object size:0x30 scope:global align:8
+shi_win_w10T_model = .data:0x00479E00; // type:object size:0x30 scope:global align:8
+shi_win_ueT_model = .data:0x00479E30; // type:object size:0xC8 scope:global align:8
+shi_win_fukiT_model = .data:0x00479EF8; // type:object size:0x38 scope:global align:8
+shi_win_iconT_model = .data:0x00479F30; // type:object size:0x40 scope:global align:8
+shi_win_mode = .data:0x00479F70; // type:object size:0x20 scope:global align:8
+shi_win_model = .data:0x00479F90; // type:object size:0x98 scope:global align:8
+lat_letter01_v = .data:0x0047A040; // type:object size:0x300 scope:global align:32
+lat_letter01_win_model = .data:0x0047A340; // type:object size:0x58 scope:global align:8
+lat_letter01_winT_model = .data:0x0047A398; // type:object size:0xB0 scope:global align:8
+lat_letter01_sen_model = .data:0x0047A448; // type:object size:0x30 scope:global align:8
+lat_letter01_model = .data:0x0047A478; // type:object size:0x18 scope:global align:8
+lat_letter02_v = .data:0x0047A490; // type:object size:0x500 scope:global align:8
+lat_letter02_model = .data:0x0047A990; // type:object size:0x108 scope:global align:8
+lat_letter02_sen_model = .data:0x0047AA98; // type:object size:0x30 scope:global align:8
+lat_letter03_v = .data:0x0047AAC8; // type:object size:0x430 scope:global align:8
+lat_letter03_win_model = .data:0x0047AEF8; // type:object size:0x78 scope:global align:8
+lat_letter03_winT_model = .data:0x0047AF70; // type:object size:0x108 scope:global align:8
+lat_letter03_sen_model = .data:0x0047B078; // type:object size:0x30 scope:global align:8
+lat_letter03_model = .data:0x0047B0A8; // type:object size:0x18 scope:global align:8
+lat_letter04_v = .data:0x0047B0C0; // type:object size:0x280 scope:global align:8
+lat_letter04_win_model = .data:0x0047B340; // type:object size:0xB0 scope:global align:8
+lat_letter04_winT_model = .data:0x0047B3F0; // type:object size:0x98 scope:global align:8
+lat_letter04_senT_model = .data:0x0047B488; // type:object size:0x40 scope:global align:8
+lat_letter04_model = .data:0x0047B4C8; // type:object size:0x18 scope:global align:8
+lat_letter05_v = .data:0x0047B4E0; // type:object size:0x240 scope:global align:8
+lat_letter05_model = .data:0x0047B720; // type:object size:0xB0 scope:global align:8
+lat_letter06_v = .data:0x0047B7D0; // type:object size:0x500 scope:global align:8
+lat_letter06_model = .data:0x0047BCD0; // type:object size:0x130 scope:global align:8
+lat_letter06_sen_model = .data:0x0047BE00; // type:object size:0x38 scope:global align:8
+lat_letter07_v = .data:0x0047BE38; // type:object size:0x280 scope:global align:8
+lat_letter07_win_model = .data:0x0047C0B8; // type:object size:0x78 scope:global align:8
+lat_letter07_winT_model = .data:0x0047C130; // type:object size:0x50 scope:global align:8
+lat_letter07_sen_model = .data:0x0047C180; // type:object size:0x38 scope:global align:8
+lat_letter07_model = .data:0x0047C1B8; // type:object size:0x18 scope:global align:8
+lat_letter08_v = .data:0x0047C1D0; // type:object size:0x280 scope:global align:8
+lat_letter08_win_model = .data:0x0047C450; // type:object size:0x88 scope:global align:8
+lat_letter08_winT_model = .data:0x0047C4D8; // type:object size:0x58 scope:global align:8
+lat_letter08_sen_model = .data:0x0047C530; // type:object size:0x30 scope:global align:8
+lat_letter08_model = .data:0x0047C560; // type:object size:0x18 scope:global align:8
+lat_letter09_v = .data:0x0047C578; // type:object size:0x2E0 scope:global align:8
+lat_letter09_model = .data:0x0047C858; // type:object size:0xD0 scope:global align:8
+lat_letter10_v = .data:0x0047C928; // type:object size:0x340 scope:global align:8
+lat_letter10_model = .data:0x0047CC68; // type:object size:0x100 scope:global align:8
+lat_letter10_sen_model = .data:0x0047CD68; // type:object size:0x38 scope:global align:8
+lat_letter11_v = .data:0x0047CDA0; // type:object size:0xE0 scope:global align:8
+lat_letter11_model = .data:0x0047CE80; // type:object size:0x80 scope:global align:8
+lat_letter12_v = .data:0x0047CF00; // type:object size:0xD0 scope:global align:8
+lat_letter12_model = .data:0x0047CFD0; // type:object size:0x60 scope:global align:8
+lat_letter12_sen_model = .data:0x0047D030; // type:object size:0x38 scope:global align:8
+lat_letter13_v = .data:0x0047D068; // type:object size:0x240 scope:global align:8
+lat_letter13_win_model = .data:0x0047D2A8; // type:object size:0x38 scope:global align:8
+lat_letter13_winT_model = .data:0x0047D2E0; // type:object size:0x70 scope:global align:8
+lat_letter13_model = .data:0x0047D350; // type:object size:0x18 scope:global align:8
+lat_letter14_v = .data:0x0047D368; // type:object size:0x100 scope:global align:8
+lat_letter14_win_model = .data:0x0047D468; // type:object size:0x38 scope:global align:8
+lat_letter14_winT_model = .data:0x0047D4A0; // type:object size:0x88 scope:global align:8
+lat_letter14_model = .data:0x0047D528; // type:object size:0x18 scope:global align:8
+lat_letter15_v = .data:0x0047D540; // type:object size:0x80 scope:global align:8
+lat_letter15_win_model = .data:0x0047D5C0; // type:object size:0x38 scope:global align:8
+lat_letter15_winT_model = .data:0x0047D5F8; // type:object size:0x38 scope:global align:8
+lat_letter15_model = .data:0x0047D630; // type:object size:0x18 scope:global align:8
+lat_letter16_v = .data:0x0047D648; // type:object size:0xC0 scope:global align:8
+lat_letter16_win_model = .data:0x0047D708; // type:object size:0x30 scope:global align:8
+lat_letter16_winT_model = .data:0x0047D738; // type:object size:0x30 scope:global align:8
+lat_letter16_sen_model = .data:0x0047D768; // type:object size:0x38 scope:global align:8
+lat_letter16_model = .data:0x0047D7A0; // type:object size:0x18 scope:global align:8
+lat_letter17_v = .data:0x0047D7B8; // type:object size:0x80 scope:global align:8
+lat_letter17_model = .data:0x0047D838; // type:object size:0x38 scope:global align:8
+lat_letter17_sen_model = .data:0x0047D870; // type:object size:0x38 scope:global align:8
+lat_letter18_v = .data:0x0047D8A8; // type:object size:0x280 scope:global align:8
+lat_letter18_win_model = .data:0x0047DB28; // type:object size:0x30 scope:global align:8
+lat_letter18_winT_model = .data:0x0047DB58; // type:object size:0x50 scope:global align:8
+lat_letter18_sen_model = .data:0x0047DBA8; // type:object size:0x58 scope:global align:8
+lat_letter18_model = .data:0x0047DC00; // type:object size:0x18 scope:global align:8
+lat_letter19_v = .data:0x0047DC18; // type:object size:0x180 scope:global align:8
+lat_letter19_model = .data:0x0047DD98; // type:object size:0xB0 scope:global align:8
+lat_letter20_v = .data:0x0047DE48; // type:object size:0x80 scope:global align:8
+lat_letter20_model = .data:0x0047DEC8; // type:object size:0x38 scope:global align:8
+lat_letter20_sen_model = .data:0x0047DF00; // type:object size:0x40 scope:global align:8
+lat_letter21_v = .data:0x0047DF40; // type:object size:0x100 scope:global align:8
+lat_letter21_model = .data:0x0047E040; // type:object size:0x38 scope:global align:8
+lat_letter21_sen_model = .data:0x0047E078; // type:object size:0x48 scope:global align:8
+lat_letter22_v = .data:0x0047E0C0; // type:object size:0x1F0 scope:global align:8
+lat_letter22_model = .data:0x0047E2B0; // type:object size:0xD8 scope:global align:8
+lat_letter22_sen_model = .data:0x0047E388; // type:object size:0x38 scope:global align:8
+lat_letter23_v = .data:0x0047E3C0; // type:object size:0x200 scope:global align:8
+lat_letter23_model = .data:0x0047E5C0; // type:object size:0xC0 scope:global align:8
+lat_letter24_v = .data:0x0047E680; // type:object size:0x180 scope:global align:8
+lat_letter24_win_model = .data:0x0047E800; // type:object size:0x60 scope:global align:8
+lat_letter24_winT_model = .data:0x0047E860; // type:object size:0x70 scope:global align:8
+lat_letter24_model = .data:0x0047E8D0; // type:object size:0x18 scope:global align:8
+lat_letter25_v = .data:0x0047E8E8; // type:object size:0x340 scope:global align:8
+lat_letter25_win_model = .data:0x0047EC28; // type:object size:0x58 scope:global align:8
+lat_letter25_winT_model = .data:0x0047EC80; // type:object size:0xD8 scope:global align:8
+lat_letter25_model = .data:0x0047ED58; // type:object size:0x18 scope:global align:8
+lat_letter26_v = .data:0x0047ED70; // type:object size:0x6C0 scope:global align:8
+lat_letter26_win_model = .data:0x0047F430; // type:object size:0x1A8 scope:global align:8
+lat_letter26_model = .data:0x0047F5D8; // type:object size:0x10 scope:global align:8
+lat_letter27_v = .data:0x0047F5E8; // type:object size:0x140 scope:global align:8
+lat_letter27_win_model = .data:0x0047F728; // type:object size:0x40 scope:global align:8
+lat_letter27_winT_model = .data:0x0047F768; // type:object size:0x88 scope:global align:8
+lat_letter27_model = .data:0x0047F7F0; // type:object size:0x18 scope:global align:8
+lat_letter28_v = .data:0x0047F808; // type:object size:0x2B0 scope:global align:8
+lat_letter28_win_model = .data:0x0047FAB8; // type:object size:0xF8 scope:global align:8
+lat_letter28_winT_model = .data:0x0047FBB0; // type:object size:0x40 scope:global align:8
+lat_letter28_model = .data:0x0047FBF0; // type:object size:0x18 scope:global align:8
+lat_letter65_v = .data:0x0047FC08; // type:object size:0x240 scope:global align:8
+lat_letter29_model = .data:0x0047FE48; // type:object size:0xC8 scope:global align:8
+lat_letter29_sen_model = .data:0x0047FF10; // type:object size:0x30 scope:global align:8
+lat_letter30_v = .data:0x0047FF40; // type:object size:0x400 scope:global align:8
+lat_letter30_win_model = .data:0x00480340; // type:object size:0xE0 scope:global align:8
+lat_letter30_sen_model = .data:0x00480420; // type:object size:0x30 scope:global align:8
+lat_letter30_wak_model = .data:0x00480450; // type:object size:0x60 scope:global align:8
+lat_letter30_model = .data:0x004804B0; // type:object size:0x18 scope:global align:8
+lat_letter31_v = .data:0x004804C8; // type:object size:0x1C0 scope:global align:8
+lat_letter31_model = .data:0x00480688; // type:object size:0x80 scope:global align:8
+lat_letter31_sen_model = .data:0x00480708; // type:object size:0x30 scope:global align:8
+lat_letter32_v = .data:0x00480738; // type:object size:0x100 scope:global align:8
+lat_letter32_model = .data:0x00480838; // type:object size:0x78 scope:global align:8
+lat_letter32_sen_model = .data:0x004808B0; // type:object size:0x30 scope:global align:8
+lat_letter33_v = .data:0x004808E0; // type:object size:0x180 scope:global align:8
+lat_letter33_sen_model = .data:0x00480A60; // type:object size:0x30 scope:global align:8
+lat_letter33_model = .data:0x00480A90; // type:object size:0x70 scope:global align:8
+lat_letter34_v = .data:0x00480B00; // type:object size:0x2C0 scope:global align:8
+lat_letter34_model = .data:0x00480DC0; // type:object size:0xE8 scope:global align:8
+lat_letter34_sen_model = .data:0x00480EA8; // type:object size:0x30 scope:global align:8
+lat_letter35_v = .data:0x00480ED8; // type:object size:0x200 scope:global align:8
+lat_letter35_model = .data:0x004810D8; // type:object size:0xB8 scope:global align:8
+lat_letter35_sen_model = .data:0x00481190; // type:object size:0x30 scope:global align:8
+lat_letter36_v = .data:0x004811C0; // type:object size:0x340 scope:global align:8
+lat_letter36_model = .data:0x00481500; // type:object size:0xC8 scope:global align:8
+lat_letter36_sen_model = .data:0x004815C8; // type:object size:0x30 scope:global align:8
+lat_letter37_v = .data:0x004815F8; // type:object size:0x300 scope:global align:8
+lat_letter37_sen_model = .data:0x004818F8; // type:object size:0x30 scope:global align:8
+lat_letter37_model = .data:0x00481928; // type:object size:0xB0 scope:global align:8
+lat_letter38_v = .data:0x004819D8; // type:object size:0x80 scope:global align:8
+lat_letter38_model = .data:0x00481A58; // type:object size:0x30 scope:global align:8
+lat_letter38_sen_model = .data:0x00481A88; // type:object size:0x30 scope:global align:8
+lat_letter39_v = .data:0x00481AB8; // type:object size:0x200 scope:global align:8
+lat_letter39_model = .data:0x00481CB8; // type:object size:0x98 scope:global align:8
+lat_letter39_sen_model = .data:0x00481D50; // type:object size:0x30 scope:global align:8
+lat_letter40_v = .data:0x00481D80; // type:object size:0x230 scope:global align:8
+lat_letter40_win_model = .data:0x00481FB0; // type:object size:0x38 scope:global align:8
+lat_letter40_sen_model = .data:0x00481FE8; // type:object size:0x30 scope:global align:8
+lat_letter40_winT_model = .data:0x00482018; // type:object size:0x70 scope:global align:8
+lat_letter40_model = .data:0x00482088; // type:object size:0x18 scope:global align:8
+lat_letter41_v = .data:0x004820A0; // type:object size:0x1F0 scope:global align:8
+lat_letter41_sen_model = .data:0x00482290; // type:object size:0x30 scope:global align:8
+lat_letter41_model = .data:0x004822C0; // type:object size:0x70 scope:global align:8
+lat_letter42_v = .data:0x00482330; // type:object size:0x1F0 scope:global align:8
+lat_letter42_sen_model = .data:0x00482520; // type:object size:0x30 scope:global align:8
+lat_letter42_model = .data:0x00482550; // type:object size:0x70 scope:global align:8
+lat_letter43_v = .data:0x004825C0; // type:object size:0x80 scope:global align:8
+lat_letter43_model = .data:0x00482640; // type:object size:0x38 scope:global align:8
+lat_letter43_sen_model = .data:0x00482678; // type:object size:0x30 scope:global align:8
+lat_letter44_v = .data:0x004826A8; // type:object size:0x200 scope:global align:8
+lat_letter44_sen_model = .data:0x004828A8; // type:object size:0x30 scope:global align:8
+lat_letter44_model = .data:0x004828D8; // type:object size:0x80 scope:global align:8
+lat_letter45_v = .data:0x00482958; // type:object size:0x3E0 scope:global align:8
+lat_letter45_model = .data:0x00482D38; // type:object size:0xD0 scope:global align:8
+lat_letter45_sen_model = .data:0x00482E08; // type:object size:0x30 scope:global align:8
+lat_letter46_v = .data:0x00482E38; // type:object size:0x100 scope:global align:8
+lat_letter46_win_model = .data:0x00482F38; // type:object size:0x50 scope:global align:8
+lat_letter46_sen_model = .data:0x00482F88; // type:object size:0x30 scope:global align:8
+lat_letter46_winT_model = .data:0x00482FB8; // type:object size:0x30 scope:global align:8
+lat_letter46_model = .data:0x00482FE8; // type:object size:0x18 scope:global align:8
+lat_letter47_v = .data:0x00483000; // type:object size:0x80 scope:global align:8
+lat_letter47_model = .data:0x00483080; // type:object size:0x38 scope:global align:8
+lat_letter47_sen_model = .data:0x004830B8; // type:object size:0x30 scope:global align:8
+lat_letter48_v = .data:0x004830E8; // type:object size:0x280 scope:global align:8
+lat_letter48_model = .data:0x00483368; // type:object size:0xF8 scope:global align:8
+lat_letter48_sen_model = .data:0x00483460; // type:object size:0x30 scope:global align:8
+lat_letter49_v = .data:0x00483490; // type:object size:0xC0 scope:global align:8
+lat_letter49_model = .data:0x00483550; // type:object size:0x48 scope:global align:8
+lat_letter49_sen_model = .data:0x00483598; // type:object size:0x30 scope:global align:8
+lat_letter50_v = .data:0x004835C8; // type:object size:0x1C0 scope:global align:8
+lat_letter50_model = .data:0x00483788; // type:object size:0x70 scope:global align:8
+lat_letter50_sen_model = .data:0x004837F8; // type:object size:0x30 scope:global align:8
+lat_letter51_v = .data:0x00483828; // type:object size:0x1E0 scope:global align:8
+lat_letter51_model = .data:0x00483A08; // type:object size:0x98 scope:global align:8
+lat_letter51_sen_model = .data:0x00483AA0; // type:object size:0x30 scope:global align:8
+lat_letter52_v = .data:0x00483AD0; // type:object size:0x1E0 scope:global align:8
+lat_letter52_model = .data:0x00483CB0; // type:object size:0x98 scope:global align:8
+lat_letter52_sen_model = .data:0x00483D48; // type:object size:0x30 scope:global align:8
+lat_letter53_v = .data:0x00483D78; // type:object size:0x160 scope:global align:8
+lat_letter53_model = .data:0x00483ED8; // type:object size:0x80 scope:global align:8
+lat_letter53_sen_model = .data:0x00483F58; // type:object size:0x30 scope:global align:8
+lat_letter54_v = .data:0x00483F88; // type:object size:0x80 scope:global align:8
+lat_letter54_model = .data:0x00484008; // type:object size:0x38 scope:global align:8
+lat_letter54_sen_model = .data:0x00484040; // type:object size:0x30 scope:global align:8
+lat_letter55_v = .data:0x00484070; // type:object size:0x4C0 scope:global align:8
+lat_letter55_win_model = .data:0x00484530; // type:object size:0x38 scope:global align:8
+lat_letter55_sen_model = .data:0x00484568; // type:object size:0x30 scope:global align:8
+lat_letter55_winT_model = .data:0x00484598; // type:object size:0x38 scope:global align:8
+lat_letter55_model = .data:0x004845D0; // type:object size:0x18 scope:global align:8
+lat_letter56_v = .data:0x004845E8; // type:object size:0x220 scope:global align:8
+lat_letter56_model = .data:0x00484808; // type:object size:0xA0 scope:global align:8
+lat_letter56_sen_model = .data:0x004848A8; // type:object size:0x30 scope:global align:8
+lat_letter57_v = .data:0x004848D8; // type:object size:0xE0 scope:global align:8
+lat_letter57_model = .data:0x004849B8; // type:object size:0x48 scope:global align:8
+lat_letter57_sen_model = .data:0x00484A00; // type:object size:0x30 scope:global align:8
+lat_letter58_v = .data:0x00484A30; // type:object size:0x1A0 scope:global align:8
+lat_letter58_model = .data:0x00484BD0; // type:object size:0x98 scope:global align:8
+lat_letter58_sen_model = .data:0x00484C68; // type:object size:0x30 scope:global align:8
+lat_letter59_v = .data:0x00484C98; // type:object size:0xA0 scope:global align:8
+lat_letter59_model = .data:0x00484D38; // type:object size:0x40 scope:global align:8
+lat_letter59_sen_model = .data:0x00484D78; // type:object size:0x30 scope:global align:8
+lat_letter60_v = .data:0x00484DA8; // type:object size:0x4D0 scope:global align:8
+lat_letter60_win_model = .data:0x00485278; // type:object size:0xE8 scope:global align:8
+lat_letter60_sen_model = .data:0x00485360; // type:object size:0x30 scope:global align:8
+lat_letter60_winT_model = .data:0x00485390; // type:object size:0x70 scope:global align:8
+lat_letter60_model = .data:0x00485400; // type:object size:0x18 scope:global align:8
+lat_letter61_v = .data:0x00485418; // type:object size:0x430 scope:global align:8
+lat_letter61_model = .data:0x00485848; // type:object size:0x110 scope:global align:8
+lat_letter61_sen_model = .data:0x00485958; // type:object size:0x30 scope:global align:8
+lat_letter62_v = .data:0x00485988; // type:object size:0x320 scope:global align:8
+lat_letter62_model = .data:0x00485CA8; // type:object size:0xB0 scope:global align:8
+lat_letter62_sen_model = .data:0x00485D58; // type:object size:0x38 scope:global align:8
+lat_letter63_v = .data:0x00485D90; // type:object size:0x640 scope:global align:8
+lat_letter63_win_model = .data:0x004863D0; // type:object size:0x178 scope:global align:8
+lat_letter63_senT_model = .data:0x00486548; // type:object size:0x30 scope:global align:8
+lat_letter64_v = .data:0x00486578; // type:object size:0x260 scope:global align:8
+lat_letter64_model = .data:0x004867D8; // type:object size:0xB8 scope:global align:8
+lat_letter64_sen_model = .data:0x00486890; // type:object size:0x30 scope:global align:8
+lat_letter01_pal = .data:0x004868C0; // type:object size:0x20 scope:local align:32
+lat_letter02_pal = .data:0x004868E0; // type:object size:0x20 scope:global align:32
+lat_letter03_pal = .data:0x00486900; // type:object size:0x20 scope:global align:32
+lat_letter04_pal = .data:0x00486920; // type:object size:0x20 scope:global align:32
+lat_letter05_pal = .data:0x00486940; // type:object size:0x20 scope:global align:32
+lat_letter06_pal = .data:0x00486960; // type:object size:0x20 scope:global align:32
+lat_letter07_pal = .data:0x00486980; // type:object size:0x20 scope:global align:32
+lat_letter08_pal = .data:0x004869A0; // type:object size:0x20 scope:global align:32
+lat_letter09_pal = .data:0x004869C0; // type:object size:0x20 scope:global align:32
+lat_letter10_pal = .data:0x004869E0; // type:object size:0x20 scope:global align:32
+lat_letter11_1_pal = .data:0x00486A00; // type:object size:0x20 scope:global align:32
+lat_letter12_pal = .data:0x00486A20; // type:object size:0x20 scope:global align:32
+lat_letter13_pal = .data:0x00486A40; // type:object size:0x20 scope:global align:32
+lat_letter14_pal = .data:0x00486A60; // type:object size:0x20 scope:global align:32
+lat_letter15_pal = .data:0x00486A80; // type:object size:0x20 scope:global align:32
+lat_letter16_pal = .data:0x00486AA0; // type:object size:0x20 scope:global align:32
+lat_letter17_pal = .data:0x00486AC0; // type:object size:0x20 scope:global align:32
+lat_letter18_pal = .data:0x00486AE0; // type:object size:0x20 scope:global align:32
+lat_letter19_pal = .data:0x00486B00; // type:object size:0x20 scope:global align:32
+lat_letter20_pal = .data:0x00486B20; // type:object size:0x20 scope:global align:32
+lat_letter21_pal = .data:0x00486B40; // type:object size:0x20 scope:global align:32
+lat_letter22_pal = .data:0x00486B60; // type:object size:0x20 scope:global align:32
+lat_letter23_pal = .data:0x00486B80; // type:object size:0x20 scope:global align:32
+lat_letter24_pal = .data:0x00486BA0; // type:object size:0x20 scope:global align:32
+lat_letter25_pal = .data:0x00486BC0; // type:object size:0x20 scope:global align:32
+lat_letter26_pal = .data:0x00486BE0; // type:object size:0x20 scope:global align:32
+lat_letter27_pal = .data:0x00486C00; // type:object size:0x20 scope:global align:32
+lat_letter28_pal = .data:0x00486C20; // type:object size:0x20 scope:global align:32
+lat_letter65_pal = .data:0x00486C40; // type:object size:0x20 scope:global align:32
+lat_letter30_tex = .data:0x00486C60; // type:object size:0x20 scope:global align:32
+lat_letter31_pal = .data:0x00486C80; // type:object size:0x20 scope:global align:32
+lat_letter32_pal = .data:0x00486CA0; // type:object size:0x20 scope:global align:32
+lat_letter33_pal = .data:0x00486CC0; // type:object size:0x20 scope:global align:32
+lat_letter34_pal = .data:0x00486CE0; // type:object size:0x20 scope:global align:32
+lat_letter35_pal = .data:0x00486D00; // type:object size:0x20 scope:global align:32
+lat_letter36_pal = .data:0x00486D20; // type:object size:0x20 scope:global align:32
+lat_letter37_pal = .data:0x00486D40; // type:object size:0x20 scope:global align:32
+lat_letter39_pal = .data:0x00486D60; // type:object size:0x20 scope:global align:32
+lat_letter40_pal = .data:0x00486D80; // type:object size:0x20 scope:global align:32
+lat_letter42_pal = .data:0x00486DA0; // type:object size:0x20 scope:global align:32
+lat_letter43_pal = .data:0x00486DC0; // type:object size:0x20 scope:global align:32
+lat_letter44_pal = .data:0x00486DE0; // type:object size:0x20 scope:global align:32
+lat_letter45_pal = .data:0x00486E00; // type:object size:0x20 scope:global align:32
+lat_letter46_pal = .data:0x00486E20; // type:object size:0x20 scope:global align:32
+lat_letter47_pal = .data:0x00486E40; // type:object size:0x20 scope:global align:32
+lat_letter48_pal = .data:0x00486E60; // type:object size:0x20 scope:global align:32
+lat_letter49_pal = .data:0x00486E80; // type:object size:0x20 scope:global align:32
+lat_letter50_pal = .data:0x00486EA0; // type:object size:0x20 scope:global align:32
+lat_letter51_pal = .data:0x00486EC0; // type:object size:0x20 scope:global align:32
+lat_letter52_pal = .data:0x00486EE0; // type:object size:0x20 scope:global align:32
+lat_letter53_pal = .data:0x00486F00; // type:object size:0x20 scope:global align:32
+lat_letter54_pal = .data:0x00486F20; // type:object size:0x20 scope:global align:32
+lat_letter55_pal = .data:0x00486F40; // type:object size:0x20 scope:global align:32
+lat_letter56_pal = .data:0x00486F60; // type:object size:0x20 scope:global align:32
+lat_letter57_pal = .data:0x00486F80; // type:object size:0x20 scope:global align:32
+lat_letter58_pal = .data:0x00486FA0; // type:object size:0x20 scope:global align:32
+lat_letter59_pal = .data:0x00486FC0; // type:object size:0x20 scope:global align:32
+lat_letter60_pal = .data:0x00486FE0; // type:object size:0x20 scope:global align:32
+lat_letter61_pal = .data:0x00487000; // type:object size:0x20 scope:global align:32
+lat_letter62_pal = .data:0x00487020; // type:object size:0x20 scope:global align:32
+lat_letter63_pal = .data:0x00487040; // type:object size:0x20 scope:global align:32
+lat_letter64_pal = .data:0x00487060; // type:object size:0x20 scope:global align:32
+lat_letter01_01_tex = .data:0x00487080; // type:object size:0x100 scope:global align:32
+lat_letter01_02_tex = .data:0x00487180; // type:object size:0x100 scope:global align:32
+lat_letter01_03_tex = .data:0x00487280; // type:object size:0x400 scope:global align:32
+lat_letter01_04_tex = .data:0x00487680; // type:object size:0x80 scope:local align:32
+lat_tegami_fusen_tex = .data:0x00487700; // type:object size:0x80 scope:local align:32
+lat_letter02_01_tex = .data:0x00487780; // type:object size:0x200 scope:global align:32
+lat_letter02_02_tex = .data:0x00487980; // type:object size:0x200 scope:global align:32
+lat_letter02_03_tex = .data:0x00487B80; // type:object size:0x200 scope:global align:32
+lat_letter03_01_tex = .data:0x00487D80; // type:object size:0x100 scope:global align:32
+lat_letter03_02_tex = .data:0x00487E80; // type:object size:0x100 scope:global align:32
+lat_letter03_03_tex = .data:0x00487F80; // type:object size:0x100 scope:global align:32
+lat_letter03_04_tex = .data:0x00488080; // type:object size:0x100 scope:global align:32 data:string
+lat_letter03_05_tex = .data:0x00488180; // type:object size:0x100 scope:global align:32
+lat_letter03_06_tex = .data:0x00488280; // type:object size:0x100 scope:global align:32
+lat_letter03_07_tex = .data:0x00488380; // type:object size:0x200 scope:global align:32
+lat_letter04_cloth2_tex = .data:0x00488580; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth3_tex = .data:0x00488600; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth4_tex = .data:0x00488680; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth5_tex = .data:0x00488700; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth6_tex = .data:0x00488780; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth1_tex = .data:0x00488800; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth7_tex = .data:0x00488880; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth8_tex = .data:0x00488900; // type:object size:0x80 scope:global align:32
+lat_letter04_fusen_tex = .data:0x00488980; // type:object size:0x80 scope:global align:32
+lat_letter04_cloth9_tex = .data:0x00488A00; // type:object size:0x80 scope:global align:32
+lat_letter05_1 = .data:0x00488A80; // type:object size:0x200 scope:global align:32
+lat_letter05_2 = .data:0x00488C80; // type:object size:0x100 scope:global align:32
+lat_letter06_1 = .data:0x00488D80; // type:object size:0x200 scope:global align:32
+lat_letter06_sen = .data:0x00488F80; // type:object size:0x100 scope:global align:32
+lat_letter06_4 = .data:0x00489080; // type:object size:0x100 scope:global align:32
+lat_letter06_5 = .data:0x00489180; // type:object size:0x200 scope:global align:32
+lat_letter06_6 = .data:0x00489380; // type:object size:0x80 scope:global align:32
+lat_letter07_1 = .data:0x00489400; // type:object size:0x100 scope:global align:32
+lat_letter07_2 = .data:0x00489500; // type:object size:0x200 scope:global align:32
+lat_letter07_sen = .data:0x00489700; // type:object size:0x100 scope:global align:32
+lat_letter07_3 = .data:0x00489800; // type:object size:0x80 scope:global align:32 data:string
+lat_letter08_1 = .data:0x00489880; // type:object size:0x200 scope:global align:32
+lat_letter08_2 = .data:0x00489A80; // type:object size:0x200 scope:global align:32
+lat_letter08_3 = .data:0x00489C80; // type:object size:0x80 scope:global align:32
+lat_letter08_sen = .data:0x00489D00; // type:object size:0x100 scope:global align:32
+lat_letter09_1 = .data:0x00489E00; // type:object size:0x400 scope:global align:32
+lat_letter09_2 = .data:0x0048A200; // type:object size:0x200 scope:global align:32
+lat_letter09_3 = .data:0x0048A400; // type:object size:0x100 scope:global align:32
+lat_letter10_1 = .data:0x0048A500; // type:object size:0x200 scope:global align:32
+lat_letter10_2 = .data:0x0048A700; // type:object size:0x80 scope:global align:32
+lat_letter10_3 = .data:0x0048A780; // type:object size:0x80 scope:global align:32
+lat_letter10_sen = .data:0x0048A800; // type:object size:0x100 scope:global align:32
+lat_letter10_5 = .data:0x0048A900; // type:object size:0x80 scope:global align:32
+lat_letter11_1 = .data:0x0048A980; // type:object size:0x400 scope:global align:32
+lat_letter11_2 = .data:0x0048AD80; // type:object size:0x100 scope:global align:32
+lat_letter12_1 = .data:0x0048AE80; // type:object size:0x400 scope:global align:32
+lat_letter12_sen = .data:0x0048B280; // type:object size:0x100 scope:global align:32
+lat_letter13_1 = .data:0x0048B380; // type:object size:0x400 scope:global align:32
+lat_letter13_3 = .data:0x0048B780; // type:object size:0x200 scope:global align:32
+lat_letter14_1 = .data:0x0048B980; // type:object size:0x400 scope:global align:32
+lat_letter14_2 = .data:0x0048BD80; // type:object size:0x100 scope:global align:32
+lat_letter14_3 = .data:0x0048BE80; // type:object size:0x100 scope:global align:32
+lat_letter14_4 = .data:0x0048BF80; // type:object size:0x100 scope:global align:32
+lat_letter15_1 = .data:0x0048C080; // type:object size:0x200 scope:global align:32
+lat_letter15_2 = .data:0x0048C280; // type:object size:0x80 scope:global align:32
+lat_letter16_1 = .data:0x0048C300; // type:object size:0x200 scope:global align:32
+lat_letter16_sen = .data:0x0048C500; // type:object size:0x100 scope:global align:32
+lat_letter16_3 = .data:0x0048C600; // type:object size:0x100 scope:global align:32
+lat_letter17_1 = .data:0x0048C700; // type:object size:0x400 scope:global align:32
+lat_letter17_sen = .data:0x0048CB00; // type:object size:0x100 scope:global align:32
+lat_letter18_4 = .data:0x0048CC00; // type:object size:0x400 scope:global align:32
+lat_letter18_5 = .data:0x0048D000; // type:object size:0x100 scope:global align:32
+lat_letter18_sen = .data:0x0048D100; // type:object size:0x100 scope:global align:32
+lat_letter19_1 = .data:0x0048D200; // type:object size:0x400 scope:global align:32
+lat_letter19_2 = .data:0x0048D600; // type:object size:0x400 scope:global align:32
+lat_letter20_1 = .data:0x0048DA00; // type:object size:0x400 scope:global align:32
+lat_letter20_sen = .data:0x0048DE00; // type:object size:0x100 scope:global align:32
+lat_letter21_1 = .data:0x0048DF00; // type:object size:0x800 scope:global align:32
+lat_letter21_sen = .data:0x0048E700; // type:object size:0x100 scope:global align:32
+lat_letter22_1 = .data:0x0048E800; // type:object size:0x200 scope:global align:32
+lat_letter22_3 = .data:0x0048EA00; // type:object size:0x80 scope:global align:32
+lat_letter22_sen = .data:0x0048EA80; // type:object size:0x100 scope:global align:32
+lat_letter22_4 = .data:0x0048EB80; // type:object size:0x100 scope:global align:32
+lat_letter22_5 = .data:0x0048EC80; // type:object size:0x400 scope:global align:32
+lat_letter23_1 = .data:0x0048F080; // type:object size:0x200 scope:global align:32
+lat_letter23_2 = .data:0x0048F280; // type:object size:0x40 scope:global align:32 data:string
+lat_letter23_4 = .data:0x0048F2C0; // type:object size:0x200 scope:global align:32
+lat_letter24_1 = .data:0x0048F4C0; // type:object size:0x400 scope:global align:32
+lat_letter24_5 = .data:0x0048F8C0; // type:object size:0x100 scope:global align:32
+lat_letter24_3 = .data:0x0048F9C0; // type:object size:0x200 scope:global align:32
+lat_letter24_4 = .data:0x0048FBC0; // type:object size:0x80 scope:global align:32
+lat_letter25_1 = .data:0x0048FC40; // type:object size:0x100 scope:global align:32
+lat_letter25_2 = .data:0x0048FD40; // type:object size:0x80 scope:global align:32
+lat_letter25_3 = .data:0x0048FDC0; // type:object size:0x100 scope:global align:32
+lat_letter25_4 = .data:0x0048FEC0; // type:object size:0x80 scope:global align:32
+lat_letter25_5 = .data:0x0048FF40; // type:object size:0x400 scope:global align:32
+lat_letter26_test1_tex = .data:0x00490340; // type:object size:0x100 scope:global align:32
+lat_letter26_test2_tex = .data:0x00490440; // type:object size:0x100 scope:global align:32
+lat_letter26_test4_tex = .data:0x00490540; // type:object size:0x80 scope:global align:32
+lat_letter26_test5_tex = .data:0x004905C0; // type:object size:0x80 scope:global align:32
+lat_letter26_test6_tex = .data:0x00490640; // type:object size:0x100 scope:global align:32
+lat_letter26_test7_tex = .data:0x00490740; // type:object size:0x80 scope:global align:32
+lat_letter26_test8_tex = .data:0x004907C0; // type:object size:0x80 scope:global align:32
+lat_letter26_test9_tex = .data:0x00490840; // type:object size:0x100 scope:global align:32
+lat_letter26_test10_tex = .data:0x00490940; // type:object size:0x100 scope:global align:32
+lat_letter26_test11_tex = .data:0x00490A40; // type:object size:0x80 scope:global align:32
+lat_letter27_9 = .data:0x00490AC0; // type:object size:0x100 scope:global align:32
+lat_letter27_4 = .data:0x00490BC0; // type:object size:0x200 scope:global align:32
+lat_letter27_8 = .data:0x00490DC0; // type:object size:0x400 scope:global align:32
+lat_letter27_6 = .data:0x004911C0; // type:object size:0x100 scope:global align:32
+lat_letter28_1 = .data:0x004912C0; // type:object size:0x200 scope:global align:32
+lat_letter28_2 = .data:0x004914C0; // type:object size:0x100 scope:global align:32
+lat_letter28_9 = .data:0x004915C0; // type:object size:0x80 scope:global align:32
+lat_letter28_5 = .data:0x00491640; // type:object size:0x100 scope:global align:32
+lat_letter28_6 = .data:0x00491740; // type:object size:0x100 scope:global align:32
+lat_letter28_7 = .data:0x00491840; // type:object size:0x200 scope:global align:32
+lat_letter65_kt_tex = .data:0x00491A40; // type:object size:0x400 scope:global align:32
+lat_letter65_me_tex = .data:0x00491E40; // type:object size:0x100 scope:global align:32
+lat_letter65_sk_tex = .data:0x00491F40; // type:object size:0x200 scope:global align:32
+lat_letter65_xk_tex = .data:0x00492140; // type:object size:0x100 scope:global align:32
+lat_letter30_ed_tex = .data:0x00492240; // type:object size:0x40 scope:global align:32
+lat_letter30_ba_tex = .data:0x00492280; // type:object size:0x40 scope:global align:32
+lat_letter30_ki_tex = .data:0x004922C0; // type:object size:0x100 scope:global align:32
+lat_letter30_xk_tex = .data:0x004923C0; // type:object size:0x100 scope:global align:32
+lat_letter31_xk_tex = .data:0x004924C0; // type:object size:0x100 scope:global align:32
+lat_letter31_ed_tex = .data:0x004925C0; // type:object size:0x100 scope:global align:32
+lat_letter32_ce_tex = .data:0x004926C0; // type:object size:0x200 scope:global align:32
+lat_letter32_ed_tex = .data:0x004928C0; // type:object size:0x400 scope:global align:32
+lat_letter32_xk_tex = .data:0x00492CC0; // type:object size:0x100 scope:global align:32
+lat_letter33_ed_tex = .data:0x00492DC0; // type:object size:0x200 scope:global align:32
+lat_letter33_xk_tex = .data:0x00492FC0; // type:object size:0x100 scope:global align:32
+lat_letter34_ed_tex = .data:0x004930C0; // type:object size:0x400 scope:global align:32
+lat_letter34_ed2_tex = .data:0x004934C0; // type:object size:0x200 scope:global align:32
+lat_letter34_ce_tex = .data:0x004936C0; // type:object size:0x200 scope:global align:32
+lat_letter34_xk_tex = .data:0x004938C0; // type:object size:0x100 scope:global align:32
+lat_letter35_ed_tex = .data:0x004939C0; // type:object size:0x400 scope:global align:32
+lat_letter35_ce_tex = .data:0x00493DC0; // type:object size:0x400 scope:global align:32
+lat_letter35_xk_tex = .data:0x004941C0; // type:object size:0x100 scope:global align:32
+lat_letter36_ed4_tex = .data:0x004942C0; // type:object size:0x100 scope:global align:32
+lat_letter36_ed_tex = .data:0x004943C0; // type:object size:0x200 scope:global align:32
+lat_letter36_xk_tex = .data:0x004945C0; // type:object size:0x100 scope:global align:32
+lat_letter36_ed3_tex = .data:0x004946C0; // type:object size:0x100 scope:global align:32
+lat_letter37_ed_tex = .data:0x004947C0; // type:object size:0x400 scope:global align:32
+lat_letter37_kd_tex = .data:0x00494BC0; // type:object size:0x200 scope:global align:32
+lat_letter37_k_tex = .data:0x00494DC0; // type:object size:0x100 scope:global align:32
+lat_letter38_xk_tex = .data:0x00494EC0; // type:object size:0x100 scope:global align:32
+lat_letter38_ce_tex = .data:0x00494FC0; // type:object size:0x800 scope:global align:32
+lat_letter39_sk_tex = .data:0x004957C0; // type:object size:0x400 scope:global align:32
+lat_letter39_xk_tex = .data:0x00495BC0; // type:object size:0x100 scope:global align:32
+lat_letter40_nk_tex = .data:0x00495CC0; // type:object size:0x200 scope:global align:32
+lat_letter40_hw_tex = .data:0x00495EC0; // type:object size:0x80 scope:global align:32 data:string
+lat_letter40_xk_tex = .data:0x00495F40; // type:object size:0x100 scope:global align:32
+lat_letter41_gr_tex = .data:0x00496040; // type:object size:0x800 scope:global align:32
+lat_letter41_xk_tex = .data:0x00496840; // type:object size:0x100 scope:global align:32
+lat_letter42_gr_tex = .data:0x00496940; // type:object size:0x200 scope:global align:32
+lat_letter42_xk_tex = .data:0x00496B40; // type:object size:0x100 scope:global align:32
+lat_letter43_ed_tex = .data:0x00496C40; // type:object size:0x400 scope:global align:32
+lat_letter43_xk_tex = .data:0x00497040; // type:object size:0x100 scope:global align:32
+lat_letter44_ce_tex = .data:0x00497140; // type:object size:0x200 scope:global align:32
+lat_letter44_ed_tex = .data:0x00497340; // type:object size:0x200 scope:global align:32
+lat_letter44_xh_tex = .data:0x00497540; // type:object size:0x100 scope:global align:32
+lat_letter45_ed2_tex = .data:0x00497640; // type:object size:0x400 scope:global align:32
+lat_letter45_ed_tex = .data:0x00497A40; // type:object size:0x400 scope:global align:32
+lat_letter45_xk_tex = .data:0x00497E40; // type:object size:0x100 scope:global align:32
+lat_letter46_ce_tex = .data:0x00497F40; // type:object size:0x200 scope:global align:32
+lat_letter46_ed_tex = .data:0x00498140; // type:object size:0x400 scope:global align:32
+lat_letter46_xk_tex = .data:0x00498540; // type:object size:0x100 scope:global align:32
+lat_letter47_ce_tex = .data:0x00498640; // type:object size:0x400 scope:global align:32
+lat_letter47_xk_tex = .data:0x00498A40; // type:object size:0x100 scope:global align:32
+lat_letter48_hn_tex = .data:0x00498B40; // type:object size:0x200 scope:global align:32
+lat_letter48_hn2_tex = .data:0x00498D40; // type:object size:0x200 scope:global align:32
+lat_letter48_hn3_tex = .data:0x00498F40; // type:object size:0x80 scope:global align:32
+lat_letter48_si_tex = .data:0x00498FC0; // type:object size:0x200 scope:global align:32
+lat_letter48_xk_tex = .data:0x004991C0; // type:object size:0x100 scope:global align:32
+lat_letter49_ki_tex = .data:0x004992C0; // type:object size:0x400 scope:global align:32
+lat_letter49_xk_tex = .data:0x004996C0; // type:object size:0x100 scope:global align:32
+lat_letter50_ed_tex = .data:0x004997C0; // type:object size:0x400 scope:global align:32
+lat_letter50_xk_tex = .data:0x00499BC0; // type:object size:0x100 scope:global align:32
+lat_letter51_ed_tex = .data:0x00499CC0; // type:object size:0x400 scope:global align:32
+lat_letter51_ce_tex = .data:0x0049A0C0; // type:object size:0x400 scope:global align:32
+lat_letter51_xk_tex = .data:0x0049A4C0; // type:object size:0x100 scope:global align:32
+lat_letter52_ed_tex = .data:0x0049A5C0; // type:object size:0x400 scope:global align:32
+lat_letter52_ce_tex = .data:0x0049A9C0; // type:object size:0x400 scope:global align:32
+lat_letter52_xk_tex = .data:0x0049ADC0; // type:object size:0x100 scope:global align:32
+lat_letter53_ki_tex = .data:0x0049AEC0; // type:object size:0x400 scope:global align:32
+lat_letter53_ed_tex = .data:0x0049B2C0; // type:object size:0x400 scope:global align:32
+lat_letter53_xk_tex = .data:0x0049B6C0; // type:object size:0x100 scope:global align:32
+lat_letter54_ce_tex = .data:0x0049B7C0; // type:object size:0x200 scope:global align:32
+lat_letter54_xk_tex = .data:0x0049B9C0; // type:object size:0x100 scope:global align:32
+lat_letter55_ce_tex = .data:0x0049BAC0; // type:object size:0x400 scope:global align:32
+lat_letter55_bg_tex = .data:0x0049BEC0; // type:object size:0x200 scope:global align:32
+lat_letter55_xk_tex = .data:0x0049C0C0; // type:object size:0x100 scope:global align:32
+lat_letter56_ce_tex = .data:0x0049C1C0; // type:object size:0x200 scope:global align:32
+lat_letter56_wh_tex = .data:0x0049C3C0; // type:object size:0x80 scope:global align:32
+lat_letter56_xk_tex = .data:0x0049C440; // type:object size:0x100 scope:global align:32
+lat_letter57_ce_tex = .data:0x0049C540; // type:object size:0x400 scope:global align:32
+lat_letter57_xk_tex = .data:0x0049C940; // type:object size:0x100 scope:global align:32
+lat_letter58_ed_tex = .data:0x0049CA40; // type:object size:0x400 scope:global align:32
+lat_letter58_xk_tex = .data:0x0049CE40; // type:object size:0x100 scope:global align:32
+lat_letter59_sn_tex = .data:0x0049CF40; // type:object size:0x400 scope:global align:32
+lat_letter59_xk_tex = .data:0x0049D340; // type:object size:0x100 scope:global align:32
+lat_letter60_de_tex = .data:0x0049D440; // type:object size:0x200 scope:global align:32
+lat_letter60_ed_tex = .data:0x0049D640; // type:object size:0x200 scope:global align:32
+lat_letter60_gd_tex = .data:0x0049D840; // type:object size:0x80 scope:global align:32
+lat_letter60_hw_tex = .data:0x0049D8C0; // type:object size:0x80 scope:global align:32
+lat_letter61_ed_tex = .data:0x0049D940; // type:object size:0x200 scope:global align:32
+lat_letter61_kd_tex = .data:0x0049DB40; // type:object size:0x200 scope:global align:32
+lat_letter61_ha_tex = .data:0x0049DD40; // type:object size:0x200 scope:global align:32
+lat_letter61_xk_tex = .data:0x0049DF40; // type:object size:0x100 scope:global align:32
+lat_letter62_ch_tex = .data:0x0049E040; // type:object size:0x400 scope:global align:32
+lat_letter62_hn_tex = .data:0x0049E440; // type:object size:0x400 scope:global align:32
+lat_letter62_xk_tex = .data:0x0049E840; // type:object size:0x100 scope:global align:32
+lat_letter63_cloth3_tex = .data:0x0049E940; // type:object size:0x80 scope:global align:32
+lat_letter63_cloth4_tex = .data:0x0049E9C0; // type:object size:0x80 scope:global align:32 data:string
+lat_letter63_cloth5_tex = .data:0x0049EA40; // type:object size:0x80 scope:global align:32
+lat_letter63_cloth6_tex = .data:0x0049EAC0; // type:object size:0x100 scope:global align:32
+lat_letter63_cloth7_tex = .data:0x0049EBC0; // type:object size:0x100 scope:global align:32
+lat_letter63_cloth8_tex = .data:0x0049ECC0; // type:object size:0x100 scope:global align:32
+lat_letter63_cloth1_tex = .data:0x0049EDC0; // type:object size:0x80 scope:global align:32
+lat_letter63_fusen_tex = .data:0x0049EE40; // type:object size:0x80 scope:global align:32
+lat_letter63_cloth2_tex = .data:0x0049EEC0; // type:object size:0x80 scope:global align:32
+lat_letter63_cloth9_tex = .data:0x0049EF40; // type:object size:0x80 scope:global align:32
+lat_letter64_ik_tex = .data:0x0049EFC0; // type:object size:0x200 scope:global align:32
+lat_letter64_ti_tex = .data:0x0049F1C0; // type:object size:0x200 scope:global align:32
+lat_letter64_aw_tex = .data:0x0049F3C0; // type:object size:0x400 scope:global align:32
+lat_letter64_xk_tex = .data:0x0049F7C0; // type:object size:0x100 scope:global align:32
+onp_win_q_tex_rgb_i4 = .data:0x0049F8C0; // type:object size:0x80 scope:global align:32
+onp_win_a_tex_rgb_i4 = .data:0x0049F940; // type:object size:0x80 scope:global align:32
+onp_win_b_tex_rgb_i4 = .data:0x0049F9C0; // type:object size:0x80 scope:global align:32
+onp_win_c_tex_rgb_i4 = .data:0x0049FA40; // type:object size:0x80 scope:global align:32
+onp_win_d_tex_rgb_i4 = .data:0x0049FAC0; // type:object size:0x80 scope:global align:32
+onp_win_e_tex_rgb_i4 = .data:0x0049FB40; // type:object size:0x80 scope:global align:32
+onp_win_f_tex_rgb_i4 = .data:0x0049FBC0; // type:object size:0x80 scope:global align:32
+onp_win_g_tex_rgb_i4 = .data:0x0049FC40; // type:object size:0x80 scope:global align:32
+onp_win_bou1_tex = .data:0x0049FCC0; // type:object size:0x80 scope:global align:32
+onp_win_shimari_tex_rgb_ia8 = .data:0x0049FD40; // type:object size:0x400 scope:global align:32
+onp_win_test10_tex_rgb_ia8 = .data:0x004A0140; // type:object size:0x800 scope:global align:32
+onp_win_test11_tex_rgb_ia8 = .data:0x004A0940; // type:object size:0x800 scope:global align:32
+onp_win_test1_tex_rgb_ia8 = .data:0x004A1140; // type:object size:0x400 scope:global align:32
+onp_win_test2_tex_rgb_ia8 = .data:0x004A1540; // type:object size:0x400 scope:global align:32
+onp_win_test5_tex_rgb_ia8 = .data:0x004A1940; // type:object size:0x400 scope:global align:32
+onp_win_test3_tex_rgb_ia8 = .data:0x004A1D40; // type:object size:0x400 scope:global align:32
+onp_win_onpu8_tex_rgb_i4 = .data:0x004A2140; // type:object size:0x80 scope:global align:32
+onp_win_z_tex_rgb_i4 = .data:0x004A21C0; // type:object size:0x80 scope:global align:32
+onp_hyouji_v = .data:0x004A2240; // type:object size:0x180 scope:local align:8
+onp_hyouji_waku1T_model = .data:0x004A23C0; // type:object size:0x28 scope:global align:8
+onp_hyouji_waku2T_model = .data:0x004A23E8; // type:object size:0x28 scope:global align:8
+onp_hyouji_waku3T_model = .data:0x004A2410; // type:object size:0x28 scope:global align:8
+onp_hyouji_waku4T_model = .data:0x004A2438; // type:object size:0x28 scope:global align:8
+onp_hyouji_bouT_model = .data:0x004A2460; // type:object size:0x28 scope:global align:8
+onp_hyouji_moji1T_model = .data:0x004A2488; // type:object size:0x28 scope:global align:8
+onp_hyouji_waku_mode = .data:0x004A24B0; // type:object size:0x28 scope:global align:8
+onp_hyouji_moji_mode = .data:0x004A24D8; // type:object size:0x20 scope:global align:8
+onp_win_play_tex = .data:0x004A2500; // type:object size:0x400 scope:global align:32
+onp_win_erase_tex = .data:0x004A2900; // type:object size:0x400 scope:global align:32
+x = .data:0x004A2D00; // type:object size:0x80 scope:global align:32
+y = .data:0x004A2D80; // type:object size:0x80 scope:global align:32
+start2_tex_rgb_ia8 = .data:0x004A2E00; // type:object size:0x400 scope:global align:32
+start_tex_rgb_ia8 = .data:0x004A3200; // type:object size:0x400 scope:global align:32
+onp__x2_tex_rgb_ia8 = .data:0x004A3600; // type:object size:0x200 scope:global align:32
+onp__x_tex_rgb_ia8 = .data:0x004A3800; // type:object size:0x200 scope:global align:32
+onp__y2_tex_rgb_ia8 = .data:0x004A3A00; // type:object size:0x200 scope:global align:32
+onp__y_tex_rgb_ia8 = .data:0x004A3C00; // type:object size:0x200 scope:global align:32
+onp_hyouji_v = .data:0x004A3E00; // type:object size:0x1C0 scope:local align:8
+onp_win_rmoji_model = .data:0x004A3FC0; // type:object size:0x60 scope:global align:8
+onp_win_zT_model = .data:0x004A4020; // type:object size:0x50 scope:global align:8
+onp_win_mojiT_model = .data:0x004A4070; // type:object size:0x68 scope:global align:8
+onp_win_rT_model = .data:0x004A40D8; // type:object size:0x50 scope:global align:8
+onp_win_sT_model = .data:0x004A4128; // type:object size:0x50 scope:global align:8
+onp_win_shiro_tex = .data:0x004A4180; // type:object size:0x800 scope:global align:32
+onp_win_ok_tex = .data:0x004A4980; // type:object size:0x100 scope:global align:32
+onp_win_ga_tex = .data:0x004A4A80; // type:object size:0x100 scope:global align:32
+onp_win_ga4_tex = .data:0x004A4B80; // type:object size:0x100 scope:global align:32
+onp_win_ga3_tex = .data:0x004A4C80; // type:object size:0x100 scope:global align:32
+onp_win_ga2_tex = .data:0x004A4D80; // type:object size:0x100 scope:global align:32
+onp_win_ottpo_tex = .data:0x004A4E80; // type:object size:0x200 scope:global align:32
+onp_win_tama1_tex = .data:0x004A5080; // type:object size:0x100 scope:global align:32
+onp_win_tama2_tex = .data:0x004A5180; // type:object size:0x400 scope:global align:32
+onp_win_tama5_tex = .data:0x004A5580; // type:object size:0x100 scope:global align:32
+onp_win_w1_tex = .data:0x004A5680; // type:object size:0x800 scope:global align:32
+onp_win_me_tex = .data:0x004A5E80; // type:object size:0x100 scope:global align:32
+onp_win_ohana_tex = .data:0x004A5F80; // type:object size:0x100 scope:global align:32
+onp_win_w2_tex = .data:0x004A6080; // type:object size:0x800 scope:global align:32
+onp_win_w3_tex = .data:0x004A6880; // type:object size:0x400 scope:global align:32
+onp_win_ha_tex = .data:0x004A6C80; // type:object size:0x800 scope:global align:32
+onp_win_ha2_tex = .data:0x004A7480; // type:object size:0x800 scope:global align:32
+onp_win_carde_tex = .data:0x004A7C80; // type:object size:0x400 scope:global align:32
+rmoji = .data:0x004A8080; // type:object size:0x80 scope:global align:32
+onp_win_rbutton2_tex_rgb_ia8 = .data:0x004A8100; // type:object size:0x200 scope:global align:32
+onp_win_rbutton_tex_rgb_ia8 = .data:0x004A8300; // type:object size:0x200 scope:global align:32
+onp_win_v = .data:0x004A8500; // type:object size:0x9E0 scope:global align:8
+onp_carde_v = .data:0x004A8EE0; // type:object size:0x100 scope:global align:8
+onp_win_ga3_model = .data:0x004A8FE0; // type:object size:0x20 scope:global align:8
+onp_win_wakuT_model = .data:0x004A9000; // type:object size:0x98 scope:global align:8
+onp_win_meT_model = .data:0x004A9098; // type:object size:0x40 scope:global align:8
+onp_win_ga1T_model = .data:0x004A90D8; // type:object size:0x70 scope:global align:8
+onp_win_ga2T_model = .data:0x004A9148; // type:object size:0x80 scope:global align:8
+onp_win_hanaT_model = .data:0x004A91C8; // type:object size:0x30 scope:global align:8
+onp_win_senT_model = .data:0x004A91F8; // type:object size:0x78 scope:global align:8
+onp_win_waku2T_model = .data:0x004A9270; // type:object size:0x30 scope:global align:8
+onp_win_waku3T_model = .data:0x004A92A0; // type:object size:0x38 scope:global align:8
+onp_win_shiroT_model = .data:0x004A92D8; // type:object size:0x38 scope:global align:8
+onp_win_owariT_model = .data:0x004A9310; // type:object size:0x28 scope:global align:8
+onp_win_waku5T_model = .data:0x004A9338; // type:object size:0x38 scope:global align:8
+onp_win_waku6T_model = .data:0x004A9370; // type:object size:0x38 scope:global align:8
+onp_win_rmoji_model = .data:0x004A93A8; // type:object size:0x38 scope:local align:8
+onp_win_rbuttonT_model = .data:0x004A93E0; // type:object size:0x38 scope:global align:8
+onp_win_leafT_model = .data:0x004A9418; // type:object size:0x38 scope:global align:8
+onp_win_cardeT_model = .data:0x004A9450; // type:object size:0x38 scope:global align:8
+onp_win_mode = .data:0x004A9488; // type:object size:0x30 scope:global align:8
+onp_win_model = .data:0x004A94B8; // type:object size:0xC0 scope:global align:8
+pos_win_nuno_tex_rgb_ci4_pal = .data:0x004A9580; // type:object size:0x20 scope:global align:32
+pos_win_sw5_tex_rgb_ci4_pal = .data:0x004A95A0; // type:object size:0x20 scope:global align:32
+pos_win_sw1_tex_rgb_ci4_pal = .data:0x004A95C0; // type:object size:0x20 scope:global align:32
+pos_win_sw2_tex_rgb_ci4_pal = .data:0x004A95E0; // type:object size:0x20 scope:global align:32
+pos_win_sw3_tex_rgb_ci4_pal = .data:0x004A9600; // type:object size:0x20 scope:global align:32
+pos_win_sw4_tex_rgb_ci4_pal = .data:0x004A9620; // type:object size:0x20 scope:global align:32
+inv_mwin_nwaku_tex = .data:0x004A9640; // type:object size:0x400 scope:local align:32
+pos_win_w6_tex = .data:0x004A9A40; // type:object size:0x80 scope:global align:32
+pos_win_w1_tex = .data:0x004A9AC0; // type:object size:0x800 scope:global align:32
+pos_win_w2_tex = .data:0x004AA2C0; // type:object size:0x800 scope:global align:32
+pos_win_w3_tex = .data:0x004AAAC0; // type:object size:0x800 scope:global align:32
+pos_win_w4_tex = .data:0x004AB2C0; // type:object size:0x800 scope:global align:32
+pos_win_w5_tex = .data:0x004ABAC0; // type:object size:0x200 scope:global align:32
+pos_win_post_tex = .data:0x004ABCC0; // type:object size:0x200 scope:global align:32
+pos_win_nuno_tex_rgb_ci4 = .data:0x004ABEC0; // type:object size:0x200 scope:global align:32
+pos_win_sw5_tex_rgb_ci4 = .data:0x004AC0C0; // type:object size:0x200 scope:global align:32
+pos_win_sw1_tex_rgb_ci4 = .data:0x004AC2C0; // type:object size:0x400 scope:global align:32
+pos_win_sw2_tex_rgb_ci4 = .data:0x004AC6C0; // type:object size:0x400 scope:global align:32
+pos_win_sw3_tex_rgb_ci4 = .data:0x004ACAC0; // type:object size:0x400 scope:global align:32
+pos_win_sw4_tex_rgb_ci4 = .data:0x004ACEC0; // type:object size:0x400 scope:global align:32
+pos_win_v = .data:0x004AD2C0; // type:object size:0x610 scope:global align:8
+pos_win_post_model = .data:0x004AD8D0; // type:object size:0x30 scope:global align:8
+pos_win_w9_model = .data:0x004AD900; // type:object size:0x30 scope:global align:8
+pos_win_ue1T_model = .data:0x004AD930; // type:object size:0x38 scope:global align:8
+pos_win_ue2T_model = .data:0x004AD968; // type:object size:0xC8 scope:global align:8
+pos_win_ue3T_model = .data:0x004ADA30; // type:object size:0x38 scope:global align:8
+pos_win_w1T_model = .data:0x004ADA68; // type:object size:0x30 scope:global align:8
+pos_win_w2T_model = .data:0x004ADA98; // type:object size:0x30 scope:global align:8
+pos_win_w3T_model = .data:0x004ADAC8; // type:object size:0x30 scope:global align:8
+pos_win_w4T_model = .data:0x004ADAF8; // type:object size:0x30 scope:global align:8
+pos_win_w5T_model = .data:0x004ADB28; // type:object size:0x30 scope:global align:8
+pos_win_w6T_model = .data:0x004ADB58; // type:object size:0x30 scope:global align:8
+pos_win_w7T_model = .data:0x004ADB88; // type:object size:0x30 scope:global align:8
+pos_win_w8T_model = .data:0x004ADBB8; // type:object size:0x30 scope:global align:8
+pos_win_mode = .data:0x004ADBE8; // type:object size:0x48 scope:global align:8
+pos_win_model = .data:0x004ADC30; // type:object size:0x98 scope:global align:8
+pos_win_yajirushi_tex = .data:0x004ADCC8; // type:object size:0x400 scope:global align:4
+pos_yaji_v = .data:0x004AE0C8; // type:object size:0x40 scope:global align:8
+pos_yaji_wakuT_model = .data:0x004AE108; // type:object size:0x80 scope:global align:8
+kan_win_eki_tex = .data:0x004AE1A0; // type:object size:0x100 scope:global align:32
+kan_eki_v = .data:0x004AE2A0; // type:object size:0x40 scope:global align:8
+kan_win_ekiT_model = .data:0x004AE2E0; // type:object size:0x48 scope:global align:8
+kan_win_fune_tex = .data:0x004AE340; // type:object size:0x100 scope:global align:32
+kan_fune_v = .data:0x004AE440; // type:object size:0x40 scope:global align:8
+kan_win_funeT_model = .data:0x004AE480; // type:object size:0x48 scope:global align:8
+kan_win_gomi_tex = .data:0x004AE4E0; // type:object size:0x80 scope:global align:32
+kan_gomi_v = .data:0x004AE560; // type:object size:0x40 scope:global align:8
+kan_win_gomiT_model = .data:0x004AE5A0; // type:object size:0x40 scope:global align:8
+kan_win_cursor_tex = .data:0x004AE5E0; // type:object size:0x80 scope:global align:32
+kan_hyouji_v = .data:0x004AE660; // type:object size:0x40 scope:local align:8
+kan_win_cursorT_model = .data:0x004AE6A0; // type:object size:0x40 scope:global align:8
+kan_win_yane_tex = .data:0x004AE6E0; // type:object size:0x100 scope:global align:32
+kan_win_yashiro_tex = .data:0x004AE7E0; // type:object size:0x80 scope:global align:32
+kan_win_yubin_tex = .data:0x004AE860; // type:object size:0x80 scope:global align:32
+kan_win_kouban_tex = .data:0x004AE8E0; // type:object size:0x80 scope:global align:32
+kan_win_omise_tex = .data:0x004AE960; // type:object size:0x80 scope:global align:32
+kan_win_play_tex = .data:0x004AE9E0; // type:object size:0x100 scope:global align:32
+kan_win_ply_tex = .data:0x004AEAE0; // type:object size:0x100 scope:global align:32
+kan_hyouji2_v = .data:0x004AEBE0; // type:object size:0x240 scope:global align:8
+kan_win_genzaiT_model = .data:0x004AEE20; // type:object size:0x48 scope:global align:8
+kan_win_npc2T_base_model = .data:0x004AEE68; // type:object size:0x38 scope:global align:8
+kan_win_npc2T_1_model = .data:0x004AEEA0; // type:object size:0x20 scope:global align:8
+kan_win_npc2T_2_model = .data:0x004AEEC0; // type:object size:0x20 scope:global align:8
+kan_win_npc2T_3_model = .data:0x004AEEE0; // type:object size:0x20 scope:global align:8
+kan_win_npcT_base_model = .data:0x004AEF00; // type:object size:0x38 scope:global align:8
+kan_win_npcT_1_model = .data:0x004AEF38; // type:object size:0x20 scope:global align:8
+kan_win_npcT_2_model = .data:0x004AEF58; // type:object size:0x20 scope:global align:8
+kan_win_npcT_3_model = .data:0x004AEF78; // type:object size:0x20 scope:global align:8
+kan_win_koubanT_model = .data:0x004AEF98; // type:object size:0x40 scope:global align:8
+kan_win_yashiroT_model = .data:0x004AEFD8; // type:object size:0x50 scope:global align:8
+kan_win_omiseT_model = .data:0x004AF028; // type:object size:0x40 scope:global align:8
+kan_win_yuuT_model = .data:0x004AF068; // type:object size:0x40 scope:global align:8
+kan_win_playerT_model = .data:0x004AF0A8; // type:object size:0x48 scope:global align:8
+kan_win_mu_tex = .data:0x004AF100; // type:object size:0x80 scope:global align:32
+kan_win_ta_tex = .data:0x004AF180; // type:object size:0x80 scope:global align:32
+kan_hyouji_v = .data:0x004AF200; // type:object size:0x80 scope:local align:8
+kan_win_mu_model = .data:0x004AF280; // type:object size:0x40 scope:global align:8
+kan_win_ta_model = .data:0x004AF2C0; // type:object size:0x40 scope:global align:8
+kan_tizu_v = .data:0x004AF300; // type:object size:0x40 scope:global align:8
+kan_tizu_mode = .data:0x004AF340; // type:object size:0x28 scope:global align:8
+kan_tizu_model = .data:0x004AF368; // type:object size:0x30 scope:global align:8
+kan_win_waku4_tex = .data:0x004AF3A0; // type:object size:0x1000 scope:global align:32
+kan_win_waku3_tex = .data:0x004B03A0; // type:object size:0x1000 scope:global align:32
+kan_win_waku5_tex = .data:0x004B13A0; // type:object size:0x1000 scope:global align:32
+kan_win_waku1a_tex = .data:0x004B23A0; // type:object size:0x1000 scope:global align:32
+kan_win_waku1b_tex = .data:0x004B33A0; // type:object size:0x1000 scope:global align:32
+kan_waku_v = .data:0x004B43A0; // type:object size:0x140 scope:global align:8
+kan_waku_w1T_model = .data:0x004B44E0; // type:object size:0x48 scope:global align:8
+kan_waku_w2T_model = .data:0x004B4528; // type:object size:0x30 scope:global align:8
+kan_waku_w3T_model = .data:0x004B4558; // type:object size:0x30 scope:global align:8
+kan_waku_w4T_model = .data:0x004B4588; // type:object size:0x30 scope:global align:8
+kan_win_map_tex = .data:0x004B45C0; // type:object size:0x200 scope:global align:32
+kan_win_waku2a_tex = .data:0x004B47C0; // type:object size:0x1000 scope:global align:32
+testa = .data:0x004B57C0; // type:object size:0x100 scope:global align:32
+kan_win_b_tex = .data:0x004B58C0; // type:object size:0x100 scope:global align:32
+kan_win_c_tex = .data:0x004B59C0; // type:object size:0x100 scope:global align:32
+kan_win_w1_tex = .data:0x004B5AC0; // type:object size:0x1000 scope:global align:32
+kan_win_w2_tex = .data:0x004B6AC0; // type:object size:0x800 scope:global align:32
+kan_win_w3_tex = .data:0x004B72C0; // type:object size:0x400 scope:global align:32
+kan_win_d_tex = .data:0x004B76C0; // type:object size:0x100 scope:global align:32
+kan_win_e_tex = .data:0x004B77C0; // type:object size:0x100 scope:global align:32
+kan_win_f_tex = .data:0x004B78C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji1_tex = .data:0x004B79C0; // type:object size:0x100 scope:global align:32
+kan_win_saki_tex = .data:0x004B7AC0; // type:object size:0x400 scope:global align:32
+kan_win_acre_tex = .data:0x004B7EC0; // type:object size:0x100 scope:global align:32
+kan_win_ga_tex = .data:0x004B7FC0; // type:object size:0x100 scope:global align:32
+kan_win_ga2_tex = .data:0x004B80C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji2_tex = .data:0x004B81C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji3_tex = .data:0x004B82C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji4_tex = .data:0x004B83C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji5_tex = .data:0x004B84C0; // type:object size:0x100 scope:global align:32
+kan_win_ga3_tex = .data:0x004B85C0; // type:object size:0x100 scope:global align:32
+kan_win_ga4_tex = .data:0x004B86C0; // type:object size:0x100 scope:global align:32
+kan_win_a_tex_rgb_ia8 = .data:0x004B87C0; // type:object size:0x100 scope:global align:32
+kan_win_b_tex_rgb_ia8 = .data:0x004B88C0; // type:object size:0x100 scope:global align:32
+kan_win_c_tex_rgb_ia8 = .data:0x004B89C0; // type:object size:0x100 scope:global align:32
+kan_win_d_tex_rgb_ia8 = .data:0x004B8AC0; // type:object size:0x100 scope:global align:32
+kan_win_e_tex_rgb_ia8 = .data:0x004B8BC0; // type:object size:0x100 scope:global align:32
+kan_win_f_tex_rgb_ia8 = .data:0x004B8CC0; // type:object size:0x100 scope:global align:32
+kan_win_suuji1_tex_rgb_ia8 = .data:0x004B8DC0; // type:object size:0x100 scope:global align:32
+kan_win_suuji2_tex_rgb_ia8 = .data:0x004B8EC0; // type:object size:0x100 scope:global align:32
+kan_win_suuji3_tex_rgb_ia8 = .data:0x004B8FC0; // type:object size:0x100 scope:global align:32
+kan_win_suuji4_tex_rgb_ia8 = .data:0x004B90C0; // type:object size:0x100 scope:global align:32
+kan_win_suuji5_tex_rgb_ia8 = .data:0x004B91C0; // type:object size:0x100 scope:global align:32
+kan_win_v = .data:0x004B92C0; // type:object size:0x830 scope:global align:8
+kan_win_moji1_model = .data:0x004B9AF0; // type:object size:0x30 scope:global align:8
+kan_win_moji2_model = .data:0x004B9B20; // type:object size:0x30 scope:global align:8
+kan_win_bou_model = .data:0x004B9B50; // type:object size:0x20 scope:global align:8
+kan_win_kiwakuT_model = .data:0x004B9B70; // type:object size:0x78 scope:global align:8
+kan_win_futiT_model = .data:0x004B9BE8; // type:object size:0x78 scope:global align:8
+kan_win_futi2T_model = .data:0x004B9C60; // type:object size:0x78 scope:global align:8
+kan_win_wakuT_model = .data:0x004B9CD8; // type:object size:0x30 scope:global align:8
+kan_win_ban2T_model = .data:0x004B9D08; // type:object size:0x38 scope:global align:8
+kan_win_banT_model = .data:0x004B9D40; // type:object size:0x98 scope:global align:8
+kan_win_tyouT_model = .data:0x004B9DD8; // type:object size:0xB0 scope:global align:8
+kan_win_tyou2T_model = .data:0x004B9E88; // type:object size:0x38 scope:global align:8
+kan_win_sakiT_model = .data:0x004B9EC0; // type:object size:0x30 scope:global align:8
+kan_win_mode = .data:0x004B9EF0; // type:object size:0x20 scope:global align:8
+kan_win_model = .data:0x004B9F10; // type:object size:0x20 scope:global align:8
+kan_win_model2 = .data:0x004B9F30; // type:object size:0x88 scope:global align:8
+kan_win_color0_mode = .data:0x004B9FB8; // type:object size:0x90 scope:global align:8
+kan_win_color1_mode = .data:0x004BA048; // type:object size:0x90 scope:global align:8
+mMP_house_pos_list = .data:0x004BA0D8; // type:object size:0x978 scope:global align:4 data:2byte
+mus_win_mark_tex = .data:0x004BAA60; // type:object size:0x100 scope:global align:32
+mus_mark_v = .data:0x004BAB60; // type:object size:0x40 scope:global align:8
+mus_mark_before = .data:0x004BABA0; // type:object size:0x70 scope:global align:8
+mus_mark_model = .data:0x004BAC10; // type:object size:0x18 scope:global align:8
+inv_mwin_audio_pal = .data:0x004BAC40; // type:object size:0x20 scope:global align:32
+inv_mwin_audio_tex = .data:0x004BAC60; // type:object size:0x200 scope:global align:32
+mus_icon_v = .data:0x004BAE60; // type:object size:0x40 scope:global align:8
+mus_icon_model_before = .data:0x004BAEA0; // type:object size:0x40 scope:global align:8
+mus_icon_model = .data:0x004BAEE0; // type:object size:0x18 scope:global align:8
+mus_win_nuno_tex_rgb_ci4_pal = .data:0x004BAF00; // type:object size:0x20 scope:global align:32
+mus_win_sw4_tex_rgb_ci4_pal = .data:0x004BAF20; // type:object size:0x20 scope:global align:32
+mus_win_sw1_tex_rgb_ci4_pal = .data:0x004BAF40; // type:object size:0x20 scope:global align:32
+mus_win_sw2_tex_rgb_ci4_pal = .data:0x004BAF60; // type:object size:0x20 scope:global align:32
+mus_win_sw3_tex_rgb_ci4_pal = .data:0x004BAF80; // type:object size:0x20 scope:global align:32
+inv_mwin_nwaku_tex = .data:0x004BAFA0; // type:object size:0x400 scope:local align:32
+mus_win_w1_tex = .data:0x004BB3A0; // type:object size:0x400 scope:global align:32
+mus_win_w2_tex = .data:0x004BB7A0; // type:object size:0x800 scope:global align:32
+mus_win_w3_tex = .data:0x004BBFA0; // type:object size:0x800 scope:global align:32
+mus_win_w4_tex = .data:0x004BC7A0; // type:object size:0x400 scope:global align:32
+mus_win_w5_tex = .data:0x004BCBA0; // type:object size:0x100 scope:global align:32
+mus_win_nuno_tex_rgb_ci4 = .data:0x004BCCA0; // type:object size:0x200 scope:global align:32
+mus_win_sw4_tex_rgb_ci4 = .data:0x004BCEA0; // type:object size:0x80 scope:global align:32
+mus_win_sw1_tex_rgb_ci4 = .data:0x004BCF20; // type:object size:0x400 scope:global align:32
+mus_win_sw2_tex_rgb_ci4 = .data:0x004BD320; // type:object size:0x400 scope:global align:32
+mus_win_sw3_tex_rgb_ci4 = .data:0x004BD720; // type:object size:0x400 scope:global align:32
+mus_win_v = .data:0x004BDB20; // type:object size:0x760 scope:global align:8
+mus_win_sw13_model = .data:0x004BE280; // type:object size:0x38 scope:global align:8
+mus_win_sw1T_model = .data:0x004BE2B8; // type:object size:0x38 scope:global align:8
+mus_win_sw2T_model = .data:0x004BE2F0; // type:object size:0x38 scope:global align:8
+mus_win_sw3T_model = .data:0x004BE328; // type:object size:0x38 scope:global align:8
+mus_win_sw4T_model = .data:0x004BE360; // type:object size:0x38 scope:global align:8
+mus_win_sw5T_model = .data:0x004BE398; // type:object size:0x38 scope:global align:8
+mus_win_sw6T_model = .data:0x004BE3D0; // type:object size:0x38 scope:global align:8
+mus_win_sw7T_model = .data:0x004BE408; // type:object size:0x38 scope:global align:8
+mus_win_sw8T_model = .data:0x004BE440; // type:object size:0x38 scope:global align:8
+mus_win_sw9T_model = .data:0x004BE478; // type:object size:0x38 scope:global align:8
+mus_win_sw10T_model = .data:0x004BE4B0; // type:object size:0x38 scope:global align:8
+mus_win_sw11T_model = .data:0x004BE4E8; // type:object size:0x38 scope:global align:8
+mus_win_sw12T_model = .data:0x004BE520; // type:object size:0x38 scope:global align:8
+mus_win_ueT_model = .data:0x004BE558; // type:object size:0xF0 scope:global align:8
+mus_win_ue2T_model = .data:0x004BE648; // type:object size:0x48 scope:global align:8
+mus_win_model_before = .data:0x004BE690; // type:object size:0x48 scope:global align:8
+mus_win_model = .data:0x004BE6D8; // type:object size:0x70 scope:global align:8
+mus_win_tagu_tex = .data:0x004BE760; // type:object size:0x400 scope:global align:32
+mus_win2_v = .data:0x004BEB60; // type:object size:0x40 scope:global align:8
+mus_tag_nes_model = .data:0x004BEBA0; // type:object size:0x50 scope:global align:8
+inv_ori_tw4_tex_rgb_ci4_pal = .data:0x004BEC00; // type:object size:0x20 scope:global align:32
+inv_original_cloth_tex_rgb_ci4_pal = .data:0x004BEC20; // type:object size:0x20 scope:global align:32
+inv_ori_tw1_tex_rgb_ci4_pal = .data:0x004BEC40; // type:object size:0x20 scope:global align:32
+inv_ori_tw2_tex_rgb_ci4_pal = .data:0x004BEC60; // type:object size:0x20 scope:global align:32
+inv_ori_tw3_tex_rgb_ci4_pal = .data:0x004BEC80; // type:object size:0x20 scope:global align:32
+inv_ori_w1_tex = .data:0x004BECA0; // type:object size:0x800 scope:global align:32
+inv_ori_w2_tex = .data:0x004BF4A0; // type:object size:0x400 scope:global align:32
+inv_ori_w3_tex = .data:0x004BF8A0; // type:object size:0x800 scope:global align:32
+inv_ori_w4_tex = .data:0x004C00A0; // type:object size:0x100 scope:global align:32
+sav_win_waku_tex = .data:0x004C01A0; // type:object size:0x200 scope:local align:32
+inv_original_futa2_tex = .data:0x004C03A0; // type:object size:0x200 scope:local align:32
+inv_ori_tw4_tex_rgb_ci4 = .data:0x004C05A0; // type:object size:0x80 scope:global align:32
+inv_original_cloth_tex_rgb_ci4 = .data:0x004C0620; // type:object size:0x200 scope:global align:32
+inv_ori_tw1_tex_rgb_ci4 = .data:0x004C0820; // type:object size:0x400 scope:global align:32
+inv_ori_tw2_tex_rgb_ci4 = .data:0x004C0C20; // type:object size:0x200 scope:global align:32
+inv_ori_tw3_tex_rgb_ci4 = .data:0x004C0E20; // type:object size:0x400 scope:global align:32
+inv_original_v = .data:0x004C1220; // type:object size:0xDE0 scope:global align:8
+needlework_before_model = .data:0x004C2000; // type:object size:0x20 scope:global align:8
+inv_original_w_model_before = .data:0x004C2020; // type:object size:0x38 scope:global align:8
+inv_original_w9_model = .data:0x004C2058; // type:object size:0x38 scope:global align:8
+inv_original_waku_model = .data:0x004C2090; // type:object size:0x68 scope:global align:8
+inv_original_mb_before_model = .data:0x004C20F8; // type:object size:0x20 scope:global align:8
+inv_original_mb1_model = .data:0x004C2118; // type:object size:0x18 scope:global align:8
+inv_original_mb2_model = .data:0x004C2130; // type:object size:0x18 scope:global align:8
+inv_original_mb3_model = .data:0x004C2148; // type:object size:0x18 scope:global align:8
+inv_original_mb4_model = .data:0x004C2160; // type:object size:0x18 scope:global align:8
+inv_original_mb5_model = .data:0x004C2178; // type:object size:0x18 scope:global align:8
+inv_original_mb6_model = .data:0x004C2190; // type:object size:0x18 scope:global align:8
+inv_original_mb7_model = .data:0x004C21A8; // type:object size:0x18 scope:global align:8
+inv_original_mb8_model = .data:0x004C21C0; // type:object size:0x18 scope:global align:8
+inv_original_f_model = .data:0x004C21D8; // type:object size:0x68 scope:global align:8
+inv_original_w1T_model = .data:0x004C2240; // type:object size:0x38 scope:global align:8
+inv_original_w2T_model = .data:0x004C2278; // type:object size:0x38 scope:global align:8
+inv_original_w3T_model = .data:0x004C22B0; // type:object size:0x38 scope:global align:8
+inv_original_w4T_model = .data:0x004C22E8; // type:object size:0x38 scope:global align:8
+inv_original_w5T_model = .data:0x004C2320; // type:object size:0x38 scope:global align:8
+inv_original_w6T_model = .data:0x004C2358; // type:object size:0x38 scope:global align:8
+inv_original_w7T_model = .data:0x004C2390; // type:object size:0x38 scope:global align:8
+inv_original_w8T_model = .data:0x004C23C8; // type:object size:0x38 scope:global align:8
+inv_original_ueT_model = .data:0x004C2400; // type:object size:0x108 scope:global align:8
+inv_original_aw5_tex = .data:0x004C2520; // type:object size:0x100 scope:global align:32
+inv_original2_v = .data:0x004C2620; // type:object size:0xDC0 scope:global align:8
+inv_original2_w9_model = .data:0x004C33E0; // type:object size:0x38 scope:global align:8
+inv_original2_waku_model = .data:0x004C3418; // type:object size:0x68 scope:global align:8
+inv_original2_mb1_model = .data:0x004C3480; // type:object size:0x18 scope:global align:8
+inv_original2_mb2_model = .data:0x004C3498; // type:object size:0x18 scope:global align:8
+inv_original2_mb3_model = .data:0x004C34B0; // type:object size:0x18 scope:global align:8
+inv_original2_mb4_model = .data:0x004C34C8; // type:object size:0x18 scope:global align:8
+inv_original2_mb5_model = .data:0x004C34E0; // type:object size:0x18 scope:global align:8
+inv_original2_mb6_model = .data:0x004C34F8; // type:object size:0x18 scope:global align:8
+inv_original2_mb7_model = .data:0x004C3510; // type:object size:0x18 scope:global align:8
+inv_original2_mb8_model = .data:0x004C3528; // type:object size:0x18 scope:global align:8
+inv_original2_f_model = .data:0x004C3540; // type:object size:0x68 scope:global align:8
+inv_original2_w1T_model = .data:0x004C35A8; // type:object size:0x38 scope:global align:8
+inv_original2_w2T_model = .data:0x004C35E0; // type:object size:0x38 scope:global align:8
+inv_original2_w3T_model = .data:0x004C3618; // type:object size:0x38 scope:global align:8
+inv_original2_w4T_model = .data:0x004C3650; // type:object size:0x38 scope:global align:8
+inv_original2_w5T_model = .data:0x004C3688; // type:object size:0x38 scope:global align:8
+inv_original2_w6T_model = .data:0x004C36C0; // type:object size:0x38 scope:global align:8
+inv_original2_w7T_model = .data:0x004C36F8; // type:object size:0x38 scope:global align:8
+inv_original2_w8T_model = .data:0x004C3730; // type:object size:0x38 scope:global align:8
+inv_original2_ueT_model = .data:0x004C3768; // type:object size:0x110 scope:global align:8
+inv_original_mark_tex = .data:0x004C3880; // type:object size:0x100 scope:global align:32
+sav_mark_v = .data:0x004C3980; // type:object size:0x40 scope:global align:8
+sav_mark_winT_before_model = .data:0x004C39C0; // type:object size:0x30 scope:global align:8
+sav_mark_winT_model = .data:0x004C39F0; // type:object size:0x18 scope:global align:8
+kei_win_latest_tex = .data:0x004C3A20; // type:object size:0x500 scope:global align:32
+kei_win_entry_tex = .data:0x004C3F20; // type:object size:0x400 scope:global align:32
+kei_win_quit_tex = .data:0x004C4320; // type:object size:0x200 scope:local align:32
+kei_win_writen_tex = .data:0x004C4520; // type:object size:0x400 scope:global align:32
+kei_win_yaji2_tex = .data:0x004C4920; // type:object size:0x400 scope:global align:32
+std_tex = .data:0x004C4D20; // type:object size:0x800 scope:local align:32
+yaji = .data:0x004C5520; // type:object size:0x80 scope:local align:32
+ct_tex = .data:0x004C55A0; // type:object size:0x400 scope:local align:32
+kei_win_st1_tex_rgb_ia8 = .data:0x004C59A0; // type:object size:0x1000 scope:global align:32
+kei_win_st2_tex_rgb_ia8 = .data:0x004C69A0; // type:object size:0x1000 scope:global align:32
+kei_win_st3_tex_rgb_ia8 = .data:0x004C79A0; // type:object size:0x1000 scope:global align:32
+kei_win_st4_tex_rgb_ia8 = .data:0x004C89A0; // type:object size:0x1000 scope:global align:32
+kei_win_st5_tex_rgb_ia8 = .data:0x004C99A0; // type:object size:0x1000 scope:global align:32
+kei_win_st6_tex_rgb_ia8 = .data:0x004CA9A0; // type:object size:0x1000 scope:global align:32
+lat_tegami_b2_tex = .data:0x004CB9A0; // type:object size:0x800 scope:local align:32
+lat_tegami_b3_tex = .data:0x004CC1A0; // type:object size:0x800 scope:local align:32
+kei_win_2b1_tex_rgb_i4 = .data:0x004CC9A0; // type:object size:0x200 scope:local align:32
+kei_hyouji_v = .data:0x004CCBA0; // type:object size:0x340 scope:global align:8
+kei_win_bt_model = .data:0x004CCEE0; // type:object size:0x38 scope:global align:8
+kei_win_b2_model = .data:0x004CCF18; // type:object size:0x38 scope:local align:8
+kei_win_cbt_model = .data:0x004CCF50; // type:object size:0x38 scope:global align:8
+kei_win_3DT_model = .data:0x004CCF88; // type:object size:0x38 scope:global align:8
+kei_win_cmojiT_model = .data:0x004CCFC0; // type:object size:0x50 scope:global align:8
+kei_win_bmojiT_model = .data:0x004CD010; // type:object size:0x38 scope:global align:8
+kei_win_amojiT_model = .data:0x004CD048; // type:object size:0x38 scope:local align:8
+kei_win_stT_model = .data:0x004CD080; // type:object size:0x40 scope:global align:8
+kei_win_cbT_model = .data:0x004CD0C0; // type:object size:0x38 scope:global align:8
+kei_win_yaji1T_mode = .data:0x004CD0F8; // type:object size:0x30 scope:global align:8
+kei_win_yaji1T_model = .data:0x004CD128; // type:object size:0x10 scope:global align:8
+kei_win_yaji2T_model = .data:0x004CD138; // type:object size:0x10 scope:global align:8
+kei_hyouji_mode = .data:0x004CD148; // type:object size:0x28 scope:global align:8
+kei_hyouji_model = .data:0x004CD170; // type:object size:0x70 scope:global align:8
+kei_win_pin_pal = .data:0x004CD1E0; // type:object size:0x20 scope:global align:32
+kei_win_pin_tex = .data:0x004CD200; // type:object size:0x200 scope:global align:32
+kei_win_w1_tex = .data:0x004CD400; // type:object size:0x1000 scope:global align:32
+kei_win_w2_tex = .data:0x004CE400; // type:object size:0x800 scope:global align:32
+kei_win_w3_tex = .data:0x004CEC00; // type:object size:0x400 scope:global align:32
+kei_win_kage2_tex = .data:0x004CF000; // type:object size:0x800 scope:global align:32
+kei_win_kage3_tex = .data:0x004CF800; // type:object size:0x400 scope:global align:32
+kei_win_kage4_tex = .data:0x004CFC00; // type:object size:0x400 scope:global align:32
+kei_win_v = .data:0x004D0000; // type:object size:0x3B0 scope:global align:8
+kei_win_kamiT_model = .data:0x004D03B0; // type:object size:0x80 scope:global align:8
+kei_win_pinT_model = .data:0x004D0430; // type:object size:0x40 scope:global align:8
+kei_win_wakuT_model = .data:0x004D0470; // type:object size:0x88 scope:global align:8
+kei_win_mode = .data:0x004D04F8; // type:object size:0x20 scope:global align:8
+kei_win_model = .data:0x004D0518; // type:object size:0x28 scope:global align:8
+pwd_win_kagi2_pal = .data:0x004D0540; // type:object size:0x20 scope:global align:32
+pwd_win_nuno_tex_rgb_ci4_pal = .data:0x004D0560; // type:object size:0x20 scope:global align:32
+pwd_win_w4_tex_rgb_ci4_pal = .data:0x004D0580; // type:object size:0x20 scope:global align:32
+pwd_win_w1_tex_rgb_ci4_pal = .data:0x004D05A0; // type:object size:0x20 scope:global align:32
+pwd_win_w2_tex_rgb_ci4_pal = .data:0x004D05C0; // type:object size:0x20 scope:global align:32
+pwd_win_w3_tex_rgb_ci4_pal = .data:0x004D05E0; // type:object size:0x20 scope:global align:32
+pwd_win_moji_tex = .data:0x004D0600; // type:object size:0x80 scope:global align:32
+fkm_win_fuki2_tex = .data:0x004D0680; // type:object size:0x800 scope:local align:32
+pwd_win_sw1_tex = .data:0x004D0E80; // type:object size:0x400 scope:global align:32
+pwd_win_sw2_tex = .data:0x004D1280; // type:object size:0x400 scope:global align:32
+pwd_win_sw3_tex = .data:0x004D1680; // type:object size:0x200 scope:global align:32
+pwd_win_sw4_tex = .data:0x004D1880; // type:object size:0x80 scope:global align:32
+pwd_win_icon_tex = .data:0x004D1900; // type:object size:0x800 scope:global align:32
+pwd_win_nuno_tex_rgb_ci4 = .data:0x004D2100; // type:object size:0x200 scope:global align:32
+pwd_win_w4_tex_rgb_ci4 = .data:0x004D2300; // type:object size:0x80 scope:global align:32
+pwd_win_w1_tex_rgb_ci4 = .data:0x004D2380; // type:object size:0x400 scope:global align:32
+pwd_win_w2_tex_rgb_ci4 = .data:0x004D2780; // type:object size:0x400 scope:global align:32
+pwd_win_w3_tex_rgb_ci4 = .data:0x004D2B80; // type:object size:0x200 scope:global align:32
+pwd_win_v = .data:0x004D2D80; // type:object size:0xE80 scope:global align:8
+pwd_win_w11_model = .data:0x004D3C00; // type:object size:0x30 scope:global align:8
+pwd_win_ue_model = .data:0x004D3C30; // type:object size:0xB0 scope:global align:8
+pwd_win_fuki_model = .data:0x004D3CE0; // type:object size:0x38 scope:global align:8
+pwd_win_waku_model = .data:0x004D3D18; // type:object size:0x28 scope:global align:8
+pwd_win_moji_model = .data:0x004D3D40; // type:object size:0x38 scope:global align:8
+pwd_win_sen_model = .data:0x004D3D78; // type:object size:0x30 scope:global align:8
+pwd_win_sen2_model = .data:0x004D3DA8; // type:object size:0xD0 scope:global align:8
+pwd_win_w1T_model = .data:0x004D3E78; // type:object size:0x30 scope:global align:8
+pwd_win_w2T_model = .data:0x004D3EA8; // type:object size:0x30 scope:global align:8
+pwd_win_w3T_model = .data:0x004D3ED8; // type:object size:0x30 scope:global align:8
+pwd_win_w4T_model = .data:0x004D3F08; // type:object size:0x30 scope:global align:8
+pwd_win_w5T_model = .data:0x004D3F38; // type:object size:0x30 scope:global align:8
+pwd_win_w6T_model = .data:0x004D3F68; // type:object size:0x30 scope:global align:8
+pwd_win_w7T_model = .data:0x004D3F98; // type:object size:0x30 scope:global align:8
+pwd_win_w8T_model = .data:0x004D3FC8; // type:object size:0x30 scope:global align:8
+pwd_win_w9T_model = .data:0x004D3FF8; // type:object size:0x30 scope:global align:8
+pwd_win_w10T_model = .data:0x004D4028; // type:object size:0x30 scope:global align:8
+pwd_win_iconT_model = .data:0x004D4058; // type:object size:0x38 scope:global align:8
+pwd_win_mode = .data:0x004D4090; // type:object size:0x40 scope:global align:8
+pwd_win_model = .data:0x004D40D0; // type:object size:0xA8 scope:global align:8
+kai_sousa_button3_tex = .data:0x004D4180; // type:object size:0x100 scope:local align:32
+pas_start_v = .data:0x004D4280; // type:object size:0xB0 scope:global align:8
+pas_start_yaji_model = .data:0x004D4330; // type:object size:0x28 scope:global align:8
+pas_start_buttonT_model = .data:0x004D4358; // type:object size:0x40 scope:global align:8
+pas_start_model = .data:0x004D4398; // type:object size:0x18 scope:global align:8
+pas_win_nimotu_pal = .data:0x004D43C0; // type:object size:0x20 scope:global align:32
+pas_win_nuno_tex_rgb_ci4_pal = .data:0x004D43E0; // type:object size:0x20 scope:global align:32
+pas_win_ta1_tex_rgb_ci4_pal = .data:0x004D4400; // type:object size:0x20 scope:global align:32
+pas_win_ta2_tex_rgb_ci4_pal = .data:0x004D4420; // type:object size:0x20 scope:global align:32
+pas_win_ta3_tex_rgb_ci4_pal = .data:0x004D4440; // type:object size:0x20 scope:global align:32
+pas_win_name_tex = .data:0x004D4460; // type:object size:0x200 scope:global align:32
+pas_win_town_tex = .data:0x004D4660; // type:object size:0x200 scope:global align:32
+fkm_win_fuki2_tex = .data:0x004D4860; // type:object size:0x800 scope:local align:32
+pas_win_wa_tex = .data:0x004D5060; // type:object size:0x80 scope:global align:32
+pas_win_test_tex = .data:0x004D50E0; // type:object size:0x80 scope:global align:32
+pas_win_icon_tex = .data:0x004D5160; // type:object size:0x800 scope:global align:32
+fkm_win_w4_tex = .data:0x004D5960; // type:object size:0x80 scope:local align:32
+fkm_win_w3_tex = .data:0x004D59E0; // type:object size:0x200 scope:local align:32
+fkm_win_w2_tex = .data:0x004D5BE0; // type:object size:0x200 scope:local align:32
+fkm_win_w1_tex = .data:0x004D5DE0; // type:object size:0x400 scope:local align:32
+pas_win_nuno_tex_rgb_ci4 = .data:0x004D61E0; // type:object size:0x200 scope:global align:32
+pas_win_ta1_tex_rgb_ci4 = .data:0x004D63E0; // type:object size:0x400 scope:global align:32
+pas_win_ta2_tex_rgb_ci4 = .data:0x004D67E0; // type:object size:0x400 scope:global align:32
+pas_win_ta3_tex_rgb_ci4 = .data:0x004D6BE0; // type:object size:0x400 scope:global align:32
+pas_win_v = .data:0x004D6FE0; // type:object size:0x940 scope:global align:8
+pas_win_fuki_model = .data:0x004D7920; // type:object size:0x38 scope:global align:8
+pas_win_wmura_model = .data:0x004D7958; // type:object size:0x38 scope:global align:8
+pas_win_wname_model = .data:0x004D7990; // type:object size:0x38 scope:global align:8
+pas_win_name_model = .data:0x004D79C8; // type:object size:0x50 scope:global align:8
+pas_win_waku1_model = .data:0x004D7A18; // type:object size:0x50 scope:global align:8
+pas_win_waku2_model = .data:0x004D7A68; // type:object size:0x50 scope:global align:8
+pas_win_w1T_model = .data:0x004D7AB8; // type:object size:0x30 scope:global align:8
+pas_win_w2T_model = .data:0x004D7AE8; // type:object size:0x30 scope:global align:8
+pas_win_w3T_model = .data:0x004D7B18; // type:object size:0x30 scope:global align:8
+pas_win_w4T_model = .data:0x004D7B48; // type:object size:0x30 scope:global align:8
+pas_win_w5T_model = .data:0x004D7B78; // type:object size:0x30 scope:global align:8
+pas_win_w6T_model = .data:0x004D7BA8; // type:object size:0x30 scope:global align:8
+pas_win_w7T_model = .data:0x004D7BD8; // type:object size:0x30 scope:global align:8
+pas_win_w8T_model = .data:0x004D7C08; // type:object size:0x30 scope:global align:8
+pas_win_w9T_model = .data:0x004D7C38; // type:object size:0x30 scope:global align:8
+pas_win_w10T_model = .data:0x004D7C68; // type:object size:0x30 scope:global align:8
+pas_win_ueT_model = .data:0x004D7C98; // type:object size:0xA8 scope:global align:8
+pas_win_iconT_model = .data:0x004D7D40; // type:object size:0x40 scope:global align:8
+pas_win_mode = .data:0x004D7D80; // type:object size:0x40 scope:global align:8
+pas_win_model = .data:0x004D7DC0; // type:object size:0x98 scope:global align:8
+fkm_win_house_pal = .data:0x004D7E60; // type:object size:0x20 scope:global align:32
+fkm_win_ie_tex_rgb_ci4_pal = .data:0x004D7E80; // type:object size:0x20 scope:global align:32
+fkm_win_sw1_tex_rgb_ci4_pal = .data:0x004D7EA0; // type:object size:0x20 scope:global align:32
+fkm_win_sw2_tex_rgb_ci4_pal = .data:0x004D7EC0; // type:object size:0x20 scope:global align:32
+fkm_win_sw3_tex_rgb_ci4_pal = .data:0x004D7EE0; // type:object size:0x20 scope:global align:32
+fri_win_owe_tex = .data:0x004D7F00; // type:object size:0x300 scope:global align:32
+fkm_win_fuki2_tex = .data:0x004D8200; // type:object size:0x800 scope:local align:32
+fri_win_payment_tex = .data:0x004D8A00; // type:object size:0x200 scope:global align:32
+fri_win_cash_tex = .data:0x004D8C00; // type:object size:0x200 scope:local align:32
+fri_win_bell_tex = .data:0x004D8E00; // type:object size:0x100 scope:local align:32
+fkm_win_house_tex = .data:0x004D8F00; // type:object size:0x800 scope:global align:32
+fkm_win_sen_tex = .data:0x004D9700; // type:object size:0x80 scope:global align:32
+fkm_win_w4_tex = .data:0x004D9780; // type:object size:0x80 scope:local align:32
+fkm_win_w3_tex = .data:0x004D9800; // type:object size:0x200 scope:local align:32
+fkm_win_w2_tex = .data:0x004D9A00; // type:object size:0x200 scope:local align:32
+fkm_win_w1_tex = .data:0x004D9C00; // type:object size:0x400 scope:local align:32
+fkm_win_ie_tex_rgb_ci4 = .data:0x004DA000; // type:object size:0x200 scope:global align:32
+fkm_win_sw1_tex_rgb_ci4 = .data:0x004DA200; // type:object size:0x400 scope:global align:32
+fkm_win_sw2_tex_rgb_ci4 = .data:0x004DA600; // type:object size:0x400 scope:global align:32
+fkm_win_sw3_tex_rgb_ci4 = .data:0x004DAA00; // type:object size:0x400 scope:global align:32
+fkm_win_v = .data:0x004DAE00; // type:object size:0x740 scope:global align:8
+fkm_win_moji_model = .data:0x004DB540; // type:object size:0x88 scope:global align:8
+fkm_win_fuki_model = .data:0x004DB5C8; // type:object size:0x38 scope:global align:8
+fkm_win_wakuT_model = .data:0x004DB600; // type:object size:0xB0 scope:global align:8
+fkm_win_iconT_model = .data:0x004DB6B0; // type:object size:0x40 scope:global align:8
+fkm_win_senT_model = .data:0x004DB6F0; // type:object size:0x38 scope:global align:8
+fkm_win_sw1T_model = .data:0x004DB728; // type:object size:0x30 scope:global align:8
+fkm_win_sw2T_model = .data:0x004DB758; // type:object size:0x30 scope:global align:8
+fkm_win_sw3T_model = .data:0x004DB788; // type:object size:0x30 scope:global align:8
+fkm_win_sw4T_model = .data:0x004DB7B8; // type:object size:0x30 scope:global align:8
+fkm_win_sw5T_model = .data:0x004DB7E8; // type:object size:0x30 scope:global align:8
+fkm_win_sw6T_model = .data:0x004DB818; // type:object size:0x30 scope:global align:8
+fkm_win_sw7T_model = .data:0x004DB848; // type:object size:0x30 scope:global align:8
+fkm_win_sw8T_model = .data:0x004DB878; // type:object size:0x30 scope:global align:8
+fkm_win_sw9T_model = .data:0x004DB8A8; // type:object size:0x30 scope:global align:8
+fkm_win_sw10T_model = .data:0x004DB8D8; // type:object size:0x30 scope:global align:8
+fkm_win_mode = .data:0x004DB908; // type:object size:0x40 scope:global align:8
+fkm_win_model = .data:0x004DB948; // type:object size:0x90 scope:global align:8
+san_itemw_waku_tex = .data:0x004DB9E0; // type:object size:0x800 scope:global align:32
+sen_itemw_kage_tex = .data:0x004DC1E0; // type:object size:0x400 scope:global align:32
+sen_itemw_yaji_tex = .data:0x004DC5E0; // type:object size:0x80 scope:local align:32
+sen_itemw_yaji2_tex = .data:0x004DC660; // type:object size:0x100 scope:local align:32
+sen_itemw_v = .data:0x004DC760; // type:object size:0x100 scope:global align:8
+sen_item2_DL_mode = .data:0x004DC860; // type:object size:0x28 scope:global align:8
+sen_itemw_kage_model = .data:0x004DC888; // type:object size:0x40 scope:global align:8
+sen_itemw_yajirushi_model = .data:0x004DC8C8; // type:object size:0x38 scope:global align:8
+sen_itemw_wakuT_model = .data:0x004DC900; // type:object size:0x38 scope:global align:8
+sen_itemw_yajirushi2T_model = .data:0x004DC938; // type:object size:0x40 scope:global align:8
+sen_qitem_kage_tex = .data:0x004DC980; // type:object size:0x400 scope:global align:32
+sen_win_yaji2_tex = .data:0x004DCD80; // type:object size:0x100 scope:local align:32
+sen_qitem_waku_tex = .data:0x004DCE80; // type:object size:0x800 scope:global align:32
+sen_itemw_yaji2_tex = .data:0x004DD680; // type:object size:0x100 scope:local align:32
+sen_qitem_yajirushi = .data:0x004DD780; // type:object size:0x80 scope:global align:32
+sen_qitem_yajirushi2 = .data:0x004DD800; // type:object size:0x100 scope:global align:32
+sen_itemw_yaji_tex = .data:0x004DD900; // type:object size:0x80 scope:local align:32
+sen_item2_yaji_tex = .data:0x004DD980; // type:object size:0x80 scope:local align:32
+sen_qitem_v = .data:0x004DDA00; // type:object size:0x200 scope:global align:8
+sen_qitem_kage_model = .data:0x004DDC00; // type:object size:0x40 scope:global align:8
+sen_qitem_yajirushi3_model = .data:0x004DDC40; // type:object size:0x40 scope:global align:8
+sen_qitem_yajirushi5_model = .data:0x004DDC80; // type:object size:0x40 scope:global align:8
+sen_qitem_wakuT_model = .data:0x004DDCC0; // type:object size:0x48 scope:global align:8
+sen_qitem_yajirushiT_model = .data:0x004DDD08; // type:object size:0x38 scope:global align:8
+sen_qitem_yajirushi2T_model = .data:0x004DDD40; // type:object size:0x48 scope:global align:8
+sen_qitem_yajirushi4T_model = .data:0x004DDD88; // type:object size:0x48 scope:global align:8
+sen_qitem_yajirushi6T_model = .data:0x004DDDD0; // type:object size:0x48 scope:global align:8
+sen_win_wa1_tex = .data:0x004DDE20; // type:object size:0x1000 scope:global align:32
+sen_win_wa2_tex = .data:0x004DEE20; // type:object size:0x1000 scope:global align:32
+sen_win_waku1_tex = .data:0x004DFE20; // type:object size:0x1000 scope:global align:32
+sen_win_yaji2_tex = .data:0x004E0E20; // type:object size:0x100 scope:local align:32
+sen_item2_yaji_tex = .data:0x004E0F20; // type:object size:0x80 scope:local align:32
+sen_win_v = .data:0x004E0FA0; // type:object size:0x220 scope:global align:8
+sen_win_cursor_model = .data:0x004E11C0; // type:object size:0x30 scope:global align:8
+sen_win_kageT_model = .data:0x004E11F0; // type:object size:0x48 scope:global align:8
+sen_win_wakuT_model = .data:0x004E1238; // type:object size:0x70 scope:global align:8
+sen_win_yajirushiT_model = .data:0x004E12A8; // type:object size:0x38 scope:global align:8
+sen_win_yajirushi2T_model = .data:0x004E12E0; // type:object size:0x40 scope:global align:8
+tim_hari_h1_pal = .data:0x004E1320; // type:object size:0x20 scope:global align:4
+tim_hari_h2_pal = .data:0x004E1340; // type:object size:0x20 scope:global align:4
+tim_hari_maru_pal = .data:0x004E1360; // type:object size:0x20 scope:global align:4
+tim_hari_h1_tex = .data:0x004E1380; // type:object size:0x400 scope:global align:4
+tim_hari_h2_tex = .data:0x004E1780; // type:object size:0x400 scope:global align:4
+tim_hari_maru_tex = .data:0x004E1B80; // type:object size:0x80 scope:global align:4
+tim_hari_v = .data:0x004E1C00; // type:object size:0xC0 scope:global align:8
+tim_hari_mode = .data:0x004E1CC0; // type:object size:0x30 scope:global align:8
+tim_hari_b1T_model = .data:0x004E1CF0; // type:object size:0x88 scope:global align:8
+tim_hari_b2T_model = .data:0x004E1D78; // type:object size:0x88 scope:global align:8
+tim_hari_b3T_model = .data:0x004E1E00; // type:object size:0x88 scope:global align:8
+tim_win_newtokei_tex = .data:0x004E1EA0; // type:object size:0x20 scope:global align:32
+tim_win_nuno_tex_rgb_ci4_pal = .data:0x004E1EC0; // type:object size:0x20 scope:global align:32
+tim_win_sw1_tex_rgb_ci4_pal = .data:0x004E1EE0; // type:object size:0x20 scope:global align:32
+tim_win_sw2_tex_rgb_ci4_pal = .data:0x004E1F00; // type:object size:0x20 scope:global align:32
+tim_win_sw3_tex_rgb_ci4_pal = .data:0x004E1F20; // type:object size:0x20 scope:global align:32
+tim_win_sw4_tex_rgb_ci4_pal = .data:0x004E1F40; // type:object size:0x20 scope:global align:32
+tim_win_sw5_tex_rgb_ci4_pal = .data:0x004E1F60; // type:object size:0x20 scope:global align:32
+tim_win_sw6_tex_rgb_ci4_pal = .data:0x004E1F80; // type:object size:0x20 scope:global align:32
+tim_win_sw7_tex_rgb_ci4_pal = .data:0x004E1FA0; // type:object size:0x20 scope:global align:32
+tim_win_tokei1_tex = .data:0x004E1FC0; // type:object size:0x800 scope:global align:32
+tim_win_fuki_tex = .data:0x004E27C0; // type:object size:0x800 scope:global align:32
+tim_win_moji_tex = .data:0x004E2FC0; // type:object size:0x80 scope:global align:32
+tim_win_on_tex = .data:0x004E3040; // type:object size:0x80 scope:global align:32
+testmocomma = .data:0x004E30C0; // type:object size:0x80 scope:global align:32
+tim_win_maru_tex = .data:0x004E3140; // type:object size:0x80 scope:global align:32
+tim_win_w1_tex = .data:0x004E31C0; // type:object size:0x400 scope:global align:32
+tim_win_w2_tex = .data:0x004E35C0; // type:object size:0x400 scope:global align:32
+tim_win_w3_tex = .data:0x004E39C0; // type:object size:0x200 scope:global align:32
+tim_win_w4_tex = .data:0x004E3BC0; // type:object size:0x400 scope:global align:32
+tim_win_w5_tex = .data:0x004E3FC0; // type:object size:0x400 scope:global align:32
+tim_win_april_tex_rgb_i4 = .data:0x004E43C0; // type:object size:0x200 scope:global align:32
+tim_win_august_tex_rgb_i4 = .data:0x004E45C0; // type:object size:0x200 scope:global align:32
+tim_win_december_tex_rgb_i4 = .data:0x004E47C0; // type:object size:0x200 scope:global align:32
+tim_win_february_tex_rgb_i4 = .data:0x004E49C0; // type:object size:0x200 scope:global align:32
+tim_win_january_tex_rgb_i4 = .data:0x004E4BC0; // type:object size:0x200 scope:global align:32
+tim_win_july_tex_rgb_i4 = .data:0x004E4DC0; // type:object size:0x200 scope:global align:32
+tim_win_june_tex_rgb_i4 = .data:0x004E4FC0; // type:object size:0x200 scope:global align:32
+tim_win_march_tex_rgb_i4 = .data:0x004E51C0; // type:object size:0x200 scope:global align:32
+tim_win_may_tex_rgb_i4 = .data:0x004E53C0; // type:object size:0x200 scope:global align:32
+tim_win_november_tex_rgb_i4 = .data:0x004E55C0; // type:object size:0x200 scope:global align:32
+tim_win_october_tex_rgb_i4 = .data:0x004E57C0; // type:object size:0x200 scope:global align:32
+tim_win_september_tex_rgb_i4 = .data:0x004E59C0; // type:object size:0x200 scope:global align:32
+tim_win_fri_tex_rgb_i4 = .data:0x004E5BC0; // type:object size:0x200 scope:global align:32
+tim_win_mon_tex_rgb_i4 = .data:0x004E5DC0; // type:object size:0x200 scope:global align:32
+tim_win_sat_tex_rgb_i4 = .data:0x004E5FC0; // type:object size:0x200 scope:global align:32
+tim_win_sun_tex_rgb_i4 = .data:0x004E61C0; // type:object size:0x200 scope:global align:32
+tim_win_thu_tex_rgb_i4 = .data:0x004E63C0; // type:object size:0x200 scope:global align:32
+tim_win_tue_tex_rgb_i4 = .data:0x004E65C0; // type:object size:0x200 scope:global align:32
+tim_win_wed_tex_rgb_i4 = .data:0x004E67C0; // type:object size:0x200 scope:global align:32
+tim_win_nuno_tex_rgb_ci4 = .data:0x004E69C0; // type:object size:0x200 scope:global align:32
+tim_win_sw1_tex_rgb_ci4 = .data:0x004E6BC0; // type:object size:0x400 scope:global align:32
+tim_win_sw2_tex_rgb_ci4 = .data:0x004E6FC0; // type:object size:0x400 scope:global align:32
+tim_win_sw3_tex_rgb_ci4 = .data:0x004E73C0; // type:object size:0x400 scope:global align:32
+tim_win_sw4_tex_rgb_ci4 = .data:0x004E77C0; // type:object size:0x400 scope:global align:32
+tim_win_sw5_tex_rgb_ci4 = .data:0x004E7BC0; // type:object size:0x400 scope:global align:32
+tim_win_sw6_tex_rgb_ci4 = .data:0x004E7FC0; // type:object size:0x400 scope:global align:32
+tim_win_sw7_tex_rgb_ci4 = .data:0x004E83C0; // type:object size:0x400 scope:global align:32
+tim_win_v = .data:0x004E87C0; // type:object size:0x870 scope:global align:8
+tim_win_ue_model = .data:0x004E9030; // type:object size:0xC8 scope:global align:8
+tim_win_moji_model = .data:0x004E90F8; // type:object size:0x88 scope:global align:8
+tim_win_youbi_model = .data:0x004E9180; // type:object size:0x38 scope:global align:8
+tim_win_month_model = .data:0x004E91B8; // type:object size:0x30 scope:global align:8
+tim_win_sw1T_model = .data:0x004E91E8; // type:object size:0x30 scope:global align:8
+tim_win_sw2T_model = .data:0x004E9218; // type:object size:0x30 scope:global align:8
+tim_win_sw3T_model = .data:0x004E9248; // type:object size:0x30 scope:global align:8
+tim_win_sw4T_model = .data:0x004E9278; // type:object size:0x30 scope:global align:8
+tim_win_sw5T_model = .data:0x004E92A8; // type:object size:0x30 scope:global align:8
+tim_win_sw6T_model = .data:0x004E92D8; // type:object size:0x30 scope:global align:8
+tim_win_sw7T_model = .data:0x004E9308; // type:object size:0x30 scope:global align:8
+tim_win_sw8T_model = .data:0x004E9338; // type:object size:0x30 scope:global align:8
+tim_win_sw9T_model = .data:0x004E9368; // type:object size:0x30 scope:global align:8
+tim_win_sw10T_model = .data:0x004E9398; // type:object size:0x30 scope:global align:8
+tim_win_sw11T_model = .data:0x004E93C8; // type:object size:0x30 scope:global align:8
+tim_win_sw12T_model = .data:0x004E93F8; // type:object size:0x30 scope:global align:8
+tim_win_sw13T_model = .data:0x004E9428; // type:object size:0x30 scope:global align:8
+tim_win_sw14T_model = .data:0x004E9458; // type:object size:0x30 scope:global align:8
+tim_win_tokeiT_model = .data:0x004E9488; // type:object size:0x40 scope:global align:8
+tim_win_fukiT_model = .data:0x004E94C8; // type:object size:0x38 scope:global align:8
+tim_win_mode = .data:0x004E9500; // type:object size:0x40 scope:global align:8
+tim_win_model = .data:0x004E9540; // type:object size:0xA8 scope:global align:8
+att_win_waku1_tex = .data:0x004E9600; // type:object size:0x400 scope:global align:32
+att_win_waku2_tex = .data:0x004E9A00; // type:object size:0x400 scope:global align:32
+att_win_waku3_tex = .data:0x004E9E00; // type:object size:0x400 scope:global align:32
+att_win_waku4_tex = .data:0x004EA200; // type:object size:0x400 scope:global align:32
+att_win_waku5_tex = .data:0x004EA600; // type:object size:0x400 scope:global align:32
+att_win_waku6_tex = .data:0x004EAA00; // type:object size:0x80 scope:global align:32
+att_win_v = .data:0x004EAA80; // type:object size:0x2F0 scope:global align:8
+att_win_cursor_model = .data:0x004EAD70; // type:object size:0x38 scope:global align:8
+att_win_winT_model = .data:0x004EADA8; // type:object size:0xF0 scope:global align:8
+att_win_mode = .data:0x004EAE98; // type:object size:0x28 scope:global align:8
+att_win_model = .data:0x004EAEC0; // type:object size:0x18 scope:global align:8
+ef_yuki01_1 = .data:0x004EAEE0; // type:object size:0x80 scope:global align:32
+ef_yuki01_00_v = .data:0x004EAF60; // type:object size:0x40 scope:global align:8
+ef_yuki01_setmode = .data:0x004EAFA0; // type:object size:0x48 scope:global align:8
+ef_yuki01_00_model = .data:0x004EAFE8; // type:object size:0x18 scope:global align:8
+act_daruma_pal = .data:0x004EB000; // type:object size:0x20 scope:local align:4
+act_darumaA_tex = .data:0x004EB020; // type:object size:0x200 scope:global align:4
+act_darumaA_v = .data:0x004EB220; // type:object size:0x220 scope:global align:8
+act_darumaA_model = .data:0x004EB440; // type:object size:0x148 scope:global align:8
+act_daruma_pal = .data:0x004EB588; // type:object size:0x20 scope:local align:4
+act_darumaB_tex = .data:0x004EB5A8; // type:object size:0x200 scope:global align:4
+act_darumaB_v = .data:0x004EB7A8; // type:object size:0x1E0 scope:global align:8
+act_darumaB_model = .data:0x004EB988; // type:object size:0x138 scope:global align:8
+ttl_1_v = .data:0x004EBAC0; // type:object size:0x1450 scope:global align:8
+head_ttl_model = .data:0x004ECF10; // type:object size:0x228 scope:global align:8
+mouth_ttl_model = .data:0x004ED138; // type:object size:0xA8 scope:global align:8
+hand_ttl_model = .data:0x004ED1E0; // type:object size:0x60 scope:global align:8
+Rarm2_ttl_model = .data:0x004ED240; // type:object size:0x88 scope:global align:8
+Rarm1_ttl_model = .data:0x004ED2C8; // type:object size:0x58 scope:global align:8
+Larm2_ttl_model = .data:0x004ED320; // type:object size:0x88 scope:global align:8
+Larm1_ttl_model = .data:0x004ED3A8; // type:object size:0x58 scope:global align:8
+chest_ttl_model = .data:0x004ED400; // type:object size:0x118 scope:global align:8
+tail1_ttl_model = .data:0x004ED518; // type:object size:0x58 scope:global align:8
+Rfoot2_ttl_model = .data:0x004ED570; // type:object size:0x88 scope:global align:8
+Rfoot1_ttl_model = .data:0x004ED5F8; // type:object size:0x58 scope:global align:8
+Lfoot2_ttl_model = .data:0x004ED650; // type:object size:0x88 scope:global align:8
+Lfoot1_ttl_model = .data:0x004ED6D8; // type:object size:0x58 scope:global align:8
+base_ttl_model = .data:0x004ED730; // type:object size:0x68 scope:global align:8
+cKF_je_r_ttl_1_tbl = .data:0x004ED798; // type:object size:0x138 scope:global align:4
+cKF_bs_r_ttl_1 = .data:0x004ED8D0; // type:object size:0x8 scope:global align:4
+ttl_1_pal = .data:0x004ED8E0; // type:object size:0x20 scope:global align:32
+ttl_1_eye1_TA_tex_txt = .data:0x004ED900; // type:object size:0x100 scope:global align:32
+ttl_1_eye2_TA_tex_txt = .data:0x004EDA00; // type:object size:0x100 scope:global align:32
+ttl_1_eye3_TA_tex_txt = .data:0x004EDB00; // type:object size:0x100 scope:global align:32
+ttl_1_eye4_TA_tex_txt = .data:0x004EDC00; // type:object size:0x100 scope:global align:32
+ttl_1_eye5_TA_tex_txt = .data:0x004EDD00; // type:object size:0x100 scope:global align:32
+ttl_1_eye6_TA_tex_txt = .data:0x004EDE00; // type:object size:0x100 scope:global align:32
+ttl_1_eye7_TA_tex_txt = .data:0x004EDF00; // type:object size:0x100 scope:global align:32
+ttl_1_eye8_TA_tex_txt = .data:0x004EE000; // type:object size:0x100 scope:global align:32
+ttl_1_tmem_txt = .data:0x004EE100; // type:object size:0x740 scope:global align:32
+squ_1_v = .data:0x004EE840; // type:object size:0x16F0 scope:global align:8
+head_squ_model = .data:0x004EFF30; // type:object size:0x198 scope:global align:8
+Rarm2_squ_model = .data:0x004F00C8; // type:object size:0x88 scope:global align:8
+Rarm1_squ_model = .data:0x004F0150; // type:object size:0x78 scope:global align:8
+Larm2_squ_model = .data:0x004F01C8; // type:object size:0x88 scope:global align:8
+Larm1_squ_model = .data:0x004F0250; // type:object size:0x78 scope:global align:8
+chest_squ_model = .data:0x004F02C8; // type:object size:0xA8 scope:global align:8
+tail1_squ_model = .data:0x004F0370; // type:object size:0x70 scope:global align:8
+tail2_squ_model = .data:0x004F03E0; // type:object size:0xD0 scope:global align:8
+Rfoot2_squ_model = .data:0x004F04B0; // type:object size:0x80 scope:global align:8
+Rfoot1_squ_model = .data:0x004F0530; // type:object size:0xC0 scope:global align:8
+Lfoot2_squ_model = .data:0x004F05F0; // type:object size:0x80 scope:global align:8
+Lfoot1_squ_model = .data:0x004F0670; // type:object size:0xC0 scope:global align:8
+base_squ_model = .data:0x004F0730; // type:object size:0x70 scope:global align:8
+cKF_je_r_squ_1_tbl = .data:0x004F07A0; // type:object size:0x138 scope:global align:4
+cKF_bs_r_squ_1 = .data:0x004F08D8; // type:object size:0x8 scope:global align:4
+squ_1_pal = .data:0x004F08E0; // type:object size:0x20 scope:global align:32
+squ_1_eye1_TA_tex_txt = .data:0x004F0900; // type:object size:0x100 scope:global align:32
+squ_1_eye2_TA_tex_txt = .data:0x004F0A00; // type:object size:0x100 scope:global align:32
+squ_1_eye3_TA_tex_txt = .data:0x004F0B00; // type:object size:0x100 scope:global align:32
+squ_1_eye4_TA_tex_txt = .data:0x004F0C00; // type:object size:0x100 scope:global align:32
+squ_1_eye5_TA_tex_txt = .data:0x004F0D00; // type:object size:0x100 scope:global align:32
+squ_1_eye6_TA_tex_txt = .data:0x004F0E00; // type:object size:0x100 scope:global align:32
+squ_1_eye7_TA_tex_txt = .data:0x004F0F00; // type:object size:0x100 scope:global align:32
+squ_1_eye8_TA_tex_txt = .data:0x004F1000; // type:object size:0x100 scope:global align:32
+squ_1_mouth1_TA_tex_txt = .data:0x004F1100; // type:object size:0x100 scope:global align:32
+squ_1_mouth2_TA_tex_txt = .data:0x004F1200; // type:object size:0x100 scope:global align:32
+squ_1_mouth3_TA_tex_txt = .data:0x004F1300; // type:object size:0x100 scope:global align:32
+squ_1_mouth4_TA_tex_txt = .data:0x004F1400; // type:object size:0x100 scope:global align:32
+squ_1_mouth5_TA_tex_txt = .data:0x004F1500; // type:object size:0x100 scope:global align:32
+squ_1_mouth6_TA_tex_txt = .data:0x004F1600; // type:object size:0x100 scope:global align:32
+squ_1_tmem_txt = .data:0x004F1700; // type:object size:0x400 scope:global align:32
+squ_2_pal = .data:0x004F1B00; // type:object size:0x20 scope:global align:32
+squ_2_eye1_TA_tex_txt = .data:0x004F1B20; // type:object size:0x100 scope:global align:32
+squ_2_eye2_TA_tex_txt = .data:0x004F1C20; // type:object size:0x100 scope:global align:32
+squ_2_eye3_TA_tex_txt = .data:0x004F1D20; // type:object size:0x100 scope:global align:32
+squ_2_eye4_TA_tex_txt = .data:0x004F1E20; // type:object size:0x100 scope:global align:32
+squ_2_eye5_TA_tex_txt = .data:0x004F1F20; // type:object size:0x100 scope:global align:32
+squ_2_eye6_TA_tex_txt = .data:0x004F2020; // type:object size:0x100 scope:global align:32
+squ_2_eye7_TA_tex_txt = .data:0x004F2120; // type:object size:0x100 scope:global align:32
+squ_2_eye8_TA_tex_txt = .data:0x004F2220; // type:object size:0x100 scope:global align:32
+squ_2_mouth1_TA_tex_txt = .data:0x004F2320; // type:object size:0x100 scope:global align:32
+squ_2_mouth2_TA_tex_txt = .data:0x004F2420; // type:object size:0x100 scope:global align:32
+squ_2_mouth3_TA_tex_txt = .data:0x004F2520; // type:object size:0x100 scope:global align:32
+squ_2_mouth4_TA_tex_txt = .data:0x004F2620; // type:object size:0x100 scope:global align:32
+squ_2_mouth5_TA_tex_txt = .data:0x004F2720; // type:object size:0x100 scope:global align:32
+squ_2_mouth6_TA_tex_txt = .data:0x004F2820; // type:object size:0x100 scope:global align:32
+squ_2_tmem_txt = .data:0x004F2920; // type:object size:0x400 scope:global align:32
+squ_11_pal = .data:0x004F2D20; // type:object size:0x20 scope:global align:32
+squ_11_eye1_TA_tex_txt = .data:0x004F2D40; // type:object size:0x100 scope:global align:32
+squ_11_eye2_TA_tex_txt = .data:0x004F2E40; // type:object size:0x100 scope:global align:32
+squ_11_eye3_TA_tex_txt = .data:0x004F2F40; // type:object size:0x100 scope:global align:32
+squ_11_eye4_TA_tex_txt = .data:0x004F3040; // type:object size:0x100 scope:global align:32
+squ_11_eye5_TA_tex_txt = .data:0x004F3140; // type:object size:0x100 scope:global align:32
+squ_11_eye6_TA_tex_txt = .data:0x004F3240; // type:object size:0x100 scope:global align:32
+squ_11_eye7_TA_tex_txt = .data:0x004F3340; // type:object size:0x100 scope:global align:32
+squ_11_eye8_TA_tex_txt = .data:0x004F3440; // type:object size:0x100 scope:global align:32
+squ_11_mouth1_TA_tex_txt = .data:0x004F3540; // type:object size:0x100 scope:global align:32
+squ_11_mouth2_TA_tex_txt = .data:0x004F3640; // type:object size:0x100 scope:global align:32
+squ_11_mouth3_TA_tex_txt = .data:0x004F3740; // type:object size:0x100 scope:global align:32
+squ_11_mouth4_TA_tex_txt = .data:0x004F3840; // type:object size:0x100 scope:global align:32
+squ_11_mouth5_TA_tex_txt = .data:0x004F3940; // type:object size:0x100 scope:global align:32
+squ_11_mouth6_TA_tex_txt = .data:0x004F3A40; // type:object size:0x100 scope:global align:32
+squ_11_tmem_txt = .data:0x004F3B40; // type:object size:0x400 scope:global align:32
+squ_3_pal = .data:0x004F3F40; // type:object size:0x20 scope:global align:32
+squ_3_eye1_TA_tex_txt = .data:0x004F3F60; // type:object size:0x100 scope:global align:32
+squ_3_eye2_TA_tex_txt = .data:0x004F4060; // type:object size:0x100 scope:global align:32
+squ_3_eye3_TA_tex_txt = .data:0x004F4160; // type:object size:0x100 scope:global align:32
+squ_3_eye4_TA_tex_txt = .data:0x004F4260; // type:object size:0x100 scope:global align:32
+squ_3_eye5_TA_tex_txt = .data:0x004F4360; // type:object size:0x100 scope:global align:32
+squ_3_eye6_TA_tex_txt = .data:0x004F4460; // type:object size:0x100 scope:global align:32
+squ_3_eye7_TA_tex_txt = .data:0x004F4560; // type:object size:0x100 scope:global align:32
+squ_3_eye8_TA_tex_txt = .data:0x004F4660; // type:object size:0x100 scope:global align:32
+squ_3_mouth1_TA_tex_txt = .data:0x004F4760; // type:object size:0x100 scope:global align:32
+squ_3_mouth2_TA_tex_txt = .data:0x004F4860; // type:object size:0x100 scope:global align:32
+squ_3_mouth3_TA_tex_txt = .data:0x004F4960; // type:object size:0x100 scope:global align:32
+squ_3_mouth4_TA_tex_txt = .data:0x004F4A60; // type:object size:0x100 scope:global align:32
+squ_3_mouth5_TA_tex_txt = .data:0x004F4B60; // type:object size:0x100 scope:global align:32
+squ_3_mouth6_TA_tex_txt = .data:0x004F4C60; // type:object size:0x100 scope:global align:32
+squ_3_tmem_txt = .data:0x004F4D60; // type:object size:0x400 scope:global align:32
+squ_4_pal = .data:0x004F5160; // type:object size:0x20 scope:global align:32
+squ_4_eye1_TA_tex_txt = .data:0x004F5180; // type:object size:0x100 scope:global align:32
+squ_4_eye2_TA_tex_txt = .data:0x004F5280; // type:object size:0x100 scope:global align:32
+squ_4_eye3_TA_tex_txt = .data:0x004F5380; // type:object size:0x100 scope:global align:32
+squ_4_eye4_TA_tex_txt = .data:0x004F5480; // type:object size:0x100 scope:global align:32
+squ_4_eye5_TA_tex_txt = .data:0x004F5580; // type:object size:0x100 scope:global align:32
+squ_4_eye6_TA_tex_txt = .data:0x004F5680; // type:object size:0x100 scope:global align:32
+squ_4_eye7_TA_tex_txt = .data:0x004F5780; // type:object size:0x100 scope:global align:32
+squ_4_eye8_TA_tex_txt = .data:0x004F5880; // type:object size:0x100 scope:global align:32
+squ_4_mouth1_TA_tex_txt = .data:0x004F5980; // type:object size:0x100 scope:global align:32
+squ_4_mouth2_TA_tex_txt = .data:0x004F5A80; // type:object size:0x100 scope:global align:32
+squ_4_mouth3_TA_tex_txt = .data:0x004F5B80; // type:object size:0x100 scope:global align:32
+squ_4_mouth4_TA_tex_txt = .data:0x004F5C80; // type:object size:0x100 scope:global align:32
+squ_4_mouth5_TA_tex_txt = .data:0x004F5D80; // type:object size:0x100 scope:global align:32
+squ_4_mouth6_TA_tex_txt = .data:0x004F5E80; // type:object size:0x100 scope:global align:32
+squ_4_tmem_txt = .data:0x004F5F80; // type:object size:0x400 scope:global align:32
+squ_5_pal = .data:0x004F6380; // type:object size:0x20 scope:global align:32
+squ_5_eye1_TA_tex_txt = .data:0x004F63A0; // type:object size:0x100 scope:global align:32
+squ_5_eye2_TA_tex_txt = .data:0x004F64A0; // type:object size:0x100 scope:global align:32
+squ_5_eye3_TA_tex_txt = .data:0x004F65A0; // type:object size:0x100 scope:global align:32
+squ_5_eye4_TA_tex_txt = .data:0x004F66A0; // type:object size:0x100 scope:global align:32
+squ_5_eye5_TA_tex_txt = .data:0x004F67A0; // type:object size:0x100 scope:global align:32
+squ_5_eye6_TA_tex_txt = .data:0x004F68A0; // type:object size:0x100 scope:global align:32
+squ_5_eye7_TA_tex_txt = .data:0x004F69A0; // type:object size:0x100 scope:global align:32
+squ_5_eye8_TA_tex_txt = .data:0x004F6AA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth1_TA_tex_txt = .data:0x004F6BA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth2_TA_tex_txt = .data:0x004F6CA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth3_TA_tex_txt = .data:0x004F6DA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth4_TA_tex_txt = .data:0x004F6EA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth5_TA_tex_txt = .data:0x004F6FA0; // type:object size:0x100 scope:global align:32
+squ_5_mouth6_TA_tex_txt = .data:0x004F70A0; // type:object size:0x100 scope:global align:32
+squ_5_tmem_txt = .data:0x004F71A0; // type:object size:0x400 scope:global align:32
+squ_6_pal = .data:0x004F75A0; // type:object size:0x20 scope:global align:32
+squ_6_eye1_TA_tex_txt = .data:0x004F75C0; // type:object size:0x100 scope:global align:32
+squ_6_eye2_TA_tex_txt = .data:0x004F76C0; // type:object size:0x100 scope:global align:32
+squ_6_eye3_TA_tex_txt = .data:0x004F77C0; // type:object size:0x100 scope:global align:32
+squ_6_eye4_TA_tex_txt = .data:0x004F78C0; // type:object size:0x100 scope:global align:32
+squ_6_eye5_TA_tex_txt = .data:0x004F79C0; // type:object size:0x100 scope:global align:32
+squ_6_eye6_TA_tex_txt = .data:0x004F7AC0; // type:object size:0x100 scope:global align:32
+squ_6_eye7_TA_tex_txt = .data:0x004F7BC0; // type:object size:0x100 scope:global align:32
+squ_6_eye8_TA_tex_txt = .data:0x004F7CC0; // type:object size:0x100 scope:global align:32
+squ_6_mouth1_TA_tex_txt = .data:0x004F7DC0; // type:object size:0x100 scope:global align:32 data:string
+squ_6_mouth2_TA_tex_txt = .data:0x004F7EC0; // type:object size:0x100 scope:global align:32
+squ_6_mouth3_TA_tex_txt = .data:0x004F7FC0; // type:object size:0x100 scope:global align:32
+squ_6_mouth4_TA_tex_txt = .data:0x004F80C0; // type:object size:0x100 scope:global align:32 data:string
+squ_6_mouth5_TA_tex_txt = .data:0x004F81C0; // type:object size:0x100 scope:global align:32
+squ_6_mouth6_TA_tex_txt = .data:0x004F82C0; // type:object size:0x100 scope:global align:32
+squ_6_tmem_txt = .data:0x004F83C0; // type:object size:0x400 scope:global align:32
+squ_7_pal = .data:0x004F87C0; // type:object size:0x20 scope:global align:32
+squ_7_eye1_TA_tex_txt = .data:0x004F87E0; // type:object size:0x100 scope:global align:32
+squ_7_eye2_TA_tex_txt = .data:0x004F88E0; // type:object size:0x100 scope:global align:32
+squ_7_eye3_TA_tex_txt = .data:0x004F89E0; // type:object size:0x100 scope:global align:32
+squ_7_eye4_TA_tex_txt = .data:0x004F8AE0; // type:object size:0x100 scope:global align:32
+squ_7_eye5_TA_tex_txt = .data:0x004F8BE0; // type:object size:0x100 scope:global align:32
+squ_7_eye6_TA_tex_txt = .data:0x004F8CE0; // type:object size:0x100 scope:global align:32
+squ_7_eye7_TA_tex_txt = .data:0x004F8DE0; // type:object size:0x100 scope:global align:32
+squ_7_eye8_TA_tex_txt = .data:0x004F8EE0; // type:object size:0x100 scope:global align:32
+squ_7_mouth1_TA_tex_txt = .data:0x004F8FE0; // type:object size:0x100 scope:global align:32
+squ_7_mouth2_TA_tex_txt = .data:0x004F90E0; // type:object size:0x100 scope:global align:32
+squ_7_mouth3_TA_tex_txt = .data:0x004F91E0; // type:object size:0x100 scope:global align:32
+squ_7_mouth4_TA_tex_txt = .data:0x004F92E0; // type:object size:0x100 scope:global align:32
+squ_7_mouth5_TA_tex_txt = .data:0x004F93E0; // type:object size:0x100 scope:global align:32
+squ_7_mouth6_TA_tex_txt = .data:0x004F94E0; // type:object size:0x100 scope:global align:32
+squ_7_tmem_txt = .data:0x004F95E0; // type:object size:0x400 scope:global align:32
+squ_8_pal = .data:0x004F99E0; // type:object size:0x20 scope:global align:32
+squ_8_eye1_TA_tex_txt = .data:0x004F9A00; // type:object size:0x100 scope:global align:32
+squ_8_eye2_TA_tex_txt = .data:0x004F9B00; // type:object size:0x100 scope:global align:32
+squ_8_eye3_TA_tex_txt = .data:0x004F9C00; // type:object size:0x100 scope:global align:32
+squ_8_eye4_TA_tex_txt = .data:0x004F9D00; // type:object size:0x100 scope:global align:32
+squ_8_eye5_TA_tex_txt = .data:0x004F9E00; // type:object size:0x100 scope:global align:32
+squ_8_eye6_TA_tex_txt = .data:0x004F9F00; // type:object size:0x100 scope:global align:32
+squ_8_eye7_TA_tex_txt = .data:0x004FA000; // type:object size:0x100 scope:global align:32
+squ_8_eye8_TA_tex_txt = .data:0x004FA100; // type:object size:0x100 scope:global align:32
+squ_8_mouth1_TA_tex_txt = .data:0x004FA200; // type:object size:0x100 scope:global align:32
+squ_8_mouth2_TA_tex_txt = .data:0x004FA300; // type:object size:0x100 scope:global align:32
+squ_8_mouth3_TA_tex_txt = .data:0x004FA400; // type:object size:0x100 scope:global align:32
+squ_8_mouth4_TA_tex_txt = .data:0x004FA500; // type:object size:0x100 scope:global align:32
+squ_8_mouth5_TA_tex_txt = .data:0x004FA600; // type:object size:0x100 scope:global align:32
+squ_8_mouth6_TA_tex_txt = .data:0x004FA700; // type:object size:0x100 scope:global align:32
+squ_8_tmem_txt = .data:0x004FA800; // type:object size:0x400 scope:global align:32
+squ_9_pal = .data:0x004FAC00; // type:object size:0x20 scope:global align:32
+squ_9_eye1_TA_tex_txt = .data:0x004FAC20; // type:object size:0x100 scope:global align:32
+squ_9_eye2_TA_tex_txt = .data:0x004FAD20; // type:object size:0x100 scope:global align:32
+squ_9_eye3_TA_tex_txt = .data:0x004FAE20; // type:object size:0x100 scope:global align:32
+squ_9_eye4_TA_tex_txt = .data:0x004FAF20; // type:object size:0x100 scope:global align:32
+squ_9_eye5_TA_tex_txt = .data:0x004FB020; // type:object size:0x100 scope:global align:32
+squ_9_eye6_TA_tex_txt = .data:0x004FB120; // type:object size:0x100 scope:global align:32
+squ_9_eye7_TA_tex_txt = .data:0x004FB220; // type:object size:0x100 scope:global align:32
+squ_9_eye8_TA_tex_txt = .data:0x004FB320; // type:object size:0x100 scope:global align:32
+squ_9_mouth1_TA_tex_txt = .data:0x004FB420; // type:object size:0x100 scope:global align:32
+squ_9_mouth2_TA_tex_txt = .data:0x004FB520; // type:object size:0x100 scope:global align:32
+squ_9_mouth3_TA_tex_txt = .data:0x004FB620; // type:object size:0x100 scope:global align:32
+squ_9_mouth4_TA_tex_txt = .data:0x004FB720; // type:object size:0x100 scope:global align:32
+squ_9_mouth5_TA_tex_txt = .data:0x004FB820; // type:object size:0x100 scope:global align:32
+squ_9_mouth6_TA_tex_txt = .data:0x004FB920; // type:object size:0x100 scope:global align:32
+squ_9_tmem_txt = .data:0x004FBA20; // type:object size:0x400 scope:global align:32
+squ_10_pal = .data:0x004FBE20; // type:object size:0x20 scope:global align:32
+squ_10_eye1_TA_tex_txt = .data:0x004FBE40; // type:object size:0x100 scope:global align:32
+squ_10_eye2_TA_tex_txt = .data:0x004FBF40; // type:object size:0x100 scope:global align:32
+squ_10_eye3_TA_tex_txt = .data:0x004FC040; // type:object size:0x100 scope:global align:32
+squ_10_eye4_TA_tex_txt = .data:0x004FC140; // type:object size:0x100 scope:global align:32
+squ_10_eye5_TA_tex_txt = .data:0x004FC240; // type:object size:0x100 scope:global align:32
+squ_10_eye6_TA_tex_txt = .data:0x004FC340; // type:object size:0x100 scope:global align:32
+squ_10_eye7_TA_tex_txt = .data:0x004FC440; // type:object size:0x100 scope:global align:32
+squ_10_eye8_TA_tex_txt = .data:0x004FC540; // type:object size:0x100 scope:global align:32
+squ_10_mouth1_TA_tex_txt = .data:0x004FC640; // type:object size:0x100 scope:global align:32
+squ_10_mouth2_TA_tex_txt = .data:0x004FC740; // type:object size:0x100 scope:global align:32
+squ_10_mouth3_TA_tex_txt = .data:0x004FC840; // type:object size:0x100 scope:global align:32
+squ_10_mouth4_TA_tex_txt = .data:0x004FC940; // type:object size:0x100 scope:global align:32
+squ_10_mouth5_TA_tex_txt = .data:0x004FCA40; // type:object size:0x100 scope:global align:32
+squ_10_mouth6_TA_tex_txt = .data:0x004FCB40; // type:object size:0x100 scope:global align:32
+squ_10_tmem_txt = .data:0x004FCC40; // type:object size:0x400 scope:global align:32
+mnk_1_v = .data:0x004FD040; // type:object size:0x1850 scope:global align:8
+head_mnk_model = .data:0x004FE890; // type:object size:0x1A8 scope:global align:8
+Rarm2_mnk_model = .data:0x004FEA38; // type:object size:0x98 scope:global align:8
+Rarm1_mnk_model = .data:0x004FEAD0; // type:object size:0x78 scope:global align:8
+Larm2_mnk_model = .data:0x004FEB48; // type:object size:0x98 scope:global align:8
+Larm1_mnk_model = .data:0x004FEBE0; // type:object size:0x78 scope:global align:8
+chest_mnk_model = .data:0x004FEC58; // type:object size:0xC0 scope:global align:8
+tail1_mnk_model = .data:0x004FED18; // type:object size:0x78 scope:global align:8
+tail2_mnk_model = .data:0x004FED90; // type:object size:0xC0 scope:global align:8
+Rfoot3_mnk_model = .data:0x004FEE50; // type:object size:0x90 scope:global align:8
+Rfoot2_mnk_model = .data:0x004FEEE0; // type:object size:0x80 scope:global align:8
+Rfoot1_mnk_model = .data:0x004FEF60; // type:object size:0x58 scope:global align:8
+Lfoot3_mnk_model = .data:0x004FEFB8; // type:object size:0x90 scope:global align:8
+Lfoot2_mnk_model = .data:0x004FF048; // type:object size:0x80 scope:global align:8
+Lfoot1_mnk_model = .data:0x004FF0C8; // type:object size:0x58 scope:global align:8
+base_mnk_model = .data:0x004FF120; // type:object size:0x98 scope:global align:8
+cKF_je_r_mnk_1_tbl = .data:0x004FF1B8; // type:object size:0x138 scope:global align:4
+cKF_bs_r_mnk_1 = .data:0x004FF2F0; // type:object size:0x8 scope:global align:4
+mnk_1_pal = .data:0x004FF300; // type:object size:0x20 scope:global align:32
+mnk_1_eye1_TA_tex_txt = .data:0x004FF320; // type:object size:0x100 scope:global align:32
+mnk_1_eye2_TA_tex_txt = .data:0x004FF420; // type:object size:0x100 scope:global align:32
+mnk_1_eye3_TA_tex_txt = .data:0x004FF520; // type:object size:0x100 scope:global align:32
+mnk_1_eye4_TA_tex_txt = .data:0x004FF620; // type:object size:0x100 scope:global align:32
+mnk_1_eye5_TA_tex_txt = .data:0x004FF720; // type:object size:0x100 scope:global align:32
+mnk_1_eye6_TA_tex_txt = .data:0x004FF820; // type:object size:0x100 scope:global align:32
+mnk_1_eye7_TA_tex_txt = .data:0x004FF920; // type:object size:0x100 scope:global align:32
+mnk_1_eye8_TA_tex_txt = .data:0x004FFA20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth1_TA_tex_txt = .data:0x004FFB20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth2_TA_tex_txt = .data:0x004FFC20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth3_TA_tex_txt = .data:0x004FFD20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth4_TA_tex_txt = .data:0x004FFE20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth5_TA_tex_txt = .data:0x004FFF20; // type:object size:0x100 scope:global align:32
+mnk_1_mouth6_TA_tex_txt = .data:0x00500020; // type:object size:0x100 scope:global align:32
+mnk_1_tmem_txt = .data:0x00500120; // type:object size:0x600 scope:global align:32
+obj_s_house1_a_pal = .data:0x00500720; // type:object size:0x20 scope:global align:32
+obj_s_house1_b_pal = .data:0x00500740; // type:object size:0x20 scope:global align:32
+obj_s_house1_c_pal = .data:0x00500760; // type:object size:0x20 scope:global align:32
+obj_s_house1_d_pal = .data:0x00500780; // type:object size:0x20 scope:global align:32
+obj_s_house1_e_pal = .data:0x005007A0; // type:object size:0x20 scope:global align:32
+obj_s_house2_e_pal = .data:0x005007C0; // type:object size:0x20 scope:global align:32
+obj_s_house2_d_pal = .data:0x005007E0; // type:object size:0x20 scope:global align:32
+obj_s_house2_c_pal = .data:0x00500800; // type:object size:0x20 scope:global align:32
+obj_s_house2_b_pal = .data:0x00500820; // type:object size:0x20 scope:global align:32
+obj_s_house2_a_pal = .data:0x00500840; // type:object size:0x20 scope:global align:32
+obj_s_house3_e_pal = .data:0x00500860; // type:object size:0x20 scope:global align:32
+obj_s_house3_d_pal = .data:0x00500880; // type:object size:0x20 scope:global align:32
+obj_s_house3_c_pal = .data:0x005008A0; // type:object size:0x20 scope:global align:32
+obj_s_house3_b_pal = .data:0x005008C0; // type:object size:0x20 scope:global align:32
+obj_s_house3_a_pal = .data:0x005008E0; // type:object size:0x20 scope:global align:32
+obj_s_house4_e_pal = .data:0x00500900; // type:object size:0x20 scope:global align:32
+obj_s_house4_d_pal = .data:0x00500920; // type:object size:0x20 scope:global align:32
+obj_s_house4_c_pal = .data:0x00500940; // type:object size:0x20 scope:global align:32
+obj_s_house4_b_pal = .data:0x00500960; // type:object size:0x20 scope:global align:32
+obj_s_house4_a_pal = .data:0x00500980; // type:object size:0x20 scope:global align:32
+obj_s_house5_e_pal = .data:0x005009A0; // type:object size:0x20 scope:global align:32
+obj_s_house5_d_pal = .data:0x005009C0; // type:object size:0x20 scope:global align:32
+obj_s_house5_c_pal = .data:0x005009E0; // type:object size:0x20 scope:global align:32
+obj_s_house5_b_pal = .data:0x00500A00; // type:object size:0x20 scope:global align:32
+obj_s_house5_a_pal = .data:0x00500A20; // type:object size:0x20 scope:global align:32
+obj_w_house1_a_pal = .data:0x00500A40; // type:object size:0x20 scope:global align:32
+obj_w_house1_b_pal = .data:0x00500A60; // type:object size:0x20 scope:global align:32
+obj_w_house1_c_pal = .data:0x00500A80; // type:object size:0x20 scope:global align:32
+obj_w_house1_d_pal = .data:0x00500AA0; // type:object size:0x20 scope:global align:32
+obj_w_house1_e_pal = .data:0x00500AC0; // type:object size:0x20 scope:global align:32
+obj_w_house2_e_pal = .data:0x00500AE0; // type:object size:0x20 scope:global align:32
+obj_w_house2_d_pal = .data:0x00500B00; // type:object size:0x20 scope:global align:32
+obj_w_house2_c_pal = .data:0x00500B20; // type:object size:0x20 scope:global align:32
+obj_w_house2_b_pal = .data:0x00500B40; // type:object size:0x20 scope:global align:32
+obj_w_house2_a_pal = .data:0x00500B60; // type:object size:0x20 scope:global align:32
+obj_w_house3_e_pal = .data:0x00500B80; // type:object size:0x20 scope:global align:32
+obj_w_house3_d_pal = .data:0x00500BA0; // type:object size:0x20 scope:global align:32
+obj_w_house3_c_pal = .data:0x00500BC0; // type:object size:0x20 scope:global align:32
+obj_w_house3_b_pal = .data:0x00500BE0; // type:object size:0x20 scope:global align:32
+obj_w_house3_a_pal = .data:0x00500C00; // type:object size:0x20 scope:local align:32
+obj_w_house4_e_pal = .data:0x00500C20; // type:object size:0x20 scope:global align:32
+obj_w_house4_d_pal = .data:0x00500C40; // type:object size:0x20 scope:global align:32
+obj_w_house4_c_pal = .data:0x00500C60; // type:object size:0x20 scope:global align:32
+obj_w_house4_b_pal = .data:0x00500C80; // type:object size:0x20 scope:global align:32
+obj_w_house4_a_pal = .data:0x00500CA0; // type:object size:0x20 scope:global align:32
+obj_w_house5_e_pal = .data:0x00500CC0; // type:object size:0x20 scope:global align:32
+obj_w_house5_d_pal = .data:0x00500CE0; // type:object size:0x20 scope:global align:32
+obj_w_house5_c_pal = .data:0x00500D00; // type:object size:0x20 scope:global align:32
+obj_w_house5_b_pal = .data:0x00500D20; // type:object size:0x20 scope:global align:32
+obj_w_house5_a_pal = .data:0x00500D40; // type:object size:0x20 scope:global align:32
+obj_s_myhome_a_pal = .data:0x00500D60; // type:object size:0x20 scope:global align:32
+obj_s_myhome_b_pal = .data:0x00500D80; // type:object size:0x20 scope:global align:32
+obj_s_myhome_d_pal = .data:0x00500DA0; // type:object size:0x20 scope:global align:32
+obj_s_myhome_c_pal = .data:0x00500DC0; // type:object size:0x20 scope:global align:32
+obj_s_myhome_e_pal = .data:0x00500DE0; // type:object size:0x20 scope:global align:32
+obj_s_myhome_f_pal = .data:0x00500E00; // type:object size:0x20 scope:global align:32
+obj_s_myhome_g_pal = .data:0x00500E20; // type:object size:0x20 scope:global align:32
+obj_s_myhome_h_pal = .data:0x00500E40; // type:object size:0x20 scope:global align:32
+obj_s_myhome_i_pal = .data:0x00500E60; // type:object size:0x20 scope:global align:32
+obj_s_myhome_j_pal = .data:0x00500E80; // type:object size:0x20 scope:global align:32
+obj_s_myhome_k_pal = .data:0x00500EA0; // type:object size:0x20 scope:global align:32
+obj_s_myhome_l_pal = .data:0x00500EC0; // type:object size:0x20 scope:global align:32
+obj_w_myhome_a_pal = .data:0x00500EE0; // type:object size:0x20 scope:global align:32
+obj_w_myhome_b_pal = .data:0x00500F00; // type:object size:0x20 scope:global align:32
+obj_w_myhome_d_pal = .data:0x00500F20; // type:object size:0x20 scope:global align:32
+obj_w_myhome_c_pal = .data:0x00500F40; // type:object size:0x20 scope:global align:32
+obj_w_myhome_e_pal = .data:0x00500F60; // type:object size:0x20 scope:global align:32
+obj_w_myhome_f_pal = .data:0x00500F80; // type:object size:0x20 scope:global align:32
+obj_w_myhome_g_pal = .data:0x00500FA0; // type:object size:0x20 scope:global align:32
+obj_w_myhome_h_pal = .data:0x00500FC0; // type:object size:0x20 scope:global align:32
+obj_w_myhome_i_pal = .data:0x00500FE0; // type:object size:0x20 scope:global align:32
+obj_w_myhome_j_pal = .data:0x00501000; // type:object size:0x20 scope:global align:32
+obj_w_myhome_k_pal = .data:0x00501020; // type:object size:0x20 scope:global align:32
+obj_w_myhome_l_pal = .data:0x00501040; // type:object size:0x20 scope:global align:32
+obj_shop1_pal = .data:0x00501060; // type:object size:0x20 scope:global align:32
+obj_shop1_winter_pal = .data:0x00501080; // type:object size:0x20 scope:global align:32
+obj_shop2_pal = .data:0x005010A0; // type:object size:0x20 scope:global align:32
+obj_shop2_winter_pal = .data:0x005010C0; // type:object size:0x20 scope:global align:32
+obj_shop3_pal = .data:0x005010E0; // type:object size:0x20 scope:global align:32
+obj_shop3_winter_pal = .data:0x00501100; // type:object size:0x20 scope:global align:32
+obj_shop4_pal = .data:0x00501120; // type:object size:0x20 scope:global align:32
+obj_shop4_winter_pal = .data:0x00501140; // type:object size:0x20 scope:global align:32
+br_shop_pal = .data:0x00501160; // type:object size:0x20 scope:global align:32
+br_shop_winter_pal = .data:0x00501180; // type:object size:0x20 scope:global align:32
+obj_s_post_office_pal = .data:0x005011A0; // type:object size:0x20 scope:global align:32
+obj_s_post_office_winter_pal = .data:0x005011C0; // type:object size:0x20 scope:global align:32
+obj_s_station1_a_pal = .data:0x005011E0; // type:object size:0x20 scope:global align:32
+obj_s_station1_b_pal = .data:0x00501200; // type:object size:0x20 scope:global align:32
+obj_s_station1_c_pal = .data:0x00501220; // type:object size:0x20 scope:global align:32
+obj_s_station1_d_pal = .data:0x00501240; // type:object size:0x20 scope:global align:32
+obj_s_station1_e_pal = .data:0x00501260; // type:object size:0x20 scope:global align:32
+obj_s_station2_a_pal = .data:0x00501280; // type:object size:0x20 scope:global align:32
+obj_s_station2_b_pal = .data:0x005012A0; // type:object size:0x20 scope:global align:32
+obj_s_station2_c_pal = .data:0x005012C0; // type:object size:0x20 scope:global align:32
+obj_s_station2_d_pal = .data:0x005012E0; // type:object size:0x20 scope:global align:32
+obj_s_station2_e_pal = .data:0x00501300; // type:object size:0x20 scope:global align:32
+obj_s_station3_a_pal = .data:0x00501320; // type:object size:0x20 scope:global align:32
+obj_s_station3_b_pal = .data:0x00501340; // type:object size:0x20 scope:global align:32
+obj_s_station3_c_pal = .data:0x00501360; // type:object size:0x20 scope:global align:32
+obj_s_station3_d_pal = .data:0x00501380; // type:object size:0x20 scope:global align:32
+obj_s_station3_e_pal = .data:0x005013A0; // type:object size:0x20 scope:global align:32
+obj_w_station1_a_pal = .data:0x005013C0; // type:object size:0x20 scope:global align:32
+obj_w_station1_b_pal = .data:0x005013E0; // type:object size:0x20 scope:global align:32
+obj_w_station1_c_pal = .data:0x00501400; // type:object size:0x20 scope:global align:32
+obj_w_station1_d_pal = .data:0x00501420; // type:object size:0x20 scope:global align:32
+obj_w_station1_e_pal = .data:0x00501440; // type:object size:0x20 scope:global align:32
+obj_w_station2_a_pal = .data:0x00501460; // type:object size:0x20 scope:global align:32
+obj_w_station2_d_pal = .data:0x00501480; // type:object size:0x20 scope:global align:32
+obj_w_station2_b_pal = .data:0x005014A0; // type:object size:0x20 scope:global align:32
+obj_w_station2_c_pal = .data:0x005014C0; // type:object size:0x20 scope:global align:32
+obj_w_station2_e_pal = .data:0x005014E0; // type:object size:0x20 scope:global align:32
+obj_w_station3_a_pal = .data:0x00501500; // type:object size:0x20 scope:global align:32
+obj_w_station3_d_pal = .data:0x00501520; // type:object size:0x20 scope:global align:32
+obj_w_station3_b_pal = .data:0x00501540; // type:object size:0x20 scope:global align:32
+obj_w_station3_c_pal = .data:0x00501560; // type:object size:0x20 scope:global align:32
+obj_w_station3_e_pal = .data:0x00501580; // type:object size:0x20 scope:global align:32
+obj_train1_a1_pal = .data:0x005015A0; // type:object size:0x20 scope:global align:32
+obj_train1_a1_winter_pal = .data:0x005015C0; // type:object size:0x20 scope:global align:32
+obj_train1_a2_pal = .data:0x005015E0; // type:object size:0x20 scope:global align:32
+obj_train1_a2_winter_pal = .data:0x00501600; // type:object size:0x20 scope:global align:32
+obj_police_box_pal = .data:0x00501620; // type:object size:0x20 scope:global align:32
+obj_police_box_winter_pal = .data:0x00501640; // type:object size:0x20 scope:global align:32
+reserve_pal = .data:0x00501660; // type:object size:0x20 scope:global align:32
+reserve_winter_pal = .data:0x00501680; // type:object size:0x20 scope:global align:32
+obj_buggy_pal = .data:0x005016A0; // type:object size:0x20 scope:global align:32
+obj_buggy_winter_pal = .data:0x005016C0; // type:object size:0x20 scope:global align:32
+s_car_pal = .data:0x005016E0; // type:object size:0x20 scope:global align:32
+obj_w_kamakura_pal = .data:0x00501700; // type:object size:0x20 scope:local align:32
+obj_s_shrine_pal = .data:0x00501720; // type:object size:0x20 scope:local align:32
+obj_w_shrine_pal = .data:0x00501740; // type:object size:0x20 scope:local align:32
+obj_e_goza_pal = .data:0x00501760; // type:object size:0x20 scope:global align:32
+obj_e_radio_pal = .data:0x00501780; // type:object size:0x20 scope:global align:32
+obj_e_yatai_pal = .data:0x005017A0; // type:object size:0x20 scope:global align:32
+obj_e_tukimi_pal = .data:0x005017C0; // type:object size:0x20 scope:global align:32
+obj_e_mikuji_pal = .data:0x005017E0; // type:object size:0x20 scope:global align:32
+obj_e_count_pal = .data:0x00501800; // type:object size:0x20 scope:global align:32
+obj_e_count02_pal = .data:0x00501820; // type:object size:0x20 scope:global align:32
+obj_e_kago_r_pal = .data:0x00501840; // type:object size:0x20 scope:global align:32
+obj_e_kago_w_pal = .data:0x00501860; // type:object size:0x20 scope:global align:32
+obj_e_turi_pal = .data:0x00501880; // type:object size:0x20 scope:local align:32
+obj_e_koinobori_a_pal = .data:0x005018A0; // type:object size:0x20 scope:global align:32
+obj_dump_pal = .data:0x005018C0; // type:object size:0x20 scope:global align:32
+obj_w_windmill_a_pal = .data:0x005018E0; // type:object size:0x20 scope:global align:4
+obj_w_windmill_b_pal = .data:0x00501900; // type:object size:0x20 scope:global align:4
+obj_w_windmill_c_pal = .data:0x00501920; // type:object size:0x20 scope:global align:4
+obj_w_windmill_d_pal = .data:0x00501940; // type:object size:0x20 scope:global align:4
+obj_w_windmill_e_pal = .data:0x00501960; // type:object size:0x20 scope:global align:4
+obj_s_windmill_a_pal = .data:0x00501980; // type:object size:0x20 scope:global align:4
+obj_s_windmill_b_pal = .data:0x005019A0; // type:object size:0x20 scope:global align:4
+obj_s_windmill_c_pal = .data:0x005019C0; // type:object size:0x20 scope:global align:4
+obj_s_windmill_d_pal = .data:0x005019E0; // type:object size:0x20 scope:global align:4
+obj_s_windmill_e_pal = .data:0x00501A00; // type:object size:0x20 scope:global align:4
+obj_01_lotus_pal = .data:0x00501A20; // type:object size:0x20 scope:global align:32
+obj_e_mikanbox_pal = .data:0x00501A40; // type:object size:0x20 scope:global align:32
+obj_s_douzou_dai_pal = .data:0x00501A60; // type:object size:0x20 scope:global align:32
+obj_w_douzou_pal = .data:0x00501A80; // type:object size:0x20 scope:global align:32
+obj_s_toudai_pal = .data:0x00501AA0; // type:object size:0x20 scope:global align:32
+obj_w_toudai_pal = .data:0x00501AC0; // type:object size:0x20 scope:global align:32
+obj_s_museum_pal = .data:0x00501AE0; // type:object size:0x20 scope:global align:4
+obj_s_museum_winter_pal = .data:0x00501B00; // type:object size:0x20 scope:global align:4
+obj_s_boat_pal = .data:0x00501B20; // type:object size:0x20 scope:global align:32
+obj_s_tailor_pal = .data:0x00501B40; // type:object size:0x20 scope:global align:32
+obj_w_tailor_pal = .data:0x00501B60; // type:object size:0x20 scope:global align:32
+obj_s_myhome_island_pal = .data:0x00501B80; // type:object size:0x20 scope:global align:32
+obj_s_house_i_pal = .data:0x00501BA0; // type:object size:0x20 scope:global align:32
+structure_pal_adrs_nowinter = .data:0x00501BC0; // type:object size:0x188 scope:global align:4
+structure_pal_adrs_winter = .data:0x00501D48; // type:object size:0x188 scope:global align:4
+obj_yamishop_shadow_tex = .data:0x00501EE0; // type:object size:0x200 scope:global align:32
+obj_yamishop_shadow_v = .data:0x005020E0; // type:object size:0x80 scope:global align:8
+obj_yamishop_shadowT_model = .data:0x00502160; // type:object size:0x50 scope:global align:8
+obj_uranai_shadow_tex = .data:0x005021C0; // type:object size:0x200 scope:global align:32
+obj_uranai_shadow_v = .data:0x005023C0; // type:object size:0xE0 scope:global align:8
+obj_uranai_shadowT_model = .data:0x005024A0; // type:object size:0x58 scope:global align:8
+obj_e_count_shadow_tex = .data:0x00502500; // type:object size:0x200 scope:global align:32
+obj_e_count_shadow_v = .data:0x00502700; // type:object size:0x40 scope:global align:8
+obj_e_count_shadow_model = .data:0x00502740; // type:object size:0x48 scope:global align:8
+obj_s_douzou_kage_txt = .data:0x005027A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_shadow_v = .data:0x005028A0; // type:object size:0x80 scope:global align:8
+obj_s_douzou_shadow_model = .data:0x00502920; // type:object size:0x50 scope:global align:8
+obj_dump_shadow_tex = .data:0x00502980; // type:object size:0x200 scope:global align:32
+obj_dump_shadow_v = .data:0x00502B80; // type:object size:0x300 scope:global align:8
+obj_dump_shadowT_model = .data:0x00502E80; // type:object size:0x88 scope:global align:8
+obj_frag_shadow_tex = .data:0x00502F20; // type:object size:0x200 scope:global align:32
+obj_frag_shadow_v = .data:0x00503120; // type:object size:0x80 scope:global align:8
+obj_frag_shadowT_model = .data:0x005031A0; // type:object size:0x50 scope:global align:8
+obj_e_ghog_shadow_tex = .data:0x00503200; // type:object size:0x40 scope:global align:32
+obj_e_ghog_shadow_v = .data:0x00503240; // type:object size:0xA0 scope:global align:8
+obj_e_ghog_shadow_modelT = .data:0x005032E0; // type:object size:0x58 scope:global align:8
+obj_e_hfes_shadow_tex = .data:0x00503340; // type:object size:0x40 scope:global align:32
+obj_e_hfes_shadow_a_v = .data:0x00503380; // type:object size:0x1C0 scope:global align:8
+obj_e_hfes_shadow_a_modelT = .data:0x00503540; // type:object size:0x68 scope:global align:8
+obj_e_hfes_shadow_b_v = .data:0x005035A8; // type:object size:0x1C0 scope:global align:8
+obj_e_hfes_shadow_b_modelT = .data:0x00503768; // type:object size:0x68 scope:global align:8
+obj_e_hfes_shadow_c_v = .data:0x005037D0; // type:object size:0x1C0 scope:global align:8
+obj_e_hfes_shadow_c_modelT = .data:0x00503990; // type:object size:0x68 scope:global align:8
+obj_s_house_i_shadow_tex = .data:0x00503A00; // type:object size:0x80 scope:global align:32
+obj_s_house_i_shadow_v = .data:0x00503A80; // type:object size:0x1C0 scope:global align:8
+obj_s_house_i_shadowT_model = .data:0x00503C40; // type:object size:0x68 scope:global align:8
+obj_e_kago_shadow_tex = .data:0x00503CC0; // type:object size:0x200 scope:global align:32
+obj_e_kago_shadow_v = .data:0x00503EC0; // type:object size:0xD0 scope:global align:8
+obj_e_kago_shadow_model = .data:0x00503F90; // type:object size:0x58 scope:global align:8
+obj_w_kamakura_shadow = .data:0x00504000; // type:object size:0x200 scope:global align:32
+obj_w_kamakura_shadow_v = .data:0x00504200; // type:object size:0x140 scope:global align:8
+obj_e_kamakura_shadow_model = .data:0x00504340; // type:object size:0x68 scope:global align:8
+obj_e_koinobori_shadow_tex = .data:0x005043C0; // type:object size:0x200 scope:global align:32
+obj_e_koinobori_shadow_v = .data:0x005045C0; // type:object size:0x80 scope:global align:8
+obj_e_koinobori_shadowT_model = .data:0x00504640; // type:object size:0x50 scope:global align:8
+obj_e_mikuji_shadow_tex = .data:0x005046A0; // type:object size:0x200 scope:global align:32
+obj_e_mikuji_shadow_v = .data:0x005048A0; // type:object size:0x80 scope:global align:8
+obj_e_mikuji_shadow_model = .data:0x00504920; // type:object size:0x50 scope:global align:8
+obj_museum_shadow_tex = .data:0x00504980; // type:object size:0x200 scope:global align:32
+obj_museum_shadow_v = .data:0x00504B80; // type:object size:0x80 scope:global align:8
+obj_museum_shadowT_model = .data:0x00504C00; // type:object size:0x48 scope:global align:8
+obj_s_myhome_i_shadow_tex = .data:0x00504C60; // type:object size:0x80 scope:global align:32
+obj_s_myhome_i_shadow_v = .data:0x00504CE0; // type:object size:0x160 scope:global align:8
+obj_s_myhome_i_shadowT_model = .data:0x00504E40; // type:object size:0x60 scope:global align:8
+obj_house1_shadow = .data:0x00504EA0; // type:object size:0x200 scope:global align:32
+obj_house1_shadow_v = .data:0x005050A0; // type:object size:0x140 scope:global align:8
+obj_house1_shadow_model = .data:0x005051E0; // type:object size:0x68 scope:global align:8
+obj_s_house2_shadow_tex_txt = .data:0x00505260; // type:object size:0x200 scope:global align:32
+obj_s_house2_shadow_v = .data:0x00505460; // type:object size:0x1C0 scope:global align:8
+obj_s_house2_shadow_model = .data:0x00505620; // type:object size:0x78 scope:global align:8
+obj_s_house3_shadow_tex_txt = .data:0x005056A0; // type:object size:0x200 scope:global align:32
+obj_s_house3_shadow_v = .data:0x005058A0; // type:object size:0x180 scope:global align:8
+obj_s_house3_shadow_model = .data:0x00505A20; // type:object size:0x70 scope:global align:8
+obj_s_house4_shadow_tex_txt = .data:0x00505AA0; // type:object size:0x200 scope:global align:32
+obj_s_house4_shadow_v = .data:0x00505CA0; // type:object size:0x1C0 scope:global align:8
+obj_s_house4_shadow_model = .data:0x00505E60; // type:object size:0x78 scope:global align:8
+obj_s_house5_shadow_tex_txt = .data:0x00505EE0; // type:object size:0x200 scope:global align:32
+obj_s_house5_shadow_v = .data:0x005060E0; // type:object size:0x1C0 scope:global align:8
+obj_s_house5_shadow_model = .data:0x005062A0; // type:object size:0x78 scope:global align:8
+obj_myhome1_shadowE = .data:0x00506320; // type:object size:0x200 scope:global align:32
+obj_myhome1_shadowE_v = .data:0x00506520; // type:object size:0x120 scope:global align:8
+obj_myhome1_shadowET_model = .data:0x00506640; // type:object size:0x70 scope:global align:8
+obj_myhome1_shadowW = .data:0x005066C0; // type:object size:0x200 scope:global align:32
+obj_myhome1_shadowW_v = .data:0x005068C0; // type:object size:0x120 scope:global align:8
+obj_myhome1_shadowWT_model = .data:0x005069E0; // type:object size:0x70 scope:global align:8
+obj_myhome2_shadowE = .data:0x00506A60; // type:object size:0x200 scope:global align:32
+obj_myhome2_shadowE_v = .data:0x00506C60; // type:object size:0x120 scope:global align:8
+obj_myhome2_shadowET_model = .data:0x00506D80; // type:object size:0x70 scope:global align:8
+obj_myhome2_shadowW = .data:0x00506E00; // type:object size:0x200 scope:global align:32
+obj_myhome2_shadowW_v = .data:0x00507000; // type:object size:0x120 scope:global align:8
+obj_myhome2_shadowWT_model = .data:0x00507120; // type:object size:0x70 scope:global align:8
+obj_myhome3_shadowE = .data:0x005071A0; // type:object size:0x200 scope:global align:32
+obj_myhome3_shadowE_v = .data:0x005073A0; // type:object size:0x120 scope:global align:8
+obj_myhome3_shadowET_model = .data:0x005074C0; // type:object size:0x70 scope:global align:8
+obj_myhome3_shadowW = .data:0x00507540; // type:object size:0x200 scope:global align:32
+obj_myhome3_shadowW_v = .data:0x00507740; // type:object size:0x120 scope:global align:8
+obj_myhome3_shadowWT_model = .data:0x00507860; // type:object size:0x70 scope:global align:8
+obj_myhome4_shadowE = .data:0x005078E0; // type:object size:0x200 scope:global align:32
+obj_myhome4_shadowE_v = .data:0x00507AE0; // type:object size:0x120 scope:global align:8
+obj_myhome4_shadowET_model = .data:0x00507C00; // type:object size:0x70 scope:global align:8
+obj_myhome4_shadowW = .data:0x00507C80; // type:object size:0x200 scope:global align:32
+obj_myhome4_shadowW_v = .data:0x00507E80; // type:object size:0x120 scope:global align:8
+obj_myhome4_shadowWT_model = .data:0x00507FA0; // type:object size:0x70 scope:global align:8
+obj_s_kouban_shadow_tex_txt = .data:0x00508020; // type:object size:0x200 scope:global align:32
+obj_s_kouban_shadow_v = .data:0x00508220; // type:object size:0x140 scope:global align:8
+obj_s_kouban_shadow_model = .data:0x00508360; // type:object size:0x70 scope:global align:8
+obj_s_yubinkyoku_shadow_tex_txt = .data:0x005083E0; // type:object size:0x200 scope:global align:32
+obj_s_yubinkyoku_shadow_v = .data:0x005085E0; // type:object size:0xE0 scope:global align:8
+obj_s_yubinkyoku_shadow_2_model = .data:0x005086C0; // type:object size:0x58 scope:global align:8
+obj_e_radio_shadow_tex = .data:0x00508720; // type:object size:0x200 scope:global align:32
+obj_e_radio_shadow_v = .data:0x00508920; // type:object size:0x80 scope:global align:8
+obj_e_radio_shadowT_model = .data:0x005089A0; // type:object size:0x50 scope:global align:8
+obj_buildsite_shadow_tex = .data:0x00508A00; // type:object size:0x200 scope:global align:32
+reserve_shadow_v = .data:0x00508C00; // type:object size:0x40 scope:global align:8
+reserve_shadow_model = .data:0x00508C40; // type:object size:0x48 scope:global align:8
+obj_attention_shadow_tex = .data:0x00508CA0; // type:object size:0x200 scope:global align:32
+obj_attention_shadow_v = .data:0x00508EA0; // type:object size:0x40 scope:global align:8
+obj_attention_shadowT_model = .data:0x00508EE0; // type:object size:0x40 scope:global align:8
+obj_car_shadow = .data:0x00508F20; // type:object size:0x200 scope:global align:32
+obj_car_shadow_v = .data:0x00509120; // type:object size:0x170 scope:global align:8
+obj_car_shadowT_model = .data:0x00509290; // type:object size:0x68 scope:global align:8
+obj_shop1_shadow = .data:0x00509300; // type:object size:0x200 scope:global align:32
+obj_shop1_shadow_v = .data:0x00509500; // type:object size:0x80 scope:global align:8
+obj_shop1_shadowT_model = .data:0x00509580; // type:object size:0x58 scope:global align:8
+obj_shop2_shadow = .data:0x005095E0; // type:object size:0x200 scope:global align:32
+obj_shop2_shadow_v = .data:0x005097E0; // type:object size:0xC0 scope:global align:8
+obj_shop2_shadowT_model = .data:0x005098A0; // type:object size:0x58 scope:global align:8
+obj_shop3_shadow = .data:0x00509900; // type:object size:0x200 scope:global align:32
+obj_shop3_shadow_v = .data:0x00509B00; // type:object size:0x80 scope:global align:8
+obj_shop3_shadowT_model = .data:0x00509B80; // type:object size:0x58 scope:global align:8
+obj_shop4_shadow_txt = .data:0x00509BE0; // type:object size:0x200 scope:global align:32
+obj_shop4_shadow_v = .data:0x00509DE0; // type:object size:0xC0 scope:global align:8
+obj_shop4_shadowT_model = .data:0x00509EA0; // type:object size:0x58 scope:global align:8
+obj_shrine_shadow_tex_txt = .data:0x00509F00; // type:object size:0x200 scope:global align:32
+obj_shrine_shadow_v = .data:0x0050A100; // type:object size:0x100 scope:global align:8
+obj_shrine_shadow_model = .data:0x0050A200; // type:object size:0x60 scope:global align:8
+obj_station1_shadow_tex = .data:0x0050A260; // type:object size:0x200 scope:global align:32
+obj_station1_shadow_v = .data:0x0050A460; // type:object size:0x1F0 scope:global align:8
+obj_station1_shadow_hiT_model = .data:0x0050A650; // type:object size:0x58 scope:global align:8
+obj_station1_shadow_lowT_model = .data:0x0050A6A8; // type:object size:0x58 scope:global align:8
+obj_station2_shadow_tex_txt = .data:0x0050A700; // type:object size:0x200 scope:global align:32
+obj_station2_shadow_v = .data:0x0050A900; // type:object size:0x400 scope:global align:8
+obj_station2_shadow_low_model = .data:0x0050AD00; // type:object size:0x58 scope:global align:8
+obj_station2_shadow_hi_model = .data:0x0050AD58; // type:object size:0x78 scope:global align:8
+obj_station3_shadow_tex_txt = .data:0x0050ADE0; // type:object size:0x200 scope:global align:32
+obj_station3_shadow_v = .data:0x0050AFE0; // type:object size:0x3E0 scope:global align:8
+obj_station3_shadow_low_model = .data:0x0050B3C0; // type:object size:0x58 scope:global align:8
+obj_station3_shadow_hi_model = .data:0x0050B418; // type:object size:0x70 scope:global align:8
+obj_s_tailor_shadow_tex = .data:0x0050B4A0; // type:object size:0x80 scope:global align:32
+obj_s_tailor_shadow_v = .data:0x0050B520; // type:object size:0x60 scope:global align:8
+obj_s_tailor_shadowT_model = .data:0x0050B580; // type:object size:0x50 scope:global align:8
+obj_s_tent_shadow = .data:0x0050B5E0; // type:object size:0x80 scope:global align:32
+obj_s_tent_shadow_v = .data:0x0050B660; // type:object size:0x1C0 scope:global align:8
+obj_s_tent_shadow_modelT = .data:0x0050B820; // type:object size:0x68 scope:global align:8
+obj_s_toudai_shadow_tex = .data:0x0050B8A0; // type:object size:0x80 scope:global align:32
+obj_s_toudai_shadow_v = .data:0x0050B920; // type:object size:0xA0 scope:global align:8
+obj_s_toudai_shadow_1_model = .data:0x0050B9C0; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_shadow_tex_txt = .data:0x0050BA20; // type:object size:0x200 scope:global align:32
+obj_e_tukimi_l_shadow_v = .data:0x0050BC20; // type:object size:0x80 scope:global align:8
+obj_e_tukimi_l_shadow_model = .data:0x0050BCA0; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_r_shadow_tex_txt = .data:0x0050BD00; // type:object size:0x200 scope:global align:32
+obj_e_tukimi_r_shadow_v = .data:0x0050BF00; // type:object size:0x80 scope:global align:8
+obj_e_tukimi_r_shadow_model = .data:0x0050BF80; // type:object size:0x50 scope:global align:8
+obj_e_turi_l_shadow_tex = .data:0x0050BFE0; // type:object size:0x200 scope:global align:32
+obj_e_turi_l_shadow_v = .data:0x0050C1E0; // type:object size:0x60 scope:global align:8
+obj_e_turi_l_shadow_model = .data:0x0050C240; // type:object size:0x50 scope:global align:8
+obj_e_turi_r_shadow_tex = .data:0x0050C2A0; // type:object size:0x200 scope:global align:32
+obj_e_turi_r_shadow_v = .data:0x0050C4A0; // type:object size:0x60 scope:global align:8
+obj_e_turi_r_shadow_model = .data:0x0050C500; // type:object size:0x50 scope:global align:8
+obj_e_yatai_shadow_tex = .data:0x0050C560; // type:object size:0x40 scope:global align:32
+obj_e_yatai_shadow_l_v = .data:0x0050C5A0; // type:object size:0x70 scope:global align:8
+obj_e_yatai_shadow_l_modelT = .data:0x0050C610; // type:object size:0x50 scope:global align:8
+obj_e_yatai_shadow_r_v = .data:0x0050C660; // type:object size:0x70 scope:global align:8
+obj_e_yatai_shadow_r_modelT = .data:0x0050C6D0; // type:object size:0x50 scope:global align:8
+obj_s_boat_t10_tex_txt = .data:0x0050C720; // type:object size:0x80 scope:global align:32
+obj_s_boat_t11_tex_txt = .data:0x0050C7A0; // type:object size:0x80 scope:global align:32
+obj_s_boat_t9_tex_txt = .data:0x0050C820; // type:object size:0xC0 scope:global align:32
+obj_s_boat_t6_tex_txt = .data:0x0050C8E0; // type:object size:0x100 scope:global align:32
+obj_s_boat_t7_tex_txt = .data:0x0050C9E0; // type:object size:0x80 scope:global align:32
+obj_s_boat_t1_tex_txt = .data:0x0050CA60; // type:object size:0x400 scope:global align:32
+obj_s_boat_t3_tex_txt = .data:0x0050CE60; // type:object size:0x400 scope:global align:32
+obj_s_boat_t2_tex_txt = .data:0x0050D260; // type:object size:0x80 scope:global align:32
+obj_s_boat_t5_tex_txt = .data:0x0050D2E0; // type:object size:0x80 scope:global align:32
+obj_s_boat_t8_tex_txt = .data:0x0050D360; // type:object size:0x80 scope:global align:32
+obj_s_boat_t4_tex_txt = .data:0x0050D3E0; // type:object size:0x80 scope:global align:32
+obj_s_boat_water1_pic_i4 = .data:0x0050D460; // type:object size:0x200 scope:global align:32
+obj_s_boat_water2_pic_i4 = .data:0x0050D660; // type:object size:0x200 scope:global align:32
+obj_e_boat_v = .data:0x0050D860; // type:object size:0x9C0 scope:global align:8
+obj_e_boat_boat1_model = .data:0x0050E220; // type:object size:0x188 scope:global align:8
+obj_e_boat_water1_model = .data:0x0050E3A8; // type:object size:0x80 scope:global align:8
+obj_e_boat_water2_model = .data:0x0050E428; // type:object size:0x90 scope:global align:8
+obj_e_boat_water3_model = .data:0x0050E4B8; // type:object size:0xA8 scope:global align:8
+obj_e_boat_oar1_model = .data:0x0050E560; // type:object size:0xB8 scope:global align:8
+cKF_je_r_obj_e_boat_tbl = .data:0x0050E618; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_e_boat = .data:0x0050E66C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_boat_tbl = .data:0x0050E674; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_e_boat_tbl = .data:0x0050E67C; // type:object size:0x6 scope:global align:4
+cKF_c_obj_e_boat_tbl = .data:0x0050E684; // type:object size:0x2A scope:global align:4
+cKF_ds_obj_e_boat_tbl = .data:0x0050E6B0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_obj_e_boat = .data:0x0050E734; // type:object size:0x14 scope:global align:4
+obj_s_yamishop_pal = .data:0x0050E760; // type:object size:0x20 scope:global align:32
+obj_s_yamishop_t2_tex_txt = .data:0x0050E780; // type:object size:0x800 scope:global align:32
+obj_s_yamishop_t1_tex_txt = .data:0x0050EF80; // type:object size:0x800 scope:global align:32
+obj_s_yamishop_window_tex_txt = .data:0x0050F780; // type:object size:0x80 scope:global align:32
+obj_s_yamishop_v = .data:0x0050F800; // type:object size:0x420 scope:global align:8
+obj_s_yamishop_window_model = .data:0x0050FC20; // type:object size:0x50 scope:global align:8
+obj_s_yamishop_t1_model = .data:0x0050FC70; // type:object size:0x88 scope:global align:8
+obj_s_yamishop_light_model = .data:0x0050FCF8; // type:object size:0x58 scope:global align:8
+obj_s_yamishop_door1_model = .data:0x0050FD50; // type:object size:0x80 scope:global align:8
+obj_s_yamishop_door2_model = .data:0x0050FDD0; // type:object size:0x70 scope:global align:8
+cKF_je_r_obj_s_yamishop_tbl = .data:0x0050FE40; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_s_yamishop = .data:0x0050FE88; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_yamishop_tbl = .data:0x0050FE90; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_yamishop_tbl = .data:0x0050FE98; // type:object size:0x4 scope:global align:4
+cKF_c_obj_s_yamishop_tbl = .data:0x0050FE9C; // type:object size:0x26 scope:global align:4
+cKF_ds_obj_s_yamishop_tbl = .data:0x0050FEC4; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_s_yamishop = .data:0x0050FEFC; // type:object size:0x14 scope:global align:4
+obj_w_yamishop_t2_tex_txt = .data:0x0050FF20; // type:object size:0x800 scope:global align:32
+obj_w_yamishop_t1_tex_txt = .data:0x00510720; // type:object size:0x800 scope:global align:32
+obj_w_yamishop_window_tex_txt = .data:0x00510F20; // type:object size:0x80 scope:global align:32
+obj_w_yamishop_v = .data:0x00510FA0; // type:object size:0x420 scope:global align:8
+obj_w_yamishop_window_model = .data:0x005113C0; // type:object size:0x50 scope:global align:8
+obj_w_yamishop_t1_model = .data:0x00511410; // type:object size:0x88 scope:global align:8
+obj_w_yamishop_light_model = .data:0x00511498; // type:object size:0x58 scope:global align:8
+obj_w_yamishop_door1_model = .data:0x005114F0; // type:object size:0x80 scope:global align:8
+obj_w_yamishop_door2_model = .data:0x00511570; // type:object size:0x70 scope:global align:8
+cKF_je_r_obj_w_yamishop_tbl = .data:0x005115E0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_w_yamishop = .data:0x00511628; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_yamishop_tbl = .data:0x00511630; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_w_yamishop_tbl = .data:0x00511638; // type:object size:0x4 scope:global align:4
+cKF_c_obj_w_yamishop_tbl = .data:0x0051163C; // type:object size:0x26 scope:global align:4
+cKF_ds_obj_w_yamishop_tbl = .data:0x00511664; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_w_yamishop = .data:0x0051169C; // type:object size:0x14 scope:global align:4
+obj_s_bridgeA_pal = .data:0x005116C0; // type:object size:0x20 scope:global align:32
+obj_s_bridgeA_t1_tex_txt = .data:0x005116E0; // type:object size:0x800 scope:global align:32
+obj_s_bridgeA_t2_tex_txt = .data:0x00511EE0; // type:object size:0x800 scope:global align:32
+obj_s_bridgeA_v = .data:0x005126E0; // type:object size:0x8A0 scope:global align:8
+obj_s_bridgeA_base_model = .data:0x00512F80; // type:object size:0xB0 scope:global align:8
+obj_s_bridgeA_step2_model = .data:0x00513030; // type:object size:0xA0 scope:global align:8
+obj_s_bridgeA_step3_model = .data:0x005130D0; // type:object size:0xA0 scope:global align:8
+obj_s_bridgeA_step4_model = .data:0x00513170; // type:object size:0xA0 scope:global align:8
+cKF_je_r_obj_s_bridgeA_tbl = .data:0x00513210; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_s_bridgeA = .data:0x00513258; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_bridgeA_tbl = .data:0x00513260; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_s_bridgeA_tbl = .data:0x00513268; // type:object size:0x8 scope:global align:4
+cKF_c_obj_s_bridgeA_tbl = .data:0x00513270; // type:object size:0x22 scope:global align:4
+cKF_ds_obj_s_bridgeA_tbl = .data:0x00513294; // type:object size:0x72 scope:global align:4
+cKF_ba_r_obj_s_bridgeA = .data:0x00513308; // type:object size:0x14 scope:global align:4
+obj_w_bridgeA_pal = .data:0x00513320; // type:object size:0x20 scope:global align:32
+obj_w_bridgeA_t1_tex_txt = .data:0x00513340; // type:object size:0x800 scope:global align:32
+obj_w_bridgeA_t2_tex_txt = .data:0x00513B40; // type:object size:0x800 scope:global align:32
+obj_w_bridgeA_v = .data:0x00514340; // type:object size:0x8A0 scope:global align:8
+obj_w_bridgeA_base_model = .data:0x00514BE0; // type:object size:0xB0 scope:global align:8
+obj_w_bridgeA_step2_model = .data:0x00514C90; // type:object size:0xA0 scope:global align:8
+obj_w_bridgeA_step3_model = .data:0x00514D30; // type:object size:0xA0 scope:global align:8
+obj_w_bridgeA_step4_model = .data:0x00514DD0; // type:object size:0xA0 scope:global align:8
+cKF_je_r_obj_w_bridgeA_tbl = .data:0x00514E70; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_w_bridgeA = .data:0x00514EB8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_bridgeA_tbl = .data:0x00514EC0; // type:object size:0x6 scope:global align:4
+cKF_kn_obj_w_bridgeA_tbl = .data:0x00514EC8; // type:object size:0x8 scope:global align:4
+cKF_c_obj_w_bridgeA_tbl = .data:0x00514ED0; // type:object size:0x22 scope:global align:4
+cKF_ds_obj_w_bridgeA_tbl = .data:0x00514EF4; // type:object size:0x72 scope:global align:4
+cKF_ba_r_obj_w_bridgeA = .data:0x00514F68; // type:object size:0x14 scope:global align:4
+obj_s_uranai_t2_tex_txt = .data:0x00514F80; // type:object size:0x800 scope:global align:32
+obj_s_uranai_window_tex_txt = .data:0x00515780; // type:object size:0x80 scope:global align:32
+obj_s_uranai_t1_tex_txt = .data:0x00515800; // type:object size:0x800 scope:global align:32
+obj_s_uranai_v = .data:0x00516000; // type:object size:0x370 scope:global align:8
+obj_s_uranai_window_model = .data:0x00516370; // type:object size:0x48 scope:global align:8
+obj_s_uranai_t2_model = .data:0x005163B8; // type:object size:0x58 scope:global align:8
+obj_s_uranai_t1_model = .data:0x00516410; // type:object size:0x80 scope:global align:8
+obj_s_uranai_light_model = .data:0x00516490; // type:object size:0x50 scope:global align:8
+obj_s_uranai_doorA_model = .data:0x005164E0; // type:object size:0x58 scope:global align:8
+obj_s_uranai_doorB_model = .data:0x00516538; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_uranai_tbl = .data:0x00516590; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_uranai = .data:0x005165F0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_uranai_tbl = .data:0x005165F8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_uranai_tbl = .data:0x00516600; // type:object size:0x18 scope:global align:4
+cKF_c_obj_s_uranai_tbl = .data:0x00516618; // type:object size:0x1E scope:global align:4
+cKF_ds_obj_s_uranai_tbl = .data:0x00516638; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_s_uranai = .data:0x005166C8; // type:object size:0x14 scope:global align:4
+obj_w_uranai_t2_tex_txt = .data:0x005166E0; // type:object size:0x800 scope:global align:32
+obj_w_uranai_window_tex_txt = .data:0x00516EE0; // type:object size:0x80 scope:global align:32
+obj_w_uranai_t1_tex_txt = .data:0x00516F60; // type:object size:0x800 scope:global align:32
+obj_w_uranai_v = .data:0x00517760; // type:object size:0x370 scope:global align:8
+obj_w_uranai_window_model = .data:0x00517AD0; // type:object size:0x48 scope:global align:8
+obj_w_uranai_t2_model = .data:0x00517B18; // type:object size:0x58 scope:global align:8
+obj_w_uranai_t1_model = .data:0x00517B70; // type:object size:0x80 scope:global align:8
+obj_w_uranai_light_model = .data:0x00517BF0; // type:object size:0x50 scope:global align:8
+obj_w_uranai_doorA_model = .data:0x00517C40; // type:object size:0x58 scope:global align:8
+obj_w_uranai_doorB_model = .data:0x00517C98; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_uranai_tbl = .data:0x00517CF0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_uranai = .data:0x00517D50; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_uranai_tbl = .data:0x00517D58; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_uranai_tbl = .data:0x00517D60; // type:object size:0x18 scope:global align:4
+cKF_c_obj_w_uranai_tbl = .data:0x00517D78; // type:object size:0x1E scope:global align:4
+cKF_ds_obj_w_uranai_tbl = .data:0x00517D98; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_w_uranai = .data:0x00517E28; // type:object size:0x14 scope:global align:4
+obj_e_count_t1_tex_txt = .data:0x00517E40; // type:object size:0x800 scope:global align:32
+obj_e_count_t2_tex_txt = .data:0x00518640; // type:object size:0x800 scope:global align:32
+obj_e_count_t3_tex_txt = .data:0x00518E40; // type:object size:0x800 scope:global align:32
+obj_e_count01_spot_tex_sgi_i4 = .data:0x00519640; // type:object size:0x80 scope:global align:32
+obj_e_count01_v = .data:0x005196C0; // type:object size:0x3B0 scope:global align:8
+obj_e_count_spot_model = .data:0x00519A70; // type:object size:0x68 scope:global align:8
+obj_e_count_lamp_model = .data:0x00519AD8; // type:object size:0x68 scope:global align:8
+obj_e_count_front_model = .data:0x00519B40; // type:object size:0x78 scope:global align:8
+obj_e_count_baloon_model = .data:0x00519BB8; // type:object size:0x78 scope:global align:8
+obj_e_count_back_model = .data:0x00519C30; // type:object size:0x58 scope:global align:8
+obj_e_count_new_model = .data:0x00519C88; // type:object size:0x50 scope:global align:8
+obj_e_count_down_model = .data:0x00519CD8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_e_count01_tbl = .data:0x00519D30; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_e_count01 = .data:0x00519D9C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_count01_tbl = .data:0x00519DA4; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_e_count01_tbl = .data:0x00519DB0; // type:object size:0x4 scope:global align:4
+cKF_c_obj_e_count01_tbl = .data:0x00519DB4; // type:object size:0x38 scope:global align:4
+cKF_ds_obj_e_count01_tbl = .data:0x00519DEC; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_obj_e_count01 = .data:0x00519E90; // type:object size:0x14 scope:global align:4
+obj_e_count02_0_tex = .data:0x00519EC0; // type:object size:0x200 scope:global align:32
+obj_e_count02_1_tex = .data:0x0051A0C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_2_tex = .data:0x0051A2C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_3_tex = .data:0x0051A4C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_4_tex = .data:0x0051A6C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_5_tex = .data:0x0051A8C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_6_tex = .data:0x0051AAC0; // type:object size:0x200 scope:global align:32
+obj_e_count02_7_tex = .data:0x0051ACC0; // type:object size:0x200 scope:global align:32
+obj_e_count02_8_tex = .data:0x0051AEC0; // type:object size:0x200 scope:global align:32
+obj_e_count02_9_tex = .data:0x0051B0C0; // type:object size:0x200 scope:global align:32
+obj_e_count02_cl_v = .data:0x0051B2C0; // type:object size:0x100 scope:global align:8
+obj_e_c2_ani_cl01_sita_model = .data:0x0051B3C0; // type:object size:0x68 scope:global align:8
+obj_e_c2_ani_ci01_mae_model = .data:0x0051B428; // type:object size:0x68 scope:global align:8
+cKF_je_r_obj_e_count02_cl_tbl = .data:0x0051B490; // type:object size:0x24 scope:global align:4
+cKF_bs_r_obj_e_count02_cl = .data:0x0051B4B4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_count02_cl_tbl = .data:0x0051B4BC; // type:object size:0x3 scope:global align:4
+cKF_kn_obj_e_count02_cl_tbl = .data:0x0051B4C0; // type:object size:0x2 scope:global align:4
+cKF_c_obj_e_count02_cl_tbl = .data:0x0051B4C4; // type:object size:0x16 scope:global align:4
+cKF_ds_obj_e_count02_cl_tbl = .data:0x0051B4DC; // type:object size:0x1E scope:global align:4
+cKF_ba_r_obj_e_count02_cl = .data:0x0051B4FC; // type:object size:0x14 scope:global align:4
+obj_s_douzou_dai_tex_txt = .data:0x0051B520; // type:object size:0x100 scope:global align:32
+obj_s_douzou_name_tex_txt = .data:0x0051B620; // type:object size:0x80 scope:global align:32
+obj_s_douzou_b1_tex_pic_i4 = .data:0x0051B6A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b2_tex_pic_i4 = .data:0x0051B7A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b3_tex_pic_i4 = .data:0x0051B8A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b4_tex_pic_i4 = .data:0x0051B9A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b5_tex_pic_i4 = .data:0x0051BAA0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b6_tex_pic_i4 = .data:0x0051BBA0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b7_tex_pic_i4 = .data:0x0051BCA0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_b8_tex_pic_i4 = .data:0x0051BDA0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_bm1_tex_pic_i4 = .data:0x0051BEA0; // type:object size:0x80 scope:global align:32
+obj_s_douzou_bm2_tex_pic_i4 = .data:0x0051BF20; // type:object size:0x80 scope:global align:32
+obj_s_douzou_g1_tex_pic_i4 = .data:0x0051BFA0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g2_tex_pic_i4 = .data:0x0051C0A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g3_tex_pic_i4 = .data:0x0051C1A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g4_tex_pic_i4 = .data:0x0051C2A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g5_tex_pic_i4 = .data:0x0051C3A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g6_tex_pic_i4 = .data:0x0051C4A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_g8_tex_pic_i4 = .data:0x0051C5A0; // type:object size:0x100 scope:global align:32
+obj_s_douzou_gm1_tex_pic_i4 = .data:0x0051C6A0; // type:object size:0x80 scope:global align:32
+obj_s_douzou_gm2_tex_pic_i4 = .data:0x0051C720; // type:object size:0x80 scope:global align:32
+obj_s_douzou_metal_tex_pic_i4 = .data:0x0051C7A0; // type:object size:0x40 scope:global align:32
+obj_s_douzou_v = .data:0x0051C7E0; // type:object size:0x11B0 scope:global align:8
+obj_s_douzou_name_model = .data:0x0051D990; // type:object size:0x48 scope:global align:8
+obj_s_douzou_dai_model = .data:0x0051D9D8; // type:object size:0x68 scope:global align:8
+obj_s_douzou_girl_mouth_model = .data:0x0051DA40; // type:object size:0x50 scope:global align:8
+obj_s_douzou_girl_face_model = .data:0x0051DA90; // type:object size:0x50 scope:global align:8
+obj_s_douzou_girl_model = .data:0x0051DAE0; // type:object size:0x138 scope:global align:8
+obj_s_douzou_boy_mouth_model = .data:0x0051DC18; // type:object size:0x48 scope:global align:8
+obj_s_douzou_boy_face_model = .data:0x0051DC60; // type:object size:0x50 scope:global align:8
+obj_s_douzou_boy_model = .data:0x0051DCB0; // type:object size:0x150 scope:global align:8
+cKF_ckcb_r_obj_s_douzou_tbl = .data:0x0051DE00; // type:object size:0x9 scope:global align:4
+cKF_c_obj_s_douzou_tbl = .data:0x0051DE0C; // type:object size:0x3C scope:global align:4
+cKF_ba_r_obj_s_douzou = .data:0x0051DE48; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_s_douzou_tbl = .data:0x0051DE5C; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_s_douzou = .data:0x0051DEC8; // type:object size:0x8 scope:global align:4
+obj_w_douzou_dai_tex_txt = .data:0x0051DEE0; // type:object size:0x100 scope:global align:32
+obj_w_douzou_name_tex_txt = .data:0x0051DFE0; // type:object size:0x80 scope:global align:32
+obj_w_douzou_b1_tex_pic_i4 = .data:0x0051E060; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b2_tex_pic_i4 = .data:0x0051E160; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b3_tex_pic_i4 = .data:0x0051E260; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b4_tex_pic_i4 = .data:0x0051E360; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b5_tex_pic_i4 = .data:0x0051E460; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b6_tex_pic_i4 = .data:0x0051E560; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b7_tex_pic_i4 = .data:0x0051E660; // type:object size:0x100 scope:global align:32
+obj_w_douzou_b8_tex_pic_i4 = .data:0x0051E760; // type:object size:0x100 scope:global align:32
+obj_w_douzou_bm1_tex_pic_i4 = .data:0x0051E860; // type:object size:0x80 scope:global align:32
+obj_w_douzou_bm2_tex_pic_i4 = .data:0x0051E8E0; // type:object size:0x80 scope:global align:32
+obj_w_douzou_g1_tex_pic_i4 = .data:0x0051E960; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g2_tex_pic_i4 = .data:0x0051EA60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g3_tex_pic_i4 = .data:0x0051EB60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g4_tex_pic_i4 = .data:0x0051EC60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g5_tex_pic_i4 = .data:0x0051ED60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g6_tex_pic_i4 = .data:0x0051EE60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_g8_tex_pic_i4 = .data:0x0051EF60; // type:object size:0x100 scope:global align:32
+obj_w_douzou_gm1_tex_pic_i4 = .data:0x0051F060; // type:object size:0x80 scope:global align:32
+obj_w_douzou_gm2_tex_pic_i4 = .data:0x0051F0E0; // type:object size:0x80 scope:global align:32
+obj_w_douzou_metal_tex_pic_i4 = .data:0x0051F160; // type:object size:0x40 scope:global align:32
+obj_w_douzou_v = .data:0x0051F1A0; // type:object size:0x11B0 scope:global align:8
+obj_w_douzou_name_model = .data:0x00520350; // type:object size:0x48 scope:global align:8
+obj_w_douzou_dai_model = .data:0x00520398; // type:object size:0x68 scope:global align:8
+obj_w_douzou_girl_mouth_model = .data:0x00520400; // type:object size:0x58 scope:global align:8
+obj_w_douzou_girl_face_model = .data:0x00520458; // type:object size:0x50 scope:global align:8
+obj_w_douzou_girl_model = .data:0x005204A8; // type:object size:0x138 scope:global align:8
+obj_w_douzou_boy_mouth_model = .data:0x005205E0; // type:object size:0x48 scope:global align:8
+obj_w_douzou_boy_face_model = .data:0x00520628; // type:object size:0x50 scope:global align:8
+obj_w_douzou_boy_model = .data:0x00520678; // type:object size:0x150 scope:global align:8
+cKF_ckcb_r_obj_w_douzou_tbl = .data:0x005207C8; // type:object size:0x9 scope:global align:4
+cKF_c_obj_w_douzou_tbl = .data:0x005207D4; // type:object size:0x3C scope:global align:4
+cKF_ba_r_obj_w_douzou = .data:0x00520810; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_w_douzou_tbl = .data:0x00520824; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_w_douzou = .data:0x00520890; // type:object size:0x8 scope:global align:4
+obj_s_dump_t1_tex = .data:0x005208A0; // type:object size:0x800 scope:global align:32
+obj_s_dump_t2_tex = .data:0x005210A0; // type:object size:0x800 scope:global align:32
+obj_s_dump_v = .data:0x005218A0; // type:object size:0x440 scope:global align:8
+obj_s_dump_t1T_model = .data:0x00521CE0; // type:object size:0x90 scope:global align:8
+obj_s_dump_t2T_model = .data:0x00521D70; // type:object size:0x70 scope:global align:8
+dump_s_DL_model = .data:0x00521DE0; // type:object size:0x18 scope:global align:8
+obj_w_dump_t1_tex = .data:0x00521E00; // type:object size:0x800 scope:global align:32
+obj_w_dump_t2_tex = .data:0x00522600; // type:object size:0x800 scope:global align:32
+obj_w_dump_v = .data:0x00522E00; // type:object size:0x440 scope:global align:8
+obj_w_dump_t1T_model = .data:0x00523240; // type:object size:0x90 scope:global align:8
+obj_w_dump_t2T_model = .data:0x005232D0; // type:object size:0x70 scope:global align:8
+dump_w_DL_model = .data:0x00523340; // type:object size:0x18 scope:global align:8
+obj_fall_rainbow_1_tex_rgb_rgba16 = .data:0x00523360; // type:object size:0x100 scope:local align:32
+obj_fall_rainbowA_tex_rgb_i4 = .data:0x00523460; // type:object size:0x80 scope:local align:32
+obj_fallCA1_tex_rgb_ia8 = .data:0x005234E0; // type:object size:0x400 scope:local align:32
+obj_fallA2_tex_rgb_i4 = .data:0x005238E0; // type:object size:0x200 scope:local align:32
+obj_fallA3_tex_rgb_i4 = .data:0x00523AE0; // type:object size:0x80 scope:local align:32
+obj_fallC2_tex_rgb_i4 = .data:0x00523B60; // type:object size:0x200 scope:local align:32
+obj_fallC3_tex_rgb_i4 = .data:0x00523D60; // type:object size:0x80 scope:local align:32
+obj_fallS_v = .data:0x00523DE0; // type:object size:0x550 scope:global align:8
+obj_fallS_grpAT_model = .data:0x00524330; // type:object size:0x60 scope:global align:8
+obj_fallS_grpBT_model = .data:0x00524390; // type:object size:0x68 scope:global align:8
+obj_fallS_grpDT_model = .data:0x005243F8; // type:object size:0x58 scope:global align:8
+obj_fallS_grpCT_model = .data:0x00524450; // type:object size:0x68 scope:global align:8
+obj_fallS_rainbowT_model = .data:0x005244B8; // type:object size:0x98 scope:global align:8
+obj_fallS_model = .data:0x00524550; // type:object size:0x40 scope:global align:8
+obj_fallS_evw_anime_1 = .data:0x00524590; // type:object size:0x8 scope:global align:4
+obj_fallS_evw_anime_2 = .data:0x00524598; // type:object size:0x8 scope:global align:4
+obj_fallS_evw_anime_3 = .data:0x005245A0; // type:object size:0x8 scope:global align:4
+obj_fallS_evw_anime_4 = .data:0x005245A8; // type:object size:0x8 scope:global align:4
+obj_fallS_evw_anime = .data:0x005245B0; // type:object size:0x20 scope:global align:4
+obj_fall_rainbow_1_tex_rgb_rgba16 = .data:0x005245E0; // type:object size:0x100 scope:local align:32
+obj_fall_rainbowA_tex_rgb_i4 = .data:0x005246E0; // type:object size:0x80 scope:local align:32
+obj_fallCA1_tex_rgb_ia8 = .data:0x00524760; // type:object size:0x400 scope:local align:32
+obj_fallA2_tex_rgb_i4 = .data:0x00524B60; // type:object size:0x200 scope:local align:32
+obj_fallA3_tex_rgb_i4 = .data:0x00524D60; // type:object size:0x80 scope:local align:32
+obj_fallC2_tex_rgb_i4 = .data:0x00524DE0; // type:object size:0x200 scope:local align:32
+obj_fallC3_tex_rgb_i4 = .data:0x00524FE0; // type:object size:0x80 scope:local align:32
+obj_fallSE_v = .data:0x00525060; // type:object size:0x550 scope:global align:8
+obj_fallSE_grpAT_model = .data:0x005255B0; // type:object size:0x60 scope:global align:8
+obj_fallSE_grpBT_model = .data:0x00525610; // type:object size:0x68 scope:global align:8
+obj_fallSE_grpDT_model = .data:0x00525678; // type:object size:0x58 scope:global align:8
+obj_fallSE_grpCT_model = .data:0x005256D0; // type:object size:0x68 scope:global align:8
+obj_fallSE_rainbowT_model = .data:0x00525738; // type:object size:0x98 scope:global align:8
+obj_fallSESW_model = .data:0x005257D0; // type:object size:0x40 scope:global align:8
+obj_fallSE_evw_anime_1 = .data:0x00525810; // type:object size:0x8 scope:global align:4
+obj_fallSE_evw_anime_2 = .data:0x00525818; // type:object size:0x8 scope:global align:4
+obj_fallSE_evw_anime_3 = .data:0x00525820; // type:object size:0x8 scope:global align:4
+obj_fallSE_evw_anime_4 = .data:0x00525828; // type:object size:0x8 scope:global align:4
+obj_fallSE_evw_anime = .data:0x00525830; // type:object size:0x20 scope:global align:4
+obj_s_frag_pal = .data:0x00525860; // type:object size:0x20 scope:global align:32
+obj_s_frag_t3_tex_txt = .data:0x00525880; // type:object size:0x100 scope:global align:32
+obj_s_frag_t1_tex_txt = .data:0x00525980; // type:object size:0x200 scope:global align:32
+obj_s_frag_t2_tex_txt = .data:0x00525B80; // type:object size:0x100 scope:global align:32
+obj_s_frag_v = .data:0x00525C80; // type:object size:0x7A0 scope:global align:8
+obj_s_frag_pole_model = .data:0x00526420; // type:object size:0x70 scope:global align:8
+obj_s_frag_base_model = .data:0x00526490; // type:object size:0x58 scope:global align:8
+obj_s_frag_wire_model = .data:0x005264E8; // type:object size:0x88 scope:global align:8
+obj_s_frag_fragA_model = .data:0x00526570; // type:object size:0x70 scope:global align:8
+obj_s_frag_fragB_model = .data:0x005265E0; // type:object size:0xA8 scope:global align:8
+obj_s_frag_fragC_model = .data:0x00526688; // type:object size:0xC0 scope:global align:8
+cKF_je_r_obj_s_frag_tbl = .data:0x00526748; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_frag = .data:0x005267A8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_frag_tbl = .data:0x005267B0; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_frag_tbl = .data:0x005267B8; // type:object size:0x8 scope:global align:4
+cKF_c_obj_s_frag_tbl = .data:0x005267C0; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_frag_tbl = .data:0x005267F0; // type:object size:0x66 scope:global align:4
+cKF_ba_r_obj_s_frag = .data:0x00526858; // type:object size:0x14 scope:global align:4
+obj_w_frag_pal = .data:0x00526880; // type:object size:0x20 scope:global align:32
+obj_w_frag_t3_tex_txt = .data:0x005268A0; // type:object size:0x100 scope:global align:32
+obj_w_frag_t1_tex_txt = .data:0x005269A0; // type:object size:0x200 scope:global align:32
+obj_w_frag_t2_tex_txt = .data:0x00526BA0; // type:object size:0x100 scope:global align:32
+obj_w_frag_v = .data:0x00526CA0; // type:object size:0x7A0 scope:global align:8
+obj_w_frag_pole_model = .data:0x00527440; // type:object size:0x70 scope:global align:8
+obj_w_frag_base_model = .data:0x005274B0; // type:object size:0x58 scope:global align:8
+obj_w_frag_wire_model = .data:0x00527508; // type:object size:0x88 scope:global align:8
+obj_w_frag_fragA_model = .data:0x00527590; // type:object size:0x70 scope:global align:8
+obj_w_frag_fragB_model = .data:0x00527600; // type:object size:0xA8 scope:global align:8
+obj_w_frag_fragC_model = .data:0x005276A8; // type:object size:0xC0 scope:global align:8
+cKF_je_r_obj_w_frag_tbl = .data:0x00527768; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_frag = .data:0x005277C8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_frag_tbl = .data:0x005277D0; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_frag_tbl = .data:0x005277D8; // type:object size:0x8 scope:global align:4
+cKF_c_obj_w_frag_tbl = .data:0x005277E0; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_w_frag_tbl = .data:0x00527810; // type:object size:0x66 scope:global align:4
+cKF_ba_r_obj_w_frag = .data:0x00527878; // type:object size:0x14 scope:global align:4
+obj_e_ghog_m_pal = .data:0x005278A0; // type:object size:0x20 scope:global align:32
+obj_e_ghog_n_pal = .data:0x005278C0; // type:object size:0x20 scope:global align:32
+obj_e_ghog_m1 = .data:0x005278E0; // type:object size:0x40 scope:global align:32
+obj_e_ghog_m2 = .data:0x00527920; // type:object size:0x40 scope:global align:32
+obj_e_ghog_m3 = .data:0x00527960; // type:object size:0x100 scope:global align:32
+obj_e_ghog_m4 = .data:0x00527A60; // type:object size:0x80 scope:global align:32
+obj_e_ghog_m5 = .data:0x00527AE0; // type:object size:0x80 scope:global align:32
+obj_e_ghog_n2 = .data:0x00527B60; // type:object size:0x80 scope:global align:32
+obj_e_ghog_n1 = .data:0x00527BE0; // type:object size:0x200 scope:global align:32
+obj_e_ghog_v = .data:0x00527DE0; // type:object size:0x450 scope:global align:8
+obj_e_ghog_modelT = .data:0x00528230; // type:object size:0x110 scope:global align:8
+obj_e_ghog_model = .data:0x00528340; // type:object size:0x90 scope:global align:8
+obj_e_hanami_t1_pal = .data:0x005283E0; // type:object size:0x20 scope:global align:32
+obj_e_hanami_t2_pal = .data:0x00528400; // type:object size:0x20 scope:global align:32
+obj_e_hanami_t3_pal = .data:0x00528420; // type:object size:0x20 scope:global align:32
+obj_e_hanami_t5_pal = .data:0x00528440; // type:object size:0x20 scope:global align:32
+obj_e_hanami_t1 = .data:0x00528460; // type:object size:0x800 scope:global align:32
+obj_e_hanami_t2 = .data:0x00528C60; // type:object size:0x400 scope:global align:32
+obj_e_hanami_t3 = .data:0x00529060; // type:object size:0x200 scope:global align:32
+obj_e_hanami_t4 = .data:0x00529260; // type:object size:0x40 scope:global align:32
+obj_e_hanami_t5 = .data:0x005292A0; // type:object size:0x80 scope:global align:32
+obj_e_hanami_t6 = .data:0x00529320; // type:object size:0x20 scope:global align:32
+obj_e_hanami_a_v = .data:0x00529340; // type:object size:0xB10 scope:global align:8
+obj_e_hanami_a_modelT = .data:0x00529E50; // type:object size:0x8 scope:global align:8
+obj_e_hanami_a_model = .data:0x00529E58; // type:object size:0x230 scope:global align:8
+obj_e_hanami_b_v = .data:0x0052A088; // type:object size:0xBE0 scope:global align:8
+obj_e_hanami_b_modelT = .data:0x0052AC68; // type:object size:0x8 scope:global align:8
+obj_e_hanami_b_model = .data:0x0052AC70; // type:object size:0x240 scope:global align:8
+obj_s_house_i_1_tex_txt = .data:0x0052AEC0; // type:object size:0x800 scope:global align:32
+obj_s_house_i_window_tex_txt = .data:0x0052B6C0; // type:object size:0x100 scope:global align:32
+obj_s_house_i_2_tex_txt = .data:0x0052B7C0; // type:object size:0x800 scope:global align:32
+obj_s_house_i_3_us_tex_txt = .data:0x0052BFC0; // type:object size:0x400 scope:global align:32
+obj_s_house_i_v = .data:0x0052C3C0; // type:object size:0xA40 scope:global align:8
+obj_s_house_i_window_model = .data:0x0052CE00; // type:object size:0x48 scope:global align:8
+obj_s_house_i_light_model = .data:0x0052CE48; // type:object size:0x50 scope:global align:8
+obj_s_house_i_3_model = .data:0x0052CE98; // type:object size:0x60 scope:global align:8
+obj_s_house_i_2_model = .data:0x0052CEF8; // type:object size:0x60 scope:global align:8
+obj_s_house_i_1_model = .data:0x0052CF58; // type:object size:0x100 scope:global align:8
+obj_s_house_i_door_model = .data:0x0052D058; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house_i_tbl = .data:0x0052D0B0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_house_i = .data:0x0052D104; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house_i_tbl = .data:0x0052D10C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_house_i_tbl = .data:0x0052D114; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house_i_tbl = .data:0x0052D118; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_house_i_tbl = .data:0x0052D148; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house_i = .data:0x0052D18C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house_i_out_tbl = .data:0x0052D1A0; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_house_i_out_tbl = .data:0x0052D1A8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house_i_out_tbl = .data:0x0052D1AC; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_house_i_out_tbl = .data:0x0052D1DC; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house_i_out = .data:0x0052D22C; // type:object size:0x14 scope:global align:4
+obj_e_hfes01_t1_pal = .data:0x0052D240; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t4_pal = .data:0x0052D260; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t2_pal = .data:0x0052D280; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t3_pal = .data:0x0052D2A0; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t1 = .data:0x0052D2C0; // type:object size:0x800 scope:global align:32
+obj_e_hfes01_t6 = .data:0x0052DAC0; // type:object size:0x80 scope:global align:32
+obj_e_hfes01_t2 = .data:0x0052DB40; // type:object size:0x400 scope:global align:32
+obj_e_hfes01_t7 = .data:0x0052DF40; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t3 = .data:0x0052DF60; // type:object size:0x400 scope:global align:32
+obj_e_hfes01_t4 = .data:0x0052E360; // type:object size:0x40 scope:global align:32
+obj_e_hfes_a_v = .data:0x0052E3A0; // type:object size:0xB40 scope:global align:8
+obj_e_hfes_a_modelT = .data:0x0052EEE0; // type:object size:0x8 scope:global align:8
+obj_e_hfes_a_model = .data:0x0052EEE8; // type:object size:0x220 scope:global align:8
+obj_e_hfes_b_v = .data:0x0052F108; // type:object size:0xAA0 scope:global align:8
+obj_e_hfes_b_modelT = .data:0x0052FBA8; // type:object size:0x8 scope:global align:8
+obj_e_hfes_b_model = .data:0x0052FBB0; // type:object size:0x218 scope:global align:8
+obj_e_hfes01_t5_pal = .data:0x0052FDE0; // type:object size:0x20 scope:global align:32
+obj_e_hfes01_t5 = .data:0x0052FE00; // type:object size:0x400 scope:global align:32
+obj_e_hfes_c_v = .data:0x00530200; // type:object size:0x1440 scope:global align:8
+obj_e_hfes_c_modelT = .data:0x00531640; // type:object size:0x8 scope:global align:8
+obj_e_hfes_c_model = .data:0x00531648; // type:object size:0x328 scope:global align:8
+obj_e_kago_r_t1_tex = .data:0x00531980; // type:object size:0x800 scope:global align:32
+obj_e_kago_r_t2_tex = .data:0x00532180; // type:object size:0x800 scope:global align:32
+obj_e_kago_r_v = .data:0x00532980; // type:object size:0x290 scope:global align:8
+obj_e_kago_r_t1T_model = .data:0x00532C10; // type:object size:0x68 scope:global align:8
+obj_e_kago_r_t2T_model = .data:0x00532C78; // type:object size:0x80 scope:global align:8
+kago_r_DL_model = .data:0x00532CF8; // type:object size:0x18 scope:global align:8
+zobj_e_kago_r_pal = .data:0x00532D20; // type:object size:0x20 scope:global align:32
+obj_e_kago_r_ball_t1_tex = .data:0x00532D40; // type:object size:0x800 scope:global align:32
+obj_e_kago_r_ball_v = .data:0x00533540; // type:object size:0x270 scope:global align:8
+kago_r_ball_DL_model = .data:0x005337B0; // type:object size:0x78 scope:global align:8
+obj_e_kago_w_t1_tex = .data:0x00533840; // type:object size:0x800 scope:global align:32
+obj_e_kago_w_t2_tex = .data:0x00534040; // type:object size:0x800 scope:global align:32
+obj_e_kago_w_v = .data:0x00534840; // type:object size:0x290 scope:global align:8
+obj_e_kago_w_t1T_model = .data:0x00534AD0; // type:object size:0x68 scope:global align:8
+obj_e_kago_w_t2T_model = .data:0x00534B38; // type:object size:0x80 scope:global align:8
+kago_w_DL_model = .data:0x00534BB8; // type:object size:0x18 scope:global align:8
+zobj_e_kago_w_pal = .data:0x00534BE0; // type:object size:0x20 scope:global align:32
+obj_e_kago_w_ball_t1_tex = .data:0x00534C00; // type:object size:0x800 scope:global align:32
+obj_e_kago_w_ball_v = .data:0x00535400; // type:object size:0x240 scope:global align:8
+kago_w_ball_DL_model = .data:0x00535640; // type:object size:0x78 scope:global align:8
+obj_w_kamakura_pal = .data:0x005356C0; // type:object size:0x20 scope:local align:32
+obj_w_kamakura_t1_tex = .data:0x005356E0; // type:object size:0x800 scope:global align:32
+obj_w_kamakura_t2_tex = .data:0x00535EE0; // type:object size:0x800 scope:global align:32
+obj_w_kamakura_t3_tex = .data:0x005366E0; // type:object size:0x800 scope:global align:32
+obj_w_kamakura_light02_tex = .data:0x00536EE0; // type:object size:0x80 scope:global align:32
+obj_w_kamakura_v = .data:0x00536F60; // type:object size:0x540 scope:global align:8
+obj_w_kamakura_light_model = .data:0x005374A0; // type:object size:0x38 scope:global align:8
+obj_w_kamakura_t2_on_model = .data:0x005374D8; // type:object size:0xB8 scope:global align:8
+obj_w_kamakura_window_model = .data:0x00537590; // type:object size:0x48 scope:global align:8
+obj_w_kamakura_t1_onT_model = .data:0x005375D8; // type:object size:0x60 scope:global align:8
+obj_w_kamakura_t3_onT_model = .data:0x00537638; // type:object size:0x68 scope:global align:8
+kamakura_DL_model = .data:0x005376A0; // type:object size:0x28 scope:global align:8
+obj_e_koinobori_t1_tex_txt = .data:0x005376E0; // type:object size:0x800 scope:global align:32
+obj_e_koinobori_t3_tex_txt = .data:0x00537EE0; // type:object size:0x800 scope:global align:32
+obj_e_koinobori_v = .data:0x005386E0; // type:object size:0xD10 scope:global align:8
+obj_e_koinobori_pole_1_model = .data:0x005393F0; // type:object size:0x50 scope:global align:8
+obj_e_koinobori_rope_model = .data:0x00539440; // type:object size:0x58 scope:global align:8
+obj_e_koinobori_magoiA_model = .data:0x00539498; // type:object size:0x48 scope:global align:8
+obj_e_koinobori_magoiB_model = .data:0x005394E0; // type:object size:0x70 scope:global align:8
+obj_e_koinobori_magoiC_model = .data:0x00539550; // type:object size:0x88 scope:global align:8
+obj_e_koinobori_higoiA_model = .data:0x005395D8; // type:object size:0x68 scope:global align:8
+obj_e_koinobori_higoiB_model = .data:0x00539640; // type:object size:0x78 scope:global align:8
+obj_e_koinobori_higoiC_model = .data:0x005396B8; // type:object size:0x88 scope:global align:8
+obj_e_koinobori_fukiA_model = .data:0x00539740; // type:object size:0x48 scope:global align:8
+obj_e_koinobori_fukiB_model = .data:0x00539788; // type:object size:0x70 scope:global align:8
+obj_e_koinobori_fukiC_model = .data:0x005397F8; // type:object size:0x90 scope:global align:8
+obj_e_koinobori_yaguruma_model = .data:0x00539888; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_e_koinobori_tbl = .data:0x005398C8; // type:object size:0xCC scope:global align:4
+cKF_bs_r_obj_e_koinobori = .data:0x00539994; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_koinobori_tbl = .data:0x0053999C; // type:object size:0x11 scope:global align:4
+cKF_kn_obj_e_koinobori_tbl = .data:0x005399B0; // type:object size:0x4E scope:global align:4
+cKF_c_obj_e_koinobori_tbl = .data:0x00539A00; // type:object size:0x1E scope:global align:4
+cKF_ds_obj_e_koinobori_tbl = .data:0x00539A20; // type:object size:0x41A scope:global align:4
+cKF_ba_r_obj_e_koinobori = .data:0x00539E3C; // type:object size:0x14 scope:global align:4
+obj_lotus_flower_tex_txt = .data:0x00539E60; // type:object size:0x200 scope:global align:32
+obj_lotus_leaf_tex_txt = .data:0x0053A060; // type:object size:0x400 scope:global align:32
+obj_s_lotus_v = .data:0x0053A460; // type:object size:0x9C0 scope:global align:8
+obj_s_lotus_flower1_model = .data:0x0053AE20; // type:object size:0xA0 scope:global align:8
+obj_s_lotus_leafH_model = .data:0x0053AEC0; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafG_model = .data:0x0053AF08; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafF_model = .data:0x0053AF50; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafE_model = .data:0x0053AF98; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafD_model = .data:0x0053AFE0; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafC_model = .data:0x0053B028; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafB_model = .data:0x0053B070; // type:object size:0x48 scope:global align:8
+obj_s_lotus_leafA_model = .data:0x0053B0B8; // type:object size:0x48 scope:global align:8
+cKF_je_r_obj_s_lotus_tbl = .data:0x0053B100; // type:object size:0xE4 scope:global align:4
+cKF_bs_r_obj_s_lotus = .data:0x0053B1E4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_lotus_tbl = .data:0x0053B1EC; // type:object size:0x13 scope:global align:4
+cKF_kn_obj_s_lotus_tbl = .data:0x0053B200; // type:object size:0x2A scope:global align:4
+cKF_c_obj_s_lotus_tbl = .data:0x0053B22C; // type:object size:0x4E scope:global align:4
+cKF_ds_obj_s_lotus_tbl = .data:0x0053B27C; // type:object size:0x162 scope:global align:4
+cKF_ba_r_obj_s_lotus = .data:0x0053B3E0; // type:object size:0x14 scope:global align:4
+obj_e_mikanbox_tex = .data:0x0053B400; // type:object size:0x400 scope:global align:32
+obj_e_mikanbox_v = .data:0x0053B800; // type:object size:0x1C0 scope:local align:8
+obj_e_mikanbox_model = .data:0x0053B9C0; // type:object size:0x50 scope:global align:8
+copyright_tex = .data:0x0053BA20; // type:object size:0x800 scope:global align:32
+obj_e_mikanbox_copyrightT_model = .data:0x0053C220; // type:object size:0x40 scope:global align:8
+end_notice2_tex = .data:0x0053C260; // type:object size:0x800 scope:global align:32
+end_notice1_tex = .data:0x0053CA60; // type:object size:0x800 scope:global align:32
+end_notice3_tex = .data:0x0053D260; // type:object size:0x800 scope:global align:32
+end_notice_v = .data:0x0053DA60; // type:object size:0xC0 scope:global align:8
+obj_e_mikanbox_copyrightT_model2 = .data:0x0053DB20; // type:object size:0x78 scope:global align:8
+obj_e_mikuji_2_pal = .data:0x0053DBA0; // type:object size:0x20 scope:global align:32
+obj_e_mikuji_1_pal = .data:0x0053DBC0; // type:object size:0x20 scope:global align:32
+obj_e_mikuji_2 = .data:0x0053DBE0; // type:object size:0x200 scope:global align:32
+obj_e_mikuji_1 = .data:0x0053DDE0; // type:object size:0x800 scope:global align:32
+obj_e_mikuji_v = .data:0x0053E5E0; // type:object size:0x330 scope:global align:8
+obj_e_mikuji_model = .data:0x0053E910; // type:object size:0xB8 scope:global align:8
+obj_summer_museum_pal = .data:0x0053E9E0; // type:object size:0x20 scope:global align:32
+obj_s_museum_t2_tex = .data:0x0053EA00; // type:object size:0x800 scope:global align:32
+obj_s_museum_t3_tex = .data:0x0053F200; // type:object size:0x800 scope:global align:32
+obj_museum_window_tex = .data:0x0053FA00; // type:object size:0x80 scope:global align:32
+obj_s_museum_t1_tex = .data:0x0053FA80; // type:object size:0x800 scope:global align:32
+obj_s_museum_v = .data:0x00540280; // type:object size:0x8D0 scope:global align:8
+obj_s_museum_t2_model = .data:0x00540B50; // type:object size:0x78 scope:global align:8
+obj_s_museum_t1_model = .data:0x00540BC8; // type:object size:0xC0 scope:global align:8
+obj_s_museum_lightT_model = .data:0x00540C88; // type:object size:0x38 scope:global align:8
+obj_s_museum_t3T_model = .data:0x00540CC0; // type:object size:0x88 scope:global align:8
+obj_s_museum_windowT_model = .data:0x00540D48; // type:object size:0x48 scope:global align:8
+obj_winter_museum_pal = .data:0x00540DA0; // type:object size:0x20 scope:global align:32
+obj_w_museum_t2_tex = .data:0x00540DC0; // type:object size:0x800 scope:global align:32
+obj_w_museum_t3_tex = .data:0x005415C0; // type:object size:0x800 scope:global align:32
+obj_w_museum_window_tex = .data:0x00541DC0; // type:object size:0x80 scope:global align:32
+obj_w_museum_t1_tex = .data:0x00541E40; // type:object size:0x800 scope:global align:32
+obj_w_museum_v = .data:0x00542640; // type:object size:0x8D0 scope:global align:8
+obj_w_museum_t2_model = .data:0x00542F10; // type:object size:0x78 scope:global align:8
+obj_w_museum_t1_model = .data:0x00542F88; // type:object size:0xC0 scope:global align:8
+obj_w_museum_lightT_model = .data:0x00543048; // type:object size:0x38 scope:global align:8
+obj_w_museum_t3T_model = .data:0x00543080; // type:object size:0x88 scope:global align:8
+obj_w_museum_windowT_model = .data:0x00543108; // type:object size:0x48 scope:global align:8
+obj_s_myhome_i_1_tex_txt = .data:0x00543160; // type:object size:0x800 scope:global align:32
+obj_s_myhome_i_2_tex_txt = .data:0x00543960; // type:object size:0x800 scope:global align:32
+obj_s_myhome_i_3_tex_txt = .data:0x00544160; // type:object size:0x800 scope:global align:32
+obj_s_myhome_i_window_tex_txt = .data:0x00544960; // type:object size:0x80 scope:global align:32
+obj_s_myhome_i_v = .data:0x005449E0; // type:object size:0x880 scope:global align:8
+obj_s_myhome_i_window_model = .data:0x00545260; // type:object size:0x48 scope:global align:8
+obj_s_myhome_i_light_model = .data:0x005452A8; // type:object size:0x50 scope:global align:8
+obj_s_myhome_i_3_model = .data:0x005452F8; // type:object size:0x60 scope:global align:8
+obj_s_myhome_i_2_model = .data:0x00545358; // type:object size:0x68 scope:global align:8
+obj_s_myhome_i_1_model = .data:0x005453C0; // type:object size:0xD8 scope:global align:8
+obj_s_myhome_i_door_model = .data:0x00545498; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_myhome_i_tbl = .data:0x005454F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_myhome_i = .data:0x00545544; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_myhome_i_tbl = .data:0x0054554C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_myhome_i_tbl = .data:0x00545554; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome_i_tbl = .data:0x00545558; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_myhome_i_tbl = .data:0x00545588; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_myhome_i = .data:0x005455CC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_myhome_i_out_tbl = .data:0x005455E0; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_myhome_i_out_tbl = .data:0x005455E8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome_i_out_tbl = .data:0x005455EC; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_myhome_i_out_tbl = .data:0x0054561C; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_myhome_i_out = .data:0x0054566C; // type:object size:0x14 scope:global align:4
+obj_s_house1_t1_tex_txt = .data:0x00545680; // type:object size:0x800 scope:global align:32
+obj_s_house1_window_txt = .data:0x00545E80; // type:object size:0x80 scope:global align:32
+obj_s_house1_t3_tex_txt = .data:0x00545F00; // type:object size:0x800 scope:global align:32
+obj_s_house1_t2_tex_txt = .data:0x00546700; // type:object size:0x800 scope:global align:32
+obj_s_house1_t4_tex_txt = .data:0x00546F00; // type:object size:0x200 scope:global align:32
+obj_s_house1_v = .data:0x00547100; // type:object size:0x730 scope:global align:8
+obj_s_house1_windowL_model = .data:0x00547830; // type:object size:0x40 scope:global align:8
+obj_s_house1_windowR_model = .data:0x00547870; // type:object size:0x40 scope:global align:8
+obj_s_house1_light_model = .data:0x005478B0; // type:object size:0x60 scope:global align:8
+obj_s_house1_t4_model = .data:0x00547910; // type:object size:0x58 scope:global align:8
+obj_s_house1_t3_model = .data:0x00547968; // type:object size:0x60 scope:global align:8
+obj_s_house1_t2_model = .data:0x005479C8; // type:object size:0x88 scope:global align:8
+obj_s_house1_t1_model = .data:0x00547A50; // type:object size:0x88 scope:global align:8
+obj_s_house1_door_model = .data:0x00547AD8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house1_tbl = .data:0x00547B30; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_house1 = .data:0x00547B90; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house1_tbl = .data:0x00547B98; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house1_tbl = .data:0x00547BA0; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house1_tbl = .data:0x00547BA4; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house1_tbl = .data:0x00547BD8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house1 = .data:0x00547C1C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house1_out_tbl = .data:0x00547C30; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house1_out_tbl = .data:0x00547C38; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house1_out_tbl = .data:0x00547C3C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house1_out_tbl = .data:0x00547C70; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house1_out = .data:0x00547CC0; // type:object size:0x14 scope:global align:4
+obj_s_house2_t3_tex_txt = .data:0x00547CE0; // type:object size:0x800 scope:global align:32
+obj_s_house2_window_tex_txt = .data:0x005484E0; // type:object size:0x80 scope:global align:32
+obj_s_house2_t2_tex_txt = .data:0x00548560; // type:object size:0x800 scope:global align:32
+obj_s_house2_t1_tex_txt = .data:0x00548D60; // type:object size:0x800 scope:global align:32
+obj_s_house2_name_tex_txt = .data:0x00549560; // type:object size:0x200 scope:global align:32
+obj_s_house2_v = .data:0x00549760; // type:object size:0x6D0 scope:global align:8
+obj_s_house2_window_model = .data:0x00549E30; // type:object size:0x50 scope:global align:8
+obj_s_house2_light_model = .data:0x00549E80; // type:object size:0x58 scope:global align:8
+obj_s_house2_t3_model = .data:0x00549ED8; // type:object size:0x90 scope:global align:8
+obj_s_house2_t2_model = .data:0x00549F68; // type:object size:0x78 scope:global align:8
+obj_s_house2_t1_model = .data:0x00549FE0; // type:object size:0x70 scope:global align:8
+obj_s_house2_name_model = .data:0x0054A050; // type:object size:0x58 scope:global align:8
+obj_s_house2_door_model = .data:0x0054A0A8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house2_tbl = .data:0x0054A100; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_house2 = .data:0x0054A160; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house2_tbl = .data:0x0054A168; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house2_tbl = .data:0x0054A170; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house2_tbl = .data:0x0054A174; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house2_tbl = .data:0x0054A1A8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house2 = .data:0x0054A1EC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house2_out_tbl = .data:0x0054A200; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house2_out_tbl = .data:0x0054A208; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house2_out_tbl = .data:0x0054A20C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house2_out_tbl = .data:0x0054A240; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house2_out = .data:0x0054A290; // type:object size:0x14 scope:global align:4
+obj_s_house3_t3_tex_txt = .data:0x0054A2C0; // type:object size:0x800 scope:global align:32
+obj_s_house3_t1_tex_txt = .data:0x0054AAC0; // type:object size:0x800 scope:global align:32
+obj_s_house3_t2_tex_txt = .data:0x0054B2C0; // type:object size:0x800 scope:global align:32
+obj_s_house3_window_tex_txt = .data:0x0054BAC0; // type:object size:0x80 scope:global align:32
+obj_s_house3_name_tex_txt = .data:0x0054BB40; // type:object size:0x200 scope:global align:32
+obj_s_house3_v = .data:0x0054BD40; // type:object size:0x640 scope:global align:8
+obj_s_house3_windowL_model = .data:0x0054C380; // type:object size:0x48 scope:global align:8
+obj_s_house3_windowR_model = .data:0x0054C3C8; // type:object size:0x48 scope:global align:8
+obj_s_house3_light_model = .data:0x0054C410; // type:object size:0x58 scope:global align:8
+obj_s_house3_t3_model = .data:0x0054C468; // type:object size:0x98 scope:global align:8
+obj_s_house3_t2_model = .data:0x0054C500; // type:object size:0x78 scope:global align:8
+obj_s_house3_t1_model = .data:0x0054C578; // type:object size:0x68 scope:global align:8
+obj_s_house3_name_model = .data:0x0054C5E0; // type:object size:0x58 scope:global align:8
+obj_s_house3_door_model = .data:0x0054C638; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house3_tbl = .data:0x0054C690; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_house3 = .data:0x0054C6F0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house3_tbl = .data:0x0054C6F8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house3_tbl = .data:0x0054C700; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house3_tbl = .data:0x0054C704; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house3_tbl = .data:0x0054C738; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house3 = .data:0x0054C77C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house3_out_tbl = .data:0x0054C790; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house3_out_tbl = .data:0x0054C798; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house3_out_tbl = .data:0x0054C79C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house3_out_tbl = .data:0x0054C7D0; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house3_out = .data:0x0054C820; // type:object size:0x14 scope:global align:4
+obj_s_house4_t3_tex_txt = .data:0x0054C840; // type:object size:0x800 scope:global align:32
+obj_s_house4_t1_tex_txt = .data:0x0054D040; // type:object size:0x800 scope:global align:32
+obj_s_house4_t2_tex_txt = .data:0x0054D840; // type:object size:0x800 scope:global align:32
+obj_s_house4_window_tex_txt = .data:0x0054E040; // type:object size:0x80 scope:global align:32
+obj_s_house4_name_tex_txt = .data:0x0054E0C0; // type:object size:0x200 scope:global align:32
+obj_s_house4_v = .data:0x0054E2C0; // type:object size:0x590 scope:global align:8
+obj_s_house4_windowL_model = .data:0x0054E850; // type:object size:0x48 scope:global align:8
+obj_s_house4_windowR_model = .data:0x0054E898; // type:object size:0x48 scope:global align:8
+obj_s_house4_light_model = .data:0x0054E8E0; // type:object size:0x60 scope:global align:8
+obj_s_house4_t3_model = .data:0x0054E940; // type:object size:0x90 scope:global align:8
+obj_s_house4_t2_model = .data:0x0054E9D0; // type:object size:0x78 scope:global align:8
+obj_s_house4_t1_model = .data:0x0054EA48; // type:object size:0x68 scope:global align:8
+obj_s_house4_name_model = .data:0x0054EAB0; // type:object size:0x58 scope:global align:8
+obj_s_house4_door_model = .data:0x0054EB08; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house4_tbl = .data:0x0054EB60; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_house4 = .data:0x0054EBC0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house4_tbl = .data:0x0054EBC8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house4_tbl = .data:0x0054EBD0; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house4_tbl = .data:0x0054EBD4; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house4_tbl = .data:0x0054EC08; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house4 = .data:0x0054EC4C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house4_out_tbl = .data:0x0054EC60; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house4_out_tbl = .data:0x0054EC68; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house4_out_tbl = .data:0x0054EC6C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house4_out_tbl = .data:0x0054ECA0; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house4_out = .data:0x0054ECF0; // type:object size:0x14 scope:global align:4
+obj_s_house5_t3_tex_txt = .data:0x0054ED20; // type:object size:0x800 scope:global align:32
+obj_s_house5_t1_tex_txt = .data:0x0054F520; // type:object size:0x800 scope:global align:32
+obj_s_house5_window_tex_txt = .data:0x0054FD20; // type:object size:0x80 scope:global align:32
+obj_s_house5_t2_tex_txt = .data:0x0054FDA0; // type:object size:0x800 scope:global align:32
+obj_s_house5_name_tex_txt = .data:0x005505A0; // type:object size:0x200 scope:global align:32
+obj_s_house5_v = .data:0x005507A0; // type:object size:0x830 scope:global align:8
+obj_s_house5_windowL_model = .data:0x00550FD0; // type:object size:0x48 scope:global align:8
+obj_s_house5_windowR_model = .data:0x00551018; // type:object size:0x48 scope:global align:8
+obj_s_house5_light_model = .data:0x00551060; // type:object size:0x60 scope:global align:8
+obj_s_house5_t3_model = .data:0x005510C0; // type:object size:0x80 scope:global align:8
+obj_s_house5_t2_model = .data:0x00551140; // type:object size:0xA0 scope:global align:8
+obj_s_house5_t1_model = .data:0x005511E0; // type:object size:0x68 scope:global align:8
+obj_s_house5_name_model = .data:0x00551248; // type:object size:0x58 scope:global align:8
+obj_s_house5_door_model = .data:0x005512A0; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_house5_tbl = .data:0x005512F8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_house5 = .data:0x00551358; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_house5_tbl = .data:0x00551360; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house5_tbl = .data:0x00551368; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house5_tbl = .data:0x0055136C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house5_tbl = .data:0x005513A0; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_house5 = .data:0x005513E4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_house5_out_tbl = .data:0x005513F8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_house5_out_tbl = .data:0x00551400; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_house5_out_tbl = .data:0x00551404; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_house5_out_tbl = .data:0x00551438; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_house5_out = .data:0x00551488; // type:object size:0x14 scope:global align:4
+obj_w_house1_t1_tex_txt = .data:0x005514A0; // type:object size:0x800 scope:global align:32
+obj_w_house1_window_txt = .data:0x00551CA0; // type:object size:0x80 scope:global align:32
+obj_w_house1_t3_tex_txt = .data:0x00551D20; // type:object size:0x800 scope:global align:32
+obj_w_house1_t2_tex_txt = .data:0x00552520; // type:object size:0x800 scope:global align:32
+obj_w_house1_t4_tex_txt = .data:0x00552D20; // type:object size:0x200 scope:global align:32
+obj_w_house1_v = .data:0x00552F20; // type:object size:0x730 scope:global align:8
+obj_w_house1_windowL_model = .data:0x00553650; // type:object size:0x40 scope:global align:8
+obj_w_house1_windowR_model = .data:0x00553690; // type:object size:0x40 scope:global align:8
+obj_w_house1_light_model = .data:0x005536D0; // type:object size:0x60 scope:global align:8
+obj_w_house1_t4_model = .data:0x00553730; // type:object size:0x58 scope:global align:8
+obj_w_house1_t3_model = .data:0x00553788; // type:object size:0x60 scope:global align:8
+obj_w_house1_t2_model = .data:0x005537E8; // type:object size:0x88 scope:global align:8
+obj_w_house1_t1_model = .data:0x00553870; // type:object size:0x88 scope:global align:8
+obj_w_house1_door_model = .data:0x005538F8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_house1_tbl = .data:0x00553950; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_house1 = .data:0x005539B0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_house1_tbl = .data:0x005539B8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house1_tbl = .data:0x005539C0; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house1_tbl = .data:0x005539C4; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house1_tbl = .data:0x005539F8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_house1 = .data:0x00553A3C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_house1_out_tbl = .data:0x00553A50; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house1_out_tbl = .data:0x00553A58; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house1_out_tbl = .data:0x00553A5C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house1_out_tbl = .data:0x00553A90; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_house1_out = .data:0x00553AE0; // type:object size:0x14 scope:global align:4
+obj_w_house2_t3_tex_txt = .data:0x00553B00; // type:object size:0x800 scope:global align:32
+obj_w_house2_window_tex_txt = .data:0x00554300; // type:object size:0x80 scope:global align:32
+obj_w_house2_t2_tex_txt = .data:0x00554380; // type:object size:0x800 scope:global align:32
+obj_w_house2_t1_tex_txt = .data:0x00554B80; // type:object size:0x800 scope:global align:32
+obj_w_house2_name_tex_txt = .data:0x00555380; // type:object size:0x200 scope:global align:32
+obj_w_house2_v = .data:0x00555580; // type:object size:0x6D0 scope:global align:8
+obj_w_house2_window_model = .data:0x00555C50; // type:object size:0x58 scope:global align:8
+obj_w_house2_light_model = .data:0x00555CA8; // type:object size:0x58 scope:global align:8
+obj_w_house2_t3_model = .data:0x00555D00; // type:object size:0x90 scope:global align:8
+obj_w_house2_t2_model = .data:0x00555D90; // type:object size:0x78 scope:global align:8
+obj_w_house2_t1_model = .data:0x00555E08; // type:object size:0x70 scope:global align:8
+obj_w_house2_name_model = .data:0x00555E78; // type:object size:0x58 scope:global align:8
+obj_w_house2_door_model = .data:0x00555ED0; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_house2_tbl = .data:0x00555F28; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_house2 = .data:0x00555F88; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_house2_tbl = .data:0x00555F90; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house2_tbl = .data:0x00555F98; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house2_tbl = .data:0x00555F9C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house2_tbl = .data:0x00555FD0; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_house2 = .data:0x00556014; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_house2_out_tbl = .data:0x00556028; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house2_out_tbl = .data:0x00556030; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house2_out_tbl = .data:0x00556034; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house2_out_tbl = .data:0x00556068; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_house2_out = .data:0x005560B8; // type:object size:0x14 scope:global align:4
+obj_w_house3_a_pal = .data:0x005560E0; // type:object size:0x20 scope:local align:32
+obj_w_house3_t3_tex_txt = .data:0x00556100; // type:object size:0x800 scope:global align:32
+obj_w_house3_t1_tex_txt = .data:0x00556900; // type:object size:0x800 scope:global align:32
+obj_w_house3_t2_tex_txt = .data:0x00557100; // type:object size:0x800 scope:global align:32
+obj_w_house3_window_tex_txt = .data:0x00557900; // type:object size:0x80 scope:global align:32
+obj_w_house3_name_tex_txt = .data:0x00557980; // type:object size:0x200 scope:global align:32
+obj_w_house3_v = .data:0x00557B80; // type:object size:0x640 scope:global align:8
+obj_w_house3_windowL_model = .data:0x005581C0; // type:object size:0x48 scope:global align:8
+obj_w_house3_windowR_model = .data:0x00558208; // type:object size:0x48 scope:global align:8
+obj_w_house3_light_model = .data:0x00558250; // type:object size:0x58 scope:global align:8
+obj_w_house3_t3_model = .data:0x005582A8; // type:object size:0x98 scope:global align:8
+obj_w_house3_t2_model = .data:0x00558340; // type:object size:0x78 scope:global align:8
+obj_w_house3_t1_model = .data:0x005583B8; // type:object size:0x68 scope:global align:8
+obj_w_house3_name_model = .data:0x00558420; // type:object size:0x58 scope:global align:8
+obj_w_house3_door_model = .data:0x00558478; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_house3_tbl = .data:0x005584D0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_house3 = .data:0x00558530; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_house3_tbl = .data:0x00558538; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house3_tbl = .data:0x00558540; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house3_tbl = .data:0x00558544; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house3_tbl = .data:0x00558578; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_house3 = .data:0x005585BC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_house3_out_tbl = .data:0x005585D0; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house3_out_tbl = .data:0x005585D8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house3_out_tbl = .data:0x005585DC; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house3_out_tbl = .data:0x00558610; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_house3_out = .data:0x00558660; // type:object size:0x14 scope:global align:4
+obj_w_house4_t3_tex_txt = .data:0x00558680; // type:object size:0x800 scope:global align:32
+obj_w_house4_t1_tex_txt = .data:0x00558E80; // type:object size:0x800 scope:global align:32
+obj_w_house4_t2_tex_txt = .data:0x00559680; // type:object size:0x800 scope:global align:32
+obj_w_house4_window_tex_txt = .data:0x00559E80; // type:object size:0x80 scope:global align:32
+obj_w_house4_name_tex_txt = .data:0x00559F00; // type:object size:0x200 scope:global align:32
+obj_w_house4_v = .data:0x0055A100; // type:object size:0x5D0 scope:global align:8
+obj_w_house4_windowL_model = .data:0x0055A6D0; // type:object size:0x48 scope:global align:8
+obj_w_house4_windowR_model = .data:0x0055A718; // type:object size:0x48 scope:global align:8
+obj_w_house4_light_model = .data:0x0055A760; // type:object size:0x48 scope:global align:8
+obj_w_house4_t3_model = .data:0x0055A7A8; // type:object size:0x90 scope:global align:8
+obj_w_house4_t2_model = .data:0x0055A838; // type:object size:0x78 scope:global align:8
+obj_w_house4_t1_model = .data:0x0055A8B0; // type:object size:0x68 scope:global align:8
+obj_w_house4_name_model = .data:0x0055A918; // type:object size:0x58 scope:global align:8
+obj_w_house4_door_model = .data:0x0055A970; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_house4_tbl = .data:0x0055A9C8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_house4 = .data:0x0055AA28; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_house4_tbl = .data:0x0055AA30; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house4_tbl = .data:0x0055AA38; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house4_tbl = .data:0x0055AA3C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house4_tbl = .data:0x0055AA70; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_house4 = .data:0x0055AAB4; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_house4_out_tbl = .data:0x0055AAC8; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house4_out_tbl = .data:0x0055AAD0; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house4_out_tbl = .data:0x0055AAD4; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house4_out_tbl = .data:0x0055AB08; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_house4_out = .data:0x0055AB58; // type:object size:0x14 scope:global align:4
+obj_w_house5_t3_tex_txt = .data:0x0055AB80; // type:object size:0x800 scope:global align:32
+obj_w_house5_t1_tex_txt = .data:0x0055B380; // type:object size:0x800 scope:global align:32
+obj_w_house5_window_tex_txt = .data:0x0055BB80; // type:object size:0x80 scope:global align:32
+obj_w_house5_t2_tex_txt = .data:0x0055BC00; // type:object size:0x800 scope:global align:32
+obj_w_house5_name_tex_txt = .data:0x0055C400; // type:object size:0x200 scope:global align:32
+obj_w_house5_v = .data:0x0055C600; // type:object size:0x830 scope:global align:8
+obj_w_house5_windowL_model = .data:0x0055CE30; // type:object size:0x48 scope:global align:8
+obj_w_house5_windowR_model = .data:0x0055CE78; // type:object size:0x48 scope:global align:8
+obj_w_house5_light_model = .data:0x0055CEC0; // type:object size:0x60 scope:global align:8
+obj_w_house5_t3_model = .data:0x0055CF20; // type:object size:0x80 scope:global align:8
+obj_w_house5_t2_model = .data:0x0055CFA0; // type:object size:0xA0 scope:global align:8
+obj_w_house5_t1_model = .data:0x0055D040; // type:object size:0x68 scope:global align:8
+obj_w_house5_name_model = .data:0x0055D0A8; // type:object size:0x58 scope:global align:8
+obj_w_house5_door_model = .data:0x0055D100; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_house5_tbl = .data:0x0055D158; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_house5 = .data:0x0055D1B8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_house5_tbl = .data:0x0055D1C0; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house5_tbl = .data:0x0055D1C8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house5_tbl = .data:0x0055D1CC; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house5_tbl = .data:0x0055D200; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_house5 = .data:0x0055D244; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_house5_out_tbl = .data:0x0055D258; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_house5_out_tbl = .data:0x0055D260; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_house5_out_tbl = .data:0x0055D264; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_house5_out_tbl = .data:0x0055D298; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_house5_out = .data:0x0055D2E8; // type:object size:0x14 scope:global align:4
+obj_myhome_mark_pal = .data:0x0055D300; // type:object size:0x20 scope:global align:32
+obj_s_myhome1_t3_tex_txt = .data:0x0055D320; // type:object size:0x800 scope:global align:32
+obj_myhome_mark_tex_txt = .data:0x0055DB20; // type:object size:0x200 scope:global align:32
+obj_s_myhome1_window_txt = .data:0x0055DD20; // type:object size:0x80 scope:global align:32
+obj_s_myhome1_t2_tex_txt = .data:0x0055DDA0; // type:object size:0x800 scope:global align:32
+obj_s_myhome1_t1_tex_txt = .data:0x0055E5A0; // type:object size:0x800 scope:global align:32
+obj_s_myhome1_v = .data:0x0055EDA0; // type:object size:0x780 scope:global align:8
+obj_s_myhome1_window_model = .data:0x0055F520; // type:object size:0x50 scope:global align:8
+obj_s_myhome1_light_model = .data:0x0055F570; // type:object size:0x58 scope:global align:8
+obj_s_myhome1_t3_model = .data:0x0055F5C8; // type:object size:0x68 scope:global align:8
+obj_s_myhome1_t2_model = .data:0x0055F630; // type:object size:0x48 scope:global align:8
+obj_s_myhome1_t1_model = .data:0x0055F678; // type:object size:0x60 scope:global align:8
+obj_s_myhome1_fuda_model = .data:0x0055F6D8; // type:object size:0x58 scope:global align:8
+obj_s_myhome1_mark_model = .data:0x0055F730; // type:object size:0x70 scope:global align:8
+obj_s_myhome1_door_model = .data:0x0055F7A0; // type:object size:0x58 scope:global align:8
+obj_s_myhome1_kazamiB_model = .data:0x0055F7F8; // type:object size:0x68 scope:global align:8
+obj_s_myhome1_kazamiA_model = .data:0x0055F860; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_s_myhome1_tbl = .data:0x0055F8C0; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_s_myhome1 = .data:0x0055F95C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_myhome1_tbl = .data:0x0055F964; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome1_tbl = .data:0x0055F974; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome1_tbl = .data:0x0055F978; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome1_tbl = .data:0x0055F9CC; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_s_myhome1 = .data:0x0055FA04; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_myhome1_out_tbl = .data:0x0055FA18; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome1_out_tbl = .data:0x0055FA28; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome1_out_tbl = .data:0x0055FA2C; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome1_out_tbl = .data:0x0055FA80; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_s_myhome1_out = .data:0x0055FAB8; // type:object size:0x14 scope:global align:4
+obj_s_myhome2_t3_tex_txt = .data:0x0055FAE0; // type:object size:0x800 scope:global align:32
+obj_s_myhome2_window_txt = .data:0x005602E0; // type:object size:0x80 scope:global align:32
+obj_s_myhome2_t2_tex_txt = .data:0x00560360; // type:object size:0x800 scope:global align:32
+obj_s_myhome2_t1_tex_txt = .data:0x00560B60; // type:object size:0x800 scope:global align:32
+obj_s_myhome2_v = .data:0x00561360; // type:object size:0x880 scope:global align:8
+obj_s_myhome2_window_model = .data:0x00561BE0; // type:object size:0x50 scope:global align:8
+obj_s_myhome2_light_model = .data:0x00561C30; // type:object size:0x58 scope:global align:8
+obj_s_myhome2_t3_model = .data:0x00561C88; // type:object size:0x68 scope:global align:8
+obj_s_myhome2_t2_model = .data:0x00561CF0; // type:object size:0x48 scope:global align:8
+obj_s_myhome2_t1_model = .data:0x00561D38; // type:object size:0x70 scope:global align:8
+obj_s_myhome2_fuda_model = .data:0x00561DA8; // type:object size:0x58 scope:global align:8
+obj_s_myhome2_mark_model = .data:0x00561E00; // type:object size:0x70 scope:global align:8
+obj_s_myhome2_door_model = .data:0x00561E70; // type:object size:0x58 scope:global align:8
+obj_s_myhome2_kazamiB_model = .data:0x00561EC8; // type:object size:0x68 scope:global align:8
+obj_s_myhome2_kazamiA_model = .data:0x00561F30; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_s_myhome2_tbl = .data:0x00561F90; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_s_myhome2 = .data:0x0056202C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_myhome2_tbl = .data:0x00562034; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome2_tbl = .data:0x00562044; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome2_tbl = .data:0x00562048; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome2_tbl = .data:0x0056209C; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_myhome2 = .data:0x005620E0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_myhome2_out_tbl = .data:0x005620F4; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome2_out_tbl = .data:0x00562104; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome2_out_tbl = .data:0x00562108; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome2_out_tbl = .data:0x0056215C; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_s_myhome2_out = .data:0x00562194; // type:object size:0x14 scope:global align:4
+obj_s_myhome3_t3_tex_txt = .data:0x005621C0; // type:object size:0x800 scope:global align:32
+obj_s_myhome3_t2_tex_txt = .data:0x005629C0; // type:object size:0x800 scope:global align:32
+obj_s_myhome3_window_txt = .data:0x005631C0; // type:object size:0x80 scope:global align:32
+obj_s_myhome3_t1_tex_txt = .data:0x00563240; // type:object size:0x800 scope:global align:32
+obj_s_myhome3_v = .data:0x00563A40; // type:object size:0x980 scope:global align:8
+obj_s_myhome3_window_model = .data:0x005643C0; // type:object size:0x50 scope:global align:8
+obj_s_myhome3_light_model = .data:0x00564410; // type:object size:0x60 scope:global align:8
+obj_s_myhome3_t3_model = .data:0x00564470; // type:object size:0x68 scope:global align:8
+obj_s_myhome3_t2_model = .data:0x005644D8; // type:object size:0x68 scope:global align:8
+obj_s_myhome3_t1_model = .data:0x00564540; // type:object size:0x68 scope:global align:8
+obj_s_myhome3_fuda_model = .data:0x005645A8; // type:object size:0x58 scope:global align:8
+obj_s_myhome3_mark_model = .data:0x00564600; // type:object size:0x70 scope:global align:8
+obj_s_myhome3_door_model = .data:0x00564670; // type:object size:0x58 scope:global align:8
+obj_s_myhome3_kazamiB_model = .data:0x005646C8; // type:object size:0x68 scope:global align:8
+obj_s_myhome3_kazamiA_model = .data:0x00564730; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_s_myhome3_tbl = .data:0x00564790; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_s_myhome3 = .data:0x0056482C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_myhome3_tbl = .data:0x00564834; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome3_tbl = .data:0x00564844; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome3_tbl = .data:0x00564848; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome3_tbl = .data:0x0056489C; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_myhome3 = .data:0x005648E0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_myhome3_out_tbl = .data:0x005648F4; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome3_out_tbl = .data:0x00564904; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome3_out_tbl = .data:0x00564908; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome3_out_tbl = .data:0x0056495C; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_myhome3_out = .data:0x005649AC; // type:object size:0x14 scope:global align:4
+obj_w_myhome1_t3_tex_txt = .data:0x005649C0; // type:object size:0x800 scope:global align:32
+obj_w_myhome1_window_txt = .data:0x005651C0; // type:object size:0x80 scope:global align:32
+obj_w_myhome1_t2_tex_txt = .data:0x00565240; // type:object size:0x800 scope:global align:32
+obj_w_myhome1_t1_tex_txt = .data:0x00565A40; // type:object size:0x800 scope:global align:32
+obj_w_myhome1_v = .data:0x00566240; // type:object size:0x780 scope:global align:8
+obj_w_myhome1_window_model = .data:0x005669C0; // type:object size:0x50 scope:global align:8
+obj_w_myhome1_light_model = .data:0x00566A10; // type:object size:0x58 scope:global align:8
+obj_w_myhome1_t3_model = .data:0x00566A68; // type:object size:0x68 scope:global align:8
+obj_w_myhome1_t2_model = .data:0x00566AD0; // type:object size:0x48 scope:global align:8
+obj_w_myhome1_t1_model = .data:0x00566B18; // type:object size:0x60 scope:global align:8
+obj_w_myhome1_fuda_model = .data:0x00566B78; // type:object size:0x58 scope:global align:8
+obj_w_myhome1_mark_model = .data:0x00566BD0; // type:object size:0x70 scope:global align:8
+obj_w_myhome1_door_model = .data:0x00566C40; // type:object size:0x58 scope:global align:8
+obj_w_myhome1_kazamiB_model = .data:0x00566C98; // type:object size:0x68 scope:global align:8
+obj_w_myhome1_kazamiA_model = .data:0x00566D00; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_w_myhome1_tbl = .data:0x00566D60; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_w_myhome1 = .data:0x00566DFC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_myhome1_tbl = .data:0x00566E04; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome1_tbl = .data:0x00566E14; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome1_tbl = .data:0x00566E18; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome1_tbl = .data:0x00566E6C; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_myhome1 = .data:0x00566EB0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_myhome1_out_tbl = .data:0x00566EC4; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome1_out_tbl = .data:0x00566ED4; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome1_out_tbl = .data:0x00566ED8; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome1_out_tbl = .data:0x00566F2C; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_w_myhome1_out = .data:0x00566F64; // type:object size:0x14 scope:global align:4
+obj_w_myhome2_t3_tex_txt = .data:0x00566F80; // type:object size:0x800 scope:global align:32
+obj_w_myhome2_window_txt = .data:0x00567780; // type:object size:0x80 scope:global align:32
+obj_w_myhome2_t2_tex_txt = .data:0x00567800; // type:object size:0x800 scope:global align:32
+obj_w_myhome2_t1_tex_txt = .data:0x00568000; // type:object size:0x800 scope:global align:32
+obj_w_myhome2_v = .data:0x00568800; // type:object size:0x840 scope:global align:8
+obj_w_myhome2_window_model = .data:0x00569040; // type:object size:0x50 scope:global align:8
+obj_w_myhome2_light_model = .data:0x00569090; // type:object size:0x58 scope:global align:8
+obj_w_myhome2_t3_model = .data:0x005690E8; // type:object size:0x68 scope:global align:8
+obj_w_myhome2_t2_model = .data:0x00569150; // type:object size:0x48 scope:global align:8
+obj_w_myhome2_t1_model = .data:0x00569198; // type:object size:0x70 scope:global align:8
+obj_w_myhome2_fuda_model = .data:0x00569208; // type:object size:0x58 scope:global align:8
+obj_w_myhome2_mark_model = .data:0x00569260; // type:object size:0x70 scope:global align:8
+obj_w_myhome2_door_model = .data:0x005692D0; // type:object size:0x58 scope:global align:8
+obj_w_myhome2_kazamiB_model = .data:0x00569328; // type:object size:0x68 scope:global align:8
+obj_w_myhome2_kazamiA_model = .data:0x00569390; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_w_myhome2_tbl = .data:0x005693F0; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_w_myhome2 = .data:0x0056948C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_myhome2_tbl = .data:0x00569494; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome2_tbl = .data:0x005694A4; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome2_tbl = .data:0x005694A8; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome2_tbl = .data:0x005694FC; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_w_myhome2 = .data:0x00569534; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_myhome2_out_tbl = .data:0x00569548; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome2_out_tbl = .data:0x00569558; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome2_out_tbl = .data:0x0056955C; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome2_out_tbl = .data:0x005695B0; // type:object size:0x36 scope:global align:4
+cKF_ba_r_obj_w_myhome2_out = .data:0x005695E8; // type:object size:0x14 scope:global align:4
+obj_w_myhome3_t3_tex_txt = .data:0x00569600; // type:object size:0x800 scope:global align:32
+obj_w_myhome3_t2_tex_txt = .data:0x00569E00; // type:object size:0x800 scope:global align:32
+obj_w_myhome3_window_txt = .data:0x0056A600; // type:object size:0x80 scope:global align:32
+obj_w_myhome3_t1_tex_txt = .data:0x0056A680; // type:object size:0x800 scope:global align:32
+obj_w_myhome3_v = .data:0x0056AE80; // type:object size:0x980 scope:global align:8
+obj_w_myhome3_window_model = .data:0x0056B800; // type:object size:0x50 scope:global align:8
+obj_w_myhome3_light_model = .data:0x0056B850; // type:object size:0x60 scope:global align:8
+obj_w_myhome3_t3_model = .data:0x0056B8B0; // type:object size:0x68 scope:global align:8
+obj_w_myhome3_t2_model = .data:0x0056B918; // type:object size:0x60 scope:global align:8
+obj_w_myhome3_t1_model = .data:0x0056B978; // type:object size:0x68 scope:global align:8
+obj_w_myhome3_fuda_model = .data:0x0056B9E0; // type:object size:0x58 scope:global align:8
+obj_w_myhome3_mark_model = .data:0x0056BA38; // type:object size:0x70 scope:global align:8
+obj_w_myhome3_door_model = .data:0x0056BAA8; // type:object size:0x58 scope:global align:8
+obj_w_myhome3_kazamiB_model = .data:0x0056BB00; // type:object size:0x68 scope:global align:8
+obj_w_myhome3_kazamiA_model = .data:0x0056BB68; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_w_myhome3_tbl = .data:0x0056BBC8; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_w_myhome3 = .data:0x0056BC64; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_myhome3_tbl = .data:0x0056BC6C; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome3_tbl = .data:0x0056BC7C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome3_tbl = .data:0x0056BC80; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome3_tbl = .data:0x0056BCD4; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_myhome3 = .data:0x0056BD18; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_myhome3_out_tbl = .data:0x0056BD2C; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome3_out_tbl = .data:0x0056BD3C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome3_out_tbl = .data:0x0056BD40; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome3_out_tbl = .data:0x0056BD94; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_myhome3_out = .data:0x0056BDE4; // type:object size:0x14 scope:global align:4
+obj_s_myhome4_t3_tex_txt = .data:0x0056BE00; // type:object size:0x800 scope:global align:32
+obj_s_myhome4_t2_tex_txt = .data:0x0056C600; // type:object size:0x800 scope:global align:32
+obj_s_myhome4_t1_tex_txt = .data:0x0056CE00; // type:object size:0x800 scope:global align:32
+obj_s_myhome4_window_txt = .data:0x0056D600; // type:object size:0x80 scope:global align:32
+obj_s_myhome4_v = .data:0x0056D680; // type:object size:0xC60 scope:global align:8
+obj_s_myhome4_window_model = .data:0x0056E2E0; // type:object size:0x50 scope:global align:8
+obj_s_myhome4_t3_model = .data:0x0056E330; // type:object size:0x68 scope:global align:8
+obj_s_myhome4_t2_model = .data:0x0056E398; // type:object size:0x48 scope:global align:8
+obj_s_myhome4_t1_model = .data:0x0056E3E0; // type:object size:0xC0 scope:global align:8
+obj_s_myhome4_light_model = .data:0x0056E4A0; // type:object size:0x60 scope:global align:8
+obj_s_myhome4_fuda_model = .data:0x0056E500; // type:object size:0x60 scope:global align:8
+obj_s_myhome4_mark_model = .data:0x0056E560; // type:object size:0x70 scope:global align:8
+obj_s_myhome4_door_model = .data:0x0056E5D0; // type:object size:0x58 scope:global align:8
+obj_s_myhome4_kazamiB_model = .data:0x0056E628; // type:object size:0x68 scope:global align:8
+obj_s_myhome4_kazamiA_model = .data:0x0056E690; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_s_myhome4_tbl = .data:0x0056E6F0; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_s_myhome4 = .data:0x0056E78C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_myhome4_tbl = .data:0x0056E794; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome4_tbl = .data:0x0056E7A4; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome4_tbl = .data:0x0056E7A8; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome4_tbl = .data:0x0056E7FC; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_myhome4 = .data:0x0056E840; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_myhome4_out_tbl = .data:0x0056E854; // type:object size:0xD scope:global align:4
+cKF_kn_obj_s_myhome4_out_tbl = .data:0x0056E864; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_myhome4_out_tbl = .data:0x0056E868; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_s_myhome4_out_tbl = .data:0x0056E8BC; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_myhome4_out = .data:0x0056E90C; // type:object size:0x14 scope:global align:4
+obj_w_myhome4_t3_tex_txt = .data:0x0056E920; // type:object size:0x800 scope:global align:32
+obj_w_myhome4_t2_tex_txt = .data:0x0056F120; // type:object size:0x800 scope:global align:32
+obj_w_myhome4_t1_tex_txt = .data:0x0056F920; // type:object size:0x800 scope:global align:32
+obj_w_myhome4_window_txt = .data:0x00570120; // type:object size:0x80 scope:global align:32
+obj_w_myhome4_v = .data:0x005701A0; // type:object size:0xC60 scope:global align:8
+obj_w_myhome4_window_model = .data:0x00570E00; // type:object size:0x50 scope:global align:8
+obj_w_myhome4_t3_model = .data:0x00570E50; // type:object size:0x68 scope:global align:8
+obj_w_myhome4_t2_model = .data:0x00570EB8; // type:object size:0x48 scope:global align:8
+obj_w_myhome4_t1_model = .data:0x00570F00; // type:object size:0xC0 scope:global align:8
+obj_w_myhome4_light_model = .data:0x00570FC0; // type:object size:0x60 scope:global align:8
+obj_w_myhome4_fuda_model = .data:0x00571020; // type:object size:0x60 scope:global align:8
+obj_w_myhome4_mark_model = .data:0x00571080; // type:object size:0x70 scope:global align:8
+obj_w_myhome4_door_model = .data:0x005710F0; // type:object size:0x58 scope:global align:8
+obj_w_myhome4_kazamiB_model = .data:0x00571148; // type:object size:0x68 scope:global align:8
+obj_w_myhome4_kazamiA_model = .data:0x005711B0; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_w_myhome4_tbl = .data:0x00571210; // type:object size:0x9C scope:global align:4
+cKF_bs_r_obj_w_myhome4 = .data:0x005712AC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_myhome4_tbl = .data:0x005712B4; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome4_tbl = .data:0x005712C4; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome4_tbl = .data:0x005712C8; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome4_tbl = .data:0x0057131C; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_myhome4 = .data:0x00571360; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_myhome4_out_tbl = .data:0x00571374; // type:object size:0xD scope:global align:4
+cKF_kn_obj_w_myhome4_out_tbl = .data:0x00571384; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_myhome4_out_tbl = .data:0x00571388; // type:object size:0x52 scope:global align:4
+cKF_ds_obj_w_myhome4_out_tbl = .data:0x005713DC; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_myhome4_out = .data:0x0057142C; // type:object size:0x14 scope:global align:4
+obj_s_kouban_t3_tex_txt = .data:0x00571440; // type:object size:0x800 scope:global align:32
+obj_s_kouban_t1_tex_txt = .data:0x00571C40; // type:object size:0x800 scope:global align:32
+obj_s_kouban_window_tex_txt = .data:0x00572440; // type:object size:0x80 scope:global align:32
+obj_s_kouban_t2_tex_txt = .data:0x005724C0; // type:object size:0x800 scope:global align:32
+obj_s_kouban_v = .data:0x00572CC0; // type:object size:0x470 scope:global align:8
+obj_s_kouban_window_model = .data:0x00573130; // type:object size:0x48 scope:global align:8
+obj_s_kouban_t3_model = .data:0x00573178; // type:object size:0x40 scope:global align:8
+obj_s_kouban_t2_model = .data:0x005731B8; // type:object size:0x50 scope:global align:8
+obj_s_kouban_t1_model = .data:0x00573208; // type:object size:0x50 scope:global align:8
+obj_s_kouban_neon_model = .data:0x00573258; // type:object size:0x58 scope:global align:8
+obj_s_kouban_light_model = .data:0x005732B0; // type:object size:0x38 scope:global align:8
+obj_s_kouban_model = .data:0x005732E8; // type:object size:0x30 scope:global align:8
+obj_w_kouban_t3_tex_txt = .data:0x00573320; // type:object size:0x800 scope:global align:32
+obj_w_kouban_t1_tex_txt = .data:0x00573B20; // type:object size:0x800 scope:global align:32
+obj_w_kouban_window_tex_txt = .data:0x00574320; // type:object size:0x80 scope:global align:32
+obj_w_kouban_t2_tex_txt = .data:0x005743A0; // type:object size:0x800 scope:global align:32
+obj_w_kouban_v = .data:0x00574BA0; // type:object size:0x470 scope:global align:8
+obj_w_kouban_window_model = .data:0x00575010; // type:object size:0x48 scope:global align:8
+obj_w_kouban_t3_model = .data:0x00575058; // type:object size:0x40 scope:global align:8
+obj_w_kouban_t2_model = .data:0x00575098; // type:object size:0x50 scope:global align:8
+obj_w_kouban_t1_model = .data:0x005750E8; // type:object size:0x50 scope:global align:8
+obj_w_kouban_neon_model = .data:0x00575138; // type:object size:0x58 scope:global align:8
+obj_w_kouban_light_model = .data:0x00575190; // type:object size:0x38 scope:global align:8
+obj_w_kouban_model = .data:0x005751C8; // type:object size:0x30 scope:global align:8
+obj_s_yubinkyoku_t3_txt = .data:0x00575200; // type:object size:0x800 scope:global align:32
+obj_s_yubinkyoku_t1_txt = .data:0x00575A00; // type:object size:0x800 scope:global align:32
+obj_s_yubinkyoku_window_tex_txt = .data:0x00576200; // type:object size:0x80 scope:global align:32
+obj_s_yubinkyoku_t2_txt = .data:0x00576280; // type:object size:0x800 scope:global align:32
+obj_s_yubinkyoku_v = .data:0x00576A80; // type:object size:0x310 scope:global align:8
+obj_s_yubinkyoku_window_model = .data:0x00576D90; // type:object size:0x50 scope:global align:8
+obj_s_yubinkyoku_light_model = .data:0x00576DE0; // type:object size:0x40 scope:global align:8
+obj_s_yubinkyoku_t3_1_model = .data:0x00576E20; // type:object size:0x60 scope:global align:8
+obj_s_yubinkyoku_t2_model = .data:0x00576E80; // type:object size:0x68 scope:global align:8
+obj_s_yubinkyoku_t1_model = .data:0x00576EE8; // type:object size:0x68 scope:global align:8
+obj_s_yubinkyoku_neon_model = .data:0x00576F50; // type:object size:0x68 scope:global align:8
+obj_s_yubinkyoku_door_model = .data:0x00576FB8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_yubinkyoku_tbl = .data:0x00577010; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_yubinkyoku = .data:0x00577070; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_yubinkyoku_tbl = .data:0x00577078; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_yubinkyoku_tbl = .data:0x00577080; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_yubinkyoku_tbl = .data:0x00577084; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_yubinkyoku_tbl = .data:0x005770B8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_yubinkyoku = .data:0x005770FC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_yubinkyoku_out_tbl = .data:0x00577110; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_yubinkyoku_out_tbl = .data:0x00577118; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_yubinkyoku_out_tbl = .data:0x0057711C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_s_yubinkyoku_out_tbl = .data:0x00577150; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_yubinkyoku_out = .data:0x005771A0; // type:object size:0x14 scope:global align:4
+obj_w_yubinkyoku_t3_txt = .data:0x005771C0; // type:object size:0x800 scope:global align:32
+obj_w_yubinkyoku_t1_txt = .data:0x005779C0; // type:object size:0x800 scope:global align:32
+obj_w_yubinkyoku_window_tex_txt = .data:0x005781C0; // type:object size:0x80 scope:global align:32
+obj_w_yubinkyoku_t2_txt = .data:0x00578240; // type:object size:0x800 scope:global align:32
+obj_w_yubinkyoku_v = .data:0x00578A40; // type:object size:0x340 scope:global align:8
+obj_w_yubinkyoku_light_model = .data:0x00578D80; // type:object size:0x40 scope:global align:8
+obj_w_yubinkyoku_window_model = .data:0x00578DC0; // type:object size:0x50 scope:global align:8
+obj_w_yubinkyoku_t3_model = .data:0x00578E10; // type:object size:0x60 scope:global align:8
+obj_w_yubinkyoku_t2_model = .data:0x00578E70; // type:object size:0x68 scope:global align:8
+obj_w_yubinkyoku_t1_model = .data:0x00578ED8; // type:object size:0x68 scope:global align:8
+obj_w_yubinkyoku_neon_model = .data:0x00578F40; // type:object size:0x68 scope:global align:8
+obj_w_yubinkyoku_door_model = .data:0x00578FA8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_yubinkyoku_tbl = .data:0x00579000; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_yubinkyoku = .data:0x00579060; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_yubinkyoku_tbl = .data:0x00579068; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_yubinkyoku_tbl = .data:0x00579070; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_yubinkyoku_tbl = .data:0x00579074; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_yubinkyoku_tbl = .data:0x005790A8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_yubinkyoku = .data:0x005790EC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_yubinkyoku_out_tbl = .data:0x00579100; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_yubinkyoku_out_tbl = .data:0x00579108; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_yubinkyoku_out_tbl = .data:0x0057910C; // type:object size:0x34 scope:global align:4
+cKF_ds_obj_w_yubinkyoku_out_tbl = .data:0x00579140; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_yubinkyoku_out = .data:0x00579190; // type:object size:0x14 scope:global align:4
+obj_e_radio_t1_tex = .data:0x005791C0; // type:object size:0x800 scope:global align:32
+obj_e_radio_t2_tex = .data:0x005799C0; // type:object size:0x800 scope:global align:32
+obj_e_radio_v = .data:0x0057A1C0; // type:object size:0x280 scope:global align:8
+obj_e_radio_t1_model = .data:0x0057A440; // type:object size:0x40 scope:global align:8
+obj_e_radio_t2T_model = .data:0x0057A480; // type:object size:0x58 scope:global align:8
+radio_DL_model = .data:0x0057A4D8; // type:object size:0x40 scope:global align:8
+obj_s_buildsite_tex = .data:0x0057A520; // type:object size:0x400 scope:global align:32
+obj_s_buildsite_v = .data:0x0057A920; // type:object size:0xC0 scope:global align:8
+reserve_DL_model = .data:0x0057A9E0; // type:object size:0x48 scope:global align:8
+obj_s_attention_pal = .data:0x0057AA40; // type:object size:0x20 scope:global align:32
+obj_s_attention_tex = .data:0x0057AA60; // type:object size:0x400 scope:global align:32
+obj_s_attention_v = .data:0x0057AE60; // type:object size:0x80 scope:global align:8
+obj_s_attentionT_model = .data:0x0057AEE0; // type:object size:0x60 scope:global align:8
+obj_w_buildsite_tex = .data:0x0057AF40; // type:object size:0x400 scope:global align:32
+obj_w_buildsite_v = .data:0x0057B340; // type:object size:0xC0 scope:global align:8
+reserve_winter_DL_model = .data:0x0057B400; // type:object size:0x48 scope:global align:8
+obj_w_attention_pal = .data:0x0057B460; // type:object size:0x20 scope:global align:32
+obj_w_attention_tex = .data:0x0057B480; // type:object size:0x400 scope:global align:32
+obj_w_attention_v = .data:0x0057B880; // type:object size:0x80 scope:global align:8
+obj_w_attentionT_model = .data:0x0057B900; // type:object size:0x60 scope:global align:8
+obj_s_car_pal = .data:0x0057B960; // type:object size:0x20 scope:global align:32
+obj_s_car_t1_tex = .data:0x0057B980; // type:object size:0x800 scope:global align:32
+obj_s_car_t2_tex = .data:0x0057C180; // type:object size:0x800 scope:global align:32
+obj_s_car_t3_tex = .data:0x0057C980; // type:object size:0x800 scope:global align:32
+obj_s_car_v = .data:0x0057D180; // type:object size:0x6E0 scope:global align:8
+obj_s_car_t1T_model = .data:0x0057D860; // type:object size:0x90 scope:global align:8
+obj_s_car_t2T_model = .data:0x0057D8F0; // type:object size:0x60 scope:global align:8
+obj_s_car_t3T_model = .data:0x0057D950; // type:object size:0x68 scope:global align:8
+obj_s_car_innerT_model = .data:0x0057D9B8; // type:object size:0x78 scope:global align:8
+s_car_DL_model = .data:0x0057DA30; // type:object size:0x28 scope:global align:8
+obj_s_shop1_front_txt = .data:0x0057DA60; // type:object size:0x800 scope:global align:32
+obj_s_shop1_roof_txt = .data:0x0057E260; // type:object size:0x800 scope:global align:32
+obj_s_shop1_side_txt = .data:0x0057EA60; // type:object size:0x800 scope:global align:32
+obj_s_shop1_window_txt = .data:0x0057F260; // type:object size:0x80 scope:global align:32
+obj_s_shop1_v = .data:0x0057F2E0; // type:object size:0x320 scope:global align:8
+obj_s_shop1_window_model = .data:0x0057F600; // type:object size:0x58 scope:global align:8
+obj_s_shop1_light_model = .data:0x0057F658; // type:object size:0x58 scope:global align:8
+obj_s_shop1_side_model = .data:0x0057F6B0; // type:object size:0x48 scope:global align:8
+obj_s_shop1_roof_model = .data:0x0057F6F8; // type:object size:0x48 scope:global align:8
+obj_s_shop1_front_model = .data:0x0057F740; // type:object size:0x48 scope:global align:8
+obj_s_shop1_door_model = .data:0x0057F788; // type:object size:0x38 scope:global align:8
+cKF_je_r_obj_s_shop1_tbl = .data:0x0057F7C0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_shop1 = .data:0x0057F814; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_shop1_tbl = .data:0x0057F81C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_shop1_tbl = .data:0x0057F824; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_shop1_tbl = .data:0x0057F828; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_shop1_tbl = .data:0x0057F858; // type:object size:0x1E scope:global align:4
+cKF_ba_r_obj_s_shop1 = .data:0x0057F878; // type:object size:0x14 scope:global align:4
+obj_w_shop1_front_txt = .data:0x0057F8A0; // type:object size:0x800 scope:global align:32
+obj_w_shop1_roof_txt = .data:0x005800A0; // type:object size:0x800 scope:global align:32
+obj_w_shop1_side_txt = .data:0x005808A0; // type:object size:0x800 scope:global align:32
+obj_w_shop1_window_txt = .data:0x005810A0; // type:object size:0x80 scope:global align:32
+obj_w_shop1_v = .data:0x00581120; // type:object size:0x320 scope:global align:8
+obj_w_shop1_window_model = .data:0x00581440; // type:object size:0x58 scope:global align:8
+obj_w_shop1_light_model = .data:0x00581498; // type:object size:0x58 scope:global align:8
+obj_w_shop1_side_model = .data:0x005814F0; // type:object size:0x48 scope:global align:8
+obj_w_shop1_roof_model = .data:0x00581538; // type:object size:0x48 scope:global align:8
+obj_w_shop1_front_model = .data:0x00581580; // type:object size:0x48 scope:global align:8
+obj_w_shop1_door_model = .data:0x005815C8; // type:object size:0x38 scope:global align:8
+cKF_je_r_obj_w_shop1_tbl = .data:0x00581600; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_shop1 = .data:0x00581654; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_shop1_tbl = .data:0x0058165C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_w_shop1_tbl = .data:0x00581664; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_shop1_tbl = .data:0x00581668; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_w_shop1_tbl = .data:0x00581698; // type:object size:0x1E scope:global align:4
+cKF_ba_r_obj_w_shop1 = .data:0x005816B8; // type:object size:0x14 scope:global align:4
+obj_s_shop2_t3_tex_txt = .data:0x005816E0; // type:object size:0x800 scope:global align:32
+obj_s_shop2_window_tex_txt = .data:0x00581EE0; // type:object size:0x80 scope:global align:32
+obj_s_shop2_t1_tex_txt = .data:0x00581F60; // type:object size:0x800 scope:global align:32
+obj_s_shop2_t2_tex_txt = .data:0x00582760; // type:object size:0x800 scope:global align:32
+obj_s_shop2_v = .data:0x00582F60; // type:object size:0x600 scope:global align:8
+obj_s_shop2_window_model = .data:0x00583560; // type:object size:0x50 scope:global align:8
+obj_s_shop2_t2_model = .data:0x005835B0; // type:object size:0x68 scope:global align:8
+obj_s_shop2_t1_model = .data:0x00583618; // type:object size:0x68 scope:global align:8
+obj_s_shop2_light_model = .data:0x00583680; // type:object size:0x88 scope:global align:8
+obj_s_shop2_door1_model = .data:0x00583708; // type:object size:0x50 scope:global align:8
+obj_s_shop2_door2_model = .data:0x00583758; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_s_shop2_tbl = .data:0x005837A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_shop2 = .data:0x005837FC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_shop2_tbl = .data:0x00583804; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_shop2_tbl = .data:0x0058380C; // type:object size:0x18 scope:global align:4
+cKF_c_obj_s_shop2_tbl = .data:0x00583824; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_s_shop2_tbl = .data:0x0058383C; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_s_shop2 = .data:0x005838CC; // type:object size:0x14 scope:global align:4
+obj_w_shop2_t3_tex_txt = .data:0x005838E0; // type:object size:0x800 scope:global align:32
+obj_w_shop2_window_tex_txt = .data:0x005840E0; // type:object size:0x80 scope:global align:32
+obj_w_shop2_t1_tex_txt = .data:0x00584160; // type:object size:0x800 scope:global align:32
+obj_w_shop2_t2_tex_txt = .data:0x00584960; // type:object size:0x800 scope:global align:32
+obj_w_shop2_v = .data:0x00585160; // type:object size:0x600 scope:global align:8
+obj_w_shop2_window_model = .data:0x00585760; // type:object size:0x50 scope:global align:8
+obj_w_shop2_t2_model = .data:0x005857B0; // type:object size:0x68 scope:global align:8
+obj_w_shop2_t1_model = .data:0x00585818; // type:object size:0x68 scope:global align:8
+obj_w_shop2_light_model = .data:0x00585880; // type:object size:0x88 scope:global align:8
+obj_w_shop2_door1_model = .data:0x00585908; // type:object size:0x50 scope:global align:8
+obj_w_shop2_door2_model = .data:0x00585958; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_w_shop2_tbl = .data:0x005859A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_shop2 = .data:0x005859FC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_shop2_tbl = .data:0x00585A04; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_w_shop2_tbl = .data:0x00585A0C; // type:object size:0x18 scope:global align:4
+cKF_c_obj_w_shop2_tbl = .data:0x00585A24; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_w_shop2_tbl = .data:0x00585A3C; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_w_shop2 = .data:0x00585ACC; // type:object size:0x14 scope:global align:4
+obj_s_shop3_t1_tex_txt = .data:0x00585AE0; // type:object size:0x800 scope:global align:32
+obj_s_shop3_t2_tex_txt = .data:0x005862E0; // type:object size:0x800 scope:global align:32
+obj_s_shop3_window_tex_txt = .data:0x00586AE0; // type:object size:0x80 scope:global align:32
+obj_s_shop3_t3_tex_txt = .data:0x00586B60; // type:object size:0x800 scope:global align:32
+obj_s_shop3_v = .data:0x00587360; // type:object size:0x740 scope:global align:8
+obj_s_shop3_window_model = .data:0x00587AA0; // type:object size:0x50 scope:global align:8
+obj_s_shop3_t2_model = .data:0x00587AF0; // type:object size:0x78 scope:global align:8
+obj_s_shop3_t1_model = .data:0x00587B68; // type:object size:0x68 scope:global align:8
+obj_s_shop3_light_model = .data:0x00587BD0; // type:object size:0x90 scope:global align:8
+obj_s_shop3_door2_model = .data:0x00587C60; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_s_shop3_tbl = .data:0x00587CB0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_s_shop3 = .data:0x00587D10; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_shop3_tbl = .data:0x00587D18; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_s_shop3_tbl = .data:0x00587D20; // type:object size:0x18 scope:global align:4
+cKF_c_obj_s_shop3_tbl = .data:0x00587D38; // type:object size:0x1E scope:global align:4
+cKF_ds_obj_s_shop3_tbl = .data:0x00587D58; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_s_shop3 = .data:0x00587DE8; // type:object size:0x14 scope:global align:4
+obj_w_shop3_t1_tex_txt = .data:0x00587E00; // type:object size:0x800 scope:global align:32
+obj_w_shop3_t2_tex_txt = .data:0x00588600; // type:object size:0x800 scope:global align:32
+obj_w_shop3_window_tex_txt = .data:0x00588E00; // type:object size:0x80 scope:global align:32
+obj_w_shop3_t3_tex_txt = .data:0x00588E80; // type:object size:0x800 scope:global align:32
+obj_w_shop3_v = .data:0x00589680; // type:object size:0x740 scope:global align:8
+obj_w_shop3_window_model = .data:0x00589DC0; // type:object size:0x50 scope:global align:8
+obj_w_shop3_t2_model = .data:0x00589E10; // type:object size:0x78 scope:global align:8
+obj_w_shop3_t1_model = .data:0x00589E88; // type:object size:0x68 scope:global align:8
+obj_w_shop3_light_model = .data:0x00589EF0; // type:object size:0x90 scope:global align:8
+obj_w_shop3_door2_model = .data:0x00589F80; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_w_shop3_tbl = .data:0x00589FD0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_obj_w_shop3 = .data:0x0058A030; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_shop3_tbl = .data:0x0058A038; // type:object size:0x8 scope:global align:4
+cKF_kn_obj_w_shop3_tbl = .data:0x0058A040; // type:object size:0x18 scope:global align:4
+cKF_c_obj_w_shop3_tbl = .data:0x0058A058; // type:object size:0x1E scope:global align:4
+cKF_ds_obj_w_shop3_tbl = .data:0x0058A078; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_w_shop3 = .data:0x0058A108; // type:object size:0x14 scope:global align:4
+obj_s_shop4_pal = .data:0x0058A120; // type:object size:0x20 scope:global align:32
+obj_s_shop4_t2_tex_txt = .data:0x0058A140; // type:object size:0x800 scope:global align:32
+obj_s_shop4_t1_tex_txt = .data:0x0058A940; // type:object size:0x800 scope:global align:32
+obj_s_shop4_t3_tex_txt = .data:0x0058B140; // type:object size:0x800 scope:global align:32
+obj_s_shop4_window_tex_txt = .data:0x0058B940; // type:object size:0x80 scope:global align:32
+obj_shop4_grass_tex_pic_i4 = .data:0x0058B9C0; // type:object size:0x80 scope:global align:32
+obj_s_shop4_v = .data:0x0058BA40; // type:object size:0x920 scope:global align:8
+obj_s_shop4_window_model = .data:0x0058C360; // type:object size:0x58 scope:global align:8
+obj_s_shop4_t2_model = .data:0x0058C3B8; // type:object size:0x90 scope:global align:8
+obj_s_shop4_t1_model = .data:0x0058C448; // type:object size:0xA0 scope:global align:8
+obj_s_shop4_light_model = .data:0x0058C4E8; // type:object size:0x98 scope:global align:8
+obj_s_shop4_grass_model = .data:0x0058C580; // type:object size:0x58 scope:global align:8
+obj_s_shop4_door_model = .data:0x0058C5D8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_shop4_tbl = .data:0x0058C630; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_s_shop4 = .data:0x0058C69C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_shop4_tbl = .data:0x0058C6A4; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_s_shop4_tbl = .data:0x0058C6B0; // type:object size:0x18 scope:global align:4
+cKF_c_obj_s_shop4_tbl = .data:0x0058C6C8; // type:object size:0x24 scope:global align:4
+cKF_ds_obj_s_shop4_tbl = .data:0x0058C6EC; // type:object size:0x96 scope:global align:4
+cKF_ba_r_obj_s_shop4 = .data:0x0058C784; // type:object size:0x14 scope:global align:4
+obj_w_shop4_pal = .data:0x0058C7A0; // type:object size:0x20 scope:global align:32
+obj_w_shop4_t2_tex_txt = .data:0x0058C7C0; // type:object size:0x800 scope:global align:32
+obj_w_shop4_t1_tex_txt = .data:0x0058CFC0; // type:object size:0x800 scope:global align:32
+obj_w_shop4_t3_tex_txt = .data:0x0058D7C0; // type:object size:0x800 scope:global align:32
+obj_w_shop4_window_tex_txt = .data:0x0058DFC0; // type:object size:0x80 scope:global align:32
+obj_w_shop4_v = .data:0x0058E040; // type:object size:0x920 scope:global align:8
+obj_w_shop4_window_model = .data:0x0058E960; // type:object size:0x58 scope:global align:8
+obj_w_shop4_t2_model = .data:0x0058E9B8; // type:object size:0x90 scope:global align:8
+obj_w_shop4_t1_model = .data:0x0058EA48; // type:object size:0xA0 scope:global align:8
+obj_w_shop4_light_model = .data:0x0058EAE8; // type:object size:0x98 scope:global align:8
+obj_w_shop4_grass_model = .data:0x0058EB80; // type:object size:0x58 scope:global align:8
+obj_w_shop4_door_model = .data:0x0058EBD8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_shop4_tbl = .data:0x0058EC30; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_w_shop4 = .data:0x0058EC9C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_shop4_tbl = .data:0x0058ECA4; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_w_shop4_tbl = .data:0x0058ECB0; // type:object size:0x18 scope:global align:4
+cKF_c_obj_w_shop4_tbl = .data:0x0058ECC8; // type:object size:0x24 scope:global align:4
+cKF_ds_obj_w_shop4_tbl = .data:0x0058ECEC; // type:object size:0x96 scope:global align:4
+cKF_ba_r_obj_w_shop4 = .data:0x0058ED84; // type:object size:0x14 scope:global align:4
+obj_s_shrine_pal = .data:0x0058EDA0; // type:object size:0x20 scope:local align:32
+obj_s_shrine_t1_tex_txt = .data:0x0058EDC0; // type:object size:0x800 scope:global align:32
+obj_s_shrine_t3_tex_txt = .data:0x0058F5C0; // type:object size:0x800 scope:global align:32
+obj_s_shrine_t2_tex_txt = .data:0x0058FDC0; // type:object size:0x800 scope:global align:32
+obj_s_shrine_t4_tex_txt = .data:0x005905C0; // type:object size:0x400 scope:global align:32
+obj_s_shrine_sprash_tex_pic_i4 = .data:0x005909C0; // type:object size:0x100 scope:global align:32
+obj_s_shrine_water_tex_pic_i4 = .data:0x00590AC0; // type:object size:0x100 scope:global align:32
+obj_s_shrine_wave_tex_pic_i4 = .data:0x00590BC0; // type:object size:0x100 scope:global align:32
+obj_s_shrine_v = .data:0x00590CC0; // type:object size:0x2110 scope:global align:8
+obj_s_shrine_water_model = .data:0x00592DD0; // type:object size:0xE8 scope:global align:8
+obj_s_shrine_trunk_model = .data:0x00592EB8; // type:object size:0xA8 scope:global align:8
+obj_s_shrine_statue_model = .data:0x00592F60; // type:object size:0x148 scope:global align:8
+obj_s_shrine_sprash_model = .data:0x005930A8; // type:object size:0x88 scope:global align:8
+obj_s_shrine_leaf_model = .data:0x00593130; // type:object size:0x80 scope:global align:8
+obj_s_shrine_figure_model = .data:0x005931B0; // type:object size:0xA0 scope:global align:8
+obj_s_shrine_bubble_model = .data:0x00593250; // type:object size:0x60 scope:global align:8
+obj_s_shrine_base_model = .data:0x005932B0; // type:object size:0x1A8 scope:global align:8
+obj_w_shrine_pal = .data:0x00593460; // type:object size:0x20 scope:local align:32
+obj_w_shrine_t1_tex_txt = .data:0x00593480; // type:object size:0x800 scope:global align:32
+obj_w_shrine_t3_tex_txt = .data:0x00593C80; // type:object size:0x800 scope:global align:32
+obj_w_shrine_t2_tex_txt = .data:0x00594480; // type:object size:0x800 scope:global align:32
+obj_w_shrine_t4_tex_txt = .data:0x00594C80; // type:object size:0x400 scope:global align:32
+obj_w_shrine_bubble_tex_pic_i4 = .data:0x00595080; // type:object size:0x200 scope:global align:32
+obj_w_shrine_sprash_tex_pic_i4 = .data:0x00595280; // type:object size:0x100 scope:global align:32
+obj_w_shrine_water_tex_pic_i4 = .data:0x00595380; // type:object size:0x100 scope:global align:32
+obj_w_shrine_wave_tex_pic_i4 = .data:0x00595480; // type:object size:0x100 scope:global align:32
+obj_w_shrine_v = .data:0x00595580; // type:object size:0x2110 scope:global align:8
+obj_w_shrine_water_model = .data:0x00597690; // type:object size:0xE8 scope:global align:8
+obj_w_shrine_trunk_model = .data:0x00597778; // type:object size:0xA8 scope:global align:8
+obj_w_shrine_statue_model = .data:0x00597820; // type:object size:0x148 scope:global align:8
+obj_w_shrine_sprash_model = .data:0x00597968; // type:object size:0x88 scope:global align:8
+obj_w_shrine_leaf_model = .data:0x005979F0; // type:object size:0x80 scope:global align:8
+obj_w_shrine_figure_model = .data:0x00597A70; // type:object size:0xA0 scope:global align:8
+obj_w_shrine_bubble_model = .data:0x00597B10; // type:object size:0x60 scope:global align:8
+obj_w_shrine_base_model = .data:0x00597B70; // type:object size:0x1A8 scope:global align:8
+obj_s_station1_t3_tex_txt = .data:0x00597D20; // type:object size:0x800 scope:global align:32
+obj_s_station1_t2_tex_txt = .data:0x00598520; // type:object size:0x800 scope:global align:32
+obj_s_station1_t1_tex_txt = .data:0x00598D20; // type:object size:0x800 scope:global align:32
+obj_s_station1_v = .data:0x00599520; // type:object size:0x7D0 scope:global align:8
+obj_s_station1_t3_model = .data:0x00599CF0; // type:object size:0x80 scope:global align:8
+obj_s_station1_t2_model = .data:0x00599D70; // type:object size:0x48 scope:global align:8
+obj_s_station1_t1_model = .data:0x00599DB8; // type:object size:0x70 scope:global align:8
+obj_s_station1_short_model = .data:0x00599E28; // type:object size:0x40 scope:global align:8
+obj_s_station1_long_model = .data:0x00599E68; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_s_station1_tbl = .data:0x00599EA8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_station1 = .data:0x00599EFC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_station1_tbl = .data:0x00599F04; // type:object size:0x7 scope:global align:4
+cKF_c_obj_s_station1_tbl = .data:0x00599F0C; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_s_station1 = .data:0x00599F3C; // type:object size:0x14 scope:global align:4
+obj_w_station1_t3_tex_txt = .data:0x00599F60; // type:object size:0x800 scope:global align:32
+obj_w_station1_t2_tex_txt = .data:0x0059A760; // type:object size:0x800 scope:global align:32
+obj_w_station1_t1_tex_txt = .data:0x0059AF60; // type:object size:0x800 scope:global align:32
+obj_w_station1_v = .data:0x0059B760; // type:object size:0x7B0 scope:global align:8
+obj_w_station1_t3_model = .data:0x0059BF10; // type:object size:0x80 scope:global align:8
+obj_w_station1_t2_model = .data:0x0059BF90; // type:object size:0x50 scope:global align:8
+obj_w_station1_t1_model = .data:0x0059BFE0; // type:object size:0x80 scope:global align:8
+obj_w_station1_short_model = .data:0x0059C060; // type:object size:0x40 scope:global align:8
+obj_w_station1_long_model = .data:0x0059C0A0; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_w_station1_tbl = .data:0x0059C0E0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_station1 = .data:0x0059C134; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_station1_tbl = .data:0x0059C13C; // type:object size:0x7 scope:global align:4
+cKF_c_obj_w_station1_tbl = .data:0x0059C144; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_w_station1 = .data:0x0059C174; // type:object size:0x14 scope:global align:4
+obj_s_station2_t1_tex_txt = .data:0x0059C1A0; // type:object size:0x800 scope:global align:32
+obj_s_station2_t2_tex_txt = .data:0x0059C9A0; // type:object size:0x800 scope:global align:32
+obj_s_station2_t3_tex_txt = .data:0x0059D1A0; // type:object size:0x800 scope:global align:32
+obj_s_station2_v = .data:0x0059D9A0; // type:object size:0x710 scope:global align:8
+obj_s_station2_t3_model = .data:0x0059E0B0; // type:object size:0x60 scope:global align:8
+obj_s_station2_t2_2_model = .data:0x0059E110; // type:object size:0x50 scope:global align:8
+obj_s_station2_t1_1_model = .data:0x0059E160; // type:object size:0x88 scope:global align:8
+obj_s_station2_short_model = .data:0x0059E1E8; // type:object size:0x40 scope:global align:8
+obj_s_station2_long_model = .data:0x0059E228; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_s_station2_tbl = .data:0x0059E268; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_station2 = .data:0x0059E2BC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_station2_tbl = .data:0x0059E2C4; // type:object size:0x7 scope:global align:4
+cKF_c_obj_s_station2_tbl = .data:0x0059E2CC; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_s_station2 = .data:0x0059E2FC; // type:object size:0x14 scope:global align:4
+obj_w_station2_t1_tex_txt = .data:0x0059E320; // type:object size:0x800 scope:global align:32
+obj_w_station2_t2_tex_txt = .data:0x0059EB20; // type:object size:0x800 scope:global align:32
+obj_w_station2_t3_tex_txt = .data:0x0059F320; // type:object size:0x800 scope:global align:32
+obj_w_station2_v = .data:0x0059FB20; // type:object size:0x730 scope:global align:8
+obj_w_station2_t3_model = .data:0x005A0250; // type:object size:0x60 scope:global align:8
+obj_w_station2_t2_1_model = .data:0x005A02B0; // type:object size:0x50 scope:global align:8
+obj_w_station2_t1_model = .data:0x005A0300; // type:object size:0x88 scope:global align:8
+obj_w_station2_short_model = .data:0x005A0388; // type:object size:0x40 scope:global align:8
+obj_w_ststion2_long_model = .data:0x005A03C8; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_w_station2_tbl = .data:0x005A0408; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_station2 = .data:0x005A045C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_station2_tbl = .data:0x005A0464; // type:object size:0x7 scope:global align:4
+cKF_c_obj_w_station2_tbl = .data:0x005A046C; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_w_station2 = .data:0x005A049C; // type:object size:0x14 scope:global align:4
+obj_s_station3_t3_tex_txt = .data:0x005A04C0; // type:object size:0x800 scope:global align:32
+obj_s_station3_t1_tex_txt = .data:0x005A0CC0; // type:object size:0x800 scope:global align:32
+obj_s_station3_t2_tex_txt = .data:0x005A14C0; // type:object size:0x800 scope:global align:32
+obj_s_station3_v = .data:0x005A1CC0; // type:object size:0x660 scope:global align:8
+obj_s_station3_t3_model = .data:0x005A2320; // type:object size:0x50 scope:global align:8
+obj_s_station3_t2_model = .data:0x005A2370; // type:object size:0x70 scope:global align:8
+obj_s_station3_t1_model = .data:0x005A23E0; // type:object size:0x68 scope:global align:8
+obj_s_station3_shourt_model = .data:0x005A2448; // type:object size:0x40 scope:global align:8
+obj_s_ststion3_long_model = .data:0x005A2488; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_s_station3_tbl = .data:0x005A24C8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_station3 = .data:0x005A251C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_station3_tbl = .data:0x005A2524; // type:object size:0x7 scope:global align:4
+cKF_c_obj_s_station3_tbl = .data:0x005A252C; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_s_station3 = .data:0x005A255C; // type:object size:0x14 scope:global align:4
+obj_w_station3_t3_tex_txt = .data:0x005A2580; // type:object size:0x800 scope:global align:32
+obj_w_station3_t2_tex_txt = .data:0x005A2D80; // type:object size:0x800 scope:global align:32
+obj_w_station3_t1_tex_txt = .data:0x005A3580; // type:object size:0x800 scope:global align:32
+obj_w_station3_v = .data:0x005A3D80; // type:object size:0x670 scope:global align:8
+obj_w_station3_t3_model = .data:0x005A43F0; // type:object size:0x50 scope:global align:8
+obj_w_station3_t2_model = .data:0x005A4440; // type:object size:0x70 scope:global align:8
+obj_w_station3_t1_model = .data:0x005A44B0; // type:object size:0x68 scope:global align:8
+obj_w_station3_shourt_model = .data:0x005A4518; // type:object size:0x40 scope:global align:8
+obj_w_ststion3_long_model = .data:0x005A4558; // type:object size:0x40 scope:global align:8
+cKF_je_r_obj_w_station3_tbl = .data:0x005A4598; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_station3 = .data:0x005A45EC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_station3_tbl = .data:0x005A45F4; // type:object size:0x7 scope:global align:4
+cKF_c_obj_w_station3_tbl = .data:0x005A45FC; // type:object size:0x30 scope:global align:4
+cKF_ba_r_obj_w_station3 = .data:0x005A462C; // type:object size:0x14 scope:global align:4
+obj_s_tailor_1_tex_txt = .data:0x005A4640; // type:object size:0x800 scope:global align:32
+obj_s_tailor_3_tex_txt = .data:0x005A4E40; // type:object size:0x800 scope:global align:32
+obj_s_tailor_2_tex_txt = .data:0x005A5640; // type:object size:0x800 scope:global align:32
+obj_s_tailor_window_tex_txt = .data:0x005A5E40; // type:object size:0x80 scope:global align:32
+obj_s_tailor_v = .data:0x005A5EC0; // type:object size:0x5F0 scope:global align:8
+obj_s_tailor_window_model = .data:0x005A64B0; // type:object size:0x48 scope:global align:8
+obj_s_tailor_light_model = .data:0x005A64F8; // type:object size:0x50 scope:global align:8
+obj_s_tailor_3_model = .data:0x005A6548; // type:object size:0xA0 scope:global align:8
+obj_s_tailor_2_model = .data:0x005A65E8; // type:object size:0x60 scope:global align:8
+obj_s_tailor_1_model = .data:0x005A6648; // type:object size:0x60 scope:global align:8
+obj_s_tailor_door_model = .data:0x005A66A8; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_s_tailor_tbl = .data:0x005A6700; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_tailor = .data:0x005A6754; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_tailor_tbl = .data:0x005A675C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_tailor_tbl = .data:0x005A6764; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_tailor_tbl = .data:0x005A6768; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_tailor_tbl = .data:0x005A6798; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_s_tailor = .data:0x005A67DC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_s_tailor_out_tbl = .data:0x005A67F0; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_tailor_out_tbl = .data:0x005A67F8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_tailor_out_tbl = .data:0x005A67FC; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_tailor_out_tbl = .data:0x005A682C; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_s_tailor_out = .data:0x005A687C; // type:object size:0x14 scope:global align:4
+obj_w_tailor_1_tex_txt = .data:0x005A68A0; // type:object size:0x800 scope:global align:32
+obj_w_tailor_window_tex_txt = .data:0x005A70A0; // type:object size:0x100 scope:global align:32
+obj_w_tailor_2_tex_txt = .data:0x005A71A0; // type:object size:0x800 scope:global align:32
+obj_w_tailor_3_tex_txt = .data:0x005A79A0; // type:object size:0x800 scope:global align:32
+obj_w_tailor_v = .data:0x005A81A0; // type:object size:0x5F0 scope:global align:8
+obj_w_tailor_window_model = .data:0x005A8790; // type:object size:0x48 scope:global align:8
+obj_w_tailor_light_model = .data:0x005A87D8; // type:object size:0x50 scope:global align:8
+obj_w_tailor_3_model = .data:0x005A8828; // type:object size:0xA0 scope:global align:8
+obj_w_tailor_2_model = .data:0x005A88C8; // type:object size:0x60 scope:global align:8
+obj_w_tailor_1_model = .data:0x005A8928; // type:object size:0x60 scope:global align:8
+obj_w_tailor_door_model = .data:0x005A8988; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_w_tailor_tbl = .data:0x005A89E0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_tailor = .data:0x005A8A34; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_tailor_tbl = .data:0x005A8A3C; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_w_tailor_tbl = .data:0x005A8A44; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_tailor_tbl = .data:0x005A8A48; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_w_tailor_tbl = .data:0x005A8A78; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_w_tailor = .data:0x005A8ABC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_w_tailor_out_tbl = .data:0x005A8AD0; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_w_tailor_out_tbl = .data:0x005A8AD8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_tailor_out_tbl = .data:0x005A8ADC; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_w_tailor_out_tbl = .data:0x005A8B0C; // type:object size:0x4E scope:global align:4
+cKF_ba_r_obj_w_tailor_out = .data:0x005A8B5C; // type:object size:0x14 scope:global align:4
+obj_s_tent_mat_pal = .data:0x005A8B80; // type:object size:0x20 scope:global align:32
+obj_s_tent_main_pal = .data:0x005A8BA0; // type:object size:0x20 scope:global align:32
+obj_s_tent_mat = .data:0x005A8BC0; // type:object size:0x100 scope:global align:32
+obj_s_tent_wall1 = .data:0x005A8CC0; // type:object size:0x400 scope:global align:32
+obj_s_tent_wall2 = .data:0x005A90C0; // type:object size:0x800 scope:global align:32
+obj_s_tent_wall3 = .data:0x005A98C0; // type:object size:0x400 scope:global align:32
+obj_s_tent_v = .data:0x005A9CC0; // type:object size:0x690 scope:global align:8
+obj_s_tent_model = .data:0x005AA350; // type:object size:0x190 scope:global align:8
+obj_s_toudai_glass_tex_pic_ci4_pal = .data:0x005AA4E0; // type:object size:0x20 scope:global align:32
+obj_s_toudai_light_tex_txt = .data:0x005AA500; // type:object size:0x100 scope:global align:32
+obj_s_toudai_arm_tex_txt = .data:0x005AA600; // type:object size:0x80 scope:global align:32
+obj_s_toudai_dai_tex_txt = .data:0x005AA680; // type:object size:0x200 scope:global align:32
+obj_s_toudai_dou_tex_txt = .data:0x005AA880; // type:object size:0x400 scope:global align:32
+obj_s_toudai_plate_tex_txt = .data:0x005AAC80; // type:object size:0x80 scope:global align:32
+obj_s_toudai_side_tex_txt = .data:0x005AAD00; // type:object size:0x80 scope:global align:32
+obj_s_toudai_tesuri_tex_txt = .data:0x005AAD80; // type:object size:0x80 scope:global align:32
+obj_s_toudai_yane_tex_txt = .data:0x005AAE00; // type:object size:0x80 scope:global align:32
+obj_s_toudai_glass_tex_pic_ci4 = .data:0x005AAE80; // type:object size:0x80 scope:global align:32
+obj_s_toudai_v = .data:0x005AAF00; // type:object size:0x990 scope:global align:8
+obj_s_toudai_mirror_model = .data:0x005AB890; // type:object size:0x60 scope:global align:8
+obj_s_toudai_glass_model = .data:0x005AB8F0; // type:object size:0x68 scope:global align:8
+obj_s_toudai_body_model = .data:0x005AB958; // type:object size:0x158 scope:global align:8
+obj_s_toudai_light_model = .data:0x005ABAB0; // type:object size:0x78 scope:global align:8
+obj_s_toudai_lenz_model = .data:0x005ABB28; // type:object size:0x68 scope:global align:8
+obj_s_toudai_arm_model = .data:0x005ABB90; // type:object size:0x38 scope:global align:8
+cKF_je_r_obj_s_toudai_tbl = .data:0x005ABBC8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_s_toudai = .data:0x005ABC1C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_s_toudai_tbl = .data:0x005ABC24; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_s_toudai_tbl = .data:0x005ABC2C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_s_toudai_tbl = .data:0x005ABC30; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_s_toudai_tbl = .data:0x005ABC60; // type:object size:0xC scope:global align:4
+cKF_ba_r_obj_s_toudai = .data:0x005ABC6C; // type:object size:0x14 scope:global align:4
+obj_w_toudai_glass_tex_pic_ci4_pal = .data:0x005ABC80; // type:object size:0x20 scope:global align:32
+obj_w_toudai_light_tex_txt = .data:0x005ABCA0; // type:object size:0x100 scope:global align:32
+obj_w_toudai_arm_tex_txt = .data:0x005ABDA0; // type:object size:0x80 scope:global align:32
+obj_w_toudai_dai_tex_txt = .data:0x005ABE20; // type:object size:0x200 scope:global align:32
+obj_w_toudai_dou_tex_txt = .data:0x005AC020; // type:object size:0x400 scope:global align:32
+obj_w_toudai_plate_tex_txt = .data:0x005AC420; // type:object size:0x80 scope:global align:32
+obj_w_toudai_side_tex_txt = .data:0x005AC4A0; // type:object size:0x80 scope:global align:32
+obj_w_toudai_tesuri_tex_txt = .data:0x005AC520; // type:object size:0x80 scope:global align:32
+obj_w_toudai_yane_tex_txt = .data:0x005AC5A0; // type:object size:0x80 scope:global align:32
+obj_w_toudai_glass_tex_pic_ci4 = .data:0x005AC620; // type:object size:0x80 scope:global align:32
+obj_w_toudai_v = .data:0x005AC6A0; // type:object size:0x950 scope:global align:8
+obj_w_toudai_mirror_model = .data:0x005ACFF0; // type:object size:0x60 scope:global align:8
+obj_w_toudai_glass_model = .data:0x005AD050; // type:object size:0x68 scope:global align:8
+obj_w_toudai_body_model = .data:0x005AD0B8; // type:object size:0x158 scope:global align:8
+obj_w_toudai_light_model = .data:0x005AD210; // type:object size:0x78 scope:global align:8
+obj_w_toudai_lenz_model = .data:0x005AD288; // type:object size:0x68 scope:global align:8
+obj_w_toudai_arm_model = .data:0x005AD2F0; // type:object size:0x38 scope:global align:8
+cKF_je_r_obj_w_toudai_tbl = .data:0x005AD328; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_w_toudai = .data:0x005AD37C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_w_toudai_tbl = .data:0x005AD384; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_w_toudai_tbl = .data:0x005AD38C; // type:object size:0x2 scope:global align:4
+cKF_c_obj_w_toudai_tbl = .data:0x005AD390; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_w_toudai_tbl = .data:0x005AD3C0; // type:object size:0xC scope:global align:4
+cKF_ba_r_obj_w_toudai = .data:0x005AD3CC; // type:object size:0x14 scope:global align:4
+obj_train1_t3_tex_txt = .data:0x005AD3E0; // type:object size:0x800 scope:global align:32
+obj_train1_t1_tex_txt = .data:0x005ADBE0; // type:object size:0x800 scope:global align:32
+obj_train1_t2_tex_txt = .data:0x005AE3E0; // type:object size:0x800 scope:global align:32
+obj_train1_1_v = .data:0x005AEBE0; // type:object size:0x860 scope:global align:8
+obj_train1_1_t3_model = .data:0x005AF440; // type:object size:0x78 scope:global align:8
+obj_train1_1_t2_model = .data:0x005AF4B8; // type:object size:0x58 scope:global align:8
+obj_train1_1_t1_model = .data:0x005AF510; // type:object size:0x78 scope:global align:8
+obj_train1_1_wheel2_model = .data:0x005AF588; // type:object size:0x30 scope:global align:8
+obj_train1_1_rod1_model = .data:0x005AF5B8; // type:object size:0x30 scope:global align:8
+obj_train1_1_rod2_model = .data:0x005AF5E8; // type:object size:0x30 scope:global align:8
+obj_train1_1_wheel1_model = .data:0x005AF618; // type:object size:0x30 scope:global align:8
+obj_train1_t3_tex_txt_tansui = .data:0x005AF660; // type:object size:0x800 scope:global align:32
+obj_train_2_v = .data:0x005AFE60; // type:object size:0x310 scope:global align:8
+obj_train1_2_t2_model = .data:0x005B0170; // type:object size:0x38 scope:global align:8
+obj_train1_2_t1_model = .data:0x005B01A8; // type:object size:0x48 scope:global align:8
+obj_train1_2_model = .data:0x005B01F0; // type:object size:0x48 scope:global align:8
+cKF_je_r_obj_train1_1_tbl = .data:0x005B0238; // type:object size:0x6C scope:global align:4
+cKF_bs_r_obj_train1_1 = .data:0x005B02A4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_train1_1_tbl = .data:0x005B02AC; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_train1_1_tbl = .data:0x005B02B8; // type:object size:0x24 scope:global align:4
+cKF_c_obj_train1_1_tbl = .data:0x005B02DC; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_train1_1_tbl = .data:0x005B02F4; // type:object size:0xDE scope:global align:4
+cKF_ba_r_obj_train1_1 = .data:0x005B03D4; // type:object size:0x14 scope:global align:4
+obj_train1_t6_tex_txt = .data:0x005B0400; // type:object size:0x800 scope:global align:32
+obj_train1_t5_tex_txt = .data:0x005B0C00; // type:object size:0x800 scope:global align:32
+obj_train1_t4_tex_txt = .data:0x005B1400; // type:object size:0x800 scope:global align:32
+obj_train_3_v = .data:0x005B1C00; // type:object size:0x650 scope:global align:8
+obj_train1_3_t6_model = .data:0x005B2250; // type:object size:0x70 scope:global align:8
+obj_train1_3_t5_model = .data:0x005B22C0; // type:object size:0xB8 scope:global align:8
+obj_train1_3_t4_model = .data:0x005B2378; // type:object size:0x78 scope:global align:8
+obj_train1_3_door1_model = .data:0x005B23F0; // type:object size:0x58 scope:global align:8
+obj_train1_3_door2_model = .data:0x005B2448; // type:object size:0x58 scope:global align:8
+cKF_je_r_obj_train1_3_tbl = .data:0x005B24A0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_train1_3 = .data:0x005B24E8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_train1_3_close_tbl = .data:0x005B24F0; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_train1_3_close_tbl = .data:0x005B24FC; // type:object size:0x18 scope:global align:4
+cKF_c_obj_train1_3_close_tbl = .data:0x005B2514; // type:object size:0x24 scope:global align:4
+cKF_ds_obj_train1_3_close_tbl = .data:0x005B2538; // type:object size:0xC0 scope:global align:4
+cKF_ba_r_obj_train1_3_close = .data:0x005B25F8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_obj_train1_3_open_tbl = .data:0x005B260C; // type:object size:0x9 scope:global align:4
+cKF_kn_obj_train1_3_open_tbl = .data:0x005B2618; // type:object size:0x18 scope:global align:4
+cKF_c_obj_train1_3_open_tbl = .data:0x005B2630; // type:object size:0x24 scope:global align:4
+cKF_ds_obj_train1_3_open_tbl = .data:0x005B2654; // type:object size:0xC0 scope:global align:4
+cKF_ba_r_obj_train1_3_open = .data:0x005B2714; // type:object size:0x14 scope:global align:4
+obj_e_tukimi_t2_tex_txt = .data:0x005B2740; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_t3_tex_txt = .data:0x005B2F40; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_t1_tex_txt = .data:0x005B3740; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_r_v = .data:0x005B3F40; // type:object size:0x480 scope:global align:8
+obj_e_tukimi_r_ne2_model = .data:0x005B43C0; // type:object size:0x38 scope:global align:8
+obj_e_tukimi_r_ne1_model = .data:0x005B43F8; // type:object size:0x38 scope:global align:8
+obj_e_tukimi_r_moti_model = .data:0x005B4430; // type:object size:0x48 scope:global align:8
+obj_e_tukimi_r_hako_model = .data:0x005B4478; // type:object size:0x68 scope:global align:8
+obj_e_tukimi_r_endai_model = .data:0x005B44E0; // type:object size:0x60 scope:global align:8
+obj_e_tukimi_r_dai_model = .data:0x005B4540; // type:object size:0x48 scope:global align:8
+obj_e_tukimi_r_kuki2_model = .data:0x005B4588; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_r_ho2_model = .data:0x005B45D8; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_r_kuki1_model = .data:0x005B4628; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_r_ho1_model = .data:0x005B4678; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_e_tukimi_r_tbl = .data:0x005B46C8; // type:object size:0x90 scope:global align:4
+cKF_bs_r_obj_e_tukimi_r = .data:0x005B4758; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_tukimi_r_tbl = .data:0x005B4760; // type:object size:0xC scope:global align:4
+cKF_kn_obj_e_tukimi_r_tbl = .data:0x005B476C; // type:object size:0x8 scope:global align:4
+cKF_c_obj_e_tukimi_r_tbl = .data:0x005B4774; // type:object size:0x46 scope:global align:4
+cKF_ds_obj_e_tukimi_r_tbl = .data:0x005B47BC; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_obj_e_tukimi_r = .data:0x005B4864; // type:object size:0x14 scope:global align:4
+obj_e_tukimi_l_t2_tex_txt = .data:0x005B4880; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_l_t1_tex_txt = .data:0x005B5080; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_l_t3_tex_txt = .data:0x005B5880; // type:object size:0x800 scope:global align:32
+obj_e_tukimi_l_v = .data:0x005B6080; // type:object size:0x480 scope:global align:8
+obj_e_tukimi_l_ne2_model = .data:0x005B6500; // type:object size:0x38 scope:global align:8
+obj_e_tukimi_l_ne1_model = .data:0x005B6538; // type:object size:0x38 scope:global align:8
+obj_e_tukimi_l_moti_model = .data:0x005B6570; // type:object size:0x48 scope:global align:8
+obj_e_tukimi_l_hako_model = .data:0x005B65B8; // type:object size:0x68 scope:global align:8
+obj_e_tukimi_l_endai_model = .data:0x005B6620; // type:object size:0x60 scope:global align:8
+obj_e_tukimi_l_dai_model = .data:0x005B6680; // type:object size:0x48 scope:global align:8
+obj_e_tukimi_l_kuki2_model = .data:0x005B66C8; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_l_ho2_model = .data:0x005B6718; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_l_kuki1_model = .data:0x005B6768; // type:object size:0x50 scope:global align:8
+obj_e_tukimi_l_ho1_model = .data:0x005B67B8; // type:object size:0x50 scope:global align:8
+cKF_je_r_obj_e_tukimi_l_tbl = .data:0x005B6808; // type:object size:0x90 scope:global align:4
+cKF_bs_r_obj_e_tukimi_l = .data:0x005B6898; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_e_tukimi_l_tbl = .data:0x005B68A0; // type:object size:0xC scope:global align:4
+cKF_kn_obj_e_tukimi_l_tbl = .data:0x005B68AC; // type:object size:0x8 scope:global align:4
+cKF_c_obj_e_tukimi_l_tbl = .data:0x005B68B4; // type:object size:0x46 scope:global align:4
+cKF_ds_obj_e_tukimi_l_tbl = .data:0x005B68FC; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_obj_e_tukimi_l = .data:0x005B69A4; // type:object size:0x14 scope:global align:4
+obj_e_turi_pal = .data:0x005B69C0; // type:object size:0x20 scope:local align:32
+obj_e_turi_t1_tex = .data:0x005B69E0; // type:object size:0x800 scope:global align:32
+obj_e_turi_t2_tex = .data:0x005B71E0; // type:object size:0x800 scope:global align:32
+obj_e_turi_t3_tex = .data:0x005B79E0; // type:object size:0x800 scope:global align:32
+obj_e_turi_l_v = .data:0x005B81E0; // type:object size:0x5B0 scope:global align:8
+obj_e_turi_l_modelT = .data:0x005B8790; // type:object size:0x118 scope:global align:8
+obj_e_turi_r_v = .data:0x005B88A8; // type:object size:0x590 scope:global align:8
+obj_e_turi_r_modelT = .data:0x005B8E38; // type:object size:0x118 scope:global align:8
+obj_e_yatai_3_pal = .data:0x005B8F60; // type:object size:0x20 scope:global align:32
+obj_e_yatai_2_pal = .data:0x005B8F80; // type:object size:0x20 scope:global align:32
+obj_e_yatai_1_pal = .data:0x005B8FA0; // type:object size:0x20 scope:global align:32
+obj_e_yatai_3 = .data:0x005B8FC0; // type:object size:0x400 scope:global align:32
+obj_e_yatai_2 = .data:0x005B93C0; // type:object size:0x800 scope:global align:32
+obj_e_yatai_4 = .data:0x005B9BC0; // type:object size:0x100 scope:global align:32
+obj_e_yatai_1 = .data:0x005B9CC0; // type:object size:0x800 scope:global align:32
+obj_e_yatai_l_v = .data:0x005BA4C0; // type:object size:0xE20 scope:global align:8
+obj_e_yatai_l_modelT = .data:0x005BB2E0; // type:object size:0x8 scope:global align:8
+obj_e_yatai_l_model = .data:0x005BB2E8; // type:object size:0x258 scope:global align:8
+obj_e_yatai_r_v = .data:0x005BB540; // type:object size:0xE20 scope:global align:8
+obj_e_yatai_r_modelT = .data:0x005BC360; // type:object size:0x8 scope:global align:8
+obj_e_yatai_r_model = .data:0x005BC368; // type:object size:0x258 scope:global align:8
+rcs_1_v = .data:0x005BC5C0; // type:object size:0x1700 scope:global align:8
+head_rcs_model = .data:0x005BDCC0; // type:object size:0x188 scope:global align:8
+mouth_rcs_model = .data:0x005BDE48; // type:object size:0x78 scope:global align:8
+Rarm2_rcs_model = .data:0x005BDEC0; // type:object size:0x88 scope:global align:8
+Rarm1_rcs_model = .data:0x005BDF48; // type:object size:0x78 scope:global align:8
+Larm2_rcs_model = .data:0x005BDFC0; // type:object size:0x88 scope:global align:8
+Larm1_rcs_model = .data:0x005BE048; // type:object size:0x78 scope:global align:8
+chest_rcs_model = .data:0x005BE0C0; // type:object size:0x108 scope:global align:8
+tail1_rcs_model = .data:0x005BE1C8; // type:object size:0x78 scope:global align:8
+tail2_rcs_model = .data:0x005BE240; // type:object size:0xA0 scope:global align:8
+Rfoot2_rcs_model = .data:0x005BE2E0; // type:object size:0x80 scope:global align:8
+Rfoot1_rcs_model = .data:0x005BE360; // type:object size:0x58 scope:global align:8
+Lfoot2_rcs_model = .data:0x005BE3B8; // type:object size:0x80 scope:global align:8
+Lfoot1_rcs_model = .data:0x005BE438; // type:object size:0x58 scope:global align:8
+base_rcs_model = .data:0x005BE490; // type:object size:0xD8 scope:global align:8
+cKF_je_r_rcs_1_tbl = .data:0x005BE568; // type:object size:0x138 scope:global align:4
+cKF_bs_r_rcs_1 = .data:0x005BE6A0; // type:object size:0x8 scope:global align:4
+rcs_1_pal = .data:0x005BE6C0; // type:object size:0x20 scope:global align:32
+rcs_1_eye1_TA_tex_txt = .data:0x005BE6E0; // type:object size:0x100 scope:global align:32
+rcs_1_eye2_TA_tex_txt = .data:0x005BE7E0; // type:object size:0x100 scope:global align:32
+rcs_1_eye3_TA_tex_txt = .data:0x005BE8E0; // type:object size:0x100 scope:global align:32
+rcs_1_eye4_TA_tex_txt = .data:0x005BE9E0; // type:object size:0x100 scope:global align:32
+rcs_1_eye5_TA_tex_txt = .data:0x005BEAE0; // type:object size:0x100 scope:global align:32
+rcs_1_eye6_TA_tex_txt = .data:0x005BEBE0; // type:object size:0x100 scope:global align:32
+rcs_1_eye7_TA_tex_txt = .data:0x005BECE0; // type:object size:0x100 scope:global align:32
+rcs_1_eye8_TA_tex_txt = .data:0x005BEDE0; // type:object size:0x100 scope:global align:32
+rcs_1_tmem_txt = .data:0x005BEEE0; // type:object size:0x580 scope:global align:32
+tent_info = .data:0x005BF460; // type:object size:0x38 scope:global align:4
+TENT_player_data = .data:0x005BF498; // type:object size:0x10 scope:global align:4
+TENT_ctrl_actor_data = .data:0x005BF4A8; // type:object size:0x16 scope:global align:4
+TENT_door_data = .data:0x005BF4C0; // type:object size:0x14 scope:global align:4
+test_fd_npc_land_info = .data:0x005BF4D8; // type:object size:0x38 scope:global align:4
+TEST_FD_NPC_LAND_player_data = .data:0x005BF510; // type:object size:0x10 scope:global align:4
+TEST_FD_NPC_LAND_ctrl_actor_data = .data:0x005BF520; // type:object size:0x22 scope:global align:4
+TEST_FD_NPC_LAND_actor_data = .data:0x005BF544; // type:object size:0x20 scope:global align:4
+TEST_FD_NPC_LAND_object_bank = .data:0x005BF564; // type:object size:0x4 scope:global align:4
+water_test_info = .data:0x005BF568; // type:object size:0x30 scope:global align:4
+WATER_TEST_player_data = .data:0x005BF598; // type:object size:0x10 scope:global align:4
+WATER_TEST_ctrl_actor_data = .data:0x005BF5A8; // type:object size:0x1C scope:global align:4
+WATER_TEST_actor_data = .data:0x005BF5C4; // type:object size:0x20 scope:global align:4
+test_step01_info = .data:0x005BF5E8; // type:object size:0x20 scope:global align:4
+TEST_STEP01_player_data = .data:0x005BF608; // type:object size:0x10 scope:global align:4
+title_demo_info = .data:0x005BF618; // type:object size:0x38 scope:global align:4
+TITLE_DEMO_player_data = .data:0x005BF650; // type:object size:0x10 scope:global align:4
+TITLE_DEMO_ctrl_actor_data = .data:0x005BF660; // type:object size:0x14 scope:global align:4
+TITLE_DEMO_actor_data = .data:0x005BF674; // type:object size:0x10 scope:global align:4
+TITLE_DEMO_object_bank = .data:0x005BF684; // type:object size:0x2 scope:global align:4
+crw_anrium1_pal = .data:0x005BF6A0; // type:object size:0x20 scope:global align:32
+crw_anrium1_tex_txt = .data:0x005BF6C0; // type:object size:0x200 scope:global align:32
+crw_anrium2_tex_txt = .data:0x005BF8C0; // type:object size:0x80 scope:global align:32
+crw_anrium1_v = .data:0x005BF940; // type:object size:0x1E0 scope:global align:8
+crw_anrium1_body_model = .data:0x005BFB20; // type:object size:0xC0 scope:global align:8
+crw_bag1_pal = .data:0x005BFBE0; // type:object size:0x20 scope:global align:32
+crw_bag1_tex_txt = .data:0x005BFC00; // type:object size:0x400 scope:global align:32
+crw_bagpikke1_tex_txt = .data:0x005C0000; // type:object size:0x40 scope:global align:32
+crw_bagpikke2_tex_txt = .data:0x005C0040; // type:object size:0x40 scope:global align:32
+crw_bag1_v = .data:0x005C0080; // type:object size:0x310 scope:global align:8
+crw_bag1_body_model = .data:0x005C0390; // type:object size:0xC8 scope:global align:8
+crw_bag2_pal = .data:0x005C0460; // type:object size:0x20 scope:global align:32
+crw_bag21_tex_txt = .data:0x005C0480; // type:object size:0x400 scope:global align:32
+crw_bag2_v = .data:0x005C0880; // type:object size:0x1B0 scope:global align:8
+crw_bag2_body_model = .data:0x005C0A30; // type:object size:0x98 scope:global align:8
+crw_biscus1_pal = .data:0x005C0AE0; // type:object size:0x20 scope:global align:32
+crw_biscus2_tex_txt = .data:0x005C0B00; // type:object size:0x100 scope:global align:32 data:string
+crw_biscus4_tex_txt = .data:0x005C0C00; // type:object size:0x80 scope:global align:32
+crw_biscus3_tex_txt = .data:0x005C0C80; // type:object size:0x80 scope:global align:32
+crw_biscus1_tex_txt = .data:0x005C0D00; // type:object size:0x200 scope:global align:32
+crw_biscus1_v = .data:0x005C0F00; // type:object size:0x390 scope:global align:8
+crw_biscus1_body_model = .data:0x005C1290; // type:object size:0x138 scope:global align:8
+crw_biscus2_pal = .data:0x005C13E0; // type:object size:0x20 scope:global align:32
+crw_biscus22_tex_txt = .data:0x005C1400; // type:object size:0x100 scope:global align:32 data:string
+crw_biscus24_tex_txt = .data:0x005C1500; // type:object size:0x80 scope:global align:32
+crw_biscus23_tex_txt = .data:0x005C1580; // type:object size:0x80 scope:global align:32
+crw_biscus21_tex_txt = .data:0x005C1600; // type:object size:0x200 scope:global align:32
+crw_biscus2_v = .data:0x005C1800; // type:object size:0x390 scope:global align:8
+crw_biscus2_body_model = .data:0x005C1B90; // type:object size:0x138 scope:global align:8
+crw_biscus3_pal = .data:0x005C1CE0; // type:object size:0x20 scope:global align:32
+crw_biscus32_tex_txt = .data:0x005C1D00; // type:object size:0x100 scope:global align:32 data:string
+crw_biscus34_tex_txt = .data:0x005C1E00; // type:object size:0x80 scope:global align:32
+crw_biscus33_tex_txt = .data:0x005C1E80; // type:object size:0x80 scope:global align:32
+crw_biscus31_tex_txt = .data:0x005C1F00; // type:object size:0x200 scope:global align:32
+crw_biscus3_v = .data:0x005C2100; // type:object size:0x390 scope:global align:8
+crw_biscus3_body_model = .data:0x005C2490; // type:object size:0x138 scope:global align:8
+crw_biscus4_pal = .data:0x005C25E0; // type:object size:0x20 scope:global align:32
+crw_biscus42_tex_txt = .data:0x005C2600; // type:object size:0x100 scope:global align:32 data:string
+crw_biscus44_tex_txt = .data:0x005C2700; // type:object size:0x80 scope:global align:32
+crw_biscus43_tex_txt = .data:0x005C2780; // type:object size:0x80 scope:global align:32
+crw_biscus41_tex_txt = .data:0x005C2800; // type:object size:0x200 scope:global align:32
+crw_biscus4_v = .data:0x005C2A00; // type:object size:0x390 scope:global align:8
+crw_biscus4_body_model = .data:0x005C2D90; // type:object size:0x138 scope:global align:8
+crw_cobra_pal = .data:0x005C2EE0; // type:object size:0x20 scope:global align:32
+crw_cobra_tex_txt = .data:0x005C2F00; // type:object size:0x200 scope:global align:32
+crw_cobra_v = .data:0x005C3100; // type:object size:0x300 scope:global align:8
+crw_cobra_model = .data:0x005C3400; // type:object size:0xB8 scope:global align:8
+tol_cracker_1_pal = .data:0x005C34C0; // type:object size:0x20 scope:global align:32
+tol_cracker_1_tex = .data:0x005C34E0; // type:object size:0x200 scope:global align:32
+tol_cracker_1_v = .data:0x005C36E0; // type:object size:0x1C0 scope:global align:8
+tol_cracker_1T_model = .data:0x005C38A0; // type:object size:0x78 scope:global align:8
+tol_hata_e_pal = .data:0x005C3920; // type:object size:0x20 scope:global align:32
+tol_hata_e_tex = .data:0x005C3940; // type:object size:0x80 scope:global align:32
+tol_hata_hata_tex_inta_ia8 = .data:0x005C39C0; // type:object size:0x100 scope:global align:32
+tol_hata_01_v = .data:0x005C3AC0; // type:object size:0xF0 scope:global align:8
+tol_hata_e_model = .data:0x005C3BB0; // type:object size:0x68 scope:global align:8
+tol_hata_hataT_model = .data:0x005C3C18; // type:object size:0x60 scope:global align:8
+tol_hata_01_evw_anime_1_tex_table = .data:0x005C3C78; // type:object size:0x4 scope:global align:4
+tol_hata_01_evw_anime_1_anime_ptn = .data:0x005C3C7C; // type:object size:0x1 scope:global align:4
+tol_hata_01_evw_anime_1 = .data:0x005C3C80; // type:object size:0x10 scope:global align:4
+tol_hata_01_evw_anime_2 = .data:0x005C3C90; // type:object size:0x8 scope:global align:4
+tol_hata_01_evw_anime = .data:0x005C3C98; // type:object size:0x10 scope:global align:4
+crw_hasu1_pal = .data:0x005C3CC0; // type:object size:0x20 scope:global align:32
+crw_hasu1_tex_txt = .data:0x005C3CE0; // type:object size:0x200 scope:global align:32
+crw_hasu1_v = .data:0x005C3EE0; // type:object size:0x570 scope:global align:8
+crw_hasu1_body_model = .data:0x005C4450; // type:object size:0x110 scope:global align:8
+crw_hat1_pal = .data:0x005C4560; // type:object size:0x20 scope:global align:32
+crw_hat1_tex_txt = .data:0x005C4580; // type:object size:0x80 scope:global align:32
+crw_hat2_tex_txt = .data:0x005C4600; // type:object size:0x200 scope:global align:32
+crw_hat3_tex_txt = .data:0x005C4800; // type:object size:0x80 scope:global align:32
+crw_hat1_v = .data:0x005C4880; // type:object size:0x250 scope:global align:8
+crw_hat1_body_model = .data:0x005C4AD0; // type:object size:0xE0 scope:global align:8
+crw_hat2_pal = .data:0x005C4BC0; // type:object size:0x20 scope:global align:32
+crw_hat21_tex_txt = .data:0x005C4BE0; // type:object size:0x80 scope:global align:32
+crw_hat22_tex_txt = .data:0x005C4C60; // type:object size:0x200 scope:global align:32
+crw_hat23_tex_txt = .data:0x005C4E60; // type:object size:0x80 scope:global align:32
+crw_hat2_v = .data:0x005C4EE0; // type:object size:0x250 scope:global align:8
+crw_hat2_body_model = .data:0x005C5130; // type:object size:0xE0 scope:global align:8
+crw_hat3_pal = .data:0x005C5220; // type:object size:0x20 scope:global align:32
+crw_hat31_tex_txt = .data:0x005C5240; // type:object size:0x80 scope:global align:32
+crw_hat32_tex_txt = .data:0x005C52C0; // type:object size:0x200 scope:global align:32
+crw_hat33_tex_txt = .data:0x005C54C0; // type:object size:0x80 scope:global align:32
+crw_hat3_v = .data:0x005C5540; // type:object size:0x250 scope:global align:8
+crw_hat3_body_model = .data:0x005C5790; // type:object size:0xE0 scope:global align:8
+tol_kamicup_pal = .data:0x005C5880; // type:object size:0x20 scope:global align:32
+tol_kamicup_tex = .data:0x005C58A0; // type:object size:0x200 scope:global align:32
+tol_kamicup_1_v = .data:0x005C5AA0; // type:object size:0x330 scope:global align:8
+tol_kamicup_1T_model = .data:0x005C5DD0; // type:object size:0xB0 scope:global align:8
+cKF_ckcb_r_tol_keitai_1_keitai_off1_tbl = .data:0x005C5E80; // type:object size:0x3 scope:global align:4
+cKF_kn_tol_keitai_1_keitai_off1_tbl = .data:0x005C5E84; // type:object size:0x12 scope:global align:4
+cKF_c_tol_keitai_1_keitai_off1_tbl = .data:0x005C5E98; // type:object size:0x6 scope:global align:4
+cKF_ds_tol_keitai_1_keitai_off1_tbl = .data:0x005C5EA0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_tol_keitai_1_keitai_off1 = .data:0x005C5F24; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_tol_keitai_1_keitai_on1_tbl = .data:0x005C5F38; // type:object size:0x3 scope:global align:4
+cKF_kn_tol_keitai_1_keitai_on1_tbl = .data:0x005C5F3C; // type:object size:0x2 scope:global align:4
+cKF_c_tol_keitai_1_keitai_on1_tbl = .data:0x005C5F40; // type:object size:0x16 scope:global align:4
+cKF_ds_tol_keitai_1_keitai_on1_tbl = .data:0x005C5F58; // type:object size:0x54 scope:global align:4
+cKF_ba_r_tol_keitai_1_keitai_on1 = .data:0x005C5FAC; // type:object size:0x14 scope:global align:4
+tol_keitai_1_pal = .data:0x005C5FC0; // type:object size:0x20 scope:global align:32
+tol_keitai_1_ueura1_tex_txt = .data:0x005C5FE0; // type:object size:0x100 scope:global align:32
+tol_keitai_1_ueomote1_tex_txt = .data:0x005C60E0; // type:object size:0x100 scope:global align:32
+tol_keitai_1_shitaura1_tex_txt = .data:0x005C61E0; // type:object size:0x100 scope:global align:32
+tol_keitai_1_shitaomote1_tex_txt = .data:0x005C62E0; // type:object size:0x100 scope:global align:32
+tol_keitai_1_v = .data:0x005C63E0; // type:object size:0x1D0 scope:global align:8
+main1_keitai1_model = .data:0x005C65B0; // type:object size:0x88 scope:global align:8
+main2_keitai1_model = .data:0x005C6638; // type:object size:0x88 scope:global align:8
+cKF_je_r_tol_keitai_1_tbl = .data:0x005C66C0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_tol_keitai_1 = .data:0x005C66E4; // type:object size:0x8 scope:global align:4
+tol_kenjyu_1_pal = .data:0x005C6700; // type:object size:0x20 scope:global align:32
+tol_kenjyu_1_tex = .data:0x005C6720; // type:object size:0x200 scope:global align:32
+tol_kenjyu_1_v = .data:0x005C6920; // type:object size:0x410 scope:global align:8
+tol_kenjyu_1T_model = .data:0x005C6D30; // type:object size:0xB0 scope:global align:8
+tol_npcsao_1_pal = .data:0x005C6DE0; // type:object size:0x20 scope:global align:32
+tol_npcsao_1_tex = .data:0x005C6E00; // type:object size:0x200 scope:global align:32
+tol_npcsao_1_v = .data:0x005C7000; // type:object size:0x470 scope:global align:8
+tol_npcsao_1_sao_model = .data:0x005C7470; // type:object size:0x80 scope:global align:8
+tol_npcsao_1_uki_model = .data:0x005C74F0; // type:object size:0x98 scope:global align:8
+crw_rei1_pal = .data:0x005C75A0; // type:object size:0x20 scope:global align:32
+crw_rei1_tex_txt = .data:0x005C75C0; // type:object size:0x200 scope:global align:32
+crw_rei1_v = .data:0x005C77C0; // type:object size:0xDC0 scope:global align:8
+crw_rei1_body_model = .data:0x005C8580; // type:object size:0x1E8 scope:global align:8
+crw_rei2_pal = .data:0x005C8780; // type:object size:0x20 scope:global align:32
+crw_rei21_tex_txt = .data:0x005C87A0; // type:object size:0x200 scope:global align:32
+crw_rei2_v = .data:0x005C89A0; // type:object size:0xDC0 scope:global align:8
+crw_rei2_body_model = .data:0x005C9760; // type:object size:0x1E8 scope:global align:8
+ef_tamaire01_r_pal = .data:0x005C9960; // type:object size:0x20 scope:local align:32
+tama01_r_tex = .data:0x005C9980; // type:object size:0x200 scope:global align:32
+ef_tamaire01_r_v = .data:0x005C9B80; // type:object size:0x40 scope:local align:8
+tama01_model = .data:0x005C9BC0; // type:object size:0x30 scope:global align:8
+tama01_w_tex = .data:0x005C9C00; // type:object size:0x200 scope:global align:32
+tol_tamaire_pal = .data:0x005C9E00; // type:object size:0x20 scope:global align:32
+tol_tamaire_r1_tex = .data:0x005C9E20; // type:object size:0x200 scope:global align:32
+tol_tamaire_r2_tex = .data:0x005CA020; // type:object size:0x200 scope:global align:32
+tol_tamaire_r3_tex = .data:0x005CA220; // type:object size:0x200 scope:global align:32
+tol_tamaire_w1_tex = .data:0x005CA420; // type:object size:0x200 scope:global align:32
+tol_tamaire_w2_tex = .data:0x005CA620; // type:object size:0x200 scope:global align:32
+tol_tamaire_w3_tex = .data:0x005CA820; // type:object size:0x200 scope:global align:32
+tol_tamaire_v = .data:0x005CAA20; // type:object size:0x40 scope:global align:8
+tol_tamaire_model = .data:0x005CAA60; // type:object size:0x58 scope:global align:8
+tol_umb_01_pal = .data:0x005CAAC0; // type:object size:0x20 scope:global align:32
+tol_umb_01_kasa1_tex_txt = .data:0x005CAAE0; // type:object size:0x200 scope:global align:32
+tol_umb_01_tuka_tex_txt = .data:0x005CACE0; // type:object size:0x200 scope:global align:32
+tol_umb_01_v = .data:0x005CAEE0; // type:object size:0x380 scope:global align:8
+kasa_umb01_model = .data:0x005CB260; // type:object size:0x78 scope:global align:8
+e_umb01_model = .data:0x005CB2D8; // type:object size:0x70 scope:global align:8
+tol_umb02_pal = .data:0x005CB360; // type:object size:0x20 scope:local align:32
+tol_umb02_kasa2_tex_txt = .data:0x005CB380; // type:object size:0x200 scope:local align:32
+tol_umb02_kasa1_tex_txt = .data:0x005CB580; // type:object size:0x200 scope:local align:32
+tol_umb02_tuka_tex_txt = .data:0x005CB780; // type:object size:0x200 scope:local align:32
+tol_umb_02_v = .data:0x005CB980; // type:object size:0x3E0 scope:global align:8
+kasa_umb02_model = .data:0x005CBD60; // type:object size:0xA0 scope:global align:8
+e_umb02_model = .data:0x005CBE00; // type:object size:0x70 scope:global align:8
+tol_umb_03_pal = .data:0x005CBE80; // type:object size:0x20 scope:global align:32
+tol_umb_03_kasa1_tex_txt = .data:0x005CBEA0; // type:object size:0x400 scope:global align:32
+tol_umb_03_tuka_tex_txt = .data:0x005CC2A0; // type:object size:0x200 scope:global align:32
+tol_umb_03_v = .data:0x005CC4A0; // type:object size:0x380 scope:global align:8
+kasa_umb03_model = .data:0x005CC820; // type:object size:0x80 scope:global align:8
+e_umb03_model = .data:0x005CC8A0; // type:object size:0x70 scope:global align:8
+tol_umb_04_pal = .data:0x005CC920; // type:object size:0x20 scope:global align:32
+tol_umb_04_kasa1_tex_txt = .data:0x005CC940; // type:object size:0x100 scope:global align:32
+tol_umb_04_kasa2_tex_txt = .data:0x005CCA40; // type:object size:0x100 scope:global align:32
+tol_umb_04_tuka_tex_txt = .data:0x005CCB40; // type:object size:0x200 scope:global align:32
+tol_umb_04_v = .data:0x005CCD40; // type:object size:0x380 scope:global align:8
+kasa_umb04_model = .data:0x005CD0C0; // type:object size:0x90 scope:global align:8
+e_umb04_model = .data:0x005CD150; // type:object size:0x70 scope:global align:8
+tol_umb_05_pal = .data:0x005CD1C0; // type:object size:0x20 scope:local align:32
+tol_umb_05_kasa_tex_txt = .data:0x005CD1E0; // type:object size:0x200 scope:local align:32
+tol_umb_05_tuka_tex_txt = .data:0x005CD3E0; // type:object size:0x200 scope:local align:32
+tol_umb_05_v = .data:0x005CD5E0; // type:object size:0x380 scope:global align:8
+kasa_umb05_model = .data:0x005CD960; // type:object size:0x78 scope:global align:8
+e_umb05_model = .data:0x005CD9D8; // type:object size:0x70 scope:global align:8
+tol_umb_06_pal = .data:0x005CDA60; // type:object size:0x20 scope:global align:32
+tol_umb_06_kasa1_tex_txt = .data:0x005CDA80; // type:object size:0x200 scope:global align:32
+tol_umb_06_tuka_tex_txt = .data:0x005CDC80; // type:object size:0x200 scope:global align:32
+tol_umb_06_v = .data:0x005CDE80; // type:object size:0x5E0 scope:global align:8
+kasa_umb06_model = .data:0x005CE460; // type:object size:0xA0 scope:global align:8
+e_umb06_model = .data:0x005CE500; // type:object size:0x70 scope:global align:8
+tol_umb07_pal = .data:0x005CE580; // type:object size:0x20 scope:local align:32
+tol_umb07_kasa2_tex_txt = .data:0x005CE5A0; // type:object size:0x100 scope:local align:32
+tol_umb07_kasa1_tex_txt = .data:0x005CE6A0; // type:object size:0x400 scope:local align:32
+tol_umb07_tuka_tex_txt = .data:0x005CEAA0; // type:object size:0x200 scope:local align:32
+tol_umb_07_v = .data:0x005CECA0; // type:object size:0x260 scope:global align:8
+kasa_umb07_model = .data:0x005CEF00; // type:object size:0x98 scope:global align:8
+e_umb07_model = .data:0x005CEF98; // type:object size:0x70 scope:global align:8
+tol_umb08_pal = .data:0x005CF020; // type:object size:0x20 scope:local align:32
+tol_umb08_kasa1_tex_txt = .data:0x005CF040; // type:object size:0x200 scope:local align:32
+tol_umb08_kasa2_tex_txt = .data:0x005CF240; // type:object size:0x40 scope:local align:32
+tol_umb08_tuka_tex_txt = .data:0x005CF280; // type:object size:0x200 scope:local align:32
+tol_umb_08_v = .data:0x005CF480; // type:object size:0x390 scope:global align:8
+kasa_umb08_model = .data:0x005CF810; // type:object size:0x78 scope:global align:8
+e_umb08_model = .data:0x005CF888; // type:object size:0x90 scope:global align:8
+tol_umb09_pal = .data:0x005CF920; // type:object size:0x20 scope:local align:32
+tol_umb09_kasa1_tex_txt = .data:0x005CF940; // type:object size:0x200 scope:local align:32
+tol_umb09_kasa2_tex_txt = .data:0x005CFB40; // type:object size:0x40 scope:local align:32
+tol_umb09_tuka_tex_txt = .data:0x005CFB80; // type:object size:0x200 scope:local align:32
+tol_umb_09_v = .data:0x005CFD80; // type:object size:0x390 scope:global align:8
+kasa_umb09_model = .data:0x005D0110; // type:object size:0x78 scope:global align:8
+e_umb09_model = .data:0x005D0188; // type:object size:0x90 scope:global align:8
+tol_umb10_pal = .data:0x005D0220; // type:object size:0x20 scope:local align:32
+tol_umb10_kasa1_tex_txt = .data:0x005D0240; // type:object size:0x200 scope:local align:32
+tol_umb10_kasa2_tex_txt = .data:0x005D0440; // type:object size:0x40 scope:local align:32
+tol_umb10_tuka_tex_txt = .data:0x005D0480; // type:object size:0x200 scope:local align:32
+tol_umb_10_v = .data:0x005D0680; // type:object size:0x390 scope:global align:8
+kasa_umb10_model = .data:0x005D0A10; // type:object size:0x78 scope:global align:8
+e_umb10_model = .data:0x005D0A88; // type:object size:0x90 scope:global align:8
+tol_umb11_pal = .data:0x005D0B20; // type:object size:0x20 scope:local align:32
+tol_umb11_kasa1_tex_txt = .data:0x005D0B40; // type:object size:0x200 scope:local align:32
+tol_umb11_kasa2_tex_txt = .data:0x005D0D40; // type:object size:0x40 scope:local align:32
+tol_umb11_tuka_tex_txt = .data:0x005D0D80; // type:object size:0x200 scope:local align:32
+tol_umb_11_v = .data:0x005D0F80; // type:object size:0x390 scope:global align:8
+kasa_umb11_model = .data:0x005D1310; // type:object size:0x78 scope:global align:8
+e_umb11_model = .data:0x005D1388; // type:object size:0x90 scope:global align:8
+tol_umb12_pal = .data:0x005D1420; // type:object size:0x20 scope:local align:32
+tol_umb12_kasa1_tex_txt = .data:0x005D1440; // type:object size:0x400 scope:local align:32
+tol_umb12_kasa2_tex_txt = .data:0x005D1840; // type:object size:0x40 scope:local align:32 data:string
+tol_umb12_tuka_tex_txt = .data:0x005D1880; // type:object size:0x200 scope:local align:32
+tol_umb_12_v = .data:0x005D1A80; // type:object size:0x390 scope:global align:8
+kasa_umb12_model = .data:0x005D1E10; // type:object size:0x78 scope:global align:8
+e_umb12_model = .data:0x005D1E88; // type:object size:0x90 scope:global align:8
+tol_umb13_pal = .data:0x005D1F20; // type:object size:0x20 scope:local align:32
+tol_umb13_kasa1_tex_txt = .data:0x005D1F40; // type:object size:0x200 scope:local align:32
+tol_umb13_kasa2_tex_txt = .data:0x005D2140; // type:object size:0x40 scope:local align:32
+tol_umb13_tuka_tex_txt = .data:0x005D2180; // type:object size:0x200 scope:local align:32
+tol_umb_13_v = .data:0x005D2380; // type:object size:0x390 scope:global align:8
+kasa_umb13_model = .data:0x005D2710; // type:object size:0x78 scope:global align:8
+e_umb13_model = .data:0x005D2788; // type:object size:0x90 scope:global align:8
+tol_umb_14_pal = .data:0x005D2820; // type:object size:0x20 scope:local align:32
+tol_umb_14_kasa_tex_txt = .data:0x005D2840; // type:object size:0x200 scope:local align:32
+tol_umb_14_tuka_tex_txt = .data:0x005D2A40; // type:object size:0x200 scope:local align:32
+tol_umb_14_v = .data:0x005D2C40; // type:object size:0x380 scope:global align:8
+kasa_umb14_model = .data:0x005D2FC0; // type:object size:0x78 scope:global align:8
+e_umb14_model = .data:0x005D3038; // type:object size:0x70 scope:global align:8
+tol_umb_15_pal = .data:0x005D30C0; // type:object size:0x20 scope:global align:32
+tol_umb_15_kasa1_tex_txt = .data:0x005D30E0; // type:object size:0x100 scope:global align:32
+tol_umb_15_kasa2_tex_txt = .data:0x005D31E0; // type:object size:0x200 scope:global align:32
+tol_umb_15_tuka_tex_txt = .data:0x005D33E0; // type:object size:0x200 scope:global align:32
+tol_umb_15_v = .data:0x005D35E0; // type:object size:0x3C0 scope:global align:8
+kasa_umb15_model = .data:0x005D39A0; // type:object size:0x90 scope:global align:8
+e_umb15_model = .data:0x005D3A30; // type:object size:0x70 scope:global align:8
+tol_umb_16_pal = .data:0x005D3AA0; // type:object size:0x20 scope:global align:32
+tol_umb_16_kasa1_tex_txt = .data:0x005D3AC0; // type:object size:0x200 scope:global align:32
+tol_umb_16_tuka_tex_txt = .data:0x005D3CC0; // type:object size:0x200 scope:global align:32
+tol_umb_16_v = .data:0x005D3EC0; // type:object size:0x380 scope:global align:8
+kasa_umb16_model = .data:0x005D4240; // type:object size:0x78 scope:global align:8
+e_umb16_model = .data:0x005D42B8; // type:object size:0x70 scope:global align:8
+tol_umb_17_pal = .data:0x005D4340; // type:object size:0x20 scope:global align:32
+tol_umb_17_kasa_tex_txt = .data:0x005D4360; // type:object size:0x200 scope:global align:32
+tol_umb_17_tuka_tex_txt = .data:0x005D4560; // type:object size:0x200 scope:global align:32
+tol_umb_17_v = .data:0x005D4760; // type:object size:0x4D0 scope:global align:8
+kasa_umb17_model = .data:0x005D4C30; // type:object size:0xA8 scope:global align:8
+e_umb17_model = .data:0x005D4CD8; // type:object size:0x68 scope:global align:8
+tol_umb18_pal = .data:0x005D4D40; // type:object size:0x20 scope:local align:32
+tol_umb18_kasa1_tex_txt = .data:0x005D4D60; // type:object size:0x100 scope:local align:32
+tol_umb18_kasa2_tex_txt = .data:0x005D4E60; // type:object size:0x40 scope:local align:32
+tol_umb18_tuka_tex_txt = .data:0x005D4EA0; // type:object size:0x200 scope:local align:32
+tol_umb_18_v = .data:0x005D50A0; // type:object size:0x390 scope:global align:8
+kasa_umb18_model = .data:0x005D5430; // type:object size:0x78 scope:global align:8
+e_umb18_model = .data:0x005D54A8; // type:object size:0x90 scope:global align:8
+tol_umb_19_pal = .data:0x005D5540; // type:object size:0x20 scope:global align:32
+tol_umb_19_kasa_tex_txt = .data:0x005D5560; // type:object size:0x200 scope:global align:32
+tol_umb_19_tuka_tex_txt = .data:0x005D5760; // type:object size:0x200 scope:global align:32
+tol_umb_19_e_tex_txt = .data:0x005D5960; // type:object size:0x80 scope:global align:32
+tol_umb_19_v = .data:0x005D59E0; // type:object size:0x400 scope:global align:8
+kasa_umb19_model = .data:0x005D5DE0; // type:object size:0x90 scope:global align:8
+e_umb19_model = .data:0x005D5E70; // type:object size:0x88 scope:global align:8
+tol_umb_20_pal = .data:0x005D5F00; // type:object size:0x20 scope:global align:32
+tol_umb_20_kasa_tex_txt = .data:0x005D5F20; // type:object size:0x400 scope:global align:32
+tol_umb_20_e_tex_txt = .data:0x005D6320; // type:object size:0x80 scope:global align:32
+tol_umb_20_v = .data:0x005D63A0; // type:object size:0x280 scope:global align:8
+kasa_umb20_model = .data:0x005D6620; // type:object size:0x70 scope:global align:8
+e_umb20_model = .data:0x005D6690; // type:object size:0x80 scope:global align:8
+tol_umb_21_pal = .data:0x005D6720; // type:object size:0x20 scope:global align:32
+tol_umb_21_kasa_tex_txt = .data:0x005D6740; // type:object size:0x400 scope:global align:32
+tol_umb_21_tuka_tex_txt = .data:0x005D6B40; // type:object size:0x200 scope:global align:32
+tol_umb_21_v = .data:0x005D6D40; // type:object size:0x380 scope:global align:8
+kasa_umb21_model = .data:0x005D70C0; // type:object size:0x90 scope:global align:8
+e_umb21_model = .data:0x005D7150; // type:object size:0x70 scope:global align:8
+tol_umb_22_pal = .data:0x005D71C0; // type:object size:0x20 scope:local align:32
+tol_umb_22_kasa_tex_txt = .data:0x005D71E0; // type:object size:0x200 scope:global align:32
+tol_umb_22_e_tex_txt = .data:0x005D73E0; // type:object size:0x100 scope:global align:32
+tol_umb_22_v = .data:0x005D74E0; // type:object size:0x480 scope:global align:8
+kasa_umb22_model = .data:0x005D7960; // type:object size:0xA0 scope:global align:8
+e_umb22_model = .data:0x005D7A00; // type:object size:0x68 scope:global align:8
+tol_umb_23_pal = .data:0x005D7A80; // type:object size:0x20 scope:global align:32
+tol_umb_23_kasa_tex_txt = .data:0x005D7AA0; // type:object size:0x400 scope:global align:32
+tol_umb_23_tuka_tex_txt = .data:0x005D7EA0; // type:object size:0x200 scope:global align:32
+tol_umb_23_e_tex_txt = .data:0x005D80A0; // type:object size:0x80 scope:global align:32
+tol_umb_23_v = .data:0x005D8120; // type:object size:0x360 scope:global align:8
+kasa_umb23_model = .data:0x005D8480; // type:object size:0x78 scope:global align:8
+e_umb23_model = .data:0x005D84F8; // type:object size:0x88 scope:global align:8
+tol_umb_24_pal = .data:0x005D8580; // type:object size:0x20 scope:global align:32
+tol_umb_24_kasa1_tex_txt = .data:0x005D85A0; // type:object size:0x100 scope:global align:32 data:string
+tol_umb_24_kasa2_tex_txt = .data:0x005D86A0; // type:object size:0x100 scope:global align:32
+tol_umb_24_tuka_tex_txt = .data:0x005D87A0; // type:object size:0x200 scope:global align:32
+tol_umb_24_v = .data:0x005D89A0; // type:object size:0x3C0 scope:global align:8
+kasa_umb24_model = .data:0x005D8D60; // type:object size:0x90 scope:global align:8
+e_umb24_model = .data:0x005D8DF0; // type:object size:0x70 scope:global align:8
+tol_umb_25_pal = .data:0x005D8E60; // type:object size:0x20 scope:local align:32
+tol_umb_25_kasa_tex_txt = .data:0x005D8E80; // type:object size:0x200 scope:local align:32
+tol_umb_25_ya_tex_txt = .data:0x005D9080; // type:object size:0x200 scope:local align:32
+tol_umb_25_v = .data:0x005D9280; // type:object size:0x350 scope:global align:8
+kasa_umb25_model = .data:0x005D95D0; // type:object size:0xA0 scope:global align:8
+e_umb25_model = .data:0x005D9670; // type:object size:0x68 scope:global align:8
+tol_umb_26_pal = .data:0x005D96E0; // type:object size:0x20 scope:global align:32
+tol_umb_26_kasa1_tex_txt = .data:0x005D9700; // type:object size:0x100 scope:global align:32
+tol_umb_26_kasa2_tex_txt = .data:0x005D9800; // type:object size:0x200 scope:global align:32
+tol_umb_26_tuka_tex_txt = .data:0x005D9A00; // type:object size:0x200 scope:global align:32
+tol_umb_26_v = .data:0x005D9C00; // type:object size:0x3C0 scope:global align:8
+kasa_umb26_model = .data:0x005D9FC0; // type:object size:0x98 scope:global align:8
+e_umb26_model = .data:0x005DA058; // type:object size:0x70 scope:global align:8
+tol_umb_27_pal = .data:0x005DA0E0; // type:object size:0x20 scope:global align:32
+tol_umb_27_kasa1_tex_txt = .data:0x005DA100; // type:object size:0x200 scope:global align:32
+tol_umb_27_kasa2_tex_txt = .data:0x005DA300; // type:object size:0x200 scope:global align:32
+tol_umb_27_e_tex_txt = .data:0x005DA500; // type:object size:0x80 scope:global align:32
+tol_umb_27_v = .data:0x005DA580; // type:object size:0x4B0 scope:global align:8
+kasa_umb27_model = .data:0x005DAA30; // type:object size:0xB8 scope:global align:8
+e_umb27_model = .data:0x005DAAE8; // type:object size:0x68 scope:global align:8
+tol_umb_28_pal = .data:0x005DAB60; // type:object size:0x20 scope:global align:32
+tol_umb_28_kasa_tex_txt = .data:0x005DAB80; // type:object size:0x200 scope:global align:32
+tol_umb_28_tuka_tex_txt = .data:0x005DAD80; // type:object size:0x200 scope:global align:32
+tol_umb_28_v = .data:0x005DAF80; // type:object size:0x360 scope:global align:8
+kasa_umb28_model = .data:0x005DB2E0; // type:object size:0x78 scope:global align:8
+e_umb28_model = .data:0x005DB358; // type:object size:0x70 scope:global align:8
+tol_umb_29_pal = .data:0x005DB3E0; // type:object size:0x20 scope:global align:32
+tol_umb_29_kasa1_tex_txt = .data:0x005DB400; // type:object size:0x200 scope:global align:32
+tol_umb_29_tuka_tex_txt = .data:0x005DB600; // type:object size:0x200 scope:global align:32
+tol_umb_29_v = .data:0x005DB800; // type:object size:0x380 scope:global align:8
+kasa_umb29_model = .data:0x005DBB80; // type:object size:0x78 scope:global align:8
+e_umb29_model = .data:0x005DBBF8; // type:object size:0x70 scope:global align:8
+obj_shop_umb_30_pal = .data:0x005DBC80; // type:object size:0x20 scope:local align:32
+tol_umb_30_kasa1_tex_txt = .data:0x005DBCA0; // type:object size:0x200 scope:global align:32
+tol_umb_30_tuka_tex_txt = .data:0x005DBEA0; // type:object size:0x200 scope:global align:32
+tol_umb_30_v = .data:0x005DC0A0; // type:object size:0x380 scope:global align:8
+kasa_umb30_model = .data:0x005DC420; // type:object size:0x80 scope:global align:8
+e_umb30_model = .data:0x005DC4A0; // type:object size:0x70 scope:global align:8
+tol_umb_31_pal = .data:0x005DC520; // type:object size:0x20 scope:global align:32
+tol_umb_31_kasa_tex_txt = .data:0x005DC540; // type:object size:0x200 scope:global align:32
+tol_umb_31_tuka_tex_txt = .data:0x005DC740; // type:object size:0x200 scope:global align:32
+tol_umb_31_e_tex_txt = .data:0x005DC940; // type:object size:0x80 scope:global align:32
+tol_umb_31_v = .data:0x005DC9C0; // type:object size:0x360 scope:global align:8
+kasa_umb31_model = .data:0x005DCD20; // type:object size:0x78 scope:global align:8
+e_umb31_model = .data:0x005DCD98; // type:object size:0x88 scope:global align:8
+obj_shop_umb_32_pal = .data:0x005DCE20; // type:object size:0x20 scope:local align:32
+obj_shop_umb_32_kasa1_tex_txt = .data:0x005DCE40; // type:object size:0x200 scope:local align:32
+obj_shop_umb_32_tuka1_tex_txt = .data:0x005DD040; // type:object size:0x200 scope:local align:32
+tol_umb_32_v = .data:0x005DD240; // type:object size:0x380 scope:global align:8
+kasa_umb32_model = .data:0x005DD5C0; // type:object size:0x78 scope:global align:8
+e_umb32_model = .data:0x005DD638; // type:object size:0x70 scope:global align:8
+tol_umb_w_tuka_pal = .data:0x005DD6C0; // type:object size:0x20 scope:local align:32
+tol_umb_w_tuka_tex_txt = .data:0x005DD6E0; // type:object size:0x200 scope:local align:32
+tol_umb_w_v = .data:0x005DD8E0; // type:object size:0x380 scope:global align:8
+kasa_umb_w_model = .data:0x005DDC60; // type:object size:0x78 scope:global align:8
+e_umb_w_model = .data:0x005DDCD8; // type:object size:0x70 scope:global align:8
+tol_utiwa1_pal = .data:0x005DDD60; // type:object size:0x20 scope:global align:32
+tol_utiwa_1_main2_tex_txt = .data:0x005DDD80; // type:object size:0x200 scope:global align:32
+tol_utiwa_1_main1_tex_txt = .data:0x005DDF80; // type:object size:0x200 scope:global align:32
+tol_utiwa_1_v = .data:0x005DE180; // type:object size:0x80 scope:global align:8
+main_utiwa1_model = .data:0x005DE200; // type:object size:0x70 scope:global align:8
+crw_zinnia1_pal = .data:0x005DE280; // type:object size:0x20 scope:global align:32
+crw_zinnia1_tex_txt = .data:0x005DE2A0; // type:object size:0x200 scope:global align:32
+crw_zinnia2_tex_txt = .data:0x005DE4A0; // type:object size:0x80 scope:global align:32
+crw_zinnia1_v = .data:0x005DE520; // type:object size:0x440 scope:global align:8
+crw_zinnia1_body_model = .data:0x005DE960; // type:object size:0x160 scope:global align:8
+crw_zinnia2_pal = .data:0x005DEAC0; // type:object size:0x20 scope:global align:32
+crw_zinnia21_tex_txt = .data:0x005DEAE0; // type:object size:0x200 scope:global align:32
+crw_zinnia22_tex_txt = .data:0x005DECE0; // type:object size:0x80 scope:global align:32
+crw_zinnia2_v = .data:0x005DED60; // type:object size:0x440 scope:global align:8
+crw_zinnia2_body_model = .data:0x005DF1A0; // type:object size:0x160 scope:global align:8
+test01_info = .data:0x005DF300; // type:object size:0x38 scope:global align:4
+TEST01_player_data = .data:0x005DF338; // type:object size:0x10 scope:global align:4
+TEST01_ctrl_actor_data = .data:0x005DF348; // type:object size:0x18 scope:global align:4
+TEST01_actor_data = .data:0x005DF360; // type:object size:0x20 scope:global align:4
+TEST01_object_bank = .data:0x005DF380; // type:object size:0x2 scope:global align:4
+test02_info = .data:0x005DF388; // type:object size:0x28 scope:global align:4
+TEST02_player_data = .data:0x005DF3B0; // type:object size:0x10 scope:global align:4
+TEST02_ctrl_actor_data = .data:0x005DF3C0; // type:object size:0x18 scope:global align:4
+test03_info = .data:0x005DF3D8; // type:object size:0x38 scope:global align:4
+TEST03_player_data = .data:0x005DF410; // type:object size:0x10 scope:global align:4
+TEST03_ctrl_actor_data = .data:0x005DF420; // type:object size:0x18 scope:global align:4
+TEST03_actor_data = .data:0x005DF438; // type:object size:0x20 scope:global align:4
+TEST03_object_bank = .data:0x005DF458; // type:object size:0x8 scope:global align:4
+test04_info = .data:0x005DF460; // type:object size:0x28 scope:global align:4
+TEST04_player_data = .data:0x005DF488; // type:object size:0x10 scope:global align:4
+TEST04_ctrl_actor_data = .data:0x005DF498; // type:object size:0x18 scope:global align:4
+test05_info = .data:0x005DF4B0; // type:object size:0x28 scope:global align:4
+TEST05_player_data = .data:0x005DF4D8; // type:object size:0x10 scope:global align:4
+TEST05_ctrl_actor_data = .data:0x005DF4E8; // type:object size:0xA scope:global align:4
+tig_1_v = .data:0x005DF4F8; // type:object size:0x1AC0 scope:global align:8
+head_tig_model = .data:0x005E0FB8; // type:object size:0x1D8 scope:global align:8
+mouth_tig_model = .data:0x005E1190; // type:object size:0x88 scope:global align:8
+Rarm2_tig_model = .data:0x005E1218; // type:object size:0x88 scope:global align:8
+Rarm1_tig_model = .data:0x005E12A0; // type:object size:0x78 scope:global align:8
+Larm2_tig_model = .data:0x005E1318; // type:object size:0x88 scope:global align:8
+Larm1_tig_model = .data:0x005E13A0; // type:object size:0x78 scope:global align:8
+chest_tig_model = .data:0x005E1418; // type:object size:0xA0 scope:global align:8
+tail1_tig_model = .data:0x005E14B8; // type:object size:0x58 scope:global align:8
+tail2_tig_model = .data:0x005E1510; // type:object size:0x90 scope:global align:8
+Rfoot2_tig_model = .data:0x005E15A0; // type:object size:0x88 scope:global align:8
+Rfoot1_tig_model = .data:0x005E1628; // type:object size:0x80 scope:global align:8
+Lfoot2_tig_model = .data:0x005E16A8; // type:object size:0x88 scope:global align:8
+Lfoot1_tig_model = .data:0x005E1730; // type:object size:0x80 scope:global align:8
+base_tig_model = .data:0x005E17B0; // type:object size:0x98 scope:global align:8
+cKF_je_r_tig_1_tbl = .data:0x005E1848; // type:object size:0x138 scope:global align:4
+cKF_bs_r_tig_1 = .data:0x005E1980; // type:object size:0x8 scope:global align:4
+tig_1_pal = .data:0x005E19A0; // type:object size:0x20 scope:global align:32
+tig_1_eye1_TA_tex_txt = .data:0x005E19C0; // type:object size:0x100 scope:global align:32
+tig_1_eye2_TA_tex_txt = .data:0x005E1AC0; // type:object size:0x100 scope:global align:32
+tig_1_eye3_TA_tex_txt = .data:0x005E1BC0; // type:object size:0x100 scope:global align:32
+tig_1_eye4_TA_tex_txt = .data:0x005E1CC0; // type:object size:0x100 scope:global align:32
+tig_1_eye5_TA_tex_txt = .data:0x005E1DC0; // type:object size:0x100 scope:global align:32
+tig_1_eye6_TA_tex_txt = .data:0x005E1EC0; // type:object size:0x100 scope:global align:32
+tig_1_eye7_TA_tex_txt = .data:0x005E1FC0; // type:object size:0x100 scope:global align:32
+tig_1_eye8_TA_tex_txt = .data:0x005E20C0; // type:object size:0x100 scope:global align:32
+tig_1_tmem_txt = .data:0x005E21C0; // type:object size:0x580 scope:global align:32
+tig_2_pal = .data:0x005E2740; // type:object size:0x20 scope:global align:32
+tig_2_eye1_TA_tex_txt = .data:0x005E2760; // type:object size:0x100 scope:global align:32
+tig_2_eye2_TA_tex_txt = .data:0x005E2860; // type:object size:0x100 scope:global align:32
+tig_2_eye3_TA_tex_txt = .data:0x005E2960; // type:object size:0x100 scope:global align:32
+tig_2_eye4_TA_tex_txt = .data:0x005E2A60; // type:object size:0x100 scope:global align:32
+tig_2_eye5_TA_tex_txt = .data:0x005E2B60; // type:object size:0x100 scope:global align:32
+tig_2_eye6_TA_tex_txt = .data:0x005E2C60; // type:object size:0x100 scope:global align:32
+tig_2_eye7_TA_tex_txt = .data:0x005E2D60; // type:object size:0x100 scope:global align:32
+tig_2_eye8_TA_tex_txt = .data:0x005E2E60; // type:object size:0x100 scope:global align:32
+tig_2_tmem_txt = .data:0x005E2F60; // type:object size:0x580 scope:global align:32
+tig_3_pal = .data:0x005E34E0; // type:object size:0x20 scope:global align:32
+tig_3_eye1_TA_tex_txt = .data:0x005E3500; // type:object size:0x100 scope:global align:32
+tig_3_eye2_TA_tex_txt = .data:0x005E3600; // type:object size:0x100 scope:global align:32
+tig_3_eye3_TA_tex_txt = .data:0x005E3700; // type:object size:0x100 scope:global align:32
+tig_3_eye4_TA_tex_txt = .data:0x005E3800; // type:object size:0x100 scope:global align:32
+tig_3_eye5_TA_tex_txt = .data:0x005E3900; // type:object size:0x100 scope:global align:32
+tig_3_eye6_TA_tex_txt = .data:0x005E3A00; // type:object size:0x100 scope:global align:32
+tig_3_eye7_TA_tex_txt = .data:0x005E3B00; // type:object size:0x100 scope:global align:32
+tig_3_eye8_TA_tex_txt = .data:0x005E3C00; // type:object size:0x100 scope:global align:32
+tig_3_tmem_txt = .data:0x005E3D00; // type:object size:0x580 scope:global align:32
+tig_4_pal = .data:0x005E4280; // type:object size:0x20 scope:global align:32
+tig_4_eye1_TA_tex_txt = .data:0x005E42A0; // type:object size:0x100 scope:global align:32
+tig_4_eye2_TA_tex_txt = .data:0x005E43A0; // type:object size:0x100 scope:global align:32
+tig_4_eye3_TA_tex_txt = .data:0x005E44A0; // type:object size:0x100 scope:global align:32
+tig_4_eye4_TA_tex_txt = .data:0x005E45A0; // type:object size:0x100 scope:global align:32
+tig_4_eye5_TA_tex_txt = .data:0x005E46A0; // type:object size:0x100 scope:global align:32
+tig_4_eye6_TA_tex_txt = .data:0x005E47A0; // type:object size:0x100 scope:global align:32
+tig_4_eye7_TA_tex_txt = .data:0x005E48A0; // type:object size:0x100 scope:global align:32
+tig_4_eye8_TA_tex_txt = .data:0x005E49A0; // type:object size:0x100 scope:global align:32
+tig_4_tmem_txt = .data:0x005E4AA0; // type:object size:0x580 scope:global align:32
+log_win_logo3_tex = .data:0x005E5020; // type:object size:0x400 scope:global align:4
+log_win_logo4_tex = .data:0x005E5420; // type:object size:0x400 scope:global align:4
+log_win_nintendo1_tex = .data:0x005E5820; // type:object size:0x400 scope:global align:4
+log_win_nintendo2_tex = .data:0x005E5C20; // type:object size:0x400 scope:global align:4
+log_win_nintendo3_tex = .data:0x005E6020; // type:object size:0x400 scope:global align:4
+cKF_ckcb_r_logo_us_animal_tbl = .data:0x005E6420; // type:object size:0x15 scope:global align:4
+cKF_kn_logo_us_animal_tbl = .data:0x005E6438; // type:object size:0x4E scope:global align:4
+cKF_c_logo_us_animal_tbl = .data:0x005E6488; // type:object size:0x36 scope:global align:4
+cKF_ds_logo_us_animal_tbl = .data:0x005E64C0; // type:object size:0x52E scope:global align:4
+cKF_ba_r_logo_us_animal = .data:0x005E69F0; // type:object size:0x14 scope:global align:4
+logo_us_pal = .data:0x005E6A20; // type:object size:0x20 scope:local align:32
+logo_us_l_tex_txt = .data:0x005E6A40; // type:object size:0x600 scope:global align:32
+logo_us_a_tex_txt = .data:0x005E7040; // type:object size:0x800 scope:global align:32
+logo_us_m_1_tex_txt = .data:0x005E7840; // type:object size:0x800 scope:global align:32
+logo_us_m_2_tex_txt = .data:0x005E8040; // type:object size:0x400 scope:global align:32
+logo_us_i_tex_txt = .data:0x005E8440; // type:object size:0x600 scope:local align:32
+logo_us_n_tex_txt = .data:0x005E8A40; // type:object size:0x800 scope:local align:32
+logo_us_a_2_tex_txt = .data:0x005E9240; // type:object size:0x400 scope:global align:32
+logo_us_a_1_tex_txt = .data:0x005E9640; // type:object size:0x800 scope:global align:32
+logo_us_animal_v = .data:0x005E9E40; // type:object size:0x200 scope:global align:8
+logo_us_z_model = .data:0x005EA040; // type:object size:0x30 scope:global align:8
+logo_us_za_model = .data:0x005EA070; // type:object size:0x30 scope:global align:8
+logo_us_zmB_model = .data:0x005EA0A0; // type:object size:0x30 scope:global align:8
+logo_us_zmA_model = .data:0x005EA0D0; // type:object size:0x30 scope:global align:8
+logo_us_zi_model = .data:0x005EA100; // type:object size:0x30 scope:global align:8
+logo_us_zn_model = .data:0x005EA130; // type:object size:0x30 scope:global align:8
+logo_us_zaaB_model = .data:0x005EA160; // type:object size:0x30 scope:global align:8
+logo_us_zaaA_model = .data:0x005EA190; // type:object size:0x30 scope:global align:8
+cKF_je_r_logo_us_animal_tbl = .data:0x005EA1C0; // type:object size:0xFC scope:global align:4
+cKF_bs_r_logo_us_animal = .data:0x005EA2BC; // type:object size:0x8 scope:global align:4
+logo_us_back_4_tex_4i4_txt = .data:0x005EA2E0; // type:object size:0x1000 scope:global align:32
+logo_us_back_3_tex_4i4_txt = .data:0x005EB2E0; // type:object size:0x1000 scope:global align:32
+logo_us_back_1_tex_4i4_txt = .data:0x005EC2E0; // type:object size:0x1000 scope:global align:32
+logo_us_back_2_tex_4i4_txt = .data:0x005ED2E0; // type:object size:0x1000 scope:global align:32
+logo_us_back_v = .data:0x005EE2E0; // type:object size:0x100 scope:global align:8
+logo_us_backD_model = .data:0x005EE3E0; // type:object size:0x28 scope:global align:8
+logo_us_backC_model = .data:0x005EE408; // type:object size:0x28 scope:global align:8
+logo_us_backB_model = .data:0x005EE430; // type:object size:0x28 scope:global align:8
+logo_us_backA_model = .data:0x005EE458; // type:object size:0x28 scope:global align:8
+cKF_ckcb_r_logo_us_cros_tbl = .data:0x005EE480; // type:object size:0xE scope:global align:4
+cKF_kn_logo_us_cros_tbl = .data:0x005EE490; // type:object size:0x36 scope:global align:4
+cKF_c_logo_us_cros_tbl = .data:0x005EE4C8; // type:object size:0x24 scope:global align:4
+cKF_ds_logo_us_cros_tbl = .data:0x005EE4EC; // type:object size:0x630 scope:global align:4
+cKF_ba_r_logo_us_cros = .data:0x005EEB1C; // type:object size:0x14 scope:global align:4
+logo_us_pal = .data:0x005EEB40; // type:object size:0x20 scope:local align:32
+logo_us_s_tex_txt = .data:0x005EEB60; // type:object size:0x600 scope:local align:32
+logo_us_o_tex_txt = .data:0x005EF160; // type:object size:0x800 scope:global align:32
+logo_us_r_tex_txt = .data:0x005EF960; // type:object size:0x800 scope:global align:32
+logo_us_c_1_tex_txt = .data:0x005F0160; // type:object size:0x800 scope:global align:32
+logo_us_c_2_tex_txt = .data:0x005F0960; // type:object size:0x400 scope:global align:32
+logo_us_cros_v = .data:0x005F0D60; // type:object size:0x140 scope:global align:8
+logo_us_zs_model = .data:0x005F0EA0; // type:object size:0x30 scope:global align:8
+logo_us_zr_model = .data:0x005F0ED0; // type:object size:0x30 scope:global align:8
+logo_us_zo_model = .data:0x005F0F00; // type:object size:0x30 scope:global align:8
+logo_us_zcB_model = .data:0x005F0F30; // type:object size:0x30 scope:global align:8
+logo_us_zcA_model = .data:0x005F0F60; // type:object size:0x30 scope:global align:8
+cKF_je_r_logo_us_cros_tbl = .data:0x005F0F90; // type:object size:0xA8 scope:global align:4
+cKF_bs_r_logo_us_cros = .data:0x005F1038; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_logo_us_sing_tbl = .data:0x005F1040; // type:object size:0xE scope:global align:4
+cKF_kn_logo_us_sing_tbl = .data:0x005F1050; // type:object size:0x36 scope:global align:4
+cKF_c_logo_us_sing_tbl = .data:0x005F1088; // type:object size:0x24 scope:global align:4
+cKF_ds_logo_us_sing_tbl = .data:0x005F10AC; // type:object size:0x696 scope:global align:4
+cKF_ba_r_logo_us_sing = .data:0x005F1744; // type:object size:0x14 scope:global align:4
+logo_us_pal = .data:0x005F1760; // type:object size:0x20 scope:local align:32
+logo_us_g_1_tex_txt = .data:0x005F1780; // type:object size:0x800 scope:global align:32
+logo_us_g_2_tex_txt = .data:0x005F1F80; // type:object size:0x400 scope:global align:32
+logo_us_n_tex_txt = .data:0x005F2380; // type:object size:0x800 scope:local align:32
+logo_us_i_tex_txt = .data:0x005F2B80; // type:object size:0x600 scope:local align:32
+logo_us_s_tex_txt = .data:0x005F3180; // type:object size:0x600 scope:local align:32
+logo_us_sing_v = .data:0x005F3780; // type:object size:0x140 scope:global align:8
+logo_us_zss_model = .data:0x005F38C0; // type:object size:0x30 scope:global align:8
+logo_us_znn_model = .data:0x005F38F0; // type:object size:0x30 scope:global align:8
+logo_us_zii_model = .data:0x005F3920; // type:object size:0x30 scope:global align:8
+logo_us_zgB_model = .data:0x005F3950; // type:object size:0x30 scope:global align:8
+logo_us_zgA_model = .data:0x005F3980; // type:object size:0x30 scope:global align:8
+cKF_je_r_logo_us_sing_tbl = .data:0x005F39B0; // type:object size:0xA8 scope:global align:4
+cKF_bs_r_logo_us_sing = .data:0x005F3A58; // type:object size:0x8 scope:global align:4
+logo_us_tm_tex_4i4_txt = .data:0x005F3A60; // type:object size:0x200 scope:global align:32
+logo_us_tm_v = .data:0x005F3C60; // type:object size:0x40 scope:global align:8
+logo_us_tm_model = .data:0x005F3CA0; // type:object size:0x38 scope:global align:8
+pact0_head_table = .data:0x005F3CD8; // type:object size:0xC scope:global align:4
+pact0_key_data = .data:0x005F3CE4; // type:object size:0xE4E scope:global align:4
+pact1_head_table = .data:0x005F4B38; // type:object size:0xC scope:global align:4
+pact1_key_data = .data:0x005F4B44; // type:object size:0xE50 scope:global align:4
+pact2_head_table = .data:0x005F5998; // type:object size:0xC scope:global align:4
+pact2_key_data = .data:0x005F59A4; // type:object size:0xE72 scope:global align:4
+pact3_head_table = .data:0x005F6818; // type:object size:0xC scope:global align:4
+pact3_key_data = .data:0x005F6824; // type:object size:0xE6E scope:global align:4
+pact4_head_table = .data:0x005F7698; // type:object size:0xC scope:global align:4
+pact4_key_data = .data:0x005F76A4; // type:object size:0xE60 scope:global align:4
+end_1_v = .data:0x005F8508; // type:object size:0x1C50 scope:global align:8
+head_end_model = .data:0x005FA158; // type:object size:0x198 scope:global align:8
+Rarm2_end_model = .data:0x005FA2F0; // type:object size:0x90 scope:global align:8
+Rarm1_end_model = .data:0x005FA380; // type:object size:0x78 scope:global align:8
+Larm2_end_model = .data:0x005FA3F8; // type:object size:0x90 scope:global align:8
+Larm1_end_model = .data:0x005FA488; // type:object size:0x78 scope:global align:8
+chest_end_model = .data:0x005FA500; // type:object size:0x88 scope:global align:8
+tail1_end_model = .data:0x005FA588; // type:object size:0x58 scope:global align:8
+Rfoot3_end_model = .data:0x005FA5E0; // type:object size:0x80 scope:global align:8
+Rfoot2_end_model = .data:0x005FA660; // type:object size:0x78 scope:global align:8
+Rfoot1_end_model = .data:0x005FA6D8; // type:object size:0x90 scope:global align:8
+Lfoot3_end_model = .data:0x005FA768; // type:object size:0x98 scope:global align:8
+Lfoot2_end_model = .data:0x005FA800; // type:object size:0x80 scope:global align:8
+Lfoot1_end_model = .data:0x005FA880; // type:object size:0x80 scope:global align:8
+base_end_model = .data:0x005FA900; // type:object size:0x168 scope:global align:8
+cKF_je_r_end_1_tbl = .data:0x005FAA68; // type:object size:0x138 scope:global align:4
+cKF_bs_r_end_1 = .data:0x005FABA0; // type:object size:0x8 scope:global align:4
+end_1_pal = .data:0x005FABC0; // type:object size:0x20 scope:global align:32
+end_1_eye1_TA_tex_txt = .data:0x005FABE0; // type:object size:0x100 scope:global align:32
+end_1_eye2_TA_tex_txt = .data:0x005FACE0; // type:object size:0x100 scope:global align:32
+end_1_eye3_TA_tex_txt = .data:0x005FADE0; // type:object size:0x100 scope:global align:32
+end_1_eye4_TA_tex_txt = .data:0x005FAEE0; // type:object size:0x100 scope:global align:32
+end_1_eye5_TA_tex_txt = .data:0x005FAFE0; // type:object size:0x100 scope:global align:32
+end_1_eye6_TA_tex_txt = .data:0x005FB0E0; // type:object size:0x100 scope:global align:32
+end_1_eye7_TA_tex_txt = .data:0x005FB1E0; // type:object size:0x100 scope:global align:32
+end_1_eye8_TA_tex_txt = .data:0x005FB2E0; // type:object size:0x100 scope:global align:32
+end_1_mouth1_TA_tex_txt = .data:0x005FB3E0; // type:object size:0x100 scope:global align:32
+end_1_mouth2_TA_tex_txt = .data:0x005FB4E0; // type:object size:0x100 scope:global align:32
+end_1_mouth3_TA_tex_txt = .data:0x005FB5E0; // type:object size:0x100 scope:global align:32
+end_1_mouth4_TA_tex_txt = .data:0x005FB6E0; // type:object size:0x100 scope:global align:32
+end_1_mouth5_TA_tex_txt = .data:0x005FB7E0; // type:object size:0x100 scope:global align:32
+end_1_mouth6_TA_tex_txt = .data:0x005FB8E0; // type:object size:0x100 scope:global align:32
+end_1_tmem_txt = .data:0x005FB9E0; // type:object size:0x4C0 scope:global align:32
+cKF_ckcb_r_obj_romtrain_door_tbl = .data:0x005FBEA0; // type:object size:0x4 scope:global align:4
+cKF_kn_obj_romtrain_door_tbl = .data:0x005FBEA4; // type:object size:0x12 scope:global align:4
+cKF_c_obj_romtrain_door_tbl = .data:0x005FBEB8; // type:object size:0xC scope:global align:4
+cKF_ds_obj_romtrain_door_tbl = .data:0x005FBEC4; // type:object size:0x90 scope:global align:4
+cKF_ba_r_obj_romtrain_door = .data:0x005FBF54; // type:object size:0x14 scope:global align:4
+obj_romtrain_door_pal = .data:0x005FBF80; // type:object size:0x20 scope:global align:32
+obj_romtrain_door_tex_txt = .data:0x005FBFA0; // type:object size:0x400 scope:global align:32
+obj_romtrain_glass_tex_txt = .data:0x005FC3A0; // type:object size:0x100 scope:global align:32
+obj_romtrain_door_v = .data:0x005FC4A0; // type:object size:0xF0 scope:global align:8
+obj_romtrain_base_model = .data:0x005FC590; // type:object size:0x58 scope:global align:8
+obj_romtrain_glass_model = .data:0x005FC5E8; // type:object size:0x58 scope:global align:8
+obj_romtrain_door_model = .data:0x005FC640; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_romtrain_door_tbl = .data:0x005FC6A0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_obj_romtrain_door = .data:0x005FC6D0; // type:object size:0x8 scope:global align:4
+rom_train_4_pal = .data:0x005FC6E0; // type:object size:0x20 scope:global align:32
+rom_train_3_pal = .data:0x005FC700; // type:object size:0x20 scope:local align:32
+rom_train_bgtree_tex = .data:0x005FC720; // type:object size:0x800 scope:global align:32
+rom_train_bgsky_tex = .data:0x005FCF20; // type:object size:0x80 scope:global align:32
+rom_train_tunnel_tex = .data:0x005FCFA0; // type:object size:0x400 scope:global align:32
+rom_train_bgcloud_tex_rgb_i4 = .data:0x005FD3A0; // type:object size:0x800 scope:global align:32
+rom_train_glass_tex_rgb_i4 = .data:0x005FDBA0; // type:object size:0x80 scope:global align:32
+rom_train_shine_tex_rgb_i4 = .data:0x005FDC20; // type:object size:0x100 scope:global align:32
+rom_train_out_v = .data:0x005FDD20; // type:object size:0x300 scope:global align:8
+rom_train_out_bgcloud_modelT = .data:0x005FE020; // type:object size:0x60 scope:global align:8
+rom_train_out_bgtree_modelT = .data:0x005FE080; // type:object size:0x68 scope:global align:8
+rom_train_out_shineglass_modelT = .data:0x005FE0E8; // type:object size:0x68 scope:global align:8
+rom_train_out_tunnel_model = .data:0x005FE150; // type:object size:0x68 scope:global align:8
+rom_train_out_bgsky_model = .data:0x005FE1B8; // type:object size:0x58 scope:global align:8
+tuk_1_v = .data:0x005FE210; // type:object size:0x1D50 scope:global align:8
+head_tuk_model = .data:0x005FFF60; // type:object size:0x2E8 scope:global align:8
+mouth_tuk_model = .data:0x00600248; // type:object size:0x78 scope:global align:8
+Rarm2_tuk_model = .data:0x006002C0; // type:object size:0x80 scope:global align:8
+Rarm1_tuk_model = .data:0x00600340; // type:object size:0x78 scope:global align:8
+Larm2_tuk_model = .data:0x006003B8; // type:object size:0x80 scope:global align:8
+Larm1_tuk_model = .data:0x00600438; // type:object size:0x78 scope:global align:8
+chest_tuk_model = .data:0x006004B0; // type:object size:0x138 scope:global align:8
+tail_tuk_model = .data:0x006005E8; // type:object size:0xF8 scope:global align:8
+Rfoot3_tuk_model = .data:0x006006E0; // type:object size:0xA0 scope:global align:8
+Rfoot2_tuk_model = .data:0x00600780; // type:object size:0x80 scope:global align:8
+Rfoot1_tuk_model = .data:0x00600800; // type:object size:0x58 scope:global align:8
+Lfoot3_tuk_model = .data:0x00600858; // type:object size:0xA0 scope:global align:8
+Lfoot2_tuk_model = .data:0x006008F8; // type:object size:0x80 scope:global align:8
+Lfoot1_tuk_model = .data:0x00600978; // type:object size:0x58 scope:global align:8
+base_tuk_model = .data:0x006009D0; // type:object size:0x70 scope:global align:8
+cKF_je_r_tuk_1_tbl = .data:0x00600A40; // type:object size:0x138 scope:global align:4
+cKF_bs_r_tuk_1 = .data:0x00600B78; // type:object size:0x8 scope:global align:4
+tuk_1_pal = .data:0x00600B80; // type:object size:0x20 scope:global align:32
+tuk_1_eye1_TA_tex_txt = .data:0x00600BA0; // type:object size:0x100 scope:global align:32
+tuk_1_eye2_TA_tex_txt = .data:0x00600CA0; // type:object size:0x100 scope:global align:32
+tuk_1_eye3_TA_tex_txt = .data:0x00600DA0; // type:object size:0x100 scope:global align:32
+tuk_1_eye4_TA_tex_txt = .data:0x00600EA0; // type:object size:0x100 scope:global align:32
+tuk_1_eye5_TA_tex_txt = .data:0x00600FA0; // type:object size:0x100 scope:global align:32
+tuk_1_eye6_TA_tex_txt = .data:0x006010A0; // type:object size:0x100 scope:global align:32
+tuk_1_eye7_TA_tex_txt = .data:0x006011A0; // type:object size:0x100 scope:global align:32
+tuk_1_eye8_TA_tex_txt = .data:0x006012A0; // type:object size:0x100 scope:global align:32
+tuk_1_tmem_txt = .data:0x006013A0; // type:object size:0x680 scope:global align:32
+tol_sao_1_pal = .data:0x00601A20; // type:object size:0x20 scope:local align:32
+tol_sao_1_uki1_tex_txt = .data:0x00601A40; // type:object size:0x100 scope:local align:32
+tol_uki_1_v = .data:0x00601B40; // type:object size:0x180 scope:local align:8
+tol_uki1_model = .data:0x00601CC0; // type:object size:0x88 scope:global align:8
+tol_sao_2_pal = .data:0x00601D60; // type:object size:0x20 scope:local align:32
+tol_sao_2_uki1_tex_txt = .data:0x00601D80; // type:object size:0x100 scope:local align:32
+tol_uki_2_v = .data:0x00601E80; // type:object size:0x180 scope:local align:8
+tol_uki2_model = .data:0x00602000; // type:object size:0x88 scope:global align:8
+wol_1_v = .data:0x00602088; // type:object size:0x1760 scope:global align:8
+head_wol_model = .data:0x006037E8; // type:object size:0x140 scope:global align:8
+mouth_wol_model = .data:0x00603928; // type:object size:0x88 scope:global align:8
+Rarm2_wol_model = .data:0x006039B0; // type:object size:0x88 scope:global align:8
+Rarm1_wol_model = .data:0x00603A38; // type:object size:0x78 scope:global align:8
+Larm2_wol_model = .data:0x00603AB0; // type:object size:0x88 scope:global align:8
+Larm1_wol_model = .data:0x00603B38; // type:object size:0x78 scope:global align:8
+chest_wol_model = .data:0x00603BB0; // type:object size:0xA0 scope:global align:8
+tail1_wol_model = .data:0x00603C50; // type:object size:0x60 scope:global align:8
+tail2_wol_model = .data:0x00603CB0; // type:object size:0xB8 scope:global align:8
+Rfoot2_wol_model = .data:0x00603D68; // type:object size:0x80 scope:global align:8
+Rfoot1_wol_model = .data:0x00603DE8; // type:object size:0x80 scope:global align:8
+Lfoot2_wol_model = .data:0x00603E68; // type:object size:0x80 scope:global align:8
+Lfoot1_wol_model = .data:0x00603EE8; // type:object size:0x80 scope:global align:8
+base_wol_model = .data:0x00603F68; // type:object size:0xA8 scope:global align:8
+cKF_je_r_wol_1_tbl = .data:0x00604010; // type:object size:0x138 scope:global align:4
+cKF_bs_r_wol_1 = .data:0x00604148; // type:object size:0x8 scope:global align:4
+wol_1_pal = .data:0x00604160; // type:object size:0x20 scope:global align:32
+wol_1_eye1_TA_tex_txt = .data:0x00604180; // type:object size:0x100 scope:global align:32
+wol_1_eye2_TA_tex_txt = .data:0x00604280; // type:object size:0x100 scope:global align:32
+wol_1_eye3_TA_tex_txt = .data:0x00604380; // type:object size:0x100 scope:global align:32
+wol_1_eye4_TA_tex_txt = .data:0x00604480; // type:object size:0x100 scope:global align:32
+wol_1_eye5_TA_tex_txt = .data:0x00604580; // type:object size:0x100 scope:global align:32
+wol_1_eye6_TA_tex_txt = .data:0x00604680; // type:object size:0x100 scope:global align:32
+wol_1_eye7_TA_tex_txt = .data:0x00604780; // type:object size:0x100 scope:global align:32
+wol_1_eye8_TA_tex_txt = .data:0x00604880; // type:object size:0x100 scope:global align:32
+wol_1_tmem_txt = .data:0x00604980; // type:object size:0x400 scope:global align:32
+wol_2_pal = .data:0x00604D80; // type:object size:0x20 scope:global align:32
+wol_2_eye1_TA_tex_txt = .data:0x00604DA0; // type:object size:0x100 scope:global align:32
+wol_2_eye2_TA_tex_txt = .data:0x00604EA0; // type:object size:0x100 scope:global align:32
+wol_2_eye3_TA_tex_txt = .data:0x00604FA0; // type:object size:0x100 scope:global align:32
+wol_2_eye4_TA_tex_txt = .data:0x006050A0; // type:object size:0x100 scope:global align:32
+wol_2_eye5_TA_tex_txt = .data:0x006051A0; // type:object size:0x100 scope:global align:32
+wol_2_eye6_TA_tex_txt = .data:0x006052A0; // type:object size:0x100 scope:global align:32
+wol_2_eye7_TA_tex_txt = .data:0x006053A0; // type:object size:0x100 scope:global align:32
+wol_2_eye8_TA_tex_txt = .data:0x006054A0; // type:object size:0x100 scope:global align:32
+wol_2_tmem_txt = .data:0x006055A0; // type:object size:0x400 scope:global align:32
+wol_3_pal = .data:0x006059A0; // type:object size:0x20 scope:global align:32
+wol_3_eye1_TA_tex_txt = .data:0x006059C0; // type:object size:0x100 scope:global align:32
+wol_3_eye2_TA_tex_txt = .data:0x00605AC0; // type:object size:0x100 scope:global align:32
+wol_3_eye3_TA_tex_txt = .data:0x00605BC0; // type:object size:0x100 scope:global align:32
+wol_3_eye4_TA_tex_txt = .data:0x00605CC0; // type:object size:0x100 scope:global align:32
+wol_3_eye5_TA_tex_txt = .data:0x00605DC0; // type:object size:0x100 scope:global align:32
+wol_3_eye6_TA_tex_txt = .data:0x00605EC0; // type:object size:0x100 scope:global align:32
+wol_3_eye7_TA_tex_txt = .data:0x00605FC0; // type:object size:0x100 scope:global align:32
+wol_3_eye8_TA_tex_txt = .data:0x006060C0; // type:object size:0x100 scope:global align:32
+wol_3_tmem_txt = .data:0x006061C0; // type:object size:0x400 scope:global align:32
+wol_4_pal = .data:0x006065C0; // type:object size:0x20 scope:global align:32
+wol_4_eye1_TA_tex_txt = .data:0x006065E0; // type:object size:0x100 scope:global align:32
+wol_4_eye2_TA_tex_txt = .data:0x006066E0; // type:object size:0x100 scope:global align:32
+wol_4_eye3_TA_tex_txt = .data:0x006067E0; // type:object size:0x100 scope:global align:32
+wol_4_eye4_TA_tex_txt = .data:0x006068E0; // type:object size:0x100 scope:global align:32
+wol_4_eye5_TA_tex_txt = .data:0x006069E0; // type:object size:0x100 scope:global align:32
+wol_4_eye6_TA_tex_txt = .data:0x00606AE0; // type:object size:0x100 scope:global align:32
+wol_4_eye7_TA_tex_txt = .data:0x00606BE0; // type:object size:0x100 scope:global align:32
+wol_4_eye8_TA_tex_txt = .data:0x00606CE0; // type:object size:0x100 scope:global align:32
+wol_4_tmem_txt = .data:0x00606DE0; // type:object size:0x400 scope:global align:32
+wol_5_pal = .data:0x006071E0; // type:object size:0x20 scope:global align:32
+wol_5_eye1_TA_tex_txt = .data:0x00607200; // type:object size:0x100 scope:global align:32
+wol_5_eye2_TA_tex_txt = .data:0x00607300; // type:object size:0x100 scope:global align:32
+wol_5_eye3_TA_tex_txt = .data:0x00607400; // type:object size:0x100 scope:global align:32
+wol_5_eye4_TA_tex_txt = .data:0x00607500; // type:object size:0x100 scope:global align:32
+wol_5_eye5_TA_tex_txt = .data:0x00607600; // type:object size:0x100 scope:global align:32
+wol_5_eye6_TA_tex_txt = .data:0x00607700; // type:object size:0x100 scope:global align:32
+wol_5_eye7_TA_tex_txt = .data:0x00607800; // type:object size:0x100 scope:global align:32
+wol_5_eye8_TA_tex_txt = .data:0x00607900; // type:object size:0x100 scope:global align:32
+wol_5_tmem_txt = .data:0x00607A00; // type:object size:0x400 scope:global align:32
+wol_6_pal = .data:0x00607E00; // type:object size:0x20 scope:global align:32
+wol_6_eye1_TA_tex_txt = .data:0x00607E20; // type:object size:0x100 scope:global align:32
+wol_6_eye2_TA_tex_txt = .data:0x00607F20; // type:object size:0x100 scope:global align:32
+wol_6_eye3_TA_tex_txt = .data:0x00608020; // type:object size:0x100 scope:global align:32
+wol_6_eye4_TA_tex_txt = .data:0x00608120; // type:object size:0x100 scope:global align:32
+wol_6_eye5_TA_tex_txt = .data:0x00608220; // type:object size:0x100 scope:global align:32
+wol_6_eye6_TA_tex_txt = .data:0x00608320; // type:object size:0x100 scope:global align:32
+wol_6_eye7_TA_tex_txt = .data:0x00608420; // type:object size:0x100 scope:global align:32
+wol_6_eye8_TA_tex_txt = .data:0x00608520; // type:object size:0x100 scope:global align:32
+wol_6_tmem_txt = .data:0x00608620; // type:object size:0x400 scope:global align:32
+broker_shop_actable = .data:0x00608A20; // type:object size:0x48 scope:global align:4
+buggy_actable = .data:0x00608A68; // type:object size:0x30 scope:global align:4
+event_notification_actable = .data:0x00608A98; // type:object size:0x18 scope:global align:4
+fd0_actable = .data:0x00608AB0; // type:object size:0x78 scope:global align:4
+fd1_actable = .data:0x00608B28; // type:object size:0x108 scope:global align:4
+fd2_actable = .data:0x00608C30; // type:object size:0xC0 scope:global align:4
+fd4_actable = .data:0x00608CF0; // type:object size:0x60 scope:global align:4
+fd_npc_land_actable = .data:0x00608D50; // type:object size:0x60 scope:global align:4
+fgout_actable = .data:0x00608DB0; // type:object size:0x18 scope:global align:4
+kamakura_actable = .data:0x00608DC8; // type:object size:0x30 scope:global align:4
+npcRoom001_actable = .data:0x00608DF8; // type:object size:0x18 scope:global align:4
+playerRM_actable = .data:0x00608E10; // type:object size:0x30 scope:global align:4
+playerRMM_actable = .data:0x00608E40; // type:object size:0x30 scope:global align:4
+playerRMS_actable = .data:0x00608E70; // type:object size:0x30 scope:global align:4
+player_select_actable = .data:0x00608EA0; // type:object size:0x30 scope:global align:4
+player_select2_actable = .data:0x00608ED0; // type:object size:0x30 scope:global align:4
+player_select3_actable = .data:0x00608F00; // type:object size:0x30 scope:global align:4
+player_select4_actable = .data:0x00608F30; // type:object size:0x30 scope:global align:4
+police_box_actable = .data:0x00608F60; // type:object size:0x30 scope:global align:4
+post_office_actable = .data:0x00608F90; // type:object size:0x30 scope:global align:4
+shop01_actable = .data:0x00608FC0; // type:object size:0x48 scope:global align:4
+shop02_actable = .data:0x00609008; // type:object size:0x48 scope:global align:4
+shop03_actable = .data:0x00609050; // type:object size:0x48 scope:global align:4
+shop04_1_actable = .data:0x00609098; // type:object size:0x48 scope:global align:4
+shop04_2_actable = .data:0x006090E0; // type:object size:0x60 scope:global align:4
+start_demo1_actable = .data:0x00609140; // type:object size:0x60 scope:global align:4
+start_demo2_actable = .data:0x006091A0; // type:object size:0x60 scope:global align:4
+start_demo3_actable = .data:0x00609200; // type:object size:0x60 scope:global align:4
+tent_actable = .data:0x00609260; // type:object size:0x30 scope:global align:4
+title_demo_actable = .data:0x00609290; // type:object size:0x180 scope:global align:4
+water_test_actable = .data:0x00609410; // type:object size:0x18 scope:global align:4
+int_ari_nagaisu1_pal = .data:0x00609440; // type:object size:0x20 scope:local align:32
+int_ari_isu01_1_tex = .data:0x00609460; // type:object size:0x200 scope:global align:32
+int_ari_isu01_0_tex = .data:0x00609660; // type:object size:0x400 scope:global align:32
+int_ari_isu01_2_tex = .data:0x00609A60; // type:object size:0x200 scope:global align:32
+int_ari_isu01_v = .data:0x00609C60; // type:object size:0x260 scope:global align:8
+int_ari_isu01_00T_model = .data:0x00609EC0; // type:object size:0xD0 scope:global align:8
+int_ari_kitchen01_pal = .data:0x00609FA0; // type:object size:0x20 scope:global align:32
+int_ari_kitchen01_00_tex = .data:0x00609FC0; // type:object size:0x200 scope:global align:32
+int_ari_kitchen01_01_tex = .data:0x0060A1C0; // type:object size:0x100 scope:global align:32
+int_ari_kitchen01_02_tex = .data:0x0060A2C0; // type:object size:0x100 scope:global align:32
+int_ari_kitchen01_03_tex = .data:0x0060A3C0; // type:object size:0x100 scope:global align:32
+int_ari_kitchen01_04_tex = .data:0x0060A4C0; // type:object size:0x80 scope:global align:32
+int_ari_kitchen01_05_tex = .data:0x0060A540; // type:object size:0x80 scope:global align:32
+int_ari_kitchen01_06_tex = .data:0x0060A5C0; // type:object size:0x80 scope:global align:32
+int_ari_kitchen01_v = .data:0x0060A640; // type:object size:0x2A0 scope:global align:8
+int_ari_kitchen01_01_model = .data:0x0060A8E0; // type:object size:0xD0 scope:global align:8
+int_ari_kitchen01_01T_model = .data:0x0060A9B0; // type:object size:0x80 scope:global align:8
+int_ari_reizou01_pal = .data:0x0060AA40; // type:object size:0x20 scope:global align:32
+int_ari_reizou01_00_tex = .data:0x0060AA60; // type:object size:0x180 scope:global align:32
+int_ari_reizou01_01_tex = .data:0x0060ABE0; // type:object size:0x300 scope:global align:32
+int_ari_reizou01_02_tex = .data:0x0060AEE0; // type:object size:0x180 scope:global align:32
+int_ari_reizou01_03_tex = .data:0x0060B060; // type:object size:0x180 scope:global align:32
+int_ari_reizou01_04_tex = .data:0x0060B1E0; // type:object size:0x80 scope:global align:32 data:string
+int_ari_reizou01_v = .data:0x0060B260; // type:object size:0x200 scope:global align:8
+int_ari_reizou01_01_model = .data:0x0060B460; // type:object size:0xE8 scope:global align:8
+int_ari_nagaisu1_pal = .data:0x0060B560; // type:object size:0x20 scope:local align:32
+int_ari_table01_0_tex = .data:0x0060B580; // type:object size:0x400 scope:global align:32
+int_ari_table01_1_tex = .data:0x0060B980; // type:object size:0x100 scope:global align:32
+int_ari_table01_2_tex = .data:0x0060BA80; // type:object size:0x100 scope:global align:32
+int_ari_table01_3_tex = .data:0x0060BB80; // type:object size:0x200 scope:global align:32
+int_ari_table01_v = .data:0x0060BD80; // type:object size:0x3F0 scope:global align:8
+int_ari_table01_01_model = .data:0x0060C170; // type:object size:0xE0 scope:global align:8
+int_ari_table01_01T_model = .data:0x0060C250; // type:object size:0x58 scope:global align:8
+mFM_grd_beachA_tex = .data:0x0060C2A8; // type:object size:0x400 scope:global align:4
+mFM_grd_beachB_tex = .data:0x0060C6A8; // type:object size:0x100 scope:global align:4
+mFM_beach_pal = .data:0x0060C7A8; // type:object size:0x180 scope:global align:4
+mFM_grd_s_beach_tex = .data:0x0060C928; // type:object size:0x400 scope:global align:4
+rom_yami_wall_pal = .data:0x0060CD40; // type:object size:0x20 scope:global align:32
+rom_yami_floor_pal = .data:0x0060CD60; // type:object size:0x20 scope:global align:32
+rom_yami_box_pal = .data:0x0060CD80; // type:object size:0x20 scope:global align:32
+rom_yami_mono01_pal = .data:0x0060CDA0; // type:object size:0x20 scope:global align:32
+rom_yami_mono02_pal = .data:0x0060CDC0; // type:object size:0x20 scope:global align:32
+rom_yami_mono03_pal = .data:0x0060CDE0; // type:object size:0x20 scope:global align:32
+rom_yami_qup_pal = .data:0x0060CE00; // type:object size:0x20 scope:global align:32
+rom_yami_hyou_pal = .data:0x0060CE20; // type:object size:0x20 scope:global align:32
+rom_yami_step_tex_pal = .data:0x0060CE40; // type:object size:0x20 scope:global align:32
+rom_yami_hugu_pal = .data:0x0060CE60; // type:object size:0x20 scope:global align:32
+rom_yami_tama_pal = .data:0x0060CE80; // type:object size:0x20 scope:global align:32
+rom_yami_wall_tex = .data:0x0060CEA0; // type:object size:0x300 scope:global align:32
+rom_yami_floor_tex = .data:0x0060D1A0; // type:object size:0x800 scope:global align:32
+rom_yami_poll_tex = .data:0x0060D9A0; // type:object size:0x80 scope:global align:32
+rom_yami_box01_tex = .data:0x0060DA20; // type:object size:0x100 scope:global align:32
+rom_yami_box02_tex = .data:0x0060DB20; // type:object size:0x80 scope:global align:32
+rom_yami_mono01_tex = .data:0x0060DBA0; // type:object size:0x200 scope:global align:32
+rom_yami_mono02_tex = .data:0x0060DDA0; // type:object size:0x200 scope:global align:32
+rom_yami_mono03_tex = .data:0x0060DFA0; // type:object size:0x200 scope:global align:32
+rom_yami_qup_tex = .data:0x0060E1A0; // type:object size:0x300 scope:global align:32
+rom_yami_hyou_tex = .data:0x0060E4A0; // type:object size:0x100 scope:global align:32
+rom_yami_hyou02_tex = .data:0x0060E5A0; // type:object size:0x100 scope:global align:32
+rom_yami_step_tex = .data:0x0060E6A0; // type:object size:0x400 scope:global align:32
+rom_yami_hugu_tex = .data:0x0060EAA0; // type:object size:0x300 scope:global align:32
+rom_yami_tama_tex = .data:0x0060EDA0; // type:object size:0x300 scope:global align:32
+rom_yami_shadow01_tex = .data:0x0060F0A0; // type:object size:0x100 scope:global align:32
+grd_yamishop_v = .data:0x0060F1A0; // type:object size:0x10D0 scope:global align:8
+grd_yamishop_modelT = .data:0x00610270; // type:object size:0x8 scope:global align:8
+grd_yamishop_model = .data:0x00610278; // type:object size:0x418 scope:global align:8
+yubin_k_pal = .data:0x006106A0; // type:object size:0x20 scope:global align:32
+yubin_k2_pal = .data:0x006106C0; // type:object size:0x20 scope:global align:32
+yubin_floor_pal = .data:0x006106E0; // type:object size:0x20 scope:global align:32
+yubin_hakari_pal = .data:0x00610700; // type:object size:0x20 scope:global align:32
+yubin_wall_pal = .data:0x00610720; // type:object size:0x20 scope:global align:32
+yubin_letter_pal = .data:0x00610740; // type:object size:0x20 scope:global align:32
+yubin_us_bag_pal = .data:0x00610760; // type:object size:0x20 scope:global align:32
+zzzyubin_tree_pal = .data:0x00610780; // type:object size:0x20 scope:global align:32
+yubin_t_pal = .data:0x006107A0; // type:object size:0x20 scope:global align:32
+yubin_us_card_pal = .data:0x006107C0; // type:object size:0x20 scope:global align:32
+yuibn_kaunta01_tex = .data:0x006107E0; // type:object size:0x200 scope:global align:32
+yuibn_kaunta02_tex = .data:0x006109E0; // type:object size:0x200 scope:global align:32
+yuibn_desk01_tex = .data:0x00610BE0; // type:object size:0x200 scope:global align:32
+yubin_ark01_tex = .data:0x00610DE0; // type:object size:0x400 scope:global align:32
+yuibn_kaunta03_tex = .data:0x006111E0; // type:object size:0x100 scope:global align:32
+yuibn_kaunta04_tex = .data:0x006112E0; // type:object size:0x200 scope:global align:32
+yubin_floor01_tex = .data:0x006114E0; // type:object size:0x800 scope:global align:32
+yubin_floor02_tex = .data:0x00611CE0; // type:object size:0x800 scope:global align:32
+yubin_floor03_tex = .data:0x006124E0; // type:object size:0x100 scope:global align:32
+yubin_hakari01_tex = .data:0x006125E0; // type:object size:0x100 scope:global align:32
+yubin_hakari02_tex = .data:0x006126E0; // type:object size:0x80 scope:global align:32
+yubin_hakari03_tex = .data:0x00612760; // type:object size:0x100 scope:global align:32
+yubin_wall04_tex = .data:0x00612860; // type:object size:0x300 scope:global align:32
+yubin_letter01_tex = .data:0x00612B60; // type:object size:0x100 scope:global align:32
+yubin_window_tex = .data:0x00612C60; // type:object size:0x80 scope:global align:32
+yubin_us_bag_tex = .data:0x00612CE0; // type:object size:0x480 scope:global align:32
+yubin_tree2_tex = .data:0x00613160; // type:object size:0x300 scope:global align:32
+yubin_tree_tex = .data:0x00613460; // type:object size:0x100 scope:global align:32
+yubin_tree3_tex = .data:0x00613560; // type:object size:0x80 scope:global align:32
+yubin_tree4_tex = .data:0x006135E0; // type:object size:0x80 scope:global align:32
+yubin_step_tex = .data:0x00613660; // type:object size:0x100 scope:global align:32
+rom_yubinkyoku_akril_tex = .data:0x00613760; // type:object size:0x80 scope:global align:32
+rom_yubinkyoku_shede_tex = .data:0x006137E0; // type:object size:0x100 scope:global align:32
+yubin_us_card_tex = .data:0x006138E0; // type:object size:0x400 scope:global align:32
+yubin_us_mat_tex = .data:0x00613CE0; // type:object size:0x300 scope:global align:32
+rom_yubinkyoku_shadow_tex = .data:0x00613FE0; // type:object size:0x100 scope:global align:32
+yubin_us_card2_tex = .data:0x006140E0; // type:object size:0x100 scope:global align:32
+grd_post_office_v = .data:0x006141E0; // type:object size:0x1700 scope:global align:8
+grd_post_office_modelT = .data:0x006158E0; // type:object size:0x50 scope:global align:8
+grd_post_office_model = .data:0x00615930; // type:object size:0x5D8 scope:global align:8
+tmp4_v = .data:0x00615F08; // type:object size:0xCC0 scope:global align:8
+tmp4_modelT = .data:0x00616BC8; // type:object size:0x8 scope:global align:8
+tmp4_model = .data:0x00616BD0; // type:object size:0x5C8 scope:global align:8
+tmpr4_evw_anime_1 = .data:0x00617198; // type:object size:0x8 scope:global align:4
+tmpr4_evw_anime_2 = .data:0x006171A0; // type:object size:0x8 scope:global align:4
+tmpr4_evw_anime_3 = .data:0x006171A8; // type:object size:0x8 scope:global align:4
+tmpr4_evw_anime_4 = .data:0x006171B0; // type:object size:0x8 scope:global align:4
+tmpr4_evw_anime = .data:0x006171B8; // type:object size:0x20 scope:global align:4
+tmpr4_v = .data:0x006171D8; // type:object size:0x12D0 scope:global align:8
+tmpr4_modelT = .data:0x006184A8; // type:object size:0x408 scope:global align:8
+tmpr4_model = .data:0x006188B0; // type:object size:0x4C8 scope:global align:8
+tmp3_v = .data:0x00618D78; // type:object size:0x1020 scope:global align:8
+tmp3_modelT = .data:0x00619D98; // type:object size:0x8 scope:global align:8
+tmp3_model = .data:0x00619DA0; // type:object size:0x558 scope:global align:8
+tmpr3_evw_anime_1 = .data:0x0061A2F8; // type:object size:0x8 scope:global align:4
+tmpr3_evw_anime_2 = .data:0x0061A300; // type:object size:0x8 scope:global align:4
+tmpr3_evw_anime_3 = .data:0x0061A308; // type:object size:0x8 scope:global align:4
+tmpr3_evw_anime_4 = .data:0x0061A310; // type:object size:0x8 scope:global align:4
+tmpr3_evw_anime = .data:0x0061A318; // type:object size:0x20 scope:global align:4
+tmpr3_v = .data:0x0061A338; // type:object size:0x1160 scope:global align:8
+tmpr3_modelT = .data:0x0061B498; // type:object size:0x418 scope:global align:8
+tmpr3_model = .data:0x0061B8B0; // type:object size:0x588 scope:global align:8
+tmp_v = .data:0x0061BE38; // type:object size:0x1C0 scope:global align:8
+tmp_modelT = .data:0x0061BFF8; // type:object size:0x8 scope:global align:8
+tmp_model = .data:0x0061C000; // type:object size:0xE0 scope:global align:8
+tmpr_evw_anime_1 = .data:0x0061C0E0; // type:object size:0x8 scope:global align:4
+tmpr_evw_anime = .data:0x0061C0E8; // type:object size:0x8 scope:global align:4
+tmpr_v = .data:0x0061C0F0; // type:object size:0xD40 scope:global align:8
+tmpr_modelT = .data:0x0061CE30; // type:object size:0x238 scope:global align:8
+tmpr_model = .data:0x0061D068; // type:object size:0x360 scope:global align:8
+grd_s_cliff_pal = .data:0x0061D3C8; // type:object size:0x20 scope:global align:4
+grd_s_earth_pal = .data:0x0061D3E8; // type:object size:0x20 scope:global align:4
+grd_s_cliff_tex = .data:0x0061D408; // type:object size:0x800 scope:global align:4
+grd_s_earth_tex = .data:0x0061DC08; // type:object size:0x800 scope:global align:4
+grd_s_grass_tex = .data:0x0061E408; // type:object size:0x200 scope:local align:4
+tmp2_v = .data:0x0061E608; // type:object size:0xEC0 scope:global align:8
+tmp2_modelT = .data:0x0061F4C8; // type:object size:0x8 scope:global align:8
+tmp2_model = .data:0x0061F4D0; // type:object size:0x498 scope:global align:8
+tmpr2_evw_anime_1 = .data:0x0061F968; // type:object size:0x8 scope:global align:4
+tmpr2_evw_anime = .data:0x0061F970; // type:object size:0x8 scope:global align:4
+grd_1_earth_pal = .data:0x0061F978; // type:object size:0x20 scope:global align:4
+grd_s_river_tex = .data:0x0061F998; // type:object size:0x400 scope:global align:4
+grd_water1_tex = .data:0x0061FD98; // type:object size:0x200 scope:global align:4
+grd_s_grass_tex = .data:0x0061FF98; // type:object size:0x200 scope:local align:4
+tmpr2_v = .data:0x00620198; // type:object size:0x360 scope:global align:8
+tmpr2_grp_grd_s_r1_1_river = .data:0x006204F8; // type:object size:0xF0 scope:global align:8
+tmpr2_grp_grd_s_r1_1_grass = .data:0x006205E8; // type:object size:0x110 scope:global align:8
+tmpr2_grp_grd_s_r1_1_waterT = .data:0x006206F8; // type:object size:0xA0 scope:global align:8
+tmpr2_modelT = .data:0x00620798; // type:object size:0x10 scope:global align:8
+tmpr2_model = .data:0x006207A8; // type:object size:0x18 scope:global align:8
+binsen_listA = .data:0x006207C0; // type:object size:0x2A scope:global align:4
+binsen_listB = .data:0x006207EC; // type:object size:0x2A scope:global align:4
+binsen_listC = .data:0x00620818; // type:object size:0x2A scope:global align:4
+binsen_listTrain = .data:0x00620844; // type:object size:0x2 scope:global align:4
+mSP_binsen_list = .data:0x00620848; // type:object size:0x5C scope:global align:4
+binsen_price_table = .data:0x006208A8; // type:object size:0x82 scope:global align:4
+mFM_grd_s_bridge1_pal = .data:0x00620930; // type:object size:0x20 scope:global align:4
+mFM_grd_s_bridge1_tex = .data:0x00620960; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bridge1_2_tex = .data:0x00621160; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bridge1_3_tex = .data:0x00621960; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge1_tex = .data:0x00622160; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge1_2_tex = .data:0x00622960; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge1_3_tex = .data:0x00623160; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bridge2_pal = .data:0x00623960; // type:object size:0x20 scope:global align:4
+mFM_grd_s_bridge2_tex = .data:0x00623980; // type:object size:0x800 scope:global align:4
+mFM_grd_s_bridge2_2_tex = .data:0x00624180; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bridge2_3_tex = .data:0x00624980; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge2_tex = .data:0x00625180; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge2_2_tex = .data:0x00625980; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bridge2_3_tex = .data:0x00626180; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bushA_tex = .data:0x00626980; // type:object size:0x800 scope:global align:4
+mFM_grd_s_bushA_2_tex = .data:0x00627180; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bushA_3_tex = .data:0x00627980; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bushA_tex = .data:0x00628180; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bushA_2_tex = .data:0x00628980; // type:object size:0x800 scope:global align:32
+mFM_grd_w_bushA_3_tex = .data:0x00629180; // type:object size:0x800 scope:global align:32
+mFM_grd_s_bushB_tex = .data:0x00629980; // type:object size:0x400 scope:global align:4
+mFM_grd_s_bushB_2_tex = .data:0x00629D80; // type:object size:0x400 scope:global align:32
+mFM_grd_s_bushB_3_tex = .data:0x0062A180; // type:object size:0x400 scope:global align:32
+mFM_grd_w_bushB_tex = .data:0x0062A580; // type:object size:0x400 scope:global align:32
+mFM_grd_w_bushB_2_tex = .data:0x0062A980; // type:object size:0x400 scope:global align:32
+mFM_grd_w_bushB_3_tex = .data:0x0062AD80; // type:object size:0x400 scope:global align:32
+mFM_bush_pal = .data:0x0062B180; // type:object size:0x180 scope:global align:4
+carpet_listA = .data:0x0062B300; // type:object size:0x20 scope:global align:4
+carpet_listB = .data:0x0062B320; // type:object size:0x20 scope:global align:4
+carpet_listC = .data:0x0062B340; // type:object size:0x1E scope:global align:4
+carpet_listEvent = .data:0x0062B360; // type:object size:0x26 scope:global align:4
+carpet_listChristmas = .data:0x0062B388; // type:object size:0x4 scope:global align:4
+carpet_listSnow = .data:0x0062B38C; // type:object size:0x4 scope:global align:4
+carpet_listHalloween = .data:0x0062B390; // type:object size:0x4 scope:global align:4
+carpet_listHalloween2 = .data:0x0062B394; // type:object size:0x2 scope:global align:4
+carpet_listHomePage = .data:0x0062B398; // type:object size:0x4 scope:global align:4
+carpet_listHarvest = .data:0x0062B39C; // type:object size:0x4 scope:global align:4
+mSP_carpet_list = .data:0x0062B3A0; // type:object size:0x5C scope:global align:4
+carpet_price_table = .data:0x0062B400; // type:object size:0x88 scope:global align:4
+mFM_cliff_pal = .data:0x0062B488; // type:object size:0x180 scope:global align:4
+mFM_grd_s_cliff_tex = .data:0x0062B620; // type:object size:0x800 scope:global align:4
+mFM_grd_s_cliff_2_tex = .data:0x0062BE20; // type:object size:0x800 scope:global align:32
+mFM_grd_s_cliff_3_tex = .data:0x0062C620; // type:object size:0x800 scope:global align:32
+mFM_grd_w_cliff_tex = .data:0x0062CE20; // type:object size:0x800 scope:global align:32
+mFM_grd_w_cliff_2_tex = .data:0x0062D620; // type:object size:0x800 scope:global align:32
+mFM_grd_w_cliff_3_tex = .data:0x0062DE20; // type:object size:0x800 scope:global align:32
+cloth_listA = .data:0x0062E620; // type:object size:0x90 scope:global align:4
+cloth_listB = .data:0x0062E6B0; // type:object size:0x90 scope:global align:4
+cloth_listC = .data:0x0062E740; // type:object size:0x90 scope:global align:4
+cloth_listEvent = .data:0x0062E7D0; // type:object size:0x3C scope:global align:4
+cloth_listChristmas = .data:0x0062E80C; // type:object size:0x4 scope:global align:4
+mSP_cloth_list = .data:0x0062E810; // type:object size:0x5C scope:global align:4
+cloth_season_cnt = .data:0x0062E86C; // type:object size:0x5 scope:global align:4 data:byte
+cloth_price_table = .data:0x0062E878; // type:object size:0x200 scope:global align:4
+diary_price_table = .data:0x0062EA78; // type:object size:0x22 scope:global align:4
+int_din_amber_pal = .data:0x0062EAA0; // type:object size:0x20 scope:global align:32
+int_din_amber_4_tex_rgb_ci4_pal = .data:0x0062EAC0; // type:object size:0x20 scope:global align:32
+int_din_amber_3_tex = .data:0x0062EAE0; // type:object size:0x200 scope:global align:32
+int_din_amber_1_tex = .data:0x0062ECE0; // type:object size:0x400 scope:global align:32
+int_din_amber_2_tex = .data:0x0062F0E0; // type:object size:0x100 scope:global align:32
+int_din_amber_5_tex = .data:0x0062F1E0; // type:object size:0x80 scope:global align:32
+int_din_amber_4_tex = .data:0x0062F260; // type:object size:0x80 scope:global align:32
+int_din_amber_v = .data:0x0062F2E0; // type:object size:0x4E0 scope:global align:8
+int_din_amber_on1_model = .data:0x0062F7C0; // type:object size:0xC8 scope:global align:8
+int_din_amber_env_model = .data:0x0062F888; // type:object size:0x78 scope:global align:8
+int_din_amber_on1T_model = .data:0x0062F900; // type:object size:0x58 scope:global align:8
+int_din_ammonite_pal = .data:0x0062F960; // type:object size:0x20 scope:global align:32
+int_din_ammonite_2_tex = .data:0x0062F980; // type:object size:0x200 scope:global align:32
+int_din_ammonite_3_tex = .data:0x0062FB80; // type:object size:0x400 scope:global align:32
+int_din_ammonite_4_tex = .data:0x0062FF80; // type:object size:0x100 scope:global align:32
+int_din_ammonite_v = .data:0x00630080; // type:object size:0x2E0 scope:global align:8
+int_din_ammonite_on_model = .data:0x00630360; // type:object size:0xC0 scope:global align:8
+int_din_ammonite_onT_model = .data:0x00630420; // type:object size:0x58 scope:global align:8
+int_din_bront_pal = .data:0x00630480; // type:object size:0x20 scope:local align:32
+int_din_bront_body_tex = .data:0x006304A0; // type:object size:0x300 scope:global align:32
+int_din_bront_leg_tex = .data:0x006307A0; // type:object size:0x80 scope:global align:32
+int_din_bront_shin_tex = .data:0x00630820; // type:object size:0x100 scope:global align:32
+int_din_bront_thigh_tex = .data:0x00630920; // type:object size:0x100 scope:global align:32
+int_din_bront_baceB_tex = .data:0x00630A20; // type:object size:0x200 scope:global align:32
+int_din_bront_body_v = .data:0x00630C20; // type:object size:0x470 scope:global align:8
+int_din_bront_body_model = .data:0x00631090; // type:object size:0x68 scope:global align:8
+int_din_bront_bodyT_model = .data:0x006310F8; // type:object size:0xF8 scope:global align:8
+int_din_bront_pal = .data:0x00631200; // type:object size:0x20 scope:local align:32
+int_din_bront_dummy_tex = .data:0x00631220; // type:object size:0x200 scope:global align:32
+int_din_bront_dummy_v = .data:0x00631420; // type:object size:0x80 scope:global align:8
+int_din_bront_dummy_model = .data:0x006314A0; // type:object size:0x68 scope:global align:8
+int_din_bront_pal = .data:0x00631520; // type:object size:0x20 scope:local align:32
+int_din_bront_h_tex = .data:0x00631540; // type:object size:0x400 scope:global align:32
+int_din_bront_kb2_tex = .data:0x00631940; // type:object size:0x80 scope:global align:32
+int_din_bront_baceA_tex = .data:0x006319C0; // type:object size:0x200 scope:global align:32
+int_din_bront_poleA_tex = .data:0x00631BC0; // type:object size:0x80 scope:global align:32
+int_din_bront_kubi_tex = .data:0x00631C40; // type:object size:0x100 scope:global align:32
+int_din_bront_head_v = .data:0x00631D40; // type:object size:0x2A0 scope:global align:8
+int_din_bront_head_model = .data:0x00631FE0; // type:object size:0x68 scope:global align:8
+int_din_bront_headT_model = .data:0x00632048; // type:object size:0xD8 scope:global align:8
+int_din_bront_pal = .data:0x00632120; // type:object size:0x20 scope:local align:32
+int_din_bront_kb2C_tex = .data:0x00632140; // type:object size:0x80 scope:global align:32
+int_din_bront_baceC_tex = .data:0x006321C0; // type:object size:0x200 scope:global align:32
+int_din_bront_poleC_tex = .data:0x006323C0; // type:object size:0x80 scope:global align:32
+int_din_bront_tail_v = .data:0x00632440; // type:object size:0x350 scope:global align:8
+int_din_bront_tail_model = .data:0x00632790; // type:object size:0x68 scope:global align:8
+int_din_bront_tailT_model = .data:0x006327F8; // type:object size:0xB0 scope:global align:8
+int_din_dummy_pal = .data:0x006328C0; // type:object size:0x20 scope:global align:32
+int_din_dummy_tex = .data:0x006328E0; // type:object size:0x800 scope:global align:32
+int_din_dummy_v = .data:0x006330E0; // type:object size:0x140 scope:global align:8
+int_din_dummy_model = .data:0x00633220; // type:object size:0x68 scope:global align:8
+int_din_egg_pal = .data:0x006332A0; // type:object size:0x20 scope:global align:32
+int_din_egg_3_tex = .data:0x006332C0; // type:object size:0x200 scope:global align:32
+int_din_egg_1_tex = .data:0x006334C0; // type:object size:0x400 scope:global align:32
+int_din_egg_2_tex = .data:0x006338C0; // type:object size:0x100 scope:global align:32
+int_din_egg_v = .data:0x006339C0; // type:object size:0x220 scope:global align:8
+int_din_egg_on_model = .data:0x00633BE0; // type:object size:0xA8 scope:global align:8
+int_din_egg_onT_model = .data:0x00633C88; // type:object size:0x58 scope:global align:8
+int_din_hutaba_pal = .data:0x00633CE0; // type:object size:0x20 scope:local align:32
+int_din_hutaba_body_tex = .data:0x00633D00; // type:object size:0x180 scope:global align:32
+int_din_hutaba_fin_tex = .data:0x00633E80; // type:object size:0x200 scope:global align:32
+int_din_hutaba_poleC_tex = .data:0x00634080; // type:object size:0x80 scope:global align:32
+int_din_hutaba_baceC_tex = .data:0x00634100; // type:object size:0x200 scope:global align:32
+int_din_hutaba_hara_tex = .data:0x00634300; // type:object size:0x180 scope:global align:32
+int_din_hutaba_body_v = .data:0x00634480; // type:object size:0x350 scope:global align:8
+int_din_hutaba_body_model = .data:0x006347D0; // type:object size:0x68 scope:global align:8
+int_din_hutaba_bodyT_model = .data:0x00634838; // type:object size:0xE0 scope:global align:8
+int_din_hutaba_pal = .data:0x00634920; // type:object size:0x20 scope:local align:32
+int_din_hutaba_dummy_tex = .data:0x00634940; // type:object size:0x200 scope:global align:32
+int_din_hutaba_dummy_v = .data:0x00634B40; // type:object size:0x80 scope:global align:8
+int_din_hutaba_dummy_model = .data:0x00634BC0; // type:object size:0x68 scope:global align:8
+int_din_hutaba_pal = .data:0x00634C40; // type:object size:0x20 scope:local align:32
+int_din_hutaba_h_tex = .data:0x00634C60; // type:object size:0x400 scope:global align:32
+int_din_hutaba_kubi2_tex = .data:0x00635060; // type:object size:0x80 scope:global align:32
+int_din_hutaba_baceA_tex = .data:0x006350E0; // type:object size:0x200 scope:global align:32
+int_din_hutaba_poleA_tex = .data:0x006352E0; // type:object size:0x80 scope:global align:32
+int_din_hutaba_kubi_tex = .data:0x00635360; // type:object size:0x100 scope:global align:32
+int_din_hutaba_head_v = .data:0x00635460; // type:object size:0x370 scope:global align:8
+int_din_hutaba_head_model = .data:0x006357D0; // type:object size:0x68 scope:global align:8
+int_din_hutaba_headT_model = .data:0x00635838; // type:object size:0xF0 scope:global align:8
+int_din_hutaba_pal = .data:0x00635940; // type:object size:0x20 scope:local align:32
+int_din_hutaba_kubi2c_tex = .data:0x00635960; // type:object size:0x80 scope:global align:32
+int_din_hutaba_baceB_tex = .data:0x006359E0; // type:object size:0x200 scope:global align:32
+int_din_hutaba_poleB_tex = .data:0x00635BE0; // type:object size:0x80 scope:global align:32
+int_din_hutaba_kubic_tex = .data:0x00635C60; // type:object size:0x100 scope:global align:32
+int_din_hutaba_neck_v = .data:0x00635D60; // type:object size:0x320 scope:global align:8
+int_din_hutaba_neck_model = .data:0x00636080; // type:object size:0x68 scope:global align:8
+int_din_hutaba_neckT_model = .data:0x006360E8; // type:object size:0xC8 scope:global align:8
+int_din_mammoth_pal = .data:0x006361C0; // type:object size:0x20 scope:local align:32
+int_din_mammoth_body_tex = .data:0x006361E0; // type:object size:0x300 scope:global align:32
+int_din_mammoth_leg_tex = .data:0x006364E0; // type:object size:0x80 scope:global align:32
+int_din_mammoth_shin_tex = .data:0x00636560; // type:object size:0x100 scope:global align:32
+int_din_mammoth_thigh_tex = .data:0x00636660; // type:object size:0x100 scope:global align:32
+int_din_mammoth_kubi_tex = .data:0x00636760; // type:object size:0x80 scope:global align:32
+int_din_mammoth_baceB_tex = .data:0x006367E0; // type:object size:0x200 scope:global align:32
+int_din_mammoth_body_v = .data:0x006369E0; // type:object size:0x4D0 scope:global align:8
+int_din_mammoth_body_model = .data:0x00636EB0; // type:object size:0x68 scope:global align:8
+int_din_mammoth_bodyT_model = .data:0x00636F18; // type:object size:0x118 scope:global align:8
+int_din_mammoth_pal = .data:0x00637040; // type:object size:0x20 scope:local align:32
+int_din_mammoth_dummy_tex = .data:0x00637060; // type:object size:0x200 scope:global align:32
+int_din_mammoth_dummy_v = .data:0x00637260; // type:object size:0x80 scope:global align:8
+int_din_mammoth_dummy_model = .data:0x006372E0; // type:object size:0x68 scope:global align:8
+int_din_mammoth_pal = .data:0x00637360; // type:object size:0x20 scope:local align:32
+int_din_mammoth_h_tex = .data:0x00637380; // type:object size:0x200 scope:global align:32
+int_din_mammoth_h2_tex = .data:0x00637580; // type:object size:0x100 scope:global align:32
+int_din_mammoth_baceA_tex = .data:0x00637680; // type:object size:0x200 scope:global align:32
+int_din_mammoth_poleA_tex = .data:0x00637880; // type:object size:0x80 scope:global align:32
+int_din_mammoth_kiba_tex = .data:0x00637900; // type:object size:0x180 scope:global align:32
+int_din_mammoth_head_v = .data:0x00637A80; // type:object size:0x380 scope:global align:8
+int_din_mammoth_head_model = .data:0x00637E00; // type:object size:0x68 scope:global align:8
+int_din_mammoth_headT_model = .data:0x00637E68; // type:object size:0xE0 scope:global align:8
+int_din_ptera_pal = .data:0x00637F60; // type:object size:0x20 scope:local align:32
+int_din_ptera_Lleg_tex = .data:0x00637F80; // type:object size:0x80 scope:global align:32
+int_din_ptera_Lthigh_tex = .data:0x00638000; // type:object size:0x100 scope:global align:32
+int_din_ptera_baceA_tex = .data:0x00638100; // type:object size:0x200 scope:local align:32
+int_din_ptera_poleA_tex = .data:0x00638300; // type:object size:0x80 scope:local align:32
+int_din_ptera_Lwing_tex = .data:0x00638380; // type:object size:0x100 scope:local align:32
+int_din_ptera_Lwing_v = .data:0x00638480; // type:object size:0x210 scope:global align:8
+int_din_ptera_Lwing_model = .data:0x00638690; // type:object size:0x68 scope:global align:8
+int_din_ptera_LwingT_model = .data:0x006386F8; // type:object size:0xC8 scope:global align:8
+int_din_ptera_pal = .data:0x006387C0; // type:object size:0x20 scope:local align:32
+int_din_ptera_baceA_tex = .data:0x006387E0; // type:object size:0x200 scope:local align:32
+int_din_ptera_poleA_tex = .data:0x006389E0; // type:object size:0x80 scope:local align:32
+int_din_ptera_Rleg_tex = .data:0x00638A60; // type:object size:0x80 scope:global align:32
+int_din_ptera_Rthigh_tex = .data:0x00638AE0; // type:object size:0x100 scope:global align:32
+int_din_ptera_Lwing_tex = .data:0x00638BE0; // type:object size:0x100 scope:local align:32
+int_din_ptera_Rwing_v = .data:0x00638CE0; // type:object size:0x210 scope:global align:8
+int_din_ptera_Rwing_model = .data:0x00638EF0; // type:object size:0x68 scope:global align:8
+int_din_ptera_RwingT_model = .data:0x00638F58; // type:object size:0xE0 scope:global align:8
+int_din_ptera_pal = .data:0x00639040; // type:object size:0x20 scope:local align:32
+int_din_ptera_dummy_tex = .data:0x00639060; // type:object size:0x200 scope:global align:32
+int_din_ptera_dummy_v = .data:0x00639260; // type:object size:0x80 scope:global align:8
+int_din_ptera_dummy_model = .data:0x006392E0; // type:object size:0x68 scope:global align:8
+int_din_ptera_pal = .data:0x00639360; // type:object size:0x20 scope:local align:32
+int_din_ptera_body_tex = .data:0x00639380; // type:object size:0x180 scope:global align:32
+int_din_ptera_leg_tex = .data:0x00639500; // type:object size:0x80 scope:global align:32
+int_din_ptera_shin_tex = .data:0x00639580; // type:object size:0x100 scope:global align:32
+int_din_ptera_h_tex = .data:0x00639680; // type:object size:0x200 scope:global align:32
+int_din_ptera_kubi_tex = .data:0x00639880; // type:object size:0x80 scope:global align:32
+int_din_ptera_baceB_tex = .data:0x00639900; // type:object size:0x200 scope:global align:32
+int_din_ptera_poleB_tex = .data:0x00639B00; // type:object size:0x80 scope:global align:32
+int_din_ptera_head_v = .data:0x00639B80; // type:object size:0x470 scope:global align:8
+int_din_ptera_head_model = .data:0x00639FF0; // type:object size:0x68 scope:global align:8
+int_din_ptera_headT_model = .data:0x0063A058; // type:object size:0x128 scope:global align:8
+int_din_stego_pal = .data:0x0063A180; // type:object size:0x20 scope:local align:32
+int_din_stego_body_tex = .data:0x0063A1A0; // type:object size:0x300 scope:global align:32
+int_din_stego_leg_tex = .data:0x0063A4A0; // type:object size:0x80 scope:global align:32
+int_din_stego_shin_tex = .data:0x0063A520; // type:object size:0x100 scope:global align:32
+int_din_stego_fin_tex = .data:0x0063A620; // type:object size:0x200 scope:local align:32
+int_din_stego_baceB_tex = .data:0x0063A820; // type:object size:0x80 scope:global align:32
+int_din_stego_body_v = .data:0x0063A8A0; // type:object size:0x510 scope:global align:8
+int_din_stego_body_model = .data:0x0063ADB0; // type:object size:0x68 scope:global align:8
+int_din_stego_bodyT_model = .data:0x0063AE18; // type:object size:0x100 scope:global align:8
+int_din_stego_pal = .data:0x0063AF20; // type:object size:0x20 scope:local align:32
+int_din_stego_dummy_tex = .data:0x0063AF40; // type:object size:0x200 scope:local align:32
+int_din_stego_dummyA_v = .data:0x0063B140; // type:object size:0x80 scope:global align:8
+int_din_stego_dummyA_model = .data:0x0063B1C0; // type:object size:0x68 scope:global align:8
+int_din_stego_pal = .data:0x0063B240; // type:object size:0x20 scope:local align:32
+int_din_stego_dummy_tex = .data:0x0063B260; // type:object size:0x200 scope:local align:32
+int_din_stego_dummyB_v = .data:0x0063B460; // type:object size:0x80 scope:global align:8
+int_din_stego_dummyB_model = .data:0x0063B4E0; // type:object size:0x68 scope:global align:8
+int_din_stego_pal = .data:0x0063B560; // type:object size:0x20 scope:local align:32
+int_din_stego_finA_tex = .data:0x0063B580; // type:object size:0x80 scope:global align:32
+int_din_stego_h_tex = .data:0x0063B600; // type:object size:0x200 scope:global align:32
+int_din_stego_kubi2_tex = .data:0x0063B800; // type:object size:0x80 scope:global align:32
+int_din_stego_baceA_tex = .data:0x0063B880; // type:object size:0x200 scope:global align:32
+int_din_stego_poleA_tex = .data:0x0063BA80; // type:object size:0x80 scope:global align:32
+int_din_stego_kubi_tex = .data:0x0063BB00; // type:object size:0x80 scope:global align:32
+int_din_stego_head_v = .data:0x0063BB80; // type:object size:0x250 scope:global align:8
+int_din_stego_head_model = .data:0x0063BDD0; // type:object size:0x68 scope:global align:8
+int_din_stego_headT_model = .data:0x0063BE38; // type:object size:0xD8 scope:global align:8
+int_din_stego_pal = .data:0x0063BF20; // type:object size:0x20 scope:local align:32
+int_din_stego_fin_tex = .data:0x0063BF40; // type:object size:0x200 scope:local align:32
+int_din_stego_kubi2C_tex = .data:0x0063C140; // type:object size:0x80 scope:global align:32
+int_din_stego_baceC_tex = .data:0x0063C1C0; // type:object size:0x200 scope:global align:32
+int_din_stego_poleC_tex = .data:0x0063C3C0; // type:object size:0x80 scope:global align:32
+int_din_stego_tail_v = .data:0x0063C440; // type:object size:0x3C0 scope:global align:8
+int_din_stego_tail_model = .data:0x0063C800; // type:object size:0x68 scope:global align:8
+int_din_stego_tailT_model = .data:0x0063C868; // type:object size:0xC8 scope:global align:8
+int_din_stump_pal = .data:0x0063C940; // type:object size:0x20 scope:global align:32
+int_din_stump_3_tex = .data:0x0063C960; // type:object size:0x200 scope:global align:32
+int_din_stump_1_tex = .data:0x0063CB60; // type:object size:0x400 scope:global align:32
+int_din_stump_2_tex = .data:0x0063CF60; // type:object size:0x100 scope:global align:32
+int_din_stump_v = .data:0x0063D060; // type:object size:0x290 scope:global align:8
+int_din_stump_on_model = .data:0x0063D2F0; // type:object size:0xB8 scope:global align:8
+int_din_stump_onT_model = .data:0x0063D3A8; // type:object size:0x58 scope:global align:8
+int_din_trex_pal = .data:0x0063D400; // type:object size:0x20 scope:local align:32
+int_din_trex_bd_tex = .data:0x0063D420; // type:object size:0x300 scope:global align:32
+int_din_trex_leg_tex = .data:0x0063D720; // type:object size:0x80 scope:global align:32
+int_din_trex_ic_tex = .data:0x0063D7A0; // type:object size:0x100 scope:global align:32
+int_din_trex_ni_tex = .data:0x0063D8A0; // type:object size:0x100 scope:global align:32
+int_din_trex_baceB_tex = .data:0x0063D9A0; // type:object size:0x200 scope:global align:32
+int_din_trex_body_v = .data:0x0063DBA0; // type:object size:0x4F0 scope:global align:8
+int_din_trex_body_model = .data:0x0063E090; // type:object size:0x68 scope:global align:8
+int_din_trex_bodyT_model = .data:0x0063E0F8; // type:object size:0xF8 scope:global align:8
+int_din_trex_pal = .data:0x0063E200; // type:object size:0x20 scope:local align:32
+int_din_trex_dummy_tex = .data:0x0063E220; // type:object size:0x200 scope:global align:32
+int_din_trex_dummy_v = .data:0x0063E420; // type:object size:0x80 scope:global align:8
+int_din_trex_dummy_model = .data:0x0063E4A0; // type:object size:0x68 scope:global align:8
+int_din_trex_pal = .data:0x0063E520; // type:object size:0x20 scope:local align:32
+int_din_trex_h_tex = .data:0x0063E540; // type:object size:0x400 scope:global align:32
+int_din_trex_baceA_tex = .data:0x0063E940; // type:object size:0x200 scope:global align:32
+int_din_trex_poleA_tex = .data:0x0063EB40; // type:object size:0x80 scope:global align:32
+int_din_trex_kb_tex = .data:0x0063EBC0; // type:object size:0x100 scope:global align:32
+int_din_trex_head_v = .data:0x0063ECC0; // type:object size:0x310 scope:global align:8
+int_din_trex_head_model = .data:0x0063EFD0; // type:object size:0x68 scope:global align:8
+int_din_trex_headT_model = .data:0x0063F038; // type:object size:0xC0 scope:global align:8
+int_din_trex_pal = .data:0x0063F100; // type:object size:0x20 scope:local align:32
+int_din_trex_tail_tex = .data:0x0063F120; // type:object size:0x400 scope:global align:32
+int_din_trex_baceC_tex = .data:0x0063F520; // type:object size:0x200 scope:global align:32
+int_din_trex_poleC_tex = .data:0x0063F720; // type:object size:0x80 scope:global align:32
+int_din_trex_tail_v = .data:0x0063F7A0; // type:object size:0x240 scope:global align:8
+int_din_trex_tail_model = .data:0x0063F9E0; // type:object size:0x68 scope:global align:8
+int_din_trex_tailT_model = .data:0x0063FA48; // type:object size:0x90 scope:global align:8
+int_din_trikera_pal = .data:0x0063FAE0; // type:object size:0x20 scope:local align:32
+int_din_trikera_body_tex = .data:0x0063FB00; // type:object size:0x300 scope:global align:32
+int_din_trikera_leg_tex = .data:0x0063FE00; // type:object size:0x80 scope:global align:32
+int_din_trikera_shin_tex = .data:0x0063FE80; // type:object size:0x100 scope:global align:32
+int_din_trikera_thigh_tex = .data:0x0063FF80; // type:object size:0x100 scope:global align:32
+int_din_trikera_baceB_tex = .data:0x00640080; // type:object size:0x200 scope:global align:32
+int_din_trikera_body_v = .data:0x00640280; // type:object size:0x450 scope:global align:8
+int_din_trikera_body_model = .data:0x006406D0; // type:object size:0x68 scope:global align:8
+int_din_trikera_bodyT_model = .data:0x00640738; // type:object size:0xF8 scope:global align:8
+int_din_trikera_pal = .data:0x00640840; // type:object size:0x20 scope:local align:32
+int_din_trikera_dummy_tex = .data:0x00640860; // type:object size:0x200 scope:global align:32
+int_din_trikera_dummy_v = .data:0x00640A60; // type:object size:0x80 scope:global align:8
+int_din_trikera_dummy_model = .data:0x00640AE0; // type:object size:0x68 scope:global align:8
+int_din_trikera_pal = .data:0x00640B60; // type:object size:0x20 scope:local align:32
+int_din_trikera_skull_tex = .data:0x00640B80; // type:object size:0x400 scope:global align:32
+int_din_trikera_horn_tex = .data:0x00640F80; // type:object size:0x100 scope:global align:32
+int_din_trikera_baceA_tex = .data:0x00641080; // type:object size:0x200 scope:global align:32
+int_din_trikera_poleA_tex = .data:0x00641280; // type:object size:0x80 scope:global align:32
+int_din_trikera_head_v = .data:0x00641300; // type:object size:0x330 scope:global align:8
+int_din_trikera_head_model = .data:0x00641630; // type:object size:0x68 scope:global align:8
+int_din_trikera_headT_model = .data:0x00641698; // type:object size:0xE0 scope:global align:8
+int_din_trikera_pal = .data:0x00641780; // type:object size:0x20 scope:local align:32
+int_din_trikera_baceC_tex = .data:0x006417A0; // type:object size:0x200 scope:global align:32
+int_din_trikera_poleC_tex = .data:0x006419A0; // type:object size:0x80 scope:global align:32
+int_din_trikera_tail_tex = .data:0x00641A20; // type:object size:0x400 scope:global align:32
+int_din_trikera_tail_v = .data:0x00641E20; // type:object size:0x2A0 scope:global align:8
+int_din_trikera_tail_model = .data:0x006420C0; // type:object size:0x68 scope:global align:8
+int_din_trikera_tailT_model = .data:0x00642128; // type:object size:0x98 scope:global align:8
+int_din_trilobite_pal = .data:0x006421C0; // type:object size:0x20 scope:global align:32
+int_din_trilobite_1_tex = .data:0x006421E0; // type:object size:0x400 scope:global align:32
+int_din_trilobite_2_tex = .data:0x006425E0; // type:object size:0x100 scope:global align:32
+int_din_trilobite_3_tex = .data:0x006426E0; // type:object size:0x200 scope:global align:32
+int_din_trilobite_v = .data:0x006428E0; // type:object size:0x220 scope:global align:8
+int_din_trilobite_on_model = .data:0x00642B00; // type:object size:0xA8 scope:global align:8
+int_din_trilobite_onT_model = .data:0x00642BA8; // type:object size:0x58 scope:global align:8
+mFM_earth_pal = .data:0x00642C00; // type:object size:0x180 scope:global align:4
+mFM_grd_s_earth_tex = .data:0x00642D80; // type:object size:0x800 scope:global align:4
+mFM_grd_s_earth_2_tex = .data:0x00643580; // type:object size:0x800 scope:global align:32
+mFM_grd_s_earth_3_tex = .data:0x00643D80; // type:object size:0x800 scope:global align:32
+mFM_grd_w_earth_tex = .data:0x00644580; // type:object size:0x800 scope:global align:32
+mFM_grd_w_earth_2_tex = .data:0x00644D80; // type:object size:0x800 scope:global align:32
+mFM_grd_w_earth_3_tex = .data:0x00645580; // type:object size:0x800 scope:global align:32
+cKF_ckcb_r_ef_f_tree3_cutL_tbl = .data:0x00645D80; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree3_cutL_tbl = .data:0x00645D84; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree3_cutL_tbl = .data:0x00645D94; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree3_cutL_tbl = .data:0x00645DA4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree3_cutL = .data:0x00645FA8; // type:object size:0x14 scope:global align:4
+ef_f_tree3_cutL_v = .data:0x00645FC0; // type:object size:0xB0 scope:global align:8
+ef_f_tree3_cutL_leaf_model = .data:0x00646070; // type:object size:0x28 scope:global align:8
+ef_f_tree3_cutL_trunk_model = .data:0x00646098; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree3_cutL_tbl = .data:0x006460D0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree3_cutL = .data:0x00646100; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree3_cutR_tbl = .data:0x00646108; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree3_cutR_tbl = .data:0x0064610C; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree3_cutR_tbl = .data:0x0064611C; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree3_cutR_tbl = .data:0x0064612C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree3_cutR = .data:0x00646330; // type:object size:0x14 scope:global align:4
+ef_f_tree3_cutR_v = .data:0x00646348; // type:object size:0xB0 scope:global align:8
+ef_f_tree3_cutR_leaf_model = .data:0x006463F8; // type:object size:0x28 scope:global align:8
+ef_f_tree3_cutR_trunk_model = .data:0x00646420; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree3_cutR_tbl = .data:0x00646458; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree3_cutR = .data:0x00646488; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree3_shakeL_tbl = .data:0x00646490; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree3_shakeL_tbl = .data:0x00646494; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree3_shakeL_tbl = .data:0x00646498; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree3_shakeL_tbl = .data:0x006464A8; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_f_tree3_shakeL = .data:0x00646528; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree3_shakeS_tbl = .data:0x00646540; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree3_shakeS_tbl = .data:0x00646544; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree3_shakeS_tbl = .data:0x00646548; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree3_shakeS_tbl = .data:0x00646558; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_f_tree3_shakeS = .data:0x0064657C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree3_shake_tbl = .data:0x00646590; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree3_shake_tbl = .data:0x00646594; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree3_shake_tbl = .data:0x00646598; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree3_shake_tbl = .data:0x006465A8; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_f_tree3_shake = .data:0x006465E4; // type:object size:0x14 scope:global align:4
+ef_f_tree3_shake_v = .data:0x006465F8; // type:object size:0x50 scope:global align:8
+ef_f_tree3_shake_leaf_model = .data:0x00646648; // type:object size:0x28 scope:global align:8
+cKF_je_r_ef_f_tree3_shake_tbl = .data:0x00646670; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_f_tree3_shake = .data:0x00646688; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree4_cutL_tbl = .data:0x00646690; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree4_cutL_tbl = .data:0x00646694; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree4_cutL_tbl = .data:0x006466A4; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree4_cutL_tbl = .data:0x006466B4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree4_cutL = .data:0x006468B8; // type:object size:0x14 scope:global align:4
+ef_f_tree4_cutL_v = .data:0x006468D0; // type:object size:0x100 scope:global align:8
+ef_f_tree4_cutL_leaf_model = .data:0x006469D0; // type:object size:0x38 scope:global align:8
+ef_f_tree4_cutL_trunk_model = .data:0x00646A08; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree4_cutL_tbl = .data:0x00646A40; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree4_cutL = .data:0x00646A70; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree4_cutR_tbl = .data:0x00646A78; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree4_cutR_tbl = .data:0x00646A7C; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree4_cutR_tbl = .data:0x00646A8C; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree4_cutR_tbl = .data:0x00646A9C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree4_cutR = .data:0x00646CA0; // type:object size:0x14 scope:global align:4
+ef_f_tree4_cutR_v = .data:0x00646CB8; // type:object size:0x100 scope:global align:8
+ef_f_tree4_cutR_leaf_model = .data:0x00646DB8; // type:object size:0x38 scope:global align:8
+ef_f_tree4_cutR_trunk_model = .data:0x00646DF0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree4_cutR_tbl = .data:0x00646E28; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree4_cutR = .data:0x00646E58; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree4_shakeL_tbl = .data:0x00646E60; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree4_shakeL_tbl = .data:0x00646E64; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree4_shakeL_tbl = .data:0x00646E68; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree4_shakeL_tbl = .data:0x00646E78; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_f_tree4_shakeL = .data:0x00646EF8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree4_shakeS_tbl = .data:0x00646F10; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree4_shakeS_tbl = .data:0x00646F14; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree4_shakeS_tbl = .data:0x00646F18; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree4_shakeS_tbl = .data:0x00646F28; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_f_tree4_shakeS = .data:0x00646F4C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree4_shake_tbl = .data:0x00646F60; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree4_shake_tbl = .data:0x00646F64; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree4_shake_tbl = .data:0x00646F68; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree4_shake_tbl = .data:0x00646F78; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_f_tree4_shake = .data:0x00646FB4; // type:object size:0x14 scope:global align:4
+ef_f_tree4_shake_v = .data:0x00646FC8; // type:object size:0xA0 scope:global align:8
+ef_f_tree4_shake_leaf_model = .data:0x00647068; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree4_shake_tbl = .data:0x006470A0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_f_tree4_shake = .data:0x006470B8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree5_cutL_tbl = .data:0x006470C0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree5_cutL_tbl = .data:0x006470C4; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree5_cutL_tbl = .data:0x006470D4; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree5_cutL_tbl = .data:0x006470E4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree5_cutL = .data:0x006472E8; // type:object size:0x14 scope:global align:4
+ef_f_tree5_cutL_v = .data:0x00647300; // type:object size:0x150 scope:global align:8
+ef_f_tree5_cutL_leaf_model = .data:0x00647450; // type:object size:0x48 scope:global align:8
+ef_f_tree5_cutL_trunk_model = .data:0x00647498; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree5_cutL_tbl = .data:0x006474D0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree5_cutL = .data:0x00647500; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree5_cutR_tbl = .data:0x00647508; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_f_tree5_cutR_tbl = .data:0x0064750C; // type:object size:0x10 scope:global align:4
+cKF_c_ef_f_tree5_cutR_tbl = .data:0x0064751C; // type:object size:0xE scope:global align:4
+cKF_ds_ef_f_tree5_cutR_tbl = .data:0x0064752C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_f_tree5_cutR = .data:0x00647730; // type:object size:0x14 scope:global align:4
+ef_f_tree5_cutR_v = .data:0x00647748; // type:object size:0x150 scope:global align:8
+ef_f_tree5_cutR_leaf_model = .data:0x00647898; // type:object size:0x48 scope:global align:8
+ef_f_tree5_cutR_trunk_model = .data:0x006478E0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_f_tree5_cutR_tbl = .data:0x00647918; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_f_tree5_cutR = .data:0x00647948; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_f_tree5_shakeL_tbl = .data:0x00647950; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree5_shakeL_tbl = .data:0x00647954; // type:object size:0xA scope:global align:4
+cKF_c_ef_f_tree5_shakeL_tbl = .data:0x00647960; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_f_tree5_shakeL_tbl = .data:0x00647968; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_f_tree5_shakeL = .data:0x006479DC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree5_shakeS_tbl = .data:0x006479F0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree5_shakeS_tbl = .data:0x006479F4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree5_shakeS_tbl = .data:0x006479F8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree5_shakeS_tbl = .data:0x00647A08; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_f_tree5_shakeS = .data:0x00647A28; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_f_tree5_shake_tbl = .data:0x00647A40; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_f_tree5_shake_tbl = .data:0x00647A44; // type:object size:0x2 scope:global align:4
+cKF_c_ef_f_tree5_shake_tbl = .data:0x00647A48; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_f_tree5_shake_tbl = .data:0x00647A58; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_f_tree5_shake = .data:0x00647A94; // type:object size:0x14 scope:global align:4
+ef_f_tree5_shake_v = .data:0x00647AA8; // type:object size:0xF0 scope:global align:8
+ef_f_tree5_shake_model = .data:0x00647B98; // type:object size:0x48 scope:global align:8
+cKF_je_r_ef_f_tree5_shake_tbl = .data:0x00647BE0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_f_tree5_shake = .data:0x00647BF8; // type:object size:0x8 scope:global align:4
+ef_f_tree_leaf_modeset = .data:0x00647C00; // type:object size:0x38 scope:global align:8
+ef_f_tree_trunk_modeset = .data:0x00647C38; // type:object size:0x28 scope:global align:8
+obj_f_tree_leaf_tex_txt = .data:0x00647C60; // type:object size:0x800 scope:global align:32
+obj_f_tree_cutS_tex_txt = .data:0x00648460; // type:object size:0x200 scope:global align:32
+obj_f_tree_cutL_tex_txt = .data:0x00648660; // type:object size:0x600 scope:global align:32
+cKF_ckcb_r_ef_s_cedar3_cutL_tbl = .data:0x00648C60; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar3_cutL_tbl = .data:0x00648C64; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar3_cutL_tbl = .data:0x00648C74; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar3_cutL_tbl = .data:0x00648C84; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar3_cutL = .data:0x00648E88; // type:object size:0x14 scope:global align:4
+ef_s_cedar3_cutL_v = .data:0x00648EA0; // type:object size:0x1D0 scope:global align:8
+ef_s_cedar3_cutL_leaf_model = .data:0x00649070; // type:object size:0x30 scope:global align:8
+ef_s_cedar3_cutL_trunk_model = .data:0x006490A0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar3_cutL_tbl = .data:0x006490D8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar3_cutL = .data:0x00649108; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar3_cutR_tbl = .data:0x00649110; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar3_cutR_tbl = .data:0x00649114; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar3_cutR_tbl = .data:0x00649124; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar3_cutR_tbl = .data:0x00649134; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar3_cutR = .data:0x00649338; // type:object size:0x14 scope:global align:4
+ef_s_cedar3_cutR_v = .data:0x00649350; // type:object size:0x1D0 scope:global align:8
+ef_s_cedar3_cutR_leaf_model = .data:0x00649520; // type:object size:0x30 scope:global align:8
+ef_s_cedar3_cutR_trunk_model = .data:0x00649550; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar3_cutR_tbl = .data:0x00649588; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar3_cutR = .data:0x006495B8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar3_shakeL_tbl = .data:0x006495C0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar3_shakeL_tbl = .data:0x006495C4; // type:object size:0xA scope:global align:4
+cKF_c_ef_s_cedar3_shakeL_tbl = .data:0x006495D0; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_s_cedar3_shakeL_tbl = .data:0x006495D8; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_s_cedar3_shakeL = .data:0x0064964C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar3_shakeS_tbl = .data:0x00649660; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar3_shakeS_tbl = .data:0x00649664; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_cedar3_shakeS_tbl = .data:0x00649668; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_cedar3_shakeS_tbl = .data:0x00649678; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_s_cedar3_shakeS = .data:0x00649698; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar3_shake_tbl = .data:0x006496B0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar3_shake_tbl = .data:0x006496B4; // type:object size:0x6 scope:global align:4
+cKF_c_ef_s_cedar3_shake_tbl = .data:0x006496BC; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_cedar3_shake_tbl = .data:0x006496C8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_s_cedar3_shake = .data:0x0064970C; // type:object size:0x14 scope:global align:4
+ef_s_cedar3_shake_v = .data:0x00649720; // type:object size:0x170 scope:global align:8
+ef_s_cedar3_shake_model = .data:0x00649890; // type:object size:0x30 scope:global align:8
+cKF_je_r_ef_s_cedar3_shake_tbl = .data:0x006498C0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_cedar3_shake = .data:0x006498D8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar4_cutL_tbl = .data:0x006498E0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar4_cutL_tbl = .data:0x006498E4; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar4_cutL_tbl = .data:0x006498F4; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar4_cutL_tbl = .data:0x00649904; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar4_cutL = .data:0x00649B08; // type:object size:0x14 scope:global align:4
+ef_s_cedar4_cutL_v = .data:0x00649B20; // type:object size:0x350 scope:global align:8
+ef_s_cedar4_cutL_leaf_model = .data:0x00649E70; // type:object size:0x50 scope:global align:8
+ef_s_cedar4_cutL_trunk_model = .data:0x00649EC0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar4_cutL_tbl = .data:0x00649EF8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar4_cutL = .data:0x00649F28; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar4_cutR_tbl = .data:0x00649F30; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar4_cutR_tbl = .data:0x00649F34; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar4_cutR_tbl = .data:0x00649F44; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar4_cutR_tbl = .data:0x00649F54; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar4_cutR = .data:0x0064A158; // type:object size:0x14 scope:global align:4
+ef_s_cedar4_cutR_v = .data:0x0064A170; // type:object size:0x350 scope:global align:8
+ef_s_cedar4_cutR_leaf_model = .data:0x0064A4C0; // type:object size:0x50 scope:global align:8
+ef_s_cedar4_cutR_trunk_model = .data:0x0064A510; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar4_cutR_tbl = .data:0x0064A548; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar4_cutR = .data:0x0064A578; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar4_shakeL_tbl = .data:0x0064A580; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar4_shakeL_tbl = .data:0x0064A584; // type:object size:0xA scope:global align:4
+cKF_c_ef_s_cedar4_shakeL_tbl = .data:0x0064A590; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_s_cedar4_shakeL_tbl = .data:0x0064A598; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_s_cedar4_shakeL = .data:0x0064A60C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar4_shakeS_tbl = .data:0x0064A620; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar4_shakeS_tbl = .data:0x0064A624; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_cedar4_shakeS_tbl = .data:0x0064A628; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_cedar4_shakeS_tbl = .data:0x0064A638; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_s_cedar4_shakeS = .data:0x0064A658; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar4_shake_tbl = .data:0x0064A670; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar4_shake_tbl = .data:0x0064A674; // type:object size:0x6 scope:global align:4
+cKF_c_ef_s_cedar4_shake_tbl = .data:0x0064A67C; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_cedar4_shake_tbl = .data:0x0064A688; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_s_cedar4_shake = .data:0x0064A6CC; // type:object size:0x14 scope:global align:4
+ef_s_cedar4_shake_v = .data:0x0064A6E0; // type:object size:0x2F0 scope:global align:8
+ef_s_cedar4_shake_model = .data:0x0064A9D0; // type:object size:0x50 scope:global align:8
+cKF_je_r_ef_s_cedar4_shake_tbl = .data:0x0064AA20; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_cedar4_shake = .data:0x0064AA38; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar5_cutL_tbl = .data:0x0064AA40; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar5_cutL_tbl = .data:0x0064AA44; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar5_cutL_tbl = .data:0x0064AA54; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar5_cutL_tbl = .data:0x0064AA64; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar5_cutL = .data:0x0064AC68; // type:object size:0x14 scope:global align:4
+ef_s_cedar5_cutL_v = .data:0x0064AC80; // type:object size:0x4A0 scope:global align:8
+ef_s_cedar5_cutL_leaf_model = .data:0x0064B120; // type:object size:0x70 scope:global align:8
+ef_s_cedar5_cutL_trunk_model = .data:0x0064B190; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar5_cutL_tbl = .data:0x0064B1C8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar5_cutL = .data:0x0064B1F8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar5_cutR_tbl = .data:0x0064B200; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_cedar5_cutR_tbl = .data:0x0064B204; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_cedar5_cutR_tbl = .data:0x0064B214; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_cedar5_cutR_tbl = .data:0x0064B224; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_cedar5_cutR = .data:0x0064B428; // type:object size:0x14 scope:global align:4
+ef_s_cedar5_cutR_v = .data:0x0064B440; // type:object size:0x4A0 scope:global align:8
+ef_s_cedar5_cutR_leaf_model = .data:0x0064B8E0; // type:object size:0x70 scope:global align:8
+ef_s_cedar5_cutR_trunk_model = .data:0x0064B950; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_cedar5_cutR_tbl = .data:0x0064B988; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_cedar5_cutR = .data:0x0064B9B8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_cedar5_shakeL_tbl = .data:0x0064B9C0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar5_shakeL_tbl = .data:0x0064B9C4; // type:object size:0xA scope:global align:4
+cKF_c_ef_s_cedar5_shakeL_tbl = .data:0x0064B9D0; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_s_cedar5_shakeL_tbl = .data:0x0064B9D8; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_s_cedar5_shakeL = .data:0x0064BA4C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar5_shakeS_tbl = .data:0x0064BA60; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar5_shakeS_tbl = .data:0x0064BA64; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_cedar5_shakeS_tbl = .data:0x0064BA68; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_cedar5_shakeS_tbl = .data:0x0064BA78; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_s_cedar5_shakeS = .data:0x0064BA98; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_cedar5_shake_tbl = .data:0x0064BAB0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_cedar5_shake_tbl = .data:0x0064BAB4; // type:object size:0x6 scope:global align:4
+cKF_c_ef_s_cedar5_shake_tbl = .data:0x0064BABC; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_cedar5_shake_tbl = .data:0x0064BAC8; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_s_cedar5_shake = .data:0x0064BB0C; // type:object size:0x14 scope:global align:4
+ef_s_cedar5_shake_v = .data:0x0064BB20; // type:object size:0x440 scope:global align:8
+ef_s_cedar5_shake_model = .data:0x0064BF60; // type:object size:0x70 scope:global align:8
+cKF_je_r_ef_s_cedar5_shake_tbl = .data:0x0064BFD0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_cedar5_shake = .data:0x0064BFE8; // type:object size:0x8 scope:global align:4
+ef_s_cedar_leaf_modeset = .data:0x0064BFF0; // type:object size:0x38 scope:global align:8
+ef_s_cedar_trunk_modeset = .data:0x0064C028; // type:object size:0x28 scope:global align:8
+obj_s_cedar_leaf_tex_txt = .data:0x0064C060; // type:object size:0x800 scope:global align:32
+obj_s_cedar_cutS_tex_txt = .data:0x0064C860; // type:object size:0x200 scope:global align:32
+obj_s_cedar_cutL_tex_txt = .data:0x0064CA60; // type:object size:0x600 scope:global align:32
+cKF_ckcb_r_ef_s_palm3_cutL_tbl = .data:0x0064D060; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm3_cutL_tbl = .data:0x0064D064; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm3_cutL_tbl = .data:0x0064D078; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm3_cutL_tbl = .data:0x0064D084; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm3_cutL = .data:0x0064D2AC; // type:object size:0x14 scope:global align:4
+ef_s_palm3_cutL_v = .data:0x0064D2C0; // type:object size:0x160 scope:global align:8
+ef_s_palm3_cutL_leaf_model = .data:0x0064D420; // type:object size:0x30 scope:global align:8
+ef_s_palm3_cutL_trunk_model = .data:0x0064D450; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm3_cutL_tbl = .data:0x0064D488; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm3_cutL = .data:0x0064D4B8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm3_cutR_tbl = .data:0x0064D4C0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm3_cutR_tbl = .data:0x0064D4C4; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm3_cutR_tbl = .data:0x0064D4D8; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm3_cutR_tbl = .data:0x0064D4E4; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm3_cutR = .data:0x0064D70C; // type:object size:0x14 scope:global align:4
+ef_s_palm3_cutR_v = .data:0x0064D720; // type:object size:0x160 scope:global align:8
+ef_s_palm3_cutR_leaf_model = .data:0x0064D880; // type:object size:0x30 scope:global align:8
+ef_s_palm3_cutR_trunk_model = .data:0x0064D8B0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm3_cutR_tbl = .data:0x0064D8E8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm3_cutR = .data:0x0064D918; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm3_shakeL_tbl = .data:0x0064D920; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm3_shakeL_tbl = .data:0x0064D924; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm3_shakeL_tbl = .data:0x0064D928; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm3_shakeL_tbl = .data:0x0064D938; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_s_palm3_shakeL = .data:0x0064D9B8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm3_shakeS_tbl = .data:0x0064D9D0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm3_shakeS_tbl = .data:0x0064D9D4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm3_shakeS_tbl = .data:0x0064D9D8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm3_shakeS_tbl = .data:0x0064D9E8; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_s_palm3_shakeS = .data:0x0064DA0C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm3_shake_tbl = .data:0x0064DA20; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm3_shake_tbl = .data:0x0064DA24; // type:object size:0x4 scope:global align:4
+cKF_c_ef_s_palm3_shake_tbl = .data:0x0064DA28; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_palm3_shake_tbl = .data:0x0064DA38; // type:object size:0x54 scope:global align:4
+cKF_ba_r_ef_s_palm3_shake = .data:0x0064DA8C; // type:object size:0x14 scope:global align:4
+ef_s_palm3_shake_v = .data:0x0064DAA0; // type:object size:0x100 scope:global align:8
+ef_s_palm3_shake_model = .data:0x0064DBA0; // type:object size:0x30 scope:global align:8
+cKF_je_r_ef_s_palm3_shake_tbl = .data:0x0064DBD0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_palm3_shake = .data:0x0064DBE8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm4_cutL_tbl = .data:0x0064DBF0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm4_cutL_tbl = .data:0x0064DBF4; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm4_cutL_tbl = .data:0x0064DC08; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm4_cutL_tbl = .data:0x0064DC14; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm4_cutL = .data:0x0064DE3C; // type:object size:0x14 scope:global align:4
+ef_s_palm4_cutL_v = .data:0x0064DE50; // type:object size:0x260 scope:global align:8
+ef_s_palm4_cutL_leaf_model = .data:0x0064E0B0; // type:object size:0x40 scope:global align:8
+ef_s_palm4_cutL_trunk_model = .data:0x0064E0F0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm4_cutL_tbl = .data:0x0064E128; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm4_cutL = .data:0x0064E158; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm4_cutR_tbl = .data:0x0064E160; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm4_cutR_tbl = .data:0x0064E164; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm4_cutR_tbl = .data:0x0064E178; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm4_cutR_tbl = .data:0x0064E184; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm4_cutR = .data:0x0064E3AC; // type:object size:0x14 scope:global align:4
+ef_s_palm4_cutR_v = .data:0x0064E3C0; // type:object size:0x260 scope:global align:8
+ef_s_palm4_cutR_leaf_model = .data:0x0064E620; // type:object size:0x40 scope:global align:8
+ef_s_palm4_cutR_trunk_model = .data:0x0064E660; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm4_cutR_tbl = .data:0x0064E698; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm4_cutR = .data:0x0064E6C8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm4_shakeL_tbl = .data:0x0064E6D0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm4_shakeL_tbl = .data:0x0064E6D4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm4_shakeL_tbl = .data:0x0064E6D8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm4_shakeL_tbl = .data:0x0064E6E8; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_s_palm4_shakeL = .data:0x0064E768; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm4_shakeS_tbl = .data:0x0064E780; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm4_shakeS_tbl = .data:0x0064E784; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm4_shakeS_tbl = .data:0x0064E788; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm4_shakeS_tbl = .data:0x0064E798; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_s_palm4_shakeS = .data:0x0064E7BC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm4_shake_tbl = .data:0x0064E7D0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm4_shake_tbl = .data:0x0064E7D4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm4_shake_tbl = .data:0x0064E7D8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm4_shake_tbl = .data:0x0064E7E8; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_s_palm4_shake = .data:0x0064E824; // type:object size:0x14 scope:global align:4
+ef_s_palm4_shake_v = .data:0x0064E838; // type:object size:0x200 scope:global align:8
+ef_s_palm4_shake_model = .data:0x0064EA38; // type:object size:0x40 scope:global align:8
+cKF_je_r_ef_s_palm4_shake_tbl = .data:0x0064EA78; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_palm4_shake = .data:0x0064EA90; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm5_cutL_tbl = .data:0x0064EA98; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm5_cutL_tbl = .data:0x0064EA9C; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm5_cutL_tbl = .data:0x0064EAB0; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm5_cutL_tbl = .data:0x0064EABC; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm5_cutL = .data:0x0064ECE4; // type:object size:0x14 scope:global align:4
+ef_s_palm5_cutL_v = .data:0x0064ECF8; // type:object size:0x360 scope:global align:8
+ef_s_palm5_cutL_leaf_model = .data:0x0064F058; // type:object size:0x60 scope:global align:8
+ef_s_palm5_cutL_trunk_model = .data:0x0064F0B8; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm5_cutL_tbl = .data:0x0064F0F0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm5_cutL = .data:0x0064F120; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm5_cutR_tbl = .data:0x0064F128; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_palm5_cutR_tbl = .data:0x0064F12C; // type:object size:0x12 scope:global align:4
+cKF_c_ef_s_palm5_cutR_tbl = .data:0x0064F140; // type:object size:0xC scope:global align:4
+cKF_ds_ef_s_palm5_cutR_tbl = .data:0x0064F14C; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_s_palm5_cutR = .data:0x0064F374; // type:object size:0x14 scope:global align:4
+ef_s_palm5_cutR_v = .data:0x0064F388; // type:object size:0x360 scope:global align:8
+ef_s_palm5_cutR_leaf_model = .data:0x0064F6E8; // type:object size:0x60 scope:global align:8
+ef_s_palm5_cutR_trunk_model = .data:0x0064F748; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_palm5_cutR_tbl = .data:0x0064F780; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_palm5_cutR = .data:0x0064F7B0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_palm5_shakeL_tbl = .data:0x0064F7B8; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm5_shakeL_tbl = .data:0x0064F7BC; // type:object size:0xC scope:global align:4
+cKF_c_ef_s_palm5_shakeL_tbl = .data:0x0064F7C8; // type:object size:0x6 scope:global align:4
+cKF_ds_ef_s_palm5_shakeL_tbl = .data:0x0064F7D0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_ef_s_palm5_shakeL = .data:0x0064F854; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm5_shakeS_tbl = .data:0x0064F868; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm5_shakeS_tbl = .data:0x0064F86C; // type:object size:0xC scope:global align:4
+cKF_c_ef_s_palm5_shakeS_tbl = .data:0x0064F878; // type:object size:0x6 scope:global align:4
+cKF_ds_ef_s_palm5_shakeS_tbl = .data:0x0064F880; // type:object size:0x5A scope:global align:4
+cKF_ba_r_ef_s_palm5_shakeS = .data:0x0064F8DC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_palm5_shake_tbl = .data:0x0064F8F0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_palm5_shake_tbl = .data:0x0064F8F4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_palm5_shake_tbl = .data:0x0064F8F8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_palm5_shake_tbl = .data:0x0064F908; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_s_palm5_shake = .data:0x0064F944; // type:object size:0x14 scope:global align:4
+ef_s_palm5_shake_v = .data:0x0064F958; // type:object size:0x300 scope:global align:8
+ef_s_palm5_shake_model = .data:0x0064FC58; // type:object size:0x60 scope:global align:8
+cKF_je_r_ef_s_palm5_shake_tbl = .data:0x0064FCB8; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_palm5_shake = .data:0x0064FCD0; // type:object size:0x8 scope:global align:4
+ef_s_palm_leaf_modeset = .data:0x0064FCD8; // type:object size:0x38 scope:global align:8
+ef_s_palm_trunk_modeset = .data:0x0064FD10; // type:object size:0x28 scope:global align:8
+obj_s_palm_leaf_tex_txt = .data:0x0064FD40; // type:object size:0x800 scope:global align:32
+obj_s_palm_cutS_tex_txt = .data:0x00650540; // type:object size:0x200 scope:global align:32
+obj_s_palm_cutL_tex_txt = .data:0x00650740; // type:object size:0x600 scope:global align:32
+cKF_ckcb_r_ef_s_tree3_cutL_tbl = .data:0x00650D40; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree3_cutL_tbl = .data:0x00650D44; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree3_cutL_tbl = .data:0x00650D54; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree3_cutL_tbl = .data:0x00650D64; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree3_cutL = .data:0x00650F68; // type:object size:0x14 scope:global align:4
+ef_s_tree3_cutL_v = .data:0x00650F80; // type:object size:0xB0 scope:global align:8
+ef_s_tree3_cutL_leaf_model = .data:0x00651030; // type:object size:0x28 scope:global align:8
+ef_s_tree3_cutL_trunk_model = .data:0x00651058; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree3_cutL_tbl = .data:0x00651090; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree3_cutL = .data:0x006510C0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree3_cutR_tbl = .data:0x006510C8; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree3_cutR_tbl = .data:0x006510CC; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree3_cutR_tbl = .data:0x006510DC; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree3_cutR_tbl = .data:0x006510EC; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree3_cutR = .data:0x006512F0; // type:object size:0x14 scope:global align:4
+ef_s_tree3_cutR_v = .data:0x00651308; // type:object size:0xB0 scope:global align:8
+ef_s_tree3_cutR_leaf_model = .data:0x006513B8; // type:object size:0x28 scope:global align:8
+ef_s_tree3_cutR_trunk_model = .data:0x006513E0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree3_cutR_tbl = .data:0x00651418; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree3_cutR = .data:0x00651448; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree3_shakeL_tbl = .data:0x00651450; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree3_shakeL_tbl = .data:0x00651454; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree3_shakeL_tbl = .data:0x00651458; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree3_shakeL_tbl = .data:0x00651468; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_s_tree3_shakeL = .data:0x006514E8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree3_shakeS_tbl = .data:0x00651500; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree3_shakeS_tbl = .data:0x00651504; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree3_shakeS_tbl = .data:0x00651508; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree3_shakeS_tbl = .data:0x00651518; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_s_tree3_shakeS = .data:0x0065153C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree3_shake_tbl = .data:0x00651550; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree3_shake_tbl = .data:0x00651554; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree3_shake_tbl = .data:0x00651558; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree3_shake_tbl = .data:0x00651568; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_s_tree3_shake = .data:0x006515A4; // type:object size:0x14 scope:global align:4
+ef_s_tree3_shake_v = .data:0x006515B8; // type:object size:0x50 scope:global align:8
+ef_s_tree3_shake_leaf_model = .data:0x00651608; // type:object size:0x28 scope:global align:8
+cKF_je_r_ef_s_tree3_shake_tbl = .data:0x00651630; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_tree3_shake = .data:0x00651648; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree4_cutL_tbl = .data:0x00651650; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree4_cutL_tbl = .data:0x00651654; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree4_cutL_tbl = .data:0x00651664; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree4_cutL_tbl = .data:0x00651674; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree4_cutL = .data:0x00651878; // type:object size:0x14 scope:global align:4
+ef_s_tree4_cutL_v = .data:0x00651890; // type:object size:0x100 scope:global align:8
+ef_s_tree4_cutL_leaf_model = .data:0x00651990; // type:object size:0x38 scope:global align:8
+ef_s_tree4_cutL_trunk_model = .data:0x006519C8; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree4_cutL_tbl = .data:0x00651A00; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree4_cutL = .data:0x00651A30; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree4_cutR_tbl = .data:0x00651A38; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree4_cutR_tbl = .data:0x00651A3C; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree4_cutR_tbl = .data:0x00651A4C; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree4_cutR_tbl = .data:0x00651A5C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree4_cutR = .data:0x00651C60; // type:object size:0x14 scope:global align:4
+ef_s_tree4_cutR_v = .data:0x00651C78; // type:object size:0x100 scope:global align:8
+ef_s_tree4_cutR_leaf_model = .data:0x00651D78; // type:object size:0x38 scope:global align:8
+ef_s_tree4_cutR_trunk_model = .data:0x00651DB0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree4_cutR_tbl = .data:0x00651DE8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree4_cutR = .data:0x00651E18; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree4_shakeL_tbl = .data:0x00651E20; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree4_shakeL_tbl = .data:0x00651E24; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree4_shakeL_tbl = .data:0x00651E28; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree4_shakeL_tbl = .data:0x00651E38; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_s_tree4_shakeL = .data:0x00651EB8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree4_shakeS_tbl = .data:0x00651ED0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree4_shakeS_tbl = .data:0x00651ED4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree4_shakeS_tbl = .data:0x00651ED8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree4_shakeS_tbl = .data:0x00651EE8; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_s_tree4_shakeS = .data:0x00651F0C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree4_shake_tbl = .data:0x00651F20; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree4_shake_tbl = .data:0x00651F24; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree4_shake_tbl = .data:0x00651F28; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree4_shake_tbl = .data:0x00651F38; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_s_tree4_shake = .data:0x00651F74; // type:object size:0x14 scope:global align:4
+ef_s_tree4_shake_v = .data:0x00651F88; // type:object size:0xA0 scope:global align:8
+ef_s_tree4_shake_leaf_model = .data:0x00652028; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree4_shake_tbl = .data:0x00652060; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_tree4_shake = .data:0x00652078; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree5_cutL_tbl = .data:0x00652080; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree5_cutL_tbl = .data:0x00652084; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree5_cutL_tbl = .data:0x00652094; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree5_cutL_tbl = .data:0x006520A4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree5_cutL = .data:0x006522A8; // type:object size:0x14 scope:global align:4
+ef_s_tree5_cutL_v = .data:0x006522C0; // type:object size:0x150 scope:global align:8
+ef_s_tree5_cutL_leaf_model = .data:0x00652410; // type:object size:0x48 scope:global align:8
+ef_s_tree5_cutL_trunk_model = .data:0x00652458; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree5_cutL_tbl = .data:0x00652490; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree5_cutL = .data:0x006524C0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree5_cutR_tbl = .data:0x006524C8; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_s_tree5_cutR_tbl = .data:0x006524CC; // type:object size:0x10 scope:global align:4
+cKF_c_ef_s_tree5_cutR_tbl = .data:0x006524DC; // type:object size:0xE scope:global align:4
+cKF_ds_ef_s_tree5_cutR_tbl = .data:0x006524EC; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_s_tree5_cutR = .data:0x006526F0; // type:object size:0x14 scope:global align:4
+ef_s_tree5_cutR_v = .data:0x00652708; // type:object size:0x150 scope:global align:8
+ef_s_tree5_cutR_leaf_model = .data:0x00652858; // type:object size:0x48 scope:global align:8
+ef_s_tree5_cutR_trunk_model = .data:0x006528A0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_s_tree5_cutR_tbl = .data:0x006528D8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_s_tree5_cutR = .data:0x00652908; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_s_tree5_shakeL_tbl = .data:0x00652910; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree5_shakeL_tbl = .data:0x00652914; // type:object size:0xA scope:global align:4
+cKF_c_ef_s_tree5_shakeL_tbl = .data:0x00652920; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_s_tree5_shakeL_tbl = .data:0x00652928; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_s_tree5_shakeL = .data:0x0065299C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree5_shakeS_tbl = .data:0x006529B0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree5_shakeS_tbl = .data:0x006529B4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree5_shakeS_tbl = .data:0x006529B8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree5_shakeS_tbl = .data:0x006529C8; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_s_tree5_shakeS = .data:0x006529E8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_s_tree5_shake_tbl = .data:0x00652A00; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_s_tree5_shake_tbl = .data:0x00652A04; // type:object size:0x2 scope:global align:4
+cKF_c_ef_s_tree5_shake_tbl = .data:0x00652A08; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_s_tree5_shake_tbl = .data:0x00652A18; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_s_tree5_shake = .data:0x00652A54; // type:object size:0x14 scope:global align:4
+ef_s_tree5_shake_v = .data:0x00652A68; // type:object size:0xF0 scope:global align:8
+ef_s_tree5_shake_model = .data:0x00652B58; // type:object size:0x48 scope:global align:8
+cKF_je_r_ef_s_tree5_shake_tbl = .data:0x00652BA0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_s_tree5_shake = .data:0x00652BB8; // type:object size:0x8 scope:global align:4
+ef_s_tree_leaf_modeset = .data:0x00652BC0; // type:object size:0x38 scope:global align:8
+ef_s_tree_trunk_modeset = .data:0x00652BF8; // type:object size:0x28 scope:global align:8
+obj_s_tree_leaf_tex_txt = .data:0x00652C20; // type:object size:0x800 scope:global align:32
+obj_s_tree_cutS_tex_txt = .data:0x00653420; // type:object size:0x200 scope:global align:32
+obj_s_tree_cutL_tex_txt = .data:0x00653620; // type:object size:0x600 scope:global align:32
+cKF_ckcb_r_ef_w_cedar3_cutL_tbl = .data:0x00653C20; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_cedar3_cutL_tbl = .data:0x00653C24; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_cedar3_cutL_tbl = .data:0x00653C34; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_cedar3_cutL_tbl = .data:0x00653C44; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_cedar3_cutL = .data:0x00653E48; // type:object size:0x14 scope:global align:4
+ef_w_cedar3_cutL_v = .data:0x00653E60; // type:object size:0x1D0 scope:global align:8
+ef_w_cedar3_cutL_leaf_model = .data:0x00654030; // type:object size:0x30 scope:global align:8
+ef_w_cedar3_cutL_trunk_model = .data:0x00654060; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_cedar3_cutL_tbl = .data:0x00654098; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_cedar3_cutL = .data:0x006540C8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_cedar3_cutR_tbl = .data:0x006540D0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_cedar3_cutR_tbl = .data:0x006540D4; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_cedar3_cutR_tbl = .data:0x006540E4; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_cedar3_cutR_tbl = .data:0x006540F4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_cedar3_cutR = .data:0x006542F8; // type:object size:0x14 scope:global align:4
+ef_w_cedar3_cutR_v = .data:0x00654310; // type:object size:0x1D0 scope:global align:8
+ef_w_cedar3_cutR_leaf_model = .data:0x006544E0; // type:object size:0x30 scope:global align:8
+ef_w_cedar3_cutR_trunk_model = .data:0x00654510; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_cedar3_cutR_tbl = .data:0x00654548; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_cedar3_cutR = .data:0x00654578; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_cedar3_shakeL_tbl = .data:0x00654580; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar3_shakeL_tbl = .data:0x00654584; // type:object size:0xA scope:global align:4
+cKF_c_ef_w_cedar3_shakeL_tbl = .data:0x00654590; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_w_cedar3_shakeL_tbl = .data:0x00654598; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_w_cedar3_shakeL = .data:0x0065460C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_cedar3_shakeS_tbl = .data:0x00654620; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar3_shakeS_tbl = .data:0x00654624; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_cedar3_shakeS_tbl = .data:0x00654628; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_cedar3_shakeS_tbl = .data:0x00654638; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_w_cedar3_shakeS = .data:0x00654658; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_cedar3_shake_tbl = .data:0x00654670; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar3_shake_tbl = .data:0x00654674; // type:object size:0x6 scope:global align:4
+cKF_c_ef_w_cedar3_shake_tbl = .data:0x0065467C; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_cedar3_shake_tbl = .data:0x00654688; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_w_cedar3_shake = .data:0x006546CC; // type:object size:0x14 scope:global align:4
+ef_w_cedar3_shake_v = .data:0x006546E0; // type:object size:0x170 scope:global align:8
+ef_w_cedar3_shake_model = .data:0x00654850; // type:object size:0x30 scope:global align:8
+cKF_je_r_ef_w_cedar3_shake_tbl = .data:0x00654880; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_cedar3_shake = .data:0x00654898; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_cedar4_cutL_tbl = .data:0x006548A0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_cedar4_cutL_tbl = .data:0x006548A4; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_cedar4_cutL_tbl = .data:0x006548B4; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_cedar4_cutL_tbl = .data:0x006548C4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_cedar4_cutL = .data:0x00654AC8; // type:object size:0x14 scope:global align:4
+ef_w_cedar4_cutL_v = .data:0x00654AE0; // type:object size:0x350 scope:global align:8
+ef_w_cedar4_cutL_leaf_model = .data:0x00654E30; // type:object size:0x50 scope:global align:8
+ef_w_cedar4_cutL_trunk_model = .data:0x00654E80; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_cedar4_cutL_tbl = .data:0x00654EB8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_cedar4_cutL = .data:0x00654EE8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_cedar4_cutR_tbl = .data:0x00654EF0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_cedar4_cutR_tbl = .data:0x00654EF4; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_cedar4_cutR_tbl = .data:0x00654F04; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_cedar4_cutR_tbl = .data:0x00654F14; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_cedar4_cutR = .data:0x00655118; // type:object size:0x14 scope:global align:4
+ef_w_cedar4_cutR_v = .data:0x00655130; // type:object size:0x350 scope:global align:8
+ef_w_cedar4_cutR_leaf_model = .data:0x00655480; // type:object size:0x50 scope:global align:8
+ef_w_cedar4_cutR_trunk_model = .data:0x006554D0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_cedar4_cutR_tbl = .data:0x00655508; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_cedar4_cutR = .data:0x00655538; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_cedar4_shakeL_tbl = .data:0x00655540; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar4_shakeL_tbl = .data:0x00655544; // type:object size:0xA scope:global align:4
+cKF_c_ef_w_cedar4_shakeL_tbl = .data:0x00655550; // type:object size:0x8 scope:global align:4
+cKF_ds_ef_w_cedar4_shakeL_tbl = .data:0x00655558; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_w_cedar4_shakeL = .data:0x006555CC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_cedar4_shakeS_tbl = .data:0x006555E0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar4_shakeS_tbl = .data:0x006555E4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_cedar4_shakeS_tbl = .data:0x006555E8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_cedar4_shakeS_tbl = .data:0x006555F8; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_w_cedar4_shakeS = .data:0x00655618; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_cedar4_shake_tbl = .data:0x00655630; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_cedar4_shake_tbl = .data:0x00655634; // type:object size:0x6 scope:global align:4
+cKF_c_ef_w_cedar4_shake_tbl = .data:0x0065563C; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_cedar4_shake_tbl = .data:0x00655648; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_w_cedar4_shake = .data:0x0065568C; // type:object size:0x14 scope:global align:4
+ef_w_cedar4_shake_v = .data:0x006556A0; // type:object size:0x2F0 scope:global align:8
+ef_w_cedar4_shake_model = .data:0x00655990; // type:object size:0x50 scope:global align:8
+cKF_je_r_ef_w_cedar4_shake_tbl = .data:0x006559E0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_cedar4_shake = .data:0x006559F8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_x_cedar5_cutL_tbl = .data:0x00655A00; // type:object size:0x5 scope:global align:4
+cKF_kn_ef_x_cedar5_cutL_tbl = .data:0x00655A08; // type:object size:0x10 scope:global align:4
+cKF_c_ef_x_cedar5_cutL_tbl = .data:0x00655A18; // type:object size:0x14 scope:global align:4
+cKF_ds_ef_x_cedar5_cutL_tbl = .data:0x00655A2C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_x_cedar5_cutL = .data:0x00655C30; // type:object size:0x14 scope:global align:4
+ef_x_cedar5_cutL_v = .data:0x00655C48; // type:object size:0x640 scope:global align:8
+ef_x_cedar5_cutL_light_model = .data:0x00656288; // type:object size:0x48 scope:global align:8
+ef_x_cedar5_cutL_leaf_model = .data:0x006562D0; // type:object size:0x70 scope:global align:8
+ef_x_cedar5_cutL_trunk_model = .data:0x00656340; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_x_cedar5_cutL_tbl = .data:0x00656378; // type:object size:0x3C scope:global align:4
+cKF_bs_r_ef_x_cedar5_cutL = .data:0x006563B4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_x_cedar5_cutR_tbl = .data:0x006563C0; // type:object size:0x5 scope:global align:4
+cKF_kn_ef_x_cedar5_cutR_tbl = .data:0x006563C8; // type:object size:0x10 scope:global align:4
+cKF_c_ef_x_cedar5_cutR_tbl = .data:0x006563D8; // type:object size:0x14 scope:global align:4
+cKF_ds_ef_x_cedar5_cutR_tbl = .data:0x006563EC; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_x_cedar5_cutR = .data:0x006565F0; // type:object size:0x14 scope:global align:4
+ef_x_cedar5_cutR_v = .data:0x00656608; // type:object size:0x640 scope:global align:8
+ef_x_cedar5_cutR_light_model = .data:0x00656C48; // type:object size:0x48 scope:global align:8
+ef_x_cedar5_cutR_leaf_model = .data:0x00656C90; // type:object size:0x70 scope:global align:8
+ef_x_cedar5_cutR_trunk_model = .data:0x00656D00; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_x_cedar5_cutR_tbl = .data:0x00656D38; // type:object size:0x3C scope:global align:4
+cKF_bs_r_ef_x_cedar5_cutR = .data:0x00656D74; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_x_cedar5_shakeL_tbl = .data:0x00656D80; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_cedar5_shakeL_tbl = .data:0x00656D84; // type:object size:0xA scope:global align:4
+cKF_c_ef_x_cedar5_shakeL_tbl = .data:0x00656D90; // type:object size:0xE scope:global align:4
+cKF_ds_ef_x_cedar5_shakeL_tbl = .data:0x00656DA0; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_x_cedar5_shakeL = .data:0x00656E14; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_x_cedar5_shakeS_tbl = .data:0x00656E28; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_cedar5_shakeS_tbl = .data:0x00656E2C; // type:object size:0x2 scope:global align:4
+cKF_c_ef_x_cedar5_shakeS_tbl = .data:0x00656E30; // type:object size:0x16 scope:global align:4
+cKF_ds_ef_x_cedar5_shakeS_tbl = .data:0x00656E48; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_x_cedar5_shakeS = .data:0x00656E68; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_x_cedar5_shake_tbl = .data:0x00656E80; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_cedar5_shake_tbl = .data:0x00656E84; // type:object size:0x6 scope:global align:4
+cKF_c_ef_x_cedar5_shake_tbl = .data:0x00656E8C; // type:object size:0x12 scope:global align:4
+cKF_ds_ef_x_cedar5_shake_tbl = .data:0x00656EA0; // type:object size:0x42 scope:global align:4
+cKF_ba_r_ef_x_cedar5_shake = .data:0x00656EE4; // type:object size:0x14 scope:global align:4
+ef_x_cedar5_shake_v = .data:0x00656EF8; // type:object size:0x5E0 scope:global align:8
+ef_x_cedar5_shake_light_model = .data:0x006574D8; // type:object size:0x48 scope:global align:8
+ef_x_cedar5_shake_model = .data:0x00657520; // type:object size:0x70 scope:global align:8
+cKF_je_r_ef_x_cedar5_shake_tbl = .data:0x00657590; // type:object size:0x24 scope:global align:4
+cKF_bs_r_ef_x_cedar5_shake = .data:0x006575B4; // type:object size:0x8 scope:global align:4
+ef_w_cedar_leaf_modeset = .data:0x006575C0; // type:object size:0x38 scope:global align:8
+ef_w_cedar_trunk_modeset = .data:0x006575F8; // type:object size:0x28 scope:global align:8
+ef_w_cedar_light_modeset = .data:0x00657620; // type:object size:0x38 scope:global align:8
+obj_cedar_light_pal = .data:0x00657660; // type:object size:0x20 scope:local align:32
+obj_w_cedar_leaf_tex_txt = .data:0x00657680; // type:object size:0x800 scope:global align:32
+obj_w_cedar_cutS_tex_txt = .data:0x00657E80; // type:object size:0x200 scope:global align:32
+obj_w_cedar_cutL_tex_txt = .data:0x00658080; // type:object size:0x600 scope:global align:32
+obj_x_cedar_light_tex_txt = .data:0x00658680; // type:object size:0x200 scope:global align:32
+cKF_ckcb_r_ef_w_palm3_cutL_tbl = .data:0x00658880; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm3_cutL_tbl = .data:0x00658884; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm3_cutL_tbl = .data:0x00658898; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm3_cutL_tbl = .data:0x006588A4; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm3_cutL = .data:0x00658ACC; // type:object size:0x14 scope:global align:4
+ef_w_palm3_cutL_v = .data:0x00658AE0; // type:object size:0x160 scope:global align:8
+ef_w_palm3_cutL_leaf_model = .data:0x00658C40; // type:object size:0x30 scope:global align:8
+ef_w_palm3_cutL_trunk_model = .data:0x00658C70; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm3_cutL_tbl = .data:0x00658CA8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm3_cutL = .data:0x00658CD8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm3_cutR_tbl = .data:0x00658CE0; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm3_cutR_tbl = .data:0x00658CE4; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm3_cutR_tbl = .data:0x00658CF8; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm3_cutR_tbl = .data:0x00658D04; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm3_cutR = .data:0x00658F2C; // type:object size:0x14 scope:global align:4
+ef_w_palm3_cutR_v = .data:0x00658F40; // type:object size:0x160 scope:global align:8
+ef_w_palm3_cutR_leaf_model = .data:0x006590A0; // type:object size:0x30 scope:global align:8
+ef_w_palm3_cutR_trunk_model = .data:0x006590D0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm3_cutR_tbl = .data:0x00659108; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm3_cutR = .data:0x00659138; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm3_shakeL_tbl = .data:0x00659140; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm3_shakeL_tbl = .data:0x00659144; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm3_shakeL_tbl = .data:0x00659148; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm3_shakeL_tbl = .data:0x00659158; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_w_palm3_shakeL = .data:0x006591D8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm3_shakeS_tbl = .data:0x006591F0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm3_shakeS_tbl = .data:0x006591F4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm3_shakeS_tbl = .data:0x006591F8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm3_shakeS_tbl = .data:0x00659208; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_w_palm3_shakeS = .data:0x0065922C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm3_shake_tbl = .data:0x00659240; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm3_shake_tbl = .data:0x00659244; // type:object size:0x4 scope:global align:4
+cKF_c_ef_w_palm3_shake_tbl = .data:0x00659248; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_palm3_shake_tbl = .data:0x00659258; // type:object size:0x54 scope:global align:4
+cKF_ba_r_ef_w_palm3_shake = .data:0x006592AC; // type:object size:0x14 scope:global align:4
+ef_w_palm3_shake_v = .data:0x006592C0; // type:object size:0x100 scope:global align:8
+ef_w_palm3_shake_model = .data:0x006593C0; // type:object size:0x30 scope:global align:8
+cKF_je_r_ef_w_palm3_shake_tbl = .data:0x006593F0; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_palm3_shake = .data:0x00659408; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm4_cutL_tbl = .data:0x00659410; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm4_cutL_tbl = .data:0x00659414; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm4_cutL_tbl = .data:0x00659428; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm4_cutL_tbl = .data:0x00659434; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm4_cutL = .data:0x0065965C; // type:object size:0x14 scope:global align:4
+ef_w_palm4_cutL_v = .data:0x00659670; // type:object size:0x260 scope:global align:8
+ef_w_palm4_cutL_leaf_model = .data:0x006598D0; // type:object size:0x40 scope:global align:8
+ef_w_palm4_cutL_trunk_model = .data:0x00659910; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm4_cutL_tbl = .data:0x00659948; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm4_cutL = .data:0x00659978; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm4_cutR_tbl = .data:0x00659980; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm4_cutR_tbl = .data:0x00659984; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm4_cutR_tbl = .data:0x00659998; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm4_cutR_tbl = .data:0x006599A4; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm4_cutR = .data:0x00659BCC; // type:object size:0x14 scope:global align:4
+ef_w_palm4_cutR_v = .data:0x00659BE0; // type:object size:0x260 scope:global align:8
+ef_w_palm4_cutR_leaf_model = .data:0x00659E40; // type:object size:0x40 scope:global align:8
+ef_w_palm4_cutR_trunk_model = .data:0x00659E80; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm4_cutR_tbl = .data:0x00659EB8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm4_cutR = .data:0x00659EE8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm4_shakeL_tbl = .data:0x00659EF0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm4_shakeL_tbl = .data:0x00659EF4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm4_shakeL_tbl = .data:0x00659EF8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm4_shakeL_tbl = .data:0x00659F08; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_w_palm4_shakeL = .data:0x00659F88; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm4_shakeS_tbl = .data:0x00659FA0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm4_shakeS_tbl = .data:0x00659FA4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm4_shakeS_tbl = .data:0x00659FA8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm4_shakeS_tbl = .data:0x00659FB8; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_w_palm4_shakeS = .data:0x00659FDC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm4_shake_tbl = .data:0x00659FF0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm4_shake_tbl = .data:0x00659FF4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm4_shake_tbl = .data:0x00659FF8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm4_shake_tbl = .data:0x0065A008; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_w_palm4_shake = .data:0x0065A044; // type:object size:0x14 scope:global align:4
+ef_w_palm4_shake_v = .data:0x0065A058; // type:object size:0x200 scope:global align:8
+ef_w_palm4_shake_model = .data:0x0065A258; // type:object size:0x40 scope:global align:8
+cKF_je_r_ef_w_palm4_shake_tbl = .data:0x0065A298; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_palm4_shake = .data:0x0065A2B0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm5_cutL_tbl = .data:0x0065A2B8; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm5_cutL_tbl = .data:0x0065A2BC; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm5_cutL_tbl = .data:0x0065A2D0; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm5_cutL_tbl = .data:0x0065A2DC; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm5_cutL = .data:0x0065A504; // type:object size:0x14 scope:global align:4
+ef_w_palm5_cutL_v = .data:0x0065A518; // type:object size:0x360 scope:global align:8
+ef_w_palm5_cutL_leaf_model = .data:0x0065A878; // type:object size:0x60 scope:global align:8
+ef_w_palm5_cutL_trunk_model = .data:0x0065A8D8; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm5_cutL_tbl = .data:0x0065A910; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm5_cutL = .data:0x0065A940; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm5_cutR_tbl = .data:0x0065A948; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_palm5_cutR_tbl = .data:0x0065A94C; // type:object size:0x12 scope:global align:4
+cKF_c_ef_w_palm5_cutR_tbl = .data:0x0065A960; // type:object size:0xC scope:global align:4
+cKF_ds_ef_w_palm5_cutR_tbl = .data:0x0065A96C; // type:object size:0x228 scope:global align:4
+cKF_ba_r_ef_w_palm5_cutR = .data:0x0065AB94; // type:object size:0x14 scope:global align:4
+ef_w_palm5_cutR_v = .data:0x0065ABA8; // type:object size:0x360 scope:global align:8
+ef_w_palm5_cutR_leaf_model = .data:0x0065AF08; // type:object size:0x60 scope:global align:8
+ef_w_palm5_cutR_trunk_model = .data:0x0065AF68; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_palm5_cutR_tbl = .data:0x0065AFA0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_palm5_cutR = .data:0x0065AFD0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_palm5_shakeL_tbl = .data:0x0065AFD8; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm5_shakeL_tbl = .data:0x0065AFDC; // type:object size:0xC scope:global align:4
+cKF_c_ef_w_palm5_shakeL_tbl = .data:0x0065AFE8; // type:object size:0x6 scope:global align:4
+cKF_ds_ef_w_palm5_shakeL_tbl = .data:0x0065AFF0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_ef_w_palm5_shakeL = .data:0x0065B074; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm5_shakeS_tbl = .data:0x0065B088; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm5_shakeS_tbl = .data:0x0065B08C; // type:object size:0xC scope:global align:4
+cKF_c_ef_w_palm5_shakeS_tbl = .data:0x0065B098; // type:object size:0x6 scope:global align:4
+cKF_ds_ef_w_palm5_shakeS_tbl = .data:0x0065B0A0; // type:object size:0x5A scope:global align:4
+cKF_ba_r_ef_w_palm5_shakeS = .data:0x0065B0FC; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_palm5_shake_tbl = .data:0x0065B110; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_palm5_shake_tbl = .data:0x0065B114; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_palm5_shake_tbl = .data:0x0065B118; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_palm5_shake_tbl = .data:0x0065B128; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_w_palm5_shake = .data:0x0065B164; // type:object size:0x14 scope:global align:4
+ef_w_palm5_shake_v = .data:0x0065B178; // type:object size:0x300 scope:global align:8
+ef_w_palm5_shake_model = .data:0x0065B478; // type:object size:0x60 scope:global align:8
+cKF_je_r_ef_w_palm5_shake_tbl = .data:0x0065B4D8; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_palm5_shake = .data:0x0065B4F0; // type:object size:0x8 scope:global align:4
+ef_w_palm_leaf_modeset = .data:0x0065B4F8; // type:object size:0x38 scope:global align:8
+ef_w_palm_trunk_modeset = .data:0x0065B530; // type:object size:0x28 scope:global align:8
+obj_w_palm_leaf_tex_txt = .data:0x0065B560; // type:object size:0x800 scope:global align:32
+obj_w_palm_cutS_tex_txt = .data:0x0065BD60; // type:object size:0x200 scope:global align:32
+obj_w_palm_cutL_tex_txt = .data:0x0065BF60; // type:object size:0x600 scope:global align:32
+cKF_ckcb_r_ef_w_tree3_cutL_tbl = .data:0x0065C560; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_tree3_cutL_tbl = .data:0x0065C564; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_tree3_cutL_tbl = .data:0x0065C574; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_tree3_cutL_tbl = .data:0x0065C584; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_tree3_cutL = .data:0x0065C788; // type:object size:0x14 scope:global align:4
+ef_w_tree3_cutL_v = .data:0x0065C7A0; // type:object size:0xB0 scope:global align:8
+ef_w_tree3_cutL_leaf_model = .data:0x0065C850; // type:object size:0x28 scope:global align:8
+ef_w_tree3_cutL_trunk_model = .data:0x0065C878; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_tree3_cutL_tbl = .data:0x0065C8B0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_tree3_cutL = .data:0x0065C8E0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_tree3_cutR_tbl = .data:0x0065C8E8; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_tree3_cutR_tbl = .data:0x0065C8EC; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_tree3_cutR_tbl = .data:0x0065C8FC; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_tree3_cutR_tbl = .data:0x0065C90C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_tree3_cutR = .data:0x0065CB10; // type:object size:0x14 scope:global align:4
+ef_w_tree3_cutR_v = .data:0x0065CB28; // type:object size:0xB0 scope:global align:8
+ef_w_tree3_cutR_leaf_model = .data:0x0065CBD8; // type:object size:0x28 scope:global align:8
+ef_w_tree3_cutR_trunk_model = .data:0x0065CC00; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_tree3_cutR_tbl = .data:0x0065CC38; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_tree3_cutR = .data:0x0065CC68; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_tree3_shakeL_tbl = .data:0x0065CC70; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree3_shakeL_tbl = .data:0x0065CC74; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree3_shakeL_tbl = .data:0x0065CC78; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree3_shakeL_tbl = .data:0x0065CC88; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_w_tree3_shakeL = .data:0x0065CD08; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_tree3_shakeS_tbl = .data:0x0065CD20; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree3_shakeS_tbl = .data:0x0065CD24; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree3_shakeS_tbl = .data:0x0065CD28; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree3_shakeS_tbl = .data:0x0065CD38; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_w_tree3_shakeS = .data:0x0065CD5C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_tree3_shake_tbl = .data:0x0065CD70; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree3_shake_tbl = .data:0x0065CD74; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree3_shake_tbl = .data:0x0065CD78; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree3_shake_tbl = .data:0x0065CD88; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_w_tree3_shake = .data:0x0065CDC4; // type:object size:0x14 scope:global align:4
+ef_w_tree3_shake_v = .data:0x0065CDD8; // type:object size:0x50 scope:global align:8
+ef_w_tree3_shake_leaf_model = .data:0x0065CE28; // type:object size:0x28 scope:global align:8
+cKF_je_r_ef_w_tree3_shake_tbl = .data:0x0065CE50; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_tree3_shake = .data:0x0065CE68; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_tree4_cutL_tbl = .data:0x0065CE70; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_tree4_cutL_tbl = .data:0x0065CE74; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_tree4_cutL_tbl = .data:0x0065CE84; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_tree4_cutL_tbl = .data:0x0065CE94; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_tree4_cutL = .data:0x0065D098; // type:object size:0x14 scope:global align:4
+ef_w_tree4_cutL_v = .data:0x0065D0B0; // type:object size:0x100 scope:global align:8
+ef_w_tree4_cutL_leaf_model = .data:0x0065D1B0; // type:object size:0x38 scope:global align:8
+ef_w_tree4_cutL_trunk_model = .data:0x0065D1E8; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_tree4_cutL_tbl = .data:0x0065D220; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_tree4_cutL = .data:0x0065D250; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_tree4_cutR_tbl = .data:0x0065D258; // type:object size:0x4 scope:global align:4
+cKF_kn_ef_w_tree4_cutR_tbl = .data:0x0065D25C; // type:object size:0x10 scope:global align:4
+cKF_c_ef_w_tree4_cutR_tbl = .data:0x0065D26C; // type:object size:0xE scope:global align:4
+cKF_ds_ef_w_tree4_cutR_tbl = .data:0x0065D27C; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_w_tree4_cutR = .data:0x0065D480; // type:object size:0x14 scope:global align:4
+ef_w_tree4_cutR_v = .data:0x0065D498; // type:object size:0x100 scope:global align:8
+ef_w_tree4_cutR_leaf_model = .data:0x0065D598; // type:object size:0x38 scope:global align:8
+ef_w_tree4_cutR_trunk_model = .data:0x0065D5D0; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_tree4_cutR_tbl = .data:0x0065D608; // type:object size:0x30 scope:global align:4
+cKF_bs_r_ef_w_tree4_cutR = .data:0x0065D638; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_w_tree4_shakeL_tbl = .data:0x0065D640; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree4_shakeL_tbl = .data:0x0065D644; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree4_shakeL_tbl = .data:0x0065D648; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree4_shakeL_tbl = .data:0x0065D658; // type:object size:0x7E scope:global align:4
+cKF_ba_r_ef_w_tree4_shakeL = .data:0x0065D6D8; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_tree4_shakeS_tbl = .data:0x0065D6F0; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree4_shakeS_tbl = .data:0x0065D6F4; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree4_shakeS_tbl = .data:0x0065D6F8; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree4_shakeS_tbl = .data:0x0065D708; // type:object size:0x24 scope:global align:4
+cKF_ba_r_ef_w_tree4_shakeS = .data:0x0065D72C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_w_tree4_shake_tbl = .data:0x0065D740; // type:object size:0x2 scope:global align:4
+cKF_kn_ef_w_tree4_shake_tbl = .data:0x0065D744; // type:object size:0x2 scope:global align:4
+cKF_c_ef_w_tree4_shake_tbl = .data:0x0065D748; // type:object size:0x10 scope:global align:4
+cKF_ds_ef_w_tree4_shake_tbl = .data:0x0065D758; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_w_tree4_shake = .data:0x0065D794; // type:object size:0x14 scope:global align:4
+ef_w_tree4_shake_v = .data:0x0065D7A8; // type:object size:0xA0 scope:global align:8
+ef_w_tree4_shake_leaf_model = .data:0x0065D848; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_w_tree4_shake_tbl = .data:0x0065D880; // type:object size:0x18 scope:global align:4
+cKF_bs_r_ef_w_tree4_shake = .data:0x0065D898; // type:object size:0x8 scope:global align:4
+ef_w_tree_leaf_modeset = .data:0x0065D8A0; // type:object size:0x38 scope:global align:8
+ef_w_tree_trunk_modeset = .data:0x0065D8D8; // type:object size:0x28 scope:global align:8
+ef_w_tree_light_modeset = .data:0x0065D900; // type:object size:0x38 scope:global align:8
+cKF_ckcb_r_ef_x_tree5_cutL_tbl = .data:0x0065D938; // type:object size:0x5 scope:global align:4
+cKF_kn_ef_x_tree5_cutL_tbl = .data:0x0065D940; // type:object size:0x10 scope:global align:4
+cKF_c_ef_x_tree5_cutL_tbl = .data:0x0065D950; // type:object size:0x14 scope:global align:4
+cKF_ds_ef_x_tree5_cutL_tbl = .data:0x0065D964; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_x_tree5_cutL = .data:0x0065DB68; // type:object size:0x14 scope:global align:4
+ef_x_tree5_cutL_v = .data:0x0065DB80; // type:object size:0x210 scope:global align:8
+obj_x_tree5_cutL_light_model = .data:0x0065DD90; // type:object size:0x30 scope:global align:8
+ef_x_tree5_cutL_leaf_model = .data:0x0065DDC0; // type:object size:0x48 scope:global align:8
+ef_x_tree5_cutL_trunk_model = .data:0x0065DE08; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_x_tree5_cutL_tbl = .data:0x0065DE40; // type:object size:0x3C scope:global align:4
+cKF_bs_r_ef_x_tree5_cutL = .data:0x0065DE7C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_x_tree5_cutR_tbl = .data:0x0065DE88; // type:object size:0x5 scope:global align:4
+cKF_kn_ef_x_tree5_cutR_tbl = .data:0x0065DE90; // type:object size:0x10 scope:global align:4
+cKF_c_ef_x_tree5_cutR_tbl = .data:0x0065DEA0; // type:object size:0x14 scope:global align:4
+cKF_ds_ef_x_tree5_cutR_tbl = .data:0x0065DEB4; // type:object size:0x204 scope:global align:4
+cKF_ba_r_ef_x_tree5_cutR = .data:0x0065E0B8; // type:object size:0x14 scope:global align:4
+ef_x_tree5_cutR_v = .data:0x0065E0D0; // type:object size:0x210 scope:global align:8
+obj_x_tree5_cutR_light_model = .data:0x0065E2E0; // type:object size:0x30 scope:global align:8
+ef_x_tree5_cutR_leaf_model = .data:0x0065E310; // type:object size:0x48 scope:global align:8
+ef_x_tree5_cutR_trunk_model = .data:0x0065E358; // type:object size:0x38 scope:global align:8
+cKF_je_r_ef_x_tree5_cutR_tbl = .data:0x0065E390; // type:object size:0x3C scope:global align:4
+cKF_bs_r_ef_x_tree5_cutR = .data:0x0065E3CC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_ef_x_tree5_shakeL_tbl = .data:0x0065E3D8; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_tree5_shakeL_tbl = .data:0x0065E3DC; // type:object size:0xA scope:global align:4
+cKF_c_ef_x_tree5_shakeL_tbl = .data:0x0065E3E8; // type:object size:0xE scope:global align:4
+cKF_ds_ef_x_tree5_shakeL_tbl = .data:0x0065E3F8; // type:object size:0x72 scope:global align:4
+cKF_ba_r_ef_x_tree5_shakeL = .data:0x0065E46C; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_x_tree5_shakeS_tbl = .data:0x0065E480; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_tree5_shakeS_tbl = .data:0x0065E484; // type:object size:0x2 scope:global align:4
+cKF_c_ef_x_tree5_shakeS_tbl = .data:0x0065E488; // type:object size:0x16 scope:global align:4
+cKF_ds_ef_x_tree5_shakeS_tbl = .data:0x0065E4A0; // type:object size:0x1E scope:global align:4
+cKF_ba_r_ef_x_tree5_shakeS = .data:0x0065E4C0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_ef_x_tree5_shake_tbl = .data:0x0065E4D8; // type:object size:0x3 scope:global align:4
+cKF_kn_ef_x_tree5_shake_tbl = .data:0x0065E4DC; // type:object size:0x2 scope:global align:4
+cKF_c_ef_x_tree5_shake_tbl = .data:0x0065E4E0; // type:object size:0x16 scope:global align:4
+cKF_ds_ef_x_tree5_shake_tbl = .data:0x0065E4F8; // type:object size:0x3C scope:global align:4
+cKF_ba_r_ef_x_tree5_shake = .data:0x0065E534; // type:object size:0x14 scope:global align:4
+ef_x_tree5_shake_v = .data:0x0065E548; // type:object size:0x1B0 scope:global align:8
+obj_x_tree5_shake_light_model = .data:0x0065E6F8; // type:object size:0x30 scope:global align:8
+ef_x_tree5_shake_model = .data:0x0065E728; // type:object size:0x48 scope:global align:8
+cKF_je_r_ef_x_tree5_shake_tbl = .data:0x0065E770; // type:object size:0x24 scope:global align:4
+cKF_bs_r_ef_x_tree5_shake = .data:0x0065E794; // type:object size:0x8 scope:global align:4
+obj_tree_light_pal = .data:0x0065E7A0; // type:object size:0x20 scope:global align:32
+obj_w_tree_leaf_tex_txt = .data:0x0065E7C0; // type:object size:0x800 scope:global align:32
+obj_w_tree_cutS_tex_txt = .data:0x0065EFC0; // type:object size:0x200 scope:global align:32
+obj_w_tree_cutL_tex_txt = .data:0x0065F1C0; // type:object size:0x600 scope:global align:32
+obj_x_tree_light_tex_txt = .data:0x0065F7C0; // type:object size:0x200 scope:global align:32
+ef_anahikari01_02_int_i4 = .data:0x0065F9C0; // type:object size:0x100 scope:global align:32
+ef_anahikari01_01_v = .data:0x0065FAC0; // type:object size:0x140 scope:global align:8
+ef_anahikari01_01_modelT = .data:0x0065FC00; // type:object size:0x88 scope:global align:8
+ef_anahikari01_01_int_i4 = .data:0x0065FCA0; // type:object size:0x100 scope:global align:32
+ef_anahikari01_02_v = .data:0x0065FDA0; // type:object size:0x140 scope:global align:8
+ef_anahikari01_02_modelT = .data:0x0065FEE0; // type:object size:0x88 scope:global align:8
+ef_anahikari01_01_evw_anime_2 = .data:0x0065FF68; // type:object size:0x8 scope:global align:4
+ef_anahikari01_01_evw_anime = .data:0x0065FF70; // type:object size:0x8 scope:global align:4
+ef_anahikari01_02_evw_anime_2 = .data:0x0065FF78; // type:object size:0x8 scope:global align:4
+ef_anahikari01_02_evw_anime = .data:0x0065FF80; // type:object size:0x8 scope:global align:4
+ef_ase01_0 = .data:0x0065FFA0; // type:object size:0x100 scope:local align:32
+ef_ase01_00_v = .data:0x006600A0; // type:object size:0x40 scope:global align:8
+ef_ase01_00_modelT = .data:0x006600E0; // type:object size:0x58 scope:global align:8
+ef_ase01_0 = .data:0x00660140; // type:object size:0x80 scope:local align:32
+ef_ase02_00_v = .data:0x006601C0; // type:object size:0x140 scope:global align:8
+ef_ase02_00_modelT = .data:0x00660300; // type:object size:0x60 scope:global align:8
+ef_ase02_01_v = .data:0x00660360; // type:object size:0x140 scope:global align:8
+ef_ase02_01_modelT = .data:0x006604A0; // type:object size:0x68 scope:global align:8
+ef_ase02_02_v = .data:0x00660508; // type:object size:0x140 scope:global align:8
+ef_ase02_02_modelT = .data:0x00660648; // type:object size:0x68 scope:global align:8
+ef_ase02_03_v = .data:0x006606B0; // type:object size:0x140 scope:global align:8
+ef_ase02_03_modelT = .data:0x006607F0; // type:object size:0x68 scope:global align:8
+ef_axe_pal = .data:0x00660860; // type:object size:0x20 scope:global align:32
+ef_axe_tuka1_tex_txt = .data:0x00660880; // type:object size:0x200 scope:global align:32
+ef_axe_edge1_tex_txt = .data:0x00660A80; // type:object size:0x200 scope:global align:32
+ef_axe1_v = .data:0x00660C80; // type:object size:0x1D0 scope:global align:8
+ef_axe1_model = .data:0x00660E50; // type:object size:0x98 scope:global align:8
+ef_axe_tuka2_tex_txt = .data:0x00660F00; // type:object size:0x200 scope:global align:32
+ef_axe_edge2_tex_txt = .data:0x00661100; // type:object size:0x200 scope:global align:32
+ef_axe2_v = .data:0x00661300; // type:object size:0x1B0 scope:global align:8
+ef_axe2_model = .data:0x006614B0; // type:object size:0x98 scope:global align:8
+ef_axe_edge3_tex_txt = .data:0x00661560; // type:object size:0x80 scope:global align:32 data:string
+ef_axe3_v = .data:0x006615E0; // type:object size:0xB0 scope:global align:8
+ef_axe3_model = .data:0x00661690; // type:object size:0x58 scope:global align:8
+ef_peke01_00 = .data:0x00661700; // type:object size:0x100 scope:global align:32
+ef_peke01_00_v = .data:0x00661800; // type:object size:0x40 scope:global align:8
+ef_peke01_00_modelT = .data:0x00661840; // type:object size:0x58 scope:global align:8
+ef_buruburu01_0_int_i4 = .data:0x006618A0; // type:object size:0x100 scope:global align:32
+ef_buruburu01_1_int_i4 = .data:0x006619A0; // type:object size:0x100 scope:global align:32
+ef_buruburu01_00_v = .data:0x00661AA0; // type:object size:0x40 scope:global align:8
+ef_buruburu01_00_modelT = .data:0x00661AE0; // type:object size:0x58 scope:global align:8
+ef_s_yabu01_0 = .data:0x00661B40; // type:object size:0x80 scope:global align:32
+ef_s_yabu01_00_v = .data:0x00661BC0; // type:object size:0x50 scope:global align:8
+ef_s_yabu01_00_modelT = .data:0x00661C10; // type:object size:0x58 scope:global align:8
+ef_s_tree01_0 = .data:0x00661C80; // type:object size:0x80 scope:global align:32
+ef_s_tree01_00_v = .data:0x00661D00; // type:object size:0x50 scope:global align:8
+ef_s_tree01_00_modelT = .data:0x00661D50; // type:object size:0x58 scope:global align:8
+grd_bush_pal = .data:0x00661DC0; // type:object size:0x20 scope:global align:32
+ef_w_yabu01_0 = .data:0x00661DE0; // type:object size:0x80 scope:global align:32
+ef_w_yabu01_00_v = .data:0x00661E60; // type:object size:0x40 scope:global align:8
+ef_w_yabu01_00_modelT = .data:0x00661EA0; // type:object size:0x50 scope:global align:8
+ef_f_tree01_0 = .data:0x00661F00; // type:object size:0x80 scope:global align:32
+ef_f_tree01_00_v = .data:0x00661F80; // type:object size:0x50 scope:global align:8
+ef_f_tree01_00_modelT = .data:0x00661FD0; // type:object size:0x58 scope:global align:8
+ef_s_cedar_tex = .data:0x00662040; // type:object size:0x100 scope:global align:32
+ef_s_cedar_v = .data:0x00662140; // type:object size:0x50 scope:global align:8
+ef_s_cedar_modelT = .data:0x00662190; // type:object size:0x58 scope:global align:8
+ef_s_palm_tex = .data:0x00662200; // type:object size:0x100 scope:global align:32
+ef_s_palm_v = .data:0x00662300; // type:object size:0x50 scope:global align:8
+ef_s_palm_modelT = .data:0x00662350; // type:object size:0x58 scope:global align:8
+ef_car01_1_int_i4 = .data:0x006623C0; // type:object size:0x80 scope:global align:32
+ef_car01_v = .data:0x00662440; // type:object size:0x250 scope:global align:8
+ef_car01_modelT = .data:0x00662690; // type:object size:0x110 scope:global align:8
+ef_carhosi01_01 = .data:0x006627A0; // type:object size:0x400 scope:global align:32
+ef_carhosi01_00_v = .data:0x00662BA0; // type:object size:0x40 scope:global align:8
+ef_carhosi01_00_modelT = .data:0x00662BE0; // type:object size:0x50 scope:global align:8
+ef_kamihubuki01_00_v = .data:0x00662C30; // type:object size:0x60 scope:global align:8
+ef_kamihubuki01_00_model = .data:0x00662C90; // type:object size:0x40 scope:global align:8
+ef_tape01_01_v = .data:0x00662CD0; // type:object size:0x160 scope:global align:8
+ef_tape01_01_model = .data:0x00662E30; // type:object size:0x90 scope:global align:8
+ef_coin_tex_txt = .data:0x00662EC0; // type:object size:0x80 scope:global align:32
+ef_coin_v = .data:0x00662F40; // type:object size:0x3C0 scope:global align:8
+ef_coin_model = .data:0x00663300; // type:object size:0xC0 scope:global align:8
+ef_coin_modelT = .data:0x006633C0; // type:object size:0xB8 scope:global align:8
+ef_daruma01_pal = .data:0x00663480; // type:object size:0x20 scope:global align:32
+ef_daruma01_00_tex = .data:0x006634A0; // type:object size:0x80 scope:global align:32
+ef_daruma01_00_v = .data:0x00663520; // type:object size:0x1D0 scope:global align:8
+ef_daruma01_00_model = .data:0x006636F0; // type:object size:0x70 scope:global align:8
+ef_daruma01_01_v = .data:0x00663760; // type:object size:0x280 scope:global align:8
+ef_daruma01_01_model = .data:0x006639E0; // type:object size:0x88 scope:global align:8
+ef_daruma01_02_v = .data:0x00663A68; // type:object size:0x280 scope:global align:8
+ef_daruma01_02_model = .data:0x00663CE8; // type:object size:0x88 scope:global align:8
+ef_anahori01_00_tex = .data:0x00663D80; // type:object size:0x80 scope:global align:32
+ef_anahori01_00_v = .data:0x00663E00; // type:object size:0xC0 scope:global align:8
+ef_anahori01_00_model = .data:0x00663EC0; // type:object size:0x70 scope:global align:8
+ef_anahori01_01_tex = .data:0x00663F40; // type:object size:0x80 scope:global align:32 data:string
+ef_anahori01_01_v = .data:0x00663FC0; // type:object size:0xC0 scope:global align:8
+ef_anahori01_01_model = .data:0x00664080; // type:object size:0x70 scope:global align:8
+ef_anahori01_02_v = .data:0x006640F0; // type:object size:0xC0 scope:global align:8
+ef_anahori01_02_model = .data:0x006641B0; // type:object size:0x70 scope:global align:8
+obj_hole_pal = .data:0x00664220; // type:object size:0x20 scope:global align:32
+ef_anahori02_01_tex = .data:0x00664240; // type:object size:0x80 scope:global align:32
+ef_anahori02_02_tex = .data:0x006642C0; // type:object size:0x80 scope:global align:32
+ef_anahori02_03_tex = .data:0x00664340; // type:object size:0x80 scope:global align:32
+ef_anahori02_04_tex = .data:0x006643C0; // type:object size:0x80 scope:global align:32
+ef_anahori02_00_v = .data:0x00664440; // type:object size:0x40 scope:global align:8
+ef_anahori02_00_modelT = .data:0x00664480; // type:object size:0x58 scope:global align:8
+ef_anahori03_pal = .data:0x006644E0; // type:object size:0x20 scope:global align:32
+ef_anahori03_03_tex = .data:0x00664500; // type:object size:0x80 scope:global align:32
+ef_anahori03_01_tex = .data:0x00664580; // type:object size:0x80 scope:global align:32
+ef_anahori03_02_tex = .data:0x00664600; // type:object size:0x80 scope:global align:32
+ef_anahori03_04_tex = .data:0x00664680; // type:object size:0x80 scope:global align:32
+ef_anahori03_00_v = .data:0x00664700; // type:object size:0x40 scope:global align:8
+ef_anahori03_00_modelT = .data:0x00664740; // type:object size:0x58 scope:global align:8
+ef_mogura01_pal = .data:0x006647A0; // type:object size:0x20 scope:global align:32
+ef_mogura01_03_tex = .data:0x006647C0; // type:object size:0x80 scope:global align:32
+ef_mogura01_01_tex = .data:0x00664840; // type:object size:0x80 scope:global align:32
+ef_mogura01_02_tex = .data:0x006648C0; // type:object size:0x80 scope:global align:32
+ef_mogura01_04_tex = .data:0x00664940; // type:object size:0x80 scope:global align:32
+ef_mogura01_00_v = .data:0x006649C0; // type:object size:0x40 scope:global align:8
+ef_mogura01_00_modelT = .data:0x00664A00; // type:object size:0x58 scope:global align:8
+ef_doyon01_00 = .data:0x00664A60; // type:object size:0x400 scope:global align:32
+ef_doyon01_00_v = .data:0x00664E60; // type:object size:0x40 scope:global align:8
+ef_doyon01_00_modelT = .data:0x00664EA0; // type:object size:0x48 scope:global align:8
+ef_dust01_0 = .data:0x00664F00; // type:object size:0x80 scope:global align:32
+ef_dust01_1 = .data:0x00664F80; // type:object size:0x80 scope:global align:32
+ef_dust01_2 = .data:0x00665000; // type:object size:0x80 scope:global align:32
+ef_dust01_3 = .data:0x00665080; // type:object size:0x80 scope:global align:32
+ef_dust01_00_v = .data:0x00665100; // type:object size:0x40 scope:global align:8
+ef_dust01_modelT = .data:0x00665140; // type:object size:0x58 scope:global align:8
+ef_dust01_stew_modelT = .data:0x00665198; // type:object size:0x58 scope:global align:8
+ef_haro01_00_modelT = .data:0x006651F0; // type:object size:0x58 scope:global align:8
+ef_gimonhu01_0 = .data:0x00665260; // type:object size:0x400 scope:global align:32
+ef_gimonhu01_00_v = .data:0x00665660; // type:object size:0x40 scope:global align:8
+ef_gimonhu01_00_modelT = .data:0x006656A0; // type:object size:0x50 scope:global align:8
+ef_goki01_0_int_i4 = .data:0x00665700; // type:object size:0x80 scope:global align:32
+ef_goki01_1_int_i4 = .data:0x00665780; // type:object size:0x80 scope:global align:32
+ef_goki01_2_int_i4 = .data:0x00665800; // type:object size:0x80 scope:global align:32
+ef_goki01_3_int_i4 = .data:0x00665880; // type:object size:0x80 scope:global align:32
+ef_goki01_01_v = .data:0x00665900; // type:object size:0x40 scope:global align:8
+ef_goki01_01_modelT = .data:0x00665940; // type:object size:0x50 scope:global align:8
+ef_goki01_01_evw_anime_1_tex_table = .data:0x00665990; // type:object size:0x10 scope:global align:4
+ef_goki01_01_evw_anime_1_anime_ptn = .data:0x006659A0; // type:object size:0x8 scope:global align:4
+ef_goki01_01_evw_anime_1 = .data:0x006659A8; // type:object size:0x10 scope:global align:4
+ef_goki01_01_evw_anime = .data:0x006659B8; // type:object size:0x8 scope:global align:4
+ef_ha01_0 = .data:0x006659C0; // type:object size:0x400 scope:global align:32
+ef_ha01_00_v = .data:0x00665DC0; // type:object size:0x40 scope:global align:8
+ef_ha01_00_modelT = .data:0x00665E00; // type:object size:0x50 scope:global align:8
+ef_hana01_tu_a_tex = .data:0x00665E60; // type:object size:0x80 scope:global align:32
+ef_hana01_tu_a_v = .data:0x00665EE0; // type:object size:0x50 scope:global align:8
+ef_hana01_tu_a_modelT = .data:0x00665F30; // type:object size:0x58 scope:global align:8
+ef_hana01_co_a_tex = .data:0x00665FA0; // type:object size:0x80 scope:global align:32
+ef_hana01_co_a_v = .data:0x00666020; // type:object size:0x50 scope:global align:8
+ef_hana01_co_a_modelT = .data:0x00666070; // type:object size:0x58 scope:global align:8
+ef_hana01_pa_a_tex = .data:0x006660E0; // type:object size:0x80 scope:global align:32
+ef_hana01_pa_a_v = .data:0x00666160; // type:object size:0x50 scope:global align:8
+ef_hana01_pa_a_modelT = .data:0x006661B0; // type:object size:0x58 scope:global align:8
+ef_hana01_ha_a_tex = .data:0x00666220; // type:object size:0x80 scope:global align:32
+ef_hana01_ha_a_v = .data:0x006662A0; // type:object size:0x50 scope:global align:8
+ef_hana01_ha_a_modelT = .data:0x006662F0; // type:object size:0x58 scope:global align:8
+ef_hanabi_b_0_inta_ia8 = .data:0x00666360; // type:object size:0x400 scope:global align:32
+ef_hanabi_b_1_inta_ia8 = .data:0x00666760; // type:object size:0x400 scope:global align:32
+ef_hanabi_b_00_v = .data:0x00666B60; // type:object size:0x40 scope:global align:8
+ef_hanabi_b_00_modelT = .data:0x00666BA0; // type:object size:0x58 scope:global align:8
+ef_hanabi_h_0_int_i4 = .data:0x00666C00; // type:object size:0x400 scope:global align:32
+ef_hanabi_h_1_int_i4 = .data:0x00667000; // type:object size:0x400 scope:global align:32
+ef_hanabi_h_00_v = .data:0x00667400; // type:object size:0x40 scope:global align:8
+ef_hanabi_h_00_modelT = .data:0x00667440; // type:object size:0x58 scope:global align:8
+ef_hanabi_y_0_int_i4 = .data:0x006674A0; // type:object size:0x400 scope:global align:32
+ef_hanabi_y_1_int_i4 = .data:0x006678A0; // type:object size:0x400 scope:global align:32
+ef_hanabi_y_00_v = .data:0x00667CA0; // type:object size:0x40 scope:global align:8
+ef_hanabi_y_00_modelT = .data:0x00667CE0; // type:object size:0x58 scope:global align:8
+ef_hirameki01_0 = .data:0x00667D40; // type:object size:0x200 scope:global align:32
+ef_hirameki01_den_v = .data:0x00667F40; // type:object size:0x40 scope:global align:8
+ef_hirameki01_den_modelT = .data:0x00667F80; // type:object size:0x48 scope:global align:8
+ef_hirameki01_1 = .data:0x00667FE0; // type:object size:0x80 scope:global align:32
+ef_hirameki01_hikari_v = .data:0x00668060; // type:object size:0x40 scope:global align:8
+ef_hirameki01_hikari_modelT = .data:0x006680A0; // type:object size:0x50 scope:global align:8
+ef_star01 = .data:0x00668100; // type:object size:0x400 scope:global align:32
+ef_star01_00_v = .data:0x00668500; // type:object size:0x40 scope:global align:8
+ef_star01_00_modelT = .data:0x00668540; // type:object size:0x50 scope:global align:8
+ef_think_l = .data:0x006685A0; // type:object size:0x400 scope:global align:32
+ef_think_l_v = .data:0x006689A0; // type:object size:0x40 scope:global align:8
+ef_think_l_modelT = .data:0x006689E0; // type:object size:0x50 scope:global align:8
+ef_think_s = .data:0x00668A40; // type:object size:0x400 scope:global align:32
+ef_think_s_v = .data:0x00668E40; // type:object size:0x40 scope:global align:8
+ef_think_s_modelT = .data:0x00668E80; // type:object size:0x50 scope:global align:8
+ef_kantanhu01_0 = .data:0x00668EE0; // type:object size:0x400 scope:global align:32
+ef_kantanhu01_00_v = .data:0x006692E0; // type:object size:0x40 scope:global align:8
+ef_kantanhu01_00_modelT = .data:0x00669320; // type:object size:0x50 scope:global align:8
+ef_kaze01_evw_anime_2 = .data:0x00669380; // type:object size:0x8 scope:global align:4
+ef_kaze01_evw_anime = .data:0x00669388; // type:object size:0x8 scope:global align:4
+ef_kaze01_0_int_i4 = .data:0x006693A0; // type:object size:0x80 scope:global align:32
+ef_kaze01_1_int_i4 = .data:0x00669420; // type:object size:0x80 scope:global align:32
+ef_kaze01_v = .data:0x006694A0; // type:object size:0x50 scope:global align:8
+ef_kaze01_v2 = .data:0x006694F0; // type:object size:0x50 scope:global align:8
+ef_kaze01_modelT = .data:0x00669540; // type:object size:0x70 scope:global align:8
+ef_kaze01_modelT2 = .data:0x006695B0; // type:object size:0x70 scope:global align:8
+ef_kaze01_2 = .data:0x00669620; // type:object size:0x100 scope:global align:32
+ef_kaze01_happa_v = .data:0x00669720; // type:object size:0x40 scope:global align:8
+ef_kaze01_happa_modelT = .data:0x00669760; // type:object size:0x58 scope:global align:8
+ef_kikuzu01_0 = .data:0x006697C0; // type:object size:0x80 scope:global align:32
+ef_kikuzu01_00_v = .data:0x00669840; // type:object size:0xC0 scope:global align:8
+ef_kikuzu01_00_modelT = .data:0x00669900; // type:object size:0x58 scope:global align:8
+act_killer_pal = .data:0x00669960; // type:object size:0x20 scope:global align:32
+act_killer_tex_txt = .data:0x00669980; // type:object size:0x200 scope:global align:32
+act_killer_v = .data:0x00669B80; // type:object size:0x190 scope:global align:8
+act_killer_model = .data:0x00669D10; // type:object size:0x98 scope:global align:8
+ef_kisha_kemuri01_0 = .data:0x00669DC0; // type:object size:0x80 scope:global align:32
+ef_kisha_kemuri01_1 = .data:0x00669E40; // type:object size:0x80 scope:global align:32
+ef_kisha_kemuri01_00_v = .data:0x00669EC0; // type:object size:0x40 scope:global align:8
+ef_kisha_kemuri01_modelT = .data:0x00669F00; // type:object size:0x60 scope:global align:8
+ef_amimizu01_0 = .data:0x00669F60; // type:object size:0x100 scope:global align:32
+ef_amimizu01_00_v = .data:0x0066A060; // type:object size:0x180 scope:global align:8
+ef_amimizu01_00_modelT = .data:0x0066A1E0; // type:object size:0x58 scope:global align:8
+ef_kore_tex = .data:0x0066A240; // type:object size:0x200 scope:global align:32
+ef_kore_v = .data:0x0066A440; // type:object size:0x40 scope:global align:8
+ef_kore_modelT = .data:0x0066A480; // type:object size:0x58 scope:global align:8
+ef_lovelove01_0 = .data:0x0066A4E0; // type:object size:0x100 scope:global align:32
+ef_lovelove01_00_v = .data:0x0066A5E0; // type:object size:0x40 scope:global align:8
+ef_lovelove01_00_modelT = .data:0x0066A620; // type:object size:0x50 scope:global align:8
+ef_lovelove02_0 = .data:0x0066A680; // type:object size:0x400 scope:global align:32
+ef_lovelove02_00_v = .data:0x0066AA80; // type:object size:0x40 scope:global align:8
+ef_lovelove02_00_modelT = .data:0x0066AAC0; // type:object size:0x50 scope:global align:8
+ef_circle_light_tex_4i4 = .data:0x0066AB20; // type:object size:0x200 scope:global align:32
+ef_circle_light_v = .data:0x0066AD20; // type:object size:0x40 scope:global align:8
+ef_circle_light_model = .data:0x0066AD60; // type:object size:0x48 scope:global align:8
+ef_sphere_light_tex_4i4_rgb_i4 = .data:0x0066ADC0; // type:object size:0x200 scope:global align:32
+ef_sphere_light_v = .data:0x0066AFC0; // type:object size:0x300 scope:global align:8
+ef_sphere_light_model = .data:0x0066B2C0; // type:object size:0x108 scope:global align:8
+ut_mike = .data:0x0066B3E0; // type:object size:0x80 scope:global align:32
+utPal_mike = .data:0x0066B460; // type:object size:0x20 scope:global align:32
+ut_mouth = .data:0x0066B480; // type:object size:0x80 scope:global align:32
+utPal_mouth = .data:0x0066B500; // type:object size:0x20 scope:global align:32
+ef_ongen_v = .data:0x0066B520; // type:object size:0x40 scope:global align:8
+ef_ongen_mic_model = .data:0x0066B560; // type:object size:0x58 scope:global align:8
+ef_ongen_mouth_model = .data:0x0066B5B8; // type:object size:0x58 scope:global align:8
+ef_koke_suiteki01_0_int_i4 = .data:0x0066B620; // type:object size:0x80 scope:global align:32
+ef_koke_suiteki01_1_int_i4 = .data:0x0066B6A0; // type:object size:0x80 scope:global align:32
+ef_koke_suiteki01_2_int_i4 = .data:0x0066B720; // type:object size:0x80 scope:global align:32
+ef_koke_suiteki01_3_int_i4 = .data:0x0066B7A0; // type:object size:0x80 scope:global align:32
+ef_koke_suiteki01_00_v = .data:0x0066B820; // type:object size:0x40 scope:global align:8
+ef_koke_suiteki01_00_modelT = .data:0x0066B860; // type:object size:0x58 scope:global align:8
+ef_mitiyuge01_0_int_i4 = .data:0x0066B8C0; // type:object size:0x80 scope:global align:32
+ef_motiyuge01_1_int_i4 = .data:0x0066B940; // type:object size:0x80 scope:global align:32
+ef_motiyuge01_2_int_i4 = .data:0x0066B9C0; // type:object size:0x80 scope:global align:32
+ef_motiyuge01_00_v = .data:0x0066BA40; // type:object size:0x40 scope:global align:8
+ef_motiyuge01_00_modelT = .data:0x0066BA80; // type:object size:0x48 scope:global align:8
+ef_muka = .data:0x0066BAE0; // type:object size:0x400 scope:global align:32
+ef_muka01_00_v = .data:0x0066BEE0; // type:object size:0x40 scope:global align:8
+ef_muka01_00_modelT = .data:0x0066BF20; // type:object size:0x48 scope:global align:8
+ef_namida01_0 = .data:0x0066BF80; // type:object size:0x100 scope:global align:32
+ef_namida01_v = .data:0x0066C080; // type:object size:0x40 scope:global align:8
+ef_namida01_modelT = .data:0x0066C0C0; // type:object size:0x58 scope:global align:8
+ef_awa01_0 = .data:0x0066C120; // type:object size:0x100 scope:global align:32
+ef_neboke_awa01_v = .data:0x0066C220; // type:object size:0x40 scope:global align:8
+ef_neboke_awa01_modelT = .data:0x0066C260; // type:object size:0x58 scope:global align:8
+ef_moon01_01_evw_anime_2 = .data:0x0066C2C0; // type:object size:0x8 scope:global align:4
+ef_moon01_01_evw_anime = .data:0x0066C2C8; // type:object size:0x8 scope:global align:4
+ef_moon01_1_int_i4 = .data:0x0066C2E0; // type:object size:0x200 scope:local align:32
+ef_moon01_2_int_i4 = .data:0x0066C4E0; // type:object size:0x800 scope:global align:32
+ef_moon01_01_v = .data:0x0066CCE0; // type:object size:0x40 scope:global align:8
+ef_moon01_01_modelT = .data:0x0066CD20; // type:object size:0x68 scope:global align:8
+ef_moon01_00_evw_anime_2 = .data:0x0066CDA0; // type:object size:0x8 scope:global align:4
+ef_moon01_00_evw_anime = .data:0x0066CDA8; // type:object size:0x8 scope:global align:4
+ef_moon01_0_int_i4 = .data:0x0066CDC0; // type:object size:0x800 scope:global align:32
+ef_moon01_1_int_i4 = .data:0x0066D5C0; // type:object size:0x200 scope:local align:32
+ef_moon01_00_v = .data:0x0066D7C0; // type:object size:0x40 scope:global align:8
+ef_moon01_00_modelT = .data:0x0066D800; // type:object size:0x68 scope:global align:8
+ef_onpu01_0 = .data:0x0066D880; // type:object size:0x100 scope:global align:32
+ef_onpu01_00_v = .data:0x0066D980; // type:object size:0x40 scope:global align:8
+ef_onpu01_00_modelT = .data:0x0066D9C0; // type:object size:0x48 scope:global align:8
+ef_onpu01_1 = .data:0x0066DA20; // type:object size:0x100 scope:global align:32
+ef_onpu01_01_v = .data:0x0066DB20; // type:object size:0x40 scope:global align:8
+ef_onpu01_01_modelT = .data:0x0066DB60; // type:object size:0x50 scope:global align:8
+ef_onpu01_2 = .data:0x0066DBC0; // type:object size:0x100 scope:global align:32
+ef_onpu01_02_v = .data:0x0066DCC0; // type:object size:0x40 scope:global align:8
+ef_onpu01_02_modelT = .data:0x0066DD00; // type:object size:0x50 scope:global align:8
+ef_otikomi_us1_int_i4 = .data:0x0066DD60; // type:object size:0x400 scope:global align:32
+ef_otikomi_us2_int_i4 = .data:0x0066E160; // type:object size:0x80 scope:global align:32
+ef_otikomi_us2_v = .data:0x0066E1E0; // type:object size:0x40 scope:global align:8
+ef_otikomi_us2_model = .data:0x0066E220; // type:object size:0x60 scope:global align:8
+ef_bodyprint01_0 = .data:0x0066E280; // type:object size:0x100 scope:global align:32
+ef_bodyprint01_00_v = .data:0x0066E380; // type:object size:0x40 scope:global align:8
+ef_bodyprint01_00_modelT = .data:0x0066E3C0; // type:object size:0x48 scope:global align:8
+ef_footprint01_0 = .data:0x0066E420; // type:object size:0x80 scope:global align:32
+ef_footprint01_00_v = .data:0x0066E4A0; // type:object size:0x40 scope:global align:8
+ef_footprint01_00_modelT = .data:0x0066E4E0; // type:object size:0x48 scope:global align:8
+ef_footprint01_1 = .data:0x0066E540; // type:object size:0x100 scope:global align:32
+ef_turn_footprint_v = .data:0x0066E640; // type:object size:0x40 scope:global align:8
+ef_turn_footprint_modelT = .data:0x0066E680; // type:object size:0x48 scope:global align:8
+ef_footprint01_2 = .data:0x0066E6E0; // type:object size:0x200 scope:global align:32
+ef_footprint01_02_v = .data:0x0066E8E0; // type:object size:0x40 scope:global align:8
+ef_footprint01_02_modelT = .data:0x0066E920; // type:object size:0x48 scope:global align:8
+ef_pun01_5_int_i4 = .data:0x0066E980; // type:object size:0x80 scope:global align:32
+ef_pun01_01_v = .data:0x0066EA00; // type:object size:0x40 scope:global align:8
+ef_pun01_01_modelT = .data:0x0066EA40; // type:object size:0x50 scope:global align:8
+ef_pun01_0_int_i4 = .data:0x0066EAA0; // type:object size:0x200 scope:global align:32
+ef_pun01_1_int_i4 = .data:0x0066ECA0; // type:object size:0x200 scope:global align:32
+ef_pun01_2_int_i4 = .data:0x0066EEA0; // type:object size:0x200 scope:global align:32
+ef_pun01_3_int_i4 = .data:0x0066F0A0; // type:object size:0x200 scope:global align:32
+ef_pun01_4_int_i4 = .data:0x0066F2A0; // type:object size:0x200 scope:global align:32
+ef_pun01_00_v = .data:0x0066F4A0; // type:object size:0x40 scope:global align:8
+ef_pun01_00_modelT = .data:0x0066F4E0; // type:object size:0x58 scope:global align:8
+ef_reset_hole_pal = .data:0x0066F540; // type:object size:0x20 scope:global align:32
+ef_reset_hole_tex = .data:0x0066F560; // type:object size:0x100 scope:global align:32
+ef_reset_hole_v = .data:0x0066F660; // type:object size:0x620 scope:global align:8
+ef_reset_hole_modelT = .data:0x0066FC80; // type:object size:0xD0 scope:global align:8
+ef_shock01_0 = .data:0x0066FD60; // type:object size:0x400 scope:global align:32
+ef_shock01_00_v = .data:0x00670160; // type:object size:0x40 scope:global align:8
+ef_shock01_00_modelT = .data:0x006701A0; // type:object size:0x48 scope:global align:8
+ef_nagare01_inta_ia8 = .data:0x00670200; // type:object size:0x800 scope:global align:32
+ef_nagare02_int_i4 = .data:0x00670A00; // type:object size:0x80 scope:global align:32
+ef_nagare01_v = .data:0x00670A80; // type:object size:0x40 scope:global align:8
+ef_nagare01_modelT = .data:0x00670AC0; // type:object size:0x70 scope:global align:8
+ef_siawase01_00_evw_anime_2 = .data:0x00670B40; // type:object size:0x8 scope:global align:4
+ef_siawase01_00_evw_anime = .data:0x00670B48; // type:object size:0x8 scope:global align:4
+ef_siawase01_1 = .data:0x00670B60; // type:object size:0x80 scope:global align:32
+ef_siawase01_2_int_i4 = .data:0x00670BE0; // type:object size:0x80 scope:global align:32
+ef_siawase01_00_v = .data:0x00670C60; // type:object size:0x110 scope:global align:8
+ef_siawase01_00_modelT = .data:0x00670D70; // type:object size:0x78 scope:global align:8
+ef_siawase01_0 = .data:0x00670E00; // type:object size:0x100 scope:global align:32
+ef_siawase01_01_v = .data:0x00670F00; // type:object size:0x40 scope:global align:8
+ef_siawase01_01_modelT = .data:0x00670F40; // type:object size:0x48 scope:global align:8
+ef_sibuki01_1_int_i4 = .data:0x00670FA0; // type:object size:0x80 scope:global align:32
+ef_sibuki01_2_int_i4 = .data:0x00671020; // type:object size:0x80 scope:global align:32
+ef_sibuki01_3_int_i4 = .data:0x006710A0; // type:object size:0x80 scope:global align:32
+ef_sibuki01_4_int_i4 = .data:0x00671120; // type:object size:0x80 scope:global align:32
+ef_sibuki01_00_v = .data:0x006711A0; // type:object size:0x40 scope:global align:8
+ef_sibuki01_00_modelT = .data:0x006711E0; // type:object size:0x48 scope:global align:8
+ef_sunahane01_0_inta_ia8 = .data:0x00671240; // type:object size:0x100 scope:global align:32
+ef_sunahane01_1_inta_ia8 = .data:0x00671340; // type:object size:0x100 scope:global align:32
+ef_sunahane01_2_inta_ia8 = .data:0x00671440; // type:object size:0x100 scope:global align:32
+ef_sunahane01_3_inta_ia8 = .data:0x00671540; // type:object size:0x100 scope:global align:32
+ef_sunahane01_00_v = .data:0x00671640; // type:object size:0x40 scope:global align:8
+ef_sunahane01_00_modelT = .data:0x00671680; // type:object size:0x48 scope:global align:8
+ef_situren01_0 = .data:0x006716E0; // type:object size:0x400 scope:global align:32
+ef_situren01_00_v = .data:0x00671AE0; // type:object size:0x40 scope:global align:8
+ef_situren01_00_modelT = .data:0x00671B20; // type:object size:0x50 scope:global align:8
+ef_situren01_1 = .data:0x00671B80; // type:object size:0x200 scope:global align:32
+ef_situren01_01_v = .data:0x00671D80; // type:object size:0x80 scope:global align:8
+ef_situren01_01_modelT = .data:0x00671E00; // type:object size:0x58 scope:global align:8
+ef_situren01_02_v = .data:0x00671E58; // type:object size:0x80 scope:global align:8
+ef_situren01_02_modelT = .data:0x00671ED8; // type:object size:0x58 scope:global align:8
+ef_sleep_z = .data:0x00671F40; // type:object size:0x400 scope:global align:32
+ef_sleep01_v = .data:0x00672340; // type:object size:0x40 scope:global align:8
+ef_sleep01_modelT = .data:0x00672380; // type:object size:0x50 scope:global align:8
+ef_museum5_awa1 = .data:0x006723E0; // type:object size:0x80 scope:global align:32
+ef_museum5_awa1_v = .data:0x00672460; // type:object size:0x40 scope:global align:8
+ef_museum5_awa1_model = .data:0x006724A0; // type:object size:0x58 scope:global align:8
+ef_taberu01_0 = .data:0x00672500; // type:object size:0x100 scope:global align:32
+ef_taberu01_00_v = .data:0x00672600; // type:object size:0x140 scope:global align:8
+ef_taberu01_00_modelT = .data:0x00672740; // type:object size:0x68 scope:global align:8
+ef_taberu01_01_v = .data:0x006727A8; // type:object size:0x140 scope:global align:8
+ef_taberu01_01_modelT = .data:0x006728E8; // type:object size:0x68 scope:global align:8
+ef_taberu01_02_v = .data:0x00672950; // type:object size:0x140 scope:global align:8
+ef_taberu01_02_modelT = .data:0x00672A90; // type:object size:0x68 scope:global align:8
+ef_taberu01_03_v = .data:0x00672AF8; // type:object size:0x140 scope:global align:8
+ef_taberu01_03_modelT = .data:0x00672C38; // type:object size:0x68 scope:global align:8
+ef_takurami01_0us = .data:0x00672CA0; // type:object size:0x200 scope:global align:32
+ef_takurami01_yoko_v = .data:0x00672EA0; // type:object size:0x40 scope:global align:8
+ef_takurami01_yoko_v2 = .data:0x00672EE0; // type:object size:0x40 scope:global align:8
+ef_takurami01_yoko_modelT = .data:0x00672F20; // type:object size:0x50 scope:global align:8
+ef_takurami01_yoko_modelT2 = .data:0x00672F70; // type:object size:0x50 scope:global align:8
+ef_takurami01_kira_v = .data:0x00672FC0; // type:object size:0x40 scope:global align:8
+ef_takurami01_kira_modelT = .data:0x00673000; // type:object size:0x90 scope:global align:8
+ef_takurami01_1 = .data:0x00673090; // type:object size:0x100 scope:global align:4
+ef_takurami01_normal_render_mode = .data:0x00673190; // type:object size:0x10 scope:global align:8
+ef_takurami01_menu_render_mode = .data:0x006731A0; // type:object size:0x10 scope:global align:8
+ef_tamaire01_r_pal = .data:0x006731C0; // type:object size:0x20 scope:local align:32
+ef_tamaire01_r_tex = .data:0x006731E0; // type:object size:0x200 scope:global align:32
+ef_tamaire01_r_v = .data:0x006733E0; // type:object size:0x40 scope:local align:8
+ef_tamaire01_r_modelT = .data:0x00673420; // type:object size:0x50 scope:global align:8
+ef_tamaire01_w_pal = .data:0x00673480; // type:object size:0x20 scope:global align:32
+ef_tamaire01_w_tex = .data:0x006734A0; // type:object size:0x200 scope:global align:32
+ef_tamaire01_w_v = .data:0x006736A0; // type:object size:0x40 scope:global align:8
+ef_tamaire01_w_modelT = .data:0x006736E0; // type:object size:0x50 scope:global align:8
+ef_tama_shadow_in_v = .data:0x00673730; // type:object size:0x40 scope:global align:8
+ef_tama_shadow_in_0 = .data:0x00673780; // type:object size:0x100 scope:global align:32
+ef_tamaire_shadow_modelT = .data:0x00673880; // type:object size:0x48 scope:global align:8
+obj_tent_lamp1_rgb_ci4_pal = .data:0x006738E0; // type:object size:0x20 scope:global align:32
+obj_tent_lamp2_rgb_ci4_pal = .data:0x00673900; // type:object size:0x20 scope:global align:32
+obj_tent_lamp1 = .data:0x00673920; // type:object size:0x400 scope:global align:32
+obj_tent_lamp2_rgb_ci4 = .data:0x00673D20; // type:object size:0x400 scope:global align:32
+obj_tent_lamp_v = .data:0x00674120; // type:object size:0x2D0 scope:global align:8
+obj_tent_lamp_model = .data:0x006743F0; // type:object size:0xA0 scope:global align:8
+ef_turi_hamon01_0 = .data:0x006744A0; // type:object size:0x80 scope:global align:32
+ef_turi_hamon01_00_v = .data:0x00674520; // type:object size:0x40 scope:global align:8
+ef_turi_hamon01_00_modelT = .data:0x00674560; // type:object size:0x50 scope:global align:8
+ef_turi_hane01_0_int_i4 = .data:0x006745C0; // type:object size:0x200 scope:global align:32
+ef_turi_hane01_1_int_i4 = .data:0x006747C0; // type:object size:0x200 scope:global align:32
+ef_turi_hane01_2_int_i4 = .data:0x006749C0; // type:object size:0x200 scope:global align:32
+ef_turi_hane01_3_int_i4 = .data:0x00674BC0; // type:object size:0x200 scope:global align:32
+ef_turi_hane01_00_v = .data:0x00674DC0; // type:object size:0x40 scope:global align:8
+ef_turi_hane01_00_modelT = .data:0x00674E00; // type:object size:0x58 scope:global align:8
+ef_turi_hane02_0_int_i4 = .data:0x00674E60; // type:object size:0x200 scope:global align:32
+ef_turi_hane02_1_int_i4 = .data:0x00675060; // type:object size:0x200 scope:global align:32
+ef_turi_hane02_2_int_i4 = .data:0x00675260; // type:object size:0x200 scope:global align:32
+ef_turi_hane02_3_int_i4 = .data:0x00675460; // type:object size:0x200 scope:global align:32
+ef_turi_hane02_00_v = .data:0x00675660; // type:object size:0x40 scope:global align:8
+ef_turi_hane02_00_modelT = .data:0x006756A0; // type:object size:0x58 scope:global align:8
+ef_turi_suiteki01_0 = .data:0x00675700; // type:object size:0x100 scope:global align:32
+ef_turi_suiteki01_00_v = .data:0x00675800; // type:object size:0x40 scope:global align:8
+ef_turi_suiteki01_00_modelT = .data:0x00675840; // type:object size:0x58 scope:global align:8
+ef_uranai01_0_int_i4 = .data:0x006758A0; // type:object size:0x200 scope:global align:32
+ef_uranai01_1_int_i4 = .data:0x00675AA0; // type:object size:0x200 scope:global align:32
+ef_uranai01_00_v = .data:0x00675CA0; // type:object size:0xD0 scope:global align:8
+ef_uranai01_00_modelT = .data:0x00675D70; // type:object size:0x78 scope:global align:8
+ef_uranai01_00_evw_anime_1 = .data:0x00675DE8; // type:object size:0x8 scope:global align:4
+ef_uranai01_00_evw_anime = .data:0x00675DF0; // type:object size:0x8 scope:global align:4
+ef_warau01us = .data:0x00675E00; // type:object size:0x800 scope:global align:32
+ef_warau01_00_v = .data:0x00676600; // type:object size:0x80 scope:global align:8
+ef_warau01_00_modelT = .data:0x00676680; // type:object size:0x60 scope:global align:8
+ef_warau01_01_v = .data:0x006766E0; // type:object size:0x80 scope:global align:8
+ef_warau01_01_modelT = .data:0x00676760; // type:object size:0x60 scope:global align:8
+ef_warau01_02_v = .data:0x006767C0; // type:object size:0x80 scope:global align:8
+ef_warau01_02_modelT = .data:0x00676840; // type:object size:0x60 scope:global align:8
+ef_warau01_03_v = .data:0x006768A0; // type:object size:0x80 scope:global align:8
+ef_warau01_03_modelT = .data:0x00676920; // type:object size:0x60 scope:global align:8
+ef_s_yungtree_tex = .data:0x00676980; // type:object size:0x200 scope:global align:32
+ef_s_youngtree_00_v = .data:0x00676B80; // type:object size:0x50 scope:global align:8
+ef_s_youngtree_00_modelT = .data:0x00676BD0; // type:object size:0x58 scope:global align:8
+ef_w_youngtree_tex = .data:0x00676C40; // type:object size:0x200 scope:global align:32
+ef_w_youngtree_00_v = .data:0x00676E40; // type:object size:0x50 scope:global align:8
+ef_w_youngtree_00_modelT = .data:0x00676E90; // type:object size:0x58 scope:global align:8
+ef_f_youngtree_tex = .data:0x00676F00; // type:object size:0x200 scope:global align:32
+ef_f_youngtree_00_v = .data:0x00677100; // type:object size:0x50 scope:global align:8
+ef_f_youngtree_00_modelT = .data:0x00677150; // type:object size:0x58 scope:global align:8
+ef_s_young_palm_tex = .data:0x006771C0; // type:object size:0x200 scope:global align:32
+ef_s_young_palm_v = .data:0x006773C0; // type:object size:0x60 scope:global align:8
+ef_s_young_palm_modelT = .data:0x00677420; // type:object size:0x58 scope:global align:8
+ef_w_young_palm_tex = .data:0x00677480; // type:object size:0x200 scope:global align:32
+ef_w_young_palm_v = .data:0x00677680; // type:object size:0x60 scope:global align:8
+ef_w_young_palm_modelT = .data:0x006776E0; // type:object size:0x58 scope:global align:8
+ef_s_young_cedar_tex = .data:0x00677740; // type:object size:0x200 scope:global align:32
+ef_s_young_cedar_v = .data:0x00677940; // type:object size:0x60 scope:global align:8
+ef_s_young_cedar_modelT = .data:0x006779A0; // type:object size:0x58 scope:global align:8
+ef_w_young_cedar_tex = .data:0x00677A00; // type:object size:0x200 scope:global align:32
+ef_w_young_cedar_v = .data:0x00677C00; // type:object size:0x60 scope:global align:8
+ef_w_young_cedar_modelT = .data:0x00677C60; // type:object size:0x58 scope:global align:8
+ef_koke_yuki01_0_inta_ia8 = .data:0x00677CC0; // type:object size:0x100 scope:global align:32
+ef_koke_yuki01_1_inta_ia8 = .data:0x00677DC0; // type:object size:0x100 scope:global align:32
+ef_koke_yuki01_2_inta_ia8 = .data:0x00677EC0; // type:object size:0x100 scope:global align:32
+ef_koke_yuki01_3_inta_ia8 = .data:0x00677FC0; // type:object size:0x100 scope:global align:32
+ef_koke_yuki01_00_v = .data:0x006780C0; // type:object size:0x40 scope:global align:8
+ef_koke_yuki01_00_modelT = .data:0x00678100; // type:object size:0x58 scope:global align:8
+ef_yukihane01_0_inta_ia8 = .data:0x00678160; // type:object size:0x100 scope:global align:32
+ef_yukihane01_1_inta_ia8 = .data:0x00678260; // type:object size:0x100 scope:global align:32
+ef_yukihane01_2_inta_ia8 = .data:0x00678360; // type:object size:0x100 scope:global align:32
+ef_yukihane01_3_inta_ia8 = .data:0x00678460; // type:object size:0x100 scope:global align:32
+ef_yukihane01_00_v = .data:0x00678560; // type:object size:0x40 scope:global align:8
+ef_yukihane01_00_modelT = .data:0x006785A0; // type:object size:0x48 scope:global align:8
+cKF_ckcb_r_act_mus_angel_a1_tbl = .data:0x00678600; // type:object size:0x3 scope:global align:32
+cKF_kn_act_mus_angel_a1_tbl = .data:0x00678604; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_angel_a1_tbl = .data:0x00678614; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_angel_a1_tbl = .data:0x00678620; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_angel_a1 = .data:0x006786BC; // type:object size:0x14 scope:global align:4
+act_mus_angel_body_txt = .data:0x006786E0; // type:object size:0xC00 scope:global align:32
+act_mus_angel_a1_v = .data:0x006792E0; // type:object size:0x360 scope:global align:8
+act_mus_angel_sakana_body_model = .data:0x00679640; // type:object size:0x70 scope:global align:8
+act_mus_angel_sakana_head_model = .data:0x006796B0; // type:object size:0x40 scope:global align:8
+cKF_je_r_act_mus_angel_a1_tbl = .data:0x006796F0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_angel_a1 = .data:0x00679714; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_aroana_a1_tbl = .data:0x00679720; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_aroana_a1_tbl = .data:0x00679724; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_aroana_a1_tbl = .data:0x00679734; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_aroana_a1_tbl = .data:0x00679740; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_aroana_a1 = .data:0x006797DC; // type:object size:0x14 scope:global align:4
+int_sum_aroana_pal = .data:0x00679800; // type:object size:0x20 scope:local align:32
+act_mus_aroana_body_txt = .data:0x00679820; // type:object size:0x300 scope:global align:32
+act_mus_aroana_a1_v = .data:0x00679B20; // type:object size:0x340 scope:global align:8
+act_mus_aroana_sakana_body_model = .data:0x00679E60; // type:object size:0x90 scope:global align:8
+act_mus_aroana_sakana_head_model = .data:0x00679EF0; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_aroana_a1_tbl = .data:0x00679F38; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_aroana_a1 = .data:0x00679F5C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_ayu_a1_tbl = .data:0x00679F68; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_ayu_a1_tbl = .data:0x00679F6C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_ayu_a1_tbl = .data:0x00679F7C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_ayu_a1_tbl = .data:0x00679F88; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_ayu_a1 = .data:0x0067A024; // type:object size:0x14 scope:global align:4
+int_sum_ayu_pal = .data:0x0067A040; // type:object size:0x20 scope:local align:32
+act_mus_ayu_body_txt = .data:0x0067A060; // type:object size:0x300 scope:local align:32
+act_mus_ayu_a1_v = .data:0x0067A360; // type:object size:0x420 scope:global align:8
+act_mus_ayu_sakana_body_model = .data:0x0067A780; // type:object size:0x88 scope:global align:8
+act_mus_ayu_sakana_head_model = .data:0x0067A808; // type:object size:0x58 scope:global align:8
+cKF_je_r_act_mus_ayu_a1_tbl = .data:0x0067A860; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_ayu_a1 = .data:0x0067A884; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_bass_a1_tbl = .data:0x0067A890; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_bass_a1_tbl = .data:0x0067A894; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_bass_a1_tbl = .data:0x0067A8A4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_bass_a1_tbl = .data:0x0067A8B0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_bass_a1 = .data:0x0067A94C; // type:object size:0x14 scope:global align:4
+int_sum_bass_pal = .data:0x0067A960; // type:object size:0x20 scope:local align:32
+act_mus_bass_body_txt = .data:0x0067A980; // type:object size:0x200 scope:global align:32
+act_mus_bass_a1_v = .data:0x0067AB80; // type:object size:0x3A0 scope:global align:8
+act_mus_bass_sakana_body_model = .data:0x0067AF20; // type:object size:0x90 scope:global align:8
+act_mus_bass_sakana_head_model = .data:0x0067AFB0; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_bass_a1_tbl = .data:0x0067AFF8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_bass_a1 = .data:0x0067B01C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_bassl_a1_tbl = .data:0x0067B028; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_bassl_a1_tbl = .data:0x0067B02C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_bassl_a1_tbl = .data:0x0067B03C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_bassl_a1_tbl = .data:0x0067B048; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_bassl_a1 = .data:0x0067B0E4; // type:object size:0x14 scope:global align:4
+int_sum_bassl_pal = .data:0x0067B100; // type:object size:0x20 scope:local align:32
+act_mus_bassl_body_txt = .data:0x0067B120; // type:object size:0x300 scope:global align:32
+act_mus_bassl_a1_v = .data:0x0067B420; // type:object size:0x3A0 scope:global align:8
+act_mus_bassl_sakana_body_model = .data:0x0067B7C0; // type:object size:0x90 scope:global align:8
+act_mus_bassl_sakana_head_model = .data:0x0067B850; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_bassl_a1_tbl = .data:0x0067B898; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_bassl_a1 = .data:0x0067B8BC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_bassm_a1_tbl = .data:0x0067B8C8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_bassm_a1_tbl = .data:0x0067B8CC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_bassm_a1_tbl = .data:0x0067B8DC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_bassm_a1_tbl = .data:0x0067B8E8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_bassm_a1 = .data:0x0067B984; // type:object size:0x14 scope:global align:4
+int_sum_bassm_pal = .data:0x0067B9A0; // type:object size:0x20 scope:local align:32
+act_mus_bassm_body_txt = .data:0x0067B9C0; // type:object size:0x300 scope:global align:32
+act_mus_bassm_a1_v = .data:0x0067BCC0; // type:object size:0x3A0 scope:global align:8
+act_mus_bassm_sakana_body_model = .data:0x0067C060; // type:object size:0x90 scope:global align:8
+act_mus_bassm_sakana_head_model = .data:0x0067C0F0; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_bassm_a1_tbl = .data:0x0067C138; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_bassm_a1 = .data:0x0067C15C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_demekin_a1_tbl = .data:0x0067C168; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_demekin_a1_tbl = .data:0x0067C16C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_demekin_a1_tbl = .data:0x0067C17C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_demekin_a1_tbl = .data:0x0067C188; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_demekin_a1 = .data:0x0067C224; // type:object size:0x14 scope:global align:4
+int_sum_demekin_pal = .data:0x0067C240; // type:object size:0x20 scope:local align:32
+act_mus_demekin_body_txt = .data:0x0067C260; // type:object size:0x200 scope:global align:32
+act_mus_demekin_a1_v = .data:0x0067C460; // type:object size:0x640 scope:global align:8
+act_mus_demekin_sakana_body_model = .data:0x0067CAA0; // type:object size:0x118 scope:global align:8
+act_mus_demekin_sakana_head_model = .data:0x0067CBB8; // type:object size:0xA8 scope:global align:8
+cKF_je_r_act_mus_demekin_a1_tbl = .data:0x0067CC60; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_demekin_a1 = .data:0x0067CC84; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_dojyo_a1_tbl = .data:0x0067CC90; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_dojyo_a1_tbl = .data:0x0067CC94; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_dojyo_a1_tbl = .data:0x0067CCA4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_dojyo_a1_tbl = .data:0x0067CCB0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_dojyo_a1 = .data:0x0067CD4C; // type:object size:0x14 scope:global align:4
+int_sum_dojyo_pal = .data:0x0067CD60; // type:object size:0x20 scope:local align:32
+act_mus_dojyo_body_txt = .data:0x0067CD80; // type:object size:0x100 scope:global align:32
+act_mus_dojyo_a1_v = .data:0x0067CE80; // type:object size:0x3B0 scope:global align:8
+act_mus_dojyo_sakana_body_model = .data:0x0067D230; // type:object size:0x98 scope:global align:8
+act_mus_dojyo_sakana_head_model = .data:0x0067D2C8; // type:object size:0x70 scope:global align:8
+cKF_je_r_act_mus_dojyo_a1_tbl = .data:0x0067D338; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_dojyo_a1 = .data:0x0067D35C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_donko_a1_tbl = .data:0x0067D368; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_donko_a1_tbl = .data:0x0067D36C; // type:object size:0x12 scope:global align:4
+cKF_c_act_mus_donko_a1_tbl = .data:0x0067D380; // type:object size:0x6 scope:global align:4
+cKF_ds_act_mus_donko_a1_tbl = .data:0x0067D388; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_act_mus_donko_a1 = .data:0x0067D43C; // type:object size:0x14 scope:global align:4
+int_sum_donko_pal = .data:0x0067D460; // type:object size:0x20 scope:local align:32
+act_mus_donko_body_txt = .data:0x0067D480; // type:object size:0x200 scope:global align:32
+act_mus_donko_a1_v = .data:0x0067D680; // type:object size:0x3A0 scope:global align:8
+act_mus_donko_sakana_body_model = .data:0x0067DA20; // type:object size:0x88 scope:global align:8
+act_mus_donko_sakana_head_model = .data:0x0067DAA8; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_donko_a1_tbl = .data:0x0067DAF0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_donko_a1 = .data:0x0067DB14; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_funa_a1_tbl = .data:0x0067DB20; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_funa_a1_tbl = .data:0x0067DB24; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_funa_a1_tbl = .data:0x0067DB34; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_funa_a1_tbl = .data:0x0067DB40; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_funa_a1 = .data:0x0067DBDC; // type:object size:0x14 scope:global align:4
+int_sum_funa_pal = .data:0x0067DC00; // type:object size:0x20 scope:local align:32
+act_mus_funa_body_txt = .data:0x0067DC20; // type:object size:0x200 scope:global align:32
+act_mus_funa_a1_v = .data:0x0067DE20; // type:object size:0x380 scope:global align:8
+act_mus_funa_sakana_body_model = .data:0x0067E1A0; // type:object size:0x88 scope:global align:8
+act_mus_funa_sakana_head_model = .data:0x0067E228; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_funa_a1_tbl = .data:0x0067E270; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_funa_a1 = .data:0x0067E294; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_gill_a1_tbl = .data:0x0067E2A0; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_gill_a1_tbl = .data:0x0067E2A4; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_gill_a1_tbl = .data:0x0067E2B4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_gill_a1_tbl = .data:0x0067E2C0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_gill_a1 = .data:0x0067E35C; // type:object size:0x14 scope:global align:4
+int_sum_gill_pal = .data:0x0067E380; // type:object size:0x20 scope:local align:32
+act_mus_gill_body_txt = .data:0x0067E3A0; // type:object size:0x200 scope:global align:32
+act_mus_gill_a1_v = .data:0x0067E5A0; // type:object size:0x380 scope:global align:8
+act_mus_gill_sakana_body_model = .data:0x0067E920; // type:object size:0x88 scope:global align:8
+act_mus_gill_sakana_head_model = .data:0x0067E9A8; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_gill_a1_tbl = .data:0x0067E9F0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_gill_a1 = .data:0x0067EA14; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_gupi_a1_tbl = .data:0x0067EA20; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_gupi_a1_tbl = .data:0x0067EA24; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_gupi_a1_tbl = .data:0x0067EA34; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_gupi_a1_tbl = .data:0x0067EA40; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_gupi_a1 = .data:0x0067EADC; // type:object size:0x14 scope:global align:4
+int_sum_gupi_pal = .data:0x0067EB00; // type:object size:0x20 scope:local align:32
+act_mus_gupi_body_txt = .data:0x0067EB20; // type:object size:0x200 scope:global align:32
+act_mus_gupi_a1_v = .data:0x0067ED20; // type:object size:0x3C0 scope:global align:8
+act_mus_gupi_sakana_body_model = .data:0x0067F0E0; // type:object size:0x90 scope:global align:8
+act_mus_gupi_sakana_head_model = .data:0x0067F170; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_gupi_a1_tbl = .data:0x0067F1B8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_gupi_a1 = .data:0x0067F1DC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_hera_a1_tbl = .data:0x0067F1E8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_hera_a1_tbl = .data:0x0067F1EC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_hera_a1_tbl = .data:0x0067F1FC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_hera_a1_tbl = .data:0x0067F208; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_hera_a1 = .data:0x0067F2A4; // type:object size:0x14 scope:global align:4
+int_sum_hera_pal = .data:0x0067F2C0; // type:object size:0x20 scope:local align:32
+act_mus_hera_body_txt = .data:0x0067F2E0; // type:object size:0x300 scope:global align:32
+act_mus_hera_a1_v = .data:0x0067F5E0; // type:object size:0x400 scope:global align:8
+act_mus_hera_sakana_body_model = .data:0x0067F9E0; // type:object size:0x88 scope:global align:8
+act_mus_hera_sakana_head_model = .data:0x0067FA68; // type:object size:0x58 scope:global align:8
+cKF_je_r_act_mus_hera_a1_tbl = .data:0x0067FAC0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_hera_a1 = .data:0x0067FAE4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_isidai_a1_tbl = .data:0x0067FAF0; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_isidai_a1_tbl = .data:0x0067FAF4; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_isidai_a1_tbl = .data:0x0067FB04; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_isidai_a1_tbl = .data:0x0067FB10; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_isidai_a1 = .data:0x0067FBAC; // type:object size:0x14 scope:global align:4
+int_nog_isidai_pal = .data:0x0067FBC0; // type:object size:0x20 scope:local align:32
+act_mus_isidai_body_txt = .data:0x0067FBE0; // type:object size:0x300 scope:global align:32
+act_mus_isidai_a1_v = .data:0x0067FEE0; // type:object size:0x420 scope:global align:8
+act_mus_isidai_sakana_body_model = .data:0x00680300; // type:object size:0x90 scope:global align:8
+act_mus_isidai_sakana_head_model = .data:0x00680390; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_isidai_a1_tbl = .data:0x006803E0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_isidai_a1 = .data:0x00680404; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_ito_a1_tbl = .data:0x00680410; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_ito_a1_tbl = .data:0x00680414; // type:object size:0x12 scope:global align:4
+cKF_c_act_mus_ito_a1_tbl = .data:0x00680428; // type:object size:0x6 scope:global align:4
+cKF_ds_act_mus_ito_a1_tbl = .data:0x00680430; // type:object size:0xBA scope:global align:4
+cKF_ba_r_act_mus_ito_a1 = .data:0x006804EC; // type:object size:0x14 scope:global align:4
+int_sum_ito_pal = .data:0x00680500; // type:object size:0x20 scope:local align:32
+act_mus_ito_body_txt = .data:0x00680520; // type:object size:0x400 scope:global align:32
+act_mus_ito_a1_v = .data:0x00680920; // type:object size:0x4E0 scope:global align:8
+act_mus_ito_sakana_body_model = .data:0x00680E00; // type:object size:0xA0 scope:global align:8
+act_mus_ito_sakana_head_model = .data:0x00680EA0; // type:object size:0x60 scope:global align:8
+cKF_je_r_act_mus_ito_a1_tbl = .data:0x00680F00; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_ito_a1 = .data:0x00680F24; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_iwana_a1_tbl = .data:0x00680F30; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_iwana_a1_tbl = .data:0x00680F34; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_iwana_a1_tbl = .data:0x00680F44; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_iwana_a1_tbl = .data:0x00680F50; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_iwana_a1 = .data:0x00680FEC; // type:object size:0x14 scope:global align:4
+int_sum_iwana_pal = .data:0x00681000; // type:object size:0x20 scope:local align:32
+act_mus_iwana_body_txt = .data:0x00681020; // type:object size:0x300 scope:global align:32
+act_mus_iwana_a1_v = .data:0x00681320; // type:object size:0x400 scope:global align:8
+act_mus_iwana_sakana_body_model = .data:0x00681720; // type:object size:0x88 scope:global align:8
+act_mus_iwana_sakana_head_model = .data:0x006817A8; // type:object size:0x58 scope:global align:8
+cKF_je_r_act_mus_iwana_a1_tbl = .data:0x00681800; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_iwana_a1 = .data:0x00681824; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_kaeru_a1_tbl = .data:0x00681830; // type:object size:0x5 scope:global align:4
+cKF_kn_act_mus_kaeru_a1_tbl = .data:0x00681838; // type:object size:0x2 scope:global align:4
+cKF_c_act_mus_kaeru_a1_tbl = .data:0x0068183C; // type:object size:0x22 scope:global align:4
+cKF_ds_act_mus_kaeru_a1_tbl = .data:0x00681860; // type:object size:0x12 scope:global align:4
+cKF_ba_r_act_mus_kaeru_a1 = .data:0x00681874; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_act_mus_kaeru_a1_big_tbl = .data:0x00681888; // type:object size:0x5 scope:global align:4
+cKF_kn_act_mus_kaeru_a1_big_tbl = .data:0x00681890; // type:object size:0x4 scope:global align:4
+cKF_c_act_mus_kaeru_a1_big_tbl = .data:0x00681894; // type:object size:0x20 scope:global align:4
+cKF_ds_act_mus_kaeru_a1_big_tbl = .data:0x006818B4; // type:object size:0x30 scope:global align:4
+cKF_ba_r_act_mus_kaeru_a1_big = .data:0x006818E4; // type:object size:0x14 scope:global align:4
+act_mus_kaeru_a1_body_tex_txt = .data:0x00681900; // type:object size:0x800 scope:local align:32
+act_mus_kaeru_a1_foot_tex_txt = .data:0x00682100; // type:object size:0x800 scope:local align:32
+act_mus_kaeru_a1_v = .data:0x00682900; // type:object size:0x6D0 scope:global align:8
+act_mus_kaeru_a1_anime_model = .data:0x00682FD0; // type:object size:0x98 scope:global align:8
+act_mus_kaeru_a1_foot2_model = .data:0x00683068; // type:object size:0x80 scope:global align:8
+act_mus_kaeru_a1_body_model = .data:0x006830E8; // type:object size:0xD0 scope:global align:8
+act_mus_kaeru_a1_foot1_model = .data:0x006831B8; // type:object size:0x58 scope:global align:8
+cKF_je_r_act_mus_kaeru_a1_tbl = .data:0x00683210; // type:object size:0x3C scope:global align:4
+cKF_bs_r_act_mus_kaeru_a1 = .data:0x0068324C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_kaseki_a1_tbl = .data:0x00683258; // type:object size:0x4 scope:global align:4
+cKF_kn_act_mus_kaseki_a1_tbl = .data:0x0068325C; // type:object size:0x18 scope:global align:4
+cKF_c_act_mus_kaseki_a1_tbl = .data:0x00683274; // type:object size:0x6 scope:global align:4
+cKF_ds_act_mus_kaseki_a1_tbl = .data:0x0068327C; // type:object size:0xFC scope:global align:4
+cKF_ba_r_act_mus_kaseki_a1 = .data:0x00683378; // type:object size:0x14 scope:global align:4
+int_sum_kaseki_pal = .data:0x006833A0; // type:object size:0x20 scope:local align:32
+act_mus_kaseki_body_txt = .data:0x006833C0; // type:object size:0x400 scope:global align:32
+act_mus_kaseki_a1_v = .data:0x006837C0; // type:object size:0x590 scope:global align:8
+act_mus_kaseki_sakana_leg_model = .data:0x00683D50; // type:object size:0x68 scope:global align:8
+act_mus_kaseki_sakana_body_model = .data:0x00683DB8; // type:object size:0x88 scope:global align:8
+act_mus_kaseki_sakana_head_model = .data:0x00683E40; // type:object size:0x60 scope:global align:8
+cKF_je_r_act_mus_kaseki_a1_tbl = .data:0x00683EA0; // type:object size:0x30 scope:global align:4
+cKF_bs_r_act_mus_kaseki_a1 = .data:0x00683ED0; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_kingyo_a1_tbl = .data:0x00683ED8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_kingyo_a1_tbl = .data:0x00683EDC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_kingyo_a1_tbl = .data:0x00683EEC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_kingyo_a1_tbl = .data:0x00683EF8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_kingyo_a1 = .data:0x00683F94; // type:object size:0x14 scope:global align:4
+int_sum_kingyo_pal = .data:0x00683FC0; // type:object size:0x20 scope:local align:32
+act_mus_kingyo_body_txt = .data:0x00683FE0; // type:object size:0x200 scope:global align:32
+act_mus_kingyo_a1_v = .data:0x006841E0; // type:object size:0x610 scope:global align:8
+act_mus_kingyo_sakana_body_model = .data:0x006847F0; // type:object size:0xC8 scope:global align:8
+act_mus_kingyo_sakana_head_model = .data:0x006848B8; // type:object size:0xA8 scope:global align:8
+cKF_je_r_act_mus_kingyo_a1_tbl = .data:0x00684960; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_kingyo_a1 = .data:0x00684984; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_koi_a1_tbl = .data:0x00684990; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_koi_a1_tbl = .data:0x00684994; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_koi_a1_tbl = .data:0x006849A4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_koi_a1_tbl = .data:0x006849B0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_koi_a1 = .data:0x00684A4C; // type:object size:0x14 scope:global align:4
+int_sum_koi_pal = .data:0x00684A60; // type:object size:0x20 scope:local align:32
+act_mus_koi_body_txt = .data:0x00684A80; // type:object size:0x300 scope:global align:32
+act_mus_koi_a1_v = .data:0x00684D80; // type:object size:0x3C0 scope:global align:8
+act_mus_koi_sakana_body_model = .data:0x00685140; // type:object size:0x90 scope:global align:8
+act_mus_koi_sakana_head_model = .data:0x006851D0; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_koi_a1_tbl = .data:0x00685218; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_koi_a1 = .data:0x0068523C; // type:object size:0x8 scope:global align:4
+act_f37_kurage_pal = .data:0x00685260; // type:object size:0x20 scope:local align:32
+act_mus_kurage_head_tex = .data:0x00685280; // type:object size:0x100 scope:global align:32
+act_mus_kurage_foot_tex = .data:0x00685380; // type:object size:0x100 scope:global align:32
+act_mus_kurage_a1_v = .data:0x00685480; // type:object size:0x320 scope:global align:8
+act_mus_kurage_sakana_foot_model = .data:0x006857A0; // type:object size:0x88 scope:global align:8
+act_mus_kurage_sakana_body_model = .data:0x00685828; // type:object size:0x98 scope:global align:8
+cKF_ckcb_r_act_mus_medaka_a1_tbl = .data:0x006858C0; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_medaka_a1_tbl = .data:0x006858C4; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_medaka_a1_tbl = .data:0x006858D4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_medaka_a1_tbl = .data:0x006858E0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_medaka_a1 = .data:0x0068597C; // type:object size:0x14 scope:global align:4
+int_nog_medaka_pal = .data:0x006859A0; // type:object size:0x20 scope:local align:32
+act_mus_medaka_body_txt = .data:0x006859C0; // type:object size:0x100 scope:global align:32
+act_mus_medaka_a1_v = .data:0x00685AC0; // type:object size:0x300 scope:global align:8
+act_mus_medaka_sakana_body_model = .data:0x00685DC0; // type:object size:0x90 scope:global align:8
+act_mus_medaka_sakana_head_model = .data:0x00685E50; // type:object size:0x40 scope:global align:8
+cKF_je_r_act_mus_medaka_a1_tbl = .data:0x00685E90; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_medaka_a1 = .data:0x00685EB4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_namazu_a1_tbl = .data:0x00685EC0; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_namazu_a1_tbl = .data:0x00685EC4; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_namazu_a1_tbl = .data:0x00685ED4; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_namazu_a1_tbl = .data:0x00685EE0; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_namazu_a1 = .data:0x00685F7C; // type:object size:0x14 scope:global align:4
+int_sum_namazu_pal = .data:0x00685FA0; // type:object size:0x20 scope:local align:32
+act_mus_namazu_body_txt = .data:0x00685FC0; // type:object size:0x300 scope:global align:32
+act_mus_namazu_a1_v = .data:0x006862C0; // type:object size:0x5A0 scope:global align:8
+act_mus_namazu_sakana_body_model = .data:0x00686860; // type:object size:0xB0 scope:global align:8
+act_mus_namazu_sakana_head_model = .data:0x00686910; // type:object size:0x98 scope:global align:8
+cKF_je_r_act_mus_namazu_a1_tbl = .data:0x006869A8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_namazu_a1 = .data:0x006869CC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_nigoi_a1_tbl = .data:0x006869D8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_nigoi_a1_tbl = .data:0x006869DC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_nigoi_a1_tbl = .data:0x006869EC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_nigoi_a1_tbl = .data:0x006869F8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_nigoi_a1 = .data:0x00686A94; // type:object size:0x14 scope:global align:4
+int_sum_nigoi_pal = .data:0x00686AC0; // type:object size:0x20 scope:local align:32
+act_mus_nigoi_body_txt = .data:0x00686AE0; // type:object size:0x300 scope:global align:32
+act_mus_nigoi_a1_v = .data:0x00686DE0; // type:object size:0x410 scope:global align:8
+act_mus_nigoi_sakana_body_model = .data:0x006871F0; // type:object size:0x88 scope:global align:8
+act_mus_nigoi_sakana_head_model = .data:0x00687278; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_nigoi_a1_tbl = .data:0x006872C8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_nigoi_a1 = .data:0x006872EC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_niji_a1_tbl = .data:0x006872F8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_niji_a1_tbl = .data:0x006872FC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_niji_a1_tbl = .data:0x0068730C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_niji_a1_tbl = .data:0x00687318; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_niji_a1 = .data:0x006873B4; // type:object size:0x14 scope:global align:4
+int_sum_niji_pal = .data:0x006873E0; // type:object size:0x20 scope:local align:32
+act_mus_niji_body_txt = .data:0x00687400; // type:object size:0x300 scope:global align:32
+act_mus_niji_a1_v = .data:0x00687700; // type:object size:0x3E0 scope:global align:8
+act_mus_niji_sakana_body_model = .data:0x00687AE0; // type:object size:0x88 scope:global align:8
+act_mus_niji_sakana_head_model = .data:0x00687B68; // type:object size:0x58 scope:global align:8
+cKF_je_r_act_mus_niji_a1_tbl = .data:0x00687BC0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_niji_a1 = .data:0x00687BE4; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_nisiki_a1_tbl = .data:0x00687BF0; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_nisiki_a1_tbl = .data:0x00687BF4; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_nisiki_a1_tbl = .data:0x00687C04; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_nisiki_a1_tbl = .data:0x00687C10; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_nisiki_a1 = .data:0x00687CAC; // type:object size:0x14 scope:global align:4
+int_sum_nisiki_pal = .data:0x00687CC0; // type:object size:0x20 scope:local align:32
+act_mus_nisiki_body_txt = .data:0x00687CE0; // type:object size:0x300 scope:global align:32
+act_mus_nisiki_a1_v = .data:0x00687FE0; // type:object size:0x3C0 scope:global align:8
+act_mus_nisiki_sakana_body_model = .data:0x006883A0; // type:object size:0x90 scope:global align:8
+act_mus_nisiki_sakana_head_model = .data:0x00688430; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_nisiki_a1_tbl = .data:0x00688478; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_nisiki_a1 = .data:0x0068849C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_oikawa_a1_tbl = .data:0x006884A8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_oikawa_a1_tbl = .data:0x006884AC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_oikawa_a1_tbl = .data:0x006884BC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_oikawa_a1_tbl = .data:0x006884C8; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_act_mus_oikawa_a1 = .data:0x00688570; // type:object size:0x14 scope:global align:4
+int_sum_oikawa_pal = .data:0x006885A0; // type:object size:0x20 scope:local align:32
+act_mus_oikawa_body_txt = .data:0x006885C0; // type:object size:0x200 scope:global align:32
+act_mus_oikawa_a1_v = .data:0x006887C0; // type:object size:0x380 scope:global align:8
+act_mus_oikawa_sakana_body_model = .data:0x00688B40; // type:object size:0x70 scope:global align:8
+act_mus_oikawa_sakana_head_model = .data:0x00688BB0; // type:object size:0x60 scope:global align:8
+cKF_je_r_act_mus_oikawa_a1_tbl = .data:0x00688C10; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_oikawa_a1 = .data:0x00688C34; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_onamazu_a1_tbl = .data:0x00688C40; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_onamazu_a1_tbl = .data:0x00688C44; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_onamazu_a1_tbl = .data:0x00688C54; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_onamazu_a1_tbl = .data:0x00688C60; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_act_mus_onamazu_a1 = .data:0x00688D08; // type:object size:0x14 scope:global align:4
+int_sum_oonamazu_pal = .data:0x00688D20; // type:object size:0x20 scope:local align:32
+act_mus_oonamazu_body_txt = .data:0x00688D40; // type:object size:0x400 scope:global align:32
+act_mus_onamazu_a1_v = .data:0x00689140; // type:object size:0x5A0 scope:global align:8
+act_mus_onamazu_sakana_body_model = .data:0x006896E0; // type:object size:0xD8 scope:global align:8
+act_mus_onamazu_sakana_head_model = .data:0x006897B8; // type:object size:0xB8 scope:global align:8
+cKF_je_r_act_mus_onamazu_a1_tbl = .data:0x00689870; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_onamazu_a1 = .data:0x00689894; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_pira_a1_tbl = .data:0x006898A0; // type:object size:0x4 scope:global align:4
+cKF_kn_act_mus_pira_a1_tbl = .data:0x006898A4; // type:object size:0x18 scope:global align:4
+cKF_c_act_mus_pira_a1_tbl = .data:0x006898BC; // type:object size:0x6 scope:global align:4
+cKF_ds_act_mus_pira_a1_tbl = .data:0x006898C4; // type:object size:0xFC scope:global align:4
+cKF_ba_r_act_mus_pira_a1 = .data:0x006899C0; // type:object size:0x14 scope:global align:4
+int_nog_piraluku_pal = .data:0x006899E0; // type:object size:0x20 scope:local align:32
+act_mus_pireluku_body_txt = .data:0x00689A00; // type:object size:0x400 scope:global align:32
+act_mus_pira_a1_v = .data:0x00689E00; // type:object size:0x6E0 scope:global align:8
+act_mus_pira_sakana_leg_model = .data:0x0068A4E0; // type:object size:0x98 scope:global align:8
+act_mus_pira_sakana_body_model = .data:0x0068A578; // type:object size:0x88 scope:global align:8
+act_mus_pira_sakana_head_model = .data:0x0068A600; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_pira_a1_tbl = .data:0x0068A650; // type:object size:0x30 scope:global align:4
+cKF_bs_r_act_mus_pira_a1 = .data:0x0068A680; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_pirania_a1_tbl = .data:0x0068A688; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_pirania_a1_tbl = .data:0x0068A68C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_pirania_a1_tbl = .data:0x0068A69C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_pirania_a1_tbl = .data:0x0068A6A8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_pirania_a1 = .data:0x0068A744; // type:object size:0x14 scope:global align:4
+int_sum_pirania_pal = .data:0x0068A760; // type:object size:0x20 scope:local align:32
+act_mus_pirania_body_txt = .data:0x0068A780; // type:object size:0x200 scope:global align:32
+act_mus_pirania_a1_v = .data:0x0068A980; // type:object size:0x380 scope:global align:8
+act_mus_pirania_sakana_body_model = .data:0x0068AD00; // type:object size:0x80 scope:global align:8
+act_mus_pirania_sakana_head_model = .data:0x0068AD80; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_pirania_a1_tbl = .data:0x0068ADC8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_pirania_a1 = .data:0x0068ADEC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_raigyo_a1_tbl = .data:0x0068ADF8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_raigyo_a1_tbl = .data:0x0068ADFC; // type:object size:0x12 scope:global align:4
+cKF_c_act_mus_raigyo_a1_tbl = .data:0x0068AE10; // type:object size:0x6 scope:global align:4
+cKF_ds_act_mus_raigyo_a1_tbl = .data:0x0068AE18; // type:object size:0xBA scope:global align:4
+cKF_ba_r_act_mus_raigyo_a1 = .data:0x0068AED4; // type:object size:0x14 scope:global align:4
+int_sum_raigyo_pal = .data:0x0068AF00; // type:object size:0x20 scope:local align:32
+act_mus_raigyo_body_txt = .data:0x0068AF20; // type:object size:0x400 scope:global align:32
+act_mus_raigyo_a1_v = .data:0x0068B320; // type:object size:0x330 scope:global align:8
+act_mus_raigyo_sakana_body_model = .data:0x0068B650; // type:object size:0x90 scope:global align:8
+act_mus_raigyo_sakana_head_model = .data:0x0068B6E0; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_raigyo_a1_tbl = .data:0x0068B728; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_raigyo_a1 = .data:0x0068B74C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_sake_a1_tbl = .data:0x0068B758; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_sake_a1_tbl = .data:0x0068B75C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_sake_a1_tbl = .data:0x0068B76C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_sake_a1_tbl = .data:0x0068B778; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_sake_a1 = .data:0x0068B814; // type:object size:0x14 scope:global align:4
+int_sum_sake_pal = .data:0x0068B840; // type:object size:0x20 scope:local align:32
+act_mus_sake_body_txt = .data:0x0068B860; // type:object size:0x300 scope:global align:32
+act_mus_sake_a1_v = .data:0x0068BB60; // type:object size:0x3E0 scope:global align:8
+act_mus_sake_sakana_body_model = .data:0x0068BF40; // type:object size:0x88 scope:global align:8
+act_mus_sake_sakana_head_model = .data:0x0068BFC8; // type:object size:0x60 scope:global align:8
+cKF_je_r_act_mus_sake_a1_tbl = .data:0x0068C028; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_sake_a1 = .data:0x0068C04C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_suzuki_a1_tbl = .data:0x0068C058; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_suzuki_a1_tbl = .data:0x0068C05C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_suzuki_a1_tbl = .data:0x0068C06C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_suzuki_a1_tbl = .data:0x0068C078; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_suzuki_a1 = .data:0x0068C114; // type:object size:0x14 scope:global align:4
+int_nog_suzuki_pal = .data:0x0068C140; // type:object size:0x20 scope:local align:32
+act_mus_suzuki_body_txt = .data:0x0068C160; // type:object size:0x300 scope:global align:32
+act_mus_suzuki_a1_v = .data:0x0068C460; // type:object size:0x3B0 scope:global align:8
+act_mus_suzuki_sakana_body_model = .data:0x0068C810; // type:object size:0x90 scope:global align:8
+act_mus_suzuki_sakana_head_model = .data:0x0068C8A0; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_suzuki_a1_tbl = .data:0x0068C8F0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_suzuki_a1 = .data:0x0068C914; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_tai_a1_tbl = .data:0x0068C920; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_tai_a1_tbl = .data:0x0068C924; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_tai_a1_tbl = .data:0x0068C934; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_tai_a1_tbl = .data:0x0068C940; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_tai_a1 = .data:0x0068C9DC; // type:object size:0x14 scope:global align:4
+int_nog_tai_pal = .data:0x0068CA00; // type:object size:0x20 scope:local align:32
+act_mus_tai_body_txt = .data:0x0068CA20; // type:object size:0x300 scope:global align:32
+act_mus_tai_a1_v = .data:0x0068CD20; // type:object size:0x3C0 scope:global align:8
+act_mus_tai_sakana_body_model = .data:0x0068D0E0; // type:object size:0x88 scope:global align:8
+act_mus_tai_sakana_head_model = .data:0x0068D168; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_tai_a1_tbl = .data:0x0068D1B8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_tai_a1 = .data:0x0068D1DC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_tanago_a1_tbl = .data:0x0068D1E8; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_tanago_a1_tbl = .data:0x0068D1EC; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_tanago_a1_tbl = .data:0x0068D1FC; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_tanago_a1_tbl = .data:0x0068D208; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_tanago_a1 = .data:0x0068D2A4; // type:object size:0x14 scope:global align:4
+int_sum_tanago_pal = .data:0x0068D2C0; // type:object size:0x20 scope:local align:32
+act_mus_tanago_body_txt = .data:0x0068D2E0; // type:object size:0x200 scope:global align:32
+act_mus_tanago_a1_v = .data:0x0068D4E0; // type:object size:0x350 scope:global align:8
+act_mus_tanago_sakana_body_model = .data:0x0068D830; // type:object size:0x80 scope:global align:8
+act_mus_tanago_sakana_head_model = .data:0x0068D8B0; // type:object size:0x40 scope:global align:8
+cKF_je_r_act_mus_tanago_a1_tbl = .data:0x0068D8F0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_tanago_a1 = .data:0x0068D914; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_ugui_a1_tbl = .data:0x0068D920; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_ugui_a1_tbl = .data:0x0068D924; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_ugui_a1_tbl = .data:0x0068D934; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_ugui_a1_tbl = .data:0x0068D940; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_ugui_a1 = .data:0x0068D9DC; // type:object size:0x14 scope:global align:4
+int_sum_ugui_pal = .data:0x0068DA00; // type:object size:0x20 scope:local align:32
+act_mus_ugui_body_txt = .data:0x0068DA20; // type:object size:0x300 scope:global align:32
+act_mus_ugui_a1_v = .data:0x0068DD20; // type:object size:0x2E0 scope:global align:8
+act_mus_ugui_sakana_body_model = .data:0x0068E000; // type:object size:0x88 scope:global align:8
+act_mus_ugui_sakana_head_model = .data:0x0068E088; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_ugui_a1_tbl = .data:0x0068E0D0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_ugui_a1 = .data:0x0068E0F4; // type:object size:0x8 scope:global align:4
+int_sum_unagi_pal = .data:0x0068E100; // type:object size:0x20 scope:local align:32
+act_mus_unagi_body_txt = .data:0x0068E120; // type:object size:0x200 scope:global align:32
+act_mus_unagi_a1_v = .data:0x0068E320; // type:object size:0x900 scope:global align:8
+act_mus_unagi_sakana_tail_model = .data:0x0068EC20; // type:object size:0x60 scope:global align:8
+act_mus_unagi_sakana_leg2_model = .data:0x0068EC80; // type:object size:0x88 scope:global align:8
+act_mus_unagi_sakana_leg_model = .data:0x0068ED08; // type:object size:0x78 scope:global align:8
+act_mus_unagi_sakana_body_model = .data:0x0068ED80; // type:object size:0x70 scope:global align:8
+act_mus_unagi_sakana_head_model = .data:0x0068EDF0; // type:object size:0x40 scope:global align:8
+cKF_je_r_act_mus_unagi_a1_tbl = .data:0x0068EE30; // type:object size:0x48 scope:global align:4
+cKF_bs_r_act_mus_unagi_a1 = .data:0x0068EE78; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_unagi_a2_tbl = .data:0x0068EE80; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_unagi_a2_tbl = .data:0x0068EE84; // type:object size:0xA scope:global align:4
+cKF_c_act_mus_unagi_a2_tbl = .data:0x0068EE90; // type:object size:0xE scope:global align:4
+cKF_ds_act_mus_unagi_a2_tbl = .data:0x0068EEA0; // type:object size:0x4E scope:global align:4
+cKF_ba_r_act_mus_unagi_a2 = .data:0x0068EEF0; // type:object size:0x14 scope:global align:4
+cKF_ckcb_r_act_mus_wakasa_a1_tbl = .data:0x0068EF08; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_wakasa_a1_tbl = .data:0x0068EF0C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_wakasa_a1_tbl = .data:0x0068EF1C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_wakasa_a1_tbl = .data:0x0068EF28; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_act_mus_wakasa_a1 = .data:0x0068EFD0; // type:object size:0x14 scope:global align:4
+int_sum_wakasagi_pal = .data:0x0068F000; // type:object size:0x20 scope:local align:32
+act_mus_wakasagi_body_txt = .data:0x0068F020; // type:object size:0x100 scope:global align:32
+act_mus_wakasa_a1_v = .data:0x0068F120; // type:object size:0x3E0 scope:global align:8
+act_mus_wakasa_sakana_body_model = .data:0x0068F500; // type:object size:0x70 scope:global align:8
+act_mus_wakasa_sakana_head_model = .data:0x0068F570; // type:object size:0x68 scope:global align:8
+cKF_je_r_act_mus_wakasa_a1_tbl = .data:0x0068F5D8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_wakasa_a1 = .data:0x0068F5FC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_yamame_a1_tbl = .data:0x0068F608; // type:object size:0x3 scope:global align:4
+cKF_kn_act_mus_yamame_a1_tbl = .data:0x0068F60C; // type:object size:0xE scope:global align:4
+cKF_c_act_mus_yamame_a1_tbl = .data:0x0068F61C; // type:object size:0xA scope:global align:4
+cKF_ds_act_mus_yamame_a1_tbl = .data:0x0068F628; // type:object size:0x9C scope:global align:4
+cKF_ba_r_act_mus_yamame_a1 = .data:0x0068F6C4; // type:object size:0x14 scope:global align:4
+int_sum_yamame_pal = .data:0x0068F6E0; // type:object size:0x20 scope:local align:32
+act_mus_yamame_body_txt = .data:0x0068F700; // type:object size:0x300 scope:global align:32
+act_mus_yamame_a1_v = .data:0x0068FA00; // type:object size:0x420 scope:global align:8
+act_mus_yamame_sakana_body_model = .data:0x0068FE20; // type:object size:0x98 scope:global align:8
+act_mus_yamame_sakana_head_model = .data:0x0068FEB8; // type:object size:0x50 scope:global align:8
+cKF_je_r_act_mus_yamame_a1_tbl = .data:0x0068FF08; // type:object size:0x24 scope:global align:4
+cKF_bs_r_act_mus_yamame_a1 = .data:0x0068FF2C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_act_mus_zari_tbl = .data:0x0068FF38; // type:object size:0x9 scope:global align:4
+cKF_kn_act_mus_zari_tbl = .data:0x0068FF44; // type:object size:0x8 scope:global align:4
+cKF_c_act_mus_zari_tbl = .data:0x0068FF4C; // type:object size:0x34 scope:global align:4
+cKF_ds_act_mus_zari_tbl = .data:0x0068FF80; // type:object size:0x102 scope:global align:4
+cKF_ba_r_act_mus_zari = .data:0x00690084; // type:object size:0x14 scope:global align:4
+act_mus_zari_pal = .data:0x006900A0; // type:object size:0x20 scope:global align:32
+act_mus_zari_tex_txt = .data:0x006900C0; // type:object size:0x400 scope:global align:32
+act_mus_zari_v = .data:0x006904C0; // type:object size:0x370 scope:global align:8
+act_mus_zari_tail_model = .data:0x00690830; // type:object size:0x80 scope:global align:8
+act_mus_zari_right_model = .data:0x006908B0; // type:object size:0x40 scope:global align:8
+act_mus_zari_left_model = .data:0x006908F0; // type:object size:0x40 scope:global align:8
+act_mus_zari_asi_model = .data:0x00690930; // type:object size:0x40 scope:global align:8
+act_mus_zari_base_model = .data:0x00690970; // type:object size:0x48 scope:global align:8
+cKF_je_r_act_mus_zari_tbl = .data:0x006909B8; // type:object size:0x6C scope:global align:4
+cKF_bs_r_act_mus_zari = .data:0x00690A24; // type:object size:0x8 scope:global align:4
+obj_museum5_on_pal = .data:0x00690A40; // type:object size:0x20 scope:global align:32
+obj_museum5_wallB_pal = .data:0x00690A60; // type:object size:0x20 scope:global align:32
+obj_museum5_soko_pal = .data:0x00690A80; // type:object size:0x20 scope:global align:32
+obj_museum5_hitode_pal = .data:0x00690AA0; // type:object size:0x20 scope:global align:32
+obj_museum5_evw_tex_rgb_ci4_pal = .data:0x00690AC0; // type:object size:0x20 scope:global align:32
+obj_museum5_isi_tex = .data:0x00690AE0; // type:object size:0x800 scope:global align:32
+obj_museum5_pink_tex = .data:0x006912E0; // type:object size:0x800 scope:global align:32
+obj_museum5_inside_tex = .data:0x00691AE0; // type:object size:0x80 scope:global align:32
+obj_museum5_soko_tex = .data:0x00691B60; // type:object size:0x400 scope:global align:32
+obj_museum5_hitode1_tex = .data:0x00691F60; // type:object size:0x100 scope:global align:32
+obj_museum5_wallB_tex = .data:0x00692060; // type:object size:0x400 scope:global align:32
+obj_museum5_hitode2_tex = .data:0x00692460; // type:object size:0x100 scope:global align:32
+obj_museum5_fuji_tex = .data:0x00692560; // type:object size:0x80 scope:global align:32
+obj_museum5_evw_tex = .data:0x006925E0; // type:object size:0x80 scope:global align:32
+obj_museum5_water1_tex_rgb_i4 = .data:0x00692660; // type:object size:0x200 scope:global align:32
+obj_museum5_water2_tex_rgb_i4 = .data:0x00692860; // type:object size:0x200 scope:global align:32
+obj_museum5_v = .data:0x00692A60; // type:object size:0x18D0 scope:global align:8
+obj_museum5_modelT = .data:0x00694330; // type:object size:0x130 scope:global align:8
+obj_museum5_model = .data:0x00694460; // type:object size:0x580 scope:global align:8
+obj_museum5_evw_anime_1 = .data:0x006949E0; // type:object size:0x8 scope:global align:4
+obj_museum5_evw_anime = .data:0x006949E8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_museum5_hasu_tbl = .data:0x006949F0; // type:object size:0xA scope:global align:4
+cKF_kn_obj_museum5_hasu_tbl = .data:0x006949FC; // type:object size:0xC scope:global align:4
+cKF_c_obj_museum5_hasu_tbl = .data:0x00694A08; // type:object size:0x36 scope:global align:4
+cKF_ds_obj_museum5_hasu_tbl = .data:0x00694A40; // type:object size:0x48 scope:global align:4
+cKF_ba_r_obj_museum5_hasu = .data:0x00694A88; // type:object size:0x14 scope:global align:4
+obj_museum5_hasu_pal = .data:0x00694AA0; // type:object size:0x20 scope:global align:32
+obj_museum5_hasu1_tex_txt = .data:0x00694AC0; // type:object size:0x200 scope:global align:32
+obj_museum5_hasu_v = .data:0x00694CC0; // type:object size:0x170 scope:global align:8
+obj_museum5_hasu1_model = .data:0x00694E30; // type:object size:0x60 scope:global align:8
+obj_museum5_hasu3_model = .data:0x00694E90; // type:object size:0x60 scope:global align:8
+obj_museum5_hasu2_model = .data:0x00694EF0; // type:object size:0x60 scope:global align:8
+cKF_je_r_obj_museum5_hasu_tbl = .data:0x00694F50; // type:object size:0x78 scope:global align:4
+cKF_bs_r_obj_museum5_hasu = .data:0x00694FC8; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_museum5_kusa1_tbl = .data:0x00694FD0; // type:object size:0x5 scope:global align:4
+cKF_kn_obj_museum5_kusa1_tbl = .data:0x00694FD8; // type:object size:0x8 scope:global align:4
+cKF_c_obj_museum5_kusa1_tbl = .data:0x00694FE0; // type:object size:0x1C scope:global align:4
+cKF_ds_obj_museum5_kusa1_tbl = .data:0x00694FFC; // type:object size:0x60 scope:global align:4
+cKF_ba_r_obj_museum5_kusa1 = .data:0x0069505C; // type:object size:0x14 scope:global align:4
+obj_museum5_kusa1_tex_txt = .data:0x00695080; // type:object size:0x400 scope:local align:32
+obj_museum5_kusa1_v = .data:0x00695480; // type:object size:0x360 scope:global align:8
+obj_museum5_kusa1_1_model = .data:0x006957E0; // type:object size:0x58 scope:global align:8
+obj_museum5_kusa1_2_model = .data:0x00695838; // type:object size:0x90 scope:global align:8
+obj_museum5_kusa1_3_model = .data:0x006958C8; // type:object size:0x90 scope:global align:8
+obj_museum5_kusa1_4_model = .data:0x00695958; // type:object size:0x80 scope:global align:8
+cKF_je_r_obj_museum5_kusa1_tbl = .data:0x006959D8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_museum5_kusa1 = .data:0x00695A14; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_museum5_kusa2_tbl = .data:0x00695A20; // type:object size:0x5 scope:global align:4
+cKF_kn_obj_museum5_kusa2_tbl = .data:0x00695A28; // type:object size:0x8 scope:global align:4
+cKF_c_obj_museum5_kusa2_tbl = .data:0x00695A30; // type:object size:0x1C scope:global align:4
+cKF_ds_obj_museum5_kusa2_tbl = .data:0x00695A4C; // type:object size:0x60 scope:global align:4
+cKF_ba_r_obj_museum5_kusa2 = .data:0x00695AAC; // type:object size:0x14 scope:global align:4
+obj_museum5_kusa2_pal = .data:0x00695AC0; // type:object size:0x20 scope:global align:32
+obj_museum5_kusa2_tex_txt = .data:0x00695AE0; // type:object size:0x100 scope:global align:32
+obj_museum5_kusa2_v = .data:0x00695BE0; // type:object size:0x1D0 scope:global align:8
+obj_museum5_kusa2_1_model = .data:0x00695DB0; // type:object size:0x60 scope:global align:8
+obj_museum5_kusa2_2_model = .data:0x00695E10; // type:object size:0x88 scope:global align:8
+obj_museum5_kusa2_3_model = .data:0x00695E98; // type:object size:0x88 scope:global align:8
+obj_museum5_kusa2_4_model = .data:0x00695F20; // type:object size:0x80 scope:global align:8
+cKF_je_r_obj_museum5_kusa2_tbl = .data:0x00695FA0; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_museum5_kusa2 = .data:0x00695FDC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_obj_museum5_kusa3_tbl = .data:0x00695FE8; // type:object size:0x4 scope:global align:4
+cKF_kn_obj_museum5_kusa3_tbl = .data:0x00695FEC; // type:object size:0x6 scope:global align:4
+cKF_c_obj_museum5_kusa3_tbl = .data:0x00695FF4; // type:object size:0x18 scope:global align:4
+cKF_ds_obj_museum5_kusa3_tbl = .data:0x0069600C; // type:object size:0x42 scope:global align:4
+cKF_ba_r_obj_museum5_kusa3 = .data:0x00696050; // type:object size:0x14 scope:global align:4
+obj_museum5_kusa1_tex_txt = .data:0x00696080; // type:object size:0x400 scope:local align:32
+obj_museum5_kusa3_v = .data:0x00696480; // type:object size:0x240 scope:global align:8
+obj_museum5_kusa3_1_model = .data:0x006966C0; // type:object size:0x58 scope:global align:8
+obj_museum5_kusa3_2_model = .data:0x00696718; // type:object size:0x90 scope:global align:8
+obj_museum5_kusa3_3_model = .data:0x006967A8; // type:object size:0x80 scope:global align:8
+cKF_je_r_obj_museum5_kusa3_tbl = .data:0x00696828; // type:object size:0x30 scope:global align:4
+cKF_bs_r_obj_museum5_kusa3 = .data:0x00696858; // type:object size:0x8 scope:global align:4
+obj_suisou1_pal = .data:0x00696860; // type:object size:0x20 scope:global align:32
+obj_suisou1_evw_tex_rgb_ci4_pal = .data:0x00696880; // type:object size:0x20 scope:global align:32
+obj_suisou1_front_tex = .data:0x006968A0; // type:object size:0x200 scope:global align:32
+obj_suisou1_futi_tex = .data:0x00696AA0; // type:object size:0x80 scope:global align:32
+obj_suisou1_isi_tex = .data:0x00696B20; // type:object size:0x800 scope:global align:32
+obj_suisou1_mizu_tex = .data:0x00697320; // type:object size:0x80 scope:global align:32
+obj_suisou1_evw_tex = .data:0x006973A0; // type:object size:0x80 scope:global align:32
+obj_suisou1_water1_tex_rgb_i4 = .data:0x00697420; // type:object size:0x200 scope:global align:32
+obj_suisou1_water2_tex_rgb_i4 = .data:0x00697620; // type:object size:0x200 scope:global align:32
+obj_suisou1_v = .data:0x00697820; // type:object size:0x6D0 scope:global align:8
+obj_suisou1_modelT = .data:0x00697EF0; // type:object size:0x1B0 scope:global align:8
+obj_suisou1_model = .data:0x006980A0; // type:object size:0xD0 scope:global align:8
+act_mus_fish_set_mode = .data:0x00698170; // type:object size:0x30 scope:global align:8
+obj_suisou1_evw_anime_1 = .data:0x006981A0; // type:object size:0x8 scope:global align:4
+obj_suisou1_evw_anime = .data:0x006981A8; // type:object size:0x8 scope:global align:4
+fish_price_table = .data:0x006981B0; // type:object size:0x52 scope:global align:4
+food_price_table = .data:0x00698208; // type:object size:0x12 scope:global align:4
+ftr_listA = .data:0x00698220; // type:object size:0xD0 scope:global align:4
+ftr_listB = .data:0x006982F0; // type:object size:0xD2 scope:global align:4
+ftr_listC = .data:0x006983C4; // type:object size:0xD0 scope:global align:4
+ftr_listEvent = .data:0x00698494; // type:object size:0x88 scope:global align:4
+ftr_listTrain = .data:0x0069851C; // type:object size:0xA scope:global align:4
+ftr_listLottery = .data:0x00698528; // type:object size:0x4A scope:global align:4
+ftr_listHalloween = .data:0x00698574; // type:object size:0x16 scope:global align:4
+ftr_listPresent = .data:0x0069858C; // type:object size:0x4 scope:global align:4
+ftr_listChristmas = .data:0x00698590; // type:object size:0x16 scope:global align:4
+ftr_listSnow = .data:0x006985A8; // type:object size:0x16 scope:global align:4
+ftr_listHalloween2 = .data:0x006985C0; // type:object size:0x6 scope:global align:4
+ftr_listJonason = .data:0x006985C8; // type:object size:0x2A scope:global align:4
+ftr_listPostoffice = .data:0x006985F4; // type:object size:0xA scope:global align:4
+ftr_listNintendo64 = .data:0x00698600; // type:object size:0x2 scope:global align:4
+ftr_listSpecialPresent = .data:0x00698604; // type:object size:0xA scope:global align:4
+ftr_listIsland = .data:0x00698610; // type:object size:0x14 scope:global align:4
+ftr_listHomePage = .data:0x00698624; // type:object size:0xC scope:global align:4
+ftr_listEventPresentChumon = .data:0x00698630; // type:object size:0x1A scope:global align:4
+ftr_listKamakura = .data:0x0069864C; // type:object size:0x14 scope:global align:4
+ftr_listIslandFamicom = .data:0x00698660; // type:object size:0x6 scope:global align:4
+ftr_listHarvest = .data:0x00698668; // type:object size:0x16 scope:global align:4
+ftr_listMario = .data:0x00698680; // type:object size:0x2 scope:global align:4
+ftr_listTent = .data:0x00698684; // type:object size:0x16 scope:global align:4
+mSP_ftr_list = .data:0x0069869C; // type:object size:0x5C scope:global align:4 data:4byte
+ftr_price_table = .data:0x006986F8; // type:object size:0x9E6 scope:global align:4
+int_dummy_pal = .data:0x006990E0; // type:object size:0x20 scope:global align:32
+int_dummy_tex = .data:0x00699100; // type:object size:0x80 scope:global align:32
+int_dummy_v = .data:0x00699180; // type:object size:0x30 scope:global align:8
+int_dummy_model = .data:0x006991B0; // type:object size:0x58 scope:global align:8
+mFM_grd_s_grass_tex = .data:0x00699220; // type:object size:0x200 scope:global align:4
+mFM_grd_s_grass_2_tex = .data:0x00699420; // type:object size:0x200 scope:global align:32
+mFM_grd_s_grass_3_tex = .data:0x00699620; // type:object size:0x200 scope:global align:32
+mFM_grd_w_grass_tex = .data:0x00699820; // type:object size:0x200 scope:global align:32
+mFM_grd_w_grass_2_tex = .data:0x00699A20; // type:object size:0x200 scope:global align:32
+mFM_grd_w_grass_3_tex = .data:0x00699C20; // type:object size:0x200 scope:global align:32
+grd_s_c1_1_v = .data:0x00699E20; // type:object size:0xE60 scope:global align:8
+grd_s_c1_1_modelT = .data:0x0069AC80; // type:object size:0x8 scope:global align:8
+grd_s_c1_1_model = .data:0x0069AC88; // type:object size:0x238 scope:global align:8
+grd_s_c1_2_v = .data:0x0069AEC0; // type:object size:0xED0 scope:global align:8
+grd_s_c1_2_modelT = .data:0x0069BD90; // type:object size:0x8 scope:global align:8
+grd_s_c1_2_model = .data:0x0069BD98; // type:object size:0x278 scope:global align:8
+grd_s_c1_3_v = .data:0x0069C010; // type:object size:0xE20 scope:global align:8
+grd_s_c1_3_modelT = .data:0x0069CE30; // type:object size:0x8 scope:global align:8
+grd_s_c1_3_model = .data:0x0069CE38; // type:object size:0x260 scope:global align:8
+grd_s_c1_4_v = .data:0x0069D098; // type:object size:0x1040 scope:global align:8
+grd_s_c1_4_modelT = .data:0x0069E0D8; // type:object size:0x8 scope:global align:8
+grd_s_c1_4_model = .data:0x0069E0E0; // type:object size:0x288 scope:global align:8
+grd_s_c1_5_v = .data:0x0069E368; // type:object size:0xCD0 scope:global align:8
+grd_s_c1_5_modelT = .data:0x0069F038; // type:object size:0x8 scope:global align:8
+grd_s_c1_5_model = .data:0x0069F040; // type:object size:0x1F8 scope:global align:8
+grd_s_c1_r1_1_evw_anime_1 = .data:0x0069F238; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_1_evw_anime = .data:0x0069F240; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_1_v = .data:0x0069F248; // type:object size:0x1230 scope:global align:8
+grd_s_c1_r1_1_modelT = .data:0x006A0478; // type:object size:0x98 scope:global align:8
+grd_s_c1_r1_1_model = .data:0x006A0510; // type:object size:0x2E0 scope:global align:8
+grd_s_c1_r1_2_evw_anime_1 = .data:0x006A07F0; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_2_evw_anime = .data:0x006A07F8; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_2_v = .data:0x006A0800; // type:object size:0x1120 scope:global align:8
+grd_s_c1_r1_2_modelT = .data:0x006A1920; // type:object size:0x90 scope:global align:8
+grd_s_c1_r1_2_model = .data:0x006A19B0; // type:object size:0x278 scope:global align:8
+grd_s_c1_r1_3_evw_anime_1 = .data:0x006A1C28; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_3_evw_anime = .data:0x006A1C30; // type:object size:0x8 scope:global align:4
+grd_s_c1_r1_3_v = .data:0x006A1C38; // type:object size:0x1120 scope:global align:8
+grd_s_c1_r1_3_modelT = .data:0x006A2D58; // type:object size:0x98 scope:global align:8
+grd_s_c1_r1_3_model = .data:0x006A2DF0; // type:object size:0x248 scope:global align:8
+grd_s_c1_r2_1_evw_anime_1 = .data:0x006A3038; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_1_evw_anime = .data:0x006A3040; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_1_v = .data:0x006A3048; // type:object size:0x1100 scope:global align:8
+grd_s_c1_r2_1_modelT = .data:0x006A4148; // type:object size:0x80 scope:global align:8
+grd_s_c1_r2_1_model = .data:0x006A41C8; // type:object size:0x298 scope:global align:8
+grd_s_c1_r2_2_evw_anime_1 = .data:0x006A4460; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_2_evw_anime = .data:0x006A4468; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_2_v = .data:0x006A4470; // type:object size:0x1180 scope:global align:8
+grd_s_c1_r2_2_modelT = .data:0x006A55F0; // type:object size:0x80 scope:global align:8
+grd_s_c1_r2_2_model = .data:0x006A5670; // type:object size:0x258 scope:global align:8
+grd_s_c1_r2_3_evw_anime_1 = .data:0x006A58C8; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_3_evw_anime = .data:0x006A58D0; // type:object size:0x8 scope:global align:4
+grd_s_c1_r2_3_v = .data:0x006A58D8; // type:object size:0x1300 scope:global align:8
+grd_s_c1_r2_3_modelT = .data:0x006A6BD8; // type:object size:0x88 scope:global align:8
+grd_s_c1_r2_3_model = .data:0x006A6C60; // type:object size:0x2E0 scope:global align:8
+grd_s_c1_r3_1_evw_anime_1 = .data:0x006A6F40; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_1_evw_anime = .data:0x006A6F48; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_1_v = .data:0x006A6F50; // type:object size:0xDE0 scope:global align:8
+grd_s_c1_r3_1_modelT = .data:0x006A7D30; // type:object size:0x88 scope:global align:8
+grd_s_c1_r3_1_model = .data:0x006A7DB8; // type:object size:0x250 scope:global align:8
+grd_s_c1_r3_2_evw_anime_1 = .data:0x006A8008; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_2_evw_anime = .data:0x006A8010; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_2_v = .data:0x006A8018; // type:object size:0xFF0 scope:global align:8
+grd_s_c1_r3_2_modelT = .data:0x006A9008; // type:object size:0x88 scope:global align:8
+grd_s_c1_r3_2_model = .data:0x006A9090; // type:object size:0x280 scope:global align:8
+grd_s_c1_r3_3_evw_anime_1 = .data:0x006A9310; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_3_evw_anime = .data:0x006A9318; // type:object size:0x8 scope:global align:4
+grd_s_c1_r3_3_v = .data:0x006A9320; // type:object size:0x10E0 scope:global align:8
+grd_s_c1_r3_3_modelT = .data:0x006AA400; // type:object size:0x88 scope:global align:8
+grd_s_c1_r3_3_model = .data:0x006AA488; // type:object size:0x2D0 scope:global align:8
+grd_s_c1_s_1_v = .data:0x006AA758; // type:object size:0xCC0 scope:global align:8
+grd_s_c1_s_1_modelT = .data:0x006AB418; // type:object size:0x8 scope:global align:8
+grd_s_c1_s_1_model = .data:0x006AB420; // type:object size:0x218 scope:global align:8
+grd_s_c1_s_2_v = .data:0x006AB638; // type:object size:0xEC0 scope:global align:8
+grd_s_c1_s_2_modelT = .data:0x006AC4F8; // type:object size:0x8 scope:global align:8
+grd_s_c1_s_2_model = .data:0x006AC500; // type:object size:0x260 scope:global align:8
+grd_s_c1_s_3_v = .data:0x006AC760; // type:object size:0x1000 scope:global align:8
+grd_s_c1_s_3_model = .data:0x006AD760; // type:object size:0x240 scope:global align:8
+grd_s_c1_s_4_v = .data:0x006AD9A0; // type:object size:0x1080 scope:global align:8
+grd_s_c1_s_4_modelT = .data:0x006AEA20; // type:object size:0x8 scope:global align:8
+grd_s_c1_s_4_model = .data:0x006AEA28; // type:object size:0x288 scope:global align:8
+grd_s_c2_1_v = .data:0x006AECB0; // type:object size:0xDD0 scope:global align:8
+grd_s_c2_1_modelT = .data:0x006AFA80; // type:object size:0x8 scope:global align:8
+grd_s_c2_1_model = .data:0x006AFA88; // type:object size:0x248 scope:global align:8
+grd_s_c2_2_v = .data:0x006AFCD0; // type:object size:0xE40 scope:global align:8
+grd_s_c2_2_modelT = .data:0x006B0B10; // type:object size:0x8 scope:global align:8
+grd_s_c2_2_model = .data:0x006B0B18; // type:object size:0x208 scope:global align:8
+grd_s_c2_3_evw_anime_1 = .data:0x006B0D20; // type:object size:0x8 scope:global align:4
+grd_s_c2_3_evw_anime = .data:0x006B0D28; // type:object size:0x8 scope:global align:4
+grd_s_c2_3_v = .data:0x006B0D30; // type:object size:0x1080 scope:global align:8
+grd_s_c2_3_modelT = .data:0x006B1DB0; // type:object size:0x78 scope:global align:8
+grd_s_c2_3_model = .data:0x006B1E28; // type:object size:0x280 scope:global align:8
+grd_s_c2_r1_1_evw_anime_1 = .data:0x006B20A8; // type:object size:0x8 scope:global align:4
+grd_s_c2_r1_1_evw_anime = .data:0x006B20B0; // type:object size:0x8 scope:global align:4
+grd_s_c2_r1_1_v = .data:0x006B20B8; // type:object size:0x10D0 scope:global align:8
+grd_s_c2_r1_1_modelT = .data:0x006B3188; // type:object size:0x90 scope:global align:8
+grd_s_c2_r1_1_model = .data:0x006B3218; // type:object size:0x288 scope:global align:8
+grd_s_c2_r1_2_evw_anime_1 = .data:0x006B34A0; // type:object size:0x8 scope:global align:4
+grd_s_c2_r1_2_evw_anime = .data:0x006B34A8; // type:object size:0x8 scope:global align:4
+grd_s_c2_r1_2_v = .data:0x006B34B0; // type:object size:0x11A0 scope:global align:8
+grd_s_c2_r1_2_modelT = .data:0x006B4650; // type:object size:0x88 scope:global align:8
+grd_s_c2_r1_2_model = .data:0x006B46D8; // type:object size:0x298 scope:global align:8
+grd_s_c2_r2_1_evw_anime_1 = .data:0x006B4970; // type:object size:0x8 scope:global align:4
+grd_s_c2_r2_1_evw_anime = .data:0x006B4978; // type:object size:0x8 scope:global align:4
+grd_s_c2_r2_1_v = .data:0x006B4980; // type:object size:0xFF0 scope:global align:8
+grd_s_c2_r2_1_modelT = .data:0x006B5970; // type:object size:0x98 scope:global align:8
+grd_s_c2_r2_1_model = .data:0x006B5A08; // type:object size:0x238 scope:global align:8
+grd_s_c2_r2_2_evw_anime_1 = .data:0x006B5C40; // type:object size:0x8 scope:global align:4
+grd_s_c2_r2_2_evw_anime = .data:0x006B5C48; // type:object size:0x8 scope:global align:4
+grd_s_c2_r2_2_v = .data:0x006B5C50; // type:object size:0x1210 scope:global align:8
+grd_s_c2_r2_2_modelT = .data:0x006B6E60; // type:object size:0xA8 scope:global align:8
+grd_s_c2_r2_2_model = .data:0x006B6F08; // type:object size:0x278 scope:global align:8
+grd_s_c2_s_1_v = .data:0x006B7180; // type:object size:0x1110 scope:global align:8
+grd_s_c2_s_1_modelT = .data:0x006B8290; // type:object size:0x8 scope:global align:8
+grd_s_c2_s_1_model = .data:0x006B8298; // type:object size:0x288 scope:global align:8
+grd_s_c2_s_2_v = .data:0x006B8520; // type:object size:0xE60 scope:global align:8
+grd_s_c2_s_2_modelT = .data:0x006B9380; // type:object size:0x8 scope:global align:8
+grd_s_c2_s_2_model = .data:0x006B9388; // type:object size:0x268 scope:global align:8
+grd_s_c2_s_3_v = .data:0x006B95F0; // type:object size:0xD90 scope:global align:8
+grd_s_c2_s_3_modelT = .data:0x006BA380; // type:object size:0x8 scope:global align:8
+grd_s_c2_s_3_model = .data:0x006BA388; // type:object size:0x268 scope:global align:8
+grd_s_c3_1_v = .data:0x006BA5F0; // type:object size:0xF40 scope:global align:8
+grd_s_c3_1_modelT = .data:0x006BB530; // type:object size:0x8 scope:global align:8
+grd_s_c3_1_model = .data:0x006BB538; // type:object size:0x248 scope:global align:8
+grd_s_c3_2_evw_anime_1 = .data:0x006BB780; // type:object size:0x8 scope:global align:4
+grd_s_c3_2_evw_anime = .data:0x006BB788; // type:object size:0x8 scope:global align:4
+grd_s_c3_2_v = .data:0x006BB790; // type:object size:0xE00 scope:global align:8
+grd_s_c3_2_modelT = .data:0x006BC590; // type:object size:0x78 scope:global align:8
+grd_s_c3_2_model = .data:0x006BC608; // type:object size:0x278 scope:global align:8
+grd_s_c3_3_v = .data:0x006BC880; // type:object size:0xD20 scope:global align:8
+grd_s_c3_3_modelT = .data:0x006BD5A0; // type:object size:0x8 scope:global align:8
+grd_s_c3_3_model = .data:0x006BD5A8; // type:object size:0x248 scope:global align:8
+grd_s_c3_r1_1_evw_anime_1 = .data:0x006BD7F0; // type:object size:0x8 scope:global align:4
+grd_s_c3_r1_1_evw_anime = .data:0x006BD7F8; // type:object size:0x8 scope:global align:4
+grd_s_c3_r1_1_v = .data:0x006BD800; // type:object size:0xEA0 scope:global align:8
+grd_s_c3_r1_1_modelT = .data:0x006BE6A0; // type:object size:0x80 scope:global align:8
+grd_s_c3_r1_1_model = .data:0x006BE720; // type:object size:0x228 scope:global align:8
+grd_s_c3_r1_2_evw_anime_1 = .data:0x006BE948; // type:object size:0x8 scope:global align:4
+grd_s_c3_r1_2_evw_anime = .data:0x006BE950; // type:object size:0x8 scope:global align:4
+grd_s_c3_r1_2_v = .data:0x006BE958; // type:object size:0xFF0 scope:global align:8
+grd_s_c3_r1_2_modelT = .data:0x006BF948; // type:object size:0x90 scope:global align:8
+grd_s_c3_r1_2_model = .data:0x006BF9D8; // type:object size:0x270 scope:global align:8
+grd_s_c3_r2_1_evw_anime_1 = .data:0x006BFC48; // type:object size:0x8 scope:global align:4
+grd_s_c3_r2_1_evw_anime = .data:0x006BFC50; // type:object size:0x8 scope:global align:4
+grd_s_c3_r2_1_v = .data:0x006BFC58; // type:object size:0x1310 scope:global align:8
+grd_s_c3_r2_1_modelT = .data:0x006C0F68; // type:object size:0x90 scope:global align:8
+grd_s_c3_r2_1_model = .data:0x006C0FF8; // type:object size:0x2D0 scope:global align:8
+grd_s_c3_r2_2_evw_anime_1 = .data:0x006C12C8; // type:object size:0x8 scope:global align:4
+grd_s_c3_r2_2_evw_anime = .data:0x006C12D0; // type:object size:0x8 scope:global align:4
+grd_s_c3_r2_2_v = .data:0x006C12D8; // type:object size:0x1310 scope:global align:8
+grd_s_c3_r2_2_modelT = .data:0x006C25E8; // type:object size:0x98 scope:global align:8
+grd_s_c3_r2_2_model = .data:0x006C2680; // type:object size:0x2D0 scope:global align:8
+grd_s_c3_s_1_evw_anime_1 = .data:0x006C2950; // type:object size:0x8 scope:global align:4
+grd_s_c3_s_1_evw_anime = .data:0x006C2958; // type:object size:0x8 scope:global align:4
+grd_s_c3_s_1_v = .data:0x006C2960; // type:object size:0x14D0 scope:global align:8
+grd_s_c3_s_1_modelT = .data:0x006C3E30; // type:object size:0x70 scope:global align:8
+grd_s_c3_s_1_model = .data:0x006C3EA0; // type:object size:0x288 scope:global align:8
+grd_s_c4_1_v = .data:0x006C4128; // type:object size:0xBF0 scope:global align:8
+grd_s_c4_1_modelT = .data:0x006C4D18; // type:object size:0x8 scope:global align:8
+grd_s_c4_1_model = .data:0x006C4D20; // type:object size:0x210 scope:global align:8
+grd_s_c4_2_v = .data:0x006C4F30; // type:object size:0xF40 scope:global align:8
+grd_s_c4_2_modelT = .data:0x006C5E70; // type:object size:0x8 scope:global align:8
+grd_s_c4_2_model = .data:0x006C5E78; // type:object size:0x238 scope:global align:8
+grd_s_c4_3_v = .data:0x006C60B0; // type:object size:0xD90 scope:global align:8
+grd_s_c4_3_modelT = .data:0x006C6E40; // type:object size:0x8 scope:global align:8
+grd_s_c4_3_model = .data:0x006C6E48; // type:object size:0x250 scope:global align:8
+grd_s_c4_r1_1_evw_anime_1 = .data:0x006C7098; // type:object size:0x8 scope:global align:4
+grd_s_c4_r1_1_evw_anime = .data:0x006C70A0; // type:object size:0x8 scope:global align:4
+grd_s_c4_r1_1_v = .data:0x006C70A8; // type:object size:0x1000 scope:global align:8
+grd_s_c4_r1_1_modelT = .data:0x006C80A8; // type:object size:0x80 scope:global align:8
+grd_s_c4_r1_1_model = .data:0x006C8128; // type:object size:0x288 scope:global align:8
+grd_s_c4_r1_2_evw_anime_1 = .data:0x006C83B0; // type:object size:0x8 scope:global align:4
+grd_s_c4_r1_2_evw_anime = .data:0x006C83B8; // type:object size:0x8 scope:global align:4
+grd_s_c4_r1_2_v = .data:0x006C83C0; // type:object size:0xFA0 scope:global align:8
+grd_s_c4_r1_2_modelT = .data:0x006C9360; // type:object size:0x88 scope:global align:8
+grd_s_c4_r1_2_model = .data:0x006C93E8; // type:object size:0x298 scope:global align:8
+grd_s_c4_r2_1_evw_anime_1 = .data:0x006C9680; // type:object size:0x8 scope:global align:4
+grd_s_c4_r2_1_evw_anime = .data:0x006C9688; // type:object size:0x8 scope:global align:4
+grd_s_c4_r2_1_v = .data:0x006C9690; // type:object size:0x1070 scope:global align:8
+grd_s_c4_r2_1_modelT = .data:0x006CA700; // type:object size:0x80 scope:global align:8
+grd_s_c4_r2_1_model = .data:0x006CA780; // type:object size:0x278 scope:global align:8
+grd_s_c4_r2_2_evw_anime_1 = .data:0x006CA9F8; // type:object size:0x8 scope:global align:4
+grd_s_c4_r2_2_evw_anime = .data:0x006CAA00; // type:object size:0x8 scope:global align:4
+grd_s_c4_r2_2_v = .data:0x006CAA08; // type:object size:0xE00 scope:global align:8
+grd_s_c4_r2_2_modelT = .data:0x006CB808; // type:object size:0x80 scope:global align:8
+grd_s_c4_r2_2_model = .data:0x006CB888; // type:object size:0x228 scope:global align:8
+grd_s_c4_r3_1_evw_anime_1 = .data:0x006CBAB0; // type:object size:0x8 scope:global align:4
+grd_s_c4_r3_1_evw_anime = .data:0x006CBAB8; // type:object size:0x8 scope:global align:4
+grd_s_c4_r3_1_v = .data:0x006CBAC0; // type:object size:0xE20 scope:global align:8
+grd_s_c4_r3_1_modelT = .data:0x006CC8E0; // type:object size:0x80 scope:global align:8
+grd_s_c4_r3_1_model = .data:0x006CC960; // type:object size:0x268 scope:global align:8
+grd_s_c4_r3_2_evw_anime_1 = .data:0x006CCBC8; // type:object size:0x8 scope:global align:4
+grd_s_c4_r3_2_evw_anime = .data:0x006CCBD0; // type:object size:0x8 scope:global align:4
+grd_s_c4_r3_2_v = .data:0x006CCBD8; // type:object size:0xD30 scope:global align:8
+grd_s_c4_r3_2_modelT = .data:0x006CD908; // type:object size:0x80 scope:global align:8
+grd_s_c4_r3_2_model = .data:0x006CD988; // type:object size:0x200 scope:global align:8
+grd_s_c4_s_1_v = .data:0x006CDB88; // type:object size:0xD50 scope:global align:8
+grd_s_c4_s_1_modelT = .data:0x006CE8D8; // type:object size:0x8 scope:global align:8
+grd_s_c4_s_1_model = .data:0x006CE8E0; // type:object size:0x250 scope:global align:8
+grd_s_c4_s_2_v = .data:0x006CEB30; // type:object size:0xFF0 scope:global align:8
+grd_s_c4_s_2_modelT = .data:0x006CFB20; // type:object size:0x8 scope:global align:8
+grd_s_c4_s_2_model = .data:0x006CFB28; // type:object size:0x280 scope:global align:8
+grd_s_c5_1_v = .data:0x006CFDA8; // type:object size:0xAF0 scope:global align:8
+grd_s_c5_1_modelT = .data:0x006D0898; // type:object size:0x8 scope:global align:8
+grd_s_c5_1_model = .data:0x006D08A0; // type:object size:0x208 scope:global align:8
+grd_s_c5_2_v = .data:0x006D0AA8; // type:object size:0xF80 scope:global align:8
+grd_s_c5_2_modelT = .data:0x006D1A28; // type:object size:0x8 scope:global align:8
+grd_s_c5_2_model = .data:0x006D1A30; // type:object size:0x288 scope:global align:8
+grd_s_c5_3_v = .data:0x006D1CB8; // type:object size:0xB50 scope:global align:8
+grd_s_c5_3_modelT = .data:0x006D2808; // type:object size:0x8 scope:global align:8
+grd_s_c5_3_model = .data:0x006D2810; // type:object size:0x210 scope:global align:8
+grd_s_c5_r1_1_evw_anime_1 = .data:0x006D2A20; // type:object size:0x8 scope:global align:4
+grd_s_c5_r1_1_evw_anime = .data:0x006D2A28; // type:object size:0x8 scope:global align:4
+grd_s_c5_r1_1_v = .data:0x006D2A30; // type:object size:0x12A0 scope:global align:8
+grd_s_c5_r1_1_modelT = .data:0x006D3CD0; // type:object size:0x90 scope:global align:8
+grd_s_c5_r1_1_model = .data:0x006D3D60; // type:object size:0x2B0 scope:global align:8
+grd_s_c5_r1_2_evw_anime_1 = .data:0x006D4010; // type:object size:0x8 scope:global align:4
+grd_s_c5_r1_2_evw_anime = .data:0x006D4018; // type:object size:0x8 scope:global align:4
+grd_s_c5_r1_2_v = .data:0x006D4020; // type:object size:0x1240 scope:global align:8
+grd_s_c5_r1_2_modelT = .data:0x006D5260; // type:object size:0x90 scope:global align:8
+grd_s_c5_r1_2_model = .data:0x006D52F0; // type:object size:0x2C0 scope:global align:8
+grd_s_c5_r2_1_evw_anime_1 = .data:0x006D55B0; // type:object size:0x8 scope:global align:4
+grd_s_c5_r2_1_evw_anime = .data:0x006D55B8; // type:object size:0x8 scope:global align:4
+grd_s_c5_r2_1_v = .data:0x006D55C0; // type:object size:0x1380 scope:global align:8
+grd_s_c5_r2_1_modelT = .data:0x006D6940; // type:object size:0x90 scope:global align:8
+grd_s_c5_r2_1_model = .data:0x006D69D0; // type:object size:0x2F0 scope:global align:8
+grd_s_c5_r2_2_evw_anime_1 = .data:0x006D6CC0; // type:object size:0x8 scope:global align:4
+grd_s_c5_r2_2_evw_anime = .data:0x006D6CC8; // type:object size:0x8 scope:global align:4
+grd_s_c5_r2_2_v = .data:0x006D6CD0; // type:object size:0x1130 scope:global align:8
+grd_s_c5_r2_2_modelT = .data:0x006D7E00; // type:object size:0x88 scope:global align:8
+grd_s_c5_r2_2_model = .data:0x006D7E88; // type:object size:0x2B0 scope:global align:8
+grd_s_c5_r3_1_evw_anime_1 = .data:0x006D8138; // type:object size:0x8 scope:global align:4
+grd_s_c5_r3_1_evw_anime = .data:0x006D8140; // type:object size:0x8 scope:global align:4
+grd_s_c5_r3_1_v = .data:0x006D8148; // type:object size:0x1010 scope:global align:8
+grd_s_c5_r3_1_modelT = .data:0x006D9158; // type:object size:0x80 scope:global align:8
+grd_s_c5_r3_1_model = .data:0x006D91D8; // type:object size:0x2A0 scope:global align:8
+grd_s_c5_r3_2_evw_anime_1 = .data:0x006D9478; // type:object size:0x8 scope:global align:4
+grd_s_c5_r3_2_evw_anime = .data:0x006D9480; // type:object size:0x8 scope:global align:4
+grd_s_c5_r3_2_v = .data:0x006D9488; // type:object size:0xF10 scope:global align:8
+grd_s_c5_r3_2_modelT = .data:0x006DA398; // type:object size:0x88 scope:global align:8
+grd_s_c5_r3_2_model = .data:0x006DA420; // type:object size:0x258 scope:global align:8
+grd_s_c5_s_1_v = .data:0x006DA678; // type:object size:0xD80 scope:global align:8
+grd_s_c5_s_1_modelT = .data:0x006DB3F8; // type:object size:0x8 scope:global align:8
+grd_s_c5_s_1_model = .data:0x006DB400; // type:object size:0x220 scope:global align:8
+grd_s_c5_s_2_v = .data:0x006DB620; // type:object size:0xDA0 scope:global align:8
+grd_s_c5_s_2_model = .data:0x006DC3C0; // type:object size:0x208 scope:global align:8
+grd_s_c6_1_v = .data:0x006DC5C8; // type:object size:0xED0 scope:global align:8
+grd_s_c6_1_modelT = .data:0x006DD498; // type:object size:0x8 scope:global align:8
+grd_s_c6_1_model = .data:0x006DD4A0; // type:object size:0x260 scope:global align:8
+grd_s_c6_2_v = .data:0x006DD700; // type:object size:0xF80 scope:global align:8
+grd_s_c6_2_modelT = .data:0x006DE680; // type:object size:0x8 scope:global align:8
+grd_s_c6_2_model = .data:0x006DE688; // type:object size:0x278 scope:global align:8
+grd_s_c6_3_v = .data:0x006DE900; // type:object size:0xD60 scope:global align:8
+grd_s_c6_3_modelT = .data:0x006DF660; // type:object size:0x8 scope:global align:8
+grd_s_c6_3_model = .data:0x006DF668; // type:object size:0x238 scope:global align:8
+grd_s_c6_r1_1_evw_anime_1 = .data:0x006DF8A0; // type:object size:0x8 scope:global align:4
+grd_s_c6_r1_1_evw_anime = .data:0x006DF8A8; // type:object size:0x8 scope:global align:4
+grd_s_c6_r1_1_v = .data:0x006DF8B0; // type:object size:0xFA0 scope:global align:8
+grd_s_c6_r1_1_modelT = .data:0x006E0850; // type:object size:0x88 scope:global align:8
+grd_s_c6_r1_1_model = .data:0x006E08D8; // type:object size:0x2B0 scope:global align:8
+grd_s_c6_r1_2_evw_anime_1 = .data:0x006E0B88; // type:object size:0x8 scope:global align:4
+grd_s_c6_r1_2_evw_anime = .data:0x006E0B90; // type:object size:0x8 scope:global align:4
+grd_s_c6_r1_2_v = .data:0x006E0B98; // type:object size:0x1020 scope:global align:8
+grd_s_c6_r1_2_modelT = .data:0x006E1BB8; // type:object size:0x80 scope:global align:8
+grd_s_c6_r1_2_model = .data:0x006E1C38; // type:object size:0x2B0 scope:global align:8
+grd_s_c6_r3_1_evw_anime_1 = .data:0x006E1EE8; // type:object size:0x8 scope:global align:4
+grd_s_c6_r3_1_evw_anime = .data:0x006E1EF0; // type:object size:0x8 scope:global align:4
+grd_s_c6_r3_1_v = .data:0x006E1EF8; // type:object size:0x1490 scope:global align:8
+grd_s_c6_r3_1_modelT = .data:0x006E3388; // type:object size:0x98 scope:global align:8
+grd_s_c6_r3_1_model = .data:0x006E3420; // type:object size:0x290 scope:global align:8
+grd_s_c6_s_1_v = .data:0x006E36B0; // type:object size:0xEA0 scope:global align:8
+grd_s_c6_s_1_modelT = .data:0x006E4550; // type:object size:0x8 scope:global align:8
+grd_s_c6_s_1_model = .data:0x006E4558; // type:object size:0x238 scope:global align:8
+grd_s_c7_1_v = .data:0x006E4790; // type:object size:0xE00 scope:global align:8
+grd_s_c7_1_modelT = .data:0x006E5590; // type:object size:0x8 scope:global align:8
+grd_s_c7_1_model = .data:0x006E5598; // type:object size:0x230 scope:global align:8
+grd_s_c7_2_v = .data:0x006E57C8; // type:object size:0x1110 scope:global align:8
+grd_s_c7_2_modelT = .data:0x006E68D8; // type:object size:0x8 scope:global align:8
+grd_s_c7_2_model = .data:0x006E68E0; // type:object size:0x2A0 scope:global align:8
+grd_s_c7_3_evw_anime_1 = .data:0x006E6B80; // type:object size:0x8 scope:global align:4
+grd_s_c7_3_evw_anime = .data:0x006E6B88; // type:object size:0x8 scope:global align:4
+grd_s_c7_3_v = .data:0x006E6B90; // type:object size:0x10C0 scope:global align:8
+grd_s_c7_3_modelT = .data:0x006E7C50; // type:object size:0x78 scope:global align:8
+grd_s_c7_3_model = .data:0x006E7CC8; // type:object size:0x288 scope:global align:8
+grd_s_c7_r1_1_evw_anime_1 = .data:0x006E7F50; // type:object size:0x8 scope:global align:4
+grd_s_c7_r1_1_evw_anime = .data:0x006E7F58; // type:object size:0x8 scope:global align:4
+grd_s_c7_r1_1_v = .data:0x006E7F60; // type:object size:0xE40 scope:global align:8
+grd_s_c7_r1_1_modelT = .data:0x006E8DA0; // type:object size:0x88 scope:global align:8
+grd_s_c7_r1_1_model = .data:0x006E8E28; // type:object size:0x278 scope:global align:8
+grd_s_c7_r1_2_evw_anime_1 = .data:0x006E90A0; // type:object size:0x8 scope:global align:4
+grd_s_c7_r1_2_evw_anime = .data:0x006E90A8; // type:object size:0x8 scope:global align:4
+grd_s_c7_r1_2_v = .data:0x006E90B0; // type:object size:0xE90 scope:global align:8
+grd_s_c7_r1_2_modelT = .data:0x006E9F40; // type:object size:0x80 scope:global align:8
+grd_s_c7_r1_2_model = .data:0x006E9FC0; // type:object size:0x238 scope:global align:8
+grd_s_c7_r3_1_evw_anime_1 = .data:0x006EA1F8; // type:object size:0x8 scope:global align:4
+grd_s_c7_r3_1_evw_anime = .data:0x006EA200; // type:object size:0x8 scope:global align:4
+grd_s_c7_r3_1_v = .data:0x006EA208; // type:object size:0x1200 scope:global align:8
+grd_s_c7_r3_1_modelT = .data:0x006EB408; // type:object size:0xA0 scope:global align:8
+grd_s_c7_r3_1_model = .data:0x006EB4A8; // type:object size:0x2A0 scope:global align:8
+grd_s_c7_r3_2_evw_anime_1 = .data:0x006EB748; // type:object size:0x8 scope:global align:4
+grd_s_c7_r3_2_evw_anime = .data:0x006EB750; // type:object size:0x8 scope:global align:4
+grd_s_c7_r3_2_v = .data:0x006EB758; // type:object size:0x1350 scope:global align:8
+grd_s_c7_r3_2_modelT = .data:0x006ECAA8; // type:object size:0x98 scope:global align:8
+grd_s_c7_r3_2_model = .data:0x006ECB40; // type:object size:0x2D8 scope:global align:8
+grd_s_c7_s_1_v = .data:0x006ECE18; // type:object size:0x1360 scope:global align:8
+grd_s_c7_s_1_model = .data:0x006EE178; // type:object size:0x2C0 scope:global align:8
+grd_s_c7_s_2_v = .data:0x006EE438; // type:object size:0xC80 scope:global align:8
+grd_s_c7_s_2_model = .data:0x006EF0B8; // type:object size:0x248 scope:global align:8
+grd_s_c7_s_3_v = .data:0x006EF300; // type:object size:0xEC0 scope:global align:8
+grd_s_c7_s_3_model = .data:0x006F01C0; // type:object size:0x270 scope:global align:8
+grd_s_e1_1_v = .data:0x006F0430; // type:object size:0x560 scope:global align:8
+grd_s_e1_1_modelT = .data:0x006F0990; // type:object size:0x8 scope:global align:8
+grd_s_e1_1_model = .data:0x006F0998; // type:object size:0x148 scope:global align:8
+grd_s_e1_r1_1_evw_anime_1 = .data:0x006F0AE0; // type:object size:0x8 scope:global align:4
+grd_s_e1_r1_1_evw_anime = .data:0x006F0AE8; // type:object size:0x8 scope:global align:4
+grd_s_e1_r1_1_v = .data:0x006F0AF0; // type:object size:0x13F0 scope:global align:8
+grd_s_e1_r1_1_modelT = .data:0x006F1EE0; // type:object size:0x88 scope:global align:8
+grd_s_e1_r1_1_model = .data:0x006F1F68; // type:object size:0x308 scope:global align:8
+grd_s_e2_1_v = .data:0x006F2270; // type:object size:0x630 scope:global align:8
+grd_s_e2_1_modelT = .data:0x006F28A0; // type:object size:0x8 scope:global align:8
+grd_s_e2_1_model = .data:0x006F28A8; // type:object size:0x160 scope:global align:8
+grd_s_e2_c1_1_v = .data:0x006F2A08; // type:object size:0x660 scope:global align:8
+grd_s_e2_c1_1_modelT = .data:0x006F3068; // type:object size:0x8 scope:global align:8
+grd_s_e2_c1_1_model = .data:0x006F3070; // type:object size:0x158 scope:global align:8
+grd_s_e2_m_1_v = .data:0x006F31C8; // type:object size:0x690 scope:global align:8
+grd_s_e2_m_1_model = .data:0x006F3858; // type:object size:0x1A8 scope:global align:8
+grd_s_e2_m_1_modelT = .data:0x006F3A00; // type:object size:0xA0 scope:global align:8
+grd_s_e2_o_1_v = .data:0x006F3AA0; // type:object size:0x1E0 scope:global align:8
+grd_s_e2_o_1_model = .data:0x006F3C80; // type:object size:0x78 scope:global align:8
+grd_s_e2_o_1_modelT = .data:0x006F3CF8; // type:object size:0x88 scope:global align:8
+grd_s_e2_t_1_v = .data:0x006F3D80; // type:object size:0x980 scope:global align:8
+grd_s_e2_t_1_modelT = .data:0x006F4700; // type:object size:0x8 scope:global align:8
+grd_s_e2_t_1_model = .data:0x006F4708; // type:object size:0x1E8 scope:global align:8
+grd_s_e3_1_v = .data:0x006F48F0; // type:object size:0x690 scope:global align:8
+grd_s_e3_1_modelT = .data:0x006F4F80; // type:object size:0x8 scope:global align:8
+grd_s_e3_1_model = .data:0x006F4F88; // type:object size:0x150 scope:global align:8
+grd_s_e3_c1_1_v = .data:0x006F50D8; // type:object size:0x670 scope:global align:8
+grd_s_e3_c1_1_modelT = .data:0x006F5748; // type:object size:0x8 scope:global align:8
+grd_s_e3_c1_1_model = .data:0x006F5750; // type:object size:0x160 scope:global align:8
+grd_s_e3_m_1_v = .data:0x006F58B0; // type:object size:0x710 scope:global align:8
+grd_s_e3_m_1_model = .data:0x006F5FC0; // type:object size:0x198 scope:global align:8
+grd_s_e3_m_1_modelT = .data:0x006F6158; // type:object size:0xA0 scope:global align:8
+grd_s_e3_o_1_v = .data:0x006F61F8; // type:object size:0x1E0 scope:global align:8
+grd_s_e3_o_1_model = .data:0x006F63D8; // type:object size:0x78 scope:global align:8
+grd_s_e3_o_1_modelT = .data:0x006F6450; // type:object size:0x88 scope:global align:8
+grd_s_e3_t_1_v = .data:0x006F64D8; // type:object size:0x8A0 scope:global align:8
+grd_s_e3_t_1_modelT = .data:0x006F6D78; // type:object size:0x8 scope:global align:8
+grd_s_e3_t_1_model = .data:0x006F6D80; // type:object size:0x1E8 scope:global align:8
+grd_s_e4_1_v = .data:0x006F6F68; // type:object size:0x160 scope:global align:8
+grd_s_e4_1_modelT = .data:0x006F70C8; // type:object size:0x8 scope:global align:8
+grd_s_e4_1_model = .data:0x006F70D0; // type:object size:0xA0 scope:global align:8
+grd_s_e5_1_v = .data:0x006F7170; // type:object size:0x180 scope:global align:8
+grd_s_e5_1_modelT = .data:0x006F72F0; // type:object size:0x8 scope:global align:8
+grd_s_e5_1_model = .data:0x006F72F8; // type:object size:0xA8 scope:global align:8
+grd_s_f_1_v = .data:0x006F73A0; // type:object size:0xB70 scope:global align:8
+grd_s_f_1_modelT = .data:0x006F7F10; // type:object size:0x8 scope:global align:8
+grd_s_f_1_model = .data:0x006F7F18; // type:object size:0x1D8 scope:global align:8
+grd_s_f_10_v = .data:0x006F80F0; // type:object size:0xC20 scope:global align:8
+grd_s_f_10_modelT = .data:0x006F8D10; // type:object size:0x8 scope:global align:8
+grd_s_f_10_model = .data:0x006F8D18; // type:object size:0x1C0 scope:global align:8
+grd_s_f_2_v = .data:0x006F8ED8; // type:object size:0xD40 scope:global align:8
+grd_s_f_2_modelT = .data:0x006F9C18; // type:object size:0x8 scope:global align:8
+grd_s_f_2_model = .data:0x006F9C20; // type:object size:0x200 scope:global align:8
+grd_s_f_3_v = .data:0x006F9E20; // type:object size:0x7E0 scope:global align:8
+grd_s_f_3_modelT = .data:0x006FA600; // type:object size:0x8 scope:global align:8
+grd_s_f_3_model = .data:0x006FA608; // type:object size:0x170 scope:global align:8
+grd_s_f_4_evw_anime_1 = .data:0x006FA778; // type:object size:0x8 scope:global align:4
+grd_s_f_4_evw_anime = .data:0x006FA780; // type:object size:0x8 scope:global align:4
+grd_s_f_4_v = .data:0x006FA788; // type:object size:0xB70 scope:global align:8
+grd_s_f_4_modelT = .data:0x006FB2F8; // type:object size:0x78 scope:global align:8
+grd_s_f_4_model = .data:0x006FB370; // type:object size:0x1F0 scope:global align:8
+grd_s_f_5_evw_anime_1 = .data:0x006FB560; // type:object size:0x8 scope:global align:4
+grd_s_f_5_evw_anime = .data:0x006FB568; // type:object size:0x8 scope:global align:4
+grd_s_f_5_v = .data:0x006FB570; // type:object size:0xF30 scope:global align:8
+grd_s_f_5_modelT = .data:0x006FC4A0; // type:object size:0x70 scope:global align:8
+grd_s_f_5_model = .data:0x006FC510; // type:object size:0x240 scope:global align:8
+grd_s_f_6_evw_anime_1 = .data:0x006FC750; // type:object size:0x8 scope:global align:4
+grd_s_f_6_evw_anime = .data:0x006FC758; // type:object size:0x8 scope:global align:4
+grd_s_f_6_v = .data:0x006FC760; // type:object size:0xF70 scope:global align:8
+grd_s_f_6_modelT = .data:0x006FD6D0; // type:object size:0x70 scope:global align:8
+grd_s_f_6_model = .data:0x006FD740; // type:object size:0x248 scope:global align:8
+grd_s_f_7_v = .data:0x006FD988; // type:object size:0x1530 scope:global align:8
+grd_s_f_7_modelT = .data:0x006FEEB8; // type:object size:0x8 scope:global align:8
+grd_s_f_7_model = .data:0x006FEEC0; // type:object size:0x280 scope:global align:8
+grd_s_f_8_v = .data:0x006FF140; // type:object size:0xD20 scope:global align:8
+grd_s_f_8_modelT = .data:0x006FFE60; // type:object size:0x8 scope:global align:8
+grd_s_f_8_model = .data:0x006FFE68; // type:object size:0x200 scope:global align:8
+grd_s_f_9_v = .data:0x00700068; // type:object size:0xF70 scope:global align:8
+grd_s_f_9_modelT = .data:0x00700FD8; // type:object size:0x8 scope:global align:8
+grd_s_f_9_model = .data:0x00700FE0; // type:object size:0x228 scope:global align:8
+grd_s_f_ko_1_v = .data:0x00701208; // type:object size:0xED0 scope:global align:8
+grd_s_f_ko_1_modelT = .data:0x007020D8; // type:object size:0x8 scope:global align:8
+grd_s_f_ko_1_model = .data:0x007020E0; // type:object size:0x228 scope:global align:8
+grd_s_f_ko_2_v = .data:0x00702308; // type:object size:0xAB0 scope:global align:8
+grd_s_f_ko_2_modelT = .data:0x00702DB8; // type:object size:0x8 scope:global align:8
+grd_s_f_ko_2_model = .data:0x00702DC0; // type:object size:0x1D0 scope:global align:8
+grd_s_f_ko_3_evw_anime_1 = .data:0x00702F90; // type:object size:0x8 scope:global align:4
+grd_s_f_ko_3_evw_anime = .data:0x00702F98; // type:object size:0x8 scope:global align:4
+grd_s_f_ko_3_v = .data:0x00702FA0; // type:object size:0xF90 scope:global align:8
+grd_s_f_ko_3_modelT = .data:0x00703F30; // type:object size:0x78 scope:global align:8
+grd_s_f_ko_3_model = .data:0x00703FA8; // type:object size:0x260 scope:global align:8
+grd_s_f_mh_1_v = .data:0x00704208; // type:object size:0xCC0 scope:global align:8
+grd_s_f_mh_1_modelT = .data:0x00704EC8; // type:object size:0x8 scope:global align:8
+grd_s_f_mh_1_model = .data:0x00704ED0; // type:object size:0x1B8 scope:global align:8
+grd_s_f_mh_2_v = .data:0x00705088; // type:object size:0xDB0 scope:global align:8
+grd_s_f_mh_2_modelT = .data:0x00705E38; // type:object size:0x8 scope:global align:8
+grd_s_f_mh_2_model = .data:0x00705E40; // type:object size:0x1B0 scope:global align:8
+grd_s_f_mh_3_v = .data:0x00705FF0; // type:object size:0xB00 scope:global align:8
+grd_s_f_mh_3_modelT = .data:0x00706AF0; // type:object size:0x8 scope:global align:8
+grd_s_f_mh_3_model = .data:0x00706AF8; // type:object size:0x198 scope:global align:8
+grd_s_f_mu_1_v = .data:0x00706C90; // type:object size:0xA00 scope:global align:8
+grd_s_f_mu_1_modelT = .data:0x00707690; // type:object size:0x8 scope:global align:8
+grd_s_f_mu_1_model = .data:0x00707698; // type:object size:0x1C8 scope:global align:8
+grd_s_f_mu_2_v = .data:0x00707860; // type:object size:0x9F0 scope:global align:8
+grd_s_f_mu_2_modelT = .data:0x00708250; // type:object size:0x8 scope:global align:8
+grd_s_f_mu_2_model = .data:0x00708258; // type:object size:0x1C8 scope:global align:8
+grd_s_f_mu_3_evw_anime_1 = .data:0x00708420; // type:object size:0x8 scope:global align:4
+grd_s_f_mu_3_evw_anime = .data:0x00708428; // type:object size:0x8 scope:global align:4
+grd_s_f_mu_3_v = .data:0x00708430; // type:object size:0x980 scope:global align:8
+grd_s_f_mu_3_modelT = .data:0x00708DB0; // type:object size:0x78 scope:global align:8
+grd_s_f_mu_3_model = .data:0x00708E28; // type:object size:0x190 scope:global align:8
+grd_s_f_pk_1_v = .data:0x00708FB8; // type:object size:0xEC0 scope:global align:8
+grd_s_f_pk_1_modelT = .data:0x00709E78; // type:object size:0x8 scope:global align:8
+grd_s_f_pk_1_model = .data:0x00709E80; // type:object size:0x238 scope:global align:8
+grd_s_f_pk_2_v = .data:0x0070A0B8; // type:object size:0xDA0 scope:global align:8
+grd_s_f_pk_2_modelT = .data:0x0070AE58; // type:object size:0x8 scope:global align:8
+grd_s_f_pk_2_model = .data:0x0070AE60; // type:object size:0x220 scope:global align:8
+grd_s_f_pk_3_v = .data:0x0070B080; // type:object size:0x1020 scope:global align:8
+grd_s_f_pk_3_modelT = .data:0x0070C0A0; // type:object size:0x8 scope:global align:8
+grd_s_f_pk_3_model = .data:0x0070C0A8; // type:object size:0x268 scope:global align:8
+grd_s_hole_test_v = .data:0x0070C310; // type:object size:0xF30 scope:global align:8
+grd_s_hole_test_modelT = .data:0x0070D240; // type:object size:0x8 scope:global align:8
+grd_s_hole_test_model = .data:0x0070D248; // type:object size:0x260 scope:global align:8
+grd_s_il_1_v = .data:0x0070D4A8; // type:object size:0xD20 scope:global align:8
+grd_s_il_1_model = .data:0x0070E1C8; // type:object size:0x278 scope:global align:8
+grd_s_il_1_modelT = .data:0x0070E440; // type:object size:0xD8 scope:global align:8
+grd_s_il_2_v = .data:0x0070E518; // type:object size:0x14F0 scope:global align:8
+grd_s_il_2_model = .data:0x0070FA08; // type:object size:0x378 scope:global align:8
+grd_s_il_2_modelT = .data:0x0070FD80; // type:object size:0xD8 scope:global align:8
+grd_s_il_3_v = .data:0x0070FE58; // type:object size:0xE30 scope:global align:8
+grd_s_il_3_model = .data:0x00710C88; // type:object size:0x288 scope:global align:8
+grd_s_il_3_modelT = .data:0x00710F10; // type:object size:0xE8 scope:global align:8
+grd_s_il_4_v = .data:0x00710FF8; // type:object size:0xD80 scope:global align:8
+grd_s_il_4_model = .data:0x00711D78; // type:object size:0x290 scope:global align:8
+grd_s_il_4_modelT = .data:0x00712008; // type:object size:0xE0 scope:global align:8
+grd_s_ir_1_v = .data:0x007120E8; // type:object size:0x1080 scope:global align:8
+grd_s_ir_1_model = .data:0x00713168; // type:object size:0x318 scope:global align:8
+grd_s_ir_1_modelT = .data:0x00713480; // type:object size:0xE0 scope:global align:8
+grd_s_ir_2_v = .data:0x00713560; // type:object size:0x1370 scope:global align:8
+grd_s_ir_2_model = .data:0x007148D0; // type:object size:0x330 scope:global align:8
+grd_s_ir_2_modelT = .data:0x00714C00; // type:object size:0xF8 scope:global align:8
+grd_s_ir_3_v = .data:0x00714CF8; // type:object size:0x1550 scope:global align:8
+grd_s_ir_3_model = .data:0x00716248; // type:object size:0x390 scope:global align:8
+grd_s_ir_3_modelT = .data:0x007165D8; // type:object size:0xD8 scope:global align:8
+grd_s_ir_4_v = .data:0x007166B0; // type:object size:0x11B0 scope:global align:8
+grd_s_ir_4_model = .data:0x00717860; // type:object size:0x328 scope:global align:8
+grd_s_ir_4_modelT = .data:0x00717B88; // type:object size:0xD0 scope:global align:8
+grd_s_m_1_v = .data:0x00717C58; // type:object size:0xE00 scope:global align:8
+grd_s_m_1_model = .data:0x00718A58; // type:object size:0x230 scope:global align:8
+grd_s_m_1_modelT = .data:0x00718C88; // type:object size:0x128 scope:global align:8
+grd_s_m_10_v = .data:0x00718DB0; // type:object size:0xDF0 scope:global align:8
+grd_s_m_10_model = .data:0x00719BA0; // type:object size:0x288 scope:global align:8
+grd_s_m_10_modelT = .data:0x00719E28; // type:object size:0x110 scope:global align:8
+grd_s_m_2_v = .data:0x00719F38; // type:object size:0xF30 scope:global align:8
+grd_s_m_2_model = .data:0x0071AE68; // type:object size:0x2B8 scope:global align:8
+grd_s_m_2_modelT = .data:0x0071B120; // type:object size:0xF8 scope:global align:8
+grd_s_m_3_v = .data:0x0071B218; // type:object size:0xE60 scope:global align:8
+grd_s_m_3_model = .data:0x0071C078; // type:object size:0x258 scope:global align:8
+grd_s_m_3_modelT = .data:0x0071C2D0; // type:object size:0xF8 scope:global align:8
+grd_s_m_4_v = .data:0x0071C3C8; // type:object size:0xC60 scope:global align:8
+grd_s_m_4_model = .data:0x0071D028; // type:object size:0x260 scope:global align:8
+grd_s_m_4_modelT = .data:0x0071D288; // type:object size:0x118 scope:global align:8
+grd_s_m_5_v = .data:0x0071D3A0; // type:object size:0x1000 scope:global align:8
+grd_s_m_5_model = .data:0x0071E3A0; // type:object size:0x2D8 scope:global align:8
+grd_s_m_5_modelT = .data:0x0071E678; // type:object size:0xF8 scope:global align:8
+grd_s_m_6_v = .data:0x0071E770; // type:object size:0xF70 scope:global align:8
+grd_s_m_6_model = .data:0x0071F6E0; // type:object size:0x278 scope:global align:8
+grd_s_m_6_modelT = .data:0x0071F958; // type:object size:0x108 scope:global align:8
+grd_s_m_7_v = .data:0x0071FA60; // type:object size:0xC90 scope:global align:8
+grd_s_m_7_model = .data:0x007206F0; // type:object size:0x260 scope:global align:8
+grd_s_m_7_modelT = .data:0x00720950; // type:object size:0x110 scope:global align:8
+grd_s_m_8_v = .data:0x00720A60; // type:object size:0xD10 scope:global align:8
+grd_s_m_8_model = .data:0x00721770; // type:object size:0x290 scope:global align:8
+grd_s_m_8_modelT = .data:0x00721A00; // type:object size:0xE8 scope:global align:8
+grd_s_m_9_v = .data:0x00721AE8; // type:object size:0xC40 scope:global align:8
+grd_s_m_9_model = .data:0x00722728; // type:object size:0x200 scope:global align:8
+grd_s_m_9_modelT = .data:0x00722928; // type:object size:0x130 scope:global align:8
+grd_s_m_r1_1_evw_anime_1 = .data:0x00722A58; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_1_evw_anime_4 = .data:0x00722A60; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_1_evw_anime = .data:0x00722A68; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_1_v = .data:0x00722A78; // type:object size:0x1040 scope:global align:8
+grd_s_m_r1_1_model = .data:0x00723AB8; // type:object size:0x280 scope:global align:8
+grd_s_m_r1_1_modelT = .data:0x00723D38; // type:object size:0x1A0 scope:global align:8
+grd_s_m_r1_2_evw_anime_1 = .data:0x00723ED8; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_2_evw_anime_4 = .data:0x00723EE0; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_2_evw_anime = .data:0x00723EE8; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_2_v = .data:0x00723EF8; // type:object size:0xFD0 scope:global align:8
+grd_s_m_r1_2_model = .data:0x00724EC8; // type:object size:0x260 scope:global align:8
+grd_s_m_r1_2_modelT = .data:0x00725128; // type:object size:0x190 scope:global align:8
+grd_s_m_r1_3_evw_anime_1 = .data:0x007252B8; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_3_evw_anime_4 = .data:0x007252C0; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_3_evw_anime = .data:0x007252C8; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_3_v = .data:0x007252D8; // type:object size:0xE60 scope:global align:8
+grd_s_m_r1_3_model = .data:0x00726138; // type:object size:0x268 scope:global align:8
+grd_s_m_r1_3_modelT = .data:0x007263A0; // type:object size:0x190 scope:global align:8
+grd_s_m_r1_4_evw_anime_1 = .data:0x00726530; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_4_evw_anime_4 = .data:0x00726538; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_4_evw_anime = .data:0x00726540; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_4_v = .data:0x00726550; // type:object size:0x1140 scope:global align:8
+grd_s_m_r1_4_model = .data:0x00727690; // type:object size:0x2B0 scope:global align:8
+grd_s_m_r1_4_modelT = .data:0x00727940; // type:object size:0x198 scope:global align:8
+grd_s_m_r1_5_evw_anime_1 = .data:0x00727AD8; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_5_evw_anime_4 = .data:0x00727AE0; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_5_evw_anime = .data:0x00727AE8; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_5_v = .data:0x00727AF8; // type:object size:0x1240 scope:global align:8
+grd_s_m_r1_5_model = .data:0x00728D38; // type:object size:0x298 scope:global align:8
+grd_s_m_r1_5_modelT = .data:0x00728FD0; // type:object size:0x190 scope:global align:8
+grd_s_m_r1_b_1_evw_anime_1 = .data:0x00729160; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_1_evw_anime_4 = .data:0x00729168; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_1_evw_anime = .data:0x00729170; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_b_1_v = .data:0x00729180; // type:object size:0xE60 scope:global align:8
+grd_s_m_r1_b_1_model = .data:0x00729FE0; // type:object size:0x2B0 scope:global align:8
+grd_s_m_r1_b_1_modelT = .data:0x0072A290; // type:object size:0x178 scope:global align:8
+grd_s_m_r1_b_2_evw_anime_1 = .data:0x0072A408; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_2_evw_anime_4 = .data:0x0072A410; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_2_evw_anime = .data:0x0072A418; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_b_2_v = .data:0x0072A428; // type:object size:0x1190 scope:global align:8
+grd_s_m_r1_b_2_model = .data:0x0072B5B8; // type:object size:0x2D8 scope:global align:8
+grd_s_m_r1_b_2_modelT = .data:0x0072B890; // type:object size:0x180 scope:global align:8
+grd_s_m_r1_b_3_evw_anime_1 = .data:0x0072BA10; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_3_evw_anime_4 = .data:0x0072BA18; // type:object size:0x8 scope:global align:4
+grd_s_m_r1_b_3_evw_anime = .data:0x0072BA20; // type:object size:0x10 scope:global align:4
+grd_s_m_r1_b_3_v = .data:0x0072BA30; // type:object size:0x1000 scope:global align:8
+grd_s_m_r1_b_3_model = .data:0x0072CA30; // type:object size:0x2A0 scope:global align:8
+grd_s_m_r1_b_3_modelT = .data:0x0072CCD0; // type:object size:0x180 scope:global align:8
+grd_s_m_ta_1_evw_anime_1 = .data:0x0072CE50; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_1_evw_anime_4 = .data:0x0072CE58; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_1_evw_anime = .data:0x0072CE60; // type:object size:0x10 scope:global align:4
+grd_s_m_ta_1_v = .data:0x0072CE70; // type:object size:0xFB0 scope:global align:8
+grd_s_m_ta_1_model = .data:0x0072DE20; // type:object size:0x2A0 scope:global align:8
+grd_s_m_ta_1_modelT = .data:0x0072E0C0; // type:object size:0x108 scope:global align:8
+grd_s_m_ta_2_evw_anime_1 = .data:0x0072E1C8; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_2_evw_anime_4 = .data:0x0072E1D0; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_2_evw_anime = .data:0x0072E1D8; // type:object size:0x10 scope:global align:4
+grd_s_m_ta_2_v = .data:0x0072E1E8; // type:object size:0xE80 scope:global align:8
+grd_s_m_ta_2_model = .data:0x0072F068; // type:object size:0x2A8 scope:global align:8
+grd_s_m_ta_2_modelT = .data:0x0072F310; // type:object size:0xF0 scope:global align:8
+grd_s_m_ta_3_evw_anime_1 = .data:0x0072F400; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_3_evw_anime_4 = .data:0x0072F408; // type:object size:0x8 scope:global align:4
+grd_s_m_ta_3_evw_anime = .data:0x0072F410; // type:object size:0x10 scope:global align:4
+grd_s_m_ta_3_v = .data:0x0072F420; // type:object size:0xF70 scope:global align:8
+grd_s_m_ta_3_model = .data:0x00730390; // type:object size:0x2D8 scope:global align:8
+grd_s_m_ta_3_modelT = .data:0x00730668; // type:object size:0x108 scope:global align:8
+grd_s_m_wf_1_evw_anime_1 = .data:0x00730770; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_1_evw_anime_2 = .data:0x00730778; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_1_evw_anime_3 = .data:0x00730780; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_1_evw_anime_4 = .data:0x00730788; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_1_evw_anime = .data:0x00730790; // type:object size:0x20 scope:global align:4
+grd_s_m_wf_1_v = .data:0x007307B0; // type:object size:0x1230 scope:global align:8
+grd_s_m_wf_1_model = .data:0x007319E0; // type:object size:0x340 scope:global align:8
+grd_s_m_wf_1_modelT = .data:0x00731D20; // type:object size:0xF0 scope:global align:8
+grd_s_m_wf_2_evw_anime_1 = .data:0x00731E10; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_2_evw_anime_2 = .data:0x00731E18; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_2_evw_anime_3 = .data:0x00731E20; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_2_evw_anime_4 = .data:0x00731E28; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_2_evw_anime = .data:0x00731E30; // type:object size:0x20 scope:global align:4
+grd_s_m_wf_2_v = .data:0x00731E50; // type:object size:0x1810 scope:global align:8
+grd_s_m_wf_2_model = .data:0x00733660; // type:object size:0x390 scope:global align:8
+grd_s_m_wf_2_modelT = .data:0x007339F0; // type:object size:0x118 scope:global align:8
+grd_s_m_wf_3_evw_anime_1 = .data:0x00733B08; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_3_evw_anime_2 = .data:0x00733B10; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_3_evw_anime_3 = .data:0x00733B18; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_3_evw_anime_4 = .data:0x00733B20; // type:object size:0x8 scope:global align:4
+grd_s_m_wf_3_evw_anime = .data:0x00733B28; // type:object size:0x20 scope:global align:4
+grd_s_m_wf_3_v = .data:0x00733B48; // type:object size:0x1300 scope:global align:8
+grd_s_m_wf_3_model = .data:0x00734E48; // type:object size:0x358 scope:global align:8
+grd_s_m_wf_3_modelT = .data:0x007351A0; // type:object size:0xE0 scope:global align:8
+grd_s_o_1_evw_anime_1 = .data:0x00735280; // type:object size:0x8 scope:global align:4
+grd_s_o_1_evw_anime_2 = .data:0x00735288; // type:object size:0x8 scope:global align:4
+grd_s_o_1_evw_anime_3 = .data:0x00735290; // type:object size:0x8 scope:global align:4
+grd_s_o_1_evw_anime_4 = .data:0x00735298; // type:object size:0x8 scope:global align:4
+grd_s_o_1_evw_anime = .data:0x007352A0; // type:object size:0x20 scope:global align:4
+grd_s_o_1_v = .data:0x007352C0; // type:object size:0x3A0 scope:global align:8
+grd_s_o_1_model = .data:0x00735660; // type:object size:0x78 scope:global align:8
+grd_s_o_1_modelT = .data:0x007356D8; // type:object size:0xC8 scope:global align:8
+grd_s_o_10_evw_anime_1 = .data:0x007357A0; // type:object size:0x8 scope:global align:4
+grd_s_o_10_evw_anime_2 = .data:0x007357A8; // type:object size:0x8 scope:global align:4
+grd_s_o_10_evw_anime_3 = .data:0x007357B0; // type:object size:0x8 scope:global align:4
+grd_s_o_10_evw_anime_4 = .data:0x007357B8; // type:object size:0x8 scope:global align:4
+grd_s_o_10_evw_anime = .data:0x007357C0; // type:object size:0x20 scope:global align:4
+grd_s_o_10_v = .data:0x007357E0; // type:object size:0x360 scope:global align:8
+grd_s_o_10_model = .data:0x00735B40; // type:object size:0x78 scope:global align:8
+grd_s_o_10_modelT = .data:0x00735BB8; // type:object size:0xC0 scope:global align:8
+grd_s_o_2_evw_anime_1 = .data:0x00735C78; // type:object size:0x8 scope:global align:4
+grd_s_o_2_evw_anime_2 = .data:0x00735C80; // type:object size:0x8 scope:global align:4
+grd_s_o_2_evw_anime_3 = .data:0x00735C88; // type:object size:0x8 scope:global align:4
+grd_s_o_2_evw_anime_4 = .data:0x00735C90; // type:object size:0x8 scope:global align:4
+grd_s_o_2_evw_anime = .data:0x00735C98; // type:object size:0x20 scope:global align:4
+grd_s_o_2_v = .data:0x00735CB8; // type:object size:0x360 scope:global align:8
+grd_s_o_2_model = .data:0x00736018; // type:object size:0x78 scope:global align:8
+grd_s_o_2_modelT = .data:0x00736090; // type:object size:0xC8 scope:global align:8
+grd_s_o_3_evw_anime_1 = .data:0x00736158; // type:object size:0x8 scope:global align:4
+grd_s_o_3_evw_anime_2 = .data:0x00736160; // type:object size:0x8 scope:global align:4
+grd_s_o_3_evw_anime_3 = .data:0x00736168; // type:object size:0x8 scope:global align:4
+grd_s_o_3_evw_anime_4 = .data:0x00736170; // type:object size:0x8 scope:global align:4
+grd_s_o_3_evw_anime = .data:0x00736178; // type:object size:0x20 scope:global align:4
+grd_s_o_3_v = .data:0x00736198; // type:object size:0x330 scope:global align:8
+grd_s_o_3_model = .data:0x007364C8; // type:object size:0x78 scope:global align:8
+grd_s_o_3_modelT = .data:0x00736540; // type:object size:0xC0 scope:global align:8
+grd_s_o_4_evw_anime_1 = .data:0x00736600; // type:object size:0x8 scope:global align:4
+grd_s_o_4_evw_anime_2 = .data:0x00736608; // type:object size:0x8 scope:global align:4
+grd_s_o_4_evw_anime_3 = .data:0x00736610; // type:object size:0x8 scope:global align:4
+grd_s_o_4_evw_anime_4 = .data:0x00736618; // type:object size:0x8 scope:global align:4
+grd_s_o_4_evw_anime = .data:0x00736620; // type:object size:0x20 scope:global align:4
+grd_s_o_4_v = .data:0x00736640; // type:object size:0x350 scope:global align:8
+grd_s_o_4_model = .data:0x00736990; // type:object size:0x78 scope:global align:8
+grd_s_o_4_modelT = .data:0x00736A08; // type:object size:0xC8 scope:global align:8
+grd_s_o_5_evw_anime_1 = .data:0x00736AD0; // type:object size:0x8 scope:global align:4
+grd_s_o_5_evw_anime_2 = .data:0x00736AD8; // type:object size:0x8 scope:global align:4
+grd_s_o_5_evw_anime_3 = .data:0x00736AE0; // type:object size:0x8 scope:global align:4
+grd_s_o_5_evw_anime_4 = .data:0x00736AE8; // type:object size:0x8 scope:global align:4
+grd_s_o_5_evw_anime = .data:0x00736AF0; // type:object size:0x20 scope:global align:4
+grd_s_o_5_v = .data:0x00736B10; // type:object size:0x340 scope:global align:8
+grd_s_o_5_model = .data:0x00736E50; // type:object size:0x78 scope:global align:8
+grd_s_o_5_modelT = .data:0x00736EC8; // type:object size:0xC8 scope:global align:8
+grd_s_o_6_evw_anime_1 = .data:0x00736F90; // type:object size:0x8 scope:global align:4
+grd_s_o_6_evw_anime_2 = .data:0x00736F98; // type:object size:0x8 scope:global align:4
+grd_s_o_6_evw_anime_3 = .data:0x00736FA0; // type:object size:0x8 scope:global align:4
+grd_s_o_6_evw_anime_4 = .data:0x00736FA8; // type:object size:0x8 scope:global align:4
+grd_s_o_6_evw_anime = .data:0x00736FB0; // type:object size:0x20 scope:global align:4
+grd_s_o_6_v = .data:0x00736FD0; // type:object size:0x330 scope:global align:8
+grd_s_o_6_model = .data:0x00737300; // type:object size:0x78 scope:global align:8
+grd_s_o_6_modelT = .data:0x00737378; // type:object size:0xC0 scope:global align:8
+grd_s_o_7_evw_anime_1 = .data:0x00737438; // type:object size:0x8 scope:global align:4
+grd_s_o_7_evw_anime_2 = .data:0x00737440; // type:object size:0x8 scope:global align:4
+grd_s_o_7_evw_anime_3 = .data:0x00737448; // type:object size:0x8 scope:global align:4
+grd_s_o_7_evw_anime_4 = .data:0x00737450; // type:object size:0x8 scope:global align:4
+grd_s_o_7_evw_anime = .data:0x00737458; // type:object size:0x20 scope:global align:4
+grd_s_o_7_v = .data:0x00737478; // type:object size:0x350 scope:global align:8
+grd_s_o_7_model = .data:0x007377C8; // type:object size:0x78 scope:global align:8
+grd_s_o_7_modelT = .data:0x00737840; // type:object size:0xC8 scope:global align:8
+grd_s_o_8_evw_anime_1 = .data:0x00737908; // type:object size:0x8 scope:global align:4
+grd_s_o_8_evw_anime_2 = .data:0x00737910; // type:object size:0x8 scope:global align:4
+grd_s_o_8_evw_anime_3 = .data:0x00737918; // type:object size:0x8 scope:global align:4
+grd_s_o_8_evw_anime_4 = .data:0x00737920; // type:object size:0x8 scope:global align:4
+grd_s_o_8_evw_anime = .data:0x00737928; // type:object size:0x20 scope:global align:4
+grd_s_o_8_v = .data:0x00737948; // type:object size:0x3A0 scope:global align:8
+grd_s_o_8_model = .data:0x00737CE8; // type:object size:0x78 scope:global align:8
+grd_s_o_8_modelT = .data:0x00737D60; // type:object size:0xD8 scope:global align:8
+grd_s_o_9_evw_anime_1 = .data:0x00737E38; // type:object size:0x8 scope:global align:4
+grd_s_o_9_evw_anime_2 = .data:0x00737E40; // type:object size:0x8 scope:global align:4
+grd_s_o_9_evw_anime_3 = .data:0x00737E48; // type:object size:0x8 scope:global align:4
+grd_s_o_9_evw_anime_4 = .data:0x00737E50; // type:object size:0x8 scope:global align:4
+grd_s_o_9_evw_anime = .data:0x00737E58; // type:object size:0x20 scope:global align:4
+grd_s_o_9_v = .data:0x00737E78; // type:object size:0x390 scope:global align:8
+grd_s_o_9_model = .data:0x00738208; // type:object size:0x78 scope:global align:8
+grd_s_o_9_modelT = .data:0x00738280; // type:object size:0xD0 scope:global align:8
+grd_s_o_i_1_v = .data:0x00738350; // type:object size:0x320 scope:global align:8
+grd_s_o_i_1_model = .data:0x00738670; // type:object size:0x98 scope:global align:8
+grd_s_o_i_1_modelT = .data:0x00738708; // type:object size:0xA8 scope:global align:8
+grd_s_o_i_2_evw_anime_1 = .data:0x007387B0; // type:object size:0x8 scope:global align:4
+grd_s_o_i_2_evw_anime_2 = .data:0x007387B8; // type:object size:0x8 scope:global align:4
+grd_s_o_i_2_evw_anime_3 = .data:0x007387C0; // type:object size:0x8 scope:global align:4
+grd_s_o_i_2_evw_anime_4 = .data:0x007387C8; // type:object size:0x8 scope:global align:4
+grd_s_o_i_2_evw_anime = .data:0x007387D0; // type:object size:0x20 scope:global align:4
+grd_s_o_i_2_v = .data:0x007387F0; // type:object size:0x1E0 scope:global align:8
+grd_s_o_i_2_model = .data:0x007389D0; // type:object size:0x78 scope:global align:8
+grd_s_o_i_2_modelT = .data:0x00738A48; // type:object size:0x88 scope:global align:8
+grd_s_o_r1_1_evw_anime_1 = .data:0x00738AD0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_1_evw_anime_2 = .data:0x00738AD8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_1_evw_anime_3 = .data:0x00738AE0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_1_evw_anime_4 = .data:0x00738AE8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_1_evw_anime = .data:0x00738AF0; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_1_v = .data:0x00738B10; // type:object size:0x3D0 scope:global align:8
+grd_s_o_r1_1_model = .data:0x00738EE0; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_1_modelT = .data:0x00738F58; // type:object size:0xC8 scope:global align:8
+grd_s_o_r1_2_evw_anime_1 = .data:0x00739020; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_2_evw_anime_2 = .data:0x00739028; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_2_evw_anime_3 = .data:0x00739030; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_2_evw_anime_4 = .data:0x00739038; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_2_evw_anime = .data:0x00739040; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_2_v = .data:0x00739060; // type:object size:0x3A0 scope:global align:8
+grd_s_o_r1_2_model = .data:0x00739400; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_2_modelT = .data:0x00739478; // type:object size:0xC8 scope:global align:8
+grd_s_o_r1_3_evw_anime_1 = .data:0x00739540; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_3_evw_anime_2 = .data:0x00739548; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_3_evw_anime_3 = .data:0x00739550; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_3_evw_anime_4 = .data:0x00739558; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_3_evw_anime = .data:0x00739560; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_3_v = .data:0x00739580; // type:object size:0x3B0 scope:global align:8
+grd_s_o_r1_3_model = .data:0x00739930; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_3_modelT = .data:0x007399A8; // type:object size:0xD0 scope:global align:8
+grd_s_o_r1_4_evw_anime_1 = .data:0x00739A78; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_4_evw_anime_2 = .data:0x00739A80; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_4_evw_anime_3 = .data:0x00739A88; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_4_evw_anime_4 = .data:0x00739A90; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_4_evw_anime = .data:0x00739A98; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_4_v = .data:0x00739AB8; // type:object size:0x380 scope:global align:8
+grd_s_o_r1_4_model = .data:0x00739E38; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_4_modelT = .data:0x00739EB0; // type:object size:0xC8 scope:global align:8
+grd_s_o_r1_5_evw_anime_1 = .data:0x00739F78; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_5_evw_anime_2 = .data:0x00739F80; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_5_evw_anime_3 = .data:0x00739F88; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_5_evw_anime_4 = .data:0x00739F90; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_5_evw_anime = .data:0x00739F98; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_5_v = .data:0x00739FB8; // type:object size:0x2C0 scope:global align:8
+grd_s_o_r1_5_model = .data:0x0073A278; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_5_modelT = .data:0x0073A2F0; // type:object size:0xA0 scope:global align:8
+grd_s_o_r1_b_1_evw_anime_1 = .data:0x0073A390; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_1_evw_anime_2 = .data:0x0073A398; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_1_evw_anime_3 = .data:0x0073A3A0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_1_evw_anime_4 = .data:0x0073A3A8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_1_evw_anime = .data:0x0073A3B0; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_b_1_v = .data:0x0073A3D0; // type:object size:0x1E0 scope:global align:8
+grd_s_o_r1_b_1_model = .data:0x0073A5B0; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_b_1_modelT = .data:0x0073A628; // type:object size:0x88 scope:global align:8
+grd_s_o_r1_b_2_evw_anime_1 = .data:0x0073A6B0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_2_evw_anime_2 = .data:0x0073A6B8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_2_evw_anime_3 = .data:0x0073A6C0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_2_evw_anime_4 = .data:0x0073A6C8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_2_evw_anime = .data:0x0073A6D0; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_b_2_v = .data:0x0073A6F0; // type:object size:0x1E0 scope:global align:8
+grd_s_o_r1_b_2_model = .data:0x0073A8D0; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_b_2_modelT = .data:0x0073A948; // type:object size:0x80 scope:global align:8
+grd_s_o_r1_b_3_evw_anime_1 = .data:0x0073A9C8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_3_evw_anime_2 = .data:0x0073A9D0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_3_evw_anime_3 = .data:0x0073A9D8; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_3_evw_anime_4 = .data:0x0073A9E0; // type:object size:0x8 scope:global align:4
+grd_s_o_r1_b_3_evw_anime = .data:0x0073A9E8; // type:object size:0x20 scope:global align:4
+grd_s_o_r1_b_3_v = .data:0x0073AA08; // type:object size:0x1E0 scope:global align:8
+grd_s_o_r1_b_3_model = .data:0x0073ABE8; // type:object size:0x78 scope:global align:8
+grd_s_o_r1_b_3_modelT = .data:0x0073AC60; // type:object size:0x80 scope:global align:8
+grd_s_o_ta_1_evw_anime_1 = .data:0x0073ACE0; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_1_evw_anime_2 = .data:0x0073ACE8; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_1_evw_anime_3 = .data:0x0073ACF0; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_1_evw_anime_4 = .data:0x0073ACF8; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_1_evw_anime = .data:0x0073AD00; // type:object size:0x20 scope:global align:4
+grd_s_o_ta_1_v = .data:0x0073AD20; // type:object size:0x3C0 scope:global align:8
+grd_s_o_ta_1_model = .data:0x0073B0E0; // type:object size:0x78 scope:global align:8
+grd_s_o_ta_1_modelT = .data:0x0073B158; // type:object size:0xD0 scope:global align:8
+grd_s_o_ta_2_evw_anime_1 = .data:0x0073B228; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_2_evw_anime_2 = .data:0x0073B230; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_2_evw_anime_3 = .data:0x0073B238; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_2_evw_anime_4 = .data:0x0073B240; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_2_evw_anime = .data:0x0073B248; // type:object size:0x20 scope:global align:4
+grd_s_o_ta_2_v = .data:0x0073B268; // type:object size:0x2E0 scope:global align:8
+grd_s_o_ta_2_model = .data:0x0073B548; // type:object size:0x78 scope:global align:8
+grd_s_o_ta_2_modelT = .data:0x0073B5C0; // type:object size:0xB0 scope:global align:8
+grd_s_o_ta_3_evw_anime_1 = .data:0x0073B670; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_3_evw_anime_2 = .data:0x0073B678; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_3_evw_anime_3 = .data:0x0073B680; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_3_evw_anime_4 = .data:0x0073B688; // type:object size:0x8 scope:global align:4
+grd_s_o_ta_3_evw_anime = .data:0x0073B690; // type:object size:0x20 scope:global align:4
+grd_s_o_ta_3_v = .data:0x0073B6B0; // type:object size:0x2F0 scope:global align:8
+grd_s_o_ta_3_model = .data:0x0073B9A0; // type:object size:0x78 scope:global align:8
+grd_s_o_ta_3_modelT = .data:0x0073BA18; // type:object size:0xB0 scope:global align:8
+grd_s_o_wf_1_evw_anime_1 = .data:0x0073BAC8; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_1_evw_anime_2 = .data:0x0073BAD0; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_1_evw_anime_3 = .data:0x0073BAD8; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_1_evw_anime_4 = .data:0x0073BAE0; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_1_evw_anime = .data:0x0073BAE8; // type:object size:0x20 scope:global align:4
+grd_s_o_wf_1_v = .data:0x0073BB08; // type:object size:0x3F0 scope:global align:8
+grd_s_o_wf_1_model = .data:0x0073BEF8; // type:object size:0x78 scope:global align:8
+grd_s_o_wf_1_modelT = .data:0x0073BF70; // type:object size:0xC8 scope:global align:8
+grd_s_o_wf_2_evw_anime_1 = .data:0x0073C038; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_2_evw_anime_2 = .data:0x0073C040; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_2_evw_anime_3 = .data:0x0073C048; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_2_evw_anime_4 = .data:0x0073C050; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_2_evw_anime = .data:0x0073C058; // type:object size:0x20 scope:global align:4
+grd_s_o_wf_2_v = .data:0x0073C078; // type:object size:0x420 scope:global align:8
+grd_s_o_wf_2_model = .data:0x0073C498; // type:object size:0x78 scope:global align:8
+grd_s_o_wf_2_modelT = .data:0x0073C510; // type:object size:0xC8 scope:global align:8
+grd_s_o_wf_3_evw_anime_1 = .data:0x0073C5D8; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_3_evw_anime_2 = .data:0x0073C5E0; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_3_evw_anime_3 = .data:0x0073C5E8; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_3_evw_anime_4 = .data:0x0073C5F0; // type:object size:0x8 scope:global align:4
+grd_s_o_wf_3_evw_anime = .data:0x0073C5F8; // type:object size:0x20 scope:global align:4
+grd_s_o_wf_3_v = .data:0x0073C618; // type:object size:0x3E0 scope:global align:8
+grd_s_o_wf_3_model = .data:0x0073C9F8; // type:object size:0x78 scope:global align:8
+grd_s_o_wf_3_modelT = .data:0x0073CA70; // type:object size:0xC0 scope:global align:8
+grd_s_r1_1_evw_anime_1 = .data:0x0073CB30; // type:object size:0x8 scope:global align:4
+grd_s_r1_1_evw_anime = .data:0x0073CB38; // type:object size:0x8 scope:global align:4
+grd_s_r1_1_v = .data:0x0073CB40; // type:object size:0xBC0 scope:global align:8
+grd_s_r1_1_modelT = .data:0x0073D700; // type:object size:0x80 scope:global align:8
+grd_s_r1_1_model = .data:0x0073D780; // type:object size:0x1A8 scope:global align:8
+grd_s_r1_2_evw_anime_1 = .data:0x0073D928; // type:object size:0x8 scope:global align:4
+grd_s_r1_2_evw_anime = .data:0x0073D930; // type:object size:0x8 scope:global align:4
+grd_s_r1_2_v = .data:0x0073D938; // type:object size:0xCA0 scope:global align:8
+grd_s_r1_2_modelT = .data:0x0073E5D8; // type:object size:0x88 scope:global align:8
+grd_s_r1_2_model = .data:0x0073E660; // type:object size:0x200 scope:global align:8
+grd_s_r1_3_evw_anime_1 = .data:0x0073E860; // type:object size:0x8 scope:global align:4
+grd_s_r1_3_evw_anime = .data:0x0073E868; // type:object size:0x8 scope:global align:4
+grd_s_r1_3_v = .data:0x0073E870; // type:object size:0xD70 scope:global align:8
+grd_s_r1_3_modelT = .data:0x0073F5E0; // type:object size:0x90 scope:global align:8
+grd_s_r1_3_model = .data:0x0073F670; // type:object size:0x220 scope:global align:8
+grd_s_r1_4_evw_anime_1 = .data:0x0073F890; // type:object size:0x8 scope:global align:4
+grd_s_r1_4_evw_anime = .data:0x0073F898; // type:object size:0x8 scope:global align:4
+grd_s_r1_4_v = .data:0x0073F8A0; // type:object size:0xAE0 scope:global align:8
+grd_s_r1_4_modelT = .data:0x00740380; // type:object size:0x88 scope:global align:8
+grd_s_r1_4_model = .data:0x00740408; // type:object size:0x1A0 scope:global align:8
+grd_s_r1_b_1_evw_anime_1 = .data:0x007405A8; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_1_evw_anime = .data:0x007405B0; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_1_v = .data:0x007405B8; // type:object size:0xD60 scope:global align:8
+grd_s_r1_b_1_modelT = .data:0x00741318; // type:object size:0x88 scope:global align:8
+grd_s_r1_b_1_model = .data:0x007413A0; // type:object size:0x240 scope:global align:8
+grd_s_r1_b_2_evw_anime_1 = .data:0x007415E0; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_2_evw_anime = .data:0x007415E8; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_2_v = .data:0x007415F0; // type:object size:0x1110 scope:global align:8
+grd_s_r1_b_2_modelT = .data:0x00742700; // type:object size:0x80 scope:global align:8
+grd_s_r1_b_2_model = .data:0x00742780; // type:object size:0x2A0 scope:global align:8
+grd_s_r1_b_3_evw_anime_1 = .data:0x00742A20; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_3_evw_anime = .data:0x00742A28; // type:object size:0x8 scope:global align:4
+grd_s_r1_b_3_v = .data:0x00742A30; // type:object size:0xFC0 scope:global align:8
+grd_s_r1_b_3_modelT = .data:0x007439F0; // type:object size:0x90 scope:global align:8
+grd_s_r1_b_3_model = .data:0x00743A80; // type:object size:0x290 scope:global align:8
+grd_s_r1_p_1_evw_anime_1 = .data:0x00743D10; // type:object size:0x8 scope:global align:4
+grd_s_r1_p_1_evw_anime = .data:0x00743D18; // type:object size:0x8 scope:global align:4
+grd_s_r1_p_1_v = .data:0x00743D20; // type:object size:0xFB0 scope:global align:8
+grd_s_r1_p_1_modelT = .data:0x00744CD0; // type:object size:0x98 scope:global align:8
+grd_s_r1_p_1_model = .data:0x00744D68; // type:object size:0x248 scope:global align:8
+grd_s_r2_1_evw_anime_1 = .data:0x00744FB0; // type:object size:0x8 scope:global align:4
+grd_s_r2_1_evw_anime = .data:0x00744FB8; // type:object size:0x8 scope:global align:4
+grd_s_r2_1_v = .data:0x00744FC0; // type:object size:0xB80 scope:global align:8
+grd_s_r2_1_modelT = .data:0x00745B40; // type:object size:0x88 scope:global align:8
+grd_s_r2_1_model = .data:0x00745BC8; // type:object size:0x210 scope:global align:8
+grd_s_r2_2_evw_anime_1 = .data:0x00745DD8; // type:object size:0x8 scope:global align:4
+grd_s_r2_2_evw_anime = .data:0x00745DE0; // type:object size:0x8 scope:global align:4
+grd_s_r2_2_v = .data:0x00745DE8; // type:object size:0xC30 scope:global align:8
+grd_s_r2_2_modelT = .data:0x00746A18; // type:object size:0x80 scope:global align:8
+grd_s_r2_2_model = .data:0x00746A98; // type:object size:0x1A0 scope:global align:8
+grd_s_r2_3_evw_anime_1 = .data:0x00746C38; // type:object size:0x8 scope:global align:4
+grd_s_r2_3_evw_anime = .data:0x00746C40; // type:object size:0x8 scope:global align:4
+grd_s_r2_3_v = .data:0x00746C48; // type:object size:0xDA0 scope:global align:8
+grd_s_r2_3_modelT = .data:0x007479E8; // type:object size:0x88 scope:global align:8
+grd_s_r2_3_model = .data:0x00747A70; // type:object size:0x238 scope:global align:8
+grd_s_r2_4_evw_anime_1 = .data:0x00747CA8; // type:object size:0x8 scope:global align:4
+grd_s_r2_4_evw_anime = .data:0x00747CB0; // type:object size:0x8 scope:global align:4
+grd_s_r2_4_v = .data:0x00747CB8; // type:object size:0xD50 scope:global align:8
+grd_s_r2_4_modelT = .data:0x00748A08; // type:object size:0x88 scope:global align:8
+grd_s_r2_4_model = .data:0x00748A90; // type:object size:0x230 scope:global align:8
+grd_s_r2_b_1_evw_anime_1 = .data:0x00748CC0; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_1_evw_anime = .data:0x00748CC8; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_1_v = .data:0x00748CD0; // type:object size:0x12C0 scope:global align:8
+grd_s_r2_b_1_modelT = .data:0x00749F90; // type:object size:0xA8 scope:global align:8
+grd_s_r2_b_1_model = .data:0x0074A038; // type:object size:0x2C8 scope:global align:8
+grd_s_r2_b_2_evw_anime_1 = .data:0x0074A300; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_2_evw_anime = .data:0x0074A308; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_2_v = .data:0x0074A310; // type:object size:0x1040 scope:global align:8
+grd_s_r2_b_2_modelT = .data:0x0074B350; // type:object size:0x80 scope:global align:8
+grd_s_r2_b_2_model = .data:0x0074B3D0; // type:object size:0x298 scope:global align:8
+grd_s_r2_b_3_evw_anime_1 = .data:0x0074B668; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_3_evw_anime = .data:0x0074B670; // type:object size:0x8 scope:global align:4
+grd_s_r2_b_3_v = .data:0x0074B678; // type:object size:0x11B0 scope:global align:8
+grd_s_r2_b_3_modelT = .data:0x0074C828; // type:object size:0x90 scope:global align:8
+grd_s_r2_b_3_model = .data:0x0074C8B8; // type:object size:0x2A8 scope:global align:8
+grd_s_r2_p_1_evw_anime_1 = .data:0x0074CB60; // type:object size:0x8 scope:global align:4
+grd_s_r2_p_1_evw_anime = .data:0x0074CB68; // type:object size:0x8 scope:global align:4
+grd_s_r2_p_1_v = .data:0x0074CB70; // type:object size:0x1540 scope:global align:8
+grd_s_r2_p_1_modelT = .data:0x0074E0B0; // type:object size:0x88 scope:global align:8
+grd_s_r2_p_1_model = .data:0x0074E138; // type:object size:0x298 scope:global align:8
+grd_s_r3_1_evw_anime_1 = .data:0x0074E3D0; // type:object size:0x8 scope:global align:4
+grd_s_r3_1_evw_anime = .data:0x0074E3D8; // type:object size:0x8 scope:global align:4
+grd_s_r3_1_v = .data:0x0074E3E0; // type:object size:0xDE0 scope:global align:8
+grd_s_r3_1_modelT = .data:0x0074F1C0; // type:object size:0x88 scope:global align:8
+grd_s_r3_1_model = .data:0x0074F248; // type:object size:0x230 scope:global align:8
+grd_s_r3_2_evw_anime_1 = .data:0x0074F478; // type:object size:0x8 scope:global align:4
+grd_s_r3_2_evw_anime = .data:0x0074F480; // type:object size:0x8 scope:global align:4
+grd_s_r3_2_v = .data:0x0074F488; // type:object size:0xC70 scope:global align:8
+grd_s_r3_2_modelT = .data:0x007500F8; // type:object size:0x80 scope:global align:8
+grd_s_r3_2_model = .data:0x00750178; // type:object size:0x200 scope:global align:8
+grd_s_r3_3_evw_anime_1 = .data:0x00750378; // type:object size:0x8 scope:global align:4
+grd_s_r3_3_evw_anime = .data:0x00750380; // type:object size:0x8 scope:global align:4
+grd_s_r3_3_v = .data:0x00750388; // type:object size:0xC90 scope:global align:8
+grd_s_r3_3_modelT = .data:0x00751018; // type:object size:0x80 scope:global align:8
+grd_s_r3_3_model = .data:0x00751098; // type:object size:0x228 scope:global align:8
+grd_s_r3_4_evw_anime_1 = .data:0x007512C0; // type:object size:0x8 scope:global align:4
+grd_s_r3_4_evw_anime = .data:0x007512C8; // type:object size:0x8 scope:global align:4
+grd_s_r3_4_v = .data:0x007512D0; // type:object size:0xBD0 scope:global align:8
+grd_s_r3_4_modelT = .data:0x00751EA0; // type:object size:0x88 scope:global align:8
+grd_s_r3_4_model = .data:0x00751F28; // type:object size:0x1F8 scope:global align:8
+grd_s_r3_b_1_evw_anime_1 = .data:0x00752120; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_1_evw_anime = .data:0x00752128; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_1_v = .data:0x00752130; // type:object size:0xEF0 scope:global align:8
+grd_s_r3_b_1_modelT = .data:0x00753020; // type:object size:0x90 scope:global align:8
+grd_s_r3_b_1_model = .data:0x007530B0; // type:object size:0x268 scope:global align:8
+grd_s_r3_b_2_evw_anime_1 = .data:0x00753318; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_2_evw_anime = .data:0x00753320; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_2_v = .data:0x00753328; // type:object size:0x11D0 scope:global align:8
+grd_s_r3_b_2_modelT = .data:0x007544F8; // type:object size:0x90 scope:global align:8
+grd_s_r3_b_2_model = .data:0x00754588; // type:object size:0x2B8 scope:global align:8
+grd_s_r3_b_3_evw_anime_1 = .data:0x00754840; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_3_evw_anime = .data:0x00754848; // type:object size:0x8 scope:global align:4
+grd_s_r3_b_3_v = .data:0x00754850; // type:object size:0x1100 scope:global align:8
+grd_s_r3_b_3_modelT = .data:0x00755950; // type:object size:0x90 scope:global align:8
+grd_s_r3_b_3_model = .data:0x007559E0; // type:object size:0x290 scope:global align:8
+grd_s_r3_p_1_evw_anime_1 = .data:0x00755C70; // type:object size:0x8 scope:global align:4
+grd_s_r3_p_1_evw_anime = .data:0x00755C78; // type:object size:0x8 scope:global align:4
+grd_s_r3_p_1_v = .data:0x00755C80; // type:object size:0x1370 scope:global align:8
+grd_s_r3_p_1_modelT = .data:0x00756FF0; // type:object size:0x90 scope:global align:8
+grd_s_r3_p_1_model = .data:0x00757080; // type:object size:0x2A0 scope:global align:8
+grd_s_r4_1_evw_anime_1 = .data:0x00757320; // type:object size:0x8 scope:global align:4
+grd_s_r4_1_evw_anime = .data:0x00757328; // type:object size:0x8 scope:global align:4
+grd_s_r4_1_v = .data:0x00757330; // type:object size:0xCA0 scope:global align:8
+grd_s_r4_1_modelT = .data:0x00757FD0; // type:object size:0x80 scope:global align:8
+grd_s_r4_1_model = .data:0x00758050; // type:object size:0x208 scope:global align:8
+grd_s_r4_2_evw_anime_1 = .data:0x00758258; // type:object size:0x8 scope:global align:4
+grd_s_r4_2_evw_anime = .data:0x00758260; // type:object size:0x8 scope:global align:4
+grd_s_r4_2_v = .data:0x00758268; // type:object size:0xD10 scope:global align:8
+grd_s_r4_2_modelT = .data:0x00758F78; // type:object size:0x88 scope:global align:8
+grd_s_r4_2_model = .data:0x00759000; // type:object size:0x1D0 scope:global align:8
+grd_s_r4_3_evw_anime_1 = .data:0x007591D0; // type:object size:0x8 scope:global align:4
+grd_s_r4_3_evw_anime = .data:0x007591D8; // type:object size:0x8 scope:global align:4
+grd_s_r4_3_v = .data:0x007591E0; // type:object size:0xB90 scope:global align:8
+grd_s_r4_3_modelT = .data:0x00759D70; // type:object size:0x88 scope:global align:8
+grd_s_r4_3_model = .data:0x00759DF8; // type:object size:0x200 scope:global align:8
+grd_s_r4_b_1_evw_anime_1 = .data:0x00759FF8; // type:object size:0x8 scope:global align:4
+grd_s_r4_b_1_evw_anime = .data:0x0075A000; // type:object size:0x8 scope:global align:4
+grd_s_r4_b_1_v = .data:0x0075A008; // type:object size:0xA70 scope:global align:8
+grd_s_r4_b_1_modelT = .data:0x0075AA78; // type:object size:0x88 scope:global align:8
+grd_s_r4_b_1_model = .data:0x0075AB00; // type:object size:0x1F8 scope:global align:8
+grd_s_r4_b_2_evw_anime_1 = .data:0x0075ACF8; // type:object size:0x8 scope:global align:4
+grd_s_r4_b_2_evw_anime = .data:0x0075AD00; // type:object size:0x8 scope:global align:4
+grd_s_r4_b_2_v = .data:0x0075AD08; // type:object size:0xEE0 scope:global align:8
+grd_s_r4_b_2_modelT = .data:0x0075BBE8; // type:object size:0x80 scope:global align:8
+grd_s_r4_b_2_model = .data:0x0075BC68; // type:object size:0x270 scope:global align:8
+grd_s_r4_p_1_evw_anime_1 = .data:0x0075BED8; // type:object size:0x8 scope:global align:4
+grd_s_r4_p_1_evw_anime = .data:0x0075BEE0; // type:object size:0x8 scope:global align:4
+grd_s_r4_p_1_v = .data:0x0075BEE8; // type:object size:0x11C0 scope:global align:8
+grd_s_r4_p_1_modelT = .data:0x0075D0A8; // type:object size:0x98 scope:global align:8
+grd_s_r4_p_1_model = .data:0x0075D140; // type:object size:0x2E8 scope:global align:8
+grd_s_r5_1_evw_anime_1 = .data:0x0075D428; // type:object size:0x8 scope:global align:4
+grd_s_r5_1_evw_anime = .data:0x0075D430; // type:object size:0x8 scope:global align:4
+grd_s_r5_1_v = .data:0x0075D438; // type:object size:0xD40 scope:global align:8
+grd_s_r5_1_modelT = .data:0x0075E178; // type:object size:0x98 scope:global align:8
+grd_s_r5_1_model = .data:0x0075E210; // type:object size:0x210 scope:global align:8
+grd_s_r5_2_evw_anime_1 = .data:0x0075E420; // type:object size:0x8 scope:global align:4
+grd_s_r5_2_evw_anime = .data:0x0075E428; // type:object size:0x8 scope:global align:4
+grd_s_r5_2_v = .data:0x0075E430; // type:object size:0xE40 scope:global align:8
+grd_s_r5_2_modelT = .data:0x0075F270; // type:object size:0x90 scope:global align:8
+grd_s_r5_2_model = .data:0x0075F300; // type:object size:0x210 scope:global align:8
+grd_s_r5_3_evw_anime_1 = .data:0x0075F510; // type:object size:0x8 scope:global align:4
+grd_s_r5_3_evw_anime = .data:0x0075F518; // type:object size:0x8 scope:global align:4
+grd_s_r5_3_v = .data:0x0075F520; // type:object size:0xE00 scope:global align:8
+grd_s_r5_3_modelT = .data:0x00760320; // type:object size:0x88 scope:global align:8
+grd_s_r5_3_model = .data:0x007603A8; // type:object size:0x220 scope:global align:8
+grd_s_r5_b_1_evw_anime_1 = .data:0x007605C8; // type:object size:0x8 scope:global align:4
+grd_s_r5_b_1_evw_anime = .data:0x007605D0; // type:object size:0x8 scope:global align:4
+grd_s_r5_b_1_v = .data:0x007605D8; // type:object size:0xFE0 scope:global align:8
+grd_s_r5_b_1_modelT = .data:0x007615B8; // type:object size:0xA0 scope:global align:8
+grd_s_r5_b_1_model = .data:0x00761658; // type:object size:0x240 scope:global align:8
+grd_s_r5_b_2_evw_anime_1 = .data:0x00761898; // type:object size:0x8 scope:global align:4
+grd_s_r5_b_2_evw_anime = .data:0x007618A0; // type:object size:0x8 scope:global align:4
+grd_s_r5_b_2_v = .data:0x007618A8; // type:object size:0xFF0 scope:global align:8
+grd_s_r5_b_2_modelT = .data:0x00762898; // type:object size:0x80 scope:global align:8
+grd_s_r5_b_2_model = .data:0x00762918; // type:object size:0x288 scope:global align:8
+grd_s_r5_p_1_evw_anime_1 = .data:0x00762BA0; // type:object size:0x8 scope:global align:4
+grd_s_r5_p_1_evw_anime = .data:0x00762BA8; // type:object size:0x8 scope:global align:4
+grd_s_r5_p_1_v = .data:0x00762BB0; // type:object size:0x1160 scope:global align:8
+grd_s_r5_p_1_modelT = .data:0x00763D10; // type:object size:0xA0 scope:global align:8
+grd_s_r5_p_1_model = .data:0x00763DB0; // type:object size:0x280 scope:global align:8
+grd_s_r6_1_evw_anime_1 = .data:0x00764030; // type:object size:0x8 scope:global align:4
+grd_s_r6_1_evw_anime = .data:0x00764038; // type:object size:0x8 scope:global align:4
+grd_s_r6_1_v = .data:0x00764040; // type:object size:0xAD0 scope:global align:8
+grd_s_r6_1_modelT = .data:0x00764B10; // type:object size:0x78 scope:global align:8
+grd_s_r6_1_model = .data:0x00764B88; // type:object size:0x1D0 scope:global align:8
+grd_s_r6_2_evw_anime_1 = .data:0x00764D58; // type:object size:0x8 scope:global align:4
+grd_s_r6_2_evw_anime = .data:0x00764D60; // type:object size:0x8 scope:global align:4
+grd_s_r6_2_v = .data:0x00764D68; // type:object size:0xB50 scope:global align:8
+grd_s_r6_2_modelT = .data:0x007658B8; // type:object size:0x80 scope:global align:8
+grd_s_r6_2_model = .data:0x00765938; // type:object size:0x1B0 scope:global align:8
+grd_s_r6_3_evw_anime_1 = .data:0x00765AE8; // type:object size:0x8 scope:global align:4
+grd_s_r6_3_evw_anime = .data:0x00765AF0; // type:object size:0x8 scope:global align:4
+grd_s_r6_3_v = .data:0x00765AF8; // type:object size:0xB10 scope:global align:8
+grd_s_r6_3_modelT = .data:0x00766608; // type:object size:0x80 scope:global align:8
+grd_s_r6_3_model = .data:0x00766688; // type:object size:0x1D8 scope:global align:8
+grd_s_r6_b_1_evw_anime_1 = .data:0x00766860; // type:object size:0x8 scope:global align:4
+grd_s_r6_b_1_evw_anime = .data:0x00766868; // type:object size:0x8 scope:global align:4
+grd_s_r6_b_1_v = .data:0x00766870; // type:object size:0xBC0 scope:global align:8
+grd_s_r6_b_1_modelT = .data:0x00767430; // type:object size:0x88 scope:global align:8
+grd_s_r6_b_1_model = .data:0x007674B8; // type:object size:0x220 scope:global align:8
+grd_s_r6_b_2_evw_anime_1 = .data:0x007676D8; // type:object size:0x8 scope:global align:4
+grd_s_r6_b_2_evw_anime = .data:0x007676E0; // type:object size:0x8 scope:global align:4
+grd_s_r6_b_2_v = .data:0x007676E8; // type:object size:0x1230 scope:global align:8
+grd_s_r6_b_2_modelT = .data:0x00768918; // type:object size:0xA0 scope:global align:8
+grd_s_r6_b_2_model = .data:0x007689B8; // type:object size:0x270 scope:global align:8
+grd_s_r6_p_1_evw_anime_1 = .data:0x00768C28; // type:object size:0x8 scope:global align:4
+grd_s_r6_p_1_evw_anime = .data:0x00768C30; // type:object size:0x8 scope:global align:4
+grd_s_r6_p_1_v = .data:0x00768C38; // type:object size:0x12F0 scope:global align:8
+grd_s_r6_p_1_modelT = .data:0x00769F28; // type:object size:0xA0 scope:global align:8
+grd_s_r6_p_1_model = .data:0x00769FC8; // type:object size:0x2E0 scope:global align:8
+grd_s_r7_1_evw_anime_1 = .data:0x0076A2A8; // type:object size:0x8 scope:global align:4
+grd_s_r7_1_evw_anime = .data:0x0076A2B0; // type:object size:0x8 scope:global align:4
+grd_s_r7_1_v = .data:0x0076A2B8; // type:object size:0xC50 scope:global align:8
+grd_s_r7_1_modelT = .data:0x0076AF08; // type:object size:0x88 scope:global align:8
+grd_s_r7_1_model = .data:0x0076AF90; // type:object size:0x210 scope:global align:8
+grd_s_r7_2_evw_anime_1 = .data:0x0076B1A0; // type:object size:0x8 scope:global align:4
+grd_s_r7_2_evw_anime = .data:0x0076B1A8; // type:object size:0x8 scope:global align:4
+grd_s_r7_2_v = .data:0x0076B1B0; // type:object size:0xBB0 scope:global align:8
+grd_s_r7_2_modelT = .data:0x0076BD60; // type:object size:0x90 scope:global align:8
+grd_s_r7_2_model = .data:0x0076BDF0; // type:object size:0x1C0 scope:global align:8
+grd_s_r7_3_evw_anime_1 = .data:0x0076BFB0; // type:object size:0x8 scope:global align:4
+grd_s_r7_3_evw_anime = .data:0x0076BFB8; // type:object size:0x8 scope:global align:4
+grd_s_r7_3_v = .data:0x0076BFC0; // type:object size:0xB60 scope:global align:8
+grd_s_r7_3_modelT = .data:0x0076CB20; // type:object size:0x88 scope:global align:8
+grd_s_r7_3_model = .data:0x0076CBA8; // type:object size:0x1B0 scope:global align:8
+grd_s_r7_b_1_evw_anime_1 = .data:0x0076CD58; // type:object size:0x8 scope:global align:4
+grd_s_r7_b_1_evw_anime = .data:0x0076CD60; // type:object size:0x8 scope:global align:4
+grd_s_r7_b_1_v = .data:0x0076CD68; // type:object size:0xCF0 scope:global align:8
+grd_s_r7_b_1_modelT = .data:0x0076DA58; // type:object size:0x90 scope:global align:8
+grd_s_r7_b_1_model = .data:0x0076DAE8; // type:object size:0x230 scope:global align:8
+grd_s_r7_b_2_evw_anime_1 = .data:0x0076DD18; // type:object size:0x8 scope:global align:4
+grd_s_r7_b_2_evw_anime = .data:0x0076DD20; // type:object size:0x8 scope:global align:4
+grd_s_r7_b_2_v = .data:0x0076DD28; // type:object size:0x1250 scope:global align:8
+grd_s_r7_b_2_modelT = .data:0x0076EF78; // type:object size:0x90 scope:global align:8
+grd_s_r7_b_2_model = .data:0x0076F008; // type:object size:0x2B8 scope:global align:8
+grd_s_r7_p_1_evw_anime_1 = .data:0x0076F2C0; // type:object size:0x8 scope:global align:4
+grd_s_r7_p_1_evw_anime = .data:0x0076F2C8; // type:object size:0x8 scope:global align:4
+grd_s_r7_p_1_v = .data:0x0076F2D0; // type:object size:0x1110 scope:global align:8
+grd_s_r7_p_1_modelT = .data:0x007703E0; // type:object size:0x90 scope:global align:8
+grd_s_r7_p_1_model = .data:0x00770470; // type:object size:0x278 scope:global align:8
+grd_s_t_1_evw_anime_1 = .data:0x007706E8; // type:object size:0x8 scope:global align:4
+grd_s_t_1_evw_anime = .data:0x007706F0; // type:object size:0x8 scope:global align:4
+grd_s_t_1_v = .data:0x007706F8; // type:object size:0xA20 scope:global align:8
+grd_s_t_1_modelT = .data:0x00771118; // type:object size:0x70 scope:global align:8
+grd_s_t_1_model = .data:0x00771188; // type:object size:0x1D0 scope:global align:8
+grd_s_t_10_v = .data:0x00771358; // type:object size:0xE30 scope:global align:8
+grd_s_t_10_modelT = .data:0x00772188; // type:object size:0x8 scope:global align:8
+grd_s_t_10_model = .data:0x00772190; // type:object size:0x268 scope:global align:8
+grd_s_t_2_v = .data:0x007723F8; // type:object size:0xCF0 scope:global align:8
+grd_s_t_2_modelT = .data:0x007730E8; // type:object size:0x8 scope:global align:8
+grd_s_t_2_model = .data:0x007730F0; // type:object size:0x218 scope:global align:8
+grd_s_t_3_v = .data:0x00773308; // type:object size:0x980 scope:global align:8
+grd_s_t_3_modelT = .data:0x00773C88; // type:object size:0x8 scope:global align:8
+grd_s_t_3_model = .data:0x00773C90; // type:object size:0x1D8 scope:global align:8
+grd_s_t_4_evw_anime_1 = .data:0x00773E68; // type:object size:0x8 scope:global align:4
+grd_s_t_4_evw_anime = .data:0x00773E70; // type:object size:0x8 scope:global align:4
+grd_s_t_4_v = .data:0x00773E78; // type:object size:0xEA0 scope:global align:8
+grd_s_t_4_modelT = .data:0x00774D18; // type:object size:0x70 scope:global align:8
+grd_s_t_4_model = .data:0x00774D88; // type:object size:0x268 scope:global align:8
+grd_s_t_5_evw_anime_1 = .data:0x00774FF0; // type:object size:0x8 scope:global align:4
+grd_s_t_5_evw_anime = .data:0x00774FF8; // type:object size:0x8 scope:global align:4
+grd_s_t_5_v = .data:0x00775000; // type:object size:0xF80 scope:global align:8
+grd_s_t_5_modelT = .data:0x00775F80; // type:object size:0x70 scope:global align:8
+grd_s_t_5_model = .data:0x00775FF0; // type:object size:0x280 scope:global align:8
+grd_s_t_6_v = .data:0x00776270; // type:object size:0x1160 scope:global align:8
+grd_s_t_6_modelT = .data:0x007773D0; // type:object size:0x8 scope:global align:8
+grd_s_t_6_model = .data:0x007773D8; // type:object size:0x2A0 scope:global align:8
+grd_s_t_7_v = .data:0x00777678; // type:object size:0x1150 scope:global align:8
+grd_s_t_7_modelT = .data:0x007787C8; // type:object size:0x8 scope:global align:8
+grd_s_t_7_model = .data:0x007787D0; // type:object size:0x278 scope:global align:8
+grd_s_t_8_v = .data:0x00778A48; // type:object size:0xC40 scope:global align:8
+grd_s_t_8_modelT = .data:0x00779688; // type:object size:0x8 scope:global align:8
+grd_s_t_8_model = .data:0x00779690; // type:object size:0x218 scope:global align:8
+grd_s_t_9_v = .data:0x007798A8; // type:object size:0xCC0 scope:global align:8
+grd_s_t_9_modelT = .data:0x0077A568; // type:object size:0x8 scope:global align:8
+grd_s_t_9_model = .data:0x0077A570; // type:object size:0x218 scope:global align:8
+grd_s_t_po_1_v = .data:0x0077A788; // type:object size:0xA80 scope:global align:8
+grd_s_t_po_1_modelT = .data:0x0077B208; // type:object size:0x8 scope:global align:8
+grd_s_t_po_1_model = .data:0x0077B210; // type:object size:0x208 scope:global align:8
+grd_s_t_po_2_v = .data:0x0077B418; // type:object size:0xA30 scope:global align:8
+grd_s_t_po_2_modelT = .data:0x0077BE48; // type:object size:0x8 scope:global align:8
+grd_s_t_po_2_model = .data:0x0077BE50; // type:object size:0x218 scope:global align:8
+grd_s_t_po_3_evw_anime_1 = .data:0x0077C068; // type:object size:0x8 scope:global align:4
+grd_s_t_po_3_evw_anime = .data:0x0077C070; // type:object size:0x8 scope:global align:4
+grd_s_t_po_3_v = .data:0x0077C078; // type:object size:0xE60 scope:global align:8
+grd_s_t_po_3_modelT = .data:0x0077CED8; // type:object size:0x78 scope:global align:8
+grd_s_t_po_3_model = .data:0x0077CF50; // type:object size:0x280 scope:global align:8
+grd_s_t_r1_1_evw_anime_1 = .data:0x0077D1D0; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_1_evw_anime = .data:0x0077D1D8; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_1_v = .data:0x0077D1E0; // type:object size:0xEF0 scope:global align:8
+grd_s_t_r1_1_modelT = .data:0x0077E0D0; // type:object size:0x80 scope:global align:8
+grd_s_t_r1_1_model = .data:0x0077E150; // type:object size:0x288 scope:global align:8
+grd_s_t_r1_2_evw_anime_1 = .data:0x0077E3D8; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_2_evw_anime = .data:0x0077E3E0; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_2_v = .data:0x0077E3E8; // type:object size:0x1130 scope:global align:8
+grd_s_t_r1_2_modelT = .data:0x0077F518; // type:object size:0x80 scope:global align:8
+grd_s_t_r1_2_model = .data:0x0077F598; // type:object size:0x2D0 scope:global align:8
+grd_s_t_r1_3_evw_anime_1 = .data:0x0077F868; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_3_evw_anime = .data:0x0077F870; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_3_v = .data:0x0077F878; // type:object size:0x1150 scope:global align:8
+grd_s_t_r1_3_modelT = .data:0x007809C8; // type:object size:0x90 scope:global align:8
+grd_s_t_r1_3_model = .data:0x00780A58; // type:object size:0x2C8 scope:global align:8
+grd_s_t_r1_4_evw_anime_1 = .data:0x00780D20; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_4_evw_anime = .data:0x00780D28; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_4_v = .data:0x00780D30; // type:object size:0x1010 scope:global align:8
+grd_s_t_r1_4_modelT = .data:0x00781D40; // type:object size:0x88 scope:global align:8
+grd_s_t_r1_4_model = .data:0x00781DC8; // type:object size:0x2B0 scope:global align:8
+grd_s_t_r1_5_evw_anime_1 = .data:0x00782078; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_5_evw_anime = .data:0x00782080; // type:object size:0x8 scope:global align:4
+grd_s_t_r1_5_v = .data:0x00782088; // type:object size:0x1160 scope:global align:8
+grd_s_t_r1_5_modelT = .data:0x007831E8; // type:object size:0x88 scope:global align:8
+grd_s_t_r1_5_model = .data:0x00783270; // type:object size:0x2C8 scope:global align:8
+grd_s_t_sh_1_v = .data:0x00783538; // type:object size:0xA20 scope:global align:8
+grd_s_t_sh_1_modelT = .data:0x00783F58; // type:object size:0x8 scope:global align:8
+grd_s_t_sh_1_model = .data:0x00783F60; // type:object size:0x208 scope:global align:8
+grd_s_t_sh_2_evw_anime_1 = .data:0x00784168; // type:object size:0x8 scope:global align:4
+grd_s_t_sh_2_evw_anime = .data:0x00784170; // type:object size:0x8 scope:global align:4
+grd_s_t_sh_2_v = .data:0x00784178; // type:object size:0xCC0 scope:global align:8
+grd_s_t_sh_2_modelT = .data:0x00784E38; // type:object size:0x78 scope:global align:8
+grd_s_t_sh_2_model = .data:0x00784EB0; // type:object size:0x260 scope:global align:8
+grd_s_t_sh_3_v = .data:0x00785110; // type:object size:0xA60 scope:global align:8
+grd_s_t_sh_3_modelT = .data:0x00785B70; // type:object size:0x8 scope:global align:8
+grd_s_t_sh_3_model = .data:0x00785B78; // type:object size:0x1F8 scope:global align:8
+grd_s_t_st1_1_v = .data:0x00785D70; // type:object size:0xC30 scope:global align:8
+grd_s_t_st1_1_modelT = .data:0x007869A0; // type:object size:0x8 scope:global align:8
+grd_s_t_st1_1_model = .data:0x007869A8; // type:object size:0x248 scope:global align:8
+grd_s_t_st1_2_v = .data:0x00786BF0; // type:object size:0xF00 scope:global align:8
+grd_s_t_st1_2_modelT = .data:0x00787AF0; // type:object size:0x8 scope:global align:8
+grd_s_t_st1_2_model = .data:0x00787AF8; // type:object size:0x288 scope:global align:8
+grd_s_t_st1_3_v = .data:0x00787D80; // type:object size:0xCB0 scope:global align:8
+grd_s_t_st1_3_modelT = .data:0x00788A30; // type:object size:0x8 scope:global align:8
+grd_s_t_st1_3_model = .data:0x00788A38; // type:object size:0x258 scope:global align:8
+cKF_ckcb_r_int_hnw001_tbl = .data:0x00788CA0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw001_tbl = .data:0x00788CA8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw001_tbl = .data:0x00788CC8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw001_tbl = .data:0x00788CDC; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw001 = .data:0x00788DB4; // type:object size:0x14 scope:global align:4
+int_hnw001_pal = .data:0x00788DE0; // type:object size:0x20 scope:global align:32
+int_hnw001_arm_tex_txt = .data:0x00788E00; // type:object size:0x100 scope:global align:32
+int_hnw001_armtop_tex_txt = .data:0x00788F00; // type:object size:0x80 scope:global align:32 data:string
+int_hnw001_c_front_tex_txt = .data:0x00788F80; // type:object size:0x300 scope:global align:32
+int_hnw001_c_back_tex_txt = .data:0x00789280; // type:object size:0x180 scope:global align:32
+int_hnw001_b_back_tex_txt = .data:0x00789400; // type:object size:0x80 scope:global align:32
+int_hnw001_b_front_tex_txt = .data:0x00789480; // type:object size:0x100 scope:global align:32
+int_hnw001_v = .data:0x00789580; // type:object size:0x470 scope:global align:8
+int_hnw001_chest_model = .data:0x007899F0; // type:object size:0xD0 scope:global align:8
+int_hnw001_armR_model = .data:0x00789AC0; // type:object size:0x80 scope:global align:8
+int_hnw001_armL_model = .data:0x00789B40; // type:object size:0x80 scope:global align:8
+int_hnw001_base_model = .data:0x00789BC0; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw001_tbl = .data:0x00789C38; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw001 = .data:0x00789C8C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw002_tbl = .data:0x00789CA0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw002_tbl = .data:0x00789CA8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw002_tbl = .data:0x00789CC8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw002_tbl = .data:0x00789CDC; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw002 = .data:0x00789DC8; // type:object size:0x14 scope:global align:4
+int_hnw002_pal = .data:0x00789DE0; // type:object size:0x20 scope:global align:32
+int_hnw002_arm_tex_txt = .data:0x00789E00; // type:object size:0x100 scope:global align:32
+int_hnw002_armtop_tex_txt = .data:0x00789F00; // type:object size:0x80 scope:global align:32 data:string
+int_hnw002_c_front_tex_txt = .data:0x00789F80; // type:object size:0x300 scope:global align:32
+int_hnw002_c_back_tex_txt = .data:0x0078A280; // type:object size:0x180 scope:global align:32
+int_hnw002_b_back_tex_txt = .data:0x0078A400; // type:object size:0x80 scope:global align:32
+int_hnw002_b_front_tex_txt = .data:0x0078A480; // type:object size:0x100 scope:global align:32
+int_hnw002_v = .data:0x0078A580; // type:object size:0x470 scope:global align:8
+int_hnw002_chest_model = .data:0x0078A9F0; // type:object size:0xD0 scope:global align:8
+int_hnw002_armR_model = .data:0x0078AAC0; // type:object size:0x80 scope:global align:8
+int_hnw002_armL_model = .data:0x0078AB40; // type:object size:0x80 scope:global align:8
+int_hnw002_base_model = .data:0x0078ABC0; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw002_tbl = .data:0x0078AC38; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw002 = .data:0x0078AC8C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw003_tbl = .data:0x0078ACA0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw003_tbl = .data:0x0078ACA8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw003_tbl = .data:0x0078ACC8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw003_tbl = .data:0x0078ACDC; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw003 = .data:0x0078ADB4; // type:object size:0x14 scope:global align:4
+int_hnw003_pal = .data:0x0078ADE0; // type:object size:0x20 scope:global align:32
+int_hnw003_arm_tex_txt = .data:0x0078AE00; // type:object size:0x100 scope:global align:32
+int_hnw003_armtop_tex_txt = .data:0x0078AF00; // type:object size:0x80 scope:global align:32 data:string
+int_hnw003_c_front_tex_txt = .data:0x0078AF80; // type:object size:0x300 scope:global align:32
+int_hnw003_c_back_tex_txt = .data:0x0078B280; // type:object size:0x180 scope:global align:32
+int_hnw003_b_back_tex_txt = .data:0x0078B400; // type:object size:0x80 scope:global align:32
+int_hnw003_b_front_tex_txt = .data:0x0078B480; // type:object size:0x100 scope:global align:32
+int_hnw003_v = .data:0x0078B580; // type:object size:0x470 scope:global align:8
+int_hnw003_chest_model = .data:0x0078B9F0; // type:object size:0xD0 scope:global align:8
+int_hnw003_armR_model = .data:0x0078BAC0; // type:object size:0x80 scope:global align:8
+int_hnw003_armL_model = .data:0x0078BB40; // type:object size:0x80 scope:global align:8
+int_hnw003_base_model = .data:0x0078BBC0; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw003_tbl = .data:0x0078BC38; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw003 = .data:0x0078BC8C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw004_tbl = .data:0x0078BCA0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw004_tbl = .data:0x0078BCA8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw004_tbl = .data:0x0078BCC8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw004_tbl = .data:0x0078BCDC; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_hnw004 = .data:0x0078BDF8; // type:object size:0x14 scope:global align:4
+int_hnw004_pal = .data:0x0078BE20; // type:object size:0x20 scope:global align:32
+int_hnw004_c_front_tex_txt = .data:0x0078BE40; // type:object size:0x300 scope:global align:32
+int_hnw004_c_back_tex_txt = .data:0x0078C140; // type:object size:0x180 scope:global align:32
+int_hnw004_arm_tex_txt = .data:0x0078C2C0; // type:object size:0x100 scope:global align:32
+int_hnw004_armtop_tex_txt = .data:0x0078C3C0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw004_b_back_tex_txt = .data:0x0078C440; // type:object size:0x80 scope:global align:32
+int_hnw004_b_front_tex_txt = .data:0x0078C4C0; // type:object size:0x100 scope:global align:32
+int_hnw004_v = .data:0x0078C5C0; // type:object size:0x470 scope:global align:8
+int_hnw004_chest_model = .data:0x0078CA30; // type:object size:0xF0 scope:global align:8
+int_hnw004_armR_model = .data:0x0078CB20; // type:object size:0x80 scope:global align:8
+int_hnw004_armL_model = .data:0x0078CBA0; // type:object size:0x80 scope:global align:8
+int_hnw004_base_model = .data:0x0078CC20; // type:object size:0x88 scope:global align:8
+cKF_je_r_int_hnw004_tbl = .data:0x0078CCA8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw004 = .data:0x0078CCFC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw005_tbl = .data:0x0078CD20; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw005_tbl = .data:0x0078CD28; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw005_tbl = .data:0x0078CD48; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw005_tbl = .data:0x0078CD5C; // type:object size:0x18C scope:global align:4
+cKF_ba_r_int_hnw005 = .data:0x0078CEE8; // type:object size:0x14 scope:global align:4
+int_hnw005_pal = .data:0x0078CF00; // type:object size:0x20 scope:global align:32
+int_hnw005_arm_tex_txt = .data:0x0078CF20; // type:object size:0x100 scope:global align:32
+int_hnw005_armtop_tex_txt = .data:0x0078D020; // type:object size:0x80 scope:global align:32
+int_hnw005_c_front_tex_txt = .data:0x0078D0A0; // type:object size:0x300 scope:global align:32
+int_hnw005_c_back_tex_txt = .data:0x0078D3A0; // type:object size:0x180 scope:global align:32
+int_hnw005_b_back_tex_txt = .data:0x0078D520; // type:object size:0x80 scope:global align:32
+int_hnw005_b_front_tex_txt = .data:0x0078D5A0; // type:object size:0x100 scope:global align:32
+int_hnw005_v = .data:0x0078D6A0; // type:object size:0x470 scope:global align:8
+int_hnw005_chest_model = .data:0x0078DB10; // type:object size:0xD0 scope:global align:8
+int_hnw005_armR_model = .data:0x0078DBE0; // type:object size:0x80 scope:global align:8
+int_hnw005_armL_model = .data:0x0078DC60; // type:object size:0x80 scope:global align:8
+int_hnw005_base_model = .data:0x0078DCE0; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw005_tbl = .data:0x0078DD58; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw005 = .data:0x0078DDAC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw006_tbl = .data:0x0078DDC0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw006_tbl = .data:0x0078DDC8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw006_tbl = .data:0x0078DDE8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw006_tbl = .data:0x0078DDFC; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw006 = .data:0x0078DEF8; // type:object size:0x14 scope:global align:4
+int_hnw006_pal = .data:0x0078DF20; // type:object size:0x20 scope:global align:32
+int_hnw006_c_front_tex_txt = .data:0x0078DF40; // type:object size:0x300 scope:global align:32
+int_hnw006_c_back_tex_txt = .data:0x0078E240; // type:object size:0x180 scope:global align:32
+int_hnw006_arm_tex_txt = .data:0x0078E3C0; // type:object size:0x100 scope:global align:32
+int_hnw006_armtop_tex_txt = .data:0x0078E4C0; // type:object size:0x80 scope:global align:32
+int_hnw006_b_back_tex_txt = .data:0x0078E540; // type:object size:0x80 scope:global align:32
+int_hnw006_b_front_tex_txt = .data:0x0078E5C0; // type:object size:0x100 scope:global align:32
+int_hnw006_v = .data:0x0078E6C0; // type:object size:0x470 scope:global align:8
+int_hnw006_chest_model = .data:0x0078EB30; // type:object size:0xF0 scope:global align:8
+int_hnw006_armR_model = .data:0x0078EC20; // type:object size:0x80 scope:global align:8
+int_hnw006_armL_model = .data:0x0078ECA0; // type:object size:0x80 scope:global align:8
+int_hnw006_base_model = .data:0x0078ED20; // type:object size:0x88 scope:global align:8
+cKF_je_r_int_hnw006_tbl = .data:0x0078EDA8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw006 = .data:0x0078EDFC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw007_tbl = .data:0x0078EE20; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw007_tbl = .data:0x0078EE28; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw007_tbl = .data:0x0078EE48; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw007_tbl = .data:0x0078EE5C; // type:object size:0x198 scope:global align:4
+cKF_ba_r_int_hnw007 = .data:0x0078EFF4; // type:object size:0x14 scope:global align:4
+int_hnw007_pal = .data:0x0078F020; // type:object size:0x20 scope:global align:32
+int_hnw007_arm_tex_txt = .data:0x0078F040; // type:object size:0x100 scope:global align:32
+int_hnw007_armtop_tex_txt = .data:0x0078F140; // type:object size:0x80 scope:global align:32
+int_hnw007_c_front_tex_txt = .data:0x0078F1C0; // type:object size:0x300 scope:global align:32
+int_hnw007_c_back_tex_txt = .data:0x0078F4C0; // type:object size:0x180 scope:global align:32
+int_hnw007_b_back_tex_txt = .data:0x0078F640; // type:object size:0x80 scope:global align:32
+int_hnw007_b_front_tex_txt = .data:0x0078F6C0; // type:object size:0x100 scope:global align:32
+int_hnw007_v = .data:0x0078F7C0; // type:object size:0x470 scope:global align:8
+int_hnw007_chest_model = .data:0x0078FC30; // type:object size:0xD0 scope:global align:8
+int_hnw007_armR_model = .data:0x0078FD00; // type:object size:0x80 scope:global align:8
+int_hnw007_armL_model = .data:0x0078FD80; // type:object size:0x80 scope:global align:8
+int_hnw007_base_model = .data:0x0078FE00; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw007_tbl = .data:0x0078FE78; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw007 = .data:0x0078FECC; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw008_tbl = .data:0x0078FEE0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw008_tbl = .data:0x0078FEE8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw008_tbl = .data:0x0078FF08; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw008_tbl = .data:0x0078FF1C; // type:object size:0x19E scope:global align:4
+cKF_ba_r_int_hnw008 = .data:0x007900BC; // type:object size:0x14 scope:global align:4
+int_hnw008_pal = .data:0x007900E0; // type:object size:0x20 scope:global align:32
+int_hnw008_arm_tex_txt = .data:0x00790100; // type:object size:0x100 scope:global align:32
+int_hnw008_armtop_tex_txt = .data:0x00790200; // type:object size:0x80 scope:global align:32
+int_hnw008_c_front_tex_txt = .data:0x00790280; // type:object size:0x300 scope:global align:32
+int_hnw008_c_back_tex_txt = .data:0x00790580; // type:object size:0x180 scope:global align:32
+int_hnw008_b_back_tex_txt = .data:0x00790700; // type:object size:0x80 scope:global align:32
+int_hnw008_b_front_tex_txt = .data:0x00790780; // type:object size:0x100 scope:global align:32
+int_hnw008_v = .data:0x00790880; // type:object size:0x470 scope:global align:8
+int_hnw008_chest_model = .data:0x00790CF0; // type:object size:0xD0 scope:global align:8
+int_hnw008_armR_model = .data:0x00790DC0; // type:object size:0x80 scope:global align:8
+int_hnw008_armL_model = .data:0x00790E40; // type:object size:0x80 scope:global align:8
+int_hnw008_base_model = .data:0x00790EC0; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw008_tbl = .data:0x00790F38; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw008 = .data:0x00790F8C; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_int_hnw009_tbl = .data:0x00790FA0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw009_tbl = .data:0x00790FA8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw009_tbl = .data:0x00790FC8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw009_tbl = .data:0x00790FDC; // type:object size:0x138 scope:global align:4
+cKF_ba_r_int_hnw009 = .data:0x00791114; // type:object size:0x14 scope:global align:4
+int_hnw009_pal = .data:0x00791140; // type:object size:0x20 scope:global align:32
+int_hnw009_arm_tex_txt = .data:0x00791160; // type:object size:0x100 scope:global align:32
+int_hnw009_armtop_tex_txt = .data:0x00791260; // type:object size:0x80 scope:global align:32
+int_hnw009_c_front_tex_txt = .data:0x007912E0; // type:object size:0x300 scope:global align:32
+int_hnw009_c_back_tex_txt = .data:0x007915E0; // type:object size:0x180 scope:global align:32
+int_hnw009_b_back_tex_txt = .data:0x00791760; // type:object size:0x80 scope:global align:32
+int_hnw009_b_front_tex_txt = .data:0x007917E0; // type:object size:0x100 scope:global align:32
+int_hnw009_v = .data:0x007918E0; // type:object size:0x470 scope:global align:8
+int_hnw009_chest_model = .data:0x00791D50; // type:object size:0xD0 scope:global align:8
+int_hnw009_armR_model = .data:0x00791E20; // type:object size:0x80 scope:global align:8
+int_hnw009_armL_model = .data:0x00791EA0; // type:object size:0x80 scope:global align:8
+int_hnw009_base_model = .data:0x00791F20; // type:object size:0x78 scope:global align:8
+cKF_je_r_int_hnw009_tbl = .data:0x00791F98; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw009 = .data:0x00791FEC; // type:object size:0x8 scope:global align:4
+int_hnw010_pal = .data:0x00792000; // type:object size:0x20 scope:global align:32
+int_hnw010_arm_tex_txt = .data:0x00792020; // type:object size:0x100 scope:global align:32
+int_hnw010_armtop_tex_txt = .data:0x00792120; // type:object size:0x80 scope:global align:32
+int_hnw010_c_front_tex_txt = .data:0x007921A0; // type:object size:0x300 scope:global align:32
+int_hnw010_c_back_tex_txt = .data:0x007924A0; // type:object size:0x180 scope:global align:32
+int_hnw010_b_back_tex_txt = .data:0x00792620; // type:object size:0x80 scope:global align:32
+int_hnw010_b_front_tex_txt = .data:0x007926A0; // type:object size:0x100 scope:global align:32
+int_hnw010_v = .data:0x007927A0; // type:object size:0x470 scope:global align:8
+int_hnw010_chest_model = .data:0x00792C10; // type:object size:0xD0 scope:global align:8
+int_hnw010_armR_model = .data:0x00792CE0; // type:object size:0x80 scope:global align:8
+int_hnw010_armL_model = .data:0x00792D60; // type:object size:0x80 scope:global align:8
+int_hnw010_base_model = .data:0x00792DE0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw010_tbl = .data:0x00792E58; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw010_tbl = .data:0x00792E60; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw010_tbl = .data:0x00792E80; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw010_tbl = .data:0x00792E94; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_hnw010 = .data:0x00792FB0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw010_tbl = .data:0x00792FC4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw010 = .data:0x00793018; // type:object size:0x8 scope:global align:4
+int_hnw011_pal = .data:0x00793020; // type:object size:0x20 scope:global align:32
+int_hnw011_arm_tex_txt = .data:0x00793040; // type:object size:0x100 scope:global align:32
+int_hnw011_armtop_tex_txt = .data:0x00793140; // type:object size:0x80 scope:global align:32
+int_hnw011_c_front_tex_txt = .data:0x007931C0; // type:object size:0x300 scope:global align:32
+int_hnw011_c_back_tex_txt = .data:0x007934C0; // type:object size:0x180 scope:global align:32
+int_hnw011_b_back_tex_txt = .data:0x00793640; // type:object size:0x80 scope:global align:32
+int_hnw011_b_front_tex_txt = .data:0x007936C0; // type:object size:0x100 scope:global align:32
+int_hnw011_v = .data:0x007937C0; // type:object size:0x470 scope:global align:8
+int_hnw011_chest_model = .data:0x00793C30; // type:object size:0xD0 scope:global align:8
+int_hnw011_armR_model = .data:0x00793D00; // type:object size:0x80 scope:global align:8
+int_hnw011_armL_model = .data:0x00793D80; // type:object size:0x80 scope:global align:8
+int_hnw011_base_model = .data:0x00793E00; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw011_tbl = .data:0x00793E78; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw011_tbl = .data:0x00793E80; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw011_tbl = .data:0x00793EA0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw011_tbl = .data:0x00793EB4; // type:object size:0x180 scope:global align:4
+cKF_ba_r_int_hnw011 = .data:0x00794034; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw011_tbl = .data:0x00794048; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw011 = .data:0x0079409C; // type:object size:0x8 scope:global align:4
+int_hnw012_pal = .data:0x007940C0; // type:object size:0x20 scope:global align:32
+int_hnw012_arm_tex_txt = .data:0x007940E0; // type:object size:0x100 scope:global align:32
+int_hnw012_armtop_tex_txt = .data:0x007941E0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw012_c_front_tex_txt = .data:0x00794260; // type:object size:0x300 scope:global align:32
+int_hnw012_c_back_tex_txt = .data:0x00794560; // type:object size:0x180 scope:global align:32
+int_hnw012_antena_tex_txt = .data:0x007946E0; // type:object size:0x80 scope:global align:32
+int_hnw012_b_back_tex_txt = .data:0x00794760; // type:object size:0x80 scope:global align:32
+int_hnw012_b_front_tex_txt = .data:0x007947E0; // type:object size:0x100 scope:global align:32
+int_hnw012_v = .data:0x007948E0; // type:object size:0x4A0 scope:global align:8
+int_hnw012_chest_model = .data:0x00794D80; // type:object size:0xF8 scope:global align:8
+int_hnw012_armR_model = .data:0x00794E78; // type:object size:0x80 scope:global align:8
+int_hnw012_armL_model = .data:0x00794EF8; // type:object size:0x80 scope:global align:8
+int_hnw012_base_model = .data:0x00794F78; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw012_tbl = .data:0x00794FF0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw012_tbl = .data:0x00794FF8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw012_tbl = .data:0x00795018; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw012_tbl = .data:0x0079502C; // type:object size:0x114 scope:global align:4
+cKF_ba_r_int_hnw012 = .data:0x00795140; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw012_tbl = .data:0x00795154; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw012 = .data:0x007951A8; // type:object size:0x8 scope:global align:4
+int_hnw013_pal = .data:0x007951C0; // type:object size:0x20 scope:global align:32
+int_hnw013_arm_tex_txt = .data:0x007951E0; // type:object size:0x100 scope:global align:32
+int_hnw013_armtop_tex_txt = .data:0x007952E0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw013_c_front_tex_txt = .data:0x00795360; // type:object size:0x300 scope:global align:32
+int_hnw013_c_back_tex_txt = .data:0x00795660; // type:object size:0x180 scope:global align:32
+int_hnw013_antena_tex_txt = .data:0x007957E0; // type:object size:0x80 scope:global align:32
+int_hnw013_b_back_tex_txt = .data:0x00795860; // type:object size:0x80 scope:global align:32
+int_hnw013_b_front_tex_txt = .data:0x007958E0; // type:object size:0x100 scope:global align:32
+int_hnw013_v = .data:0x007959E0; // type:object size:0x4A0 scope:global align:8
+int_hnw013_chest_model = .data:0x00795E80; // type:object size:0xF8 scope:global align:8
+int_hnw013_armR_model = .data:0x00795F78; // type:object size:0x80 scope:global align:8
+int_hnw013_armL_model = .data:0x00795FF8; // type:object size:0x80 scope:global align:8
+int_hnw013_base_model = .data:0x00796078; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw013_tbl = .data:0x007960F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw013_tbl = .data:0x007960F8; // type:object size:0x1A scope:global align:4
+cKF_c_int_hnw013_tbl = .data:0x00796114; // type:object size:0x16 scope:global align:4
+cKF_ds_int_hnw013_tbl = .data:0x0079612C; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_hnw013 = .data:0x00796248; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw013_tbl = .data:0x0079625C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw013 = .data:0x007962B0; // type:object size:0x8 scope:global align:4
+int_hnw014_pal = .data:0x007962C0; // type:object size:0x20 scope:global align:32
+int_hnw014_arm_tex_txt = .data:0x007962E0; // type:object size:0x100 scope:global align:32
+int_hnw014_armtop_tex_txt = .data:0x007963E0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw014_c_front_tex_txt = .data:0x00796460; // type:object size:0x300 scope:global align:32
+int_hnw014_c_back_tex_txt = .data:0x00796760; // type:object size:0x180 scope:global align:32
+int_hnw014_antena_tex_txt = .data:0x007968E0; // type:object size:0x80 scope:global align:32
+int_hnw014_b_back_tex_txt = .data:0x00796960; // type:object size:0x80 scope:global align:32
+int_hnw014_b_front_tex_txt = .data:0x007969E0; // type:object size:0x100 scope:global align:32
+int_hnw014_v = .data:0x00796AE0; // type:object size:0x4A0 scope:global align:8
+int_hnw014_chest_model = .data:0x00796F80; // type:object size:0xF8 scope:global align:8
+int_hnw014_armR_model = .data:0x00797078; // type:object size:0x80 scope:global align:8
+int_hnw014_armL_model = .data:0x007970F8; // type:object size:0x80 scope:global align:8
+int_hnw014_base_model = .data:0x00797178; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw014_tbl = .data:0x007971F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw014_tbl = .data:0x007971F8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw014_tbl = .data:0x00797218; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw014_tbl = .data:0x0079722C; // type:object size:0x126 scope:global align:4
+cKF_ba_r_int_hnw014 = .data:0x00797354; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw014_tbl = .data:0x00797368; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw014 = .data:0x007973BC; // type:object size:0x8 scope:global align:4
+int_hnw015_pal = .data:0x007973E0; // type:object size:0x20 scope:global align:32
+int_hnw015_arm_tex_txt = .data:0x00797400; // type:object size:0x100 scope:global align:32
+int_hnw015_armtop_tex_txt = .data:0x00797500; // type:object size:0x80 scope:global align:32 data:string
+int_hnw015_c_front_tex_txt = .data:0x00797580; // type:object size:0x300 scope:global align:32
+int_hnw015_c_back_tex_txt = .data:0x00797880; // type:object size:0x180 scope:global align:32
+int_hnw015_antena_tex_txt = .data:0x00797A00; // type:object size:0x80 scope:global align:32
+int_hnw015_b_back_tex_txt = .data:0x00797A80; // type:object size:0x80 scope:global align:32
+int_hnw015_b_front_tex_txt = .data:0x00797B00; // type:object size:0x100 scope:global align:32
+int_hnw015_v = .data:0x00797C00; // type:object size:0x4A0 scope:global align:8
+int_hnw015_chest_model = .data:0x007980A0; // type:object size:0xF8 scope:global align:8
+int_hnw015_armR_model = .data:0x00798198; // type:object size:0x80 scope:global align:8
+int_hnw015_armL_model = .data:0x00798218; // type:object size:0x80 scope:global align:8
+int_hnw015_base_model = .data:0x00798298; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw015_tbl = .data:0x00798310; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw015_tbl = .data:0x00798318; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw015_tbl = .data:0x00798320; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw015_tbl = .data:0x0079834C; // type:object size:0x18C scope:global align:4
+cKF_ba_r_int_hnw015 = .data:0x007984D8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw015_tbl = .data:0x007984EC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw015 = .data:0x00798540; // type:object size:0x8 scope:global align:4
+int_hnw016_pal = .data:0x00798560; // type:object size:0x20 scope:global align:32
+int_hnw016_arm_tex_txt = .data:0x00798580; // type:object size:0x100 scope:global align:32
+int_hnw016_armtop_tex_txt = .data:0x00798680; // type:object size:0x80 scope:global align:32 data:string
+int_hnw016_c_front_tex_txt = .data:0x00798700; // type:object size:0x300 scope:global align:32
+int_hnw016_c_back_tex_txt = .data:0x00798A00; // type:object size:0x180 scope:global align:32
+int_hnw016_antena_tex_txt = .data:0x00798B80; // type:object size:0x80 scope:global align:32
+int_hnw016_b_back_tex_txt = .data:0x00798C00; // type:object size:0x80 scope:global align:32
+int_hnw016_b_front_tex_txt = .data:0x00798C80; // type:object size:0x100 scope:global align:32
+int_hnw016_v = .data:0x00798D80; // type:object size:0x4A0 scope:global align:8
+int_hnw016_chest_model = .data:0x00799220; // type:object size:0xF8 scope:global align:8
+int_hnw016_armR_model = .data:0x00799318; // type:object size:0x80 scope:global align:8
+int_hnw016_armL_model = .data:0x00799398; // type:object size:0x80 scope:global align:8
+int_hnw016_base_model = .data:0x00799418; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw016_tbl = .data:0x00799490; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw016_tbl = .data:0x00799498; // type:object size:0x12 scope:global align:4
+cKF_c_int_hnw016_tbl = .data:0x007994AC; // type:object size:0x1E scope:global align:4
+cKF_ds_int_hnw016_tbl = .data:0x007994CC; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_hnw016 = .data:0x00799580; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw016_tbl = .data:0x00799594; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw016 = .data:0x007995E8; // type:object size:0x8 scope:global align:4
+int_hnw017_pal = .data:0x00799600; // type:object size:0x20 scope:global align:32
+int_hnw017_arm_tex_txt = .data:0x00799620; // type:object size:0x100 scope:global align:32
+int_hnw017_armtop_tex_txt = .data:0x00799720; // type:object size:0x80 scope:global align:32 data:string
+int_hnw017_c_front_tex_txt = .data:0x007997A0; // type:object size:0x300 scope:global align:32
+int_hnw017_c_back_tex_txt = .data:0x00799AA0; // type:object size:0x180 scope:global align:32
+int_hnw017_b_back_tex_txt = .data:0x00799C20; // type:object size:0x80 scope:global align:32
+int_hnw017_b_front_tex_txt = .data:0x00799CA0; // type:object size:0x100 scope:global align:32
+int_hnw017_v = .data:0x00799DA0; // type:object size:0x470 scope:global align:8
+int_hnw017_chest_model = .data:0x0079A210; // type:object size:0xD0 scope:global align:8
+int_hnw017_armR_model = .data:0x0079A2E0; // type:object size:0x80 scope:global align:8
+int_hnw017_armL_model = .data:0x0079A360; // type:object size:0x80 scope:global align:8
+int_hnw017_base_model = .data:0x0079A3E0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw017_tbl = .data:0x0079A458; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw017_tbl = .data:0x0079A460; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw017_tbl = .data:0x0079A480; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw017_tbl = .data:0x0079A494; // type:object size:0x126 scope:global align:4
+cKF_ba_r_int_hnw017 = .data:0x0079A5BC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw017_tbl = .data:0x0079A5D0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw017 = .data:0x0079A624; // type:object size:0x8 scope:global align:4
+int_hnw018_pal = .data:0x0079A640; // type:object size:0x20 scope:global align:32
+int_hnw018_arm_tex_txt = .data:0x0079A660; // type:object size:0x100 scope:global align:32
+int_hnw018_armtop_tex_txt = .data:0x0079A760; // type:object size:0x80 scope:global align:32 data:string
+int_hnw018_c_front_tex_txt = .data:0x0079A7E0; // type:object size:0x300 scope:global align:32
+int_hnw018_c_back_tex_txt = .data:0x0079AAE0; // type:object size:0x180 scope:global align:32
+int_hnw018_b_back_tex_txt = .data:0x0079AC60; // type:object size:0x80 scope:global align:32
+int_hnw018_b_front_tex_txt = .data:0x0079ACE0; // type:object size:0x100 scope:global align:32
+int_hnw018_v = .data:0x0079ADE0; // type:object size:0x470 scope:global align:8
+int_hnw018_chest_model = .data:0x0079B250; // type:object size:0xD0 scope:global align:8
+int_hnw018_armR_model = .data:0x0079B320; // type:object size:0x80 scope:global align:8
+int_hnw018_armL_model = .data:0x0079B3A0; // type:object size:0x80 scope:global align:8
+int_hnw018_base_model = .data:0x0079B420; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw018_tbl = .data:0x0079B498; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw018_tbl = .data:0x0079B4A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw018_tbl = .data:0x0079B4C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw018_tbl = .data:0x0079B4D4; // type:object size:0x114 scope:global align:4
+cKF_ba_r_int_hnw018 = .data:0x0079B5E8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw018_tbl = .data:0x0079B5FC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw018 = .data:0x0079B650; // type:object size:0x8 scope:global align:4
+int_hnw019_pal = .data:0x0079B660; // type:object size:0x20 scope:global align:32
+int_hnw019_arm_tex_txt = .data:0x0079B680; // type:object size:0x100 scope:global align:32
+int_hnw019_armtop_tex_txt = .data:0x0079B780; // type:object size:0x80 scope:global align:32 data:string
+int_hnw019_c_front_tex_txt = .data:0x0079B800; // type:object size:0x300 scope:global align:32
+int_hnw019_c_back_tex_txt = .data:0x0079BB00; // type:object size:0x180 scope:global align:32
+int_hnw019_antena_tex_txt = .data:0x0079BC80; // type:object size:0x80 scope:global align:32
+int_hnw019_b_back_tex_txt = .data:0x0079BD00; // type:object size:0x80 scope:global align:32
+int_hnw019_b_front_tex_txt = .data:0x0079BD80; // type:object size:0x100 scope:global align:32
+int_hnw019_v = .data:0x0079BE80; // type:object size:0x4A0 scope:global align:8
+int_hnw019_chest_model = .data:0x0079C320; // type:object size:0xF8 scope:global align:8
+int_hnw019_armR_model = .data:0x0079C418; // type:object size:0x80 scope:global align:8
+int_hnw019_armL_model = .data:0x0079C498; // type:object size:0x80 scope:global align:8
+int_hnw019_base_model = .data:0x0079C518; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw019_tbl = .data:0x0079C590; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw019_tbl = .data:0x0079C598; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw019_tbl = .data:0x0079C5B8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw019_tbl = .data:0x0079C5CC; // type:object size:0x2AC scope:global align:4
+cKF_ba_r_int_hnw019 = .data:0x0079C878; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw019_tbl = .data:0x0079C88C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw019 = .data:0x0079C8E0; // type:object size:0x8 scope:global align:4
+int_hnw020_pal = .data:0x0079C900; // type:object size:0x20 scope:global align:32
+int_hnw020_arm_tex_txt = .data:0x0079C920; // type:object size:0x100 scope:global align:32
+int_hnw020_armtop_tex_txt = .data:0x0079CA20; // type:object size:0x80 scope:global align:32 data:string
+int_hnw020_c_front_tex_txt = .data:0x0079CAA0; // type:object size:0x300 scope:global align:32
+int_hnw020_c_back_tex_txt = .data:0x0079CDA0; // type:object size:0x180 scope:global align:32
+int_hnw020_b_back_tex_txt = .data:0x0079CF20; // type:object size:0x80 scope:global align:32
+int_hnw020_b_front_tex_txt = .data:0x0079CFA0; // type:object size:0x100 scope:global align:32
+int_hnw020_v = .data:0x0079D0A0; // type:object size:0x470 scope:global align:8
+int_hnw020_chest_model = .data:0x0079D510; // type:object size:0xD0 scope:global align:8
+int_hnw020_armR_model = .data:0x0079D5E0; // type:object size:0x80 scope:global align:8
+int_hnw020_armL_model = .data:0x0079D660; // type:object size:0x80 scope:global align:8
+int_hnw020_base_model = .data:0x0079D6E0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw020_tbl = .data:0x0079D758; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw020_tbl = .data:0x0079D760; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw020_tbl = .data:0x0079D768; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw020_tbl = .data:0x0079D794; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw020 = .data:0x0079D814; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw020_tbl = .data:0x0079D828; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw020 = .data:0x0079D87C; // type:object size:0x8 scope:global align:4
+int_hnw021_pal = .data:0x0079D8A0; // type:object size:0x20 scope:global align:32
+int_hnw021_c_front_tex_txt = .data:0x0079D8C0; // type:object size:0x300 scope:global align:32
+int_hnw021_c_back_tex_txt = .data:0x0079DBC0; // type:object size:0x180 scope:global align:32
+int_hnw021_arm_tex_txt = .data:0x0079DD40; // type:object size:0x100 scope:global align:32
+int_hnw021_armtop_tex_txt = .data:0x0079DE40; // type:object size:0x80 scope:global align:32 data:string
+int_hnw021_b_back_tex_txt = .data:0x0079DEC0; // type:object size:0x80 scope:global align:32
+int_hnw021_b_front_tex_txt = .data:0x0079DF40; // type:object size:0x100 scope:global align:32
+int_hnw021_v = .data:0x0079E040; // type:object size:0x470 scope:global align:8
+int_hnw021_chest_model = .data:0x0079E4B0; // type:object size:0xF0 scope:global align:8
+int_hnw021_armR_model = .data:0x0079E5A0; // type:object size:0x80 scope:global align:8
+int_hnw021_armL_model = .data:0x0079E620; // type:object size:0x80 scope:global align:8
+int_hnw021_base_model = .data:0x0079E6A0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw021_tbl = .data:0x0079E728; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw021_tbl = .data:0x0079E730; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw021_tbl = .data:0x0079E738; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw021_tbl = .data:0x0079E764; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw021 = .data:0x0079E7E4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw021_tbl = .data:0x0079E7F8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw021 = .data:0x0079E84C; // type:object size:0x8 scope:global align:4
+int_hnw022_pal = .data:0x0079E860; // type:object size:0x20 scope:global align:32
+int_hnw022_arm_tex_txt = .data:0x0079E880; // type:object size:0x100 scope:global align:32
+int_hnw022_armtop_tex_txt = .data:0x0079E980; // type:object size:0x80 scope:global align:32 data:string
+int_hnw022_c_front_tex_txt = .data:0x0079EA00; // type:object size:0x300 scope:global align:32
+int_hnw022_c_back_tex_txt = .data:0x0079ED00; // type:object size:0x180 scope:global align:32
+int_hnw022_b_back_tex_txt = .data:0x0079EE80; // type:object size:0x80 scope:global align:32
+int_hnw022_b_front_tex_txt = .data:0x0079EF00; // type:object size:0x100 scope:global align:32
+int_hnw022_v = .data:0x0079F000; // type:object size:0x470 scope:global align:8
+int_hnw022__chest_model = .data:0x0079F470; // type:object size:0xD0 scope:global align:8
+int_hnw022_armR_model = .data:0x0079F540; // type:object size:0x80 scope:global align:8
+int_hnw022_armL_model = .data:0x0079F5C0; // type:object size:0x80 scope:global align:8
+int_hnw022_base_model = .data:0x0079F640; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw022_tbl = .data:0x0079F6B8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw022_tbl = .data:0x0079F6C0; // type:object size:0xA scope:global align:4
+cKF_c_int_hnw022_tbl = .data:0x0079F6CC; // type:object size:0x26 scope:global align:4
+cKF_ds_int_hnw022_tbl = .data:0x0079F6F4; // type:object size:0xD2 scope:global align:4
+cKF_ba_r_int_hnw022 = .data:0x0079F7C8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw022_tbl = .data:0x0079F7DC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw022 = .data:0x0079F830; // type:object size:0x8 scope:global align:4
+int_hnw023_pal = .data:0x0079F840; // type:object size:0x20 scope:global align:32
+int_hnw023_arm_tex_txt = .data:0x0079F860; // type:object size:0x100 scope:global align:32
+int_hnw023_armtop_tex_txt = .data:0x0079F960; // type:object size:0x80 scope:global align:32
+int_hnw023_c_front_tex_txt = .data:0x0079F9E0; // type:object size:0x300 scope:global align:32
+int_hnw023_c_back_tex_txt = .data:0x0079FCE0; // type:object size:0x180 scope:global align:32
+int_hnw023_b_back_tex_txt = .data:0x0079FE60; // type:object size:0x80 scope:global align:32
+int_hnw023_b_front_tex_txt = .data:0x0079FEE0; // type:object size:0x100 scope:global align:32
+int_hnw023_v = .data:0x0079FFE0; // type:object size:0x470 scope:global align:8
+int_hnw023_chest_model = .data:0x007A0450; // type:object size:0xD0 scope:global align:8
+int_hnw023_armR_model = .data:0x007A0520; // type:object size:0x80 scope:global align:8
+int_hnw023_armL_model = .data:0x007A05A0; // type:object size:0x80 scope:global align:8
+int_hnw023_base_model = .data:0x007A0620; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw023_tbl = .data:0x007A0698; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw023_tbl = .data:0x007A06A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw023_tbl = .data:0x007A06C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw023_tbl = .data:0x007A06D4; // type:object size:0x138 scope:global align:4
+cKF_ba_r_int_hnw023 = .data:0x007A080C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw023_tbl = .data:0x007A0820; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw023 = .data:0x007A0874; // type:object size:0x8 scope:global align:4
+int_hnw024_pal = .data:0x007A0880; // type:object size:0x20 scope:global align:32
+int_hnw024_arm_tex_txt = .data:0x007A08A0; // type:object size:0x100 scope:global align:32
+int_hnw024_armtop_tex_txt = .data:0x007A09A0; // type:object size:0x80 scope:global align:32
+int_hnw024_c_front_tex_txt = .data:0x007A0A20; // type:object size:0x300 scope:global align:32
+int_hnw024_c_back_tex_txt = .data:0x007A0D20; // type:object size:0x180 scope:global align:32
+int_hnw024_b_back_tex_txt = .data:0x007A0EA0; // type:object size:0x80 scope:global align:32
+int_hnw024_b_front_tex_txt = .data:0x007A0F20; // type:object size:0x100 scope:global align:32
+int_hnw024_v = .data:0x007A1020; // type:object size:0x470 scope:global align:8
+int_hnw024_chest_model = .data:0x007A1490; // type:object size:0xD0 scope:global align:8
+int_hnw024_armR_model = .data:0x007A1560; // type:object size:0x80 scope:global align:8
+int_hnw024_armL_model = .data:0x007A15E0; // type:object size:0x80 scope:global align:8
+int_hnw024_base_model = .data:0x007A1660; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw024_tbl = .data:0x007A16D8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw024_tbl = .data:0x007A16E0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw024_tbl = .data:0x007A1700; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw024_tbl = .data:0x007A1714; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw024 = .data:0x007A181C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw024_tbl = .data:0x007A1830; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw024 = .data:0x007A1884; // type:object size:0x8 scope:global align:4
+int_hnw025_pal = .data:0x007A18A0; // type:object size:0x20 scope:global align:32
+int_hnw025_c_front_tex_txt = .data:0x007A18C0; // type:object size:0x300 scope:global align:32
+int_hnw025_c_back_tex_txt = .data:0x007A1BC0; // type:object size:0x180 scope:global align:32
+int_hnw025_arm_tex_txt = .data:0x007A1D40; // type:object size:0x100 scope:global align:32
+int_hnw025_armtop_tex_txt = .data:0x007A1E40; // type:object size:0x80 scope:global align:32
+int_hnw025_b_back_tex_txt = .data:0x007A1EC0; // type:object size:0x80 scope:global align:32
+int_hnw025_b_front_tex_txt = .data:0x007A1F40; // type:object size:0x100 scope:global align:32
+int_hnw025_v = .data:0x007A2040; // type:object size:0x470 scope:global align:8
+int_hnw025_chest_model = .data:0x007A24B0; // type:object size:0xF0 scope:global align:8
+int_hnw025_armR_model = .data:0x007A25A0; // type:object size:0x80 scope:global align:8
+int_hnw025_armL_model = .data:0x007A2620; // type:object size:0x80 scope:global align:8
+int_hnw025_base_model = .data:0x007A26A0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw025_tbl = .data:0x007A2728; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw025_tbl = .data:0x007A2730; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw025_tbl = .data:0x007A2750; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw025_tbl = .data:0x007A2764; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw025 = .data:0x007A2850; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw025_tbl = .data:0x007A2864; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw025 = .data:0x007A28B8; // type:object size:0x8 scope:global align:4
+int_hnw026_pal = .data:0x007A28C0; // type:object size:0x20 scope:global align:32
+int_hnw026_arm_tex_txt = .data:0x007A28E0; // type:object size:0x100 scope:global align:32
+int_hnw026_armtop_tex_txt = .data:0x007A29E0; // type:object size:0x80 scope:global align:32
+int_hnw026_c_front_tex_txt = .data:0x007A2A60; // type:object size:0x300 scope:global align:32
+int_hnw026_c_back_tex_txt = .data:0x007A2D60; // type:object size:0x180 scope:global align:32
+int_hnw026_b_back_tex_txt = .data:0x007A2EE0; // type:object size:0x80 scope:global align:32
+int_hnw026_b_front_tex_txt = .data:0x007A2F60; // type:object size:0x100 scope:global align:32
+int_hnw026_v = .data:0x007A3060; // type:object size:0x470 scope:global align:8
+int_hnw026_chest_model = .data:0x007A34D0; // type:object size:0xD0 scope:global align:8
+int_hnw026_armR_model = .data:0x007A35A0; // type:object size:0x80 scope:global align:8
+int_hnw026_armL_model = .data:0x007A3620; // type:object size:0x80 scope:global align:8
+int_hnw026_base_model = .data:0x007A36A0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw026_tbl = .data:0x007A3718; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw026_tbl = .data:0x007A3720; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw026_tbl = .data:0x007A3740; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw026_tbl = .data:0x007A3754; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw026 = .data:0x007A3840; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw026_tbl = .data:0x007A3854; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw026 = .data:0x007A38A8; // type:object size:0x8 scope:global align:4
+int_hnw027_pal = .data:0x007A38C0; // type:object size:0x20 scope:global align:32
+int_hnw027_c_front_tex_txt = .data:0x007A38E0; // type:object size:0x300 scope:global align:32
+int_hnw027_c_back_tex_txt = .data:0x007A3BE0; // type:object size:0x180 scope:global align:32
+int_hnw027_arm_tex_txt = .data:0x007A3D60; // type:object size:0x100 scope:global align:32
+int_hnw027_armtop_tex_txt = .data:0x007A3E60; // type:object size:0x80 scope:global align:32
+int_hnw027_b_back_tex_txt = .data:0x007A3EE0; // type:object size:0x80 scope:global align:32
+int_hnw027_b_front_tex_txt = .data:0x007A3F60; // type:object size:0x100 scope:global align:32
+int_hnw027_v = .data:0x007A4060; // type:object size:0x470 scope:global align:8
+int_hnw027_chest_model = .data:0x007A44D0; // type:object size:0xF0 scope:global align:8
+int_hnw027_armR_model = .data:0x007A45C0; // type:object size:0x80 scope:global align:8
+int_hnw027_armL_model = .data:0x007A4640; // type:object size:0x80 scope:global align:8
+int_hnw027_base_model = .data:0x007A46C0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw027_tbl = .data:0x007A4748; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw027_tbl = .data:0x007A4750; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw027_tbl = .data:0x007A4758; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw027_tbl = .data:0x007A4784; // type:object size:0xBA scope:global align:4
+cKF_ba_r_int_hnw027 = .data:0x007A4840; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw027_tbl = .data:0x007A4854; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw027 = .data:0x007A48A8; // type:object size:0x8 scope:global align:4
+int_hnw028_pal = .data:0x007A48C0; // type:object size:0x20 scope:global align:32
+int_hnw028_arm_tex_txt = .data:0x007A48E0; // type:object size:0x100 scope:global align:32
+int_hnw028_armtop_tex_txt = .data:0x007A49E0; // type:object size:0x80 scope:global align:32
+int_hnw028_c_front_tex_txt = .data:0x007A4A60; // type:object size:0x300 scope:global align:32
+int_hnw028_c_back_tex_txt = .data:0x007A4D60; // type:object size:0x180 scope:global align:32
+int_hnw028_b_back_tex_txt = .data:0x007A4EE0; // type:object size:0x80 scope:global align:32
+int_hnw028_b_front_tex_txt = .data:0x007A4F60; // type:object size:0x100 scope:global align:32
+int_hnw028_v = .data:0x007A5060; // type:object size:0x470 scope:global align:8
+int_hnw028_chest_model = .data:0x007A54D0; // type:object size:0xD0 scope:global align:8
+int_hnw028_armR_model = .data:0x007A55A0; // type:object size:0x80 scope:global align:8
+int_hnw028_armL_model = .data:0x007A5620; // type:object size:0x80 scope:global align:8
+int_hnw028_base_model = .data:0x007A56A0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw028_tbl = .data:0x007A5718; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw028_tbl = .data:0x007A5720; // type:object size:0xE scope:global align:4
+cKF_c_int_hnw028_tbl = .data:0x007A5730; // type:object size:0x22 scope:global align:4
+cKF_ds_int_hnw028_tbl = .data:0x007A5754; // type:object size:0x18C scope:global align:4
+cKF_ba_r_int_hnw028 = .data:0x007A58E0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw028_tbl = .data:0x007A58F4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw028 = .data:0x007A5948; // type:object size:0x8 scope:global align:4
+int_hnw029_pal = .data:0x007A5960; // type:object size:0x20 scope:global align:32
+int_hnw029_arm_tex_txt = .data:0x007A5980; // type:object size:0x100 scope:global align:32
+int_hnw029_armtop_tex_txt = .data:0x007A5A80; // type:object size:0x80 scope:global align:32
+int_hnw029_c_front_tex_txt = .data:0x007A5B00; // type:object size:0x300 scope:global align:32
+int_hnw029_c_back_tex_txt = .data:0x007A5E00; // type:object size:0x180 scope:global align:32
+int_hnw029_b_back_tex_txt = .data:0x007A5F80; // type:object size:0x80 scope:global align:32
+int_hnw029_b_front_tex_txt = .data:0x007A6000; // type:object size:0x100 scope:global align:32
+int_hnw029_v = .data:0x007A6100; // type:object size:0x470 scope:global align:8
+int_hnw029_chest_model = .data:0x007A6570; // type:object size:0xD0 scope:global align:8
+int_hnw029_armR_model = .data:0x007A6640; // type:object size:0x80 scope:global align:8
+int_hnw029_armL_model = .data:0x007A66C0; // type:object size:0x80 scope:global align:8
+int_hnw029_base_model = .data:0x007A6740; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw029_tbl = .data:0x007A67B8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw029_tbl = .data:0x007A67C0; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw029_tbl = .data:0x007A67C8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw029_tbl = .data:0x007A67F4; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw029 = .data:0x007A68CC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw029_tbl = .data:0x007A68E0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw029 = .data:0x007A6934; // type:object size:0x8 scope:global align:4
+int_hnw030_pal = .data:0x007A6940; // type:object size:0x20 scope:global align:32
+int_hnw030_arm_tex_txt = .data:0x007A6960; // type:object size:0x100 scope:global align:32
+int_hnw030_armtop_tex_txt = .data:0x007A6A60; // type:object size:0x80 scope:global align:32
+int_hnw030_c_front_tex_txt = .data:0x007A6AE0; // type:object size:0x300 scope:global align:32
+int_hnw030_c_back_tex_txt = .data:0x007A6DE0; // type:object size:0x180 scope:global align:32
+int_hnw030_b_back_tex_txt = .data:0x007A6F60; // type:object size:0x80 scope:global align:32
+int_hnw030_b_front_tex_txt = .data:0x007A6FE0; // type:object size:0x100 scope:global align:32
+int_hnw030_v = .data:0x007A70E0; // type:object size:0x470 scope:global align:8
+int_hnw030_chest_model = .data:0x007A7550; // type:object size:0xD0 scope:global align:8
+int_hnw030_armR_model = .data:0x007A7620; // type:object size:0x80 scope:global align:8
+int_hnw030_armL_model = .data:0x007A76A0; // type:object size:0x80 scope:global align:8
+int_hnw030_base_model = .data:0x007A7720; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw030_tbl = .data:0x007A7798; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw030_tbl = .data:0x007A77A0; // type:object size:0x8 scope:global align:4
+cKF_c_int_hnw030_tbl = .data:0x007A77A8; // type:object size:0x28 scope:global align:4
+cKF_ds_int_hnw030_tbl = .data:0x007A77D0; // type:object size:0xBA scope:global align:4
+cKF_ba_r_int_hnw030 = .data:0x007A788C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw030_tbl = .data:0x007A78A0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw030 = .data:0x007A78F4; // type:object size:0x8 scope:global align:4
+int_hnw031_pal = .data:0x007A7900; // type:object size:0x20 scope:global align:32
+int_hnw031_c_front_tex_txt = .data:0x007A7920; // type:object size:0x300 scope:global align:32
+int_hnw031_c_back_tex_txt = .data:0x007A7C20; // type:object size:0x180 scope:global align:32
+int_hnw031_arm_tex_txt = .data:0x007A7DA0; // type:object size:0x100 scope:global align:32
+int_hnw031_armtop_tex_txt = .data:0x007A7EA0; // type:object size:0x80 scope:global align:32
+int_hnw031_b_back_tex_txt = .data:0x007A7F20; // type:object size:0x80 scope:global align:32
+int_hnw031_b_front_tex_txt = .data:0x007A7FA0; // type:object size:0x100 scope:global align:32
+int_hnw031_v = .data:0x007A80A0; // type:object size:0x470 scope:global align:8
+int_hnw031_chest_model = .data:0x007A8510; // type:object size:0xF0 scope:global align:8
+int_hnw031_armR_model = .data:0x007A8600; // type:object size:0x80 scope:global align:8
+int_hnw031_armL_model = .data:0x007A8680; // type:object size:0x80 scope:global align:8
+int_hnw031_base_model = .data:0x007A8700; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw031_tbl = .data:0x007A8788; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw031_tbl = .data:0x007A8790; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw031_tbl = .data:0x007A87B0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw031_tbl = .data:0x007A87C4; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw031 = .data:0x007A88B4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw031_tbl = .data:0x007A88C8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw031 = .data:0x007A891C; // type:object size:0x8 scope:global align:4
+int_hnw032_pal = .data:0x007A8940; // type:object size:0x20 scope:global align:32
+int_hnw032_arm_tex_txt = .data:0x007A8960; // type:object size:0x100 scope:global align:32
+int_hnw032_armtop_tex_txt = .data:0x007A8A60; // type:object size:0x80 scope:global align:32
+int_hnw032_c_front_tex_txt = .data:0x007A8AE0; // type:object size:0x300 scope:global align:32
+int_hnw032_c_back_tex_txt = .data:0x007A8DE0; // type:object size:0x180 scope:global align:32
+int_hnw032_b_back_tex_txt = .data:0x007A8F60; // type:object size:0x80 scope:global align:32
+int_hnw032_b_front_tex_txt = .data:0x007A8FE0; // type:object size:0x100 scope:global align:32
+int_hnw032_v = .data:0x007A90E0; // type:object size:0x470 scope:global align:8
+int_hnw032_chest_model = .data:0x007A9550; // type:object size:0xD0 scope:global align:8
+int_hnw032_armR_model = .data:0x007A9620; // type:object size:0x80 scope:global align:8
+int_hnw032_armL_model = .data:0x007A96A0; // type:object size:0x80 scope:global align:8
+int_hnw032_base_model = .data:0x007A9720; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw032_tbl = .data:0x007A9798; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw032_tbl = .data:0x007A97A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw032_tbl = .data:0x007A97C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw032_tbl = .data:0x007A97D4; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw032 = .data:0x007A98C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw032_tbl = .data:0x007A98D8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw032 = .data:0x007A992C; // type:object size:0x8 scope:global align:4
+int_hnw033_pal = .data:0x007A9940; // type:object size:0x20 scope:global align:32
+int_hnw033_arm_tex_txt = .data:0x007A9960; // type:object size:0x100 scope:global align:32
+int_hnw033_armtop_tex_txt = .data:0x007A9A60; // type:object size:0x80 scope:global align:32
+int_hnw033_c_front_tex_txt = .data:0x007A9AE0; // type:object size:0x300 scope:global align:32
+int_hnw033_c_back_tex_txt = .data:0x007A9DE0; // type:object size:0x180 scope:global align:32
+int_hnw033_b_back_tex_txt = .data:0x007A9F60; // type:object size:0x80 scope:global align:32
+int_hnw033_b_front_tex_txt = .data:0x007A9FE0; // type:object size:0x100 scope:global align:32
+int_hnw033_v = .data:0x007AA0E0; // type:object size:0x470 scope:global align:8
+int_hnw033_chest_model = .data:0x007AA550; // type:object size:0xD0 scope:global align:8
+int_hnw033_armR_model = .data:0x007AA620; // type:object size:0x80 scope:global align:8
+int_hnw033_armL_model = .data:0x007AA6A0; // type:object size:0x80 scope:global align:8
+int_hnw033_base_model = .data:0x007AA720; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw033_tbl = .data:0x007AA798; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw033_tbl = .data:0x007AA7A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw033_tbl = .data:0x007AA7C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw033_tbl = .data:0x007AA7D4; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw033 = .data:0x007AA8DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw033_tbl = .data:0x007AA8F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw033 = .data:0x007AA944; // type:object size:0x8 scope:global align:4
+int_hnw034_pal = .data:0x007AA960; // type:object size:0x20 scope:global align:32
+int_hnw034_arm_tex_txt = .data:0x007AA980; // type:object size:0x100 scope:global align:32
+int_hnw034_armtop_tex_txt = .data:0x007AAA80; // type:object size:0x80 scope:global align:32
+int_hnw034_c_front_tex_txt = .data:0x007AAB00; // type:object size:0x300 scope:global align:32
+int_hnw034_c_back_tex_txt = .data:0x007AAE00; // type:object size:0x180 scope:global align:32
+int_hnw034_antena_tex_txt = .data:0x007AAF80; // type:object size:0x80 scope:global align:32
+int_hnw034_b_back_tex_txt = .data:0x007AB000; // type:object size:0x80 scope:global align:32
+int_hnw034_b_front_tex_txt = .data:0x007AB080; // type:object size:0x100 scope:global align:32
+int_hnw034_v = .data:0x007AB180; // type:object size:0x4A0 scope:global align:8
+int_hnw034_chest_model = .data:0x007AB620; // type:object size:0xF8 scope:global align:8
+int_hnw034_armR_model = .data:0x007AB718; // type:object size:0x80 scope:global align:8
+int_hnw034_armL_model = .data:0x007AB798; // type:object size:0x80 scope:global align:8
+int_hnw034_base_model = .data:0x007AB818; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw034_tbl = .data:0x007AB890; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw034_tbl = .data:0x007AB898; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw034_tbl = .data:0x007AB8B8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw034_tbl = .data:0x007AB8CC; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw034 = .data:0x007AB9A4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw034_tbl = .data:0x007AB9B8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw034 = .data:0x007ABA0C; // type:object size:0x8 scope:global align:4
+int_hnw035_pal = .data:0x007ABA20; // type:object size:0x20 scope:global align:32
+int_hnw035_arm_tex_txt = .data:0x007ABA40; // type:object size:0x100 scope:global align:32 data:string
+int_hnw035_armtop_tex_txt = .data:0x007ABB40; // type:object size:0x80 scope:global align:32 data:string
+int_hnw035_c_front_tex_txt = .data:0x007ABBC0; // type:object size:0x300 scope:global align:32
+int_hnw035_c_back_tex_txt = .data:0x007ABEC0; // type:object size:0x180 scope:global align:32
+int_hnw035_b_back_tex_txt = .data:0x007AC040; // type:object size:0x80 scope:global align:32 data:string
+int_hnw035_b_front_tex_txt = .data:0x007AC0C0; // type:object size:0x100 scope:global align:32
+int_hnw035_v = .data:0x007AC1C0; // type:object size:0x470 scope:global align:8
+int_hnw035_chest_model = .data:0x007AC630; // type:object size:0xD0 scope:global align:8
+int_hnw035_armR_model = .data:0x007AC700; // type:object size:0x80 scope:global align:8
+int_hnw035_armL_model = .data:0x007AC780; // type:object size:0x80 scope:global align:8
+int_hnw035_base_model = .data:0x007AC800; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw035_tbl = .data:0x007AC878; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw035_tbl = .data:0x007AC880; // type:object size:0x8 scope:global align:4
+cKF_c_int_hnw035_tbl = .data:0x007AC888; // type:object size:0x28 scope:global align:4
+cKF_ds_int_hnw035_tbl = .data:0x007AC8B0; // type:object size:0xC6 scope:global align:4
+cKF_ba_r_int_hnw035 = .data:0x007AC978; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw035_tbl = .data:0x007AC98C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw035 = .data:0x007AC9E0; // type:object size:0x8 scope:global align:4
+int_hnw036_pal = .data:0x007ACA00; // type:object size:0x20 scope:global align:32
+int_hnw036_arm_tex_txt = .data:0x007ACA20; // type:object size:0x100 scope:global align:32 data:string
+int_hnw036_armtop_tex_txt = .data:0x007ACB20; // type:object size:0x80 scope:global align:32 data:string
+int_hnw036_c_front_tex_txt = .data:0x007ACBA0; // type:object size:0x300 scope:global align:32
+int_hnw036_c_back_tex_txt = .data:0x007ACEA0; // type:object size:0x180 scope:global align:32
+int_hnw036_b_back_tex_txt = .data:0x007AD020; // type:object size:0x80 scope:global align:32 data:string
+int_hnw036_b_front_tex_txt = .data:0x007AD0A0; // type:object size:0x100 scope:global align:32
+int_hnw036_v = .data:0x007AD1A0; // type:object size:0x470 scope:global align:8
+int_hnw036_chest_model = .data:0x007AD610; // type:object size:0xD0 scope:global align:8
+int_hnw036_armR_model = .data:0x007AD6E0; // type:object size:0x80 scope:global align:8
+int_hnw036_armL_model = .data:0x007AD760; // type:object size:0x80 scope:global align:8
+int_hnw036_base_model = .data:0x007AD7E0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw036_tbl = .data:0x007AD858; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw036_tbl = .data:0x007AD860; // type:object size:0x8 scope:global align:4
+cKF_c_int_hnw036_tbl = .data:0x007AD868; // type:object size:0x28 scope:global align:4
+cKF_ds_int_hnw036_tbl = .data:0x007AD890; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw036 = .data:0x007AD968; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw036_tbl = .data:0x007AD97C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw036 = .data:0x007AD9D0; // type:object size:0x8 scope:global align:4
+int_hnw037_pal = .data:0x007AD9E0; // type:object size:0x20 scope:global align:32
+int_hnw037_arm_tex_txt = .data:0x007ADA00; // type:object size:0x100 scope:global align:32
+int_hnw037_armtop_tex_txt = .data:0x007ADB00; // type:object size:0x80 scope:global align:32
+int_hnw037_c_front_tex_txt = .data:0x007ADB80; // type:object size:0x300 scope:global align:32
+int_hnw037_c_back_tex_txt = .data:0x007ADE80; // type:object size:0x180 scope:global align:32
+int_hnw037_b_back_tex_txt = .data:0x007AE000; // type:object size:0x80 scope:global align:32
+int_hnw037_b_front_tex_txt = .data:0x007AE080; // type:object size:0x100 scope:global align:32
+int_hnw037_v = .data:0x007AE180; // type:object size:0x470 scope:global align:8
+int_hnw037_chest_model = .data:0x007AE5F0; // type:object size:0xD0 scope:global align:8
+int_hnw037_armR_model = .data:0x007AE6C0; // type:object size:0x80 scope:global align:8
+int_hnw037_armL_model = .data:0x007AE740; // type:object size:0x80 scope:global align:8
+int_hnw037_base_model = .data:0x007AE7C0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw037_tbl = .data:0x007AE838; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw037_tbl = .data:0x007AE840; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw037_tbl = .data:0x007AE860; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw037_tbl = .data:0x007AE874; // type:object size:0x17A scope:global align:4
+cKF_ba_r_int_hnw037 = .data:0x007AE9F0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw037_tbl = .data:0x007AEA04; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw037 = .data:0x007AEA58; // type:object size:0x8 scope:global align:4
+int_hnw038_pal = .data:0x007AEA60; // type:object size:0x20 scope:global align:32
+int_hnw038_c_front_tex_txt = .data:0x007AEA80; // type:object size:0x300 scope:global align:32
+int_hnw038_c_back_tex_txt = .data:0x007AED80; // type:object size:0x180 scope:global align:32
+int_hnw038_arm_tex_txt = .data:0x007AEF00; // type:object size:0x100 scope:global align:32
+int_hnw038_armtop_tex_txt = .data:0x007AF000; // type:object size:0x80 scope:global align:32
+int_hnw038_b_back_tex_txt = .data:0x007AF080; // type:object size:0x80 scope:global align:32
+int_hnw038_b_front_tex_txt = .data:0x007AF100; // type:object size:0x100 scope:global align:32
+int_hnw038_v = .data:0x007AF200; // type:object size:0x470 scope:global align:8
+int_hnw038_chest_model = .data:0x007AF670; // type:object size:0xF0 scope:global align:8
+int_hnw038_armR_model = .data:0x007AF760; // type:object size:0x80 scope:global align:8
+int_hnw038_armL_model = .data:0x007AF7E0; // type:object size:0x80 scope:global align:8
+int_hnw038_base_model = .data:0x007AF860; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw038_tbl = .data:0x007AF8E8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw038_tbl = .data:0x007AF8F0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw038_tbl = .data:0x007AF910; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw038_tbl = .data:0x007AF924; // type:object size:0x17A scope:global align:4
+cKF_ba_r_int_hnw038 = .data:0x007AFAA0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw038_tbl = .data:0x007AFAB4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw038 = .data:0x007AFB08; // type:object size:0x8 scope:global align:4
+int_hnw039_pal = .data:0x007AFB20; // type:object size:0x20 scope:global align:32
+int_hnw039_arm_tex_txt = .data:0x007AFB40; // type:object size:0x100 scope:global align:32
+int_hnw039_armtop_tex_txt = .data:0x007AFC40; // type:object size:0x80 scope:global align:32
+int_hnw039_c_front_tex_txt = .data:0x007AFCC0; // type:object size:0x300 scope:global align:32
+int_hnw039_c_back_tex_txt = .data:0x007AFFC0; // type:object size:0x180 scope:global align:32
+int_hnw039_b_back_tex_txt = .data:0x007B0140; // type:object size:0x80 scope:global align:32
+int_hnw039_b_front_tex_txt = .data:0x007B01C0; // type:object size:0x100 scope:global align:32
+int_hnw039_v = .data:0x007B02C0; // type:object size:0x470 scope:global align:8
+int_hnw039_chest_model = .data:0x007B0730; // type:object size:0xD0 scope:global align:8
+int_hnw039_armR_model = .data:0x007B0800; // type:object size:0x80 scope:global align:8
+int_hnw039_armL_model = .data:0x007B0880; // type:object size:0x80 scope:global align:8
+int_hnw039_base_model = .data:0x007B0900; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw039_tbl = .data:0x007B0978; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw039_tbl = .data:0x007B0980; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw039_tbl = .data:0x007B09A0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw039_tbl = .data:0x007B09B4; // type:object size:0x186 scope:global align:4
+cKF_ba_r_int_hnw039 = .data:0x007B0B3C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw039_tbl = .data:0x007B0B50; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw039 = .data:0x007B0BA4; // type:object size:0x8 scope:global align:4
+int_hnw040_pal = .data:0x007B0BC0; // type:object size:0x20 scope:global align:32
+int_hnw040_c_front_tex_txt = .data:0x007B0BE0; // type:object size:0x300 scope:global align:32
+int_hnw040_c_back_tex_txt = .data:0x007B0EE0; // type:object size:0x180 scope:global align:32
+int_hnw040_arm_tex_txt = .data:0x007B1060; // type:object size:0x100 scope:global align:32
+int_hnw040_armtop_tex_txt = .data:0x007B1160; // type:object size:0x80 scope:global align:32
+int_hnw040_b_back_tex_txt = .data:0x007B11E0; // type:object size:0x80 scope:global align:32
+int_hnw040_b_front_tex_txt = .data:0x007B1260; // type:object size:0x100 scope:global align:32
+int_hnw040_v = .data:0x007B1360; // type:object size:0x470 scope:global align:8
+int_hnw040_chest_model = .data:0x007B17D0; // type:object size:0xF0 scope:global align:8
+int_hnw040_armR_model = .data:0x007B18C0; // type:object size:0x80 scope:global align:8
+int_hnw040_armL_model = .data:0x007B1940; // type:object size:0x80 scope:global align:8
+int_hnw040_base_model = .data:0x007B19C0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw040_tbl = .data:0x007B1A48; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw040_tbl = .data:0x007B1A50; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw040_tbl = .data:0x007B1A70; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw040_tbl = .data:0x007B1A84; // type:object size:0x186 scope:global align:4
+cKF_ba_r_int_hnw040 = .data:0x007B1C0C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw040_tbl = .data:0x007B1C20; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw040 = .data:0x007B1C74; // type:object size:0x8 scope:global align:4
+int_hnw041_pal = .data:0x007B1C80; // type:object size:0x20 scope:global align:32
+int_hnw041_arm_tex_txt = .data:0x007B1CA0; // type:object size:0x100 scope:global align:32
+int_hnw041_armtop_tex_txt = .data:0x007B1DA0; // type:object size:0x80 scope:global align:32
+int_hnw041_c_front_tex_txt = .data:0x007B1E20; // type:object size:0x300 scope:global align:32
+int_hnw041_c_back_tex_txt = .data:0x007B2120; // type:object size:0x180 scope:global align:32
+int_hnw041_b_back_tex_txt = .data:0x007B22A0; // type:object size:0x80 scope:global align:32
+int_hnw041_b_front_tex_txt = .data:0x007B2320; // type:object size:0x100 scope:global align:32
+int_hnw041_v = .data:0x007B2420; // type:object size:0x470 scope:global align:8
+int_hnw041_chest_model = .data:0x007B2890; // type:object size:0xD0 scope:global align:8
+int_hnw041_armR_model = .data:0x007B2960; // type:object size:0x80 scope:global align:8
+int_hnw041_armL_model = .data:0x007B29E0; // type:object size:0x80 scope:global align:8
+int_hnw041_base_model = .data:0x007B2A60; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw041_tbl = .data:0x007B2AD8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw041_tbl = .data:0x007B2AE0; // type:object size:0x16 scope:global align:4
+cKF_c_int_hnw041_tbl = .data:0x007B2AF8; // type:object size:0x1A scope:global align:4
+cKF_ds_int_hnw041_tbl = .data:0x007B2B14; // type:object size:0x174 scope:global align:4
+cKF_ba_r_int_hnw041 = .data:0x007B2C88; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw041_tbl = .data:0x007B2C9C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw041 = .data:0x007B2CF0; // type:object size:0x8 scope:global align:4
+int_hnw042_pal = .data:0x007B2D00; // type:object size:0x20 scope:global align:32
+int_hnw042_arm_tex_txt = .data:0x007B2D20; // type:object size:0x100 scope:global align:32
+int_hnw042_armtop_tex_txt = .data:0x007B2E20; // type:object size:0x80 scope:global align:32
+int_hnw042_c_front_tex_txt = .data:0x007B2EA0; // type:object size:0x300 scope:global align:32
+int_hnw042_c_back_tex_txt = .data:0x007B31A0; // type:object size:0x180 scope:global align:32
+int_hnw042_b_back_tex_txt = .data:0x007B3320; // type:object size:0x80 scope:global align:32
+int_hnw042_b_front_tex_txt = .data:0x007B33A0; // type:object size:0x100 scope:global align:32
+int_hnw042_v = .data:0x007B34A0; // type:object size:0x470 scope:global align:8
+int_hnw042_chest_model = .data:0x007B3910; // type:object size:0xD0 scope:global align:8
+int_hnw042_armR_model = .data:0x007B39E0; // type:object size:0x80 scope:global align:8
+int_hnw042_armL_model = .data:0x007B3A60; // type:object size:0x80 scope:global align:8
+int_hnw042_base_model = .data:0x007B3AE0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw042_tbl = .data:0x007B3B58; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw042_tbl = .data:0x007B3B60; // type:object size:0xA scope:global align:4
+cKF_c_int_hnw042_tbl = .data:0x007B3B6C; // type:object size:0x26 scope:global align:4
+cKF_ds_int_hnw042_tbl = .data:0x007B3B94; // type:object size:0x126 scope:global align:4
+cKF_ba_r_int_hnw042 = .data:0x007B3CBC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw042_tbl = .data:0x007B3CD0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw042 = .data:0x007B3D24; // type:object size:0x8 scope:global align:4
+int_hnw043_pal = .data:0x007B3D40; // type:object size:0x20 scope:global align:32
+int_hnw043_arm_tex_txt = .data:0x007B3D60; // type:object size:0x100 scope:global align:32
+int_hnw043_armtop_tex_txt = .data:0x007B3E60; // type:object size:0x80 scope:global align:32
+int_hnw043_c_front_tex_txt = .data:0x007B3EE0; // type:object size:0x300 scope:global align:32
+int_hnw043_c_back_tex_txt = .data:0x007B41E0; // type:object size:0x180 scope:global align:32
+int_hnw043_b_back_tex_txt = .data:0x007B4360; // type:object size:0x80 scope:global align:32
+int_hnw043_b_front_tex_txt = .data:0x007B43E0; // type:object size:0x100 scope:global align:32
+int_hnw043_v = .data:0x007B44E0; // type:object size:0x470 scope:global align:8
+int_hnw043_chest_model = .data:0x007B4950; // type:object size:0xD0 scope:global align:8
+int_hnw043_armR_model = .data:0x007B4A20; // type:object size:0x80 scope:global align:8
+int_hnw043_armL_model = .data:0x007B4AA0; // type:object size:0x80 scope:global align:8
+int_hnw043_base_model = .data:0x007B4B20; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw043_tbl = .data:0x007B4B98; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw043_tbl = .data:0x007B4BA0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw043_tbl = .data:0x007B4BC0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw043_tbl = .data:0x007B4BD4; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw043 = .data:0x007B4CC4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw043_tbl = .data:0x007B4CD8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw043 = .data:0x007B4D2C; // type:object size:0x8 scope:global align:4
+int_hnw044_pal = .data:0x007B4D40; // type:object size:0x20 scope:global align:32
+int_hnw044_arm_tex_txt = .data:0x007B4D60; // type:object size:0x100 scope:global align:32
+int_hnw044_armtop_tex_txt = .data:0x007B4E60; // type:object size:0x80 scope:global align:32
+int_hnw044_c_front_tex_txt = .data:0x007B4EE0; // type:object size:0x300 scope:global align:32
+int_hnw044_c_back_tex_txt = .data:0x007B51E0; // type:object size:0x180 scope:global align:32
+int_hnw044_b_back_tex_txt = .data:0x007B5360; // type:object size:0x80 scope:global align:32
+int_hnw044_b_front_tex_txt = .data:0x007B53E0; // type:object size:0x100 scope:global align:32
+int_hnw044_v = .data:0x007B54E0; // type:object size:0x470 scope:global align:8
+int_hnw044_chest_model = .data:0x007B5950; // type:object size:0xD0 scope:global align:8
+int_hnw044_armR_model = .data:0x007B5A20; // type:object size:0x80 scope:global align:8
+int_hnw044_armL_model = .data:0x007B5AA0; // type:object size:0x80 scope:global align:8
+int_hnw044_base_model = .data:0x007B5B20; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw044_tbl = .data:0x007B5B98; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw044_tbl = .data:0x007B5BA0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw044_tbl = .data:0x007B5BC0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw044_tbl = .data:0x007B5BD4; // type:object size:0x102 scope:global align:4
+cKF_ba_r_int_hnw044 = .data:0x007B5CD8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw044_tbl = .data:0x007B5CEC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw044 = .data:0x007B5D40; // type:object size:0x8 scope:global align:4
+int_hnw045_pal = .data:0x007B5D60; // type:object size:0x20 scope:global align:32
+int_hnw045_c_front_tex_txt = .data:0x007B5D80; // type:object size:0x300 scope:global align:32
+int_hnw045_c_back_tex_txt = .data:0x007B6080; // type:object size:0x180 scope:global align:32
+int_hnw045_arm_tex_txt = .data:0x007B6200; // type:object size:0x100 scope:global align:32
+int_hnw045_armtop_tex_txt = .data:0x007B6300; // type:object size:0x80 scope:global align:32
+int_hnw045_b_back_tex_txt = .data:0x007B6380; // type:object size:0x80 scope:global align:32
+int_hnw045_b_front_tex_txt = .data:0x007B6400; // type:object size:0x100 scope:global align:32
+int_hnw045_v = .data:0x007B6500; // type:object size:0x470 scope:global align:8
+int_hnw045_chest_model = .data:0x007B6970; // type:object size:0xF0 scope:global align:8
+int_hnw045_armR_model = .data:0x007B6A60; // type:object size:0x80 scope:global align:8
+int_hnw045_armL_model = .data:0x007B6AE0; // type:object size:0x80 scope:global align:8
+int_hnw045_base_model = .data:0x007B6B60; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw045_tbl = .data:0x007B6BE8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw045_tbl = .data:0x007B6BF0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw045_tbl = .data:0x007B6C10; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw045_tbl = .data:0x007B6C24; // type:object size:0xE4 scope:global align:4
+cKF_ba_r_int_hnw045 = .data:0x007B6D08; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw045_tbl = .data:0x007B6D1C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw045 = .data:0x007B6D70; // type:object size:0x8 scope:global align:4
+int_hnw046_pal = .data:0x007B6D80; // type:object size:0x20 scope:global align:32
+int_hnw046_arm_tex_txt = .data:0x007B6DA0; // type:object size:0x100 scope:global align:32
+int_hnw046_armtop_tex_txt = .data:0x007B6EA0; // type:object size:0x80 scope:global align:32
+int_hnw046_c_front_tex_txt = .data:0x007B6F20; // type:object size:0x300 scope:global align:32
+int_hnw046_c_back_tex_txt = .data:0x007B7220; // type:object size:0x180 scope:global align:32
+int_hnw046_b_back_tex_txt = .data:0x007B73A0; // type:object size:0x80 scope:global align:32
+int_hnw046_b_front_tex_txt = .data:0x007B7420; // type:object size:0x100 scope:global align:32
+int_hnw046_v = .data:0x007B7520; // type:object size:0x470 scope:global align:8
+int_hnw046_chest_model = .data:0x007B7990; // type:object size:0xD0 scope:global align:8
+int_hnw046_armR_model = .data:0x007B7A60; // type:object size:0x80 scope:global align:8
+int_hnw046_armL_model = .data:0x007B7AE0; // type:object size:0x80 scope:global align:8
+int_hnw046_base_model = .data:0x007B7B60; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw046_tbl = .data:0x007B7BD8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw046_tbl = .data:0x007B7BE0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw046_tbl = .data:0x007B7C00; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw046_tbl = .data:0x007B7C14; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw046 = .data:0x007B7D00; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw046_tbl = .data:0x007B7D14; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw046 = .data:0x007B7D68; // type:object size:0x8 scope:global align:4
+int_hnw047_pal = .data:0x007B7D80; // type:object size:0x20 scope:global align:32
+int_hnw047_arm_tex_txt = .data:0x007B7DA0; // type:object size:0x100 scope:global align:32
+int_hnw047_armtop_tex_txt = .data:0x007B7EA0; // type:object size:0x80 scope:global align:32
+int_hnw047_c_front_tex_txt = .data:0x007B7F20; // type:object size:0x300 scope:global align:32
+int_hnw047_c_back_tex_txt = .data:0x007B8220; // type:object size:0x180 scope:global align:32
+int_hnw047_antena_tex_txt = .data:0x007B83A0; // type:object size:0x80 scope:global align:32
+int_hnw047_b_back_tex_txt = .data:0x007B8420; // type:object size:0x80 scope:global align:32
+int_hnw047_b_front_tex_txt = .data:0x007B84A0; // type:object size:0x100 scope:global align:32
+int_hnw047_v = .data:0x007B85A0; // type:object size:0x4A0 scope:global align:8
+int_hnw047_chest_model = .data:0x007B8A40; // type:object size:0xF8 scope:global align:8
+int_hnw047_armR_model = .data:0x007B8B38; // type:object size:0x80 scope:global align:8
+int_hnw047_armL_model = .data:0x007B8BB8; // type:object size:0x80 scope:global align:8
+int_hnw047_base_model = .data:0x007B8C38; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw047_tbl = .data:0x007B8CB0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw047_tbl = .data:0x007B8CB8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw047_tbl = .data:0x007B8CD8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw047_tbl = .data:0x007B8CEC; // type:object size:0x156 scope:global align:4
+cKF_ba_r_int_hnw047 = .data:0x007B8E44; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw047_tbl = .data:0x007B8E58; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw047 = .data:0x007B8EAC; // type:object size:0x8 scope:global align:4
+int_hnw048_pal = .data:0x007B8EC0; // type:object size:0x20 scope:global align:32
+int_hnw048_arm_tex_txt = .data:0x007B8EE0; // type:object size:0x100 scope:global align:32
+int_hnw048_armtop_tex_txt = .data:0x007B8FE0; // type:object size:0x80 scope:global align:32
+int_hnw048_c_front_tex_txt = .data:0x007B9060; // type:object size:0x300 scope:global align:32
+int_hnw048_c_back_tex_txt = .data:0x007B9360; // type:object size:0x180 scope:global align:32
+int_hnw048_antena_tex_txt = .data:0x007B94E0; // type:object size:0x80 scope:global align:32
+int_hnw048_b_back_tex_txt = .data:0x007B9560; // type:object size:0x80 scope:global align:32
+int_hnw048_b_front_tex_txt = .data:0x007B95E0; // type:object size:0x100 scope:global align:32
+int_hnw048_v = .data:0x007B96E0; // type:object size:0x4A0 scope:global align:8
+int_hnw048_chest_model = .data:0x007B9B80; // type:object size:0xF8 scope:global align:8
+int_hnw048_armR_model = .data:0x007B9C78; // type:object size:0x80 scope:global align:8
+int_hnw048_armL_model = .data:0x007B9CF8; // type:object size:0x80 scope:global align:8
+int_hnw048_base_model = .data:0x007B9D78; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw048_tbl = .data:0x007B9DF0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw048_tbl = .data:0x007B9DF8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw048_tbl = .data:0x007B9E18; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw048_tbl = .data:0x007B9E2C; // type:object size:0x1DA scope:global align:4
+cKF_ba_r_int_hnw048 = .data:0x007BA008; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw048_tbl = .data:0x007BA01C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw048 = .data:0x007BA070; // type:object size:0x8 scope:global align:4
+int_hnw049_pal = .data:0x007BA080; // type:object size:0x20 scope:global align:32
+int_hnw049_arm_tex_txt = .data:0x007BA0A0; // type:object size:0x100 scope:global align:32
+int_hnw049_armtop_tex_txt = .data:0x007BA1A0; // type:object size:0x80 scope:global align:32
+int_hnw049_c_front_tex_txt = .data:0x007BA220; // type:object size:0x300 scope:global align:32
+int_hnw049_c_back_tex_txt = .data:0x007BA520; // type:object size:0x180 scope:global align:32
+int_hnw049_antena_tex_txt = .data:0x007BA6A0; // type:object size:0x80 scope:global align:32
+int_hnw049_b_back_tex_txt = .data:0x007BA720; // type:object size:0x80 scope:global align:32
+int_hnw049_b_front_tex_txt = .data:0x007BA7A0; // type:object size:0x100 scope:global align:32
+int_hnw049_v = .data:0x007BA8A0; // type:object size:0x4A0 scope:global align:8
+int_hnw049_chest_model = .data:0x007BAD40; // type:object size:0xF8 scope:global align:8
+int_hnw049_armR_model = .data:0x007BAE38; // type:object size:0x80 scope:global align:8
+int_hnw049_armL_model = .data:0x007BAEB8; // type:object size:0x80 scope:global align:8
+int_hnw049_base_model = .data:0x007BAF38; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw049_tbl = .data:0x007BAFB0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw049_tbl = .data:0x007BAFB8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw049_tbl = .data:0x007BAFD8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw049_tbl = .data:0x007BAFEC; // type:object size:0x1D4 scope:global align:4
+cKF_ba_r_int_hnw049 = .data:0x007BB1C0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw049_tbl = .data:0x007BB1D4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw049 = .data:0x007BB228; // type:object size:0x8 scope:global align:4
+int_hnw050_pal = .data:0x007BB240; // type:object size:0x20 scope:global align:32
+int_hnw050_arm_tex_txt = .data:0x007BB260; // type:object size:0x100 scope:global align:32
+int_hnw050_armtop_tex_txt = .data:0x007BB360; // type:object size:0x80 scope:global align:32
+int_hnw050_c_front_tex_txt = .data:0x007BB3E0; // type:object size:0x300 scope:global align:32
+int_hnw050_c_back_tex_txt = .data:0x007BB6E0; // type:object size:0x180 scope:global align:32
+int_hnw050_antena_tex_txt = .data:0x007BB860; // type:object size:0x80 scope:global align:32
+int_hnw050_b_back_tex_txt = .data:0x007BB8E0; // type:object size:0x80 scope:global align:32
+int_hnw050_b_front_tex_txt = .data:0x007BB960; // type:object size:0x100 scope:global align:32
+int_hnw050_v = .data:0x007BBA60; // type:object size:0x4A0 scope:global align:8
+int_hnw050_chest_model = .data:0x007BBF00; // type:object size:0xF8 scope:global align:8
+int_hnw050_armR_model = .data:0x007BBFF8; // type:object size:0x80 scope:global align:8
+int_hnw050_armL_model = .data:0x007BC078; // type:object size:0x80 scope:global align:8
+int_hnw050_base_model = .data:0x007BC0F8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw050_tbl = .data:0x007BC170; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw050_tbl = .data:0x007BC178; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw050_tbl = .data:0x007BC198; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw050_tbl = .data:0x007BC1AC; // type:object size:0x17A scope:global align:4
+cKF_ba_r_int_hnw050 = .data:0x007BC328; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw050_tbl = .data:0x007BC33C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw050 = .data:0x007BC390; // type:object size:0x8 scope:global align:4
+int_hnw051_pal = .data:0x007BC3A0; // type:object size:0x20 scope:global align:32
+int_hnw051_arm_tex_txt = .data:0x007BC3C0; // type:object size:0x100 scope:global align:32
+int_hnw051_armtop_tex_txt = .data:0x007BC4C0; // type:object size:0x80 scope:global align:32
+int_hnw051_c_front_tex_txt = .data:0x007BC540; // type:object size:0x300 scope:global align:32
+int_hnw051_c_back_tex_txt = .data:0x007BC840; // type:object size:0x180 scope:global align:32
+int_hnw051_antena_tex_txt = .data:0x007BC9C0; // type:object size:0x80 scope:global align:32
+int_hnw051_b_back_tex_txt = .data:0x007BCA40; // type:object size:0x80 scope:global align:32
+int_hnw051_b_front_tex_txt = .data:0x007BCAC0; // type:object size:0x100 scope:global align:32
+int_hnw051_v = .data:0x007BCBC0; // type:object size:0x4A0 scope:global align:8
+int_hnw051_chest_model = .data:0x007BD060; // type:object size:0xF8 scope:global align:8
+int_hnw051_armR_model = .data:0x007BD158; // type:object size:0x80 scope:global align:8
+int_hnw051_armL_model = .data:0x007BD1D8; // type:object size:0x80 scope:global align:8
+int_hnw051_base_model = .data:0x007BD258; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw051_tbl = .data:0x007BD2D0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw051_tbl = .data:0x007BD2D8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw051_tbl = .data:0x007BD2F8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw051_tbl = .data:0x007BD30C; // type:object size:0x1AA scope:global align:4
+cKF_ba_r_int_hnw051 = .data:0x007BD4B8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw051_tbl = .data:0x007BD4CC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw051 = .data:0x007BD520; // type:object size:0x8 scope:global align:4
+int_hnw052_pal = .data:0x007BD540; // type:object size:0x20 scope:global align:32
+int_hnw052_arm_tex_txt = .data:0x007BD560; // type:object size:0x100 scope:global align:32
+int_hnw052_armtop_tex_txt = .data:0x007BD660; // type:object size:0x80 scope:global align:32
+int_hnw052_c_front_tex_txt = .data:0x007BD6E0; // type:object size:0x300 scope:global align:32
+int_hnw052_c_back_tex_txt = .data:0x007BD9E0; // type:object size:0x180 scope:global align:32
+int_hnw052_b_back_tex_txt = .data:0x007BDB60; // type:object size:0x80 scope:global align:32
+int_hnw052_b_front_tex_txt = .data:0x007BDBE0; // type:object size:0x100 scope:global align:32
+int_hnw052_v = .data:0x007BDCE0; // type:object size:0x470 scope:global align:8
+int_hnw052_chest_model = .data:0x007BE150; // type:object size:0xD0 scope:global align:8
+int_hnw052_armR_model = .data:0x007BE220; // type:object size:0x80 scope:global align:8
+int_hnw052_armL_model = .data:0x007BE2A0; // type:object size:0x80 scope:global align:8
+int_hnw052_base_model = .data:0x007BE320; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw052_tbl = .data:0x007BE398; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw052_tbl = .data:0x007BE3A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw052_tbl = .data:0x007BE3C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw052_tbl = .data:0x007BE3D4; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw052 = .data:0x007BE4DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw052_tbl = .data:0x007BE4F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw052 = .data:0x007BE544; // type:object size:0x8 scope:global align:4
+int_hnw053_pal = .data:0x007BE560; // type:object size:0x20 scope:global align:32
+int_hnw053_c_front_tex_txt = .data:0x007BE580; // type:object size:0x300 scope:global align:32
+int_hnw053_c_back_tex_txt = .data:0x007BE880; // type:object size:0x180 scope:global align:32
+int_hnw053_arm_tex_txt = .data:0x007BEA00; // type:object size:0x100 scope:global align:32
+int_hnw053_armtop_tex_txt = .data:0x007BEB00; // type:object size:0x80 scope:global align:32
+int_hnw053_b_back_tex_txt = .data:0x007BEB80; // type:object size:0x80 scope:global align:32
+int_hnw053_b_front_tex_txt = .data:0x007BEC00; // type:object size:0x100 scope:global align:32
+int_hnw053_v = .data:0x007BED00; // type:object size:0x470 scope:global align:8
+int_hnw053_chest_model = .data:0x007BF170; // type:object size:0xF0 scope:global align:8
+int_hnw053_armR_model = .data:0x007BF260; // type:object size:0x80 scope:global align:8
+int_hnw053_armL_model = .data:0x007BF2E0; // type:object size:0x80 scope:global align:8
+int_hnw053_base_model = .data:0x007BF360; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw053_tbl = .data:0x007BF3E8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw053_tbl = .data:0x007BF3F0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw053_tbl = .data:0x007BF410; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw053_tbl = .data:0x007BF424; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw053 = .data:0x007BF52C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw053_tbl = .data:0x007BF540; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw053 = .data:0x007BF594; // type:object size:0x8 scope:global align:4
+int_hnw054_pal = .data:0x007BF5A0; // type:object size:0x20 scope:global align:32
+int_hnw054_arm_tex_txt = .data:0x007BF5C0; // type:object size:0x100 scope:global align:32
+int_hnw054_armtop_tex_txt = .data:0x007BF6C0; // type:object size:0x80 scope:global align:32
+int_hnw054_c_front_tex_txt = .data:0x007BF740; // type:object size:0x300 scope:global align:32
+int_hnw054_c_back_tex_txt = .data:0x007BFA40; // type:object size:0x180 scope:global align:32
+int_hnw054_b_back_tex_txt = .data:0x007BFBC0; // type:object size:0x80 scope:global align:32
+int_hnw054_b_front_tex_txt = .data:0x007BFC40; // type:object size:0x100 scope:global align:32
+int_hnw054_v = .data:0x007BFD40; // type:object size:0x470 scope:global align:8
+int_hnw054_chest_model = .data:0x007C01B0; // type:object size:0xD0 scope:global align:8
+int_hnw054_armR_model = .data:0x007C0280; // type:object size:0x80 scope:global align:8
+int_hnw054_armL_model = .data:0x007C0300; // type:object size:0x80 scope:global align:8
+int_hnw054_base_model = .data:0x007C0380; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw054_tbl = .data:0x007C03F8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw054_tbl = .data:0x007C0400; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw054_tbl = .data:0x007C0420; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw054_tbl = .data:0x007C0434; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw054 = .data:0x007C0524; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw054_tbl = .data:0x007C0538; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw054 = .data:0x007C058C; // type:object size:0x8 scope:global align:4
+int_hnw055_pal = .data:0x007C05A0; // type:object size:0x20 scope:global align:32
+int_hnw055_arm_tex_txt = .data:0x007C05C0; // type:object size:0x100 scope:global align:32
+int_hnw055_armtop_tex_txt = .data:0x007C06C0; // type:object size:0x80 scope:global align:32
+int_hnw055_c_front_tex_txt = .data:0x007C0740; // type:object size:0x300 scope:global align:32
+int_hnw055_c_back_tex_txt = .data:0x007C0A40; // type:object size:0x180 scope:global align:32
+int_hnw055_antena_tex_txt = .data:0x007C0BC0; // type:object size:0x80 scope:global align:32
+int_hnw055_b_back_tex_txt = .data:0x007C0C40; // type:object size:0x80 scope:global align:32
+int_hnw055_b_front_tex_txt = .data:0x007C0CC0; // type:object size:0x100 scope:global align:32
+int_hnw055_v = .data:0x007C0DC0; // type:object size:0x4A0 scope:global align:8
+int_hnw055_chest_model = .data:0x007C1260; // type:object size:0xF8 scope:global align:8
+int_hnw055_armR_model = .data:0x007C1358; // type:object size:0x80 scope:global align:8
+int_hnw055_armL_model = .data:0x007C13D8; // type:object size:0x80 scope:global align:8
+int_hnw055_base_model = .data:0x007C1458; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw055_tbl = .data:0x007C14D0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw055_tbl = .data:0x007C14D8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw055_tbl = .data:0x007C14F8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw055_tbl = .data:0x007C150C; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw055 = .data:0x007C15FC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw055_tbl = .data:0x007C1610; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw055 = .data:0x007C1664; // type:object size:0x8 scope:global align:4
+int_hnw056_pal = .data:0x007C1680; // type:object size:0x20 scope:global align:32
+int_hnw056_arm_tex_txt = .data:0x007C16A0; // type:object size:0x100 scope:global align:32
+int_hnw056_armtop_tex_txt = .data:0x007C17A0; // type:object size:0x80 scope:global align:32
+int_hnw056_c_front_tex_txt = .data:0x007C1820; // type:object size:0x300 scope:global align:32
+int_hnw056_c_back_tex_txt = .data:0x007C1B20; // type:object size:0x180 scope:global align:32
+int_hnw056_antena_tex_txt = .data:0x007C1CA0; // type:object size:0x80 scope:global align:32
+int_hnw056_b_back_tex_txt = .data:0x007C1D20; // type:object size:0x80 scope:global align:32
+int_hnw056_b_front_tex_txt = .data:0x007C1DA0; // type:object size:0x100 scope:global align:32
+int_hnw056_v = .data:0x007C1EA0; // type:object size:0x4A0 scope:global align:8
+int_hnw056_chest_model = .data:0x007C2340; // type:object size:0xF8 scope:global align:8
+int_hnw056_armR_model = .data:0x007C2438; // type:object size:0x80 scope:global align:8
+int_hnw056_armL_model = .data:0x007C24B8; // type:object size:0x80 scope:global align:8
+int_hnw056_base_model = .data:0x007C2538; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw056_tbl = .data:0x007C25B0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw056_tbl = .data:0x007C25B8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw056_tbl = .data:0x007C25D8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw056_tbl = .data:0x007C25EC; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw056 = .data:0x007C26DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw056_tbl = .data:0x007C26F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw056 = .data:0x007C2744; // type:object size:0x8 scope:global align:4
+int_hnw057_pal = .data:0x007C2760; // type:object size:0x20 scope:global align:32
+int_hnw057_arm_tex_txt = .data:0x007C2780; // type:object size:0x100 scope:global align:32
+int_hnw057_armtop_tex_txt = .data:0x007C2880; // type:object size:0x80 scope:global align:32
+int_hnw057_c_front_tex_txt = .data:0x007C2900; // type:object size:0x300 scope:global align:32
+int_hnw057_c_back_tex_txt = .data:0x007C2C00; // type:object size:0x180 scope:global align:32
+int_hnw057_antena_tex_txt = .data:0x007C2D80; // type:object size:0x80 scope:global align:32
+int_hnw057_b_back_tex_txt = .data:0x007C2E00; // type:object size:0x80 scope:global align:32
+int_hnw057_b_front_tex_txt = .data:0x007C2E80; // type:object size:0x100 scope:global align:32
+int_hnw057_v = .data:0x007C2F80; // type:object size:0x4A0 scope:global align:8
+int_hnw057_chest_model = .data:0x007C3420; // type:object size:0xF8 scope:global align:8
+int_hnw057_armR_model = .data:0x007C3518; // type:object size:0x80 scope:global align:8
+int_hnw057_armL_model = .data:0x007C3598; // type:object size:0x80 scope:global align:8
+int_hnw057_base_model = .data:0x007C3618; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw057_tbl = .data:0x007C3690; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw057_tbl = .data:0x007C3698; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw057_tbl = .data:0x007C36B8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw057_tbl = .data:0x007C36CC; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw057 = .data:0x007C37D4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw057_tbl = .data:0x007C37E8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw057 = .data:0x007C383C; // type:object size:0x8 scope:global align:4
+int_hnw058_pal = .data:0x007C3860; // type:object size:0x20 scope:global align:32
+int_hnw058_arm_tex_txt = .data:0x007C3880; // type:object size:0x100 scope:global align:32
+int_hnw058_armtop_tex_txt = .data:0x007C3980; // type:object size:0x80 scope:global align:32
+int_hnw058_c_front_tex_txt = .data:0x007C3A00; // type:object size:0x300 scope:global align:32
+int_hnw058_c_back_tex_txt = .data:0x007C3D00; // type:object size:0x180 scope:global align:32
+int_hnw058_b_back_tex_txt = .data:0x007C3E80; // type:object size:0x80 scope:global align:32
+int_hnw058_b_front_tex_txt = .data:0x007C3F00; // type:object size:0x100 scope:global align:32
+int_hnw058_v = .data:0x007C4000; // type:object size:0x470 scope:global align:8
+int_hnw058_chest_model = .data:0x007C4470; // type:object size:0xD0 scope:global align:8
+int_hnw058_armR_model = .data:0x007C4540; // type:object size:0x80 scope:global align:8
+int_hnw058_armL_model = .data:0x007C45C0; // type:object size:0x80 scope:global align:8
+int_hnw058_base_model = .data:0x007C4640; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw058_tbl = .data:0x007C46B8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw058_tbl = .data:0x007C46C0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw058_tbl = .data:0x007C46E0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw058_tbl = .data:0x007C46F4; // type:object size:0x10E scope:global align:4
+cKF_ba_r_int_hnw058 = .data:0x007C4804; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw058_tbl = .data:0x007C4818; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw058 = .data:0x007C486C; // type:object size:0x8 scope:global align:4
+int_hnw059_pal = .data:0x007C4880; // type:object size:0x20 scope:global align:32
+int_hnw059_arm_tex_txt = .data:0x007C48A0; // type:object size:0x100 scope:global align:32
+int_hnw059_armtop_tex_txt = .data:0x007C49A0; // type:object size:0x80 scope:global align:32
+int_hnw059_c_front_tex_txt = .data:0x007C4A20; // type:object size:0x300 scope:global align:32
+int_hnw059_c_back_tex_txt = .data:0x007C4D20; // type:object size:0x180 scope:global align:32
+int_hnw059_b_back_tex_txt = .data:0x007C4EA0; // type:object size:0x80 scope:global align:32
+int_hnw059_b_front_tex_txt = .data:0x007C4F20; // type:object size:0x100 scope:global align:32
+int_hnw059_v = .data:0x007C5020; // type:object size:0x470 scope:global align:8
+int_hnw059_chest_model = .data:0x007C5490; // type:object size:0xD0 scope:global align:8
+int_hnw059_armR_model = .data:0x007C5560; // type:object size:0x80 scope:global align:8
+int_hnw059_armL_model = .data:0x007C55E0; // type:object size:0x80 scope:global align:8
+int_hnw059_base_model = .data:0x007C5660; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw059_tbl = .data:0x007C56D8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw059_tbl = .data:0x007C56E0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw059_tbl = .data:0x007C5700; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw059_tbl = .data:0x007C5714; // type:object size:0x186 scope:global align:4
+cKF_ba_r_int_hnw059 = .data:0x007C589C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw059_tbl = .data:0x007C58B0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw059 = .data:0x007C5904; // type:object size:0x8 scope:global align:4
+int_hnw060_pal = .data:0x007C5920; // type:object size:0x20 scope:global align:32
+int_hnw060_arm_tex_txt = .data:0x007C5940; // type:object size:0x100 scope:global align:32
+int_hnw060_armtop_tex_txt = .data:0x007C5A40; // type:object size:0x80 scope:global align:32
+int_hnw060_c_front_tex_txt = .data:0x007C5AC0; // type:object size:0x300 scope:global align:32
+int_hnw060_c_back_tex_txt = .data:0x007C5DC0; // type:object size:0x180 scope:global align:32
+int_hnw060_antena_tex_txt = .data:0x007C5F40; // type:object size:0x80 scope:global align:32
+int_hnw060_b_back_tex_txt = .data:0x007C5FC0; // type:object size:0x80 scope:global align:32
+int_hnw060_b_front_tex_txt = .data:0x007C6040; // type:object size:0x100 scope:global align:32
+int_hnw060_v = .data:0x007C6140; // type:object size:0x4A0 scope:global align:8
+int_hnw060_chest_model = .data:0x007C65E0; // type:object size:0xF8 scope:global align:8
+int_hnw060_armR_model = .data:0x007C66D8; // type:object size:0x80 scope:global align:8
+int_hnw060_armL_model = .data:0x007C6758; // type:object size:0x80 scope:global align:8
+int_hnw060_base_model = .data:0x007C67D8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw060_tbl = .data:0x007C6850; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw060_tbl = .data:0x007C6858; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw060_tbl = .data:0x007C6878; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw060_tbl = .data:0x007C688C; // type:object size:0x186 scope:global align:4
+cKF_ba_r_int_hnw060 = .data:0x007C6A14; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw060_tbl = .data:0x007C6A28; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw060 = .data:0x007C6A7C; // type:object size:0x8 scope:global align:4
+int_hnw061_pal = .data:0x007C6AA0; // type:object size:0x20 scope:global align:32
+int_hnw061_arm_tex_txt = .data:0x007C6AC0; // type:object size:0x100 scope:global align:32
+int_hnw061_armtop_tex_txt = .data:0x007C6BC0; // type:object size:0x80 scope:global align:32
+int_hnw061_c_front_tex_txt = .data:0x007C6C40; // type:object size:0x300 scope:global align:32
+int_hnw061_c_back_tex_txt = .data:0x007C6F40; // type:object size:0x180 scope:global align:32
+int_hnw061_antena_tex_txt = .data:0x007C70C0; // type:object size:0x80 scope:global align:32
+int_hnw061_b_back_tex_txt = .data:0x007C7140; // type:object size:0x80 scope:global align:32
+int_hnw061_b_front_tex_txt = .data:0x007C71C0; // type:object size:0x100 scope:global align:32
+int_hnw061_v = .data:0x007C72C0; // type:object size:0x4A0 scope:global align:8
+int_hnw061_chest_model = .data:0x007C7760; // type:object size:0xF8 scope:global align:8
+int_hnw061_armR_model = .data:0x007C7858; // type:object size:0x80 scope:global align:8
+int_hnw061_armL_model = .data:0x007C78D8; // type:object size:0x80 scope:global align:8
+int_hnw061_base_model = .data:0x007C7958; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw061_tbl = .data:0x007C79D0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw061_tbl = .data:0x007C79D8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw061_tbl = .data:0x007C79F8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw061_tbl = .data:0x007C7A0C; // type:object size:0x1B0 scope:global align:4
+cKF_ba_r_int_hnw061 = .data:0x007C7BBC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw061_tbl = .data:0x007C7BD0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw061 = .data:0x007C7C24; // type:object size:0x8 scope:global align:4
+int_hnw062_pal = .data:0x007C7C40; // type:object size:0x20 scope:global align:32
+int_hnw062_arm_tex_txt = .data:0x007C7C60; // type:object size:0x100 scope:global align:32
+int_hnw062_armtop_tex_txt = .data:0x007C7D60; // type:object size:0x80 scope:global align:32
+int_hnw062_c_front_tex_txt = .data:0x007C7DE0; // type:object size:0x300 scope:global align:32
+int_hnw062_c_back_tex_txt = .data:0x007C80E0; // type:object size:0x180 scope:global align:32
+int_hnw062_antena_tex_txt = .data:0x007C8260; // type:object size:0x80 scope:global align:32
+int_hnw062_b_back_tex_txt = .data:0x007C82E0; // type:object size:0x80 scope:global align:32
+int_hnw062_b_front_tex_txt = .data:0x007C8360; // type:object size:0x100 scope:global align:32
+int_hnw062_v = .data:0x007C8460; // type:object size:0x4A0 scope:global align:8
+int_hnw062_chest_model = .data:0x007C8900; // type:object size:0xF8 scope:global align:8
+int_hnw062_armR_model = .data:0x007C89F8; // type:object size:0x80 scope:global align:8
+int_hnw062_armL_model = .data:0x007C8A78; // type:object size:0x80 scope:global align:8
+int_hnw062_base_model = .data:0x007C8AF8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw062_tbl = .data:0x007C8B70; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw062_tbl = .data:0x007C8B78; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw062_tbl = .data:0x007C8B98; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw062_tbl = .data:0x007C8BAC; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw062 = .data:0x007C8CA8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw062_tbl = .data:0x007C8CBC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw062 = .data:0x007C8D10; // type:object size:0x8 scope:global align:4
+int_hnw063_pal = .data:0x007C8D20; // type:object size:0x20 scope:global align:32
+int_hnw063_arm_tex_txt = .data:0x007C8D40; // type:object size:0x100 scope:global align:32
+int_hnw063_armtop_tex_txt = .data:0x007C8E40; // type:object size:0x80 scope:global align:32
+int_hnw063_c_front_tex_txt = .data:0x007C8EC0; // type:object size:0x300 scope:global align:32
+int_hnw063_c_back_tex_txt = .data:0x007C91C0; // type:object size:0x180 scope:global align:32
+int_hnw063_antena_tex_txt = .data:0x007C9340; // type:object size:0x80 scope:global align:32
+int_hnw063_b_back_tex_txt = .data:0x007C93C0; // type:object size:0x80 scope:global align:32
+int_hnw063_b_front_tex_txt = .data:0x007C9440; // type:object size:0x100 scope:global align:32
+int_hnw063_v = .data:0x007C9540; // type:object size:0x4A0 scope:global align:8
+int_hnw063_chest_model = .data:0x007C99E0; // type:object size:0xF8 scope:global align:8
+int_hnw063_armR_model = .data:0x007C9AD8; // type:object size:0x80 scope:global align:8
+int_hnw063_armL_model = .data:0x007C9B58; // type:object size:0x80 scope:global align:8
+int_hnw063_base_model = .data:0x007C9BD8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw063_tbl = .data:0x007C9C50; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw063_tbl = .data:0x007C9C58; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw063_tbl = .data:0x007C9C78; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw063_tbl = .data:0x007C9C8C; // type:object size:0x102 scope:global align:4
+cKF_ba_r_int_hnw063 = .data:0x007C9D90; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw063_tbl = .data:0x007C9DA4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw063 = .data:0x007C9DF8; // type:object size:0x8 scope:global align:4
+int_hnw064_pal = .data:0x007C9E00; // type:object size:0x20 scope:global align:32
+int_hnw064_arm_tex_txt = .data:0x007C9E20; // type:object size:0x100 scope:global align:32
+int_hnw064_armtop_tex_txt = .data:0x007C9F20; // type:object size:0x80 scope:global align:32
+int_hnw064_c_front_tex_txt = .data:0x007C9FA0; // type:object size:0x300 scope:global align:32
+int_hnw064_c_back_tex_txt = .data:0x007CA2A0; // type:object size:0x180 scope:global align:32
+int_hnw064_antena_tex_txt = .data:0x007CA420; // type:object size:0x80 scope:global align:32
+int_hnw064_b_back_tex_txt = .data:0x007CA4A0; // type:object size:0x80 scope:global align:32
+int_hnw064_b_front_tex_txt = .data:0x007CA520; // type:object size:0x100 scope:global align:32
+int_hnw064_v = .data:0x007CA620; // type:object size:0x4A0 scope:global align:8
+int_hnw064_chest_model = .data:0x007CAAC0; // type:object size:0xF8 scope:global align:8
+int_hnw064_armR_model = .data:0x007CABB8; // type:object size:0x80 scope:global align:8
+int_hnw064_armL_model = .data:0x007CAC38; // type:object size:0x80 scope:global align:8
+int_hnw064_base_model = .data:0x007CACB8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw064_tbl = .data:0x007CAD30; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw064_tbl = .data:0x007CAD38; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw064_tbl = .data:0x007CAD58; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw064_tbl = .data:0x007CAD6C; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw064 = .data:0x007CAE74; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw064_tbl = .data:0x007CAE88; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw064 = .data:0x007CAEDC; // type:object size:0x8 scope:global align:4
+int_hnw065_pal = .data:0x007CAF00; // type:object size:0x20 scope:global align:32
+int_hnw065_arm_tex_txt = .data:0x007CAF20; // type:object size:0x100 scope:global align:32
+int_hnw065_armtop_tex_txt = .data:0x007CB020; // type:object size:0x80 scope:global align:32
+int_hnw065_c_front_tex_txt = .data:0x007CB0A0; // type:object size:0x300 scope:global align:32
+int_hnw065_c_back_tex_txt = .data:0x007CB3A0; // type:object size:0x180 scope:global align:32
+int_hnw065_antena_tex_txt = .data:0x007CB520; // type:object size:0x80 scope:global align:32
+int_hnw065_b_back_tex_txt = .data:0x007CB5A0; // type:object size:0x80 scope:global align:32
+int_hnw065_b_front_tex_txt = .data:0x007CB620; // type:object size:0x100 scope:global align:32
+int_hnw065_v = .data:0x007CB720; // type:object size:0x4A0 scope:global align:8
+int_hnw065_chest_model = .data:0x007CBBC0; // type:object size:0xF8 scope:global align:8
+int_hnw065_armR_model = .data:0x007CBCB8; // type:object size:0x80 scope:global align:8
+int_hnw065_armL_model = .data:0x007CBD38; // type:object size:0x80 scope:global align:8
+int_hnw065_base_model = .data:0x007CBDB8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw065_tbl = .data:0x007CBE30; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw065_tbl = .data:0x007CBE38; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw065_tbl = .data:0x007CBE58; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw065_tbl = .data:0x007CBE6C; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw065 = .data:0x007CBF5C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw065_tbl = .data:0x007CBF70; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw065 = .data:0x007CBFC4; // type:object size:0x8 scope:global align:4
+int_hnw066_pal = .data:0x007CBFE0; // type:object size:0x20 scope:global align:32
+int_hnw066_arm_tex_txt = .data:0x007CC000; // type:object size:0x100 scope:global align:32
+int_hnw066_armtop_tex_txt = .data:0x007CC100; // type:object size:0x80 scope:global align:32
+int_hnw066_c_front_tex_txt = .data:0x007CC180; // type:object size:0x300 scope:global align:32
+int_hnw066_c_back_tex_txt = .data:0x007CC480; // type:object size:0x180 scope:global align:32
+int_hnw066_antena_tex_txt = .data:0x007CC600; // type:object size:0x80 scope:global align:32
+int_hnw066_b_back_tex_txt = .data:0x007CC680; // type:object size:0x80 scope:global align:32
+int_hnw066_b_front_tex_txt = .data:0x007CC700; // type:object size:0x100 scope:global align:32
+int_hnw066_v = .data:0x007CC800; // type:object size:0x4A0 scope:global align:8
+int_hnw066_chest_model = .data:0x007CCCA0; // type:object size:0xF8 scope:global align:8
+int_hnw066_armR_model = .data:0x007CCD98; // type:object size:0x80 scope:global align:8
+int_hnw066_armL_model = .data:0x007CCE18; // type:object size:0x80 scope:global align:8
+int_hnw066_base_model = .data:0x007CCE98; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw066_tbl = .data:0x007CCF10; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw066_tbl = .data:0x007CCF18; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw066_tbl = .data:0x007CCF38; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw066_tbl = .data:0x007CCF4C; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw066 = .data:0x007CD054; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw066_tbl = .data:0x007CD068; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw066 = .data:0x007CD0BC; // type:object size:0x8 scope:global align:4
+int_hnw067_pal = .data:0x007CD0E0; // type:object size:0x20 scope:global align:32
+int_hnw067_arm_tex_txt = .data:0x007CD100; // type:object size:0x100 scope:global align:32
+int_hnw067_armtop_tex_txt = .data:0x007CD200; // type:object size:0x80 scope:global align:32
+int_hnw067_c_front_tex_txt = .data:0x007CD280; // type:object size:0x300 scope:global align:32
+int_hnw067_c_back_tex_txt = .data:0x007CD580; // type:object size:0x180 scope:global align:32
+int_hnw067_antena_tex_txt = .data:0x007CD700; // type:object size:0x80 scope:global align:32
+int_hnw067_b_back_tex_txt = .data:0x007CD780; // type:object size:0x80 scope:global align:32
+int_hnw067_b_front_tex_txt = .data:0x007CD800; // type:object size:0x100 scope:global align:32
+int_hnw067_v = .data:0x007CD900; // type:object size:0x4A0 scope:global align:8
+int_hnw067_chest_model = .data:0x007CDDA0; // type:object size:0xF8 scope:global align:8
+int_hnw067_armR_model = .data:0x007CDE98; // type:object size:0x80 scope:global align:8
+int_hnw067_armL_model = .data:0x007CDF18; // type:object size:0x80 scope:global align:8
+int_hnw067_base_model = .data:0x007CDF98; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw067_tbl = .data:0x007CE010; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw067_tbl = .data:0x007CE018; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw067_tbl = .data:0x007CE038; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw067_tbl = .data:0x007CE04C; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw067 = .data:0x007CE16C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw067_tbl = .data:0x007CE180; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw067 = .data:0x007CE1D4; // type:object size:0x8 scope:global align:4
+int_hnw068_pal = .data:0x007CE1E0; // type:object size:0x20 scope:global align:32
+int_hnw068_arm_tex_txt = .data:0x007CE200; // type:object size:0x100 scope:global align:32
+int_hnw068_armtop_tex_txt = .data:0x007CE300; // type:object size:0x80 scope:global align:32
+int_hnw068_c_front_tex_txt = .data:0x007CE380; // type:object size:0x300 scope:global align:32
+int_hnw068_c_back_tex_txt = .data:0x007CE680; // type:object size:0x180 scope:global align:32
+int_hnw068_antena_tex_txt = .data:0x007CE800; // type:object size:0x80 scope:global align:32
+int_hnw068_b_back_tex_txt = .data:0x007CE880; // type:object size:0x80 scope:global align:32
+int_hnw068_b_front_tex_txt = .data:0x007CE900; // type:object size:0x100 scope:global align:32
+int_hnw068_v = .data:0x007CEA00; // type:object size:0x4A0 scope:global align:8
+int_hnw068_chest_model = .data:0x007CEEA0; // type:object size:0xF8 scope:global align:8
+int_hnw068_armR_model = .data:0x007CEF98; // type:object size:0x80 scope:global align:8
+int_hnw068_armL_model = .data:0x007CF018; // type:object size:0x80 scope:global align:8
+int_hnw068_base_model = .data:0x007CF098; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw068_tbl = .data:0x007CF110; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw068_tbl = .data:0x007CF118; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw068_tbl = .data:0x007CF138; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw068_tbl = .data:0x007CF14C; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw068 = .data:0x007CF224; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw068_tbl = .data:0x007CF238; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw068 = .data:0x007CF28C; // type:object size:0x8 scope:global align:4
+int_hnw069_pal = .data:0x007CF2A0; // type:object size:0x20 scope:global align:32
+int_hnw069_arm_tex_txt = .data:0x007CF2C0; // type:object size:0x100 scope:global align:32
+int_hnw069_armtop_tex_txt = .data:0x007CF3C0; // type:object size:0x80 scope:global align:32
+int_hnw069_c_front_tex_txt = .data:0x007CF440; // type:object size:0x300 scope:global align:32
+int_hnw069_c_back_tex_txt = .data:0x007CF740; // type:object size:0x180 scope:global align:32
+int_hnw069_antena_tex_txt = .data:0x007CF8C0; // type:object size:0x80 scope:global align:32
+int_hnw069_b_back_tex_txt = .data:0x007CF940; // type:object size:0x80 scope:global align:32
+int_hnw069_b_front_tex_txt = .data:0x007CF9C0; // type:object size:0x100 scope:global align:32
+int_hnw069_v = .data:0x007CFAC0; // type:object size:0x4A0 scope:global align:8
+int_hnw069_chest_model = .data:0x007CFF60; // type:object size:0xF8 scope:global align:8
+int_hnw069_armR_model = .data:0x007D0058; // type:object size:0x80 scope:global align:8
+int_hnw069_armL_model = .data:0x007D00D8; // type:object size:0x80 scope:global align:8
+int_hnw069_base_model = .data:0x007D0158; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw069_tbl = .data:0x007D01E0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw069_tbl = .data:0x007D01E8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw069_tbl = .data:0x007D0208; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw069_tbl = .data:0x007D021C; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw069 = .data:0x007D030C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw069_tbl = .data:0x007D0320; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw069 = .data:0x007D0374; // type:object size:0x8 scope:global align:4
+int_hnw070_pal = .data:0x007D0380; // type:object size:0x20 scope:global align:32
+int_hnw070_arm_tex_txt = .data:0x007D03A0; // type:object size:0x100 scope:global align:32
+int_hnw070_armtop_tex_txt = .data:0x007D04A0; // type:object size:0x80 scope:global align:32
+int_hnw070_c_front_tex_txt = .data:0x007D0520; // type:object size:0x300 scope:global align:32
+int_hnw070_c_back_tex_txt = .data:0x007D0820; // type:object size:0x180 scope:global align:32
+int_hnw070_antena_tex_txt = .data:0x007D09A0; // type:object size:0x80 scope:global align:32
+int_hnw070_b_back_tex_txt = .data:0x007D0A20; // type:object size:0x80 scope:global align:32
+int_hnw070_b_front_tex_txt = .data:0x007D0AA0; // type:object size:0x100 scope:global align:32
+int_hnw070_v = .data:0x007D0BA0; // type:object size:0x4A0 scope:global align:8
+int_hnw070_chest_model = .data:0x007D1040; // type:object size:0xF8 scope:global align:8
+int_hnw070_armR_model = .data:0x007D1138; // type:object size:0x80 scope:global align:8
+int_hnw070_armL_model = .data:0x007D11B8; // type:object size:0x80 scope:global align:8
+int_hnw070_base_model = .data:0x007D1238; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw070_tbl = .data:0x007D12B0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw070_tbl = .data:0x007D12B8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw070_tbl = .data:0x007D12D8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw070_tbl = .data:0x007D12EC; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw070 = .data:0x007D13C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw070_tbl = .data:0x007D13D8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw070 = .data:0x007D142C; // type:object size:0x8 scope:global align:4
+int_hnw071_pal = .data:0x007D1440; // type:object size:0x20 scope:global align:32
+int_hnw071_arm_tex_txt = .data:0x007D1460; // type:object size:0x100 scope:global align:32
+int_hnw071_armtop_tex_txt = .data:0x007D1560; // type:object size:0x80 scope:global align:32
+int_hnw071_c_front_tex_txt = .data:0x007D15E0; // type:object size:0x300 scope:global align:32
+int_hnw071_c_back_tex_txt = .data:0x007D18E0; // type:object size:0x180 scope:global align:32
+int_hnw071_antena_tex_txt = .data:0x007D1A60; // type:object size:0x80 scope:global align:32
+int_hnw071_b_back_tex_txt = .data:0x007D1AE0; // type:object size:0x80 scope:global align:32
+int_hnw071_b_front_tex_txt = .data:0x007D1B60; // type:object size:0x100 scope:global align:32
+int_hnw071_v = .data:0x007D1C60; // type:object size:0x4A0 scope:global align:8
+int_hnw071_chest_model = .data:0x007D2100; // type:object size:0xF8 scope:global align:8
+int_hnw071_armR_model = .data:0x007D21F8; // type:object size:0x80 scope:global align:8
+int_hnw071_armL_model = .data:0x007D2278; // type:object size:0x80 scope:global align:8
+int_hnw071_base_model = .data:0x007D22F8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw071_tbl = .data:0x007D2370; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw071_tbl = .data:0x007D2378; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw071_tbl = .data:0x007D2398; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw071_tbl = .data:0x007D23AC; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw071 = .data:0x007D2484; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw071_tbl = .data:0x007D2498; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw071 = .data:0x007D24EC; // type:object size:0x8 scope:global align:4
+int_hnw072_pal = .data:0x007D2500; // type:object size:0x20 scope:global align:32
+int_hnw072_c_front_tex_txt = .data:0x007D2520; // type:object size:0x300 scope:global align:32
+int_hnw072_c_back_tex_txt = .data:0x007D2820; // type:object size:0x180 scope:global align:32
+int_hnw072_arm_tex_txt = .data:0x007D29A0; // type:object size:0x100 scope:global align:32
+int_hnw072_armtop_tex_txt = .data:0x007D2AA0; // type:object size:0x80 scope:global align:32
+int_hnw072_b_back_tex_txt = .data:0x007D2B20; // type:object size:0x80 scope:global align:32
+int_hnw072_b_front_tex_txt = .data:0x007D2BA0; // type:object size:0x100 scope:global align:32
+int_hnw072_v = .data:0x007D2CA0; // type:object size:0x470 scope:global align:8
+int_hnw072_chest_model = .data:0x007D3110; // type:object size:0xF0 scope:global align:8
+int_hnw072_armR_model = .data:0x007D3200; // type:object size:0x80 scope:global align:8
+int_hnw072_armL_model = .data:0x007D3280; // type:object size:0x80 scope:global align:8
+int_hnw072_base_model = .data:0x007D3300; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw072_tbl = .data:0x007D3388; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw072_tbl = .data:0x007D3390; // type:object size:0xE scope:global align:4
+cKF_c_int_hnw072_tbl = .data:0x007D33A0; // type:object size:0x22 scope:global align:4
+cKF_ds_int_hnw072_tbl = .data:0x007D33C4; // type:object size:0x300 scope:global align:4
+cKF_ba_r_int_hnw072 = .data:0x007D36C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw072_tbl = .data:0x007D36D8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw072 = .data:0x007D372C; // type:object size:0x8 scope:global align:4
+int_hnw073_pal = .data:0x007D3740; // type:object size:0x20 scope:global align:32
+int_hnw073_arm_tex_txt = .data:0x007D3760; // type:object size:0x100 scope:global align:32
+int_hnw073_armtop_tex_txt = .data:0x007D3860; // type:object size:0x80 scope:global align:32
+int_hnw073_c_front_tex_txt = .data:0x007D38E0; // type:object size:0x300 scope:global align:32
+int_hnw073_c_back_tex_txt = .data:0x007D3BE0; // type:object size:0x180 scope:global align:32
+int_hnw073_b_back_tex_txt = .data:0x007D3D60; // type:object size:0x80 scope:global align:32
+int_hnw073_b_front_tex_txt = .data:0x007D3DE0; // type:object size:0x100 scope:global align:32
+int_hnw073_v = .data:0x007D3EE0; // type:object size:0x470 scope:global align:8
+int_hnw073_chest_model = .data:0x007D4350; // type:object size:0xD0 scope:global align:8
+int_hnw073_armR_model = .data:0x007D4420; // type:object size:0x80 scope:global align:8
+int_hnw073_armL_model = .data:0x007D44A0; // type:object size:0x80 scope:global align:8
+int_hnw073_base_model = .data:0x007D4520; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw073_tbl = .data:0x007D4598; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw073_tbl = .data:0x007D45A0; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw073_tbl = .data:0x007D45A8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw073_tbl = .data:0x007D45D4; // type:object size:0x1E0 scope:global align:4
+cKF_ba_r_int_hnw073 = .data:0x007D47B4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw073_tbl = .data:0x007D47C8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw073 = .data:0x007D481C; // type:object size:0x8 scope:global align:4
+int_hnw074_pal = .data:0x007D4840; // type:object size:0x20 scope:global align:32
+int_hnw074_arm_tex_txt = .data:0x007D4860; // type:object size:0x100 scope:global align:32
+int_hnw074_armtop_tex_txt = .data:0x007D4960; // type:object size:0x80 scope:global align:32
+int_hnw074_c_front_tex_txt = .data:0x007D49E0; // type:object size:0x300 scope:global align:32
+int_hnw074_c_back_tex_txt = .data:0x007D4CE0; // type:object size:0x180 scope:global align:32
+int_hnw074_b_back_tex_txt = .data:0x007D4E60; // type:object size:0x80 scope:global align:32
+int_hnw074_b_front_tex_txt = .data:0x007D4EE0; // type:object size:0x100 scope:global align:32
+int_hnw074_v = .data:0x007D4FE0; // type:object size:0x470 scope:global align:8
+int_hnw074_chest_model = .data:0x007D5450; // type:object size:0xD0 scope:global align:8
+int_hnw074_armR_model = .data:0x007D5520; // type:object size:0x80 scope:global align:8
+int_hnw074_armL_model = .data:0x007D55A0; // type:object size:0x80 scope:global align:8
+int_hnw074_base_model = .data:0x007D5620; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw074_tbl = .data:0x007D5698; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw074_tbl = .data:0x007D56A0; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw074_tbl = .data:0x007D56A8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw074_tbl = .data:0x007D56D4; // type:object size:0x1DA scope:global align:4
+cKF_ba_r_int_hnw074 = .data:0x007D58B0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw074_tbl = .data:0x007D58C4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw074 = .data:0x007D5918; // type:object size:0x8 scope:global align:4
+int_hnw075_pal = .data:0x007D5920; // type:object size:0x20 scope:global align:32
+int_hnw075_arm_tex_txt = .data:0x007D5940; // type:object size:0x100 scope:global align:32
+int_hnw075_armtop_tex_txt = .data:0x007D5A40; // type:object size:0x80 scope:global align:32
+int_hnw075_c_front_tex_txt = .data:0x007D5AC0; // type:object size:0x300 scope:global align:32
+int_hnw075_c_back_tex_txt = .data:0x007D5DC0; // type:object size:0x180 scope:global align:32
+int_hnw075_b_back_tex_txt = .data:0x007D5F40; // type:object size:0x80 scope:global align:32
+int_hnw075_b_front_tex_txt = .data:0x007D5FC0; // type:object size:0x100 scope:global align:32
+int_hnw075_v = .data:0x007D60C0; // type:object size:0x470 scope:global align:8
+int_hnw075_chest_model = .data:0x007D6530; // type:object size:0xD0 scope:global align:8
+int_hnw075_armR_model = .data:0x007D6600; // type:object size:0x80 scope:global align:8
+int_hnw075_armL_model = .data:0x007D6680; // type:object size:0x80 scope:global align:8
+int_hnw075_base_model = .data:0x007D6700; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw075_tbl = .data:0x007D6778; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw075_tbl = .data:0x007D6780; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw075_tbl = .data:0x007D6788; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw075_tbl = .data:0x007D67B4; // type:object size:0x1E0 scope:global align:4
+cKF_ba_r_int_hnw075 = .data:0x007D6994; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw075_tbl = .data:0x007D69A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw075 = .data:0x007D69FC; // type:object size:0x8 scope:global align:4
+int_hnw076_pal = .data:0x007D6A20; // type:object size:0x20 scope:global align:32
+int_hnw076_arm_tex_txt = .data:0x007D6A40; // type:object size:0x100 scope:global align:32
+int_hnw076_armtop_tex_txt = .data:0x007D6B40; // type:object size:0x80 scope:global align:32
+int_hnw076_c_front_tex_txt = .data:0x007D6BC0; // type:object size:0x300 scope:global align:32
+int_hnw076_c_back_tex_txt = .data:0x007D6EC0; // type:object size:0x180 scope:global align:32
+int_hnw076_b_back_tex_txt = .data:0x007D7040; // type:object size:0x80 scope:global align:32
+int_hnw076_b_front_tex_txt = .data:0x007D70C0; // type:object size:0x100 scope:global align:32
+int_hnw076_v = .data:0x007D71C0; // type:object size:0x470 scope:global align:8
+int_hnw076_chest_model = .data:0x007D7630; // type:object size:0xD0 scope:global align:8
+int_hnw076_armR_model = .data:0x007D7700; // type:object size:0x80 scope:global align:8
+int_hnw076_armL_model = .data:0x007D7780; // type:object size:0x80 scope:global align:8
+int_hnw076_base_model = .data:0x007D7800; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw076_tbl = .data:0x007D7878; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw076_tbl = .data:0x007D7880; // type:object size:0x8 scope:global align:4
+cKF_c_int_hnw076_tbl = .data:0x007D7888; // type:object size:0x28 scope:global align:4
+cKF_ds_int_hnw076_tbl = .data:0x007D78B0; // type:object size:0x16E scope:global align:4
+cKF_ba_r_int_hnw076 = .data:0x007D7A20; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw076_tbl = .data:0x007D7A34; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw076 = .data:0x007D7A88; // type:object size:0x8 scope:global align:4
+int_hnw077_pal = .data:0x007D7AA0; // type:object size:0x20 scope:global align:32
+int_hnw077_arm_tex_txt = .data:0x007D7AC0; // type:object size:0x100 scope:global align:32
+int_hnw077_armtop_tex_txt = .data:0x007D7BC0; // type:object size:0x80 scope:global align:32
+int_hnw077_c_front_tex_txt = .data:0x007D7C40; // type:object size:0x300 scope:global align:32
+int_hnw077_c_back_tex_txt = .data:0x007D7F40; // type:object size:0x180 scope:global align:32
+int_hnw077_b_back_tex_txt = .data:0x007D80C0; // type:object size:0x80 scope:global align:32
+int_hnw077_b_front_tex_txt = .data:0x007D8140; // type:object size:0x100 scope:global align:32
+int_hnw077_v = .data:0x007D8240; // type:object size:0x470 scope:global align:8
+int_hnw077_chest_model = .data:0x007D86B0; // type:object size:0xD0 scope:global align:8
+int_hnw077_armR_model = .data:0x007D8780; // type:object size:0x80 scope:global align:8
+int_hnw077_armL_model = .data:0x007D8800; // type:object size:0x80 scope:global align:8
+int_hnw077_base_model = .data:0x007D8880; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw077_tbl = .data:0x007D88F8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw077_tbl = .data:0x007D8900; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw077_tbl = .data:0x007D8908; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw077_tbl = .data:0x007D8934; // type:object size:0x282 scope:global align:4
+cKF_ba_r_int_hnw077 = .data:0x007D8BB8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw077_tbl = .data:0x007D8BCC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw077 = .data:0x007D8C20; // type:object size:0x8 scope:global align:4
+int_hnw078_pal = .data:0x007D8C40; // type:object size:0x20 scope:global align:32
+int_hnw078_c_front_tex_txt = .data:0x007D8C60; // type:object size:0x300 scope:global align:32
+int_hnw078_c_back_tex_txt = .data:0x007D8F60; // type:object size:0x180 scope:global align:32
+int_hnw078_arm_tex_txt = .data:0x007D90E0; // type:object size:0x100 scope:global align:32
+int_hnw078_armtop_tex_txt = .data:0x007D91E0; // type:object size:0x80 scope:global align:32
+int_hnw078_b_back_tex_txt = .data:0x007D9260; // type:object size:0x80 scope:global align:32
+int_hnw078_b_front_tex_txt = .data:0x007D92E0; // type:object size:0x100 scope:global align:32
+int_hnw078_v = .data:0x007D93E0; // type:object size:0x470 scope:global align:8
+int_hnw078_chest_model = .data:0x007D9850; // type:object size:0xF0 scope:global align:8
+int_hnw078_armR_model = .data:0x007D9940; // type:object size:0x80 scope:global align:8
+int_hnw078_armL_model = .data:0x007D99C0; // type:object size:0x80 scope:global align:8
+int_hnw078_base_model = .data:0x007D9A40; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw078_tbl = .data:0x007D9AC8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw078_tbl = .data:0x007D9AD0; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw078_tbl = .data:0x007D9AD8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw078_tbl = .data:0x007D9B04; // type:object size:0x14A scope:global align:4
+cKF_ba_r_int_hnw078 = .data:0x007D9C50; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw078_tbl = .data:0x007D9C64; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw078 = .data:0x007D9CB8; // type:object size:0x8 scope:global align:4
+int_hnw079_pal = .data:0x007D9CC0; // type:object size:0x20 scope:global align:32
+int_hnw079_arm_tex_txt = .data:0x007D9CE0; // type:object size:0x100 scope:global align:32
+int_hnw079_armtop_tex_txt = .data:0x007D9DE0; // type:object size:0x80 scope:global align:32
+int_hnw079_c_front_tex_txt = .data:0x007D9E60; // type:object size:0x300 scope:global align:32
+int_hnw079_c_back_tex_txt = .data:0x007DA160; // type:object size:0x180 scope:global align:32
+int_hnw079_b_back_tex_txt = .data:0x007DA2E0; // type:object size:0x80 scope:global align:32
+int_hnw079_b_front_tex_txt = .data:0x007DA360; // type:object size:0x100 scope:global align:32
+int_hnw079_v = .data:0x007DA460; // type:object size:0x470 scope:global align:8
+int_hnw079_chest_model = .data:0x007DA8D0; // type:object size:0xD0 scope:global align:8
+int_hnw079_armR_model = .data:0x007DA9A0; // type:object size:0x80 scope:global align:8
+int_hnw079_armL_model = .data:0x007DAA20; // type:object size:0x80 scope:global align:8
+int_hnw079_base_model = .data:0x007DAAA0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw079_tbl = .data:0x007DAB18; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw079_tbl = .data:0x007DAB20; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw079_tbl = .data:0x007DAB28; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw079_tbl = .data:0x007DAB54; // type:object size:0x2E8 scope:global align:4
+cKF_ba_r_int_hnw079 = .data:0x007DAE3C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw079_tbl = .data:0x007DAE50; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw079 = .data:0x007DAEA4; // type:object size:0x8 scope:global align:4
+int_hnw080_pal = .data:0x007DAEC0; // type:object size:0x20 scope:global align:32
+int_hnw080_arm_tex_txt = .data:0x007DAEE0; // type:object size:0x100 scope:global align:32
+int_hnw080_armtop_tex_txt = .data:0x007DAFE0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw080_c_front_tex_txt = .data:0x007DB060; // type:object size:0x300 scope:global align:32
+int_hnw080_c_back_tex_txt = .data:0x007DB360; // type:object size:0x180 scope:global align:32
+int_hnw080_antena_tex_txt = .data:0x007DB4E0; // type:object size:0x80 scope:global align:32
+int_hnw080_b_back_tex_txt = .data:0x007DB560; // type:object size:0x80 scope:global align:32
+int_hnw080_b_front_tex_txt = .data:0x007DB5E0; // type:object size:0x100 scope:global align:32
+int_hnw080_v = .data:0x007DB6E0; // type:object size:0x4A0 scope:global align:8
+int_hnw080_chest_model = .data:0x007DBB80; // type:object size:0xF8 scope:global align:8
+int_hnw080_armR_model = .data:0x007DBC78; // type:object size:0x80 scope:global align:8
+int_hnw080_armL_model = .data:0x007DBCF8; // type:object size:0x80 scope:global align:8
+int_hnw080_base_model = .data:0x007DBD78; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw080_tbl = .data:0x007DBDF0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw080_tbl = .data:0x007DBDF8; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw080_tbl = .data:0x007DBE00; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw080_tbl = .data:0x007DBE2C; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw080 = .data:0x007DBEAC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw080_tbl = .data:0x007DBEC0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw080 = .data:0x007DBF14; // type:object size:0x8 scope:global align:4
+int_hnw081_pal = .data:0x007DBF20; // type:object size:0x20 scope:global align:32
+int_hnw081_arm_tex_txt = .data:0x007DBF40; // type:object size:0x100 scope:global align:32
+int_hnw081_armtop_tex_txt = .data:0x007DC040; // type:object size:0x80 scope:global align:32 data:string
+int_hnw081_c_front_tex_txt = .data:0x007DC0C0; // type:object size:0x300 scope:global align:32
+int_hnw081_c_back_tex_txt = .data:0x007DC3C0; // type:object size:0x180 scope:global align:32
+int_hnw081_antena_tex_txt = .data:0x007DC540; // type:object size:0x80 scope:global align:32
+int_hnw081_b_back_tex_txt = .data:0x007DC5C0; // type:object size:0x80 scope:global align:32
+int_hnw081_b_front_tex_txt = .data:0x007DC640; // type:object size:0x100 scope:global align:32
+int_hnw081_v = .data:0x007DC740; // type:object size:0x4A0 scope:global align:8
+int_hnw081_chest_model = .data:0x007DCBE0; // type:object size:0xF8 scope:global align:8
+int_hnw081_armR_model = .data:0x007DCCD8; // type:object size:0x80 scope:global align:8
+int_hnw081_armL_model = .data:0x007DCD58; // type:object size:0x80 scope:global align:8
+int_hnw081_base_model = .data:0x007DCDD8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw081_tbl = .data:0x007DCE50; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw081_tbl = .data:0x007DCE58; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw081_tbl = .data:0x007DCE60; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw081_tbl = .data:0x007DCE8C; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw081 = .data:0x007DCF0C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw081_tbl = .data:0x007DCF20; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw081 = .data:0x007DCF74; // type:object size:0x8 scope:global align:4
+int_hnw082_pal = .data:0x007DCF80; // type:object size:0x20 scope:global align:32
+int_hnw082_arm_tex_txt = .data:0x007DCFA0; // type:object size:0x100 scope:global align:32
+int_hnw082_armtop_tex_txt = .data:0x007DD0A0; // type:object size:0x80 scope:global align:32 data:string
+int_hnw082_c_front_tex_txt = .data:0x007DD120; // type:object size:0x300 scope:global align:32
+int_hnw082_c_back_tex_txt = .data:0x007DD420; // type:object size:0x180 scope:global align:32
+int_hnw082_antena_tex_txt = .data:0x007DD5A0; // type:object size:0x80 scope:global align:32
+int_hnw082_b_back_tex_txt = .data:0x007DD620; // type:object size:0x80 scope:global align:32
+int_hnw082_b_front_tex_txt = .data:0x007DD6A0; // type:object size:0x100 scope:global align:32
+int_hnw082_v = .data:0x007DD7A0; // type:object size:0x4A0 scope:global align:8
+int_hnw082_chest_model = .data:0x007DDC40; // type:object size:0xF8 scope:global align:8
+int_hnw082_armR_model = .data:0x007DDD38; // type:object size:0x80 scope:global align:8
+int_hnw082_armL_model = .data:0x007DDDB8; // type:object size:0x80 scope:global align:8
+int_hnw082_base_model = .data:0x007DDE38; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw082_tbl = .data:0x007DDEB0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw082_tbl = .data:0x007DDEB8; // type:object size:0x6 scope:global align:4
+cKF_c_int_hnw082_tbl = .data:0x007DDEC0; // type:object size:0x2A scope:global align:4
+cKF_ds_int_hnw082_tbl = .data:0x007DDEEC; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw082 = .data:0x007DDF6C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw082_tbl = .data:0x007DDF80; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw082 = .data:0x007DDFD4; // type:object size:0x8 scope:global align:4
+int_hnw083_pal = .data:0x007DDFE0; // type:object size:0x20 scope:global align:32
+int_hnw083_arm_tex_txt = .data:0x007DE000; // type:object size:0x100 scope:global align:32
+int_hnw083_armtop_tex_txt = .data:0x007DE100; // type:object size:0x80 scope:global align:32
+int_hnw083_c_front_tex_txt = .data:0x007DE180; // type:object size:0x300 scope:global align:32
+int_hnw083_c_back_tex_txt = .data:0x007DE480; // type:object size:0x180 scope:global align:32
+int_hnw083_b_back_tex_txt = .data:0x007DE600; // type:object size:0x80 scope:global align:32
+int_hnw083_b_front_tex_txt = .data:0x007DE680; // type:object size:0x100 scope:global align:32
+int_hnw083_v = .data:0x007DE780; // type:object size:0x470 scope:global align:8
+int_hnw083_chest_model = .data:0x007DEBF0; // type:object size:0xD0 scope:global align:8
+int_hnw083_armR_model = .data:0x007DECC0; // type:object size:0x80 scope:global align:8
+int_hnw083_armL_model = .data:0x007DED40; // type:object size:0x80 scope:global align:8
+int_hnw083_base_model = .data:0x007DEDC0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw083_tbl = .data:0x007DEE38; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw083_tbl = .data:0x007DEE40; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw083_tbl = .data:0x007DEE60; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw083_tbl = .data:0x007DEE74; // type:object size:0x168 scope:global align:4
+cKF_ba_r_int_hnw083 = .data:0x007DEFDC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw083_tbl = .data:0x007DEFF0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw083 = .data:0x007DF044; // type:object size:0x8 scope:global align:4
+int_hnw084_pal = .data:0x007DF060; // type:object size:0x20 scope:global align:32
+int_hnw084_c_front_tex_txt = .data:0x007DF080; // type:object size:0x300 scope:global align:32
+int_hnw084_c_back_tex_txt = .data:0x007DF380; // type:object size:0x180 scope:global align:32
+int_hnw084_arm_tex_txt = .data:0x007DF500; // type:object size:0x100 scope:global align:32
+int_hnw084_armtop_tex_txt = .data:0x007DF600; // type:object size:0x80 scope:global align:32
+int_hnw084_b_back_tex_txt = .data:0x007DF680; // type:object size:0x80 scope:global align:32
+int_hnw084_b_front_tex_txt = .data:0x007DF700; // type:object size:0x100 scope:global align:32
+int_hnw084_v = .data:0x007DF800; // type:object size:0x470 scope:global align:8
+int_hnw084_chest_model = .data:0x007DFC70; // type:object size:0xF0 scope:global align:8
+int_hnw084_armR_model = .data:0x007DFD60; // type:object size:0x80 scope:global align:8
+int_hnw084_armL_model = .data:0x007DFDE0; // type:object size:0x80 scope:global align:8
+int_hnw084_base_model = .data:0x007DFE60; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw084_tbl = .data:0x007DFEE8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw084_tbl = .data:0x007DFEF0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw084_tbl = .data:0x007DFF10; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw084_tbl = .data:0x007DFF24; // type:object size:0x138 scope:global align:4
+cKF_ba_r_int_hnw084 = .data:0x007E005C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw084_tbl = .data:0x007E0070; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw084 = .data:0x007E00C4; // type:object size:0x8 scope:global align:4
+int_hnw085_pal = .data:0x007E00E0; // type:object size:0x20 scope:global align:32
+int_hnw085_arm_tex_txt = .data:0x007E0100; // type:object size:0x100 scope:global align:32
+int_hnw085_armtop_tex_txt = .data:0x007E0200; // type:object size:0x80 scope:global align:32
+int_hnw085_c_front_tex_txt = .data:0x007E0280; // type:object size:0x300 scope:global align:32
+int_hnw085_c_back_tex_txt = .data:0x007E0580; // type:object size:0x180 scope:global align:32
+int_hnw085_b_back_tex_txt = .data:0x007E0700; // type:object size:0x80 scope:global align:32
+int_hnw085_b_front_tex_txt = .data:0x007E0780; // type:object size:0x100 scope:global align:32
+int_hnw085_v = .data:0x007E0880; // type:object size:0x470 scope:global align:8
+int_hnw085_chest_model = .data:0x007E0CF0; // type:object size:0xD0 scope:global align:8
+int_hnw085_armR_model = .data:0x007E0DC0; // type:object size:0x80 scope:global align:8
+int_hnw085_armL_model = .data:0x007E0E40; // type:object size:0x80 scope:global align:8
+int_hnw085_base_model = .data:0x007E0EC0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw085_tbl = .data:0x007E0F38; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw085_tbl = .data:0x007E0F40; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw085_tbl = .data:0x007E0F60; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw085_tbl = .data:0x007E0F74; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw085 = .data:0x007E1094; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw085_tbl = .data:0x007E10A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw085 = .data:0x007E10FC; // type:object size:0x8 scope:global align:4
+int_hnw086_pal = .data:0x007E1120; // type:object size:0x20 scope:global align:32
+int_hnw086_arm_tex_txt = .data:0x007E1140; // type:object size:0x100 scope:global align:32
+int_hnw086_armtop_tex_txt = .data:0x007E1240; // type:object size:0x80 scope:global align:32
+int_hnw086_c_front_tex_txt = .data:0x007E12C0; // type:object size:0x300 scope:global align:32
+int_hnw086_c_back_tex_txt = .data:0x007E15C0; // type:object size:0x180 scope:global align:32
+int_hnw086_b_back_tex_txt = .data:0x007E1740; // type:object size:0x80 scope:global align:32
+int_hnw086_b_front_tex_txt = .data:0x007E17C0; // type:object size:0x100 scope:global align:32
+int_hnw086_v = .data:0x007E18C0; // type:object size:0x470 scope:global align:8
+int_hnw086_chest_model = .data:0x007E1D30; // type:object size:0xD0 scope:global align:8
+int_hnw086_armR_model = .data:0x007E1E00; // type:object size:0x80 scope:global align:8
+int_hnw086_armL_model = .data:0x007E1E80; // type:object size:0x80 scope:global align:8
+int_hnw086_base_model = .data:0x007E1F00; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw086_tbl = .data:0x007E1F78; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw086_tbl = .data:0x007E1F80; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw086_tbl = .data:0x007E1FA0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw086_tbl = .data:0x007E1FB4; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw086 = .data:0x007E20A0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw086_tbl = .data:0x007E20B4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw086 = .data:0x007E2108; // type:object size:0x8 scope:global align:4
+int_hnw087_pal = .data:0x007E2120; // type:object size:0x20 scope:global align:32
+int_hnw087_arm_tex_txt = .data:0x007E2140; // type:object size:0x100 scope:global align:32
+int_hnw087_armtop_tex_txt = .data:0x007E2240; // type:object size:0x80 scope:global align:32
+int_hnw087_c_front_tex_txt = .data:0x007E22C0; // type:object size:0x300 scope:global align:32
+int_hnw087_c_back_tex_txt = .data:0x007E25C0; // type:object size:0x180 scope:global align:32
+int_hnw087_b_back_tex_txt = .data:0x007E2740; // type:object size:0x80 scope:global align:32
+int_hnw087_b_front_tex_txt = .data:0x007E27C0; // type:object size:0x100 scope:global align:32
+int_hnw087_v = .data:0x007E28C0; // type:object size:0x470 scope:global align:8
+int_hnw087_chest_model = .data:0x007E2D30; // type:object size:0xD0 scope:global align:8
+int_hnw087_armR_model = .data:0x007E2E00; // type:object size:0x80 scope:global align:8
+int_hnw087_armL_model = .data:0x007E2E80; // type:object size:0x80 scope:global align:8
+int_hnw087_base_model = .data:0x007E2F00; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw087_tbl = .data:0x007E2F78; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw087_tbl = .data:0x007E2F80; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw087_tbl = .data:0x007E2FA0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw087_tbl = .data:0x007E2FB4; // type:object size:0xC6 scope:global align:4
+cKF_ba_r_int_hnw087 = .data:0x007E307C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw087_tbl = .data:0x007E3090; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw087 = .data:0x007E30E4; // type:object size:0x8 scope:global align:4
+int_hnw088_pal = .data:0x007E3100; // type:object size:0x20 scope:global align:32
+int_hnw088_arm_tex_txt = .data:0x007E3120; // type:object size:0x100 scope:global align:32
+int_hnw088_armtop_tex_txt = .data:0x007E3220; // type:object size:0x80 scope:global align:32
+int_hnw088_c_front_tex_txt = .data:0x007E32A0; // type:object size:0x300 scope:global align:32
+int_hnw088_c_back_tex_txt = .data:0x007E35A0; // type:object size:0x180 scope:global align:32
+int_hnw088_b_back_tex_txt = .data:0x007E3720; // type:object size:0x80 scope:global align:32
+int_hnw088_b_front_tex_txt = .data:0x007E37A0; // type:object size:0x100 scope:global align:32
+int_hnw088_v = .data:0x007E38A0; // type:object size:0x470 scope:global align:8
+int_hnw088_chest_model = .data:0x007E3D10; // type:object size:0xD0 scope:global align:8
+int_hnw088_armR_model = .data:0x007E3DE0; // type:object size:0x80 scope:global align:8
+int_hnw088_armL_model = .data:0x007E3E60; // type:object size:0x80 scope:global align:8
+int_hnw088_base_model = .data:0x007E3EE0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw088_tbl = .data:0x007E3F58; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw088_tbl = .data:0x007E3F60; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw088_tbl = .data:0x007E3F80; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw088_tbl = .data:0x007E3F94; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw088 = .data:0x007E40B4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw088_tbl = .data:0x007E40C8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw088 = .data:0x007E411C; // type:object size:0x8 scope:global align:4
+int_hnw089_pal = .data:0x007E4140; // type:object size:0x20 scope:global align:32
+int_hnw089_arm_tex_txt = .data:0x007E4160; // type:object size:0x100 scope:global align:32
+int_hnw089_armtop_tex_txt = .data:0x007E4260; // type:object size:0x80 scope:global align:32
+int_hnw089_c_front_tex_txt = .data:0x007E42E0; // type:object size:0x300 scope:global align:32
+int_hnw089_c_back_tex_txt = .data:0x007E45E0; // type:object size:0x180 scope:global align:32
+int_hnw089_b_back_tex_txt = .data:0x007E4760; // type:object size:0x80 scope:global align:32
+int_hnw089_b_front_tex_txt = .data:0x007E47E0; // type:object size:0x100 scope:global align:32
+int_hnw089_v = .data:0x007E48E0; // type:object size:0x470 scope:global align:8
+int_hnw089_chest_model = .data:0x007E4D50; // type:object size:0xD0 scope:global align:8
+int_hnw089_armR_model = .data:0x007E4E20; // type:object size:0x80 scope:global align:8
+int_hnw089_armL_model = .data:0x007E4EA0; // type:object size:0x80 scope:global align:8
+int_hnw089_base_model = .data:0x007E4F20; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw089_tbl = .data:0x007E4F98; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw089_tbl = .data:0x007E4FA0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw089_tbl = .data:0x007E4FC0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw089_tbl = .data:0x007E4FD4; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw089 = .data:0x007E50F4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw089_tbl = .data:0x007E5108; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw089 = .data:0x007E515C; // type:object size:0x8 scope:global align:4
+int_hnw090_pal = .data:0x007E5180; // type:object size:0x20 scope:global align:32
+int_hnw090_arm_tex_txt = .data:0x007E51A0; // type:object size:0x100 scope:global align:32
+int_hnw090_armtop_tex_txt = .data:0x007E52A0; // type:object size:0x80 scope:global align:32
+int_hnw090_c_front_tex_txt = .data:0x007E5320; // type:object size:0x300 scope:global align:32
+int_hnw090_c_back_tex_txt = .data:0x007E5620; // type:object size:0x180 scope:global align:32
+int_hnw090_b_back_tex_txt = .data:0x007E57A0; // type:object size:0x80 scope:global align:32
+int_hnw090_b_front_tex_txt = .data:0x007E5820; // type:object size:0x100 scope:global align:32
+int_hnw090_v = .data:0x007E5920; // type:object size:0x470 scope:global align:8
+int_hnw090_chest_model = .data:0x007E5D90; // type:object size:0xD0 scope:global align:8
+int_hnw090_armR_model = .data:0x007E5E60; // type:object size:0x80 scope:global align:8
+int_hnw090_armL_model = .data:0x007E5EE0; // type:object size:0x80 scope:global align:8
+int_hnw090_base_model = .data:0x007E5F60; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw090_tbl = .data:0x007E5FD8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw090_tbl = .data:0x007E5FE0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw090_tbl = .data:0x007E6000; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw090_tbl = .data:0x007E6014; // type:object size:0x15C scope:global align:4
+cKF_ba_r_int_hnw090 = .data:0x007E6170; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw090_tbl = .data:0x007E6184; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw090 = .data:0x007E61D8; // type:object size:0x8 scope:global align:4
+int_hnw091_pal = .data:0x007E61E0; // type:object size:0x20 scope:global align:32
+int_hnw091_c_front_tex_txt = .data:0x007E6200; // type:object size:0x300 scope:global align:32
+int_hnw091_c_back_tex_txt = .data:0x007E6500; // type:object size:0x180 scope:global align:32
+int_hnw091_arm_tex_txt = .data:0x007E6680; // type:object size:0x100 scope:global align:32
+int_hnw091_armtop_tex_txt = .data:0x007E6780; // type:object size:0x80 scope:global align:32
+int_hnw091_b_back_tex_txt = .data:0x007E6800; // type:object size:0x80 scope:global align:32
+int_hnw091_b_front_tex_txt = .data:0x007E6880; // type:object size:0x100 scope:global align:32
+int_hnw091_v = .data:0x007E6980; // type:object size:0x470 scope:global align:8
+int_hnw091_chest_model = .data:0x007E6DF0; // type:object size:0xF0 scope:global align:8
+int_hnw091_armR_model = .data:0x007E6EE0; // type:object size:0x80 scope:global align:8
+int_hnw091_armL_model = .data:0x007E6F60; // type:object size:0x80 scope:global align:8
+int_hnw091_base_model = .data:0x007E6FE0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw091_tbl = .data:0x007E7068; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw091_tbl = .data:0x007E7070; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw091_tbl = .data:0x007E7090; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw091_tbl = .data:0x007E70A4; // type:object size:0x18C scope:global align:4
+cKF_ba_r_int_hnw091 = .data:0x007E7230; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw091_tbl = .data:0x007E7244; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw091 = .data:0x007E7298; // type:object size:0x8 scope:global align:4
+int_hnw092_pal = .data:0x007E72A0; // type:object size:0x20 scope:global align:32
+int_hnw092_arm_tex_txt = .data:0x007E72C0; // type:object size:0x100 scope:global align:32
+int_hnw092_armtop_tex_txt = .data:0x007E73C0; // type:object size:0x80 scope:global align:32
+int_hnw092_c_front_tex_txt = .data:0x007E7440; // type:object size:0x300 scope:global align:32
+int_hnw092_c_back_tex_txt = .data:0x007E7740; // type:object size:0x180 scope:global align:32
+int_hnw092_b_back_tex_txt = .data:0x007E78C0; // type:object size:0x80 scope:global align:32
+int_hnw092_b_front_tex_txt = .data:0x007E7940; // type:object size:0x100 scope:global align:32
+int_hnw092_v = .data:0x007E7A40; // type:object size:0x470 scope:global align:8
+int_hnw092_chest_model = .data:0x007E7EB0; // type:object size:0xD0 scope:global align:8
+int_hnw092_armR_model = .data:0x007E7F80; // type:object size:0x80 scope:global align:8
+int_hnw092_armL_model = .data:0x007E8000; // type:object size:0x80 scope:global align:8
+int_hnw092_base_model = .data:0x007E8080; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw092_tbl = .data:0x007E80F8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw092_tbl = .data:0x007E8100; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw092_tbl = .data:0x007E8120; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw092_tbl = .data:0x007E8134; // type:object size:0x1C8 scope:global align:4
+cKF_ba_r_int_hnw092 = .data:0x007E82FC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw092_tbl = .data:0x007E8310; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw092 = .data:0x007E8364; // type:object size:0x8 scope:global align:4
+int_hnw093_pal = .data:0x007E8380; // type:object size:0x20 scope:global align:32
+int_hnw093_arm_tex_txt = .data:0x007E83A0; // type:object size:0x100 scope:global align:32
+int_hnw093_armtop_tex_txt = .data:0x007E84A0; // type:object size:0x80 scope:global align:32
+int_hnw093_c_front_tex_txt = .data:0x007E8520; // type:object size:0x300 scope:global align:32
+int_hnw093_c_back_tex_txt = .data:0x007E8820; // type:object size:0x180 scope:global align:32
+int_hnw093_antena_tex_txt = .data:0x007E89A0; // type:object size:0x80 scope:global align:32
+int_hnw093_b_back_tex_txt = .data:0x007E8A20; // type:object size:0x80 scope:global align:32
+int_hnw093_b_front_tex_txt = .data:0x007E8AA0; // type:object size:0x100 scope:global align:32
+int_hnw093_v = .data:0x007E8BA0; // type:object size:0x4A0 scope:global align:8
+int_hnw093_chest_model = .data:0x007E9040; // type:object size:0xF8 scope:global align:8
+int_hnw093_armR_model = .data:0x007E9138; // type:object size:0x80 scope:global align:8
+int_hnw093_armL_model = .data:0x007E91B8; // type:object size:0x80 scope:global align:8
+int_hnw093_base_model = .data:0x007E9238; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw093_tbl = .data:0x007E92B0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw093_tbl = .data:0x007E92B8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw093_tbl = .data:0x007E92D8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw093_tbl = .data:0x007E92EC; // type:object size:0x15C scope:global align:4
+cKF_ba_r_int_hnw093 = .data:0x007E9448; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw093_tbl = .data:0x007E945C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw093 = .data:0x007E94B0; // type:object size:0x8 scope:global align:4
+int_hnw094_pal = .data:0x007E94C0; // type:object size:0x20 scope:global align:32
+int_hnw094_arm_tex_txt = .data:0x007E94E0; // type:object size:0x100 scope:global align:32
+int_hnw094_armtop_tex_txt = .data:0x007E95E0; // type:object size:0x80 scope:global align:32
+int_hnw094_c_front_tex_txt = .data:0x007E9660; // type:object size:0x300 scope:global align:32
+int_hnw094_c_back_tex_txt = .data:0x007E9960; // type:object size:0x180 scope:global align:32
+int_hnw094_antena_tex_txt = .data:0x007E9AE0; // type:object size:0x80 scope:global align:32
+int_hnw094_b_back_tex_txt = .data:0x007E9B60; // type:object size:0x80 scope:global align:32
+int_hnw094_b_front_tex_txt = .data:0x007E9BE0; // type:object size:0x100 scope:global align:32
+int_hnw094_v = .data:0x007E9CE0; // type:object size:0x4A0 scope:global align:8
+int_hnw094_chest_model = .data:0x007EA180; // type:object size:0xF8 scope:global align:8
+int_hnw094_armR_model = .data:0x007EA278; // type:object size:0x80 scope:global align:8
+int_hnw094_armL_model = .data:0x007EA2F8; // type:object size:0x80 scope:global align:8
+int_hnw094_base_model = .data:0x007EA378; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw094_tbl = .data:0x007EA3F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw094_tbl = .data:0x007EA3F8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw094_tbl = .data:0x007EA418; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw094_tbl = .data:0x007EA42C; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw094 = .data:0x007EA534; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw094_tbl = .data:0x007EA548; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw094 = .data:0x007EA59C; // type:object size:0x8 scope:global align:4
+int_hnw095_pal = .data:0x007EA5C0; // type:object size:0x20 scope:global align:32
+int_hnw095_arm_tex_txt = .data:0x007EA5E0; // type:object size:0x100 scope:global align:32
+int_hnw095_armtop_tex_txt = .data:0x007EA6E0; // type:object size:0x80 scope:global align:32
+int_hnw095_c_front_tex_txt = .data:0x007EA760; // type:object size:0x300 scope:global align:32
+int_hnw095_c_back_tex_txt = .data:0x007EAA60; // type:object size:0x180 scope:global align:32
+int_hnw095_antena_tex_txt = .data:0x007EABE0; // type:object size:0x80 scope:global align:32
+int_hnw095_b_back_tex_txt = .data:0x007EAC60; // type:object size:0x80 scope:global align:32
+int_hnw095_b_front_tex_txt = .data:0x007EACE0; // type:object size:0x100 scope:global align:32
+int_hnw095_v = .data:0x007EADE0; // type:object size:0x4A0 scope:global align:8
+int_hnw095_chest_model = .data:0x007EB280; // type:object size:0xF8 scope:global align:8
+int_hnw095_armR_model = .data:0x007EB378; // type:object size:0x80 scope:global align:8
+int_hnw095_armL_model = .data:0x007EB3F8; // type:object size:0x80 scope:global align:8
+int_hnw095_base_model = .data:0x007EB478; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw095_tbl = .data:0x007EB4F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw095_tbl = .data:0x007EB4F8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw095_tbl = .data:0x007EB518; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw095_tbl = .data:0x007EB52C; // type:object size:0xF0 scope:global align:4
+cKF_ba_r_int_hnw095 = .data:0x007EB61C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw095_tbl = .data:0x007EB630; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw095 = .data:0x007EB684; // type:object size:0x8 scope:global align:4
+int_hnw096_pal = .data:0x007EB6A0; // type:object size:0x20 scope:global align:32
+int_hnw096_arm_tex_txt = .data:0x007EB6C0; // type:object size:0x100 scope:global align:32
+int_hnw096_armtop_tex_txt = .data:0x007EB7C0; // type:object size:0x80 scope:global align:32
+int_hnw096_c_front_tex_txt = .data:0x007EB840; // type:object size:0x300 scope:global align:32
+int_hnw096_c_back_tex_txt = .data:0x007EBB40; // type:object size:0x180 scope:global align:32
+int_hnw096_antena_tex_txt = .data:0x007EBCC0; // type:object size:0x80 scope:global align:32
+int_hnw096_b_back_tex_txt = .data:0x007EBD40; // type:object size:0x80 scope:global align:32
+int_hnw096_b_front_tex_txt = .data:0x007EBDC0; // type:object size:0x100 scope:global align:32
+int_hnw096_v = .data:0x007EBEC0; // type:object size:0x4A0 scope:global align:8
+int_hnw096_chest_model = .data:0x007EC360; // type:object size:0xF8 scope:global align:8
+int_hnw096_armR_model = .data:0x007EC458; // type:object size:0x80 scope:global align:8
+int_hnw096_armL_model = .data:0x007EC4D8; // type:object size:0x80 scope:global align:8
+int_hnw096_base_model = .data:0x007EC558; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw096_tbl = .data:0x007EC5D0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw096_tbl = .data:0x007EC5D8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw096_tbl = .data:0x007EC5F8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw096_tbl = .data:0x007EC60C; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw096 = .data:0x007EC708; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw096_tbl = .data:0x007EC71C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw096 = .data:0x007EC770; // type:object size:0x8 scope:global align:4
+int_hnw097_pal = .data:0x007EC780; // type:object size:0x20 scope:global align:32
+int_hnw097_arm_tex_txt = .data:0x007EC7A0; // type:object size:0x100 scope:global align:32
+int_hnw097_armtop_tex_txt = .data:0x007EC8A0; // type:object size:0x80 scope:global align:32
+int_hnw097_c_front_tex_txt = .data:0x007EC920; // type:object size:0x300 scope:global align:32
+int_hnw097_c_back_tex_txt = .data:0x007ECC20; // type:object size:0x180 scope:global align:32
+int_hnw097_antena_tex_txt = .data:0x007ECDA0; // type:object size:0x80 scope:global align:32
+int_hnw097_b_back_tex_txt = .data:0x007ECE20; // type:object size:0x80 scope:global align:32
+int_hnw097_b_front_tex_txt = .data:0x007ECEA0; // type:object size:0x100 scope:global align:32
+int_hnw097_v = .data:0x007ECFA0; // type:object size:0x4A0 scope:global align:8
+int_hnw097_chest_model = .data:0x007ED440; // type:object size:0xF8 scope:global align:8
+int_hnw097_armR_model = .data:0x007ED538; // type:object size:0x80 scope:global align:8
+int_hnw097_armL_model = .data:0x007ED5B8; // type:object size:0x80 scope:global align:8
+int_hnw097_base_model = .data:0x007ED638; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw097_tbl = .data:0x007ED6B0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw097_tbl = .data:0x007ED6B8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw097_tbl = .data:0x007ED6D8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw097_tbl = .data:0x007ED6EC; // type:object size:0xE4 scope:global align:4
+cKF_ba_r_int_hnw097 = .data:0x007ED7D0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw097_tbl = .data:0x007ED7E4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw097 = .data:0x007ED838; // type:object size:0x8 scope:global align:4
+int_hnw098_pal = .data:0x007ED840; // type:object size:0x20 scope:global align:32
+int_hnw098_arm_tex_txt = .data:0x007ED860; // type:object size:0x100 scope:global align:32
+int_hnw098_armtop_tex_txt = .data:0x007ED960; // type:object size:0x80 scope:global align:32
+int_hnw098_c_front_tex_txt = .data:0x007ED9E0; // type:object size:0x300 scope:global align:32
+int_hnw098_c_back_tex_txt = .data:0x007EDCE0; // type:object size:0x180 scope:global align:32
+int_hnw098_b_back_tex_txt = .data:0x007EDE60; // type:object size:0x80 scope:global align:32
+int_hnw098_b_front_tex_txt = .data:0x007EDEE0; // type:object size:0x100 scope:global align:32
+int_hnw098_v = .data:0x007EDFE0; // type:object size:0x470 scope:global align:8
+int_hnw098_chest_model = .data:0x007EE450; // type:object size:0xD0 scope:global align:8
+int_hnw098_armR_model = .data:0x007EE520; // type:object size:0x80 scope:global align:8
+int_hnw098_armL_model = .data:0x007EE5A0; // type:object size:0x80 scope:global align:8
+int_hnw098_base_model = .data:0x007EE620; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw098_tbl = .data:0x007EE698; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw098_tbl = .data:0x007EE6A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw098_tbl = .data:0x007EE6C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw098_tbl = .data:0x007EE6D4; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw098 = .data:0x007EE7DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw098_tbl = .data:0x007EE7F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw098 = .data:0x007EE844; // type:object size:0x8 scope:global align:4
+int_hnw099_pal = .data:0x007EE860; // type:object size:0x20 scope:global align:32
+int_hnw099_c_front_tex_txt = .data:0x007EE880; // type:object size:0x300 scope:global align:32
+int_hnw099_c_back_tex_txt = .data:0x007EEB80; // type:object size:0x180 scope:global align:32
+int_hnw099_arm_tex_txt = .data:0x007EED00; // type:object size:0x100 scope:global align:32
+int_hnw099_armtop_tex_txt = .data:0x007EEE00; // type:object size:0x80 scope:global align:32
+int_hnw099_b_back_tex_txt = .data:0x007EEE80; // type:object size:0x80 scope:global align:32
+int_hnw099_b_front_tex_txt = .data:0x007EEF00; // type:object size:0x100 scope:global align:32
+int_hnw099_v = .data:0x007EF000; // type:object size:0x470 scope:global align:8
+int_hnw099_chest_model = .data:0x007EF470; // type:object size:0xF0 scope:global align:8
+int_hnw099_armR_model = .data:0x007EF560; // type:object size:0x80 scope:global align:8
+int_hnw099_armL_model = .data:0x007EF5E0; // type:object size:0x80 scope:global align:8
+int_hnw099_base_model = .data:0x007EF660; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw099_tbl = .data:0x007EF6E8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw099_tbl = .data:0x007EF6F0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw099_tbl = .data:0x007EF710; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw099_tbl = .data:0x007EF724; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw099 = .data:0x007EF820; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw099_tbl = .data:0x007EF834; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw099 = .data:0x007EF888; // type:object size:0x8 scope:global align:4
+int_hnw100_pal = .data:0x007EF8A0; // type:object size:0x20 scope:global align:32
+int_hnw100_arm_tex_txt = .data:0x007EF8C0; // type:object size:0x100 scope:global align:32
+int_hnw100_armtop_tex_txt = .data:0x007EF9C0; // type:object size:0x80 scope:global align:32
+int_hnw100_c_front_tex_txt = .data:0x007EFA40; // type:object size:0x300 scope:global align:32
+int_hnw100_c_back_tex_txt = .data:0x007EFD40; // type:object size:0x180 scope:global align:32
+int_hnw100_b_back_tex_txt = .data:0x007EFEC0; // type:object size:0x80 scope:global align:32
+int_hnw100_b_front_tex_txt = .data:0x007EFF40; // type:object size:0x100 scope:global align:32
+int_hnw100_v = .data:0x007F0040; // type:object size:0x470 scope:global align:8
+int_hnw100_chest_model = .data:0x007F04B0; // type:object size:0xD0 scope:global align:8
+int_hnw100_armR_model = .data:0x007F0580; // type:object size:0x80 scope:global align:8
+int_hnw100_armL_model = .data:0x007F0600; // type:object size:0x80 scope:global align:8
+int_hnw100_base_model = .data:0x007F0680; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw100_tbl = .data:0x007F06F8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw100_tbl = .data:0x007F0700; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw100_tbl = .data:0x007F0720; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw100_tbl = .data:0x007F0734; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw100 = .data:0x007F083C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw100_tbl = .data:0x007F0850; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw100 = .data:0x007F08A4; // type:object size:0x8 scope:global align:4
+int_hnw101_pal = .data:0x007F08C0; // type:object size:0x20 scope:global align:32
+int_hnw101_arm_tex_txt = .data:0x007F08E0; // type:object size:0x100 scope:global align:32
+int_hnw101_armtop_tex_txt = .data:0x007F09E0; // type:object size:0x80 scope:global align:32
+int_hnw101_c_front_tex_txt = .data:0x007F0A60; // type:object size:0x300 scope:global align:32
+int_hnw101_c_back_tex_txt = .data:0x007F0D60; // type:object size:0x180 scope:global align:32
+int_hnw101_antena_tex_txt = .data:0x007F0EE0; // type:object size:0x80 scope:global align:32
+int_hnw101_b_back_tex_txt = .data:0x007F0F60; // type:object size:0x80 scope:global align:32
+int_hnw101_b_front_tex_txt = .data:0x007F0FE0; // type:object size:0x100 scope:global align:32
+int_hnw101_v = .data:0x007F10E0; // type:object size:0x4A0 scope:global align:8
+int_hnw101_chest_model = .data:0x007F1580; // type:object size:0xF8 scope:global align:8
+int_hnw101_armR_model = .data:0x007F1678; // type:object size:0x80 scope:global align:8
+int_hnw101_armL_model = .data:0x007F16F8; // type:object size:0x80 scope:global align:8
+int_hnw101_base_model = .data:0x007F1778; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw101_tbl = .data:0x007F17F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw101_tbl = .data:0x007F17F8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw101_tbl = .data:0x007F1818; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw101_tbl = .data:0x007F182C; // type:object size:0xD2 scope:global align:4
+cKF_ba_r_int_hnw101 = .data:0x007F1900; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw101_tbl = .data:0x007F1914; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw101 = .data:0x007F1968; // type:object size:0x8 scope:global align:4
+int_hnw102_pal = .data:0x007F1980; // type:object size:0x20 scope:global align:32
+int_hnw102_arm_tex_txt = .data:0x007F19A0; // type:object size:0x100 scope:global align:32
+int_hnw102_armtop_tex_txt = .data:0x007F1AA0; // type:object size:0x80 scope:global align:32
+int_hnw102_c_front_tex_txt = .data:0x007F1B20; // type:object size:0x300 scope:global align:32
+int_hnw102_c_back_tex_txt = .data:0x007F1E20; // type:object size:0x180 scope:global align:32
+int_hnw102_antena_tex_txt = .data:0x007F1FA0; // type:object size:0x80 scope:global align:32
+int_hnw102_b_back_tex_txt = .data:0x007F2020; // type:object size:0x80 scope:global align:32
+int_hnw102_b_front_tex_txt = .data:0x007F20A0; // type:object size:0x100 scope:global align:32
+int_hnw102_v = .data:0x007F21A0; // type:object size:0x4A0 scope:global align:8
+int_hnw102_chest_model = .data:0x007F2640; // type:object size:0xF8 scope:global align:8
+int_hnw102_armR_model = .data:0x007F2738; // type:object size:0x80 scope:global align:8
+int_hnw102_armL_model = .data:0x007F27B8; // type:object size:0x80 scope:global align:8
+int_hnw102_base_model = .data:0x007F2838; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw102_tbl = .data:0x007F28B0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw102_tbl = .data:0x007F28B8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw102_tbl = .data:0x007F28D8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw102_tbl = .data:0x007F28EC; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw102 = .data:0x007F29D8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw102_tbl = .data:0x007F29EC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw102 = .data:0x007F2A40; // type:object size:0x8 scope:global align:4
+int_hnw103_pal = .data:0x007F2A60; // type:object size:0x20 scope:global align:32
+int_hnw103_arm_tex_txt = .data:0x007F2A80; // type:object size:0x100 scope:global align:32
+int_hnw103_armtop_tex_txt = .data:0x007F2B80; // type:object size:0x80 scope:global align:32
+int_hnw103_c_front_tex_txt = .data:0x007F2C00; // type:object size:0x300 scope:global align:32
+int_hnw103_c_back_tex_txt = .data:0x007F2F00; // type:object size:0x180 scope:global align:32
+int_hnw103_antena_tex_txt = .data:0x007F3080; // type:object size:0x80 scope:global align:32
+int_hnw103_b_back_tex_txt = .data:0x007F3100; // type:object size:0x80 scope:global align:32
+int_hnw103_b_front_tex_txt = .data:0x007F3180; // type:object size:0x100 scope:global align:32
+int_hnw103_v = .data:0x007F3280; // type:object size:0x4A0 scope:global align:8
+int_hnw103_chest_model = .data:0x007F3720; // type:object size:0xF8 scope:global align:8
+int_hnw103_armR_model = .data:0x007F3818; // type:object size:0x80 scope:global align:8
+int_hnw103_armL_model = .data:0x007F3898; // type:object size:0x80 scope:global align:8
+int_hnw103_base_model = .data:0x007F3918; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw103_tbl = .data:0x007F3990; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw103_tbl = .data:0x007F3998; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw103_tbl = .data:0x007F39B8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw103_tbl = .data:0x007F39CC; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw103 = .data:0x007F3AB8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw103_tbl = .data:0x007F3ACC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw103 = .data:0x007F3B20; // type:object size:0x8 scope:global align:4
+int_hnw104_pal = .data:0x007F3B40; // type:object size:0x20 scope:global align:32
+int_hnw104_arm_tex_txt = .data:0x007F3B60; // type:object size:0x100 scope:global align:32
+int_hnw104_armtop_tex_txt = .data:0x007F3C60; // type:object size:0x80 scope:global align:32
+int_hnw104_c_front_tex_txt = .data:0x007F3CE0; // type:object size:0x300 scope:global align:32
+int_hnw104_c_back_tex_txt = .data:0x007F3FE0; // type:object size:0x180 scope:global align:32
+int_hnw104_antena_tex_txt = .data:0x007F4160; // type:object size:0x80 scope:global align:32
+int_hnw104_b_back_tex_txt = .data:0x007F41E0; // type:object size:0x80 scope:global align:32
+int_hnw104_b_front_tex_txt = .data:0x007F4260; // type:object size:0x100 scope:global align:32
+int_hnw104_v = .data:0x007F4360; // type:object size:0x4A0 scope:global align:8
+int_hnw104_chest_model = .data:0x007F4800; // type:object size:0xF8 scope:global align:8
+int_hnw104_armR_model = .data:0x007F48F8; // type:object size:0x80 scope:global align:8
+int_hnw104_armL_model = .data:0x007F4978; // type:object size:0x80 scope:global align:8
+int_hnw104_base_model = .data:0x007F49F8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw104_tbl = .data:0x007F4A70; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw104_tbl = .data:0x007F4A78; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw104_tbl = .data:0x007F4A98; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw104_tbl = .data:0x007F4AAC; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw104 = .data:0x007F4B98; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw104_tbl = .data:0x007F4BAC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw104 = .data:0x007F4C00; // type:object size:0x8 scope:global align:4
+int_hnw105_pal = .data:0x007F4C20; // type:object size:0x20 scope:global align:32
+int_hnw105_arm_tex_txt = .data:0x007F4C40; // type:object size:0x100 scope:global align:32
+int_hnw105_armtop_tex_txt = .data:0x007F4D40; // type:object size:0x80 scope:global align:32
+int_hnw105_c_front_tex_txt = .data:0x007F4DC0; // type:object size:0x300 scope:global align:32
+int_hnw105_c_back_tex_txt = .data:0x007F50C0; // type:object size:0x180 scope:global align:32
+int_hnw105_b_back_tex_txt = .data:0x007F5240; // type:object size:0x80 scope:global align:32
+int_hnw105_b_front_tex_txt = .data:0x007F52C0; // type:object size:0x100 scope:global align:32
+int_hnw105_v = .data:0x007F53C0; // type:object size:0x470 scope:global align:8
+int_hnw105_chest_model = .data:0x007F5830; // type:object size:0xD0 scope:global align:8
+int_hnw105_armR_model = .data:0x007F5900; // type:object size:0x80 scope:global align:8
+int_hnw105_armL_model = .data:0x007F5980; // type:object size:0x80 scope:global align:8
+int_hnw105_base_model = .data:0x007F5A00; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw105_tbl = .data:0x007F5A78; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw105_tbl = .data:0x007F5A80; // type:object size:0x14 scope:global align:4
+cKF_c_int_hnw105_tbl = .data:0x007F5A94; // type:object size:0x1C scope:global align:4
+cKF_ds_int_hnw105_tbl = .data:0x007F5AB0; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_hnw105 = .data:0x007F5B88; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw105_tbl = .data:0x007F5B9C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw105 = .data:0x007F5BF0; // type:object size:0x8 scope:global align:4
+int_hnw106_pal = .data:0x007F5C00; // type:object size:0x20 scope:global align:32
+int_hnw106_arm_tex_txt = .data:0x007F5C20; // type:object size:0x100 scope:global align:32
+int_hnw106_armtop_tex_txt = .data:0x007F5D20; // type:object size:0x80 scope:global align:32
+int_hnw106_c_front_tex_txt = .data:0x007F5DA0; // type:object size:0x300 scope:global align:32
+int_hnw106_c_back_tex_txt = .data:0x007F60A0; // type:object size:0x180 scope:global align:32
+int_hnw106_b_back_tex_txt = .data:0x007F6220; // type:object size:0x80 scope:global align:32
+int_hnw106_b_front_tex_txt = .data:0x007F62A0; // type:object size:0x100 scope:global align:32
+int_hnw106_v = .data:0x007F63A0; // type:object size:0x470 scope:global align:8
+int_hnw106_chest_model = .data:0x007F6810; // type:object size:0xD0 scope:global align:8
+int_hnw106_armR_model = .data:0x007F68E0; // type:object size:0x80 scope:global align:8
+int_hnw106_armL_model = .data:0x007F6960; // type:object size:0x80 scope:global align:8
+int_hnw106_base_model = .data:0x007F69E0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw106_tbl = .data:0x007F6A58; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw106_tbl = .data:0x007F6A60; // type:object size:0x14 scope:global align:4
+cKF_c_int_hnw106_tbl = .data:0x007F6A74; // type:object size:0x1C scope:global align:4
+cKF_ds_int_hnw106_tbl = .data:0x007F6A90; // type:object size:0xD2 scope:global align:4
+cKF_ba_r_int_hnw106 = .data:0x007F6B64; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw106_tbl = .data:0x007F6B78; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw106 = .data:0x007F6BCC; // type:object size:0x8 scope:global align:4
+int_hnw107_pal = .data:0x007F6BE0; // type:object size:0x20 scope:global align:32
+int_hnw107_c_front_tex_txt = .data:0x007F6C00; // type:object size:0x300 scope:global align:32
+int_hnw107_c_back_tex_txt = .data:0x007F6F00; // type:object size:0x180 scope:global align:32
+int_hnw107_arm_tex_txt = .data:0x007F7080; // type:object size:0x100 scope:global align:32
+int_hnw107_armtop_tex_txt = .data:0x007F7180; // type:object size:0x80 scope:global align:32
+int_hnw107_b_back_tex_txt = .data:0x007F7200; // type:object size:0x80 scope:global align:32
+int_hnw107_b_front_tex_txt = .data:0x007F7280; // type:object size:0x100 scope:global align:32
+int_hnw107_v = .data:0x007F7380; // type:object size:0x470 scope:global align:8
+int_hnw107_chest_model = .data:0x007F77F0; // type:object size:0xF0 scope:global align:8
+int_hnw107_armR_model = .data:0x007F78E0; // type:object size:0x80 scope:global align:8
+int_hnw107_armL_model = .data:0x007F7960; // type:object size:0x80 scope:global align:8
+int_hnw107_base_model = .data:0x007F79E0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw107_tbl = .data:0x007F7A68; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw107_tbl = .data:0x007F7A70; // type:object size:0x1C scope:global align:4
+cKF_c_int_hnw107_tbl = .data:0x007F7A8C; // type:object size:0x14 scope:global align:4
+cKF_ds_int_hnw107_tbl = .data:0x007F7AA0; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_hnw107 = .data:0x007F7BBC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw107_tbl = .data:0x007F7BD0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw107 = .data:0x007F7C24; // type:object size:0x8 scope:global align:4
+int_hnw108_pal = .data:0x007F7C40; // type:object size:0x20 scope:global align:32
+int_hnw108_arm_tex_txt = .data:0x007F7C60; // type:object size:0x100 scope:global align:32
+int_hnw108_armtop_tex_txt = .data:0x007F7D60; // type:object size:0x80 scope:global align:32
+int_hnw108_c_front_tex_txt = .data:0x007F7DE0; // type:object size:0x300 scope:global align:32
+int_hnw108_c_back_tex_txt = .data:0x007F80E0; // type:object size:0x180 scope:global align:32
+int_hnw108_b_back_tex_txt = .data:0x007F8260; // type:object size:0x80 scope:global align:32
+int_hnw108_b_front_tex_txt = .data:0x007F82E0; // type:object size:0x100 scope:global align:32
+int_hnw108_v = .data:0x007F83E0; // type:object size:0x470 scope:global align:8
+int_hnw108_chest_model = .data:0x007F8850; // type:object size:0xD0 scope:global align:8
+int_hnw108_armR_model = .data:0x007F8920; // type:object size:0x80 scope:global align:8
+int_hnw108_armL_model = .data:0x007F89A0; // type:object size:0x80 scope:global align:8
+int_hnw108_base_model = .data:0x007F8A20; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw108_tbl = .data:0x007F8A98; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw108_tbl = .data:0x007F8AA0; // type:object size:0x1A scope:global align:4
+cKF_c_int_hnw108_tbl = .data:0x007F8ABC; // type:object size:0x16 scope:global align:4
+cKF_ds_int_hnw108_tbl = .data:0x007F8AD4; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_hnw108 = .data:0x007F8BDC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw108_tbl = .data:0x007F8BF0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw108 = .data:0x007F8C44; // type:object size:0x8 scope:global align:4
+int_hnw109_pal = .data:0x007F8C60; // type:object size:0x20 scope:global align:32
+int_hnw109_arm_tex_txt = .data:0x007F8C80; // type:object size:0x100 scope:global align:32
+int_hnw109_armtop_tex_txt = .data:0x007F8D80; // type:object size:0x80 scope:global align:32
+int_hnw109_c_front_tex_txt = .data:0x007F8E00; // type:object size:0x300 scope:global align:32
+int_hnw109_c_back_tex_txt = .data:0x007F9100; // type:object size:0x180 scope:global align:32
+int_hnw109_b_back_tex_txt = .data:0x007F9280; // type:object size:0x80 scope:global align:32
+int_hnw109_b_front_tex_txt = .data:0x007F9300; // type:object size:0x100 scope:global align:32
+int_hnw109_v = .data:0x007F9400; // type:object size:0x470 scope:global align:8
+int_hnw109_chest_model = .data:0x007F9870; // type:object size:0xD0 scope:global align:8
+int_hnw109_armR_model = .data:0x007F9940; // type:object size:0x80 scope:global align:8
+int_hnw109_armL_model = .data:0x007F99C0; // type:object size:0x80 scope:global align:8
+int_hnw109_base_model = .data:0x007F9A40; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw109_tbl = .data:0x007F9AB8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw109_tbl = .data:0x007F9AC0; // type:object size:0x12 scope:global align:4
+cKF_c_int_hnw109_tbl = .data:0x007F9AD4; // type:object size:0x1E scope:global align:4
+cKF_ds_int_hnw109_tbl = .data:0x007F9AF4; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw109 = .data:0x007F9B74; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw109_tbl = .data:0x007F9B88; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw109 = .data:0x007F9BDC; // type:object size:0x8 scope:global align:4
+int_hnw110_pal = .data:0x007F9C00; // type:object size:0x20 scope:global align:32
+int_hnw110_arm_tex_txt = .data:0x007F9C20; // type:object size:0x100 scope:global align:32
+int_hnw110_armtop_tex_txt = .data:0x007F9D20; // type:object size:0x80 scope:global align:32
+int_hnw110_c_front_tex_txt = .data:0x007F9DA0; // type:object size:0x300 scope:global align:32
+int_hnw110_c_back_tex_txt = .data:0x007FA0A0; // type:object size:0x180 scope:global align:32
+int_hnw110_b_back_tex_txt = .data:0x007FA220; // type:object size:0x80 scope:global align:32
+int_hnw110_b_front_tex_txt = .data:0x007FA2A0; // type:object size:0x100 scope:global align:32
+int_hnw110_v = .data:0x007FA3A0; // type:object size:0x470 scope:global align:8
+int_hnw110_chest_model = .data:0x007FA810; // type:object size:0xD0 scope:global align:8
+int_hnw110_armR_model = .data:0x007FA8E0; // type:object size:0x80 scope:global align:8
+int_hnw110_armL_model = .data:0x007FA960; // type:object size:0x80 scope:global align:8
+int_hnw110_base_model = .data:0x007FA9E0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw110_tbl = .data:0x007FAA58; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw110_tbl = .data:0x007FAA60; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw110_tbl = .data:0x007FAA80; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw110_tbl = .data:0x007FAA94; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_hnw110 = .data:0x007FAB80; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw110_tbl = .data:0x007FAB94; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw110 = .data:0x007FABE8; // type:object size:0x8 scope:global align:4
+int_hnw111_pal = .data:0x007FAC00; // type:object size:0x20 scope:global align:32
+int_hnw111_c_front_tex_txt = .data:0x007FAC20; // type:object size:0x300 scope:global align:32
+int_hnw111_c_back_tex_txt = .data:0x007FAF20; // type:object size:0x180 scope:global align:32
+int_hnw111_arm_tex_txt = .data:0x007FB0A0; // type:object size:0x100 scope:global align:32
+int_hnw111_armtop_tex_txt = .data:0x007FB1A0; // type:object size:0x80 scope:global align:32
+int_hnw111_b_back_tex_txt = .data:0x007FB220; // type:object size:0x80 scope:global align:32
+int_hnw111_b_front_tex_txt = .data:0x007FB2A0; // type:object size:0x100 scope:global align:32
+int_hnw111_v = .data:0x007FB3A0; // type:object size:0x470 scope:global align:8
+int_hnw111_chest_model = .data:0x007FB810; // type:object size:0xF0 scope:global align:8
+int_hnw111_armR_model = .data:0x007FB900; // type:object size:0x80 scope:global align:8
+int_hnw111_armL_model = .data:0x007FB980; // type:object size:0x80 scope:global align:8
+int_hnw111_base_model = .data:0x007FBA00; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw111_tbl = .data:0x007FBA88; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw111_tbl = .data:0x007FBA90; // type:object size:0x12 scope:global align:4
+cKF_c_int_hnw111_tbl = .data:0x007FBAA4; // type:object size:0x1E scope:global align:4
+cKF_ds_int_hnw111_tbl = .data:0x007FBAC4; // type:object size:0x8A scope:global align:4
+cKF_ba_r_int_hnw111 = .data:0x007FBB50; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw111_tbl = .data:0x007FBB64; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw111 = .data:0x007FBBB8; // type:object size:0x8 scope:global align:4
+int_hnw112_pal = .data:0x007FBBC0; // type:object size:0x20 scope:global align:32
+int_hnw112_arm_tex_txt = .data:0x007FBBE0; // type:object size:0x100 scope:global align:32
+int_hnw112_armtop_tex_txt = .data:0x007FBCE0; // type:object size:0x80 scope:global align:32
+int_hnw112_c_front_tex_txt = .data:0x007FBD60; // type:object size:0x300 scope:global align:32
+int_hnw112_c_back_tex_txt = .data:0x007FC060; // type:object size:0x180 scope:global align:32
+int_hnw112_b_back_tex_txt = .data:0x007FC1E0; // type:object size:0x80 scope:global align:32
+int_hnw112_b_front_tex_txt = .data:0x007FC260; // type:object size:0x100 scope:global align:32
+int_hnw112_v = .data:0x007FC360; // type:object size:0x470 scope:global align:8
+int_hnw112_chest_model = .data:0x007FC7D0; // type:object size:0xD0 scope:global align:8
+int_hnw112_armR_model = .data:0x007FC8A0; // type:object size:0x80 scope:global align:8
+int_hnw112_armL_model = .data:0x007FC920; // type:object size:0x80 scope:global align:8
+int_hnw112_base_model = .data:0x007FC9A0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw112_tbl = .data:0x007FCA18; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw112_tbl = .data:0x007FCA20; // type:object size:0x12 scope:global align:4
+cKF_c_int_hnw112_tbl = .data:0x007FCA34; // type:object size:0x1E scope:global align:4
+cKF_ds_int_hnw112_tbl = .data:0x007FCA54; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_hnw112 = .data:0x007FCAD4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw112_tbl = .data:0x007FCAE8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw112 = .data:0x007FCB3C; // type:object size:0x8 scope:global align:4
+int_hnw113_pal = .data:0x007FCB60; // type:object size:0x20 scope:global align:32
+int_hnw113_arm_tex_txt = .data:0x007FCB80; // type:object size:0x100 scope:global align:32
+int_hnw113_armtop_tex_txt = .data:0x007FCC80; // type:object size:0x80 scope:global align:32
+int_hnw113_c_front_tex_txt = .data:0x007FCD00; // type:object size:0x300 scope:global align:32
+int_hnw113_c_back_tex_txt = .data:0x007FD000; // type:object size:0x180 scope:global align:32
+int_hnw113_antena_tex_txt = .data:0x007FD180; // type:object size:0x80 scope:global align:32
+int_hnw113_b_back_tex_txt = .data:0x007FD200; // type:object size:0x80 scope:global align:32
+int_hnw113_b_front_tex_txt = .data:0x007FD280; // type:object size:0x100 scope:global align:32
+int_hnw113_v = .data:0x007FD380; // type:object size:0x4A0 scope:global align:8
+int_hnw113_chest_model = .data:0x007FD820; // type:object size:0xF8 scope:global align:8
+int_hnw113_armR_model = .data:0x007FD918; // type:object size:0x80 scope:global align:8
+int_hnw113_armL_model = .data:0x007FD998; // type:object size:0x80 scope:global align:8
+int_hnw113_base_model = .data:0x007FDA18; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw113_tbl = .data:0x007FDA90; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw113_tbl = .data:0x007FDA98; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw113_tbl = .data:0x007FDAB8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw113_tbl = .data:0x007FDACC; // type:object size:0x156 scope:global align:4
+cKF_ba_r_int_hnw113 = .data:0x007FDC24; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw113_tbl = .data:0x007FDC38; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw113 = .data:0x007FDC8C; // type:object size:0x8 scope:global align:4
+int_hnw114_pal = .data:0x007FDCA0; // type:object size:0x20 scope:global align:32
+int_hnw114_arm_tex_txt = .data:0x007FDCC0; // type:object size:0x100 scope:global align:32
+int_hnw114_armtop_tex_txt = .data:0x007FDDC0; // type:object size:0x80 scope:global align:32
+int_hnw114_c_front_tex_txt = .data:0x007FDE40; // type:object size:0x300 scope:global align:32
+int_hnw114_c_back_tex_txt = .data:0x007FE140; // type:object size:0x180 scope:global align:32
+int_hnw114_antena_tex_txt = .data:0x007FE2C0; // type:object size:0x80 scope:global align:32
+int_hnw114_b_back_tex_txt = .data:0x007FE340; // type:object size:0x80 scope:global align:32
+int_hnw114_b_front_tex_txt = .data:0x007FE3C0; // type:object size:0x100 scope:global align:32
+int_hnw114_v = .data:0x007FE4C0; // type:object size:0x4A0 scope:global align:8
+int_hnw114_chest_model = .data:0x007FE960; // type:object size:0xF8 scope:global align:8
+int_hnw114_armR_model = .data:0x007FEA58; // type:object size:0x80 scope:global align:8
+int_hnw114_armL_model = .data:0x007FEAD8; // type:object size:0x80 scope:global align:8
+int_hnw114_base_model = .data:0x007FEB58; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw114_tbl = .data:0x007FEBD0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw114_tbl = .data:0x007FEBD8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw114_tbl = .data:0x007FEBF8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw114_tbl = .data:0x007FEC0C; // type:object size:0x16E scope:global align:4
+cKF_ba_r_int_hnw114 = .data:0x007FED7C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw114_tbl = .data:0x007FED90; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw114 = .data:0x007FEDE4; // type:object size:0x8 scope:global align:4
+int_hnw115_pal = .data:0x007FEE00; // type:object size:0x20 scope:global align:32
+int_hnw115_arm_tex_txt = .data:0x007FEE20; // type:object size:0x100 scope:global align:32
+int_hnw115_armtop_tex_txt = .data:0x007FEF20; // type:object size:0x80 scope:global align:32
+int_hnw115_c_front_tex_txt = .data:0x007FEFA0; // type:object size:0x300 scope:global align:32
+int_hnw115_c_back_tex_txt = .data:0x007FF2A0; // type:object size:0x180 scope:global align:32
+int_hnw115_antena_tex_txt = .data:0x007FF420; // type:object size:0x80 scope:global align:32
+int_hnw115_b_back_tex_txt = .data:0x007FF4A0; // type:object size:0x80 scope:global align:32
+int_hnw115_b_front_tex_txt = .data:0x007FF520; // type:object size:0x100 scope:global align:32
+int_hnw115_v = .data:0x007FF620; // type:object size:0x4A0 scope:global align:8
+int_hnw115_chest_model = .data:0x007FFAC0; // type:object size:0xF8 scope:global align:8
+int_hnw115_armR_model = .data:0x007FFBB8; // type:object size:0x80 scope:global align:8
+int_hnw115_armL_model = .data:0x007FFC38; // type:object size:0x80 scope:global align:8
+int_hnw115_base_model = .data:0x007FFCB8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw115_tbl = .data:0x007FFD30; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw115_tbl = .data:0x007FFD38; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw115_tbl = .data:0x007FFD58; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw115_tbl = .data:0x007FFD6C; // type:object size:0x16E scope:global align:4
+cKF_ba_r_int_hnw115 = .data:0x007FFEDC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw115_tbl = .data:0x007FFEF0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw115 = .data:0x007FFF44; // type:object size:0x8 scope:global align:4
+int_hnw116_pal = .data:0x007FFF60; // type:object size:0x20 scope:global align:32
+int_hnw116_arm_tex_txt = .data:0x007FFF80; // type:object size:0x100 scope:global align:32
+int_hnw116_armtop_tex_txt = .data:0x00800080; // type:object size:0x80 scope:global align:32
+int_hnw116_c_front_tex_txt = .data:0x00800100; // type:object size:0x300 scope:global align:32
+int_hnw116_c_back_tex_txt = .data:0x00800400; // type:object size:0x180 scope:global align:32
+int_hnw116_antena_tex_txt = .data:0x00800580; // type:object size:0x80 scope:global align:32
+int_hnw116_b_back_tex_txt = .data:0x00800600; // type:object size:0x80 scope:global align:32
+int_hnw116_b_front_tex_txt = .data:0x00800680; // type:object size:0x100 scope:global align:32
+int_hnw116_v = .data:0x00800780; // type:object size:0x4A0 scope:global align:8
+int_hnw116_chest_model = .data:0x00800C20; // type:object size:0xF8 scope:global align:8
+int_hnw116_armR_model = .data:0x00800D18; // type:object size:0x80 scope:global align:8
+int_hnw116_armL_model = .data:0x00800D98; // type:object size:0x80 scope:global align:8
+int_hnw116_base_model = .data:0x00800E18; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw116_tbl = .data:0x00800E90; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw116_tbl = .data:0x00800E98; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw116_tbl = .data:0x00800EB8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw116_tbl = .data:0x00800ECC; // type:object size:0x126 scope:global align:4
+cKF_ba_r_int_hnw116 = .data:0x00800FF4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw116_tbl = .data:0x00801008; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw116 = .data:0x0080105C; // type:object size:0x8 scope:global align:4
+int_hnw117_pal = .data:0x00801080; // type:object size:0x20 scope:global align:32
+int_hnw117_arm_tex_txt = .data:0x008010A0; // type:object size:0x100 scope:global align:32
+int_hnw117_armtop_tex_txt = .data:0x008011A0; // type:object size:0x80 scope:global align:32
+int_hnw117_c_front_tex_txt = .data:0x00801220; // type:object size:0x300 scope:global align:32
+int_hnw117_c_back_tex_txt = .data:0x00801520; // type:object size:0x180 scope:global align:32
+int_hnw117_antena_tex_txt = .data:0x008016A0; // type:object size:0x80 scope:global align:32
+int_hnw117_b_back_tex_txt = .data:0x00801720; // type:object size:0x80 scope:global align:32
+int_hnw117_b_front_tex_txt = .data:0x008017A0; // type:object size:0x100 scope:global align:32
+int_hnw117_v = .data:0x008018A0; // type:object size:0x4A0 scope:global align:8
+int_hnw117_chest_model = .data:0x00801D40; // type:object size:0xF8 scope:global align:8
+int_hnw117_armR_model = .data:0x00801E38; // type:object size:0x80 scope:global align:8
+int_hnw117_armL_model = .data:0x00801EB8; // type:object size:0x80 scope:global align:8
+int_hnw117_base_model = .data:0x00801F38; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw117_tbl = .data:0x00801FB0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw117_tbl = .data:0x00801FB8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw117_tbl = .data:0x00801FD8; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw117_tbl = .data:0x00801FEC; // type:object size:0x150 scope:global align:4
+cKF_ba_r_int_hnw117 = .data:0x0080213C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw117_tbl = .data:0x00802150; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw117 = .data:0x008021A4; // type:object size:0x8 scope:global align:4
+int_hnw118_pal = .data:0x008021C0; // type:object size:0x20 scope:global align:32
+int_hnw118_arm_tex_txt = .data:0x008021E0; // type:object size:0x100 scope:global align:32
+int_hnw118_armtop_tex_txt = .data:0x008022E0; // type:object size:0x80 scope:global align:32
+int_hnw118_c_front_tex_txt = .data:0x00802360; // type:object size:0x300 scope:global align:32
+int_hnw118_c_back_tex_txt = .data:0x00802660; // type:object size:0x180 scope:global align:32
+int_hnw118_antena_tex_txt = .data:0x008027E0; // type:object size:0x80 scope:global align:32
+int_hnw118_b_back_tex_txt = .data:0x00802860; // type:object size:0x80 scope:global align:32
+int_hnw118_b_front_tex_txt = .data:0x008028E0; // type:object size:0x100 scope:global align:32
+int_hnw118_v = .data:0x008029E0; // type:object size:0x4A0 scope:global align:8
+int_hnw118_chest_model = .data:0x00802E80; // type:object size:0xF8 scope:global align:8
+int_hnw118_armR_model = .data:0x00802F78; // type:object size:0x80 scope:global align:8
+int_hnw118_armL_model = .data:0x00802FF8; // type:object size:0x80 scope:global align:8
+int_hnw118_base_model = .data:0x00803078; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw118_tbl = .data:0x008030F0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw118_tbl = .data:0x008030F8; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw118_tbl = .data:0x00803118; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw118_tbl = .data:0x0080312C; // type:object size:0x168 scope:global align:4
+cKF_ba_r_int_hnw118 = .data:0x00803294; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw118_tbl = .data:0x008032A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw118 = .data:0x008032FC; // type:object size:0x8 scope:global align:4
+int_hnw119_pal = .data:0x00803320; // type:object size:0x20 scope:global align:32
+int_hnw119_arm_tex_txt = .data:0x00803340; // type:object size:0x100 scope:global align:32
+int_hnw119_armtop_tex_txt = .data:0x00803440; // type:object size:0x80 scope:global align:32
+int_hnw119_c_front_tex_txt = .data:0x008034C0; // type:object size:0x300 scope:global align:32
+int_hnw119_c_back_tex_txt = .data:0x008037C0; // type:object size:0x180 scope:global align:32
+int_hnw119_antena_tex_txt = .data:0x00803940; // type:object size:0x80 scope:global align:32
+int_hnw119_b_back_tex_txt = .data:0x008039C0; // type:object size:0x80 scope:global align:32
+int_hnw119_b_front_tex_txt = .data:0x00803A40; // type:object size:0x100 scope:global align:32
+int_hnw119_v = .data:0x00803B40; // type:object size:0x4A0 scope:global align:8
+int_hnw119_chest_model = .data:0x00803FE0; // type:object size:0xF8 scope:global align:8
+int_hnw119_armR_model = .data:0x008040D8; // type:object size:0x80 scope:global align:8
+int_hnw119_armL_model = .data:0x00804158; // type:object size:0x80 scope:global align:8
+int_hnw119_base_model = .data:0x008041D8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw119_tbl = .data:0x00804250; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw119_tbl = .data:0x00804258; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw119_tbl = .data:0x00804278; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw119_tbl = .data:0x0080428C; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw119 = .data:0x00804388; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw119_tbl = .data:0x0080439C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw119 = .data:0x008043F0; // type:object size:0x8 scope:global align:4
+int_hnw120_pal = .data:0x00804400; // type:object size:0x20 scope:global align:32
+int_hnw120_arm_tex_txt = .data:0x00804420; // type:object size:0x100 scope:global align:32
+int_hnw120_armtop_tex_txt = .data:0x00804520; // type:object size:0x80 scope:global align:32
+int_hnw120_c_front_tex_txt = .data:0x008045A0; // type:object size:0x300 scope:global align:32
+int_hnw120_c_back_tex_txt = .data:0x008048A0; // type:object size:0x180 scope:global align:32
+int_hnw120_antena_tex_txt = .data:0x00804A20; // type:object size:0x80 scope:global align:32
+int_hnw120_b_back_tex_txt = .data:0x00804AA0; // type:object size:0x80 scope:global align:32
+int_hnw120_b_front_tex_txt = .data:0x00804B20; // type:object size:0x100 scope:global align:32
+int_hnw120_v = .data:0x00804C20; // type:object size:0x4A0 scope:global align:8
+int_hnw120_chest_model = .data:0x008050C0; // type:object size:0xF8 scope:global align:8
+int_hnw120_armR_model = .data:0x008051B8; // type:object size:0x80 scope:global align:8
+int_hnw120_armL_model = .data:0x00805238; // type:object size:0x80 scope:global align:8
+int_hnw120_base_model = .data:0x008052B8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw120_tbl = .data:0x00805330; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw120_tbl = .data:0x00805338; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw120_tbl = .data:0x00805358; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw120_tbl = .data:0x0080536C; // type:object size:0x114 scope:global align:4
+cKF_ba_r_int_hnw120 = .data:0x00805480; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw120_tbl = .data:0x00805494; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw120 = .data:0x008054E8; // type:object size:0x8 scope:global align:4
+int_hnw121_pal = .data:0x00805500; // type:object size:0x20 scope:global align:32
+int_hnw121_arm_tex_txt = .data:0x00805520; // type:object size:0x100 scope:global align:32
+int_hnw121_armtop_tex_txt = .data:0x00805620; // type:object size:0x80 scope:global align:32
+int_hnw121_c_front_tex_txt = .data:0x008056A0; // type:object size:0x300 scope:global align:32
+int_hnw121_c_back_tex_txt = .data:0x008059A0; // type:object size:0x180 scope:global align:32
+int_hnw121_antena_tex_txt = .data:0x00805B20; // type:object size:0x80 scope:global align:32
+int_hnw121_b_back_tex_txt = .data:0x00805BA0; // type:object size:0x80 scope:global align:32
+int_hnw121_b_front_tex_txt = .data:0x00805C20; // type:object size:0x100 scope:global align:32
+int_hnw121_v = .data:0x00805D20; // type:object size:0x4A0 scope:global align:8
+int_hnw121_chest_model = .data:0x008061C0; // type:object size:0xF8 scope:global align:8
+int_hnw121_armR_model = .data:0x008062B8; // type:object size:0x80 scope:global align:8
+int_hnw121_armL_model = .data:0x00806338; // type:object size:0x80 scope:global align:8
+int_hnw121_base_model = .data:0x008063B8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw121_tbl = .data:0x00806430; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw121_tbl = .data:0x00806438; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw121_tbl = .data:0x00806458; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw121_tbl = .data:0x0080646C; // type:object size:0x14A scope:global align:4
+cKF_ba_r_int_hnw121 = .data:0x008065B8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw121_tbl = .data:0x008065CC; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw121 = .data:0x00806620; // type:object size:0x8 scope:global align:4
+int_hnw122_pal = .data:0x00806640; // type:object size:0x20 scope:global align:32
+int_hnw122_arm_tex_txt = .data:0x00806660; // type:object size:0x100 scope:global align:32
+int_hnw122_armtop_tex_txt = .data:0x00806760; // type:object size:0x80 scope:global align:32
+int_hnw122_c_front_tex_txt = .data:0x008067E0; // type:object size:0x300 scope:global align:32
+int_hnw122_c_back_tex_txt = .data:0x00806AE0; // type:object size:0x180 scope:global align:32
+int_hnw122_b_back_tex_txt = .data:0x00806C60; // type:object size:0x80 scope:global align:32
+int_hnw122_b_front_tex_txt = .data:0x00806CE0; // type:object size:0x100 scope:global align:32
+int_hnw122_v = .data:0x00806DE0; // type:object size:0x470 scope:global align:8
+int_hnw122_chest_model = .data:0x00807250; // type:object size:0xD0 scope:global align:8
+int_hnw122_armR_model = .data:0x00807320; // type:object size:0x80 scope:global align:8
+int_hnw122_armL_model = .data:0x008073A0; // type:object size:0x80 scope:global align:8
+int_hnw122_base_model = .data:0x00807420; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw122_tbl = .data:0x00807498; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw122_tbl = .data:0x008074A0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw122_tbl = .data:0x008074C0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw122_tbl = .data:0x008074D4; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_hnw122 = .data:0x008075D0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw122_tbl = .data:0x008075E4; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw122 = .data:0x00807638; // type:object size:0x8 scope:global align:4
+int_hnw123_pal = .data:0x00807640; // type:object size:0x20 scope:global align:32
+int_hnw123_c_front_tex_txt = .data:0x00807660; // type:object size:0x300 scope:global align:32
+int_hnw123_c_back_tex_txt = .data:0x00807960; // type:object size:0x180 scope:global align:32
+int_hnw123_arm_tex_txt = .data:0x00807AE0; // type:object size:0x100 scope:global align:32
+int_hnw123_armtop_tex_txt = .data:0x00807BE0; // type:object size:0x80 scope:global align:32
+int_hnw123_b_back_tex_txt = .data:0x00807C60; // type:object size:0x80 scope:global align:32
+int_hnw123_b_front_tex_txt = .data:0x00807CE0; // type:object size:0x100 scope:global align:32
+int_hnw123_v = .data:0x00807DE0; // type:object size:0x470 scope:global align:8
+int_hnw123_chest_model = .data:0x00808250; // type:object size:0xF0 scope:global align:8
+int_hnw123_armR_model = .data:0x00808340; // type:object size:0x80 scope:global align:8
+int_hnw123_armL_model = .data:0x008083C0; // type:object size:0x80 scope:global align:8
+int_hnw123_base_model = .data:0x00808440; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_hnw123_tbl = .data:0x008084C8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw123_tbl = .data:0x008084D0; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw123_tbl = .data:0x008084F0; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw123_tbl = .data:0x00808504; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw123 = .data:0x00808624; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw123_tbl = .data:0x00808638; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw123 = .data:0x0080868C; // type:object size:0x8 scope:global align:4
+int_hnw124_pal = .data:0x008086A0; // type:object size:0x20 scope:global align:32
+int_hnw124_arm_tex_txt = .data:0x008086C0; // type:object size:0x100 scope:global align:32
+int_hnw124_armtop_tex_txt = .data:0x008087C0; // type:object size:0x80 scope:global align:32
+int_hnw124_c_front_tex_txt = .data:0x00808840; // type:object size:0x300 scope:global align:32
+int_hnw124_c_back_tex_txt = .data:0x00808B40; // type:object size:0x180 scope:global align:32
+int_hnw124_b_back_tex_txt = .data:0x00808CC0; // type:object size:0x80 scope:global align:32
+int_hnw124_b_front_tex_txt = .data:0x00808D40; // type:object size:0x100 scope:global align:32
+int_hnw124_v = .data:0x00808E40; // type:object size:0x470 scope:global align:8
+int_hnw124_chest_model = .data:0x008092B0; // type:object size:0xD0 scope:global align:8
+int_hnw124_armR_model = .data:0x00809380; // type:object size:0x80 scope:global align:8
+int_hnw124_armL_model = .data:0x00809400; // type:object size:0x80 scope:global align:8
+int_hnw124_base_model = .data:0x00809480; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw124_tbl = .data:0x008094F8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw124_tbl = .data:0x00809500; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw124_tbl = .data:0x00809520; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw124_tbl = .data:0x00809534; // type:object size:0x120 scope:global align:4
+cKF_ba_r_int_hnw124 = .data:0x00809654; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw124_tbl = .data:0x00809668; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw124 = .data:0x008096BC; // type:object size:0x8 scope:global align:4
+int_hnw125_pal = .data:0x008096E0; // type:object size:0x20 scope:global align:32
+int_hnw125_arm_tex_txt = .data:0x00809700; // type:object size:0x100 scope:global align:32
+int_hnw125_armtop_tex_txt = .data:0x00809800; // type:object size:0x80 scope:global align:32
+int_hnw125_c_front_tex_txt = .data:0x00809880; // type:object size:0x300 scope:global align:32
+int_hnw125_c_back_tex_txt = .data:0x00809B80; // type:object size:0x180 scope:global align:32
+int_hnw125_antena_tex_txt = .data:0x00809D00; // type:object size:0x80 scope:global align:32
+int_hnw125_b_back_tex_txt = .data:0x00809D80; // type:object size:0x80 scope:global align:32
+int_hnw125_b_front_tex_txt = .data:0x00809E00; // type:object size:0x100 scope:global align:32
+int_hnw125_v = .data:0x00809F00; // type:object size:0x4A0 scope:global align:8
+int_hnw125_chest_model = .data:0x0080A3A0; // type:object size:0xF8 scope:global align:8
+int_hnw125_armR_model = .data:0x0080A498; // type:object size:0x80 scope:global align:8
+int_hnw125_armL_model = .data:0x0080A518; // type:object size:0x80 scope:global align:8
+int_hnw125_base_model = .data:0x0080A598; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw125_tbl = .data:0x0080A610; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw125_tbl = .data:0x0080A618; // type:object size:0x1A scope:global align:4
+cKF_c_int_hnw125_tbl = .data:0x0080A634; // type:object size:0x16 scope:global align:4
+cKF_ds_int_hnw125_tbl = .data:0x0080A64C; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_hnw125 = .data:0x0080A768; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw125_tbl = .data:0x0080A77C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw125 = .data:0x0080A7D0; // type:object size:0x8 scope:global align:4
+int_hnw126_pal = .data:0x0080A7E0; // type:object size:0x20 scope:global align:32
+int_hnw126_arm_tex_txt = .data:0x0080A800; // type:object size:0x100 scope:global align:32
+int_hnw126_armtop_tex_txt = .data:0x0080A900; // type:object size:0x80 scope:global align:32
+int_hnw126_c_front_tex_txt = .data:0x0080A980; // type:object size:0x300 scope:global align:32
+int_hnw126_c_back_tex_txt = .data:0x0080AC80; // type:object size:0x180 scope:global align:32
+int_hnw126_antena_tex_txt = .data:0x0080AE00; // type:object size:0x80 scope:global align:32
+int_hnw126_b_back_tex_txt = .data:0x0080AE80; // type:object size:0x80 scope:global align:32
+int_hnw126_b_front_tex_txt = .data:0x0080AF00; // type:object size:0x100 scope:global align:32
+int_hnw126_v = .data:0x0080B000; // type:object size:0x4A0 scope:global align:8
+int_hnw126_chest_model = .data:0x0080B4A0; // type:object size:0xF8 scope:global align:8
+int_hnw126_armR_model = .data:0x0080B598; // type:object size:0x80 scope:global align:8
+int_hnw126_armL_model = .data:0x0080B618; // type:object size:0x80 scope:global align:8
+int_hnw126_base_model = .data:0x0080B698; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw126_tbl = .data:0x0080B710; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw126_tbl = .data:0x0080B718; // type:object size:0x1C scope:global align:4
+cKF_c_int_hnw126_tbl = .data:0x0080B734; // type:object size:0x14 scope:global align:4
+cKF_ds_int_hnw126_tbl = .data:0x0080B748; // type:object size:0x13E scope:global align:4
+cKF_ba_r_int_hnw126 = .data:0x0080B888; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw126_tbl = .data:0x0080B89C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw126 = .data:0x0080B8F0; // type:object size:0x8 scope:global align:4
+int_hnw127_pal = .data:0x0080B900; // type:object size:0x20 scope:global align:32
+int_hnw127_arm_tex_txt = .data:0x0080B920; // type:object size:0x100 scope:global align:32
+int_hnw127_armtop_tex_txt = .data:0x0080BA20; // type:object size:0x80 scope:global align:32
+int_hnw127_c_front_tex_txt = .data:0x0080BAA0; // type:object size:0x300 scope:global align:32
+int_hnw127_c_back_tex_txt = .data:0x0080BDA0; // type:object size:0x180 scope:global align:32
+int_hnw127_antena_tex_txt = .data:0x0080BF20; // type:object size:0x80 scope:global align:32
+int_hnw127_b_back_tex_txt = .data:0x0080BFA0; // type:object size:0x80 scope:global align:32
+int_hnw127_b_front_tex_txt = .data:0x0080C020; // type:object size:0x100 scope:global align:32
+int_hnw127_v = .data:0x0080C120; // type:object size:0x4A0 scope:global align:8
+int_hnw127_chest_model = .data:0x0080C5C0; // type:object size:0xF8 scope:global align:8
+int_hnw127_armR_model = .data:0x0080C6B8; // type:object size:0x80 scope:global align:8
+int_hnw127_armL_model = .data:0x0080C738; // type:object size:0x80 scope:global align:8
+int_hnw127_base_model = .data:0x0080C7B8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_hnw127_tbl = .data:0x0080C830; // type:object size:0x7 scope:global align:4
+cKF_kn_int_hnw127_tbl = .data:0x0080C838; // type:object size:0x1E scope:global align:4
+cKF_c_int_hnw127_tbl = .data:0x0080C858; // type:object size:0x12 scope:global align:4
+cKF_ds_int_hnw127_tbl = .data:0x0080C86C; // type:object size:0x1C2 scope:global align:4
+cKF_ba_r_int_hnw127 = .data:0x0080CA30; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_hnw127_tbl = .data:0x0080CA44; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_hnw127 = .data:0x0080CA98; // type:object size:0x8 scope:global align:4
+int_hos_Tdesk_pal = .data:0x0080CAA0; // type:object size:0x20 scope:global align:32
+int_hos_T_desk_body_tex_txt = .data:0x0080CAC0; // type:object size:0x200 scope:global align:32
+int_hos_T_desk_hiki_tex_txt = .data:0x0080CCC0; // type:object size:0x200 scope:global align:32
+int_hos_T_desk_top_tex_txt = .data:0x0080CEC0; // type:object size:0x200 scope:global align:32
+int_hos_T_desk_side_tex_txt = .data:0x0080D0C0; // type:object size:0x100 scope:global align:32
+int_hos_Tdesk_v = .data:0x0080D1C0; // type:object size:0x200 scope:global align:8
+int_hos_Tdesk_base_model = .data:0x0080D3C0; // type:object size:0x110 scope:global align:8
+int_hos_turkey_pal = .data:0x0080D4E0; // type:object size:0x20 scope:global align:32
+int_hos_turkey_sofa_se_txt = .data:0x0080D500; // type:object size:0x200 scope:global align:32
+int_hos_turkey_sofa_asi_txt = .data:0x0080D700; // type:object size:0x80 scope:global align:32
+int_hos_turkey_sofa_cov_txt = .data:0x0080D780; // type:object size:0x200 scope:global align:32
+int_hos_turkey_sofa_yoko_txt = .data:0x0080D980; // type:object size:0x200 scope:global align:32
+int_hos_turkey_sofa_v = .data:0x0080DB80; // type:object size:0x590 scope:global align:8
+int_hos_turkey_sofa_body_model = .data:0x0080E110; // type:object size:0x130 scope:global align:8
+int_hos_deskL_pal = .data:0x0080E240; // type:object size:0x20 scope:global align:32
+int_hos_deskL_tex_txt = .data:0x0080E260; // type:object size:0x800 scope:global align:32
+int_hos_deskL_v = .data:0x0080EA60; // type:object size:0x590 scope:global align:8
+int_hos_deskL_model_model = .data:0x0080EFF0; // type:object size:0xF0 scope:global align:8
+int_hos_deskR_pal = .data:0x0080F0E0; // type:object size:0x20 scope:global align:32
+int_hos_deskR_tex_txt = .data:0x0080F100; // type:object size:0x800 scope:global align:32
+int_hos_deskR_v = .data:0x0080F900; // type:object size:0x610 scope:global align:8
+int_hos_deskR_model_model = .data:0x0080FF10; // type:object size:0x100 scope:global align:8
+int_hos_flip_pal = .data:0x00810020; // type:object size:0x20 scope:global align:32
+int_hos_flip_top_tex_txt = .data:0x00810040; // type:object size:0x400 scope:global align:32
+int_hos_flip_asi_tex_txt = .data:0x00810440; // type:object size:0x200 scope:global align:32
+int_hos_flip_side_tex_txt = .data:0x00810640; // type:object size:0x200 scope:global align:32
+int_hos_flip_v = .data:0x00810840; // type:object size:0x5E0 scope:global align:8
+int_hos_flip_model_model = .data:0x00810E20; // type:object size:0x128 scope:global align:8
+int_hos_mario_hata_pal = .data:0x00810F60; // type:object size:0x20 scope:global align:32
+int_hos_mario_hata_b_tex_txt = .data:0x00810F80; // type:object size:0x80 scope:global align:32
+int_hos_mario_hata_c_tex_txt = .data:0x00811000; // type:object size:0x80 scope:global align:32
+int_hos_mario_hata_a_tex_txt = .data:0x00811080; // type:object size:0x40 scope:global align:32
+int_hos_mario_hata_v = .data:0x008110C0; // type:object size:0x4E0 scope:global align:8
+int_hos_mario_hata_all_model = .data:0x008115A0; // type:object size:0x110 scope:global align:8
+int_hos_mario_kinoko_pal = .data:0x008116C0; // type:object size:0x20 scope:global align:32
+int_hos_mario_kino_top_txt = .data:0x008116E0; // type:object size:0x200 scope:global align:32
+int_hos_mario_kino_jiku_txt = .data:0x008118E0; // type:object size:0x200 scope:global align:32
+int_hos_mario_kinoko_v = .data:0x00811AE0; // type:object size:0x270 scope:global align:8
+int_hos_mario_kinoko_all_model = .data:0x00811D50; // type:object size:0xE0 scope:global align:8
+int_hos_piknic_pal = .data:0x00811E40; // type:object size:0x20 scope:global align:32
+int_hos_piknic_wood_txt = .data:0x00811E60; // type:object size:0x400 scope:global align:32
+int_hos_piknic_cloth_txt = .data:0x00812260; // type:object size:0x400 scope:global align:32
+int_hos_piknic_v = .data:0x00812660; // type:object size:0x660 scope:global align:8
+int_hos_piknic_all_model = .data:0x00812CC0; // type:object size:0x100 scope:global align:8
+int_iid_benchi_pal = .data:0x00812DC0; // type:object size:0x20 scope:global align:32
+int_iid_benchi_se2_tex_pal = .data:0x00812DE0; // type:object size:0x20 scope:global align:32
+int_iid_benchi_se3_tex_pal = .data:0x00812E00; // type:object size:0x20 scope:global align:32
+int_iid_benchi_se1_tex = .data:0x00812E20; // type:object size:0x200 scope:global align:32
+int_iid_benchi_se2_tex = .data:0x00813020; // type:object size:0x200 scope:global align:32
+int_iid_benchi_se3_tex = .data:0x00813220; // type:object size:0x200 scope:global align:32
+int_iid_benchi_ue_tex = .data:0x00813420; // type:object size:0x20 scope:global align:32
+int_iid_benchi_koshi_tex = .data:0x00813440; // type:object size:0x40 scope:global align:32
+int_iid_benchi_koshi2_tex = .data:0x00813480; // type:object size:0x40 scope:global align:32
+int_iid_benchi_shita_tex = .data:0x008134C0; // type:object size:0x20 scope:global align:32 data:string
+int_iid_benchi_ashi_tex = .data:0x008134E0; // type:object size:0x40 scope:global align:32
+int_iid_benti_v = .data:0x00813520; // type:object size:0x900 scope:global align:8
+int_iid_benti_model = .data:0x00813E20; // type:object size:0x240 scope:global align:8
+int_iid_diary = .data:0x00814060; // type:object size:0x20 scope:local align:32
+int_iid_diary_mae_tex = .data:0x00814080; // type:object size:0x20 scope:global align:32
+int_iid_diary_hyoushi_tex = .data:0x008140A0; // type:object size:0x200 scope:global align:32
+int_iid_diary_soko_tex = .data:0x008142A0; // type:object size:0x20 scope:global align:32
+int_iid_diary_ue_tex = .data:0x008142C0; // type:object size:0x20 scope:global align:32
+int_iid_diary_esaki_tex = .data:0x008142E0; // type:object size:0x20 scope:local align:32
+int_iid_diary_ebody_tex = .data:0x00814300; // type:object size:0x20 scope:global align:32
+int_iid_diary_v = .data:0x00814320; // type:object size:0x380 scope:global align:8
+int_iid_diary_model = .data:0x008146A0; // type:object size:0x118 scope:global align:8
+int_iid_funediary = .data:0x008147C0; // type:object size:0x20 scope:global align:32
+int_iid_funediary_mae_tex = .data:0x008147E0; // type:object size:0x20 scope:global align:32
+int_iid_funediary_hyoushi_tex = .data:0x00814800; // type:object size:0x200 scope:global align:32
+int_iid_funediary_soko_tex = .data:0x00814A00; // type:object size:0x20 scope:global align:32
+int_iid_funediary_ue_tex = .data:0x00814A20; // type:object size:0x20 scope:global align:32
+int_iid_funediary_esaki_tex = .data:0x00814A40; // type:object size:0x20 scope:global align:32
+int_iid_funediary_ebody_tex = .data:0x00814A60; // type:object size:0x20 scope:global align:32
+int_iid_funediary_v = .data:0x00814A80; // type:object size:0x380 scope:global align:8
+int_iid_funediary_model = .data:0x00814E00; // type:object size:0x118 scope:global align:8
+int_iid_mdiary = .data:0x00814F20; // type:object size:0x20 scope:global align:32
+int_iid_diary = .data:0x00814F40; // type:object size:0x20 scope:local align:32
+int_iid_mdiary_mae_tex = .data:0x00814F60; // type:object size:0x20 scope:global align:32
+int_iid_mdiary_hyoushi_tex = .data:0x00814F80; // type:object size:0x200 scope:global align:32
+int_iid_mdiary_soko_tex = .data:0x00815180; // type:object size:0x20 scope:global align:32
+int_iid_mdiary_ue_tex = .data:0x008151A0; // type:object size:0x20 scope:global align:32
+int_iid_diary_esaki_tex = .data:0x008151C0; // type:object size:0x20 scope:local align:32
+int_iid_mdiary_ebody_tex = .data:0x008151E0; // type:object size:0x20 scope:global align:32
+int_iid_mdiary_v = .data:0x00815200; // type:object size:0x380 scope:global align:8
+int_iid_mdiary_model = .data:0x00815580; // type:object size:0x128 scope:global align:8
+int_iid_newdiary = .data:0x008156C0; // type:object size:0x20 scope:global align:32
+int_iid_olddiary = .data:0x008156E0; // type:object size:0x20 scope:global align:32
+int_iid_newdiary_mae_tex = .data:0x00815700; // type:object size:0x80 scope:global align:32
+int_iid_newdiary_hyoushi_tex = .data:0x00815780; // type:object size:0x200 scope:global align:32
+int_iid_newdiary_soko_tex = .data:0x00815980; // type:object size:0x20 scope:global align:32
+int_iid_newdiary_ue_tex = .data:0x008159A0; // type:object size:0x20 scope:global align:32
+int_iid_newdiary_esaki_tex = .data:0x008159C0; // type:object size:0x20 scope:global align:32
+int_iid_newdiary_ebody_tex = .data:0x008159E0; // type:object size:0x20 scope:global align:32
+int_iid_newdiary_v = .data:0x00815A00; // type:object size:0x380 scope:global align:8
+int_iid_newediary_model = .data:0x00815D80; // type:object size:0x128 scope:global align:8
+int_iid_ningyou_pal = .data:0x00815EC0; // type:object size:0x20 scope:global align:32
+int_iid_ningyou_hada_tex = .data:0x00815EE0; // type:object size:0x80 scope:global align:32
+int_iid_ningyou_boushi_tex = .data:0x00815F60; // type:object size:0x80 scope:global align:32 data:string
+int_iid_ningyou_kao_tex = .data:0x00815FE0; // type:object size:0x200 scope:global align:32
+int_iid_ningyou_kutushita_tex = .data:0x008161E0; // type:object size:0x80 scope:global align:32
+int_iid_ningyou_futi_tex = .data:0x00816260; // type:object size:0x20 scope:global align:32
+int_iid_ningyou_fuku_tex = .data:0x00816280; // type:object size:0x20 scope:global align:32 data:string
+int_iid_ningyou_ribbon_tex = .data:0x008162A0; // type:object size:0x80 scope:global align:32
+int_iid_ningyou_ashi_tex = .data:0x00816320; // type:object size:0x40 scope:global align:32
+int_iid_ningyou_v = .data:0x00816360; // type:object size:0x1070 scope:global align:8
+int_iid_ningyou_on_model = .data:0x008173D0; // type:object size:0x2D8 scope:global align:8
+int_iid_snow_pal = .data:0x008176C0; // type:object size:0x20 scope:global align:32
+int_iid_snow_ashiue_tex = .data:0x008176E0; // type:object size:0x80 scope:global align:32
+int_iid_snow_ashiyoko_tex = .data:0x00817760; // type:object size:0x100 scope:global align:32
+int_iid_snow_ashimae_tex = .data:0x00817860; // type:object size:0x80 scope:global align:32
+int_iid_snow_ashisoko_tex = .data:0x008178E0; // type:object size:0x100 scope:global align:32
+int_iid_snow_ashiback_tex = .data:0x008179E0; // type:object size:0x80 scope:global align:32
+int_iid_snow_bordue_tex = .data:0x00817A60; // type:object size:0x100 scope:global align:32
+int_iid_snow_bordshita_tex = .data:0x00817B60; // type:object size:0x80 scope:global align:32
+int_iid_snow_bordyoko_tex = .data:0x00817BE0; // type:object size:0x20 scope:global align:32 data:string
+int_iid_snow_bordkakato_tex = .data:0x00817C00; // type:object size:0x100 scope:global align:32
+int_iid_snow_bordura_tex = .data:0x00817D00; // type:object size:0x80 scope:global align:32
+int_iid_snow_bordana_tex = .data:0x00817D80; // type:object size:0x20 scope:global align:32
+int_iid_snow_bordpin_tex = .data:0x00817DA0; // type:object size:0x20 scope:global align:32
+int_iid_snow_bordtate_tex = .data:0x00817DC0; // type:object size:0x20 scope:global align:32 data:string
+int_iid_snow_v = .data:0x00817DE0; // type:object size:0x18D0 scope:global align:8
+int_iid_snow_model = .data:0x008196B0; // type:object size:0x318 scope:global align:8
+int_iid_snowT_model = .data:0x008199C8; // type:object size:0x128 scope:global align:8
+int_iid_surf_pal = .data:0x00819B00; // type:object size:0x20 scope:global align:32
+int_iid_surf_mae_tex = .data:0x00819B20; // type:object size:0x200 scope:global align:32
+int_iid_surf_ushiro_tex = .data:0x00819D20; // type:object size:0x100 scope:global align:32
+int_iid_surf_fin_tex = .data:0x00819E20; // type:object size:0x80 scope:global align:32 data:string
+int_iid_surf_tate_tex = .data:0x00819EA0; // type:object size:0x80 scope:global align:32
+int_iid_surf_v = .data:0x00819F20; // type:object size:0xED0 scope:global align:8
+int_iid_surf_model = .data:0x0081ADF0; // type:object size:0x328 scope:global align:8
+int_iid_yuki_pal = .data:0x0081B120; // type:object size:0x20 scope:global align:32
+int_iid_yuki_ha_tex = .data:0x0081B140; // type:object size:0x100 scope:global align:32
+int_iid_yuki_body_tex = .data:0x0081B240; // type:object size:0x400 scope:global align:32
+int_iid_yuki_eye_tex = .data:0x0081B640; // type:object size:0x20 scope:global align:32
+int_iid_yuki_bonyoko_tex = .data:0x0081B660; // type:object size:0x80 scope:global align:32
+int_iid_yuki_bonue_tex = .data:0x0081B6E0; // type:object size:0x80 scope:global align:32
+int_iid_yuki_v = .data:0x0081B760; // type:object size:0x4D0 scope:global align:8
+int_iid_yuki_model = .data:0x0081BC30; // type:object size:0xB8 scope:global align:8
+int_iid_yukiT_model = .data:0x0081BCE8; // type:object size:0x108 scope:global align:8
+int_ike_art_ang_pal = .data:0x0081BE00; // type:object size:0x20 scope:global align:32
+int_ike_art_ang_front_tex = .data:0x0081BE20; // type:object size:0x200 scope:global align:32
+int_ike_art_ang_stand_tex = .data:0x0081C020; // type:object size:0x200 scope:global align:32
+int_ike_art_ang_tex = .data:0x0081C220; // type:object size:0x300 scope:global align:32
+int_ike_art_ang_gaku_tex = .data:0x0081C520; // type:object size:0x100 scope:global align:32
+int_ike_art_ang_v = .data:0x0081C620; // type:object size:0x340 scope:global align:8
+int_ike_art_ang_on_model = .data:0x0081C960; // type:object size:0x88 scope:global align:8
+int_ike_art_ang_onT_model = .data:0x0081C9E8; // type:object size:0xA0 scope:global align:8
+int_ike_art_fel_pal = .data:0x0081CAA0; // type:object size:0x20 scope:global align:32
+int_ike_art_felgaku_tex = .data:0x0081CAC0; // type:object size:0x100 scope:global align:32
+int_ike_art_fel1_tex = .data:0x0081CBC0; // type:object size:0x480 scope:global align:32
+int_ike_art_felstand_tex = .data:0x0081D040; // type:object size:0x200 scope:global align:32
+int_ike_art_felfront_tex = .data:0x0081D240; // type:object size:0x200 scope:global align:32
+int_ike_art_fel_v = .data:0x0081D440; // type:object size:0x360 scope:global align:8
+int_ike_art_fel01_on_model = .data:0x0081D7A0; // type:object size:0x90 scope:global align:8
+int_ike_art_fel01_onT_model = .data:0x0081D830; // type:object size:0x98 scope:global align:8
+int_ike_art_sya_pal = .data:0x0081D8E0; // type:object size:0x20 scope:global align:32
+int_ike_art_syafront_tex = .data:0x0081D900; // type:object size:0x200 scope:global align:32
+int_ike_art_syastand_tex = .data:0x0081DB00; // type:object size:0x200 scope:global align:32
+int_ike_art_sya_tex = .data:0x0081DD00; // type:object size:0x300 scope:global align:32
+int_ike_art_syagaku_tex = .data:0x0081E000; // type:object size:0x100 scope:global align:32
+int_ike_art_sya_v = .data:0x0081E100; // type:object size:0x340 scope:global align:8
+int_ike_art_sya01_on_model = .data:0x0081E440; // type:object size:0x88 scope:global align:8
+int_ike_art_sya01_onT_model = .data:0x0081E4C8; // type:object size:0xA0 scope:global align:8
+int_ike_island_hako01_pal = .data:0x0081E580; // type:object size:0x20 scope:global align:32
+int_ike_island_hakoin2_tex_rgb_ci4_pal = .data:0x0081E5A0; // type:object size:0x20 scope:global align:32
+int_ike_island_hakoin3_tex_rgb_ci4_pal = .data:0x0081E5C0; // type:object size:0x20 scope:global align:32
+int_ike_island_hakoin5_tex_rgb_ci4_pal = .data:0x0081E5E0; // type:object size:0x20 scope:global align:32
+int_ike_island_hakotop3_tex_txt = .data:0x0081E600; // type:object size:0x80 scope:global align:32
+int_ike_island_hakotop1_tex_txt = .data:0x0081E680; // type:object size:0x100 scope:global align:32
+int_ike_island_hakotop2_tex_txt = .data:0x0081E780; // type:object size:0x80 scope:global align:32
+int_ike_island_hakoin4_tex_txt = .data:0x0081E800; // type:object size:0x80 scope:global align:32
+int_ike_island_hakokagi2_tex_txt = .data:0x0081E880; // type:object size:0x40 scope:global align:32
+int_ike_island_hakokagi1_tex_txt = .data:0x0081E8C0; // type:object size:0x80 scope:global align:32
+int_ike_island_hakoside1_tex_txt = .data:0x0081E940; // type:object size:0x80 scope:global align:32
+int_ike_island_hakoin1_tex_txt = .data:0x0081E9C0; // type:object size:0x200 scope:global align:32
+int_ike_island_hakoin2_tex_txt = .data:0x0081EBC0; // type:object size:0x80 scope:global align:32
+int_ike_island_hakoin3_tex_txt = .data:0x0081EC40; // type:object size:0x80 scope:global align:32
+int_ike_island_hakoin5_tex_txt = .data:0x0081ECC0; // type:object size:0x80 scope:global align:32
+int_ike_island_hako01_v = .data:0x0081ED40; // type:object size:0x10C0 scope:global align:8
+int_ike_island_hako01_on_model = .data:0x0081FE00; // type:object size:0x170 scope:global align:8
+int_ike_island_hako01_in3_off_model = .data:0x0081FF70; // type:object size:0x88 scope:global align:8
+int_ike_island_hako01_in2_off_model = .data:0x0081FFF8; // type:object size:0x80 scope:global align:8
+int_ike_island_hako01_in1_off_model = .data:0x00820078; // type:object size:0xB0 scope:global align:8
+int_ike_island_hako01_top_model = .data:0x00820128; // type:object size:0xD8 scope:global align:8
+cKF_ckcb_r_int_ike_island_hako01_tbl = .data:0x00820200; // type:object size:0x6 scope:global align:4
+cKF_kn_int_ike_island_hako01_tbl = .data:0x00820208; // type:object size:0x2 scope:global align:4
+cKF_c_int_ike_island_hako01_tbl = .data:0x0082020C; // type:object size:0x28 scope:global align:4
+cKF_ds_int_ike_island_hako01_tbl = .data:0x00820234; // type:object size:0x30 scope:global align:4
+cKF_ba_r_int_ike_island_hako01 = .data:0x00820264; // type:object size:0x14 scope:global align:4 data:2byte
+cKF_ckcb_r_int_ike_island_hako02_tbl = .data:0x00820278; // type:object size:0x6 scope:global align:4
+cKF_kn_int_ike_island_hako02_tbl = .data:0x00820280; // type:object size:0x6 scope:global align:4
+cKF_c_int_ike_island_hako02_tbl = .data:0x00820288; // type:object size:0x24 scope:global align:4
+cKF_ds_int_ike_island_hako02_tbl = .data:0x008202AC; // type:object size:0x30 scope:global align:4
+cKF_ba_r_int_ike_island_hako02 = .data:0x008202DC; // type:object size:0x14 scope:global align:4 data:2byte
+cKF_je_r_int_ike_island_hako01_tbl = .data:0x008202F0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_ike_island_hako01 = .data:0x00820338; // type:object size:0x8 scope:global align:4
+int_ike_island_sensui01_pal = .data:0x00820340; // type:object size:0x20 scope:global align:32
+int_ike_island_senhead1_tex_txt = .data:0x00820360; // type:object size:0x400 scope:global align:32
+int_ike_island_senbody1_tex_txt = .data:0x00820760; // type:object size:0x100 scope:global align:32
+int_ike_island_senleg1_tex_txt = .data:0x00820860; // type:object size:0x100 scope:global align:32
+int_ike_island_senhead2_tex_txt = .data:0x00820960; // type:object size:0x100 scope:global align:32
+int_ike_island_sensuiface_pic_i4 = .data:0x00820A60; // type:object size:0x200 scope:global align:32
+int_ike_island_sensui01_v = .data:0x00820C60; // type:object size:0x6B0 scope:global align:8
+int_ike_island_sensui01_on_model = .data:0x00821310; // type:object size:0x1D0 scope:global align:8
+int_ike_island_sensui01_off_model = .data:0x008214E0; // type:object size:0x60 scope:global align:8
+int_ike_island_uku01_pal = .data:0x00821540; // type:object size:0x20 scope:global align:32
+int_ike_island_ukuneck_tex_txt = .data:0x00821560; // type:object size:0x80 scope:global align:32
+int_ike_island_ukuneck3_tex_txt = .data:0x008215E0; // type:object size:0x40 scope:global align:32
+int_ike_island_ukuneck2_tex_txt = .data:0x00821620; // type:object size:0x40 scope:global align:32
+int_ike_island_ukuside1_tex_txt = .data:0x00821660; // type:object size:0x80 scope:global align:32
+int_ike_island_ukuface1_tex_txt = .data:0x008216E0; // type:object size:0x200 scope:global align:32
+int_ike_island_ukuface2_tex_txt = .data:0x008218E0; // type:object size:0x200 scope:global align:32
+int_ike_island_uku01_v = .data:0x00821AE0; // type:object size:0x4B0 scope:global align:8
+int_ike_island_uku01_body_model = .data:0x00821F90; // type:object size:0x180 scope:global align:8
+int_ike_jny_afmen_pal = .data:0x00822120; // type:object size:0x20 scope:global align:32
+int_ike_jny_afmen01_face1_tex = .data:0x00822140; // type:object size:0x200 scope:global align:32
+int_ike_jny_afmen01_under1_tex = .data:0x00822340; // type:object size:0x100 scope:global align:32
+int_ike_jny_afmen01_face2_tex = .data:0x00822440; // type:object size:0x100 scope:global align:32
+int_ike_jny_afmen01_base1_tex = .data:0x00822540; // type:object size:0x80 scope:global align:32
+int_ike_jny_afmen01_base2_tex = .data:0x008225C0; // type:object size:0x40 scope:global align:32
+int_ike_jny_afmen01_base3_tex = .data:0x00822600; // type:object size:0x40 scope:global align:32
+int_ike_jny_afmen01_v = .data:0x00822640; // type:object size:0x4D0 scope:global align:8
+int_ike_jny_afmen01_on_model = .data:0x00822B10; // type:object size:0x150 scope:global align:8
+int_ike_jny_afmen01_onT_model = .data:0x00822C60; // type:object size:0x58 scope:global align:8
+int_ike_jny_botle01_pal = .data:0x00822CC0; // type:object size:0x20 scope:global align:32
+int_ike_jny_botleship1_tex_txt = .data:0x00822CE0; // type:object size:0x40 scope:global align:32
+int_ike_jny_botleship3_tex_txt = .data:0x00822D20; // type:object size:0x40 scope:global align:32
+int_ike_jny_botleship2_tex_txt = .data:0x00822D60; // type:object size:0x40 scope:global align:32
+int_ike_jny_botlebase_tex_txt = .data:0x00822DA0; // type:object size:0x80 scope:global align:32
+int_ike_jny_botlebase2_tex_txt = .data:0x00822E20; // type:object size:0x40 scope:global align:32
+int_ike_jny_botlecap_tex_txt = .data:0x00822E60; // type:object size:0x40 scope:global align:32
+int_ike_jny_botleship5_tex_txt = .data:0x00822EA0; // type:object size:0xC0 scope:global align:32
+int_ike_jny_botleship4_tex_txt = .data:0x00822F60; // type:object size:0xC0 scope:global align:32
+int_ike_jny_botleship6_tex_txt = .data:0x00823020; // type:object size:0xC0 scope:global align:32
+int_ike_jny_botle01_tex_rgb_ia8 = .data:0x008230E0; // type:object size:0x400 scope:global align:32
+int_ike_jny_botle01_v = .data:0x008234E0; // type:object size:0x8C0 scope:global align:8
+int_ike_jny_botle01_on_model = .data:0x00823DA0; // type:object size:0x278 scope:global align:8
+int_ike_jny_botle01_off_model = .data:0x00824018; // type:object size:0xA0 scope:global align:8
+int_ike_jny_gate01_pal = .data:0x008240C0; // type:object size:0x20 scope:global align:32
+int_ike_jny_gate2_tex_txt = .data:0x008240E0; // type:object size:0x100 scope:global align:32
+int_ike_jny_gate1_tex_txt = .data:0x008241E0; // type:object size:0x200 scope:global align:32
+int_ike_jny_gate3_tex_txt = .data:0x008243E0; // type:object size:0x80 scope:global align:32
+int_ike_jny_gatebase1_tex_txt = .data:0x00824460; // type:object size:0x200 scope:global align:32
+int_ike_jny_gatebase3_tex_txt = .data:0x00824660; // type:object size:0x40 scope:global align:32 data:string
+int_ike_jny_gatebase2_tex_txt = .data:0x008246A0; // type:object size:0x40 scope:global align:32
+int_ike_jny_gate01_v = .data:0x008246E0; // type:object size:0x5A0 scope:global align:8
+int_ike_jny_gate01_body_model = .data:0x00824C80; // type:object size:0x188 scope:global align:8
+int_ike_jny_gojyu01_pal = .data:0x00824E20; // type:object size:0x20 scope:global align:32
+int_ike_jny_gojyuname2_tex_txt = .data:0x00824E40; // type:object size:0x40 scope:global align:32
+int_ike_jny_gojyuname1_tex_txt = .data:0x00824E80; // type:object size:0x100 scope:global align:32
+int_ike_jny_gojyubase_tex_txt = .data:0x00824F80; // type:object size:0x40 scope:global align:32
+int_ike_jny_gojyuroof_tex_txt = .data:0x00824FC0; // type:object size:0x100 scope:global align:32
+int_ike_jny_gojyuwall2_tex_txt = .data:0x008250C0; // type:object size:0x80 scope:global align:32
+int_ike_jny_gojyuwall1_tex_txt = .data:0x00825140; // type:object size:0x80 scope:global align:32
+int_ike_jny_gojyutop_tex_txt = .data:0x008251C0; // type:object size:0x80 scope:global align:32
+int_ike_jny_gojyu01_v = .data:0x00825240; // type:object size:0x950 scope:global align:8
+int_ike_jny_gojyu01_body_model = .data:0x00825B90; // type:object size:0x2C0 scope:global align:8
+int_ike_jny_hariko01_pal = .data:0x00825E60; // type:object size:0x20 scope:global align:32
+int_ike_jny_harikoface01_tex_txt = .data:0x00825E80; // type:object size:0x100 scope:global align:32
+int_ike_jny_harikoear01_tex_txt = .data:0x00825F80; // type:object size:0x100 scope:global align:32
+int_ike_jny_harikotail01_tex_txt = .data:0x00826080; // type:object size:0x80 scope:global align:32
+int_ike_jny_harikobody01_tex_txt = .data:0x00826100; // type:object size:0x200 scope:global align:32
+int_ike_jny_hariko01_v = .data:0x00826300; // type:object size:0x9A0 scope:global align:8
+int_ike_jny_hariko01_head_model = .data:0x00826CA0; // type:object size:0xB0 scope:global align:8
+int_ike_jny_hariko01_body_model = .data:0x00826D50; // type:object size:0x260 scope:global align:8
+cKF_ckcb_r_int_ike_jny_hariko01_tbl = .data:0x00826FB0; // type:object size:0x2 scope:global align:4
+cKF_kn_int_ike_jny_hariko01_tbl = .data:0x00826FB4; // type:object size:0xC scope:global align:4
+cKF_c_int_ike_jny_hariko01_tbl = .data:0x00826FC0; // type:object size:0x6 scope:global align:4
+cKF_ds_int_ike_jny_hariko01_tbl = .data:0x00826FC8; // type:object size:0x168 scope:global align:4
+cKF_ba_r_int_ike_jny_hariko01 = .data:0x00827130; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_jny_hariko01_tbl = .data:0x00827144; // type:object size:0x18 scope:global align:4
+cKF_bs_r_int_ike_jny_hariko01 = .data:0x0082715C; // type:object size:0x8 scope:global align:4
+int_ike_jny_houi01_pal = .data:0x00827180; // type:object size:0x20 scope:global align:32
+int_ike_jny_houijisyaku_tex_txt = .data:0x008271A0; // type:object size:0x80 scope:global align:32
+int_ike_jny_houi1_tex_txt = .data:0x00827220; // type:object size:0x80 scope:global align:32
+int_ike_jny_houiface1_tex_txt = .data:0x008272A0; // type:object size:0x200 scope:global align:32
+int_ike_jny_houiface2_pic_i4 = .data:0x008274A0; // type:object size:0x200 scope:global align:32
+int_ike_jny_houi01_v = .data:0x008276A0; // type:object size:0x270 scope:global align:8
+int_ike_jny_houi01_on_hari_model = .data:0x00827910; // type:object size:0x58 scope:global align:8
+int_ike_jny_houi01_on_model = .data:0x00827968; // type:object size:0xB8 scope:global align:8
+int_ike_jny_houi01_off_model = .data:0x00827A20; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_ike_jny_houi01_tbl = .data:0x00827A88; // type:object size:0x4 scope:global align:4
+cKF_kn_int_ike_jny_houi01_tbl = .data:0x00827A8C; // type:object size:0xC scope:global align:4
+cKF_c_int_ike_jny_houi01_tbl = .data:0x00827A98; // type:object size:0x12 scope:global align:4
+cKF_ds_int_ike_jny_houi01_tbl = .data:0x00827AAC; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_ike_jny_houi01 = .data:0x00827B60; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_jny_houi01_tbl = .data:0x00827B74; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_ike_jny_houi01 = .data:0x00827BA4; // type:object size:0x8 scope:global align:4
+int_ike_jny_kibori01_pal = .data:0x00827BC0; // type:object size:0x20 scope:global align:32
+int_ike_jny_kiboribase_tex_txt = .data:0x00827BE0; // type:object size:0x80 scope:global align:32
+int_ike_jny_kiboribody_tex_txt = .data:0x00827C60; // type:object size:0x200 scope:global align:32
+int_ike_jny_kiborineck_tex_txt = .data:0x00827E60; // type:object size:0x80 scope:global align:32
+int_ike_jny_kiboriface_tex_txt = .data:0x00827EE0; // type:object size:0x200 scope:global align:32
+int_ike_jny_kiborifish_tex_txt = .data:0x008280E0; // type:object size:0x300 scope:global align:32
+int_ike_jny_kibori01_v = .data:0x008283E0; // type:object size:0xAA0 scope:global align:8
+int_ike_jny_kibori01_body_model = .data:0x00828E80; // type:object size:0x1E8 scope:global align:8
+int_ike_jny_makada01_pal = .data:0x00829080; // type:object size:0x20 scope:global align:32
+int_ike_jny_makada01_face2_tex = .data:0x008290A0; // type:object size:0x100 scope:global align:32
+int_ike_jny_makada01_face1_tex = .data:0x008291A0; // type:object size:0x400 scope:global align:32
+int_ike_jny_makada01_v = .data:0x008295A0; // type:object size:0x140 scope:global align:8
+int_ike_jny_makada01_on_model = .data:0x008296E0; // type:object size:0x80 scope:global align:8
+int_ike_jny_moai01_pal = .data:0x00829760; // type:object size:0x20 scope:global align:32
+int_ike_jny_moai2_tex_txt = .data:0x00829780; // type:object size:0x100 scope:global align:32
+int_ike_jny_moai5_tex_txt = .data:0x00829880; // type:object size:0x80 scope:global align:32
+int_ike_jny_moai4_tex_txt = .data:0x00829900; // type:object size:0x100 scope:global align:32
+int_ike_jny_moai1_tex_txt = .data:0x00829A00; // type:object size:0x400 scope:global align:32
+int_ike_jny_moai3_tex_txt = .data:0x00829E00; // type:object size:0x100 scope:global align:32
+int_ike_jny_moai01_v = .data:0x00829F00; // type:object size:0x4D0 scope:global align:8
+int_ike_jny_moai01_body_model = .data:0x0082A3D0; // type:object size:0x188 scope:global align:8
+int_ike_jny_ningyo01_pal = .data:0x0082A560; // type:object size:0x20 scope:global align:32
+int_ike_jny_ningyobody2_tex_txt = .data:0x0082A580; // type:object size:0x200 scope:global align:32
+int_ike_jny_ningyoface_tex_txt = .data:0x0082A780; // type:object size:0x200 scope:global align:32
+int_ike_jny_ningyobody_tex_txt = .data:0x0082A980; // type:object size:0x200 scope:global align:32
+int_ike_jny_ningyoleg1_tex_txt = .data:0x0082AB80; // type:object size:0x200 scope:global align:32
+int_ike_jny_ningyohand_tex_txt = .data:0x0082AD80; // type:object size:0x100 scope:global align:32
+int_ike_jny_ningyo01_v = .data:0x0082AE80; // type:object size:0x5B0 scope:global align:8
+int_ike_jny_ningyo01_body_model = .data:0x0082B430; // type:object size:0x188 scope:global align:8
+int_ike_jny_pisa01_pal = .data:0x0082B5C0; // type:object size:0x20 scope:global align:32
+int_ike_jny_pisatop2_tex_txt = .data:0x0082B5E0; // type:object size:0x80 scope:global align:32
+int_ike_jny_pisa2_tex_txt = .data:0x0082B660; // type:object size:0x100 scope:global align:32
+int_ike_jny_pisabase1_tex_txt = .data:0x0082B760; // type:object size:0x200 scope:global align:32
+int_ike_jny_pisabase2_tex_txt = .data:0x0082B960; // type:object size:0x80 scope:global align:32
+int_ike_jny_pisabase3_tex_txt = .data:0x0082B9E0; // type:object size:0x100 scope:global align:32
+int_ike_jny_pisa3_tex_txt = .data:0x0082BAE0; // type:object size:0x100 scope:global align:32
+int_ike_jny_pisa1_tex_txt = .data:0x0082BBE0; // type:object size:0x100 scope:global align:32
+int_ike_jny_pisatop1_tex_txt = .data:0x0082BCE0; // type:object size:0x80 scope:global align:32
+int_ike_jny_pisa01_v = .data:0x0082BD60; // type:object size:0x700 scope:global align:8
+int_ike_jny_pisa01_body_model = .data:0x0082C460; // type:object size:0x218 scope:global align:8
+int_ike_jny_rosia01_pal = .data:0x0082C680; // type:object size:0x20 scope:global align:32
+int_ike_jny_rosiabase1_tex_txt = .data:0x0082C6A0; // type:object size:0x100 scope:global align:32
+int_ike_jny_rosia01_tex_txt = .data:0x0082C7A0; // type:object size:0x300 scope:global align:32
+int_ike_jny_rosia01_v = .data:0x0082CAA0; // type:object size:0x570 scope:global align:8
+int_ike_jny_rosia01_lb_model = .data:0x0082D010; // type:object size:0x98 scope:global align:8
+int_ike_jny_rosia01_l_model = .data:0x0082D0A8; // type:object size:0x70 scope:global align:8
+int_ike_jny_rosia01_2mb_model = .data:0x0082D118; // type:object size:0x70 scope:global align:8
+int_ike_jny_rosia01_2sb_model = .data:0x0082D188; // type:object size:0x88 scope:global align:8
+int_ike_jny_rosia01_m_model = .data:0x0082D210; // type:object size:0x70 scope:global align:8
+cKF_ckcb_r_int_ike_jny_rosia01_tbl = .data:0x0082D280; // type:object size:0xB scope:global align:4
+cKF_kn_int_ike_jny_rosia01_tbl = .data:0x0082D28C; // type:object size:0x24 scope:global align:4
+cKF_c_int_ike_jny_rosia01_tbl = .data:0x0082D2B0; // type:object size:0x24 scope:global align:4
+cKF_ds_int_ike_jny_rosia01_tbl = .data:0x0082D2D4; // type:object size:0x1A4 scope:global align:4
+cKF_ba_r_int_ike_jny_rosia01 = .data:0x0082D478; // type:object size:0x14 scope:global align:4 data:2byte
+cKF_je_r_int_ike_jny_rosia01_tbl = .data:0x0082D48C; // type:object size:0x84 scope:global align:4
+cKF_bs_r_int_ike_jny_rosia01 = .data:0x0082D510; // type:object size:0x8 scope:global align:4
+int_ike_jny_sirser01_pal = .data:0x0082D520; // type:object size:0x20 scope:global align:32
+int_ike_jny_sirserface_tex_txt = .data:0x0082D540; // type:object size:0x200 scope:global align:32
+int_ike_jny_sirserear_tex_txt = .data:0x0082D740; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirserhead_tex_txt = .data:0x0082D7C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirserhair_tex_txt = .data:0x0082D8C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirserfoot_tex_txt = .data:0x0082D9C0; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirsertail_tex_txt = .data:0x0082DA40; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirserfoot2_tex_txt = .data:0x0082DB40; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirser01_v = .data:0x0082DBC0; // type:object size:0x570 scope:global align:8
+int_ike_jny_sirser01_body_model = .data:0x0082E130; // type:object size:0x1B0 scope:global align:8
+int_ike_jny_sirser02_pal = .data:0x0082E2E0; // type:object size:0x20 scope:global align:32
+int_ike_jny_sirser2face_tex_txt = .data:0x0082E300; // type:object size:0x200 scope:global align:32
+int_ike_jny_sirser2ear_tex_txt = .data:0x0082E500; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirser2head_tex_txt = .data:0x0082E580; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirser2hair_tex_txt = .data:0x0082E680; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirser2foot_tex_txt = .data:0x0082E780; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirser2tail_tex_txt = .data:0x0082E800; // type:object size:0x100 scope:global align:32
+int_ike_jny_sirser2foot2_tex_txt = .data:0x0082E900; // type:object size:0x80 scope:global align:32
+int_ike_jny_sirser201_v = .data:0x0082E980; // type:object size:0x570 scope:global align:8
+int_ike_jny_sirser201_body_model = .data:0x0082EEF0; // type:object size:0x1B0 scope:global align:8
+int_ike_jny_syon01_tex = .data:0x0082F0A0; // type:object size:0x20 scope:global align:32
+int_ike_jny_syonfoot2_tex_txt = .data:0x0082F0C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_syonfoot1_tex_txt = .data:0x0082F1C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_syonbody2_tex_txt = .data:0x0082F2C0; // type:object size:0x200 scope:global align:32
+int_ike_jny_syonhead_tex_txt = .data:0x0082F4C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_syonbody1_tex_txt = .data:0x0082F5C0; // type:object size:0x200 scope:global align:32
+int_ike_jny_syonface_tex_txt = .data:0x0082F7C0; // type:object size:0x100 scope:global align:32
+int_ike_jny_syonwater1_pic_i4 = .data:0x0082F8C0; // type:object size:0x200 scope:global align:32
+int_ike_jny_syonwater2_pic_i4 = .data:0x0082FAC0; // type:object size:0x200 scope:global align:32
+int_ike_jny_syon01_v = .data:0x0082FCC0; // type:object size:0x6C0 scope:global align:8
+int_ike_jny_syon01_on_model = .data:0x00830380; // type:object size:0x1F0 scope:global align:8
+int_ike_jny_syon01_off_model = .data:0x00830570; // type:object size:0x70 scope:global align:8
+int_ike_jny_tower01 = .data:0x008305E0; // type:object size:0x20 scope:global align:32
+int_ike_jny_towerbase_tex_txt = .data:0x00830600; // type:object size:0x80 scope:global align:32
+int_ike_jny_towertem1_tex_txt = .data:0x00830680; // type:object size:0x40 scope:global align:32
+int_ike_jny_towertem2_tex_txt = .data:0x008306C0; // type:object size:0x200 scope:global align:32
+int_ike_jny_towertem3_tex_txt = .data:0x008308C0; // type:object size:0x40 scope:global align:32
+int_ike_jny_towername_tex_txt = .data:0x00830900; // type:object size:0x40 scope:global align:32
+int_ike_jny_towerbelt_tex_txt = .data:0x00830940; // type:object size:0x40 scope:global align:32
+int_ike_jny_towerbottom_tex_txt = .data:0x00830980; // type:object size:0x200 scope:global align:32
+int_ike_jny_towermiddle_tex_txt = .data:0x00830B80; // type:object size:0x80 scope:global align:32
+int_ike_jny_tower01_v = .data:0x00830C00; // type:object size:0x900 scope:global align:8
+int_ike_jny_tower01_body_model = .data:0x00831500; // type:object size:0x1E8 scope:global align:8
+int_ike_jny_truth01_pal = .data:0x00831700; // type:object size:0x20 scope:global align:32
+int_ike_jny_truthbases_tex_txt = .data:0x00831720; // type:object size:0x100 scope:global align:32
+int_ike_jny_truthbaset_tex_txt = .data:0x00831820; // type:object size:0x40 scope:global align:32
+int_ike_jny_truthface3_tex_txt = .data:0x00831860; // type:object size:0x200 scope:global align:32
+int_ike_jny_truthface2_tex_txt = .data:0x00831A60; // type:object size:0x80 scope:global align:32
+int_ike_jny_truthface1_TA_tex_txt = .data:0x00831AE0; // type:object size:0x200 scope:global align:32
+int_ike_jny_truthface2_TA_tex_txt = .data:0x00831CE0; // type:object size:0x200 scope:global align:32
+int_ike_jny_truth01_v = .data:0x00831EE0; // type:object size:0x4A0 scope:global align:8
+int_ike_jny_truth01_body_model = .data:0x00832380; // type:object size:0x180 scope:global align:8
+int_ike_jpn_tansu01_pal = .data:0x00832500; // type:object size:0x20 scope:global align:32
+int_ike_jpn_tansu01_ura1_tex = .data:0x00832520; // type:object size:0x180 scope:global align:32
+int_ike_jpn_tansu01_hikido1_tex = .data:0x008326A0; // type:object size:0x200 scope:global align:32
+int_ike_jpn_tansu01_ura2_tex = .data:0x008328A0; // type:object size:0x100 scope:global align:32
+int_ike_jpn_tansu01_hikidasi1_tex = .data:0x008329A0; // type:object size:0x80 scope:global align:32
+int_ike_jpn_tansu01_tobira1_tex = .data:0x00832A20; // type:object size:0x300 scope:global align:32
+int_ike_jpn_tansu01_v = .data:0x00832D20; // type:object size:0x3C0 scope:global align:8
+int_ike_jpn_tansu01_on_model = .data:0x008330E0; // type:object size:0xE0 scope:global align:8
+int_ike_jpn_tansu01_onT_model = .data:0x008331C0; // type:object size:0x68 scope:global align:8
+int_ike_k_count01_pal = .data:0x00833240; // type:object size:0x20 scope:global align:32
+int_ike_k_counttop_tex_txt = .data:0x00833260; // type:object size:0x200 scope:global align:32
+int_ike_k_countside_tex_txt = .data:0x00833460; // type:object size:0x80 scope:global align:32
+int_ike_k_countside2_tex_txt = .data:0x008334E0; // type:object size:0x200 scope:global align:32
+int_ike_k_count01_v = .data:0x008336E0; // type:object size:0x310 scope:global align:8
+int_ike_k_count01_body_model = .data:0x008339F0; // type:object size:0x100 scope:global align:8
+int_ike_k_iveboy01_pal = .data:0x00833B00; // type:object size:0x20 scope:global align:32
+int_ike_k_iveboyseat2_tex = .data:0x00833B20; // type:object size:0x40 scope:global align:32
+int_ike_k_iveboymir1_tex = .data:0x00833B60; // type:object size:0x80 scope:global align:32
+int_ike_k_iveboylighttex = .data:0x00833BE0; // type:object size:0x80 scope:global align:32
+int_ike_k_iveboyhand_tex = .data:0x00833C60; // type:object size:0x80 scope:global align:32
+int_ike_k_iveboyback_tex = .data:0x00833CE0; // type:object size:0x40 scope:global align:32
+int_ike_k_iveboybase1_tex = .data:0x00833D20; // type:object size:0x40 scope:global align:32
+int_ike_k_iveboymir2_tex = .data:0x00833D60; // type:object size:0x40 scope:global align:32
+int_ike_k_iveboyside1_tex = .data:0x00833DA0; // type:object size:0x200 scope:global align:32
+int_ike_k_iveboyseat_tex = .data:0x00833FA0; // type:object size:0x100 scope:global align:32
+int_ike_k_iveboytire_tex = .data:0x008340A0; // type:object size:0x80 scope:global align:32
+int_ike_k_iveboysidein_tex = .data:0x00834120; // type:object size:0x80 scope:global align:32
+int_ike_k_iveboyfront1_tex = .data:0x008341A0; // type:object size:0x200 scope:global align:32
+int_ike_k_iveboybase3_rgb_i4 = .data:0x008343A0; // type:object size:0x200 scope:global align:32
+int_ike_k_iveboy01_v = .data:0x008345A0; // type:object size:0xAA0 scope:global align:8
+int_ike_k_iveboy01_on_model = .data:0x00835040; // type:object size:0xD8 scope:global align:8
+int_ike_k_iveboy01_off_model = .data:0x00835118; // type:object size:0x68 scope:global align:8
+int_ike_k_iveboy01_onT_model = .data:0x00835180; // type:object size:0x1C0 scope:global align:8
+int_ike_k_kid01_pal = .data:0x00835340; // type:object size:0x20 scope:global align:32
+int_ike_k_kidfront1_tex = .data:0x00835360; // type:object size:0x80 scope:global align:32
+int_ike_k_kidfront2_tex = .data:0x008353E0; // type:object size:0x40 scope:global align:32
+int_ike_k_kidfront3_tex = .data:0x00835420; // type:object size:0x200 scope:global align:32
+int_ike_k_kidfront4_tex = .data:0x00835620; // type:object size:0x40 scope:global align:32
+int_ike_k_kidtire_tex = .data:0x00835660; // type:object size:0x40 scope:global align:32
+int_ike_k_kidtunagi_tex = .data:0x008356A0; // type:object size:0x40 scope:global align:32
+int_ike_k_kidsumi_tex = .data:0x008356E0; // type:object size:0x80 scope:global align:32
+int_ike_k_kidyane_tex = .data:0x00835760; // type:object size:0x40 scope:global align:32 data:string
+int_ike_k_kidunder_tex = .data:0x008357A0; // type:object size:0x40 scope:global align:32
+int_ike_k_kidside2_tex = .data:0x008357E0; // type:object size:0x100 scope:global align:32
+int_ike_k_kidside3_tex = .data:0x008358E0; // type:object size:0x80 scope:global align:32
+int_ike_k_kidside4_tex = .data:0x00835960; // type:object size:0x100 scope:global align:32
+int_ike_k_kidside1_tex = .data:0x00835A60; // type:object size:0x100 scope:global align:32
+int_ike_k_kidbase_tex = .data:0x00835B60; // type:object size:0x80 scope:global align:32
+int_ike_k_kid01_v = .data:0x00835BE0; // type:object size:0xB40 scope:global align:8
+int_ike_k_kid01_on_model = .data:0x00836720; // type:object size:0x180 scope:global align:8
+int_ike_k_kid01_onT_model = .data:0x008368A0; // type:object size:0x170 scope:global align:8
+int_ike_k_kid02_pal = .data:0x00836A20; // type:object size:0x20 scope:global align:32
+int_ike_k_kid2door1_tex = .data:0x00836A40; // type:object size:0x100 scope:global align:32
+int_ike_k_kid2yane1_tex = .data:0x00836B40; // type:object size:0x100 scope:global align:32 data:string
+int_ike_k_kid2door2_tex = .data:0x00836C40; // type:object size:0x100 scope:global align:32
+int_ike_k_kid2under_tex = .data:0x00836D40; // type:object size:0x40 scope:global align:32 data:string
+int_ike_k_kid2kousi_tex = .data:0x00836D80; // type:object size:0x80 scope:global align:32
+int_ike_k_kid2side1_tex = .data:0x00836E00; // type:object size:0x100 scope:global align:32
+int_ike_k_kid2sunoko_tex = .data:0x00836F00; // type:object size:0x80 scope:global align:32
+int_ike_k_kid2tire_tex = .data:0x00836F80; // type:object size:0x80 scope:global align:32
+int_ike_k_kid2tire2_tex = .data:0x00837000; // type:object size:0x100 scope:global align:32
+int_ike_k_kid2base_tex = .data:0x00837100; // type:object size:0x80 scope:global align:32
+int_ike_k_kid02_v = .data:0x00837180; // type:object size:0x780 scope:global align:8
+int_ike_k_kid02_on_model = .data:0x00837900; // type:object size:0xC8 scope:global align:8
+int_ike_k_kid02_onT_model = .data:0x008379C8; // type:object size:0x140 scope:global align:8
+int_ike_k_mame01_pal = .data:0x00837B20; // type:object size:0x20 scope:global align:32
+int_ike_k_mamebox1_tex_txt = .data:0x00837B40; // type:object size:0x100 scope:global align:32
+int_ike_k_mamemame1_tex_txt = .data:0x00837C40; // type:object size:0x80 scope:global align:32
+int_ike_k_mamen_tex_txt = .data:0x00837CC0; // type:object size:0x200 scope:global align:32
+int_ike_k_mamehimo_tex_txt = .data:0x00837EC0; // type:object size:0x100 scope:global align:32
+int_ike_k_mame01_v = .data:0x00837FC0; // type:object size:0x450 scope:global align:8
+int_ike_k_mame01_body_model = .data:0x00838410; // type:object size:0x110 scope:global align:8
+int_ike_k_otome01_pal = .data:0x00838520; // type:object size:0x20 scope:global align:32
+int_ike_k_otomefront_tex = .data:0x00838540; // type:object size:0x80 scope:global align:32
+int_ike_k_otomeleg_tex = .data:0x008385C0; // type:object size:0x200 scope:global align:32
+int_ike_k_otomeside_tex = .data:0x008387C0; // type:object size:0x80 scope:global align:32
+int_ike_k_otometop_tex = .data:0x00838840; // type:object size:0x80 scope:global align:32
+int_ike_k_otometle1_tex = .data:0x008388C0; // type:object size:0x200 scope:global align:32
+int_ike_k_otometle2_tex = .data:0x00838AC0; // type:object size:0x80 scope:global align:32
+int_ike_k_otometle3_tex = .data:0x00838B40; // type:object size:0x80 scope:global align:32 data:string
+int_ike_k_otome01_v = .data:0x00838BC0; // type:object size:0x6E0 scope:global align:8
+int_ike_k_otome01_on_model = .data:0x008392A0; // type:object size:0x148 scope:global align:8
+int_ike_k_otome01_onT_model = .data:0x008393E8; // type:object size:0x80 scope:global align:8
+int_ike_k_sinnen01_pal = .data:0x00839480; // type:object size:0x20 scope:global align:32
+int_ike_k_oseti1_tex = .data:0x008394A0; // type:object size:0x200 scope:global align:32
+int_ike_k_osetiside_tex = .data:0x008396A0; // type:object size:0x100 scope:global align:32
+int_ike_k_oseti2_tex = .data:0x008397A0; // type:object size:0x200 scope:global align:32
+int_ike_k_sinnen01_v = .data:0x008399A0; // type:object size:0x280 scope:global align:8
+int_ike_k_sinnen01_on_model = .data:0x00839C20; // type:object size:0xB8 scope:global align:8
+int_ike_k_sum01_pal = .data:0x00839CE0; // type:object size:0x20 scope:global align:32
+int_ike_k_sumuki2_tex_txt = .data:0x00839D00; // type:object size:0x100 scope:global align:32
+int_ike_k_sumuki1_tex_txt = .data:0x00839E00; // type:object size:0x200 scope:global align:32
+int_ike_k_sum01_v = .data:0x0083A000; // type:object size:0x540 scope:global align:8
+int_ike_k_sum01_body_model = .data:0x0083A540; // type:object size:0x138 scope:global align:8
+int_ike_k_tanabata01_pal = .data:0x0083A680; // type:object size:0x20 scope:global align:32
+int_ike_k_tanasasa1_tex_txt = .data:0x0083A6A0; // type:object size:0x400 scope:global align:32
+int_ike_k_tanasasa2_tex_txt = .data:0x0083AAA0; // type:object size:0x300 scope:global align:32
+int_ike_k_tanabase1_tex_txt = .data:0x0083ADA0; // type:object size:0x80 scope:global align:32
+int_ike_k_tanasasa3_tex_txt = .data:0x0083AE20; // type:object size:0x100 scope:global align:32
+int_ike_k_tanabata01_v = .data:0x0083AF20; // type:object size:0x430 scope:global align:8
+int_ike_k_tanabata01_body_model = .data:0x0083B350; // type:object size:0x1B0 scope:global align:8
+int_ike_k_turis01_pal = .data:0x0083B500; // type:object size:0x20 scope:global align:32
+int_ike_k_turisb6_tex_txt = .data:0x0083B520; // type:object size:0x100 scope:global align:32
+int_ike_k_turisb7_tex_txt = .data:0x0083B620; // type:object size:0x80 scope:global align:32
+int_ike_k_turisb1_tex_txt = .data:0x0083B6A0; // type:object size:0x400 scope:global align:32
+int_ike_k_turisb3_tex_txt = .data:0x0083BAA0; // type:object size:0x400 scope:global align:32
+int_ike_k_turisb2_tex_txt = .data:0x0083BEA0; // type:object size:0x80 scope:global align:32
+int_ike_k_turisb5_tex_txt = .data:0x0083BF20; // type:object size:0x80 scope:global align:32
+int_ike_k_turisb8_tex_txt = .data:0x0083BFA0; // type:object size:0x80 scope:global align:32
+int_ike_k_turisb4_tex_txt = .data:0x0083C020; // type:object size:0x80 scope:global align:32
+int_ike_k_turibass3_tex_txt = .data:0x0083C0A0; // type:object size:0x200 scope:global align:32
+int_ike_k_turibass2_tex_txt = .data:0x0083C2A0; // type:object size:0x80 scope:global align:32
+int_ike_k_turibass1_tex_txt = .data:0x0083C320; // type:object size:0x300 scope:global align:32
+int_ike_k_turis01_v = .data:0x0083C620; // type:object size:0x750 scope:global align:8
+int_ike_k_turis01_body_model = .data:0x0083CD70; // type:object size:0x248 scope:global align:8
+int_ike_kama_danro01_pal = .data:0x0083CFC0; // type:object size:0x20 scope:local align:32
+int_ike_kama_danrounder1_tex_txt = .data:0x0083CFE0; // type:object size:0x80 scope:global align:32 data:string
+int_ike_kama_danrounder2_tex_txt = .data:0x0083D060; // type:object size:0x100 scope:global align:32
+int_ike_kama_danrotop1_tex_txt = .data:0x0083D160; // type:object size:0x80 scope:global align:32
+int_ike_kama_danrorenga2_tex_txt = .data:0x0083D1E0; // type:object size:0x100 scope:global align:32
+int_ike_kama_danrorenga1_tex_txt = .data:0x0083D2E0; // type:object size:0x200 scope:global align:32
+int_ike_kama_danrotop2_tex_txt = .data:0x0083D4E0; // type:object size:0x80 scope:global align:32
+int_ike_kama_danrorenga3_tex_txt = .data:0x0083D560; // type:object size:0x100 scope:global align:32
+int_ike_kama_danrotree1_tex_txt = .data:0x0083D660; // type:object size:0x80 scope:local align:32
+fire06_int_i4 = .data:0x0083D6E0; // type:object size:0x400 scope:global align:32
+fire08_int_i4 = .data:0x0083DAE0; // type:object size:0x200 scope:global align:32
+int_ike_kama_danro01_v = .data:0x0083DCE0; // type:object size:0x970 scope:global align:8
+int_ike_kama_danrofire_off_model = .data:0x0083E650; // type:object size:0x78 scope:global align:8
+int_ike_kama_danro01_on_model = .data:0x0083E6C8; // type:object size:0x2A0 scope:global align:8
+int_ike_nikki_fan1_pal = .data:0x0083E980; // type:object size:0x20 scope:global align:32
+int_ike_nikki_fan1face_tex = .data:0x0083E9A0; // type:object size:0x200 scope:global align:32
+int_ike_nikki_fan1side_tex = .data:0x0083EBA0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan1pen_tex = .data:0x0083EBE0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan1_v = .data:0x0083EC20; // type:object size:0x210 scope:global align:8
+int_ike_nikki_fan1_on_model = .data:0x0083EE30; // type:object size:0xC8 scope:global align:8
+int_ike_nikki_fan2_pal = .data:0x0083EF00; // type:object size:0x20 scope:global align:32
+int_ike_nikki_fan2face_tex = .data:0x0083EF20; // type:object size:0x200 scope:global align:32
+int_ike_nikki_fan2side_tex = .data:0x0083F120; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan2pen_tex = .data:0x0083F160; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan2_v = .data:0x0083F1A0; // type:object size:0x210 scope:global align:8
+int_ike_nikki_fan2_on_model = .data:0x0083F3B0; // type:object size:0xC8 scope:global align:8
+int_ike_nikki_fan3_pal = .data:0x0083F480; // type:object size:0x20 scope:global align:32
+int_ike_nikki_fan3face_tex = .data:0x0083F4A0; // type:object size:0x200 scope:global align:32
+int_ike_nikki_fan3side_tex = .data:0x0083F6A0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan3pen_tex = .data:0x0083F6E0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan3_v = .data:0x0083F720; // type:object size:0x210 scope:global align:8
+int_ike_nikki_fan3_on_model = .data:0x0083F930; // type:object size:0xC8 scope:global align:8
+int_ike_nikki_fan4_pal = .data:0x0083FA00; // type:object size:0x20 scope:global align:32
+int_ike_nikki_fan4face_tex = .data:0x0083FA20; // type:object size:0x200 scope:global align:32
+int_ike_nikki_fan4side_tex = .data:0x0083FC20; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan4pen_tex = .data:0x0083FC60; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan4_v = .data:0x0083FCA0; // type:object size:0x210 scope:global align:8
+int_ike_nikki_fan4_on_model = .data:0x0083FEB0; // type:object size:0xC8 scope:global align:8
+int_ike_nikki_fan5_pal = .data:0x0083FF80; // type:object size:0x20 scope:global align:32
+int_ike_nikki_fan5face_tex = .data:0x0083FFA0; // type:object size:0x200 scope:global align:32
+int_ike_nikki_fan5side_tex = .data:0x008401A0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan5pen_tex = .data:0x008401E0; // type:object size:0x40 scope:global align:32
+int_ike_nikki_fan5_v = .data:0x00840220; // type:object size:0x210 scope:global align:8
+int_ike_nikki_fan5_on_model = .data:0x00840430; // type:object size:0xC8 scope:global align:8
+int_ike_nikki_wafu1_pal = .data:0x00840500; // type:object size:0x20 scope:global align:32
+int_ike_nikki_wafu1face_tex = .data:0x00840520; // type:object size:0x200 scope:global align:32
+int_ike_nikki_wafu1side_tex = .data:0x00840720; // type:object size:0x40 scope:global align:32
+int_ike_nikki_wafu1pen_tex = .data:0x00840760; // type:object size:0x80 scope:global align:32
+int_ike_nikki_wafu1_v = .data:0x008407E0; // type:object size:0x420 scope:global align:8
+int_ike_nikki_wafu1_on_model = .data:0x00840C00; // type:object size:0xD8 scope:global align:8
+int_ike_prores_bench01_pal = .data:0x00840CE0; // type:object size:0x20 scope:global align:32
+int_ike_prores_bench01_pole1_tex = .data:0x00840D00; // type:object size:0x40 scope:global align:32
+int_ike_prores_bench01_pole2_tex = .data:0x00840D40; // type:object size:0xC0 scope:global align:32
+int_ike_prores_bench01_top1_tex = .data:0x00840E00; // type:object size:0x100 scope:global align:32 data:string
+int_ike_prores_bench01_side1_tex = .data:0x00840F00; // type:object size:0x80 scope:global align:32
+int_ike_prores_bench01_pole3_tex = .data:0x00840F80; // type:object size:0x100 scope:global align:32
+int_ike_prores_bench01_bar3_tex = .data:0x00841080; // type:object size:0x40 scope:global align:32
+int_ike_prores_bench01_arei1_tex = .data:0x008410C0; // type:object size:0x80 scope:global align:32
+int_ike_prores_bench01_arei2_tex = .data:0x00841140; // type:object size:0x100 scope:global align:32
+int_ike_prores_bench01_pole4_tex = .data:0x00841240; // type:object size:0x40 scope:global align:32
+int_ike_prores_bench01_v = .data:0x00841280; // type:object size:0x730 scope:global align:8
+int_ike_prores_bench01_on_model = .data:0x008419B0; // type:object size:0x80 scope:global align:8
+int_ike_prores_bench01_onT_model = .data:0x00841A30; // type:object size:0x198 scope:global align:8
+int_ike_prores_fense01_pal = .data:0x00841BE0; // type:object size:0x20 scope:global align:32
+int_ike_prores_fense01_fense_tex = .data:0x00841C00; // type:object size:0x300 scope:global align:32
+int_ike_prores_fense01_leg_tex = .data:0x00841F00; // type:object size:0x40 scope:global align:32
+int_ike_prores_fense01_top_tex = .data:0x00841F40; // type:object size:0x40 scope:global align:32
+int_ike_prores_fense01_side_tex = .data:0x00841F80; // type:object size:0x40 scope:global align:32
+int_ike_prores_fense01_v = .data:0x00841FC0; // type:object size:0x2C0 scope:global align:8
+int_ike_prores_fense01_on_model = .data:0x00842280; // type:object size:0x80 scope:global align:8
+int_ike_prores_fense01_onT_model = .data:0x00842300; // type:object size:0x90 scope:global align:8
+int_ike_prores_ling01_pal = .data:0x008423A0; // type:object size:0x20 scope:local align:32
+int_ike_prores_ling01_lope2_tex = .data:0x008423C0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_lope_tex = .data:0x00842440; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_mat_tex = .data:0x008424C0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling01_pole_tex = .data:0x00842540; // type:object size:0x80 scope:local align:32 data:string
+int_ike_prores_ling01_floor_tex = .data:0x008425C0; // type:object size:0x200 scope:local align:32
+int_ike_prores_ling01_floorside_tex = .data:0x008427C0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_pole2_tex = .data:0x00842840; // type:object size:0x80 scope:local align:32 data:string
+int_ike_prores_ling01_base_tex = .data:0x008428C0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_v = .data:0x00842940; // type:object size:0x4C0 scope:global align:8
+int_ike_prores_ling01_on_model = .data:0x00842E00; // type:object size:0x108 scope:global align:8
+int_ike_prores_ling01_onT_model = .data:0x00842F08; // type:object size:0xA8 scope:global align:8
+int_ike_prores_ling01_pal = .data:0x00842FC0; // type:object size:0x20 scope:local align:32
+int_ike_prores_ling01_lope2_tex = .data:0x00842FE0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_lope_tex = .data:0x00843060; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_mat2_tex = .data:0x008430E0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling01_pole_tex = .data:0x00843160; // type:object size:0x80 scope:local align:32 data:string
+int_ike_prores_ling01_floor_tex = .data:0x008431E0; // type:object size:0x200 scope:local align:32
+int_ike_prores_ling01_floorside_tex = .data:0x008433E0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_pole2_tex = .data:0x00843460; // type:object size:0x80 scope:local align:32 data:string
+int_ike_prores_ling01_base_tex = .data:0x008434E0; // type:object size:0x80 scope:local align:32
+int_ike_prores_ling01_pole3_tex = .data:0x00843560; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling02_v = .data:0x008435E0; // type:object size:0x4C0 scope:global align:8
+int_ike_prores_ling02_on_model = .data:0x00843AA0; // type:object size:0x120 scope:global align:8
+int_ike_prores_ling02_onT_model = .data:0x00843BC0; // type:object size:0xA8 scope:global align:8
+int_ike_prores_ling03_pal = .data:0x00843C80; // type:object size:0x20 scope:global align:32
+int_ike_prores_ling03_lope2_tex = .data:0x00843CA0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_lope_tex = .data:0x00843D20; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_mat2_tex = .data:0x00843DA0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_pole_tex = .data:0x00843E20; // type:object size:0x80 scope:global align:32 data:string
+int_ike_prores_ling03_floor_tex = .data:0x00843EA0; // type:object size:0x200 scope:global align:32
+int_ike_prores_ling03_floorside_tex = .data:0x008440A0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_pole2_tex = .data:0x00844120; // type:object size:0x80 scope:global align:32 data:string
+int_ike_prores_ling03_base_tex = .data:0x008441A0; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_pole3_tex = .data:0x00844220; // type:object size:0x80 scope:global align:32
+int_ike_prores_ling03_v = .data:0x008442A0; // type:object size:0x4C0 scope:global align:8
+int_ike_prores_ling03_on_model = .data:0x00844760; // type:object size:0x120 scope:global align:8
+int_ike_prores_ling03_onT_model = .data:0x00844880; // type:object size:0xA8 scope:global align:8
+int_ike_prores_mat01_pal = .data:0x00844940; // type:object size:0x20 scope:global align:32
+int_ike_prores_mat01_handle_tex = .data:0x00844960; // type:object size:0x40 scope:global align:32
+int_ike_prores_mat01_top_tex = .data:0x008449A0; // type:object size:0x100 scope:global align:32
+int_ike_prores_mat01_side_tex = .data:0x00844AA0; // type:object size:0x40 scope:global align:32
+int_ike_prores_mat01_v = .data:0x00844AE0; // type:object size:0x240 scope:global align:8
+int_ike_prores_mat1_on_model = .data:0x00844D20; // type:object size:0x88 scope:global align:8
+int_ike_prores_mat1_onT_model = .data:0x00844DA8; // type:object size:0x68 scope:global align:8
+int_ike_prores_punch01_pal = .data:0x00844E20; // type:object size:0x20 scope:global align:32
+int_ike_prores_punch01_punch1_tex_pic_ci4_pal = .data:0x00844E40; // type:object size:0x20 scope:global align:32
+int_ike_prores_punch01_pole3_tex_txt = .data:0x00844E60; // type:object size:0x40 scope:global align:32
+int_ike_prores_punch01_base2_tex_txt = .data:0x00844EA0; // type:object size:0x100 scope:global align:32
+int_ike_prores_punch01_pole2_tex_txt = .data:0x00844FA0; // type:object size:0x80 scope:global align:32
+int_ike_prores_punch01_pole1_tex_txt = .data:0x00845020; // type:object size:0x80 scope:global align:32
+int_ike_prores_punch01_base3_tex_txt = .data:0x008450A0; // type:object size:0x80 scope:global align:32
+int_ike_prores_punch01_base1_tex_txt = .data:0x00845120; // type:object size:0x200 scope:global align:32
+int_ike_prores_punch01_pole4_tex_txt = .data:0x00845320; // type:object size:0x40 scope:global align:32
+int_ike_prores_punch01_punch1_tex_txt = .data:0x00845360; // type:object size:0x80 scope:global align:32
+int_ike_prores_punch01_v = .data:0x008453E0; // type:object size:0x3E0 scope:global align:8
+int_ike_prores_punch_ball_model = .data:0x008457C0; // type:object size:0x80 scope:global align:8
+int_ike_prores_punch_base_model = .data:0x00845840; // type:object size:0x140 scope:global align:8
+cKF_ckcb_r_int_ike_prores_punch01_tbl = .data:0x00845980; // type:object size:0x2 scope:global align:4
+cKF_kn_int_ike_prores_punch01_tbl = .data:0x00845984; // type:object size:0x6 scope:global align:4
+cKF_c_int_ike_prores_punch01_tbl = .data:0x0084598C; // type:object size:0xC scope:global align:4
+cKF_ds_int_ike_prores_punch01_tbl = .data:0x00845998; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_ike_prores_punch01 = .data:0x00845A28; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_prores_punch01_tbl = .data:0x00845A3C; // type:object size:0x18 scope:global align:4
+cKF_bs_r_int_ike_prores_punch01 = .data:0x00845A54; // type:object size:0x8 scope:global align:4
+int_ike_prores_sandbag01_pal = .data:0x00845A60; // type:object size:0x20 scope:global align:32
+int_ike_prores_sandbag01_bodyic1_tex_pic_ci4_pal = .data:0x00845A80; // type:object size:0x20 scope:global align:32
+int_ike_prores_sandbag01_base3_tex_txt = .data:0x00845AA0; // type:object size:0x80 scope:global align:32
+int_ike_prores_sandbag01_pole3_tex_txt = .data:0x00845B20; // type:object size:0x40 scope:global align:32
+int_ike_prores_sandbag01_base1_tex_txt = .data:0x00845B60; // type:object size:0x200 scope:global align:32
+int_ike_prores_sandbag01_base2_tex_txt = .data:0x00845D60; // type:object size:0x100 scope:global align:32
+int_ike_prores_sandbag01_pole2_tex_txt = .data:0x00845E60; // type:object size:0x80 scope:global align:32
+int_ike_prores_sandbag01_pole1_tex_txt = .data:0x00845EE0; // type:object size:0x80 scope:global align:32
+int_ike_prores_sandbag01_pole4_tex_txt = .data:0x00845F60; // type:object size:0x40 scope:global align:32
+int_ike_prores_sandbag01_bodyic1_tex_txt = .data:0x00845FA0; // type:object size:0x100 scope:global align:32
+int_ike_prores_sandbag01_v = .data:0x008460A0; // type:object size:0x690 scope:global align:8
+int_ike_prores_sandbag_chain_model = .data:0x00846730; // type:object size:0xA8 scope:global align:8
+int_ike_prores_sandbag_body_model = .data:0x008467D8; // type:object size:0xB8 scope:global align:8
+int_ike_prores_sandbag_base_model = .data:0x00846890; // type:object size:0x130 scope:global align:8
+cKF_ckcb_r_int_ike_prores_sandbag01_tbl = .data:0x008469C0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_ike_prores_sandbag01_tbl = .data:0x008469C4; // type:object size:0xC scope:global align:4
+cKF_c_int_ike_prores_sandbag01_tbl = .data:0x008469D0; // type:object size:0xC scope:global align:4
+cKF_ds_int_ike_prores_sandbag01_tbl = .data:0x008469DC; // type:object size:0xC6 scope:global align:4
+cKF_ba_r_int_ike_prores_sandbag01 = .data:0x00846AA4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_prores_sandbag01_tbl = .data:0x00846AB8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_ike_prores_sandbag01 = .data:0x00846ADC; // type:object size:0x8 scope:global align:4
+int_ike_prores_table01_pal = .data:0x00846B00; // type:object size:0x20 scope:global align:32
+int_ike_prores_table01_front_tex = .data:0x00846B20; // type:object size:0x300 scope:global align:32
+int_ike_prores_table01_side_tex = .data:0x00846E20; // type:object size:0x180 scope:global align:32
+int_ike_prores_table01_top_tex = .data:0x00846FA0; // type:object size:0x100 scope:global align:32 data:string
+int_ike_prores_table01_side2_tex = .data:0x008470A0; // type:object size:0x40 scope:global align:32
+int_ike_prores_table01_under_tex = .data:0x008470E0; // type:object size:0x80 scope:global align:32
+int_ike_prores_table01_v = .data:0x00847160; // type:object size:0x480 scope:global align:8
+int_ike_prores_table01_on_model = .data:0x008475E0; // type:object size:0x58 scope:global align:8
+int_ike_prores_table01_onT_model = .data:0x00847638; // type:object size:0xF0 scope:global align:8
+int_ike_pst_pig01_pal = .data:0x00847740; // type:object size:0x20 scope:global align:32
+int_ike_pst_pig01_base1_tex = .data:0x00847760; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_nose1_tex = .data:0x008477E0; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_ear1_tex = .data:0x00847860; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_eye1_tex = .data:0x008478E0; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_hole1_tex = .data:0x00847960; // type:object size:0x100 scope:global align:32
+int_ike_pst_pig01_hand1_tex = .data:0x00847A60; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_tail1_tex = .data:0x00847AE0; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_mark1_tex = .data:0x00847B60; // type:object size:0x80 scope:global align:32
+int_ike_pst_pig01_v = .data:0x00847BE0; // type:object size:0x500 scope:global align:8
+int_ike_pst_pig01_on_model = .data:0x008480E0; // type:object size:0x120 scope:global align:8
+int_ike_pst_pig01_onT_model = .data:0x00848200; // type:object size:0x80 scope:global align:8
+int_ike_pst_tesyu01_pal = .data:0x00848280; // type:object size:0x20 scope:global align:32
+int_ike_pst_tesyu01_side1_tex = .data:0x008482A0; // type:object size:0x100 scope:global align:32
+int_ike_pst_tesyu01_side2_tex = .data:0x008483A0; // type:object size:0x80 scope:global align:32
+int_ike_pst_tesyu01_top1_tex = .data:0x00848420; // type:object size:0x100 scope:global align:32
+int_ike_pst_tesyu01_tesyu1_tex = .data:0x00848520; // type:object size:0x200 scope:global align:32
+int_ike_pst_tesyu01_v = .data:0x00848720; // type:object size:0x240 scope:global align:8
+int_ike_pst_tesyu01_on_model = .data:0x00848960; // type:object size:0x98 scope:global align:8
+int_ike_pst_tesyu01_offT_model = .data:0x008489F8; // type:object size:0x70 scope:global align:8
+int_ike_tent_bike01_pal = .data:0x00848A80; // type:object size:0x20 scope:global align:32
+int_ike_tent_bike_tire1_tex_txt = .data:0x00848AA0; // type:object size:0x200 scope:global align:32
+int_ike_tent_bike_tire2_tex_txt = .data:0x00848CA0; // type:object size:0x80 scope:global align:32
+int_ike_tent_bike_pedal1_tex_txt = .data:0x00848D20; // type:object size:0x40 scope:global align:32
+int_ike_tent_bike_tire3_tex_txt = .data:0x00848D60; // type:object size:0x100 scope:global align:32
+int_ike_tent_bike_handle2_tex_txt = .data:0x00848E60; // type:object size:0x80 scope:global align:32
+int_ike_tent_bike_frame2_tex_txt = .data:0x00848EE0; // type:object size:0x80 scope:global align:32
+int_ike_tent_bike_handle1_tex_txt = .data:0x00848F60; // type:object size:0x80 scope:global align:32
+int_ike_tent_bike_chiar1_tex_txt = .data:0x00848FE0; // type:object size:0x40 scope:global align:32
+int_ike_tent_bike_chiar2_tex_txt = .data:0x00849020; // type:object size:0x40 scope:global align:32
+int_ike_tent_bike_frame1_tex_txt = .data:0x00849060; // type:object size:0x400 scope:global align:32
+int_ike_tent_bike01_v = .data:0x00849460; // type:object size:0x690 scope:global align:8
+int_ike_tent_bike01_model = .data:0x00849AF0; // type:object size:0x268 scope:global align:8
+int_sum_ayu_pal = .data:0x00849D60; // type:object size:0x20 scope:local align:32
+int_ike_tent_fire01_pal = .data:0x00849D80; // type:object size:0x20 scope:global align:32
+int_ike_kama_danro01_pal = .data:0x00849DA0; // type:object size:0x20 scope:local align:32
+act_mus_ayu_body_txt = .data:0x00849DC0; // type:object size:0x300 scope:local align:32
+int_ike_tent_fire01_pole1_tex_txt = .data:0x0084A0C0; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire01_tree2_tex_txt = .data:0x0084A140; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire01_tree1_tex_txt = .data:0x0084A1C0; // type:object size:0x80 scope:global align:32
+int_ike_kama_danrotree1_tex_txt = .data:0x0084A240; // type:object size:0x80 scope:local align:32
+int_ike_tent_fire01_fire_pic_i4 = .data:0x0084A2C0; // type:object size:0x200 scope:global align:32
+int_ike_tent_fire01_fire2_pic_i4 = .data:0x0084A4C0; // type:object size:0x400 scope:global align:32
+int_ike_tent_fire01_v = .data:0x0084A8C0; // type:object size:0x7E0 scope:global align:8
+int_ike_tent_firetree_model = .data:0x0084B0A0; // type:object size:0x378 scope:global align:8
+int_ike_fire_model = .data:0x0084B418; // type:object size:0x70 scope:global align:8
+cKF_ckcb_r_int_ike_tent_fire01_tbl = .data:0x0084B488; // type:object size:0x3 scope:global align:4
+cKF_c_int_ike_tent_fire01_tbl = .data:0x0084B48C; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_ike_tent_fire01 = .data:0x0084B4A4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_tent_fire01_tbl = .data:0x0084B4B8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_ike_tent_fire01 = .data:0x0084B4DC; // type:object size:0x8 scope:global align:4
+int_ike_tent_fire02_pal = .data:0x0084B500; // type:object size:0x20 scope:global align:32
+int_ike_tent_fire02_tree3_tex_txt = .data:0x0084B520; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire02_tree2_tex_txt = .data:0x0084B5A0; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire02_tree5_tex_txt = .data:0x0084B620; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire02_tree1_tex_txt = .data:0x0084B6A0; // type:object size:0x80 scope:global align:32
+int_ike_tent_fire02_f2_4i4_pic_i4 = .data:0x0084B720; // type:object size:0x400 scope:global align:32
+int_ike_tent_fire02_tex_4i4_pic_i4 = .data:0x0084BB20; // type:object size:0x400 scope:global align:32
+int_ike_tent_fire02_v = .data:0x0084BF20; // type:object size:0x630 scope:global align:8
+int_ike_tent_firetree02_model = .data:0x0084C550; // type:object size:0x270 scope:global align:8
+int_ike_fire1_model = .data:0x0084C7C0; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_ike_tent_fire02_tbl = .data:0x0084C838; // type:object size:0x3 scope:global align:4
+cKF_c_int_ike_tent_fire02_tbl = .data:0x0084C83C; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_ike_tent_fire02 = .data:0x0084C854; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_ike_tent_fire02_tbl = .data:0x0084C868; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_ike_tent_fire02 = .data:0x0084C88C; // type:object size:0x8 scope:global align:4
+int_ike_tent_kayak01_pal = .data:0x0084C8A0; // type:object size:0x20 scope:global align:32
+int_ike_tent_kayak_pab = .data:0x0084C8C0; // type:object size:0x200 scope:global align:32
+int_ike_tent_kayak_under = .data:0x0084CAC0; // type:object size:0x80 scope:global align:32
+int_ike_tent_kayak_chair = .data:0x0084CB40; // type:object size:0x100 scope:global align:32
+int_ike_tent_kayak_topf = .data:0x0084CC40; // type:object size:0x180 scope:global align:32
+int_ike_tent_kayak_topr = .data:0x0084CDC0; // type:object size:0x180 scope:global align:32
+int_ike_tent_kayak01_v = .data:0x0084CF40; // type:object size:0x2E0 scope:global align:8
+int_ike_tent_kayak01_on_model = .data:0x0084D220; // type:object size:0x100 scope:global align:8
+int_ike_tent_kayak01_onT_model = .data:0x0084D320; // type:object size:0x80 scope:global align:8
+int_ike_tent_knap01_pal = .data:0x0084D3A0; // type:object size:0x20 scope:global align:32
+int_ike_tent_knap_frontside_txt = .data:0x0084D3C0; // type:object size:0x80 scope:global align:32
+int_ike_tent_knap_top_txt = .data:0x0084D440; // type:object size:0x100 scope:global align:32
+int_ike_tent_knap_base_txt = .data:0x0084D540; // type:object size:0x100 scope:global align:32
+int_ike_tent_knap_topback_txt = .data:0x0084D640; // type:object size:0x100 scope:global align:32
+int_ike_tent_knap_side_txt = .data:0x0084D740; // type:object size:0x80 scope:global align:32
+int_ike_tent_knap_back_txt = .data:0x0084D7C0; // type:object size:0x100 scope:global align:32
+int_ike_tent_knap_front_txt = .data:0x0084D8C0; // type:object size:0x100 scope:global align:32
+int_ike_tent_knap_topside_txt = .data:0x0084D9C0; // type:object size:0x80 scope:global align:32
+int_ike_tent_knap01_v = .data:0x0084DA40; // type:object size:0x640 scope:global align:8
+int_ike_tent_knap01_model = .data:0x0084E080; // type:object size:0x1F8 scope:global align:8
+int_ike_tent_sleepbag01_pal = .data:0x0084E280; // type:object size:0x20 scope:global align:32
+int_ike_tent_sleepbag_side1_tex_txt = .data:0x0084E2A0; // type:object size:0x400 scope:global align:32
+int_ike_tent_sleepbag_in1_tex_txt = .data:0x0084E6A0; // type:object size:0x80 scope:global align:32
+int_ike_tent_sleepbag01_v = .data:0x0084E720; // type:object size:0x1B0 scope:global align:8
+int_ike_tent_sleepbag01_model = .data:0x0084E8D0; // type:object size:0xB0 scope:global align:8
+int_iku_bugzapper_pal = .data:0x0084E980; // type:object size:0x20 scope:global align:32
+int_iku_bugzapper_d_tex_txt = .data:0x0084E9A0; // type:object size:0x100 scope:global align:32 data:string
+int_iku_bugzapper_c_tex_txt = .data:0x0084EAA0; // type:object size:0x400 scope:global align:32
+int_iku_bugzapper_a_tex_txt = .data:0x0084EEA0; // type:object size:0x80 scope:global align:32
+int_iku_bugzapper_e_tex_txt = .data:0x0084EF20; // type:object size:0x100 scope:global align:32
+int_iku_bugzapper_v = .data:0x0084F020; // type:object size:0x400 scope:global align:8
+int_iku_bugzapper_on_model = .data:0x0084F420; // type:object size:0x128 scope:global align:8
+int_iku_bugzapper_off_model = .data:0x0084F548; // type:object size:0x60 scope:global align:8
+int_iku_busstop_pal = .data:0x0084F5C0; // type:object size:0x20 scope:global align:32
+int_iku_basstop_all_tex_txt = .data:0x0084F5E0; // type:object size:0x800 scope:global align:32
+int_iku_busstop_v = .data:0x0084FDE0; // type:object size:0x4D0 scope:global align:8
+int_iku_busstop_model_model = .data:0x008502B0; // type:object size:0xC0 scope:global align:8
+int_iku_candy_pal = .data:0x00850380; // type:object size:0x20 scope:global align:32
+int_iku_candy_bb_tex_txt = .data:0x008503A0; // type:object size:0x400 scope:global align:32
+int_iku_candy_ab_tex_txt = .data:0x008507A0; // type:object size:0x400 scope:global align:32
+int_iku_candy_v = .data:0x00850BA0; // type:object size:0x340 scope:global align:8
+int_iku_candy_on_model = .data:0x00850EE0; // type:object size:0xB0 scope:global align:8
+int_iku_candy_off_model = .data:0x00850F90; // type:object size:0x68 scope:global align:8
+int_iku_cement_pal = .data:0x00851000; // type:object size:0x20 scope:global align:32
+int_iku_cement_a_tex_txt = .data:0x00851020; // type:object size:0x200 scope:global align:32
+int_iku_cement_d_tex_txt = .data:0x00851220; // type:object size:0x100 scope:global align:32
+int_iku_cement_f_tex_txt = .data:0x00851320; // type:object size:0x100 scope:global align:32
+int_iku_cement_c_tex_txt = .data:0x00851420; // type:object size:0x100 scope:global align:32
+int_iku_cement_b_tex_txt = .data:0x00851520; // type:object size:0x100 scope:global align:32
+int_iku_cement_e_tex_txt = .data:0x00851620; // type:object size:0x100 scope:global align:32
+int_iku_cement_g_tex_txt = .data:0x00851720; // type:object size:0x100 scope:global align:32
+int_iku_cement_v = .data:0x00851820; // type:object size:0x4F0 scope:global align:8
+int_iku_cement_model_model = .data:0x00851D10; // type:object size:0x1B8 scope:global align:8
+int_iku_chair_pal = .data:0x00851EE0; // type:object size:0x20 scope:global align:32
+int_iku_chair_d_tex_txt = .data:0x00851F00; // type:object size:0x100 scope:global align:32
+int_iku_chair_a_tex_txt = .data:0x00852000; // type:object size:0x200 scope:global align:32
+int_iku_chair_e_tex_txt = .data:0x00852200; // type:object size:0x200 scope:global align:32
+int_iku_chair_b_tex_txt = .data:0x00852400; // type:object size:0x200 scope:global align:32 data:string
+int_iku_chair_c_tex_txt = .data:0x00852600; // type:object size:0x100 scope:global align:32
+int_iku_chair_v = .data:0x00852700; // type:object size:0x6F0 scope:global align:8
+int_iku_chair_model_model = .data:0x00852DF0; // type:object size:0x148 scope:global align:8
+int_iku_cocoa_pal = .data:0x00852F40; // type:object size:0x20 scope:global align:32
+int_iku_cocoa_c_tex_txt = .data:0x00852F60; // type:object size:0x400 scope:global align:32
+int_iku_cocoa_b_tex_txt = .data:0x00853360; // type:object size:0x200 scope:global align:32
+int_iku_cocoa_a_tex_txt = .data:0x00853560; // type:object size:0x200 scope:global align:32
+int_iku_cocoa_v = .data:0x00853760; // type:object size:0x310 scope:global align:8
+int_iku_cocoa_on_model = .data:0x00853A70; // type:object size:0xB8 scope:global align:8
+int_iku_cocoa_off_model = .data:0x00853B28; // type:object size:0x78 scope:global align:8
+int_iku_cow_pal = .data:0x00853BA0; // type:object size:0x20 scope:global align:32
+int_iku_cow_5_tex_txt = .data:0x00853BC0; // type:object size:0x100 scope:global align:32
+int_iku_cow1_tex_txt = .data:0x00853CC0; // type:object size:0x400 scope:global align:32
+int_iku_cow_4_tex_txt = .data:0x008540C0; // type:object size:0x100 scope:global align:32
+int_iku_cow_3_tex_txt = .data:0x008541C0; // type:object size:0x100 scope:global align:32
+int_iku_cow_2_tex_txt = .data:0x008542C0; // type:object size:0x100 scope:global align:32
+int_iku_cow_v = .data:0x008543C0; // type:object size:0x360 scope:global align:8
+int_iku_cow_model = .data:0x00854720; // type:object size:0x130 scope:global align:8
+int_iku_denko_pal = .data:0x00854860; // type:object size:0x20 scope:global align:32
+int_iku_denko_all_tex_txt = .data:0x00854880; // type:object size:0x400 scope:global align:32
+int_iku_denko_v = .data:0x00854C80; // type:object size:0x5E0 scope:global align:8
+int_iku_denko_model_model = .data:0x00855260; // type:object size:0xC0 scope:global align:8
+int_iku_flagman_pal = .data:0x00855320; // type:object size:0x20 scope:global align:32
+int_iku_flagman_all_tex_txt = .data:0x00855340; // type:object size:0x400 scope:global align:32
+int_iku_flagman_v = .data:0x00855740; // type:object size:0x5E0 scope:global align:8
+int_iku_flagman_model_model = .data:0x00855D20; // type:object size:0xC0 scope:global align:8
+int_iku_flip_top_pal = .data:0x00855DE0; // type:object size:0x20 scope:global align:32
+int_iku_flip_top_a_tex_txt = .data:0x00855E00; // type:object size:0x400 scope:global align:32
+int_iku_flip_top_d_tex_txt = .data:0x00856200; // type:object size:0x100 scope:global align:32
+int_iku_flip_top_c_tex_txt = .data:0x00856300; // type:object size:0x100 scope:global align:32
+int_iku_flip_top_bd_tex_txt = .data:0x00856400; // type:object size:0x200 scope:global align:32
+int_iku_flip_top_v = .data:0x00856600; // type:object size:0x620 scope:global align:8
+int_iku_flip_model_b_model = .data:0x00856C20; // type:object size:0x58 scope:global align:8
+int_iku_flip_model_a_model = .data:0x00856C78; // type:object size:0x138 scope:global align:8
+int_iku_gold_green_pal = .data:0x00856DC0; // type:object size:0x20 scope:global align:32
+int_iku_gold_green1_tex_txt = .data:0x00856DE0; // type:object size:0x200 scope:global align:32
+int_iku_gold_green5_tex_txt = .data:0x00856FE0; // type:object size:0x200 scope:global align:32
+int_iku_gold_green2_tex_txt = .data:0x008571E0; // type:object size:0x200 scope:global align:32
+int_iku_gold_green4_tex_txt = .data:0x008573E0; // type:object size:0x100 scope:global align:32
+int_iku_gold_green3_tex_txt = .data:0x008574E0; // type:object size:0x100 scope:global align:32
+int_iku_gold_green_v = .data:0x008575E0; // type:object size:0x510 scope:global align:8
+int_iku_gold_green_model = .data:0x00857AF0; // type:object size:0x140 scope:global align:8
+int_iku_gold_red_pal = .data:0x00857C40; // type:object size:0x20 scope:global align:32
+int_iku_gold_red5_tex_txt = .data:0x00857C60; // type:object size:0x100 scope:global align:32
+int_iku_gold_red2_tex_txt = .data:0x00857D60; // type:object size:0x200 scope:global align:32
+int_iku_gold_red3_tex_txt = .data:0x00857F60; // type:object size:0x200 scope:global align:32
+int_iku_gold_red1_tex_txt = .data:0x00858160; // type:object size:0x200 scope:global align:32
+int_iku_gold_red4_tex_txt = .data:0x00858360; // type:object size:0x100 scope:global align:32
+int_iku_gold_red_v = .data:0x00858460; // type:object size:0x3E0 scope:global align:8
+int_iku_gold_red_model = .data:0x00858840; // type:object size:0x138 scope:global align:8
+int_iku_ham_pal = .data:0x00858980; // type:object size:0x20 scope:global align:32
+int_iku_ham_c_tex_txt = .data:0x008589A0; // type:object size:0x100 scope:global align:32
+int_iku_ham_e_tex_txt = .data:0x00858AA0; // type:object size:0x80 scope:global align:32
+int_iku_ham_a_tex_txt = .data:0x00858B20; // type:object size:0x200 scope:global align:32
+int_iku_ham_f_tex_txt = .data:0x00858D20; // type:object size:0x400 scope:global align:32
+int_iku_ham_v = .data:0x00859120; // type:object size:0x510 scope:global align:8
+int_iku_ham_model_b_model = .data:0x00859630; // type:object size:0xB0 scope:global align:8
+int_iku_ham_model_a_model = .data:0x008596E0; // type:object size:0xA0 scope:global align:8
+int_iku_hazardous_pal = .data:0x00859780; // type:object size:0x20 scope:global align:32
+int_iku_hazardous_mark_tex_txt = .data:0x008597A0; // type:object size:0x200 scope:global align:32
+int_iku_hazardous_top_tex_txt = .data:0x008599A0; // type:object size:0x200 scope:global align:32
+int_iku_hazardous_yoko_tex_txt = .data:0x00859BA0; // type:object size:0x400 scope:global align:32
+int_iku_hazardous_v = .data:0x00859FA0; // type:object size:0x240 scope:global align:8
+int_iku_hazardous_model_b_model = .data:0x0085A1E0; // type:object size:0x98 scope:global align:8
+int_iku_hazardous_model_a_model = .data:0x0085A278; // type:object size:0x68 scope:global align:8
+int_iku_ido_pal = .data:0x0085A2E0; // type:object size:0x20 scope:global align:32
+int_iku_ido_ab_tex_txt = .data:0x0085A300; // type:object size:0x200 scope:global align:32
+int_iku_ido_i_tex_txt = .data:0x0085A500; // type:object size:0x80 scope:global align:32
+int_iku_ido_h_tex_txt = .data:0x0085A580; // type:object size:0x80 scope:global align:32
+int_iku_ido_g_tex_txt = .data:0x0085A600; // type:object size:0x80 scope:global align:32
+int_iku_ido_f_tex_txt = .data:0x0085A680; // type:object size:0x200 scope:global align:32
+int_iku_ido_e_tex_txt = .data:0x0085A880; // type:object size:0x80 scope:global align:32
+int_iku_ido_c_tex_txt = .data:0x0085A900; // type:object size:0x80 scope:global align:32
+int_iku_ido_b_tex_txt = .data:0x0085A980; // type:object size:0x100 scope:global align:32
+int_iku_ido_j_tex_txt = .data:0x0085AA80; // type:object size:0x80 scope:global align:32
+int_iku_ido_d_tex_txt = .data:0x0085AB00; // type:object size:0x80 scope:global align:32
+int_iku_ido_v = .data:0x0085AB80; // type:object size:0x700 scope:global align:8
+int_iku_ido_model = .data:0x0085B280; // type:object size:0x1D8 scope:global align:8
+int_iku_jack_pal = .data:0x0085B460; // type:object size:0x20 scope:global align:32
+int_iku_jack_a_tex_txt = .data:0x0085B480; // type:object size:0x80 scope:global align:32
+int_iku_jack_b_tex_txt = .data:0x0085B500; // type:object size:0x400 scope:global align:32
+int_iku_jack_d_tex_txt = .data:0x0085B900; // type:object size:0x100 scope:global align:32
+int_iku_jack_c_tex_txt = .data:0x0085BA00; // type:object size:0x80 scope:global align:32
+int_iku_jack_e_tex_txt = .data:0x0085BA80; // type:object size:0x200 scope:global align:32
+int_iku_jack_v = .data:0x0085BC80; // type:object size:0x3C0 scope:global align:8
+int_iku_jack_model_model = .data:0x0085C040; // type:object size:0x130 scope:global align:8
+int_iku_jersey_pal = .data:0x0085C180; // type:object size:0x20 scope:global align:32
+int_iku_jersey_mae_tex_txt = .data:0x0085C1A0; // type:object size:0x200 scope:global align:32
+int_iku_jersey_yoko_tex_txt = .data:0x0085C3A0; // type:object size:0x100 scope:global align:32
+int_iku_jersey_v = .data:0x0085C4A0; // type:object size:0x2C0 scope:global align:8
+int_iku_jersey_model_model = .data:0x0085C760; // type:object size:0xB0 scope:global align:8
+int_iku_mario_coin_a_pal = .data:0x0085C820; // type:object size:0x20 scope:global align:32
+int_iku_mario_coin_b_pal = .data:0x0085C840; // type:object size:0x20 scope:global align:32
+int_iku_mario_coin_c_pal = .data:0x0085C860; // type:object size:0x20 scope:global align:32
+int_iku_mario_coin_tex = .data:0x0085C880; // type:object size:0x200 scope:global align:32
+int_iku_mario_coin_center_tex = .data:0x0085CA80; // type:object size:0x100 scope:global align:32
+int_iku_mario_coin_v = .data:0x0085CB80; // type:object size:0x2C0 scope:global align:8
+int_iku_mario_coin_model = .data:0x0085CE40; // type:object size:0xC0 scope:global align:8
+int_iku_mario_dokan_pal = .data:0x0085CF00; // type:object size:0x20 scope:global align:32
+int_iku_mario_dokan_b_tex_pic_ci4_pal = .data:0x0085CF20; // type:object size:0x20 scope:global align:32
+int_iku_mario_dokan_a_tex_txt = .data:0x0085CF40; // type:object size:0x200 scope:global align:32
+int_iku_mario_dokan_c_tex_txt = .data:0x0085D140; // type:object size:0x40 scope:global align:32 data:string
+int_iku_mario_dokan_b_tex_txt = .data:0x0085D180; // type:object size:0x100 scope:global align:32
+int_iku_mario_dokan_v = .data:0x0085D280; // type:object size:0x2F0 scope:global align:8
+int_iku_mario_dokan_model_b_model = .data:0x0085D570; // type:object size:0x90 scope:global align:8
+int_iku_mario_dokan_model_a_model = .data:0x0085D600; // type:object size:0x98 scope:global align:8
+int_iku_mario_hatena_a_pal = .data:0x0085D6A0; // type:object size:0x20 scope:global align:32
+int_iku_mario_hatena_b_pal = .data:0x0085D6C0; // type:object size:0x20 scope:global align:32
+int_iku_mario_hatena_c_pal = .data:0x0085D6E0; // type:object size:0x20 scope:global align:32
+int_iku_mario_hatena_a_tex_txt = .data:0x0085D700; // type:object size:0x400 scope:global align:32
+int_iku_mario_hatena_v = .data:0x0085DB00; // type:object size:0x5C0 scope:global align:8
+int_iku_mario_hatena_model_b_model = .data:0x0085E0C0; // type:object size:0x68 scope:global align:8
+int_iku_mario_hatena_model_a_model = .data:0x0085E128; // type:object size:0xB8 scope:global align:8
+int_iku_mario_koura_pal = .data:0x0085E1E0; // type:object size:0x20 scope:global align:32
+int_iku_mario_koura_a_tex_txt = .data:0x0085E200; // type:object size:0x400 scope:global align:32
+int_iku_mario_koura_b_tex_txt = .data:0x0085E600; // type:object size:0x400 scope:global align:32
+int_iku_mario_koura_v = .data:0x0085EA00; // type:object size:0x2E0 scope:global align:8
+int_iku_mario_koura_model = .data:0x0085ECE0; // type:object size:0x100 scope:global align:8
+int_iku_mario_renga_pal = .data:0x0085EDE0; // type:object size:0x20 scope:global align:32
+int_iku_mario_renga_tex = .data:0x0085EE00; // type:object size:0x400 scope:global align:32
+int_iku_mario_renga_v = .data:0x0085F200; // type:object size:0x140 scope:global align:8
+int_iku_mario_renga_on_model = .data:0x0085F340; // type:object size:0x68 scope:global align:8
+int_iku_mario_star_c_pal = .data:0x0085F3C0; // type:object size:0x20 scope:global align:32
+int_iku_mario_star_a_pal = .data:0x0085F3E0; // type:object size:0x20 scope:global align:32
+int_iku_mario_star_b_pal = .data:0x0085F400; // type:object size:0x20 scope:global align:32
+int_iku_mario_star_d_pal = .data:0x0085F420; // type:object size:0x20 scope:global align:32
+int_iku_mario_star_a_tex_txt = .data:0x0085F440; // type:object size:0x80 scope:global align:32
+int_iku_mario_star_v = .data:0x0085F4C0; // type:object size:0x200 scope:global align:8
+int_iku_mario_star_model = .data:0x0085F6C0; // type:object size:0xA8 scope:global align:8
+int_iku_mario_taihou_pal = .data:0x0085F780; // type:object size:0x20 scope:global align:32
+int_iku_mario_taihou_a_tex_txt = .data:0x0085F7A0; // type:object size:0x200 scope:global align:32
+int_iku_mario_taihou_e_tex_txt = .data:0x0085F9A0; // type:object size:0x200 scope:global align:32
+int_iku_mario_taihou_d_tex_txt = .data:0x0085FBA0; // type:object size:0x200 scope:global align:32
+int_iku_mario_taihou_c_tex_txt = .data:0x0085FDA0; // type:object size:0x100 scope:global align:32
+int_iku_mario_taihou_b_tex_txt = .data:0x0085FEA0; // type:object size:0x400 scope:global align:32
+int_iku_mario_taihou_v = .data:0x008602A0; // type:object size:0x3C0 scope:global align:8
+int_iku_mario_taihou_model = .data:0x00860660; // type:object size:0x140 scope:global align:8
+int_iku_orange_pal = .data:0x008607A0; // type:object size:0x20 scope:global align:32
+int_iku_orange_b_tex_txt = .data:0x008607C0; // type:object size:0x200 scope:global align:32
+int_iku_orange_a_tex_txt = .data:0x008609C0; // type:object size:0x200 scope:global align:32
+int_iku_orange_c_tex_txt = .data:0x00860BC0; // type:object size:0x400 scope:global align:32
+int_iku_orange_v = .data:0x00860FC0; // type:object size:0x240 scope:global align:8
+int_iku_orange_model_b_model = .data:0x00861200; // type:object size:0x98 scope:global align:8
+int_iku_orange_model_a_model = .data:0x00861298; // type:object size:0x68 scope:global align:8
+int_iku_reducespeed_pal = .data:0x00861300; // type:object size:0x20 scope:global align:32
+int_iku_reducespeed_all_tex_txt = .data:0x00861320; // type:object size:0x400 scope:global align:32
+int_iku_reducespeed_v = .data:0x00861720; // type:object size:0x4D0 scope:global align:8
+int_iku_reducespeed_model_model = .data:0x00861BF0; // type:object size:0xC0 scope:global align:8
+int_iku_roller_pal = .data:0x00861CC0; // type:object size:0x20 scope:global align:32
+int_iku_roller_g_tex_txt = .data:0x00861CE0; // type:object size:0x80 scope:global align:32
+int_iku_roller_b_tex_txt = .data:0x00861D60; // type:object size:0x200 scope:global align:32
+int_iku_roller_e_tex_txt = .data:0x00861F60; // type:object size:0x80 scope:global align:32
+int_iku_roller_d_tex_txt = .data:0x00861FE0; // type:object size:0x100 scope:global align:32
+int_iku_roller_c_tex_txt = .data:0x008620E0; // type:object size:0x100 scope:global align:32
+int_iku_roller_f_tex_txt = .data:0x008621E0; // type:object size:0x100 scope:global align:32
+int_iku_roller_a_tex_txt = .data:0x008622E0; // type:object size:0x200 scope:global align:32
+int_iku_roller_v = .data:0x008624E0; // type:object size:0x5D0 scope:global align:8
+int_iku_roller_on_model = .data:0x00862AB0; // type:object size:0x158 scope:global align:8
+int_iku_roller_off_model = .data:0x00862C08; // type:object size:0x58 scope:global align:8
+int_iku_saku_a_pal = .data:0x00862C60; // type:object size:0x20 scope:global align:32
+int_iku_saku_a_b_tex_txt = .data:0x00862C80; // type:object size:0x80 scope:global align:32
+int_iku_saku_a_a_tex_txt = .data:0x00862D00; // type:object size:0x200 scope:global align:32 data:string
+int_iku_saku_a_c_tex_txt = .data:0x00862F00; // type:object size:0x80 scope:global align:32 data:string
+int_iku_saku_a_h_tex_txt = .data:0x00862F80; // type:object size:0x100 scope:global align:32
+int_iku_saku_a_g_tex_txt = .data:0x00863080; // type:object size:0x400 scope:global align:32
+int_iku_saku_a_f_tex_txt = .data:0x00863480; // type:object size:0x80 scope:global align:32
+int_iku_saku_a_d_tex_txt = .data:0x00863500; // type:object size:0x100 scope:global align:32
+int_iku_saku_a_e_tex_txt = .data:0x00863600; // type:object size:0x100 scope:global align:32
+int_iku_saku_a_v = .data:0x00863700; // type:object size:0x5A0 scope:global align:8
+int_iku_saku_a_model_b_model = .data:0x00863CA0; // type:object size:0x128 scope:global align:8
+int_iku_saku_a_model_a_model = .data:0x00863DC8; // type:object size:0xC8 scope:global align:8
+int_iku_saku_b_pal = .data:0x00863EA0; // type:object size:0x20 scope:global align:32
+int_iku_saku_b_b_tex_txt = .data:0x00863EC0; // type:object size:0x80 scope:global align:32
+int_iku_saku_b_a_tex_txt = .data:0x00863F40; // type:object size:0x200 scope:global align:32 data:string
+int_iku_saku_b_c_tex_txt = .data:0x00864140; // type:object size:0x80 scope:global align:32 data:string
+int_iku_saku_b_v = .data:0x008641C0; // type:object size:0x2A0 scope:global align:8
+int_iku_saku_b_model_model = .data:0x00864460; // type:object size:0xC8 scope:global align:8
+int_iku_sawhorsev_pal = .data:0x00864540; // type:object size:0x20 scope:global align:32
+int_iku_sawhorsev_a_tex_txt = .data:0x00864560; // type:object size:0x200 scope:global align:32
+int_iku_sawhorsev_b_tex_txt = .data:0x00864760; // type:object size:0x200 scope:global align:32
+int_iku_sawhorsev_c_tex_txt = .data:0x00864960; // type:object size:0x100 scope:global align:32
+int_iku_sawhorsev_d_tex_txt = .data:0x00864A60; // type:object size:0x100 scope:global align:32
+int_iku_sawhorsev_v = .data:0x00864B60; // type:object size:0x670 scope:global align:8
+int_iku_sawhorsev_model_model = .data:0x008651D0; // type:object size:0x138 scope:global align:8
+int_iku_slip_pal = .data:0x00865320; // type:object size:0x20 scope:global align:32
+int_iku_slip_all_tex_txt = .data:0x00865340; // type:object size:0x400 scope:global align:32
+int_iku_slip_v = .data:0x00865740; // type:object size:0x5E0 scope:global align:8
+int_iku_slip_model_model = .data:0x00865D20; // type:object size:0xC0 scope:global align:8
+int_iku_tumble_pal = .data:0x00865DE0; // type:object size:0x20 scope:global align:32
+int_iku_tumble_tex_txt = .data:0x00865E00; // type:object size:0x800 scope:global align:32
+int_iku_tumble_v = .data:0x00866600; // type:object size:0x350 scope:global align:8
+int_iku_tumble_model = .data:0x00866950; // type:object size:0xB8 scope:global align:8
+int_iku_turkey_bed_pal = .data:0x00866A20; // type:object size:0x20 scope:global align:32
+int_iku_turkey_bed_h_tex_txt = .data:0x00866A40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_d_tex_txt = .data:0x00866B40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_b_tex_txt = .data:0x00866C40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_c_tex_txt = .data:0x00866D40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_a_tex_txt = .data:0x00866E40; // type:object size:0x200 scope:global align:32
+int_iku_turkey_bed_f_tex_txt = .data:0x00867040; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_e_tex_txt = .data:0x00867140; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_g_tex_txt = .data:0x00867240; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_i_tex_txt = .data:0x00867340; // type:object size:0x100 scope:global align:32
+int_iku_turkey_bed_v = .data:0x00867440; // type:object size:0x600 scope:global align:8
+int_iku_turkey_bed_modl_a_model = .data:0x00867A40; // type:object size:0x198 scope:global align:8
+int_iku_turkey_bed_model_b_model = .data:0x00867BD8; // type:object size:0x60 scope:global align:8
+int_iku_turkey_lamp_pal = .data:0x00867C40; // type:object size:0x20 scope:global align:32
+int_iku_turkey_lamp_c_txt = .data:0x00867C60; // type:object size:0x100 scope:global align:32
+int_iku_turkey_lamp_d_txt = .data:0x00867D60; // type:object size:0x100 scope:global align:32
+int_iku_turkey_lamp_e_txt = .data:0x00867E60; // type:object size:0x200 scope:global align:32
+int_iku_turkey_lamp_b_txt = .data:0x00868060; // type:object size:0x200 scope:global align:32
+int_iku_turkey_lamp_a_txt = .data:0x00868260; // type:object size:0x200 scope:global align:32
+int_iku_turkey_lamp_v = .data:0x00868460; // type:object size:0x480 scope:global align:8
+int_iku_turkey_lamp_model = .data:0x008688E0; // type:object size:0x138 scope:global align:8
+int_iku_turkey_table_pal = .data:0x00868A20; // type:object size:0x20 scope:global align:32
+int_iku_turkey_table_a_txt = .data:0x00868A40; // type:object size:0x200 scope:global align:32
+int_iku_turkey_table_b_txt = .data:0x00868C40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_table_d_txt = .data:0x00868D40; // type:object size:0x200 scope:global align:32
+int_iku_turkey_table_e_txt = .data:0x00868F40; // type:object size:0x100 scope:global align:32
+int_iku_turkey_table_c_txt = .data:0x00869040; // type:object size:0x100 scope:global align:32
+int_iku_turkey_table_v = .data:0x00869140; // type:object size:0x390 scope:global align:8
+int_iku_turkey_table_model_b_model = .data:0x008694D0; // type:object size:0x100 scope:global align:8
+int_iku_turkey_table_model_a_model = .data:0x008695D0; // type:object size:0x58 scope:global align:8
+int_iku_turkey_TV_pal = .data:0x00869640; // type:object size:0x20 scope:global align:32
+int_iku_turkey_TV_c_tex_txt = .data:0x00869660; // type:object size:0x200 scope:global align:32
+int_iku_turkey_TV_b_tex_txt = .data:0x00869860; // type:object size:0x100 scope:global align:32
+int_iku_turkey_TV_a_tex_txt = .data:0x00869960; // type:object size:0x100 scope:global align:32
+int_iku_turkey_TV_d_tex_txt = .data:0x00869A60; // type:object size:0x100 scope:global align:32
+int_iku_turkey_TV_e_tex_txt = .data:0x00869B60; // type:object size:0x200 scope:global align:32
+int_iku_turkey_TV_f_tex_txt = .data:0x00869D60; // type:object size:0x80 scope:global align:32
+int_iku_turkey_TV_g_tex_txt = .data:0x00869DE0; // type:object size:0x80 scope:global align:32
+int_iku_turkey_TV_h_tex_txt = .data:0x00869E60; // type:object size:0x80 scope:global align:32
+int_iku_turkey_TV_i_tex_txt = .data:0x00869EE0; // type:object size:0x80 scope:global align:32
+int_iku_turkey_TV_v = .data:0x00869F60; // type:object size:0x440 scope:global align:8
+int_iku_turkey_TV_model_b_model = .data:0x0086A3A0; // type:object size:0x60 scope:global align:8
+int_iku_turkey_TV_model_a_model = .data:0x0086A400; // type:object size:0x110 scope:global align:8
+int_iku_ukai_pal = .data:0x0086A520; // type:object size:0x20 scope:global align:32
+int_iku_ukai_all_tex_txt = .data:0x0086A540; // type:object size:0x400 scope:global align:32
+int_iku_ukai_v = .data:0x0086A940; // type:object size:0x5E0 scope:global align:8
+int_iku_ukai_mode_a_model = .data:0x0086AF20; // type:object size:0xC0 scope:global align:8
+int_iku_work_pal = .data:0x0086AFE0; // type:object size:0x20 scope:global align:32
+int_iku_work_all_tex_txt = .data:0x0086B000; // type:object size:0x400 scope:global align:32
+int_iku_work_v = .data:0x0086B400; // type:object size:0x5E0 scope:global align:8
+int_iku_work_model_model = .data:0x0086B9E0; // type:object size:0xC0 scope:global align:8
+act_m_abura_v = .data:0x0086BAA0; // type:object size:0x160 scope:local align:8
+act_m_abura_pal = .data:0x0086BC00; // type:object size:0x20 scope:local align:4
+act_m_abura = .data:0x0086BC20; // type:object size:0x200 scope:local align:4
+act_m_mu_abura1_1T_model = .data:0x0086BE20; // type:object size:0xC8 scope:global align:8
+act_m_mu_abura1_2T_model = .data:0x0086BEE8; // type:object size:0xC8 scope:global align:8
+act_m_akiakane_v = .data:0x0086BFB0; // type:object size:0x120 scope:local align:8
+act_m_akiakane_pal = .data:0x0086C0D0; // type:object size:0x20 scope:local align:4
+act_m_akiakane = .data:0x0086C0F0; // type:object size:0x180 scope:local align:4
+act_m_mu_akiakane1_1T_model = .data:0x0086C270; // type:object size:0xC8 scope:global align:8
+act_m_mu_akiakane1_2T_model = .data:0x0086C338; // type:object size:0xC8 scope:global align:8
+act_m_mu_akiakane2_2T_model = .data:0x0086C400; // type:object size:0xC8 scope:global align:8
+act_m_amenbo_v = .data:0x0086C4C8; // type:object size:0xE0 scope:local align:8
+act_m_amenbo_pal = .data:0x0086C5A8; // type:object size:0x20 scope:local align:4
+act_m_amenbo_tex = .data:0x0086C5C8; // type:object size:0x180 scope:local align:4
+act_m_mu_amenbo1T_model = .data:0x0086C748; // type:object size:0xC8 scope:global align:8
+act_m_mu_amenbo2T_model = .data:0x0086C810; // type:object size:0xC8 scope:global align:8
+act_m_ari_v = .data:0x0086C8D8; // type:object size:0x60 scope:local align:8
+act_m_ari_pal = .data:0x0086C938; // type:object size:0x20 scope:local align:4
+act_m_ari_tex = .data:0x0086C958; // type:object size:0x100 scope:local align:4
+act_m_mu_ariT_model = .data:0x0086CA58; // type:object size:0xC8 scope:global align:8
+act_m_dango_v = .data:0x0086CB20; // type:object size:0xB0 scope:local align:8
+act_m_dango_pal = .data:0x0086CBD0; // type:object size:0x20 scope:local align:4
+act_m_dango_tex = .data:0x0086CBF0; // type:object size:0x180 scope:local align:4
+act_m_mu_dango1T_model = .data:0x0086CD70; // type:object size:0xC8 scope:global align:8
+act_m_mu_dango2T_model = .data:0x0086CE38; // type:object size:0xC8 scope:global align:8
+act_m_danna_v = .data:0x0086CF00; // type:object size:0xC0 scope:local align:8
+act_m_danna_pal = .data:0x0086CFC0; // type:object size:0x20 scope:local align:4
+act_m_danna = .data:0x0086CFE0; // type:object size:0x200 scope:local align:4
+act_m_mu_danna1T_model = .data:0x0086D1E0; // type:object size:0xC8 scope:global align:8
+act_m_mu_danna2T_model = .data:0x0086D2A8; // type:object size:0xC8 scope:global align:8
+act_m_genji_pal = .data:0x0086D380; // type:object size:0x20 scope:global align:32
+act_m_genji = .data:0x0086D3A0; // type:object size:0x100 scope:global align:32
+act_m_genji_v = .data:0x0086D4A0; // type:object size:0x60 scope:global align:8
+act_m_mu_genji_modelT = .data:0x0086D500; // type:object size:0x60 scope:global align:8
+act_m_genji2_v = .data:0x0086D560; // type:object size:0x100 scope:local align:8
+act_m_genji_h1_txt = .data:0x0086D660; // type:object size:0x200 scope:local align:4
+act_m_mu_genji2_d_model = .data:0x0086D860; // type:object size:0x98 scope:global align:8
+act_m_mu_genji2_c_model = .data:0x0086D8F8; // type:object size:0x98 scope:global align:8
+act_m_mu_genji2_b_model = .data:0x0086D990; // type:object size:0x98 scope:global align:8
+act_m_mu_genji2_a_model = .data:0x0086DA28; // type:object size:0x98 scope:global align:8
+act_m_ginyanma_v = .data:0x0086DAC0; // type:object size:0x120 scope:local align:8
+act_m_ginyanma_pal = .data:0x0086DBE0; // type:object size:0x20 scope:local align:4
+act_m_ginyanma = .data:0x0086DC00; // type:object size:0x180 scope:local align:4
+act_m_mu_ginyanma1_1T_model = .data:0x0086DD80; // type:object size:0xC8 scope:global align:8
+act_m_mu_ginyanma1_2T_model = .data:0x0086DE48; // type:object size:0xC8 scope:global align:8
+act_m_mu_ginyanma2_2T_model = .data:0x0086DF10; // type:object size:0xC8 scope:global align:8
+act_m_gomadara_v = .data:0x0086DFD8; // type:object size:0xC0 scope:local align:8
+act_m_gomadara_pal = .data:0x0086E098; // type:object size:0x20 scope:local align:4
+act_m_gomadara = .data:0x0086E0B8; // type:object size:0x200 scope:local align:4
+act_m_mu_gomadara1T_model = .data:0x0086E2B8; // type:object size:0xC8 scope:global align:8
+act_m_hachi_v = .data:0x0086E380; // type:object size:0x160 scope:local align:8
+act_m_hachi_pal = .data:0x0086E4E0; // type:object size:0x20 scope:local align:4
+act_m_hachi = .data:0x0086E500; // type:object size:0x200 scope:local align:4
+act_m_mu_hachi1_1T_model = .data:0x0086E700; // type:object size:0xC8 scope:global align:8
+act_m_mu_hachi1_2T_model = .data:0x0086E7C8; // type:object size:0xC8 scope:global align:8
+act_m_mu_hachi2_2T_model = .data:0x0086E890; // type:object size:0xC8 scope:global align:8
+act_m_higurashi_v = .data:0x0086E958; // type:object size:0x160 scope:local align:8
+act_m_higurashi_pal = .data:0x0086EAB8; // type:object size:0x20 scope:local align:4
+act_m_higurashi = .data:0x0086EAD8; // type:object size:0x200 scope:local align:4
+act_m_mu_higurashi1_1T_model = .data:0x0086ECD8; // type:object size:0xC8 scope:global align:8
+act_m_mu_higurashi1_2T_model = .data:0x0086EDA0; // type:object size:0xC8 scope:global align:8
+act_m_hirata_v = .data:0x0086EE68; // type:object size:0xC0 scope:local align:8
+act_m_hirata_pal = .data:0x0086EF28; // type:object size:0x20 scope:local align:4
+act_m_hirata = .data:0x0086EF48; // type:object size:0x200 scope:local align:4
+act_m_mu_hirata1T_model = .data:0x0086F148; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_act_m_hirata_b_tbl = .data:0x0086F210; // type:object size:0x5 scope:global align:4
+cKF_kn_act_m_hirata_b_tbl = .data:0x0086F218; // type:object size:0x4 scope:global align:4
+cKF_c_act_m_hirata_b_tbl = .data:0x0086F21C; // type:object size:0x20 scope:global align:4
+cKF_ds_act_m_hirata_b_tbl = .data:0x0086F23C; // type:object size:0x6C scope:global align:4
+cKF_ba_r_act_m_hirata_b = .data:0x0086F2A8; // type:object size:0x14 scope:global align:4
+act_m_hirata_txt = .data:0x0086F2C0; // type:object size:0x800 scope:global align:4
+act_m_hirata_b_v = .data:0x0086FAC0; // type:object size:0x120 scope:global align:8
+act_m_hirata_b_left_model = .data:0x0086FBE0; // type:object size:0xA8 scope:global align:8
+act_m_hirata_b_right_model = .data:0x0086FC88; // type:object size:0xA8 scope:global align:8
+act_m_hirata_b_base_model = .data:0x0086FD30; // type:object size:0x98 scope:global align:8
+cKF_je_r_act_m_hirata_b_tbl = .data:0x0086FDC8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_act_m_hirata_b = .data:0x0086FE04; // type:object size:0x8 scope:global align:4
+act_m_ka_v = .data:0x0086FE10; // type:object size:0x180 scope:local align:8
+act_m_ka_pal = .data:0x0086FF90; // type:object size:0x20 scope:local align:4
+act_m_ka_tex = .data:0x0086FFB0; // type:object size:0x180 scope:local align:4
+act_m_mu_ka1T_model = .data:0x00870130; // type:object size:0xC8 scope:global align:8
+act_m_mu_ka2_1T_model = .data:0x008701F8; // type:object size:0xC8 scope:global align:8
+act_m_mu_ka2_2T_model = .data:0x008702C0; // type:object size:0xC8 scope:global align:8
+act_m_kabuto_v = .data:0x00870388; // type:object size:0xE0 scope:local align:8
+act_m_kabuto_pal = .data:0x00870468; // type:object size:0x20 scope:local align:4
+act_m_kabuto = .data:0x00870488; // type:object size:0x200 scope:local align:4
+act_m_mu_kabuto1T_model = .data:0x00870688; // type:object size:0xD0 scope:global align:8
+act_m_kamakiri_v = .data:0x00870758; // type:object size:0x120 scope:local align:8
+act_m_kamakiri_pal = .data:0x00870878; // type:object size:0x20 scope:local align:4
+act_m_kamakiri = .data:0x00870898; // type:object size:0x200 scope:local align:4
+act_m_mu_kamakiri1T_model = .data:0x00870A98; // type:object size:0x108 scope:global align:8
+act_m_mu_kamakiri2_2T_model = .data:0x00870BA0; // type:object size:0xC8 scope:global align:8
+act_m_kanabun_v = .data:0x00870C68; // type:object size:0xC0 scope:local align:8
+act_m_kanabun_pal = .data:0x00870D28; // type:object size:0x20 scope:local align:4
+act_m_kanabun = .data:0x00870D48; // type:object size:0x200 scope:local align:4
+act_m_mu_kanabun1T_model = .data:0x00870F48; // type:object size:0xC8 scope:global align:8
+act_m_kera_v = .data:0x00871010; // type:object size:0x60 scope:local align:8
+act_m_kera_pal = .data:0x00871070; // type:object size:0x20 scope:local align:4
+act_m_kera_tex = .data:0x00871090; // type:object size:0x100 scope:local align:4
+act_m_mu_keraT_model = .data:0x00871190; // type:object size:0xC8 scope:global align:8
+act_m_kiageha_v = .data:0x00871258; // type:object size:0xC0 scope:local align:8
+act_m_kiageha_pal = .data:0x00871318; // type:object size:0x20 scope:local align:4
+act_m_kiageha = .data:0x00871338; // type:object size:0x200 scope:local align:4
+act_m_mu_kiageha1T_model = .data:0x00871538; // type:object size:0xC8 scope:global align:8
+act_m_mu_kiageha2T_model = .data:0x00871600; // type:object size:0xC8 scope:global align:8
+act_m_kirigirisu_v = .data:0x008716C8; // type:object size:0x130 scope:local align:8
+act_m_kirigirisu_pal = .data:0x008717F8; // type:object size:0x20 scope:local align:4
+act_m_kirigirisu = .data:0x00871818; // type:object size:0x200 scope:local align:4
+act_m_mu_kirigirisu1T_model = .data:0x00871A18; // type:object size:0xE0 scope:global align:8
+act_m_mu_kirigirisu2_2T_model = .data:0x00871AF8; // type:object size:0xC0 scope:global align:8
+act_m_koorogi_v = .data:0x00871BB8; // type:object size:0xA0 scope:local align:8
+act_m_koorogi_pal = .data:0x00871C58; // type:object size:0x20 scope:local align:4
+act_m_koorogi = .data:0x00871C78; // type:object size:0x180 scope:local align:4
+act_m_mu_koorogi1T_model = .data:0x00871DF8; // type:object size:0xC8 scope:global align:8
+act_m_mu_koorogi2_2T_model = .data:0x00871EC0; // type:object size:0xC0 scope:global align:8
+act_m_kumo_v = .data:0x00871F80; // type:object size:0x100 scope:local align:8
+act_m_kumo_pal = .data:0x00872080; // type:object size:0x20 scope:local align:4
+act_m_kumo_tex = .data:0x008720A0; // type:object size:0x180 scope:local align:4
+act_m_mu_kumo1_1T_model = .data:0x00872220; // type:object size:0xC8 scope:global align:8
+act_m_mu_kumo1_2T_model = .data:0x008722E8; // type:object size:0xC8 scope:global align:8
+act_m_mu_kumo2T_model = .data:0x008723B0; // type:object size:0xC0 scope:global align:8
+act_m_maimai_v = .data:0x00872470; // type:object size:0x100 scope:local align:8
+act_m_maimai_pal = .data:0x00872570; // type:object size:0x20 scope:local align:4
+act_m_maimai_tex = .data:0x00872590; // type:object size:0x200 scope:local align:4
+act_m_mu_maimaiT_model = .data:0x00872790; // type:object size:0xF0 scope:global align:8
+act_m_matumushi_v = .data:0x00872880; // type:object size:0xA0 scope:local align:8
+act_m_matumushi_pal = .data:0x00872920; // type:object size:0x20 scope:local align:4
+act_m_matumushi = .data:0x00872940; // type:object size:0x180 scope:local align:4
+act_m_mu_matumushi1T_model = .data:0x00872AC0; // type:object size:0xC8 scope:global align:8
+act_m_mu_matumushi2_2T_model = .data:0x00872B88; // type:object size:0xC0 scope:global align:8
+act_m_minmin_v = .data:0x00872C48; // type:object size:0x160 scope:local align:8
+act_m_minmin_pal = .data:0x00872DA8; // type:object size:0x20 scope:local align:4
+act_m_minmin = .data:0x00872DC8; // type:object size:0x200 scope:local align:4
+act_m_mu_minmin1_1T_model = .data:0x00872FC8; // type:object size:0xC8 scope:global align:8
+act_m_mu_minmin1_2T_model = .data:0x00873090; // type:object size:0xC8 scope:global align:8
+act_m_mino_v = .data:0x00873158; // type:object size:0x130 scope:local align:8
+act_m_mino_pal = .data:0x00873288; // type:object size:0x20 scope:local align:4
+act_m_mino_tex = .data:0x008732A8; // type:object size:0x200 scope:local align:4
+act_m_mu_mino1_1T_model = .data:0x008734A8; // type:object size:0xC8 scope:global align:8
+act_m_mu_mino1_2T_model = .data:0x00873570; // type:object size:0xD0 scope:global align:8
+act_m_mu_mino2T_model = .data:0x00873640; // type:object size:0xC0 scope:global align:8
+act_m_miyama_v = .data:0x00873700; // type:object size:0xC0 scope:local align:8
+act_m_miyama_pal = .data:0x008737C0; // type:object size:0x20 scope:local align:4
+act_m_miyama = .data:0x008737E0; // type:object size:0x200 scope:local align:4
+act_m_mu_miyama1T_model = .data:0x008739E0; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_act_m_miyama_b_tbl = .data:0x00873AA8; // type:object size:0x5 scope:global align:4
+cKF_kn_act_m_miyama_b_tbl = .data:0x00873AB0; // type:object size:0x4 scope:global align:4
+cKF_c_act_m_miyama_b_tbl = .data:0x00873AB4; // type:object size:0x20 scope:global align:4
+cKF_ds_act_m_miyama_b_tbl = .data:0x00873AD4; // type:object size:0x6C scope:global align:4
+cKF_ba_r_act_m_miyama_b = .data:0x00873B40; // type:object size:0x14 scope:global align:4
+act_m_miyama_txt = .data:0x00873B58; // type:object size:0x800 scope:global align:4
+act_m_miyama_b_v = .data:0x00874358; // type:object size:0x120 scope:global align:8
+act_m_miyama_b_left_model = .data:0x00874478; // type:object size:0xA8 scope:global align:8
+act_m_miyama_b_right_model = .data:0x00874520; // type:object size:0xA8 scope:global align:8
+act_m_miyama_b_base_model = .data:0x008745C8; // type:object size:0x98 scope:global align:8
+cKF_je_r_act_m_miyama_b_tbl = .data:0x00874660; // type:object size:0x3C scope:global align:4
+cKF_bs_r_act_m_miyama_b = .data:0x0087469C; // type:object size:0x8 scope:global align:4
+act_m_monki_v = .data:0x008746A8; // type:object size:0xC0 scope:local align:8
+act_m_monki_pal = .data:0x00874768; // type:object size:0x20 scope:local align:4
+act_m_monki = .data:0x00874788; // type:object size:0x80 scope:local align:4
+act_m_mu_monki1T_model = .data:0x00874808; // type:object size:0xC8 scope:global align:8
+act_m_mu_monki2T_model = .data:0x008748D0; // type:object size:0xC8 scope:global align:8
+act_m_monshiro_v = .data:0x00874998; // type:object size:0xC0 scope:local align:8
+act_m_monshiro_pal = .data:0x00874A58; // type:object size:0x20 scope:local align:4
+act_m_monshiro = .data:0x00874A78; // type:object size:0x80 scope:local align:4
+act_m_mu_monshiro1T_model = .data:0x00874AF8; // type:object size:0xC8 scope:global align:8
+act_m_mu_monshiro2T_model = .data:0x00874BC0; // type:object size:0xC8 scope:global align:8
+act_m_nanahoshi_v = .data:0x00874C88; // type:object size:0x1D0 scope:local align:8
+act_m_nanahoshi_pal = .data:0x00874E58; // type:object size:0x20 scope:local align:4
+act_m_nanahoshi = .data:0x00874E78; // type:object size:0x100 scope:local align:4
+act_m_mu_nanahoshi1T_model = .data:0x00874F78; // type:object size:0xF8 scope:global align:8
+act_m_mu_nanahoshi2T_model = .data:0x00875070; // type:object size:0xF8 scope:global align:8
+act_m_nokogiri_v = .data:0x00875168; // type:object size:0xC0 scope:local align:8
+act_m_nokogiri_pal = .data:0x00875228; // type:object size:0x20 scope:local align:4
+act_m_nokogiri = .data:0x00875248; // type:object size:0x200 scope:local align:4
+act_m_mu_nokogiri1T_model = .data:0x00875448; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_act_m_nokogiri_b_tbl = .data:0x00875510; // type:object size:0x5 scope:global align:4
+cKF_kn_act_m_nokogiri_b_tbl = .data:0x00875518; // type:object size:0x4 scope:global align:4
+cKF_c_act_m_nokogiri_b_tbl = .data:0x0087551C; // type:object size:0x20 scope:global align:4
+cKF_ds_act_m_nokogiri_b_tbl = .data:0x0087553C; // type:object size:0x6C scope:global align:4
+cKF_ba_r_act_m_nokogiri_b = .data:0x008755A8; // type:object size:0x14 scope:global align:4
+act_m_nokogiri_txt = .data:0x008755C0; // type:object size:0x800 scope:global align:4
+act_m_nokogiri_b_v = .data:0x00875DC0; // type:object size:0x120 scope:global align:8
+act_m_nokogiri_b_left_model = .data:0x00875EE0; // type:object size:0xA8 scope:global align:8
+act_m_nokogiri_b_right_model = .data:0x00875F88; // type:object size:0xA8 scope:global align:8
+act_m_nokogiri_b_base_model = .data:0x00876030; // type:object size:0x98 scope:global align:8
+cKF_je_r_act_m_nokogiri_b_tbl = .data:0x008760C8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_act_m_nokogiri_b = .data:0x00876104; // type:object size:0x8 scope:global align:4
+act_m_ohmurasaki_v = .data:0x00876110; // type:object size:0xC0 scope:local align:8
+act_m_ohmurasaki_pal = .data:0x008761D0; // type:object size:0x20 scope:local align:4
+act_m_ohmurasaki = .data:0x008761F0; // type:object size:0x200 scope:local align:4
+act_m_mu_ohmurasaki1T_model = .data:0x008763F0; // type:object size:0xC8 scope:global align:8
+act_m_mu_ohmurasaki2T_model = .data:0x008764B8; // type:object size:0xC8 scope:global align:8
+act_m_okuwa_v = .data:0x00876580; // type:object size:0xC0 scope:local align:8
+act_m_okuwa_pal = .data:0x00876640; // type:object size:0x20 scope:local align:4
+act_m_okuwa = .data:0x00876660; // type:object size:0x200 scope:local align:4
+act_m_mu_okuwa1T_model = .data:0x00876860; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_act_m_okuwa_b_tbl = .data:0x00876928; // type:object size:0x5 scope:global align:4
+cKF_kn_act_m_okuwa_b_tbl = .data:0x00876930; // type:object size:0x4 scope:global align:4
+cKF_c_act_m_okuwa_b_tbl = .data:0x00876934; // type:object size:0x20 scope:global align:4
+cKF_ds_act_m_okuwa_b_tbl = .data:0x00876954; // type:object size:0x78 scope:global align:4
+cKF_ba_r_act_m_okuwa_b = .data:0x008769CC; // type:object size:0x14 scope:global align:4
+act_m_okuwa_txt = .data:0x008769E0; // type:object size:0x800 scope:global align:4
+act_m_okuwa_b_v = .data:0x008771E0; // type:object size:0x120 scope:global align:8
+act_m_okuwa_b_left_model = .data:0x00877300; // type:object size:0xA8 scope:global align:8
+act_m_okuwa_b_right_model = .data:0x008773A8; // type:object size:0xA8 scope:global align:8
+act_m_okuwa_b_base_model = .data:0x00877450; // type:object size:0x98 scope:global align:8
+cKF_je_r_act_m_okuwa_b_tbl = .data:0x008774E8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_act_m_okuwa_b = .data:0x00877524; // type:object size:0x8 scope:global align:4
+act_m_oniyanma_v = .data:0x00877530; // type:object size:0x120 scope:local align:8
+act_m_oniyanma_pal = .data:0x00877650; // type:object size:0x20 scope:local align:4
+act_m_oniyanma = .data:0x00877670; // type:object size:0x180 scope:local align:4
+act_m_mu_oniyanma1_1T_model = .data:0x008777F0; // type:object size:0xC8 scope:global align:8
+act_m_mu_oniyanma1_2T_model = .data:0x008778B8; // type:object size:0xC8 scope:global align:8
+act_m_mu_oniyanma2_2T_model = .data:0x00877980; // type:object size:0xC8 scope:global align:8
+ef_shadow_in_v = .data:0x00877A48; // type:object size:0x40 scope:local align:8
+ef_shadow_insect_modelT = .data:0x00877A88; // type:object size:0x88 scope:global align:8
+act_m_shiokara_v = .data:0x00877B10; // type:object size:0x120 scope:local align:8
+act_m_shiokara_pal = .data:0x00877C30; // type:object size:0x20 scope:local align:4
+act_m_shiokara = .data:0x00877C50; // type:object size:0x180 scope:local align:4
+act_m_mu_shiokara1_1T_model = .data:0x00877DD0; // type:object size:0xC8 scope:global align:8
+act_m_mu_shiokara1_2T_model = .data:0x00877E98; // type:object size:0xC8 scope:global align:8
+act_m_mu_shiokara2_2T_model = .data:0x00877F60; // type:object size:0xC8 scope:global align:8
+act_m_suzumushi_v = .data:0x00878028; // type:object size:0xA0 scope:local align:8
+act_m_suzumushi_pal = .data:0x008780C8; // type:object size:0x20 scope:local align:4
+act_m_suzumushi = .data:0x008780E8; // type:object size:0x200 scope:local align:4
+act_m_mu_suzumushi1T_model = .data:0x008782E8; // type:object size:0xC8 scope:global align:8
+act_m_mu_suzumushi2_2T_model = .data:0x008783B0; // type:object size:0xC0 scope:global align:8
+act_m_syouryou_v = .data:0x00878470; // type:object size:0x110 scope:local align:8
+act_m_syouryou_pal = .data:0x00878580; // type:object size:0x20 scope:local align:4
+act_m_syouryou = .data:0x008785A0; // type:object size:0x200 scope:local align:4
+act_m_mu_syouryou1T_model = .data:0x008787A0; // type:object size:0xD8 scope:global align:8
+act_m_mu_syouryou2_2T_model = .data:0x00878878; // type:object size:0xC0 scope:global align:8
+act_m_tamamushi_v = .data:0x00878938; // type:object size:0xC0 scope:local align:8
+act_m_tamamushi_pal = .data:0x008789F8; // type:object size:0x20 scope:local align:4
+act_m_tamamushi = .data:0x00878A18; // type:object size:0x200 scope:local align:4
+act_m_mu_tamamushi1T_model = .data:0x00878C18; // type:object size:0xC8 scope:global align:8
+act_m_tentou_v = .data:0x00878CE0; // type:object size:0x1D0 scope:local align:8
+act_m_tentou_pal = .data:0x00878EB0; // type:object size:0x20 scope:local align:4
+act_m_tentou = .data:0x00878ED0; // type:object size:0x100 scope:local align:4
+act_m_mu_tentou1T_model = .data:0x00878FD0; // type:object size:0xF8 scope:global align:8
+act_m_mu_tentou2T_model = .data:0x008790C8; // type:object size:0xF8 scope:global align:8
+act_m_tonosama_v = .data:0x008791C0; // type:object size:0x120 scope:local align:8
+act_m_tonosama_pal = .data:0x008792E0; // type:object size:0x20 scope:local align:4
+act_m_tonosama = .data:0x00879300; // type:object size:0x200 scope:local align:4
+act_m_mu_tonosama1T_model = .data:0x00879500; // type:object size:0xD8 scope:global align:8
+act_m_mu_tonosama2_2T_model = .data:0x008795D8; // type:object size:0xC0 scope:global align:8
+act_m_tukutuku_v = .data:0x00879698; // type:object size:0x160 scope:local align:8
+act_m_tukutuku_pal = .data:0x008797F8; // type:object size:0x20 scope:local align:4
+act_m_tukutuku = .data:0x00879818; // type:object size:0x200 scope:local align:4
+act_m_mu_tukutuku1_1T_model = .data:0x00879A18; // type:object size:0xC8 scope:global align:8
+act_m_mu_tukutuku1_2T_model = .data:0x00879AE0; // type:object size:0xC8 scope:global align:8
+obj_museum4_water1_tex_rgb_i4 = .data:0x00879BA8; // type:object size:0x200 scope:global align:4
+obj_museum4_water2_tex_rgb_i4 = .data:0x00879DA8; // type:object size:0x200 scope:global align:4
+obj_museum4_water_v = .data:0x00879FA8; // type:object size:0x40 scope:global align:8
+obj_museum4_water_modelT = .data:0x00879FE8; // type:object size:0xD0 scope:global align:8
+obj_museum4_water_evw_anime_1 = .data:0x0087A0B8; // type:object size:0x8 scope:global align:4
+obj_museum4_water_evw_anime = .data:0x0087A0C0; // type:object size:0x8 scope:global align:4
+insect_price_table = .data:0x0087A0C8; // type:object size:0x5C scope:global align:4
+rom_kamakura_carp_pal = .data:0x0087A140; // type:object size:0x20 scope:global align:32
+rom_kamakura_goza_pal = .data:0x0087A160; // type:object size:0x20 scope:global align:32
+rom_kamakura_yuki_pal = .data:0x0087A180; // type:object size:0x20 scope:global align:32
+rom_kamakura_rou_pal = .data:0x0087A1A0; // type:object size:0x20 scope:global align:32
+rom_kamakura_a1_pal = .data:0x0087A1C0; // type:object size:0x20 scope:global align:32
+rom_kamakura_nabe_pal = .data:0x0087A1E0; // type:object size:0x20 scope:global align:32
+rom_kamakura_carp = .data:0x0087A200; // type:object size:0x800 scope:global align:32
+rom_kamakura_goza = .data:0x0087AA00; // type:object size:0x200 scope:global align:32
+rom_kamakura_yuki1 = .data:0x0087AC00; // type:object size:0x400 scope:global align:32
+rom_kamakura_yuki2 = .data:0x0087B000; // type:object size:0x800 scope:global align:32
+rom_kamakura_yuki3 = .data:0x0087B800; // type:object size:0x400 scope:global align:32
+rom_kamakura_yuki4 = .data:0x0087BC00; // type:object size:0x200 scope:global align:32
+rom_kamakura_rou = .data:0x0087BE00; // type:object size:0x100 scope:global align:32
+rom_kamakura_a1 = .data:0x0087BF00; // type:object size:0x200 scope:global align:32
+rom_kamakura_wa = .data:0x0087C100; // type:object size:0x80 scope:global align:32
+rom_kamakura_nabe1 = .data:0x0087C180; // type:object size:0x80 scope:global align:32
+rom_kamakura_etc = .data:0x0087C200; // type:object size:0x800 scope:global align:32
+rom_kamakura_kage_us = .data:0x0087CA00; // type:object size:0x80 scope:global align:32
+rom_kamakura_a2_rgb_ci4 = .data:0x0087CA80; // type:object size:0x200 scope:global align:32
+rom_kamakura__takibi1_int_i4 = .data:0x0087CC80; // type:object size:0x100 scope:global align:32
+rom_kamakura__takibi2_int_i4 = .data:0x0087CD80; // type:object size:0x100 scope:global align:32
+rom_kamakura_fire1_rgb_i4 = .data:0x0087CE80; // type:object size:0x80 scope:global align:32
+rom_kamakura_fire2_rgb_i4 = .data:0x0087CF00; // type:object size:0x80 scope:global align:32
+rom_kamakura_fire3_rgb_i4 = .data:0x0087CF80; // type:object size:0x80 scope:global align:32
+rom_kamakura_v = .data:0x0087D000; // type:object size:0x1390 scope:global align:8
+rom_kamakura_modelT = .data:0x0087E390; // type:object size:0x138 scope:global align:8
+rom_kamakura_model = .data:0x0087E4C8; // type:object size:0x3A8 scope:global align:8
+rom_kamakura_ring1 = .data:0x0087E870; // type:object size:0x100 scope:global align:4
+rom_kamakura_ring_v = .data:0x0087E970; // type:object size:0x40 scope:global align:8
+rom_kamakura_ring_modelT = .data:0x0087E9B0; // type:object size:0x88 scope:global align:8
+ct_tex = .data:0x0087EA40; // type:object size:0x400 scope:local align:32
+cam_win_camera_tex = .data:0x0087EE40; // type:object size:0x400 scope:global align:32
+ban_win_waku3_tex = .data:0x0087F240; // type:object size:0x200 scope:global align:32
+ban_win_waku4_tex = .data:0x0087F440; // type:object size:0x200 scope:global align:32
+yaji = .data:0x0087F640; // type:object size:0x80 scope:local align:32
+elc_win_moji_tex = .data:0x0087F6C0; // type:object size:0x80 scope:global align:32
+elc_win_z_tex = .data:0x0087F740; // type:object size:0x400 scope:global align:32
+elc_win_light_tex = .data:0x0087FB40; // type:object size:0x400 scope:global align:32
+cam_win_v = .data:0x0087FF40; // type:object size:0x400 scope:global align:8
+cam_win_yajirushi_model = .data:0x00880340; // type:object size:0x58 scope:global align:8
+elc_win_moji_model = .data:0x00880398; // type:object size:0x48 scope:global align:8
+cam_win_winT_model = .data:0x008803E0; // type:object size:0x70 scope:global align:8
+cam_win_cT_model = .data:0x00880450; // type:object size:0x40 scope:global align:8
+cam_win_mojiT_model = .data:0x00880490; // type:object size:0x48 scope:global align:8
+elc_win_winT_model = .data:0x008804D8; // type:object size:0x68 scope:global align:8
+elc_win_zT_model = .data:0x00880540; // type:object size:0x50 scope:global align:8
+elc_win_moji2T_model = .data:0x00880590; // type:object size:0x48 scope:global align:8
+cKF_ckcb_r_clk_hiniti_tbl = .data:0x008805D8; // type:object size:0x4 scope:global align:4
+cKF_kn_clk_hiniti_tbl = .data:0x008805DC; // type:object size:0x2 scope:global align:4
+cKF_c_clk_hiniti_tbl = .data:0x008805E0; // type:object size:0x1C scope:global align:4
+cKF_ds_clk_hiniti_tbl = .data:0x008805FC; // type:object size:0x30 scope:global align:4
+cKF_ba_r_clk_hiniti = .data:0x0088062C; // type:object size:0x14 scope:global align:4
+clk_win_suuji1_TA_tex_txt = .data:0x00880640; // type:object size:0x400 scope:global align:32
+clk_win_suuji2_TA_tex_txt = .data:0x00880A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji3_TA_tex_txt = .data:0x00880E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji4_TA_tex_txt = .data:0x00881240; // type:object size:0x400 scope:global align:32
+clk_win_suuji5_TA_tex_txt = .data:0x00881640; // type:object size:0x400 scope:global align:32
+clk_win_suuji6_TA_tex_txt = .data:0x00881A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji7_TA_tex_txt = .data:0x00881E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji8_TA_tex_txt = .data:0x00882240; // type:object size:0x400 scope:global align:32
+clk_win_suuji9_TA_tex_txt = .data:0x00882640; // type:object size:0x400 scope:global align:32
+clk_win_suuji10_TA_tex_txt = .data:0x00882A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji11_TA_tex_txt = .data:0x00882E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji12_TA_tex_txt = .data:0x00883240; // type:object size:0x400 scope:global align:32
+clk_win_suuji13_TA_tex_txt = .data:0x00883640; // type:object size:0x400 scope:global align:32
+clk_win_suuji14_TA_tex_txt = .data:0x00883A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji15_TA_tex_txt = .data:0x00883E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji16_TA_tex_txt = .data:0x00884240; // type:object size:0x400 scope:global align:32
+clk_win_suuji17_TA_tex_txt = .data:0x00884640; // type:object size:0x400 scope:global align:32
+clk_win_suuji18_TA_tex_txt = .data:0x00884A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji19_TA_tex_txt = .data:0x00884E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji20_TA_tex_txt = .data:0x00885240; // type:object size:0x400 scope:global align:32
+clk_win_suuji21_TA_tex_txt = .data:0x00885640; // type:object size:0x400 scope:global align:32
+clk_win_suuji22_TA_tex_txt = .data:0x00885A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji23_TA_tex_txt = .data:0x00885E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji24_TA_tex_txt = .data:0x00886240; // type:object size:0x400 scope:global align:32
+clk_win_suuji25_TA_tex_txt = .data:0x00886640; // type:object size:0x400 scope:global align:32
+clk_win_suuji26_TA_tex_txt = .data:0x00886A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji27_TA_tex_txt = .data:0x00886E40; // type:object size:0x400 scope:global align:32
+clk_win_suuji28_TA_tex_txt = .data:0x00887240; // type:object size:0x400 scope:global align:32
+clk_win_suuji29_TA_tex_txt = .data:0x00887640; // type:object size:0x400 scope:global align:32
+clk_win_suuji30_TA_tex_txt = .data:0x00887A40; // type:object size:0x400 scope:global align:32
+clk_win_suuji31_TA_tex_txt = .data:0x00887E40; // type:object size:0x400 scope:global align:32
+clk_hiniti_v = .data:0x00888240; // type:object size:0x100 scope:global align:8
+clk_win_hiniti3_bottom_model = .data:0x00888340; // type:object size:0x30 scope:global align:8
+clk_win_hiniti1_top_model = .data:0x00888370; // type:object size:0x30 scope:global align:8
+clk_win_hiniti2_middle_model = .data:0x008883A0; // type:object size:0x48 scope:global align:8
+cKF_je_r_clk_hiniti_tbl = .data:0x008883E8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_clk_hiniti = .data:0x00888418; // type:object size:0x8 scope:global align:4
+cKF_ckcb_r_clk_jikan_tbl = .data:0x00888420; // type:object size:0x4 scope:global align:4
+cKF_kn_clk_jikan_tbl = .data:0x00888424; // type:object size:0x2 scope:global align:4
+cKF_c_clk_jikan_tbl = .data:0x00888428; // type:object size:0x1C scope:global align:4
+cKF_ds_clk_jikan_tbl = .data:0x00888444; // type:object size:0x1E scope:global align:4
+cKF_ba_r_clk_jikan = .data:0x00888464; // type:object size:0x14 scope:global align:4
+clk_win_jikan0_TA_tex_txt = .data:0x00888480; // type:object size:0x100 scope:global align:32
+clk_win_jikan1_TA_tex_txt = .data:0x00888580; // type:object size:0x100 scope:global align:32
+clk_win_jikan2_TA_tex_txt = .data:0x00888680; // type:object size:0x100 scope:global align:32
+clk_win_jikan3_TA_tex_txt = .data:0x00888780; // type:object size:0x100 scope:global align:32
+clk_win_jikan4_TA_tex_txt = .data:0x00888880; // type:object size:0x100 scope:global align:32
+clk_win_jikan5_TA_tex_txt = .data:0x00888980; // type:object size:0x100 scope:global align:32
+clk_win_jikan6_TA_tex_txt = .data:0x00888A80; // type:object size:0x100 scope:global align:32
+clk_win_jikan7_TA_tex_txt = .data:0x00888B80; // type:object size:0x100 scope:global align:32
+clk_win_jikan8_TA_tex_txt = .data:0x00888C80; // type:object size:0x100 scope:global align:32
+clk_win_jikan9_TA_tex_txt = .data:0x00888D80; // type:object size:0x100 scope:global align:32
+clk_win_jikan_TA_tex_txt = .data:0x00888E80; // type:object size:0x100 scope:global align:32
+clk_jikan_v = .data:0x00888F80; // type:object size:0x100 scope:global align:8
+clk_win_jikan3_bottom_model = .data:0x00889080; // type:object size:0x30 scope:global align:8
+clk_win_jikan1_top_model = .data:0x008890B0; // type:object size:0x30 scope:global align:8
+clk_win_jikan2_middle_model = .data:0x008890E0; // type:object size:0x48 scope:global align:8
+cKF_je_r_clk_jikan_tbl = .data:0x00889128; // type:object size:0x30 scope:global align:4
+cKF_bs_r_clk_jikan = .data:0x00889158; // type:object size:0x8 scope:global align:4
+maru = .data:0x00889160; // type:object size:0x100 scope:global align:32
+clk_win_am_tex_rgb_ia8 = .data:0x00889260; // type:object size:0x400 scope:global align:32
+clk_win_pm_tex_rgb_ia8 = .data:0x00889660; // type:object size:0x400 scope:global align:32
+clk_win_fri_tex_rgb_ia8 = .data:0x00889A60; // type:object size:0x400 scope:global align:32
+clk_win_mon_tex_rgb_ia8 = .data:0x00889E60; // type:object size:0x400 scope:global align:32
+clk_win_sat_tex_rgb_ia8 = .data:0x0088A260; // type:object size:0x400 scope:global align:32
+clk_win_sun_tex_rgb_ia8 = .data:0x0088A660; // type:object size:0x400 scope:global align:32
+clk_win_thu_tex_rgb_ia8 = .data:0x0088AA60; // type:object size:0x400 scope:global align:32
+clk_win_tue_tex_rgb_ia8 = .data:0x0088AE60; // type:object size:0x400 scope:global align:32
+clk_win_wed_tex_rgb_ia8 = .data:0x0088B260; // type:object size:0x400 scope:global align:32
+clk_win_v = .data:0x0088B660; // type:object size:0x140 scope:global align:8
+clk_win_youbiT_model = .data:0x0088B7A0; // type:object size:0x28 scope:global align:8
+clk_win_maru2T_model = .data:0x0088B7C8; // type:object size:0x30 scope:global align:8
+clk_win_ampmT_model = .data:0x0088B7F8; // type:object size:0x28 scope:global align:8
+clk_win_maruT_model = .data:0x0088B820; // type:object size:0x28 scope:global align:8
+clk_win_mode = .data:0x0088B848; // type:object size:0x28 scope:global align:8
+no_txt = .data:0x0088B870; // type:object size:0x100 scope:global align:4
+np_txt = .data:0x0088B970; // type:object size:0x100 scope:global align:4
+nt_txt = .data:0x0088BA70; // type:object size:0x100 scope:global align:4
+nx_txt = .data:0x0088BB70; // type:object size:0x100 scope:global align:4
+darrow_model = .data:0x0088BC70; // type:object size:0x60 scope:global align:8
+darrow_v = .data:0x0088BCD0; // type:object size:0x240 scope:global align:8
+camera_model = .data:0x0088BF10; // type:object size:0x78 scope:global align:8
+camera_v = .data:0x0088BF88; // type:object size:0x280 scope:global align:8
+v_debug_texture = .data:0x0088C208; // type:object size:0x40 scope:global align:8
+RCP_debug_texture_16x16_8 = .data:0x0088C248; // type:object size:0x18 scope:global align:8
+ef_wape_tex = .data:0x0088C260; // type:object size:0x40 scope:global align:32
+ef_wipe1_v = .data:0x0088C2A0; // type:object size:0x440 scope:global align:8
+ef_wipe1_modelT = .data:0x0088C6E0; // type:object size:0xF0 scope:global align:8
+ef_wipe2_v = .data:0x0088C7D0; // type:object size:0x460 scope:global align:8
+ef_wipe2_modelT = .data:0x0088CC30; // type:object size:0xF8 scope:global align:8
+ef_wipe3_v = .data:0x0088CD28; // type:object size:0x460 scope:global align:8
+ef_wipe3_modelT = .data:0x0088D188; // type:object size:0xF0 scope:global align:8
+ef_shadow_in_0 = .data:0x0088D278; // type:object size:0x100 scope:global align:4
+ef_shadow_in_v = .data:0x0088D378; // type:object size:0x40 scope:local align:8
+ef_shadow_in_modelT = .data:0x0088D3B8; // type:object size:0x88 scope:global align:8
+ef_shadow_out_0_int_i4 = .data:0x0088D440; // type:object size:0x100 scope:global align:4
+ef_shadow_out_1_int_i4 = .data:0x0088D540; // type:object size:0x100 scope:global align:4
+ef_shadow_out_v = .data:0x0088D640; // type:object size:0x40 scope:global align:8
+ef_shadow_out_modelT = .data:0x0088D680; // type:object size:0xB8 scope:global align:8
+obj_item_axe_pal = .data:0x0088D740; // type:object size:0x20 scope:global align:32
+obj_item_axe_tex = .data:0x0088D760; // type:object size:0x200 scope:global align:32
+obj_item_axe_v = .data:0x0088D960; // type:object size:0x40 scope:global align:8
+obj_item_axeT_mat_model = .data:0x0088D9A0; // type:object size:0x48 scope:global align:8
+obj_item_axeT_gfx_model = .data:0x0088D9E8; // type:object size:0x18 scope:global align:8
+obj_item_axe2_pal = .data:0x0088DA00; // type:object size:0x20 scope:global align:32
+obj_item_axe2_tex = .data:0x0088DA20; // type:object size:0x200 scope:global align:32
+obj_item_axe2_v = .data:0x0088DC20; // type:object size:0x40 scope:global align:8
+obj_item_axe2T_mat_model = .data:0x0088DC60; // type:object size:0x48 scope:global align:8
+obj_item_axe2T_gfx_model = .data:0x0088DCA8; // type:object size:0x18 scope:global align:8
+obj_item_carpet_pal = .data:0x0088DCC0; // type:object size:0x20 scope:global align:32
+obj_item_carpet_tex = .data:0x0088DCE0; // type:object size:0x200 scope:global align:32
+obj_item_carpet_v = .data:0x0088DEE0; // type:object size:0x40 scope:global align:8
+obj_item_carpetT_mat_model = .data:0x0088DF20; // type:object size:0x48 scope:global align:8
+obj_item_carpetT_gfx_model = .data:0x0088DF68; // type:object size:0x18 scope:global align:8
+obj_item_fuku_pal = .data:0x0088DF80; // type:object size:0x20 scope:global align:32
+obj_item_fuku_tex = .data:0x0088DFA0; // type:object size:0x200 scope:global align:32
+obj_item_fuku_v = .data:0x0088E1A0; // type:object size:0x40 scope:global align:8
+obj_item_fukuT_mat_model = .data:0x0088E1E0; // type:object size:0x48 scope:global align:8
+obj_item_fukuT_gfx_model = .data:0x0088E228; // type:object size:0x18 scope:global align:8
+obj_item_kaza_pal = .data:0x0088E240; // type:object size:0x20 scope:global align:32
+obj_item_kaza_tex = .data:0x0088E260; // type:object size:0x200 scope:global align:32
+obj_item_kaza_v = .data:0x0088E460; // type:object size:0x40 scope:global align:8
+obj_item_kazaT_mat_model = .data:0x0088E4A0; // type:object size:0x48 scope:global align:8
+obj_item_kazaT_gfx_model = .data:0x0088E4E8; // type:object size:0x18 scope:global align:8
+obj_item_net_pal = .data:0x0088E500; // type:object size:0x20 scope:global align:32
+obj_item_net_tex = .data:0x0088E520; // type:object size:0x200 scope:global align:32
+obj_item_net_v = .data:0x0088E720; // type:object size:0x40 scope:global align:8
+obj_item_netT_mat_model = .data:0x0088E760; // type:object size:0x48 scope:global align:8
+obj_item_netT_gfx_model = .data:0x0088E7A8; // type:object size:0x18 scope:global align:8
+obj_item_net2_pal = .data:0x0088E7C0; // type:object size:0x20 scope:global align:32
+obj_item_net2_tex = .data:0x0088E7E0; // type:object size:0x200 scope:global align:32
+obj_item_net2_v = .data:0x0088E9E0; // type:object size:0x40 scope:global align:8
+obj_item_net2T_mat_model = .data:0x0088EA20; // type:object size:0x48 scope:global align:8
+obj_item_net2T_gfx_model = .data:0x0088EA68; // type:object size:0x18 scope:global align:8
+obj_item_paper_pal = .data:0x0088EA80; // type:object size:0x20 scope:global align:32
+obj_item_paper_tex = .data:0x0088EAA0; // type:object size:0x200 scope:global align:32
+obj_item_paper_v = .data:0x0088ECA0; // type:object size:0x40 scope:global align:8
+obj_item_paperT_mat_model = .data:0x0088ECE0; // type:object size:0x48 scope:global align:8
+obj_item_paperT_gfx_model = .data:0x0088ED28; // type:object size:0x18 scope:global align:8
+obj_item_rod_pal = .data:0x0088ED40; // type:object size:0x20 scope:global align:32
+obj_item_rod_tex = .data:0x0088ED60; // type:object size:0x200 scope:global align:32
+obj_item_rod_v = .data:0x0088EF60; // type:object size:0x40 scope:global align:8
+obj_item_rodT_mat_model = .data:0x0088EFA0; // type:object size:0x48 scope:global align:8
+obj_item_rodT_gfx_model = .data:0x0088EFE8; // type:object size:0x18 scope:global align:8
+obj_shop_rod2_pal = .data:0x0088F000; // type:object size:0x20 scope:local align:32
+obj_item_rod2_tex = .data:0x0088F020; // type:object size:0x200 scope:global align:32
+obj_item_rod2_v = .data:0x0088F220; // type:object size:0x40 scope:global align:8
+obj_item_rod2T_mat_model = .data:0x0088F260; // type:object size:0x48 scope:global align:8
+obj_item_rod2T_gfx_model = .data:0x0088F2A8; // type:object size:0x18 scope:global align:8
+obj_item_seed_pal = .data:0x0088F2C0; // type:object size:0x20 scope:global align:32
+obj_item_seed_tex = .data:0x0088F2E0; // type:object size:0x200 scope:global align:32
+obj_item_seed_v = .data:0x0088F4E0; // type:object size:0x40 scope:global align:8
+obj_item_seedT_mat_model = .data:0x0088F520; // type:object size:0x48 scope:global align:8
+obj_item_seedT_gfx_model = .data:0x0088F568; // type:object size:0x18 scope:global align:8
+obj_item_shovel_pal = .data:0x0088F580; // type:object size:0x20 scope:global align:32
+obj_item_shovel_tex = .data:0x0088F5A0; // type:object size:0x200 scope:global align:32
+obj_item_shovel_v = .data:0x0088F7A0; // type:object size:0x40 scope:global align:8
+obj_item_shovelT_mat_model = .data:0x0088F7E0; // type:object size:0x48 scope:global align:8
+obj_item_shovelT_gfx_model = .data:0x0088F828; // type:object size:0x18 scope:global align:8
+obj_shop_shovel2_pal = .data:0x0088F840; // type:object size:0x20 scope:local align:32
+obj_item_shovel2_tex = .data:0x0088F860; // type:object size:0x200 scope:global align:32
+obj_item_shovel2_v = .data:0x0088FA60; // type:object size:0x40 scope:global align:8
+obj_item_shovel2T_mat_model = .data:0x0088FAA0; // type:object size:0x48 scope:global align:8
+obj_item_shovel2T_gfx_model = .data:0x0088FAE8; // type:object size:0x18 scope:global align:8
+obj_item_taisou_pal = .data:0x0088FB00; // type:object size:0x20 scope:global align:32
+obj_item_taisou_tex = .data:0x0088FB20; // type:object size:0x200 scope:global align:32
+obj_item_taisou_v = .data:0x0088FD20; // type:object size:0x40 scope:global align:8
+obj_item_taisouT_mat_model = .data:0x0088FD60; // type:object size:0x48 scope:global align:8
+obj_item_taisouT_gfx_model = .data:0x0088FDA8; // type:object size:0x18 scope:global align:8
+obj_item_ticket_pal = .data:0x0088FDC0; // type:object size:0x20 scope:global align:32
+obj_item_ticket_tex = .data:0x0088FDE0; // type:object size:0x200 scope:global align:32
+obj_item_ticket_v = .data:0x0088FFE0; // type:object size:0x40 scope:global align:8
+obj_item_ticketT_mat_model = .data:0x00890020; // type:object size:0x48 scope:global align:8
+obj_item_ticketT_gfx_model = .data:0x00890068; // type:object size:0x18 scope:global align:8
+obj_item_utiwa_pal = .data:0x00890080; // type:object size:0x20 scope:global align:32
+obj_item_utiwa_tex = .data:0x008900A0; // type:object size:0x200 scope:global align:32
+obj_item_utiwa_v = .data:0x008902A0; // type:object size:0x40 scope:global align:8
+obj_item_utiwaT_mat_model = .data:0x008902E0; // type:object size:0x48 scope:global align:8
+obj_item_utiwaT_gfx_model = .data:0x00890328; // type:object size:0x18 scope:global align:8
+obj_item_wall_pal = .data:0x00890340; // type:object size:0x20 scope:global align:32
+obj_item_wall_tex = .data:0x00890360; // type:object size:0x200 scope:global align:32
+obj_item_wall_v = .data:0x00890560; // type:object size:0x40 scope:global align:8
+obj_item_wallT_mat_model = .data:0x008905A0; // type:object size:0x48 scope:global align:8
+obj_item_wallT_gfx_model = .data:0x008905E8; // type:object size:0x18 scope:global align:8
+obj_item_apple_pal = .data:0x00890600; // type:object size:0x20 scope:local align:32
+obj_item_apple_tex = .data:0x00890620; // type:object size:0x200 scope:local align:32
+obj_item_apple_v = .data:0x00890820; // type:object size:0x40 scope:local align:8
+apple_DL_mode = .data:0x00890860; // type:object size:0x48 scope:global align:8
+apple_DL_vtx = .data:0x008908A8; // type:object size:0x18 scope:global align:8
+obj_item_bag_pal = .data:0x008908C0; // type:object size:0x20 scope:global align:32
+obj_item_bag_tex = .data:0x008908E0; // type:object size:0x200 scope:global align:32
+obj_item_bag_v = .data:0x00890AE0; // type:object size:0x40 scope:global align:8
+bag_DL_mode = .data:0x00890B20; // type:object size:0x48 scope:global align:8
+bag_DL_vtx = .data:0x00890B68; // type:object size:0x18 scope:global align:8
+obj_item_bone_pal = .data:0x00890B80; // type:object size:0x20 scope:global align:32
+obj_item_bone_tex = .data:0x00890BA0; // type:object size:0x200 scope:global align:32
+obj_item_bone_v = .data:0x00890DA0; // type:object size:0x40 scope:global align:8
+obj_item_boneT_mat_model = .data:0x00890DE0; // type:object size:0x48 scope:global align:8
+obj_item_boneT_gfx_model = .data:0x00890E28; // type:object size:0x18 scope:global align:8
+obj_item_box_pal = .data:0x00890E40; // type:object size:0x20 scope:global align:32
+obj_item_box_tex = .data:0x00890E60; // type:object size:0x200 scope:global align:32
+obj_item_box_v = .data:0x00891060; // type:object size:0x40 scope:global align:8
+box_DL_mode = .data:0x008910A0; // type:object size:0x48 scope:global align:8
+box_DL_vtx = .data:0x008910E8; // type:object size:0x18 scope:global align:8
+obj_item_cage_pal = .data:0x00891100; // type:object size:0x20 scope:global align:32
+obj_item_cage_tex = .data:0x00891120; // type:object size:0x200 scope:global align:32
+obj_item_cage_v = .data:0x00891320; // type:object size:0x40 scope:global align:8
+obj_cageT_mat_model = .data:0x00891360; // type:object size:0x48 scope:global align:8
+obj_cageT_gfx_model = .data:0x008913A8; // type:object size:0x18 scope:global align:8
+obj_shop_candy_pal = .data:0x008913C0; // type:object size:0x20 scope:global align:32
+obj_shop_candy_tex = .data:0x008913E0; // type:object size:0x200 scope:global align:32
+obj_shop_candy_v = .data:0x008915E0; // type:object size:0x40 scope:global align:8
+obj_shop_candy_mat_modelT = .data:0x00891620; // type:object size:0x48 scope:global align:8
+obj_shop_candy_gfx_modelT = .data:0x00891668; // type:object size:0x18 scope:global align:8
+obj_shop_candy_modelT = .data:0x00891680; // type:object size:0x18 scope:global align:8
+obj_item_cloth_pal = .data:0x008916A0; // type:object size:0x20 scope:global align:32
+obj_item_cloth_tex = .data:0x008916C0; // type:object size:0x200 scope:global align:32
+obj_item_cloth_v = .data:0x008918C0; // type:object size:0x40 scope:global align:8
+obj_item_clothT_mat_model = .data:0x00891900; // type:object size:0x48 scope:global align:8
+obj_item_clothT_gfx_model = .data:0x00891948; // type:object size:0x18 scope:global align:8
+obj_item_coco_pal = .data:0x00891960; // type:object size:0x20 scope:global align:32
+obj_item_coco_tex = .data:0x00891980; // type:object size:0x200 scope:global align:32
+obj_item_coco_v = .data:0x00891B80; // type:object size:0x40 scope:global align:8
+obj_item_cocoT_mat_model = .data:0x00891BC0; // type:object size:0x48 scope:global align:8
+obj_item_cocoT_gfx_model = .data:0x00891C08; // type:object size:0x18 scope:global align:8
+obj_item_diary_pal = .data:0x00891C20; // type:object size:0x20 scope:global align:32
+obj_item_diary_tex = .data:0x00891C40; // type:object size:0x200 scope:global align:32
+obj_item_diary_v = .data:0x00891E40; // type:object size:0x40 scope:global align:8
+obj_item_diaryT_mat_model = .data:0x00891E80; // type:object size:0x48 scope:global align:8
+obj_item_diaryT_gfx_model = .data:0x00891EC8; // type:object size:0x18 scope:global align:8
+obj_item_fish_v = .data:0x00891EE0; // type:object size:0x40 scope:global align:8
+obj_item_fish_pal = .data:0x00891F20; // type:object size:0x20 scope:local align:4
+obj_item_fish_tex = .data:0x00891F40; // type:object size:0x200 scope:local align:4
+fish_DL_mode = .data:0x00892140; // type:object size:0xA0 scope:global align:8
+fish_DL_vtx = .data:0x008921E0; // type:object size:0x20 scope:global align:8
+obj_item_fork_pal = .data:0x00892200; // type:object size:0x20 scope:global align:32
+obj_item_fork = .data:0x00892220; // type:object size:0x200 scope:global align:32
+obj_item_fork_v = .data:0x00892420; // type:object size:0x40 scope:global align:8
+obj_item_fork_onT_mat_model = .data:0x00892460; // type:object size:0x48 scope:global align:8
+obj_item_fork_onT_gfx_model = .data:0x008924A8; // type:object size:0x18 scope:global align:8
+obj_item_fossil_pal = .data:0x008924C0; // type:object size:0x20 scope:local align:32
+obj_item_fossil_tex = .data:0x008924E0; // type:object size:0x200 scope:global align:32
+obj_item_fossil_v = .data:0x008926E0; // type:object size:0x40 scope:local align:8
+obj_fossilT_mat_model = .data:0x00892720; // type:object size:0x48 scope:global align:8
+obj_fossilT_gfx_model = .data:0x00892768; // type:object size:0x18 scope:global align:8
+obj_item_haniwa_pal = .data:0x00892780; // type:object size:0x20 scope:global align:32
+obj_item_haniwa_tex = .data:0x008927A0; // type:object size:0x200 scope:global align:32
+obj_item_haniwa_v = .data:0x008929A0; // type:object size:0x40 scope:global align:8
+obj_haniwaT_mat_model = .data:0x008929E0; // type:object size:0x48 scope:global align:8
+obj_haniwaT_gfx_model = .data:0x00892A28; // type:object size:0x18 scope:global align:8
+obj_item_kabu_pal = .data:0x00892A40; // type:object size:0x20 scope:local align:32
+obj_item_kabu_tex = .data:0x00892A60; // type:object size:0x200 scope:local align:32
+obj_item_kabu_v = .data:0x00892C60; // type:object size:0x40 scope:local align:8
+kabu_DL_mode = .data:0x00892CA0; // type:object size:0x48 scope:global align:8
+kabu_DL_vtx = .data:0x00892CE8; // type:object size:0x18 scope:global align:8
+obj_item_peach_pal = .data:0x00892D00; // type:object size:0x20 scope:local align:32
+obj_item_leaf_tex = .data:0x00892D20; // type:object size:0x200 scope:global align:32
+obj_item_leaf_v = .data:0x00892F20; // type:object size:0x40 scope:global align:8
+leaf_DL_mode = .data:0x00892F60; // type:object size:0x48 scope:global align:8
+leaf_DL_vtx = .data:0x00892FA8; // type:object size:0x18 scope:global align:8
+obj_shop_letter_pal = .data:0x00892FC0; // type:object size:0x20 scope:global align:32
+obj_shop_letter_tex = .data:0x00892FE0; // type:object size:0x200 scope:global align:32
+obj_shop_letter_v = .data:0x008931E0; // type:object size:0x40 scope:global align:8
+obj_letterT_mat_model = .data:0x00893220; // type:object size:0x48 scope:global align:8
+obj_letterT_gfx_model = .data:0x00893268; // type:object size:0x18 scope:global align:8
+obj_item_matutake_pal = .data:0x00893280; // type:object size:0x20 scope:local align:32
+obj_item_matutake_tex = .data:0x008932A0; // type:object size:0x200 scope:local align:32
+obj_item_matutake_v = .data:0x008934A0; // type:object size:0x40 scope:local align:8
+matutake_DL_mode = .data:0x008934E0; // type:object size:0x48 scope:global align:8
+matutake_DL_vtx = .data:0x00893528; // type:object size:0x18 scope:global align:8
+obj_item_nuts_pal = .data:0x00893540; // type:object size:0x20 scope:global align:32
+obj_item_nuts_tex = .data:0x00893560; // type:object size:0x200 scope:global align:32
+obj_item_nuts_v = .data:0x00893760; // type:object size:0x40 scope:global align:8
+nuts_DL_mode = .data:0x008937A0; // type:object size:0x48 scope:global align:8
+nuts_DL_vtx = .data:0x008937E8; // type:object size:0x18 scope:global align:8
+obj_item_omikuji = .data:0x00893800; // type:object size:0x20 scope:global align:32
+obj_item_omikuji_tex = .data:0x00893820; // type:object size:0x200 scope:global align:32
+obj_item_omikuji_v = .data:0x00893A20; // type:object size:0x40 scope:global align:8
+obj_item_omikuji_mat_model = .data:0x00893A60; // type:object size:0x48 scope:global align:8
+obj_item_omikuji_gfx_model = .data:0x00893AA8; // type:object size:0x18 scope:global align:8
+obj_item_peach_pal = .data:0x00893AC0; // type:object size:0x20 scope:local align:32
+obj_item_orange_tex = .data:0x00893AE0; // type:object size:0x200 scope:local align:32
+obj_item_orange_v = .data:0x00893CE0; // type:object size:0x40 scope:local align:8
+orange_DL_mode = .data:0x00893D20; // type:object size:0x48 scope:global align:8
+orange_DL_vtx = .data:0x00893D68; // type:object size:0x18 scope:global align:8
+obj_item_other_pal = .data:0x00893D80; // type:object size:0x20 scope:global align:32
+obj_item_other_tex = .data:0x00893DA0; // type:object size:0x200 scope:global align:32
+obj_item_other_v = .data:0x00893FA0; // type:object size:0x40 scope:global align:8
+obj_boxT_mat_model = .data:0x00893FE0; // type:object size:0x48 scope:global align:8
+obj_boxT_gfx_model = .data:0x00894028; // type:object size:0x18 scope:global align:8
+obj_item_otosi_pal = .data:0x00894040; // type:object size:0x20 scope:global align:32
+obj_item_otosi_tex = .data:0x00894060; // type:object size:0x200 scope:global align:32
+obj_item_otosi_v = .data:0x00894260; // type:object size:0x40 scope:global align:8
+obj_otosiT_mat_model = .data:0x008942A0; // type:object size:0x48 scope:global align:8
+obj_otosiT_gfx_model = .data:0x008942E8; // type:object size:0x18 scope:global align:8
+obj_item_pack_pal = .data:0x00894300; // type:object size:0x20 scope:global align:32
+obj_item_pack_tex = .data:0x00894320; // type:object size:0x200 scope:global align:32
+obj_item_pack_v = .data:0x00894520; // type:object size:0x40 scope:global align:8
+pack_DL_mode = .data:0x00894560; // type:object size:0x48 scope:global align:8
+pack_DL_vtx = .data:0x008945A8; // type:object size:0x18 scope:global align:8
+obj_item_peach_pal = .data:0x008945C0; // type:object size:0x20 scope:local align:32
+obj_item_peach_tex = .data:0x008945E0; // type:object size:0x200 scope:global align:32
+obj_item_peach_v = .data:0x008947E0; // type:object size:0x40 scope:global align:8
+peach_DL_mode = .data:0x00894820; // type:object size:0x48 scope:global align:8
+peach_DL_vtx = .data:0x00894868; // type:object size:0x18 scope:global align:8
+obj_item_pear_pal = .data:0x00894880; // type:object size:0x20 scope:global align:32
+obj_item_pear_tex = .data:0x008948A0; // type:object size:0x200 scope:global align:32
+obj_item_pear_v = .data:0x00894AA0; // type:object size:0x40 scope:global align:8
+pear_DL_mode = .data:0x00894AE0; // type:object size:0x48 scope:global align:8
+pear_DL_vtx = .data:0x00894B28; // type:object size:0x18 scope:global align:8
+obj_item_present_pal = .data:0x00894B40; // type:object size:0x20 scope:global align:32
+obj_item_present_tex = .data:0x00894B60; // type:object size:0x200 scope:global align:32
+obj_item_present_v = .data:0x00894D60; // type:object size:0x40 scope:global align:8
+present_DL_mode = .data:0x00894DA0; // type:object size:0x48 scope:global align:8
+present_DL_vtx = .data:0x00894DE8; // type:object size:0x18 scope:global align:8
+obj_item_roll_pal = .data:0x00894E00; // type:object size:0x20 scope:global align:32
+obj_item_roll_tex = .data:0x00894E20; // type:object size:0x200 scope:global align:32
+obj_item_roll_v = .data:0x00895020; // type:object size:0x40 scope:global align:8
+obj_rollT_mat_model = .data:0x00895060; // type:object size:0x48 scope:global align:8
+obj_rollT_gfx_model = .data:0x008950A8; // type:object size:0x18 scope:global align:8
+obj_item_tane_pal = .data:0x008950C0; // type:object size:0x20 scope:local align:32
+obj_item_tane_tex = .data:0x008950E0; // type:object size:0x80 scope:local align:32
+obj_item_tane_v = .data:0x00895160; // type:object size:0x40 scope:local align:8
+seed_DL_mode = .data:0x008951A0; // type:object size:0x48 scope:global align:8
+seed_DL_vtx = .data:0x008951E8; // type:object size:0x18 scope:global align:8
+obj_item_shell_pal = .data:0x00895200; // type:object size:0x20 scope:local align:32
+obj_item_shellA_tex = .data:0x00895220; // type:object size:0x80 scope:global align:32
+obj_item_shellA_v = .data:0x008952A0; // type:object size:0x40 scope:global align:8
+obj_item_shellAT_mat_model = .data:0x008952E0; // type:object size:0x48 scope:global align:8
+obj_item_shellAT_gfx_model = .data:0x00895328; // type:object size:0x18 scope:global align:8
+obj_item_shell_pal = .data:0x00895340; // type:object size:0x20 scope:local align:32
+obj_item_shellB_tex = .data:0x00895360; // type:object size:0x80 scope:global align:32
+obj_item_shellB_v = .data:0x008953E0; // type:object size:0x40 scope:global align:8
+obj_item_shellBT_mat_model = .data:0x00895420; // type:object size:0x48 scope:global align:8
+obj_item_shellBT_gfx_model = .data:0x00895468; // type:object size:0x18 scope:global align:8
+obj_item_shell_pal = .data:0x00895480; // type:object size:0x20 scope:local align:32
+obj_item_shellC_tex = .data:0x008954A0; // type:object size:0x80 scope:global align:32
+obj_item_shellC_v = .data:0x00895520; // type:object size:0x40 scope:global align:8
+obj_item_shellCT_mat_model = .data:0x00895560; // type:object size:0x48 scope:global align:8
+obj_item_shellCT_gfx_model = .data:0x008955A8; // type:object size:0x18 scope:global align:8
+obj_item_tool_pal = .data:0x008955C0; // type:object size:0x20 scope:global align:32
+obj_item_tool_tex = .data:0x008955E0; // type:object size:0x200 scope:global align:32
+obj_item_tool_v = .data:0x008957E0; // type:object size:0x40 scope:global align:8
+obj_toolT_mat_model = .data:0x00895820; // type:object size:0x48 scope:global align:8
+obj_toolT_gfx_model = .data:0x00895868; // type:object size:0x18 scope:global align:8
+obj_item_trash_pal = .data:0x00895880; // type:object size:0x20 scope:local align:32
+obj_item_trash_tex = .data:0x008958A0; // type:object size:0x200 scope:global align:32
+obj_item_trash_v = .data:0x00895AA0; // type:object size:0x40 scope:global align:8
+obj_trashT_mat_model = .data:0x00895AE0; // type:object size:0x48 scope:global align:8
+obj_trashT_gfx_model = .data:0x00895B28; // type:object size:0x18 scope:global align:8
+obj_item_umbrella_pal = .data:0x00895B40; // type:object size:0x20 scope:global align:32
+obj_item_umbrella_tex = .data:0x00895B60; // type:object size:0x200 scope:global align:32
+obj_item_umbrella_v = .data:0x00895D60; // type:object size:0x40 scope:global align:8
+obj_item_umbrellaT_mat_model = .data:0x00895DA0; // type:object size:0x48 scope:global align:8
+obj_item_umbrellaT_gfx_model = .data:0x00895DE8; // type:object size:0x18 scope:global align:8
+point_light_v = .data:0x00895E00; // type:object size:0x40 scope:global align:8
+point_light_init_model = .data:0x00895E40; // type:object size:0x40 scope:global align:8
+point_light_model = .data:0x00895E80; // type:object size:0x20 scope:global align:8
+elf_layA0_txt = .data:0x00895EA0; // type:object size:0x800 scope:global align:4
+mny_win_money_tex = .data:0x008966A0; // type:object size:0x200 scope:global align:32
+fri_win_bell_tex = .data:0x008968A0; // type:object size:0x100 scope:local align:32
+mny_win_u_tex = .data:0x008969A0; // type:object size:0x800 scope:global align:32
+mny_win_v = .data:0x008971A0; // type:object size:0x100 scope:global align:8
+mny_win_beruT_model = .data:0x008972A0; // type:object size:0x30 scope:global align:8
+mny_win_mojiT_model = .data:0x008972D0; // type:object size:0x30 scope:global align:8
+mny_win_ueT_model = .data:0x00897300; // type:object size:0x38 scope:global align:8
+fki_win_w2_tex = .data:0x00897340; // type:object size:0x400 scope:global align:32
+fki_win_de3_tex = .data:0x00897740; // type:object size:0x80 scope:global align:32
+fki_win_de4_tex = .data:0x008977C0; // type:object size:0x80 scope:global align:32
+fki_win_wa_tex = .data:0x00897840; // type:object size:0x200 scope:global align:32
+fki_win_v = .data:0x00897A40; // type:object size:0x100 scope:global align:8
+fki_win_w4_model = .data:0x00897B40; // type:object size:0x30 scope:global align:8
+fki_win_w3T_model = .data:0x00897B70; // type:object size:0x38 scope:global align:8
+fki_win_w1T_model = .data:0x00897BA8; // type:object size:0x38 scope:global align:8
+fki_win_w2T_model = .data:0x00897BE0; // type:object size:0x38 scope:global align:8
+fki_win_mode = .data:0x00897C18; // type:object size:0x20 scope:global align:8
+int_kob_getabako1_pal = .data:0x00897C40; // type:object size:0x20 scope:global align:32
+int_kob_getabako1_naka1_tex = .data:0x00897C60; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_naka2_tex = .data:0x00897CE0; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_side_tex = .data:0x00897D60; // type:object size:0x100 scope:global align:32
+int_kob_getabako1_top_tex = .data:0x00897E60; // type:object size:0x100 scope:global align:32
+int_kob_getabako1_ura_tex = .data:0x00897F60; // type:object size:0x200 scope:global align:32
+int_kob_getabako1_atumi_tex = .data:0x00898160; // type:object size:0x200 scope:global align:32
+int_kob_getabako1_wear_tex = .data:0x00898360; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_book2_tex = .data:0x008983E0; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_book1_tex = .data:0x00898460; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_book3_tex = .data:0x008984E0; // type:object size:0x80 scope:global align:32
+int_kob_getabako1_v = .data:0x00898560; // type:object size:0x5C0 scope:global align:8
+int_kob_getabako1_on_model = .data:0x00898B20; // type:object size:0x118 scope:global align:8
+int_kob_getabako1_onT_model = .data:0x00898C38; // type:object size:0xC8 scope:global align:8
+int_kob_getabako2_pal = .data:0x00898D00; // type:object size:0x20 scope:global align:32
+int_kob_getabako2_naka1_tex = .data:0x00898D20; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_naka2_tex = .data:0x00898DA0; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_side_tex = .data:0x00898E20; // type:object size:0x100 scope:global align:32
+int_kob_getabako2_top_tex = .data:0x00898F20; // type:object size:0x100 scope:global align:32
+int_kob_getabako2_ura_tex = .data:0x00899020; // type:object size:0x200 scope:global align:32
+int_kob_getabako2_atumi_tex = .data:0x00899220; // type:object size:0x200 scope:global align:32
+int_kob_getabako2_wear_tex = .data:0x00899420; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_book3_tex = .data:0x008994A0; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_book1_tex = .data:0x00899520; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_loveletter_tex = .data:0x008995A0; // type:object size:0x80 scope:global align:32
+int_kob_getabako2_v = .data:0x00899620; // type:object size:0x590 scope:global align:8
+int_kob_getabako2_on_model = .data:0x00899BB0; // type:object size:0x118 scope:global align:8
+int_kob_getabako2_onT_model = .data:0x00899CC8; // type:object size:0xC8 scope:global align:8
+int_kob_jimudesk_pal = .data:0x00899DA0; // type:object size:0x20 scope:global align:32
+int_kob_jimudesk_ashi1_tex = .data:0x00899DC0; // type:object size:0x100 scope:global align:32
+int_kob_jimudesk_ashi2_tex = .data:0x00899EC0; // type:object size:0x200 scope:global align:32
+int_kob_jimudesk_ashi3_tex = .data:0x0089A0C0; // type:object size:0x80 scope:global align:32
+int_kob_jimudesk_ashioki_tex = .data:0x0089A140; // type:object size:0x80 scope:global align:32
+int_kob_jimudesk_hikidashi2_tex = .data:0x0089A1C0; // type:object size:0x80 scope:global align:32
+int_kob_jimudesk_hikidashi1_tex = .data:0x0089A240; // type:object size:0x100 scope:global align:32
+int_kob_jimudesk_side_tex = .data:0x0089A340; // type:object size:0x100 scope:global align:32
+int_kob_jimudesk_tenban_tex = .data:0x0089A440; // type:object size:0x100 scope:global align:32
+int_kob_jimudesk_v = .data:0x0089A540; // type:object size:0x460 scope:global align:8
+int_kob_jimudesk_on_model = .data:0x0089A9A0; // type:object size:0x60 scope:global align:8
+int_kob_jimudesk_onT_model = .data:0x0089AA00; // type:object size:0x128 scope:global align:8
+int_kob_jimuisu_pal = .data:0x0089AB40; // type:object size:0x20 scope:global align:32
+int_kob_jimuisu_main1_tex = .data:0x0089AB60; // type:object size:0x100 scope:global align:32
+int_kob_jimuisu_se1_tex = .data:0x0089AC60; // type:object size:0x80 scope:global align:32
+int_kob_jimuisu_se2_tex = .data:0x0089ACE0; // type:object size:0x80 scope:global align:32
+int_kob_jimuisu_hone1_tex = .data:0x0089AD60; // type:object size:0x80 scope:global align:32
+int_kob_jimuisu_ashi1_tex = .data:0x0089ADE0; // type:object size:0x80 scope:global align:32
+int_kob_jimuisu_ashi2_tex = .data:0x0089AE60; // type:object size:0x100 scope:global align:32
+int_kob_jimuisu_hone2_tex = .data:0x0089AF60; // type:object size:0x100 scope:global align:32
+int_kob_jimuisu_ashi3_tex = .data:0x0089B060; // type:object size:0x100 scope:global align:32
+int_kob_jimuisu_v = .data:0x0089B160; // type:object size:0x3E0 scope:global align:8
+int_kob_jimuisu_on_model = .data:0x0089B540; // type:object size:0x60 scope:global align:8
+int_kob_jimuisu_onT_model = .data:0x0089B5A0; // type:object size:0x130 scope:global align:8
+int_kob_locker_pal = .data:0x0089B6E0; // type:object size:0x20 scope:global align:32
+int_kob_locker_door_tex_txt = .data:0x0089B700; // type:object size:0x300 scope:global align:32
+int_kob_locker_side_tex_txt = .data:0x0089BA00; // type:object size:0x180 scope:global align:32
+int_kob_locker_front_tex_txt = .data:0x0089BB80; // type:object size:0x180 scope:global align:32
+int_kob_locker1_v = .data:0x0089BD00; // type:object size:0x320 scope:global align:8
+int_kob_locker1_door_model = .data:0x0089C020; // type:object size:0x78 scope:global align:8
+int_kob_locker1_base_model = .data:0x0089C098; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_kob_locker1_tbl = .data:0x0089C140; // type:object size:0x3 scope:global align:4
+cKF_kn_int_kob_locker1_tbl = .data:0x0089C144; // type:object size:0xC scope:global align:4
+cKF_c_int_kob_locker1_tbl = .data:0x0089C150; // type:object size:0xC scope:global align:4
+cKF_ds_int_kob_locker1_tbl = .data:0x0089C15C; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_kob_locker1 = .data:0x0089C1B8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kob_locker1_tbl = .data:0x0089C1CC; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_kob_locker1 = .data:0x0089C1F0; // type:object size:0x8 scope:global align:4
+int_kob_mastersword_pal = .data:0x0089C200; // type:object size:0x20 scope:global align:32
+int_kob_mastersword_kan_tex_rgb_ci4_pal = .data:0x0089C220; // type:object size:0x20 scope:global align:32
+int_kob_mastersword_tuka_tex = .data:0x0089C240; // type:object size:0x180 scope:global align:32
+int_kob_mastersword_tuba_tex = .data:0x0089C3C0; // type:object size:0x100 scope:global align:32
+int_kob_mastersword_ishi1_tex = .data:0x0089C4C0; // type:object size:0x80 scope:global align:32
+int_kob_mastersword_ishi2_tex = .data:0x0089C540; // type:object size:0x80 scope:global align:32
+int_kob_mastersword_ishi3_tex = .data:0x0089C5C0; // type:object size:0x80 scope:global align:32
+int_kob_mastersword_kan_tex = .data:0x0089C640; // type:object size:0x400 scope:global align:32
+int_kob_mastersword_v = .data:0x0089CA40; // type:object size:0x4C0 scope:global align:8
+int_kob_mastersword_env_model = .data:0x0089CF00; // type:object size:0x78 scope:global align:8
+int_kob_mastersword_on_model = .data:0x0089CF78; // type:object size:0xB8 scope:global align:8
+int_kob_mastersword_onT_model = .data:0x0089D030; // type:object size:0x70 scope:global align:8
+int_kob_ncube_pal = .data:0x0089D0A0; // type:object size:0x20 scope:global align:32
+int_kob_ncube_gn = .data:0x0089D0C0; // type:object size:0x200 scope:global align:32
+int_kob_ncube_bn = .data:0x0089D2C0; // type:object size:0x200 scope:global align:32
+int_kob_ncube_top = .data:0x0089D4C0; // type:object size:0x80 scope:global align:32
+int_kob_ncube_r = .data:0x0089D540; // type:object size:0x80 scope:global align:32
+int_kob_ncube_g = .data:0x0089D5C0; // type:object size:0x80 scope:global align:32 data:string
+int_kob_ncube_b = .data:0x0089D640; // type:object size:0x80 scope:global align:32 data:string
+int_kob_ncube_v = .data:0x0089D6C0; // type:object size:0x480 scope:global align:8
+int_kob_ncube_on_model = .data:0x0089DB40; // type:object size:0xD0 scope:global align:8
+int_kob_ncube_onT_model = .data:0x0089DC10; // type:object size:0x98 scope:global align:8
+int_kob_pipeisu_pal = .data:0x0089DCC0; // type:object size:0x20 scope:global align:32
+int_kob_pipeisu_se1_tex = .data:0x0089DCE0; // type:object size:0x80 scope:global align:32
+int_kob_pipeisu_main1_tex = .data:0x0089DD60; // type:object size:0x100 scope:global align:32
+int_kob_pipeisu_ashi1_tex = .data:0x0089DE60; // type:object size:0x100 scope:global align:32
+int_kob_pipeisu_pipe1_tex = .data:0x0089DF60; // type:object size:0x80 scope:global align:32
+int_kob_pipeisu_se2_tex = .data:0x0089DFE0; // type:object size:0x80 scope:global align:32
+int_kob_pipeisu_pipe2_tex = .data:0x0089E060; // type:object size:0x180 scope:global align:32
+int_kob_pipeisu_v = .data:0x0089E1E0; // type:object size:0x330 scope:global align:8
+int_kob_pipeisu_on_model = .data:0x0089E510; // type:object size:0xC0 scope:global align:8
+int_kob_pipeisu_onT_model = .data:0x0089E5D0; // type:object size:0xA0 scope:global align:8
+int_kob_rika_desk_pal = .data:0x0089E680; // type:object size:0x20 scope:global align:32
+int_kob_rika_desk_top_tex = .data:0x0089E6A0; // type:object size:0x200 scope:global align:32
+int_kob_rika_desk_side1_tex = .data:0x0089E8A0; // type:object size:0x200 scope:global align:32
+int_kob_rika_desk_side2_tex = .data:0x0089EAA0; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_side3_tex = .data:0x0089EB20; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_nagashi1_tex = .data:0x0089EBA0; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_nagashi2_tex = .data:0x0089EC20; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_jyaguti1_tex = .data:0x0089ECA0; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_jyaguti2_tex = .data:0x0089ED20; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_jikken1_tex = .data:0x0089EDA0; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_jikken2_tex = .data:0x0089EE20; // type:object size:0x80 scope:global align:32
+int_kob_rika_desk_v = .data:0x0089EEA0; // type:object size:0x4E0 scope:global align:8
+int_kob_rika_desk_on_model = .data:0x0089F380; // type:object size:0xD8 scope:global align:8
+int_kob_rika_desk_onT_model = .data:0x0089F458; // type:object size:0x108 scope:global align:8
+int_kob_tobibako_pal = .data:0x0089F560; // type:object size:0x20 scope:global align:32
+int_kob_tobibako_zengo_tex = .data:0x0089F580; // type:object size:0x300 scope:global align:32
+int_kob_tobibako_sayu_tex = .data:0x0089F880; // type:object size:0x300 scope:global align:32
+int_kob_tobibako_ue_tex = .data:0x0089FB80; // type:object size:0x100 scope:global align:32
+int_kob_tobibako_v = .data:0x0089FC80; // type:object size:0x1E0 scope:global align:8
+int_kob_tobibako_on_model = .data:0x0089FE60; // type:object size:0xB0 scope:global align:8
+int_kon_ameclock_pal = .data:0x0089FF20; // type:object size:0x20 scope:global align:32
+int_kon_ameclock_e_tex_txt = .data:0x0089FF40; // type:object size:0x80 scope:global align:32
+int_kon_ameclock_a_tex_txt = .data:0x0089FFC0; // type:object size:0x200 scope:global align:32
+int_kon_ameclock_c_tex_txt = .data:0x008A01C0; // type:object size:0x80 scope:global align:32
+int_kon_ameclock_b_tex_txt = .data:0x008A0240; // type:object size:0x100 scope:global align:32
+int_kon_ameclock_d_tex_txt = .data:0x008A0340; // type:object size:0x80 scope:global align:32
+int_kon_ameclock_f_tex_txt = .data:0x008A03C0; // type:object size:0x100 scope:global align:32
+int_kon_ameclock_g_tex_txt = .data:0x008A04C0; // type:object size:0x100 scope:global align:32
+int_kon_ameclock_v = .data:0x008A05C0; // type:object size:0x3A0 scope:global align:8
+int_kon_ameclock_long_model = .data:0x008A0960; // type:object size:0x58 scope:global align:8
+int_kon_ameclock_off_model = .data:0x008A09B8; // type:object size:0x68 scope:global align:8
+int_kon_ameclock_short_model = .data:0x008A0A20; // type:object size:0x58 scope:global align:8
+base_model = .data:0x008A0A78; // type:object size:0x120 scope:global align:8
+cKF_ckcb_r_int_kon_ameclock_tbl = .data:0x008A0B98; // type:object size:0x6 scope:global align:4
+cKF_c_int_kon_ameclock_tbl = .data:0x008A0BA0; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_kon_ameclock = .data:0x008A0BCC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_ameclock_tbl = .data:0x008A0BE0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_kon_ameclock = .data:0x008A0C28; // type:object size:0x8 scope:global align:4
+int_kon_atqclock_pal = .data:0x008A0C40; // type:object size:0x20 scope:global align:32
+int_kon_atqclock_grass_tex_pic_ci4_pal = .data:0x008A0C60; // type:object size:0x20 scope:global align:32
+int_kon_atqclock_f_tex_txt = .data:0x008A0C80; // type:object size:0x100 scope:global align:32
+int_kon_atqclock_c_tex_txt = .data:0x008A0D80; // type:object size:0x80 scope:global align:32 data:string
+int_kon_atqclock_a_tex_txt = .data:0x008A0E00; // type:object size:0x100 scope:global align:32
+int_kon_atqclock_e_tex_txt = .data:0x008A0F00; // type:object size:0x80 scope:global align:32
+int_kon_atqclock_d_tex_txt = .data:0x008A0F80; // type:object size:0x80 scope:global align:32
+int_kon_atqclock_b_tex_txt = .data:0x008A1000; // type:object size:0x200 scope:global align:32
+int_kon_atqclock_h_tex_txt = .data:0x008A1200; // type:object size:0x80 scope:global align:32
+int_kon_atqclock_g_tex_txt = .data:0x008A1280; // type:object size:0x100 scope:global align:32
+int_kon_atqclock_grass_tex_txt = .data:0x008A1380; // type:object size:0x80 scope:global align:32
+int_kon_atqclock_v = .data:0x008A1400; // type:object size:0x430 scope:global align:8
+int_kon_atqclock_long_model = .data:0x008A1830; // type:object size:0x58 scope:global align:8
+int_kon_atqclock_evw_model = .data:0x008A1888; // type:object size:0x68 scope:global align:8
+int_kon_atqclock_base_model = .data:0x008A18F0; // type:object size:0x150 scope:global align:8
+int_kon_atqclock_short_model = .data:0x008A1A40; // type:object size:0x58 scope:global align:8
+int_kon_atqclock_huriko_model = .data:0x008A1A98; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_kon_atqclock_tbl = .data:0x008A1AF0; // type:object size:0x8 scope:global align:4
+cKF_kn_int_kon_atqclock_tbl = .data:0x008A1AF8; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_atqclock_tbl = .data:0x008A1AFC; // type:object size:0x34 scope:global align:4
+cKF_ds_int_kon_atqclock_tbl = .data:0x008A1B30; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_kon_atqclock = .data:0x008A1B54; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_atqclock_tbl = .data:0x008A1B68; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_kon_atqclock = .data:0x008A1BC8; // type:object size:0x8 scope:global align:4
+int_kon_blueclock_pal = .data:0x008A1BE0; // type:object size:0x20 scope:global align:32
+int_kon_blueclock_grass_tex_pic_ci4_pal = .data:0x008A1C00; // type:object size:0x20 scope:global align:32
+int_kon_blueclock_d_tex_txt = .data:0x008A1C20; // type:object size:0x80 scope:global align:32
+int_kon_blueclock_a_tex_txt = .data:0x008A1CA0; // type:object size:0x100 scope:global align:32
+int_kon_blueclock_c_tex_txt = .data:0x008A1DA0; // type:object size:0x80 scope:global align:32
+int_kon_blueclock_b_tex_txt = .data:0x008A1E20; // type:object size:0x100 scope:global align:32
+int_kon_blueclock_grass_tex_txt = .data:0x008A1F20; // type:object size:0x200 scope:global align:32
+int_kon_blueclock_v = .data:0x008A2120; // type:object size:0x280 scope:global align:8
+int_kon_blueclock_long_model = .data:0x008A23A0; // type:object size:0x58 scope:global align:8
+int_kon_blueclock_evw_model = .data:0x008A23F8; // type:object size:0x80 scope:global align:8
+int_kon_blueclock_base_model = .data:0x008A2478; // type:object size:0xA8 scope:global align:8
+int_kon_blueclock_short_model = .data:0x008A2520; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_kon_blueclock_tbl = .data:0x008A2578; // type:object size:0x6 scope:global align:4
+cKF_c_int_kon_blueclock_tbl = .data:0x008A2580; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_kon_blueclock = .data:0x008A25AC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_blueclock_tbl = .data:0x008A25C0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_kon_blueclock = .data:0x008A2608; // type:object size:0x8 scope:global align:4
+int_kon_cracker_pal = .data:0x008A2620; // type:object size:0x20 scope:global align:32
+int_kon_cracker_ball_tex_txt = .data:0x008A2640; // type:object size:0x200 scope:global align:32
+int_kon_cracker_ito_tex_txt = .data:0x008A2840; // type:object size:0x80 scope:global align:32
+int_kon_cracker_hasira_tex_txt = .data:0x008A28C0; // type:object size:0x100 scope:global align:32
+int_kon_cracker_mae_tex_txt = .data:0x008A29C0; // type:object size:0x80 scope:global align:32
+int_kon_cracker_hari_tex_txt = .data:0x008A2A40; // type:object size:0x100 scope:global align:32
+int_kon_cracker_ue_tex_txt = .data:0x008A2B40; // type:object size:0x80 scope:global align:32
+int_kon_cracker_v = .data:0x008A2BC0; // type:object size:0x3E0 scope:global align:8
+int_kon_cracker_ito2_model = .data:0x008A2FA0; // type:object size:0x60 scope:global align:8
+int_kon_cracker_ball2_model = .data:0x008A3000; // type:object size:0x68 scope:global align:8
+int_kon_cracker_ue_model = .data:0x008A3068; // type:object size:0x58 scope:global align:8
+int_kon_cracker_ito3_model = .data:0x008A30C0; // type:object size:0x60 scope:global align:8
+int_kon_cracker_hasira_model = .data:0x008A3120; // type:object size:0xB0 scope:global align:8
+int_kon_cracker_ball3_model = .data:0x008A31D0; // type:object size:0x68 scope:global align:8
+int_kon_cracker_ito1_model = .data:0x008A3238; // type:object size:0x60 scope:global align:8
+int_kon_cracker_ball1_model = .data:0x008A3298; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_kon_cracker_tbl = .data:0x008A3300; // type:object size:0xA scope:global align:4
+cKF_kn_int_kon_cracker_tbl = .data:0x008A330C; // type:object size:0x4 scope:global align:4
+cKF_c_int_kon_cracker_tbl = .data:0x008A3310; // type:object size:0x3E scope:global align:4
+cKF_ds_int_kon_cracker_tbl = .data:0x008A3350; // type:object size:0x72 scope:global align:4
+cKF_ba_r_int_kon_cracker = .data:0x008A33C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_cracker_tbl = .data:0x008A33D8; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_kon_cracker = .data:0x008A3450; // type:object size:0x8 scope:global align:4
+int_kon_gomi03_gururi_pal = .data:0x008A3460; // type:object size:0x20 scope:global align:32
+int_kon_gomi03_gururi_tex = .data:0x008A3480; // type:object size:0x100 scope:global align:32 data:string
+int_kon_gomi03_mawari_tex = .data:0x008A3580; // type:object size:0x80 scope:global align:32 data:string
+int_kon_gomi03_totte_tex = .data:0x008A3600; // type:object size:0x80 scope:global align:32
+int_kon_gomi03_ue_tex = .data:0x008A3680; // type:object size:0x200 scope:global align:32
+int_kon_gomi03_v = .data:0x008A3880; // type:object size:0x2F0 scope:global align:8
+int_kon_gomi03_on_model = .data:0x008A3B70; // type:object size:0xC8 scope:global align:8
+int_kon_gomi03_onT_model = .data:0x008A3C38; // type:object size:0x68 scope:global align:8
+int_kon_gomi04_pal = .data:0x008A3CA0; // type:object size:0x20 scope:global align:32
+int_kon_gomi04_huta_tex_txt = .data:0x008A3CC0; // type:object size:0x100 scope:global align:32
+int_kon_gomi04_huta2_tex_txt = .data:0x008A3DC0; // type:object size:0x100 scope:global align:32
+int_kon_gomi04_yoko_tex_txt = .data:0x008A3EC0; // type:object size:0x80 scope:global align:32
+int_kon_gomi04_ue_tex_txt = .data:0x008A3F40; // type:object size:0x100 scope:global align:32
+int_kon_gomi04_naka_tex_txt = .data:0x008A4040; // type:object size:0x80 scope:global align:32
+int_kon_gomi04_sita_tex_txt = .data:0x008A40C0; // type:object size:0x100 scope:global align:32
+int_kon_gomi04_v = .data:0x008A41C0; // type:object size:0x2E0 scope:global align:8
+int_kon_gomi04_huta2_model = .data:0x008A44A0; // type:object size:0x60 scope:global align:8
+int_kon_gomi04_huta_model = .data:0x008A4500; // type:object size:0x60 scope:global align:8
+int_kon_gomi04_sita_model = .data:0x008A4560; // type:object size:0xD8 scope:global align:8
+cKF_ckcb_r_int_kon_gomi04_tbl = .data:0x008A4638; // type:object size:0x4 scope:global align:4
+cKF_kn_int_kon_gomi04_tbl = .data:0x008A463C; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_gomi04_tbl = .data:0x008A4640; // type:object size:0x1C scope:global align:4
+cKF_ds_int_kon_gomi04_tbl = .data:0x008A465C; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_kon_gomi04 = .data:0x008A46E0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_gomi04_tbl = .data:0x008A46F4; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_kon_gomi04 = .data:0x008A4724; // type:object size:0x8 scope:global align:4
+int_kon_grclock_pal = .data:0x008A4740; // type:object size:0x20 scope:global align:32
+int_kon_grclock_c_tex_txt = .data:0x008A4760; // type:object size:0x80 scope:global align:32
+int_kon_grclock_b_tex_txt = .data:0x008A47E0; // type:object size:0x100 scope:global align:32
+int_kon_grclock_a_tex_txt = .data:0x008A48E0; // type:object size:0x400 scope:global align:32
+int_kon_grclock_d_tex_txt = .data:0x008A4CE0; // type:object size:0x200 scope:global align:32
+int_kon_grclock_e_tex_txt = .data:0x008A4EE0; // type:object size:0x80 scope:global align:32
+int_kon_grclock_v = .data:0x008A4F60; // type:object size:0x290 scope:global align:8
+int_kon_grclock_long_model = .data:0x008A51F0; // type:object size:0x58 scope:global align:8
+int_kon_grclock_off_model = .data:0x008A5248; // type:object size:0x68 scope:global align:8
+int_kon_grclock_base_model = .data:0x008A52B0; // type:object size:0xC8 scope:global align:8
+int_kon_grclock_short_model = .data:0x008A5378; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_kon_grclock_tbl = .data:0x008A53D0; // type:object size:0x6 scope:global align:4
+cKF_c_int_kon_grclock_tbl = .data:0x008A53D8; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_kon_grclock = .data:0x008A5404; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_grclock_tbl = .data:0x008A5418; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_kon_grclock = .data:0x008A5460; // type:object size:0x8 scope:global align:4
+int_kon_isi01_pal = .data:0x008A5480; // type:object size:0x20 scope:local align:32
+int_kon_isi01_mae_tex = .data:0x008A54A0; // type:object size:0x200 scope:global align:32
+int_kon_isi01_teppen_tex = .data:0x008A56A0; // type:object size:0x80 scope:global align:32
+int_kon_isi01_yoko_tex = .data:0x008A5720; // type:object size:0x200 scope:global align:32
+int_kon_isi01_v = .data:0x008A5920; // type:object size:0x1C0 scope:global align:8
+int_kon_isi01_on_model = .data:0x008A5AE0; // type:object size:0xB0 scope:global align:8
+int_kon_isi02_pal = .data:0x008A5BA0; // type:object size:0x20 scope:global align:32
+int_kon_isi02_front_tex = .data:0x008A5BC0; // type:object size:0x200 scope:global align:32
+int_kon_isi02_side_tex = .data:0x008A5DC0; // type:object size:0x100 scope:global align:32
+int_kon_isi02_top_tex = .data:0x008A5EC0; // type:object size:0x100 scope:global align:32
+int_kon_isi02_mini_tex = .data:0x008A5FC0; // type:object size:0x200 scope:global align:32
+int_kon_isi02_v = .data:0x008A61C0; // type:object size:0x300 scope:global align:8
+int_kon_isi02_on_model = .data:0x008A64C0; // type:object size:0xE8 scope:global align:8
+int_kon_isi03_pal = .data:0x008A65C0; // type:object size:0x20 scope:global align:32
+int_kon_isi03_a_tex = .data:0x008A65E0; // type:object size:0x300 scope:global align:32
+int_kon_isi03_b_tex = .data:0x008A68E0; // type:object size:0x200 scope:global align:32
+int_kon_isi03_c_tex = .data:0x008A6AE0; // type:object size:0x200 scope:global align:32
+int_kon_isi03_d_tex = .data:0x008A6CE0; // type:object size:0x100 scope:global align:32
+int_kon_isi03_v = .data:0x008A6DE0; // type:object size:0x240 scope:global align:8
+int_kon_isi03_on_model = .data:0x008A7020; // type:object size:0xD0 scope:global align:8
+int_kon_isi04_pal = .data:0x008A7100; // type:object size:0x20 scope:global align:32
+int_kon_isi04_yoko_tex = .data:0x008A7120; // type:object size:0x100 scope:global align:32
+int_kon_isi04_ue_tex = .data:0x008A7220; // type:object size:0x180 scope:global align:32
+int_kon_isi04_mae_tex = .data:0x008A73A0; // type:object size:0x480 scope:global align:32
+int_kon_isi04_koke_tex = .data:0x008A7820; // type:object size:0x80 scope:global align:32
+int_kon_isi04_v = .data:0x008A78A0; // type:object size:0x350 scope:global align:8
+int_kon_isi04_on_model = .data:0x008A7BF0; // type:object size:0x88 scope:global align:8
+int_kon_isi04_onT_model = .data:0x008A7C78; // type:object size:0xA0 scope:global align:8
+int_kon_isi01_pal = .data:0x008A7D20; // type:object size:0x20 scope:local align:32
+int_kon_isi05_a_tex = .data:0x008A7D40; // type:object size:0x400 scope:global align:32
+int_kon_isi05_c_tex = .data:0x008A8140; // type:object size:0x400 scope:global align:32
+int_kon_isi05_v = .data:0x008A8540; // type:object size:0x170 scope:global align:8
+int_kon_isi05_on_model = .data:0x008A86B0; // type:object size:0x98 scope:global align:8
+int_kon_isi06_pal = .data:0x008A8760; // type:object size:0x20 scope:global align:32
+int_kon_isi06_a_tex = .data:0x008A8780; // type:object size:0x480 scope:global align:32
+int_kon_isi06_c_tex = .data:0x008A8C00; // type:object size:0x100 scope:global align:32
+int_kon_isi06_d_tex = .data:0x008A8D00; // type:object size:0x180 scope:global align:32
+int_kon_isi06_b_tex = .data:0x008A8E80; // type:object size:0x100 scope:global align:32
+int_kon_isi06_v = .data:0x008A8F80; // type:object size:0x350 scope:global align:8
+int_kon_isi06_on_model = .data:0x008A92D0; // type:object size:0xE0 scope:global align:8
+int_kon_jihanki02_pal = .data:0x008A93C0; // type:object size:0x20 scope:global align:32
+int_kon_jihanki02_front_tex = .data:0x008A93E0; // type:object size:0x180 scope:global align:32
+int_kon_jihanki02_yoko_tex = .data:0x008A9560; // type:object size:0x100 scope:global align:32
+int_kon_jihanki02_back_tex = .data:0x008A9660; // type:object size:0x80 scope:global align:32
+int_kon_jihanki02_can_tex = .data:0x008A96E0; // type:object size:0x100 scope:global align:32
+int_kon_jihanki02_canback_tex = .data:0x008A97E0; // type:object size:0x100 scope:global align:32
+int_kon_jihanki02_naka_tex = .data:0x008A98E0; // type:object size:0x80 scope:global align:32
+int_kon_jihanki02_botan_tex = .data:0x008A9960; // type:object size:0x200 scope:global align:32
+int_kon_jihanki02_sign_tex = .data:0x008A9B60; // type:object size:0x80 scope:global align:32
+int_kon_jihanki02_v = .data:0x008A9BE0; // type:object size:0x3C0 scope:global align:8
+int_kon_jihanki02_on_model = .data:0x008A9FA0; // type:object size:0x80 scope:global align:8
+int_kon_jihanki02_off_model = .data:0x008AA020; // type:object size:0x80 scope:global align:8
+int_kon_jihanki02_onT_model = .data:0x008AA0A0; // type:object size:0x70 scope:global align:8
+int_kon_jihanki02_offT_model = .data:0x008AA110; // type:object size:0x80 scope:global align:8
+int_kon_jihanki03_pal = .data:0x008AA1A0; // type:object size:0x20 scope:global align:32
+int_kon_jihanki03_mae_tex = .data:0x008AA1C0; // type:object size:0x200 scope:global align:32
+int_kon_jihanki03_usiro_tex = .data:0x008AA3C0; // type:object size:0x200 scope:global align:32
+int_kon_jihanki03_yoko_tex = .data:0x008AA5C0; // type:object size:0x200 scope:global align:32
+int_kon_jihanki03_ten_tex = .data:0x008AA7C0; // type:object size:0x80 scope:global align:32
+int_kon_jihanki03_uti_tex = .data:0x008AA840; // type:object size:0x100 scope:global align:32
+int_kon_jihanki03_v = .data:0x008AA940; // type:object size:0x240 scope:global align:8
+int_kon_jihanki03_on_model = .data:0x008AAB80; // type:object size:0xC0 scope:global align:8
+int_kon_jihanki03_onT_model = .data:0x008AAC40; // type:object size:0x58 scope:global align:8
+int_kon_mimiclock_pal = .data:0x008AACA0; // type:object size:0x20 scope:global align:32
+int_kon_mimiclock_c_tex_txt = .data:0x008AACC0; // type:object size:0x100 scope:global align:32
+int_kon_mimiclock_d_tex_txt = .data:0x008AADC0; // type:object size:0x100 scope:global align:32
+int_kon_mimiclock_b_tex_txt = .data:0x008AAEC0; // type:object size:0x180 scope:global align:32
+int_kon_mimiclock_a_tex_txt = .data:0x008AB040; // type:object size:0x180 scope:global align:32
+int_kon_mimiclock_e_tex_txt = .data:0x008AB1C0; // type:object size:0x200 scope:global align:32
+int_kon_mimiclock_f_tex_txt = .data:0x008AB3C0; // type:object size:0x80 scope:global align:32
+int_kon_mimiclock_v = .data:0x008AB440; // type:object size:0x2F0 scope:global align:8
+int_kon_mimiclock_long_model = .data:0x008AB730; // type:object size:0x58 scope:global align:8
+int_kon_mimiclock_base_model = .data:0x008AB788; // type:object size:0x100 scope:global align:8
+int_kon_mimiclock_eye_model = .data:0x008AB888; // type:object size:0x58 scope:global align:8
+int_kon_mimiclock_short_model = .data:0x008AB8E0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_kon_mimiclock_tbl = .data:0x008AB938; // type:object size:0x7 scope:global align:4
+cKF_kn_int_kon_mimiclock_tbl = .data:0x008AB940; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_mimiclock_tbl = .data:0x008AB944; // type:object size:0x2E scope:global align:4
+cKF_ds_int_kon_mimiclock_tbl = .data:0x008AB974; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_kon_mimiclock = .data:0x008AB98C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_mimiclock_tbl = .data:0x008AB9A0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_kon_mimiclock = .data:0x008AB9F4; // type:object size:0x8 scope:global align:4
+int_kon_musya_pal = .data:0x008ABA00; // type:object size:0x20 scope:global align:32
+int_kon_musya_a_tex = .data:0x008ABA20; // type:object size:0x100 scope:global align:32
+int_kon_musya_b_tex = .data:0x008ABB20; // type:object size:0x100 scope:global align:32
+int_kon_musya_c_tex = .data:0x008ABC20; // type:object size:0x80 scope:global align:32
+int_kon_musya_d_tex = .data:0x008ABCA0; // type:object size:0x80 scope:global align:32
+int_kon_musya_e_tex = .data:0x008ABD20; // type:object size:0x80 scope:global align:32
+int_kon_musya_f_tex = .data:0x008ABDA0; // type:object size:0x100 scope:global align:32
+int_kon_musya_g_tex = .data:0x008ABEA0; // type:object size:0x80 scope:global align:32
+int_kon_musya_h_tex = .data:0x008ABF20; // type:object size:0x80 scope:global align:32
+int_kon_musya_i_tex = .data:0x008ABFA0; // type:object size:0x100 scope:global align:32
+int_kon_musya_j_tex = .data:0x008AC0A0; // type:object size:0x80 scope:global align:32
+int_kon_musya_k_tex = .data:0x008AC120; // type:object size:0x100 scope:global align:32
+int_kon_musya_v = .data:0x008AC220; // type:object size:0x520 scope:global align:8
+int_kon_musya_hako_on_model = .data:0x008AC740; // type:object size:0x68 scope:global align:8
+int_kon_musya_atama_on_model = .data:0x008AC7A8; // type:object size:0x60 scope:global align:8
+int_kon_musya_tare_onT_model = .data:0x008AC808; // type:object size:0x98 scope:global align:8
+int_kon_musya_dou_onT_model = .data:0x008AC8A0; // type:object size:0x90 scope:global align:8
+int_kon_musya_atama_onT_model = .data:0x008AC930; // type:object size:0x98 scope:global align:8
+int_kon_pound_pal = .data:0x008AC9E0; // type:object size:0x20 scope:global align:32
+int_kon_pound_suimen_tex_rgb_ci4_pal = .data:0x008ACA00; // type:object size:0x20 scope:global align:32
+int_kon_pound_rock_tex = .data:0x008ACA20; // type:object size:0x200 scope:global align:32
+int_kon_pound_gl_tex = .data:0x008ACC20; // type:object size:0x200 scope:global align:32
+int_kon_pound_soko_tex = .data:0x008ACE20; // type:object size:0x80 scope:global align:32 data:string
+int_kon_pound_flo_tex = .data:0x008ACEA0; // type:object size:0x200 scope:global align:32
+int_kon_pound_suimen_tex = .data:0x008AD0A0; // type:object size:0x80 scope:global align:32
+int_kon_pound_v = .data:0x008AD120; // type:object size:0x420 scope:global align:8
+int_kon_pound_on_model = .data:0x008AD540; // type:object size:0x58 scope:global align:8
+int_kon_pound_onT_model = .data:0x008AD598; // type:object size:0xE8 scope:global align:8
+int_kon_pound_alphaT_model = .data:0x008AD680; // type:object size:0x60 scope:global align:8
+int_kon_redclock_pal = .data:0x008AD6E0; // type:object size:0x20 scope:global align:32
+int_kon_redclock_e_tex_txt = .data:0x008AD700; // type:object size:0x80 scope:global align:32
+int_kon_redclock_d_tex_txt = .data:0x008AD780; // type:object size:0x80 scope:global align:32
+int_kon_redclock_f_tex_txt = .data:0x008AD800; // type:object size:0x100 scope:global align:32
+int_kon_redclock_b_tex_txt = .data:0x008AD900; // type:object size:0x80 scope:global align:32
+int_kon_redclock_a_tex_txt = .data:0x008AD980; // type:object size:0x400 scope:global align:32
+int_kon_redclock_c_tex_txt = .data:0x008ADD80; // type:object size:0x100 scope:global align:32
+int_kon_redclock_v = .data:0x008ADE80; // type:object size:0x2F0 scope:global align:8
+int_kon_redclock_long_model = .data:0x008AE170; // type:object size:0x58 scope:global align:8
+int_kon_redclock_base_model = .data:0x008AE1C8; // type:object size:0x128 scope:global align:8
+int_kon_redclock_short_model = .data:0x008AE2F0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_kon_redclock_tbl = .data:0x008AE348; // type:object size:0x5 scope:global align:4
+cKF_c_int_kon_redclock_tbl = .data:0x008AE350; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_kon_redclock = .data:0x008AE374; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_redclock_tbl = .data:0x008AE388; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_kon_redclock = .data:0x008AE3C4; // type:object size:0x8 scope:global align:4
+int_kon_sisiodosi_pal = .data:0x008AE3E0; // type:object size:0x20 scope:global align:32
+int_kon_sisiodosi_tutu_tex_txt = .data:0x008AE400; // type:object size:0x100 scope:global align:32
+int_kon_sisiodosi_soko_tex_txt = .data:0x008AE500; // type:object size:0x80 scope:global align:32
+int_kon_sisiodosi_mae_tex_txt = .data:0x008AE580; // type:object size:0x80 scope:global align:32
+int_kon_sisiodosi_tuti_tex_txt = .data:0x008AE600; // type:object size:0x80 scope:global align:32
+int_kon_sisiodosi_iwa_tex_txt = .data:0x008AE680; // type:object size:0x80 scope:global align:32
+int_kon_sisiodosi_koisi_tex_txt = .data:0x008AE700; // type:object size:0x400 scope:global align:32
+int_kon_sisiodosi_v = .data:0x008AEB00; // type:object size:0x3E0 scope:global align:8
+int_kon_sisiodisi_ue_model = .data:0x008AEEE0; // type:object size:0xA0 scope:global align:8
+int_kon_sisiodosi_sita_model = .data:0x008AEF80; // type:object size:0x170 scope:global align:8
+cKF_ckcb_r_int_kon_sisiodosi_tbl = .data:0x008AF0F0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_kon_sisiodosi_tbl = .data:0x008AF0F4; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_sisiodosi_tbl = .data:0x008AF0F8; // type:object size:0x16 scope:global align:4
+cKF_ds_int_kon_sisiodosi_tbl = .data:0x008AF110; // type:object size:0x4E scope:global align:4
+cKF_ba_r_int_kon_sisiodosi = .data:0x008AF160; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_sisiodosi_tbl = .data:0x008AF174; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_kon_sisiodosi = .data:0x008AF198; // type:object size:0x8 scope:global align:4
+int_kon_snowbed_tex_pal = .data:0x008AF1A0; // type:object size:0x20 scope:global align:32
+int_kon_snowbed01_tex = .data:0x008AF1C0; // type:object size:0x200 scope:global align:32
+int_kon_snowbed02_tex = .data:0x008AF3C0; // type:object size:0x300 scope:global align:32
+int_kon_snowbed03_tex = .data:0x008AF6C0; // type:object size:0x200 scope:global align:32
+int_kon_snowbed04_tex = .data:0x008AF8C0; // type:object size:0x100 scope:global align:32
+int_kon_snowbed_v = .data:0x008AF9C0; // type:object size:0x2D0 scope:global align:8
+int_kon_snoebed_on_model = .data:0x008AFC90; // type:object size:0xA0 scope:global align:8
+int_kon_snoebed_onT_model = .data:0x008AFD30; // type:object size:0x88 scope:global align:8
+int_kon_snowbox_tex_pal = .data:0x008AFDC0; // type:object size:0x20 scope:global align:32
+int_kon_snowbox05_tex_txt = .data:0x008AFDE0; // type:object size:0x200 scope:global align:32
+int_kon_snowbox07_tex_txt = .data:0x008AFFE0; // type:object size:0x80 scope:global align:32
+int_kon_snowbox03_tex_txt = .data:0x008B0060; // type:object size:0x100 scope:global align:32
+int_kon_snowbox04_tex_txt = .data:0x008B0160; // type:object size:0x80 scope:global align:32
+int_kon_snowbox06_tex_txt = .data:0x008B01E0; // type:object size:0x80 scope:global align:32
+int_kon_snowbox01_tex_txt = .data:0x008B0260; // type:object size:0x200 scope:global align:32
+int_kon_snowbox02_tex_txt = .data:0x008B0460; // type:object size:0x200 scope:global align:32
+int_kon_snowbox_v = .data:0x008B0660; // type:object size:0x3D0 scope:global align:8
+int_kon_snowbox_door_model = .data:0x008B0A30; // type:object size:0x80 scope:global align:8
+int_kon_snowbox_base_model = .data:0x008B0AB0; // type:object size:0xF8 scope:global align:8
+cKF_ckcb_r_int_kon_snowbox_tbl = .data:0x008B0BA8; // type:object size:0x3 scope:global align:4
+cKF_kn_int_kon_snowbox_tbl = .data:0x008B0BAC; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_snowbox_tbl = .data:0x008B0BB0; // type:object size:0x16 scope:global align:4
+cKF_ds_int_kon_snowbox_tbl = .data:0x008B0BC8; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_kon_snowbox = .data:0x008B0BF4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_snowbox_tbl = .data:0x008B0C08; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_kon_snowbox = .data:0x008B0C2C; // type:object size:0x8 scope:global align:4
+int_kon_snowclock_pal = .data:0x008B0C40; // type:object size:0x20 scope:global align:32
+int_kon_snowclock06_tex_txt = .data:0x008B0C60; // type:object size:0x80 scope:global align:32
+int_kon_snowclock05_tex_txt = .data:0x008B0CE0; // type:object size:0x80 scope:global align:32
+int_kon_snowclock07_tex_txt = .data:0x008B0D60; // type:object size:0x80 scope:global align:32
+int_kon_snowclock04_tex_txt = .data:0x008B0DE0; // type:object size:0x100 scope:global align:32
+int_kon_snowclock01_tex_txt = .data:0x008B0EE0; // type:object size:0x200 scope:global align:32
+int_kon_snowclock02_tex_txt = .data:0x008B10E0; // type:object size:0x200 scope:global align:32
+int_kon_snowclock03_tex_txt = .data:0x008B12E0; // type:object size:0x80 scope:global align:32
+int_kon_snowclock_v = .data:0x008B1360; // type:object size:0x410 scope:global align:8
+int_kon_snowclock_long_model = .data:0x008B1770; // type:object size:0x58 scope:global align:8
+int_kon_snowclock_body_model = .data:0x008B17C8; // type:object size:0xF0 scope:global align:8
+int_kon_snowclock_short_model = .data:0x008B18B8; // type:object size:0x58 scope:global align:8
+int_kon_snowclock_arm_model = .data:0x008B1910; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_kon_snowclock_tbl = .data:0x008B1988; // type:object size:0x8 scope:global align:4
+cKF_kn_int_kon_snowclock_tbl = .data:0x008B1990; // type:object size:0x18 scope:global align:4
+cKF_c_int_kon_snowclock_tbl = .data:0x008B19A8; // type:object size:0x1E scope:global align:4
+cKF_ds_int_kon_snowclock_tbl = .data:0x008B19C8; // type:object size:0xAE scope:global align:4
+cKF_ba_r_int_kon_snowclock = .data:0x008B1A78; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_snowclock_tbl = .data:0x008B1A8C; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_kon_snowclock = .data:0x008B1AEC; // type:object size:0x8 scope:global align:4
+int_kon_snowtansu_tex_pal = .data:0x008B1B00; // type:object size:0x20 scope:local align:32
+int_kon_snowfreezer01_tex = .data:0x008B1B20; // type:object size:0x300 scope:global align:32
+int_kon_snowfreezer02_tex = .data:0x008B1E20; // type:object size:0x180 scope:global align:32
+int_kon_snowfreezer04_tex = .data:0x008B1FA0; // type:object size:0x100 scope:global align:32
+int_kon_snowfreezer03_tex = .data:0x008B20A0; // type:object size:0x100 scope:global align:32
+int_kon_snowfreezer05_tex = .data:0x008B21A0; // type:object size:0x80 scope:global align:32
+int_kon_snowfreezer06_tex = .data:0x008B2220; // type:object size:0x80 scope:global align:32
+int_kon_snowfreezer_v = .data:0x008B22A0; // type:object size:0x360 scope:global align:8
+int_kon_snowfreezer01_body_model = .data:0x008B2600; // type:object size:0xC8 scope:global align:8
+int_kon_snowfreezer01_bodyT_model = .data:0x008B26C8; // type:object size:0x98 scope:global align:8
+int_kon_snowsofa_pal = .data:0x008B2760; // type:object size:0x20 scope:global align:32
+int_kon_snowsofa01_tex = .data:0x008B2780; // type:object size:0x400 scope:global align:32
+int_kon_snowsofa02_tex = .data:0x008B2B80; // type:object size:0x200 scope:global align:32
+int_kon_snowsofa03_tex = .data:0x008B2D80; // type:object size:0x100 scope:global align:32
+int_kon_snowsofa04_tex = .data:0x008B2E80; // type:object size:0x80 scope:global align:32
+int_kon_snowsofa_v = .data:0x008B2F00; // type:object size:0x320 scope:global align:8
+int_kon_snowsofa_model = .data:0x008B3220; // type:object size:0xD0 scope:global align:8
+int_kon_snowsofaT_model = .data:0x008B32F0; // type:object size:0x60 scope:global align:8
+int_kon_snowtable_tex_pal = .data:0x008B3360; // type:object size:0x20 scope:global align:32
+int_kon_snowtable01_tex = .data:0x008B3380; // type:object size:0x400 scope:global align:32
+int_kon_snowtable02_tex = .data:0x008B3780; // type:object size:0x80 scope:global align:32
+int_kon_snowtable03_tex = .data:0x008B3800; // type:object size:0x80 scope:global align:32
+int_kon_snowtable04_tex = .data:0x008B3880; // type:object size:0x80 scope:global align:32
+int_kon_snowtable_v = .data:0x008B3900; // type:object size:0x490 scope:global align:8
+in_kon_snowtable_on_model = .data:0x008B3D90; // type:object size:0xA8 scope:global align:8
+in_kon_snowtable_onT_model = .data:0x008B3E38; // type:object size:0x90 scope:global align:8
+int_kon_snowtansu_tex_pal = .data:0x008B3EE0; // type:object size:0x20 scope:local align:32
+int_kon_snowtansu04_tex_txt = .data:0x008B3F00; // type:object size:0x80 scope:global align:32
+int_kon_snowtansu06_tex_txt = .data:0x008B3F80; // type:object size:0x80 scope:global align:32
+int_kon_snowtansu05_tex_txt = .data:0x008B4000; // type:object size:0x80 scope:global align:32
+int_kon_snowtansu01_tex_txt = .data:0x008B4080; // type:object size:0x180 scope:global align:32
+int_kon_snowtansu02_tex_txt = .data:0x008B4200; // type:object size:0x180 scope:global align:32
+int_kon_snowtansu07_tex_txt = .data:0x008B4380; // type:object size:0x100 scope:global align:32
+int_kon_snowtansu03_tex_txt = .data:0x008B4480; // type:object size:0x80 scope:global align:32
+int_kon_snowtansu_v = .data:0x008B4500; // type:object size:0x400 scope:global align:8
+int_kon_snowtansu_hiki_model = .data:0x008B4900; // type:object size:0x90 scope:global align:8
+int_kon_snowtansu_base_model = .data:0x008B4990; // type:object size:0x108 scope:global align:8
+cKF_ckcb_r_int_kon_snowtansu_tbl = .data:0x008B4A98; // type:object size:0x3 scope:global align:4
+cKF_kn_int_kon_snowtansu_tbl = .data:0x008B4A9C; // type:object size:0x12 scope:global align:4
+cKF_c_int_kon_snowtansu_tbl = .data:0x008B4AB0; // type:object size:0x6 scope:global align:4
+cKF_ds_int_kon_snowtansu_tbl = .data:0x008B4AB8; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_kon_snowtansu = .data:0x008B4B24; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_snowtansu_tbl = .data:0x008B4B38; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_kon_snowtansu = .data:0x008B4B5C; // type:object size:0x8 scope:global align:4
+int_kon_snowtv_pal = .data:0x008B4B80; // type:object size:0x20 scope:global align:32
+int_kon_snowtv07a_TA_tex_txt = .data:0x008B4BA0; // type:object size:0x80 scope:global align:32
+int_kon_snowtv07b_TA_tex_txt = .data:0x008B4C20; // type:object size:0x80 scope:global align:32
+int_kon_snowtv07c_TA_tex_txt = .data:0x008B4CA0; // type:object size:0x80 scope:global align:32
+int_kon_snowtv07d_TA_tex_txt = .data:0x008B4D20; // type:object size:0x80 scope:global align:32
+int_kon_snowtv03_tex_txt = .data:0x008B4DA0; // type:object size:0x100 scope:global align:32
+int_kon_snowtv02_tex_txt = .data:0x008B4EA0; // type:object size:0x100 scope:global align:32
+int_kon_snowtv01_tex_txt = .data:0x008B4FA0; // type:object size:0x200 scope:global align:32
+int_kon_snowtv04_tex_txt = .data:0x008B51A0; // type:object size:0x80 scope:global align:32
+int_kon_snowtv06_tex_txt = .data:0x008B5220; // type:object size:0x80 scope:global align:32
+int_kon_snowtv05_tex_txt = .data:0x008B52A0; // type:object size:0x80 scope:global align:32
+int_kon_snowtv08_tex_txt = .data:0x008B5320; // type:object size:0x100 scope:global align:32
+int_kon_snowtv_v = .data:0x008B5420; // type:object size:0x420 scope:global align:8
+int_kon_snowtv_face_model = .data:0x008B5840; // type:object size:0x58 scope:global align:8
+int_kon_snowtv_body_model = .data:0x008B5898; // type:object size:0x148 scope:global align:8
+int_kon_taiju_pal = .data:0x008B59E0; // type:object size:0x20 scope:global align:32
+int_kon_taiju_a_tex = .data:0x008B5A00; // type:object size:0x80 scope:global align:32
+int_kon_taiju_kubi_tex = .data:0x008B5A80; // type:object size:0x80 scope:global align:32
+int_kon_taiju_mae_tex = .data:0x008B5B00; // type:object size:0x200 scope:global align:32
+int_kon_taiju_waki_tex = .data:0x008B5D00; // type:object size:0x80 scope:global align:32
+int_kon_taiju_sokumen_tex = .data:0x008B5D80; // type:object size:0x100 scope:global align:32
+int_kon_taiju_metal_tex = .data:0x008B5E80; // type:object size:0x80 scope:global align:32
+int_kon_taiju_dai2_tex = .data:0x008B5F00; // type:object size:0x200 scope:global align:32
+int_kon_taiju_v = .data:0x008B6100; // type:object size:0x3C0 scope:global align:8
+int_kon_taiju_on_model = .data:0x008B64C0; // type:object size:0xD8 scope:global align:8
+int_kon_taiju_onT_model = .data:0x008B6598; // type:object size:0xA0 scope:global align:8
+int_kon_tubo_pal = .data:0x008B6640; // type:object size:0x20 scope:global align:32
+int_kon_tubo_yoko_tex = .data:0x008B6660; // type:object size:0x200 scope:global align:32
+int_kon_tubo_huti_tex = .data:0x008B6860; // type:object size:0x40 scope:global align:32
+int_kon_tubo_yoko2_tex = .data:0x008B68A0; // type:object size:0x200 scope:global align:32
+int_kon_tubo_naka_tex = .data:0x008B6AA0; // type:object size:0x80 scope:global align:32
+int_kon_tubo_v = .data:0x008B6B20; // type:object size:0x420 scope:global align:8
+int_kon_tubo_on_model = .data:0x008B6F40; // type:object size:0xD0 scope:global align:8
+int_kon_tubo_onT_model = .data:0x008B7010; // type:object size:0x60 scope:global align:8
+int_kon_tubo2_pal = .data:0x008B7080; // type:object size:0x20 scope:global align:32
+int_kon_tubo2_hana_tex = .data:0x008B70A0; // type:object size:0x200 scope:global align:32
+int_kon_tubo2_aka_tex = .data:0x008B72A0; // type:object size:0x100 scope:global align:32
+int_kon_tubo2_aka2_tex = .data:0x008B73A0; // type:object size:0x200 scope:global align:32
+int_kon_tubo2_uti_tex = .data:0x008B75A0; // type:object size:0x80 scope:global align:32
+int_kon_tubo2_v = .data:0x008B7620; // type:object size:0x420 scope:global align:8
+int_kon_tubo2_on_model = .data:0x008B7A40; // type:object size:0xE0 scope:global align:8
+int_kon_tubo2_onT_model = .data:0x008B7B20; // type:object size:0x60 scope:global align:8
+int_kon_tubo3_pal = .data:0x008B7B80; // type:object size:0x20 scope:global align:32
+int_kon_tubo3_yoko_tex = .data:0x008B7BA0; // type:object size:0x200 scope:global align:32
+int_kon_tubo3_huti_tex = .data:0x008B7DA0; // type:object size:0x40 scope:global align:32
+int_kon_tubo3_yoko2_tex = .data:0x008B7DE0; // type:object size:0x400 scope:global align:32
+int_kon_tubo3_naka_tex = .data:0x008B81E0; // type:object size:0x80 scope:global align:32
+int_kon_tubo3_v = .data:0x008B8260; // type:object size:0x420 scope:global align:8
+int_kon_tubo3_on_model = .data:0x008B8680; // type:object size:0xD0 scope:global align:8
+int_kon_tubo3_onT_model = .data:0x008B8750; // type:object size:0x60 scope:global align:8
+int_kon_tukue_pal = .data:0x008B87C0; // type:object size:0x20 scope:global align:32
+int_kon_tukue_glass_tex_rgb_ci4_pal = .data:0x008B87E0; // type:object size:0x20 scope:global align:32
+int_kon_tukue_ue_tex = .data:0x008B8800; // type:object size:0x100 scope:global align:32
+int_kon_tukue_ue2_tex = .data:0x008B8900; // type:object size:0x100 scope:global align:32
+int_kon_tukue_tate_tex = .data:0x008B8A00; // type:object size:0x100 scope:global align:32
+int_kon_tukue_yoko_tex = .data:0x008B8B00; // type:object size:0x80 scope:global align:32
+int_kon_tukue_glass2_tex = .data:0x008B8B80; // type:object size:0x100 scope:global align:32
+int_kon_tukue_glass_tex = .data:0x008B8C80; // type:object size:0x200 scope:global align:32
+int_kon_tukue_v = .data:0x008B8E80; // type:object size:0x200 scope:global align:8
+int_kon_tukue_onT_model = .data:0x008B9080; // type:object size:0xB8 scope:global align:8
+int_kon_tukue_evwT_model = .data:0x008B9138; // type:object size:0x58 scope:global align:8
+obj_kon_tukue_alphaT_model = .data:0x008B9190; // type:object size:0x58 scope:global align:8
+int_kon_waclock_pal = .data:0x008B9200; // type:object size:0x20 scope:global align:32
+int_kon_waclock_g_tex_txt = .data:0x008B9220; // type:object size:0x100 scope:global align:32
+int_kon_waclock_f_tex_txt = .data:0x008B9320; // type:object size:0x100 scope:global align:32
+int_kon_waclock_e_tex_txt = .data:0x008B9420; // type:object size:0x80 scope:global align:32
+int_kon_waclock_d_tex_txt = .data:0x008B94A0; // type:object size:0x100 scope:global align:32
+int_kon_waclock_h_tex_txt = .data:0x008B95A0; // type:object size:0x80 scope:global align:32
+int_kon_waclock_b_tex_txt = .data:0x008B9620; // type:object size:0x100 scope:global align:32
+int_kon_waclock_c_tex_txt = .data:0x008B9720; // type:object size:0x80 scope:global align:32
+int_kon_waclock_a_tex_txt = .data:0x008B97A0; // type:object size:0x200 scope:global align:32
+int_kon_waclock_v = .data:0x008B99A0; // type:object size:0x340 scope:global align:8
+int_kon_waclock_base_model = .data:0x008B9CE0; // type:object size:0x120 scope:global align:8
+int_kon_waclock_huriko_model = .data:0x008B9E00; // type:object size:0x80 scope:global align:8
+int_kon_waclock_short_model = .data:0x008B9E80; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_kon_waclock_tbl = .data:0x008B9EE0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_kon_waclock_tbl = .data:0x008B9EE8; // type:object size:0x2 scope:global align:4
+cKF_c_int_kon_waclock_tbl = .data:0x008B9EEC; // type:object size:0x22 scope:global align:4
+cKF_ds_int_kon_waclock_tbl = .data:0x008B9F10; // type:object size:0x54 scope:global align:4
+cKF_ba_r_int_kon_waclock = .data:0x008B9F64; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_kon_waclock_tbl = .data:0x008B9F78; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_kon_waclock = .data:0x008B9FB4; // type:object size:0x8 scope:global align:4
+int_kon_xtree02_tex_pal = .data:0x008B9FC0; // type:object size:0x20 scope:global align:32
+int_kon_xtree02_side01_tex = .data:0x008B9FE0; // type:object size:0x200 scope:global align:32
+int_kon_xtree02_star_tex = .data:0x008BA1E0; // type:object size:0x100 scope:global align:32
+int_kon_xtree02_side02_tex = .data:0x008BA2E0; // type:object size:0x200 scope:global align:32
+int_kon_xtree02_prant_tex = .data:0x008BA4E0; // type:object size:0x100 scope:global align:32
+int_kon_xtree02_present_tex = .data:0x008BA5E0; // type:object size:0x200 scope:global align:32
+int_kon_xtree02_v = .data:0x008BA7E0; // type:object size:0x6C0 scope:global align:8
+int_kon_xtree02_on_model = .data:0x008BAEA0; // type:object size:0x68 scope:global align:8
+int_kon_xtree02_onT_model = .data:0x008BAF08; // type:object size:0x118 scope:global align:8
+rom_toudai_yuka_pal = .data:0x008BB020; // type:object size:0x20 scope:global align:32
+rom_toudai_kabe_pal = .data:0x008BB040; // type:object size:0x20 scope:global align:32
+rom_toudai_step_pal = .data:0x008BB060; // type:object size:0x20 scope:global align:32
+rom_toudai_meka_pal = .data:0x008BB080; // type:object size:0x20 scope:global align:32
+rom_toudai_ukiwa_pal = .data:0x008BB0A0; // type:object size:0x20 scope:global align:32
+rom_toudai_yuka_tex = .data:0x008BB0C0; // type:object size:0x800 scope:global align:32
+rom_toudai_kabeA_tex = .data:0x008BB8C0; // type:object size:0x800 scope:global align:32
+rom_toudai_kabeB_tex = .data:0x008BC0C0; // type:object size:0x800 scope:global align:32
+rom_toudai_step_tex = .data:0x008BC8C0; // type:object size:0x400 scope:global align:32
+rom_toudai_mekaA_tex = .data:0x008BCCC0; // type:object size:0x100 scope:global align:32
+rom_toudai_ukiwa_tex = .data:0x008BCDC0; // type:object size:0x200 scope:global align:32
+rom_toudai_kage1_tex = .data:0x008BCFC0; // type:object size:0x80 scope:global align:32
+rom_toudai_mekaC_tex = .data:0x008BD040; // type:object size:0x200 scope:global align:32
+rom_toudai_kage2_tex = .data:0x008BD240; // type:object size:0x80 scope:global align:32
+rom_toudai_v = .data:0x008BD2C0; // type:object size:0x670 scope:global align:8
+rom_toudai_modelT = .data:0x008BD930; // type:object size:0x8 scope:global align:8
+rom_toudai_model = .data:0x008BD938; // type:object size:0x1E8 scope:global align:8
+kan_tizu_c1_TA_tex_txt = .data:0x008BDB20; // type:object size:0x200 scope:global align:32
+kan_tizu_c1r1_TA_tex_txt = .data:0x008BDD20; // type:object size:0x200 scope:global align:32
+kan_tizu_c1s_TA_tex_txt = .data:0x008BDF20; // type:object size:0x200 scope:global align:32
+kan_tizu_c2_TA_tex_txt = .data:0x008BE120; // type:object size:0x200 scope:global align:32
+kan_tizu_c2r1_TA_tex_txt = .data:0x008BE320; // type:object size:0x200 scope:global align:32
+kan_tizu_c3r1_TA_tex_txt = .data:0x008BE520; // type:object size:0x200 scope:global align:32
+kan_tizu_c4r1_TA_tex_txt = .data:0x008BE720; // type:object size:0x200 scope:global align:32
+kan_tizu_c5r1_TA_tex_txt = .data:0x008BE920; // type:object size:0x200 scope:global align:32
+kan_tizu_c6_TA_tex_txt = .data:0x008BEB20; // type:object size:0x200 scope:global align:32
+kan_tizu_c6r1_TA_tex_txt = .data:0x008BED20; // type:object size:0x200 scope:global align:32
+kan_tizu_c6s_TA_tex_txt = .data:0x008BEF20; // type:object size:0x200 scope:global align:32
+kan_tizu_c7_TA_tex_txt = .data:0x008BF120; // type:object size:0x200 scope:global align:32
+kan_tizu_c7r1_TA_tex_txt = .data:0x008BF320; // type:object size:0x200 scope:global align:32
+kan_tizu_f_TA_tex_txt = .data:0x008BF520; // type:object size:0x200 scope:global align:32
+kan_tizu_r1_TA_tex_txt = .data:0x008BF720; // type:object size:0x200 scope:global align:32
+kan_tizu_r1b_TA_tex_txt = .data:0x008BF920; // type:object size:0x200 scope:global align:32
+kan_tizu_r2_TA_tex_txt = .data:0x008BFB20; // type:object size:0x200 scope:global align:32
+kan_tizu_r4_TA_tex_txt = .data:0x008BFD20; // type:object size:0x200 scope:global align:32
+kan_tizu_r5_TA_tex_txt = .data:0x008BFF20; // type:object size:0x200 scope:global align:32
+kan_tizu_r6_TA_tex_txt = .data:0x008C0120; // type:object size:0x200 scope:global align:32
+kan_tizu_r7_TA_tex_txt = .data:0x008C0320; // type:object size:0x200 scope:global align:32
+kan_tizu_c4_TA_tex_txt = .data:0x008C0520; // type:object size:0x200 scope:global align:32
+kan_tizu_c5_TA_tex_txt = .data:0x008C0720; // type:object size:0x200 scope:global align:32
+kan_tizu_c3_TA_tex_txt = .data:0x008C0920; // type:object size:0x200 scope:global align:32
+kan_tizu_r7b_TA_tex_txt = .data:0x008C0B20; // type:object size:0x200 scope:global align:32
+kan_tizu_c1r2_TA_tex_txt = .data:0x008C0D20; // type:object size:0x200 scope:global align:32
+kan_tizu_c2r2_TA_tex_txt = .data:0x008C0F20; // type:object size:0x200 scope:global align:32
+kan_tizu_c3r2_TA_tex_txt = .data:0x008C1120; // type:object size:0x200 scope:global align:32
+kan_tizu_c4r2_TA_tex_txt = .data:0x008C1320; // type:object size:0x200 scope:global align:32
+kan_tizu_c5r2_TA_tex_txt = .data:0x008C1520; // type:object size:0x200 scope:global align:32
+kan_tizu_c6r3_TA_tex_txt = .data:0x008C1720; // type:object size:0x200 scope:global align:32
+kan_tizu_c7r3_TA_tex_txt = .data:0x008C1920; // type:object size:0x200 scope:global align:32
+kan_tizu_c2s_TA_tex_txt = .data:0x008C1B20; // type:object size:0x200 scope:global align:32
+kan_tizu_c3s_TA_tex_txt = .data:0x008C1D20; // type:object size:0x200 scope:global align:32
+kan_tizu_c4s_TA_tex_txt = .data:0x008C1F20; // type:object size:0x200 scope:global align:32
+kan_tizu_c5s_TA_tex_txt = .data:0x008C2120; // type:object size:0x200 scope:global align:32
+kan_tizu_c7s_TA_tex_txt = .data:0x008C2320; // type:object size:0x200 scope:global align:32
+kan_tizu_r2b_TA_tex_txt = .data:0x008C2520; // type:object size:0x200 scope:global align:32
+kan_tizu_r4b_TA_tex_txt = .data:0x008C2720; // type:object size:0x200 scope:global align:32
+kan_tizu_r5b_TA_tex_txt = .data:0x008C2920; // type:object size:0x200 scope:global align:32
+kan_tizu_r6b_TA_tex_txt = .data:0x008C2B20; // type:object size:0x200 scope:global align:32
+kan_tizu_pr1_TA_tex_txt = .data:0x008C2D20; // type:object size:0x200 scope:global align:32
+kan_tizu_pr2_TA_tex_txt = .data:0x008C2F20; // type:object size:0x200 scope:global align:32
+kan_tizu_pr4_TA_tex_txt = .data:0x008C3120; // type:object size:0x200 scope:global align:32
+kan_tizu_pr5_TA_tex_txt = .data:0x008C3320; // type:object size:0x200 scope:global align:32
+kan_tizu_pr6_TA_tex_txt = .data:0x008C3520; // type:object size:0x200 scope:global align:32
+kan_tizu_pr7_TA_tex_txt = .data:0x008C3720; // type:object size:0x200 scope:global align:32
+kan_tizu_c3r1b_TA_tex_txt = .data:0x008C3920; // type:object size:0x200 scope:global align:32
+kan_tizu_c4r1b_TA_tex_txt = .data:0x008C3B20; // type:object size:0x200 scope:global align:32
+kan_tizu_c1r2b_TA_tex_txt = .data:0x008C3D20; // type:object size:0x200 scope:global align:32
+kan_tizu_c4r2b_TA_tex_txt = .data:0x008C3F20; // type:object size:0x200 scope:global align:32
+kan_tizu_c5r2b_TA_tex_txt = .data:0x008C4120; // type:object size:0x200 scope:global align:32
+kan_tizu_c6r1b_TA_tex_txt = .data:0x008C4320; // type:object size:0x200 scope:global align:32
+kan_tizu_c7r1b_TA_tex_txt = .data:0x008C4520; // type:object size:0x200 scope:global align:32
+kan_tizu_tst1_TA_tex_txt = .data:0x008C4720; // type:object size:0x200 scope:global align:32
+kan_tizu_tr1_TA_tex_txt = .data:0x008C4920; // type:object size:0x200 scope:global align:32
+kan_tizu_t_TA_tex_txt = .data:0x008C4B20; // type:object size:0x200 scope:global align:32
+kan_tizu_fsh_TA_tex_txt = .data:0x008C4D20; // type:object size:0x200 scope:global align:32
+kan_tizu_fpo_TA_tex_txt = .data:0x008C4F20; // type:object size:0x200 scope:global align:32
+kan_tizu_fpk_TA_tex_txt = .data:0x008C5120; // type:object size:0x200 scope:global align:32
+kan_tizu_fmh_TA_tex_txt = .data:0x008C5320; // type:object size:0x200 scope:global align:32
+kan_tizu_fko_TA_tex_txt = .data:0x008C5520; // type:object size:0x200 scope:global align:32
+kan_tizu_mr1_TA_tex_txt = .data:0x008C5720; // type:object size:0x200 scope:global align:32
+kan_tizu_m_TA_tex_txt = .data:0x008C5920; // type:object size:0x200 scope:global align:32
+kan_tizu_mr1b_TA_tex_txt = .data:0x008C5B20; // type:object size:0x200 scope:global align:32
+kan_tizu_tr1b_TA_tex_txt = .data:0x008C5D20; // type:object size:0x200 scope:global align:32
+kan_tizu_fta_TA_tex_txt = .data:0x008C5F20; // type:object size:0x200 scope:global align:32
+kan_tizu_mwf_TA_tex_txt = .data:0x008C6120; // type:object size:0x200 scope:global align:32
+kan_tizu_fmu_TA_tex_txt = .data:0x008C6320; // type:object size:0x200 scope:global align:32
+md_price_table = .data:0x008C6520; // type:object size:0x70 scope:global align:4
+rom_museum1_mado_pal = .data:0x008C65A0; // type:object size:0x20 scope:global align:32
+rom_museum1_step_pal = .data:0x008C65C0; // type:object size:0x20 scope:global align:32
+rom_museum1_floor_pal = .data:0x008C65E0; // type:object size:0x20 scope:global align:32
+rom_museum1_wall_pal = .data:0x008C6600; // type:object size:0x20 scope:global align:32
+rom_museum1_mado1_tex = .data:0x008C6620; // type:object size:0x800 scope:global align:32
+rom_museum1_step1_tex = .data:0x008C6E20; // type:object size:0x800 scope:global align:32
+rom_museum1_step2_tex = .data:0x008C7620; // type:object size:0x400 scope:global align:32
+rom_museum1_floorA_tex = .data:0x008C7A20; // type:object size:0x800 scope:global align:32
+rom_museum1_floorB_tex = .data:0x008C8220; // type:object size:0x800 scope:global align:32
+rom_museum1_mado2_tex = .data:0x008C8A20; // type:object size:0x800 scope:global align:32
+rom_museum1_sign1_tex = .data:0x008C9220; // type:object size:0x400 scope:global align:32
+rom_museum1_wallA_tex = .data:0x008C9620; // type:object size:0x800 scope:global align:32
+rom_museum1_wallB_tex = .data:0x008C9E20; // type:object size:0x800 scope:global align:32
+rom_museum1_sign2_tex = .data:0x008CA620; // type:object size:0x400 scope:global align:32
+rom_museum1_sign3_tex = .data:0x008CAA20; // type:object size:0x400 scope:global align:32
+rom_museum1_sign4_tex = .data:0x008CAE20; // type:object size:0x400 scope:global align:32
+rom_museum1_v = .data:0x008CB220; // type:object size:0x12C0 scope:global align:8
+rom_museum1_modelT = .data:0x008CC4E0; // type:object size:0x90 scope:global align:8
+rom_museum1_model = .data:0x008CC570; // type:object size:0x2F8 scope:global align:8
+museum_entrance_actable = .data:0x008CC868; // type:object size:0x48 scope:global align:4
+rom_museum5_on_pal = .data:0x008CC8C0; // type:object size:0x20 scope:global align:32
+rom_museum5_wall_pal = .data:0x008CC8E0; // type:object size:0x20 scope:local align:32
+rom_museum5_floor_pal = .data:0x008CC900; // type:object size:0x20 scope:global align:32
+rom_museum5_step_pal = .data:0x008CC920; // type:object size:0x20 scope:global align:32
+rom_museum5_ki_tex = .data:0x008CC940; // type:object size:0x200 scope:global align:32
+rom_museum5_wallA_tex = .data:0x008CCB40; // type:object size:0x800 scope:local align:32
+rom_museum5_floor_tex = .data:0x008CD340; // type:object size:0x800 scope:global align:32
+rom_museum5_step_tex = .data:0x008CDB40; // type:object size:0x800 scope:global align:32
+rom_museum5_isi_tex = .data:0x008CE340; // type:object size:0x200 scope:global align:32
+rom_museum5_plate_tex = .data:0x008CE540; // type:object size:0x200 scope:global align:32
+rom_museum5_v = .data:0x008CE740; // type:object size:0xD80 scope:global align:8
+rom_museum5_modelT = .data:0x008CF4C0; // type:object size:0x8 scope:global align:8
+rom_museum5_model = .data:0x008CF4C8; // type:object size:0x2D0 scope:global align:8
+rom_museum5_wall_pal = .data:0x008CF7A0; // type:object size:0x20 scope:local align:32
+rom_museum5_wallA_tex = .data:0x008CF7C0; // type:object size:0x800 scope:local align:32
+rom_museum5_wall_v = .data:0x008CFFC0; // type:object size:0x70 scope:global align:8
+rom_museum5_wall_model = .data:0x008D0030; // type:object size:0x58 scope:global align:8
+museum_fish_actable = .data:0x008D0088; // type:object size:0x30 scope:global align:4
+rom_museum2_wall_pal = .data:0x008D00C0; // type:object size:0x20 scope:global align:32
+rom_museum2_floor_pal = .data:0x008D00E0; // type:object size:0x20 scope:global align:32
+rom_museum2_step1_pal = .data:0x008D0100; // type:object size:0x20 scope:global align:32
+rom_museum2_wallA_tex = .data:0x008D0120; // type:object size:0x800 scope:global align:32
+rom_museum2_wallB_tex = .data:0x008D0920; // type:object size:0x800 scope:global align:32
+rom_museum2_floorA_tex = .data:0x008D1120; // type:object size:0x800 scope:global align:32
+rom_museum2_step1_tex = .data:0x008D1920; // type:object size:0x800 scope:global align:32
+rom_museum2_plate_tex = .data:0x008D2120; // type:object size:0x100 scope:global align:32
+rom_museum2_v = .data:0x008D2220; // type:object size:0x1100 scope:global align:8
+rom_museum2_modelT = .data:0x008D3320; // type:object size:0x8 scope:global align:8
+rom_museum2_model = .data:0x008D3328; // type:object size:0x330 scope:global align:8
+museum_fossil_actable = .data:0x008D3658; // type:object size:0x30 scope:global align:4
+rom_museum4_wall_pal = .data:0x008D36A0; // type:object size:0x20 scope:local align:32
+rom_museum4_floor_pal = .data:0x008D36C0; // type:object size:0x20 scope:global align:32
+rom_museum4_step_pal2 = .data:0x008D36E0; // type:object size:0x20 scope:global align:32
+rom_museum4_wallB_tex = .data:0x008D3700; // type:object size:0x400 scope:global align:32
+rom_museum4_step_tex = .data:0x008D3B00; // type:object size:0x800 scope:global align:32
+rom_museum4_wallA_tex = .data:0x008D4300; // type:object size:0x200 scope:local align:32
+rom_museum4_floorA_tex = .data:0x008D4500; // type:object size:0x800 scope:global align:32
+rom_museum4_v = .data:0x008D4D00; // type:object size:0x1510 scope:global align:8
+rom_museum4_model = .data:0x008D6210; // type:object size:0x408 scope:global align:8
+rom_museum4_wall_pal = .data:0x008D6620; // type:object size:0x20 scope:local align:32
+rom_museum4_wallA_tex = .data:0x008D6640; // type:object size:0x200 scope:local align:32
+rom_museum4_wall_v = .data:0x008D6840; // type:object size:0x70 scope:global align:8
+rom_museum4_wall_model = .data:0x008D68B0; // type:object size:0x58 scope:global align:8
+museum_insect_actable = .data:0x008D6908; // type:object size:0x30 scope:global align:4
+rom_museum3_wall_pal = .data:0x008D6940; // type:object size:0x20 scope:global align:32
+rom_museum3_back_pal = .data:0x008D6960; // type:object size:0x20 scope:global align:32
+rom_museum3_floor_pal = .data:0x008D6980; // type:object size:0x20 scope:global align:32
+rom_museum3_wallA_tex = .data:0x008D69A0; // type:object size:0x800 scope:global align:32
+rom_museum3_wallB_tex = .data:0x008D71A0; // type:object size:0x800 scope:global align:32
+rom_museum3_back_tex = .data:0x008D79A0; // type:object size:0x800 scope:global align:32
+rom_museum3_floorA_tex = .data:0x008D81A0; // type:object size:0x800 scope:global align:32
+rom_museum3_step_tex = .data:0x008D89A0; // type:object size:0x800 scope:global align:32
+rom_museum3_hasira_tex = .data:0x008D91A0; // type:object size:0x100 scope:global align:32
+rom_museum3_backside_tex = .data:0x008D92A0; // type:object size:0x180 scope:global align:32
+rom_museum3_v = .data:0x008D9420; // type:object size:0x11B0 scope:global align:8
+rom_museum3_modelT = .data:0x008DA5D0; // type:object size:0x8 scope:global align:8
+rom_museum3_model = .data:0x008DA5D8; // type:object size:0x340 scope:global align:8
+museum_picture_actable = .data:0x008DA918; // type:object size:0x30 scope:global align:4
+obj_myhome_step_pal = .data:0x008DA960; // type:object size:0x20 scope:global align:32
+obj_myhome_step_tex = .data:0x008DA980; // type:object size:0x800 scope:global align:32
+obj_myhome_step_down_v = .data:0x008DB180; // type:object size:0x180 scope:global align:8
+obj_myhome_step_down_model = .data:0x008DB300; // type:object size:0x78 scope:global align:8
+rom_myhome_pal = .data:0x008DB380; // type:object size:0x20 scope:local align:32
+rom_myhome_step_tex = .data:0x008DB3A0; // type:object size:0x800 scope:global align:32 data:string
+obj_myhome_step_up_v = .data:0x008DBBA0; // type:object size:0x140 scope:global align:8
+obj_myhome_step_up_model = .data:0x008DBCE0; // type:object size:0x70 scope:global align:8
+rom_tailor_wall_pal = .data:0x008DBD60; // type:object size:0x20 scope:global align:32
+rom_tailor_floor_pal = .data:0x008DBD80; // type:object size:0x20 scope:global align:32
+rom_tailor_mado_pal = .data:0x008DBDA0; // type:object size:0x20 scope:global align:32
+rom_tailor_reji_pal = .data:0x008DBDC0; // type:object size:0x20 scope:global align:32
+rom_tailor_dogu_pal = .data:0x008DBDE0; // type:object size:0x20 scope:global align:32
+rom_tailor_misin_pal = .data:0x008DBE00; // type:object size:0x20 scope:global align:32
+rom_tailor_table_pal = .data:0x008DBE20; // type:object size:0x20 scope:global align:32
+rom_tailor_box_pal = .data:0x008DBE40; // type:object size:0x20 scope:global align:32
+rom_tailor_quilt_pal = .data:0x008DBE60; // type:object size:0x20 scope:global align:32
+rom_tailor_ent_pal = .data:0x008DBE80; // type:object size:0x20 scope:global align:32
+rom_tailor_wallA_tex = .data:0x008DBEA0; // type:object size:0x800 scope:global align:32
+rom_tailor_wallB_tex = .data:0x008DC6A0; // type:object size:0x800 scope:global align:32
+rom_tailor_floorA_tex = .data:0x008DCEA0; // type:object size:0x800 scope:global align:32
+rom_tailor_floorB_tex = .data:0x008DD6A0; // type:object size:0x800 scope:global align:32
+rom_tailor_floorC_tex = .data:0x008DDEA0; // type:object size:0x800 scope:global align:32
+rom_tailor_floorD_tex = .data:0x008DE6A0; // type:object size:0x800 scope:global align:32
+rom_tailor_kage1_tex = .data:0x008DEEA0; // type:object size:0x100 scope:global align:32
+rom_tailor_mado_tex = .data:0x008DEFA0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic1_tex = .data:0x008DF1A0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic2_tex = .data:0x008DF3A0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic3_tex = .data:0x008DF5A0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic4_tex = .data:0x008DF7A0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic5_tex = .data:0x008DF9A0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic6_tex = .data:0x008DFBA0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic7_tex = .data:0x008DFDA0; // type:object size:0x200 scope:global align:32
+rom_tailor_pic8_tex = .data:0x008DFFA0; // type:object size:0x200 scope:global align:32
+rom_tailor_tyoki_tex = .data:0x008E01A0; // type:object size:0x100 scope:global align:32 data:string
+rom_tailor_cloth1_tex = .data:0x008E02A0; // type:object size:0x80 scope:global align:32 data:string
+rom_tailor_misin2_tex = .data:0x008E0320; // type:object size:0x200 scope:global align:32
+rom_tailor_table_mae_tex = .data:0x008E0520; // type:object size:0x100 scope:global align:32
+rom_tailor_table_yoko_tex = .data:0x008E0620; // type:object size:0x80 scope:global align:32
+rom_tailor_table_ue_tex = .data:0x008E06A0; // type:object size:0x100 scope:global align:32
+rom_tailor_ito_tex = .data:0x008E07A0; // type:object size:0x200 scope:global align:32
+rom_tailor_table_reji_tex = .data:0x008E09A0; // type:object size:0x80 scope:global align:32
+rom_tailor_misin1_tex = .data:0x008E0A20; // type:object size:0x200 scope:global align:32
+rom_tailor_misindai_tex = .data:0x008E0C20; // type:object size:0x200 scope:global align:32
+rom_tailor_table_misin1_tex = .data:0x008E0E20; // type:object size:0x100 scope:global align:32
+rom_tailor_reji_tex = .data:0x008E0F20; // type:object size:0x200 scope:global align:32
+rom_tailor_table_misin2_tex = .data:0x008E1120; // type:object size:0x80 scope:global align:32
+rom_tailor_box_tex = .data:0x008E11A0; // type:object size:0x100 scope:global align:32
+rom_tailor_box1_tex = .data:0x008E12A0; // type:object size:0x80 scope:global align:32
+rom_tailor_box2_tex = .data:0x008E1320; // type:object size:0x80 scope:global align:32
+rom_tailor_box3_tex = .data:0x008E13A0; // type:object size:0x80 scope:global align:32
+rom_tailor_box4_tex = .data:0x008E1420; // type:object size:0x80 scope:global align:32
+rom_tailor_box5_tex = .data:0x008E14A0; // type:object size:0x80 scope:global align:32
+rom_tailor_box6_tex = .data:0x008E1520; // type:object size:0x80 scope:global align:32
+rom_tailor_box7_tex = .data:0x008E15A0; // type:object size:0x80 scope:global align:32
+rom_tailor_box8_tex = .data:0x008E1620; // type:object size:0x80 scope:global align:32
+rom_tailor_kage2_tex = .data:0x008E16A0; // type:object size:0x80 scope:global align:32
+rom_tailor_quilt_tex = .data:0x008E1720; // type:object size:0x800 scope:global align:32
+rom_tailor_ent_tex = .data:0x008E1F20; // type:object size:0x100 scope:global align:32
+rom_tailor_misinbari1_tex = .data:0x008E2020; // type:object size:0x80 scope:global align:32
+rom_tailor_misinbari2_tex = .data:0x008E20A0; // type:object size:0x80 scope:global align:32
+rom_tailor_tape_tex = .data:0x008E2120; // type:object size:0x200 scope:global align:32
+rom_tailor_dogu1_tex = .data:0x008E2320; // type:object size:0x80 scope:global align:32
+rom_tailor_dogu2_tex = .data:0x008E23A0; // type:object size:0x80 scope:global align:32
+rom_tailor_v = .data:0x008E2420; // type:object size:0x1DE0 scope:global align:8
+rom_tailor_modelT = .data:0x008E4200; // type:object size:0x98 scope:global align:8
+rom_tailor_model = .data:0x008E4298; // type:object size:0x818 scope:global align:8
+needlework_actable = .data:0x008E4AB0; // type:object size:0x60 scope:global align:4
+int_nog_amenbo_pal = .data:0x008E4B20; // type:object size:0x20 scope:global align:32
+int_nog_amenbo_glass_tex_pic_ci4_pal = .data:0x008E4B40; // type:object size:0x20 scope:global align:32
+int_nog_amenbo_body_tex_txt = .data:0x008E4B60; // type:object size:0x100 scope:global align:32
+int_nog_amenbo_base_tex_txt = .data:0x008E4C60; // type:object size:0x80 scope:global align:32
+int_nog_amenbo_top_tex_txt = .data:0x008E4CE0; // type:object size:0x200 scope:global align:32
+int_nog_amenbo_side_tex_txt = .data:0x008E4EE0; // type:object size:0x200 scope:global align:32
+int_nog_amenbo_water_tex_txt = .data:0x008E50E0; // type:object size:0x80 scope:global align:32
+int_nog_amenbo_glass_tex_txt = .data:0x008E5160; // type:object size:0x100 scope:global align:32
+int_nog_amenbo_v = .data:0x008E5260; // type:object size:0x3B0 scope:global align:8
+int_nog_amenbo_body_model = .data:0x008E5610; // type:object size:0x60 scope:global align:8
+int_nog_amenbo_water_model = .data:0x008E5670; // type:object size:0x60 scope:global align:8
+int_nog_amenbo_side_model = .data:0x008E56D0; // type:object size:0x68 scope:global align:8
+int_nog_amenbo_komado_model = .data:0x008E5738; // type:object size:0x58 scope:global align:8
+int_nog_amenbo_glass_model = .data:0x008E5790; // type:object size:0x68 scope:global align:8
+int_nog_amenbo_base_model = .data:0x008E57F8; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_amenbo_tbl = .data:0x008E5898; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_amenbo_tbl = .data:0x008E58A0; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_amenbo_tbl = .data:0x008E58A8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_nog_amenbo_tbl = .data:0x008E58D4; // type:object size:0x132 scope:global align:4
+cKF_ba_r_int_nog_amenbo = .data:0x008E5A08; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_amenbo_tbl = .data:0x008E5A1C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_amenbo = .data:0x008E5A70; // type:object size:0x8 scope:global align:4
+int_nog_ari_pal = .data:0x008E5A80; // type:object size:0x20 scope:global align:32
+int_nog_ari_glass_tex_rgb_ci4_pal = .data:0x008E5AA0; // type:object size:0x20 scope:global align:32
+int_nog_ari_side_tex = .data:0x008E5AC0; // type:object size:0x200 scope:global align:32
+int_nog_ari_foot_tex = .data:0x008E5CC0; // type:object size:0x80 scope:global align:32
+int_nog_ari_face_tex = .data:0x008E5D40; // type:object size:0x300 scope:global align:32
+int_nog_ari_top_tex = .data:0x008E6040; // type:object size:0x100 scope:global align:32
+int_nog_ari_base_tex = .data:0x008E6140; // type:object size:0x80 scope:global align:32
+int_nog_ari_glass_tex_rgb_ci4 = .data:0x008E61C0; // type:object size:0x100 scope:global align:32
+int_nog_ari_v = .data:0x008E62C0; // type:object size:0x340 scope:global align:8
+int_nog_ari_on_model = .data:0x008E6600; // type:object size:0xC8 scope:global align:8
+int_nog_ari_env_model = .data:0x008E66C8; // type:object size:0x68 scope:global align:8
+int_nog_ari_onT_model = .data:0x008E6730; // type:object size:0x68 scope:global align:8
+int_nog_balloon1_pal = .data:0x008E67A0; // type:object size:0x20 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008E67C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon1_weight_tex_txt = .data:0x008E6840; // type:object size:0x100 scope:global align:32
+int_nog_balloon1_head_tex_rgb_ia8 = .data:0x008E6940; // type:object size:0x400 scope:global align:32
+int_nog_balloon1_v = .data:0x008E6D40; // type:object size:0x620 scope:global align:8
+int_nog_balloon1_weight_model = .data:0x008E7360; // type:object size:0x80 scope:global align:8
+int_nog_balloon1_a_model = .data:0x008E73E0; // type:object size:0x58 scope:global align:8
+int_nog_balloon1_b_model = .data:0x008E7438; // type:object size:0x98 scope:global align:8
+int_nog_balloon1_c_model = .data:0x008E74D0; // type:object size:0x98 scope:global align:8
+int_nog_balloon1_head_model = .data:0x008E7568; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_balloon1_tbl = .data:0x008E7608; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon1_tbl = .data:0x008E7610; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon1_tbl = .data:0x008E7620; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon1_tbl = .data:0x008E763C; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon1 = .data:0x008E7728; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon1_tbl = .data:0x008E773C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon1 = .data:0x008E7784; // type:object size:0x8 scope:global align:4
+int_nog_balloon2_pal = .data:0x008E77A0; // type:object size:0x20 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008E77C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon2_weight_tex_txt = .data:0x008E7840; // type:object size:0x100 scope:global align:32
+int_nog_balloon2_head_tex_rgb_ia8 = .data:0x008E7940; // type:object size:0x400 scope:global align:32
+int_nog_balloon2_v = .data:0x008E7D40; // type:object size:0x620 scope:global align:8
+int_nog_balloon2_weight_model = .data:0x008E8360; // type:object size:0x80 scope:global align:8
+int_nog_balloon2_a_model = .data:0x008E83E0; // type:object size:0x58 scope:global align:8
+int_nog_balloon2_b_model = .data:0x008E8438; // type:object size:0x98 scope:global align:8
+int_nog_balloon2_c_model = .data:0x008E84D0; // type:object size:0x98 scope:global align:8
+int_nog_balloon2_head_model = .data:0x008E8568; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_balloon2_tbl = .data:0x008E8608; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon2_tbl = .data:0x008E8610; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon2_tbl = .data:0x008E8620; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon2_tbl = .data:0x008E863C; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon2 = .data:0x008E8728; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon2_tbl = .data:0x008E873C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon2 = .data:0x008E8784; // type:object size:0x8 scope:global align:4
+int_nog_balloon3_pal = .data:0x008E87A0; // type:object size:0x20 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008E87C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon3_weight_tex_txt = .data:0x008E8840; // type:object size:0x100 scope:global align:32
+int_nog_balloon3_head_tex_rgb_ia8 = .data:0x008E8940; // type:object size:0x400 scope:global align:32
+int_nog_balloon3_v = .data:0x008E8D40; // type:object size:0x620 scope:global align:8
+int_nog_balloon3_weight_model = .data:0x008E9360; // type:object size:0x80 scope:global align:8
+int_nog_balloon3_a_model = .data:0x008E93E0; // type:object size:0x58 scope:global align:8
+int_nog_balloon3_b_model = .data:0x008E9438; // type:object size:0x98 scope:global align:8
+int_nog_balloon3_c_model = .data:0x008E94D0; // type:object size:0x98 scope:global align:8
+int_nog_balloon3_head_model = .data:0x008E9568; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_balloon3_tbl = .data:0x008E9608; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon3_tbl = .data:0x008E9610; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon3_tbl = .data:0x008E9620; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon3_tbl = .data:0x008E963C; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon3 = .data:0x008E9728; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon3_tbl = .data:0x008E973C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon3 = .data:0x008E9784; // type:object size:0x8 scope:global align:4
+int_nog_balloon4_pal = .data:0x008E97A0; // type:object size:0x20 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008E97C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon4_weight_tex_txt = .data:0x008E9840; // type:object size:0x100 scope:global align:32
+int_nog_balloon4_head_tex_rgb_ia8 = .data:0x008E9940; // type:object size:0x400 scope:global align:32
+int_nog_balloon4_v = .data:0x008E9D40; // type:object size:0x620 scope:global align:8
+int_nog_balloon4_weight_model = .data:0x008EA360; // type:object size:0x80 scope:global align:8
+int_nog_balloon4_a_model = .data:0x008EA3E0; // type:object size:0x58 scope:global align:8
+int_nog_balloon4_b_model = .data:0x008EA438; // type:object size:0x98 scope:global align:8
+int_nog_balloon4_c_model = .data:0x008EA4D0; // type:object size:0x98 scope:global align:8
+int_nog_balloon4_head_model = .data:0x008EA568; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_balloon4_tbl = .data:0x008EA608; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon4_tbl = .data:0x008EA610; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon4_tbl = .data:0x008EA620; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon4_tbl = .data:0x008EA63C; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon4 = .data:0x008EA728; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon4_tbl = .data:0x008EA73C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon4 = .data:0x008EA784; // type:object size:0x8 scope:global align:4
+int_nog_balloon5_pal = .data:0x008EA7A0; // type:object size:0x20 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008EA7C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon5_weight_tex_txt = .data:0x008EA840; // type:object size:0x100 scope:global align:32
+int_nog_balloon5_head_tex_rgb_ia8 = .data:0x008EA940; // type:object size:0x400 scope:global align:32
+int_nog_balloon5_v = .data:0x008EAD40; // type:object size:0x620 scope:global align:8
+int_nog_balloon5_weight_model = .data:0x008EB360; // type:object size:0x80 scope:global align:8
+int_nog_balloon5_a_model = .data:0x008EB3E0; // type:object size:0x58 scope:global align:8
+int_nog_balloon5_b_model = .data:0x008EB438; // type:object size:0x98 scope:global align:8
+int_nog_balloon5_c_model = .data:0x008EB4D0; // type:object size:0x98 scope:global align:8
+int_nog_balloon5_head_model = .data:0x008EB568; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_balloon5_tbl = .data:0x008EB608; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon5_tbl = .data:0x008EB610; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon5_tbl = .data:0x008EB620; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon5_tbl = .data:0x008EB63C; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon5 = .data:0x008EB728; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon5_tbl = .data:0x008EB73C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon5 = .data:0x008EB784; // type:object size:0x8 scope:global align:4
+int_nog_balloon6_pal = .data:0x008EB7A0; // type:object size:0x20 scope:global align:32
+int_nog_balloon6_weight_tex_txt = .data:0x008EB7C0; // type:object size:0x100 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008EB8C0; // type:object size:0x80 scope:local align:32
+int_nog_balloon65_head_tex_rgb_ia8 = .data:0x008EB940; // type:object size:0x400 scope:global align:32
+int_nog_balloon6_v = .data:0x008EBD40; // type:object size:0xE20 scope:global align:8
+int_nog_balloon6_weight_model = .data:0x008ECB60; // type:object size:0x80 scope:global align:8
+int_nog_balloon6_a_model = .data:0x008ECBE0; // type:object size:0x58 scope:global align:8
+int_nog_balloon6_b_model = .data:0x008ECC38; // type:object size:0x98 scope:global align:8
+int_nog_balloon6_c_model = .data:0x008ECCD0; // type:object size:0x98 scope:global align:8
+int_nog_balloon6_head_model = .data:0x008ECD68; // type:object size:0x168 scope:global align:8
+cKF_ckcb_r_int_nog_balloon6_tbl = .data:0x008ECED0; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon6_tbl = .data:0x008ECED8; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon6_tbl = .data:0x008ECEE8; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon6_tbl = .data:0x008ECF04; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon6 = .data:0x008ECFF0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon6_tbl = .data:0x008ED004; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon6 = .data:0x008ED04C; // type:object size:0x8 scope:global align:4
+int_nog_balloon7_pal = .data:0x008ED060; // type:object size:0x20 scope:global align:32
+int_nog_balloon7_weight_tex_txt = .data:0x008ED080; // type:object size:0x100 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008ED180; // type:object size:0x80 scope:local align:32
+int_nog_balloon75_head_tex_rgb_ia8 = .data:0x008ED200; // type:object size:0x400 scope:global align:32
+int_nog_balloon7_v = .data:0x008ED600; // type:object size:0xE20 scope:global align:8
+int_nog_balloon7_weight_model = .data:0x008EE420; // type:object size:0x80 scope:global align:8
+int_nog_balloon7_a_model = .data:0x008EE4A0; // type:object size:0x58 scope:global align:8
+int_nog_balloon7_b_model = .data:0x008EE4F8; // type:object size:0x98 scope:global align:8
+int_nog_balloon7_c_model = .data:0x008EE590; // type:object size:0x98 scope:global align:8
+int_nog_balloon7_head_model = .data:0x008EE628; // type:object size:0x168 scope:global align:8
+cKF_ckcb_r_int_nog_balloon7_tbl = .data:0x008EE790; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon7_tbl = .data:0x008EE798; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon7_tbl = .data:0x008EE7A8; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon7_tbl = .data:0x008EE7C4; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon7 = .data:0x008EE8B0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon7_tbl = .data:0x008EE8C4; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon7 = .data:0x008EE90C; // type:object size:0x8 scope:global align:4
+int_nog_balloon8_pal = .data:0x008EE920; // type:object size:0x20 scope:global align:32
+int_nog_balloon8_weight_tex_txt = .data:0x008EE940; // type:object size:0x100 scope:global align:32
+tol_balloon1_wire_tex_txt = .data:0x008EEA40; // type:object size:0x80 scope:local align:32
+int_nog_balloon85_head_tex_rgb_ia8 = .data:0x008EEAC0; // type:object size:0x400 scope:global align:32
+int_nog_balloon8_v = .data:0x008EEEC0; // type:object size:0xE20 scope:global align:8
+int_nog_balloon8_weight_model = .data:0x008EFCE0; // type:object size:0x80 scope:global align:8
+int_nog_balloon8_a_model = .data:0x008EFD60; // type:object size:0x58 scope:global align:8
+int_nog_balloon8_b_model = .data:0x008EFDB8; // type:object size:0x98 scope:global align:8
+int_nog_balloon8_c_model = .data:0x008EFE50; // type:object size:0x98 scope:global align:8
+int_nog_balloon8_head_model = .data:0x008EFEE8; // type:object size:0x168 scope:global align:8
+cKF_ckcb_r_int_nog_balloon8_tbl = .data:0x008F0050; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_balloon8_tbl = .data:0x008F0058; // type:object size:0x10 scope:global align:4
+cKF_c_int_nog_balloon8_tbl = .data:0x008F0068; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_balloon8_tbl = .data:0x008F0084; // type:object size:0xEA scope:global align:4
+cKF_ba_r_int_nog_balloon8 = .data:0x008F0170; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_balloon8_tbl = .data:0x008F0184; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_balloon8 = .data:0x008F01CC; // type:object size:0x8 scope:global align:4
+int_nog_beachbed_pal = .data:0x008F01E0; // type:object size:0x20 scope:global align:32
+int_nog_beachbed_body_tex = .data:0x008F0200; // type:object size:0x400 scope:global align:32
+int_nog_beachbed_side_tex = .data:0x008F0600; // type:object size:0x200 scope:global align:32
+int_nog_beachbed_v = .data:0x008F0800; // type:object size:0x340 scope:global align:8
+int_nog_beachbedT_model = .data:0x008F0B40; // type:object size:0x100 scope:global align:8
+int_nog_beachtable_pal = .data:0x008F0C40; // type:object size:0x20 scope:global align:32
+int_nog_beachtable_fruit_tex = .data:0x008F0C60; // type:object size:0x200 scope:global align:32
+int_nog_beachtable_pole_tex = .data:0x008F0E60; // type:object size:0x200 scope:global align:32
+int_nog_beachtable_top_tex = .data:0x008F1060; // type:object size:0x400 scope:global align:32
+int_nog_beachtable_bubble_tex_rgb_ci4 = .data:0x008F1460; // type:object size:0x80 scope:global align:32
+int_nog_beachtable_juice_tex = .data:0x008F14E0; // type:object size:0x100 scope:global align:32
+int_nog_beachtable_v = .data:0x008F15E0; // type:object size:0xC30 scope:global align:8
+int_nog_beachtable_bodyT_model = .data:0x008F2210; // type:object size:0x178 scope:global align:8
+int_nog_beachtable_glassT_model = .data:0x008F2388; // type:object size:0xD0 scope:global align:8
+int_nog_beachtable_bubbleT_model = .data:0x008F2458; // type:object size:0x60 scope:global align:8
+int_nog_bishopB_pal = .data:0x008F24C0; // type:object size:0x20 scope:global align:32
+int_nog_bishopB_base_tex = .data:0x008F24E0; // type:object size:0x200 scope:global align:32
+int_nog_bishopB_circle_tex = .data:0x008F26E0; // type:object size:0x80 scope:global align:32
+int_nog_bishopB_crown_tex = .data:0x008F2760; // type:object size:0x200 scope:global align:32
+int_nog_bishopB_v = .data:0x008F2960; // type:object size:0x2A0 scope:global align:8
+int_nog_bishopB_model = .data:0x008F2C00; // type:object size:0x78 scope:global align:8
+int_nog_bishopBT_model = .data:0x008F2C78; // type:object size:0x88 scope:global align:8
+int_nog_bishopW_pal = .data:0x008F2D00; // type:object size:0x20 scope:global align:32
+int_nog_bishopW_base_tex = .data:0x008F2D20; // type:object size:0x200 scope:global align:32
+int_nog_bishopW_circle_tex = .data:0x008F2F20; // type:object size:0x80 scope:global align:32
+int_nog_bishopW_crown_tex = .data:0x008F2FA0; // type:object size:0x200 scope:global align:32
+int_nog_bishopW_v = .data:0x008F31A0; // type:object size:0x2A0 scope:global align:8
+int_nog_bishopW_model = .data:0x008F3440; // type:object size:0x78 scope:global align:8
+int_nog_bishopWT_model = .data:0x008F34B8; // type:object size:0x88 scope:global align:8
+int_nog_burner_pal = .data:0x008F3540; // type:object size:0x20 scope:global align:32
+int_nog_burner_gas_tex = .data:0x008F3560; // type:object size:0x100 scope:global align:32
+int_nog_burner_side_tex = .data:0x008F3660; // type:object size:0x400 scope:global align:32
+int_nog_burner_top_tex = .data:0x008F3A60; // type:object size:0x200 scope:global align:32
+int_nog_burner_v = .data:0x008F3C60; // type:object size:0x6F0 scope:global align:8
+int_nog_burner_model = .data:0x008F4350; // type:object size:0x150 scope:global align:8
+int_nog_collegenote_pal = .data:0x008F44A0; // type:object size:0x20 scope:global align:32
+int_nog_collegenote_tex = .data:0x008F44C0; // type:object size:0x400 scope:global align:32
+int_nog_collegenote_v = .data:0x008F48C0; // type:object size:0x3D0 scope:global align:8
+int_nog_collegenote_model = .data:0x008F4C90; // type:object size:0xB8 scope:global align:8
+int_nog_cornucopia_pal = .data:0x008F4D60; // type:object size:0x20 scope:global align:32
+int_nog_cornucopia_pampB_tex = .data:0x008F4D80; // type:object size:0x80 scope:global align:32
+int_nog_cornucopia_pampC_tex = .data:0x008F4E00; // type:object size:0x80 scope:global align:32
+int_nog_cornucopia_pampD_tex = .data:0x008F4E80; // type:object size:0x80 scope:global align:32
+int_nog_cornucopia_runner_tex = .data:0x008F4F00; // type:object size:0x100 scope:global align:32
+int_nog_cornucopia_horn_tex = .data:0x008F5000; // type:object size:0x100 scope:global align:32
+int_nog_cornucopia_leafA_tex = .data:0x008F5100; // type:object size:0x80 scope:global align:32
+int_nog_cornucopia_leafB_tex = .data:0x008F5180; // type:object size:0x80 scope:global align:32
+int_nog_cornucopia_ear_tex = .data:0x008F5200; // type:object size:0x100 scope:global align:32
+int_nog_cornucopia_v = .data:0x008F5300; // type:object size:0x500 scope:global align:8
+int_nog_cornucopiaT_model = .data:0x008F5800; // type:object size:0x170 scope:global align:8
+int_nog_cosmos_grass_tex = .data:0x008F5980; // type:object size:0x80 scope:global align:32
+int_nog_cosmos_flower_tex = .data:0x008F5A00; // type:object size:0x100 scope:global align:32
+int_nog_cosmos_leaf_tex = .data:0x008F5B00; // type:object size:0x80 scope:global align:32
+int_nog_cosmos_v = .data:0x008F5B80; // type:object size:0x340 scope:global align:8
+int_nog_cosmos_model = .data:0x008F5EC0; // type:object size:0x58 scope:global align:8
+int_nog_cosmosT_model = .data:0x008F5F18; // type:object size:0xB0 scope:global align:8
+int_nog_dango_pal = .data:0x008F5FE0; // type:object size:0x20 scope:global align:32
+int_nog_dango_glass_tex_pic_ci4_pal = .data:0x008F6000; // type:object size:0x20 scope:global align:32
+int_nog_dango_body_tex_txt = .data:0x008F6020; // type:object size:0x100 scope:global align:32
+int_nog_dango_base_tex_txt = .data:0x008F6120; // type:object size:0x80 scope:global align:32
+int_nog_dango_top_tex_txt = .data:0x008F61A0; // type:object size:0x200 scope:global align:32
+int_nog_dango_side_tex_txt = .data:0x008F63A0; // type:object size:0x200 scope:global align:32
+int_nog_dango_glass_tex_txt = .data:0x008F65A0; // type:object size:0x100 scope:global align:32
+int_nog_dango_v = .data:0x008F66A0; // type:object size:0x360 scope:global align:8
+int_nog_dango_body_model = .data:0x008F6A00; // type:object size:0x60 scope:global align:8
+int_nog_dango_side_model = .data:0x008F6A60; // type:object size:0x68 scope:global align:8
+int_nog_dango_komado_model = .data:0x008F6AC8; // type:object size:0x58 scope:global align:8
+int_nog_dango_glass_model = .data:0x008F6B20; // type:object size:0x68 scope:global align:8
+int_nog_dango_base_model = .data:0x008F6B88; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_dango_tbl = .data:0x008F6C28; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_dango_tbl = .data:0x008F6C30; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_dango_tbl = .data:0x008F6C38; // type:object size:0x24 scope:global align:4
+cKF_ds_int_nog_dango_tbl = .data:0x008F6C5C; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_nog_dango = .data:0x008F6CB8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_dango_tbl = .data:0x008F6CCC; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_dango = .data:0x008F6D14; // type:object size:0x8 scope:global align:4
+int_nog_dump_pal = .data:0x008F6D20; // type:object size:0x20 scope:global align:32
+obj_item_trash_pal = .data:0x008F6D40; // type:object size:0x20 scope:local align:32
+int_nog_dump_body_tex = .data:0x008F6D60; // type:object size:0x200 scope:global align:32
+int_nog_dump_grass_tex = .data:0x008F6F60; // type:object size:0x200 scope:global align:32
+int_nog_dump_wire_tex = .data:0x008F7160; // type:object size:0x100 scope:global align:32
+int_nog_dump_v = .data:0x008F7260; // type:object size:0xDC0 scope:global align:8
+int_nog_dump_model = .data:0x008F8020; // type:object size:0x58 scope:global align:8
+int_nog_dumpT_model = .data:0x008F8078; // type:object size:0x220 scope:global align:8
+int_nog_earth_pal = .data:0x008F82A0; // type:object size:0x20 scope:global align:32
+int_nog_earth_tex = .data:0x008F82C0; // type:object size:0x200 scope:global align:32
+int_nog_earth_v = .data:0x008F84C0; // type:object size:0x40 scope:global align:8
+int_nog_earth_model = .data:0x008F8500; // type:object size:0x58 scope:global align:8
+int_nog_f_tree_pal = .data:0x008F8560; // type:object size:0x20 scope:global align:32
+int_nog_f_tree_grass_tex = .data:0x008F8580; // type:object size:0x80 scope:global align:32
+int_nog_f_tree_leaf_tex = .data:0x008F8600; // type:object size:0x200 scope:global align:32
+int_nog_f_tree_trunk_tex = .data:0x008F8800; // type:object size:0x400 scope:global align:32 data:string
+int_nog_f_tree_v = .data:0x008F8C00; // type:object size:0x520 scope:global align:8
+int_nog_f_tree_model = .data:0x008F9120; // type:object size:0x58 scope:global align:8
+int_nog_f_treeT_model = .data:0x008F9178; // type:object size:0x110 scope:global align:8
+int_nog_fan_pal = .data:0x008F92A0; // type:object size:0x20 scope:global align:32
+int_nog_fan_net_tex_txt = .data:0x008F92C0; // type:object size:0x200 scope:global align:32
+int_nog_fan_motor_tex_txt = .data:0x008F94C0; // type:object size:0x100 scope:global align:32
+int_nog_fan_hole_tex_txt = .data:0x008F95C0; // type:object size:0x80 scope:global align:32
+int_nog_fan_fan1_TA_tex_txt = .data:0x008F9640; // type:object size:0x100 scope:global align:32
+int_nog_fan_fan2_TA_tex_txt = .data:0x008F9740; // type:object size:0x100 scope:global align:32
+int_nog_fan_fan3_TA_tex_txt = .data:0x008F9840; // type:object size:0x100 scope:global align:32
+int_nog_fan_bace_tex_txt = .data:0x008F9940; // type:object size:0x200 scope:global align:32
+int_nog_fan_pole_tex_txt = .data:0x008F9B40; // type:object size:0x80 scope:global align:32
+int_nog_fan_v = .data:0x008F9BC0; // type:object size:0x2E0 scope:global align:8
+head_int_nog_fan_model = .data:0x008F9EA0; // type:object size:0xF8 scope:global align:8
+bece_int_nog_fan_model = .data:0x008F9F98; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_nog_fan_tbl = .data:0x008FA018; // type:object size:0x3 scope:global align:4
+cKF_kn_int_nog_fan_tbl = .data:0x008FA01C; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_fan_tbl = .data:0x008FA024; // type:object size:0x12 scope:global align:4
+cKF_ds_int_nog_fan_tbl = .data:0x008FA038; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_nog_fan = .data:0x008FA064; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_fan_tbl = .data:0x008FA078; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_nog_fan = .data:0x008FA09C; // type:object size:0x8 scope:global align:4
+int_nog_flat_pal = .data:0x008FA0C0; // type:object size:0x20 scope:global align:32
+int_nog_flat_tex = .data:0x008FA0E0; // type:object size:0x80 scope:global align:32
+int_nog_flat_v = .data:0x008FA160; // type:object size:0x40 scope:global align:8
+int_nog_flat_model = .data:0x008FA1A0; // type:object size:0x58 scope:global align:8
+int_nog_gong_pal = .data:0x008FA200; // type:object size:0x20 scope:global align:32
+int_nog_gong_bell_tex_txt = .data:0x008FA220; // type:object size:0x100 scope:global align:32
+int_nog_gong_spring_tex_txt = .data:0x008FA320; // type:object size:0x200 scope:global align:32
+int_nog_gong_hammer_tex_txt = .data:0x008FA520; // type:object size:0x100 scope:global align:32
+int_nog_gong_base_tex_txt = .data:0x008FA620; // type:object size:0x200 scope:global align:32
+int_nog_gong_v = .data:0x008FA820; // type:object size:0x2E0 scope:global align:8
+int_nog_gong_bell_model = .data:0x008FAB00; // type:object size:0x70 scope:global align:8
+int_nog_gong_base_model = .data:0x008FAB70; // type:object size:0x68 scope:global align:8
+int_nog_gong_spring_model = .data:0x008FABD8; // type:object size:0x58 scope:global align:8
+int_nog_gong_hammer_model = .data:0x008FAC30; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_nog_gong_tbl = .data:0x008FAC98; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_gong_tbl = .data:0x008FACA0; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_gong_tbl = .data:0x008FACA8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_nog_gong_tbl = .data:0x008FACD4; // type:object size:0x8A scope:global align:4
+cKF_ba_r_int_nog_gong = .data:0x008FAD60; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_gong_tbl = .data:0x008FAD74; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_gong = .data:0x008FADC8; // type:object size:0x8 scope:global align:4
+int_nog_harddiary_pal = .data:0x008FADE0; // type:object size:0x20 scope:global align:32
+int_nog_harddiary_tex = .data:0x008FAE00; // type:object size:0x400 scope:global align:32
+int_nog_harddiary_v = .data:0x008FB200; // type:object size:0x240 scope:global align:8
+int_nog_harddiaryT_model = .data:0x008FB440; // type:object size:0x90 scope:global align:8
+int_nog_isidai_pal = .data:0x008FB4E0; // type:object size:0x20 scope:local align:32
+int_nog_isidai_glass_tex_pic_ci4_pal = .data:0x008FB500; // type:object size:0x20 scope:global align:32
+int_nog_isidai_body_tex_txt = .data:0x008FB520; // type:object size:0x300 scope:global align:32
+int_nog_isidai_top_tex_txt = .data:0x008FB820; // type:object size:0x100 scope:global align:32
+int_nog_isidai_side_tex_txt = .data:0x008FB920; // type:object size:0x200 scope:global align:32
+int_nog_isidai_base_tex_txt = .data:0x008FBB20; // type:object size:0x80 scope:global align:32 data:string
+int_nog_isidai_glass_tex_txt = .data:0x008FBBA0; // type:object size:0x100 scope:global align:32
+int_nog_isidai_v = .data:0x008FBCA0; // type:object size:0x390 scope:global align:8
+int_nog_isidai_sakana_model = .data:0x008FC030; // type:object size:0x90 scope:global align:8
+int_sum_isidai_top_model = .data:0x008FC0C0; // type:object size:0x58 scope:global align:8
+int_sum_isidai_evw_model = .data:0x008FC118; // type:object size:0x68 scope:global align:8
+int_sum_isidai_base_model = .data:0x008FC180; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_nog_isidai_tbl = .data:0x008FC210; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_isidai_tbl = .data:0x008FC218; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_isidai_tbl = .data:0x008FC220; // type:object size:0x1E scope:global align:4
+cKF_ds_int_nog_isidai_tbl = .data:0x008FC240; // type:object size:0x4E scope:global align:4
+cKF_ba_r_int_nog_isidai = .data:0x008FC290; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_isidai_tbl = .data:0x008FC2A4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_isidai = .data:0x008FC2E0; // type:object size:0x8 scope:global align:4
+int_nog_ka_pal = .data:0x008FC300; // type:object size:0x20 scope:global align:32
+int_nog_ka_glass_tex_pic_ci4_pal = .data:0x008FC320; // type:object size:0x20 scope:global align:32
+int_nog_ka_body_tex_txt = .data:0x008FC340; // type:object size:0x180 scope:global align:32
+int_nog_ka_side_tex_txt = .data:0x008FC4C0; // type:object size:0x200 scope:global align:32
+int_nog_ka_base_tex_txt = .data:0x008FC6C0; // type:object size:0x80 scope:global align:32
+int_nog_ka_top_tex_txt = .data:0x008FC740; // type:object size:0x200 scope:global align:32
+int_nog_ka_glass_tex_txt = .data:0x008FC940; // type:object size:0x100 scope:global align:32
+int_nog_ka_v = .data:0x008FCA40; // type:object size:0x410 scope:global align:8
+int_nog_ka_wing_model = .data:0x008FCE50; // type:object size:0x60 scope:global align:8
+int_nog_ka_body_model = .data:0x008FCEB0; // type:object size:0x60 scope:global align:8
+int_nog_ka_side_model = .data:0x008FCF10; // type:object size:0x68 scope:global align:8
+int_nog_ka_komado_model = .data:0x008FCF78; // type:object size:0x58 scope:global align:8
+int_nog_ka_glass_model = .data:0x008FCFD0; // type:object size:0x68 scope:global align:8
+int_nog_ka_base_model = .data:0x008FD038; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_ka_tbl = .data:0x008FD0D8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_ka_tbl = .data:0x008FD0E0; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_ka_tbl = .data:0x008FD0E8; // type:object size:0x2A scope:global align:4
+cKF_ds_int_nog_ka_tbl = .data:0x008FD114; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_nog_ka = .data:0x008FD170; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_ka_tbl = .data:0x008FD184; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_ka = .data:0x008FD1D8; // type:object size:0x8 scope:global align:4
+int_nog_kaeru_pal = .data:0x008FD1E0; // type:object size:0x20 scope:local align:32
+int_nog_kaeru_glass_tex_pic_ci4_pal = .data:0x008FD200; // type:object size:0x20 scope:global align:32
+act_mus_kaeru_a1_body_tex_txt = .data:0x008FD220; // type:object size:0x800 scope:local align:32
+act_mus_kaeru_a1_foot_tex_txt = .data:0x008FDA20; // type:object size:0x800 scope:local align:32
+int_nog_kaeru_top_tex_txt = .data:0x008FE220; // type:object size:0x100 scope:global align:32
+int_nog_kaeru_side_tex_txt = .data:0x008FE320; // type:object size:0x200 scope:global align:32
+int_nog_kaeru_base_tex_txt = .data:0x008FE520; // type:object size:0x80 scope:global align:32 data:string
+int_nog_kaeru_etc_tex_txt = .data:0x008FE5A0; // type:object size:0x80 scope:global align:32
+int_nog_kaeru_glass_tex_txt = .data:0x008FE620; // type:object size:0x100 scope:global align:32
+int_nog_kaeru_v = .data:0x008FE720; // type:object size:0x940 scope:global align:8
+int_sum_kaeru_hara_model = .data:0x008FF060; // type:object size:0x98 scope:global align:8
+int_sum_kaeru_foot_model = .data:0x008FF0F8; // type:object size:0x58 scope:global align:8
+int_sum_kaeru_body_model = .data:0x008FF150; // type:object size:0xD0 scope:global align:8
+int_sum_kaeru_top_model = .data:0x008FF220; // type:object size:0x58 scope:global align:8
+int_sum_kaeru_leg_model = .data:0x008FF278; // type:object size:0x58 scope:global align:8
+int_sum_kaeru_evw_model = .data:0x008FF2D0; // type:object size:0x68 scope:global align:8
+int_sum_kaeru_base_model = .data:0x008FF338; // type:object size:0xC0 scope:global align:8
+cKF_ckcb_r_int_nog_kaeru_tbl = .data:0x008FF3F8; // type:object size:0x8 scope:global align:4
+cKF_kn_int_nog_kaeru_tbl = .data:0x008FF400; // type:object size:0x2 scope:global align:4
+cKF_c_int_nog_kaeru_tbl = .data:0x008FF404; // type:object size:0x34 scope:global align:4
+cKF_ds_int_nog_kaeru_tbl = .data:0x008FF438; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_nog_kaeru = .data:0x008FF450; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_kaeru_tbl = .data:0x008FF464; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_nog_kaeru = .data:0x008FF4C4; // type:object size:0x8 scope:global align:4
+int_nog_kamakura_pal = .data:0x008FF4E0; // type:object size:0x20 scope:global align:32
+int_nog_kamakura_body_tex = .data:0x008FF500; // type:object size:0x400 scope:global align:32
+int_nog_kamakura_grass_tex = .data:0x008FF900; // type:object size:0x200 scope:global align:32
+int_nog_kamakura_v = .data:0x008FFB00; // type:object size:0x230 scope:global align:8
+int_nog_kamakura_on_model = .data:0x008FFD30; // type:object size:0x58 scope:global align:8
+int_nog_kamakura_offT_model = .data:0x008FFD88; // type:object size:0x58 scope:global align:8
+int_nog_kamakura_onT_model = .data:0x008FFDE0; // type:object size:0x90 scope:global align:8
+int_nog_kera_pal = .data:0x008FFE80; // type:object size:0x20 scope:global align:32
+int_nog_kera_glass_tex_pic_ci4_pal = .data:0x008FFEA0; // type:object size:0x20 scope:global align:32
+int_nog_kera_body_tex_txt = .data:0x008FFEC0; // type:object size:0x100 scope:global align:32
+int_nog_kera_base_tex_txt = .data:0x008FFFC0; // type:object size:0x80 scope:global align:32
+int_nog_kera_top_tex_txt = .data:0x00900040; // type:object size:0x200 scope:global align:32
+int_nog_kera_side_tex_txt = .data:0x00900240; // type:object size:0x200 scope:global align:32
+int_nog_kera_glass_tex_txt = .data:0x00900440; // type:object size:0x100 scope:global align:32
+int_nog_kera_v = .data:0x00900540; // type:object size:0x370 scope:global align:8
+int_nog_kera_body_model = .data:0x009008B0; // type:object size:0x60 scope:global align:8
+int_nog_kera_side_model = .data:0x00900910; // type:object size:0x68 scope:global align:8
+int_nog_kera_komado_model = .data:0x00900978; // type:object size:0x58 scope:global align:8
+int_nog_kera_glass_model = .data:0x009009D0; // type:object size:0x68 scope:global align:8
+int_nog_kera_base_model = .data:0x00900A38; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_kera_tbl = .data:0x00900AD8; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_kera_tbl = .data:0x00900AE0; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_kera_tbl = .data:0x00900AE8; // type:object size:0x24 scope:global align:4
+cKF_ds_int_nog_kera_tbl = .data:0x00900B0C; // type:object size:0x11A scope:global align:4
+cKF_ba_r_int_nog_kera = .data:0x00900C28; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_kera_tbl = .data:0x00900C3C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_kera = .data:0x00900C84; // type:object size:0x8 scope:global align:4
+int_nog_kingB_pal = .data:0x00900CA0; // type:object size:0x20 scope:global align:32
+int_nog_kingB_base_tex = .data:0x00900CC0; // type:object size:0x200 scope:global align:32
+int_nog_kingB_circle_tex = .data:0x00900EC0; // type:object size:0x80 scope:global align:32
+int_nog_kingB_crown_tex = .data:0x00900F40; // type:object size:0x200 scope:global align:32
+int_nog_kingB_v = .data:0x00901140; // type:object size:0x3F0 scope:global align:8
+int_nog_kingB_model = .data:0x00901530; // type:object size:0x78 scope:global align:8
+int_nog_kingBT_model = .data:0x009015A8; // type:object size:0xA0 scope:global align:8
+int_nog_kingW_pal = .data:0x00901660; // type:object size:0x20 scope:global align:32
+int_nog_kingW_base_tex = .data:0x00901680; // type:object size:0x200 scope:global align:32
+int_nog_kingW_circle_tex = .data:0x00901880; // type:object size:0x80 scope:global align:32
+int_nog_kingW_crown_tex = .data:0x00901900; // type:object size:0x200 scope:global align:32
+int_nog_kingW_v = .data:0x00901B00; // type:object size:0x3F0 scope:global align:8
+int_nog_kingW_model = .data:0x00901EF0; // type:object size:0x78 scope:global align:8
+int_nog_kingWT_model = .data:0x00901F68; // type:object size:0xA0 scope:global align:8
+int_nog_knightB_pal = .data:0x00902020; // type:object size:0x20 scope:global align:32
+int_nog_knightB_head_tex = .data:0x00902040; // type:object size:0x400 scope:global align:32
+int_nog_knightB_top_tex = .data:0x00902440; // type:object size:0x80 scope:global align:32
+int_nog_knightB_v = .data:0x009024C0; // type:object size:0x3E0 scope:global align:8
+int_nog_knightBT_model = .data:0x009028A0; // type:object size:0xD8 scope:global align:8
+int_nog_knightW_pal = .data:0x00902980; // type:object size:0x20 scope:global align:32
+int_nog_knightW_head_tex = .data:0x009029A0; // type:object size:0x400 scope:global align:32
+int_nog_knightW_top_tex = .data:0x00902DA0; // type:object size:0x80 scope:global align:32
+int_nog_knightW_v = .data:0x00902E20; // type:object size:0x3E0 scope:global align:8
+int_nog_knightWT_model = .data:0x00903200; // type:object size:0xE0 scope:global align:8
+int_nog_kouban_pal = .data:0x009032E0; // type:object size:0x20 scope:global align:32
+int_nog_koban_body_tex = .data:0x00903300; // type:object size:0x400 scope:global align:32
+int_nog_koban_grass_tex = .data:0x00903700; // type:object size:0x80 scope:global align:32
+int_nog_koban_roof2_tex = .data:0x00903780; // type:object size:0x180 scope:global align:32
+int_nog_koban_roof_tex = .data:0x00903900; // type:object size:0x200 scope:global align:32
+int_nog_koban_v = .data:0x00903B00; // type:object size:0x330 scope:global align:8
+int_nog_koban_on_model = .data:0x00903E30; // type:object size:0x58 scope:global align:8
+int_nog_koban_onT_model = .data:0x00903E88; // type:object size:0xC8 scope:global align:8
+int_nog_koban_offT_model = .data:0x00903F50; // type:object size:0x68 scope:global align:8
+int_nog_kumo_pal = .data:0x00903FC0; // type:object size:0x20 scope:global align:32
+int_nog_kumo_glass_tex_pic_ci4_pal = .data:0x00903FE0; // type:object size:0x20 scope:global align:32
+int_nog_kumo_body_tex_txt = .data:0x00904000; // type:object size:0x200 scope:global align:32
+int_nog_kumo_side_tex_txt = .data:0x00904200; // type:object size:0x200 scope:global align:32
+int_nog_kumo_base_tex_txt = .data:0x00904400; // type:object size:0x80 scope:global align:32
+int_nog_kumo_top_tex_txt = .data:0x00904480; // type:object size:0x200 scope:global align:32
+int_nog_kumo_glass_tex_txt = .data:0x00904680; // type:object size:0x100 scope:global align:32
+int_nog_kumo_v = .data:0x00904780; // type:object size:0x460 scope:global align:8
+int_nog_kumo_body_model = .data:0x00904BE0; // type:object size:0x60 scope:global align:8
+int_nog_kumo_side_model = .data:0x00904C40; // type:object size:0x68 scope:global align:8
+int_nog_kumo_komado_model = .data:0x00904CA8; // type:object size:0x58 scope:global align:8
+int_nog_kumo_glass_model = .data:0x00904D00; // type:object size:0x68 scope:global align:8
+int_nog_kumo_base_model = .data:0x00904D68; // type:object size:0xA0 scope:global align:8
+int_nog_kumo_net_model = .data:0x00904E08; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_nog_kumo_tbl = .data:0x00904E68; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_kumo_tbl = .data:0x00904E70; // type:object size:0x2 scope:global align:4
+cKF_c_int_nog_kumo_tbl = .data:0x00904E74; // type:object size:0x2E scope:global align:4
+cKF_ds_int_nog_kumo_tbl = .data:0x00904EA4; // type:object size:0x66 scope:global align:4
+cKF_ba_r_int_nog_kumo = .data:0x00904F0C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_kumo_tbl = .data:0x00904F20; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_kumo = .data:0x00904F74; // type:object size:0x8 scope:global align:4
+int_nog_kurage_pal = .data:0x00904F80; // type:object size:0x20 scope:global align:32
+int_nog_kurage_glass_tex_pic_ci4_pal = .data:0x00904FA0; // type:object size:0x20 scope:global align:32
+int_nog_kurage_head_tex_txt = .data:0x00904FC0; // type:object size:0x100 scope:global align:32
+int_nog_kurage_foot_tex_txt = .data:0x009050C0; // type:object size:0x100 scope:global align:32
+int_nog_kurage_side_tex_txt = .data:0x009051C0; // type:object size:0x200 scope:global align:32
+int_nog_kurage_base_tex_txt = .data:0x009053C0; // type:object size:0x80 scope:global align:32
+int_nog_kurage_top_tex_txt = .data:0x00905440; // type:object size:0x100 scope:global align:32
+int_nog_kurage_glass_tex_pic_ci4 = .data:0x00905540; // type:object size:0x100 scope:global align:32
+int_nog_kurage_v = .data:0x00905640; // type:object size:0x3E0 scope:global align:8
+int_nog_kurage_head_model = .data:0x00905A20; // type:object size:0x70 scope:global align:8
+int_sum_kurage_top_model = .data:0x00905A90; // type:object size:0x58 scope:global align:8
+int_sum_kurage_evw_model = .data:0x00905AE8; // type:object size:0x68 scope:global align:8
+int_sum_kurage_base_model = .data:0x00905B50; // type:object size:0x90 scope:global align:8
+int_nog_kurage_foot_model = .data:0x00905BE0; // type:object size:0x70 scope:global align:8
+cKF_ckcb_r_int_nog_kurage_tbl = .data:0x00905C50; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_kurage_tbl = .data:0x00905C58; // type:object size:0x16 scope:global align:4
+cKF_c_int_nog_kurage_tbl = .data:0x00905C70; // type:object size:0x1A scope:global align:4
+cKF_ds_int_nog_kurage_tbl = .data:0x00905C8C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_nog_kurage = .data:0x00905D28; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_kurage_tbl = .data:0x00905D3C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_kurage = .data:0x00905D90; // type:object size:0x8 scope:global align:4
+int_nog_lawnmower_pal = .data:0x00905DA0; // type:object size:0x20 scope:global align:32
+int_nog_lawnmowre_body_tex = .data:0x00905DC0; // type:object size:0x400 scope:global align:32
+int_nog_lawnmowre_handle_tex = .data:0x009061C0; // type:object size:0x400 scope:global align:32
+int_nog_lawnmower_fade_tex_rgb_i4 = .data:0x009065C0; // type:object size:0x80 scope:global align:32
+int_nog_lawnmower_grass_tex_rgb_i4 = .data:0x00906640; // type:object size:0x80 scope:global align:32
+int_nog_lawnmower_v = .data:0x009066C0; // type:object size:0x830 scope:global align:8
+int_nog_lawnmower_grass_model = .data:0x00906EF0; // type:object size:0x68 scope:global align:8
+int_nog_lawnmower_bodyT_model = .data:0x00906F58; // type:object size:0x138 scope:global align:8
+int_nog_maimai_pal = .data:0x009070A0; // type:object size:0x20 scope:global align:32
+int_nog_maimai_glass_tex_pic_ci4_pal = .data:0x009070C0; // type:object size:0x20 scope:global align:32
+int_nog_maimai_body_tex_txt = .data:0x009070E0; // type:object size:0x200 scope:global align:32
+int_nog_maimai_base_tex_txt = .data:0x009072E0; // type:object size:0x80 scope:global align:32
+int_nog_maimai_top_tex_txt = .data:0x00907360; // type:object size:0x200 scope:global align:32
+int_nog_maimai_side_tex_txt = .data:0x00907560; // type:object size:0x200 scope:global align:32
+int_nog_maimai_glass_tex_txt = .data:0x00907760; // type:object size:0x100 scope:global align:32
+int_nog_maimai_v = .data:0x00907860; // type:object size:0x410 scope:global align:8
+int_nog_maimai_body_model = .data:0x00907C70; // type:object size:0x68 scope:global align:8
+int_nog_maimai_side_model = .data:0x00907CD8; // type:object size:0x68 scope:global align:8
+int_nog_maimai_komado_model = .data:0x00907D40; // type:object size:0x58 scope:global align:8
+int_nog_maimai_glass_model = .data:0x00907D98; // type:object size:0x68 scope:global align:8
+int_nog_maimai_base_model = .data:0x00907E00; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_nog_maimai_tbl = .data:0x00907EA0; // type:object size:0x6 scope:global align:4
+cKF_kn_int_nog_maimai_tbl = .data:0x00907EA8; // type:object size:0x2 scope:global align:4
+cKF_c_int_nog_maimai_tbl = .data:0x00907EAC; // type:object size:0x28 scope:global align:4
+cKF_ds_int_nog_maimai_tbl = .data:0x00907ED4; // type:object size:0x12 scope:global align:4
+cKF_ba_r_int_nog_maimai = .data:0x00907EE8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_maimai_tbl = .data:0x00907EFC; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_nog_maimai = .data:0x00907F44; // type:object size:0x8 scope:global align:4
+int_nog_medaka_pal = .data:0x00907F60; // type:object size:0x20 scope:local align:32
+int_nog_medaka_glass_tex_pic_ci4_pal = .data:0x00907F80; // type:object size:0x20 scope:global align:32
+int_nog_medaka_body_tex_txt = .data:0x00907FA0; // type:object size:0x100 scope:global align:32
+int_nog_medaka_top_tex_txt = .data:0x009080A0; // type:object size:0x100 scope:global align:32
+int_nog_medaka_side_tex_txt = .data:0x009081A0; // type:object size:0x200 scope:global align:32
+int_nog_medaka_base_tex_txt = .data:0x009083A0; // type:object size:0x80 scope:global align:32 data:string
+int_nog_medaka_etc_tex_txt = .data:0x00908420; // type:object size:0x80 scope:global align:32
+int_nog_medaka_glass_tex_pic_ci4 = .data:0x009084A0; // type:object size:0x100 scope:global align:32
+int_nog_medaka_v = .data:0x009085A0; // type:object size:0x430 scope:global align:8
+int_nog_medaka_sakana_model = .data:0x009089D0; // type:object size:0x90 scope:global align:8
+int_sum_medaka_top_model = .data:0x00908A60; // type:object size:0x58 scope:global align:8
+int_sum_medaka_evw_model = .data:0x00908AB8; // type:object size:0x68 scope:global align:8
+int_sum_medaka_base_model = .data:0x00908B20; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_nog_medaka_tbl = .data:0x00908BD8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_medaka_tbl = .data:0x00908BE0; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_medaka_tbl = .data:0x00908BE8; // type:object size:0x1E scope:global align:4
+cKF_ds_int_nog_medaka_tbl = .data:0x00908C08; // type:object size:0x78 scope:global align:4
+cKF_ba_r_int_nog_medaka = .data:0x00908C80; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_medaka_tbl = .data:0x00908C94; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_medaka = .data:0x00908CD0; // type:object size:0x8 scope:global align:4
+int_nog_mikanbox_pal = .data:0x00908CE0; // type:object size:0x20 scope:global align:32
+int_nog_mikanbox_tex = .data:0x00908D00; // type:object size:0x400 scope:global align:32
+int_nog_mikanbox_v = .data:0x00909100; // type:object size:0x180 scope:global align:8
+int_nog_mikanbox_model = .data:0x00909280; // type:object size:0x70 scope:global align:8
+int_nog_mino_pal = .data:0x00909300; // type:object size:0x20 scope:global align:32
+int_nog_mino_glass_tex_pic_ci4_pal = .data:0x00909320; // type:object size:0x20 scope:global align:32
+int_nog_mino_musi_tex_txt = .data:0x00909340; // type:object size:0x80 scope:global align:32
+int_nog_mino_body_tex_txt = .data:0x009093C0; // type:object size:0x100 scope:global align:32
+int_nog_mino_base_tex_txt = .data:0x009094C0; // type:object size:0x80 scope:global align:32
+int_nog_mino_top_tex_txt = .data:0x00909540; // type:object size:0x200 scope:global align:32
+int_nog_mino_side_tex_txt = .data:0x00909740; // type:object size:0x200 scope:global align:32
+int_nog_mino_glass_tex_txt = .data:0x00909940; // type:object size:0x100 scope:global align:32
+int_nog_mino_v = .data:0x00909A40; // type:object size:0x440 scope:global align:8
+int_nog_mino_musi_model = .data:0x00909E80; // type:object size:0x60 scope:global align:8
+int_nog_mino_side_model = .data:0x00909EE0; // type:object size:0x68 scope:global align:8
+int_nog_mino_komado_model = .data:0x00909F48; // type:object size:0x58 scope:global align:8
+int_nog_mino_glass_model = .data:0x00909FA0; // type:object size:0x68 scope:global align:8
+int_nog_mino_base_model = .data:0x0090A008; // type:object size:0xA0 scope:global align:8
+int_nog_mino_body_model = .data:0x0090A0A8; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_nog_mino_tbl = .data:0x0090A110; // type:object size:0x7 scope:global align:4
+cKF_kn_int_nog_mino_tbl = .data:0x0090A118; // type:object size:0x2 scope:global align:4
+cKF_c_int_nog_mino_tbl = .data:0x0090A11C; // type:object size:0x2E scope:global align:4
+cKF_ds_int_nog_mino_tbl = .data:0x0090A14C; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_mino = .data:0x0090A170; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_mino_tbl = .data:0x0090A184; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_nog_mino = .data:0x0090A1D8; // type:object size:0x8 scope:global align:4
+int_nog_museum_pal = .data:0x0090A1E0; // type:object size:0x20 scope:global align:32
+int_nog_museum_body_tex = .data:0x0090A200; // type:object size:0x400 scope:global align:32
+int_nog_museum_gate_tex = .data:0x0090A600; // type:object size:0x100 scope:global align:32
+int_nog_museum_grass_tex = .data:0x0090A700; // type:object size:0x80 scope:global align:32
+int_nog_museum_v = .data:0x0090A780; // type:object size:0x8E0 scope:global align:8
+int_nog_museum_on_model = .data:0x0090B060; // type:object size:0x58 scope:global align:8
+int_nog_museum_onT_model = .data:0x0090B0B8; // type:object size:0x148 scope:global align:8
+int_nog_museum_offT_model = .data:0x0090B200; // type:object size:0x58 scope:global align:8
+int_nog_myhome2_grass_tex = .data:0x0090B260; // type:object size:0x80 scope:global align:32
+int_nog_myhome2_body_tex = .data:0x0090B2E0; // type:object size:0x600 scope:global align:32
+int_nog_myhome2_chimney_tex = .data:0x0090B8E0; // type:object size:0x80 scope:global align:32
+int_nog_myhome2_v = .data:0x0090B960; // type:object size:0x380 scope:global align:8
+int_nog_myhome2_on_model = .data:0x0090BCE0; // type:object size:0x80 scope:global align:8
+int_nog_myhome2_off_model = .data:0x0090BD60; // type:object size:0x60 scope:global align:8
+int_nog_myhome2_onT_model = .data:0x0090BDC0; // type:object size:0x78 scope:global align:8
+int_nog_myhome4_body_tex = .data:0x0090BE40; // type:object size:0x600 scope:global align:32
+int_nog_myhome4_chimney_tex = .data:0x0090C440; // type:object size:0x80 scope:global align:32
+int_nog_myhome4_grass_tex = .data:0x0090C4C0; // type:object size:0x80 scope:global align:32
+int_nog_myhome4_v = .data:0x0090C540; // type:object size:0x630 scope:global align:8
+int_nog_myhome4_on_model = .data:0x0090CB70; // type:object size:0xB0 scope:global align:8
+int_nog_myhome4_off_model = .data:0x0090CC20; // type:object size:0x60 scope:global align:8
+int_nog_myhome4_onT_model = .data:0x0090CC80; // type:object size:0xA0 scope:global align:8
+int_nog_nabe_pal = .data:0x0090CD20; // type:object size:0x20 scope:global align:32
+int_nog_nabe_switch_tex_txt = .data:0x0090CD40; // type:object size:0x80 scope:global align:32
+int_nog_nabe_fire1_TA_tex_txt = .data:0x0090CDC0; // type:object size:0x80 scope:global align:32
+int_nog_nabe_fire2_TA_tex_txt = .data:0x0090CE40; // type:object size:0x80 scope:global align:32
+int_nog_nabe_fire3_TA_tex_txt = .data:0x0090CEC0; // type:object size:0x80 scope:global align:32
+int_nog_nabe_side_tex_txt = .data:0x0090CF40; // type:object size:0x80 scope:global align:32
+int_nog_nabe_top_tex_txt = .data:0x0090CFC0; // type:object size:0x200 scope:global align:32
+int_nog_nabe_conro_tex_txt = .data:0x0090D1C0; // type:object size:0x200 scope:global align:32
+int_nog_nabe_v = .data:0x0090D3C0; // type:object size:0x5E0 scope:global align:8
+int_nog_nabe_switch_model = .data:0x0090D9A0; // type:object size:0x58 scope:global align:8
+int_nog_nabe_fire_model = .data:0x0090D9F8; // type:object size:0x70 scope:global align:8
+int_nog_nabe_body_model = .data:0x0090DA68; // type:object size:0x110 scope:global align:8
+cKF_ckcb_r_int_nog_nabe_tbl = .data:0x0090DB78; // type:object size:0x4 scope:global align:4
+cKF_kn_int_nog_nabe_tbl = .data:0x0090DB7C; // type:object size:0x2 scope:global align:4
+cKF_c_int_nog_nabe_tbl = .data:0x0090DB80; // type:object size:0x1C scope:global align:4
+cKF_ds_int_nog_nabe_tbl = .data:0x0090DB9C; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_nabe = .data:0x0090DBC0; // type:object size:0x14 scope:global align:4 data:2byte
+cKF_je_r_int_nog_nabe_tbl = .data:0x0090DBD4; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_nog_nabe = .data:0x0090DC04; // type:object size:0x8 scope:global align:4
+int_nog_pansy_grass_tex = .data:0x0090DC20; // type:object size:0x80 scope:global align:32
+int_nog_pansy_leaf_tex = .data:0x0090DCA0; // type:object size:0x80 scope:global align:32
+int_nog_pansy_flower_tex = .data:0x0090DD20; // type:object size:0x100 scope:global align:32
+int_nog_pansy_v = .data:0x0090DE20; // type:object size:0x340 scope:global align:8
+int_nog_pansy_model = .data:0x0090E160; // type:object size:0x58 scope:global align:8
+int_nog_pansyT_model = .data:0x0090E1B8; // type:object size:0xA8 scope:global align:8
+int_nog_pawnB_pal = .data:0x0090E260; // type:object size:0x20 scope:global align:32
+int_nog_pawnB_top_tex_txt = .data:0x0090E280; // type:object size:0x100 scope:global align:32
+int_nog_pawnB_circle_tex_txt = .data:0x0090E380; // type:object size:0x80 scope:global align:32
+int_nog_pawnB_base_tex_txt = .data:0x0090E400; // type:object size:0x200 scope:global align:32
+int_nog_pawnB_v = .data:0x0090E600; // type:object size:0x210 scope:global align:8
+int_nog_pawnB_base_model = .data:0x0090E810; // type:object size:0x90 scope:global align:8
+int_nog_pawnB_top_model = .data:0x0090E8A0; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_nog_pawnB_tbl = .data:0x0090E900; // type:object size:0x3 scope:global align:4
+cKF_c_int_nog_pawnB_tbl = .data:0x0090E904; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_nog_pawnB = .data:0x0090E91C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_pawnB_tbl = .data:0x0090E930; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_nog_pawnB = .data:0x0090E954; // type:object size:0x8 scope:global align:4
+int_nog_pawnW_pal = .data:0x0090E960; // type:object size:0x20 scope:global align:32
+int_nog_pawnW_top_tex_txt = .data:0x0090E980; // type:object size:0x100 scope:global align:32
+int_nog_pawnW_circle_tex_txt = .data:0x0090EA80; // type:object size:0x80 scope:global align:32
+int_nog_pawnW_base_tex_txt = .data:0x0090EB00; // type:object size:0x200 scope:global align:32
+int_nog_pawnW_v = .data:0x0090ED00; // type:object size:0x210 scope:global align:8
+int_nog_pawnW_base_model = .data:0x0090EF10; // type:object size:0x90 scope:global align:8
+int_nog_pawnW_top_model = .data:0x0090EFA0; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_nog_pawnW_tbl = .data:0x0090F000; // type:object size:0x3 scope:global align:4
+cKF_c_int_nog_pawnW_tbl = .data:0x0090F004; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_nog_pawnW = .data:0x0090F01C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_pawnW_tbl = .data:0x0090F030; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_nog_pawnW = .data:0x0090F054; // type:object size:0x8 scope:global align:4
+int_nog_piraluku_pal = .data:0x0090F060; // type:object size:0x20 scope:local align:32
+int_nog_piraluku_glass_tex_pic_ci4_pal = .data:0x0090F080; // type:object size:0x20 scope:global align:32
+int_nog_pireluku_body_tex_txt = .data:0x0090F0A0; // type:object size:0x400 scope:global align:32
+int_nog_pireluku_side_tex_txt = .data:0x0090F4A0; // type:object size:0x200 scope:global align:32
+int_nog_pireluku_base_tex_txt = .data:0x0090F6A0; // type:object size:0x80 scope:global align:32 data:string
+int_nog_pireluku_top_tex_txt = .data:0x0090F720; // type:object size:0x80 scope:global align:32
+int_nog_pireluku_glass_tex_txt = .data:0x0090F7A0; // type:object size:0x100 scope:global align:32
+int_nog_piraluku_v = .data:0x0090F8A0; // type:object size:0x3F0 scope:global align:8
+int_nog_piraluku_sakana_model = .data:0x0090FC90; // type:object size:0xA8 scope:global align:8
+int_sum_piraluku_top_model = .data:0x0090FD38; // type:object size:0x58 scope:global align:8
+int_sum_piraluku_evw_model = .data:0x0090FD90; // type:object size:0x68 scope:global align:8
+int_sum_piraluku_base_model = .data:0x0090FDF8; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_nog_piraluku_tbl = .data:0x0090FE88; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_piraluku_tbl = .data:0x0090FE90; // type:object size:0x12 scope:global align:4
+cKF_c_int_nog_piraluku_tbl = .data:0x0090FEA4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_nog_piraluku_tbl = .data:0x0090FEB8; // type:object size:0x8A scope:global align:4
+cKF_ba_r_int_nog_piraluku = .data:0x0090FF44; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_piraluku_tbl = .data:0x0090FF58; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_piraluku = .data:0x0090FF94; // type:object size:0x8 scope:global align:4
+int_nog_queenB_pal = .data:0x0090FFA0; // type:object size:0x20 scope:global align:32
+int_nog_queenB_base_tex = .data:0x0090FFC0; // type:object size:0x200 scope:global align:32
+int_nog_queenB_circle_tex = .data:0x009101C0; // type:object size:0x80 scope:global align:32
+int_nog_queenB_crown_tex = .data:0x00910240; // type:object size:0x100 scope:global align:32
+int_nog_queenB_v = .data:0x00910340; // type:object size:0x2E0 scope:global align:8
+int_nog_queenB_model = .data:0x00910620; // type:object size:0x78 scope:global align:8
+int_nog_queenBT_model = .data:0x00910698; // type:object size:0x90 scope:global align:8
+int_nog_queenW_pal = .data:0x00910740; // type:object size:0x20 scope:global align:32
+int_nog_queenW_base_tex = .data:0x00910760; // type:object size:0x200 scope:global align:32
+int_nog_queenW_circle_tex = .data:0x00910960; // type:object size:0x80 scope:global align:32
+int_nog_queenW_crown_tex = .data:0x009109E0; // type:object size:0x100 scope:global align:32
+int_nog_queenW_v = .data:0x00910AE0; // type:object size:0x2E0 scope:global align:8
+int_nog_queenW_model = .data:0x00910DC0; // type:object size:0x78 scope:global align:8
+int_nog_queenWT_model = .data:0x00910E38; // type:object size:0x90 scope:global align:8
+int_nog_rail_pal = .data:0x00910EE0; // type:object size:0x20 scope:global align:32
+int_nog_rail_tex = .data:0x00910F00; // type:object size:0x80 scope:global align:32
+int_nog_rail_v = .data:0x00910F80; // type:object size:0x100 scope:global align:8
+int_nog_rail_model = .data:0x00911080; // type:object size:0x68 scope:global align:8
+int_nog_rookB_pal = .data:0x00911100; // type:object size:0x20 scope:global align:32
+int_nog_rookB_top_tex = .data:0x00911120; // type:object size:0x80 scope:global align:32 data:string
+int_nog_rookB_base_tex = .data:0x009111A0; // type:object size:0x200 scope:global align:32
+int_nog_rookB_crown_tex = .data:0x009113A0; // type:object size:0x100 scope:global align:32
+int_nog_rookB_v = .data:0x009114A0; // type:object size:0x2E0 scope:global align:8
+int_nog_rookB_model = .data:0x00911780; // type:object size:0x60 scope:global align:8
+int_nog_rookBT_model = .data:0x009117E0; // type:object size:0xA0 scope:global align:8
+int_nog_rookW_pal = .data:0x00911880; // type:object size:0x20 scope:global align:32
+int_nog_rookW_top_tex = .data:0x009118A0; // type:object size:0x80 scope:global align:32 data:string
+int_nog_rookW_base_tex = .data:0x00911920; // type:object size:0x200 scope:global align:32
+int_nog_rookW_crown_tex = .data:0x00911B20; // type:object size:0x100 scope:global align:32
+int_nog_rookW_v = .data:0x00911C20; // type:object size:0x2E0 scope:global align:8
+int_nog_rookW_model = .data:0x00911F00; // type:object size:0x60 scope:global align:8
+int_nog_rookWT_model = .data:0x00911F60; // type:object size:0xA0 scope:global align:8
+int_nog_s_tree_pal = .data:0x00912000; // type:object size:0x20 scope:global align:32
+int_nog_s_tree_grass_tex = .data:0x00912020; // type:object size:0x80 scope:global align:32
+int_nog_s_tree_leaf_tex = .data:0x009120A0; // type:object size:0x200 scope:global align:32
+int_nog_s_tree_trunk_tex = .data:0x009122A0; // type:object size:0x400 scope:global align:32 data:string
+int_nog_s_tree_v = .data:0x009126A0; // type:object size:0x520 scope:global align:8
+int_nog_s_tree_model = .data:0x00912BC0; // type:object size:0x58 scope:global align:8
+int_nog_s_treeT_model = .data:0x00912C18; // type:object size:0x110 scope:global align:8
+int_nog_schoolnote_pal = .data:0x00912D40; // type:object size:0x20 scope:global align:32
+int_nog_schoolnote_tex = .data:0x00912D60; // type:object size:0x400 scope:global align:32
+int_nog_schoolnote_v = .data:0x00913160; // type:object size:0x3D0 scope:global align:8
+int_nog_schoolnote_model = .data:0x00913530; // type:object size:0xB8 scope:global align:8
+int_nog_shop1_pal = .data:0x00913600; // type:object size:0x20 scope:global align:32
+int_nog_shop1_body_tex = .data:0x00913620; // type:object size:0x400 scope:global align:32
+int_nog_shop1_grass_tex = .data:0x00913A20; // type:object size:0x80 scope:global align:32
+int_nog_shop1_roof_tex = .data:0x00913AA0; // type:object size:0x200 scope:global align:32
+int_nog_shop1_back_tex = .data:0x00913CA0; // type:object size:0x100 scope:global align:32
+int_nog_shop1_v = .data:0x00913DA0; // type:object size:0x440 scope:global align:8
+int_nog_shop1_on_model = .data:0x009141E0; // type:object size:0x98 scope:global align:8
+int_nog_shop1_onT_model = .data:0x00914278; // type:object size:0x90 scope:global align:8
+int_nog_shop1_offT_model = .data:0x00914308; // type:object size:0x60 scope:global align:8
+int_nog_shrine_pal = .data:0x00914380; // type:object size:0x20 scope:global align:32
+int_nog_shrine_figure_tex = .data:0x009143A0; // type:object size:0x200 scope:global align:32 data:string
+int_nog_shrine_base_tex = .data:0x009145A0; // type:object size:0x200 scope:global align:32
+int_nog_shrine_grass_tex = .data:0x009147A0; // type:object size:0x80 scope:global align:32
+int_nog_shrine_water_tex = .data:0x00914820; // type:object size:0x80 scope:global align:32
+int_nog_shrine_v = .data:0x009148A0; // type:object size:0x9A0 scope:global align:8
+int_nog_shrine_grass_model = .data:0x00915240; // type:object size:0x58 scope:global align:8
+int_nog_shrine_figure_model = .data:0x00915298; // type:object size:0x88 scope:global align:8
+int_nog_shrine_baseT_model = .data:0x00915320; // type:object size:0xD8 scope:global align:8
+int_nog_shrine_waterT_model = .data:0x009153F8; // type:object size:0xA8 scope:global align:8
+int_nog_snowman_pal = .data:0x009154A0; // type:object size:0x20 scope:global align:32
+int_nog_snowman_body_tex = .data:0x009154C0; // type:object size:0x200 scope:global align:32
+int_nog_snowman_head_tex = .data:0x009156C0; // type:object size:0x200 scope:global align:32
+int_nog_snowman_v = .data:0x009158C0; // type:object size:0x360 scope:global align:8
+int_nog_snowman_model = .data:0x00915C20; // type:object size:0xE8 scope:global align:8
+int_noga_sprinkler = .data:0x00915D20; // type:object size:0x20 scope:global align:32
+int_nog_sprinkler_tex = .data:0x00915D40; // type:object size:0x800 scope:global align:32
+int_nog_sprinkler_fade_tex_rgb_i4 = .data:0x00916540; // type:object size:0x80 scope:global align:32
+int_nog_sprinkler_water_tex_rgb_i4 = .data:0x009165C0; // type:object size:0x80 scope:global align:32
+int_nog_sprinkler_v = .data:0x00916640; // type:object size:0x630 scope:global align:8
+int_nog_sprinkler_water_model = .data:0x00916C70; // type:object size:0x80 scope:global align:8
+int_nog_sprinkler_bodyT_model = .data:0x00916CF0; // type:object size:0x118 scope:global align:8
+int_nog_station1_base_tex_txt = .data:0x00916E20; // type:object size:0x200 scope:global align:32
+int_nog_station1_grass_tex_txt = .data:0x00917020; // type:object size:0x80 scope:global align:32
+int_nog_station1_body_tex_txt = .data:0x009170A0; // type:object size:0x400 scope:global align:32
+int_nog_station1_roof_tex_txt = .data:0x009174A0; // type:object size:0x200 scope:global align:32
+int_nog_station1_v = .data:0x009176A0; // type:object size:0xC50 scope:global align:8
+int_nog_station1_long_model = .data:0x009182F0; // type:object size:0x58 scope:global align:8
+int_nog_station1_body_model = .data:0x00918348; // type:object size:0x1A0 scope:global align:8
+int_nog_station1_short_model = .data:0x009184E8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_nog_station1_tbl = .data:0x00918540; // type:object size:0x5 scope:global align:4
+cKF_c_int_nog_station1_tbl = .data:0x00918548; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_station1 = .data:0x0091856C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_station1_tbl = .data:0x00918580; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_station1 = .data:0x009185BC; // type:object size:0x8 scope:global align:4
+int_nog_station2_bese_tex_txt = .data:0x009185E0; // type:object size:0x200 scope:global align:32
+int_nog_station2_grass_tex_txt = .data:0x009187E0; // type:object size:0x80 scope:global align:32
+int_nog_station2_side_tex_txt = .data:0x00918860; // type:object size:0x300 scope:global align:32
+int_nog_station2_front_tex_txt = .data:0x00918B60; // type:object size:0x400 scope:global align:32
+int_nog_station2_v = .data:0x00918F60; // type:object size:0x1090 scope:global align:8
+int_nog_station2_long_model = .data:0x00919FF0; // type:object size:0x58 scope:global align:8
+int_nog_station2_body_model = .data:0x0091A048; // type:object size:0x248 scope:global align:8
+int_nog_station2_short_model = .data:0x0091A290; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_nog_station2_tbl = .data:0x0091A2E8; // type:object size:0x5 scope:global align:4
+cKF_c_int_nog_station2_tbl = .data:0x0091A2F0; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_station2 = .data:0x0091A314; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_station2_tbl = .data:0x0091A328; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_station2 = .data:0x0091A364; // type:object size:0x8 scope:global align:4
+int_nog_station3_bese_tex_txt = .data:0x0091A380; // type:object size:0x200 scope:global align:32
+int_nog_station3_side_tex_txt = .data:0x0091A580; // type:object size:0x200 scope:global align:32
+int_nog_station3_front_tex_txt = .data:0x0091A780; // type:object size:0x400 scope:global align:32
+int_nog_station3_grass_tex_txt = .data:0x0091AB80; // type:object size:0x80 scope:global align:32
+int_nog_station3_v = .data:0x0091AC00; // type:object size:0x940 scope:global align:8
+int_nog_station3_long_model = .data:0x0091B540; // type:object size:0x58 scope:global align:8
+int_nog_station3_body_model = .data:0x0091B598; // type:object size:0x168 scope:global align:8
+int_nog_station3_short_model = .data:0x0091B700; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_nog_station3_tbl = .data:0x0091B758; // type:object size:0x5 scope:global align:4
+cKF_c_int_nog_station3_tbl = .data:0x0091B760; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_station3 = .data:0x0091B784; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_station3_tbl = .data:0x0091B798; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_station3 = .data:0x0091B7D4; // type:object size:0x8 scope:global align:4
+int_nog_suzuki_pal = .data:0x0091B7E0; // type:object size:0x20 scope:local align:32
+int_nog_suzuki_glass_tex_pic_ci4_pal = .data:0x0091B800; // type:object size:0x20 scope:global align:32
+int_nog_suzuki_body_tex_txt = .data:0x0091B820; // type:object size:0x300 scope:global align:32
+int_nog_suzuki_top_tex_txt = .data:0x0091BB20; // type:object size:0x100 scope:global align:32
+int_nog_suzuki_side_tex_txt = .data:0x0091BC20; // type:object size:0x200 scope:global align:32
+int_nog_suzuki_base_tex_txt = .data:0x0091BE20; // type:object size:0x80 scope:global align:32 data:string
+int_nog_suzuki_glass_tex_txt = .data:0x0091BEA0; // type:object size:0x100 scope:global align:32
+int_nog_suzuki_v = .data:0x0091BFA0; // type:object size:0x3F0 scope:global align:8
+int_nog_suzuki_sakana_model = .data:0x0091C390; // type:object size:0xA8 scope:global align:8
+int_sum_suzuki_top_model = .data:0x0091C438; // type:object size:0x58 scope:global align:8
+int_sum_suzuki_evw_model = .data:0x0091C490; // type:object size:0x68 scope:global align:8
+int_sum_suzuki_base_model = .data:0x0091C4F8; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_nog_suzuki_tbl = .data:0x0091C588; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_suzuki_tbl = .data:0x0091C590; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_suzuki_tbl = .data:0x0091C598; // type:object size:0x1E scope:global align:4
+cKF_ds_int_nog_suzuki_tbl = .data:0x0091C5B8; // type:object size:0x48 scope:global align:4
+cKF_ba_r_int_nog_suzuki = .data:0x0091C600; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_suzuki_tbl = .data:0x0091C614; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_suzuki = .data:0x0091C650; // type:object size:0x8 scope:global align:4
+int_nog_systemnote_pal = .data:0x0091C660; // type:object size:0x20 scope:global align:32
+int_nog_systemnote_tex = .data:0x0091C680; // type:object size:0x400 scope:global align:32
+int_nog_systemnote_v = .data:0x0091CA80; // type:object size:0x320 scope:global align:8
+int_nog_systemnote_model = .data:0x0091CDA0; // type:object size:0xB8 scope:global align:8
+int_nog_tai_pal = .data:0x0091CE60; // type:object size:0x20 scope:local align:32
+int_nog_tai_glass_tex_pic_ci4_pal = .data:0x0091CE80; // type:object size:0x20 scope:global align:32
+int_nog_tai_body_tex_txt = .data:0x0091CEA0; // type:object size:0x300 scope:global align:32
+int_nog_tai_top_tex_txt = .data:0x0091D1A0; // type:object size:0x100 scope:global align:32
+int_nog_tai_side_tex_txt = .data:0x0091D2A0; // type:object size:0x200 scope:global align:32
+int_nog_tai_base_tex_txt = .data:0x0091D4A0; // type:object size:0x80 scope:global align:32
+int_nog_tai_glass_tex_txt = .data:0x0091D520; // type:object size:0x100 scope:global align:32
+int_nog_tai_v = .data:0x0091D620; // type:object size:0x390 scope:global align:8
+int_nog_tai_sakana_model = .data:0x0091D9B0; // type:object size:0x90 scope:global align:8
+int_sum_tai_top_model = .data:0x0091DA40; // type:object size:0x58 scope:global align:8
+int_sum_tai_evw_model = .data:0x0091DA98; // type:object size:0x68 scope:global align:8
+int_sum_tai_base_model = .data:0x0091DB00; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_nog_tai_tbl = .data:0x0091DB90; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_tai_tbl = .data:0x0091DB98; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_tai_tbl = .data:0x0091DBA0; // type:object size:0x1E scope:global align:4
+cKF_ds_int_nog_tai_tbl = .data:0x0091DBC0; // type:object size:0x54 scope:global align:4
+cKF_ba_r_int_nog_tai = .data:0x0091DC14; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_tai_tbl = .data:0x0091DC28; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_tai = .data:0x0091DC64; // type:object size:0x8 scope:global align:4
+int_nog_tri_audio01_pal = .data:0x0091DC80; // type:object size:0x20 scope:global align:32
+obj_nog_tri_audio01_tex = .data:0x0091DCA0; // type:object size:0x800 scope:global align:32
+int_nog_tri_audio01_v = .data:0x0091E4A0; // type:object size:0x140 scope:global align:8
+int_nog_tri_audio01_model = .data:0x0091E5E0; // type:object size:0x68 scope:global align:8
+int_nog_tri_bed01_pal = .data:0x0091E660; // type:object size:0x20 scope:global align:32
+obj_nog_tri_bed01_tex = .data:0x0091E680; // type:object size:0x800 scope:global align:32
+int_nog_tri_bed01_v = .data:0x0091EE80; // type:object size:0x330 scope:global align:8
+int_nog_tri_bed01T_model = .data:0x0091F1B0; // type:object size:0xB0 scope:global align:8
+int_nog_tri_chair01_pal = .data:0x0091F260; // type:object size:0x20 scope:global align:32
+obj_nog_tri_chair01_tex = .data:0x0091F280; // type:object size:0x800 scope:global align:32
+int_nog_tri_chair01_v = .data:0x0091FA80; // type:object size:0x400 scope:global align:8
+int_nog_tri_chair01T_model = .data:0x0091FE80; // type:object size:0xA8 scope:global align:8
+int_nog_tri_chest01_pal = .data:0x0091FF40; // type:object size:0x20 scope:global align:32
+obj_nog_tri_chest01_tex_txt = .data:0x0091FF60; // type:object size:0x800 scope:global align:32
+int_nog_tri_chest01_v = .data:0x00920760; // type:object size:0x380 scope:global align:8
+int_nog_tri_chest01_door_model = .data:0x00920AE0; // type:object size:0x80 scope:global align:8
+int_nog_tri_chest01_base_model = .data:0x00920B60; // type:object size:0x70 scope:global align:8
+cKF_ckcb_r_int_nog_tri_chest01_tbl = .data:0x00920BD0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_nog_tri_chest01_tbl = .data:0x00920BD4; // type:object size:0x12 scope:global align:4
+cKF_c_int_nog_tri_chest01_tbl = .data:0x00920BE8; // type:object size:0x6 scope:global align:4
+cKF_ds_int_nog_tri_chest01_tbl = .data:0x00920BF0; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_nog_tri_chest01 = .data:0x00920C5C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_tri_chest01_tbl = .data:0x00920C70; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_nog_tri_chest01 = .data:0x00920C94; // type:object size:0x8 scope:global align:4
+int_nog_tri_chest02_pal = .data:0x00920CA0; // type:object size:0x20 scope:global align:32
+obj_nog_tri_chest02_tex_txt = .data:0x00920CC0; // type:object size:0x800 scope:global align:32
+int_nog_tri_chest02_v = .data:0x009214C0; // type:object size:0x4B0 scope:global align:8
+int_nog_tri_chest02_doorL_model = .data:0x00921970; // type:object size:0x68 scope:global align:8
+int_nog_tri_chest02_base_model = .data:0x009219D8; // type:object size:0x88 scope:global align:8
+int_nog_tri_chest02_doorR_model = .data:0x00921A60; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_nog_tri_chest02_tbl = .data:0x00921AC8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_tri_chest02_tbl = .data:0x00921AD0; // type:object size:0x18 scope:global align:4
+cKF_c_int_nog_tri_chest02_tbl = .data:0x00921AE8; // type:object size:0xC scope:global align:4
+cKF_ds_int_nog_tri_chest02_tbl = .data:0x00921AF4; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_nog_tri_chest02 = .data:0x00921B90; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_tri_chest02_tbl = .data:0x00921BA4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_tri_chest02 = .data:0x00921BE0; // type:object size:0x8 scope:global align:4
+int_nog_tri_chest03_pal = .data:0x00921C00; // type:object size:0x20 scope:global align:32
+obj_nog_tri_chest03_tex_txt = .data:0x00921C20; // type:object size:0x800 scope:global align:32
+int_nog_tri_chest03_v = .data:0x00922420; // type:object size:0x390 scope:global align:8
+int_nog_tri_chest03_door_model = .data:0x009227B0; // type:object size:0x68 scope:global align:8
+int_nog_tri_chest03_base_model = .data:0x00922818; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_nog_tri_chest03_tbl = .data:0x009228A0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_nog_tri_chest03_tbl = .data:0x009228A4; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_tri_chest03_tbl = .data:0x009228AC; // type:object size:0x12 scope:global align:4
+cKF_ds_int_nog_tri_chest03_tbl = .data:0x009228C0; // type:object size:0x36 scope:global align:4
+cKF_ba_r_int_nog_tri_chest03 = .data:0x009228F8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_tri_chest03_tbl = .data:0x0092290C; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_nog_tri_chest03 = .data:0x00922930; // type:object size:0x8 scope:global align:4
+int_nog_tri_clock01_pal = .data:0x00922940; // type:object size:0x20 scope:global align:32
+obj_nog_tri_clock01_tex_txt = .data:0x00922960; // type:object size:0x800 scope:global align:32
+int_nog_tri_clock01_v = .data:0x00923160; // type:object size:0x520 scope:global align:8
+int_nog_tri_clock01_long_model = .data:0x00923680; // type:object size:0x58 scope:global align:8
+int_nog_tri_clock01_base_model = .data:0x009236D8; // type:object size:0xB8 scope:global align:8
+int_nog_tri_clock01_short_model = .data:0x00923790; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_nog_tri_clock01_tbl = .data:0x009237E8; // type:object size:0x5 scope:global align:4
+cKF_c_int_nog_tri_clock01_tbl = .data:0x009237F0; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_nog_tri_clock01 = .data:0x00923814; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_tri_clock01_tbl = .data:0x00923828; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_tri_clock01 = .data:0x00923864; // type:object size:0x8 scope:global align:4
+int_nog_tri_rack01_pal = .data:0x00923880; // type:object size:0x20 scope:global align:32
+obj_nog_tri_rack01_tex = .data:0x009238A0; // type:object size:0x800 scope:global align:32
+int_nog_tri_rack01_v = .data:0x009240A0; // type:object size:0x400 scope:global align:8
+int_noga_tri_rack01T_model = .data:0x009244A0; // type:object size:0xA8 scope:global align:8
+int_nog_tri_sofa01_pal = .data:0x00924560; // type:object size:0x20 scope:global align:32
+obj_nog_tri_sofa01_tex = .data:0x00924580; // type:object size:0x800 scope:global align:32
+int_nog_tri_sofa01_v = .data:0x00924D80; // type:object size:0x3C0 scope:global align:8
+int_nog_tri_sofa01_model = .data:0x00925140; // type:object size:0xA8 scope:global align:8
+int_nog_tri_table01_pal = .data:0x00925200; // type:object size:0x20 scope:global align:32
+obj_nog_tri_table01_tex = .data:0x00925220; // type:object size:0x800 scope:global align:32
+int_nog_tri_table01_v = .data:0x00925A20; // type:object size:0x280 scope:global align:8
+int_nog_tri_table01T_model = .data:0x00925CA0; // type:object size:0x90 scope:global align:8
+int_nog_tudurinote_pal = .data:0x00925D40; // type:object size:0x20 scope:global align:32
+int_nog_tudurinote_tex = .data:0x00925D60; // type:object size:0x800 scope:global align:32
+int_nog_tudurinote_v = .data:0x00926560; // type:object size:0x460 scope:global align:8
+int_nog_tudurinoteT_model = .data:0x009269C0; // type:object size:0xD8 scope:global align:8
+int_nog_turip_grass_tex = .data:0x00926AA0; // type:object size:0x80 scope:global align:32
+int_nog_turip_leaf_tex = .data:0x00926B20; // type:object size:0x80 scope:global align:32
+int_nog_turip_flower_tex = .data:0x00926BA0; // type:object size:0x100 scope:global align:32
+int_nog_turip_v = .data:0x00926CA0; // type:object size:0x510 scope:global align:8
+int_nog_turip_model = .data:0x009271B0; // type:object size:0x58 scope:global align:8
+int_nog_turipT_model = .data:0x00927208; // type:object size:0xD8 scope:global align:8
+int_nog_uranai_pal = .data:0x009272E0; // type:object size:0x20 scope:global align:32
+int_nog_uranai_body_tex = .data:0x00927300; // type:object size:0x400 scope:global align:32
+int_nog_uranai_roof_tex = .data:0x00927700; // type:object size:0x200 scope:global align:32
+int_nog_uranai_grass_tex = .data:0x00927900; // type:object size:0x80 scope:global align:32
+int_nog_uranai_v = .data:0x00927980; // type:object size:0x250 scope:global align:8
+int_nog_uranai_on_model = .data:0x00927BD0; // type:object size:0x80 scope:global align:8
+int_nog_uranai_off_model = .data:0x00927C50; // type:object size:0x58 scope:global align:8
+int_nog_uranai_onT_model = .data:0x00927CA8; // type:object size:0x70 scope:global align:8
+int_w_tree_pal = .data:0x00927D20; // type:object size:0x20 scope:global align:32
+int_nog_w_tree_grass_tex = .data:0x00927D40; // type:object size:0x200 scope:global align:32
+int_nog_w_tree_leaf2_tex = .data:0x00927F40; // type:object size:0x200 scope:global align:32
+int_nog_w_tree_trunk_tex = .data:0x00928140; // type:object size:0x400 scope:global align:32 data:string
+int_nog_w_tree_leaf1_tex = .data:0x00928540; // type:object size:0x200 scope:global align:32
+int_nog_w_tree_v = .data:0x00928740; // type:object size:0x570 scope:global align:8
+int_nog_w_tree_model = .data:0x00928CB0; // type:object size:0x58 scope:global align:8
+int_nog_w_treeT_model = .data:0x00928D08; // type:object size:0x138 scope:global align:8
+int_plant02_pal = .data:0x00928E40; // type:object size:0x20 scope:global align:32
+int_nog_xtree_tex = .data:0x00928E60; // type:object size:0x800 scope:global align:32
+int_nog_xtree_v = .data:0x00929660; // type:object size:0x500 scope:global align:8
+int_nog_xtreeT_model = .data:0x00929B60; // type:object size:0xE8 scope:global align:8
+int_nog_yamishop_pal = .data:0x00929C60; // type:object size:0x20 scope:global align:32
+int_nog_yamishop_body_tex = .data:0x00929C80; // type:object size:0x400 scope:global align:32
+int_nog_yamishop_grass_tex = .data:0x0092A080; // type:object size:0x80 scope:global align:32
+int_nog_yamishop_v = .data:0x0092A100; // type:object size:0x3D0 scope:global align:8
+int_nog_yamishop_on_model = .data:0x0092A4D0; // type:object size:0x58 scope:global align:8
+int_nog_yamishop_onT_model = .data:0x0092A528; // type:object size:0xA8 scope:global align:8
+int_nog_yamishop_offT_model = .data:0x0092A5D0; // type:object size:0x60 scope:global align:8
+int_nog_yubin_pal = .data:0x0092A640; // type:object size:0x20 scope:global align:32
+int_nog_yubin_body_tex = .data:0x0092A660; // type:object size:0x400 scope:global align:32
+int_nog_yubin_roof_tex = .data:0x0092AA60; // type:object size:0x200 scope:global align:32
+int_nog_yubin_grass_tex = .data:0x0092AC60; // type:object size:0x80 scope:global align:32
+int_nog_yubin_v = .data:0x0092ACE0; // type:object size:0x310 scope:global align:8
+int_nog_yubin_on_model = .data:0x0092AFF0; // type:object size:0x58 scope:global align:8
+int_nog_yubin_onT_model = .data:0x0092B048; // type:object size:0x88 scope:global align:8
+int_nog_yubin_offT_model = .data:0x0092B0D0; // type:object size:0x70 scope:global align:8
+int_nog_zarigani_pal = .data:0x0092B140; // type:object size:0x20 scope:local align:32
+int_nog_zarigani_glass_tex_pic_ci4_pal = .data:0x0092B160; // type:object size:0x20 scope:global align:32
+int_nog_zarigani_body_tex_txt = .data:0x0092B180; // type:object size:0x100 scope:global align:32
+int_nog_zarigani_top_tex_txt = .data:0x0092B280; // type:object size:0x100 scope:global align:32
+int_nog_zarigani_side_tex_txt = .data:0x0092B380; // type:object size:0x200 scope:global align:32
+int_nog_zarigani_base_tex_txt = .data:0x0092B580; // type:object size:0x80 scope:global align:32
+int_nog_zarigani_etc_tex_txt = .data:0x0092B600; // type:object size:0x80 scope:global align:32
+int_nog_zarigani_glass_tex_txt = .data:0x0092B680; // type:object size:0x100 scope:global align:32
+int_nog_zarigani_v = .data:0x0092B780; // type:object size:0x360 scope:global align:8
+int_nog_zarigani_sakana_model = .data:0x0092BAE0; // type:object size:0x68 scope:global align:8
+int_sum_zarigani_top_model = .data:0x0092BB48; // type:object size:0x58 scope:global align:8
+int_sum_zarigani_evw_model = .data:0x0092BBA0; // type:object size:0x68 scope:global align:8
+int_sum_zarigani_base_model = .data:0x0092BC08; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_nog_zarigani_tbl = .data:0x0092BCC0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_nog_zarigani_tbl = .data:0x0092BCC8; // type:object size:0x6 scope:global align:4
+cKF_c_int_nog_zarigani_tbl = .data:0x0092BCD0; // type:object size:0x1E scope:global align:4
+cKF_ds_int_nog_zarigani_tbl = .data:0x0092BCF0; // type:object size:0x48 scope:global align:4
+cKF_ba_r_int_nog_zarigani = .data:0x0092BD38; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_nog_zarigani_tbl = .data:0x0092BD4C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_nog_zarigani = .data:0x0092BD88; // type:object size:0x8 scope:global align:4
+int_nog_zassou_pal = .data:0x0092BDA0; // type:object size:0x20 scope:global align:32
+int_nog_zassou_body_tex = .data:0x0092BDC0; // type:object size:0x400 scope:global align:32
+int_nog_zassou_grass_tex = .data:0x0092C1C0; // type:object size:0x200 scope:global align:32
+int_nog_zassou_v = .data:0x0092C3C0; // type:object size:0x2C0 scope:global align:8
+int_nog_zassou_model = .data:0x0092C680; // type:object size:0x58 scope:global align:8
+int_nog_zassouT_model = .data:0x0092C6D8; // type:object size:0x90 scope:global align:8
+obj_art01_pal = .data:0x0092C780; // type:object size:0x20 scope:global align:32
+obj_art01_gaku_tex = .data:0x0092C7A0; // type:object size:0x80 scope:global align:4
+obj_art01_art_tex = .data:0x0092C820; // type:object size:0x300 scope:global align:4
+obj_art01_name_tex = .data:0x0092CB20; // type:object size:0x80 scope:global align:4
+obj_art01_v = .data:0x0092CBA0; // type:object size:0x1E0 scope:global align:8
+obj_art01_model = .data:0x0092CD80; // type:object size:0x188 scope:global align:8
+obj_art_ang_pal = .data:0x0092CF20; // type:object size:0x20 scope:global align:32
+obj_art_ang_gaku_tex = .data:0x0092CF40; // type:object size:0x80 scope:global align:32
+obj_art_ang_art_tex = .data:0x0092CFC0; // type:object size:0x300 scope:global align:32
+obj_art_ang_name_tex = .data:0x0092D2C0; // type:object size:0x80 scope:global align:32
+obj_art02_v = .data:0x0092D340; // type:object size:0x1E0 scope:global align:8
+obj_art02_model = .data:0x0092D520; // type:object size:0xA0 scope:global align:8
+obj_art_sya_etc_pal = .data:0x0092D5C0; // type:object size:0x20 scope:global align:32
+obj_art_sya_art_pal = .data:0x0092D5E0; // type:object size:0x20 scope:global align:32
+obj_art_sya_gaku_tex = .data:0x0092D600; // type:object size:0x80 scope:global align:32
+obj_art_sya_art_tex = .data:0x0092D680; // type:object size:0x300 scope:global align:32
+obj_art_sya_name_tex = .data:0x0092D980; // type:object size:0x80 scope:global align:32
+obj_art03_v = .data:0x0092DA00; // type:object size:0x1E0 scope:global align:8
+obj_art03_model = .data:0x0092DBE0; // type:object size:0xB0 scope:global align:8
+obj_art04_pal = .data:0x0092DC90; // type:object size:0x20 scope:global align:4
+obj_art04_gaku_tex = .data:0x0092DCB0; // type:object size:0x80 scope:global align:4
+obj_art04_art_tex = .data:0x0092DD30; // type:object size:0x300 scope:global align:4
+obj_art04_name_tex = .data:0x0092E030; // type:object size:0x80 scope:global align:4
+obj_art04_v = .data:0x0092E0B0; // type:object size:0x1E0 scope:global align:8
+obj_art04_model = .data:0x0092E290; // type:object size:0x188 scope:global align:8
+obj_art05_pal = .data:0x0092E418; // type:object size:0x20 scope:global align:4
+obj_art05_art_tex = .data:0x0092E438; // type:object size:0x300 scope:global align:4
+obj_art05_gaku_tex = .data:0x0092E738; // type:object size:0x80 scope:global align:4
+obj_art05_name_tex = .data:0x0092E7B8; // type:object size:0x80 scope:global align:4
+obj_art05_v = .data:0x0092E838; // type:object size:0x1E0 scope:global align:8
+obj_art05_model = .data:0x0092EA18; // type:object size:0x188 scope:global align:8
+obj_art06_pal = .data:0x0092EBA0; // type:object size:0x20 scope:global align:4
+obj_art06_art_tex = .data:0x0092EBC0; // type:object size:0x300 scope:global align:4
+obj_art06_gaku_tex = .data:0x0092EEC0; // type:object size:0x80 scope:global align:4
+obj_art06_name_tex = .data:0x0092EF40; // type:object size:0x80 scope:global align:4
+obj_art06_v = .data:0x0092EFC0; // type:object size:0x1E0 scope:global align:8
+obj_art06_model = .data:0x0092F1A0; // type:object size:0x188 scope:global align:8
+obj_art_fel_etc_pal = .data:0x0092F340; // type:object size:0x20 scope:global align:32
+obj_art_fel_art_pal = .data:0x0092F360; // type:object size:0x20 scope:global align:32
+obj_art_fel_gaku_tex = .data:0x0092F380; // type:object size:0x80 scope:global align:32
+obj_art_fel_name_tex = .data:0x0092F400; // type:object size:0x80 scope:global align:32
+obj_art_fel_art_tex = .data:0x0092F480; // type:object size:0x480 scope:global align:32
+obj_art07_v = .data:0x0092F900; // type:object size:0x1E0 scope:global align:8
+obj_art07_model = .data:0x0092FAE0; // type:object size:0xA8 scope:global align:8
+obj_art08_pal = .data:0x0092FB88; // type:object size:0x20 scope:global align:4
+obj_art08_gaku_tex = .data:0x0092FBA8; // type:object size:0x80 scope:global align:4
+obj_art08_art_tex = .data:0x0092FC28; // type:object size:0x300 scope:global align:4
+obj_art08_name_tex = .data:0x0092FF28; // type:object size:0x80 scope:global align:4
+obj_art08_v = .data:0x0092FFA8; // type:object size:0x1E0 scope:global align:8
+obj_art08_model = .data:0x00930188; // type:object size:0x188 scope:global align:8
+obj_art09_pal = .data:0x00930310; // type:object size:0x20 scope:global align:4
+obj_art09_gaku_tex = .data:0x00930330; // type:object size:0x80 scope:global align:4
+obj_art09_art_tex = .data:0x009303B0; // type:object size:0x300 scope:global align:4
+obj_art09_name_tex = .data:0x009306B0; // type:object size:0x80 scope:global align:4
+obj_art09_v = .data:0x00930730; // type:object size:0x1E0 scope:global align:8
+obj_art09_model = .data:0x00930910; // type:object size:0x188 scope:global align:8
+obj_art10_pal = .data:0x00930A98; // type:object size:0x20 scope:global align:4
+obj_art10_gaku_tex = .data:0x00930AB8; // type:object size:0x80 scope:global align:4
+obj_art10_art_tex = .data:0x00930B38; // type:object size:0x300 scope:global align:4
+obj_art10_name_tex = .data:0x00930E38; // type:object size:0x80 scope:global align:4
+obj_art10_v = .data:0x00930EB8; // type:object size:0x1E0 scope:global align:8
+obj_art10_model = .data:0x00931098; // type:object size:0x188 scope:global align:8
+obj_art11_pal = .data:0x00931220; // type:object size:0x20 scope:global align:4
+obj_art11_art_tex = .data:0x00931240; // type:object size:0x300 scope:global align:4
+obj_art11_name_tex = .data:0x00931540; // type:object size:0x80 scope:global align:4
+obj_art11_gaku_tex = .data:0x009315C0; // type:object size:0x80 scope:global align:4
+obj_art11_v = .data:0x00931640; // type:object size:0x1E0 scope:global align:8
+obj_art11_model = .data:0x00931820; // type:object size:0x188 scope:global align:8
+obj_art12_pal = .data:0x009319C0; // type:object size:0x20 scope:global align:32
+obj_art12_gaku_tex = .data:0x009319E0; // type:object size:0x80 scope:global align:32
+obj_art12_art_tex = .data:0x00931A60; // type:object size:0x300 scope:global align:32
+obj_art12_name_tex = .data:0x00931D60; // type:object size:0x80 scope:global align:32
+obj_art12_v = .data:0x00931DE0; // type:object size:0x1E0 scope:global align:8
+obj_art12_model = .data:0x00931FC0; // type:object size:0xA0 scope:global align:8
+obj_art13_pal = .data:0x00932060; // type:object size:0x20 scope:global align:4
+obj_art13_art_tex = .data:0x00932080; // type:object size:0x300 scope:global align:4
+obj_art13_name_tex = .data:0x00932380; // type:object size:0x80 scope:global align:4
+obj_art13_gaku_tex = .data:0x00932400; // type:object size:0x80 scope:global align:4
+obj_art13_v = .data:0x00932480; // type:object size:0x1E0 scope:global align:8
+obj_art13_model = .data:0x00932660; // type:object size:0x188 scope:global align:8
+obj_art14_pal = .data:0x009327E8; // type:object size:0x20 scope:global align:4
+obj_art14_gaku_tex = .data:0x00932808; // type:object size:0x80 scope:global align:4
+obj_art14_art_tex = .data:0x00932888; // type:object size:0x300 scope:global align:4
+obj_art14_name_tex = .data:0x00932B88; // type:object size:0x80 scope:global align:4
+obj_art14_v = .data:0x00932C08; // type:object size:0x1E0 scope:global align:8
+obj_art14_model = .data:0x00932DE8; // type:object size:0x188 scope:global align:8
+obj_art15_pal = .data:0x00932F70; // type:object size:0x20 scope:global align:4
+obj_art15_gaku_tex = .data:0x00932F90; // type:object size:0x80 scope:global align:4
+obj_art15_art_tex = .data:0x00933010; // type:object size:0x300 scope:global align:4
+obj_art15_name_tex = .data:0x00933310; // type:object size:0x80 scope:global align:4
+obj_art15_v = .data:0x00933390; // type:object size:0x1E0 scope:global align:8
+obj_art15_model = .data:0x00933570; // type:object size:0x188 scope:global align:8
+obj_art_dummy01_pal = .data:0x009336F8; // type:object size:0x20 scope:global align:4
+obj_art_dummy01_back_tex = .data:0x00933718; // type:object size:0x300 scope:global align:4
+obj_art_dummy01_tex = .data:0x00933A18; // type:object size:0x80 scope:global align:4
+obj_art_dummy01_name_tex = .data:0x00933A98; // type:object size:0x80 scope:global align:4
+obj_art_dummy01_v = .data:0x00933B18; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy01_model = .data:0x00933CF8; // type:object size:0x188 scope:global align:8
+obj_art_dummy02_pal = .data:0x00933E80; // type:object size:0x20 scope:global align:4
+obj_art_dummy02_tex = .data:0x00933EA0; // type:object size:0x80 scope:global align:4
+obj_art_dummy02_back_tex = .data:0x00933F20; // type:object size:0x300 scope:global align:4
+obj_art_dummy02_name_tex = .data:0x00934220; // type:object size:0x80 scope:global align:4
+obj_art_dummy02_v = .data:0x009342A0; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy02_model = .data:0x00934480; // type:object size:0x188 scope:global align:8
+obj_art_dummy03_pal = .data:0x00934620; // type:object size:0x20 scope:global align:32
+obj_art_dummy03_tex = .data:0x00934640; // type:object size:0x80 scope:global align:32
+obj_art_dummy03_back_tex = .data:0x009346C0; // type:object size:0x300 scope:global align:32
+obj_art_dummy03_name_tex = .data:0x009349C0; // type:object size:0x80 scope:global align:32
+obj_art_dummy03_v = .data:0x00934A40; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy03_model = .data:0x00934C20; // type:object size:0xA0 scope:global align:8
+obj_art_dummy04_pal = .data:0x00934CC0; // type:object size:0x20 scope:global align:4
+obj_art_dummy04_tex = .data:0x00934CE0; // type:object size:0x80 scope:global align:4
+obj_art_dummy04_back_tex = .data:0x00934D60; // type:object size:0x300 scope:global align:4
+obj_art_dummy04_name_tex = .data:0x00935060; // type:object size:0x80 scope:global align:4
+obj_art_dummy04_v = .data:0x009350E0; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy04_model = .data:0x009352C0; // type:object size:0x188 scope:global align:8
+obj_art_dummy05_pal = .data:0x00935448; // type:object size:0x20 scope:global align:4
+obj_art_dummy05_tex = .data:0x00935468; // type:object size:0x80 scope:global align:4
+obj_art_dummy05_back_tex = .data:0x009354E8; // type:object size:0x300 scope:global align:4
+obj_art_dummy05_name_tex = .data:0x009357E8; // type:object size:0x80 scope:global align:4
+obj_art_dummy05_v = .data:0x00935868; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy05_model = .data:0x00935A48; // type:object size:0x188 scope:global align:8
+obj_art_dummy06_pal = .data:0x00935BD0; // type:object size:0x20 scope:global align:4
+obj_art_dummy06_tex = .data:0x00935BF0; // type:object size:0x80 scope:global align:4
+obj_art_dummy06_back_tex = .data:0x00935C70; // type:object size:0x300 scope:global align:4
+obj_art_dummy06_name_tex = .data:0x00935F70; // type:object size:0x80 scope:global align:4
+obj_art_dummy06_v = .data:0x00935FF0; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy06_model = .data:0x009361D0; // type:object size:0x188 scope:global align:8
+obj_art_dummy07_pal = .data:0x00936358; // type:object size:0x20 scope:global align:4
+obj_art_dummy07_tex = .data:0x00936378; // type:object size:0x80 scope:global align:4
+obj_art_dummy07_back_tex = .data:0x009363F8; // type:object size:0x300 scope:global align:4
+obj_art_dummy07_name_tex = .data:0x009366F8; // type:object size:0x80 scope:global align:4
+obj_art_dummy07_v = .data:0x00936778; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy07_model = .data:0x00936958; // type:object size:0x188 scope:global align:8
+obj_art_dummy08_pal = .data:0x00936AE0; // type:object size:0x20 scope:global align:4
+obj_art_dummy08_tex = .data:0x00936B00; // type:object size:0x80 scope:global align:4
+obj_art_dummy08_back_tex = .data:0x00936B80; // type:object size:0x300 scope:global align:4
+obj_art_dummy08_name_tex = .data:0x00936E80; // type:object size:0x80 scope:global align:4
+obj_art_dummy08_v = .data:0x00936F00; // type:object size:0x1E0 scope:global align:8
+obj_art_dummy08_model = .data:0x009370E0; // type:object size:0x188 scope:global align:8
+plant_price_table = .data:0x00937268; // type:object size:0x18 scope:global align:4
+myr_kotei_pal = .data:0x00937280; // type:object size:0x20 scope:global align:4
+myr_enter = .data:0x009372A0; // type:object size:0x400 scope:global align:4
+myr_window = .data:0x009376A0; // type:object size:0x800 scope:global align:4
+myr_kotei_v = .data:0x00937EA0; // type:object size:0x160 scope:global align:8
+myr_kotei_model = .data:0x00938000; // type:object size:0xC8 scope:global align:8
+myr_out_model = .data:0x009380C8; // type:object size:0x50 scope:global align:8
+myr_koteiT_model = .data:0x00938118; // type:object size:0xC8 scope:global align:8
+myr_etc_model = .data:0x009381E0; // type:object size:0x28 scope:global align:8
+grd_player_select_evw_anime_1 = .data:0x00938220; // type:object size:0x8 scope:global align:32
+grd_player_select_evw_anime = .data:0x00938228; // type:object size:0x8 scope:global align:4
+rom_open_pal = .data:0x00938240; // type:object size:0x20 scope:global align:32
+rom_open_floor_tex = .data:0x00938260; // type:object size:0x800 scope:global align:32
+rom_open_shade_tex = .data:0x00938A60; // type:object size:0x400 scope:global align:32
+rom_open_spot2_tex_rgb_i4 = .data:0x00938E60; // type:object size:0x200 scope:global align:32
+rom_open_spot_tex = .data:0x00939060; // type:object size:0x800 scope:global align:32
+grd_player_select_v = .data:0x00939860; // type:object size:0x140 scope:global align:8
+grd_player_select_modelT = .data:0x009399A0; // type:object size:0xA0 scope:global align:8
+grd_player_select_model = .data:0x00939A40; // type:object size:0x60 scope:global align:8
+rom_koban_tel_pal = .data:0x00939AA0; // type:object size:0x20 scope:global align:32
+rom_koban_win_pal = .data:0x00939AC0; // type:object size:0x20 scope:global align:32
+rom_koban_us_pos_pal = .data:0x00939AE0; // type:object size:0x20 scope:global align:32
+rom_koban_jim_pal = .data:0x00939B00; // type:object size:0x20 scope:global align:32
+rom_koban_kabe_pal = .data:0x00939B20; // type:object size:0x20 scope:global align:32
+rom_koban_roc_pal = .data:0x00939B40; // type:object size:0x20 scope:global align:32
+rom_koban_tel = .data:0x00939B60; // type:object size:0x200 scope:global align:32
+rom_koban_win = .data:0x00939D60; // type:object size:0x200 scope:global align:32
+rom_koban_desk_front = .data:0x00939F60; // type:object size:0x100 scope:global align:32
+rom_koban_desk_side = .data:0x0093A060; // type:object size:0x80 scope:global align:32
+rom_koban_desk_top = .data:0x0093A0E0; // type:object size:0x100 scope:global align:32
+rom_koban_yuka = .data:0x0093A1E0; // type:object size:0x800 scope:global align:32
+rom_koban_us_pos1 = .data:0x0093A9E0; // type:object size:0x300 scope:global align:32
+rom_koban_us_pos2 = .data:0x0093ACE0; // type:object size:0x300 scope:global align:32
+rom_koban_kage1 = .data:0x0093AFE0; // type:object size:0x100 scope:global align:32
+rom_koban_kage2 = .data:0x0093B0E0; // type:object size:0x80 scope:global align:32
+rom_koban_ent = .data:0x0093B160; // type:object size:0x400 scope:global align:32
+rom_koban_jim_front = .data:0x0093B560; // type:object size:0x200 scope:global align:32
+rom_koban_jim_side = .data:0x0093B760; // type:object size:0x100 scope:global align:32
+rom_koban_jim_top = .data:0x0093B860; // type:object size:0x100 scope:global align:32
+rom_koban_kabe1 = .data:0x0093B960; // type:object size:0x800 scope:global align:32
+rom_koban_telcode = .data:0x0093C160; // type:object size:0x80 scope:global align:32
+rom_koban_book = .data:0x0093C1E0; // type:object size:0x80 scope:global align:32
+rom_koban_roc_s = .data:0x0093C260; // type:object size:0x100 scope:global align:32 data:string
+rom_koban_roc_t = .data:0x0093C360; // type:object size:0x80 scope:global align:32 data:string
+rom_koban_kabe3 = .data:0x0093C3E0; // type:object size:0x400 scope:global align:32
+rom_koban_isu = .data:0x0093C7E0; // type:object size:0x80 scope:global align:32
+rom_koban_roc_i = .data:0x0093C860; // type:object size:0x100 scope:global align:32
+rom_koban_roc_f3 = .data:0x0093C960; // type:object size:0x400 scope:global align:32
+police_indoor_v = .data:0x0093CD60; // type:object size:0x1A90 scope:global align:8
+police_indoor_modelT = .data:0x0093E7F0; // type:object size:0x8 scope:global align:8
+police_indoor_model = .data:0x0093E7F8; // type:object size:0x5D0 scope:global align:8
+mFM_rail_pal = .data:0x0093EDC8; // type:object size:0x180 scope:global align:4
+mFM_grd_s_rail_tex = .data:0x0093EF60; // type:object size:0x800 scope:global align:4
+mFM_grd_s_rail_2_tex = .data:0x0093F760; // type:object size:0x800 scope:global align:32
+mFM_grd_s_rail_3_tex = .data:0x0093FF60; // type:object size:0x800 scope:global align:32
+mFM_grd_w_rail_tex = .data:0x00940760; // type:object size:0x800 scope:global align:32
+mFM_grd_w_rail_2_tex = .data:0x00940F60; // type:object size:0x800 scope:global align:32
+mFM_grd_w_rail_3_tex = .data:0x00941760; // type:object size:0x800 scope:global align:32
+mFM_grd_s_river_tex = .data:0x00941F60; // type:object size:0x400 scope:global align:4
+mFM_grd_s_river_2_tex = .data:0x00942360; // type:object size:0x400 scope:global align:32
+mFM_grd_s_river_3_tex = .data:0x00942760; // type:object size:0x400 scope:global align:32
+mFM_grd_w_river_tex = .data:0x00942B60; // type:object size:0x400 scope:global align:32
+mFM_grd_w_river_2_tex = .data:0x00942F60; // type:object size:0x400 scope:global align:32
+mFM_grd_w_river_3_tex = .data:0x00943360; // type:object size:0x400 scope:global align:32
+mFM_grd_s_sand_tex = .data:0x00943760; // type:object size:0x400 scope:global align:4
+mFM_grd_s_sand_2_tex = .data:0x00943B60; // type:object size:0x400 scope:global align:32
+mFM_grd_s_sand_3_tex = .data:0x00943F60; // type:object size:0x400 scope:global align:32
+mFM_grd_w_sand_tex = .data:0x00944360; // type:object size:0x400 scope:global align:32
+mFM_grd_w_sand_2_tex = .data:0x00944760; // type:object size:0x400 scope:global align:32
+mFM_grd_w_sand_3_tex = .data:0x00944B60; // type:object size:0x400 scope:global align:32
+obj_clock_koban_pal = .data:0x00944F60; // type:object size:0x20 scope:global align:4
+obj_clock_koban_side_tex_txt = .data:0x00944F80; // type:object size:0x80 scope:global align:4 data:string
+obj_clock_koban_moji_tex_txt = .data:0x00945000; // type:object size:0x200 scope:global align:4
+obj_clock_koban_v = .data:0x00945200; // type:object size:0x290 scope:global align:8
+obj_clock_koban_body_model = .data:0x00945490; // type:object size:0x1A8 scope:global align:8
+obj_clock_koban_long_model = .data:0x00945638; // type:object size:0xB8 scope:global align:8
+obj_clock_koban_short_model = .data:0x009456F0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_koban_tbl = .data:0x009457A8; // type:object size:0x5 scope:global align:4
+cKF_c_obj_clock_koban_tbl = .data:0x009457B0; // type:object size:0x24 scope:global align:4
+cKF_ba_r_obj_clock_koban = .data:0x009457D4; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_koban_tbl = .data:0x009457E8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_clock_koban = .data:0x00945824; // type:object size:0x8 scope:global align:4
+obj_clock_museum1_hari_tex_txt = .data:0x00945830; // type:object size:0x400 scope:global align:4
+obj_clock_museum1_dai_tex_txt = .data:0x00945C30; // type:object size:0x200 scope:global align:4
+obj_clock_museum1_side_tex_txt = .data:0x00945E30; // type:object size:0x800 scope:global align:4
+obj_clock_museum1_front_tex_txt = .data:0x00946630; // type:object size:0xC00 scope:global align:4
+obj_clock_museum1_v = .data:0x00947230; // type:object size:0x2B0 scope:global align:8
+obj_clock_museum1_body_model = .data:0x009474E0; // type:object size:0x180 scope:global align:8
+obj_clock_museum1_long_model = .data:0x00947660; // type:object size:0x90 scope:global align:8
+obj_clock_museum1_short_model = .data:0x009476F0; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_obj_clock_museum1_tbl = .data:0x00947778; // type:object size:0x5 scope:global align:4
+cKF_c_obj_clock_museum1_tbl = .data:0x00947780; // type:object size:0x24 scope:global align:4
+cKF_ba_r_obj_clock_museum1 = .data:0x009477A4; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_museum1_tbl = .data:0x009477B8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_clock_museum1 = .data:0x009477F4; // type:object size:0x8 scope:global align:4
+obj_clock_tailor_1_tex_txt = .data:0x00947800; // type:object size:0x800 scope:global align:32
+obj_clock_tailor_2_tex_txt = .data:0x00948000; // type:object size:0x200 scope:global align:32
+obj_clock_tailor_v = .data:0x00948200; // type:object size:0x3E0 scope:global align:8
+obj_clock_tailor_base_model = .data:0x009485E0; // type:object size:0xB0 scope:global align:8
+obj_clock_tailor_long_model = .data:0x00948690; // type:object size:0x50 scope:global align:8
+obj_clock_tailor_short_model = .data:0x009486E0; // type:object size:0x50 scope:global align:8
+obj_clock_tailor_furi_model = .data:0x00948730; // type:object size:0x50 scope:global align:8
+cKF_ckcb_r_obj_clock_tailor_tbl = .data:0x00948780; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_clock_tailor_tbl = .data:0x00948788; // type:object size:0x2 scope:global align:4
+cKF_c_obj_clock_tailor_tbl = .data:0x0094878C; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_clock_tailor_tbl = .data:0x009487BC; // type:object size:0x1E scope:global align:4
+cKF_ba_r_obj_clock_tailor = .data:0x009487DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_tailor_tbl = .data:0x009487F0; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_clock_tailor = .data:0x00948844; // type:object size:0x8 scope:global align:4
+obj_shop1_clock_pal = .data:0x00948850; // type:object size:0x20 scope:global align:4
+obj_clock_shop1_tex_txt = .data:0x00948870; // type:object size:0x800 scope:global align:4
+obj_clock_shop1_v = .data:0x00949070; // type:object size:0x410 scope:global align:8
+obj_clock_shop1_base_model = .data:0x00949480; // type:object size:0x138 scope:global align:8
+obj_clock_shop1_long_model = .data:0x009495B8; // type:object size:0xB8 scope:global align:8
+obj_clock_shop1_short_model = .data:0x00949670; // type:object size:0xB8 scope:global align:8
+obj_clock_shop1_pend_model = .data:0x00949728; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_shop1_tbl = .data:0x009497E0; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_clock_shop1_tbl = .data:0x009497E8; // type:object size:0x2 scope:global align:4
+cKF_c_obj_clock_shop1_tbl = .data:0x009497EC; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_clock_shop1_tbl = .data:0x0094981C; // type:object size:0x1E scope:global align:4
+cKF_ba_r_obj_clock_shop1 = .data:0x0094983C; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_shop1_tbl = .data:0x00949850; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_clock_shop1 = .data:0x009498A4; // type:object size:0x8 scope:global align:4
+obj_clock_shop2_pal = .data:0x009498B0; // type:object size:0x20 scope:global align:4
+obj_clock_shop2_body_tex_txt = .data:0x009498D0; // type:object size:0x100 scope:global align:4
+obj_clock_shop2_v = .data:0x009499D0; // type:object size:0x2C0 scope:global align:8
+obj_clock_shop2_body_model = .data:0x00949C90; // type:object size:0x138 scope:global align:8
+obj_clock_shop2_long_model = .data:0x00949DC8; // type:object size:0xB8 scope:global align:8
+obj_clock_shop2_short_model = .data:0x00949E80; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_shop2_tbl = .data:0x00949F38; // type:object size:0x5 scope:global align:4
+cKF_c_obj_clock_shop2_tbl = .data:0x00949F40; // type:object size:0x24 scope:global align:4
+cKF_ba_r_obj_clock_shop2 = .data:0x00949F64; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_shop2_tbl = .data:0x00949F78; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_clock_shop2 = .data:0x00949FB4; // type:object size:0x8 scope:global align:4
+obj_clock_shop3_pal = .data:0x00949FC0; // type:object size:0x20 scope:global align:4
+obj_clock_shop3_hari_tex_txt = .data:0x00949FE0; // type:object size:0x80 scope:global align:4
+obj_clock_shop3_body_tex_txt = .data:0x0094A060; // type:object size:0x100 scope:global align:4
+obj_clock_shop3_side_tex_txt = .data:0x0094A160; // type:object size:0x80 scope:global align:4 data:string
+obj_clock_shop3_v = .data:0x0094A1E0; // type:object size:0x2A0 scope:global align:8
+obj_clock_shop3_body_model = .data:0x0094A480; // type:object size:0x188 scope:global align:8
+obj_clock_shop3_long_model = .data:0x0094A608; // type:object size:0xB8 scope:global align:8
+obj_clock_shop3_short_model = .data:0x0094A6C0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_shop3_tbl = .data:0x0094A778; // type:object size:0x5 scope:global align:4
+cKF_c_obj_clock_shop3_tbl = .data:0x0094A780; // type:object size:0x24 scope:global align:4
+cKF_ba_r_obj_clock_shop3 = .data:0x0094A7A4; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_shop3_tbl = .data:0x0094A7B8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_obj_clock_shop3 = .data:0x0094A7F4; // type:object size:0x8 scope:global align:4
+obj_clock_shop4_2_pal = .data:0x0094A800; // type:object size:0x20 scope:global align:4
+obj_clock_shop4_2_t4_tex_txt = .data:0x0094A820; // type:object size:0x200 scope:global align:4
+obj_clock_shop4_2_t3_tex_txt = .data:0x0094AA20; // type:object size:0x180 scope:global align:4
+obj_clock_shop4_2_t2_tex_txt = .data:0x0094ABA0; // type:object size:0x300 scope:global align:4
+obj_clock_shop4_2_t1_tex_txt = .data:0x0094AEA0; // type:object size:0x480 scope:global align:4
+obj_clock_shop4_v = .data:0x0094B320; // type:object size:0x100 scope:global align:8
+obj_clock_shop4_front_model = .data:0x0094B420; // type:object size:0xB8 scope:global align:8
+obj_clock_shop4_long_model = .data:0x0094B4D8; // type:object size:0xB8 scope:global align:8
+obj_clock_shop4_short_model = .data:0x0094B590; // type:object size:0xB8 scope:global align:8
+obj_clock_shop4_huriko_model = .data:0x0094B648; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_shop4_tbl = .data:0x0094B700; // type:object size:0x7 scope:global align:4
+cKF_kn_obj_clock_shop4_tbl = .data:0x0094B708; // type:object size:0x2 scope:global align:4
+cKF_c_obj_clock_shop4_tbl = .data:0x0094B70C; // type:object size:0x2E scope:global align:4
+cKF_ds_obj_clock_shop4_tbl = .data:0x0094B73C; // type:object size:0x2A scope:global align:4
+cKF_ba_r_obj_clock_shop4 = .data:0x0094B768; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_shop4_tbl = .data:0x0094B77C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_obj_clock_shop4 = .data:0x0094B7D0; // type:object size:0x8 scope:global align:4
+obj_clock_yub_pal = .data:0x0094B7D8; // type:object size:0x20 scope:global align:4
+obj_clock_yub_t3_txt = .data:0x0094B7F8; // type:object size:0x100 scope:global align:4
+obj_clock_yub_t1_txt = .data:0x0094B8F8; // type:object size:0x200 scope:global align:4
+obj_clock_yub_t2_txt = .data:0x0094BAF8; // type:object size:0x200 scope:global align:4
+obj_clock_yub_v = .data:0x0094BCF8; // type:object size:0x1A0 scope:global align:8
+obj_clock_yub_side_model = .data:0x0094BE98; // type:object size:0xE8 scope:global align:8
+obj_clock_yub_front_model = .data:0x0094BF80; // type:object size:0xC0 scope:global align:8
+obj_clock_yub_long_model = .data:0x0094C040; // type:object size:0xB8 scope:global align:8
+obj_clock_yub_short_model = .data:0x0094C0F8; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_obj_clock_yub_tbl = .data:0x0094C1B0; // type:object size:0x6 scope:global align:4
+cKF_c_obj_clock_yub_tbl = .data:0x0094C1B8; // type:object size:0x2A scope:global align:4
+cKF_ba_r_obj_clock_yub = .data:0x0094C1E4; // type:object size:0x14 scope:global align:4
+cKF_je_r_obj_clock_yub_tbl = .data:0x0094C1F8; // type:object size:0x48 scope:global align:4
+cKF_bs_r_obj_clock_yub = .data:0x0094C240; // type:object size:0x8 scope:global align:4
+rom_conveni_ent_pal = .data:0x0094C260; // type:object size:0x20 scope:local align:32
+rom_conveni_floor_E_pal = .data:0x0094C280; // type:object size:0x20 scope:local align:32
+rom_conveni_cooler_pal = .data:0x0094C2A0; // type:object size:0x20 scope:local align:32
+rom_conveni_tana_pal = .data:0x0094C2C0; // type:object size:0x20 scope:local align:32
+rom_conveni_leji_pal = .data:0x0094C2E0; // type:object size:0x20 scope:local align:32
+rom_conveni_mirror_rgb_ci4_pal = .data:0x0094C300; // type:object size:0x20 scope:local align:32
+rom_conveni_ent = .data:0x0094C320; // type:object size:0x200 scope:local align:32
+rom_conveni_floor_F = .data:0x0094C520; // type:object size:0x400 scope:global align:32
+rom_conveni_maruwaku = .data:0x0094C920; // type:object size:0x200 scope:local align:32
+rom_conveni_counter = .data:0x0094CB20; // type:object size:0x200 scope:local align:32
+rom_conveni_bou = .data:0x0094CD20; // type:object size:0x80 scope:local align:32
+rom_conveni_tana_bf2 = .data:0x0094CDA0; // type:object size:0x80 scope:local align:32
+rom_conveni_floor_E = .data:0x0094CE20; // type:object size:0x200 scope:local align:32 data:string
+rom_conveni_tana_f = .data:0x0094D020; // type:object size:0x80 scope:local align:32
+rom_convevi_kage1 = .data:0x0094D0A0; // type:object size:0x100 scope:local align:32
+rom_conveni_leji_e = .data:0x0094D1A0; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_k = .data:0x0094D220; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_s = .data:0x0094D2A0; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_t = .data:0x0094D320; // type:object size:0x80 scope:local align:32
+rom_conveni_wall_C = .data:0x0094D3A0; // type:object size:0x400 scope:local align:32
+rom_conveni_door = .data:0x0094D7A0; // type:object size:0x300 scope:local align:32
+rom_conveni_tana_bf = .data:0x0094DAA0; // type:object size:0x80 scope:local align:32
+rom_conveni_mirror_rgb_ci4 = .data:0x0094DB20; // type:object size:0x80 scope:local align:32
+rom_shop2w_v = .data:0x0094DBA0; // type:object size:0x1340 scope:global align:8
+rom_shop2w_modelT = .data:0x0094EEE0; // type:object size:0x68 scope:global align:8
+rom_shop2w_model = .data:0x0094EF48; // type:object size:0x458 scope:global align:8
+rom_shop2f_v = .data:0x0094F3A0; // type:object size:0x3D0 scope:global align:8
+rom_shop2f_modelT = .data:0x0094F770; // type:object size:0x8 scope:global align:8
+rom_shop2f_model = .data:0x0094F778; // type:object size:0x100 scope:global align:8
+rom_conveni_ent_pal = .data:0x0094F880; // type:object size:0x20 scope:local align:32
+rom_conveni_cooler_pal = .data:0x0094F8A0; // type:object size:0x20 scope:local align:32
+rom_shop_kouhaku_pal = .data:0x0094F8C0; // type:object size:0x20 scope:local align:32
+rom_conveni_tana_pal = .data:0x0094F8E0; // type:object size:0x20 scope:local align:32
+rom_conveni_floor_E_pal = .data:0x0094F900; // type:object size:0x20 scope:local align:32
+rom_conveni_leji_pal = .data:0x0094F920; // type:object size:0x20 scope:local align:32
+rom_conveni_mirror_rgb_ci4_pal = .data:0x0094F940; // type:object size:0x20 scope:local align:32
+rom_conveni_ent = .data:0x0094F960; // type:object size:0x200 scope:local align:32
+rom_conveni_maruwaku = .data:0x0094FB60; // type:object size:0x200 scope:local align:32
+rom_shop_kouhaku_tex = .data:0x0094FD60; // type:object size:0x800 scope:local align:32
+rom_conveni_counter = .data:0x00950560; // type:object size:0x200 scope:local align:32
+rom_conveni_bou = .data:0x00950760; // type:object size:0x80 scope:local align:32
+rom_conveni_tana_bf2 = .data:0x009507E0; // type:object size:0x80 scope:local align:32
+rom_conveni_floor_E = .data:0x00950860; // type:object size:0x200 scope:local align:32 data:string
+rom_conveni_tana_f = .data:0x00950A60; // type:object size:0x80 scope:local align:32
+rom_convevi_kage1 = .data:0x00950AE0; // type:object size:0x100 scope:local align:32
+rom_conveni_leji_e = .data:0x00950BE0; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_k = .data:0x00950C60; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_s = .data:0x00950CE0; // type:object size:0x80 scope:local align:32
+rom_conveni_leji_t = .data:0x00950D60; // type:object size:0x80 scope:local align:32
+rom_conveni_wall_C = .data:0x00950DE0; // type:object size:0x400 scope:local align:32
+rom_conveni_door = .data:0x009511E0; // type:object size:0x300 scope:local align:32
+rom_conveni_tana_bf = .data:0x009514E0; // type:object size:0x80 scope:local align:32
+rom_conveni_mirror_rgb_ci4 = .data:0x00951560; // type:object size:0x80 scope:local align:32
+rom_shop2_fuku_v = .data:0x009515E0; // type:object size:0xFE0 scope:global align:8
+rom_shop2_fuku_modelT = .data:0x009525C0; // type:object size:0x58 scope:global align:8
+rom_shop2_fuku_model = .data:0x00952618; // type:object size:0x450 scope:global align:8
+rom_shop4_1_floor_tex_pal = .data:0x00952A80; // type:object size:0x20 scope:local align:32
+rom_shop4_1_lamp_tex_pal = .data:0x00952AA0; // type:object size:0x20 scope:global align:32
+rom_shop4_1_base_tex_pal = .data:0x00952AC0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_stair_tex_pal = .data:0x00952AE0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_table_tex_pal = .data:0x00952B00; // type:object size:0x20 scope:local align:32
+rom_shop4_1_wall_tex_pal = .data:0x00952B20; // type:object size:0x20 scope:local align:32
+rom_shop4_1_sign01_tex_pal = .data:0x00952B40; // type:object size:0x20 scope:local align:32
+rom_shop4_1_kaunta_tex_pal = .data:0x00952B60; // type:object size:0x20 scope:local align:32
+rom_shop4_1_us_sign01_tex_pal = .data:0x00952B80; // type:object size:0x20 scope:global align:32
+rom_shop4_1_us_sign02_tex_pal = .data:0x00952BA0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_us_sign03_tex_pal = .data:0x00952BC0; // type:object size:0x20 scope:global align:32
+rom_shop4_1_sign03_tex_pal = .data:0x00952BE0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_reji_tex_pal = .data:0x00952C00; // type:object size:0x20 scope:local align:32
+rom_shop4_1_floor01_tex = .data:0x00952C20; // type:object size:0x800 scope:local align:32
+rom_shop4_1_lamp_tex = .data:0x00953420; // type:object size:0x80 scope:global align:32
+rom_shop4_1_base_tex = .data:0x009534A0; // type:object size:0x200 scope:local align:32
+rom_shop4_1_stair01_tex = .data:0x009536A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_table01_tex = .data:0x009537A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_table02_tex = .data:0x009538A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_wall01_tex = .data:0x009539A0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_wall02_tex = .data:0x009541A0; // type:object size:0x200 scope:local align:32
+rom_shop4_1_sign05_tex = .data:0x009543A0; // type:object size:0x80 scope:local align:32
+rom_shop4_1_kaunta01_tex = .data:0x00954420; // type:object size:0x200 scope:local align:32
+rom_shop4_1_kaunta02_tex = .data:0x00954620; // type:object size:0x80 scope:local align:32
+rom_shop4_1_us_sign01_tex = .data:0x009546A0; // type:object size:0x400 scope:global align:32
+rom_shop4_1_us_sign02_tex = .data:0x00954AA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_us_sign03_tex = .data:0x00954BA0; // type:object size:0x600 scope:global align:32
+rom_shop4_1_sign04_tex = .data:0x009551A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_reji01_tex = .data:0x009552A0; // type:object size:0x300 scope:local align:32
+rom_shop4_1_reji02_tex = .data:0x009555A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_reji03_tex = .data:0x009556A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_floor02_tex = .data:0x009557A0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_floor03_tex = .data:0x00955FA0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_floor04_tex = .data:0x009567A0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_shadow01_tex = .data:0x00956FA0; // type:object size:0x100 scope:global align:32
+rom_shop4_1_shadow02_tex = .data:0x009570A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_lamp02_tex = .data:0x009571A0; // type:object size:0x80 scope:global align:32
+rom_shop4_1_shadow03_tex = .data:0x00957220; // type:object size:0x100 scope:global align:32
+rom_shop4_1_v = .data:0x00957320; // type:object size:0x1620 scope:global align:8
+rom_shop4_1_modelT = .data:0x00958940; // type:object size:0xC0 scope:global align:8
+rom_shop4_1_model = .data:0x00958A00; // type:object size:0x4F0 scope:global align:8
+rom_shop4_1_floor_tex_pal = .data:0x00958F00; // type:object size:0x20 scope:local align:32
+rom_shop4_1_base_tex_pal = .data:0x00958F20; // type:object size:0x20 scope:local align:32
+rom_shop4_1_stair_tex_pal = .data:0x00958F40; // type:object size:0x20 scope:local align:32
+rom_shop4_1_table_tex_pal = .data:0x00958F60; // type:object size:0x20 scope:local align:32
+rom_shop4_1_wall_tex_pal = .data:0x00958F80; // type:object size:0x20 scope:local align:32
+rom_shop4_1_sign01_tex_pal = .data:0x00958FA0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_kaunta_tex_pal = .data:0x00958FC0; // type:object size:0x20 scope:local align:32
+rom_shop4_2_sign01_us_tex_pal = .data:0x00958FE0; // type:object size:0x20 scope:local align:32
+rom_shop4_1_us_sign02_tex_pal = .data:0x00959000; // type:object size:0x20 scope:local align:32
+rom_shop4_1_us_sign0_tex_pal = .data:0x00959020; // type:object size:0x20 scope:global align:32
+rom_shop4_1_sign03_tex_pal = .data:0x00959040; // type:object size:0x20 scope:local align:32
+rom_shop4_1_reji_tex_pal = .data:0x00959060; // type:object size:0x20 scope:local align:32
+rom_shop_kouhaku_pal = .data:0x00959080; // type:object size:0x20 scope:local align:32
+rom_shop4_1_floor01_tex = .data:0x009590A0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_base_tex = .data:0x009598A0; // type:object size:0x200 scope:local align:32
+rom_shop4_1_stair01_tex = .data:0x00959AA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_table01_tex = .data:0x00959BA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_table02_tex = .data:0x00959CA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_wall01_tex = .data:0x00959DA0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_wall02_tex = .data:0x0095A5A0; // type:object size:0x200 scope:local align:32
+rom_shop4_1_sign05_tex = .data:0x0095A7A0; // type:object size:0x80 scope:local align:32
+rom_shop4_1_kaunta01_tex = .data:0x0095A820; // type:object size:0x200 scope:local align:32
+rom_shop4_1_kaunta02_tex = .data:0x0095AA20; // type:object size:0x80 scope:local align:32
+rom_shop4_2_us_sign01_tex = .data:0x0095AAA0; // type:object size:0x400 scope:local align:32
+rom_shop4_1_us_sign02_tex = .data:0x0095AEA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_us_sign0_tex = .data:0x0095AFA0; // type:object size:0x600 scope:global align:32
+rom_shop4_1_sign04_tex = .data:0x0095B5A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_reji01_tex = .data:0x0095B6A0; // type:object size:0x300 scope:local align:32
+rom_shop4_1_reji02_tex = .data:0x0095B9A0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_reji03_tex = .data:0x0095BAA0; // type:object size:0x100 scope:local align:32
+rom_shop4_1_floor02_tex = .data:0x0095BBA0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_floor03_tex = .data:0x0095C3A0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_floor04_tex = .data:0x0095CBA0; // type:object size:0x800 scope:local align:32
+rom_shop4_1_shadow02_tex = .data:0x0095D3A0; // type:object size:0x100 scope:local align:32
+rom_shop_kouhaku_tex = .data:0x0095D4A0; // type:object size:0x800 scope:local align:32
+rom_shop4_fuku_v = .data:0x0095DCA0; // type:object size:0x1720 scope:global align:8
+rom_shop4_fuku_modelT = .data:0x0095F3C0; // type:object size:0x68 scope:global align:8
+rom_shop4_fuku_model = .data:0x0095F428; // type:object size:0x4F0 scope:global align:8
+rom_shop4_1_floor_tex_pal = .data:0x0095F920; // type:object size:0x20 scope:local align:32
+rom_shop4_2_stair_tex_pal = .data:0x0095F940; // type:object size:0x20 scope:global align:32
+rom_shop4_1_table_tex_pal = .data:0x0095F960; // type:object size:0x20 scope:local align:32
+rom_shop4_2_wall_tex_pal = .data:0x0095F980; // type:object size:0x20 scope:global align:32
+rom_shop4_2_sign01_tex_pal = .data:0x0095F9A0; // type:object size:0x20 scope:global align:32
+rom_shop4_2_sign01_us_tex_pal = .data:0x0095F9C0; // type:object size:0x20 scope:local align:32
+rom_shop4_2_space_tex_pal = .data:0x0095F9E0; // type:object size:0x20 scope:global align:32
+rom_shop4_2_floor01_tex = .data:0x0095FA00; // type:object size:0x800 scope:global align:32
+rom_shop4_2_stair01_tex = .data:0x00960200; // type:object size:0x100 scope:global align:32
+rom_shop4_2_table01_tex = .data:0x00960300; // type:object size:0x100 scope:global align:32
+rom_shop4_2_table02_tex = .data:0x00960400; // type:object size:0x100 scope:global align:32
+rom_shop4_2_wall01_tex = .data:0x00960500; // type:object size:0x800 scope:global align:32
+rom_shop4_2_sign05_tex = .data:0x00960D00; // type:object size:0x80 scope:global align:32
+rom_shop4_2_us_sign01_tex = .data:0x00960D80; // type:object size:0x400 scope:local align:32
+rom_shop4_2_space_tex = .data:0x00961180; // type:object size:0x400 scope:global align:32
+rom_shop4_2_wall02_tex = .data:0x00961580; // type:object size:0x800 scope:global align:32
+rom_shop4_2_floor02_tex = .data:0x00961D80; // type:object size:0x800 scope:global align:32
+rom_shop4_2_floor03_tex = .data:0x00962580; // type:object size:0x800 scope:global align:32
+rom_shop4_2_floor04_tex = .data:0x00962D80; // type:object size:0x800 scope:global align:32
+rom_shop4_2_shadow02_tex = .data:0x00963580; // type:object size:0x100 scope:global align:32
+rom_shop4_2w_v = .data:0x00963680; // type:object size:0xE20 scope:global align:8
+rom_shop4_2w_modelT = .data:0x009644A0; // type:object size:0x58 scope:global align:8
+rom_shop4_2w_model = .data:0x009644F8; // type:object size:0x338 scope:global align:8
+rom_shop4_2f_v = .data:0x00964830; // type:object size:0x350 scope:global align:8
+rom_shop4_2f_modelT = .data:0x00964B80; // type:object size:0x8 scope:global align:8
+rom_shop4_2f_model = .data:0x00964B88; // type:object size:0x108 scope:global align:8
+rom_shop3_ent_pal = .data:0x00964CA0; // type:object size:0x20 scope:local align:32
+rom_shop3_tana_pal = .data:0x00964CC0; // type:object size:0x20 scope:local align:32
+rom_shop3_leji_pal = .data:0x00964CE0; // type:object size:0x20 scope:local align:32
+rom_shop3_desk_pal = .data:0x00964D00; // type:object size:0x20 scope:local align:32
+rom_shop3_mat_pal = .data:0x00964D20; // type:object size:0x20 scope:local align:32
+rom_shop3_bini_pal = .data:0x00964D40; // type:object size:0x20 scope:local align:32
+rom_shop3_wallC_pal = .data:0x00964D60; // type:object size:0x20 scope:local align:32
+rom_shop3_ent = .data:0x00964D80; // type:object size:0x200 scope:local align:32
+rom_shop3_tana = .data:0x00964F80; // type:object size:0x100 scope:global align:32
+rom_shop3_kago_b = .data:0x00965080; // type:object size:0x100 scope:local align:32
+rom_shop3_kago_t = .data:0x00965180; // type:object size:0x80 scope:global align:32
+rom_shop3_leji_f = .data:0x00965200; // type:object size:0x80 scope:local align:32
+rom_shop3_leji_k = .data:0x00965280; // type:object size:0x80 scope:local align:32
+rom_shop3_leji_b = .data:0x00965300; // type:object size:0x80 scope:local align:32
+rom_shop3_desk_a = .data:0x00965380; // type:object size:0x200 scope:local align:32
+rom_shop3_desk_b = .data:0x00965580; // type:object size:0x80 scope:local align:32
+rom_shop3_desk_c = .data:0x00965600; // type:object size:0x200 scope:local align:32
+rom_shop3_tana_t = .data:0x00965800; // type:object size:0x80 scope:local align:32
+rom_shop3_mat_a = .data:0x00965880; // type:object size:0x80 scope:global align:32
+rom_shop3_mat_b = .data:0x00965900; // type:object size:0x100 scope:global align:32
+rom_shop3_bini = .data:0x00965A00; // type:object size:0x80 scope:local align:32
+rom_shop3_bini_b = .data:0x00965A80; // type:object size:0x80 scope:local align:32
+rom_shop3_car = .data:0x00965B00; // type:object size:0x100 scope:local align:32
+rom_shop3_bini_a = .data:0x00965C00; // type:object size:0x80 scope:local align:32
+rom_shop3_wallC = .data:0x00965C80; // type:object size:0x800 scope:local align:32
+rom_shop3_wallD = .data:0x00966480; // type:object size:0x800 scope:local align:32
+rom_shop3_floorE = .data:0x00966C80; // type:object size:0x200 scope:local align:32
+rom_shop3_kage1 = .data:0x00966E80; // type:object size:0x80 scope:local align:32
+rom_shop3w_v = .data:0x00966F00; // type:object size:0x2320 scope:global align:8
+rom_shop3w_modelT = .data:0x00969220; // type:object size:0x8 scope:global align:8
+rom_shop3w_model = .data:0x00969228; // type:object size:0x7F8 scope:global align:8
+rom_shop3f_v = .data:0x00969A20; // type:object size:0x240 scope:global align:8
+rom_shop3f_modelT = .data:0x00969C60; // type:object size:0x8 scope:global align:8
+rom_shop3f_model = .data:0x00969C68; // type:object size:0xE8 scope:global align:8
+rom_shop3_ent_pal = .data:0x00969D60; // type:object size:0x20 scope:local align:32
+rom_shop_kouhaku_pal = .data:0x00969D80; // type:object size:0x20 scope:local align:32
+rom_shop3_tana_pal = .data:0x00969DA0; // type:object size:0x20 scope:local align:32
+rom_shop3_leji_pal = .data:0x00969DC0; // type:object size:0x20 scope:local align:32
+rom_shop3_desk_pal = .data:0x00969DE0; // type:object size:0x20 scope:local align:32
+rom_shop3_bini_pal = .data:0x00969E00; // type:object size:0x20 scope:local align:32
+rom_shop3_mat_pal = .data:0x00969E20; // type:object size:0x20 scope:local align:32
+rom_shop3_wallC_pal = .data:0x00969E40; // type:object size:0x20 scope:local align:32
+rom_shop3_ent = .data:0x00969E60; // type:object size:0x200 scope:local align:32
+rom_shop_kouhaku_tex = .data:0x0096A060; // type:object size:0x800 scope:local align:32
+rom_shop3_tana2 = .data:0x0096A860; // type:object size:0x100 scope:global align:32
+rom_shop3_kago_b = .data:0x0096A960; // type:object size:0x100 scope:local align:32
+rom_shop3_leji_f = .data:0x0096AA60; // type:object size:0x80 scope:local align:32
+rom_shop3_leji_k = .data:0x0096AAE0; // type:object size:0x80 scope:local align:32
+rom_shop3_leji_b = .data:0x0096AB60; // type:object size:0x80 scope:local align:32
+rom_shop3_desk_a = .data:0x0096ABE0; // type:object size:0x200 scope:local align:32
+rom_shop3_desk_b = .data:0x0096ADE0; // type:object size:0x80 scope:local align:32
+rom_shop3_desk_c = .data:0x0096AE60; // type:object size:0x200 scope:local align:32
+rom_shop3_tana_t = .data:0x0096B060; // type:object size:0x80 scope:local align:32
+rom_shop3_bini = .data:0x0096B0E0; // type:object size:0x80 scope:local align:32
+rom_shop3_bini_b = .data:0x0096B160; // type:object size:0x80 scope:local align:32
+rom_shop3_car = .data:0x0096B1E0; // type:object size:0x100 scope:local align:32
+rom_shop3_bini_a = .data:0x0096B2E0; // type:object size:0x80 scope:local align:32
+rom_shop3_wallC = .data:0x0096B360; // type:object size:0x800 scope:local align:32
+rom_shop3_wallD = .data:0x0096BB60; // type:object size:0x800 scope:local align:32
+rom_shop3_floorE = .data:0x0096C360; // type:object size:0x200 scope:local align:32
+rom_shop3_kage1 = .data:0x0096C560; // type:object size:0x80 scope:local align:32
+rom_shop3_fuku_v = .data:0x0096C5E0; // type:object size:0x2030 scope:global align:8
+rom_shop3_fuku_modelT = .data:0x0096E610; // type:object size:0x8 scope:global align:8
+rom_shop3_fuku_model = .data:0x0096E618; // type:object size:0x758 scope:global align:8
+rom_shop1_pal = .data:0x0096ED80; // type:object size:0x20 scope:local align:32
+rom_shop1_tubo_pal = .data:0x0096EDA0; // type:object size:0x20 scope:global align:32
+rom_shop1_table_tex = .data:0x0096EDC0; // type:object size:0x600 scope:local align:32
+rom_shop1_window_tex = .data:0x0096F3C0; // type:object size:0x800 scope:local align:32
+rom_shop1_shadow_tex = .data:0x0096FBC0; // type:object size:0x400 scope:local align:32
+rom_shop1_tubo_tex = .data:0x0096FFC0; // type:object size:0x400 scope:global align:32
+rom_shop1w_v = .data:0x009703C0; // type:object size:0x12E0 scope:global align:8
+rom_shop1w_modelT = .data:0x009716A0; // type:object size:0x88 scope:global align:8
+rom_shop1w_model = .data:0x00971728; // type:object size:0x370 scope:global align:8
+rom_shop1f_v = .data:0x00971A98; // type:object size:0x5B0 scope:global align:8
+rom_shop1f_modelT = .data:0x00972048; // type:object size:0x8 scope:global align:8
+rom_shop1f_model = .data:0x00972050; // type:object size:0x130 scope:global align:8
+rom_shop1_pal = .data:0x00972180; // type:object size:0x20 scope:local align:32
+rom_shop1_w_pal = .data:0x009721A0; // type:object size:0x20 scope:global align:32
+rom_shop1_f_pal = .data:0x009721C0; // type:object size:0x20 scope:global align:32
+rom_shop_kouhaku_pal = .data:0x009721E0; // type:object size:0x20 scope:local align:32
+rom_shop1_table_tex = .data:0x00972200; // type:object size:0x600 scope:local align:32
+rom_shop1_window_tex = .data:0x00972800; // type:object size:0x800 scope:local align:32
+rom_shop1_shadow_tex = .data:0x00973000; // type:object size:0x400 scope:local align:32
+rom_shop1_w1_tex = .data:0x00973400; // type:object size:0x800 scope:global align:32
+rom_shop1_w2_tex = .data:0x00973C00; // type:object size:0x800 scope:global align:32
+rom_shop1_f1_tex = .data:0x00974400; // type:object size:0x800 scope:global align:32
+rom_shop1_f2_tex = .data:0x00974C00; // type:object size:0x800 scope:global align:32
+rom_shop1_f3_tex = .data:0x00975400; // type:object size:0x800 scope:global align:32
+rom_shop1_f4_tex = .data:0x00975C00; // type:object size:0x800 scope:global align:32 data:string
+rom_shop_kouhaku_tex = .data:0x00976400; // type:object size:0x800 scope:local align:32
+rom_shop1_fuku_v = .data:0x00976C00; // type:object size:0xE90 scope:global align:8
+rom_shop1_fuku_modelT = .data:0x00977A90; // type:object size:0x70 scope:global align:8
+rom_shop1_fuku_model = .data:0x00977B00; // type:object size:0x340 scope:global align:8
+mFM_grd_sprashA_tex = .data:0x00977E40; // type:object size:0x200 scope:global align:4
+mFM_grd_sprashC_tex = .data:0x00978040; // type:object size:0x200 scope:global align:4
+mFM_grd_s_station1_pal = .data:0x00978240; // type:object size:0x20 scope:global align:4
+mFM_grd_s_station_tex = .data:0x00978260; // type:object size:0x800 scope:global align:4
+mFM_grd_s_station_2_tex = .data:0x00978A60; // type:object size:0x800 scope:global align:32
+mFM_grd_s_station_3_tex = .data:0x00979260; // type:object size:0x800 scope:global align:32
+mFM_grd_w_station_tex = .data:0x00979A60; // type:object size:0x800 scope:global align:32
+mFM_grd_w_station_2_tex = .data:0x0097A260; // type:object size:0x800 scope:global align:32
+mFM_grd_w_station_3_tex = .data:0x0097AA60; // type:object size:0x800 scope:global align:32
+mFM_grd_s_stone_tex = .data:0x0097B260; // type:object size:0x800 scope:global align:4
+mFM_grd_s_stone_2_tex = .data:0x0097BA60; // type:object size:0x800 scope:global align:32
+mFM_grd_s_stone_3_tex = .data:0x0097C260; // type:object size:0x800 scope:global align:32
+mFM_grd_w_stone_tex = .data:0x0097CA60; // type:object size:0x800 scope:global align:32
+mFM_grd_w_stone_2_tex = .data:0x0097D260; // type:object size:0x800 scope:global align:32
+mFM_grd_w_stone_3_tex = .data:0x0097DA60; // type:object size:0x800 scope:global align:32
+int_sugi_alchair_pal = .data:0x0097E260; // type:object size:0x20 scope:global align:32
+int_sugi_alchair_all_tex_txt = .data:0x0097E280; // type:object size:0x800 scope:global align:32
+int_sugi_alchair_v = .data:0x0097EA80; // type:object size:0x340 scope:global align:8
+sugi_aluminum_c_model = .data:0x0097EDC0; // type:object size:0xD8 scope:global align:8
+int_sugi_barbecue_pal = .data:0x0097EEA0; // type:object size:0x20 scope:global align:32
+int_sugi_barbecue2_pal = .data:0x0097EEC0; // type:object size:0x20 scope:global align:32
+int_sugi_barbecue_all_tex_txt = .data:0x0097EEE0; // type:object size:0x800 scope:global align:32
+int_sugi_barbecue2_bar_tex_txt = .data:0x0097F6E0; // type:object size:0x200 scope:global align:32
+int_sugi_barbecue_v = .data:0x0097F8E0; // type:object size:0x8A0 scope:global align:8
+sugi_barbecue_b_model = .data:0x00980180; // type:object size:0x60 scope:global align:8
+sugi_barbecue_model = .data:0x009801E0; // type:object size:0x1A8 scope:global align:8
+int_sugi_chesstable_pal = .data:0x009803A0; // type:object size:0x20 scope:global align:32
+int_sugi_chesstable_all_tex_txt = .data:0x009803C0; // type:object size:0x800 scope:global align:32
+int_sugi_chesstable_v = .data:0x00980BC0; // type:object size:0x430 scope:global align:8
+sugi_chesstable_model = .data:0x00980FF0; // type:object size:0xB8 scope:global align:8
+int_sugi_kpool_pal = .data:0x009810C0; // type:object size:0x20 scope:global align:32
+int_sugi_kpool_all_tex_txt = .data:0x009810E0; // type:object size:0x800 scope:global align:32
+int_sugi_kpool_water_tex_4i4_pic_i4 = .data:0x009818E0; // type:object size:0x80 scope:global align:32
+int_sugi_kpool_v = .data:0x00981960; // type:object size:0x720 scope:global align:8
+sugi_kpool_w_model = .data:0x00982080; // type:object size:0x68 scope:global align:8
+sugi_kpool_t_model = .data:0x009820E8; // type:object size:0xD0 scope:global align:8
+sugi_kpool_model = .data:0x009821B8; // type:object size:0x78 scope:global align:8
+int_sugi_kpool_evw_anime_2 = .data:0x00982230; // type:object size:0x8 scope:global align:4
+int_sugi_kpool_evw_anime = .data:0x00982238; // type:object size:0x8 scope:global align:4
+int_sugi_radiator_pal = .data:0x00982240; // type:object size:0x20 scope:global align:32
+int_sugi_radiator_all_tex_txt = .data:0x00982260; // type:object size:0x800 scope:global align:32
+int_sugi_radiator_v = .data:0x00982A60; // type:object size:0x5C0 scope:global align:8
+sugi_radiator_model = .data:0x00983020; // type:object size:0x110 scope:global align:8
+int_sugi_touch_pal = .data:0x00983140; // type:object size:0x20 scope:global align:32
+int_sugi_touch_all_tex_txt = .data:0x00983160; // type:object size:0x400 scope:global align:32
+int_fire_a_tex_4i4_pic_i4 = .data:0x00983560; // type:object size:0x200 scope:global align:32
+int_fire_b_tex_4i4_pic_i4 = .data:0x00983760; // type:object size:0x400 scope:global align:32
+int_sugi_torch_v = .data:0x00983B60; // type:object size:0x6C0 scope:global align:8
+sugi_tu_core_model = .data:0x00984220; // type:object size:0xF8 scope:global align:8
+sugi_tu_bar_model = .data:0x00984318; // type:object size:0x120 scope:global align:8
+sugi_fireto_model = .data:0x00984438; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sugi_torch_tbl = .data:0x009844B0; // type:object size:0x4 scope:global align:4
+cKF_c_int_sugi_torch_tbl = .data:0x009844B4; // type:object size:0x1E scope:global align:4
+cKF_ba_r_int_sugi_torch = .data:0x009844D4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sugi_torch_tbl = .data:0x009844E8; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_sugi_torch = .data:0x00984518; // type:object size:0x8 scope:global align:4
+int_sum_abura_pal = .data:0x00984520; // type:object size:0x20 scope:global align:32
+int_sum_abura_hand_pic_ci4_pal = .data:0x00984540; // type:object size:0x20 scope:global align:32
+int_sum_abura_body_txt = .data:0x00984560; // type:object size:0x200 scope:global align:32
+int_sum_abura_side_txt = .data:0x00984760; // type:object size:0x200 scope:global align:32
+int_sum_abura_base_txt = .data:0x00984960; // type:object size:0x80 scope:global align:32
+int_sum_abura_top_txt = .data:0x009849E0; // type:object size:0x200 scope:global align:32
+int_sum_abura_hand_txt = .data:0x00984BE0; // type:object size:0x100 scope:global align:32
+int_sum_abura_v = .data:0x00984CE0; // type:object size:0x470 scope:global align:8
+int_sum_abura_side_model = .data:0x00985150; // type:object size:0x68 scope:global align:8
+int_sum_abura_komado_model = .data:0x009851B8; // type:object size:0x58 scope:global align:8
+int_sum_abura_glass_model = .data:0x00985210; // type:object size:0x68 scope:global align:8
+int_sum_abura_base_model = .data:0x00985278; // type:object size:0xD0 scope:global align:8
+int_sum_abura_body_R_model = .data:0x00985348; // type:object size:0x58 scope:global align:8
+int_sum_abura_body_L_model = .data:0x009853A0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_abura_tbl = .data:0x009853F8; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_abura_tbl = .data:0x00985400; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_abura_tbl = .data:0x00985414; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_abura_tbl = .data:0x00985438; // type:object size:0x114 scope:global align:4
+cKF_ba_r_int_sum_abura = .data:0x0098554C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_abura_tbl = .data:0x00985560; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_abura = .data:0x009855C0; // type:object size:0x8 scope:global align:4
+int_sum_akiakane_pal = .data:0x009855E0; // type:object size:0x20 scope:global align:32
+int_sum_akiakane_hand_pic_ci4_pal = .data:0x00985600; // type:object size:0x20 scope:global align:32
+int_sum_akiakane_base_txt = .data:0x00985620; // type:object size:0x80 scope:global align:32
+int_sum_akiakane_top_txt = .data:0x009856A0; // type:object size:0x200 scope:global align:32
+int_sum_akiakane_body_txt = .data:0x009858A0; // type:object size:0x180 scope:global align:32
+int_sum_akiakane_side_txt = .data:0x00985A20; // type:object size:0x200 scope:global align:32
+int_sum_akiakane_hand_txt = .data:0x00985C20; // type:object size:0x100 scope:global align:32
+int_sum_akiakane_v = .data:0x00985D20; // type:object size:0x450 scope:global align:8
+int_sum_akiakane_side_model = .data:0x00986170; // type:object size:0x68 scope:global align:8
+int_sum_akiakane_komado_model = .data:0x009861D8; // type:object size:0x58 scope:global align:8
+int_sum_akiakane_glass_model = .data:0x00986230; // type:object size:0x68 scope:global align:8
+int_sum_akiakane_base_model = .data:0x00986298; // type:object size:0xC8 scope:global align:8
+int_sum_akiakane_body_R_model = .data:0x00986360; // type:object size:0x58 scope:global align:8
+int_sum_akiakane_body_L_model = .data:0x009863B8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_akiakane_tbl = .data:0x00986410; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_akiakane_tbl = .data:0x00986418; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_akiakane_tbl = .data:0x0098642C; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_akiakane_tbl = .data:0x00986450; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_akiakane = .data:0x009864D4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_akiakane_tbl = .data:0x009864E8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_akiakane = .data:0x00986548; // type:object size:0x8 scope:global align:4
+int_sum_angel_pal = .data:0x00986560; // type:object size:0x20 scope:global align:32
+int_sum_angel_glass_pic_ci4_pal = .data:0x00986580; // type:object size:0x20 scope:global align:32
+int_sum_angel_body_txt = .data:0x009865A0; // type:object size:0x300 scope:global align:32
+int_sum_angel_top_txt = .data:0x009868A0; // type:object size:0x100 scope:global align:32
+int_sum_angel_side_txt = .data:0x009869A0; // type:object size:0x200 scope:global align:32
+int_sum_angel_base_txt = .data:0x00986BA0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_angel_etc_txt = .data:0x00986C20; // type:object size:0x80 scope:global align:32
+int_sum_angel_glass_txt = .data:0x00986CA0; // type:object size:0x100 scope:global align:32
+int_sum_angel_v = .data:0x00986DA0; // type:object size:0x370 scope:global align:8
+int_sum_angel_sakana_model = .data:0x00987110; // type:object size:0x70 scope:global align:8
+int_sum_angel_top_model = .data:0x00987180; // type:object size:0x58 scope:global align:8
+int_sum_angel_evw_model = .data:0x009871D8; // type:object size:0x68 scope:global align:8
+int_sum_angel_base_model = .data:0x00987240; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_angel_tbl = .data:0x009872F8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_angel_tbl = .data:0x00987300; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_angel_tbl = .data:0x00987314; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_angel_tbl = .data:0x00987328; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_angel = .data:0x009873C0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_angel_tbl = .data:0x009873D4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_angel = .data:0x00987410; // type:object size:0x8 scope:global align:4
+int_sum_aroana_pal = .data:0x00987420; // type:object size:0x20 scope:local align:32
+int_sum_aroana_glass_pic_ci4_pal = .data:0x00987440; // type:object size:0x20 scope:global align:32
+int_sum_aroana_body_txt = .data:0x00987460; // type:object size:0x300 scope:global align:32
+int_sum_aroana_side_txt = .data:0x00987760; // type:object size:0x200 scope:global align:32
+int_sum_aroana_base_txt = .data:0x00987960; // type:object size:0x80 scope:global align:32
+int_sum_aroana_top_txt = .data:0x009879E0; // type:object size:0x100 scope:global align:32
+int_sum_aroana_glass_txt = .data:0x00987AE0; // type:object size:0x100 scope:global align:32
+int_sum_aroana_v = .data:0x00987BE0; // type:object size:0x2D0 scope:global align:8
+int_sum_aroana_sakana_model = .data:0x00987EB0; // type:object size:0x70 scope:global align:8
+int_sum_aroana_top_model = .data:0x00987F20; // type:object size:0x58 scope:global align:8
+int_sum_aroana_evw_model = .data:0x00987F78; // type:object size:0x68 scope:global align:8
+int_sum_aroana_base_model = .data:0x00987FE0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_aroana_tbl = .data:0x00988070; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_aroana_tbl = .data:0x00988078; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_aroana_tbl = .data:0x0098808C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_aroana_tbl = .data:0x009880A0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_aroana = .data:0x00988124; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_aroana_tbl = .data:0x00988138; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_aroana = .data:0x00988174; // type:object size:0x8 scope:global align:4
+int_sum_art01_pal = .data:0x00988180; // type:object size:0x20 scope:global align:32
+int_sum_art01_front_tex = .data:0x009881A0; // type:object size:0x200 scope:global align:32
+int_sum_art01_stand_tex = .data:0x009883A0; // type:object size:0x200 scope:global align:32
+int_sum_art01_monariza_tex = .data:0x009885A0; // type:object size:0x300 scope:global align:32
+int_sum_art01_gaku_tex = .data:0x009888A0; // type:object size:0x100 scope:global align:32
+int_sum_art01_v = .data:0x009889A0; // type:object size:0x340 scope:global align:8
+int_sum_art01_on_model = .data:0x00988CE0; // type:object size:0x88 scope:global align:8
+int_sum_art01_onT_model = .data:0x00988D68; // type:object size:0xA0 scope:global align:8
+int_sum_art04_pal = .data:0x00988E20; // type:object size:0x20 scope:global align:32
+int_sum_art04_front_tex = .data:0x00988E40; // type:object size:0x200 scope:global align:32
+int_sum_art04_stand_tex = .data:0x00989040; // type:object size:0x200 scope:global align:32
+int_sum_art04_binas_tex = .data:0x00989240; // type:object size:0x300 scope:global align:32
+int_sum_art04_gaku_tex = .data:0x00989540; // type:object size:0x100 scope:global align:32
+int_sum_art04_v = .data:0x00989640; // type:object size:0x340 scope:global align:8
+int_sum_art04_on_model = .data:0x00989980; // type:object size:0x88 scope:global align:8
+int_sum_art04_onT_model = .data:0x00989A08; // type:object size:0xA0 scope:global align:8
+int_sum_art05_pal = .data:0x00989AC0; // type:object size:0x20 scope:global align:32
+int_sum_art05_front_tex = .data:0x00989AE0; // type:object size:0x200 scope:global align:32
+int_sum_art05_stand_tex = .data:0x00989CE0; // type:object size:0x200 scope:global align:32
+int_sum_art05_himawari_tex = .data:0x00989EE0; // type:object size:0x300 scope:global align:32
+int_sum_art05_gaku_tex = .data:0x0098A1E0; // type:object size:0x100 scope:global align:32
+int_sum_art05_v = .data:0x0098A2E0; // type:object size:0x340 scope:global align:8
+int_sum_art05_on_model = .data:0x0098A620; // type:object size:0x88 scope:global align:8
+int_sum_art05_onT_model = .data:0x0098A6A8; // type:object size:0xA0 scope:global align:8
+int_sum_art06_pal = .data:0x0098A760; // type:object size:0x20 scope:global align:32
+int_sum_art06_front_tex = .data:0x0098A780; // type:object size:0x200 scope:global align:32
+int_sum_art06_stand_tex = .data:0x0098A980; // type:object size:0x200 scope:global align:32
+int_sum_art06_ochiba_tex = .data:0x0098AB80; // type:object size:0x300 scope:global align:32
+int_sum_art06_gaku_tex = .data:0x0098AE80; // type:object size:0x100 scope:global align:32
+int_sum_art06_v = .data:0x0098AF80; // type:object size:0x340 scope:global align:8
+int_sum_art06_on_model = .data:0x0098B2C0; // type:object size:0x88 scope:global align:8
+int_sum_art06_onT_model = .data:0x0098B348; // type:object size:0xA0 scope:global align:8
+int_sum_art08_pal = .data:0x0098B400; // type:object size:0x20 scope:global align:32
+int_sum_art08_front_tex = .data:0x0098B420; // type:object size:0x200 scope:global align:32
+int_sum_art08_stand_tex = .data:0x0098B620; // type:object size:0x200 scope:global align:32
+int_sum_art08_odoriko_tex = .data:0x0098B820; // type:object size:0x300 scope:global align:32
+int_sum_art08_gaku_tex = .data:0x0098BB20; // type:object size:0x100 scope:global align:32
+int_sum_art08_v = .data:0x0098BC20; // type:object size:0x340 scope:global align:8
+int_sum_art08_on_model = .data:0x0098BF60; // type:object size:0x88 scope:global align:8
+int_sum_art08_onT_model = .data:0x0098BFE8; // type:object size:0xA0 scope:global align:8
+int_sum_art09_pal = .data:0x0098C0A0; // type:object size:0x20 scope:global align:32
+int_sum_art09_gaku_tex = .data:0x0098C0C0; // type:object size:0x100 scope:global align:32
+int_sum_art09_seurat_tex = .data:0x0098C1C0; // type:object size:0x300 scope:global align:32
+int_sum_art09_stand_tex = .data:0x0098C4C0; // type:object size:0x200 scope:global align:32
+int_sum_art09_front_tex = .data:0x0098C6C0; // type:object size:0x200 scope:global align:32
+int_sum_art09_v = .data:0x0098C8C0; // type:object size:0x340 scope:global align:8
+int_sum_art09_on_model = .data:0x0098CC00; // type:object size:0x90 scope:global align:8
+int_sum_art09_onT_model = .data:0x0098CC90; // type:object size:0x98 scope:global align:8
+int_sum_art10_pal = .data:0x0098CD40; // type:object size:0x20 scope:global align:32
+int_sum_art10_gaku_tex = .data:0x0098CD60; // type:object size:0x100 scope:global align:32
+int_sum_art10_rautrec_tex = .data:0x0098CE60; // type:object size:0x300 scope:global align:32
+int_sum_art10_stand_tex = .data:0x0098D160; // type:object size:0x200 scope:global align:32
+int_sum_art10_front_tex = .data:0x0098D360; // type:object size:0x200 scope:global align:32
+int_sum_art10_v = .data:0x0098D560; // type:object size:0x340 scope:global align:8
+int_sum_art10_on_model = .data:0x0098D8A0; // type:object size:0x90 scope:global align:8
+int_sum_art10_onT_model = .data:0x0098D930; // type:object size:0x98 scope:global align:8
+int_sum_art11_pal = .data:0x0098D9E0; // type:object size:0x20 scope:global align:32
+int_sum_art11_gaku_tex = .data:0x0098DA00; // type:object size:0x100 scope:global align:32
+int_sum_art11_kiss_tex = .data:0x0098DB00; // type:object size:0x300 scope:global align:32
+int_sum_art11_stand_tex = .data:0x0098DE00; // type:object size:0x200 scope:global align:32
+int_sum_art11_front_tex = .data:0x0098E000; // type:object size:0x200 scope:global align:32
+int_sum_art11_v = .data:0x0098E200; // type:object size:0x340 scope:global align:8
+int_sum_art11_on_model = .data:0x0098E540; // type:object size:0x90 scope:global align:8
+int_sum_art11_onT_model = .data:0x0098E5D0; // type:object size:0x98 scope:global align:8
+int_sum_art12_pal = .data:0x0098E680; // type:object size:0x20 scope:global align:32
+int_sum_art12_gaku_tex = .data:0x0098E6A0; // type:object size:0x100 scope:global align:32
+int_sum_art12_manet_tex = .data:0x0098E7A0; // type:object size:0x300 scope:global align:32
+int_sum_art12_stand_tex = .data:0x0098EAA0; // type:object size:0x200 scope:global align:32
+int_sum_art12_front_tex = .data:0x0098ECA0; // type:object size:0x200 scope:global align:32
+int_sum_art12_v = .data:0x0098EEA0; // type:object size:0x340 scope:global align:8
+int_sum_art12_on_model = .data:0x0098F1E0; // type:object size:0x90 scope:global align:8
+int_sum_art12_onT_model = .data:0x0098F270; // type:object size:0x98 scope:global align:8
+int_sum_art13_pal = .data:0x0098F320; // type:object size:0x20 scope:global align:32
+int_sum_art13_gaku_tex = .data:0x0098F340; // type:object size:0x100 scope:global align:32
+int_sum_art13_cezanne_tex = .data:0x0098F440; // type:object size:0x300 scope:global align:32
+int_sum_art13_stand_tex = .data:0x0098F740; // type:object size:0x200 scope:global align:32
+int_sum_art13_front_tex = .data:0x0098F940; // type:object size:0x200 scope:global align:32
+int_sum_art13_v = .data:0x0098FB40; // type:object size:0x340 scope:global align:8
+int_sum_art13_on_model = .data:0x0098FE80; // type:object size:0x90 scope:global align:8
+int_sum_art13_onT_model = .data:0x0098FF10; // type:object size:0x98 scope:global align:8
+int_sum_art14_pal = .data:0x0098FFC0; // type:object size:0x20 scope:global align:32
+int_sum_art14_gaku_tex = .data:0x0098FFE0; // type:object size:0x100 scope:global align:32
+int_sum_art14_gogyan_tex = .data:0x009900E0; // type:object size:0x300 scope:global align:32
+int_sum_art14_stand_tex = .data:0x009903E0; // type:object size:0x200 scope:global align:32
+int_sum_art14_front_tex = .data:0x009905E0; // type:object size:0x200 scope:global align:32
+int_sum_art14_v = .data:0x009907E0; // type:object size:0x340 scope:global align:8
+int_sum_art14_on_model = .data:0x00990B20; // type:object size:0x90 scope:global align:8
+int_sum_art14_onT_model = .data:0x00990BB0; // type:object size:0x98 scope:global align:8
+int_sum_art15_pal = .data:0x00990C60; // type:object size:0x20 scope:global align:32
+int_sum_art15_gaku_tex = .data:0x00990C80; // type:object size:0x100 scope:global align:32
+int_sum_art15_megami_tex = .data:0x00990D80; // type:object size:0x300 scope:global align:32
+int_sum_art15_stand_tex = .data:0x00991080; // type:object size:0x200 scope:global align:32
+int_sum_art15_front_tex = .data:0x00991280; // type:object size:0x200 scope:global align:32
+int_sum_art15_v = .data:0x00991480; // type:object size:0x340 scope:global align:8
+int_sum_art15_on_model = .data:0x009917C0; // type:object size:0x90 scope:global align:8
+int_sum_art15_onT_model = .data:0x00991850; // type:object size:0x98 scope:global align:8
+int_sum_asi_bed01_pal = .data:0x00991900; // type:object size:0x20 scope:global align:32
+int_sum_asi_bed01_pillow_tex = .data:0x00991920; // type:object size:0x80 scope:global align:32
+int_sum_asi_bed01_top_tex = .data:0x009919A0; // type:object size:0x300 scope:global align:32
+int_sum_asi_bed01_side_tex = .data:0x00991CA0; // type:object size:0x100 scope:global align:32
+int_sum_asi_bed01_heard_tex = .data:0x00991DA0; // type:object size:0x300 scope:global align:32
+int_sum_asi_bed01_v = .data:0x009920A0; // type:object size:0x3B0 scope:global align:8
+int_sum_asi_bed01_on_model = .data:0x00992450; // type:object size:0x90 scope:global align:8
+int_sum_asi_bed01_onT_model = .data:0x009924E0; // type:object size:0xC0 scope:global align:8
+int_sum_asi_chair01_pal = .data:0x009925A0; // type:object size:0x20 scope:global align:32
+int_sum_asi_chair01_front_tex = .data:0x009925C0; // type:object size:0x300 scope:global align:32
+int_sum_asi_chair01_seat_tex = .data:0x009928C0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chair01_arm_tex = .data:0x009929C0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chair01_foot_tex = .data:0x00992AC0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chair01_side_tex = .data:0x00992BC0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chair01_v = .data:0x00992CC0; // type:object size:0x480 scope:global align:8
+int_sum_asi_chair01_on_model = .data:0x00993140; // type:object size:0x58 scope:global align:8
+int_sum_asi_chair01_onT_model = .data:0x00993198; // type:object size:0x128 scope:global align:8
+int_sum_asi_chair02_pal = .data:0x009932C0; // type:object size:0x20 scope:global align:32
+int_sum_asi_chair02_head_tex = .data:0x009932E0; // type:object size:0x200 scope:global align:32
+int_sum_asi_chair02_side_tex = .data:0x009934E0; // type:object size:0x200 scope:global align:32
+int_sum_asi_chair02_seat_tex = .data:0x009936E0; // type:object size:0x80 scope:global align:32
+int_sum_asi_chair02_board_tex = .data:0x00993760; // type:object size:0x80 scope:global align:32
+int_sum_asi_chair02_arm_tex = .data:0x009937E0; // type:object size:0x200 scope:global align:32
+int_sum_asi_chair02_armside_tex = .data:0x009939E0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chair02_v = .data:0x00993AE0; // type:object size:0x280 scope:global align:8
+int_sum_asi_chair02_on_model = .data:0x00993D60; // type:object size:0x78 scope:global align:8
+int_sum_asi_chair02_onT_model = .data:0x00993DD8; // type:object size:0xC0 scope:global align:8
+int_sum_asi_chest01_pal = .data:0x00993EA0; // type:object size:0x20 scope:global align:32
+int_sum_asi_chest01_front_tex = .data:0x00993EC0; // type:object size:0x600 scope:global align:32
+int_sum_asi_chest01_side_tex = .data:0x009944C0; // type:object size:0x100 scope:global align:32
+int_sum_asi_chest01_foot_tex = .data:0x009945C0; // type:object size:0x80 scope:global align:32
+int_sum_asi_chest01_v = .data:0x00994640; // type:object size:0x340 scope:global align:8
+int_sum_asi_chest01_on_model = .data:0x00994980; // type:object size:0x80 scope:global align:8
+int_sum_asi_chest01_onT_model = .data:0x00994A00; // type:object size:0x78 scope:global align:8
+int_sum_asi_chest02_pal = .data:0x00994A80; // type:object size:0x20 scope:global align:32
+int_sum_asi_chest02_draw_tex_txt = .data:0x00994AA0; // type:object size:0x80 scope:global align:32
+int_sum_asi_chest02_drawin_tex_txt = .data:0x00994B20; // type:object size:0x80 scope:global align:32
+int_sum_asi_chest02_front_tex_txt = .data:0x00994BA0; // type:object size:0x300 scope:global align:32
+int_sum_asi_chest02_side_tex_txt = .data:0x00994EA0; // type:object size:0x200 scope:global align:32
+int_sum_asi_chest02_v = .data:0x009950A0; // type:object size:0x2F0 scope:global align:8
+int_sum_asi_chest02_door_model = .data:0x00995390; // type:object size:0xB0 scope:global align:8
+int_sum_asi_chest02_base_model = .data:0x00995440; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_sum_asi_chest02_tbl = .data:0x009954C8; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_asi_chest02_tbl = .data:0x009954CC; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_asi_chest02_tbl = .data:0x009954E0; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_asi_chest02_tbl = .data:0x009954E8; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_asi_chest02 = .data:0x00995554; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_asi_chest02_tbl = .data:0x00995568; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_asi_chest02 = .data:0x0099558C; // type:object size:0x8 scope:global align:4
+int_sum_asi_chair03_pal = .data:0x009955A0; // type:object size:0x20 scope:global align:32
+int_sum_asi_chest03_door_tex_txt = .data:0x009955C0; // type:object size:0x180 scope:global align:32
+int_sum_asi_chest03_side_tex_txt = .data:0x00995740; // type:object size:0x200 scope:global align:32
+int_sum_asi_chest03_top_tex_txt = .data:0x00995940; // type:object size:0x80 scope:global align:32
+int_sum_asi_chest03_front_tex_txt = .data:0x009959C0; // type:object size:0x400 scope:global align:32
+int_sum_asi_chest03_v = .data:0x00995DC0; // type:object size:0x380 scope:global align:8
+int_sum_asi_chest03_doorL_model = .data:0x00996140; // type:object size:0xA0 scope:global align:8
+int_sum_asi_chest03_base_model = .data:0x009961E0; // type:object size:0xC0 scope:global align:8
+int_sum_asi_chest03_doorR_model = .data:0x009962A0; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_sum_asi_chest03_tbl = .data:0x00996340; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_asi_chest03_tbl = .data:0x00996348; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_asi_chest03_tbl = .data:0x00996360; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_asi_chest03_tbl = .data:0x0099636C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_asi_chest03 = .data:0x00996408; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_asi_chest03_tbl = .data:0x0099641C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_asi_chest03 = .data:0x00996458; // type:object size:0x8 scope:global align:4
+int_sum_asi_lanp01_pal = .data:0x00996460; // type:object size:0x20 scope:global align:32
+int_sum_asi_lanp01_shade_tex_txt = .data:0x00996480; // type:object size:0x100 scope:global align:32
+int_sum_asi_lanp01_bin_tex_txt = .data:0x00996580; // type:object size:0x200 scope:global align:32
+int_sum_asi_lanp01_v = .data:0x00996780; // type:object size:0x180 scope:global align:8
+int_sum_asi_lanp01_off_model = .data:0x00996900; // type:object size:0xB8 scope:global align:8
+int_sum_asi_screen01_pal = .data:0x009969C0; // type:object size:0x20 scope:global align:32
+int_sum_asi_screen01_front_tex = .data:0x009969E0; // type:object size:0x400 scope:global align:32
+int_sum_asi_screen01_v = .data:0x00996DE0; // type:object size:0xC0 scope:global align:8
+int_sum_asi_screen01_onT_model = .data:0x00996EA0; // type:object size:0x60 scope:global align:8
+int_sum_asi_table01_pal = .data:0x00996F00; // type:object size:0x20 scope:global align:32
+int_sum_asi_table01_front_tex = .data:0x00996F20; // type:object size:0x300 scope:global align:32
+int_sum_asi_table01_side_tex = .data:0x00997220; // type:object size:0x180 scope:global align:32
+int_sum_asi_table01_top_tex = .data:0x009973A0; // type:object size:0x100 scope:global align:32
+int_sum_asi_table01_v = .data:0x009974A0; // type:object size:0x340 scope:global align:8
+int_sum_asi_table01_on_model = .data:0x009977E0; // type:object size:0x58 scope:global align:8
+int_sum_asi_table01_onT_model = .data:0x00997838; // type:object size:0xA8 scope:global align:8
+int_sum_asi_table02_pal = .data:0x009978E0; // type:object size:0x20 scope:global align:32
+int_sum_asi_table02_foot_tex = .data:0x00997900; // type:object size:0x100 scope:global align:32
+int_sum_asi_table02_side_tex = .data:0x00997A00; // type:object size:0x200 scope:global align:32
+int_sum_asi_table02_top_tex = .data:0x00997C00; // type:object size:0x100 scope:global align:32
+int_sum_asi_table02_v = .data:0x00997D00; // type:object size:0x480 scope:global align:8
+int_sum_asi_table02_on_model = .data:0x00998180; // type:object size:0x90 scope:global align:8
+int_sum_asi_table02_onT_model = .data:0x00998210; // type:object size:0xA0 scope:global align:8
+int_sum_asi_taiko_pal = .data:0x009982C0; // type:object size:0x20 scope:global align:32
+int_sum_asi_taiko_side_tex = .data:0x009982E0; // type:object size:0x100 scope:global align:32
+int_sum_asi_taiko_top_tex = .data:0x009983E0; // type:object size:0x100 scope:global align:32
+int_sum_asi_taiko_bese_tex = .data:0x009984E0; // type:object size:0x100 scope:global align:32
+int_sum_asi_taiko_v = .data:0x009985E0; // type:object size:0x2F0 scope:global align:8
+int_sum_asi_taiko_on_model = .data:0x009988D0; // type:object size:0x60 scope:global align:8
+int_sum_asi_taiko_onT_model = .data:0x00998930; // type:object size:0xB0 scope:global align:8
+int_sum_ayu_pal = .data:0x009989E0; // type:object size:0x20 scope:local align:32
+int_sum_ayu_glass_pic_ci4_pal = .data:0x00998A00; // type:object size:0x20 scope:global align:32
+int_sum_ayu_body_txt = .data:0x00998A20; // type:object size:0x300 scope:global align:32
+int_sum_ayu_top_txt = .data:0x00998D20; // type:object size:0x100 scope:global align:32
+int_sum_ayu_side_txt = .data:0x00998E20; // type:object size:0x200 scope:global align:32
+int_sum_ayu_base_txt = .data:0x00999020; // type:object size:0x80 scope:global align:32
+int_sum_ayu_etc_txt = .data:0x009990A0; // type:object size:0x80 scope:global align:32
+int_sum_ayu_glass_txt = .data:0x00999120; // type:object size:0x100 scope:global align:32
+int_sum_ayu_v = .data:0x00999220; // type:object size:0x370 scope:global align:8
+int_sum_ayu_sakana_model = .data:0x00999590; // type:object size:0x70 scope:global align:8
+int_sum_ayu_top_model = .data:0x00999600; // type:object size:0x58 scope:global align:8
+int_sum_ayu_evw_model = .data:0x00999658; // type:object size:0x68 scope:global align:8
+int_sum_ayu_base_model = .data:0x009996C0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_ayu_tbl = .data:0x00999778; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_ayu_tbl = .data:0x00999780; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_ayu_tbl = .data:0x00999794; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_ayu_tbl = .data:0x009997A8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_ayu = .data:0x0099982C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ayu_tbl = .data:0x00999840; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_ayu = .data:0x0099987C; // type:object size:0x8 scope:global align:4
+int_sum_baketu_pal = .data:0x009998A0; // type:object size:0x20 scope:global align:32
+int_sum_baketu_side_tex = .data:0x009998C0; // type:object size:0x300 scope:global align:32
+int_sum_baketu_stand_tex = .data:0x00999BC0; // type:object size:0x280 scope:global align:32
+int_sum_baketu_s_side_tex = .data:0x00999E40; // type:object size:0x200 scope:global align:32
+int_sum_baketu_hand_tex = .data:0x0099A040; // type:object size:0x80 scope:global align:32
+int_sum_baketu_v = .data:0x0099A0C0; // type:object size:0x220 scope:global align:8
+int_sum_baketu_onT_model = .data:0x0099A2E0; // type:object size:0xD8 scope:global align:8
+int_sum_bass_pal = .data:0x0099A3C0; // type:object size:0x20 scope:local align:32
+int_sum_bass_glass_pic_ci4_pal = .data:0x0099A3E0; // type:object size:0x20 scope:global align:32
+int_sum_bass_body_txt = .data:0x0099A400; // type:object size:0x200 scope:global align:32
+int_sum_bass_side_txt = .data:0x0099A600; // type:object size:0x200 scope:global align:32
+int_sum_bass_base_txt = .data:0x0099A800; // type:object size:0x80 scope:global align:32
+int_sum_bass_etc_txt = .data:0x0099A880; // type:object size:0x80 scope:global align:32
+int_sum_bass_top_txt = .data:0x0099A900; // type:object size:0x100 scope:global align:32
+int_sum_bass_glass_txt = .data:0x0099AA00; // type:object size:0x100 scope:global align:32
+int_sum_bass_v = .data:0x0099AB00; // type:object size:0x310 scope:global align:8
+int_sum_bass_sakana_model = .data:0x0099AE10; // type:object size:0x70 scope:global align:8
+int_sum_bass_top_model = .data:0x0099AE80; // type:object size:0x58 scope:global align:8
+int_sum_bass_evw_model = .data:0x0099AED8; // type:object size:0x68 scope:global align:8
+int_sum_bass_base_model = .data:0x0099AF40; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_bass_tbl = .data:0x0099AFF8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_bass_tbl = .data:0x0099B000; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_bass_tbl = .data:0x0099B014; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_bass_tbl = .data:0x0099B028; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_bass = .data:0x0099B0C0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_bass_tbl = .data:0x0099B0D4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_bass = .data:0x0099B110; // type:object size:0x8 scope:global align:4
+int_sum_bass01_pal = .data:0x0099B120; // type:object size:0x20 scope:global align:32
+int_sum_bass01_front_tex = .data:0x0099B140; // type:object size:0x300 scope:global align:32
+int_sum_bass01_back_tex = .data:0x0099B440; // type:object size:0x180 scope:global align:32
+int_sum_bass01_side_tex = .data:0x0099B5C0; // type:object size:0x80 scope:global align:32
+int_sum_bass01_neck_tex = .data:0x0099B640; // type:object size:0x100 scope:global align:32
+int_sum_bass01_neckback_tex = .data:0x0099B740; // type:object size:0x80 scope:global align:32
+int_sum_bass01_hand_tex = .data:0x0099B7C0; // type:object size:0x80 scope:global align:32
+int_sum_bass01_stand_tex = .data:0x0099B840; // type:object size:0x100 scope:global align:32
+int_sum_bass01_v = .data:0x0099B940; // type:object size:0x390 scope:global align:8
+int_sum_bass01_on_model = .data:0x0099BCD0; // type:object size:0x88 scope:global align:8
+int_sum_bass01_onT_model = .data:0x0099BD58; // type:object size:0xF8 scope:global align:8
+int_sum_bassl_pal = .data:0x0099BE60; // type:object size:0x20 scope:local align:32
+int_sum_bassl_glass_pic_ci4_pal = .data:0x0099BE80; // type:object size:0x20 scope:global align:32
+int_sum_bassl_body_txt = .data:0x0099BEA0; // type:object size:0x300 scope:global align:32
+int_sum_bassl_side_txt = .data:0x0099C1A0; // type:object size:0x200 scope:global align:32
+int_sum_bassl_base_txt = .data:0x0099C3A0; // type:object size:0x80 scope:global align:32
+int_sum_bassl_etc_txt = .data:0x0099C420; // type:object size:0x80 scope:global align:32
+int_sum_bassl_top_txt = .data:0x0099C4A0; // type:object size:0x100 scope:global align:32
+int_sum_bassl_glass_pic_ci4 = .data:0x0099C5A0; // type:object size:0x100 scope:global align:32
+int_sum_bassl_v = .data:0x0099C6A0; // type:object size:0x370 scope:global align:8
+int_sum_bassl_sakana_model = .data:0x0099CA10; // type:object size:0x70 scope:global align:8
+int_sum_bassl_top_model = .data:0x0099CA80; // type:object size:0x58 scope:global align:8
+int_sum_bassl_evw_model = .data:0x0099CAD8; // type:object size:0x68 scope:global align:8
+int_sum_bassl_base_model = .data:0x0099CB40; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_bassl_tbl = .data:0x0099CBF8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_bassl_tbl = .data:0x0099CC00; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_bassl_tbl = .data:0x0099CC14; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_bassl_tbl = .data:0x0099CC28; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_bassl = .data:0x0099CCAC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_bassl_tbl = .data:0x0099CCC0; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_bassl = .data:0x0099CCFC; // type:object size:0x8 scope:global align:4
+int_sum_bassm_pal = .data:0x0099CD20; // type:object size:0x20 scope:local align:32
+int_sum_bassm_glass_pic_ci4_pal = .data:0x0099CD40; // type:object size:0x20 scope:global align:32
+int_sum_bassm_body_txt = .data:0x0099CD60; // type:object size:0x300 scope:global align:32
+int_sum_bassm_top_txt = .data:0x0099D060; // type:object size:0x100 scope:global align:32
+int_sum_bassm_side_txt = .data:0x0099D160; // type:object size:0x200 scope:global align:32
+int_sum_bassm_base_txt = .data:0x0099D360; // type:object size:0x80 scope:global align:32
+int_sum_bassm_etc_txt = .data:0x0099D3E0; // type:object size:0x80 scope:global align:32
+int_sum_bassm_glass_txt = .data:0x0099D460; // type:object size:0x100 scope:global align:32
+int_sum_bassm_v = .data:0x0099D560; // type:object size:0x370 scope:global align:8
+int_sum_bassm_sakana_model = .data:0x0099D8D0; // type:object size:0x70 scope:global align:8
+int_sum_bassm_top_model = .data:0x0099D940; // type:object size:0x58 scope:global align:8
+int_sum_bassm_evw_model = .data:0x0099D998; // type:object size:0x68 scope:global align:8
+int_sum_bassm_base_model = .data:0x0099DA00; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_bassm_tbl = .data:0x0099DAB8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_bassm_tbl = .data:0x0099DAC0; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_bassm_tbl = .data:0x0099DAD4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_bassm_tbl = .data:0x0099DAE8; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_int_sum_bassm = .data:0x0099DB8C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_bassm_tbl = .data:0x0099DBA0; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_bassm = .data:0x0099DBDC; // type:object size:0x8 scope:global align:4
+int_sum_bdcake01_pal = .data:0x0099DC00; // type:object size:0x20 scope:global align:32
+int_sum_bdcake01_top_tex_txt = .data:0x0099DC20; // type:object size:0x80 scope:global align:32
+int_sum_bdcake01_ichigo_tex_txt = .data:0x0099DCA0; // type:object size:0x200 scope:global align:32
+int_sum_bdcake01_mesege_tex_txt = .data:0x0099DEA0; // type:object size:0x300 scope:global align:32
+int_sum_bdcake01_side_tex_txt = .data:0x0099E1A0; // type:object size:0x100 scope:global align:32
+int_sum_bdcake01_a_candol1_TA_tex_txt = .data:0x0099E2A0; // type:object size:0x40 scope:global align:32
+int_sum_bdcake01_a_candol2_TA_tex_txt = .data:0x0099E2E0; // type:object size:0x40 scope:global align:32
+int_sum_bdcake01_b_candol1_TA_tex_txt = .data:0x0099E320; // type:object size:0x40 scope:global align:32
+int_sum_bdcake01_b_candol2_TA_tex_txt = .data:0x0099E360; // type:object size:0x40 scope:global align:32
+int_sum_bdcake01_v = .data:0x0099E3A0; // type:object size:0x540 scope:global align:8
+int_sum_bdcake01_on_model = .data:0x0099E8E0; // type:object size:0x110 scope:global align:8
+int_sum_bdcake01_off1_model = .data:0x0099E9F0; // type:object size:0x60 scope:global align:8
+int_sum_bdcake01_off_model = .data:0x0099EA50; // type:object size:0x60 scope:global align:8
+int_sum_billards_pal = .data:0x0099EAC0; // type:object size:0x20 scope:global align:32
+int_sum_billiads_cueball_tex = .data:0x0099EAE0; // type:object size:0x80 scope:global align:32
+int_sum_billiads_side_tex = .data:0x0099EB60; // type:object size:0x80 scope:global align:32
+int_sum_billiads_top_tex = .data:0x0099EBE0; // type:object size:0x200 scope:global align:32
+int_sum_billiads_foot_tex = .data:0x0099EDE0; // type:object size:0x100 scope:global align:32
+int_sum_billiads_sitaside_tex = .data:0x0099EEE0; // type:object size:0x80 scope:global align:32
+int_sum_billiads_cue_tex = .data:0x0099EF60; // type:object size:0x80 scope:global align:32
+int_sum_billiads_ball_tex = .data:0x0099EFE0; // type:object size:0x200 scope:global align:32
+int_sum_billiads_v = .data:0x0099F1E0; // type:object size:0x420 scope:global align:8
+int_sum_billiads_on_model = .data:0x0099F600; // type:object size:0x80 scope:global align:8
+int_sum_billiads_onT_model = .data:0x0099F680; // type:object size:0xF8 scope:global align:8
+int_sum_biwa01_pal = .data:0x0099F780; // type:object size:0x20 scope:global align:32
+int_sum_biwa01_front_tex = .data:0x0099F7A0; // type:object size:0x200 scope:global align:32
+int_sum_biwa01_nec_tex = .data:0x0099F9A0; // type:object size:0x100 scope:global align:32
+int_sum_biwa01_back_tex = .data:0x0099FAA0; // type:object size:0x80 scope:global align:32
+int_sum_biwa01_necback_tex = .data:0x0099FB20; // type:object size:0x80 scope:global align:32
+int_sum_biwa01_head_tex = .data:0x0099FBA0; // type:object size:0x80 scope:global align:32
+int_sum_biwa01_headtop_tex = .data:0x0099FC20; // type:object size:0x80 scope:global align:32
+int_sum_biwa01_headfront_tex = .data:0x0099FCA0; // type:object size:0x40 scope:global align:32
+int_sum_biwa01_stand_tex = .data:0x0099FCE0; // type:object size:0x100 scope:global align:32
+int_sum_biwa01_standhand_tex = .data:0x0099FDE0; // type:object size:0x80 scope:global align:32
+int_sum_biwa01_v = .data:0x0099FE60; // type:object size:0x410 scope:global align:8
+int_sum_biwa01_on_model = .data:0x009A0270; // type:object size:0xC8 scope:global align:8
+int_sum_biwa01_onT_model = .data:0x009A0338; // type:object size:0xD8 scope:global align:8
+int_sum_bla_bed01_pal = .data:0x009A0420; // type:object size:0x20 scope:global align:32
+int_sum_bla_bed01_top_tex = .data:0x009A0440; // type:object size:0x300 scope:global align:32
+int_sum_bla_bed01_side_tex = .data:0x009A0740; // type:object size:0x80 scope:global align:32
+int_sum_bla_bed01_pillow_tex = .data:0x009A07C0; // type:object size:0x100 scope:global align:32
+int_sum_bla_bed01_head_tex = .data:0x009A08C0; // type:object size:0x180 scope:global align:32
+int_sum_bla_bed01_headside_tex = .data:0x009A0A40; // type:object size:0x100 scope:global align:32
+int_sum_bla_bed01_v = .data:0x009A0B40; // type:object size:0x310 scope:global align:8
+int_sum_bla_bed01_on_model = .data:0x009A0E50; // type:object size:0x100 scope:global align:8
+int_sum_bla_chair02_pal = .data:0x009A0F60; // type:object size:0x20 scope:global align:32
+int_sum_bla_chair02_seat_tex = .data:0x009A0F80; // type:object size:0x300 scope:global align:32
+int_sum_bla_chair02_foot_tex = .data:0x009A1280; // type:object size:0x300 scope:global align:32
+int_sum_bla_chair02_seatside_tex = .data:0x009A1580; // type:object size:0x200 scope:global align:32
+int_sum_bla_chair02_v = .data:0x009A1780; // type:object size:0x2D0 scope:global align:8
+int_sum_bra_chair02_on_model = .data:0x009A1A50; // type:object size:0x80 scope:global align:8
+int_sum_bra_chair02_onT_model = .data:0x009A1AD0; // type:object size:0x80 scope:global align:8
+int_sum_bla_chest01_pal = .data:0x009A1B60; // type:object size:0x20 scope:global align:32
+int_sum_bla_chest01_top_tex_txt = .data:0x009A1B80; // type:object size:0x80 scope:global align:32 data:string
+int_sum_bla_chest01_hiki_tex_txt = .data:0x009A1C00; // type:object size:0x100 scope:global align:32
+int_sum_bla_chest01_side_tex_txt = .data:0x009A1D00; // type:object size:0x300 scope:global align:32
+int_sum_bla_chest01_front_tex_txt = .data:0x009A2000; // type:object size:0x180 scope:global align:32
+int_sum_bla_chest01_v = .data:0x009A2180; // type:object size:0x2C0 scope:global align:8
+int_sum_bra_chest01_door_model = .data:0x009A2440; // type:object size:0xA0 scope:global align:8
+int_sum_bla_chest01_base_model = .data:0x009A24E0; // type:object size:0x98 scope:global align:8
+cKF_ckcb_r_int_sum_bla_chest01_tbl = .data:0x009A2578; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_bla_chest01_tbl = .data:0x009A257C; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_bla_chest01_tbl = .data:0x009A2590; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_bla_chest01_tbl = .data:0x009A2598; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_bla_chest01 = .data:0x009A2604; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_bla_chest01_tbl = .data:0x009A2618; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_bla_chest01 = .data:0x009A263C; // type:object size:0x8 scope:global align:4
+int_sum_bla_chest02_pal = .data:0x009A2660; // type:object size:0x20 scope:global align:32
+int_sum_bla_chest02_glass_tex_rgb_ci4_pal = .data:0x009A2680; // type:object size:0x20 scope:global align:32
+int_sum_bla_chest02_front_tex = .data:0x009A26A0; // type:object size:0x400 scope:global align:32
+int_sum_bla_chest02_side_tex = .data:0x009A2AA0; // type:object size:0x100 scope:global align:32
+int_sum_bla_chest02_top_tex = .data:0x009A2BA0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_bla_chest02_foot_tex = .data:0x009A2C20; // type:object size:0x80 scope:global align:32
+int_sum_bla_chest02_book_tex = .data:0x009A2CA0; // type:object size:0x80 scope:global align:32
+int_sum_bla_chest02_glass_tex = .data:0x009A2D20; // type:object size:0x80 scope:global align:32
+int_sum_bla_chest02_v = .data:0x009A2DA0; // type:object size:0x440 scope:global align:8
+int_sum_bla_chest02_on_model = .data:0x009A31E0; // type:object size:0xA8 scope:global align:8
+int_sum_bla_chest02_onT_model = .data:0x009A3288; // type:object size:0xA8 scope:global align:8
+int_sum_bla_chest02_evwT_model = .data:0x009A3330; // type:object size:0x60 scope:global align:8
+int_sum_bla_chest03_pal = .data:0x009A33A0; // type:object size:0x20 scope:global align:32
+int_sum_bla_chest03_hiki_tex_txt = .data:0x009A33C0; // type:object size:0x200 scope:global align:32
+int_sum_bla_chest03_front_tex_txt = .data:0x009A35C0; // type:object size:0x300 scope:global align:32
+int_sum_bla_chest03_side_tex_txt = .data:0x009A38C0; // type:object size:0x200 scope:global align:32
+int_sum_bla_chest03_v = .data:0x009A3AC0; // type:object size:0x420 scope:global align:8
+int_sum_bla_chest03_doorL_model = .data:0x009A3EE0; // type:object size:0x60 scope:global align:8
+int_sum_bla_chest03_base_model = .data:0x009A3F40; // type:object size:0xA0 scope:global align:8
+int_sum_bla_chest03_doorR_model = .data:0x009A3FE0; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_bla_chest03_tbl = .data:0x009A4040; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_bla_chest03_tbl = .data:0x009A4048; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_bla_chest03_tbl = .data:0x009A4060; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_bla_chest03_tbl = .data:0x009A406C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_bla_chest03 = .data:0x009A4108; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_bla_chest03_tbl = .data:0x009A411C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_bla_chest03 = .data:0x009A4158; // type:object size:0x8 scope:global align:4
+int_sum_bla_desk01_pal = .data:0x009A4160; // type:object size:0x20 scope:global align:32
+int_sum_bla_desk01_top_tex = .data:0x009A4180; // type:object size:0x100 scope:global align:32 data:string
+int_sum_bla_desk01_side2_tex = .data:0x009A4280; // type:object size:0x800 scope:global align:32
+int_sum_bla_desk01_v = .data:0x009A4A80; // type:object size:0x240 scope:global align:8
+int_sum_bla_desk01_on_model = .data:0x009A4CC0; // type:object size:0xA0 scope:global align:8
+int_sum_bla_lanp_pal = .data:0x009A4D60; // type:object size:0x20 scope:global align:32
+int_sum_bla_lanp_shede_tex = .data:0x009A4D80; // type:object size:0x100 scope:global align:32
+int_sum_bla_lanp_stand_tex = .data:0x009A4E80; // type:object size:0x100 scope:global align:32
+int_sum_bla_lanp_base_tex = .data:0x009A4F80; // type:object size:0x80 scope:global align:32
+int_sum_bla_lanp_top_tex = .data:0x009A5000; // type:object size:0x80 scope:global align:32
+int_sum_bla_lanp_hand_tex = .data:0x009A5080; // type:object size:0x80 scope:global align:32
+int_sum_bla_lanp_v = .data:0x009A5100; // type:object size:0x380 scope:global align:8
+int_sum_bla_lanp_on_model = .data:0x009A5480; // type:object size:0x58 scope:global align:8
+int_sum_bla_lanp_off_model = .data:0x009A54D8; // type:object size:0x78 scope:global align:8
+int_sum_bla_lanp_onT_model = .data:0x009A5550; // type:object size:0x90 scope:global align:8
+int_sum_bla_lanp_offT_model = .data:0x009A55E0; // type:object size:0x58 scope:global align:8
+int_sum_bla_sofa02_pal = .data:0x009A5640; // type:object size:0x20 scope:global align:32
+int_sum_bla_sofa02_back_tex = .data:0x009A5660; // type:object size:0x200 scope:global align:32
+int_sum_bla_sofa02_seat_tex = .data:0x009A5860; // type:object size:0x300 scope:global align:32
+int_sum_bla_sofa02_seatside_tex = .data:0x009A5B60; // type:object size:0x100 scope:global align:32
+int_sum_bla_sofa02_backside_tex = .data:0x009A5C60; // type:object size:0x80 scope:global align:32
+int_sum_bla_sofa02_foot_tex = .data:0x009A5CE0; // type:object size:0x80 scope:global align:32
+int_sum_bla_sofa02_v = .data:0x009A5D60; // type:object size:0x390 scope:global align:8
+int_sum_bla_sofa02_on_model = .data:0x009A60F0; // type:object size:0xD0 scope:global align:8
+int_sum_bla_sofa02_onT_model = .data:0x009A61C0; // type:object size:0x68 scope:global align:8
+int_sum_bla_table01_pal = .data:0x009A6240; // type:object size:0x20 scope:global align:32
+int_bla_table01_glass_tex_rgb_ci4_pal = .data:0x009A6260; // type:object size:0x20 scope:global align:32
+int_sum_bla_table01_top2_tex = .data:0x009A6280; // type:object size:0x400 scope:global align:32
+int_sum_bla_table01_side_tex = .data:0x009A6680; // type:object size:0x100 scope:global align:32
+int_bla_table01_glass_tex_rgb_ci4 = .data:0x009A6780; // type:object size:0x200 scope:global align:32
+int_sum_bla_table01_v = .data:0x009A6980; // type:object size:0x280 scope:global align:8
+int_sum_bla_table01_onT_model = .data:0x009A6C00; // type:object size:0xA8 scope:global align:8
+int_sum_bla_table01_evwT_model = .data:0x009A6CA8; // type:object size:0x60 scope:global align:8
+int_sum_bla_table02_pal = .data:0x009A6D20; // type:object size:0x20 scope:global align:32
+int_sum_bla_table02_top_tex = .data:0x009A6D40; // type:object size:0x300 scope:global align:32
+int_sum_bla_table02_foot_tex = .data:0x009A7040; // type:object size:0x100 scope:global align:32
+int_sum_bla_table02_v = .data:0x009A7140; // type:object size:0x360 scope:global align:8
+int_sum_bla_table02_on_model = .data:0x009A74A0; // type:object size:0x70 scope:global align:8
+int_sum_bla_table02_onT_model = .data:0x009A7510; // type:object size:0x78 scope:global align:8
+int_sum_blue_bed01_pal = .data:0x009A75A0; // type:object size:0x20 scope:global align:32
+int_sum_blue_bed01_topside_tex = .data:0x009A75C0; // type:object size:0x300 scope:global align:32
+int_sum_blue_bed01_head_tex = .data:0x009A78C0; // type:object size:0x100 scope:global align:32
+int_sum_blue_bed01_bou_tex = .data:0x009A79C0; // type:object size:0x80 scope:global align:32
+int_sum_blue_bed01_pillow_tex = .data:0x009A7A40; // type:object size:0x80 scope:global align:32
+int_sum_blue_bed01_head2_tex = .data:0x009A7AC0; // type:object size:0x100 scope:global align:32
+int_sum_blue_bed01_v = .data:0x009A7BC0; // type:object size:0x3E0 scope:global align:8
+int_sum_bule_bed01_on_model = .data:0x009A7FA0; // type:object size:0xD0 scope:global align:8
+int_sum_bule_bed01_onT_model = .data:0x009A8070; // type:object size:0x80 scope:global align:8
+int_sum_blue_bench01_pal = .data:0x009A8100; // type:object size:0x20 scope:global align:32
+int_sum_blue_bench01_back_tex = .data:0x009A8120; // type:object size:0x200 scope:global align:32
+int_sum_blue_bench01_seat_tex = .data:0x009A8320; // type:object size:0x300 scope:global align:32
+int_sum_blue_bench01_foot_tex = .data:0x009A8620; // type:object size:0x100 scope:global align:32
+int_sum_blue_bench01_v = .data:0x009A8720; // type:object size:0x2A0 scope:global align:8
+int_sum_blue_bench01_on_model = .data:0x009A89C0; // type:object size:0x68 scope:global align:8
+int_sum_blue_bench01_onT_model = .data:0x009A8A28; // type:object size:0x90 scope:global align:8
+int_sum_blue_bureau01_pal = .data:0x009A8AC0; // type:object size:0x20 scope:global align:32
+int_sum_blue_bureau01_hiki_tex_txt = .data:0x009A8AE0; // type:object size:0x300 scope:global align:32
+int_sum_blue_bureau01_top_tex_txt = .data:0x009A8DE0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_blue_bureau01_topin_tex_txt = .data:0x009A8E60; // type:object size:0x80 scope:global align:32 data:string
+int_sum_blue_bureau01_side_tex_txt = .data:0x009A8EE0; // type:object size:0x200 scope:global align:32
+int_sum_blue_bureau01_front_tex_txt = .data:0x009A90E0; // type:object size:0x200 scope:global align:32
+int_sum_blue_bureau01_v = .data:0x009A92E0; // type:object size:0x330 scope:global align:8
+sum_blue_bureau01_base_model = .data:0x009A9610; // type:object size:0xC8 scope:global align:8
+sum_blue_bureau01_door_model = .data:0x009A96D8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sum_blue_bureau01_tbl = .data:0x009A9750; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_blue_bureau01_tbl = .data:0x009A9754; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_blue_bureau01_tbl = .data:0x009A9760; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_blue_bureau01_tbl = .data:0x009A976C; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_sum_blue_bureau01 = .data:0x009A97C8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_blue_bureau01_tbl = .data:0x009A97DC; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_blue_bureau01 = .data:0x009A9800; // type:object size:0x8 scope:global align:4
+int_sum_blue_cab01_pal = .data:0x009A9820; // type:object size:0x20 scope:global align:32
+int_sum_blue_cab01_grass_tex_pic_ci4_pal = .data:0x009A9840; // type:object size:0x20 scope:global align:32
+int_sum_blue_cab01_top_tex_txt = .data:0x009A9860; // type:object size:0x80 scope:global align:32 data:string
+int_sum_blue_cab01_hiki_tex_txt = .data:0x009A98E0; // type:object size:0x100 scope:global align:32
+int_sum_blue_cab01_intop_tex_txt = .data:0x009A99E0; // type:object size:0x80 scope:global align:32
+int_sum_blue_cab01_front_tex_txt = .data:0x009A9A60; // type:object size:0x180 scope:global align:32
+int_sum_blue_cab01_side_tex_txt = .data:0x009A9BE0; // type:object size:0x180 scope:global align:32
+int_sum_blue_cab01_books_tex_txt = .data:0x009A9D60; // type:object size:0x80 scope:global align:32
+int_sum_blue_cab01_grass_tex_txt = .data:0x009A9DE0; // type:object size:0x80 scope:global align:32
+int_sum_blue_cab01_v = .data:0x009A9E60; // type:object size:0x4D0 scope:global align:8
+int_sum_blue_cab01_doorL_evw_model = .data:0x009AA330; // type:object size:0x58 scope:global align:8
+int_sum_blue_cab01_doorL_model = .data:0x009AA388; // type:object size:0x80 scope:global align:8
+int_sum_blue_cab01_base_model = .data:0x009AA408; // type:object size:0xE0 scope:global align:8
+int_sum_blue_cab01_doorR_evw_model = .data:0x009AA4E8; // type:object size:0x58 scope:global align:8
+int_sum_blue01_cab01_doorR_model = .data:0x009AA540; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_sum_blue_cab01_tbl = .data:0x009AA5C0; // type:object size:0x7 scope:global align:4
+cKF_kn_int_sum_blue_cab01_tbl = .data:0x009AA5C8; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_blue_cab01_tbl = .data:0x009AA5E0; // type:object size:0x18 scope:global align:4
+cKF_ds_int_sum_blue_cab01_tbl = .data:0x009AA5F8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_blue_cab01 = .data:0x009AA694; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_blue_cab01_tbl = .data:0x009AA6A8; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_sum_blue_cab01 = .data:0x009AA6FC; // type:object size:0x8 scope:global align:4
+int_sum_blue_chair01_pal = .data:0x009AA720; // type:object size:0x20 scope:global align:32
+int_sum_blue_chair01_back_tex = .data:0x009AA740; // type:object size:0x100 scope:global align:32
+int_sum_blue_chair01_seat_tex = .data:0x009AA840; // type:object size:0x180 scope:global align:32
+int_sum_blue_chair01_foot_tex = .data:0x009AA9C0; // type:object size:0x100 scope:global align:32
+int_sum_blue_chair01_v = .data:0x009AAAC0; // type:object size:0x2A0 scope:global align:8
+int_sum_blue_chair01_on_model = .data:0x009AAD60; // type:object size:0x68 scope:global align:8
+int_sum_blue_chair01_onT_model = .data:0x009AADC8; // type:object size:0x90 scope:global align:8
+int_sum_blue_chest01_pal = .data:0x009AAE60; // type:object size:0x20 scope:global align:32
+int_sum_blue_chest01_front_tex = .data:0x009AAE80; // type:object size:0x300 scope:global align:32
+int_sum_blue_chest01_back_tex = .data:0x009AB180; // type:object size:0x180 scope:global align:32
+int_sum_blue_chest01_top_tex = .data:0x009AB300; // type:object size:0x80 scope:global align:32
+int_sum_blue_chest01_lanp_tex = .data:0x009AB380; // type:object size:0x80 scope:global align:32
+int_sum_blue_chest01_stand_tex = .data:0x009AB400; // type:object size:0x100 scope:global align:32
+int_sum_blue_chest01_topshade_tex = .data:0x009AB500; // type:object size:0x80 scope:global align:32
+int_sum_blue_chest01_v = .data:0x009AB580; // type:object size:0x2E0 scope:global align:8
+int_sum_blue_chest01_on_model = .data:0x009AB860; // type:object size:0x58 scope:global align:8
+int_sum_blue_chest01_onT_model = .data:0x009AB8B8; // type:object size:0x100 scope:global align:8
+int_sum_blue_chest02_pal = .data:0x009AB9C0; // type:object size:0x20 scope:global align:32
+int_sum_blue_chest02_front_tex = .data:0x009AB9E0; // type:object size:0x300 scope:global align:32
+int_sum_blue_chest02_back_tex = .data:0x009ABCE0; // type:object size:0x180 scope:global align:32
+int_sum_blue_chest02_top_tex = .data:0x009ABE60; // type:object size:0x100 scope:global align:32
+int_sum_blue_chest02_book_tex = .data:0x009ABF60; // type:object size:0x100 scope:global align:32
+int_sum_blue_chest02_v = .data:0x009AC060; // type:object size:0x2C0 scope:global align:8
+int_sum_blue_chest02_on_model = .data:0x009AC320; // type:object size:0x60 scope:global align:8
+int_sum_blue_chest02_onT_model = .data:0x009AC380; // type:object size:0xB0 scope:global align:8
+int_sum_blue_clk_pal = .data:0x009AC440; // type:object size:0x20 scope:global align:32
+int_sum_blue_clk_grass_tex_pic_ci4_pal = .data:0x009AC460; // type:object size:0x20 scope:global align:32
+int_sum_blue_clk_hari_tex_txt = .data:0x009AC480; // type:object size:0x80 scope:global align:32
+int_sum_blue_clk_intop_tex_txt = .data:0x009AC500; // type:object size:0x80 scope:global align:32 data:string
+int_sum_blue_clk_side_tex_txt = .data:0x009AC580; // type:object size:0x200 scope:global align:32
+int_sum_blue_clk_front_tex_txt = .data:0x009AC780; // type:object size:0x400 scope:global align:32
+int_sum_blue_clk_fuliko_tex_txt = .data:0x009ACB80; // type:object size:0x80 scope:global align:32
+int_sum_blue_clk_grass_tex_txt = .data:0x009ACC00; // type:object size:0x80 scope:global align:32
+int_sum_blue_clk_v = .data:0x009ACC80; // type:object size:0x310 scope:global align:8
+int_sum_blue_clk_long_model = .data:0x009ACF90; // type:object size:0x60 scope:global align:8
+int_sum_blue_clk_evw_model = .data:0x009ACFF0; // type:object size:0x58 scope:global align:8
+int_sum_blue_clk_base_model = .data:0x009AD048; // type:object size:0xE0 scope:global align:8
+int_sum_blue_clk_short_model = .data:0x009AD128; // type:object size:0x60 scope:global align:8
+int_sum_blue_clk_huriko_model = .data:0x009AD188; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_blue_clk_tbl = .data:0x009AD1E0; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_blue_clk_tbl = .data:0x009AD1E8; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_blue_clk_tbl = .data:0x009AD1EC; // type:object size:0x34 scope:global align:4
+cKF_ds_int_sum_blue_clk_tbl = .data:0x009AD220; // type:object size:0x12 scope:global align:4
+cKF_ba_r_int_sum_blue_clk = .data:0x009AD234; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_blue_clk_tbl = .data:0x009AD248; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_blue_clk = .data:0x009AD2A8; // type:object size:0x8 scope:global align:4
+int_sum_blue_lowchest01_pal = .data:0x009AD2C0; // type:object size:0x20 scope:global align:32
+int_sum_blue_lowchest01_hikiin_tex_txt = .data:0x009AD2E0; // type:object size:0x80 scope:global align:32
+int_sum_blue_lowchest01_hiki_tex_txt = .data:0x009AD360; // type:object size:0x100 scope:global align:32
+int_sum_blue_lowchest01_front_tex_txt = .data:0x009AD460; // type:object size:0x400 scope:global align:32
+int_sum_blue_lowchest01_top_tex_txt = .data:0x009AD860; // type:object size:0x80 scope:global align:32 data:string
+int_sum_blue_lowchest01_sibe_tex_txt = .data:0x009AD8E0; // type:object size:0x100 scope:global align:32
+int_sum_blue_lowchest01_v = .data:0x009AD9E0; // type:object size:0x340 scope:global align:8
+sum_blue_lowchest01_base_model = .data:0x009ADD20; // type:object size:0xA8 scope:global align:8
+int_sum_blue_lowchest01_door_1_model = .data:0x009ADDC8; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_blue_lowchest01_tbl = .data:0x009ADE58; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_blue_lowchest01_tbl = .data:0x009ADE5C; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_blue_lowchest01_tbl = .data:0x009ADE70; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_blue_lowchest01_tbl = .data:0x009ADE78; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_blue_lowchest01 = .data:0x009ADEE4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_blue_lowchest01_tbl = .data:0x009ADEF8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_blue_lowchest01 = .data:0x009ADF1C; // type:object size:0x8 scope:global align:4
+int_sum_blue_table01_pal = .data:0x009ADF40; // type:object size:0x20 scope:global align:32
+int_sum_blue_table01_top_tex = .data:0x009ADF60; // type:object size:0x200 scope:global align:32
+int_sum_blue_table01_side_tex = .data:0x009AE160; // type:object size:0x100 scope:global align:32
+int_sum_blue_table01_foot_tex = .data:0x009AE260; // type:object size:0x100 scope:global align:32
+int_sum_blue_table01_v = .data:0x009AE360; // type:object size:0x340 scope:global align:8
+int_sum_blue_table01_on_model = .data:0x009AE6A0; // type:object size:0x58 scope:global align:8
+int_sum_blue_table01_onT_model = .data:0x009AE6F8; // type:object size:0xB8 scope:global align:8
+int_sum_bon_boke_pal = .data:0x009AE7C0; // type:object size:0x20 scope:global align:32
+int_sum_bon_boke_hachi_tex = .data:0x009AE7E0; // type:object size:0x100 scope:global align:32
+int_sum_bon_boke_stand_tex = .data:0x009AE8E0; // type:object size:0x400 scope:global align:32
+int_sum_bon_boke_standside_tex = .data:0x009AECE0; // type:object size:0x200 scope:global align:32
+int_sum_bon_boke_hana_tex = .data:0x009AEEE0; // type:object size:0x80 scope:global align:32
+int_sum_bon_boke_earth_tex = .data:0x009AEF60; // type:object size:0x80 scope:global align:32
+int_sum_bon_boke_v = .data:0x009AEFE0; // type:object size:0x3A0 scope:global align:8
+int_sum_bon_boke_on_model = .data:0x009AF380; // type:object size:0x60 scope:global align:8
+int_sum_bon_boke_onT_model = .data:0x009AF3E0; // type:object size:0xE8 scope:global align:8
+int_sum_bon_matu01_pal = .data:0x009AF4E0; // type:object size:0x20 scope:global align:32
+int_sum_bon_matu01_hachi_tex = .data:0x009AF500; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu01_miki_tex = .data:0x009AF600; // type:object size:0x300 scope:global align:32
+int_sum_bon_matu01_mikiside_tex = .data:0x009AF900; // type:object size:0x180 scope:global align:32
+int_sum_bon_matu01_leaf_tex = .data:0x009AFA80; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu01_earth_tex = .data:0x009AFB80; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu01_v = .data:0x009AFC80; // type:object size:0x560 scope:global align:8
+int_sum_bon_matu01_on_model = .data:0x009B01E0; // type:object size:0x60 scope:global align:8
+int_sum_bon_matu01_onT_model = .data:0x009B0240; // type:object size:0xF8 scope:global align:8
+int_sum_bon_matu02_pal = .data:0x009B0340; // type:object size:0x20 scope:global align:32
+int_sum_bon_matu02_hachi_tex = .data:0x009B0360; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu02_stand_tex = .data:0x009B0460; // type:object size:0x200 scope:global align:32
+int_sum_bon_matu02_lowstand_tex = .data:0x009B0660; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu02_leaf_tex = .data:0x009B0760; // type:object size:0x180 scope:global align:32
+int_sum_bon_matu02_leaf2_tex = .data:0x009B08E0; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu02_earth_tex = .data:0x009B09E0; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu02_v = .data:0x009B0AE0; // type:object size:0x5A0 scope:global align:8
+int_sum_bon_matu02_on_model = .data:0x009B1080; // type:object size:0x60 scope:global align:8
+int_sum_bon_matu02_onT_model = .data:0x009B10E0; // type:object size:0x108 scope:global align:8
+int_sum_bon_matu03_pal = .data:0x009B1200; // type:object size:0x20 scope:global align:32
+int_sum_bon_matu03_hachi_tex = .data:0x009B1220; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu03_stand_tex = .data:0x009B1320; // type:object size:0x400 scope:global align:32
+int_sum_bon_matu03_standside_tex = .data:0x009B1720; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu03_earth_tex = .data:0x009B1820; // type:object size:0x80 scope:global align:32
+int_sum_bon_matu03_leaf_tex = .data:0x009B18A0; // type:object size:0x100 scope:global align:32
+int_sum_bon_matu03_v = .data:0x009B19A0; // type:object size:0x510 scope:global align:8
+int_sum_bon_matu03_on_model = .data:0x009B1EB0; // type:object size:0x60 scope:global align:8
+int_sum_bon_matu03_onT_model = .data:0x009B1F10; // type:object size:0xE8 scope:global align:8
+int_sum_bon_momiji_pal = .data:0x009B2000; // type:object size:0x20 scope:global align:32
+int_sum_bon_momiji_hachi_tex = .data:0x009B2020; // type:object size:0x100 scope:global align:32
+int_sum_bon_momiji_tree_tex = .data:0x009B2120; // type:object size:0x200 scope:global align:32
+int_sum_bon_momiji_eda_tex = .data:0x009B2320; // type:object size:0x100 scope:global align:32
+int_sum_bon_momiji_earth_tex = .data:0x009B2420; // type:object size:0x80 scope:global align:32
+int_sum_bon_momiji_leaf_tex = .data:0x009B24A0; // type:object size:0x200 scope:global align:32
+int_sum_bon_momiji_v = .data:0x009B26A0; // type:object size:0x5F0 scope:global align:8
+int_sum_bon_momiji_on_model = .data:0x009B2C90; // type:object size:0x60 scope:global align:8
+int_sum_bon_momiji_onT_model = .data:0x009B2CF0; // type:object size:0xF0 scope:global align:8
+int_sum_bon_pira_pal = .data:0x009B2DE0; // type:object size:0x20 scope:global align:32
+int_sum_bon_pira_hachi_tex = .data:0x009B2E00; // type:object size:0x100 scope:global align:32
+int_sum_bon_pira_tree_tex = .data:0x009B2F00; // type:object size:0x100 scope:global align:32
+int_sum_bon_pira_leaf_tex = .data:0x009B3000; // type:object size:0x300 scope:global align:32
+int_sum_bon_pira_treeside_tex = .data:0x009B3300; // type:object size:0x100 scope:global align:32
+int_sum_bon_pira_mi_tex = .data:0x009B3400; // type:object size:0x100 scope:global align:32
+int_sum_bon_pira_earth_tex = .data:0x009B3500; // type:object size:0x80 scope:global align:32
+int_sum_bon_pira_minileaf_tex = .data:0x009B3580; // type:object size:0x80 scope:global align:32
+int_sum_bon_pira_v = .data:0x009B3600; // type:object size:0x6E0 scope:global align:8
+int_sum_boke_pira_on_model = .data:0x009B3CE0; // type:object size:0x60 scope:global align:8
+int_sum_boke_pira_onT_model = .data:0x009B3D40; // type:object size:0x130 scope:global align:8
+int_sum_bon_sanshu_pal = .data:0x009B3E80; // type:object size:0x20 scope:global align:32
+int_sum_bon_sanshu_tree_tex = .data:0x009B3EA0; // type:object size:0x200 scope:global align:32
+int_sum_bon_sanshu_treetop_tex = .data:0x009B40A0; // type:object size:0x180 scope:global align:32
+int_sum_bon_sanshu_eda_tex = .data:0x009B4220; // type:object size:0x100 scope:global align:32
+int_sum_bon_sanshu_eda2_tex = .data:0x009B4320; // type:object size:0x100 scope:global align:32
+int_sum_bon_sanshu_stand_tex = .data:0x009B4420; // type:object size:0x100 scope:global align:32
+int_sum_bon_sanshu_earth_tex = .data:0x009B4520; // type:object size:0x80 scope:global align:32
+int_sum_bon_sanshu_hachi_tex = .data:0x009B45A0; // type:object size:0x100 scope:global align:32
+int_sum_bon_sanshu_v = .data:0x009B46A0; // type:object size:0x5D0 scope:global align:8
+int_sum_bon_sanshu_on_model = .data:0x009B4C70; // type:object size:0x60 scope:global align:8
+int_sum_bon_sanshu_onT_model = .data:0x009B4CD0; // type:object size:0x120 scope:global align:8
+int_sum_bon_satuki_pal = .data:0x009B4E00; // type:object size:0x20 scope:global align:32
+int_sum_bon_satuki_hachi_tex = .data:0x009B4E20; // type:object size:0x100 scope:global align:32
+int_sum_bon_satuki_earth_tex = .data:0x009B4F20; // type:object size:0x80 scope:global align:32
+int_sum_bon_satuki_stand_tex = .data:0x009B4FA0; // type:object size:0x100 scope:global align:32
+int_sum_bon_satuki_standside_tex = .data:0x009B50A0; // type:object size:0x100 scope:global align:32
+int_sum_bon_satuki_hana_tex = .data:0x009B51A0; // type:object size:0x200 scope:global align:32
+int_sum_bon_satuki_leaf_tex = .data:0x009B53A0; // type:object size:0x200 scope:global align:32
+int_sum_bon_satuki_v = .data:0x009B55A0; // type:object size:0x4E0 scope:global align:8
+int_sum_bon_satuki_on_model = .data:0x009B5A80; // type:object size:0x58 scope:global align:8
+int_sum_bon_satuki_onT_model = .data:0x009B5AD8; // type:object size:0x110 scope:global align:8
+int_sum_bon_turu_pal = .data:0x009B5C00; // type:object size:0x20 scope:global align:32
+int_sum_bon_turu_stand_tex = .data:0x009B5C20; // type:object size:0x200 scope:global align:32
+int_sum_bon_turu_standside_tex = .data:0x009B5E20; // type:object size:0x100 scope:global align:32
+int_sum_bon_turu_leaf_tex = .data:0x009B5F20; // type:object size:0x200 scope:global align:32
+int_sum_bon_turu_mi_tex = .data:0x009B6120; // type:object size:0x80 scope:global align:32
+int_sum_bon_turu_hachi_tex = .data:0x009B61A0; // type:object size:0x100 scope:global align:32
+int_sum_bon_turu_earth_tex = .data:0x009B62A0; // type:object size:0x80 scope:global align:32
+int_sum_bon_turu_v = .data:0x009B6320; // type:object size:0x510 scope:global align:8
+int_sum_bon_turu_on_model = .data:0x009B6830; // type:object size:0x60 scope:global align:8
+int_sum_bon_turu_onT_model = .data:0x009B6890; // type:object size:0x110 scope:global align:8
+int_sum_bon_ume_pal = .data:0x009B69A0; // type:object size:0x20 scope:global align:32
+int_sum_bon_ume_hachi_tex = .data:0x009B69C0; // type:object size:0x100 scope:global align:32
+int_sum_bon_ume_stand_tex = .data:0x009B6AC0; // type:object size:0x200 scope:global align:32
+int_sum_bon_ume_standside_tex = .data:0x009B6CC0; // type:object size:0x100 scope:global align:32
+int_sum_bon_ume_hana_tex = .data:0x009B6DC0; // type:object size:0x200 scope:global align:32
+int_sum_bon_ume_tubomi_tex = .data:0x009B6FC0; // type:object size:0x100 scope:global align:32
+int_sum_bon_ume_earth_tex = .data:0x009B70C0; // type:object size:0x80 scope:global align:32
+int_sum_bon_ume_v = .data:0x009B7140; // type:object size:0x420 scope:global align:8
+int_sum_bon_ume_on_model = .data:0x009B7560; // type:object size:0x60 scope:global align:8
+int_sum_bon_ume_onT_model = .data:0x009B75C0; // type:object size:0x118 scope:global align:8
+int_sum_bookcht01_pal = .data:0x009B76E0; // type:object size:0x20 scope:global align:32
+int_sum_bookcht01_mirror_tex_rgb_ci4_pal = .data:0x009B7700; // type:object size:0x20 scope:global align:32
+int_sum_bookcht01_front_tex = .data:0x009B7720; // type:object size:0x180 scope:global align:32
+int_sum_bookcht01_side_tex = .data:0x009B78A0; // type:object size:0x180 scope:global align:32
+int_sum_bookcht01_back_tex = .data:0x009B7A20; // type:object size:0x180 scope:global align:32
+int_sum_bookcht01_top_tex = .data:0x009B7BA0; // type:object size:0x80 scope:global align:32
+int_sum_bookcht01_book_tex = .data:0x009B7C20; // type:object size:0x200 scope:global align:32
+int_sum_bookcht01_mirror_tex = .data:0x009B7E20; // type:object size:0x80 scope:global align:32
+int_sum_bookcht01_v = .data:0x009B7EA0; // type:object size:0x240 scope:global align:8
+int_sum_bookcht01_on_model = .data:0x009B80E0; // type:object size:0x88 scope:global align:8
+int_sum_bookcht01_onT_model = .data:0x009B8168; // type:object size:0x98 scope:global align:8
+int_sum_bookcht01_envT_model = .data:0x009B8200; // type:object size:0x60 scope:global align:8
+int_sum_casse01_pal = .data:0x009B8260; // type:object size:0x20 scope:global align:32
+int_sum_casse01_front_tex = .data:0x009B8280; // type:object size:0x600 scope:global align:32
+int_sum_casse01_side_tex = .data:0x009B8880; // type:object size:0x100 scope:global align:32
+int_sum_casse01_hand_tex = .data:0x009B8980; // type:object size:0x80 scope:global align:32
+int_sum_casse01_antena_tex = .data:0x009B8A00; // type:object size:0x80 scope:global align:32
+int_sum_casse01_v = .data:0x009B8A80; // type:object size:0x320 scope:global align:8
+int_sum_casse01_on_model = .data:0x009B8DA0; // type:object size:0xC0 scope:global align:8
+int_sum_casse01_onT_model = .data:0x009B8E60; // type:object size:0x58 scope:global align:8
+int_sum_cello01_pal = .data:0x009B8EC0; // type:object size:0x20 scope:global align:32
+int_sum_cello01_front_tex = .data:0x009B8EE0; // type:object size:0x300 scope:global align:32
+int_sum_cello01_back_tex = .data:0x009B91E0; // type:object size:0x180 scope:global align:32
+int_sum_cello01_side_tex = .data:0x009B9360; // type:object size:0x80 scope:global align:32
+int_sum_cello01_neck_tex = .data:0x009B93E0; // type:object size:0x100 scope:global align:32
+int_sum_cello01_neckback_tex = .data:0x009B94E0; // type:object size:0x80 scope:global align:32
+int_sum_cello01_hand_tex = .data:0x009B9560; // type:object size:0x80 scope:global align:32
+int_sum_cello01_stand_tex = .data:0x009B95E0; // type:object size:0x100 scope:global align:32
+int_sum_cello01_v = .data:0x009B96E0; // type:object size:0x390 scope:global align:8
+int_sum_cello01_on_model = .data:0x009B9A70; // type:object size:0x88 scope:global align:8
+int_sum_cello01_onT_model = .data:0x009B9AF8; // type:object size:0xF8 scope:global align:8
+int_sum_chair01_pal = .data:0x009B9C00; // type:object size:0x20 scope:global align:32
+int_sum_chair01_side = .data:0x009B9C20; // type:object size:0x400 scope:global align:32
+int_sum_chair01_top = .data:0x009BA020; // type:object size:0x100 scope:global align:32
+int_sum_chair01_back = .data:0x009BA120; // type:object size:0x80 scope:global align:32
+int_sum_chair01_backseat = .data:0x009BA1A0; // type:object size:0x40 scope:global align:32
+int_sum_chair01_step = .data:0x009BA1E0; // type:object size:0x40 scope:global align:32 data:string
+int_sum_chair01_frontf = .data:0x009BA220; // type:object size:0x100 scope:global align:32
+int_sum_chair01_backf = .data:0x009BA320; // type:object size:0x40 scope:global align:32 data:string
+int_sum_chair01_v = .data:0x009BA360; // type:object size:0x3E0 scope:global align:8
+int_sum_chair01_on_model = .data:0x009BA740; // type:object size:0xA0 scope:global align:8
+int_sum_chair01_onT_model = .data:0x009BA7E0; // type:object size:0xD8 scope:global align:8
+int_sum_chikuon01_pal = .data:0x009BA8C0; // type:object size:0x20 scope:global align:32
+int_sum_chikuon01_front_tex = .data:0x009BA8E0; // type:object size:0x100 scope:global align:32
+int_sum_chikuon01_side_tex = .data:0x009BA9E0; // type:object size:0x80 scope:global align:32
+int_sum_chikuon01_rapa_f_tex = .data:0x009BAA60; // type:object size:0x200 scope:global align:32
+int_sum_chikuon01_rapa_b_tex = .data:0x009BAC60; // type:object size:0x80 scope:global align:32
+int_sum_chikuon01_reco_tex = .data:0x009BACE0; // type:object size:0x100 scope:global align:32
+int_sum_chikuon01_hari_tex = .data:0x009BADE0; // type:object size:0x80 scope:global align:32
+int_sum_chikuon01_v = .data:0x009BAE60; // type:object size:0x360 scope:global align:8
+int_sum_chikuon01_on_model = .data:0x009BB1C0; // type:object size:0x80 scope:global align:8
+int_sum_chikuon01_onT_model = .data:0x009BB240; // type:object size:0xD8 scope:global align:8
+int_sum_chikuon02_pal = .data:0x009BB320; // type:object size:0x20 scope:global align:32
+int_sum_chikuon02_top_tex = .data:0x009BB340; // type:object size:0x100 scope:global align:32
+int_sum_chikuon02_back_tex = .data:0x009BB440; // type:object size:0x100 scope:global align:32
+int_sum_chikuon02_front_tex = .data:0x009BB540; // type:object size:0x200 scope:global align:32
+int_sum_chikuon02_rid_tex = .data:0x009BB740; // type:object size:0x100 scope:global align:32
+int_sum_chikuon02_reco_tex = .data:0x009BB840; // type:object size:0x100 scope:global align:32
+int_sum_chikuon02_in_tex = .data:0x009BB940; // type:object size:0x100 scope:global align:32
+int_sum_chikuon02_v = .data:0x009BBA40; // type:object size:0x470 scope:global align:8
+int_sum_chikuon02_on_model = .data:0x009BBEB0; // type:object size:0xC8 scope:global align:8
+int_sum_chikuon02_onT_model = .data:0x009BBF78; // type:object size:0xA8 scope:global align:8
+int_sum_classiccabinet01_pal = .data:0x009BC020; // type:object size:0x20 scope:global align:32
+int_sum_classiccabinet01_front = .data:0x009BC040; // type:object size:0x400 scope:global align:32
+int_sum_classiccabinet01_in = .data:0x009BC440; // type:object size:0x80 scope:global align:32
+int_sum_classiccabinet01_rack = .data:0x009BC4C0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_classiccabinet01_back = .data:0x009BC540; // type:object size:0x200 scope:global align:32
+int_sum_classiccabinet01_saucer = .data:0x009BC740; // type:object size:0x80 scope:global align:32
+int_sum_classiccabinet01_saucer2 = .data:0x009BC7C0; // type:object size:0x80 scope:global align:32
+int_sum_classiccabinet01_v = .data:0x009BC840; // type:object size:0x480 scope:global align:8
+int_sum_classiccabinet01_on_model = .data:0x009BCCC0; // type:object size:0x90 scope:global align:8
+int_sum_classiccabinet01_onT_model = .data:0x009BCD50; // type:object size:0xD8 scope:global align:8
+int_sum_classicchair01_pal01_pal = .data:0x009BCE40; // type:object size:0x20 scope:global align:32
+int_sum_classicchair01_seat = .data:0x009BCE60; // type:object size:0x100 scope:global align:32
+int_sum_classicchair01_back = .data:0x009BCF60; // type:object size:0x200 scope:global align:32
+int_sum_classicchair01_side = .data:0x009BD160; // type:object size:0x80 scope:global align:32
+int_sum_classicchair01_foot = .data:0x009BD1E0; // type:object size:0x100 scope:global align:32
+int_sum_classicchair01_frontseat = .data:0x009BD2E0; // type:object size:0x40 scope:global align:32
+int_sum_classicchair01_backfoot = .data:0x009BD320; // type:object size:0x100 scope:global align:32
+int_sum_classicchairspindle = .data:0x009BD420; // type:object size:0x40 scope:global align:32 data:string
+int_sum_classicchair01_backseat = .data:0x009BD460; // type:object size:0x40 scope:global align:32 data:string
+int_sum_classicchair01_v = .data:0x009BD4A0; // type:object size:0x430 scope:global align:8
+int_sum_classicchair01_on_model = .data:0x009BD8D0; // type:object size:0xE8 scope:global align:8
+int_sum_classicchair01_onT_model = .data:0x009BD9B8; // type:object size:0xA8 scope:global align:8
+int_sum_clchest01_pal = .data:0x009BDA60; // type:object size:0x20 scope:global align:32
+int_sum_clchest01_glass_pic_ci4_pal = .data:0x009BDA80; // type:object size:0x20 scope:global align:32
+int_sum_clchest01_hiki_txt = .data:0x009BDAA0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_clchest01_mirback_txt = .data:0x009BDB20; // type:object size:0x80 scope:global align:32 data:string
+int_sum_clchest01_front_txt = .data:0x009BDBA0; // type:object size:0x200 scope:global align:32
+int_sum_clchest01_top_txt = .data:0x009BDDA0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_clchest01_side_txt = .data:0x009BDE20; // type:object size:0x100 scope:global align:32
+int_sum_clchest01_stand_txt = .data:0x009BDF20; // type:object size:0x100 scope:global align:32
+int_sum_clchest01_mirside_txt = .data:0x009BE020; // type:object size:0x40 scope:global align:32 data:string
+int_sum_clchest01_mir_txt = .data:0x009BE060; // type:object size:0x80 scope:global align:32
+int_sum_clchest01_glass_txt = .data:0x009BE0E0; // type:object size:0x100 scope:global align:32
+int_sum_clchest01_v = .data:0x009BE1E0; // type:object size:0x4E0 scope:global align:8
+int_sum_clcht1_door_model = .data:0x009BE6C0; // type:object size:0xA0 scope:global align:8
+int_sum_clcht1_evw_model = .data:0x009BE760; // type:object size:0x58 scope:global align:8
+int_sum_clcht1_base_model = .data:0x009BE7B8; // type:object size:0x130 scope:global align:8
+cKF_ckcb_r_int_sum_clchest01_tbl = .data:0x009BE8E8; // type:object size:0x4 scope:global align:4
+cKF_kn_int_sum_clchest01_tbl = .data:0x009BE8EC; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_clchest01_tbl = .data:0x009BE900; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_clchest01_tbl = .data:0x009BE90C; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_clchest01 = .data:0x009BE978; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_clchest01_tbl = .data:0x009BE98C; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_sum_clchest01 = .data:0x009BE9BC; // type:object size:0x8 scope:global align:4
+int_sum_classicchest02_pal01_pal = .data:0x009BE9E0; // type:object size:0x20 scope:global align:32
+int_sum_classicchest02_back = .data:0x009BEA00; // type:object size:0x180 scope:global align:32
+int_sum_classicchest02_side = .data:0x009BEB80; // type:object size:0x180 scope:global align:32
+int_sum_classicchest02_top = .data:0x009BED00; // type:object size:0x200 scope:global align:32
+int_sum_classicchest02_front = .data:0x009BEF00; // type:object size:0x100 scope:global align:32
+int_sum_classicchest02_tablefront = .data:0x009BF000; // type:object size:0x40 scope:global align:32 data:string
+int_sum_classicchest02_tableside = .data:0x009BF040; // type:object size:0x40 scope:global align:32 data:string
+int_sum_classicchest02_uptop = .data:0x009BF080; // type:object size:0x80 scope:global align:32 data:string
+int_sum_classicchest02_ink = .data:0x009BF100; // type:object size:0x80 scope:global align:32
+int_sum_classicchest02_pensaki = .data:0x009BF180; // type:object size:0x40 scope:global align:32
+int_sum_classicchest02_pen = .data:0x009BF1C0; // type:object size:0x40 scope:global align:32
+int_sum_classicchest02_v = .data:0x009BF200; // type:object size:0x320 scope:global align:8
+int_sum_classicchest02_on_model = .data:0x009BF520; // type:object size:0xC0 scope:global align:8
+int_sum_classicchest02_onT_model = .data:0x009BF5E0; // type:object size:0xD0 scope:global align:8
+int_sum_dolltable01_pal = .data:0x009BF6C0; // type:object size:0x20 scope:global align:32
+int_sum_classictable01_top = .data:0x009BF6E0; // type:object size:0x200 scope:global align:32
+int_sum_classictable01_side = .data:0x009BF8E0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_classictable01_lag = .data:0x009BF960; // type:object size:0x180 scope:global align:32
+int_sum_classictable01_foot = .data:0x009BFAE0; // type:object size:0x100 scope:global align:32
+int_sum_classictable01_v = .data:0x009BFBE0; // type:object size:0x350 scope:global align:8
+int_sum_classictable01_on_model = .data:0x009BFF30; // type:object size:0x88 scope:global align:8
+int_sum_classictable01_onT_model = .data:0x009BFFB8; // type:object size:0xA8 scope:global align:8
+int_sum_classicwardrope01_pal01_pal = .data:0x009C0060; // type:object size:0x20 scope:global align:32
+int_sum_classicwardrope01_mirror_rgb_ci4_pal = .data:0x009C0080; // type:object size:0x20 scope:global align:32
+int_sum_classicwardrope01_back = .data:0x009C00A0; // type:object size:0x200 scope:global align:32
+int_sum_classicwardrope01_front = .data:0x009C02A0; // type:object size:0x200 scope:global align:32
+int_sum_classicwardrope01_side = .data:0x009C04A0; // type:object size:0x200 scope:global align:32
+int_sum_classicwardrope01_top = .data:0x009C06A0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_classicwardrope01_dolls = .data:0x009C0720; // type:object size:0x100 scope:global align:32
+int_sum_classicwardrope01_mirror = .data:0x009C0820; // type:object size:0x80 scope:global align:32
+int_sum_classicwardrope01_v = .data:0x009C08A0; // type:object size:0x3F0 scope:global align:8
+int_sum_classcwardrope01_on_model = .data:0x009C0C90; // type:object size:0x60 scope:global align:8
+int_sum_classcwardrope01_onT_model = .data:0x009C0CF0; // type:object size:0x108 scope:global align:8
+int_sum_classicwardrope_envT_model = .data:0x009C0DF8; // type:object size:0x60 scope:global align:8
+int_sum_clbed02_pal = .data:0x009C0E60; // type:object size:0x20 scope:global align:32
+int_sum_clbed02_foot = .data:0x009C0E80; // type:object size:0x100 scope:global align:32
+int_sum_clbed02_head = .data:0x009C0F80; // type:object size:0x100 scope:global align:32
+int_sum_clbed02_mat = .data:0x009C1080; // type:object size:0x400 scope:global align:32
+int_sum_clbed02_pillow = .data:0x009C1480; // type:object size:0x200 scope:global align:32
+int_sum_clbed02_v = .data:0x009C1680; // type:object size:0x300 scope:global align:8
+int_sum_clbed02_onT_model = .data:0x009C1980; // type:object size:0xE8 scope:global align:8
+int_sum_clchair02_pal01_pal = .data:0x009C1A80; // type:object size:0x20 scope:global align:32
+int_sum_clchair02_back = .data:0x009C1AA0; // type:object size:0x100 scope:global align:32
+int_sum_clchair02_seat = .data:0x009C1BA0; // type:object size:0x100 scope:global align:32
+int_sum_clchair02_foot = .data:0x009C1CA0; // type:object size:0x100 scope:global align:32
+int_sum_clchair02_foot2 = .data:0x009C1DA0; // type:object size:0x100 scope:global align:32
+int_sum_clchair02_foot3 = .data:0x009C1EA0; // type:object size:0x100 scope:global align:32
+int_sum_clchair02_hiji = .data:0x009C1FA0; // type:object size:0x200 scope:global align:32
+int_sum_clchair02_hiji2 = .data:0x009C21A0; // type:object size:0x80 scope:global align:32
+int_sum_clchair02_v = .data:0x009C2220; // type:object size:0x3E0 scope:global align:8
+int_sum_clcheir02_onT_model = .data:0x009C2600; // type:object size:0x150 scope:global align:8
+int_sum_clchest03_pal01_pal = .data:0x009C2760; // type:object size:0x20 scope:global align:32
+int_sum_clchest03_hiki_txt = .data:0x009C2780; // type:object size:0x100 scope:global align:32 data:string
+int_sum_clchest03_hikiura_txt = .data:0x009C2880; // type:object size:0x100 scope:global align:32 data:string
+int_sum_clchest03_top_txt = .data:0x009C2980; // type:object size:0x100 scope:global align:32 data:string
+int_sum_clchest03_stand_txt = .data:0x009C2A80; // type:object size:0x80 scope:global align:32
+int_sum_clchest03_front_txt = .data:0x009C2B00; // type:object size:0x180 scope:global align:32
+int_sum_clchest03_side_txt = .data:0x009C2C80; // type:object size:0x180 scope:global align:32 data:string
+int_sum_clchest03_hisasi_txt = .data:0x009C2E00; // type:object size:0x80 scope:global align:32 data:string
+int_sum_clchest03_v = .data:0x009C2E80; // type:object size:0x480 scope:global align:8
+int_sum_clchest03_door_model = .data:0x009C3300; // type:object size:0x90 scope:global align:8
+int_sum_clchest03_base_model = .data:0x009C3390; // type:object size:0xF8 scope:global align:8
+cKF_ckcb_r_int_sum_clchest03_tbl = .data:0x009C3488; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_clchest03_tbl = .data:0x009C348C; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_clchest03_tbl = .data:0x009C3498; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_clchest03_tbl = .data:0x009C34A4; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_sum_clchest03 = .data:0x009C3500; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_clchest03_tbl = .data:0x009C3514; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_clchest03 = .data:0x009C3538; // type:object size:0x8 scope:global align:4
+int_sum_col_chair01_pal = .data:0x009C3540; // type:object size:0x20 scope:global align:32
+int_sum_col_chair01_backboard_tex = .data:0x009C3560; // type:object size:0x180 scope:global align:32
+int_sum_col_chair01_front_tex = .data:0x009C36E0; // type:object size:0x40 scope:global align:32
+int_sum_col_chair01_seatside_tex = .data:0x009C3720; // type:object size:0x40 scope:global align:32
+int_sum_col_chair01_top_tex = .data:0x009C3760; // type:object size:0x80 scope:global align:32
+int_sum_col_chair01_boardside_tex = .data:0x009C37E0; // type:object size:0x80 scope:global align:32
+int_sum_col_chair01_foot_tex = .data:0x009C3860; // type:object size:0x100 scope:global align:32
+int_sum_col_chair01_v = .data:0x009C3960; // type:object size:0x390 scope:global align:8
+int_sum_col_chair01_on_model = .data:0x009C3CF0; // type:object size:0xE8 scope:global align:8
+int_sum_col_chair01_onT_model = .data:0x009C3DD8; // type:object size:0x70 scope:global align:8
+int_sum_col_chair02_pal = .data:0x009C3E60; // type:object size:0x20 scope:global align:32
+int_sum_col_chair02_backboard_tex = .data:0x009C3E80; // type:object size:0x180 scope:global align:32
+int_sum_col_chair02_front_tex = .data:0x009C4000; // type:object size:0x40 scope:global align:32
+int_sum_col_chair02_seatside_tex = .data:0x009C4040; // type:object size:0x40 scope:global align:32
+int_sum_col_chair02_top_tex = .data:0x009C4080; // type:object size:0x80 scope:global align:32
+int_sum_col_chair02_boardside_tex = .data:0x009C4100; // type:object size:0x80 scope:global align:32
+int_sum_col_chair02_foot_tex = .data:0x009C4180; // type:object size:0x100 scope:global align:32
+int_sum_col_chair02_v = .data:0x009C4280; // type:object size:0x390 scope:global align:8
+int_sum_col_chair02_on_model = .data:0x009C4610; // type:object size:0xE8 scope:global align:8
+int_sum_col_chair02_onT_model = .data:0x009C46F8; // type:object size:0x70 scope:global align:8
+int_sum_col_chair03_pal = .data:0x009C4780; // type:object size:0x20 scope:global align:32
+int_sum_col_chair03_backboard_tex = .data:0x009C47A0; // type:object size:0x180 scope:global align:32
+int_sum_col_chair03_front_tex = .data:0x009C4920; // type:object size:0x40 scope:global align:32
+int_sum_col_chair03_seatside_tex = .data:0x009C4960; // type:object size:0x40 scope:global align:32
+int_sum_col_chair03_top_tex = .data:0x009C49A0; // type:object size:0x80 scope:global align:32
+int_sum_col_chair03_boardside_tex = .data:0x009C4A20; // type:object size:0x80 scope:global align:32
+int_sum_col_chair03_foot_tex = .data:0x009C4AA0; // type:object size:0x100 scope:global align:32
+int_sum_col_chair03_v = .data:0x009C4BA0; // type:object size:0x390 scope:global align:8
+int_sum_col_chair03_on_model = .data:0x009C4F30; // type:object size:0xE8 scope:global align:8
+int_sum_col_chair03_onT_model = .data:0x009C5018; // type:object size:0x70 scope:global align:8
+int_sum_comp01_pal = .data:0x009C50A0; // type:object size:0x20 scope:global align:32
+int_sum_comp01_front_tex = .data:0x009C50C0; // type:object size:0x100 scope:global align:32
+int_sum_comp01_side_tex = .data:0x009C51C0; // type:object size:0x100 scope:global align:32
+int_sum_comp01_backtop_tex = .data:0x009C52C0; // type:object size:0x40 scope:global align:32
+int_sum_comp01_fronttop_tex = .data:0x009C5300; // type:object size:0x40 scope:global align:32
+int_sum_comp01_mainfront = .data:0x009C5340; // type:object size:0x100 scope:global align:32
+int_sum_comp01_key_tex = .data:0x009C5440; // type:object size:0x100 scope:global align:32
+int_sum_comp01_deskfront_tex = .data:0x009C5540; // type:object size:0x80 scope:global align:32
+int_sum_comp01_deskside_tex = .data:0x009C55C0; // type:object size:0x100 scope:global align:32
+int_sum_comp01_desktop_tex = .data:0x009C56C0; // type:object size:0x80 scope:global align:32
+int_sum_comp01_mainback = .data:0x009C5740; // type:object size:0x80 scope:global align:32
+int_sum_comp01_back_tex = .data:0x009C57C0; // type:object size:0x80 scope:global align:32
+int_sum_comp01_v = .data:0x009C5840; // type:object size:0x5B0 scope:global align:8
+int_sum_comp01_on_model = .data:0x009C5DF0; // type:object size:0x160 scope:global align:8
+int_sum_comp01_onT_model = .data:0x009C5F50; // type:object size:0x80 scope:global align:8
+int_sum_conga01_pal = .data:0x009C5FE0; // type:object size:0x20 scope:global align:32
+int_sum_conga01_side_tex = .data:0x009C6000; // type:object size:0x300 scope:global align:32
+int_sum_conga01_stand_tex = .data:0x009C6300; // type:object size:0x80 scope:global align:32
+int_sum_conga01_top_tex = .data:0x009C6380; // type:object size:0x80 scope:global align:32
+int_sum_conga01_v = .data:0x009C6400; // type:object size:0x2C0 scope:global align:8
+int_sum_conga01_on_model = .data:0x009C66C0; // type:object size:0x88 scope:global align:8
+int_sum_conga01_onT_model = .data:0x009C6748; // type:object size:0x88 scope:global align:8
+int_sum_conpo01_pal = .data:0x009C67E0; // type:object size:0x20 scope:global align:32
+int_sum_conpo01_front_tex = .data:0x009C6800; // type:object size:0x300 scope:global align:32
+int_sum_conpo01_s_back_tex = .data:0x009C6B00; // type:object size:0x180 scope:global align:32
+int_sum_conpo01_s_front_tex = .data:0x009C6C80; // type:object size:0x200 scope:global align:32
+int_sum_conpo01_top_tex = .data:0x009C6E80; // type:object size:0x80 scope:global align:32
+int_sum_conpo01_back_tex = .data:0x009C6F00; // type:object size:0x100 scope:global align:32
+int_sum_conpo01_v = .data:0x009C7000; // type:object size:0x3C0 scope:global align:8
+int_sum_conpo01_on_model = .data:0x009C73C0; // type:object size:0xF8 scope:global align:8
+int_sum_conpo02_pal = .data:0x009C74C0; // type:object size:0x20 scope:global align:32
+int_sum_conpo02_glass_tex_rgb_ci4_pal = .data:0x009C74E0; // type:object size:0x20 scope:global align:32
+int_sum_conpo02_front_tex = .data:0x009C7500; // type:object size:0x400 scope:global align:32
+int_sum_conpo02_p_top_tex = .data:0x009C7900; // type:object size:0x80 scope:global align:32
+int_sum_conpo02_spika_tex = .data:0x009C7980; // type:object size:0x180 scope:global align:32
+int_sum_conpo02_s_side_tex = .data:0x009C7B00; // type:object size:0x180 scope:global align:32
+int_sum_conpo02_glass_tex_rgb_ci4 = .data:0x009C7C80; // type:object size:0x80 scope:global align:32
+int_sum_conpo02_v = .data:0x009C7D00; // type:object size:0x4F0 scope:global align:8
+int_sum_conpo02_on_model = .data:0x009C81F0; // type:object size:0xC8 scope:global align:8
+int_sum_conpo02_evwT_model = .data:0x009C82B8; // type:object size:0x60 scope:global align:8
+int_sum_conpo02_p_topT_model = .data:0x009C8318; // type:object size:0x60 scope:global align:8
+int_sum_cont_bed01_pal = .data:0x009C8380; // type:object size:0x20 scope:global align:32
+int_sum_cont_bed01_head_tex = .data:0x009C83A0; // type:object size:0x200 scope:global align:32
+int_sum_cont_bed01_headside_tex = .data:0x009C85A0; // type:object size:0x80 scope:global align:32
+int_sum_cont_bed01_top_tex = .data:0x009C8620; // type:object size:0x200 scope:global align:32
+int_sum_cont_bed01_topside_tex = .data:0x009C8820; // type:object size:0x100 scope:global align:32
+int_sum_cont_bed01_pillow_tex = .data:0x009C8920; // type:object size:0x80 scope:global align:32
+int_sum_cont_bed01_pillow2_tex = .data:0x009C89A0; // type:object size:0x80 scope:global align:32
+int_sum_cont_bed01_pillow3_tex = .data:0x009C8A20; // type:object size:0x80 scope:global align:32 data:string
+int_sum_cont_bed01_v = .data:0x009C8AA0; // type:object size:0x380 scope:global align:8
+int_sum_cont_bed01_on_model = .data:0x009C8E20; // type:object size:0xF0 scope:global align:8
+int_sum_cont_bed01_onT_model = .data:0x009C8F10; // type:object size:0x88 scope:global align:8
+int_sum_cont_cab01_pal = .data:0x009C8FA0; // type:object size:0x20 scope:global align:32
+int_sum_cont_cab01_back_tex = .data:0x009C8FC0; // type:object size:0x200 scope:global align:32
+int_sum_cont_cab01_front_tex = .data:0x009C91C0; // type:object size:0x200 scope:global align:32
+int_sum_cont_cab01_side_tex = .data:0x009C93C0; // type:object size:0x100 scope:global align:32
+int_sum_cont_cab01_top_tex = .data:0x009C94C0; // type:object size:0x80 scope:global align:32
+int_sum_cont_cab01_upside_tex = .data:0x009C9540; // type:object size:0x100 scope:global align:32
+int_sum_cont_cab01_bin_tex = .data:0x009C9640; // type:object size:0x80 scope:global align:32
+int_sum_cont_cab01_reddish_tex = .data:0x009C96C0; // type:object size:0x80 scope:global align:32
+int_sum_cont_cab01_dish_tex = .data:0x009C9740; // type:object size:0x80 scope:global align:32
+int_sum_cont_cab01_v = .data:0x009C97C0; // type:object size:0x470 scope:global align:8
+int_sum_cont_cab01_on_model = .data:0x009C9C30; // type:object size:0x68 scope:global align:8
+int_sum_cont_cab01_onT_model = .data:0x009C9C98; // type:object size:0x138 scope:global align:8
+int_sum_cont_chair01_pal = .data:0x009C9DE0; // type:object size:0x20 scope:global align:32
+int_sum_cont_chair01_board_tex = .data:0x009C9E00; // type:object size:0x200 scope:global align:32
+int_sum_cont_chair01_seat_tex = .data:0x009CA000; // type:object size:0x100 scope:global align:32
+int_sum_cont_chair01_foot_tex = .data:0x009CA100; // type:object size:0x180 scope:global align:32
+int_sum_cont_chair01_seatside_tex = .data:0x009CA280; // type:object size:0x100 scope:global align:32
+int_sum_cont_chair01_stand_tex = .data:0x009CA380; // type:object size:0x80 scope:global align:32
+int_sum_cont_chair01_v = .data:0x009CA400; // type:object size:0x420 scope:global align:8
+int_sum_cont_chair01_on_model = .data:0x009CA820; // type:object size:0x78 scope:global align:8
+int_sum_cont_chair01_onT_model = .data:0x009CA898; // type:object size:0xE0 scope:global align:8
+int_sum_cont_chest01_pal = .data:0x009CA980; // type:object size:0x20 scope:global align:32
+int_sum_cont_chest01_back_tex = .data:0x009CA9A0; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest01_front_tex = .data:0x009CABA0; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest01_side_tex = .data:0x009CADA0; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest01_top_tex = .data:0x009CAFA0; // type:object size:0x80 scope:global align:32
+int_sum_cont_chest01_shelf_tex = .data:0x009CB020; // type:object size:0x40 scope:global align:32
+int_sum_cont_chest01_book_tex = .data:0x009CB060; // type:object size:0x40 scope:global align:32
+int_sum_cont_chest01_book2_tex = .data:0x009CB0A0; // type:object size:0x40 scope:global align:32
+int_sum_cont_chest01_book2side_tex = .data:0x009CB0E0; // type:object size:0x40 scope:global align:32
+int_sum_cont_chest01_box_tex = .data:0x009CB120; // type:object size:0x80 scope:global align:32
+int_sum_cont_chest01_v = .data:0x009CB1A0; // type:object size:0x430 scope:global align:8
+int_sum_cont_chest01_on_model = .data:0x009CB5D0; // type:object size:0xE0 scope:global align:8
+int_sum_cont_chest01_onT_model = .data:0x009CB6B0; // type:object size:0xB0 scope:global align:8
+int_sum_cont_chest02_pal = .data:0x009CB760; // type:object size:0x20 scope:global align:32
+int_sum_cont_chest02_door_tex_txt = .data:0x009CB780; // type:object size:0x180 scope:global align:32
+int_sum_cont_chest02_top_tex_txt = .data:0x009CB900; // type:object size:0x80 scope:global align:32
+int_sum_cont_chest02_side_tex_txt = .data:0x009CB980; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest02_back_tex_txt = .data:0x009CBB80; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest02_front_tex_txt = .data:0x009CBD80; // type:object size:0x200 scope:global align:32
+int_sum_cont_chest02_v = .data:0x009CBF80; // type:object size:0x360 scope:global align:8
+int_sum_cont_chest02_doorL_model = .data:0x009CC2E0; // type:object size:0x88 scope:global align:8
+int_sum_cont_chest02_base_model = .data:0x009CC368; // type:object size:0xD8 scope:global align:8
+int_sum_cont_chest02_doorR_model = .data:0x009CC440; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_sum_cont_chest02_tbl = .data:0x009CC4C8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_cont_chest02_tbl = .data:0x009CC4D0; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_cont_chest02_tbl = .data:0x009CC4E8; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_cont_chest02_tbl = .data:0x009CC4F4; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_cont_chest02 = .data:0x009CC590; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_cont_chest02_tbl = .data:0x009CC5A4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_cont_chest02 = .data:0x009CC5E0; // type:object size:0x8 scope:global align:4
+int_sum_cont_chest03_pal = .data:0x009CC600; // type:object size:0x20 scope:global align:32
+int_sum_cont_chest03_hiki_tex_txt = .data:0x009CC620; // type:object size:0x100 scope:global align:32
+int_sum_cont_chest03_hikiside_tex_txt = .data:0x009CC720; // type:object size:0x80 scope:global align:32
+int_sum_cont_chest03_front_tex_txt = .data:0x009CC7A0; // type:object size:0x400 scope:global align:32
+int_sum_cont_chest03_side_tex_txt = .data:0x009CCBA0; // type:object size:0x100 scope:global align:32
+int_sum_cont_chest03_top_tex_txt = .data:0x009CCCA0; // type:object size:0x100 scope:global align:32
+int_sum_cont_chest03_v = .data:0x009CCDA0; // type:object size:0x280 scope:global align:8
+int_sum_cont_chest03_door_model = .data:0x009CD020; // type:object size:0x90 scope:global align:8
+int_sum_cont_chest03_base_model = .data:0x009CD0B0; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_sum_cont_chest03_tbl = .data:0x009CD150; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_cont_chest03_tbl = .data:0x009CD154; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_cont_chest03_tbl = .data:0x009CD168; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_cont_chest03_tbl = .data:0x009CD170; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_cont_chest03 = .data:0x009CD1DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_cont_chest03_tbl = .data:0x009CD1F0; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_cont_chest03 = .data:0x009CD214; // type:object size:0x8 scope:global align:4
+int_sum_cont_sofa01_pal = .data:0x009CD220; // type:object size:0x20 scope:global align:32
+int_sum_cont_sofa01_seat_tex = .data:0x009CD240; // type:object size:0x200 scope:global align:32
+int_sum_cont_sofa01_board_tex = .data:0x009CD440; // type:object size:0x200 scope:global align:32
+int_sum_cont_sofa01_outside_tex = .data:0x009CD640; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa01_topside_tex = .data:0x009CD740; // type:object size:0x40 scope:global align:32
+int_sum_cont_sofa01_frontside_tex = .data:0x009CD780; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa01_boardside_tex = .data:0x009CD880; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa01_seatside_tex = .data:0x009CD980; // type:object size:0x80 scope:global align:32
+int_sum_cont_sofa01_v = .data:0x009CDA00; // type:object size:0x470 scope:global align:8
+int_sum_cont_sofa01_on_model = .data:0x009CDE70; // type:object size:0xD0 scope:global align:8
+int_sum_cont_sofa01_onT_model = .data:0x009CDF40; // type:object size:0xC0 scope:global align:8
+int_sum_cont_sofa02_pal = .data:0x009CE000; // type:object size:0x20 scope:global align:32
+int_sum_cont_sofa02_seat_tex = .data:0x009CE020; // type:object size:0x200 scope:global align:32
+int_sum_cont_sofa02_board_tex = .data:0x009CE220; // type:object size:0x200 scope:global align:32
+int_sum_cont_sofa02_outside_tex = .data:0x009CE420; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa02_topside_tex = .data:0x009CE520; // type:object size:0x40 scope:global align:32
+int_sum_cont_sofa02_frontside_tex = .data:0x009CE560; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa02_boardside_tex = .data:0x009CE660; // type:object size:0x100 scope:global align:32
+int_sum_cont_sofa02_seatside_tex = .data:0x009CE760; // type:object size:0x80 scope:global align:32
+int_sum_cont_sofa02_v = .data:0x009CE7E0; // type:object size:0x470 scope:global align:8
+int_sum_cont_sofa02_on_model = .data:0x009CEC50; // type:object size:0xD0 scope:global align:8
+int_sum_cont_sofa02_onT_model = .data:0x009CED20; // type:object size:0xC0 scope:global align:8
+int_sum_cont_table01_pal = .data:0x009CEDE0; // type:object size:0x20 scope:local align:32
+int_sum_cont_table01_top_tex = .data:0x009CEE00; // type:object size:0x100 scope:global align:32
+int_sum_cont_table01_topside_tex = .data:0x009CEF00; // type:object size:0x80 scope:local align:32
+int_sum_cont_table01_side_tex = .data:0x009CEF80; // type:object size:0x100 scope:global align:32
+int_sum_cont_table01_foot_tex = .data:0x009CF080; // type:object size:0x200 scope:global align:32
+int_sum_cont_table01_shelf_tex = .data:0x009CF280; // type:object size:0x100 scope:global align:32
+int_sum_cont_table01_v = .data:0x009CF380; // type:object size:0x280 scope:global align:8
+int_sum_cont_table01_on_model = .data:0x009CF600; // type:object size:0x98 scope:global align:8
+int_sum_cont_table01_onT_model = .data:0x009CF698; // type:object size:0x80 scope:global align:8
+int_sum_cont_table02_pal = .data:0x009CF720; // type:object size:0x20 scope:global align:32
+int_sum_cont_table01_pal = .data:0x009CF740; // type:object size:0x20 scope:local align:32
+int_sum_cont_table02_top_tex = .data:0x009CF760; // type:object size:0x200 scope:global align:32
+int_sum_cont_table01_topside_tex = .data:0x009CF960; // type:object size:0x80 scope:local align:32
+int_sum_cont_table02_side_tex = .data:0x009CF9E0; // type:object size:0x80 scope:global align:32
+int_sum_cont_table02_foot_tex = .data:0x009CFA60; // type:object size:0x200 scope:global align:32
+int_sum_cont_table02_v = .data:0x009CFC60; // type:object size:0x380 scope:global align:8
+int_sum_cont_table02_on_model = .data:0x009CFFE0; // type:object size:0xC0 scope:global align:8
+int_sum_cont_table02_onT_model = .data:0x009D00A0; // type:object size:0x68 scope:global align:8
+int_sum_cupboard01_pal = .data:0x009D0120; // type:object size:0x20 scope:global align:32
+int_sum_cupboard01_mirror_tex_rgb_ci4_pal = .data:0x009D0140; // type:object size:0x20 scope:global align:32
+int_sum_cupboard01_front_tex = .data:0x009D0160; // type:object size:0x200 scope:global align:32
+int_sum_cupboard01_side_tex = .data:0x009D0360; // type:object size:0x200 scope:global align:32
+int_sum_cupboard01_top_tex = .data:0x009D0560; // type:object size:0x80 scope:global align:32
+int_sum_cupboard01_cup_tex = .data:0x009D05E0; // type:object size:0x180 scope:global align:32
+int_sum_cupboard01_grass_tex = .data:0x009D0760; // type:object size:0x180 scope:global align:32
+int_sum_cupboard01_mirror_tex = .data:0x009D08E0; // type:object size:0x80 scope:global align:32
+int_sum_cupboard01_v = .data:0x009D0960; // type:object size:0x280 scope:global align:8
+int_sum_cupboard01_on_model = .data:0x009D0BE0; // type:object size:0x60 scope:global align:8
+int_sum_cupboard01_onT_model = .data:0x009D0C40; // type:object size:0xC8 scope:global align:8
+int_sum_cupboard01_envT_model = .data:0x009D0D08; // type:object size:0x60 scope:global align:8
+int_sum_danna_pal = .data:0x009D0D80; // type:object size:0x20 scope:global align:32
+int_sum_danna_hand_pic_ci4_pal = .data:0x009D0DA0; // type:object size:0x20 scope:global align:32
+int_sum_danna_base_txt = .data:0x009D0DC0; // type:object size:0x80 scope:global align:32
+int_sum_danna_top_txt = .data:0x009D0E40; // type:object size:0x200 scope:global align:32
+int_sum_danna_side_txt = .data:0x009D1040; // type:object size:0x200 scope:global align:32
+int_sum_danna_body_txt = .data:0x009D1240; // type:object size:0x300 scope:global align:32
+int_sum_danna_hand_txt = .data:0x009D1540; // type:object size:0x80 scope:global align:32
+int_sum_danna_v = .data:0x009D15C0; // type:object size:0x420 scope:global align:8
+int_sum_danna_side_model = .data:0x009D19E0; // type:object size:0x68 scope:global align:8
+int_sum_danna_komado_model = .data:0x009D1A48; // type:object size:0x58 scope:global align:8
+int_sum_danna_glass_model = .data:0x009D1AA0; // type:object size:0x68 scope:global align:8
+int_sum_danna_base_model = .data:0x009D1B08; // type:object size:0x98 scope:global align:8
+int_sum_danna_body_model = .data:0x009D1BA0; // type:object size:0x68 scope:global align:8
+int_sum_danna_feeler_model = .data:0x009D1C08; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_danna_tbl = .data:0x009D1C60; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_danna_tbl = .data:0x009D1C68; // type:object size:0xE scope:global align:4
+cKF_c_int_sum_danna_tbl = .data:0x009D1C78; // type:object size:0x28 scope:global align:4
+cKF_ds_int_sum_danna_tbl = .data:0x009D1CA0; // type:object size:0x114 scope:global align:4
+cKF_ba_r_int_sum_danna = .data:0x009D1DB4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_danna_tbl = .data:0x009D1DC8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_danna = .data:0x009D1E28; // type:object size:0x8 scope:global align:4
+int_sum_demekin_pal = .data:0x009D1E40; // type:object size:0x20 scope:local align:32
+int_sum_demekin_glass_pic_ci4_pal = .data:0x009D1E60; // type:object size:0x20 scope:global align:32
+int_sum_demekin_front_pic_ci4_pal = .data:0x009D1E80; // type:object size:0x20 scope:global align:32
+int_sum_demekin_body_txt = .data:0x009D1EA0; // type:object size:0x200 scope:global align:32
+int_sum_demekin_kuchi_txt = .data:0x009D20A0; // type:object size:0x80 scope:global align:32
+int_sum_demekin_etc_txt = .data:0x009D2120; // type:object size:0x80 scope:global align:32
+int_sum_demekin_glass_txt = .data:0x009D21A0; // type:object size:0x80 scope:global align:32
+int_sum_demekin_front_txt = .data:0x009D2220; // type:object size:0x200 scope:global align:32
+int_sum_demekin_v = .data:0x009D2420; // type:object size:0x320 scope:global align:8
+int_sum_demekin_sakana_model = .data:0x009D2740; // type:object size:0x70 scope:global align:8
+int_sum_demekin_glass_model = .data:0x009D27B0; // type:object size:0x68 scope:global align:8
+int_sum_demekin_body_model = .data:0x009D2818; // type:object size:0x68 scope:global align:8
+int_sum_demekin_base_model = .data:0x009D2880; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sum_demekin_tbl = .data:0x009D28F8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_demekin_tbl = .data:0x009D2900; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_demekin_tbl = .data:0x009D2914; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_demekin_tbl = .data:0x009D2928; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_demekin = .data:0x009D29C0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_demekin_tbl = .data:0x009D29D4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_demekin = .data:0x009D2A10; // type:object size:0x8 scope:global align:4
+int_sum_desk01_pal = .data:0x009D2A20; // type:object size:0x20 scope:global align:32
+int_sum_desk01_side = .data:0x009D2A40; // type:object size:0x100 scope:global align:32
+int_sum_desk01_top = .data:0x009D2B40; // type:object size:0x100 scope:global align:32
+int_sum_desk01_topside = .data:0x009D2C40; // type:object size:0x100 scope:global align:32
+int_sum_desk01_drawer = .data:0x009D2D40; // type:object size:0x100 scope:global align:32
+int_sum_desk01_back = .data:0x009D2E40; // type:object size:0x200 scope:global align:32
+int_sum_desk01_front = .data:0x009D3040; // type:object size:0x100 scope:global align:32
+int_sum_desk01_light = .data:0x009D3140; // type:object size:0x80 scope:global align:32
+int_sum_desk01_mini = .data:0x009D31C0; // type:object size:0x40 scope:global align:32
+int_sum_desk01_book = .data:0x009D3200; // type:object size:0x40 scope:global align:32
+int_sum_desk01_v = .data:0x009D3240; // type:object size:0x4A0 scope:global align:8
+int_sum_desk01_on_model = .data:0x009D36E0; // type:object size:0xE0 scope:global align:8
+int_sum_desk01_onT_model = .data:0x009D37C0; // type:object size:0xF0 scope:global align:8
+int_sum_dojyo_pal = .data:0x009D38C0; // type:object size:0x20 scope:local align:32
+int_sum_dojyo_glass_pic_ci4_pal = .data:0x009D38E0; // type:object size:0x20 scope:global align:32
+int_sum_dojyo_body_txt = .data:0x009D3900; // type:object size:0x100 scope:global align:32
+int_sum_dojyo_side_txt = .data:0x009D3A00; // type:object size:0x200 scope:global align:32
+int_sum_dojyo_base_txt = .data:0x009D3C00; // type:object size:0x80 scope:global align:32
+int_sum_dojyo_top_txt = .data:0x009D3C80; // type:object size:0x100 scope:global align:32
+int_sum_dojyo_glass_txt = .data:0x009D3D80; // type:object size:0x100 scope:global align:32
+int_sum_dojyo_v = .data:0x009D3E80; // type:object size:0x2D0 scope:global align:8
+int_sum_dojyo_sakana_model = .data:0x009D4150; // type:object size:0x70 scope:global align:8
+int_sum_dojyo_top_model = .data:0x009D41C0; // type:object size:0x58 scope:global align:8
+int_sum_dojyo_evw_model = .data:0x009D4218; // type:object size:0x68 scope:global align:8
+int_sum_dojyo_base_model = .data:0x009D4280; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_dojyo_tbl = .data:0x009D4310; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_dojyo_tbl = .data:0x009D4318; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_dojyo_tbl = .data:0x009D432C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_dojyo_tbl = .data:0x009D4340; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_int_sum_dojyo = .data:0x009D43E4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_dojyo_tbl = .data:0x009D43F8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_dojyo = .data:0x009D4434; // type:object size:0x8 scope:global align:4
+int_sum_doll01_pal = .data:0x009D4440; // type:object size:0x20 scope:global align:32
+int_sum_doll01_byubu_txt = .data:0x009D4460; // type:object size:0x80 scope:global align:32
+int_sum_doll01_hinadan_txt = .data:0x009D44E0; // type:object size:0x180 scope:global align:32
+int_sum_doll01_hina_txt = .data:0x009D4660; // type:object size:0x100 scope:global align:32
+int_sum_doll01_dairi_txt = .data:0x009D4760; // type:object size:0x100 scope:global align:32
+int_sum_doll01_kanjyo_txt = .data:0x009D4860; // type:object size:0x100 scope:global align:32
+int_sum_doll01_gonin_txt = .data:0x009D4960; // type:object size:0x100 scope:global align:32
+int_sum_doll01_bonbori_txt = .data:0x009D4A60; // type:object size:0x100 scope:global align:32
+int_sum_doll01_side_txt = .data:0x009D4B60; // type:object size:0x100 scope:global align:32
+int_sum_doll01_v = .data:0x009D4C60; // type:object size:0x580 scope:global align:8
+int_sum_doll01_on_model = .data:0x009D51E0; // type:object size:0x68 scope:global align:8
+int_sum_doll01_onT_model = .data:0x009D5248; // type:object size:0x118 scope:global align:8
+int_sum_doll01_offT_model = .data:0x009D5360; // type:object size:0x60 scope:global align:8
+int_sum_doll02_pal = .data:0x009D53C0; // type:object size:0x20 scope:global align:32
+int_sum_doll02_top_txt_txt = .data:0x009D53E0; // type:object size:0x100 scope:global align:32
+int_sum_doll02_face_txt_txt = .data:0x009D54E0; // type:object size:0x200 scope:global align:32
+int_sum_doll02_back_txt_txt = .data:0x009D56E0; // type:object size:0x100 scope:global align:32
+int_sum_doll02_ear_txt_txt = .data:0x009D57E0; // type:object size:0x80 scope:global align:32
+int_sum_doll02_hand_txt_txt = .data:0x009D5860; // type:object size:0x100 scope:global align:32
+int_sum_doll02_footdown_txt_txt = .data:0x009D5960; // type:object size:0x80 scope:global align:32
+int_sum_doll02_foot_txt_txt = .data:0x009D59E0; // type:object size:0x100 scope:global align:32
+int_sum_doll02_v = .data:0x009D5AE0; // type:object size:0x4A0 scope:global align:8
+int_sum_doll02_on_model = .data:0x009D5F80; // type:object size:0x1D8 scope:global align:8
+int_sum_doll03_pal = .data:0x009D6160; // type:object size:0x20 scope:global align:32
+int_sum_doll03_top_txt_txt = .data:0x009D6180; // type:object size:0x100 scope:global align:32
+int_sum_doll03_face_txt_txt = .data:0x009D6280; // type:object size:0x200 scope:global align:32
+int_sum_doll03_back_txt_txt = .data:0x009D6480; // type:object size:0x100 scope:global align:32
+int_sum_doll03_ear_txt_txt = .data:0x009D6580; // type:object size:0x80 scope:global align:32
+int_sum_doll03_hand_txt_txt = .data:0x009D6600; // type:object size:0x100 scope:global align:32
+int_sum_doll03_footdown_txt_txt = .data:0x009D6700; // type:object size:0x80 scope:global align:32
+int_sum_doll03_foot_txt_txt = .data:0x009D6780; // type:object size:0x100 scope:global align:32
+int_sum_doll03_v = .data:0x009D6880; // type:object size:0x4A0 scope:global align:8
+int_sum_doll03_on_model = .data:0x009D6D20; // type:object size:0x1D8 scope:global align:8
+int_sum_doll04_pal = .data:0x009D6F00; // type:object size:0x20 scope:global align:32
+int_sum_doll04_top_txt_txt = .data:0x009D6F20; // type:object size:0x100 scope:global align:32
+int_sum_doll04_face_txt_txt = .data:0x009D7020; // type:object size:0x200 scope:global align:32
+int_sum_doll04_back_txt_txt = .data:0x009D7220; // type:object size:0x100 scope:global align:32
+int_sum_doll04_ear_txt_txt = .data:0x009D7320; // type:object size:0x80 scope:global align:32
+int_sum_doll04_hand_txt_txt = .data:0x009D73A0; // type:object size:0x100 scope:global align:32
+int_sum_doll04_footdown_txt_txt = .data:0x009D74A0; // type:object size:0x80 scope:global align:32
+int_sum_doll04_foot_txt_txt = .data:0x009D7520; // type:object size:0x100 scope:global align:32
+int_sum_doll04_v = .data:0x009D7620; // type:object size:0x4A0 scope:global align:8
+int_sum_doll04_on_model = .data:0x009D7AC0; // type:object size:0x1D8 scope:global align:8
+int_sum_doll05_pal = .data:0x009D7CA0; // type:object size:0x20 scope:global align:32
+int_sum_doll05_face_txt_txt = .data:0x009D7CC0; // type:object size:0x400 scope:global align:32
+int_sum_doll05_front_txt_txt = .data:0x009D80C0; // type:object size:0x300 scope:global align:32
+int_sum_doll05_v = .data:0x009D83C0; // type:object size:0x210 scope:global align:8
+int_sum_doll05_on_model = .data:0x009D85D0; // type:object size:0xD8 scope:global align:8
+int_sum_doll06_pal = .data:0x009D86C0; // type:object size:0x20 scope:global align:32
+int_sum_doll06_face_txt_txt = .data:0x009D86E0; // type:object size:0x400 scope:global align:32
+int_sum_doll06_front_txt_txt = .data:0x009D8AE0; // type:object size:0x300 scope:global align:32
+int_sum_doll06_v = .data:0x009D8DE0; // type:object size:0x210 scope:global align:8
+int_sum_doll06_on_model = .data:0x009D8FF0; // type:object size:0xD8 scope:global align:8
+int_sum_doll07_pal = .data:0x009D90E0; // type:object size:0x20 scope:global align:32
+int_sum_doll07_face_txt_txt = .data:0x009D9100; // type:object size:0x400 scope:global align:32
+int_sum_doll07_front_txt_txt = .data:0x009D9500; // type:object size:0x300 scope:global align:32
+int_sum_doll07_v = .data:0x009D9800; // type:object size:0x210 scope:global align:8
+int_sum_doll07_on_model = .data:0x009D9A10; // type:object size:0xD8 scope:global align:8
+int_sum_doll09_pal = .data:0x009D9B00; // type:object size:0x20 scope:local align:32
+int_sum_doll08_face_txt_txt = .data:0x009D9B20; // type:object size:0x400 scope:global align:32
+int_sum_doll08_front_txt_txt = .data:0x009D9F20; // type:object size:0x300 scope:global align:32
+int_sum_doll08_v = .data:0x009DA220; // type:object size:0x210 scope:global align:8
+int_sum_doll08_on_model = .data:0x009DA430; // type:object size:0xD8 scope:global align:8
+int_sum_doll09_pal = .data:0x009DA520; // type:object size:0x20 scope:local align:32
+int_sum_doll09_face_txt_txt = .data:0x009DA540; // type:object size:0x400 scope:global align:32
+int_sum_doll09_front_txt_txt = .data:0x009DA940; // type:object size:0x300 scope:global align:32
+int_sum_doll09_v = .data:0x009DAC40; // type:object size:0x210 scope:global align:8
+int_sum_doll09_on_model = .data:0x009DAE50; // type:object size:0xD8 scope:global align:8
+int_sum_doll10_pal = .data:0x009DAF40; // type:object size:0x20 scope:global align:32
+int_sum_doll10_face_txt_txt = .data:0x009DAF60; // type:object size:0x400 scope:global align:32
+int_sum_doll10_front_txt_txt = .data:0x009DB360; // type:object size:0x300 scope:global align:32
+int_sum_doll10_v = .data:0x009DB660; // type:object size:0x210 scope:global align:8
+int_sum_doll10_on_model = .data:0x009DB870; // type:object size:0xD8 scope:global align:8
+int_sum_doll11_pal = .data:0x009DB960; // type:object size:0x20 scope:global align:32
+int_sum_doll11_face_tex_txt = .data:0x009DB980; // type:object size:0x400 scope:global align:32
+int_sum_doll11_front_tex_txt = .data:0x009DBD80; // type:object size:0x300 scope:global align:32
+int_sum_doll11_v = .data:0x009DC080; // type:object size:0x210 scope:global align:8
+int_sum_doll11_on_model = .data:0x009DC290; // type:object size:0xD8 scope:global align:8
+int_sum_donko_pal = .data:0x009DC380; // type:object size:0x20 scope:local align:32
+int_sum_donko_glass_pic_ci4_pal = .data:0x009DC3A0; // type:object size:0x20 scope:global align:32
+int_sum_donko_body_txt = .data:0x009DC3C0; // type:object size:0x200 scope:global align:32
+int_sum_donko_side_txt = .data:0x009DC5C0; // type:object size:0x200 scope:global align:32
+int_sum_donko_base_txt = .data:0x009DC7C0; // type:object size:0x80 scope:global align:32
+int_sum_donko_etc_txt = .data:0x009DC840; // type:object size:0x80 scope:global align:32
+int_sum_donko_top_txt = .data:0x009DC8C0; // type:object size:0x100 scope:global align:32
+int_sum_donko_glass_txt = .data:0x009DC9C0; // type:object size:0x100 scope:global align:32
+int_sum_donko_v = .data:0x009DCAC0; // type:object size:0x370 scope:global align:8
+int_sum_donko_sakana_model = .data:0x009DCE30; // type:object size:0x70 scope:global align:8
+int_sum_donko_top_model = .data:0x009DCEA0; // type:object size:0x58 scope:global align:8
+int_sum_donko_evw_model = .data:0x009DCEF8; // type:object size:0x68 scope:global align:8
+int_sum_donko_base_model = .data:0x009DCF60; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_donko_tbl = .data:0x009DD018; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_donko_tbl = .data:0x009DD020; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_donko_tbl = .data:0x009DD034; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_donko_tbl = .data:0x009DD048; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_donko = .data:0x009DD0E0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_donko_tbl = .data:0x009DD0F4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_donko = .data:0x009DD130; // type:object size:0x8 scope:global align:4
+int_sum_fruitbed01_pal = .data:0x009DD140; // type:object size:0x20 scope:global align:32
+int_sum_fruitbed01_board_tex = .data:0x009DD160; // type:object size:0x300 scope:global align:32
+int_sum_fruitbed01_side_tex = .data:0x009DD460; // type:object size:0x300 scope:global align:32
+int_sum_fruitbed01_back_tex = .data:0x009DD760; // type:object size:0x100 scope:global align:32
+int_sum_fruitbed01_v = .data:0x009DD860; // type:object size:0x220 scope:global align:8
+int_sum_fruitbed01_on_model = .data:0x009DDA80; // type:object size:0xA0 scope:global align:8
+int_sum_fruitbed01_onT_model = .data:0x009DDB20; // type:object size:0x60 scope:global align:8
+int_sum_fruitchair01_pal = .data:0x009DDB80; // type:object size:0x20 scope:global align:32
+int_sum_fruitchair01_leaf_tex_txt = .data:0x009DDBA0; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair01_side_tex_txt = .data:0x009DDC20; // type:object size:0x300 scope:global align:32
+int_sum_fruitchair01_seat_tex_txt = .data:0x009DDF20; // type:object size:0x200 scope:global align:32
+int_sum_fruitchair01_top_tex_txt = .data:0x009DE120; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair01_v = .data:0x009DE1A0; // type:object size:0x2A0 scope:global align:8
+int_sum_fruitchair01_on_model = .data:0x009DE440; // type:object size:0x130 scope:global align:8
+int_sum_fruitchair02_pal = .data:0x009DE580; // type:object size:0x20 scope:global align:32
+int_sum_fruitchair02_leaf_tex_txt = .data:0x009DE5A0; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair02_side_tex_txt = .data:0x009DE620; // type:object size:0x300 scope:global align:32
+int_sum_fruitchair02_seat_tex_txt = .data:0x009DE920; // type:object size:0x200 scope:global align:32
+int_sum_fruitchair02_top_tex_txt = .data:0x009DEB20; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair02_v = .data:0x009DEBA0; // type:object size:0x2A0 scope:global align:8
+int_sum_fruitchair02_on_model = .data:0x009DEE40; // type:object size:0x130 scope:global align:8
+int_sum_fruitchair03_pal = .data:0x009DEF80; // type:object size:0x20 scope:global align:32
+int_sum_fruitchair03_turu_tex_txt = .data:0x009DEFA0; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair03_back2_tex_txt = .data:0x009DF020; // type:object size:0x100 scope:global align:32
+int_sum_fruitchair03_back1_tex_txt = .data:0x009DF120; // type:object size:0x100 scope:global align:32 data:string
+int_sum_fruitchair03_seat_tex_txt = .data:0x009DF220; // type:object size:0x200 scope:global align:32
+int_sum_fruitchair03_v = .data:0x009DF420; // type:object size:0x290 scope:global align:8
+int_sum_fruitchair03_on_model = .data:0x009DF6B0; // type:object size:0x110 scope:global align:8
+int_sum_fruitchair04_pal = .data:0x009DF7C0; // type:object size:0x20 scope:global align:32
+int_sum_fruitchair04_turu_tex_txt = .data:0x009DF7E0; // type:object size:0x80 scope:global align:32
+int_sum_fruitchair04_back2_tex_txt = .data:0x009DF860; // type:object size:0x100 scope:global align:32
+int_sum_fruitchair04_back1_tex_txt = .data:0x009DF960; // type:object size:0x100 scope:global align:32 data:string
+int_sum_fruitchair04_seat_tex_txt = .data:0x009DFA60; // type:object size:0x200 scope:global align:32
+int_sum_fruitchair04_v = .data:0x009DFC60; // type:object size:0x290 scope:global align:8
+int_sum_fruitchair04_on_model = .data:0x009DFEF0; // type:object size:0x110 scope:global align:8
+int_sum_fruitchest01_pal = .data:0x009E0000; // type:object size:0x20 scope:global align:32
+int_sum_fruitchest01_hiki_tex_txt = .data:0x009E0020; // type:object size:0x80 scope:global align:32
+int_sum_fruitchest01_into_tex_txt = .data:0x009E00A0; // type:object size:0x100 scope:global align:32
+int_sum_fruitchest01_kuki_tex_txt = .data:0x009E01A0; // type:object size:0x80 scope:global align:32
+int_sum_fruitchest01_front_tex_txt = .data:0x009E0220; // type:object size:0x300 scope:global align:32
+int_sum_fruitchest01_side_tex_txt = .data:0x009E0520; // type:object size:0x200 scope:global align:32
+int_sum_fruitchest01_v = .data:0x009E0720; // type:object size:0x3E0 scope:global align:8
+int_sum_fruitchest01_door_model = .data:0x009E0B00; // type:object size:0xA0 scope:global align:8
+int_sum_fruitchest01_base_model = .data:0x009E0BA0; // type:object size:0xD8 scope:global align:8
+cKF_ckcb_r_int_sum_fruitchest01_tbl = .data:0x009E0C78; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_fruitchest01_tbl = .data:0x009E0C7C; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_fruitchest01_tbl = .data:0x009E0C90; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_fruitchest01_tbl = .data:0x009E0C98; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_fruitchest01 = .data:0x009E0D04; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_fruitchest01_tbl = .data:0x009E0D18; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_fruitchest01 = .data:0x009E0D3C; // type:object size:0x8 scope:global align:4
+int_sum_fruitchest03_pal = .data:0x009E0D60; // type:object size:0x20 scope:global align:32
+int_sum_fruitchest03_door_tex_txt = .data:0x009E0D80; // type:object size:0x180 scope:global align:32
+int_sum_fruitchest03_d_side_tex_txt = .data:0x009E0F00; // type:object size:0x80 scope:global align:32
+int_sum_fruitchest03_side_tex_txt = .data:0x009E0F80; // type:object size:0x200 scope:global align:32
+int_sum_fruitchest03_front_tex_txt = .data:0x009E1180; // type:object size:0x300 scope:global align:32
+int_sum_fruitchest03_kuki_tex_txt = .data:0x009E1480; // type:object size:0x80 scope:global align:32
+int_sum_fruitchest03_into_tex_txt = .data:0x009E1500; // type:object size:0x80 scope:global align:32
+int_sum_fruitchest03_v = .data:0x009E1580; // type:object size:0x400 scope:global align:8
+int_sum_fruitchest03_doorL_model = .data:0x009E1980; // type:object size:0x80 scope:global align:8
+int_sum_fruitchest03_base_model = .data:0x009E1A00; // type:object size:0x118 scope:global align:8
+int_sum_fruitchest03_doorR_model = .data:0x009E1B18; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_sum_fruitchest03_tbl = .data:0x009E1B98; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_fruitchest03_tbl = .data:0x009E1BA0; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_fruitchest03_tbl = .data:0x009E1BB8; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_fruitchest03_tbl = .data:0x009E1BC4; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_fruitchest03 = .data:0x009E1C60; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_fruitchest03_tbl = .data:0x009E1C74; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_fruitchest03 = .data:0x009E1CB0; // type:object size:0x8 scope:global align:4
+int_sum_fruitclk_pal = .data:0x009E1CC0; // type:object size:0x20 scope:global align:32
+int_sum_fruitclk_hari_tex_txt = .data:0x009E1CE0; // type:object size:0x100 scope:global align:32
+int_sum_fruitclk_body_tex_txt = .data:0x009E1DE0; // type:object size:0x200 scope:global align:32
+int_sum_fruitclk_front_tex_txt = .data:0x009E1FE0; // type:object size:0x300 scope:global align:32
+int_sum_fruitclk_antena_tex_txt = .data:0x009E22E0; // type:object size:0x80 scope:global align:32
+int_sum_fruitclk_ha_tex_txt = .data:0x009E2360; // type:object size:0x80 scope:global align:32
+int_sum_fruitclk_v = .data:0x009E23E0; // type:object size:0x270 scope:global align:8
+int_sum_fruitclk_long_model = .data:0x009E2650; // type:object size:0x58 scope:global align:8
+int_sum_fruitclk_base_model = .data:0x009E26A8; // type:object size:0xF0 scope:global align:8
+int_sum_fruitclk_short_model = .data:0x009E2798; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_fruitclk_tbl = .data:0x009E27F0; // type:object size:0x5 scope:global align:4
+cKF_c_int_sum_fruitclk_tbl = .data:0x009E27F8; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_sum_fruitclk = .data:0x009E281C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_fruitclk_tbl = .data:0x009E2830; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_fruitclk = .data:0x009E286C; // type:object size:0x8 scope:global align:4
+int_sum_fruittable01_pal = .data:0x009E2880; // type:object size:0x20 scope:global align:32
+int_sum_fruittable01_side_tex_txt = .data:0x009E28A0; // type:object size:0x300 scope:global align:32
+int_sum_fruittable01_top_tex_txt = .data:0x009E2BA0; // type:object size:0x200 scope:global align:32
+int_sum_fruittable01_douwnside_tex_txt = .data:0x009E2DA0; // type:object size:0x100 scope:global align:32
+int_sum_fruittable01_douwntop_tex_txt = .data:0x009E2EA0; // type:object size:0x80 scope:global align:32
+int_sum_fruittable01_v = .data:0x009E2F20; // type:object size:0x2D0 scope:global align:8
+int_sum_fruittable01_on_model = .data:0x009E31F0; // type:object size:0x118 scope:global align:8
+int_sum_fruittable02_pal = .data:0x009E3320; // type:object size:0x20 scope:global align:32
+int_sum_fruittable02_side_tex_txt = .data:0x009E3340; // type:object size:0x300 scope:global align:32
+int_sum_fruittable02_top_tex_txt = .data:0x009E3640; // type:object size:0x200 scope:global align:32
+int_sum_fruittable02_douwnside_tex_txt = .data:0x009E3840; // type:object size:0x100 scope:global align:32
+int_sum_fruittable02_douwntop_tex_txt = .data:0x009E3940; // type:object size:0x80 scope:global align:32
+int_sum_fruittable02_v = .data:0x009E39C0; // type:object size:0x290 scope:global align:8
+int_sum_fruittable02_on_model = .data:0x009E3C50; // type:object size:0x110 scope:global align:8
+int_sum_fruittable03_pal = .data:0x009E3D60; // type:object size:0x20 scope:global align:32
+int_sum_fruittable03_top_tex_txt = .data:0x009E3D80; // type:object size:0x200 scope:global align:32
+int_sum_fruittable03_side_tex_txt = .data:0x009E3F80; // type:object size:0x200 scope:global align:32
+int_sum_fruittable03_v = .data:0x009E4180; // type:object size:0x230 scope:global align:8
+int_sum_fruittable03_on_model = .data:0x009E43B0; // type:object size:0xD0 scope:global align:8
+int_sum_fruittv01_pal = .data:0x009E4480; // type:object size:0x20 scope:global align:32
+int_sum_fruittv01_antena_tex_txt = .data:0x009E44A0; // type:object size:0x100 scope:global align:32
+int_sum_fruittv01_ha_tex_txt = .data:0x009E45A0; // type:object size:0x80 scope:global align:32
+int_sum_fruittv01_foot_tex_txt = .data:0x009E4620; // type:object size:0x80 scope:global align:32
+int_sum_fruittv01_front_tex_txt = .data:0x009E46A0; // type:object size:0x300 scope:global align:32
+int_sum_fruittv01_body_tex_txt = .data:0x009E49A0; // type:object size:0x200 scope:global align:32
+int_sum_fruittv01_front1_TA_tex_txt = .data:0x009E4BA0; // type:object size:0x100 scope:global align:32
+int_sum_fruittv01_front2_TA_tex_txt = .data:0x009E4CA0; // type:object size:0x100 scope:global align:32
+int_sum_fruittv01_front3_TA_tex_txt = .data:0x009E4DA0; // type:object size:0x100 scope:global align:32
+int_sum_fruittv01_front4_TA_tex_txt = .data:0x009E4EA0; // type:object size:0x100 scope:global align:32
+int_sum_fruittv01_v = .data:0x009E4FA0; // type:object size:0x340 scope:global align:8
+int_sum_fruittv01_on_model = .data:0x009E52E0; // type:object size:0x110 scope:global align:8
+int_sum_fruittv01_off_model = .data:0x009E53F0; // type:object size:0x58 scope:global align:8
+int_sum_funa_pal = .data:0x009E5460; // type:object size:0x20 scope:local align:32
+int_sum_funa_glass_rgb_ci4_pal = .data:0x009E5480; // type:object size:0x20 scope:global align:32
+int_sum_funa_body_txt = .data:0x009E54A0; // type:object size:0x200 scope:global align:32
+int_sum_funa_top_txt = .data:0x009E56A0; // type:object size:0x100 scope:global align:32
+int_sum_funa_side_txt = .data:0x009E57A0; // type:object size:0x200 scope:global align:32
+int_sum_funa_base_txt = .data:0x009E59A0; // type:object size:0x80 scope:global align:32
+int_sum_funa_glass_txt = .data:0x009E5A20; // type:object size:0x200 scope:global align:32
+int_sum_funa_v = .data:0x009E5C20; // type:object size:0x350 scope:global align:8
+int_sum_funa_sakana_model = .data:0x009E5F70; // type:object size:0x80 scope:global align:8
+int_sum_funa_top_model = .data:0x009E5FF0; // type:object size:0x58 scope:global align:8
+int_sum_funa_evw_model = .data:0x009E6048; // type:object size:0x68 scope:global align:8
+int_sum_funa_base_model = .data:0x009E60B0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_funa_tbl = .data:0x009E6140; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_funa_tbl = .data:0x009E6148; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_funa_tbl = .data:0x009E615C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_funa_tbl = .data:0x009E6170; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_funa = .data:0x009E6208; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_funa_tbl = .data:0x009E621C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_funa = .data:0x009E6258; // type:object size:0x8 scope:global align:4
+int_sum_genji_pal = .data:0x009E6260; // type:object size:0x20 scope:global align:32
+int_sum_genji_hand_pic_ci4_pal = .data:0x009E6280; // type:object size:0x20 scope:global align:32
+int_sum_genji_body_txt = .data:0x009E62A0; // type:object size:0x200 scope:global align:32
+int_sum_genji_base_txt = .data:0x009E64A0; // type:object size:0x80 scope:global align:32
+int_sum_genji_top_txt = .data:0x009E6520; // type:object size:0x200 scope:global align:32
+int_sum_genji_side_txt = .data:0x009E6720; // type:object size:0x200 scope:global align:32
+int_sum_genji_hand_txt = .data:0x009E6920; // type:object size:0x100 scope:global align:32
+int_sum_genji_v = .data:0x009E6A20; // type:object size:0x3C0 scope:global align:8
+int_sum_genji_side_model = .data:0x009E6DE0; // type:object size:0x68 scope:global align:8
+int_sum_genji_komado_model = .data:0x009E6E48; // type:object size:0x58 scope:global align:8
+int_sum_genji_glass_model = .data:0x009E6EA0; // type:object size:0x68 scope:global align:8
+int_sum_genji_base_model = .data:0x009E6F08; // type:object size:0x98 scope:global align:8
+int_sum_genji_off_model = .data:0x009E6FA0; // type:object size:0x60 scope:global align:8
+int_sum_genji_body_model = .data:0x009E7000; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_genji_tbl = .data:0x009E7060; // type:object size:0x7 scope:global align:4
+cKF_kn_int_sum_genji_tbl = .data:0x009E7068; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_genji_tbl = .data:0x009E7074; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_genji_tbl = .data:0x009E7098; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_genji = .data:0x009E7128; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_genji_tbl = .data:0x009E713C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_sum_genji = .data:0x009E7190; // type:object size:0x8 scope:global align:4
+int_sum_gill_pal = .data:0x009E71A0; // type:object size:0x20 scope:local align:32
+int_sum_gill_glass_pic_ci4_pal = .data:0x009E71C0; // type:object size:0x20 scope:global align:32
+int_sum_gill_body_txt = .data:0x009E71E0; // type:object size:0x200 scope:global align:32
+int_sum_gill_side_txt = .data:0x009E73E0; // type:object size:0x200 scope:global align:32
+int_sum_gill_base_txt = .data:0x009E75E0; // type:object size:0x80 scope:global align:32
+int_sum_gill_top_txt = .data:0x009E7660; // type:object size:0x100 scope:global align:32
+int_sum_gill_glass_txt = .data:0x009E7760; // type:object size:0x100 scope:global align:32
+int_sum_gill_v = .data:0x009E7860; // type:object size:0x2D0 scope:global align:8
+int_sum_gill_sakana_model = .data:0x009E7B30; // type:object size:0x70 scope:global align:8
+int_sum_gill_top_model = .data:0x009E7BA0; // type:object size:0x58 scope:global align:8
+int_sum_gill_evw_model = .data:0x009E7BF8; // type:object size:0x68 scope:global align:8
+int_sum_gill_base_model = .data:0x009E7C60; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_gill_tbl = .data:0x009E7CF0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_gill_tbl = .data:0x009E7CF8; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_gill_tbl = .data:0x009E7D0C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_gill_tbl = .data:0x009E7D20; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_gill = .data:0x009E7DB8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_gill_tbl = .data:0x009E7DCC; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_gill = .data:0x009E7E08; // type:object size:0x8 scope:global align:4
+int_sum_ginyanma_pal = .data:0x009E7E20; // type:object size:0x20 scope:global align:32
+int_sum_ginyanma_hand_pic_ci4_pal = .data:0x009E7E40; // type:object size:0x20 scope:global align:32
+int_sum_ginyanma_body_txt = .data:0x009E7E60; // type:object size:0x180 scope:global align:32
+int_sum_ginyanma_base_txt = .data:0x009E7FE0; // type:object size:0x80 scope:global align:32
+int_sum_ginyanma_top_txt = .data:0x009E8060; // type:object size:0x200 scope:global align:32
+int_sum_ginyanma_side_txt = .data:0x009E8260; // type:object size:0x200 scope:global align:32
+int_sum_ginyanma_hand_txt = .data:0x009E8460; // type:object size:0x100 scope:global align:32
+int_sum_ginyanma_v = .data:0x009E8560; // type:object size:0x450 scope:global align:8
+int_sum_ginyanma_side_model = .data:0x009E89B0; // type:object size:0x68 scope:global align:8
+int_sum_ginyanma_komado_model = .data:0x009E8A18; // type:object size:0x58 scope:global align:8
+int_sum_ginyanma_glass_model = .data:0x009E8A70; // type:object size:0x68 scope:global align:8
+int_sum_ginyanma_base_model = .data:0x009E8AD8; // type:object size:0xC8 scope:global align:8
+int_sum_ginyanma_body_R_model = .data:0x009E8BA0; // type:object size:0x58 scope:global align:8
+int_sum_ginyanma_body_L_model = .data:0x009E8BF8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_ginyanma_tbl = .data:0x009E8C50; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_ginyanma_tbl = .data:0x009E8C58; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_ginyanma_tbl = .data:0x009E8C6C; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_ginyanma_tbl = .data:0x009E8C90; // type:object size:0x78 scope:global align:4
+cKF_ba_r_int_sum_ginyanma = .data:0x009E8D08; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ginyanma_tbl = .data:0x009E8D1C; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_ginyanma = .data:0x009E8D7C; // type:object size:0x8 scope:global align:4
+int_sum_globe01_pal = .data:0x009E8DA0; // type:object size:0x20 scope:global align:32
+int_sum_globe01_stand_tex_txt = .data:0x009E8DC0; // type:object size:0x100 scope:global align:32
+int_sum_globe01_standtop_tex_txt = .data:0x009E8EC0; // type:object size:0x80 scope:global align:32
+int_sum_globe01_standside_tex_txt = .data:0x009E8F40; // type:object size:0x200 scope:global align:32
+int_sum_globe01_map_tex_txt = .data:0x009E9140; // type:object size:0x400 scope:global align:32
+int_sum_globe01_v = .data:0x009E9540; // type:object size:0x2B0 scope:global align:8
+int_sum_globe01_on_model = .data:0x009E97F0; // type:object size:0x118 scope:global align:8
+int_sum_golfbag_pal = .data:0x009E9920; // type:object size:0x20 scope:local align:32
+int_sum_golfbag01_top_tex_txt = .data:0x009E9940; // type:object size:0x100 scope:global align:32
+int_sum_golfbag01_carry_tex_txt = .data:0x009E9A40; // type:object size:0x180 scope:global align:32
+int_sum_golfbag01_body_tex_txt = .data:0x009E9BC0; // type:object size:0x400 scope:global align:32
+int_sum_golfbag01_clab2_tex_txt = .data:0x009E9FC0; // type:object size:0x80 scope:global align:32
+int_sum_golfbag01_clab1_tex_txt = .data:0x009EA040; // type:object size:0x80 scope:global align:32
+int_sum_golfbag01_clab3_tex_txt = .data:0x009EA0C0; // type:object size:0x80 scope:global align:32
+int_sum_golfbag01_v = .data:0x009EA140; // type:object size:0x560 scope:global align:8
+int_sum_golfbag01_on_model = .data:0x009EA6A0; // type:object size:0x200 scope:global align:8
+int_sum_golfbag02_pal = .data:0x009EA8A0; // type:object size:0x20 scope:global align:32
+int_sum_golfbag_pal = .data:0x009EA8C0; // type:object size:0x20 scope:local align:32
+int_sum_golfbag02_top_tex_txt = .data:0x009EA8E0; // type:object size:0x100 scope:global align:32
+int_sum_golfbag02_carry_tex_txt = .data:0x009EA9E0; // type:object size:0x180 scope:global align:32
+int_sum_golfbag02_body_tex_txt = .data:0x009EAB60; // type:object size:0x400 scope:global align:32
+int_sum_golfbag02_clab2_tex_txt = .data:0x009EAF60; // type:object size:0x80 scope:global align:32
+int_sum_golfbag02_clab1_tex_txt = .data:0x009EAFE0; // type:object size:0x80 scope:global align:32
+int_sum_golfbag02_clab3_tex_txt = .data:0x009EB060; // type:object size:0x80 scope:global align:32
+int_sum_golfbag02_v = .data:0x009EB0E0; // type:object size:0x560 scope:global align:8
+int_sum_golfbag02_on_model = .data:0x009EB640; // type:object size:0x208 scope:global align:8
+int_sum_golfbag03_pal = .data:0x009EB860; // type:object size:0x20 scope:global align:32
+int_sum_golfbag03_top_tex_txt = .data:0x009EB880; // type:object size:0x100 scope:global align:32
+int_sum_golfbag03_carry_tex_txt = .data:0x009EB980; // type:object size:0x180 scope:global align:32
+int_sum_golfbag03_body_tex_txt = .data:0x009EBB00; // type:object size:0x400 scope:global align:32
+int_sum_golfbag03_clab2_tex_txt = .data:0x009EBF00; // type:object size:0x80 scope:global align:32
+int_sum_golfbag03_clab1_tex_txt = .data:0x009EBF80; // type:object size:0x80 scope:global align:32
+int_sum_golfbag03_clab3_tex_txt = .data:0x009EC000; // type:object size:0x80 scope:global align:32
+int_sum_golfbag03_v = .data:0x009EC080; // type:object size:0x560 scope:global align:8
+int_sum_golfbag03_on_model = .data:0x009EC5E0; // type:object size:0x200 scope:global align:8
+int_sum_gomadara_pal = .data:0x009EC7E0; // type:object size:0x20 scope:global align:32
+int_sum_gomadara_hand_pic_ci4_pal = .data:0x009EC800; // type:object size:0x20 scope:global align:32
+int_sum_gomadara_body_txt = .data:0x009EC820; // type:object size:0x200 scope:global align:32
+int_sum_gomadara_base_txt = .data:0x009ECA20; // type:object size:0x80 scope:global align:32
+int_sum_gomadara_top_txt = .data:0x009ECAA0; // type:object size:0x200 scope:global align:32
+int_sum_gomadara_side_txt = .data:0x009ECCA0; // type:object size:0x200 scope:global align:32
+int_sum_gomadara_hand_txt = .data:0x009ECEA0; // type:object size:0x100 scope:global align:32
+int_sum_gomadara_v = .data:0x009ECFA0; // type:object size:0x430 scope:global align:8
+int_sum_gomadara_side_model = .data:0x009ED3D0; // type:object size:0x68 scope:global align:8
+int_sum_gomadara_komado_model = .data:0x009ED438; // type:object size:0x58 scope:global align:8
+int_sum_gomadara_glass_model = .data:0x009ED490; // type:object size:0x68 scope:global align:8
+int_sum_gomadara_base_model = .data:0x009ED4F8; // type:object size:0x98 scope:global align:8
+int_sum_gomadara_body_model = .data:0x009ED590; // type:object size:0x88 scope:global align:8
+cKF_ckcb_r_int_sum_gomadara_tbl = .data:0x009ED618; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_gomadara_tbl = .data:0x009ED620; // type:object size:0x8 scope:global align:4
+cKF_c_int_sum_gomadara_tbl = .data:0x009ED628; // type:object size:0x22 scope:global align:4
+cKF_ds_int_sum_gomadara_tbl = .data:0x009ED64C; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_sum_gomadara = .data:0x009ED6CC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_gomadara_tbl = .data:0x009ED6E0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_gomadara = .data:0x009ED728; // type:object size:0x8 scope:global align:4
+int_sum_gre_bed01_pal = .data:0x009ED740; // type:object size:0x20 scope:global align:32
+int_sum_gre_bed01_headback_tex = .data:0x009ED760; // type:object size:0x200 scope:global align:32
+int_sum_gre_bed01_headfront_tex = .data:0x009ED960; // type:object size:0x100 scope:global align:32
+int_sum_gre_bed01_top_tex = .data:0x009EDA60; // type:object size:0x300 scope:global align:32
+int_sum_gre_bed01_pillow_tex = .data:0x009EDD60; // type:object size:0x80 scope:global align:32
+int_sum_gre_bed01_side2_tex = .data:0x009EDDE0; // type:object size:0x100 scope:global align:32
+int_sum_gre_bed01_book_tex = .data:0x009EDEE0; // type:object size:0x80 scope:global align:32
+int_sum_gre_bed01_v = .data:0x009EDF60; // type:object size:0x380 scope:global align:8
+int_sum_gre_bed01_on_model = .data:0x009EE2E0; // type:object size:0x80 scope:global align:8
+int_sum_gre_bed01_onT_model = .data:0x009EE360; // type:object size:0xF0 scope:global align:8
+int_sum_gre_chair01_pal = .data:0x009EE460; // type:object size:0x20 scope:global align:32
+int_sum_gre_chair01_foot_tex = .data:0x009EE480; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair01_seatside_tex = .data:0x009EE580; // type:object size:0x200 scope:global align:32
+int_sum_gre_chair01_footdouwn_tex = .data:0x009EE780; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair01_stand_tex = .data:0x009EE880; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair01_seat_tex = .data:0x009EE980; // type:object size:0x200 scope:global align:32
+int_sum_gre_chair01_v = .data:0x009EEB80; // type:object size:0x400 scope:global align:8
+int_sum_gre_chair01_on_model = .data:0x009EEF80; // type:object size:0xD0 scope:global align:8
+int_sum_gre_chair01_onT_model = .data:0x009EF050; // type:object size:0x98 scope:global align:8
+int_sum_gre_chair02_pal = .data:0x009EF100; // type:object size:0x20 scope:global align:32
+int_sum_gre_chair02_seat_tex = .data:0x009EF120; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair02_seathead_tex = .data:0x009EF220; // type:object size:0x400 scope:global align:32
+int_sum_gre_chair02_seatside_tex = .data:0x009EF620; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair02_cushion_tex = .data:0x009EF720; // type:object size:0x80 scope:global align:32
+int_sum_gre_chair02_foot_tex = .data:0x009EF7A0; // type:object size:0x100 scope:global align:32
+int_sum_gre_chair02_v = .data:0x009EF8A0; // type:object size:0x3D0 scope:global align:8
+int_sum_gre_chair02_on_model = .data:0x009EFC70; // type:object size:0xA0 scope:global align:8
+int_sum_gre_chair02_onT_model = .data:0x009EFD10; // type:object size:0xB0 scope:global align:8
+int_sum_gre_chest01_pal = .data:0x009EFDC0; // type:object size:0x20 scope:global align:32
+int_sum_gre_chest01_front_tex = .data:0x009EFDE0; // type:object size:0x200 scope:global align:32
+int_sum_gre_chest01_side_tex = .data:0x009EFFE0; // type:object size:0x300 scope:global align:32
+int_sum_gre_chest01_bin_tex = .data:0x009F02E0; // type:object size:0x100 scope:global align:32
+int_sum_gre_chest01_kago_tex = .data:0x009F03E0; // type:object size:0x80 scope:global align:32
+int_sum_gre_chest01_v = .data:0x009F0460; // type:object size:0x420 scope:global align:8
+int_sum_gre_chest01_on_model = .data:0x009F0880; // type:object size:0xB8 scope:global align:8
+int_sum_gre_chest01_onT_model = .data:0x009F0938; // type:object size:0x98 scope:global align:8
+int_sum_gre_chest02_pal = .data:0x009F09E0; // type:object size:0x20 scope:global align:32
+int_sum_gre_chest02_hiki_tex_txt = .data:0x009F0A00; // type:object size:0x180 scope:global align:32
+int_sum_gre_chest02_back_tex_txt = .data:0x009F0B80; // type:object size:0x400 scope:global align:32
+int_sum_gre_chest02_top_tex_txt = .data:0x009F0F80; // type:object size:0x80 scope:global align:32 data:string
+int_sum_gre_chest02_front_tex_txt = .data:0x009F1000; // type:object size:0x200 scope:global align:32
+int_sum_gre_chest02_v = .data:0x009F1200; // type:object size:0x360 scope:global align:8
+int_sum_gre_chest02_doorL_model = .data:0x009F1560; // type:object size:0x98 scope:global align:8
+int_sum_gre_chest02_base_model = .data:0x009F15F8; // type:object size:0xB0 scope:global align:8
+int_sum_gre_chest02_doorR_model = .data:0x009F16A8; // type:object size:0x98 scope:global align:8
+cKF_ckcb_r_int_sum_gre_chest02_tbl = .data:0x009F1740; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_gre_chest02_tbl = .data:0x009F1748; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_gre_chest02_tbl = .data:0x009F1760; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_gre_chest02_tbl = .data:0x009F176C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_gre_chest02 = .data:0x009F1808; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_gre_chest02_tbl = .data:0x009F181C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_gre_chest02 = .data:0x009F1858; // type:object size:0x8 scope:global align:4
+int_sum_gre_chest03_pal = .data:0x009F1860; // type:object size:0x20 scope:global align:32
+int_sum_gre_chest03_hiki_tex_txt = .data:0x009F1880; // type:object size:0x100 scope:global align:32
+int_sum_gre_chest03_in_tex_txt = .data:0x009F1980; // type:object size:0x80 scope:global align:32
+int_sum_gre_chest03_front_tex_txt = .data:0x009F1A00; // type:object size:0x400 scope:global align:32
+int_sum_gre_chest03_top_tex_txt = .data:0x009F1E00; // type:object size:0x100 scope:global align:32
+int_sum_gre_chest03_side_tex_txt = .data:0x009F1F00; // type:object size:0x100 scope:global align:32
+int_sum_gre_chest03_v = .data:0x009F2000; // type:object size:0x280 scope:global align:8
+int_sum_gre_chest03_door_model = .data:0x009F2280; // type:object size:0xA8 scope:global align:8
+int_sum_gre_chest03_base_model = .data:0x009F2328; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_sum_gre_chest03_tbl = .data:0x009F23D0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_gre_chest03_tbl = .data:0x009F23D4; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_gre_chest03_tbl = .data:0x009F23E8; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_gre_chest03_tbl = .data:0x009F23F0; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_gre_chest03 = .data:0x009F245C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_gre_chest03_tbl = .data:0x009F2470; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_gre_chest03 = .data:0x009F2494; // type:object size:0x8 scope:global align:4
+int_sum_gre_counter01_pal = .data:0x009F24A0; // type:object size:0x20 scope:global align:32
+int_sum_gre_counter01_front_tex = .data:0x009F24C0; // type:object size:0x400 scope:global align:32
+int_sum_gre_counter01_side_tex = .data:0x009F28C0; // type:object size:0x100 scope:global align:32
+int_sum_gre_counter01_top_tex = .data:0x009F29C0; // type:object size:0x100 scope:global align:32 data:string
+int_sum_gre_counter01_can_tex = .data:0x009F2AC0; // type:object size:0x80 scope:global align:32
+int_sum_gre_counter01_wine_tex = .data:0x009F2B40; // type:object size:0x100 scope:global align:32
+int_sum_gre_counter01_shadow_tex = .data:0x009F2C40; // type:object size:0x80 scope:global align:32
+int_sum_gre_counter01_v = .data:0x009F2CC0; // type:object size:0x480 scope:global align:8
+int_sum_counter01_on_model = .data:0x009F3140; // type:object size:0x88 scope:global align:8
+int_sum_counter01_onT_model = .data:0x009F31C8; // type:object size:0xF0 scope:global align:8
+int_sum_gre_desk01_pal = .data:0x009F32C0; // type:object size:0x20 scope:global align:32
+int_sum_gre_desk01_back_tex = .data:0x009F32E0; // type:object size:0x100 scope:global align:32
+int_sum_gre_desk01_side_tex = .data:0x009F33E0; // type:object size:0x200 scope:global align:32
+int_sum_gre_desk01_top_tex = .data:0x009F35E0; // type:object size:0x100 scope:global align:32
+int_sum_gre_desk01_foot_tex = .data:0x009F36E0; // type:object size:0x100 scope:global align:32
+int_sum_gre_desk01_v = .data:0x009F37E0; // type:object size:0x360 scope:global align:8
+int_sum_gre_desk01_on_model = .data:0x009F3B40; // type:object size:0x90 scope:global align:8
+int_sum_gre_desk01_onT_model = .data:0x009F3BD0; // type:object size:0x88 scope:global align:8
+int_sum_gre_lanp01_pal = .data:0x009F3C60; // type:object size:0x20 scope:global align:32
+int_sum_gre_lanp01_kasa_tex = .data:0x009F3C80; // type:object size:0x100 scope:global align:32
+int_sum_gre_lanp01_stand_tex = .data:0x009F3D80; // type:object size:0x100 scope:global align:32
+int_sum_gre_lanp01_topshade_tex = .data:0x009F3E80; // type:object size:0x80 scope:global align:32 data:string
+int_sum_gre_lanp01_front_tex = .data:0x009F3F00; // type:object size:0x200 scope:global align:32
+int_sum_gre_lanp01_side_tex = .data:0x009F4100; // type:object size:0x100 scope:global align:32
+int_sum_gre_lanp01_top_tex = .data:0x009F4200; // type:object size:0x80 scope:global align:32 data:string
+int_sum_gre_lanp01_swich_tex = .data:0x009F4280; // type:object size:0x80 scope:global align:32
+int_sum_gre_lanp01_back_tex = .data:0x009F4300; // type:object size:0x100 scope:global align:32
+int_sum_gre_lanp01_v = .data:0x009F4400; // type:object size:0x320 scope:global align:8
+int_sum_gre_lanp01_on_model = .data:0x009F4720; // type:object size:0x58 scope:global align:8
+int_sum_gre_lanp01_onT_model = .data:0x009F4778; // type:object size:0x90 scope:global align:8
+int_sum_gre_lanp01_offT_model = .data:0x009F4808; // type:object size:0xC0 scope:global align:8
+int_sum_gre_table01_pal = .data:0x009F48E0; // type:object size:0x20 scope:global align:32
+int_sum_gre_table01_foot_tex = .data:0x009F4900; // type:object size:0x100 scope:global align:32
+int_sum_gre_table01_top_tex = .data:0x009F4A00; // type:object size:0x200 scope:global align:32
+int_sum_gre_table01_footdouwn_tex = .data:0x009F4C00; // type:object size:0x100 scope:global align:32
+int_sum_gre_table01_stand_tex = .data:0x009F4D00; // type:object size:0x100 scope:global align:32
+int_sum_gre_table01_v = .data:0x009F4E00; // type:object size:0x3C0 scope:global align:8
+int_sum_gre_table01_on_model = .data:0x009F51C0; // type:object size:0xE0 scope:global align:8
+int_sum_gre_table01_onT_model = .data:0x009F52A0; // type:object size:0x60 scope:global align:8
+int_sum_guitar01_pal = .data:0x009F5300; // type:object size:0x20 scope:global align:32
+int_sum_guitar01_front = .data:0x009F5320; // type:object size:0x400 scope:global align:32
+int_sum_guitar01_back = .data:0x009F5720; // type:object size:0x100 scope:global align:32
+int_sum_guitar01_side = .data:0x009F5820; // type:object size:0x80 scope:global align:32
+int_sum_guitar01_neck = .data:0x009F58A0; // type:object size:0x80 scope:global align:32
+int_sum_guitar01_headstock = .data:0x009F5920; // type:object size:0x80 scope:global align:32
+int_sum_guitar01_hand = .data:0x009F59A0; // type:object size:0x80 scope:global align:32
+int_sum_guitar01_chest = .data:0x009F5A20; // type:object size:0x100 scope:global align:32
+int_sum_guitar01_v = .data:0x009F5B20; // type:object size:0x3C0 scope:global align:8
+int_sum_guitar01_on_model = .data:0x009F5EE0; // type:object size:0xC0 scope:global align:8
+int_sum_guitar01_onT_model = .data:0x009F5FA0; // type:object size:0xC8 scope:global align:8
+int_sum_guitar02_pal = .data:0x009F6080; // type:object size:0x20 scope:global align:32
+int_sum_guitar02_front = .data:0x009F60A0; // type:object size:0x480 scope:global align:32
+int_sum_guitar02_back = .data:0x009F6520; // type:object size:0x100 scope:global align:32
+int_sum_guitar02_neck = .data:0x009F6620; // type:object size:0x80 scope:global align:32
+int_sum_guitar02_headstock = .data:0x009F66A0; // type:object size:0x80 scope:global align:32
+int_sum_guitar02_hand = .data:0x009F6720; // type:object size:0x80 scope:global align:32
+int_sum_guitar02_chest = .data:0x009F67A0; // type:object size:0x100 scope:global align:32
+int_sum_guitar02_v = .data:0x009F68A0; // type:object size:0x400 scope:global align:8
+int_sum_guitar02_on_model = .data:0x009F6CA0; // type:object size:0x98 scope:global align:8
+int_sum_guitar02_onT_model = .data:0x009F6D38; // type:object size:0xC8 scope:global align:8
+int_sum_guitar03_pal = .data:0x009F6E00; // type:object size:0x20 scope:global align:32
+int_sum_guitar03_back_tex = .data:0x009F6E20; // type:object size:0x200 scope:global align:32
+int_sum_guitar03_side_tex = .data:0x009F7020; // type:object size:0x80 scope:global align:32
+int_sum_guitar03_head_tex = .data:0x009F70A0; // type:object size:0x100 scope:global align:32
+int_sum_guitar03_backhead_tex = .data:0x009F71A0; // type:object size:0x80 scope:global align:32
+int_sum_guitar03_front_tex = .data:0x009F7220; // type:object size:0x200 scope:global align:32
+int_sum_guitar03_hand_tex = .data:0x009F7420; // type:object size:0x80 scope:global align:32
+int_sum_guitar03_chest_tex = .data:0x009F74A0; // type:object size:0x100 scope:global align:32
+int_sum_guitar03_neck_tex = .data:0x009F75A0; // type:object size:0x80 scope:global align:32
+int_sum_guitar03_v = .data:0x009F7620; // type:object size:0x430 scope:global align:8
+int_sum_guitar_03_on_model = .data:0x009F7A50; // type:object size:0xA8 scope:global align:8
+int_sum_guitar_03_onT_model = .data:0x009F7AF8; // type:object size:0xE8 scope:global align:8
+int_sum_gupi_pal = .data:0x009F7BE0; // type:object size:0x20 scope:local align:32
+int_sum_gupi_glass_pic_ci4_pal = .data:0x009F7C00; // type:object size:0x20 scope:global align:32
+int_sum_gupi_body_txt = .data:0x009F7C20; // type:object size:0x200 scope:global align:32
+int_sum_gupi_top_txt = .data:0x009F7E20; // type:object size:0x100 scope:global align:32
+int_sum_gupi_side_txt = .data:0x009F7F20; // type:object size:0x200 scope:global align:32
+int_sum_gupi_base_txt = .data:0x009F8120; // type:object size:0x80 scope:global align:32
+int_sum_gupi_etc_txt = .data:0x009F81A0; // type:object size:0x80 scope:global align:32
+int_sum_gupi_glass_txt = .data:0x009F8220; // type:object size:0x100 scope:global align:32
+int_sum_gupi_v = .data:0x009F8320; // type:object size:0x370 scope:global align:8
+int_sum_gupi_sakana_model = .data:0x009F8690; // type:object size:0x70 scope:global align:8
+int_sum_gupi_top_model = .data:0x009F8700; // type:object size:0x58 scope:global align:8
+int_sum_gupi_evw_model = .data:0x009F8758; // type:object size:0x68 scope:global align:8
+int_sum_gupi_base_model = .data:0x009F87C0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_gupi_tbl = .data:0x009F8878; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_gupi_tbl = .data:0x009F8880; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_gupi_tbl = .data:0x009F8894; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_gupi_tbl = .data:0x009F88A8; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_gupi = .data:0x009F8940; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_gupi_tbl = .data:0x009F8954; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_gupi = .data:0x009F8990; // type:object size:0x8 scope:global align:4
+int_sum_hachi_pal = .data:0x009F89A0; // type:object size:0x20 scope:global align:32
+int_sum_hachi_hand_pic_ci4_pal = .data:0x009F89C0; // type:object size:0x20 scope:global align:32
+int_sum_hachi_base_txt = .data:0x009F89E0; // type:object size:0x80 scope:global align:32
+int_sum_hachi_top_txt = .data:0x009F8A60; // type:object size:0x200 scope:global align:32
+int_sum_hachi_body_txt = .data:0x009F8C60; // type:object size:0x100 scope:global align:32
+int_sum_hachi_side_txt = .data:0x009F8D60; // type:object size:0x200 scope:global align:32
+int_sum_hachi_hane_txt = .data:0x009F8F60; // type:object size:0x100 scope:global align:32
+int_sum_hachi_hand_txt = .data:0x009F9060; // type:object size:0x100 scope:global align:32
+int_sum_hachi_v = .data:0x009F9160; // type:object size:0x440 scope:global align:8
+int_sum_hachi_side_model = .data:0x009F95A0; // type:object size:0x68 scope:global align:8
+int_sum_hachi_komado_model = .data:0x009F9608; // type:object size:0x58 scope:global align:8
+int_sum_hachi_glass_model = .data:0x009F9660; // type:object size:0x68 scope:global align:8
+int_sum_hachi_base_model = .data:0x009F96C8; // type:object size:0xD0 scope:global align:8
+int_sum_hachi_body_R_model = .data:0x009F9798; // type:object size:0x58 scope:global align:8
+int_sum_hachi_body_L_model = .data:0x009F97F0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_hachi_tbl = .data:0x009F9848; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_hachi_tbl = .data:0x009F9850; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_hachi_tbl = .data:0x009F9864; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_hachi_tbl = .data:0x009F9888; // type:object size:0x78 scope:global align:4
+cKF_ba_r_int_sum_hachi = .data:0x009F9900; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hachi_tbl = .data:0x009F9914; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_hachi = .data:0x009F9974; // type:object size:0x8 scope:global align:4
+int_sum_hal_bed01_pal = .data:0x009F9980; // type:object size:0x20 scope:global align:32
+int_sum_hal_bed01_head_tex = .data:0x009F99A0; // type:object size:0x200 scope:global align:32
+int_sum_hal_bed01_top_tex = .data:0x009F9BA0; // type:object size:0x200 scope:global align:32
+int_sum_hal_bed01_side_tex = .data:0x009F9DA0; // type:object size:0x80 scope:global align:32
+int_sum_hal_bed01_pillow_tex = .data:0x009F9E20; // type:object size:0x80 scope:global align:32
+int_sum_hal_bed01_kuki_tex = .data:0x009F9EA0; // type:object size:0x80 scope:global align:32
+int_sum_hal_bed01_foot_tex = .data:0x009F9F20; // type:object size:0x80 scope:global align:32
+int_sum_hal_bed01_v = .data:0x009F9FA0; // type:object size:0x4A0 scope:global align:8
+int_sum_hal_bed01_on_model = .data:0x009FA440; // type:object size:0xD8 scope:global align:8
+int_sum_hal_bed01_onT_model = .data:0x009FA518; // type:object size:0x98 scope:global align:8
+int_sum_hal_box01_pal = .data:0x009FA5C0; // type:object size:0x20 scope:global align:32
+int_sum_hal_box01_pkin_tex_txt = .data:0x009FA5E0; // type:object size:0x200 scope:global align:32
+int_sum_hal_box01_kuki_tex_txt = .data:0x009FA7E0; // type:object size:0x80 scope:global align:32
+int_sum_hal_box01_bane_tex_txt = .data:0x009FA860; // type:object size:0x100 scope:global align:32
+int_sum_hal_box01_in_tex_txt = .data:0x009FA960; // type:object size:0x80 scope:global align:32
+int_sum_hal_box01_boxside_tex_txt = .data:0x009FA9E0; // type:object size:0x200 scope:global align:32
+int_sum_hal_box01_boxtop_tex_txt = .data:0x009FABE0; // type:object size:0x80 scope:global align:32
+int_sum_hal_box01_v = .data:0x009FAC60; // type:object size:0x490 scope:global align:8
+int_sum_hal_box01_bane_on_model = .data:0x009FB0F0; // type:object size:0x130 scope:global align:8
+int_sum_hal_box01_bane_off_model = .data:0x009FB220; // type:object size:0x58 scope:global align:8
+int_sum_hal_box01_base_model = .data:0x009FB278; // type:object size:0x90 scope:global align:8
+int_sum_hal_box01_top_model = .data:0x009FB308; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_hal_box01_tbl = .data:0x009FB370; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_hal_box01_tbl = .data:0x009FB378; // type:object size:0x4 scope:global align:4
+cKF_c_int_sum_hal_box01_tbl = .data:0x009FB37C; // type:object size:0x26 scope:global align:4
+cKF_ds_int_sum_hal_box01_tbl = .data:0x009FB3A4; // type:object size:0x66 scope:global align:4
+cKF_ba_r_int_sum_hal_box01 = .data:0x009FB40C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hal_box01_tbl = .data:0x009FB420; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_hal_box01 = .data:0x009FB468; // type:object size:0x8 scope:global align:4
+int_sum_hal_chair01_pal = .data:0x009FB480; // type:object size:0x20 scope:global align:32
+int_sum_hal_chair01_seat_tex = .data:0x009FB4A0; // type:object size:0x200 scope:global align:32
+int_sum_hal_chair01_back_tex = .data:0x009FB6A0; // type:object size:0x200 scope:global align:32
+int_sum_hal_chair01_side_tex = .data:0x009FB8A0; // type:object size:0x100 scope:global align:32
+int_sum_hal_chair01_top_tex = .data:0x009FB9A0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_hal_chair01_kuki_tex = .data:0x009FBA20; // type:object size:0x80 scope:global align:32
+int_sum_hal_chair01_armside_tex = .data:0x009FBAA0; // type:object size:0x200 scope:global align:32
+int_sum_hal_chair01_v = .data:0x009FBCA0; // type:object size:0x470 scope:global align:8
+int_sum_hal_chair01_on_model = .data:0x009FC110; // type:object size:0xA0 scope:global align:8
+int_sum_hal_chair01_onT_model = .data:0x009FC1B0; // type:object size:0xE0 scope:global align:8
+int_sum_hal_chest01_pal = .data:0x009FC2A0; // type:object size:0x20 scope:global align:32
+int_sum_hal_chest01_back_tex = .data:0x009FC2C0; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest01_front_tex = .data:0x009FC3C0; // type:object size:0x200 scope:global align:32
+int_sum_hal_chest01_top_tex = .data:0x009FC5C0; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest01_intop_tex = .data:0x009FC640; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest01_inback_tex = .data:0x009FC6C0; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest01_kuki_tex = .data:0x009FC7C0; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest01_book_tex = .data:0x009FC8C0; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest01_v = .data:0x009FC9C0; // type:object size:0x430 scope:global align:8
+int_sum_hal_chest01_on_model = .data:0x009FCDF0; // type:object size:0xC0 scope:global align:8
+int_sum_hal_chest01_onT_model = .data:0x009FCEB0; // type:object size:0xD8 scope:global align:8
+int_sum_hal_chest02_pal = .data:0x009FCFA0; // type:object size:0x20 scope:global align:32
+int_sum_hal_chest02_hiki_tex_txt = .data:0x009FCFC0; // type:object size:0x200 scope:global align:32
+int_sum_hal_chest02_hiite_tex_txt = .data:0x009FD1C0; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest02_top_tex_txt = .data:0x009FD240; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest02_front_tex_txt = .data:0x009FD2C0; // type:object size:0x300 scope:global align:32
+int_sum_hal_chest02_back_tex_txt = .data:0x009FD5C0; // type:object size:0x180 scope:global align:32
+int_sum_hal_chest02_kuki_tex_txt = .data:0x009FD740; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest02_v = .data:0x009FD7C0; // type:object size:0x4E0 scope:global align:8
+int_sum_hal_chest01_door_model = .data:0x009FDCA0; // type:object size:0x98 scope:global align:8
+int_sum_hal_chest02_base_model = .data:0x009FDD38; // type:object size:0x128 scope:global align:8
+cKF_ckcb_r_int_sum_hal_chest02_tbl = .data:0x009FDE60; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_hal_chest02_tbl = .data:0x009FDE64; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_hal_chest02_tbl = .data:0x009FDE70; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_hal_chest02_tbl = .data:0x009FDE7C; // type:object size:0x5A scope:global align:4
+cKF_ba_r_int_sum_hal_chest02 = .data:0x009FDED8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hal_chest02_tbl = .data:0x009FDEEC; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_hal_chest02 = .data:0x009FDF10; // type:object size:0x8 scope:global align:4
+int_sum_hal_chest03_pal = .data:0x009FDF20; // type:object size:0x20 scope:global align:32
+int_sum_hal_chest03_top_tex_txt = .data:0x009FDF40; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest03_hiki_tex_txt = .data:0x009FE040; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest03_hikite_tex_txt = .data:0x009FE140; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest03_kuki_tex_txt = .data:0x009FE1C0; // type:object size:0x80 scope:global align:32
+int_sum_hal_chest03_side_tex_txt = .data:0x009FE240; // type:object size:0x100 scope:global align:32
+int_sum_hal_chest03_front_tex_txt = .data:0x009FE340; // type:object size:0x400 scope:global align:32
+int_sum_hal_chest03_v = .data:0x009FE740; // type:object size:0x480 scope:global align:8
+int_sum_hal_chest03_door1_model = .data:0x009FEBC0; // type:object size:0xC8 scope:global align:8
+int_sum_hal_chest03_door_model = .data:0x009FEC88; // type:object size:0xF0 scope:global align:8
+cKF_ckcb_r_int_sum_hal_chest03_tbl = .data:0x009FED78; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_hal_chest03_tbl = .data:0x009FED7C; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_hal_chest03_tbl = .data:0x009FED90; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_hal_chest03_tbl = .data:0x009FED98; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_hal_chest03 = .data:0x009FEE04; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hal_chest03_tbl = .data:0x009FEE18; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_hal_chest03 = .data:0x009FEE3C; // type:object size:0x8 scope:global align:4
+int_sum_hal_clk01_pal = .data:0x009FEE60; // type:object size:0x20 scope:global align:32
+int_sum_hal_clk01_hari_tex_txt = .data:0x009FEE80; // type:object size:0x100 scope:global align:32
+int_sum_hal_clk01_back_tex_txt = .data:0x009FEF80; // type:object size:0x180 scope:global align:32
+int_sum_hal_clk01_base_tex_txt = .data:0x009FF100; // type:object size:0x80 scope:global align:32
+int_sum_hal_clk01_front_tex_txt = .data:0x009FF180; // type:object size:0x300 scope:global align:32
+int_sum_hal_clk01_top_tex_txt = .data:0x009FF480; // type:object size:0x80 scope:global align:32
+int_sum_hal_clk01_kuki_tex_txt = .data:0x009FF500; // type:object size:0x80 scope:global align:32
+int_sum_hal_clk01_hiki_tex_txt = .data:0x009FF580; // type:object size:0x80 scope:global align:32
+int_sum_hal_clk01_hari02_tex_txt = .data:0x009FF600; // type:object size:0x80 scope:global align:32
+int_sum_hal_clk01_v = .data:0x009FF680; // type:object size:0x4B0 scope:global align:8
+int_sum_hal_clk01_long_model = .data:0x009FFB30; // type:object size:0x58 scope:global align:8
+int_sum_hal_clk01_base_model = .data:0x009FFB88; // type:object size:0x150 scope:global align:8
+int_sum_hal_clk01_short_model = .data:0x009FFCD8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_hal_clk01_tbl = .data:0x009FFD30; // type:object size:0x5 scope:global align:4
+cKF_c_int_sum_hal_clk01_tbl = .data:0x009FFD38; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_sum_hal_clk01 = .data:0x009FFD5C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hal_clk01_tbl = .data:0x009FFD70; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_hal_clk01 = .data:0x009FFDAC; // type:object size:0x8 scope:global align:4
+int_sum_hal_lanp01_pal = .data:0x009FFDC0; // type:object size:0x20 scope:global align:32
+int_sum_hal_lanp01_kasa_tex = .data:0x009FFDE0; // type:object size:0x100 scope:global align:32
+int_sum_hal_lanp01_kuki_tex = .data:0x009FFEE0; // type:object size:0x80 scope:global align:32
+int_sum_hal_lanp01_light_tex = .data:0x009FFF60; // type:object size:0x80 scope:global align:32
+int_sum_hal_lanp01_stand_tex = .data:0x009FFFE0; // type:object size:0x100 scope:global align:32
+int_sum_hal_lanp01_top_tex = .data:0x00A000E0; // type:object size:0x100 scope:global align:32
+int_sum_hal_lanp01_hiku_tex = .data:0x00A001E0; // type:object size:0x80 scope:global align:32
+int_sum_hal_lanp01_face_tex = .data:0x00A00260; // type:object size:0x100 scope:global align:32
+int_sum_hal_lanp01_v = .data:0x00A00360; // type:object size:0x2C0 scope:global align:8
+int_sum_hal_lanp01_off_model = .data:0x00A00620; // type:object size:0x58 scope:global align:8
+int_sum_hal_lanp01_onT_model = .data:0x00A00678; // type:object size:0xE0 scope:global align:8
+int_sum_hal_lanp01_offT_model = .data:0x00A00758; // type:object size:0xB8 scope:global align:8
+int_sum_hal_mirror01_pal = .data:0x00A00820; // type:object size:0x20 scope:global align:32
+int_sum_hal_mirror01_glass_tex_rgb_ci4_pal = .data:0x00A00840; // type:object size:0x20 scope:global align:32
+int_sum_hal_mirror01_front_tex = .data:0x00A00860; // type:object size:0x100 scope:global align:32
+int_sum_hal_mirror01_mirror_tex = .data:0x00A00960; // type:object size:0x300 scope:global align:32
+int_sum_hal_mirror01_top_tex = .data:0x00A00C60; // type:object size:0x80 scope:global align:32
+int_sum_hal_mirror01_hikite_tex = .data:0x00A00CE0; // type:object size:0x80 scope:global align:32
+int_sum_hal_mirror01_kuki_tex = .data:0x00A00D60; // type:object size:0x80 scope:global align:32
+int_sum_hal_mirror01_side_tex = .data:0x00A00DE0; // type:object size:0x80 scope:global align:32
+int_sum_hal_mirror01_glass_tex = .data:0x00A00E60; // type:object size:0x200 scope:global align:32
+int_sum_hal_mirror01_v = .data:0x00A01060; // type:object size:0x440 scope:global align:8
+int_sum_hal_mirror01_on_model = .data:0x00A014A0; // type:object size:0xF8 scope:global align:8
+int_sum_hal_mirror01_evw_model = .data:0x00A01598; // type:object size:0x58 scope:global align:8
+int_sum_hal_mirror01_onT_model = .data:0x00A015F0; // type:object size:0x60 scope:global align:8
+int_sum_hal_pkin_pal = .data:0x00A01660; // type:object size:0x20 scope:global align:32
+int_sum_hal_pkin_front_tex = .data:0x00A01680; // type:object size:0x300 scope:global align:32
+int_sum_hal_pkin_back_tex = .data:0x00A01980; // type:object size:0x300 scope:global align:32
+int_sum_hal_pkin_kuki_tex = .data:0x00A01C80; // type:object size:0x80 scope:global align:32
+int_sum_hal_pkin_kukitop_tex = .data:0x00A01D00; // type:object size:0x80 scope:global align:32
+int_sum_hal_pkin_v = .data:0x00A01D80; // type:object size:0x2D0 scope:global align:8
+int_sum_hal_pkin_on_model = .data:0x00A02050; // type:object size:0x78 scope:global align:8
+int_sum_hal_pkin_onT_model = .data:0x00A020C8; // type:object size:0xA8 scope:global align:8
+int_sum_hal_sofa01_pal = .data:0x00A02180; // type:object size:0x20 scope:global align:32
+int_sum_hal_sofa01_seat_tex = .data:0x00A021A0; // type:object size:0x300 scope:global align:32
+int_sum_hal_sofa01_arm_tex = .data:0x00A024A0; // type:object size:0x100 scope:global align:32
+int_sum_hal_sofa01_side_tex = .data:0x00A025A0; // type:object size:0x100 scope:global align:32
+int_sum_hal_sofa01_head_tex = .data:0x00A026A0; // type:object size:0x200 scope:global align:32
+int_sum_hal_sofa01_top_tex = .data:0x00A028A0; // type:object size:0x80 scope:global align:32
+int_sum_hal_sofa01_kuki_tex = .data:0x00A02920; // type:object size:0x80 scope:global align:32
+int_sum_hal_sofa01_v = .data:0x00A029A0; // type:object size:0x410 scope:global align:8
+int_sum_hal_sofa01_on_model = .data:0x00A02DB0; // type:object size:0xC0 scope:global align:8
+int_sum_hal_sofa01_onT_model = .data:0x00A02E70; // type:object size:0xA0 scope:global align:8
+int_sum_hal_table01_pal = .data:0x00A02F20; // type:object size:0x20 scope:global align:32
+int_sum_hal_table01_top_tex = .data:0x00A02F40; // type:object size:0x200 scope:global align:32
+int_sum_hal_table01_side_tex = .data:0x00A03140; // type:object size:0x100 scope:global align:32
+int_sum_hal_table01_base_tex = .data:0x00A03240; // type:object size:0x80 scope:global align:32
+int_sum_hal_table01_stand_tex = .data:0x00A032C0; // type:object size:0x400 scope:global align:32
+int_sum_hal_table01_standside_tex = .data:0x00A036C0; // type:object size:0x80 scope:global align:32
+int_sum_hal_table01_v = .data:0x00A03740; // type:object size:0x440 scope:global align:8
+int_sum_hal_table01_on_model = .data:0x00A03B80; // type:object size:0xE0 scope:global align:8
+int_sum_hal_table01_onT_model = .data:0x00A03C60; // type:object size:0x68 scope:global align:8
+int_sum_harp_pal = .data:0x00A03CE0; // type:object size:0x20 scope:global align:32
+int_sum_harp_stand_tex = .data:0x00A03D00; // type:object size:0x100 scope:global align:32
+int_sum_harp_standdown_tex = .data:0x00A03E00; // type:object size:0x100 scope:global align:32
+int_sum_harp_borad_tex = .data:0x00A03F00; // type:object size:0x100 scope:global align:32
+int_sum_harp_boraddown_tex = .data:0x00A04000; // type:object size:0x100 scope:global align:32
+int_sum_harp_gen_tex = .data:0x00A04100; // type:object size:0x100 scope:global align:32
+int_sum_harp_kata_tex = .data:0x00A04200; // type:object size:0x80 scope:global align:32
+int_sum_harp_pedal_tex = .data:0x00A04280; // type:object size:0x100 scope:global align:32
+int_sum_harp_base_tex = .data:0x00A04380; // type:object size:0x80 scope:global align:32
+int_sum_harp_baseside_tex = .data:0x00A04400; // type:object size:0x80 scope:global align:32
+int_sum_harp_v = .data:0x00A04480; // type:object size:0x3F0 scope:global align:8
+int_sum_harp_on_model = .data:0x00A04870; // type:object size:0xB0 scope:global align:8
+int_sum_harp_onT_model = .data:0x00A04920; // type:object size:0xF0 scope:global align:8
+int_sum_hera_pal = .data:0x00A04A20; // type:object size:0x20 scope:local align:32
+int_sum_hera_glass_pic_ci4_pal = .data:0x00A04A40; // type:object size:0x20 scope:global align:32
+int_sum_hera_body_txt = .data:0x00A04A60; // type:object size:0x300 scope:global align:32
+int_sum_hera_top_txt = .data:0x00A04D60; // type:object size:0x100 scope:global align:32
+int_sum_hera_side_txt = .data:0x00A04E60; // type:object size:0x200 scope:global align:32
+int_sum_hera_base_txt = .data:0x00A05060; // type:object size:0x80 scope:global align:32
+int_sum_hera_glass_txt = .data:0x00A050E0; // type:object size:0x200 scope:global align:32
+int_sum_hera_v = .data:0x00A052E0; // type:object size:0x2D0 scope:global align:8
+int_sum_hera_sakana_model = .data:0x00A055B0; // type:object size:0x70 scope:global align:8
+int_sum_hera_top_model = .data:0x00A05620; // type:object size:0x60 scope:global align:8
+int_sum_hera_evw_model = .data:0x00A05680; // type:object size:0x68 scope:global align:8
+int_sum_hera_base_model = .data:0x00A056E8; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_hera_tbl = .data:0x00A05778; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_hera_tbl = .data:0x00A05780; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_hera_tbl = .data:0x00A05794; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_hera_tbl = .data:0x00A057A8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_hera = .data:0x00A0582C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hera_tbl = .data:0x00A05840; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_hera = .data:0x00A0587C; // type:object size:0x8 scope:global align:4
+int_sum_higurashi_pal = .data:0x00A058A0; // type:object size:0x20 scope:global align:32
+int_sum_higurashi_hand_pic_ci4_pal = .data:0x00A058C0; // type:object size:0x20 scope:global align:32
+int_sum_higurashi_base_txt = .data:0x00A058E0; // type:object size:0x80 scope:global align:32
+int_sum_higurashi_top_txt = .data:0x00A05960; // type:object size:0x200 scope:global align:32
+int_sum_higurashi_body_txt = .data:0x00A05B60; // type:object size:0x200 scope:global align:32
+int_sum_higurashi_side_txt = .data:0x00A05D60; // type:object size:0x200 scope:global align:32
+int_sum_higurashi_hand_pic_ci4 = .data:0x00A05F60; // type:object size:0x100 scope:global align:32
+int_sum_higurashi_v = .data:0x00A06060; // type:object size:0x470 scope:global align:8
+int_sum_higurashi_side_model = .data:0x00A064D0; // type:object size:0x68 scope:global align:8
+int_sum_higurashi_komado_model = .data:0x00A06538; // type:object size:0x58 scope:global align:8
+int_sum_higurashi_glass_model = .data:0x00A06590; // type:object size:0x68 scope:global align:8
+int_sum_higurashi_base_model = .data:0x00A065F8; // type:object size:0xD0 scope:global align:8
+int_sum_higurashi_body_R_model = .data:0x00A066C8; // type:object size:0x58 scope:global align:8
+int_sum_higurashi_body_L_model = .data:0x00A06720; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_higurashi_tbl = .data:0x00A06778; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_higurashi_tbl = .data:0x00A06780; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_higurashi_tbl = .data:0x00A06794; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_higurashi_tbl = .data:0x00A067B8; // type:object size:0x1B0 scope:global align:4
+cKF_ba_r_int_sum_higurashi = .data:0x00A06968; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_higurashi_tbl = .data:0x00A0697C; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_higurashi = .data:0x00A069DC; // type:object size:0x8 scope:global align:4
+int_sum_hirata_pal = .data:0x00A06A00; // type:object size:0x20 scope:global align:32
+int_sum_hirata_hand_pic_ci4_pal = .data:0x00A06A20; // type:object size:0x20 scope:global align:32
+int_sum_hirata_base_txt = .data:0x00A06A40; // type:object size:0x80 scope:global align:32 data:string
+int_sum_hirata_top_txt = .data:0x00A06AC0; // type:object size:0x200 scope:global align:32
+int_sum_hirata_side_txt = .data:0x00A06CC0; // type:object size:0x200 scope:global align:32
+int_sum_hirata_body_txt = .data:0x00A06EC0; // type:object size:0x100 scope:global align:32
+int_sum_hirata_hand_txt = .data:0x00A06FC0; // type:object size:0x100 scope:global align:32
+int_sum_hirata_v = .data:0x00A070C0; // type:object size:0x3A0 scope:global align:8
+int_sum_hirata_side_model = .data:0x00A07460; // type:object size:0x68 scope:global align:8
+int_sum_hirata_komado_model = .data:0x00A074C8; // type:object size:0x58 scope:global align:8
+int_sum_hirata_glass_model = .data:0x00A07520; // type:object size:0x68 scope:global align:8
+int_sum_hirata_base_model = .data:0x00A07588; // type:object size:0xA0 scope:global align:8
+int_sum_hirata_body_model = .data:0x00A07628; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_hirata_tbl = .data:0x00A07690; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_hirata_tbl = .data:0x00A07698; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_hirata_tbl = .data:0x00A076A4; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_hirata_tbl = .data:0x00A076C4; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_hirata = .data:0x00A07754; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_hirata_tbl = .data:0x00A07768; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_hirata = .data:0x00A077B0; // type:object size:0x8 scope:global align:4
+int_sum_ito_pal = .data:0x00A077C0; // type:object size:0x20 scope:local align:32
+int_sum_ito_glass_pic_ci4_pal = .data:0x00A077E0; // type:object size:0x20 scope:global align:32
+int_sum_ito_body_txt = .data:0x00A07800; // type:object size:0x400 scope:global align:32
+int_sum_ito_side_txt = .data:0x00A07C00; // type:object size:0x200 scope:global align:32
+int_sum_ito_base_txt = .data:0x00A07E00; // type:object size:0x80 scope:global align:32
+int_sum_ito_top_txt = .data:0x00A07E80; // type:object size:0x100 scope:global align:32
+int_sum_ito_glass_txt = .data:0x00A07F80; // type:object size:0x80 scope:global align:32
+int_sum_ito_v = .data:0x00A08000; // type:object size:0x2D0 scope:global align:8
+int_sum_ito_sakana_model = .data:0x00A082D0; // type:object size:0x70 scope:global align:8
+int_sum_ito_top_model = .data:0x00A08340; // type:object size:0x58 scope:global align:8
+int_sum_ito_evw_model = .data:0x00A08398; // type:object size:0x68 scope:global align:8
+int_sum_ito_base_model = .data:0x00A08400; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_ito_tbl = .data:0x00A08490; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_ito_tbl = .data:0x00A08498; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_ito_tbl = .data:0x00A084AC; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_ito_tbl = .data:0x00A084C0; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_ito = .data:0x00A08550; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ito_tbl = .data:0x00A08564; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_ito = .data:0x00A085A0; // type:object size:0x8 scope:global align:4
+int_sum_iwana_pal = .data:0x00A085C0; // type:object size:0x20 scope:local align:32
+int_sum_iwana_glass_pic_ci4_pal = .data:0x00A085E0; // type:object size:0x20 scope:global align:32
+int_sum_iwana_body_txt = .data:0x00A08600; // type:object size:0x300 scope:global align:32
+int_sum_iwana_side_txt = .data:0x00A08900; // type:object size:0x200 scope:global align:32
+int_sum_iwana_base_txt = .data:0x00A08B00; // type:object size:0x80 scope:global align:32
+int_sum_iwana_top_txt = .data:0x00A08B80; // type:object size:0x100 scope:global align:32
+int_sum_iwana_glass_txt = .data:0x00A08C80; // type:object size:0x100 scope:global align:32
+int_sum_iwana_v = .data:0x00A08D80; // type:object size:0x2D0 scope:global align:8
+int_sum_iwana_sakana_model = .data:0x00A09050; // type:object size:0x70 scope:global align:8
+int_sum_iwana_top_model = .data:0x00A090C0; // type:object size:0x58 scope:global align:8
+int_sum_iwana_evw_model = .data:0x00A09118; // type:object size:0x68 scope:global align:8
+int_sum_iwana_base_model = .data:0x00A09180; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_iwana_tbl = .data:0x00A09210; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_iwana_tbl = .data:0x00A09218; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_iwana_tbl = .data:0x00A0922C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_iwana_tbl = .data:0x00A09240; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_iwana = .data:0x00A092C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_iwana_tbl = .data:0x00A092D8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_iwana = .data:0x00A09314; // type:object size:0x8 scope:global align:4
+int_sum_jukebox_pal = .data:0x00A09320; // type:object size:0x20 scope:global align:32
+int_sum_jukebox_glass_tex_rgb_ci4_pal = .data:0x00A09340; // type:object size:0x20 scope:global align:32
+int_sum_jukebox_front_tex = .data:0x00A09360; // type:object size:0x300 scope:global align:32
+int_sum_jukebox_back_tex = .data:0x00A09660; // type:object size:0x180 scope:global align:32
+int_sum_jukebox_in_tex = .data:0x00A097E0; // type:object size:0x100 scope:global align:32
+int_sum_jukebox_reco_tex = .data:0x00A098E0; // type:object size:0x100 scope:global align:32
+int_sum_jukebox_glass_tex = .data:0x00A099E0; // type:object size:0x80 scope:global align:32
+int_sum_jukebox_v = .data:0x00A09A60; // type:object size:0x2A0 scope:global align:8
+int_sum_jukebox_on_model = .data:0x00A09D00; // type:object size:0x60 scope:global align:8
+int_sum_jukebox_evw_model = .data:0x00A09D60; // type:object size:0x58 scope:global align:8
+int_sum_jukebox_onT_model = .data:0x00A09DB8; // type:object size:0xD0 scope:global align:8
+int_sum_kabuto_pal = .data:0x00A09EA0; // type:object size:0x20 scope:global align:32
+int_sum_kabuto_hand_pic_ci4_pal = .data:0x00A09EC0; // type:object size:0x20 scope:global align:32
+int_sum_kabuto_body_txt = .data:0x00A09EE0; // type:object size:0x100 scope:global align:32
+int_sum_kabuto_base_txt = .data:0x00A09FE0; // type:object size:0x80 scope:global align:32
+int_sum_kabuto_top_txt = .data:0x00A0A060; // type:object size:0x200 scope:global align:32
+int_sum_kabuto_side_txt = .data:0x00A0A260; // type:object size:0x200 scope:global align:32
+int_sum_kabuto_hand_txt = .data:0x00A0A460; // type:object size:0x100 scope:global align:32
+int_sum_kabuto_v = .data:0x00A0A560; // type:object size:0x370 scope:global align:8
+int_sum_kabuto_side_model = .data:0x00A0A8D0; // type:object size:0x68 scope:global align:8
+int_sum_kabuto_glass_model = .data:0x00A0A938; // type:object size:0x68 scope:global align:8
+int_sum_kabuto_base_model = .data:0x00A0A9A0; // type:object size:0x98 scope:global align:8
+int_sum_kabuto_body_model = .data:0x00A0AA38; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_kabuto_tbl = .data:0x00A0AAA0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_kabuto_tbl = .data:0x00A0AAA8; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_kabuto_tbl = .data:0x00A0AAB4; // type:object size:0x18 scope:global align:4
+cKF_ds_int_sum_kabuto_tbl = .data:0x00A0AACC; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_kabuto = .data:0x00A0AB50; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kabuto_tbl = .data:0x00A0AB64; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_kabuto = .data:0x00A0ABA0; // type:object size:0x8 scope:global align:4
+int_sum_kamakiri_pal = .data:0x00A0ABC0; // type:object size:0x20 scope:global align:32
+int_sum_kamakiri_hand_pic_ci4_pal = .data:0x00A0ABE0; // type:object size:0x20 scope:global align:32
+int_sum_kamakiri_base_txt = .data:0x00A0AC00; // type:object size:0x80 scope:global align:32
+int_sum_kamakiri_top_txt = .data:0x00A0AC80; // type:object size:0x200 scope:global align:32
+int_sum_kamakiri_side_txt = .data:0x00A0AE80; // type:object size:0x200 scope:global align:32
+int_sum_kamakiri_body_txt = .data:0x00A0B080; // type:object size:0x180 scope:global align:32
+int_sum_kamakiri_hand_txt = .data:0x00A0B200; // type:object size:0x100 scope:global align:32
+int_sum_kamakiri_v = .data:0x00A0B300; // type:object size:0x3A0 scope:global align:8
+int_sum_kamakiri_side_model = .data:0x00A0B6A0; // type:object size:0x68 scope:global align:8
+int_sum_kamakiri_komado_model = .data:0x00A0B708; // type:object size:0x58 scope:global align:8
+int_sum_kamakiri_glass_model = .data:0x00A0B760; // type:object size:0x68 scope:global align:8
+int_sum_kamakiri_base_model = .data:0x00A0B7C8; // type:object size:0xA0 scope:global align:8
+int_sum_kamakiri_body_model = .data:0x00A0B868; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_kamakiri_tbl = .data:0x00A0B8C8; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_kamakiri_tbl = .data:0x00A0B8D0; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_kamakiri_tbl = .data:0x00A0B8DC; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_kamakiri_tbl = .data:0x00A0B8FC; // type:object size:0x7E scope:global align:4
+cKF_ba_r_int_sum_kamakiri = .data:0x00A0B97C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kamakiri_tbl = .data:0x00A0B990; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_kamakiri = .data:0x00A0B9D8; // type:object size:0x8 scope:global align:4
+int_sum_kanabun_pal = .data:0x00A0B9E0; // type:object size:0x20 scope:global align:32
+int_sum_kanabun_hand_pic_ci4_pal = .data:0x00A0BA00; // type:object size:0x20 scope:global align:32
+int_sum_kanabun_base_txt = .data:0x00A0BA20; // type:object size:0x80 scope:global align:32
+int_sum_kanabun_top_txt = .data:0x00A0BAA0; // type:object size:0x200 scope:global align:32
+int_sum_kanabun_side_txt = .data:0x00A0BCA0; // type:object size:0x200 scope:global align:32
+int_sum_kanabun_body_txt = .data:0x00A0BEA0; // type:object size:0x100 scope:global align:32
+int_sum_kanabun_hand_txt = .data:0x00A0BFA0; // type:object size:0x100 scope:global align:32
+int_sum_kanabun_v = .data:0x00A0C0A0; // type:object size:0x390 scope:global align:8
+int_sum_kanabun_side_model = .data:0x00A0C430; // type:object size:0x68 scope:global align:8
+int_sum_kanabun_komado_model = .data:0x00A0C498; // type:object size:0x58 scope:global align:8
+int_sum_kanabun_glass_model = .data:0x00A0C4F0; // type:object size:0x68 scope:global align:8
+int_sum_kanabun_base_model = .data:0x00A0C558; // type:object size:0x98 scope:global align:8
+int_sum_kanabun_body_model = .data:0x00A0C5F0; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_kanabun_tbl = .data:0x00A0C658; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_kanabun_tbl = .data:0x00A0C660; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_kanabun_tbl = .data:0x00A0C66C; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_kanabun_tbl = .data:0x00A0C68C; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_kanabun = .data:0x00A0C71C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kanabun_tbl = .data:0x00A0C730; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_kanabun = .data:0x00A0C778; // type:object size:0x8 scope:global align:4
+int_sum_kaseki_pal = .data:0x00A0C780; // type:object size:0x20 scope:local align:32
+int_sum_kaseki_glass_pic_ci4_pal = .data:0x00A0C7A0; // type:object size:0x20 scope:global align:32
+int_sum_kaseki_body_txt = .data:0x00A0C7C0; // type:object size:0x400 scope:global align:32
+int_sum_kaseki_side_txt = .data:0x00A0CBC0; // type:object size:0x200 scope:global align:32
+int_sum_kaseki_base_txt = .data:0x00A0CDC0; // type:object size:0x80 scope:global align:32
+int_sum_kaseki_top_txt = .data:0x00A0CE40; // type:object size:0x100 scope:global align:32
+int_sum_kaseki_glass_txt = .data:0x00A0CF40; // type:object size:0x80 scope:global align:32
+int_sum_kaseki_v = .data:0x00A0CFC0; // type:object size:0x2D0 scope:global align:8
+int_sum_kaseki_sakana_model = .data:0x00A0D290; // type:object size:0x70 scope:global align:8
+int_sum_kaseki_top_model = .data:0x00A0D300; // type:object size:0x58 scope:global align:8
+int_sum_kaseki_evw_model = .data:0x00A0D358; // type:object size:0x68 scope:global align:8
+int_sum_kaseki_base_model = .data:0x00A0D3C0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_kaseki_tbl = .data:0x00A0D450; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_kaseki_tbl = .data:0x00A0D458; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_kaseki_tbl = .data:0x00A0D46C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_kaseki_tbl = .data:0x00A0D480; // type:object size:0x8A scope:global align:4
+cKF_ba_r_int_sum_kaseki = .data:0x00A0D50C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kaseki_tbl = .data:0x00A0D520; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_kaseki = .data:0x00A0D55C; // type:object size:0x8 scope:global align:4
+int_sum_kiageha_pal = .data:0x00A0D580; // type:object size:0x20 scope:global align:32
+int_sum_kiageha_hand_pic_ci4_pal = .data:0x00A0D5A0; // type:object size:0x20 scope:global align:32
+int_sum_kiageha_body_txt = .data:0x00A0D5C0; // type:object size:0x200 scope:global align:32
+int_sum_kiageha_base_txt = .data:0x00A0D7C0; // type:object size:0x80 scope:global align:32
+int_sum_kiageha_top_txt = .data:0x00A0D840; // type:object size:0x200 scope:global align:32
+int_sum_kiageha_side_txt = .data:0x00A0DA40; // type:object size:0x200 scope:global align:32
+int_sum_kiageha_hand_txt = .data:0x00A0DC40; // type:object size:0x100 scope:global align:32
+int_sum_kiageha_v = .data:0x00A0DD40; // type:object size:0x430 scope:global align:8
+int_sum_kiageha_body_L_model = .data:0x00A0E170; // type:object size:0x58 scope:global align:8
+int_sum_kiageha_side_model = .data:0x00A0E1C8; // type:object size:0x68 scope:global align:8
+int_sum_kiageha_komado_model = .data:0x00A0E230; // type:object size:0x58 scope:global align:8
+int_sum_kiageha_glass_model = .data:0x00A0E288; // type:object size:0x68 scope:global align:8
+int_sum_kiageha_base_model = .data:0x00A0E2F0; // type:object size:0xA0 scope:global align:8
+int_sum_kiageha_body_R_model = .data:0x00A0E390; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_kiageha_tbl = .data:0x00A0E3E8; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_kiageha_tbl = .data:0x00A0E3F0; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_kiageha_tbl = .data:0x00A0E408; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_kiageha_tbl = .data:0x00A0E428; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_kiageha = .data:0x00A0E4C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kiageha_tbl = .data:0x00A0E4D8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_kiageha = .data:0x00A0E538; // type:object size:0x8 scope:global align:4
+int_sum_kingyo_pal = .data:0x00A0E540; // type:object size:0x20 scope:local align:32
+int_sum_kingyo_top_pic_ci4_pal = .data:0x00A0E560; // type:object size:0x20 scope:global align:32
+int_sum_kingyo_front_pic_ci4_pal = .data:0x00A0E580; // type:object size:0x20 scope:global align:32
+int_sum_kingyo_body_txt = .data:0x00A0E5A0; // type:object size:0x200 scope:global align:32
+int_sum_kingyo_kuchi_txt = .data:0x00A0E7A0; // type:object size:0x80 scope:global align:32
+int_sum_kingyo_etc_txt = .data:0x00A0E820; // type:object size:0x80 scope:global align:32
+int_sum_kingyo_top_txt = .data:0x00A0E8A0; // type:object size:0x80 scope:global align:32
+int_sum_kingyo_front_txt = .data:0x00A0E920; // type:object size:0x200 scope:global align:32
+int_sum_kingyo_v = .data:0x00A0EB20; // type:object size:0x320 scope:global align:8
+int_sum_kingyo_sakana_model = .data:0x00A0EE40; // type:object size:0x70 scope:global align:8
+int_sum_kingyo_glass_model = .data:0x00A0EEB0; // type:object size:0x68 scope:global align:8
+int_sum_kingyo_body_model = .data:0x00A0EF18; // type:object size:0x68 scope:global align:8
+int_sum_kingyo_base_model = .data:0x00A0EF80; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sum_kingyo_tbl = .data:0x00A0EFF8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_kingyo_tbl = .data:0x00A0F000; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_kingyo_tbl = .data:0x00A0F014; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_kingyo_tbl = .data:0x00A0F028; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_sum_kingyo = .data:0x00A0F0DC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kingyo_tbl = .data:0x00A0F0F0; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_kingyo = .data:0x00A0F12C; // type:object size:0x8 scope:global align:4
+int_sum_kirigirisu_pal = .data:0x00A0F140; // type:object size:0x20 scope:global align:32
+int_sum_kirigirisu_hand_pic_ci4_pal = .data:0x00A0F160; // type:object size:0x20 scope:global align:32
+int_sum_kirigirisu_body_txt = .data:0x00A0F180; // type:object size:0x180 scope:global align:32
+int_sum_kirigirisu_base_txt = .data:0x00A0F300; // type:object size:0x80 scope:global align:32
+int_sum_kirigirisu_top_txt = .data:0x00A0F380; // type:object size:0x200 scope:global align:32
+int_sum_kirigirisu_side_txt = .data:0x00A0F580; // type:object size:0x200 scope:global align:32
+int_sum_kirigirisu_hand_txt = .data:0x00A0F780; // type:object size:0x100 scope:global align:32
+int_sum_kirigirisu_v = .data:0x00A0F880; // type:object size:0x3E0 scope:global align:8
+int_sum_kirigirisu_side_model = .data:0x00A0FC60; // type:object size:0x68 scope:global align:8
+int_sum_kirigirisu_komado_model = .data:0x00A0FCC8; // type:object size:0x58 scope:global align:8
+int_sum_kirigirisu_glass_model = .data:0x00A0FD20; // type:object size:0x68 scope:global align:8
+int_sum_kirigirisu_base_model = .data:0x00A0FD88; // type:object size:0xA0 scope:global align:8
+int_sum_kirigirisu_body_model = .data:0x00A0FE28; // type:object size:0x60 scope:global align:8
+int_sum_kirigirisu_body_R_model = .data:0x00A0FE88; // type:object size:0x58 scope:global align:8
+int_sum_kirigirisu_body_L_model = .data:0x00A0FEE0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_kirigirisu_tbl = .data:0x00A0FF38; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_kirigirisu_tbl = .data:0x00A0FF44; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_kirigirisu_tbl = .data:0x00A0FF5C; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_kirigirisu_tbl = .data:0x00A0FF88; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_sum_kirigirisu = .data:0x00A10060; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kirigirisu_tbl = .data:0x00A10074; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_kirigirisu = .data:0x00A100EC; // type:object size:0x8 scope:global align:4
+int_sum_kisha_pal = .data:0x00A10100; // type:object size:0x20 scope:global align:32
+int_sum_kisha_kishafront_tex_txt = .data:0x00A10120; // type:object size:0x100 scope:global align:32
+int_sum_kisha_kishaside_tex_txt = .data:0x00A10220; // type:object size:0x100 scope:global align:32
+int_sum_kisha_kishatop_tex_txt = .data:0x00A10320; // type:object size:0x100 scope:global align:32
+int_sum_kisha_nidai_tex_txt = .data:0x00A10420; // type:object size:0x100 scope:global align:32
+int_sum_kisha_top_tex_txt = .data:0x00A10520; // type:object size:0x200 scope:global align:32
+int_sum_kisha_yama_tex_txt = .data:0x00A10720; // type:object size:0x200 scope:global align:32
+int_sum_kisha_v = .data:0x00A10920; // type:object size:0x6F0 scope:global align:8
+int_sum_kisha_kisha_model = .data:0x00A11010; // type:object size:0x110 scope:global align:8
+int_sum_kisha_base_model = .data:0x00A11120; // type:object size:0x108 scope:global align:8
+cKF_ckcb_r_int_sum_kisha_tbl = .data:0x00A11228; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_kisha_tbl = .data:0x00A1122C; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_kisha_tbl = .data:0x00A11230; // type:object size:0x16 scope:global align:4
+cKF_ds_int_sum_kisha_tbl = .data:0x00A11248; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_sum_kisha = .data:0x00A11254; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_kisha_tbl = .data:0x00A11268; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_kisha = .data:0x00A1128C; // type:object size:0x8 scope:global align:4
+int_sum_kitchair01_pal = .data:0x00A112A0; // type:object size:0x20 scope:global align:32
+int_sum_kitchair01_board_tex = .data:0x00A112C0; // type:object size:0x180 scope:global align:32
+int_sum_kitchair01_seat_tex = .data:0x00A11440; // type:object size:0x80 scope:global align:32
+int_sum_kitchair01_seatside_tex = .data:0x00A114C0; // type:object size:0x40 scope:global align:32
+int_sum_kitchair01_side_tex = .data:0x00A11500; // type:object size:0x40 scope:global align:32
+int_sum_kitchair01_backf_tex = .data:0x00A11540; // type:object size:0x200 scope:global align:32
+int_sum_kitchair01_frontf_tex = .data:0x00A11740; // type:object size:0x100 scope:global align:32
+int_sum_kitchair01_support_tex = .data:0x00A11840; // type:object size:0x80 scope:global align:32
+int_sum_kitchair01_v = .data:0x00A118C0; // type:object size:0x480 scope:global align:8
+it_sum_kitchair01_on_model = .data:0x00A11D40; // type:object size:0xA8 scope:global align:8
+it_sum_kitchair01_onT_model = .data:0x00A11DE8; // type:object size:0xD0 scope:global align:8
+int_sum_kittable01_pal = .data:0x00A11EC0; // type:object size:0x20 scope:global align:32
+int_sum_kittable01_side_tex = .data:0x00A11EE0; // type:object size:0x80 scope:global align:32
+int_sum_kittable01_top_tex = .data:0x00A11F60; // type:object size:0x200 scope:global align:32
+int_sum_kittable01_draw_tex = .data:0x00A12160; // type:object size:0x80 scope:global align:32
+int_sum_kittable01_foot_tex = .data:0x00A121E0; // type:object size:0x180 scope:global align:32
+int_sum_kittable01_v = .data:0x00A12360; // type:object size:0x320 scope:global align:8
+int_sum_kittable01_on_model = .data:0x00A12680; // type:object size:0xA0 scope:global align:8
+int_sum_kittable01_onT_model = .data:0x00A12720; // type:object size:0x68 scope:global align:8
+int_sum_koi_pal = .data:0x00A127A0; // type:object size:0x20 scope:local align:32
+int_sum_koi_glass_pic_ci4_pal = .data:0x00A127C0; // type:object size:0x20 scope:global align:32
+int_sum_koi_body_txt = .data:0x00A127E0; // type:object size:0x300 scope:global align:32
+int_sum_koi_side_txt = .data:0x00A12AE0; // type:object size:0x200 scope:global align:32
+int_sum_koi_base_txt = .data:0x00A12CE0; // type:object size:0x80 scope:global align:32
+int_sum_koi_top_txt = .data:0x00A12D60; // type:object size:0x100 scope:global align:32
+int_sum_koi_glass_txt = .data:0x00A12E60; // type:object size:0x100 scope:global align:32
+int_sum_koi_v = .data:0x00A12F60; // type:object size:0x330 scope:global align:8
+int_sum_koi_sakana_model = .data:0x00A13290; // type:object size:0x70 scope:global align:8
+int_sum_koi_top_model = .data:0x00A13300; // type:object size:0x58 scope:global align:8
+int_sum_koi_evw_model = .data:0x00A13358; // type:object size:0x68 scope:global align:8
+int_sum_koi_base_model = .data:0x00A133C0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_koi_tbl = .data:0x00A13450; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_koi_tbl = .data:0x00A13458; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_koi_tbl = .data:0x00A1346C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_koi_tbl = .data:0x00A13480; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_koi = .data:0x00A13504; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_koi_tbl = .data:0x00A13518; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_koi = .data:0x00A13554; // type:object size:0x8 scope:global align:4
+int_sum_kokuban_pal = .data:0x00A13560; // type:object size:0x20 scope:global align:32
+int_sum_kokuban_back_tex = .data:0x00A13580; // type:object size:0x100 scope:global align:32
+int_sum_kokuban_front_tex = .data:0x00A13680; // type:object size:0x300 scope:global align:32
+int_sum_kokuban_stand_tex = .data:0x00A13980; // type:object size:0x180 scope:global align:32
+int_sum_kokuban_sab_tex = .data:0x00A13B00; // type:object size:0x80 scope:global align:32
+int_sum_kokuban_koro_tex = .data:0x00A13B80; // type:object size:0x80 scope:global align:32
+int_sum_kokuban_choku_tex = .data:0x00A13C00; // type:object size:0x80 scope:global align:32
+int_sum_kokuban_kesi_tex = .data:0x00A13C80; // type:object size:0x80 scope:global align:32
+int_sum_kokuban_v = .data:0x00A13D00; // type:object size:0x4C0 scope:global align:8
+int_sum_kokuban_on_model = .data:0x00A141C0; // type:object size:0xC0 scope:global align:8
+int_sum_kokuban_onT_model = .data:0x00A14280; // type:object size:0xC0 scope:global align:8
+int_sum_koorogi_pal = .data:0x00A14340; // type:object size:0x20 scope:global align:32
+int_sum_koorogi_hand_pic_ci4_pal = .data:0x00A14360; // type:object size:0x20 scope:global align:32
+int_sum_koorogi_body_txt = .data:0x00A14380; // type:object size:0x200 scope:global align:32
+int_sum_koorogi_base_txt = .data:0x00A14580; // type:object size:0x80 scope:global align:32 data:string
+int_sum_koorogi_top_txt = .data:0x00A14600; // type:object size:0x200 scope:global align:32
+int_sum_koorogi_side_txt = .data:0x00A14800; // type:object size:0x200 scope:global align:32
+int_sum_koorogi_hand_txt = .data:0x00A14A00; // type:object size:0x100 scope:global align:32
+int_sum_koorogi_v = .data:0x00A14B00; // type:object size:0x400 scope:global align:8
+int_sum_koorogi_side_model = .data:0x00A14F00; // type:object size:0x68 scope:global align:8
+int_sum_koorogi_komado_model = .data:0x00A14F68; // type:object size:0x58 scope:global align:8
+int_sum_koorogi_glass_model = .data:0x00A14FC0; // type:object size:0x68 scope:global align:8
+int_sum_koorogi_base_model = .data:0x00A15028; // type:object size:0xA0 scope:global align:8
+int_sum_koorogi_body_model = .data:0x00A150C8; // type:object size:0x60 scope:global align:8
+int_sum_koorogi_body_R_model = .data:0x00A15128; // type:object size:0x58 scope:global align:8
+int_sum_koorogi_body_L_model = .data:0x00A15180; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_koorogi_tbl = .data:0x00A151D8; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_koorogi_tbl = .data:0x00A151E4; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_koorogi_tbl = .data:0x00A151FC; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_koorogi_tbl = .data:0x00A15228; // type:object size:0xFC scope:global align:4
+cKF_ba_r_int_sum_koorogi = .data:0x00A15324; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_koorogi_tbl = .data:0x00A15338; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_koorogi = .data:0x00A153B0; // type:object size:0x8 scope:global align:4
+int_sum_liccabed_pal = .data:0x00A153C0; // type:object size:0x20 scope:global align:32
+int_sum_liccabed_mat_tex = .data:0x00A153E0; // type:object size:0x300 scope:global align:32
+int_sum_liccabed_head_tex = .data:0x00A156E0; // type:object size:0x200 scope:global align:32
+int_sum_liccabed_foot_tex = .data:0x00A158E0; // type:object size:0x80 scope:global align:32
+int_sum_liccabed_pillow_tex = .data:0x00A15960; // type:object size:0x100 scope:global align:32
+int_sum_liccabed_v = .data:0x00A15A60; // type:object size:0x400 scope:global align:8
+int_sum_liccabed_on_model = .data:0x00A15E60; // type:object size:0x88 scope:global align:8
+int_sum_liccabed_onT_model = .data:0x00A15EE8; // type:object size:0xA0 scope:global align:8
+int_sum_liccachair_pal = .data:0x00A15FA0; // type:object size:0x20 scope:global align:32
+int_sum_liccachair_seat_tex = .data:0x00A15FC0; // type:object size:0x100 scope:global align:32
+int_sum_liccachair_splat_tex = .data:0x00A160C0; // type:object size:0x200 scope:global align:32
+int_sum_liccachair_leg_tex = .data:0x00A162C0; // type:object size:0x200 scope:global align:32
+int_sum_liccachair_seatside_tex = .data:0x00A164C0; // type:object size:0x100 scope:global align:32
+int_sum_liccachair_v = .data:0x00A165C0; // type:object size:0x3B0 scope:global align:8
+int_sum_liccachair_on_model = .data:0x00A16970; // type:object size:0x88 scope:global align:8
+int_sum_liccachair_onT_model = .data:0x00A169F8; // type:object size:0xB8 scope:global align:8
+int_sum_liccachest_pal = .data:0x00A16AC0; // type:object size:0x20 scope:global align:32
+int_sum_liccachest_hiki_tex_txt = .data:0x00A16AE0; // type:object size:0x180 scope:global align:32
+int_sum_liccachest_side_tex_txt = .data:0x00A16C60; // type:object size:0x200 scope:global align:32
+int_sum_liccachest_top_tex_txt = .data:0x00A16E60; // type:object size:0x80 scope:global align:32
+int_sum_liccachest_front_tex_txt = .data:0x00A16EE0; // type:object size:0x400 scope:global align:32
+int_sum_liccachest_v = .data:0x00A172E0; // type:object size:0x460 scope:global align:8
+int_sum_liccachest_doorL_model = .data:0x00A17740; // type:object size:0x80 scope:global align:8
+int_sum_liccachest_base_model = .data:0x00A177C0; // type:object size:0xC0 scope:global align:8
+int_sum_liccachest_doorR_model = .data:0x00A17880; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_sum_liccachest_tbl = .data:0x00A17900; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_liccachest_tbl = .data:0x00A17908; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_liccachest_tbl = .data:0x00A17920; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_liccachest_tbl = .data:0x00A1792C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_liccachest = .data:0x00A179C8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_liccachest_tbl = .data:0x00A179DC; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_liccachest = .data:0x00A17A18; // type:object size:0x8 scope:global align:4
+int_sum_liccakitchen_pal = .data:0x00A17A20; // type:object size:0x20 scope:global align:32
+int_sum_liccakitchen_side_tex = .data:0x00A17A40; // type:object size:0x100 scope:global align:32
+int_sum_liccakitchen_tail_tex = .data:0x00A17B40; // type:object size:0x80 scope:global align:32
+int_sum_liccakitchen_top_tex = .data:0x00A17BC0; // type:object size:0x100 scope:global align:32
+int_sum_liccakitchen_back_tex = .data:0x00A17CC0; // type:object size:0x180 scope:global align:32
+int_sum_liccakitchen_jyagu_tex = .data:0x00A17E40; // type:object size:0x80 scope:global align:32
+int_sum_liccakitchen_etc_tex = .data:0x00A17EC0; // type:object size:0x100 scope:global align:32
+int_sum_liccakitchen_front_tex = .data:0x00A17FC0; // type:object size:0x200 scope:global align:32
+int_sum_liccakitchen_v = .data:0x00A181C0; // type:object size:0x3A0 scope:global align:8
+int_sum_liccakitchen_on_model = .data:0x00A18560; // type:object size:0x98 scope:global align:8
+int_sum_liccakitchen_onT_model = .data:0x00A185F8; // type:object size:0xD8 scope:global align:8
+int_sum_liccalanp_pal = .data:0x00A186E0; // type:object size:0x20 scope:global align:32
+int_sum_liccalanp_shade_tex = .data:0x00A18700; // type:object size:0x100 scope:global align:32
+int_sum_liccalanp_stand_tex = .data:0x00A18800; // type:object size:0x180 scope:global align:32
+int_sum_liccalanp_hiki_tex = .data:0x00A18980; // type:object size:0x80 scope:global align:32
+int_sum_liccalanp_base_tex = .data:0x00A18A00; // type:object size:0x100 scope:global align:32
+int_sum_liccalanp_v = .data:0x00A18B00; // type:object size:0x3D0 scope:global align:8
+int_sum_liccalanp_onT_model = .data:0x00A18ED0; // type:object size:0x70 scope:global align:8
+int_sum_liccalanp_offT_model = .data:0x00A18F40; // type:object size:0x100 scope:global align:8
+int_sum_licca_lowchest_pal = .data:0x00A19040; // type:object size:0x20 scope:global align:32
+int_sum_liccalowchest_hiki_tex_txt = .data:0x00A19060; // type:object size:0x100 scope:global align:32
+int_sum_liccalowchest_in_tex_txt = .data:0x00A19160; // type:object size:0x80 scope:global align:32
+int_sum_liccalowchest_front_tex_txt = .data:0x00A191E0; // type:object size:0x400 scope:global align:32
+int_sum_liccalowchest_side_tex_txt = .data:0x00A195E0; // type:object size:0x100 scope:global align:32
+int_sum_liccalowchest_top_tex_txt = .data:0x00A196E0; // type:object size:0x80 scope:global align:32
+int_sum_liccalowchest_v = .data:0x00A19760; // type:object size:0x3C0 scope:global align:8
+int_sum_liccalowchest_door_model = .data:0x00A19B20; // type:object size:0x98 scope:global align:8
+int_sum_licca_lowchest_base_model = .data:0x00A19BB8; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_sum_liccalowchest_tbl = .data:0x00A19C60; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_liccalowchest_tbl = .data:0x00A19C64; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_liccalowchest_tbl = .data:0x00A19C78; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_liccalowchest_tbl = .data:0x00A19C80; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_liccalowchest = .data:0x00A19CEC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_liccalowchest_tbl = .data:0x00A19D00; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_liccalowchest = .data:0x00A19D24; // type:object size:0x8 scope:global align:4
+int_sum_liccalowtable_pal = .data:0x00A19D40; // type:object size:0x20 scope:global align:32
+int_sum_liccalowtable_top_tex = .data:0x00A19D60; // type:object size:0x200 scope:global align:32
+int_sum_liccalowtable_side_tex = .data:0x00A19F60; // type:object size:0x100 scope:global align:32
+int_sum_liccalowtable_leg_tex = .data:0x00A1A060; // type:object size:0x100 scope:global align:32
+int_sum_liccalowtable_shelf_tex = .data:0x00A1A160; // type:object size:0x100 scope:global align:32
+int_sum_liccalowtable_v = .data:0x00A1A260; // type:object size:0x340 scope:global align:8
+int_sum_liccalowtable_on_model = .data:0x00A1A5A0; // type:object size:0x58 scope:global align:8
+int_sum_liccalowtable_onT_model = .data:0x00A1A5F8; // type:object size:0xD8 scope:global align:8
+int_sum_licca_mirror01_pal = .data:0x00A1A6E0; // type:object size:0x20 scope:global align:32
+int_sum_liccamirror_glass_tex_rgb_ci4_pal = .data:0x00A1A700; // type:object size:0x20 scope:global align:32
+int_sum_liccamirror_front_tex = .data:0x00A1A720; // type:object size:0x400 scope:global align:32
+int_sum_liccamirror_side_tex = .data:0x00A1AB20; // type:object size:0x100 scope:global align:32
+int_sum_liccamirror_top_tex = .data:0x00A1AC20; // type:object size:0x80 scope:global align:32
+int_sum_liccamirror_glass_tex = .data:0x00A1ACA0; // type:object size:0x200 scope:global align:32
+int_sum_liccamirror_v = .data:0x00A1AEA0; // type:object size:0x280 scope:global align:8
+int_sum_liccamirror_on_model = .data:0x00A1B120; // type:object size:0x58 scope:global align:8
+int_sum_liccamirror_env_model = .data:0x00A1B178; // type:object size:0x58 scope:global align:8
+int_sum_liccamirror_onT_model = .data:0x00A1B1D0; // type:object size:0xB0 scope:global align:8
+int_sum_liccapiano_pal = .data:0x00A1B280; // type:object size:0x20 scope:global align:32
+int_sum_liccapiano_top_txt = .data:0x00A1B2A0; // type:object size:0x300 scope:global align:32
+int_sum_liccapiano_side_txt = .data:0x00A1B5A0; // type:object size:0x100 scope:global align:32
+int_sum_liccapiano_lid_txt = .data:0x00A1B6A0; // type:object size:0x200 scope:global align:32
+int_sum_liccapiano_stand_txt = .data:0x00A1B8A0; // type:object size:0x80 scope:global align:32
+int_sum_liccapiano_pedal_txt = .data:0x00A1B920; // type:object size:0x40 scope:global align:32
+int_sum_liccapiano_pin_txt = .data:0x00A1B960; // type:object size:0x40 scope:global align:32
+int_sum_liccapiano_key_txt = .data:0x00A1B9A0; // type:object size:0x100 scope:global align:32
+int_sum_liccapiano_v = .data:0x00A1BAA0; // type:object size:0x490 scope:global align:8
+int_sum_liccapiano_on_model = .data:0x00A1BF30; // type:object size:0x60 scope:global align:8
+int_sum_liccapiano_onT_model = .data:0x00A1BF90; // type:object size:0x120 scope:global align:8
+int_sum_liccasofa_pal = .data:0x00A1C0C0; // type:object size:0x20 scope:global align:32
+int_sum_liccasofa_front_txt = .data:0x00A1C0E0; // type:object size:0x400 scope:global align:32
+int_sum_liccasofa_back_txt = .data:0x00A1C4E0; // type:object size:0x100 scope:global align:32
+int_sum_liccasofa_side_txt = .data:0x00A1C5E0; // type:object size:0x180 scope:global align:32
+int_sum_liccasofa_frontside_txt = .data:0x00A1C760; // type:object size:0x100 scope:global align:32
+int_sum_liccasofa_backside_txt = .data:0x00A1C860; // type:object size:0x80 scope:global align:32
+int_sum_liccasofa_v = .data:0x00A1C8E0; // type:object size:0x3A0 scope:global align:8
+int_sum_liccasofa_on_model = .data:0x00A1CC80; // type:object size:0x108 scope:global align:8
+int_sum_liccatable_pal = .data:0x00A1CDA0; // type:object size:0x20 scope:global align:32
+int_sum_liccatable_top_txt = .data:0x00A1CDC0; // type:object size:0x200 scope:global align:32
+int_sum_liccatable_leg_txt = .data:0x00A1CFC0; // type:object size:0x300 scope:global align:32
+int_sum_liccatable_side_txt = .data:0x00A1D2C0; // type:object size:0x80 scope:global align:32
+int_sum_liccatable_v = .data:0x00A1D340; // type:object size:0x210 scope:global align:8
+int_sum_liccatable_on_model = .data:0x00A1D550; // type:object size:0x88 scope:global align:8
+int_sum_liccatable_onT_model = .data:0x00A1D5D8; // type:object size:0x78 scope:global align:8
+int_sum_log_bed01_pal = .data:0x00A1D660; // type:object size:0x20 scope:global align:32
+int_sum_log_bed01_stand_tex = .data:0x00A1D680; // type:object size:0x80 scope:global align:32
+int_sum_log_bed01_head_tex = .data:0x00A1D700; // type:object size:0x300 scope:global align:32
+int_sum_log_bed01_top_tex = .data:0x00A1DA00; // type:object size:0x300 scope:global align:32
+int_sum_log_bed01_pillow_tex = .data:0x00A1DD00; // type:object size:0x80 scope:global align:32
+int_sum_log_bed01_v = .data:0x00A1DD80; // type:object size:0x2E0 scope:global align:8
+int_sum_log_bed01_on_model = .data:0x00A1E060; // type:object size:0x80 scope:global align:8
+int_sum_log_bed01_onT_model = .data:0x00A1E0E0; // type:object size:0xA8 scope:global align:8
+int_sum_log_chair01_pal = .data:0x00A1E1A0; // type:object size:0x20 scope:global align:32
+int_sum_log_chair01_head_tex = .data:0x00A1E1C0; // type:object size:0x400 scope:global align:32
+int_sum_log_chair01_cusion_tex = .data:0x00A1E5C0; // type:object size:0x80 scope:global align:32
+int_sum_log_chair01_seat_tex = .data:0x00A1E640; // type:object size:0x200 scope:global align:32
+int_sum_log_chair01_stand_tex = .data:0x00A1E840; // type:object size:0x100 scope:global align:32
+int_sum_log_chair01_cusion2_tex = .data:0x00A1E940; // type:object size:0x80 scope:global align:32
+int_sum_log_chair01_v = .data:0x00A1E9C0; // type:object size:0x410 scope:global align:8
+int_sum_log_chair01_on_model = .data:0x00A1EDD0; // type:object size:0xB8 scope:global align:8
+int_sum_log_chair01_onT_model = .data:0x00A1EE88; // type:object size:0x98 scope:global align:8
+int_sum_log_chair02_pal = .data:0x00A1EF20; // type:object size:0x20 scope:global align:32
+int_sum_log_chair02_head1_tex = .data:0x00A1EF40; // type:object size:0x200 scope:global align:32
+int_sum_log_chair02_seat_tex = .data:0x00A1F140; // type:object size:0x100 scope:global align:32
+int_sum_log_chair02_stand_tex = .data:0x00A1F240; // type:object size:0x100 scope:global align:32
+int_sum_log_chair02_cusion_tex = .data:0x00A1F340; // type:object size:0x80 scope:global align:32
+int_sum_log_chair02_head2_tex = .data:0x00A1F3C0; // type:object size:0x100 scope:global align:32
+int_sum_log_chair02_v = .data:0x00A1F4C0; // type:object size:0x2F0 scope:global align:8
+int_sum_log_chair02_on_model = .data:0x00A1F7B0; // type:object size:0x80 scope:global align:8
+int_sum_log_chair02_onT_model = .data:0x00A1F830; // type:object size:0xC0 scope:global align:8
+int_sum_log_chair03_pal = .data:0x00A1F900; // type:object size:0x20 scope:global align:32
+int_sum_log_chair03_seat_tex = .data:0x00A1F920; // type:object size:0x100 scope:global align:32
+int_sum_log_chair03_seatside_tex = .data:0x00A1FA20; // type:object size:0x80 scope:global align:32
+int_sum_log_chair03_head_tex = .data:0x00A1FAA0; // type:object size:0x100 scope:global align:32
+int_sum_log_chair03_headtop_tex = .data:0x00A1FBA0; // type:object size:0x80 scope:global align:32
+int_sum_log_chair03_foot_tex = .data:0x00A1FC20; // type:object size:0x100 scope:global align:32
+int_sum_log_chair03_v = .data:0x00A1FD20; // type:object size:0x420 scope:global align:8
+int_sum_log_chair03_on_model = .data:0x00A20140; // type:object size:0x78 scope:global align:8
+int_sum_log_chair03_onT_model = .data:0x00A201B8; // type:object size:0xD0 scope:global align:8
+int_sum_log_chest01_pal = .data:0x00A202A0; // type:object size:0x20 scope:global align:32
+int_sum_log_chest01_draw_tex_txt = .data:0x00A202C0; // type:object size:0x80 scope:global align:32
+int_sum_log_chest01_drawer_tex_txt = .data:0x00A20340; // type:object size:0x80 scope:global align:32
+int_sum_log_chest01_drawerin_tex_txt = .data:0x00A203C0; // type:object size:0x100 scope:global align:32
+int_sum_log_chest01_back_tex_txt = .data:0x00A204C0; // type:object size:0x180 scope:global align:32
+int_sum_log_chest01_front_tex_txt = .data:0x00A20640; // type:object size:0x300 scope:global align:32
+int_sum_log_chest01_top_tex_txt = .data:0x00A20940; // type:object size:0x80 scope:global align:32
+int_sum_log_chest01_v = .data:0x00A209C0; // type:object size:0x470 scope:global align:8
+int_sum_log_chest01_door_model = .data:0x00A20E30; // type:object size:0xD8 scope:global align:8
+int_sum_log_chest01_base_model = .data:0x00A20F08; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_int_sum_log_chest01_tbl = .data:0x00A20FD0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_log_chest01_tbl = .data:0x00A20FD4; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_log_chest01_tbl = .data:0x00A20FE8; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_log_chest01_tbl = .data:0x00A20FF0; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_log_chest01 = .data:0x00A2105C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_log_chest01_tbl = .data:0x00A21070; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_log_chest01 = .data:0x00A21094; // type:object size:0x8 scope:global align:4
+int_sum_log_chest02_pal = .data:0x00A210A0; // type:object size:0x20 scope:global align:32
+int_sum_log_chest02_drawside_tex_txt = .data:0x00A210C0; // type:object size:0x80 scope:global align:32
+int_sum_log_chest02_door_tex_txt = .data:0x00A21140; // type:object size:0x80 scope:global align:32
+int_sum_log_chest02_draw_tex_txt = .data:0x00A211C0; // type:object size:0x80 scope:global align:32
+int_sum_log_chest02_back_tex_txt = .data:0x00A21240; // type:object size:0x100 scope:global align:32
+int_sum_log_chest02_top_tex_txt = .data:0x00A21340; // type:object size:0x100 scope:global align:32
+int_sum_log_chest02_front_tex_txt = .data:0x00A21440; // type:object size:0x200 scope:global align:32
+int_sum_log_chest02_v = .data:0x00A21640; // type:object size:0x5C0 scope:global align:8
+int_sum_lg_ch2_doorL_model = .data:0x00A21C00; // type:object size:0xA8 scope:global align:8
+int_sum_lg_ch2_base_model = .data:0x00A21CA8; // type:object size:0xF0 scope:global align:8
+int_sum_lg_ch2_doorR_model = .data:0x00A21D98; // type:object size:0xA0 scope:global align:8
+cKF_ckcb_r_int_sum_log_chest02_tbl = .data:0x00A21E38; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_log_chest02_tbl = .data:0x00A21E40; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_log_chest02_tbl = .data:0x00A21E58; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_log_chest02_tbl = .data:0x00A21E64; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_log_chest02 = .data:0x00A21F00; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_log_chest02_tbl = .data:0x00A21F14; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_log_chest02 = .data:0x00A21F50; // type:object size:0x8 scope:global align:4
+int_sum_log_chest03_pal = .data:0x00A21F60; // type:object size:0x20 scope:global align:32
+int_sum_log_chest03_back_tex = .data:0x00A21F80; // type:object size:0x100 scope:global align:32
+int_sum_log_chest03_front_tex = .data:0x00A22080; // type:object size:0x200 scope:global align:32
+int_sum_log_chest03_top_tex = .data:0x00A22280; // type:object size:0x100 scope:global align:32
+int_sum_log_chest03_top2_tex = .data:0x00A22380; // type:object size:0x80 scope:global align:32
+int_sum_log_chest03_draw_tex = .data:0x00A22400; // type:object size:0x80 scope:global align:32
+int_sum_log_chest03_side_tex = .data:0x00A22480; // type:object size:0x100 scope:global align:32
+int_sum_log_chest03_foot_tex = .data:0x00A22580; // type:object size:0x100 scope:global align:32
+int_sum_log_chest03_book_tex = .data:0x00A22680; // type:object size:0x80 scope:global align:32
+int_sum_log_chest03_book2_tex = .data:0x00A22700; // type:object size:0x80 scope:global align:32
+int_sum_log_chest03_v = .data:0x00A22780; // type:object size:0x4C0 scope:global align:8
+int_sum_log_chest03_on_model = .data:0x00A22C40; // type:object size:0xE0 scope:global align:8
+int_sum_log_chest03_onT_model = .data:0x00A22D20; // type:object size:0xC8 scope:global align:8
+int_sum_hatoclock_pal = .data:0x00A22E00; // type:object size:0x20 scope:global align:32
+int_sum_log_clk_pal = .data:0x00A22E20; // type:object size:0x20 scope:global align:32
+int_sum_hatoclock_hari_tex_txt = .data:0x00A22E40; // type:object size:0x80 scope:global align:32
+int_sum_log_hatoclk_stand_tex_txt = .data:0x00A22EC0; // type:object size:0x100 scope:global align:32
+int_sum_log_hatoclk_base_tex_txt = .data:0x00A22FC0; // type:object size:0x80 scope:global align:32
+int_sum_log_hatoclk_top_tex_txt = .data:0x00A23040; // type:object size:0x80 scope:global align:32
+int_sum_log_hatoclk_front_tex_txt = .data:0x00A230C0; // type:object size:0x300 scope:global align:32
+int_sum_log_hatoclk_tana_tex_txt = .data:0x00A233C0; // type:object size:0x80 scope:global align:32
+int_sum_hatoclock_jyabara_tex_txt = .data:0x00A23440; // type:object size:0x80 scope:global align:32
+int_sum_hatoclock_hatoside_tex_txt = .data:0x00A234C0; // type:object size:0x80 scope:global align:32
+int_sum_hatoclock_hatotop_tex_txt = .data:0x00A23540; // type:object size:0x80 scope:global align:32
+int_sum_log_hatoclk_door_tex_txt = .data:0x00A235C0; // type:object size:0x80 scope:global align:32
+int_sum_log_hatoclk_v = .data:0x00A23640; // type:object size:0x500 scope:global align:8
+int_sum_log_hatoclk_long_model = .data:0x00A23B40; // type:object size:0x60 scope:global align:8
+int_sum_log_hatoclk_base_model = .data:0x00A23BA0; // type:object size:0x118 scope:global align:8
+int_sum_log_hatoclk_short_model = .data:0x00A23CB8; // type:object size:0x60 scope:global align:8
+int_sum_log_hatoclk_hato1_model = .data:0x00A23D18; // type:object size:0x110 scope:global align:8
+int_sum_log_hatoclk_door_model = .data:0x00A23E28; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_log_hatoclk_tbl = .data:0x00A23E80; // type:object size:0x9 scope:global align:4
+cKF_kn_int_sum_log_hatoclk_tbl = .data:0x00A23E8C; // type:object size:0x4 scope:global align:4
+cKF_c_int_sum_log_hatoclk_tbl = .data:0x00A23E90; // type:object size:0x38 scope:global align:4
+cKF_ds_int_sum_log_hatoclk_tbl = .data:0x00A23EC8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_log_hatoclk = .data:0x00A23F4C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_log_hatoclk_tbl = .data:0x00A23F60; // type:object size:0x6C scope:global align:4
+cKF_bs_r_int_sum_log_hatoclk = .data:0x00A23FCC; // type:object size:0x8 scope:global align:4
+int_sum_log_table01_pal = .data:0x00A23FE0; // type:object size:0x20 scope:global align:32
+int_sum_log_table01_top_tex = .data:0x00A24000; // type:object size:0x400 scope:global align:32
+int_sum_log_table01_side_tex = .data:0x00A24400; // type:object size:0x100 scope:global align:32
+int_sum_log_table01_wood_tex = .data:0x00A24500; // type:object size:0x100 scope:global align:32
+int_sum_log_table01_v = .data:0x00A24600; // type:object size:0x320 scope:global align:8
+int_sum_log_table01_on_model = .data:0x00A24920; // type:object size:0x98 scope:global align:8
+int_sum_log_table01_onT_model = .data:0x00A249B8; // type:object size:0x78 scope:global align:8
+int_sum_log_table02_pal = .data:0x00A24A40; // type:object size:0x20 scope:global align:32
+int_sum_log_table02_top_tex = .data:0x00A24A60; // type:object size:0x400 scope:global align:32
+int_sum_log_table02_side_tex = .data:0x00A24E60; // type:object size:0x100 scope:global align:32
+int_sum_log_table02_stand_tex = .data:0x00A24F60; // type:object size:0x100 scope:global align:32
+int_sum_log_table02_v = .data:0x00A25060; // type:object size:0x3E0 scope:global align:8
+int_sum_log_table02_on_model = .data:0x00A25440; // type:object size:0x60 scope:global align:8
+int_sum_log_table02_onT_model = .data:0x00A254A0; // type:object size:0xA8 scope:global align:8
+int_sum_lv_stereo_pal = .data:0x00A25560; // type:object size:0x20 scope:global align:32
+int_sum_lv_stereo_foot_tex = .data:0x00A25580; // type:object size:0x80 scope:global align:32
+int_sum_lv_stereo_front_tex = .data:0x00A25600; // type:object size:0x400 scope:global align:32
+int_sum_lv_stereo_side_tex = .data:0x00A25A00; // type:object size:0x200 scope:global align:32
+int_sum_lv_stereo_reco_tex = .data:0x00A25C00; // type:object size:0x180 scope:global align:32
+int_sum_lv_stereo_v = .data:0x00A25D80; // type:object size:0x440 scope:global align:8
+int_sum_lv_stereo_on_model = .data:0x00A261C0; // type:object size:0xB0 scope:global align:8
+int_sum_lv_stereo_onT_model = .data:0x00A26270; // type:object size:0x98 scope:global align:8
+int_sum_matumushi_pal = .data:0x00A26320; // type:object size:0x20 scope:global align:32
+int_sum_matumushi_hand_pic_ci4_pal = .data:0x00A26340; // type:object size:0x20 scope:global align:32
+int_sum_matumushi_base_txt = .data:0x00A26360; // type:object size:0x80 scope:global align:32
+int_sum_matumushi_top_txt = .data:0x00A263E0; // type:object size:0x200 scope:global align:32
+int_sum_matumushi_side_txt = .data:0x00A265E0; // type:object size:0x200 scope:global align:32
+int_sum_matumushi_body_txt = .data:0x00A267E0; // type:object size:0x200 scope:global align:32
+int_sum_matumushi_hand_txt = .data:0x00A269E0; // type:object size:0x100 scope:global align:32
+int_sum_matumushi_v = .data:0x00A26AE0; // type:object size:0x3F0 scope:global align:8
+int_sum_matumushi_side_model = .data:0x00A26ED0; // type:object size:0x68 scope:global align:8
+int_sum_matumushi_komado_model = .data:0x00A26F38; // type:object size:0x58 scope:global align:8
+int_sum_matumushi_glass_model = .data:0x00A26F90; // type:object size:0x68 scope:global align:8
+int_sum_matumushi_base_model = .data:0x00A26FF8; // type:object size:0xA0 scope:global align:8
+int_sum_matumushi_body_model = .data:0x00A27098; // type:object size:0x60 scope:global align:8
+int_sum_matumushi_body_R_model = .data:0x00A270F8; // type:object size:0x58 scope:global align:8
+int_sum_matumushi_body_L_model = .data:0x00A27150; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_matumushi_tbl = .data:0x00A271A8; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_matumushi_tbl = .data:0x00A271B4; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_matumushi_tbl = .data:0x00A271CC; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_matumushi_tbl = .data:0x00A271F8; // type:object size:0xD8 scope:global align:4
+cKF_ba_r_int_sum_matumushi = .data:0x00A272D0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_matumushi_tbl = .data:0x00A272E4; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_matumushi = .data:0x00A2735C; // type:object size:0x8 scope:global align:4
+int_sum_md01_pal = .data:0x00A27380; // type:object size:0x20 scope:global align:32
+int_sum_md01_back_tex_txt = .data:0x00A273A0; // type:object size:0x200 scope:global align:32
+int_sum_md01_front_tex_txt = .data:0x00A275A0; // type:object size:0x400 scope:global align:32
+int_sum_md01_hand_tex_txt = .data:0x00A279A0; // type:object size:0x80 scope:global align:32
+int_sum_md01_v = .data:0x00A27A20; // type:object size:0x1F0 scope:global align:8
+int_sum_md01_on_model = .data:0x00A27C10; // type:object size:0xE0 scope:global align:8
+int_sum_mezaclock_pal = .data:0x00A27D00; // type:object size:0x20 scope:global align:32
+int_sum_mezaclock_hand_tex_txt = .data:0x00A27D20; // type:object size:0x100 scope:global align:32
+int_sum_mezaclock_hari_tex_txt = .data:0x00A27E20; // type:object size:0x100 scope:global align:32
+int_sum_mezaclock_foot_tex_txt = .data:0x00A27F20; // type:object size:0x80 scope:global align:32
+int_sum_mezaclock_kane_tex_txt = .data:0x00A27FA0; // type:object size:0x100 scope:global align:32
+int_sum_mezaclock_top_tex_txt = .data:0x00A280A0; // type:object size:0x200 scope:global align:32
+int_sum_mezaclock_side_tex_txt = .data:0x00A282A0; // type:object size:0x100 scope:global align:32
+int_sum_mezaclock_back_tex_txt = .data:0x00A283A0; // type:object size:0x100 scope:global align:32
+int_sum_mezaclock_tataki_tex_txt = .data:0x00A284A0; // type:object size:0x80 scope:global align:32
+int_sum_mezaclock_v = .data:0x00A28520; // type:object size:0x3E0 scope:global align:8
+int_sum_mezaclock_long_model = .data:0x00A28900; // type:object size:0x60 scope:global align:8
+int_sum_mezaclock_base_model = .data:0x00A28960; // type:object size:0x170 scope:global align:8
+int_sum_mezaclock_short_model = .data:0x00A28AD0; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_mezaclock_tbl = .data:0x00A28B30; // type:object size:0x5 scope:global align:4
+cKF_c_int_sum_mezaclock_tbl = .data:0x00A28B38; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_sum_mezaclock = .data:0x00A28B5C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_mezaclock_tbl = .data:0x00A28B70; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_mezaclock = .data:0x00A28BAC; // type:object size:0x8 scope:global align:4
+int_sum_minmin_pal = .data:0x00A28BC0; // type:object size:0x20 scope:global align:32
+int_sum_minmin_hand_pic_ci4_pal = .data:0x00A28BE0; // type:object size:0x20 scope:global align:32
+int_sum_minmin_base_txt = .data:0x00A28C00; // type:object size:0x80 scope:global align:32
+int_sum_minmin_top_txt = .data:0x00A28C80; // type:object size:0x200 scope:global align:32
+int_sum_minmin_body_txt = .data:0x00A28E80; // type:object size:0x200 scope:global align:32
+int_sum_minmin_side_txt = .data:0x00A29080; // type:object size:0x200 scope:global align:32
+int_sum_minmin_hand_txt = .data:0x00A29280; // type:object size:0x100 scope:global align:32
+int_sum_minmin_v = .data:0x00A29380; // type:object size:0x450 scope:global align:8
+int_sum_minmin_side_model = .data:0x00A297D0; // type:object size:0x68 scope:global align:8
+int_sum_minmin_komado_model = .data:0x00A29838; // type:object size:0x58 scope:global align:8
+int_sum_minmin_glass_model = .data:0x00A29890; // type:object size:0x68 scope:global align:8
+int_sum_minmin_base_model = .data:0x00A298F8; // type:object size:0xC8 scope:global align:8
+int_sum_minmin_body_R_model = .data:0x00A299C0; // type:object size:0x58 scope:global align:8
+int_sum_minmin_body_L_model = .data:0x00A29A18; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_minmin_tbl = .data:0x00A29A70; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_minmin_tbl = .data:0x00A29A78; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_minmin_tbl = .data:0x00A29A8C; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_minmin_tbl = .data:0x00A29AB0; // type:object size:0x1EC scope:global align:4
+cKF_ba_r_int_sum_minmin = .data:0x00A29C9C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_minmin_tbl = .data:0x00A29CB0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_minmin = .data:0x00A29D10; // type:object size:0x8 scope:global align:4
+int_sum_misin01_pal = .data:0x00A29D20; // type:object size:0x20 scope:global align:32
+int_sum_misin01_sidefoot_tex = .data:0x00A29D40; // type:object size:0x100 scope:global align:32
+int_sum_misin01_desktop_tex = .data:0x00A29E40; // type:object size:0x80 scope:global align:32 data:string
+int_sum_misin01_deskfront_tex = .data:0x00A29EC0; // type:object size:0x100 scope:global align:32
+int_sum_misin01_deskback_tex = .data:0x00A29FC0; // type:object size:0x100 scope:global align:32
+int_sum_misin01_deskside_tex = .data:0x00A2A0C0; // type:object size:0x40 scope:global align:32
+int_sum_misin01_misiside_tex = .data:0x00A2A100; // type:object size:0x100 scope:global align:32
+int_sum_misin01_pedal_tex = .data:0x00A2A200; // type:object size:0x80 scope:global align:32
+int_sum_misin01_kaiten_tex = .data:0x00A2A280; // type:object size:0x80 scope:global align:32
+int_sum_misin01_harigane_tex = .data:0x00A2A300; // type:object size:0x80 scope:global align:32
+int_sum_misin01_misibase_tex = .data:0x00A2A380; // type:object size:0x40 scope:global align:32
+int_sum_misin01_top_tex = .data:0x00A2A3C0; // type:object size:0x100 scope:global align:32
+int_sum_misin01_temaki_tex = .data:0x00A2A4C0; // type:object size:0x80 scope:global align:32
+int_sum_misin01_v = .data:0x00A2A540; // type:object size:0x560 scope:global align:8
+int_sum_misin01_on_model = .data:0x00A2AAA0; // type:object size:0xB0 scope:global align:8
+int_sum_misin01_onT_model = .data:0x00A2AB50; // type:object size:0x158 scope:global align:8
+int_sum_miyama_pal = .data:0x00A2ACC0; // type:object size:0x20 scope:global align:32
+int_sum_miyama_hand_pic_ci4_pal = .data:0x00A2ACE0; // type:object size:0x20 scope:global align:32
+int_sum_miyama_body_txt = .data:0x00A2AD00; // type:object size:0x100 scope:global align:32
+int_sum_miyama_base_txt = .data:0x00A2AE00; // type:object size:0x80 scope:global align:32
+int_sum_miyama_top_txt = .data:0x00A2AE80; // type:object size:0x200 scope:global align:32
+int_sum_miyama_side_txt = .data:0x00A2B080; // type:object size:0x200 scope:global align:32
+int_sum_miyama_hand_txt = .data:0x00A2B280; // type:object size:0x100 scope:global align:32
+int_sum_miyama_v = .data:0x00A2B380; // type:object size:0x3A0 scope:global align:8
+int_sum_miyama_side_model = .data:0x00A2B720; // type:object size:0x68 scope:global align:8
+int_sum_miyama_komado_model = .data:0x00A2B788; // type:object size:0x58 scope:global align:8
+int_sum_miyama_glass_model = .data:0x00A2B7E0; // type:object size:0x68 scope:global align:8
+int_sum_miyama_base_model = .data:0x00A2B848; // type:object size:0xA0 scope:global align:8
+int_sum_miyama_body_model = .data:0x00A2B8E8; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_miyama_tbl = .data:0x00A2B950; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_miyama_tbl = .data:0x00A2B958; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_miyama_tbl = .data:0x00A2B964; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_miyama_tbl = .data:0x00A2B984; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_miyama = .data:0x00A2BA1C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_miyama_tbl = .data:0x00A2BA30; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_miyama = .data:0x00A2BA78; // type:object size:0x8 scope:global align:4
+int_sum_mizunomitori_pal = .data:0x00A2BA80; // type:object size:0x20 scope:global align:32
+int_sum_mizunomi_body_tex_pic_ci4_pal = .data:0x00A2BAA0; // type:object size:0x20 scope:global align:32
+int_sum_mizunomi_neck_tex_pic_ci4_pal = .data:0x00A2BAC0; // type:object size:0x20 scope:global align:32
+int_sum_mizunomi_face_tex_txt = .data:0x00A2BAE0; // type:object size:0x200 scope:global align:32
+int_sum_mizunomi_hat_tex_txt = .data:0x00A2BCE0; // type:object size:0x80 scope:global align:32
+int_sum_mizunomi_foot_tex_txt = .data:0x00A2BD60; // type:object size:0x100 scope:global align:32
+int_sum_mizunomi_kuchi_tex_txt = .data:0x00A2BE60; // type:object size:0x80 scope:global align:32
+int_sum_mizunomi_hane_tex_txt = .data:0x00A2BEE0; // type:object size:0x100 scope:global align:32
+int_sum_mizunomi_body_tex_txt = .data:0x00A2BFE0; // type:object size:0x80 scope:global align:32
+int_sum_mizunomi_neck_tex_txt = .data:0x00A2C060; // type:object size:0x100 scope:global align:32
+int_sum_mizunomi_v = .data:0x00A2C160; // type:object size:0x370 scope:global align:8
+int_sum_mizunomi_head_model = .data:0x00A2C4D0; // type:object size:0xB8 scope:global align:8
+int_sum_mizunomi_env2_model = .data:0x00A2C588; // type:object size:0x58 scope:global align:8
+int_sum_mizunomi_env_model = .data:0x00A2C5E0; // type:object size:0x68 scope:global align:8
+int_sum_mizunomi_base_model = .data:0x00A2C648; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_sum_mizunomi_tbl = .data:0x00A2C6F0; // type:object size:0x4 scope:global align:4
+cKF_kn_int_sum_mizunomi_tbl = .data:0x00A2C6F4; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_mizunomi_tbl = .data:0x00A2C6F8; // type:object size:0x1C scope:global align:4
+cKF_ds_int_sum_mizunomi_tbl = .data:0x00A2C714; // type:object size:0x1E scope:global align:4
+cKF_ba_r_int_sum_mizunomi = .data:0x00A2C734; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_mizunomi_tbl = .data:0x00A2C748; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_sum_mizunomi = .data:0x00A2C778; // type:object size:0x8 scope:global align:4
+int_sum_monki_pal = .data:0x00A2C780; // type:object size:0x20 scope:global align:32
+int_sum_monki_hand_pic_ci4_pal = .data:0x00A2C7A0; // type:object size:0x20 scope:global align:32
+int_sum_monki_body_txt = .data:0x00A2C7C0; // type:object size:0x80 scope:global align:32
+int_sum_monki_base_txt = .data:0x00A2C840; // type:object size:0x80 scope:global align:32
+int_sum_monki_top_txt = .data:0x00A2C8C0; // type:object size:0x200 scope:global align:32
+int_sum_monki_side_txt = .data:0x00A2CAC0; // type:object size:0x200 scope:global align:32
+int_sum_monki_hand_txt = .data:0x00A2CCC0; // type:object size:0x100 scope:global align:32
+int_sum_monki_v = .data:0x00A2CDC0; // type:object size:0x430 scope:global align:8
+int_sum_monki_body_L_model = .data:0x00A2D1F0; // type:object size:0x58 scope:global align:8
+int_sum_monki_side_model = .data:0x00A2D248; // type:object size:0x68 scope:global align:8
+int_sum_monki_komado_model = .data:0x00A2D2B0; // type:object size:0x58 scope:global align:8
+int_sum_monki_glass_model = .data:0x00A2D308; // type:object size:0x68 scope:global align:8
+int_sum_monki_base_model = .data:0x00A2D370; // type:object size:0xA0 scope:global align:8
+int_sum_monki_body_R_model = .data:0x00A2D410; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_monki_tbl = .data:0x00A2D468; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_monki_tbl = .data:0x00A2D470; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_monki_tbl = .data:0x00A2D488; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_monki_tbl = .data:0x00A2D4A8; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_monki = .data:0x00A2D544; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_monki_tbl = .data:0x00A2D558; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_monki = .data:0x00A2D5B8; // type:object size:0x8 scope:global align:4
+int_sum_monshiro_pal = .data:0x00A2D5C0; // type:object size:0x20 scope:global align:32
+int_sum_monshiro_hand_pic_ci4_pal = .data:0x00A2D5E0; // type:object size:0x20 scope:global align:32
+int_sum_monshiro_body_txt = .data:0x00A2D600; // type:object size:0x80 scope:global align:32
+int_sum_monshiro_base_txt = .data:0x00A2D680; // type:object size:0x80 scope:global align:32
+int_sum_monshiro_top_txt = .data:0x00A2D700; // type:object size:0x200 scope:global align:32
+int_sum_monshiro_side_txt = .data:0x00A2D900; // type:object size:0x200 scope:global align:32
+int_sum_monshiro_hand_txt = .data:0x00A2DB00; // type:object size:0x100 scope:global align:32
+int_sum_monshiro_v = .data:0x00A2DC00; // type:object size:0x3D0 scope:global align:8
+int_sum_monshiro_body_L_model = .data:0x00A2DFD0; // type:object size:0x58 scope:global align:8
+int_sum_monshiro_side_model = .data:0x00A2E028; // type:object size:0x68 scope:global align:8
+int_sum_monshiro_komado_model = .data:0x00A2E090; // type:object size:0x58 scope:global align:8
+int_sum_monshiro_glass_model = .data:0x00A2E0E8; // type:object size:0x68 scope:global align:8
+int_sum_monshiro_base_model = .data:0x00A2E150; // type:object size:0xA0 scope:global align:8
+int_sum_monshiro_body_R_model = .data:0x00A2E1F0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_monshiro_tbl = .data:0x00A2E248; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_monshiro_tbl = .data:0x00A2E250; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_monshiro_tbl = .data:0x00A2E268; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_monshiro_tbl = .data:0x00A2E288; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_monshiro = .data:0x00A2E324; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_monshiro_tbl = .data:0x00A2E338; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_monshiro = .data:0x00A2E398; // type:object size:0x8 scope:global align:4
+int_sum_namazu_pal = .data:0x00A2E3A0; // type:object size:0x20 scope:local align:32
+int_sum_namazu_glass_pic_ci4_pal = .data:0x00A2E3C0; // type:object size:0x20 scope:global align:32
+int_sum_namazu_body_txt = .data:0x00A2E3E0; // type:object size:0x300 scope:global align:32
+int_sum_namazu_side_txt = .data:0x00A2E6E0; // type:object size:0x200 scope:global align:32
+int_sum_namazu_base_txt = .data:0x00A2E8E0; // type:object size:0x80 scope:global align:32
+int_sum_namazu_etc_txt = .data:0x00A2E960; // type:object size:0x80 scope:global align:32
+int_sum_namazu_top_txt = .data:0x00A2E9E0; // type:object size:0x100 scope:global align:32
+int_sum_namazu_glass_txt = .data:0x00A2EAE0; // type:object size:0x100 scope:global align:32
+int_sum_namazu_v = .data:0x00A2EBE0; // type:object size:0x310 scope:global align:8
+int_sum_namazu_sakana_model = .data:0x00A2EEF0; // type:object size:0x70 scope:global align:8
+int_sum_namazu_top_model = .data:0x00A2EF60; // type:object size:0x58 scope:global align:8
+int_sum_namazu_evw_model = .data:0x00A2EFB8; // type:object size:0x68 scope:global align:8
+int_sum_namazu_base_model = .data:0x00A2F020; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_namazu_tbl = .data:0x00A2F0D8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_namazu_tbl = .data:0x00A2F0E0; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_namazu_tbl = .data:0x00A2F0F4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_namazu_tbl = .data:0x00A2F108; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_namazu = .data:0x00A2F18C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_namazu_tbl = .data:0x00A2F1A0; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_namazu = .data:0x00A2F1DC; // type:object size:0x8 scope:global align:4
+int_sum_nanahoshi_pal = .data:0x00A2F200; // type:object size:0x20 scope:global align:32
+int_sum_nanahoshi_hand_pic_ci4_pal = .data:0x00A2F220; // type:object size:0x20 scope:global align:32
+int_sum_nanahoshi_body_txt = .data:0x00A2F240; // type:object size:0x100 scope:global align:32
+int_sum_nanahoshi_base_txt = .data:0x00A2F340; // type:object size:0x80 scope:global align:32
+int_sum_nanahoshi_top_txt = .data:0x00A2F3C0; // type:object size:0x200 scope:global align:32
+int_sum_nanahoshi_side_txt = .data:0x00A2F5C0; // type:object size:0x200 scope:global align:32
+int_sum_nanahoshi_hand_txt = .data:0x00A2F7C0; // type:object size:0x100 scope:global align:32
+int_sum_nanahoshi_v = .data:0x00A2F8C0; // type:object size:0x3D0 scope:global align:8
+int_sum_nanahoshi_side_model = .data:0x00A2FC90; // type:object size:0x68 scope:global align:8
+int_sum_nanahoshi_komado_model = .data:0x00A2FCF8; // type:object size:0x58 scope:global align:8
+int_sum_nanahoshi_glass_model = .data:0x00A2FD50; // type:object size:0x68 scope:global align:8
+int_sum_nanahoshi_base_model = .data:0x00A2FDB8; // type:object size:0xA0 scope:global align:8
+int_sum_nanahoshi_body_model = .data:0x00A2FE58; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_nanahoshi_tbl = .data:0x00A2FEB8; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_nanahoshi_tbl = .data:0x00A2FEC0; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_nanahoshi_tbl = .data:0x00A2FECC; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_nanahoshi_tbl = .data:0x00A2FEEC; // type:object size:0xA8 scope:global align:4
+cKF_ba_r_int_sum_nanahoshi = .data:0x00A2FF94; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_nanahoshi_tbl = .data:0x00A2FFA8; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_nanahoshi = .data:0x00A2FFF0; // type:object size:0x8 scope:global align:4
+int_sum_nigoi_pal = .data:0x00A30000; // type:object size:0x20 scope:local align:32
+int_sum_nigoi_glass_pic_ci4_pal = .data:0x00A30020; // type:object size:0x20 scope:global align:32
+int_sum_nigoi_body_txt = .data:0x00A30040; // type:object size:0x300 scope:global align:32
+int_sum_nigoi_side_txt = .data:0x00A30340; // type:object size:0x200 scope:global align:32
+int_sum_nigoi_base_txt = .data:0x00A30540; // type:object size:0x80 scope:global align:32
+int_sum_nigoi_etc_txt = .data:0x00A305C0; // type:object size:0x80 scope:global align:32
+int_sum_nigoi_top_txt = .data:0x00A30640; // type:object size:0x100 scope:global align:32
+int_sum_nigoi_glass_txt = .data:0x00A30740; // type:object size:0x100 scope:global align:32
+int_sum_nigoi_v = .data:0x00A30840; // type:object size:0x370 scope:global align:8
+int_sum_nigoi_sakana_model = .data:0x00A30BB0; // type:object size:0x70 scope:global align:8
+int_sum_nigoi_top_model = .data:0x00A30C20; // type:object size:0x58 scope:global align:8
+int_sum_nigoi_evw_model = .data:0x00A30C78; // type:object size:0x68 scope:global align:8
+int_sum_nigoi_base_model = .data:0x00A30CE0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_nigoi_tbl = .data:0x00A30D98; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_nigoi_tbl = .data:0x00A30DA0; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_nigoi_tbl = .data:0x00A30DB4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_nigoi_tbl = .data:0x00A30DC8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_nigoi = .data:0x00A30E4C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_nigoi_tbl = .data:0x00A30E60; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_nigoi = .data:0x00A30E9C; // type:object size:0x8 scope:global align:4
+int_sum_niji_pal = .data:0x00A30EC0; // type:object size:0x20 scope:local align:32
+int_sum_niji_glass_pic_ci4_pal = .data:0x00A30EE0; // type:object size:0x20 scope:global align:32
+int_sum_niji_body_txt = .data:0x00A30F00; // type:object size:0x300 scope:global align:32
+int_sum_niji_side_txt = .data:0x00A31200; // type:object size:0x200 scope:global align:32
+int_sum_niji_base_txt = .data:0x00A31400; // type:object size:0x80 scope:global align:32
+int_sum_niji_etc_txt = .data:0x00A31480; // type:object size:0x80 scope:global align:32
+int_sum_niji_top_txt = .data:0x00A31500; // type:object size:0x100 scope:global align:32
+int_sum_niji_glass_txt = .data:0x00A31600; // type:object size:0x100 scope:global align:32
+int_sum_niji_v = .data:0x00A31700; // type:object size:0x370 scope:global align:8
+int_sum_niji_sakana_model = .data:0x00A31A70; // type:object size:0x70 scope:global align:8
+int_sum_niji_top_model = .data:0x00A31AE0; // type:object size:0x58 scope:global align:8
+int_sum_niji_evw_model = .data:0x00A31B38; // type:object size:0x68 scope:global align:8
+int_sum_niji_base_model = .data:0x00A31BA0; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_niji_tbl = .data:0x00A31C58; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_niji_tbl = .data:0x00A31C60; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_niji_tbl = .data:0x00A31C74; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_niji_tbl = .data:0x00A31C88; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_niji = .data:0x00A31D24; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_niji_tbl = .data:0x00A31D38; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_niji = .data:0x00A31D74; // type:object size:0x8 scope:global align:4
+int_sum_nisiki_pal = .data:0x00A31D80; // type:object size:0x20 scope:local align:32
+int_sum_nisiki_glass_pic_ci4_pal = .data:0x00A31DA0; // type:object size:0x20 scope:global align:32
+int_sum_nisiki_body_txt = .data:0x00A31DC0; // type:object size:0x300 scope:global align:32
+int_sum_nisiki_side_txt = .data:0x00A320C0; // type:object size:0x200 scope:global align:32
+int_sum_nisiki_base_txt = .data:0x00A322C0; // type:object size:0x80 scope:global align:32
+int_sum_nisiki_top_txt = .data:0x00A32340; // type:object size:0x100 scope:global align:32
+int_sum_nisiki_glass_txt = .data:0x00A32440; // type:object size:0x100 scope:global align:32
+int_sum_nisiki_v = .data:0x00A32540; // type:object size:0x280 scope:global align:8
+int_sum_nisiki_sakana_model = .data:0x00A327C0; // type:object size:0x70 scope:global align:8
+int_sum_nisiki_top_model = .data:0x00A32830; // type:object size:0x58 scope:global align:8
+int_sum_nisiki_evw_model = .data:0x00A32888; // type:object size:0x68 scope:global align:8
+int_sum_nisiki_base_model = .data:0x00A328F0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_nisiki_tbl = .data:0x00A32980; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_nisiki_tbl = .data:0x00A32988; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_nisiki_tbl = .data:0x00A3299C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_nisiki_tbl = .data:0x00A329B0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_nisiki = .data:0x00A32A34; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_nisiki_tbl = .data:0x00A32A48; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_nisiki = .data:0x00A32A84; // type:object size:0x8 scope:global align:4
+int_sum_nokogiri_pal = .data:0x00A32AA0; // type:object size:0x20 scope:global align:32
+int_sum_nokogiri_hand_pic_ci4_pal = .data:0x00A32AC0; // type:object size:0x20 scope:global align:32
+int_sum_nokogiri_base_txt = .data:0x00A32AE0; // type:object size:0x80 scope:global align:32
+int_sum_nokogiri_top_txt = .data:0x00A32B60; // type:object size:0x200 scope:global align:32
+int_sum_nokogiri_side_txt = .data:0x00A32D60; // type:object size:0x200 scope:global align:32
+int_sum_nokogiri_body_txt = .data:0x00A32F60; // type:object size:0x100 scope:global align:32
+int_sum_nokogiri_hand_txt = .data:0x00A33060; // type:object size:0x100 scope:global align:32
+int_sum_nokogiri_v = .data:0x00A33160; // type:object size:0x3A0 scope:global align:8
+int_sum_nokogiri_side_model = .data:0x00A33500; // type:object size:0x68 scope:global align:8
+int_sum_nokogiri_komado_model = .data:0x00A33568; // type:object size:0x58 scope:global align:8
+int_sum_nokogiri_glass_model = .data:0x00A335C0; // type:object size:0x68 scope:global align:8
+int_sum_nokogiri_base_model = .data:0x00A33628; // type:object size:0xA0 scope:global align:8
+int_sum_nokogiri_body_model = .data:0x00A336C8; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_nokogiri_tbl = .data:0x00A33730; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_nokogiri_tbl = .data:0x00A33738; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_nokogiri_tbl = .data:0x00A33744; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_nokogiri_tbl = .data:0x00A33764; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_sum_nokogiri = .data:0x00A33818; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_nokogiri_tbl = .data:0x00A3382C; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_nokogiri = .data:0x00A33874; // type:object size:0x8 scope:global align:4
+int_sum_ohmurasaki_pal = .data:0x00A33880; // type:object size:0x20 scope:global align:32
+int_sum_ohmurasaki_hand_pic_ci4_pal = .data:0x00A338A0; // type:object size:0x20 scope:global align:32
+int_sum_ohmurasaki_body_txt = .data:0x00A338C0; // type:object size:0x200 scope:global align:32
+int_sum_ohmurasaki_side_txt = .data:0x00A33AC0; // type:object size:0x200 scope:global align:32
+int_sum_ohmurasaki_base_txt = .data:0x00A33CC0; // type:object size:0x80 scope:global align:32
+int_sum_ohmurasaki_top_txt = .data:0x00A33D40; // type:object size:0x200 scope:global align:32
+int_sum_ohmurasaki_hand_txt = .data:0x00A33F40; // type:object size:0x100 scope:global align:32
+int_sum_ohmurasaki_v = .data:0x00A34040; // type:object size:0x430 scope:global align:8
+int_sum_ohmurasaki_body_L_model = .data:0x00A34470; // type:object size:0x58 scope:global align:8
+int_sum_ohmursaki_glass_model = .data:0x00A344C8; // type:object size:0x68 scope:global align:8
+int_sum_ohmurasaki_side_model = .data:0x00A34530; // type:object size:0x68 scope:global align:8
+int_sum_ohmurasaki_komado_model = .data:0x00A34598; // type:object size:0x58 scope:global align:8
+int_sum_ohmurasaki_base_model = .data:0x00A345F0; // type:object size:0xA0 scope:global align:8
+int_sum_ohmurasaki_body_R_model = .data:0x00A34690; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_ohmurasaki_tbl = .data:0x00A346E8; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_ohmurasaki_tbl = .data:0x00A346F0; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_ohmurasaki_tbl = .data:0x00A34708; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_ohmurasaki_tbl = .data:0x00A34728; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_ohmurasaki = .data:0x00A347C4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ohmurasaki_tbl = .data:0x00A347D8; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_ohmurasaki = .data:0x00A34838; // type:object size:0x8 scope:global align:4
+int_sum_oikawa_pal = .data:0x00A34840; // type:object size:0x20 scope:local align:32
+int_sum_oikawa_glass_pic_ci4_pal = .data:0x00A34860; // type:object size:0x20 scope:global align:32
+int_sum_oikawa_body_txt = .data:0x00A34880; // type:object size:0x200 scope:global align:32
+int_sum_oikawa_side_txt = .data:0x00A34A80; // type:object size:0x200 scope:global align:32
+int_sum_oikawa_base_txt = .data:0x00A34C80; // type:object size:0x80 scope:global align:32
+int_sum_oikawa_green_txt = .data:0x00A34D00; // type:object size:0x100 scope:global align:32
+int_sum_oikawa_green2_txt = .data:0x00A34E00; // type:object size:0x80 scope:global align:32
+int_sum_oikawa_top_txt = .data:0x00A34E80; // type:object size:0x100 scope:global align:32
+int_sum_oikawa_glass_txt = .data:0x00A34F80; // type:object size:0x100 scope:global align:32
+int_sum_oikawa_v = .data:0x00A35080; // type:object size:0x390 scope:global align:8
+int_sum_oikawa_sakana_model = .data:0x00A35410; // type:object size:0x70 scope:global align:8
+int_sum_oikawa_top_model = .data:0x00A35480; // type:object size:0x58 scope:global align:8
+int_sum_oikawa_evw_model = .data:0x00A354D8; // type:object size:0x68 scope:global align:8
+int_sum_oikawa_base_model = .data:0x00A35540; // type:object size:0xD0 scope:global align:8
+cKF_ckcb_r_int_sum_oikawa_tbl = .data:0x00A35610; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_oikawa_tbl = .data:0x00A35618; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_oikawa_tbl = .data:0x00A3562C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_oikawa_tbl = .data:0x00A35640; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_sum_oikawa = .data:0x00A356F4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_oikawa_tbl = .data:0x00A35708; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_oikawa = .data:0x00A35744; // type:object size:0x8 scope:global align:4
+int_sum_okiagari01_pal = .data:0x00A35760; // type:object size:0x20 scope:global align:32
+int_sum_okiagari01_hand_tex_txt = .data:0x00A35780; // type:object size:0x80 scope:global align:32
+int_sum_okiagari01_bodyback_tex_txt = .data:0x00A35800; // type:object size:0x100 scope:global align:32
+int_sum_okiagari01_bodyfront_tex_txt = .data:0x00A35900; // type:object size:0x100 scope:global align:32
+int_sum_okiagari01_face_tex_txt = .data:0x00A35A00; // type:object size:0x200 scope:global align:32
+int_sum_okiagari01_head_tex_txt = .data:0x00A35C00; // type:object size:0x100 scope:global align:32
+int_sum_okiagari01_v = .data:0x00A35D00; // type:object size:0x340 scope:global align:8
+int_sum_okiagari01_model = .data:0x00A36040; // type:object size:0x128 scope:global align:8
+cKF_ckcb_r_int_sum_okiagari01_tbl = .data:0x00A36168; // type:object size:0x2 scope:global align:4
+cKF_kn_int_sum_okiagari01_tbl = .data:0x00A3616C; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_okiagari01_tbl = .data:0x00A36178; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_okiagari01_tbl = .data:0x00A36180; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_okiagari01 = .data:0x00A3621C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_okiagari01_tbl = .data:0x00A36230; // type:object size:0x18 scope:global align:4
+cKF_bs_r_int_sum_okiagari01 = .data:0x00A36248; // type:object size:0x8 scope:global align:4
+int_sum_okuwa_pal = .data:0x00A36260; // type:object size:0x20 scope:global align:32
+int_sum_okuwa_hand_pic_ci4_pal = .data:0x00A36280; // type:object size:0x20 scope:global align:32
+int_sum_okuwa_body_txt = .data:0x00A362A0; // type:object size:0x100 scope:global align:32
+int_sum_okuwa_base_txt = .data:0x00A363A0; // type:object size:0x80 scope:global align:32
+int_sum_okuwa_top_txt = .data:0x00A36420; // type:object size:0x200 scope:global align:32
+int_sum_okuwa_side_txt = .data:0x00A36620; // type:object size:0x200 scope:global align:32
+int_sum_okuwa_hand_txt = .data:0x00A36820; // type:object size:0x100 scope:global align:32
+int_sum_okuwa_v = .data:0x00A36920; // type:object size:0x3A0 scope:global align:8
+int_sum_okuwa_side_model = .data:0x00A36CC0; // type:object size:0x68 scope:global align:8
+int_sum_okuwa_komado_model = .data:0x00A36D28; // type:object size:0x58 scope:global align:8
+int_sum_okuwa_glass_model = .data:0x00A36D80; // type:object size:0x68 scope:global align:8
+int_sum_okuwa_base_model = .data:0x00A36DE8; // type:object size:0xA0 scope:global align:8
+int_sum_okuwa_body_model = .data:0x00A36E88; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_okuwa_tbl = .data:0x00A36EF0; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_okuwa_tbl = .data:0x00A36EF8; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_okuwa_tbl = .data:0x00A36F04; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_okuwa_tbl = .data:0x00A36F24; // type:object size:0xC6 scope:global align:4
+cKF_ba_r_int_sum_okuwa = .data:0x00A36FEC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_okuwa_tbl = .data:0x00A37000; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_okuwa = .data:0x00A37048; // type:object size:0x8 scope:global align:4
+int_sum_classicclock01_pal = .data:0x00A37060; // type:object size:0x20 scope:global align:32
+int_sum_oldclk01_glass_pic_ci4_pal = .data:0x00A37080; // type:object size:0x20 scope:global align:32
+int_sum_oldclk01_hand_txt = .data:0x00A370A0; // type:object size:0x80 scope:global align:32
+int_sum_oldclk01_frko_txt = .data:0x00A37120; // type:object size:0x80 scope:global align:32
+int_sum_oldclk01_back_txt = .data:0x00A371A0; // type:object size:0x180 scope:global align:32
+int_sum_oldclk01_front2_txt = .data:0x00A37320; // type:object size:0x80 scope:global align:32
+int_sum_oldclk01_side_txt = .data:0x00A373A0; // type:object size:0x100 scope:global align:32
+int_sum_oldclk01_front_txt = .data:0x00A374A0; // type:object size:0x180 scope:global align:32
+int_sum_oldclk01_roof_txt = .data:0x00A37620; // type:object size:0x40 scope:global align:32 data:string
+int_sum_oldclk01_top_txt = .data:0x00A37660; // type:object size:0x40 scope:global align:32 data:string
+int_sum_oldclk01_glass_txt = .data:0x00A376A0; // type:object size:0x80 scope:global align:32
+int_sum_oldclk01_v = .data:0x00A37720; // type:object size:0x460 scope:global align:8
+int_sum_oldclk01_long_model = .data:0x00A37B80; // type:object size:0x58 scope:global align:8
+int_sum_oldclk01_on_model = .data:0x00A37BD8; // type:object size:0x178 scope:global align:8
+int_sum_oldclk01_env_model = .data:0x00A37D50; // type:object size:0x58 scope:global align:8
+int_sum_oldclk01_short_model = .data:0x00A37DA8; // type:object size:0x58 scope:global align:8
+int_sum_oldclk01_frko_model = .data:0x00A37E00; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_oldclk01_tbl = .data:0x00A37E58; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_oldclk01_tbl = .data:0x00A37E60; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_oldclk01_tbl = .data:0x00A37E64; // type:object size:0x34 scope:global align:4
+cKF_ds_int_sum_oldclk01_tbl = .data:0x00A37E98; // type:object size:0x1E scope:global align:4
+cKF_ba_r_int_sum_oldclk01 = .data:0x00A37EB8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_oldclk01_tbl = .data:0x00A37ECC; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_oldclk01 = .data:0x00A37F2C; // type:object size:0x8 scope:global align:4
+int_sum_oldsofa01_pal = .data:0x00A37F40; // type:object size:0x20 scope:global align:32
+int_sum_oldsofa01_seat = .data:0x00A37F60; // type:object size:0x200 scope:global align:32
+int_sum_oldsofa01_side1 = .data:0x00A38160; // type:object size:0x100 scope:global align:32
+int_sum_oldsofa01_side2 = .data:0x00A38260; // type:object size:0x100 scope:global align:32
+int_sum_oldsofa01_top = .data:0x00A38360; // type:object size:0x200 scope:global align:32
+int_sum_oldsofa01_side3 = .data:0x00A38560; // type:object size:0x100 scope:global align:32
+int_sum_oldsofa01_foot = .data:0x00A38660; // type:object size:0x80 scope:global align:32
+int_sum_oldsofa01_v = .data:0x00A386E0; // type:object size:0x3F0 scope:global align:8
+int_sum_oldsofa01_onT_model = .data:0x00A38AD0; // type:object size:0x150 scope:global align:8
+int_sum_oniyanma_pal = .data:0x00A38C20; // type:object size:0x20 scope:global align:32
+int_sum_oniyanma_hand_pic_ci4_pal = .data:0x00A38C40; // type:object size:0x20 scope:global align:32
+int_sum_oniyanma_base_txt = .data:0x00A38C60; // type:object size:0x80 scope:global align:32
+int_sum_oniyanma_top_txt = .data:0x00A38CE0; // type:object size:0x200 scope:global align:32
+int_sum_oniyanma_body_txt = .data:0x00A38EE0; // type:object size:0x180 scope:global align:32
+int_sum_oniyanma_side_txt = .data:0x00A39060; // type:object size:0x200 scope:global align:32
+int_sum_oniyanma_hand_txt = .data:0x00A39260; // type:object size:0x100 scope:global align:32
+int_sum_oniyanma_v = .data:0x00A39360; // type:object size:0x3F0 scope:global align:8
+int_sum_oniyanma_side_model = .data:0x00A39750; // type:object size:0x68 scope:global align:8
+int_sum_oniyanma_komado_model = .data:0x00A397B8; // type:object size:0x58 scope:global align:8
+int_sum_oniyanma_glass_model = .data:0x00A39810; // type:object size:0x68 scope:global align:8
+int_sum_oniyanma_base_model = .data:0x00A39878; // type:object size:0xC8 scope:global align:8
+int_sum_oniyanma_body_R_model = .data:0x00A39940; // type:object size:0x58 scope:global align:8
+int_sum_oniyanma_body_L_model = .data:0x00A39998; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_oniyanma_tbl = .data:0x00A399F0; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_oniyanma_tbl = .data:0x00A399F8; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_oniyanma_tbl = .data:0x00A39A0C; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_oniyanma_tbl = .data:0x00A39A30; // type:object size:0xCC scope:global align:4
+cKF_ba_r_int_sum_oniyanma = .data:0x00A39AFC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_oniyanma_tbl = .data:0x00A39B10; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_oniyanma = .data:0x00A39B70; // type:object size:0x8 scope:global align:4
+int_sum_oonamazu_pal = .data:0x00A39B80; // type:object size:0x20 scope:local align:32
+int_sum_oonamazu_glass_pic_ci4_pal = .data:0x00A39BA0; // type:object size:0x20 scope:global align:32
+int_sum_oonamazu_body_txt = .data:0x00A39BC0; // type:object size:0x400 scope:global align:32
+int_sum_oonamazu_side_txt = .data:0x00A39FC0; // type:object size:0x200 scope:global align:32
+int_sum_oonamazu_base_txt = .data:0x00A3A1C0; // type:object size:0x80 scope:global align:32
+int_sum_oonamazu_top_txt = .data:0x00A3A240; // type:object size:0x100 scope:global align:32
+int_sum_oonamazu_glass_txt = .data:0x00A3A340; // type:object size:0x80 scope:global align:32
+int_sum_oonamazu_v = .data:0x00A3A3C0; // type:object size:0x2D0 scope:global align:8
+int_sum_oonamazu_sakana_model = .data:0x00A3A690; // type:object size:0x70 scope:global align:8
+int_sum_oonamazu_top_model = .data:0x00A3A700; // type:object size:0x58 scope:global align:8
+int_sum_oonamazu_evw_model = .data:0x00A3A758; // type:object size:0x68 scope:global align:8
+int_sum_oonamazu_base_model = .data:0x00A3A7C0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_oonamazu_tbl = .data:0x00A3A850; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_oonamazu_tbl = .data:0x00A3A858; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_oonamazu_tbl = .data:0x00A3A86C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_oonamazu_tbl = .data:0x00A3A880; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_oonamazu = .data:0x00A3A904; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_oonamazu_tbl = .data:0x00A3A918; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_oonamazu = .data:0x00A3A954; // type:object size:0x8 scope:global align:4
+int_sum_pet01_pal = .data:0x00A3A960; // type:object size:0x20 scope:global align:32
+int_sum_pet01_wing_tex_txt = .data:0x00A3A980; // type:object size:0x180 scope:global align:32
+int_sum_pet01_belly_tex_txt = .data:0x00A3AB00; // type:object size:0x180 scope:global align:32
+int_sum_pet01_stand_tex_txt = .data:0x00A3AC80; // type:object size:0x180 scope:global align:32
+int_sum_pet01_wood_tex_txt = .data:0x00A3AE00; // type:object size:0x40 scope:global align:32
+int_sum_pet01_hand_tex_txt = .data:0x00A3AE40; // type:object size:0x80 scope:global align:32
+int_sum_pet01_cagedown_tex_txt = .data:0x00A3AEC0; // type:object size:0x80 scope:global align:32
+int_sum_pet01_cage_tex_txt = .data:0x00A3AF40; // type:object size:0x180 scope:global align:32
+int_sum_pet01_foot_tex_txt = .data:0x00A3B0C0; // type:object size:0x80 scope:global align:32
+int_sum_pet01_v = .data:0x00A3B140; // type:object size:0x510 scope:global align:8
+int_sum_pet01_bard_model = .data:0x00A3B650; // type:object size:0x90 scope:global align:8
+int_sum_pet01_cage_model = .data:0x00A3B6E0; // type:object size:0x1B8 scope:global align:8
+cKF_ckcb_r_int_sum_pet01_tbl = .data:0x00A3B898; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_pet01_tbl = .data:0x00A3B89C; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_pet01_tbl = .data:0x00A3B8A0; // type:object size:0x16 scope:global align:4
+cKF_ds_int_sum_pet01_tbl = .data:0x00A3B8B8; // type:object size:0x2A scope:global align:4
+cKF_ba_r_int_sum_pet01 = .data:0x00A3B8E4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_pet01_tbl = .data:0x00A3B8F8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_pet01 = .data:0x00A3B91C; // type:object size:0x8 scope:global align:4
+int_sum_piano01_pal = .data:0x00A3B940; // type:object size:0x20 scope:global align:32
+int_sum_piano01_top_tex = .data:0x00A3B960; // type:object size:0x300 scope:global align:32
+int_sum_piano01_key_tex = .data:0x00A3BC60; // type:object size:0x100 scope:global align:32
+int_sum_piano01_side_tex = .data:0x00A3BD60; // type:object size:0x100 scope:global align:32
+int_sum_piano01_lid_tex = .data:0x00A3BE60; // type:object size:0x200 scope:global align:32
+int_sum_piano01_stand_tex = .data:0x00A3C060; // type:object size:0x80 scope:global align:32
+int_sum_piano01_pedal_tex = .data:0x00A3C0E0; // type:object size:0x40 scope:global align:32
+int_sum_piano01_pin_tex = .data:0x00A3C120; // type:object size:0x40 scope:global align:32
+int_sum_piano01_v = .data:0x00A3C160; // type:object size:0x490 scope:global align:8
+int_sum_piano01_on_model = .data:0x00A3C5F0; // type:object size:0x60 scope:global align:8
+int_sum_piano01_onT_model = .data:0x00A3C650; // type:object size:0x120 scope:global align:8
+int_sum_pirania_pal = .data:0x00A3C780; // type:object size:0x20 scope:local align:32
+int_sum_pirania_glass_pic_ci4_pal = .data:0x00A3C7A0; // type:object size:0x20 scope:global align:32
+int_sum_pirania_body_txt = .data:0x00A3C7C0; // type:object size:0x200 scope:global align:32
+int_sum_pirania_top_txt = .data:0x00A3C9C0; // type:object size:0x100 scope:global align:32
+int_sum_pirania_side_txt = .data:0x00A3CAC0; // type:object size:0x200 scope:global align:32
+int_sum_pirania_base_txt = .data:0x00A3CCC0; // type:object size:0x80 scope:global align:32
+int_sum_pirania_etc_txt = .data:0x00A3CD40; // type:object size:0x80 scope:global align:32
+int_sum_pirania_glass_txt = .data:0x00A3CDC0; // type:object size:0x100 scope:global align:32
+int_sum_pirania_v = .data:0x00A3CEC0; // type:object size:0x370 scope:global align:8
+int_sum_pirania_sakana_model = .data:0x00A3D230; // type:object size:0x70 scope:global align:8
+int_sum_pirania_top_model = .data:0x00A3D2A0; // type:object size:0x58 scope:global align:8
+int_sum_pirania_evw_model = .data:0x00A3D2F8; // type:object size:0x68 scope:global align:8
+int_sum_pirania_base_model = .data:0x00A3D360; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_pirania_tbl = .data:0x00A3D418; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_pirania_tbl = .data:0x00A3D420; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_pirania_tbl = .data:0x00A3D434; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_pirania_tbl = .data:0x00A3D448; // type:object size:0xB4 scope:global align:4
+cKF_ba_r_int_sum_pirania = .data:0x00A3D4FC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_pirania_tbl = .data:0x00A3D510; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_pirania = .data:0x00A3D54C; // type:object size:0x8 scope:global align:4
+int_sum_pl_aloe01_pal = .data:0x00A3D560; // type:object size:0x20 scope:global align:32
+int_sum_pl_aloe01_leaf_tex = .data:0x00A3D580; // type:object size:0x300 scope:global align:32
+int_sum_pl_aloe01_earth_tex = .data:0x00A3D880; // type:object size:0x80 scope:global align:32
+int_sum_pl_aloe01_hachi_tex = .data:0x00A3D900; // type:object size:0x100 scope:global align:32
+int_sum_pl_aloe01_v = .data:0x00A3DA00; // type:object size:0x4C0 scope:global align:8
+int_sum_pl_aloe01_on_model = .data:0x00A3DEC0; // type:object size:0x58 scope:global align:8
+int_sum_pl_aloe01_onT_model = .data:0x00A3DF18; // type:object size:0xD0 scope:global align:8
+int_sum_pl_ananas_pal = .data:0x00A3E000; // type:object size:0x20 scope:global align:32
+int_sum_pl_ananas_earth_tex = .data:0x00A3E020; // type:object size:0x80 scope:global align:32
+int_sum_pl_ananas_hachi_tex = .data:0x00A3E0A0; // type:object size:0x100 scope:global align:32
+int_sum_pl_ananas_hana_tex = .data:0x00A3E1A0; // type:object size:0x200 scope:global align:32
+int_sum_pl_ananas_leaf_tex = .data:0x00A3E3A0; // type:object size:0x200 scope:global align:32
+int_sum_pl_ananas_v = .data:0x00A3E5A0; // type:object size:0x4E0 scope:global align:8
+int_sum_pl_ananas_on_model = .data:0x00A3EA80; // type:object size:0x60 scope:global align:8
+int_sum_pl_ananas_onT_model = .data:0x00A3EAE0; // type:object size:0xE0 scope:global align:8
+int_sum_pl_benjyami_pal = .data:0x00A3EBC0; // type:object size:0x20 scope:global align:32
+int_sum_pl_benjyami_hachi_tex = .data:0x00A3EBE0; // type:object size:0x100 scope:global align:32
+int_sum_pl_benjyami_earth_tex = .data:0x00A3ECE0; // type:object size:0x80 scope:global align:32
+int_sum_pl_benjyami_stand_tex = .data:0x00A3ED60; // type:object size:0x180 scope:global align:32
+int_sum_pl_benjyami_leaf_tex = .data:0x00A3EEE0; // type:object size:0x200 scope:global align:32
+int_sum_pl_benjyami_v = .data:0x00A3F0E0; // type:object size:0x2E0 scope:global align:8
+int_sum_pl_benjyami_on_model = .data:0x00A3F3C0; // type:object size:0x60 scope:global align:8
+int_sum_pl_benjyami_onT_model = .data:0x00A3F420; // type:object size:0xE0 scope:global align:8
+int_sum_asi_plant01_pal = .data:0x00A3F500; // type:object size:0x20 scope:global align:32
+int_sum_asi_plant01_bin_tex = .data:0x00A3F520; // type:object size:0x100 scope:global align:32
+int_sum_asi_plant01_kuki_tex = .data:0x00A3F620; // type:object size:0x100 scope:global align:32
+int_sum_asi_plant01_leaf_tex = .data:0x00A3F720; // type:object size:0x200 scope:global align:32
+int_sum_asi_plant01_tuchi_tex = .data:0x00A3F920; // type:object size:0x80 scope:global align:32
+int_sum_asi_plant01_v = .data:0x00A3F9A0; // type:object size:0x350 scope:global align:8
+int_sum_asi_plant01_on_model = .data:0x00A3FCF0; // type:object size:0x80 scope:global align:8
+int_sum_asi_plant01_onT_model = .data:0x00A3FD70; // type:object size:0xA0 scope:global align:8
+int_sum_pl_cocos_pal = .data:0x00A3FE20; // type:object size:0x20 scope:global align:32
+int_sum_pl_cocos_earth_tex = .data:0x00A3FE40; // type:object size:0x80 scope:global align:32
+int_sum_pl_cocos_hachi_tex = .data:0x00A3FEC0; // type:object size:0x100 scope:global align:32
+int_sum_pl_cocos_cocos_tex = .data:0x00A3FFC0; // type:object size:0x100 scope:global align:32
+int_sum_pl_cocos_leaf_tex = .data:0x00A400C0; // type:object size:0x180 scope:global align:32
+int_sum_pl_cocos_leaf2_tex = .data:0x00A40240; // type:object size:0x180 scope:global align:32
+int_sum_pl_cocos_v = .data:0x00A403C0; // type:object size:0x2E0 scope:global align:8
+int_sum_pl_cocos_on_model = .data:0x00A406A0; // type:object size:0x98 scope:global align:8
+int_sum_pl_cocos_onT_model = .data:0x00A40738; // type:object size:0xA0 scope:global align:8
+int_sum_pl_compacta_pal = .data:0x00A407E0; // type:object size:0x20 scope:global align:32
+int_sum_pl_compacta_earth_tex = .data:0x00A40800; // type:object size:0x80 scope:global align:32
+int_sum_pl_compacta_hachi_tex = .data:0x00A40880; // type:object size:0x100 scope:global align:32
+int_sum_pl_compacta_leaf_tex = .data:0x00A40980; // type:object size:0x200 scope:global align:32
+int_sum_pl_compacta_leaf2_tex = .data:0x00A40B80; // type:object size:0x200 scope:global align:32
+int_sum_pl_compacta_v = .data:0x00A40D80; // type:object size:0x3C0 scope:global align:8
+int_sum_pl_compacta_on_model = .data:0x00A41140; // type:object size:0x60 scope:global align:8
+int_sum_pl_compacta_onT_model = .data:0x00A411A0; // type:object size:0xC0 scope:global align:8
+int_sum_pl_draca02_pal = .data:0x00A41260; // type:object size:0x20 scope:global align:32
+int_sum_pl_kuroton_pal = .data:0x00A41280; // type:object size:0x20 scope:local align:32
+int_sum_pl_draca02_stand2_tex = .data:0x00A412A0; // type:object size:0x100 scope:global align:32
+int_sum_pl_draca02_stand_tex = .data:0x00A413A0; // type:object size:0x180 scope:global align:32
+int_sum_pl_draca02_leaf_tex = .data:0x00A41520; // type:object size:0x180 scope:global align:32
+int_sum_pl_draca02_hachi_tex = .data:0x00A416A0; // type:object size:0x100 scope:global align:32
+int_sum_pl_draca02_earth_tex = .data:0x00A417A0; // type:object size:0x80 scope:global align:32
+int_sum_pl_draca02_v = .data:0x00A41820; // type:object size:0x650 scope:global align:8
+int_sum_pl_draca02_on_model = .data:0x00A41E70; // type:object size:0x58 scope:global align:8
+int_sum_pl_draca02_onT_model = .data:0x00A41EC8; // type:object size:0x110 scope:global align:8
+int_sum_pl_dracaena_pal = .data:0x00A41FE0; // type:object size:0x20 scope:global align:32
+int_sum_pl_dracaera_earth_tex = .data:0x00A42000; // type:object size:0x80 scope:global align:32
+int_sum_pl_dracaera_hachi_tex = .data:0x00A42080; // type:object size:0x100 scope:global align:32
+int_sum_pl_dracaera_leaf_tex = .data:0x00A42180; // type:object size:0x400 scope:global align:32
+int_sum_pl_dracaera_base_tex = .data:0x00A42580; // type:object size:0x180 scope:global align:32
+int_sum_pl_dracaena_v = .data:0x00A42700; // type:object size:0x380 scope:global align:8
+int_sum_pl_dracaena_on_model = .data:0x00A42A80; // type:object size:0x58 scope:global align:8
+int_sum_pl_dracaena_onT_model = .data:0x00A42AD8; // type:object size:0xF8 scope:global align:8
+int_sum_pl_gomunoki_pal = .data:0x00A42BE0; // type:object size:0x20 scope:global align:32
+int_sum_pl_gomunoki_earth_tex = .data:0x00A42C00; // type:object size:0x80 scope:global align:32
+int_sum_pl_gomunoki_hachi_tex = .data:0x00A42C80; // type:object size:0x100 scope:global align:32
+int_sum_pl_gomunoki_leaf_tex = .data:0x00A42D80; // type:object size:0x200 scope:global align:32
+int_sum_pl_gomunoki_kuki_tex = .data:0x00A42F80; // type:object size:0x180 scope:global align:32
+int_sum_pl_gomunoki_leaf2_tex = .data:0x00A43100; // type:object size:0x200 scope:global align:32
+int_sum_pl_gomunoki_v = .data:0x00A43300; // type:object size:0x4E0 scope:global align:8
+int_sum_pl_gomunoki_on_model = .data:0x00A437E0; // type:object size:0x58 scope:global align:8
+int_sum_pl_gomunoki_onT_model = .data:0x00A43838; // type:object size:0xE8 scope:global align:8
+int_sum_pl_hirasabo_pal = .data:0x00A43920; // type:object size:0x20 scope:global align:32
+int_sum_pl_hirasabo_earth_tex = .data:0x00A43940; // type:object size:0x80 scope:global align:32
+int_sum_pl_hirasabo_hachi_tex = .data:0x00A439C0; // type:object size:0x100 scope:global align:32
+int_sum_pl_hirasabo_sabo1_tex = .data:0x00A43AC0; // type:object size:0x200 scope:global align:32
+int_sum_pl_hirasabo_sabo2_tex = .data:0x00A43CC0; // type:object size:0x300 scope:global align:32
+int_sum_pl_hirasabo_sabo3_tex = .data:0x00A43FC0; // type:object size:0x100 scope:global align:32
+int_sum_pl_hirasabo_v = .data:0x00A440C0; // type:object size:0x2F0 scope:global align:8
+int_sum_pl_hirasabo_on_model = .data:0x00A443B0; // type:object size:0x60 scope:global align:8
+int_sum_pl_hirasabo_onT_model = .data:0x00A44410; // type:object size:0xF0 scope:global align:8
+int_sum_pl_kuroton_pal = .data:0x00A44500; // type:object size:0x20 scope:local align:32
+int_sum_pl_kuroton_leaf_tex = .data:0x00A44520; // type:object size:0x400 scope:global align:32
+int_sum_pl_kuroton_kuki_tex = .data:0x00A44920; // type:object size:0x100 scope:global align:32
+int_sum_pl_kuroton_earth_tex = .data:0x00A44A20; // type:object size:0x80 scope:global align:32
+int_sum_pl_kuroton_hachi_tex = .data:0x00A44AA0; // type:object size:0x100 scope:global align:32
+int_sum_pl_kuroton_v = .data:0x00A44BA0; // type:object size:0x5C0 scope:global align:8
+int_sum_pl_kuroton_on_model = .data:0x00A45160; // type:object size:0x58 scope:global align:8
+int_sum_pl_kuroton_onT_model = .data:0x00A451B8; // type:object size:0xF0 scope:global align:8
+int_sum_pl_pakila_pal = .data:0x00A452C0; // type:object size:0x20 scope:global align:32
+int_sum_pl_pakila_hachi_tex = .data:0x00A452E0; // type:object size:0x100 scope:global align:32
+int_sum_pl_pakila_earth_tex = .data:0x00A453E0; // type:object size:0x80 scope:global align:32
+int_sum_pl_pakila_kuki_tex = .data:0x00A45460; // type:object size:0x80 scope:global align:32
+int_sum_pl_pakila_leaf_tex = .data:0x00A454E0; // type:object size:0x400 scope:global align:32
+int_sum_pl_pakila_wood_tex = .data:0x00A458E0; // type:object size:0x200 scope:global align:32
+int_sum_pl_pakila_v = .data:0x00A45AE0; // type:object size:0x370 scope:global align:8
+int_sum_pl_pakila_on_model = .data:0x00A45E50; // type:object size:0x60 scope:global align:8
+int_sum_pl_pakila_onT_model = .data:0x00A45EB0; // type:object size:0xE0 scope:global align:8
+int_sum_pl_pothos_pal = .data:0x00A45FA0; // type:object size:0x20 scope:global align:32
+int_sum_pl_pothos_hachi_tex = .data:0x00A45FC0; // type:object size:0x100 scope:global align:32
+int_sum_pl_pothos_stand_tex = .data:0x00A460C0; // type:object size:0x180 scope:global align:32
+int_sum_pl_pothos_earth_tex = .data:0x00A46240; // type:object size:0x80 scope:global align:32
+int_sum_pl_pothos_leaf1_tex = .data:0x00A462C0; // type:object size:0x100 scope:global align:32
+int_sum_pl_pothos_leaf2_tex = .data:0x00A463C0; // type:object size:0x200 scope:global align:32
+int_sum_pl_pothos_v = .data:0x00A465C0; // type:object size:0x2E0 scope:global align:8
+int_sum_pl_pothos_on_model = .data:0x00A468A0; // type:object size:0x60 scope:global align:8
+int_sum_pl_pothos_onT_model = .data:0x00A46900; // type:object size:0xD0 scope:global align:8
+int_sum_asi_plant02_pal = .data:0x00A469E0; // type:object size:0x20 scope:global align:32
+int_sum_asi_plant02_bin_tex = .data:0x00A46A00; // type:object size:0x100 scope:global align:32
+int_sum_asi_plant02_tuchi_tex = .data:0x00A46B00; // type:object size:0x80 scope:global align:32
+int_sum_asi_plant02_leaf_tex = .data:0x00A46B80; // type:object size:0x300 scope:global align:32
+int_sum_asi_plant02_miki_tex = .data:0x00A46E80; // type:object size:0x100 scope:global align:32
+int_sum_asi_plant02_kuki_tex = .data:0x00A46F80; // type:object size:0x100 scope:global align:32
+int_sum_asi_plant02_v = .data:0x00A47080; // type:object size:0x460 scope:global align:8
+int_sum_asi_plant02_on_model = .data:0x00A474E0; // type:object size:0x88 scope:global align:8
+int_sum_asi_plant02_onT_model = .data:0x00A47568; // type:object size:0xC8 scope:global align:8
+int_sum_pl_yamayasi_pal = .data:0x00A47640; // type:object size:0x20 scope:global align:32
+int_sum_pl_yamayasi_earth_tex = .data:0x00A47660; // type:object size:0x80 scope:global align:32
+int_sum_pl_yamayasi_hachi_tex = .data:0x00A476E0; // type:object size:0x100 scope:global align:32
+int_sum_pl_yamayasi_leaf_tex = .data:0x00A477E0; // type:object size:0x400 scope:global align:32
+int_sum_pl_yamayasi_stand_tex = .data:0x00A47BE0; // type:object size:0x100 scope:global align:32
+int_sum_pl_yamayasi_v = .data:0x00A47CE0; // type:object size:0x540 scope:global align:8
+int_sum_pl_yamayasi_on_model = .data:0x00A48220; // type:object size:0x60 scope:global align:8
+int_sum_pl_yamayasi_onT_model = .data:0x00A48280; // type:object size:0xE8 scope:global align:8
+int_sum_poptable01_pal = .data:0x00A48380; // type:object size:0x20 scope:local align:32
+int_sum_popchair01_top_tex = .data:0x00A483A0; // type:object size:0x200 scope:global align:32
+int_sum_popchair01_standtop_tex = .data:0x00A485A0; // type:object size:0x80 scope:global align:32
+int_sum_popchair01_side1_tex = .data:0x00A48620; // type:object size:0x100 scope:global align:32
+int_sum_popchair01_stand_tex = .data:0x00A48720; // type:object size:0x100 scope:global align:32
+int_sum_popchair01_board_tex = .data:0x00A48820; // type:object size:0x200 scope:global align:32
+int_sum_popchair01_v = .data:0x00A48A20; // type:object size:0x320 scope:global align:8
+int_sum_popchair01_onT_model = .data:0x00A48D40; // type:object size:0x108 scope:global align:8
+int_sum_popchair02_pal = .data:0x00A48E60; // type:object size:0x20 scope:global align:32
+int_sum_popchair02_top_tex = .data:0x00A48E80; // type:object size:0x200 scope:global align:32
+int_sum_popchair02_standtop_tex = .data:0x00A49080; // type:object size:0x80 scope:global align:32
+int_sum_popchair02_side1_tex = .data:0x00A49100; // type:object size:0x100 scope:global align:32
+int_sum_popchair02_stand_tex = .data:0x00A49200; // type:object size:0x100 scope:global align:32
+int_sum_popchair02_board_tex = .data:0x00A49300; // type:object size:0x200 scope:global align:32
+int_sum_popchair02_v = .data:0x00A49500; // type:object size:0x320 scope:global align:8
+int_sum_popchair02_onT_model = .data:0x00A49820; // type:object size:0x108 scope:global align:8
+int_sum_popchair03_pal = .data:0x00A49940; // type:object size:0x20 scope:global align:32
+int_sum_popchair03_top_tex = .data:0x00A49960; // type:object size:0x200 scope:global align:32
+int_sum_popchair03_standtop_tex = .data:0x00A49B60; // type:object size:0x80 scope:global align:32
+int_sum_popchair03_side1_tex = .data:0x00A49BE0; // type:object size:0x100 scope:global align:32
+int_sum_popchair03_stand_tex = .data:0x00A49CE0; // type:object size:0x100 scope:global align:32
+int_sum_popchair03_board_tex = .data:0x00A49DE0; // type:object size:0x200 scope:global align:32
+int_sum_popchair03_v = .data:0x00A49FE0; // type:object size:0x320 scope:global align:8
+int_sum_popchair03_onT_model = .data:0x00A4A300; // type:object size:0x108 scope:global align:8
+int_sum_poptable01_pal = .data:0x00A4A420; // type:object size:0x20 scope:local align:32
+int_sum_poptable01_top_tex = .data:0x00A4A440; // type:object size:0x200 scope:global align:32
+int_sum_poptable01_topback_tex = .data:0x00A4A640; // type:object size:0x200 scope:global align:32
+int_sum_poptable01_stand_tex = .data:0x00A4A840; // type:object size:0x100 scope:global align:32
+int_sum_poptable01_standtop_tex = .data:0x00A4A940; // type:object size:0x80 scope:global align:32
+int_sum_poptable01_standsita_tex = .data:0x00A4A9C0; // type:object size:0x100 scope:global align:32
+int_sum_poptable01_v = .data:0x00A4AAC0; // type:object size:0x1A0 scope:global align:8
+int_sum_poptable01_on_model = .data:0x00A4AC60; // type:object size:0x60 scope:global align:8
+int_sum_poptable01_onT_model = .data:0x00A4ACC0; // type:object size:0xA8 scope:global align:8
+int_sum_poptable02_pal = .data:0x00A4AD80; // type:object size:0x20 scope:global align:32
+int_sum_poptable02_top_tex = .data:0x00A4ADA0; // type:object size:0x200 scope:global align:32
+int_sum_poptable02_topback_tex = .data:0x00A4AFA0; // type:object size:0x200 scope:global align:32
+int_sum_poptable02_stand_tex = .data:0x00A4B1A0; // type:object size:0x100 scope:global align:32
+int_sum_poptable02_standtop_tex = .data:0x00A4B2A0; // type:object size:0x80 scope:global align:32
+int_sum_poptable02_standsita_tex = .data:0x00A4B320; // type:object size:0x100 scope:global align:32
+int_sum_poptable02_v = .data:0x00A4B420; // type:object size:0x1A0 scope:global align:8
+int_sum_poptable02_on_model = .data:0x00A4B5C0; // type:object size:0x60 scope:global align:8
+int_sum_poptable02_onT_model = .data:0x00A4B620; // type:object size:0xA8 scope:global align:8
+int_sum_poptable03_pal = .data:0x00A4B6E0; // type:object size:0x20 scope:global align:32
+int_sum_poptable03_top_tex = .data:0x00A4B700; // type:object size:0x200 scope:global align:32
+int_sum_poptable03_topback_tex = .data:0x00A4B900; // type:object size:0x200 scope:global align:32
+int_sum_poptable03_stand_tex = .data:0x00A4BB00; // type:object size:0x100 scope:global align:32
+int_sum_poptable03_standtop_tex = .data:0x00A4BC00; // type:object size:0x80 scope:global align:32
+int_sum_poptable03_standsita_tex = .data:0x00A4BC80; // type:object size:0x100 scope:global align:32
+int_sum_poptable03_v = .data:0x00A4BD80; // type:object size:0x1A0 scope:global align:8
+int_sum_poptable03_on_model = .data:0x00A4BF20; // type:object size:0x60 scope:global align:8
+int_sum_poptable03_onT_model = .data:0x00A4BF80; // type:object size:0xA8 scope:global align:8
+int_radio01_pal = .data:0x00A4C040; // type:object size:0x20 scope:global align:32
+int_sum_radio01_front_tex = .data:0x00A4C060; // type:object size:0x480 scope:global align:32
+int_sum_radio01_side_tex = .data:0x00A4C4E0; // type:object size:0x80 scope:global align:32
+int_sum_radio01_hand_tex = .data:0x00A4C560; // type:object size:0x100 scope:global align:32
+int_sum_radio01_sound_tex = .data:0x00A4C660; // type:object size:0x80 scope:global align:32
+int_sum_radio01_v = .data:0x00A4C6E0; // type:object size:0x2A0 scope:global align:8
+int_sum_radio01_on_model = .data:0x00A4C980; // type:object size:0x80 scope:global align:8
+int_sum_radio01_onT_model = .data:0x00A4CA00; // type:object size:0x90 scope:global align:8
+int_radio02_pal = .data:0x00A4CAA0; // type:object size:0x20 scope:global align:32
+int_sum_radio02_front_tex = .data:0x00A4CAC0; // type:object size:0x480 scope:global align:32
+int_sum_radio02_side_tex = .data:0x00A4CF40; // type:object size:0x80 scope:global align:32
+int_sum_radio02_hand_tex = .data:0x00A4CFC0; // type:object size:0x100 scope:global align:32
+int_sum_radio02_sound_tex = .data:0x00A4D0C0; // type:object size:0x80 scope:global align:32
+int_sum_radio02_v = .data:0x00A4D140; // type:object size:0x280 scope:global align:8
+int_sum_radio02_on_model = .data:0x00A4D3C0; // type:object size:0x80 scope:global align:8
+int_sum_radio02_onT_model = .data:0x00A4D440; // type:object size:0x90 scope:global align:8
+int_sum_raigyo_pal = .data:0x00A4D4E0; // type:object size:0x20 scope:local align:32
+int_sum_raigyo_glass_pic_ci4_pal = .data:0x00A4D500; // type:object size:0x20 scope:global align:32
+int_sum_raigyo_body_txt = .data:0x00A4D520; // type:object size:0x400 scope:global align:32
+int_sum_raigyo_side_txt = .data:0x00A4D920; // type:object size:0x200 scope:global align:32
+int_sum_raigyo_base_txt = .data:0x00A4DB20; // type:object size:0x80 scope:global align:32
+int_sum_raigyo_top_txt = .data:0x00A4DBA0; // type:object size:0x100 scope:global align:32
+int_sum_raigyo_glass_txt = .data:0x00A4DCA0; // type:object size:0x80 scope:global align:32
+int_sum_raigyo_v = .data:0x00A4DD20; // type:object size:0x370 scope:global align:8
+int_sum_raigyo_sakana_model = .data:0x00A4E090; // type:object size:0x90 scope:global align:8
+int_sum_raigyo_top_model = .data:0x00A4E120; // type:object size:0x58 scope:global align:8
+int_sum_raigyo_evw_model = .data:0x00A4E178; // type:object size:0x68 scope:global align:8
+int_sum_raigyo_base_model = .data:0x00A4E1E0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_raigyo_tbl = .data:0x00A4E270; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_raigyo_tbl = .data:0x00A4E278; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_raigyo_tbl = .data:0x00A4E28C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_raigyo_tbl = .data:0x00A4E2A0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_raigyo = .data:0x00A4E324; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_raigyo_tbl = .data:0x00A4E338; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_raigyo = .data:0x00A4E374; // type:object size:0x8 scope:global align:4
+int_sum_ratan_bed01_pal = .data:0x00A4E380; // type:object size:0x20 scope:global align:32
+int_sum_ratan_bed01_top_tax = .data:0x00A4E3A0; // type:object size:0x180 scope:global align:32
+int_sum_ratan_bed01_head_tax = .data:0x00A4E520; // type:object size:0x100 scope:global align:32
+int_sum_ratan_bed01_side_tax = .data:0x00A4E620; // type:object size:0x200 scope:global align:32
+int_sum_ratan_bed01_foot_tax = .data:0x00A4E820; // type:object size:0x80 scope:global align:32
+int_sum_ratan_bed01_pillow_tax = .data:0x00A4E8A0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_bed01_v = .data:0x00A4E9A0; // type:object size:0x400 scope:global align:8
+int_sum_ratan_bed01_on_model = .data:0x00A4EDA0; // type:object size:0xC0 scope:global align:8
+int_sum_ratan_bed01_onT_model = .data:0x00A4EE60; // type:object size:0x90 scope:global align:8
+int_sum_ratan_chest01_pal = .data:0x00A4EF00; // type:object size:0x20 scope:global align:32
+int_sum_ratan_chest01_door_tax_txt = .data:0x00A4EF20; // type:object size:0x80 scope:global align:32
+int_sum_ratan_chest01_top_tax_txt = .data:0x00A4EFA0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_chest01_front_tax_txt = .data:0x00A4F0A0; // type:object size:0x180 scope:global align:32
+int_sum_ratan_chest01_back_tax_txt = .data:0x00A4F220; // type:object size:0x180 scope:global align:32
+int_sum_ratan_chest01_side_tax_txt = .data:0x00A4F3A0; // type:object size:0x180 scope:global align:32
+int_sum_ratan_chest01_v = .data:0x00A4F520; // type:object size:0x340 scope:global align:8
+int_sum_ratan_chest01_door_model = .data:0x00A4F860; // type:object size:0x90 scope:global align:8
+int_sum_ratan_chest01_base_model = .data:0x00A4F8F0; // type:object size:0xB0 scope:global align:8
+cKF_ckcb_r_int_sum_ratan_chest01_tbl = .data:0x00A4F9A0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_ratan_chest01_tbl = .data:0x00A4F9A4; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_ratan_chest01_tbl = .data:0x00A4F9B8; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_ratan_chest01_tbl = .data:0x00A4F9C0; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_ratan_chest01 = .data:0x00A4FA2C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ratan_chest01_tbl = .data:0x00A4FA40; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_ratan_chest01 = .data:0x00A4FA64; // type:object size:0x8 scope:global align:4
+int_sum_ratan_chest02_pal = .data:0x00A4FA80; // type:object size:0x20 scope:global align:32
+int_sum_ratan_chest02_hiki_tax_txt = .data:0x00A4FAA0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_chest02_intop_tax_txt = .data:0x00A4FBA0; // type:object size:0x80 scope:global align:32
+int_sum_ratan_chest02_top_tax_txt = .data:0x00A4FC20; // type:object size:0x80 scope:global align:32
+int_sum_ratan_chest02_back_tax_txt = .data:0x00A4FCA0; // type:object size:0x180 scope:global align:32
+int_sum_ratan_chest02_front_tax_txt = .data:0x00A4FE20; // type:object size:0x300 scope:global align:32
+int_sum_ratan_chest02_v = .data:0x00A50120; // type:object size:0x360 scope:global align:8
+int_sum_ratan_chest02_doorL_model = .data:0x00A50480; // type:object size:0x80 scope:global align:8
+int_sum_ratan_chest02_base_model = .data:0x00A50500; // type:object size:0xD0 scope:global align:8
+int_sum_ratan_chest02_doorR_model = .data:0x00A505D0; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_sum_ratan_chest02_tbl = .data:0x00A50650; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_ratan_chest02_tbl = .data:0x00A50658; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_ratan_chest02_tbl = .data:0x00A50670; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_ratan_chest02_tbl = .data:0x00A5067C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_ratan_chest02 = .data:0x00A50718; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ratan_chest02_tbl = .data:0x00A5072C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_ratan_chest02 = .data:0x00A50768; // type:object size:0x8 scope:global align:4
+int_sum_ratan_chest03_pal = .data:0x00A50780; // type:object size:0x20 scope:global align:32
+int_sum_ratan_chest03_front_tax = .data:0x00A507A0; // type:object size:0x400 scope:global align:32
+int_sum_ratan_chest03_side_tax = .data:0x00A50BA0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_chest03_top_tax = .data:0x00A50CA0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_chest03_book_tax = .data:0x00A50DA0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_chest03_book2_tax = .data:0x00A50EA0; // type:object size:0x80 scope:global align:32
+int_sum_ratan_chest03_v = .data:0x00A50F20; // type:object size:0x3E0 scope:global align:8
+int_sum_ratan_chest03_on_model = .data:0x00A51300; // type:object size:0xA0 scope:global align:8
+int_sum_ratan_chest03_onT_model = .data:0x00A513A0; // type:object size:0xB8 scope:global align:8
+int_sum_ratan_isu01_pal = .data:0x00A51460; // type:object size:0x20 scope:global align:32
+int_sum_ratan_isu01_seat_tax = .data:0x00A51480; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_back_tax = .data:0x00A51580; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_board_tax = .data:0x00A51680; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_side_tax = .data:0x00A51780; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_outside_tax = .data:0x00A51880; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_sidein_tax = .data:0x00A51980; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu01_foot_tax = .data:0x00A51A80; // type:object size:0x80 scope:global align:32
+int_sum_ratan_isu01_v = .data:0x00A51B00; // type:object size:0x460 scope:global align:8
+int_sum_ratan_isu01_on_model = .data:0x00A51F60; // type:object size:0xF0 scope:global align:8
+int_sum_ratan_isu01_onT_model = .data:0x00A52050; // type:object size:0x90 scope:global align:8
+int_sum_ratan_isu02_pal = .data:0x00A520E0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_isu02_seat_tex = .data:0x00A52100; // type:object size:0x300 scope:global align:32
+int_sum_ratan_isu02_back_tex = .data:0x00A52400; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu02_foot_tex = .data:0x00A52500; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu02_top_tex = .data:0x00A52600; // type:object size:0x100 scope:global align:32
+int_sum_ratan_isu02_v = .data:0x00A52700; // type:object size:0x4A0 scope:global align:8
+int_sum_ratan_isu02_on_model = .data:0x00A52BA0; // type:object size:0x90 scope:global align:8
+int_sum_ratan_isu02_onT_model = .data:0x00A52C30; // type:object size:0xA0 scope:global align:8
+int_sum_ratan_lanp_pal = .data:0x00A52CE0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_lanp_kasa_tax = .data:0x00A52D00; // type:object size:0x100 scope:global align:32
+int_sum_ratan_lanp_stand_tax = .data:0x00A52E00; // type:object size:0x100 scope:global align:32
+int_sum_ratan_lanp_base_tax = .data:0x00A52F00; // type:object size:0x100 scope:global align:32
+int_sum_ratan_lanp_basetop_tax = .data:0x00A53000; // type:object size:0x80 scope:global align:32
+int_sum_ratan_lanp_hiki_tax = .data:0x00A53080; // type:object size:0x80 scope:global align:32
+int_sum_ratan_lanp_v = .data:0x00A53100; // type:object size:0x280 scope:global align:8
+int_sum_ratan_lanp_off_model = .data:0x00A53380; // type:object size:0x88 scope:global align:8
+int_sum_ratan_lanp_offT_model = .data:0x00A53408; // type:object size:0xB0 scope:global align:8
+int_sum_ratan_mirror_pal = .data:0x00A534C0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_mirror_grass_tex_rgb_ci4_pal = .data:0x00A534E0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_mirror_table_tex = .data:0x00A53500; // type:object size:0x80 scope:global align:32
+int_sum_ratan_mirror_head_tex = .data:0x00A53580; // type:object size:0x100 scope:global align:32
+int_sum_ratan_mirror_front_tex = .data:0x00A53680; // type:object size:0x200 scope:global align:32
+int_sum_ratan_mirror_back_tex = .data:0x00A53880; // type:object size:0x200 scope:global align:32
+int_sum_ratan_mirror_side_tex = .data:0x00A53A80; // type:object size:0x80 scope:global align:32
+int_sum_ratan_mirror_bin_tex = .data:0x00A53B00; // type:object size:0x80 scope:global align:32
+int_sum_ratan_mirror_grass_tex = .data:0x00A53B80; // type:object size:0x100 scope:global align:32
+int_sum_ratan_mirror_v = .data:0x00A53C80; // type:object size:0x380 scope:global align:8
+int_sum_ratan_mirror_on_model = .data:0x00A54000; // type:object size:0xB0 scope:global align:8
+int_sum_ratan_mirror_evw_model = .data:0x00A540B0; // type:object size:0x58 scope:global align:8
+int_sum_ratan_mirror_onT_model = .data:0x00A54108; // type:object size:0xC0 scope:global align:8
+int_sum_ratan_screen_pal = .data:0x00A541E0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_screen_front_tex = .data:0x00A54200; // type:object size:0x200 scope:global align:32
+int_sum_ratan_screen_v = .data:0x00A54400; // type:object size:0xE0 scope:global align:8
+int_sum_ratan_screen_onT_model = .data:0x00A544E0; // type:object size:0x88 scope:global align:8
+int_sum_ratan_table01_pal = .data:0x00A54580; // type:object size:0x20 scope:global align:32
+int_sum_ratan_table01_grass_tex_rgb_ci4_pal = .data:0x00A545A0; // type:object size:0x20 scope:global align:32
+int_sum_ratan_table01_front_tex = .data:0x00A545C0; // type:object size:0x200 scope:global align:32
+int_sum_ratan_table01_side_tex = .data:0x00A547C0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_table01_top_tex = .data:0x00A548C0; // type:object size:0x100 scope:global align:32
+int_sum_ratan_table01_grass_tex = .data:0x00A549C0; // type:object size:0x80 scope:global align:32
+int_sum_ratan_table01_v = .data:0x00A54A40; // type:object size:0x1C0 scope:global align:8
+int_sum_ratan_table01_onT_model = .data:0x00A54C00; // type:object size:0xA8 scope:global align:8
+int_sum_ratan_table01_evwT_model = .data:0x00A54CA8; // type:object size:0x58 scope:global align:8
+int_sum_reco01_pal = .data:0x00A54D00; // type:object size:0x20 scope:global align:32
+int_sum_reco01_recotop_tex_txt = .data:0x00A54D20; // type:object size:0x200 scope:global align:32
+int_sum_reco01_front_tex_txt = .data:0x00A54F20; // type:object size:0x400 scope:global align:32
+int_sum_reco01_side_tex_txt = .data:0x00A55320; // type:object size:0x180 scope:global align:32
+int_sum_reco01_v = .data:0x00A554A0; // type:object size:0x240 scope:global align:8
+int_sum_reco01_yellow_model = .data:0x00A556E0; // type:object size:0x60 scope:global align:8
+int_sum_reco01_base_model = .data:0x00A55740; // type:object size:0x88 scope:global align:8
+int_sum_reco01_red_model = .data:0x00A557C8; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_reco01_tbl = .data:0x00A55828; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_reco01_tbl = .data:0x00A55830; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_reco01_tbl = .data:0x00A55848; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_reco01_tbl = .data:0x00A55854; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_reco01 = .data:0x00A558E4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_reco01_tbl = .data:0x00A558F8; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_reco01 = .data:0x00A55934; // type:object size:0x8 scope:global align:4
+int_roboclk_pal = .data:0x00A55940; // type:object size:0x20 scope:global align:32
+int_sum_roboclk_hari_tex_txt = .data:0x00A55960; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_eye1_TA_tex_txt = .data:0x00A559E0; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_eye2_TA_tex_txt = .data:0x00A55A60; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_top_tex_txt = .data:0x00A55AE0; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_base_tex_txt = .data:0x00A55B60; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_front_tex_txt = .data:0x00A55BE0; // type:object size:0x400 scope:global align:32
+int_sum_roboclk_antena_tex_txt = .data:0x00A55FE0; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_head_tex_txt = .data:0x00A56060; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_hand_tex_txt = .data:0x00A560E0; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_arm_tex_txt = .data:0x00A56160; // type:object size:0x80 scope:global align:32
+int_sum_roboclk_v = .data:0x00A561E0; // type:object size:0x610 scope:global align:8
+int_sum_roboclk_short_model = .data:0x00A567F0; // type:object size:0x58 scope:global align:8
+int_sum_roboclk_base_model = .data:0x00A56848; // type:object size:0x188 scope:global align:8
+int_sum_roboclk_long_model = .data:0x00A569D0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_roboclk_tbl = .data:0x00A56A28; // type:object size:0x5 scope:global align:4
+cKF_c_int_sum_roboclk_tbl = .data:0x00A56A30; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_sum_roboclk = .data:0x00A56A54; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_roboclk_tbl = .data:0x00A56A68; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_roboclk = .data:0x00A56AA4; // type:object size:0x8 scope:global align:4
+int_roboconpo_pal = .data:0x00A56AC0; // type:object size:0x20 scope:global align:32
+int_sum_roboconpo_stand_tex_txt = .data:0x00A56AE0; // type:object size:0x80 scope:global align:32
+int_sum_roboconpo_body_tex_txt = .data:0x00A56B60; // type:object size:0x400 scope:global align:32
+int_sum_roboconpo_spika_tex_txt = .data:0x00A56F60; // type:object size:0x100 scope:global align:32
+int_sum_roboconpo_top_tex_txt = .data:0x00A57060; // type:object size:0x100 scope:global align:32
+int_sum_roboconpo_face1_TA_tex_txt = .data:0x00A57160; // type:object size:0x80 scope:global align:32
+int_sum_roboconpo_face2_TA_tex_txt = .data:0x00A571E0; // type:object size:0x80 scope:global align:32
+int_sum_roboconpo_hed_tex_txt = .data:0x00A57260; // type:object size:0x80 scope:global align:32
+int_sum_roboconpo_neck_tex_txt = .data:0x00A572E0; // type:object size:0x80 scope:global align:32
+int_sum_roboconpo_v = .data:0x00A57360; // type:object size:0x4F0 scope:global align:8
+int_sum_roboconpo_on_model = .data:0x00A57850; // type:object size:0x158 scope:global align:8
+cKF_ckcb_r_int_sum_roboconpo_tbl = .data:0x00A579A8; // type:object size:0x1 scope:global align:4
+cKF_c_int_sum_roboconpo_tbl = .data:0x00A579AC; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_sum_roboconpo = .data:0x00A579B8; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_roboconpo_tbl = .data:0x00A579CC; // type:object size:0xC scope:global align:4
+cKF_bs_r_int_sum_roboconpo = .data:0x00A579D8; // type:object size:0x8 scope:global align:4
+int_sum_sabo01_pal = .data:0x00A579E0; // type:object size:0x20 scope:global align:32
+int_sum_sabo01_main_tex = .data:0x00A57A00; // type:object size:0x400 scope:global align:32
+int_sum_sabo01_hachi_tex = .data:0x00A57E00; // type:object size:0x100 scope:global align:32
+int_sum_sabo01_tuchi_tex = .data:0x00A57F00; // type:object size:0x100 scope:global align:32
+int_sum_sabo01_v = .data:0x00A58000; // type:object size:0x220 scope:global align:8
+int_sum_sabo01_on_model = .data:0x00A58220; // type:object size:0x60 scope:global align:8
+int_sum_sabo01_onT_model = .data:0x00A58280; // type:object size:0x80 scope:global align:8
+int_sum_sabo02_pal = .data:0x00A58300; // type:object size:0x20 scope:global align:32
+int_sum_sabo02_main_tex = .data:0x00A58320; // type:object size:0x200 scope:global align:32
+int_sum_sabo02_hachi_tex = .data:0x00A58520; // type:object size:0x100 scope:global align:32
+int_sum_sabo02_tuchi_tex = .data:0x00A58620; // type:object size:0x100 scope:global align:32
+int_sum_sabo02_hana_tex = .data:0x00A58720; // type:object size:0x80 scope:global align:32
+int_sum_sabo02_v = .data:0x00A587A0; // type:object size:0x250 scope:global align:8
+int_sum_sabo02_on_model = .data:0x00A589F0; // type:object size:0x60 scope:global align:8
+int_sum_sabo02_onT_model = .data:0x00A58A50; // type:object size:0xA8 scope:global align:8
+int_saiconpo_pal = .data:0x00A58B00; // type:object size:0x20 scope:global align:32
+int_sum_saiconpo_body_tex = .data:0x00A58B20; // type:object size:0x480 scope:global align:32
+int_sum_saiconpo_side_tex = .data:0x00A58FA0; // type:object size:0x100 scope:global align:32
+int_sum_saiconpo_v = .data:0x00A590A0; // type:object size:0x100 scope:global align:8
+int_sum_saiconpo_on_model = .data:0x00A591A0; // type:object size:0x80 scope:global align:8
+int_sum_sake_pal = .data:0x00A59220; // type:object size:0x20 scope:local align:32
+int_sum_sake_glass_pic_ci4_pal = .data:0x00A59240; // type:object size:0x20 scope:global align:32
+int_sum_sake_body_txt = .data:0x00A59260; // type:object size:0x300 scope:global align:32
+int_sum_sake_side_txt = .data:0x00A59560; // type:object size:0x200 scope:global align:32
+int_sum_sake_base_txt = .data:0x00A59760; // type:object size:0x80 scope:global align:32
+int_sum_sake_top_txt = .data:0x00A597E0; // type:object size:0x100 scope:global align:32
+int_sum_sake_glass_txt = .data:0x00A598E0; // type:object size:0x100 scope:global align:32
+int_sum_sake_v = .data:0x00A599E0; // type:object size:0x2D0 scope:global align:8
+int_sum_sake_sakana_model = .data:0x00A59CB0; // type:object size:0x70 scope:global align:8
+int_sum_sake_top_model = .data:0x00A59D20; // type:object size:0x58 scope:global align:8
+int_sum_sake_evw_model = .data:0x00A59D78; // type:object size:0x68 scope:global align:8
+int_sum_sake_base_model = .data:0x00A59DE0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_sake_tbl = .data:0x00A59E70; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_sake_tbl = .data:0x00A59E78; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_sake_tbl = .data:0x00A59E8C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_sake_tbl = .data:0x00A59EA0; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_sake = .data:0x00A59F24; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_sake_tbl = .data:0x00A59F38; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_sake = .data:0x00A59F74; // type:object size:0x8 scope:global align:4
+int_sum_shiokara_pal = .data:0x00A59F80; // type:object size:0x20 scope:global align:32
+int_sum_shiokara_hand_pic_ci4_pal = .data:0x00A59FA0; // type:object size:0x20 scope:global align:32
+int_sum_shiokara_side_txt = .data:0x00A59FC0; // type:object size:0x200 scope:global align:32
+int_sum_shiokara_base_txt = .data:0x00A5A1C0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_shiokara_top_txt = .data:0x00A5A240; // type:object size:0x200 scope:global align:32
+int_sum_shiokara_body_txt = .data:0x00A5A440; // type:object size:0x180 scope:global align:32
+int_sum_shiokara_hand_txt = .data:0x00A5A5C0; // type:object size:0x100 scope:global align:32
+int_sum_shiokara_v = .data:0x00A5A6C0; // type:object size:0x450 scope:global align:8
+int_sum_shiokara_side_model = .data:0x00A5AB10; // type:object size:0x68 scope:global align:8
+int_sum_shiokara_komado_model = .data:0x00A5AB78; // type:object size:0x58 scope:global align:8
+int_sum_shiokara_glass_model = .data:0x00A5ABD0; // type:object size:0x68 scope:global align:8
+int_sum_shiokara_base_model = .data:0x00A5AC38; // type:object size:0xC8 scope:global align:8
+int_sum_shiokara_body_R_model = .data:0x00A5AD00; // type:object size:0x58 scope:global align:8
+int_sum_shiokara_body_L_model = .data:0x00A5AD58; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_shiokara_tbl = .data:0x00A5ADB0; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_shiokara_tbl = .data:0x00A5ADB8; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_shiokara_tbl = .data:0x00A5ADCC; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_shiokara_tbl = .data:0x00A5ADF0; // type:object size:0x78 scope:global align:4
+cKF_ba_r_int_sum_shiokara = .data:0x00A5AE68; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_shiokara_tbl = .data:0x00A5AE7C; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_shiokara = .data:0x00A5AEDC; // type:object size:0x8 scope:global align:4
+int_sum_shoukaki_pal = .data:0x00A5AF00; // type:object size:0x20 scope:global align:32
+int_sum_shoukaki_front_tex_txt = .data:0x00A5AF20; // type:object size:0x200 scope:global align:32
+int_sum_shoukaki_cupside_tex_txt = .data:0x00A5B120; // type:object size:0x80 scope:global align:32
+int_sum_shoukaki_tube_tex_txt = .data:0x00A5B1A0; // type:object size:0x100 scope:global align:32
+int_sum_shoukaki_grip_tex_txt = .data:0x00A5B2A0; // type:object size:0x80 scope:global align:32
+int_sum_shoukaki_pull_tex_txt = .data:0x00A5B320; // type:object size:0x80 scope:global align:32 data:string
+int_sum_shoukaki_griptop_tex_txt = .data:0x00A5B3A0; // type:object size:0x80 scope:global align:32
+int_sum_shoukaki_gripdown_tex_txt = .data:0x00A5B420; // type:object size:0x80 scope:global align:32
+int_sum_shoukaki_v = .data:0x00A5B4A0; // type:object size:0x420 scope:global align:8
+int_sum_shoukaki_model = .data:0x00A5B8C0; // type:object size:0x170 scope:global align:8
+int_sum_slot_pal = .data:0x00A5BA40; // type:object size:0x20 scope:global align:32
+int_sum_slot_reel1_TA_tex_txt = .data:0x00A5BA60; // type:object size:0x100 scope:global align:32
+int_sum_slot_reel2_TA_tex_txt = .data:0x00A5BB60; // type:object size:0x100 scope:global align:32
+int_sum_slot_leverbase_tex_txt = .data:0x00A5BC60; // type:object size:0x100 scope:global align:32 data:string
+int_sum_slot_lever_tex_txt = .data:0x00A5BD60; // type:object size:0x100 scope:global align:32
+int_sum_slot_side_tex_txt = .data:0x00A5BE60; // type:object size:0x100 scope:global align:32
+int_sum_slot_front_tex_txt = .data:0x00A5BF60; // type:object size:0x300 scope:global align:32
+int_sum_slot_foot_tex_txt = .data:0x00A5C260; // type:object size:0x100 scope:global align:32
+int_sum_slot_v = .data:0x00A5C360; // type:object size:0x470 scope:global align:8
+int_sum_slot_reel_model = .data:0x00A5C7D0; // type:object size:0x78 scope:global align:8
+int_sum_slot_base_model = .data:0x00A5C848; // type:object size:0x150 scope:global align:8
+int_sum_slot_lever_model = .data:0x00A5C998; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_slot_tbl = .data:0x00A5C9F0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_slot_tbl = .data:0x00A5C9F8; // type:object size:0x4 scope:global align:4
+cKF_c_int_sum_slot_tbl = .data:0x00A5C9FC; // type:object size:0x20 scope:global align:4
+cKF_ds_int_sum_slot_tbl = .data:0x00A5CA1C; // type:object size:0x66 scope:global align:4
+cKF_ba_r_int_sum_slot = .data:0x00A5CA84; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_slot_tbl = .data:0x00A5CA98; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_slot = .data:0x00A5CAD4; // type:object size:0x8 scope:global align:4
+int_sum_sofe01_pal = .data:0x00A5CAE0; // type:object size:0x20 scope:local align:32
+int_sofe01_pal = .data:0x00A5CB00; // type:object size:0x20 scope:local align:32
+int_sum_sofe01_back_txt = .data:0x00A5CB20; // type:object size:0x300 scope:global align:32
+int_sum_sofe01_facet_txt = .data:0x00A5CE20; // type:object size:0x180 scope:local align:32
+int_sum_sofe01_front_txt = .data:0x00A5CFA0; // type:object size:0x200 scope:global align:32
+int_sum_sofe01_side_txt = .data:0x00A5D1A0; // type:object size:0x100 scope:local align:32
+int_sum_sofe01_backside_txt = .data:0x00A5D2A0; // type:object size:0x80 scope:local align:32
+int_sum_sofe01_v = .data:0x00A5D320; // type:object size:0x410 scope:global align:8
+int_sum_sofe01_on_model = .data:0x00A5D730; // type:object size:0x128 scope:global align:8
+int_sum_sofe02_pal = .data:0x00A5D860; // type:object size:0x20 scope:global align:32
+int_sum_sofe01_pal = .data:0x00A5D880; // type:object size:0x20 scope:local align:32
+int_sofe01_pal = .data:0x00A5D8A0; // type:object size:0x20 scope:local align:32
+int_sum_sofe02_back_txt = .data:0x00A5D8C0; // type:object size:0x300 scope:global align:32
+int_sum_sofe01_facet_txt = .data:0x00A5DBC0; // type:object size:0x180 scope:local align:32
+int_sum_sofe01_side_txt = .data:0x00A5DD40; // type:object size:0x100 scope:local align:32
+int_sum_sofe01_backside_txt = .data:0x00A5DE40; // type:object size:0x80 scope:local align:32
+int_sum_sofe02_front_txt = .data:0x00A5DEC0; // type:object size:0x200 scope:global align:32
+int_sum_sofe02_v = .data:0x00A5E0C0; // type:object size:0x470 scope:global align:8
+int_sum_sofe02_on_model = .data:0x00A5E530; // type:object size:0x140 scope:global align:8
+int_sum_sofe03_pal = .data:0x00A5E680; // type:object size:0x20 scope:global align:32
+int_sum_sofe03_backside_txt = .data:0x00A5E6A0; // type:object size:0x200 scope:global align:32
+int_sum_sofe03_front_txt = .data:0x00A5E8A0; // type:object size:0x200 scope:global align:32
+int_sum_sofe03_side_txt = .data:0x00A5EAA0; // type:object size:0x200 scope:global align:32
+int_sum_sofe03_hijikake_txt = .data:0x00A5ECA0; // type:object size:0x100 scope:global align:32
+int_sum_sofe03_foot_txt = .data:0x00A5EDA0; // type:object size:0x100 scope:global align:32
+int_sum_sofe03_v = .data:0x00A5EEA0; // type:object size:0x3A0 scope:global align:8
+int_sum_sofe03_on_model = .data:0x00A5F240; // type:object size:0xE8 scope:global align:8
+int_sum_sofe03_onT_model = .data:0x00A5F328; // type:object size:0x68 scope:global align:8
+int_sum_stereo01_pal = .data:0x00A5F3A0; // type:object size:0x20 scope:global align:32
+int_sum_stereo01_top = .data:0x00A5F3C0; // type:object size:0x100 scope:global align:32
+int_sum_stereo01_front = .data:0x00A5F4C0; // type:object size:0x400 scope:global align:32
+int_sum_stereo01_back = .data:0x00A5F8C0; // type:object size:0x100 scope:global align:32
+int_sum_stereo01_side = .data:0x00A5F9C0; // type:object size:0x80 scope:global align:32
+int_sum_stereo01_foot = .data:0x00A5FA40; // type:object size:0x80 scope:global align:32 data:string
+int_sum_stereo01_record = .data:0x00A5FAC0; // type:object size:0x80 scope:global align:32
+int_sum_stereo01_armrest = .data:0x00A5FB40; // type:object size:0x80 scope:global align:32
+int_sum_stereo01_v = .data:0x00A5FBC0; // type:object size:0x4D0 scope:global align:8
+int_sum_stereo01_on_model = .data:0x00A60090; // type:object size:0xE0 scope:global align:8
+int_sum_stereo01_onT_model = .data:0x00A60170; // type:object size:0xD8 scope:global align:8
+int_sum_stereo02_pal = .data:0x00A60260; // type:object size:0x20 scope:global align:32
+int_sum_stereo02_front_tex = .data:0x00A60280; // type:object size:0x400 scope:global align:32
+int_sum_stereo02_side_tex = .data:0x00A60680; // type:object size:0x200 scope:global align:32
+int_sum_stereo02_top_tex = .data:0x00A60880; // type:object size:0x100 scope:global align:32
+int_sum_stereo02_s_side_tex = .data:0x00A60980; // type:object size:0x100 scope:global align:32
+int_sum_stereo02_v = .data:0x00A60A80; // type:object size:0x3C0 scope:global align:8
+int_sum_stereo02_on_model = .data:0x00A60E40; // type:object size:0xE8 scope:global align:8
+int_sum_stove01_pal = .data:0x00A60F40; // type:object size:0x20 scope:global align:32
+int_sum_stove01_top = .data:0x00A60F60; // type:object size:0x80 scope:global align:32
+int_sum_stove01_side = .data:0x00A60FE0; // type:object size:0x300 scope:global align:32
+int_sum_stove01_net = .data:0x00A612E0; // type:object size:0x80 scope:global align:32
+int_sum_stove01_douwn = .data:0x00A61360; // type:object size:0x80 scope:global align:32
+int_sum_stove01_side2 = .data:0x00A613E0; // type:object size:0x80 scope:global align:32
+int_sum_stove01_top2 = .data:0x00A61460; // type:object size:0x80 scope:global align:32
+int_sum_stove01_side3 = .data:0x00A614E0; // type:object size:0x40 scope:global align:32
+int_sum_stove01_swich = .data:0x00A61520; // type:object size:0x80 scope:global align:32
+int_sum_stove01_fire = .data:0x00A615A0; // type:object size:0x80 scope:global align:32
+int_sum_stove01_v = .data:0x00A61620; // type:object size:0x430 scope:global align:8
+int_sum_stove01_on_model = .data:0x00A61A50; // type:object size:0x98 scope:global align:8
+int_sum_stove01_onT_model = .data:0x00A61AE8; // type:object size:0xF8 scope:global align:8
+int_sum_stove_offT_model = .data:0x00A61BE0; // type:object size:0x58 scope:global align:8
+int_sum_suberi01_pal = .data:0x00A61C40; // type:object size:0x20 scope:global align:32
+int_sum_suberi01_side_tex = .data:0x00A61C60; // type:object size:0x400 scope:global align:32
+int_sum_suberi01_dan_tex = .data:0x00A62060; // type:object size:0x100 scope:global align:32
+int_sum_suberi01_danue_tex = .data:0x00A62160; // type:object size:0x80 scope:global align:32
+int_sum_suberi01_suberu_tex = .data:0x00A621E0; // type:object size:0x100 scope:global align:32
+int_sum_suberi01_danyoko_tex = .data:0x00A622E0; // type:object size:0x40 scope:global align:32
+int_sum_suberi01_v = .data:0x00A62320; // type:object size:0x440 scope:global align:8
+int_sum_suberi01_on_model = .data:0x00A62760; // type:object size:0xE8 scope:global align:8
+int_sum_suberi01_onT_model = .data:0x00A62848; // type:object size:0x68 scope:global align:8
+int_sum_suzumushi_pal = .data:0x00A628C0; // type:object size:0x20 scope:global align:32
+int_sum_suzumushi_hand_pic_ci4_pal = .data:0x00A628E0; // type:object size:0x20 scope:global align:32
+int_sum_suzumushi_base_txt = .data:0x00A62900; // type:object size:0x80 scope:global align:32
+int_sum_suzumushi_top_txt = .data:0x00A62980; // type:object size:0x200 scope:global align:32
+int_sum_suzumushi_side_txt = .data:0x00A62B80; // type:object size:0x200 scope:global align:32
+int_sum_suzumushi_body_txt = .data:0x00A62D80; // type:object size:0x200 scope:global align:32
+int_sum_suzumushi_hand_txt = .data:0x00A62F80; // type:object size:0x100 scope:global align:32
+int_sum_suzumushi_v = .data:0x00A63080; // type:object size:0x440 scope:global align:8
+int_sum_suzumushi_side_model = .data:0x00A634C0; // type:object size:0x68 scope:global align:8
+int_sum_suzumushi_komado_model = .data:0x00A63528; // type:object size:0x58 scope:global align:8
+int_sum_suzumushi_glass_model = .data:0x00A63580; // type:object size:0x68 scope:global align:8
+int_sum_suzumushi_base_model = .data:0x00A635E8; // type:object size:0x98 scope:global align:8
+int_sum_suzumushi_body_model = .data:0x00A63680; // type:object size:0x68 scope:global align:8
+int_sum_suzumushi_body_R_model = .data:0x00A636E8; // type:object size:0x58 scope:global align:8
+int_sum_suzumushi_body_L_model = .data:0x00A63740; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_suzumushi_tbl = .data:0x00A63798; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_suzumushi_tbl = .data:0x00A637A4; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_suzumushi_tbl = .data:0x00A637BC; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_suzumushi_tbl = .data:0x00A637E8; // type:object size:0x108 scope:global align:4
+cKF_ba_r_int_sum_suzumushi = .data:0x00A638F0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_suzumushi_tbl = .data:0x00A63904; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_suzumushi = .data:0x00A6397C; // type:object size:0x8 scope:global align:4
+int_sum_syouryou_pal = .data:0x00A639A0; // type:object size:0x20 scope:global align:32
+int_sum_syouryou_hand_pic_ci4_pal = .data:0x00A639C0; // type:object size:0x20 scope:global align:32
+int_sum_syouryou_base_txt = .data:0x00A639E0; // type:object size:0x80 scope:global align:32
+int_sum_syouryou_top_txt = .data:0x00A63A60; // type:object size:0x200 scope:global align:32
+int_sum_syouryou_side_txt = .data:0x00A63C60; // type:object size:0x200 scope:global align:32
+int_sum_syouryou_body_txt = .data:0x00A63E60; // type:object size:0x180 scope:global align:32
+int_sum_syouryou_hand_txt = .data:0x00A63FE0; // type:object size:0x100 scope:global align:32
+int_sum_syouryou_v = .data:0x00A640E0; // type:object size:0x3E0 scope:global align:8
+int_sum_syouryou_side_model = .data:0x00A644C0; // type:object size:0x68 scope:global align:8
+int_sum_syouryou_komado_model = .data:0x00A64528; // type:object size:0x58 scope:global align:8
+int_sum_syouryou_glass_model = .data:0x00A64580; // type:object size:0x68 scope:global align:8
+int_sum_syouryou_base_model = .data:0x00A645E8; // type:object size:0xA0 scope:global align:8
+int_sum_syouryou_body_model = .data:0x00A64688; // type:object size:0x60 scope:global align:8
+int_sum_syouryou_body_R_model = .data:0x00A646E8; // type:object size:0x58 scope:global align:8
+int_sum_syouryou_body_L_model = .data:0x00A64740; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_syouryou_tbl = .data:0x00A64798; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_syouryou_tbl = .data:0x00A647A4; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_syouryou_tbl = .data:0x00A647BC; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_syouryou_tbl = .data:0x00A647E8; // type:object size:0x13E scope:global align:4
+cKF_ba_r_int_sum_syouryou = .data:0x00A64928; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_syouryou_tbl = .data:0x00A6493C; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_syouryou = .data:0x00A649B4; // type:object size:0x8 scope:global align:4
+int_sum_taiko01_pal = .data:0x00A649C0; // type:object size:0x20 scope:global align:32
+int_sum_taiko01_foot_txt_txt = .data:0x00A649E0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_taiko01_standside_txt_txt = .data:0x00A64A60; // type:object size:0x180 scope:global align:32
+int_sum_taiko01_standfront_txt_txt = .data:0x00A64BE0; // type:object size:0x180 scope:global align:32
+int_sum_taiko01_side_txt_txt = .data:0x00A64D60; // type:object size:0x300 scope:global align:32
+int_sum_taiko01_front_txt_txt = .data:0x00A65060; // type:object size:0x100 scope:global align:32
+int_sum_taiko01_v = .data:0x00A65160; // type:object size:0x370 scope:global align:8
+int_sum_taiko01_on_model = .data:0x00A654D0; // type:object size:0x150 scope:global align:8
+int_sum_takkyu_pal = .data:0x00A65620; // type:object size:0x20 scope:global align:32
+int_sum_takkyu_top_tex = .data:0x00A65640; // type:object size:0x200 scope:global align:32
+int_sum_takkyu_net_tex = .data:0x00A65840; // type:object size:0x100 scope:global align:32
+int_sum_takkyu_foot_tex = .data:0x00A65940; // type:object size:0x100 scope:global align:32 data:string
+int_sum_takkyu_foot02_tex = .data:0x00A65A40; // type:object size:0x100 scope:global align:32 data:string
+int_sum_takkyu_bat_tex = .data:0x00A65B40; // type:object size:0x100 scope:global align:32
+int_sum_takkyu_ball_tex = .data:0x00A65C40; // type:object size:0x80 scope:global align:32
+int_sum_takkyu_v = .data:0x00A65CC0; // type:object size:0x450 scope:global align:8
+int_sum_takkyu_on_model = .data:0x00A66110; // type:object size:0x68 scope:global align:8
+int_sum_takkyu_onT_model = .data:0x00A66178; // type:object size:0xF8 scope:global align:8
+int_sum_tamamushi_pal = .data:0x00A66280; // type:object size:0x20 scope:global align:32
+int_sum_tamamushi_hand_pic_ci4_pal = .data:0x00A662A0; // type:object size:0x20 scope:global align:32
+int_sum_tamamushi_base_txt = .data:0x00A662C0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_tamamushi_top_txt = .data:0x00A66340; // type:object size:0x200 scope:global align:32
+int_sum_tamamushi_side_txt = .data:0x00A66540; // type:object size:0x200 scope:global align:32
+int_sum_tamamushi_body_txt = .data:0x00A66740; // type:object size:0x100 scope:global align:32
+int_sum_tamamushi_hand_txt = .data:0x00A66840; // type:object size:0x100 scope:global align:32
+int_sum_tamamushi_v = .data:0x00A66940; // type:object size:0x3A0 scope:global align:8
+int_sum_tamamushi_side_model = .data:0x00A66CE0; // type:object size:0x68 scope:global align:8
+int_sum_tamamushi_komado_model = .data:0x00A66D48; // type:object size:0x58 scope:global align:8
+int_sum_tamamushi_glass_model = .data:0x00A66DA0; // type:object size:0x68 scope:global align:8
+int_sum_tamamushi_base_model = .data:0x00A66E08; // type:object size:0xA0 scope:global align:8
+int_sum_tamamushi_body_model = .data:0x00A66EA8; // type:object size:0x68 scope:global align:8
+cKF_ckcb_r_int_sum_tamamushi_tbl = .data:0x00A66F10; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_tamamushi_tbl = .data:0x00A66F18; // type:object size:0x8 scope:global align:4
+cKF_c_int_sum_tamamushi_tbl = .data:0x00A66F20; // type:object size:0x22 scope:global align:4
+cKF_ds_int_sum_tamamushi_tbl = .data:0x00A66F44; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_tamamushi = .data:0x00A66FDC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_tamamushi_tbl = .data:0x00A66FF0; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_tamamushi = .data:0x00A67038; // type:object size:0x8 scope:global align:4
+int_sum_tanago_pal = .data:0x00A67040; // type:object size:0x20 scope:local align:32
+int_sum_tanago_glass_pic_ci4_pal = .data:0x00A67060; // type:object size:0x20 scope:global align:32
+int_sum_tanago_body_txt = .data:0x00A67080; // type:object size:0x200 scope:global align:32
+int_sum_tanago_side_txt = .data:0x00A67280; // type:object size:0x200 scope:global align:32
+int_sum_tanago_base_txt = .data:0x00A67480; // type:object size:0x80 scope:global align:32
+int_sum_tanago_etc_txt = .data:0x00A67500; // type:object size:0x80 scope:global align:32
+int_sum_tanago_top_txt = .data:0x00A67580; // type:object size:0x100 scope:global align:32
+int_sum_tanago_glass_txt = .data:0x00A67680; // type:object size:0x100 scope:global align:32
+int_sum_tanago_v = .data:0x00A67780; // type:object size:0x370 scope:global align:8
+int_sum_tanago_sakana_model = .data:0x00A67AF0; // type:object size:0x70 scope:global align:8
+int_sum_tanago_top_model = .data:0x00A67B60; // type:object size:0x58 scope:global align:8
+int_sum_tanago_evw_model = .data:0x00A67BB8; // type:object size:0x68 scope:global align:8
+int_sum_tanago_base_model = .data:0x00A67C20; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_sum_tanago_tbl = .data:0x00A67CC8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_tanago_tbl = .data:0x00A67CD0; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_tanago_tbl = .data:0x00A67CE4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_tanago_tbl = .data:0x00A67CF8; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_tanago = .data:0x00A67D90; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_tanago_tbl = .data:0x00A67DA4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_tanago = .data:0x00A67DE0; // type:object size:0x8 scope:global align:4
+it_sum_taru01_pal = .data:0x00A67E00; // type:object size:0x20 scope:global align:32
+int_sum_taru01_side_tex = .data:0x00A67E20; // type:object size:0x200 scope:global align:32
+int_sum_taru01_top_tex = .data:0x00A68020; // type:object size:0x400 scope:global align:32
+int_sum_taru01_sentop_tex = .data:0x00A68420; // type:object size:0x80 scope:global align:32
+int_sum_taru01_v = .data:0x00A684A0; // type:object size:0x320 scope:global align:8
+int_sum_taru01_onT_model = .data:0x00A687C0; // type:object size:0x100 scope:global align:8
+it_sum_taru02_pal = .data:0x00A688C0; // type:object size:0x20 scope:global align:32
+int_sum_taru02_side_tex = .data:0x00A688E0; // type:object size:0x200 scope:global align:32
+int_sum_taru02_top_tex = .data:0x00A68AE0; // type:object size:0x400 scope:global align:32
+int_sum_taru02_sentop_tex = .data:0x00A68EE0; // type:object size:0x80 scope:global align:32
+int_sum_taru02_v = .data:0x00A68F60; // type:object size:0x320 scope:global align:8
+int_sum_taru02_onT_model = .data:0x00A69280; // type:object size:0x100 scope:global align:8
+int_sum_tekin01_pal = .data:0x00A69380; // type:object size:0x20 scope:global align:32
+int_sum_tekin01_front_tex = .data:0x00A693A0; // type:object size:0x100 scope:global align:32
+int_sum_tekin01_top_tex = .data:0x00A694A0; // type:object size:0x200 scope:global align:32
+int_sum_tekin01_side_tex = .data:0x00A696A0; // type:object size:0x100 scope:global align:32
+int_sum_tekin01_tube_tex = .data:0x00A697A0; // type:object size:0x100 scope:global align:32
+int_sum_tekin01_stand_tex = .data:0x00A698A0; // type:object size:0x80 scope:global align:32
+int_sum_tekin01_onlytube_tex = .data:0x00A69920; // type:object size:0x40 scope:global align:32
+int_sum_tekin01_koro_tex = .data:0x00A69960; // type:object size:0x80 scope:global align:32
+int_sum_tekin01_pedal_tex = .data:0x00A699E0; // type:object size:0x40 scope:global align:32
+int_sum_tekin01_sen_tex = .data:0x00A69A20; // type:object size:0x80 scope:global align:32
+int_sum_tekin01_beat_tex = .data:0x00A69AA0; // type:object size:0x100 scope:global align:32
+int_sum_tekin01_v = .data:0x00A69BA0; // type:object size:0x550 scope:global align:8
+int_sum_tekin01_onT_model = .data:0x00A6A0F0; // type:object size:0x1A0 scope:global align:8
+int_sum_tentou_pal = .data:0x00A6A2A0; // type:object size:0x20 scope:global align:32
+int_sum_tentou_hand_pic_ci4_pal = .data:0x00A6A2C0; // type:object size:0x20 scope:global align:32
+int_sum_tentou_base_txt = .data:0x00A6A2E0; // type:object size:0x80 scope:global align:32
+int_sum_tentou_top_txt = .data:0x00A6A360; // type:object size:0x200 scope:global align:32
+int_sum_tentou_side_txt = .data:0x00A6A560; // type:object size:0x200 scope:global align:32
+int_sum_tentou_body_txt = .data:0x00A6A760; // type:object size:0x100 scope:global align:32
+int_sum_tentou_hand_txt = .data:0x00A6A860; // type:object size:0x100 scope:global align:32
+int_sum_tentou_v = .data:0x00A6A960; // type:object size:0x3D0 scope:global align:8
+int_sum_tentou_side_model = .data:0x00A6AD30; // type:object size:0x68 scope:global align:8
+int_sum_tentou_komado_model = .data:0x00A6AD98; // type:object size:0x58 scope:global align:8
+int_sum_tentou_glass_model = .data:0x00A6ADF0; // type:object size:0x68 scope:global align:8
+int_sum_tentou_base_model = .data:0x00A6AE58; // type:object size:0xA0 scope:global align:8
+int_sum_tentou_body_model = .data:0x00A6AEF8; // type:object size:0x60 scope:global align:8
+cKF_ckcb_r_int_sum_tentou_tbl = .data:0x00A6AF58; // type:object size:0x6 scope:global align:4
+cKF_kn_int_sum_tentou_tbl = .data:0x00A6AF60; // type:object size:0xC scope:global align:4
+cKF_c_int_sum_tentou_tbl = .data:0x00A6AF6C; // type:object size:0x1E scope:global align:4
+cKF_ds_int_sum_tentou_tbl = .data:0x00A6AF8C; // type:object size:0xA2 scope:global align:4
+cKF_ba_r_int_sum_tentou = .data:0x00A6B030; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_tentou_tbl = .data:0x00A6B044; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_sum_tentou = .data:0x00A6B08C; // type:object size:0x8 scope:global align:4
+int_sum_timpani01_pal = .data:0x00A6B0A0; // type:object size:0x20 scope:global align:32
+int_sum_timpani01_legtop_tex_txt = .data:0x00A6B0C0; // type:object size:0x80 scope:global align:32
+int_sum_timpani01_top_tex_txt = .data:0x00A6B140; // type:object size:0x200 scope:global align:32
+int_sum_timpani01_leg_tex_txt = .data:0x00A6B340; // type:object size:0x180 scope:global align:32
+int_sum_timpani01_pedal_tex_txt = .data:0x00A6B4C0; // type:object size:0x100 scope:global align:32
+int_sum_timpani01_crown_tex_txt = .data:0x00A6B5C0; // type:object size:0x200 scope:global align:32
+int_sum_timpani01_side_tex_txt = .data:0x00A6B7C0; // type:object size:0x100 scope:global align:32
+int_sum_timpani01_v = .data:0x00A6B8C0; // type:object size:0x500 scope:global align:8
+int_sum_timpani01_on_model = .data:0x00A6BDC0; // type:object size:0x148 scope:global align:8
+int_sum_tonosama_pal = .data:0x00A6BF20; // type:object size:0x20 scope:global align:32
+int_sum_tonosama_hand_pic_ci4_pal = .data:0x00A6BF40; // type:object size:0x20 scope:global align:32
+int_sum_tonosama_base_txt = .data:0x00A6BF60; // type:object size:0x80 scope:global align:32
+int_sum_tonosama_top_txt = .data:0x00A6BFE0; // type:object size:0x200 scope:global align:32
+int_sum_tonosama_side_txt = .data:0x00A6C1E0; // type:object size:0x200 scope:global align:32
+int_sum_tonosama_body_txt = .data:0x00A6C3E0; // type:object size:0x180 scope:global align:32
+int_sum_tonosama_hand_txt = .data:0x00A6C560; // type:object size:0x100 scope:global align:32
+int_sum_tonosama_v = .data:0x00A6C660; // type:object size:0x410 scope:global align:8
+int_sum_tonosama_side_model = .data:0x00A6CA70; // type:object size:0x68 scope:global align:8
+int_sum_tonosama_komado_model = .data:0x00A6CAD8; // type:object size:0x58 scope:global align:8
+int_sum_tonosama_glass_model = .data:0x00A6CB30; // type:object size:0x68 scope:global align:8
+int_sum_tonosama_base_model = .data:0x00A6CB98; // type:object size:0xA0 scope:global align:8
+int_sum_tonosama_body_model = .data:0x00A6CC38; // type:object size:0x60 scope:global align:8
+int_sum_tonosama_body_R_model = .data:0x00A6CC98; // type:object size:0x58 scope:global align:8
+int_sum_tonosama_body_L_model = .data:0x00A6CCF0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_tonosama_tbl = .data:0x00A6CD48; // type:object size:0xA scope:global align:4
+cKF_kn_int_sum_tonosama_tbl = .data:0x00A6CD54; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_tonosama_tbl = .data:0x00A6CD6C; // type:object size:0x2A scope:global align:4
+cKF_ds_int_sum_tonosama_tbl = .data:0x00A6CD98; // type:object size:0x132 scope:global align:4
+cKF_ba_r_int_sum_tonosama = .data:0x00A6CECC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_tonosama_tbl = .data:0x00A6CEE0; // type:object size:0x78 scope:global align:4
+cKF_bs_r_int_sum_tonosama = .data:0x00A6CF58; // type:object size:0x8 scope:global align:4
+int_sum_totemp01_pal = .data:0x00A6CF60; // type:object size:0x20 scope:global align:32
+int_sum_totemp01_beak_txt = .data:0x00A6CF80; // type:object size:0x40 scope:global align:32
+int_sum_totemp01_front_txt = .data:0x00A6CFC0; // type:object size:0x300 scope:global align:32
+int_sum_totemp01_wing_txt = .data:0x00A6D2C0; // type:object size:0x100 scope:global align:32
+int_sum_totemp01_side_txt = .data:0x00A6D3C0; // type:object size:0x300 scope:global align:32
+int_sum_totemp01_top_txt = .data:0x00A6D6C0; // type:object size:0x80 scope:global align:32
+int_sum_totemp01_v = .data:0x00A6D740; // type:object size:0x2A0 scope:global align:8
+int_sum_totemp01_on_model = .data:0x00A6D9E0; // type:object size:0xC0 scope:global align:8
+int_sum_totemp01_onT_model = .data:0x00A6DAA0; // type:object size:0x68 scope:global align:8
+int_sum_totemp02_pal = .data:0x00A6DB20; // type:object size:0x20 scope:global align:32
+int_sum_totemp02_beak_txt = .data:0x00A6DB40; // type:object size:0x100 scope:global align:32
+int_sum_totemp02_front_txt = .data:0x00A6DC40; // type:object size:0x300 scope:global align:32
+int_sum_totemp02_wing_txt = .data:0x00A6DF40; // type:object size:0x80 scope:global align:32
+int_sum_totemp02_side_txt = .data:0x00A6DFC0; // type:object size:0x300 scope:global align:32
+int_sum_totemp02_top_txt = .data:0x00A6E2C0; // type:object size:0x80 scope:global align:32
+int_sum_totemp02_v = .data:0x00A6E340; // type:object size:0x2A0 scope:global align:8
+int_sum_totemp02_on_model = .data:0x00A6E5E0; // type:object size:0xC0 scope:global align:8
+int_sum_totemp02_onT_model = .data:0x00A6E6A0; // type:object size:0x68 scope:global align:8
+int_sum_totemp03_pal = .data:0x00A6E720; // type:object size:0x20 scope:global align:32
+int_sum_totemp03_beak_txt = .data:0x00A6E740; // type:object size:0x100 scope:global align:32
+int_sum_totemp03_front_txt = .data:0x00A6E840; // type:object size:0x300 scope:global align:32
+int_sum_totemp03_wing_txt = .data:0x00A6EB40; // type:object size:0x80 scope:global align:32
+int_sum_totemp03_side_txt = .data:0x00A6EBC0; // type:object size:0x300 scope:global align:32
+int_sum_totemp03_top_txt = .data:0x00A6EEC0; // type:object size:0x80 scope:global align:32
+int_sum_totemp03_v = .data:0x00A6EF40; // type:object size:0x2E0 scope:global align:8
+int_sum_totemp03_on_model = .data:0x00A6F220; // type:object size:0xA8 scope:global align:8
+int_sum_totemp03_onT_model = .data:0x00A6F2C8; // type:object size:0x90 scope:global align:8
+int_sum_totemp04_pal = .data:0x00A6F360; // type:object size:0x20 scope:global align:32
+int_sum_totemp04_front_txt = .data:0x00A6F380; // type:object size:0x300 scope:global align:32
+int_sum_totemp04_side_txt = .data:0x00A6F680; // type:object size:0x300 scope:global align:32
+int_sum_totemp04_top_txt = .data:0x00A6F980; // type:object size:0x80 scope:global align:32
+int_sum_totemp04_wing_txt = .data:0x00A6FA00; // type:object size:0x100 scope:global align:32
+int_sum_totemp04_v = .data:0x00A6FB00; // type:object size:0x260 scope:global align:8
+int_sum_totemp04_on_model = .data:0x00A6FD60; // type:object size:0xA8 scope:global align:8
+int_sum_totemp04_onT_model = .data:0x00A6FE08; // type:object size:0x68 scope:global align:8
+int_sum_touro01_pal = .data:0x00A6FE80; // type:object size:0x20 scope:global align:32
+int_sum_touro01_mado_tex = .data:0x00A6FEA0; // type:object size:0x100 scope:global align:32
+int_sum_touro01_madodown_tex = .data:0x00A6FFA0; // type:object size:0x80 scope:global align:32
+int_sum_touro01_stand_tex = .data:0x00A70020; // type:object size:0x200 scope:global align:32
+int_sum_touro01_madotop_tex = .data:0x00A70220; // type:object size:0x80 scope:global align:32
+int_sum_touro01_yanetop_tex = .data:0x00A702A0; // type:object size:0x100 scope:global align:32
+int_sum_touro01_kazari_tex = .data:0x00A703A0; // type:object size:0x80 scope:global align:32
+int_sum_touro01_yane_tex = .data:0x00A70420; // type:object size:0x80 scope:global align:32
+int_sum_touro01_v = .data:0x00A704A0; // type:object size:0x450 scope:global align:8
+int_sum_touro01_on_model = .data:0x00A708F0; // type:object size:0xB8 scope:global align:8
+int_sum_touro01_onT_model = .data:0x00A709A8; // type:object size:0xF0 scope:global align:8
+int_sum_touro02_pal = .data:0x00A70AA0; // type:object size:0x20 scope:global align:32
+int_sum_touro02_mado_tex = .data:0x00A70AC0; // type:object size:0x100 scope:global align:32
+int_sum_touro02_madoyoko_tex = .data:0x00A70BC0; // type:object size:0x100 scope:global align:32
+int_sum_touro02_madosita_tex = .data:0x00A70CC0; // type:object size:0x80 scope:global align:32
+int_sum_touro02_madomaru_tex = .data:0x00A70D40; // type:object size:0x100 scope:global align:32
+int_sum_touro02_madotop_tex = .data:0x00A70E40; // type:object size:0x80 scope:global align:32
+int_sum_touro02_topside_tex = .data:0x00A70EC0; // type:object size:0x100 scope:global align:32
+int_sum_touro02_topout_tex = .data:0x00A70FC0; // type:object size:0x80 scope:global align:32
+int_sum_touro02_stand_tex = .data:0x00A71040; // type:object size:0x100 scope:global align:32
+int_sum_touro02_dai_tex = .data:0x00A71140; // type:object size:0x100 scope:global align:32
+int_sum_touro02_kazari_tex = .data:0x00A71240; // type:object size:0x80 scope:global align:32
+int_sum_touro02_v = .data:0x00A712C0; // type:object size:0x500 scope:global align:8
+int_sum_touro02_on_model = .data:0x00A717C0; // type:object size:0x80 scope:global align:8
+int_sum_touro02_onT_model = .data:0x00A71840; // type:object size:0x178 scope:global align:8
+int_sum_touro03_pal = .data:0x00A719C0; // type:object size:0x20 scope:global align:32
+int_sum_touro03_madoside_tex = .data:0x00A719E0; // type:object size:0x80 scope:global align:32
+int_sum_touro03_mado_tex = .data:0x00A71A60; // type:object size:0x100 scope:global align:32
+int_sum_touro03_yanetop_tex = .data:0x00A71B60; // type:object size:0x80 scope:global align:32
+int_sum_touro03_standup_tex = .data:0x00A71BE0; // type:object size:0x80 scope:global align:32
+int_sum_touro03_kazari_tex = .data:0x00A71C60; // type:object size:0x80 scope:global align:32
+int_sum_touro03_yane_tex = .data:0x00A71CE0; // type:object size:0x100 scope:global align:32
+int_sum_touro03_foot_tex = .data:0x00A71DE0; // type:object size:0x200 scope:global align:32
+int_sum_touro03_footop_tex = .data:0x00A71FE0; // type:object size:0x100 scope:global align:32
+int_sum_touro03_kazaritop_tex = .data:0x00A720E0; // type:object size:0x80 scope:global align:32
+int_sum_touro03_madotop_tex = .data:0x00A72160; // type:object size:0x80 scope:global align:32
+int_sum_touro03_v = .data:0x00A721E0; // type:object size:0x570 scope:global align:8
+int_sum_touro03_on_model = .data:0x00A72750; // type:object size:0xA8 scope:global align:8
+int_sum_touro03_onT_model = .data:0x00A727F8; // type:object size:0x118 scope:global align:8
+int_sum_touro04_pal = .data:0x00A72920; // type:object size:0x20 scope:global align:32
+int_sum_touro04_mado_tex = .data:0x00A72940; // type:object size:0x100 scope:global align:32
+int_sum_touro04_yane_tex = .data:0x00A72A40; // type:object size:0x100 scope:global align:32
+int_sum_touro04_madosita_tex = .data:0x00A72B40; // type:object size:0x80 scope:global align:32
+int_sum_touro04_madotop_tex = .data:0x00A72BC0; // type:object size:0x80 scope:global align:32
+int_sum_touro04_stand_tex = .data:0x00A72C40; // type:object size:0x80 scope:global align:32
+int_sum_touro04_base_tex = .data:0x00A72CC0; // type:object size:0x200 scope:global align:32
+int_sum_touro04_dan_tex = .data:0x00A72EC0; // type:object size:0x100 scope:global align:32
+int_sum_touro04_dantop_tex = .data:0x00A72FC0; // type:object size:0x80 scope:global align:32
+int_sum_touro04_kazari_tex = .data:0x00A73040; // type:object size:0x100 scope:global align:32
+int_sum_touro04_v = .data:0x00A73140; // type:object size:0x550 scope:global align:8
+int_sum_touro04_on_model = .data:0x00A73690; // type:object size:0x98 scope:global align:8
+int_sum_touro04_onT_model = .data:0x00A73728; // type:object size:0x128 scope:global align:8
+int_sum_tukutuku_pal = .data:0x00A73860; // type:object size:0x20 scope:global align:32
+int_sum_tukutuku_hand_pic_ci4_pal = .data:0x00A73880; // type:object size:0x20 scope:global align:32
+int_sum_tukutuku_side_txt = .data:0x00A738A0; // type:object size:0x200 scope:global align:32
+int_sum_tukutuku_base_txt = .data:0x00A73AA0; // type:object size:0x80 scope:global align:32
+int_sum_tukutuku_top_txt = .data:0x00A73B20; // type:object size:0x200 scope:global align:32
+int_sum_tukutuku_body_txt = .data:0x00A73D20; // type:object size:0x200 scope:global align:32
+int_sum_tukutuku_hand_txt = .data:0x00A73F20; // type:object size:0x100 scope:global align:32
+int_sum_tukutuku_v = .data:0x00A74020; // type:object size:0x470 scope:global align:8
+int_sum_tukutuku_side_model = .data:0x00A74490; // type:object size:0x68 scope:global align:8
+int_sum_tukutuku_komado_model = .data:0x00A744F8; // type:object size:0x58 scope:global align:8
+int_sum_tukutuku_glass_model = .data:0x00A74550; // type:object size:0x68 scope:global align:8
+int_sum_tukutuku_base_model = .data:0x00A745B8; // type:object size:0xD0 scope:global align:8
+int_sum_tukutuku_body_R_model = .data:0x00A74688; // type:object size:0x58 scope:global align:8
+int_sum_tukutuku_body_L_model = .data:0x00A746E0; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_tukutuku_tbl = .data:0x00A74738; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_tukutuku_tbl = .data:0x00A74740; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_tukutuku_tbl = .data:0x00A74754; // type:object size:0x24 scope:global align:4
+cKF_ds_int_sum_tukutuku_tbl = .data:0x00A74778; // type:object size:0x2D0 scope:global align:4
+cKF_ba_r_int_sum_tukutuku = .data:0x00A74A48; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_tukutuku_tbl = .data:0x00A74A5C; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_tukutuku = .data:0x00A74ABC; // type:object size:0x8 scope:global align:4
+int_sum_tv01_pal = .data:0x00A74AE0; // type:object size:0x20 scope:global align:32
+int_sum_tv01_front1_TA_tex_txt = .data:0x00A74B00; // type:object size:0x80 scope:global align:32
+int_sum_tv01_front2_TA_tex_txt = .data:0x00A74B80; // type:object size:0x80 scope:global align:32
+int_sum_tv01_front3_TA_tex_txt = .data:0x00A74C00; // type:object size:0x80 scope:global align:32
+int_sum_tv01_front4_TA_tex_txt = .data:0x00A74C80; // type:object size:0x80 scope:global align:32
+int_sum_tv01_foot_tex_txt = .data:0x00A74D00; // type:object size:0x100 scope:global align:32
+int_sum_tv01_front_tex_txt = .data:0x00A74E00; // type:object size:0x200 scope:global align:32
+int_sum_tv01_back_tex_txt = .data:0x00A75000; // type:object size:0x100 scope:global align:32
+int_sum_tv01_side_tex_txt = .data:0x00A75100; // type:object size:0x100 scope:global align:32
+int_sum_tv01_top_tex_txt = .data:0x00A75200; // type:object size:0x100 scope:global align:32
+int_sum_tv01_v = .data:0x00A75300; // type:object size:0x2C0 scope:global align:8
+int_sum_tv01_on_model = .data:0x00A755C0; // type:object size:0x100 scope:global align:8
+int_sum_tv01_off_model = .data:0x00A756C0; // type:object size:0x60 scope:global align:8
+int_sum_tv02_pal = .data:0x00A75720; // type:object size:0x20 scope:global align:32
+int_sum_tv02_front1_TA_tex_txt = .data:0x00A75740; // type:object size:0x80 scope:global align:32
+int_sum_tv02_front2_TA_tex_txt = .data:0x00A757C0; // type:object size:0x80 scope:global align:32
+int_sum_tv02_front3_TA_tex_txt = .data:0x00A75840; // type:object size:0x80 scope:global align:32
+int_sum_tv02_koro_tex_txt = .data:0x00A758C0; // type:object size:0x100 scope:global align:32
+int_sum_tv02_shelfback_tex_txt = .data:0x00A759C0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_tv02_shelffront_tex_txt = .data:0x00A75A40; // type:object size:0x100 scope:global align:32
+int_sum_tv02_back_tex_txt = .data:0x00A75B40; // type:object size:0x80 scope:global align:32
+int_sum_tv02_side_tex_txt = .data:0x00A75BC0; // type:object size:0x200 scope:global align:32
+int_sum_tv02_front_tex_txt = .data:0x00A75DC0; // type:object size:0x200 scope:global align:32
+int_sum_tv02_video_tex_txt = .data:0x00A75FC0; // type:object size:0x80 scope:global align:32
+int_sum_tv02_v = .data:0x00A76040; // type:object size:0x4E0 scope:global align:8
+int_sum_tv02_on_model = .data:0x00A76520; // type:object size:0x1B8 scope:global align:8
+int_sum_tv02_off_model = .data:0x00A766D8; // type:object size:0x60 scope:global align:8
+int_sum_ugui_pal = .data:0x00A76740; // type:object size:0x20 scope:local align:32
+int_sum_ugui_glass_pic_ci4_pal = .data:0x00A76760; // type:object size:0x20 scope:global align:32
+int_sum_ugui_body_txt = .data:0x00A76780; // type:object size:0x300 scope:global align:32
+int_sum_ugui_side_txt = .data:0x00A76A80; // type:object size:0x200 scope:global align:32
+int_sum_ugui_base_txt = .data:0x00A76C80; // type:object size:0x80 scope:global align:32
+int_sum_ugui_top_txt = .data:0x00A76D00; // type:object size:0x100 scope:global align:32
+int_sum_ugui_glass_txt = .data:0x00A76E00; // type:object size:0x100 scope:global align:32
+int_sum_ugui_v = .data:0x00A76F00; // type:object size:0x2D0 scope:global align:8
+int_sum_ugui_sakana_model = .data:0x00A771D0; // type:object size:0x70 scope:global align:8
+int_sum_ugui_top_model = .data:0x00A77240; // type:object size:0x58 scope:global align:8
+int_sum_ugui_evw_model = .data:0x00A77298; // type:object size:0x68 scope:global align:8
+int_sum_ugui_base_model = .data:0x00A77300; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_ugui_tbl = .data:0x00A77390; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_ugui_tbl = .data:0x00A77398; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_ugui_tbl = .data:0x00A773AC; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_ugui_tbl = .data:0x00A773C0; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_ugui = .data:0x00A77458; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_ugui_tbl = .data:0x00A7746C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_ugui = .data:0x00A774A8; // type:object size:0x8 scope:global align:4
+int_sum_unagi_pal = .data:0x00A774C0; // type:object size:0x20 scope:local align:32
+int_sum_unagi_glass_pic_ci4_pal = .data:0x00A774E0; // type:object size:0x20 scope:global align:32
+int_sum_unagi_body_txt = .data:0x00A77500; // type:object size:0x200 scope:global align:32
+int_sum_unagi_side_txt = .data:0x00A77700; // type:object size:0x200 scope:global align:32
+int_sum_unagi_base_txt = .data:0x00A77900; // type:object size:0x80 scope:global align:32
+int_sum_unagi_top_txt = .data:0x00A77980; // type:object size:0x100 scope:global align:32
+int_sum_unagi_glass_txt = .data:0x00A77A80; // type:object size:0x100 scope:global align:32
+int_sum_unagi_v = .data:0x00A77B80; // type:object size:0x2D0 scope:global align:8
+int_sum_unagi_sakana_model = .data:0x00A77E50; // type:object size:0x70 scope:global align:8
+int_sum_unagi_top_model = .data:0x00A77EC0; // type:object size:0x58 scope:global align:8
+int_sum_unagi_evw_model = .data:0x00A77F18; // type:object size:0x68 scope:global align:8
+int_sum_unagi_base_model = .data:0x00A77F80; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_unagi_tbl = .data:0x00A78010; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_unagi_tbl = .data:0x00A78018; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_unagi_tbl = .data:0x00A7802C; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_unagi_tbl = .data:0x00A78040; // type:object size:0x90 scope:global align:4
+cKF_ba_r_int_sum_unagi = .data:0x00A780D0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_unagi_tbl = .data:0x00A780E4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_unagi = .data:0x00A78120; // type:object size:0x8 scope:global align:4
+int_sum_uwa_cup01_pal = .data:0x00A78140; // type:object size:0x20 scope:global align:32
+int_sum_uwa_cup01_side = .data:0x00A78160; // type:object size:0x100 scope:global align:32
+int_sum_uwa_cup01_tote = .data:0x00A78260; // type:object size:0x100 scope:global align:32
+int_sum_uwa_cup01_kuchi = .data:0x00A78360; // type:object size:0x80 scope:global align:32
+int_sum_uwa_cup01_cup = .data:0x00A783E0; // type:object size:0x80 scope:global align:32
+int_sum_uwa_cup01_top = .data:0x00A78460; // type:object size:0x80 scope:global align:32
+int_sum_uwa_cup01_cuptote = .data:0x00A784E0; // type:object size:0x80 scope:global align:32
+int_sum_uwa_cup01_base = .data:0x00A78560; // type:object size:0x100 scope:global align:32
+int_sum_uwa_cup01_v = .data:0x00A78660; // type:object size:0x450 scope:global align:8
+int_sum_uwa_cup01_on_model = .data:0x00A78AB0; // type:object size:0x98 scope:global align:8
+int_sum_uwa_cup01_onT_model = .data:0x00A78B48; // type:object size:0x100 scope:global align:8
+int_sum_uwa_poto01_pal = .data:0x00A78C60; // type:object size:0x20 scope:global align:32
+int_sum_uwa_poto01_back = .data:0x00A78C80; // type:object size:0x100 scope:global align:32
+int_sum_uwa_poto01_front = .data:0x00A78D80; // type:object size:0x300 scope:global align:32
+int_sum_uwa_poto01_stand = .data:0x00A79080; // type:object size:0x100 scope:global align:32
+int_sum_uwa_poto01_v = .data:0x00A79180; // type:object size:0x200 scope:global align:8
+int_sum_uwa_poto01_on_model = .data:0x00A79380; // type:object size:0x80 scope:global align:8
+int_sum_uwa_poto01_onT_model = .data:0x00A79400; // type:object size:0x60 scope:global align:8
+int_sum_uwa_vase01_pal = .data:0x00A79460; // type:object size:0x20 scope:global align:32
+int_sum_uwa_vase01_side = .data:0x00A79480; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase01_red = .data:0x00A79580; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase01_olange = .data:0x00A79600; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase01_top = .data:0x00A79680; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase01_kuki = .data:0x00A79700; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase01_kukiside = .data:0x00A79800; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase01_v = .data:0x00A79880; // type:object size:0x340 scope:global align:8
+int_sum_uwa_vase01_on_model = .data:0x00A79BC0; // type:object size:0x60 scope:global align:8
+int_sum_uwa_vase01_onT_model = .data:0x00A79C20; // type:object size:0xF0 scope:global align:8
+int_sum_uwa_vase02_pal = .data:0x00A79D20; // type:object size:0x20 scope:global align:32
+int_sum_uwa_vase02_side = .data:0x00A79D40; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase02_frower = .data:0x00A79E40; // type:object size:0x200 scope:global align:32
+int_sum_uwa_vase02_stand = .data:0x00A7A040; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase02_stand2 = .data:0x00A7A140; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase02_leaf = .data:0x00A7A240; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase02_v = .data:0x00A7A2C0; // type:object size:0x490 scope:global align:8
+int_sum_uwa_vase02_onT_model = .data:0x00A7A750; // type:object size:0x110 scope:global align:8
+int_sum_uwa_vase03_pal = .data:0x00A7A860; // type:object size:0x20 scope:global align:32
+int_sum_uwa_vase03_side = .data:0x00A7A880; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase03_kuki = .data:0x00A7A980; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase03_leaf = .data:0x00A7AA80; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase03_flawer = .data:0x00A7AB80; // type:object size:0x100 scope:global align:32
+int_sum_uwa_vase03_naka = .data:0x00A7AC80; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase03_base = .data:0x00A7AD00; // type:object size:0x80 scope:global align:32
+int_sum_uwa_vase03_v = .data:0x00A7AD80; // type:object size:0x330 scope:global align:8
+int_sum_uwa_vase03_on_model = .data:0x00A7B0B0; // type:object size:0x58 scope:global align:8
+int_sum_uwa_vase03_onT_model = .data:0x00A7B108; // type:object size:0x108 scope:global align:8
+int_sum_viola01_pal = .data:0x00A7B220; // type:object size:0x20 scope:global align:32
+int_sum_viola01_front_tex = .data:0x00A7B240; // type:object size:0x300 scope:global align:32
+int_sum_viola01_back_tex = .data:0x00A7B540; // type:object size:0x180 scope:global align:32
+int_sum_viola01_side_tex = .data:0x00A7B6C0; // type:object size:0x80 scope:global align:32
+int_sum_viola01_neck_tex = .data:0x00A7B740; // type:object size:0x100 scope:global align:32
+int_sum_viola01_neckback_tex = .data:0x00A7B840; // type:object size:0x80 scope:global align:32
+int_sum_viola01_hand_tex = .data:0x00A7B8C0; // type:object size:0x80 scope:global align:32
+int_sum_viola01_stand_tex = .data:0x00A7B940; // type:object size:0x100 scope:global align:32
+int_sum_viola01_v = .data:0x00A7BA40; // type:object size:0x360 scope:global align:8
+int_sum_viola01_on_model = .data:0x00A7BDA0; // type:object size:0x88 scope:global align:8
+int_sum_viola01_onT_model = .data:0x00A7BE28; // type:object size:0xF0 scope:global align:8
+int_sum_wakasagi_pal = .data:0x00A7BF20; // type:object size:0x20 scope:local align:32
+int_sum_wakasagi_glass_pic_ci4_pal = .data:0x00A7BF40; // type:object size:0x20 scope:global align:32
+int_sum_wakasagi_body_txt = .data:0x00A7BF60; // type:object size:0x100 scope:global align:32
+int_sum_wakasagi_side_txt = .data:0x00A7C060; // type:object size:0x200 scope:global align:32
+int_sum_wakasagi_base_txt = .data:0x00A7C260; // type:object size:0x80 scope:global align:32
+int_sum_wakasagi_etc_txt = .data:0x00A7C2E0; // type:object size:0x80 scope:global align:32
+int_sum_wakasagi_top_txt = .data:0x00A7C360; // type:object size:0x100 scope:global align:32
+int_sum_wakasagi_glass_txt = .data:0x00A7C460; // type:object size:0x100 scope:global align:32
+int_sum_wakasagi_v = .data:0x00A7C560; // type:object size:0x370 scope:global align:8
+int_sum_wakasagi_sakana_model = .data:0x00A7C8D0; // type:object size:0x70 scope:global align:8
+int_sum_wakasagi_top_model = .data:0x00A7C940; // type:object size:0x58 scope:global align:8
+int_sum_wakasagi_evw_model = .data:0x00A7C998; // type:object size:0x68 scope:global align:8
+int_sum_wakasagi_base_model = .data:0x00A7CA00; // type:object size:0xB8 scope:global align:8
+cKF_ckcb_r_int_sum_wakasagi_tbl = .data:0x00A7CAB8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_wakasagi_tbl = .data:0x00A7CAC0; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_wakasagi_tbl = .data:0x00A7CAD4; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_wakasagi_tbl = .data:0x00A7CAE8; // type:object size:0x84 scope:global align:4
+cKF_ba_r_int_sum_wakasagi = .data:0x00A7CB6C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_wakasagi_tbl = .data:0x00A7CB80; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_wakasagi = .data:0x00A7CBBC; // type:object size:0x8 scope:global align:4
+int_sum_wc01_pal = .data:0x00A7CBE0; // type:object size:0x20 scope:global align:32
+int_sum_wc01_mizu_tex_rgb_ci4_pal = .data:0x00A7CC00; // type:object size:0x20 scope:global align:32
+int_sum_wc01_tankfront_tex = .data:0x00A7CC20; // type:object size:0x100 scope:global align:32
+int_sum_wc01_huta_tex = .data:0x00A7CD20; // type:object size:0x100 scope:global align:32
+int_sum_wc01_tanktop_tex = .data:0x00A7CE20; // type:object size:0x80 scope:global align:32
+int_sum_wc01_jyaguchi_tex = .data:0x00A7CEA0; // type:object size:0x80 scope:global align:32
+int_sum_wc01_tankrevar_tex = .data:0x00A7CF20; // type:object size:0x40 scope:global align:32
+int_sum_wc01_paip_tex = .data:0x00A7CF60; // type:object size:0x80 scope:global align:32
+int_sum_wc01_paipside_tex = .data:0x00A7CFE0; // type:object size:0x80 scope:global align:32
+int_sum_wc01_base_tex = .data:0x00A7D060; // type:object size:0x100 scope:global align:32
+int_sum_wc01_benza_tex = .data:0x00A7D160; // type:object size:0x100 scope:global align:32
+int_sum_wc01_benzaside_tex = .data:0x00A7D260; // type:object size:0x80 scope:global align:32
+int_sum_wc01_benzafront_tex = .data:0x00A7D2E0; // type:object size:0x80 scope:global align:32
+int_sum_wc01_mizu_tex = .data:0x00A7D360; // type:object size:0x40 scope:global align:32
+int_sum_wc01_v = .data:0x00A7D3A0; // type:object size:0x500 scope:global align:8
+int_sum_wc01_on_model = .data:0x00A7D8A0; // type:object size:0x60 scope:global align:8
+int_sum_wc01_onT_model = .data:0x00A7D900; // type:object size:0x180 scope:global align:8
+int_sum_wc01_envT_model = .data:0x00A7DA80; // type:object size:0x58 scope:global align:8
+int_sum_wc02_pal = .data:0x00A7DAE0; // type:object size:0x20 scope:global align:32
+int_sum_wc02_mizu_tex_rgb_ci4_pal = .data:0x00A7DB00; // type:object size:0x20 scope:global align:32
+int_sum_wc02_huta_tex = .data:0x00A7DB20; // type:object size:0x80 scope:global align:32
+int_sum_wc02_washside_tex = .data:0x00A7DBA0; // type:object size:0x80 scope:global align:32
+int_sum_wc02_tankfront_tex = .data:0x00A7DC20; // type:object size:0x100 scope:global align:32
+int_sum_wc02_benzaside_tex = .data:0x00A7DD20; // type:object size:0x100 scope:global align:32
+int_sum_wc02_base_tex = .data:0x00A7DE20; // type:object size:0x80 scope:global align:32
+int_sum_wc02_paipside_tex = .data:0x00A7DEA0; // type:object size:0x40 scope:global align:32
+int_sum_wc02_paip_tex = .data:0x00A7DEE0; // type:object size:0x40 scope:global align:32
+int_sum_wc02_tankrevar_tex = .data:0x00A7DF20; // type:object size:0x40 scope:global align:32
+int_sum_wc02_shawer_tex = .data:0x00A7DF60; // type:object size:0x40 scope:global align:32
+int_sum_wc02_washtop_tex = .data:0x00A7DFA0; // type:object size:0x80 scope:global align:32
+int_sum_wc02_tanktop_tex = .data:0x00A7E020; // type:object size:0x40 scope:global align:32
+int_sum_wc02_benza_tex = .data:0x00A7E060; // type:object size:0x100 scope:global align:32
+int_sum_wc02_boxtop_tex = .data:0x00A7E160; // type:object size:0x80 scope:global align:32
+int_sum_wc02_mizu_tex = .data:0x00A7E1E0; // type:object size:0x40 scope:global align:32
+int_sum_wc02_v = .data:0x00A7E220; // type:object size:0x580 scope:global align:8
+int_sum_wc02_on_model = .data:0x00A7E7A0; // type:object size:0x78 scope:global align:8
+int_sum_wc02_onT_model = .data:0x00A7E818; // type:object size:0x198 scope:global align:8
+int_sum_wc02_evwT_model = .data:0x00A7E9B0; // type:object size:0x58 scope:global align:8
+int_sum_whi_bed01_pal = .data:0x00A7EA20; // type:object size:0x20 scope:global align:32
+int_sum_whi_bed01_heard_tex = .data:0x00A7EA40; // type:object size:0x200 scope:global align:32
+int_sum_whi_bed01_side_tex = .data:0x00A7EC40; // type:object size:0x100 scope:global align:32
+int_sum_whi_bed01_top_tex = .data:0x00A7ED40; // type:object size:0x480 scope:global align:32
+int_sum_whi_bed01_pillow_tex = .data:0x00A7F1C0; // type:object size:0x80 scope:global align:32
+int_sum_whi_bed01_v = .data:0x00A7F240; // type:object size:0x2E0 scope:global align:8
+int_sum_whi_bed01_on_model = .data:0x00A7F520; // type:object size:0x70 scope:global align:8
+int_sum_whi_bed01_onT_model = .data:0x00A7F590; // type:object size:0xB8 scope:global align:8
+int_sum_whi_chest01_pal = .data:0x00A7F660; // type:object size:0x20 scope:global align:32
+int_sum_whi_chest01_top_tex_txt = .data:0x00A7F680; // type:object size:0x100 scope:global align:32
+int_sum_whi_chest01_hiki_tex_txt = .data:0x00A7F780; // type:object size:0x100 scope:global align:32
+int_sum_whi_chest01_back_tex_txt = .data:0x00A7F880; // type:object size:0x180 scope:global align:32
+int_sum_whi_chest01_front_tex_txt = .data:0x00A7FA00; // type:object size:0x300 scope:global align:32
+int_sum_whi_chest01_v = .data:0x00A7FD00; // type:object size:0x3A0 scope:global align:8
+int_sum_whi_chest01_door_model = .data:0x00A800A0; // type:object size:0x90 scope:global align:8
+int_sum_whi_chest01_base_model = .data:0x00A80130; // type:object size:0xA8 scope:global align:8
+cKF_ckcb_r_int_sum_whi_chest01_tbl = .data:0x00A801D8; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_whi_chest01_tbl = .data:0x00A801DC; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_whi_chest01_tbl = .data:0x00A801F0; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_whi_chest01_tbl = .data:0x00A801F8; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_whi_chest01 = .data:0x00A80264; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_whi_chest01_tbl = .data:0x00A80278; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_whi_chest01 = .data:0x00A8029C; // type:object size:0x8 scope:global align:4
+int_sum_whi_chest02_pal = .data:0x00A802C0; // type:object size:0x20 scope:global align:32
+int_sum_whi_chest02_hiki_tex_txt = .data:0x00A802E0; // type:object size:0x100 scope:global align:32
+int_sum_whi_chest02_hikiside_tex_txt = .data:0x00A803E0; // type:object size:0x80 scope:global align:32
+int_sum_whi_chest02_back_tex_txt = .data:0x00A80460; // type:object size:0x200 scope:global align:32
+int_sum_whi_chest02_front_tex_txt = .data:0x00A80660; // type:object size:0x300 scope:global align:32
+int_sum_whi_chest02_v = .data:0x00A80960; // type:object size:0x420 scope:global align:8
+int_sum_whi_chest02_doorL_model = .data:0x00A80D80; // type:object size:0x78 scope:global align:8
+int_sum_whi_chest02_base_model = .data:0x00A80DF8; // type:object size:0x98 scope:global align:8
+int_sum_whi_chest02_doorR_model = .data:0x00A80E90; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sum_whi_chest02_tbl = .data:0x00A80F08; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_whi_chest02_tbl = .data:0x00A80F10; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_whi_chest02_tbl = .data:0x00A80F28; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_whi_chest02_tbl = .data:0x00A80F34; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_whi_chest02 = .data:0x00A80FD0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_whi_chest02_tbl = .data:0x00A80FE4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_whi_chest02 = .data:0x00A81020; // type:object size:0x8 scope:global align:4
+int_sum_whi_lanp_pal = .data:0x00A81040; // type:object size:0x20 scope:global align:32
+int_sum_whi_lanp_shade_tex = .data:0x00A81060; // type:object size:0x100 scope:global align:32
+int_sum_whi_lanp_stand_tex = .data:0x00A81160; // type:object size:0x180 scope:global align:32
+int_sum_whi_lanp_foot_tex = .data:0x00A812E0; // type:object size:0x100 scope:global align:32
+int_sum_whi_lanp_down_tex = .data:0x00A813E0; // type:object size:0x80 scope:global align:32
+int_sum_whi_lanp_hiki_tex = .data:0x00A81460; // type:object size:0x100 scope:global align:32
+int_sum_whi_lanp_top_tex = .data:0x00A81560; // type:object size:0x80 scope:global align:32
+int_sum_whi_lanp_topside_tex = .data:0x00A815E0; // type:object size:0x80 scope:global align:32
+int_sum_whi_lanp_v = .data:0x00A81660; // type:object size:0x410 scope:global align:8
+int_sum_whi_lanp_on_model = .data:0x00A81A70; // type:object size:0x60 scope:global align:8
+int_sum_whi_lanp_onT_model = .data:0x00A81AD0; // type:object size:0xA8 scope:global align:8
+int_sum_whi_lanp_offT_model = .data:0x00A81B78; // type:object size:0xB8 scope:global align:8
+int_sum_whi_mirror_pal = .data:0x00A81C40; // type:object size:0x20 scope:global align:32
+int_sum_whi_mirror_glass_tex_rgb_ci4_pal = .data:0x00A81C60; // type:object size:0x20 scope:global align:32
+int_sum_whi_mirror_front_tex = .data:0x00A81C80; // type:object size:0x180 scope:global align:32
+int_sum_whi_mirror_side_tex = .data:0x00A81E00; // type:object size:0x200 scope:global align:32
+int_sum_whi_mirror_short_tex = .data:0x00A82000; // type:object size:0x80 scope:global align:32
+int_sum_whi_mirror_mirror_tex = .data:0x00A82080; // type:object size:0x200 scope:global align:32
+int_sum_whi_mirror_top_tex = .data:0x00A82280; // type:object size:0x100 scope:global align:32
+int_sum_whi_mirror_up_tex = .data:0x00A82380; // type:object size:0x80 scope:global align:32
+int_sum_whi_mirror_glass_tex = .data:0x00A82400; // type:object size:0x80 scope:global align:32
+int_sum_whi_mirror_v = .data:0x00A82480; // type:object size:0x420 scope:global align:8
+int_sum_whi_mirror_on_model = .data:0x00A828A0; // type:object size:0x90 scope:global align:8
+int_sum_whi_mirror_evw_model = .data:0x00A82930; // type:object size:0x58 scope:global align:8
+int_sum_whi_mirror_onT_model = .data:0x00A82988; // type:object size:0xE8 scope:global align:8
+int_sum_whi_sofa01_pal = .data:0x00A82A80; // type:object size:0x20 scope:global align:32
+int_sum_whi_sofa01_seat_tex = .data:0x00A82AA0; // type:object size:0x200 scope:global align:32
+int_sum_whi_sofa01_heard_tex = .data:0x00A82CA0; // type:object size:0x100 scope:global align:32
+int_sum_whi_sofa01_arm_tex = .data:0x00A82DA0; // type:object size:0x100 scope:global align:32
+int_sum_whi_sofa01_foot_tex = .data:0x00A82EA0; // type:object size:0x100 scope:global align:32
+int_sum_whi_sofa01_side_tex = .data:0x00A82FA0; // type:object size:0x200 scope:global align:32
+int_sum_whi_sofa01_top_tex = .data:0x00A831A0; // type:object size:0x80 scope:global align:32 data:string
+int_sum_whi_sofa01_v = .data:0x00A83220; // type:object size:0x3C0 scope:global align:8
+int_sum_whi_sofa01_on_model = .data:0x00A835E0; // type:object size:0xC0 scope:global align:8
+int_sum_whi_sofa01_onT_model = .data:0x00A836A0; // type:object size:0x88 scope:global align:8
+int_sum_x_bed01_pal = .data:0x00A83740; // type:object size:0x20 scope:global align:32
+int_sum_x_bed01_mat = .data:0x00A83760; // type:object size:0x300 scope:global align:32
+int_sum_x_bed01_head = .data:0x00A83A60; // type:object size:0x80 scope:global align:32
+int_sum_x_bed01_front = .data:0x00A83AE0; // type:object size:0x300 scope:global align:32
+int_sum_x_bed01_top = .data:0x00A83DE0; // type:object size:0x100 scope:global align:32
+int_sum_x_bed01_sox = .data:0x00A83EE0; // type:object size:0x80 scope:global align:32
+int_sum_x_bed01_v = .data:0x00A83F60; // type:object size:0x450 scope:global align:8
+int_sum_x_bed_on_model = .data:0x00A843B0; // type:object size:0x68 scope:global align:8
+int_sum_x_bed_onT_model = .data:0x00A84418; // type:object size:0xE8 scope:global align:8
+int_sum_x_chair01_pal = .data:0x00A84500; // type:object size:0x20 scope:global align:32
+int_sum_x_chair01_seat = .data:0x00A84520; // type:object size:0x100 scope:global align:32
+int_sum_x_chair01_side = .data:0x00A84620; // type:object size:0x100 scope:global align:32
+int_sum_x_chair01_leg = .data:0x00A84720; // type:object size:0x100 scope:global align:32
+int_sum_x_chair01_head = .data:0x00A84820; // type:object size:0x80 scope:global align:32
+int_sum_x_chair01_base = .data:0x00A848A0; // type:object size:0x180 scope:global align:32
+int_sum_x_chair01_back = .data:0x00A84A20; // type:object size:0x300 scope:global align:32
+int_sum_x_chair01_v = .data:0x00A84D20; // type:object size:0x410 scope:global align:8
+int_sum_x_chair01_on_model = .data:0x00A85130; // type:object size:0x88 scope:global align:8
+int_sum_x_chair01_onT_model = .data:0x00A851B8; // type:object size:0xC0 scope:global align:8
+int_sum_x_chest01_pal = .data:0x00A85280; // type:object size:0x20 scope:global align:32
+int_sum_x_chest01_hiki_txt = .data:0x00A852A0; // type:object size:0x100 scope:global align:32
+int_sum_x_chest01_into_txt = .data:0x00A853A0; // type:object size:0x100 scope:global align:32
+int_sum_x_chest01_front_txt = .data:0x00A854A0; // type:object size:0x200 scope:global align:32
+int_sum_x_chest01_side_txt = .data:0x00A856A0; // type:object size:0x300 scope:global align:32
+int_sum_x_chest01_head_txt = .data:0x00A859A0; // type:object size:0x80 scope:global align:32
+int_sum_x_chest01_v = .data:0x00A85A20; // type:object size:0x510 scope:global align:8
+int_sum_x_chest01_L_model = .data:0x00A85F30; // type:object size:0x78 scope:global align:8
+int_sum_x_chest01_base_model = .data:0x00A85FA8; // type:object size:0xD8 scope:global align:8
+int_sum_x_chest01_R_model = .data:0x00A86080; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_sum_x_chest01_tbl = .data:0x00A860F8; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_x_chest01_tbl = .data:0x00A86100; // type:object size:0x18 scope:global align:4
+cKF_c_int_sum_x_chest01_tbl = .data:0x00A86118; // type:object size:0xC scope:global align:4
+cKF_ds_int_sum_x_chest01_tbl = .data:0x00A86124; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_sum_x_chest01 = .data:0x00A861C0; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_x_chest01_tbl = .data:0x00A861D4; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_x_chest01 = .data:0x00A86210; // type:object size:0x8 scope:global align:4
+int_sum_x_chest02_pal = .data:0x00A86220; // type:object size:0x20 scope:global align:32
+int_sum_x_chest02_into_txt = .data:0x00A86240; // type:object size:0x80 scope:global align:32
+int_sum_x_chest02_hiki_txt = .data:0x00A862C0; // type:object size:0x100 scope:global align:32
+int_sum_x_chest02_head_txt = .data:0x00A863C0; // type:object size:0x80 scope:global align:32
+int_sum_x_chest02_front_txt = .data:0x00A86440; // type:object size:0x400 scope:global align:32
+int_sum_x_chest02_top_txt = .data:0x00A86840; // type:object size:0x200 scope:global align:32
+int_sum_x_chest02_v = .data:0x00A86A40; // type:object size:0x480 scope:global align:8
+int_sum_x_chest02_door_model = .data:0x00A86EC0; // type:object size:0x98 scope:global align:8
+int_sum_x_chest02_base_model = .data:0x00A86F58; // type:object size:0xB0 scope:global align:8
+cKF_ckcb_r_int_sum_x_chest02_tbl = .data:0x00A87008; // type:object size:0x3 scope:global align:4
+cKF_kn_int_sum_x_chest02_tbl = .data:0x00A8700C; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_x_chest02_tbl = .data:0x00A87020; // type:object size:0x6 scope:global align:4
+cKF_ds_int_sum_x_chest02_tbl = .data:0x00A87028; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_sum_x_chest02 = .data:0x00A87094; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_x_chest02_tbl = .data:0x00A870A8; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_sum_x_chest02 = .data:0x00A870CC; // type:object size:0x8 scope:global align:4
+int_sum_x_chest03_pal = .data:0x00A870E0; // type:object size:0x20 scope:global align:32
+int_sum_x_chest03_side = .data:0x00A87100; // type:object size:0x200 scope:global align:32
+int_sum_x_chest03_into = .data:0x00A87300; // type:object size:0x80 scope:global align:32
+int_sum_x_chest03_front = .data:0x00A87380; // type:object size:0x280 scope:global align:32
+int_sum_x_chest03_head = .data:0x00A87600; // type:object size:0x80 scope:global align:32
+int_sum_x_chest03_tree = .data:0x00A87680; // type:object size:0x100 scope:global align:32
+int_sum_x_chest03_book = .data:0x00A87780; // type:object size:0x100 scope:global align:32
+int_sum_x_chest03_present = .data:0x00A87880; // type:object size:0x80 scope:global align:32
+int_sum_x_chest03_v = .data:0x00A87900; // type:object size:0x540 scope:global align:8
+int_sum_x_chest03_on_model = .data:0x00A87E40; // type:object size:0x80 scope:global align:8
+int_sum_x_chest03_onT_model = .data:0x00A87EC0; // type:object size:0x100 scope:global align:8
+int_sum_x_clk_pal = .data:0x00A87FC0; // type:object size:0x20 scope:global align:32
+int_sum_x_clk_glass_pic_ci4_pal = .data:0x00A87FE0; // type:object size:0x20 scope:global align:32
+int_sum_x_clk_hari_txt = .data:0x00A88000; // type:object size:0x100 scope:global align:32
+int_sum_x_clk_into_txt = .data:0x00A88100; // type:object size:0x80 scope:global align:32
+int_sum_x_clk_front_txt = .data:0x00A88180; // type:object size:0x280 scope:global align:32
+int_sum_x_clk_head_txt = .data:0x00A88400; // type:object size:0x80 scope:global align:32
+int_sum_x_clk_side_txt = .data:0x00A88480; // type:object size:0x200 scope:global align:32
+int_sum_x_clk_huriko_txt = .data:0x00A88680; // type:object size:0x80 scope:global align:32
+int_sum_x_clk_glass_txt = .data:0x00A88700; // type:object size:0x80 scope:global align:32
+int_sum_x_clk_v = .data:0x00A88780; // type:object size:0x420 scope:global align:8
+int_sum_x_clk_long_model = .data:0x00A88BA0; // type:object size:0x58 scope:global align:8
+int_sum_x_clk_evw_model = .data:0x00A88BF8; // type:object size:0x58 scope:global align:8
+int_sum_x_clk_base_model = .data:0x00A88C50; // type:object size:0xE0 scope:global align:8
+int_sum_x_clk_huriko_model = .data:0x00A88D30; // type:object size:0x58 scope:global align:8
+int_sum_x_clk_short_model = .data:0x00A88D88; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_sum_x_clk_tbl = .data:0x00A88DE0; // type:object size:0x8 scope:global align:4
+cKF_kn_int_sum_x_clk_tbl = .data:0x00A88DE8; // type:object size:0x2 scope:global align:4
+cKF_c_int_sum_x_clk_tbl = .data:0x00A88DEC; // type:object size:0x34 scope:global align:4
+cKF_ds_int_sum_x_clk_tbl = .data:0x00A88E20; // type:object size:0x1E scope:global align:4
+cKF_ba_r_int_sum_x_clk = .data:0x00A88E40; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_x_clk_tbl = .data:0x00A88E54; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_sum_x_clk = .data:0x00A88EB4; // type:object size:0x8 scope:global align:4
+int_sum_x_lanp_pal = .data:0x00A88EC0; // type:object size:0x20 scope:global align:32
+int_sum_x_lanp_base = .data:0x00A88EE0; // type:object size:0x400 scope:global align:32
+int_sum_x_lanp_head = .data:0x00A892E0; // type:object size:0x80 scope:global align:32
+int_sum_x_lanp_top = .data:0x00A89360; // type:object size:0x100 scope:global align:32
+int_sum_x_lanp_shade = .data:0x00A89460; // type:object size:0x100 scope:global align:32
+int_sum_x_lanp_stand = .data:0x00A89560; // type:object size:0x100 scope:global align:32
+int_sum_x_lanp_hiki = .data:0x00A89660; // type:object size:0x80 scope:global align:32
+int_sum_x_lanp_v = .data:0x00A896E0; // type:object size:0x3B0 scope:global align:8
+int_sum_x_lanp_onT_model = .data:0x00A89A90; // type:object size:0x80 scope:global align:8
+int_sum_x_lanp_offT_model = .data:0x00A89B10; // type:object size:0xF0 scope:global align:8
+int_sum_x_piano_pal = .data:0x00A89C00; // type:object size:0x20 scope:global align:32
+int_sum_x_piano_back_tex = .data:0x00A89C20; // type:object size:0x180 scope:global align:32
+int_sum_x_piano_side_tex = .data:0x00A89DA0; // type:object size:0x200 scope:global align:32
+int_sum_x_piano_front_tex = .data:0x00A89FA0; // type:object size:0x180 scope:global align:32
+int_sum_x_piano_head_tex = .data:0x00A8A120; // type:object size:0x80 scope:global align:32
+int_sum_x_piano_key_tex = .data:0x00A8A1A0; // type:object size:0x100 scope:global align:32
+int_sum_x_piano_down_tex = .data:0x00A8A2A0; // type:object size:0x100 scope:global align:32
+int_sum_x_piano_foot_tex = .data:0x00A8A3A0; // type:object size:0x80 scope:global align:32
+int_sum_x_piano_v = .data:0x00A8A420; // type:object size:0x560 scope:global align:8
+int_sum_x_piano_on_model = .data:0x00A8A980; // type:object size:0x78 scope:global align:8
+int_sum_x_piano_onT_model = .data:0x00A8A9F8; // type:object size:0x118 scope:global align:8
+int_sum_x_sofa01_pal = .data:0x00A8AB20; // type:object size:0x20 scope:global align:32
+int_sum_x_sofa01_head = .data:0x00A8AB40; // type:object size:0x80 scope:global align:32
+int_sum_x_sofa01_seat = .data:0x00A8ABC0; // type:object size:0x300 scope:global align:32
+int_sum_x_sofa01_leg = .data:0x00A8AEC0; // type:object size:0x80 scope:global align:32
+int_sum_x_sofa01_back = .data:0x00A8AF40; // type:object size:0x200 scope:global align:32
+int_sum_x_sofa01_arm = .data:0x00A8B140; // type:object size:0x100 scope:global align:32
+int_sum_x_sofa01_side = .data:0x00A8B240; // type:object size:0x100 scope:global align:32
+int_sum_x_sofa01_v = .data:0x00A8B340; // type:object size:0x4A0 scope:global align:8
+int_sum_x_sofa01_on_model = .data:0x00A8B7E0; // type:object size:0xD0 scope:global align:8
+int_sum_x_sofa01_onT_model = .data:0x00A8B8B0; // type:object size:0x80 scope:global align:8
+int_sum_x_table01_pal = .data:0x00A8B940; // type:object size:0x20 scope:global align:32
+int_sum_x_table01_top = .data:0x00A8B960; // type:object size:0x400 scope:global align:32
+int_sum_x_table01_stand = .data:0x00A8BD60; // type:object size:0x80 scope:global align:32
+int_sum_x_table01_leg = .data:0x00A8BDE0; // type:object size:0x300 scope:global align:32
+int_sum_x_table01_v = .data:0x00A8C0E0; // type:object size:0x380 scope:global align:8
+int_sum_x_table01_on_model = .data:0x00A8C460; // type:object size:0x60 scope:global align:8
+int_sum_x_table01_onT_model = .data:0x00A8C4C0; // type:object size:0xB8 scope:global align:8
+int_sum_yamame_pal = .data:0x00A8C580; // type:object size:0x20 scope:local align:32
+int_sum_yamame_glass_pic_ci4_pal = .data:0x00A8C5A0; // type:object size:0x20 scope:global align:32
+int_sum_yamame_body_txt = .data:0x00A8C5C0; // type:object size:0x300 scope:global align:32
+int_sum_yamame_side_txt = .data:0x00A8C8C0; // type:object size:0x200 scope:global align:32
+int_sum_yamame_base_txt = .data:0x00A8CAC0; // type:object size:0x80 scope:global align:32
+int_sum_yamame_top_txt = .data:0x00A8CB40; // type:object size:0x100 scope:global align:32
+int_sum_yamame_glass_txt = .data:0x00A8CC40; // type:object size:0x100 scope:global align:32
+int_sum_yamame_v = .data:0x00A8CD40; // type:object size:0x2D0 scope:global align:8
+int_sum_yamame_sakana_model = .data:0x00A8D010; // type:object size:0x70 scope:global align:8
+int_sum_yamame_top_model = .data:0x00A8D080; // type:object size:0x58 scope:global align:8
+int_sum_yamame_evw_model = .data:0x00A8D0D8; // type:object size:0x68 scope:global align:8
+int_sum_yamame_base_model = .data:0x00A8D140; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_sum_yamame_tbl = .data:0x00A8D1D0; // type:object size:0x5 scope:global align:4
+cKF_kn_int_sum_yamame_tbl = .data:0x00A8D1D8; // type:object size:0x12 scope:global align:4
+cKF_c_int_sum_yamame_tbl = .data:0x00A8D1EC; // type:object size:0x12 scope:global align:4
+cKF_ds_int_sum_yamame_tbl = .data:0x00A8D200; // type:object size:0x96 scope:global align:4
+cKF_ba_r_int_sum_yamame = .data:0x00A8D298; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_sum_yamame_tbl = .data:0x00A8D2AC; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_sum_yamame = .data:0x00A8D2E8; // type:object size:0x8 scope:global align:4
+int_tak_apollo1_pal = .data:0x00A8D300; // type:object size:0x20 scope:global align:32
+int_tak_apollo1_antena1_tex = .data:0x00A8D320; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_antena2_tex = .data:0x00A8D3A0; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_asi2_tex = .data:0x00A8D420; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_asi3_tex = .data:0x00A8D4A0; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_asi_tex = .data:0x00A8D520; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_atama_tex = .data:0x00A8D5A0; // type:object size:0x80 scope:global align:32 data:string
+int_tak_apollo1_body_tex = .data:0x00A8D620; // type:object size:0x100 scope:global align:32
+int_tak_apollo1_kosi_tex = .data:0x00A8D720; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_kutu_tex = .data:0x00A8D7A0; // type:object size:0x80 scope:global align:32
+int_tak_apollo1_kao_tex = .data:0x00A8D820; // type:object size:0x100 scope:global align:32
+int_tak_apollo1_v = .data:0x00A8D920; // type:object size:0x600 scope:global align:8
+int_tak_apollo1_on_model = .data:0x00A8DF20; // type:object size:0xB0 scope:global align:8
+int_tak_apollo1_onT_model = .data:0x00A8DFD0; // type:object size:0x138 scope:global align:8
+int_tak_arwing_pal = .data:0x00A8E120; // type:object size:0x20 scope:global align:32
+int_tak_arwing_boost = .data:0x00A8E140; // type:object size:0x80 scope:global align:32
+int_tak_arwing_bottom = .data:0x00A8E1C0; // type:object size:0x100 scope:global align:32 data:string
+int_tak_arwing_bulue1 = .data:0x00A8E2C0; // type:object size:0x80 scope:global align:32
+int_tak_arwing_front = .data:0x00A8E340; // type:object size:0x100 scope:global align:32
+int_tak_arwing_mark = .data:0x00A8E440; // type:object size:0x80 scope:global align:32
+int_tak_arwing_side = .data:0x00A8E4C0; // type:object size:0x100 scope:global align:32
+int_tak_arwing_window = .data:0x00A8E5C0; // type:object size:0x80 scope:global align:32
+int_tak_arwing_bou = .data:0x00A8E640; // type:object size:0x80 scope:global align:32
+int_tak_arwing_dai = .data:0x00A8E6C0; // type:object size:0x200 scope:global align:32
+int_tak_arwing_wing = .data:0x00A8E8C0; // type:object size:0x80 scope:global align:32 data:string
+int_tak_arwing_v = .data:0x00A8E940; // type:object size:0x710 scope:global align:8
+int_tak_arwing_on_model = .data:0x00A8F050; // type:object size:0x170 scope:global align:8
+int_tak_arwing_onT_model = .data:0x00A8F1C0; // type:object size:0x58 scope:global align:8
+int_tak_asteroid1_pal = .data:0x00A8F220; // type:object size:0x20 scope:global align:32
+int_tak_asteroid1_body_tex_txt = .data:0x00A8F240; // type:object size:0x800 scope:global align:32
+int_tak_asteroid1_v = .data:0x00A8FA40; // type:object size:0x670 scope:global align:8
+int_tak_asteroid1_on_model = .data:0x00A900B0; // type:object size:0xC8 scope:global align:8
+cKF_ckcb_r_int_tak_asteroid1_tbl = .data:0x00A90178; // type:object size:0x4 scope:global align:4
+cKF_kn_int_tak_asteroid1_tbl = .data:0x00A9017C; // type:object size:0x8 scope:global align:4
+cKF_c_int_tak_asteroid1_tbl = .data:0x00A90184; // type:object size:0x16 scope:global align:4
+cKF_ds_int_tak_asteroid1_tbl = .data:0x00A9019C; // type:object size:0x8A scope:global align:4
+cKF_ba_r_int_tak_asteroid1 = .data:0x00A90228; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_asteroid1_tbl = .data:0x00A9023C; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_tak_asteroid1 = .data:0x00A9026C; // type:object size:0x8 scope:global align:4
+int_tak_astro_pal = .data:0x00A90280; // type:object size:0x20 scope:global align:32
+int_tak_astro_face_tex_pic_ci4_pal = .data:0x00A902A0; // type:object size:0x20 scope:global align:32
+int_tak_astro_body_tex_txt = .data:0x00A902C0; // type:object size:0x300 scope:global align:32
+int_tak_astro_arm_tex_txt = .data:0x00A905C0; // type:object size:0x100 scope:global align:32
+int_tak_astro_head_tex_txt = .data:0x00A906C0; // type:object size:0x80 scope:global align:32
+int_tak_astro_back_tex_txt = .data:0x00A90740; // type:object size:0x180 scope:global align:32
+int_tak_astro_packtop_tex_txt = .data:0x00A908C0; // type:object size:0x80 scope:global align:32
+int_tak_astro_pack_tex_txt = .data:0x00A90940; // type:object size:0x100 scope:global align:32
+int_tak_astro_face_tex_txt = .data:0x00A90A40; // type:object size:0x80 scope:global align:32
+int_tak_astro_v = .data:0x00A90AC0; // type:object size:0x440 scope:global align:8
+int_tak_astro_face_env_model = .data:0x00A90F00; // type:object size:0x60 scope:global align:8
+int_tak_astro_body_on_model = .data:0x00A90F60; // type:object size:0x128 scope:global align:8
+int_tak_barber_body_pal = .data:0x00A910A0; // type:object size:0x20 scope:global align:32
+int_tak_barber_glass_tex_pic_ci4_pal = .data:0x00A910C0; // type:object size:0x20 scope:global align:32
+int_tak_barber_body_tex_txt = .data:0x00A910E0; // type:object size:0x100 scope:global align:32
+int_tak_barber_kosi_tex_txt = .data:0x00A911E0; // type:object size:0x80 scope:global align:32
+int_tak_barber_kasa_tex_txt = .data:0x00A91260; // type:object size:0x80 scope:global align:32
+int_tak_barber_asi_tex_txt = .data:0x00A912E0; // type:object size:0x80 scope:global align:32
+int_tak_barber_glass_tex_txt = .data:0x00A91360; // type:object size:0x80 scope:global align:32
+int_tak_barber_v = .data:0x00A913E0; // type:object size:0x3E0 scope:global align:8
+int_tak_barber_pole_on_model = .data:0x00A917C0; // type:object size:0x78 scope:global align:8
+int_tak_barber_glass_env_model = .data:0x00A91838; // type:object size:0x70 scope:global align:8
+int_tak_barber_body_on_model = .data:0x00A918A8; // type:object size:0xB0 scope:global align:8
+cKF_ckcb_r_int_tak_barber_tbl = .data:0x00A91958; // type:object size:0x4 scope:global align:4
+cKF_kn_int_tak_barber_tbl = .data:0x00A9195C; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_barber_tbl = .data:0x00A91960; // type:object size:0x1C scope:global align:4
+cKF_ds_int_tak_barber_tbl = .data:0x00A9197C; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_barber = .data:0x00A91988; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_barber_tbl = .data:0x00A9199C; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_tak_barber = .data:0x00A919CC; // type:object size:0x8 scope:global align:4
+int_tak_cone02_asi_tex_pal = .data:0x00A919E0; // type:object size:0x20 scope:local align:32
+int_tak_cone01_asi_tex = .data:0x00A91A00; // type:object size:0x80 scope:global align:32
+int_tak_cone01_body_tex = .data:0x00A91A80; // type:object size:0x100 scope:global align:32
+int_tak_cone01_top_tex = .data:0x00A91B80; // type:object size:0x80 scope:global align:32
+int_tak_cone01_v = .data:0x00A91C00; // type:object size:0x200 scope:global align:8
+int_tak_cone01_on_model = .data:0x00A91E00; // type:object size:0x68 scope:global align:8
+int_tak_cone01_onT_model = .data:0x00A91E68; // type:object size:0x80 scope:global align:8
+int_tak_cone02_asi_tex_pal = .data:0x00A91F00; // type:object size:0x20 scope:local align:32
+int_tak_cone03_asi_tex = .data:0x00A91F20; // type:object size:0x80 scope:global align:32
+int_tak_cone03_body_tex = .data:0x00A91FA0; // type:object size:0x100 scope:global align:32
+int_tak_cone03_top_tex = .data:0x00A920A0; // type:object size:0x80 scope:global align:32
+int_tak_cone03_v = .data:0x00A92120; // type:object size:0x200 scope:global align:8
+int_tak_cone03_on_model = .data:0x00A92320; // type:object size:0x68 scope:global align:8
+int_tak_cone03_onT_model = .data:0x00A92388; // type:object size:0x80 scope:global align:8
+int_tak_cube_body_tex = .data:0x00A92420; // type:object size:0x80 scope:global align:32
+int_tak_cube_glass_tex = .data:0x00A924A0; // type:object size:0x80 scope:global align:32
+int_tak_cube_evw_tex_rgb_i4 = .data:0x00A92520; // type:object size:0x80 scope:global align:32
+int_tak_cube_v = .data:0x00A925A0; // type:object size:0x8A0 scope:global align:8
+int_tak_cube_body_on_model = .data:0x00A92E40; // type:object size:0xF0 scope:global align:8
+int_tak_cube_evwT_model = .data:0x00A92F30; // type:object size:0x80 scope:global align:8
+int_tak_cube_glass_onT_model = .data:0x00A92FB0; // type:object size:0x80 scope:global align:8
+int_tak_drum02_body_tex_pal = .data:0x00A93040; // type:object size:0x20 scope:global align:32
+int_tak_drum02_body_tex = .data:0x00A93060; // type:object size:0x300 scope:global align:32
+int_tak_drum02_top_tex = .data:0x00A93360; // type:object size:0x100 scope:global align:32
+int_tak_drum02_futa_tex = .data:0x00A93460; // type:object size:0x80 scope:global align:32
+int_tak_drum02_v = .data:0x00A934E0; // type:object size:0x1D0 scope:global align:8
+int_tak_drum02_on_model = .data:0x00A936B0; // type:object size:0xA0 scope:global align:8
+int_tak_drum02_onT_model = .data:0x00A93750; // type:object size:0x58 scope:global align:8
+int_tak_eisei_pal = .data:0x00A937C0; // type:object size:0x20 scope:global align:32
+int_tak_eisei_hansya_tex_pic_ci4_pal = .data:0x00A937E0; // type:object size:0x20 scope:global align:32
+int_tak_eisei_omote_tex_txt = .data:0x00A93800; // type:object size:0x100 scope:global align:32
+int_tak_eisei_ura_tex_txt = .data:0x00A93900; // type:object size:0x100 scope:global align:32
+int_tak_eisei_top_tex_txt = .data:0x00A93A00; // type:object size:0x80 scope:global align:32
+int_tak_eisei_body_tex_txt = .data:0x00A93A80; // type:object size:0x180 scope:global align:32
+int_tak_eisei_kasa_tex_txt = .data:0x00A93C00; // type:object size:0x80 scope:global align:32
+int_tak_eisei_ten_tex_txt = .data:0x00A93C80; // type:object size:0x80 scope:global align:32
+int_tak_eisei_sasae_tex_txt = .data:0x00A93D00; // type:object size:0x80 scope:global align:32
+int_tak_eisei_antena_tex_txt = .data:0x00A93D80; // type:object size:0x80 scope:global align:32
+int_tak_eisei_hansya_tex_txt = .data:0x00A93E00; // type:object size:0x80 scope:global align:32
+int_tak_eisei_v = .data:0x00A93E80; // type:object size:0x4B0 scope:global align:8
+int_tak_eisei_ude_on_model = .data:0x00A94330; // type:object size:0x90 scope:global align:8
+int_tak_eisei_ude_env_model = .data:0x00A943C0; // type:object size:0x60 scope:global align:8
+int_tak_eisei_base_on_model = .data:0x00A94420; // type:object size:0x110 scope:global align:8
+cKF_ckcb_r_int_tak_eisei_tbl = .data:0x00A94530; // type:object size:0x4 scope:global align:4
+cKF_kn_int_tak_eisei_tbl = .data:0x00A94534; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_eisei_tbl = .data:0x00A94538; // type:object size:0x1C scope:global align:4
+cKF_ds_int_tak_eisei_tbl = .data:0x00A94554; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_eisei = .data:0x00A94560; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_eisei_tbl = .data:0x00A94574; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_tak_eisei = .data:0x00A945A4; // type:object size:0x8 scope:global align:4
+int_tak_ham1_pal = .data:0x00A945C0; // type:object size:0x20 scope:global align:32
+int_tak_ham1_a1_tex_pic_ci4_pal = .data:0x00A945E0; // type:object size:0x20 scope:global align:32
+int_tak_ham1_maru_tex_txt = .data:0x00A94600; // type:object size:0x80 scope:global align:32
+int_tak_ham1_wa_tex_txt = .data:0x00A94680; // type:object size:0x20 scope:global align:32 data:string
+int_tak_ham1_kuzu_tex_txt = .data:0x00A946A0; // type:object size:0x80 scope:global align:32
+int_tak_ham1_cage_tex_txt = .data:0x00A94720; // type:object size:0x100 scope:global align:32
+int_tak_ham1_a1_tex_txt = .data:0x00A94820; // type:object size:0x80 scope:global align:32
+int_tak_ham1_a2_tex_pic_ci4 = .data:0x00A948A0; // type:object size:0x80 scope:global align:32
+int_tak_ham1_v = .data:0x00A94920; // type:object size:0x640 scope:global align:8
+int_tak_ham1_wa_model = .data:0x00A94F60; // type:object size:0x78 scope:global align:8
+int_tak_ham1_maru_model = .data:0x00A94FD8; // type:object size:0x58 scope:global align:8
+int_tak_ham1_kuzu_model = .data:0x00A95030; // type:object size:0x58 scope:global align:8
+int_tak_ham1_cage_model = .data:0x00A95088; // type:object size:0xF8 scope:global align:8
+int_tak_ham1_a1_model = .data:0x00A95180; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_tak_ham1_tbl = .data:0x00A951D8; // type:object size:0x7 scope:global align:4
+cKF_kn_int_tak_ham1_tbl = .data:0x00A951E0; // type:object size:0x4 scope:global align:4
+cKF_c_int_tak_ham1_tbl = .data:0x00A951E4; // type:object size:0x2C scope:global align:4
+cKF_ds_int_tak_ham1_tbl = .data:0x00A95210; // type:object size:0x66 scope:global align:4
+cKF_ba_r_int_tak_ham1 = .data:0x00A95278; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_ham1_tbl = .data:0x00A9528C; // type:object size:0x54 scope:global align:4
+cKF_bs_r_int_tak_ham1 = .data:0x00A952E0; // type:object size:0x8 scope:global align:4
+int_tak_hole01_ue_tex_pal = .data:0x00A95300; // type:object size:0x20 scope:global align:32
+int_tak_hole01_ue_tex = .data:0x00A95320; // type:object size:0x200 scope:global align:32
+int_tak_hole01_v = .data:0x00A95520; // type:object size:0x50 scope:global align:8
+int_tak_hole01_onT_model = .data:0x00A95570; // type:object size:0x60 scope:global align:8
+int_tak_ice_pal = .data:0x00A955E0; // type:object size:0x20 scope:global align:32
+int_tak_ice_bou2_tex_txt = .data:0x00A95600; // type:object size:0x40 scope:global align:32
+int_tak_ice_wa1_tex_txt = .data:0x00A95640; // type:object size:0x80 scope:global align:32
+int_tak_ice_bou_tex_txt = .data:0x00A956C0; // type:object size:0x20 scope:global align:32
+int_tak_ice_block_tex_txt = .data:0x00A956E0; // type:object size:0x80 scope:global align:32
+int_tak_ice_top_tex_txt = .data:0x00A95760; // type:object size:0x40 scope:global align:32
+int_tak_ice_body_tex_txt = .data:0x00A957A0; // type:object size:0x200 scope:global align:32
+int_tak_ice_dai_tex_txt = .data:0x00A959A0; // type:object size:0x20 scope:global align:32
+int_tak_ice_sara_tex_txt = .data:0x00A959C0; // type:object size:0x80 scope:global align:32
+int_tak_ice_cup_tex_txt = .data:0x00A95A40; // type:object size:0x20 scope:global align:32
+int_tak_ice_wa2_tex_txt = .data:0x00A95A60; // type:object size:0x40 scope:global align:32
+int_tak_ice_yuki_tex_pic_i4 = .data:0x00A95AA0; // type:object size:0x100 scope:global align:32
+int_tak_ice_v = .data:0x00A95BA0; // type:object size:0x800 scope:global align:8
+int_tak_ice_rot_model = .data:0x00A963A0; // type:object size:0x98 scope:global align:8
+int_tak_ice_yuki_model = .data:0x00A96438; // type:object size:0x68 scope:global align:8
+int_tak_ice_base_model = .data:0x00A964A0; // type:object size:0x188 scope:global align:8
+int_tak_ice_block_model = .data:0x00A96628; // type:object size:0x80 scope:global align:8
+cKF_ckcb_r_int_tak_ice_tbl = .data:0x00A966A8; // type:object size:0x6 scope:global align:4
+cKF_kn_int_tak_ice_tbl = .data:0x00A966B0; // type:object size:0x4 scope:global align:4
+cKF_c_int_tak_ice_tbl = .data:0x00A966B4; // type:object size:0x26 scope:global align:4
+cKF_ds_int_tak_ice_tbl = .data:0x00A966DC; // type:object size:0x18 scope:global align:4
+cKF_ba_r_int_tak_ice = .data:0x00A966F4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_ice_tbl = .data:0x00A96708; // type:object size:0x48 scope:global align:4
+cKF_bs_r_int_tak_ice = .data:0x00A96750; // type:object size:0x8 scope:global align:4
+int_tak_isu03_pal = .data:0x00A96760; // type:object size:0x20 scope:global align:32
+int_tak_isu03_zabu_tex = .data:0x00A96780; // type:object size:0x200 scope:global align:32
+int_tak_isu03_under_tex = .data:0x00A96980; // type:object size:0x80 scope:global align:32
+int_tak_isu03_bou_tex = .data:0x00A96A00; // type:object size:0x80 scope:global align:32
+int_tak_isu03_asi_tex = .data:0x00A96A80; // type:object size:0x80 scope:global align:32
+int_tak_isu03_v = .data:0x00A96B00; // type:object size:0x2A0 scope:global align:8
+int_tak_isu03_onT_model = .data:0x00A96DA0; // type:object size:0xE8 scope:global align:8
+int_tak_lion_pal = .data:0x00A96EA0; // type:object size:0x20 scope:global align:32
+int_tak_lion_water_tex_rgb_ci4_pal = .data:0x00A96EC0; // type:object size:0x20 scope:global align:32
+int_tak_lion_back_tex = .data:0x00A96EE0; // type:object size:0x200 scope:global align:32
+int_tak_lion_body_tex = .data:0x00A970E0; // type:object size:0x20 scope:global align:32 data:string
+int_tak_lion_face_tex = .data:0x00A97100; // type:object size:0x400 scope:global align:32
+int_tak_lion_tail2_tex = .data:0x00A97500; // type:object size:0x180 scope:global align:32
+int_tak_lion_water_tex = .data:0x00A97680; // type:object size:0x20 scope:global align:32
+int_tak_lion_v = .data:0x00A976A0; // type:object size:0x520 scope:global align:8
+int_tak_lion_on_model = .data:0x00A97BC0; // type:object size:0x90 scope:global align:8
+int_tak_lion_onT_model = .data:0x00A97C50; // type:object size:0x140 scope:global align:8
+int_tak_lion_alphaT_model = .data:0x00A97D90; // type:object size:0x80 scope:global align:8
+int_tak_magami_pal = .data:0x00A97E20; // type:object size:0x20 scope:global align:32
+int_tak_megami_fire_tex = .data:0x00A97E40; // type:object size:0x20 scope:global align:32
+int_tak_megami_ita_tex = .data:0x00A97E60; // type:object size:0x80 scope:global align:32
+int_tak_megami_totte_tex = .data:0x00A97EE0; // type:object size:0x40 scope:global align:32
+int_tak_megami_face_tex = .data:0x00A97F20; // type:object size:0x80 scope:global align:32 data:string
+int_tak_megami_body_tex = .data:0x00A97FA0; // type:object size:0x400 scope:global align:32
+int_tak_megami_suso_tex = .data:0x00A983A0; // type:object size:0x80 scope:global align:32
+int_tak_megami_hand_tex = .data:0x00A98420; // type:object size:0x80 scope:global align:32
+int_tak_megami_sode_tex = .data:0x00A984A0; // type:object size:0x80 scope:global align:32 data:string
+int_tak_megami_asi_tex = .data:0x00A98520; // type:object size:0x80 scope:global align:32
+int_tak_megami_dai_tex = .data:0x00A985A0; // type:object size:0x40 scope:global align:32
+int_tak_megami_top_tex = .data:0x00A985E0; // type:object size:0x20 scope:global align:32
+int_tak_megami_v = .data:0x00A98600; // type:object size:0xB50 scope:global align:8
+int_tak_megami_on_model = .data:0x00A99150; // type:object size:0x150 scope:global align:8
+int_tak_megami_offT_model = .data:0x00A992A0; // type:object size:0x68 scope:global align:8
+int_tak_megami_onT_model = .data:0x00A99308; // type:object size:0x180 scope:global align:8
+int_tak_metro_pal = .data:0x00A994A0; // type:object size:0x20 scope:global align:32
+int_tak_metro_hari_tex_txt = .data:0x00A994C0; // type:object size:0x80 scope:global align:32
+int_tak_metro_neji_tex_txt = .data:0x00A99540; // type:object size:0x80 scope:global align:32
+int_tak_metro_side_tex_txt = .data:0x00A995C0; // type:object size:0x180 scope:global align:32
+int_tak_metro_front2_tex_txt = .data:0x00A99740; // type:object size:0x80 scope:global align:32
+int_tak_metro_front_tex_txt = .data:0x00A997C0; // type:object size:0x100 scope:global align:32
+int_tak_metro_v = .data:0x00A998C0; // type:object size:0x3D0 scope:global align:8
+int_tak_metro_hari_on_model = .data:0x00A99C90; // type:object size:0x58 scope:global align:8
+int_tak_metro_body_on_model = .data:0x00A99CE8; // type:object size:0xF8 scope:global align:8
+cKF_ckcb_r_int_tak_metro_tbl = .data:0x00A99DE0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_tak_metro_tbl = .data:0x00A99DE4; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_metro_tbl = .data:0x00A99DE8; // type:object size:0x16 scope:global align:4
+cKF_ds_int_tak_metro_tbl = .data:0x00A99E00; // type:object size:0x1E scope:global align:4
+cKF_ba_r_int_tak_metro = .data:0x00A99E20; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_metro_tbl = .data:0x00A99E34; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_tak_metro = .data:0x00A99E58; // type:object size:0x8 scope:global align:4
+int_tak_money_pal = .data:0x00A99E60; // type:object size:0x20 scope:global align:32
+int_tak_money_front_tex_txt = .data:0x00A99E80; // type:object size:0x400 scope:global align:32
+int_tak_money_side_tex_txt = .data:0x00A9A280; // type:object size:0x200 scope:global align:32
+int_tak_money_v = .data:0x00A9A480; // type:object size:0x380 scope:global align:8
+int_tak_money_side_model = .data:0x00A9A800; // type:object size:0xA8 scope:global align:8
+int_tak_money_front_model = .data:0x00A9A8A8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_tak_money_tbl = .data:0x00A9A920; // type:object size:0x3 scope:global align:4
+cKF_kn_int_tak_money_tbl = .data:0x00A9A924; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_money_tbl = .data:0x00A9A928; // type:object size:0x16 scope:global align:4
+cKF_ds_int_tak_money_tbl = .data:0x00A9A940; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_money = .data:0x00A9A94C; // type:object size:0x14 scope:global align:4 data:2byte
+cKF_je_r_int_tak_money_tbl = .data:0x00A9A960; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_tak_money = .data:0x00A9A984; // type:object size:0x8 scope:global align:4
+int_tak_moon_pal = .data:0x00A9A9A0; // type:object size:0x20 scope:global align:32
+int_tak_moon_tex_txt = .data:0x00A9A9C0; // type:object size:0x800 scope:global align:32
+int_tak_moon_v = .data:0x00A9B1C0; // type:object size:0x390 scope:global align:8
+int_tak_moon_on_model = .data:0x00A9B550; // type:object size:0x108 scope:global align:8
+cKF_ckcb_r_int_tak_moon_tbl = .data:0x00A9B658; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_moon_tbl = .data:0x00A9B65C; // type:object size:0x12 scope:global align:4
+cKF_ba_r_int_tak_moon = .data:0x00A9B670; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_moon_tbl = .data:0x00A9B684; // type:object size:0x18 scope:global align:4
+cKF_bs_r_int_tak_moon = .data:0x00A9B69C; // type:object size:0x8 scope:global align:4
+int_tak_mooncar_pal = .data:0x00A9B6C0; // type:object size:0x20 scope:global align:32
+int_tak_mooncar_bou1_tex = .data:0x00A9B6E0; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_base_tex = .data:0x00A9B760; // type:object size:0x100 scope:global align:32
+int_tak_mooncar_body_tex = .data:0x00A9B860; // type:object size:0x100 scope:global align:32
+int_tak_mooncar_kasa_tex = .data:0x00A9B960; // type:object size:0x80 scope:global align:32 data:string
+int_tak_mooncar_se_tex = .data:0x00A9B9E0; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_cover2_tex = .data:0x00A9BA60; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_ant_tex = .data:0x00A9BAE0; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_bodyside_tex = .data:0x00A9BB60; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_tire2_tex = .data:0x00A9BBE0; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_bou2_tex = .data:0x00A9BC60; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_kasa2_tex = .data:0x00A9BCE0; // type:object size:0x80 scope:global align:32
+int_tak_mooncar_v = .data:0x00A9BD60; // type:object size:0x510 scope:global align:8
+int_tak_mooncar_on_model = .data:0x00A9C270; // type:object size:0x80 scope:global align:8
+int_tak_mooncar_onT_model = .data:0x00A9C2F0; // type:object size:0x168 scope:global align:8
+int_tak_moti_pal = .data:0x00A9C460; // type:object size:0x20 scope:global align:32
+int_tak_moti_body_tex = .data:0x00A9C480; // type:object size:0x400 scope:global align:32
+int_tak_moti_maru_tex = .data:0x00A9C880; // type:object size:0x80 scope:global align:32
+int_tak_moti_moti_tex = .data:0x00A9C900; // type:object size:0x80 scope:global align:32
+int_tak_moti_kine_tex = .data:0x00A9C980; // type:object size:0x200 scope:global align:32
+int_tak_moti_v = .data:0x00A9CB80; // type:object size:0x4C0 scope:global align:8
+int_tak_moti_onT_model = .data:0x00A9D040; // type:object size:0x110 scope:global align:8
+int_tak_neko_pal = .data:0x00A9D160; // type:object size:0x20 scope:global align:32
+int_tak_neko_asi_tex = .data:0x00A9D180; // type:object size:0x200 scope:global align:32
+int_tak_neko_body_tex = .data:0x00A9D380; // type:object size:0x80 scope:global align:32
+int_tak_neko_hand_tex = .data:0x00A9D400; // type:object size:0x80 scope:global align:32
+int_tak_neko_scop_tex = .data:0x00A9D480; // type:object size:0x80 scope:global align:32
+int_tak_neko_tire_tex = .data:0x00A9D500; // type:object size:0x80 scope:global align:32
+int_tak_neko_tuti_tex = .data:0x00A9D580; // type:object size:0x80 scope:global align:32
+int_tak_neko_ude_tex = .data:0x00A9D600; // type:object size:0x200 scope:global align:32
+int_tak_neko_side_tex = .data:0x00A9D800; // type:object size:0x100 scope:global align:32
+int_tak_neko_v = .data:0x00A9D900; // type:object size:0x4A0 scope:global align:8
+int_tak_neko_on_model = .data:0x00A9DDA0; // type:object size:0x60 scope:global align:8
+int_tak_neko_onT_model = .data:0x00A9DE00; // type:object size:0x158 scope:global align:8
+int_tak_nes01_pal = .data:0x00A9DF60; // type:object size:0x20 scope:global align:32
+int_tak_nes_cl_pal = .data:0x00A9DF80; // type:object size:0x20 scope:global align:32
+int_tak_nes_af_tex_rgb_ci4_pal = .data:0x00A9DFA0; // type:object size:0x20 scope:global align:32
+int_tak_nes_bb_tex_rgb_ci4_pal = .data:0x00A9DFC0; // type:object size:0x20 scope:global align:32
+int_tak_nes_bf_tex_rgb_ci4_pal = .data:0x00A9DFE0; // type:object size:0x20 scope:global align:32
+int_tak_nes_d2_tex_rgb_ci4_pal = .data:0x00A9E000; // type:object size:0x20 scope:global align:32
+int_tak_nes_d3_tex_rgb_ci4_pal = .data:0x00A9E020; // type:object size:0x20 scope:global align:32
+int_tak_nes_dk_tex_rgb_ci4_pal = .data:0x00A9E040; // type:object size:0x20 scope:global align:32
+int_tak_nes_eb_tex_rgb_ci4_pal = .data:0x00A9E060; // type:object size:0x20 scope:global align:32
+int_tak_nes_g_tex_rgb_ci4_pal = .data:0x00A9E080; // type:object size:0x20 scope:global align:32
+int_tak_nes_ic_tex_rgb_ci4_pal = .data:0x00A9E0A0; // type:object size:0x20 scope:global align:32
+int_tak_nes_mb_tex_rgb_ci4_pal = .data:0x00A9E0C0; // type:object size:0x20 scope:global align:32
+int_tak_nes_pb_tex_rgb_ci4_pal = .data:0x00A9E0E0; // type:object size:0x20 scope:global align:32
+int_tak_nes_po_tex_rgb_ci4_pal = .data:0x00A9E100; // type:object size:0x20 scope:global align:32
+int_tak_nes_sa_tex_rgb_ci4_pal = .data:0x00A9E120; // type:object size:0x20 scope:global align:32
+int_tak_nes_sm_tex_rgb_ci4_pal = .data:0x00A9E140; // type:object size:0x20 scope:global align:32
+int_tak_nes_so_tex_rgb_ci4_pal = .data:0x00A9E160; // type:object size:0x20 scope:global align:32
+int_tak_nes_t_tex_rgb_ci4_pal = .data:0x00A9E180; // type:object size:0x20 scope:global align:32
+int_tak_nes_wm_tex_rgb_ci4_pal = .data:0x00A9E1A0; // type:object size:0x20 scope:global align:32
+int_tak_nes_zl_tex_rgb_ci4_pal = .data:0x00A9E1C0; // type:object size:0x20 scope:global align:32
+int_tak_nes01_top_tex = .data:0x00A9E1E0; // type:object size:0x200 scope:global align:32
+int_tak_nes01_side_tex = .data:0x00A9E3E0; // type:object size:0x400 scope:global align:32
+int_tak_nes01_con_tex = .data:0x00A9E7E0; // type:object size:0x40 scope:global align:32
+int_tak_nes01_code_tex = .data:0x00A9E820; // type:object size:0x80 scope:global align:32
+int_tak_nes_cl_tex = .data:0x00A9E8A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_af_tex_rgb_ci4 = .data:0x00A9EAA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_bb_tex_rgb_ci4 = .data:0x00A9ECA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_bf_tex_rgb_ci4 = .data:0x00A9EEA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_d2_tex_rgb_ci4 = .data:0x00A9F0A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_d3_tex_rgb_ci4 = .data:0x00A9F2A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_dk_tex_rgb_ci4 = .data:0x00A9F4A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_eb_tex_rgb_ci4 = .data:0x00A9F6A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_g_tex_rgb_ci4 = .data:0x00A9F8A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_ic_tex_rgb_ci4 = .data:0x00A9FAA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_mb_tex_rgb_ci4 = .data:0x00A9FCA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_pb_tex_rgb_ci4 = .data:0x00A9FEA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_po_tex_rgb_ci4 = .data:0x00AA00A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_sa_tex_rgb_ci4 = .data:0x00AA02A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_sm_tex_rgb_ci4 = .data:0x00AA04A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_so_tex_rgb_ci4 = .data:0x00AA06A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_t_tex_rgb_ci4 = .data:0x00AA08A0; // type:object size:0x200 scope:global align:32
+int_tak_nes_wm_tex_rgb_ci4 = .data:0x00AA0AA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_zl_tex_rgb_ci4 = .data:0x00AA0CA0; // type:object size:0x200 scope:global align:32
+int_tak_nes_ds_tex_rgb_i4 = .data:0x00AA0EA0; // type:object size:0x200 scope:global align:32
+int_tak_nes01_v = .data:0x00AA10A0; // type:object size:0x640 scope:global align:8
+int_tak_nes01_on_model = .data:0x00AA16E0; // type:object size:0xF0 scope:global align:8
+int_tak_nes01_game_on_model = .data:0x00AA17D0; // type:object size:0x68 scope:global align:8
+int_tak_nes01_onT_model = .data:0x00AA1838; // type:object size:0x60 scope:global align:8
+int_tak_nikki01_name_pal = .data:0x00AA18A0; // type:object size:0x20 scope:global align:32
+int_tak_nikki01_base_tex = .data:0x00AA18C0; // type:object size:0x200 scope:global align:32
+int_tak_nikki01_himo_tex = .data:0x00AA1AC0; // type:object size:0x100 scope:global align:32
+int_tak_nikki01_name_tex = .data:0x00AA1BC0; // type:object size:0x40 scope:global align:32 data:string
+int_tak_nikki01_pen_tex = .data:0x00AA1C00; // type:object size:0x80 scope:global align:32
+int_tak_nikki01_maki_tex = .data:0x00AA1C80; // type:object size:0x20 scope:global align:32
+int_tak_nikki01_v = .data:0x00AA1CA0; // type:object size:0x420 scope:global align:8
+int_tak_nikki01_on_model = .data:0x00AA20C0; // type:object size:0x118 scope:global align:8
+int_tak_nikki01_onT_model = .data:0x00AA21D8; // type:object size:0x58 scope:global align:8
+int_tak_noise_pal = .data:0x00AA2240; // type:object size:0x20 scope:global align:32
+int_tak_noise_1_tex = .data:0x00AA2260; // type:object size:0x200 scope:global align:32
+int_tak_noise_2_tex = .data:0x00AA2460; // type:object size:0x80 scope:global align:32
+int_tak_noise_3_tex = .data:0x00AA24E0; // type:object size:0x40 scope:global align:32
+int_tak_noise_v = .data:0x00AA2520; // type:object size:0x430 scope:global align:8
+int_tak_noise_on_model = .data:0x00AA2950; // type:object size:0xB0 scope:global align:8
+int_tak_noise_onT_model = .data:0x00AA2A00; // type:object size:0x80 scope:global align:8
+int_tak_rocket1_pal = .data:0x00AA2A80; // type:object size:0x20 scope:global align:32
+int_tak_rocket1_wing_tex = .data:0x00AA2AA0; // type:object size:0x100 scope:global align:32
+int_tak_rocket1_body1_tex = .data:0x00AA2BA0; // type:object size:0x200 scope:global align:32
+int_tak_rocket1_body2_tex = .data:0x00AA2DA0; // type:object size:0x300 scope:global align:32
+int_tak_rocket1_dai_tex = .data:0x00AA30A0; // type:object size:0x80 scope:global align:32
+int_tak_rocket1_hone_tex = .data:0x00AA3120; // type:object size:0x80 scope:global align:32
+int_tak_rocket1_hasi1_tex = .data:0x00AA31A0; // type:object size:0x80 scope:global align:32
+int_tak_rocket1_hasi2_tex = .data:0x00AA3220; // type:object size:0x80 scope:global align:32
+int_tak_rocket1_v = .data:0x00AA32A0; // type:object size:0x420 scope:global align:8
+int_tak_rocket1_on_model = .data:0x00AA36C0; // type:object size:0xC0 scope:global align:8
+int_tak_rocket1_onT_model = .data:0x00AA3780; // type:object size:0xC0 scope:global align:8
+int_tak_shuttle_pal = .data:0x00AA3840; // type:object size:0x20 scope:global align:32
+int_tak_shuttle_back = .data:0x00AA3860; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_eg = .data:0x00AA38E0; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_fin = .data:0x00AA3960; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_wing = .data:0x00AA39E0; // type:object size:0x200 scope:global align:32
+int_tak_shuttle_face1 = .data:0x00AA3BE0; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_face2 = .data:0x00AA3C60; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_face4 = .data:0x00AA3CE0; // type:object size:0x80 scope:global align:32
+int_tak_shuttle_body3 = .data:0x00AA3D60; // type:object size:0x300 scope:global align:32
+int_tak_shuttle_v = .data:0x00AA4060; // type:object size:0x430 scope:global align:8
+int_tak_shuttle_on_model = .data:0x00AA4490; // type:object size:0x140 scope:global align:8
+int_tak_shuttle_onT_model = .data:0x00AA45D0; // type:object size:0x78 scope:global align:8
+int_tak_snoisu_tex_pal = .data:0x00AA4660; // type:object size:0x20 scope:global align:32
+int_tak_snowisu_back_tex = .data:0x00AA4680; // type:object size:0x100 scope:global align:32
+int_tak_snowisu_face_tex = .data:0x00AA4780; // type:object size:0x100 scope:global align:32
+int_tak_snowisu_futi_tex = .data:0x00AA4880; // type:object size:0x80 scope:global align:32
+int_tak_snowisu_body2_tex = .data:0x00AA4900; // type:object size:0x100 scope:global align:32
+int_tak_snowisu_side_tex = .data:0x00AA4A00; // type:object size:0x80 scope:global align:32
+int_tak_snowisu_v = .data:0x00AA4A80; // type:object size:0x320 scope:global align:8
+int_tak_snowisu_on_model = .data:0x00AA4DA0; // type:object size:0x78 scope:global align:8
+int_tak_snowisu_onT_model = .data:0x00AA4E18; // type:object size:0xD8 scope:global align:8
+int_tak_snowlamp_tex_pal = .data:0x00AA4F00; // type:object size:0x20 scope:global align:32
+int_tak_snowlamp_face_tex = .data:0x00AA4F20; // type:object size:0x80 scope:global align:32
+int_tak_snowlamp_back_tex = .data:0x00AA4FA0; // type:object size:0x80 scope:global align:32
+int_tak_snowlamp_bou_tex = .data:0x00AA5020; // type:object size:0x100 scope:global align:32
+int_tak_snowlamp_asi_tex = .data:0x00AA5120; // type:object size:0x80 scope:global align:32
+int_tak_snowlamp_body_tex = .data:0x00AA51A0; // type:object size:0x200 scope:global align:32
+int_tak_snowlamp_side_tex = .data:0x00AA53A0; // type:object size:0x80 scope:global align:32
+int_tak_snowlamp_v = .data:0x00AA5420; // type:object size:0x370 scope:global align:8
+int_tak_snowlamp_off_model = .data:0x00AA5790; // type:object size:0xA8 scope:global align:8
+int_tak_snowlamp_offT_model = .data:0x00AA5838; // type:object size:0xB8 scope:global align:8
+int_tak_sori01_pal = .data:0x00AA5900; // type:object size:0x20 scope:global align:32
+int_tak_sori01_body_tex = .data:0x00AA5920; // type:object size:0x400 scope:global align:32
+int_tak_sori01_ita_tex = .data:0x00AA5D20; // type:object size:0x80 scope:global align:32
+int_tak_sori01_sofa_tex = .data:0x00AA5DA0; // type:object size:0x100 scope:global align:32
+int_tak_sori01_ropeside_tex = .data:0x00AA5EA0; // type:object size:0x40 scope:global align:32
+int_tak_sori01_v = .data:0x00AA5EE0; // type:object size:0x9E0 scope:global align:8
+int_tak_sori01_on_model = .data:0x00AA68C0; // type:object size:0x170 scope:global align:8
+int_tak_sori01_onT_model = .data:0x00AA6A30; // type:object size:0xC8 scope:global align:8
+int_tak_station_pal = .data:0x00AA6B00; // type:object size:0x20 scope:global align:32
+int_tak_station_wa_tex_txt = .data:0x00AA6B20; // type:object size:0x200 scope:global align:32
+int_tak_station_side_tex_txt = .data:0x00AA6D20; // type:object size:0x80 scope:global align:32
+int_tak_station_bou_tex_txt = .data:0x00AA6DA0; // type:object size:0x80 scope:global align:32
+int_tak_station_top_tex_txt = .data:0x00AA6E20; // type:object size:0x80 scope:global align:32
+int_tak_station_mado_tex_txt = .data:0x00AA6EA0; // type:object size:0x80 scope:global align:32
+int_tak_station_v = .data:0x00AA6F20; // type:object size:0x460 scope:global align:8
+int_tak_station_on_model = .data:0x00AA7380; // type:object size:0x148 scope:global align:8
+cKF_ckcb_r_int_tak_station_tbl = .data:0x00AA74C8; // type:object size:0x3 scope:global align:4
+cKF_kn_int_tak_station_tbl = .data:0x00AA74CC; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_station_tbl = .data:0x00AA74D0; // type:object size:0x16 scope:global align:4
+cKF_ds_int_tak_station_tbl = .data:0x00AA74E8; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_station = .data:0x00AA74F4; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_station_tbl = .data:0x00AA7508; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_tak_station = .data:0x00AA752C; // type:object size:0x8 scope:global align:4
+int_tak_stew_a1_pal = .data:0x00AA7540; // type:object size:0x20 scope:global align:32
+int_tak_stew_nabe_pal = .data:0x00AA7560; // type:object size:0x20 scope:global align:32
+int_tak_stew_a1_tex = .data:0x00AA7580; // type:object size:0x200 scope:global align:32
+int_tak_stew_nabe_tex = .data:0x00AA7780; // type:object size:0x80 scope:global align:32
+int_tak_stew_etc_tex = .data:0x00AA7800; // type:object size:0x80 scope:global align:32
+int_tak_stew_a2_tex_rgb_ci4 = .data:0x00AA7880; // type:object size:0x200 scope:global align:32
+int_tak_stew_v = .data:0x00AA7A80; // type:object size:0x400 scope:global align:8
+int_tak_stew_nabe_on_model = .data:0x00AA7E80; // type:object size:0x78 scope:global align:8
+int_tak_stew_nabe_onT_model = .data:0x00AA7EF8; // type:object size:0xA8 scope:global align:8
+int_tak_stew_a1T_model = .data:0x00AA7FA0; // type:object size:0x58 scope:global align:8
+int_tak_syogi01_pal = .data:0x00AA8000; // type:object size:0x20 scope:global align:32
+int_tak_syogi01_1_tex = .data:0x00AA8020; // type:object size:0x400 scope:global align:32
+int_tak_syogi_v = .data:0x00AA8420; // type:object size:0x1A0 scope:global align:8
+int_tak_syogi01_on_model = .data:0x00AA85C0; // type:object size:0x70 scope:global align:8
+int_tak_table02_pal = .data:0x00AA8640; // type:object size:0x20 scope:global align:32
+int_tak_table02_top_tex = .data:0x00AA8660; // type:object size:0x400 scope:global align:32
+int_tak_table02_under_tex = .data:0x00AA8A60; // type:object size:0x200 scope:global align:32
+int_tak_table02_wa_tex = .data:0x00AA8C60; // type:object size:0x80 scope:global align:32
+int_tak_table02_asi_tex = .data:0x00AA8CE0; // type:object size:0x100 scope:global align:32
+int_tak_table02_v = .data:0x00AA8DE0; // type:object size:0x1C0 scope:global align:8
+int_tak_table02_onT_model = .data:0x00AA8FA0; // type:object size:0xB8 scope:global align:8
+int_tak_tailor_pal = .data:0x00AA9060; // type:object size:0x20 scope:global align:32
+int_tak_tailor_body_tex = .data:0x00AA9080; // type:object size:0x400 scope:global align:32
+int_tak_tailor_grass_tex = .data:0x00AA9480; // type:object size:0x80 scope:global align:32
+int_tak_tailor_roof_tex = .data:0x00AA9500; // type:object size:0x80 scope:global align:32
+int_tak_tailor_sign_tex = .data:0x00AA9580; // type:object size:0x100 scope:global align:32
+int_tak_tailor_tent_tex = .data:0x00AA9680; // type:object size:0x20 scope:global align:32
+int_tak_tailor_v = .data:0x00AA96A0; // type:object size:0x700 scope:global align:8
+int_tak_tailor_on_model = .data:0x00AA9DA0; // type:object size:0x78 scope:global align:8
+int_tak_tailor_onT_model = .data:0x00AA9E18; // type:object size:0xF8 scope:global align:8
+int_tak_tailor_offT_model = .data:0x00AA9F10; // type:object size:0x60 scope:global align:8
+int_tak_tekkin_tex_pal = .data:0x00AA9F80; // type:object size:0x20 scope:global align:32
+int_tak_tekkin_top_tex = .data:0x00AA9FA0; // type:object size:0x100 scope:global align:32
+int_tak_tekkin_side_tex = .data:0x00AAA0A0; // type:object size:0x100 scope:global align:32
+int_tak_tekkin_futi_tex = .data:0x00AAA1A0; // type:object size:0x100 scope:global align:32
+int_tak_tekkin_front_tex = .data:0x00AAA2A0; // type:object size:0x80 scope:global align:32
+int_tak_tekkin_v = .data:0x00AAA320; // type:object size:0x480 scope:global align:8
+int_tak_tekkin_on_model = .data:0x00AAA7A0; // type:object size:0x68 scope:global align:8
+int_tak_tekkin_onT_model = .data:0x00AAA808; // type:object size:0xD0 scope:global align:8
+int_tak_tent_pal = .data:0x00AAA8E0; // type:object size:0x20 scope:global align:32
+int_tak_tent_1_tex = .data:0x00AAA900; // type:object size:0x200 scope:global align:32
+int_tak_tent_2_tex = .data:0x00AAAB00; // type:object size:0x80 scope:global align:32
+int_tak_tent_v = .data:0x00AAAB80; // type:object size:0x970 scope:global align:8
+int_tak_tent_green_on_model = .data:0x00AAB4F0; // type:object size:0x58 scope:global align:8
+int_tak_tent_body_onT_model = .data:0x00AAB548; // type:object size:0x68 scope:global align:8
+int_tak_tent_etc_onT_model = .data:0x00AAB5B0; // type:object size:0x110 scope:global align:8
+int_tak_tent_light_offT_model = .data:0x00AAB6C0; // type:object size:0x60 scope:global align:8
+int_tak_tent_box_pal = .data:0x00AAB720; // type:object size:0x20 scope:global align:32
+int_tak_tent_box_2_tex = .data:0x00AAB740; // type:object size:0x80 scope:global align:32
+int_tak_tent_box_1_tex = .data:0x00AAB7C0; // type:object size:0x400 scope:global align:32
+int_tak_tent_box_v = .data:0x00AABBC0; // type:object size:0x410 scope:global align:8
+int_tak_tent_box_on_model = .data:0x00AABFD0; // type:object size:0xD8 scope:global align:8
+int_tak_tent_lamp_pal = .data:0x00AAC0C0; // type:object size:0x20 scope:global align:32
+int_tak_tent_lamp_tex = .data:0x00AAC0E0; // type:object size:0x200 scope:global align:32
+int_tak_tent_lamp_v = .data:0x00AAC2E0; // type:object size:0x460 scope:global align:8
+obj_tent_lamp_offT_model = .data:0x00AAC740; // type:object size:0xD8 scope:global align:8
+int_tak_tetra_pal = .data:0x00AAC820; // type:object size:0x20 scope:global align:32
+int_tak_tetra_side_tex = .data:0x00AAC840; // type:object size:0x200 scope:global align:32
+int_tak_tetra_top_tex = .data:0x00AACA40; // type:object size:0x80 scope:global align:32 data:string
+int_tak_tetra_v = .data:0x00AACAC0; // type:object size:0x510 scope:global align:8
+int_tak_tetra_on_model = .data:0x00AACFD0; // type:object size:0x100 scope:global align:8
+int_tak_toudai_pal = .data:0x00AAD0E0; // type:object size:0x20 scope:global align:32
+int_tak_toudai_evw_tex_pic_ci4_pal = .data:0x00AAD100; // type:object size:0x20 scope:global align:32
+int_tak_toudai_right_tex_txt = .data:0x00AAD120; // type:object size:0x80 scope:global align:32
+int_tak_toudai_dai_tex_txt = .data:0x00AAD1A0; // type:object size:0x40 scope:global align:32
+int_tak_toudai_grass_tex_txt = .data:0x00AAD1E0; // type:object size:0x80 scope:global align:32
+int_tak_toudai_tesuri_tex_txt = .data:0x00AAD260; // type:object size:0x40 scope:global align:32
+int_tak_toudai_body2_tex_txt = .data:0x00AAD2A0; // type:object size:0x100 scope:global align:32
+int_tak_toudai_body_tex_txt = .data:0x00AAD3A0; // type:object size:0x80 scope:global align:32
+int_tak_toudai_evw_tex_txt = .data:0x00AAD420; // type:object size:0x20 scope:global align:32
+int_tak_toudai_v = .data:0x00AAD440; // type:object size:0x710 scope:global align:8
+int_tak_toudai_right_model = .data:0x00AADB50; // type:object size:0x68 scope:global align:8
+int_tak_toudai_back_model = .data:0x00AADBB8; // type:object size:0x58 scope:global align:8
+int_tak_toudai_tesuri_model = .data:0x00AADC10; // type:object size:0x88 scope:global align:8
+int_tak_toudai_grass_model = .data:0x00AADC98; // type:object size:0x58 scope:global align:8
+int_tak_toudai_evw_model = .data:0x00AADCF0; // type:object size:0x70 scope:global align:8
+int_tak_toudai_dai_model = .data:0x00AADD60; // type:object size:0x70 scope:global align:8
+int_tak_toudai_body_model = .data:0x00AADDD0; // type:object size:0x90 scope:global align:8
+cKF_ckcb_r_int_tak_toudai_tbl = .data:0x00AADE60; // type:object size:0x8 scope:global align:4
+cKF_kn_int_tak_toudai_tbl = .data:0x00AADE68; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_toudai_tbl = .data:0x00AADE6C; // type:object size:0x34 scope:global align:4
+cKF_ds_int_tak_toudai_tbl = .data:0x00AADEA0; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_toudai = .data:0x00AADEAC; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_toudai_tbl = .data:0x00AADEC0; // type:object size:0x60 scope:global align:4
+cKF_bs_r_int_tak_toudai = .data:0x00AADF20; // type:object size:0x8 scope:global align:4
+int_tak_ufo_pal = .data:0x00AADF40; // type:object size:0x20 scope:global align:32
+int_tak_ufo_yane_tex_txt = .data:0x00AADF60; // type:object size:0x80 scope:global align:32
+int_tak_ufo_body_tex_txt = .data:0x00AADFE0; // type:object size:0x100 scope:global align:32
+int_tak_ufo_mado_tex_txt = .data:0x00AAE0E0; // type:object size:0x80 scope:global align:32
+int_tak_ufo_asi_tex_txt = .data:0x00AAE160; // type:object size:0x80 scope:global align:32
+int_tak_ufo_hikari_tex_txt = .data:0x00AAE1E0; // type:object size:0x80 scope:global align:32
+int_tak_ufo_v = .data:0x00AAE260; // type:object size:0x5B0 scope:global align:8
+int_tak_ufo_on_model = .data:0x00AAE810; // type:object size:0xC0 scope:global align:8
+int_tak_ufo_off_model = .data:0x00AAE8D0; // type:object size:0x98 scope:global align:8
+cKF_ckcb_r_int_tak_ufo_tbl = .data:0x00AAE968; // type:object size:0x4 scope:global align:4
+cKF_kn_int_tak_ufo_tbl = .data:0x00AAE96C; // type:object size:0x2 scope:global align:4
+cKF_c_int_tak_ufo_tbl = .data:0x00AAE970; // type:object size:0x1C scope:global align:4
+cKF_ds_int_tak_ufo_tbl = .data:0x00AAE98C; // type:object size:0xC scope:global align:4
+cKF_ba_r_int_tak_ufo = .data:0x00AAE998; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_tak_ufo_tbl = .data:0x00AAE9AC; // type:object size:0x30 scope:global align:4
+cKF_bs_r_int_tak_ufo = .data:0x00AAE9DC; // type:object size:0x8 scope:global align:4
+int_tak_yaji_pal = .data:0x00AAEA00; // type:object size:0x20 scope:global align:32
+int_tak_yaji_top_tex = .data:0x00AAEA20; // type:object size:0x80 scope:global align:32
+int_tak_yaji_front_tex = .data:0x00AAEAA0; // type:object size:0x100 scope:global align:32
+int_tak_yaji_side_tex = .data:0x00AAEBA0; // type:object size:0x100 scope:global align:32
+int_tak_yaji_back_tex = .data:0x00AAECA0; // type:object size:0x80 scope:global align:32
+int_tak_yaji_v = .data:0x00AAED20; // type:object size:0x180 scope:global align:8
+int_tak_yaji_on_model = .data:0x00AAEEA0; // type:object size:0x98 scope:global align:8
+int_tak_yaji_onT_model = .data:0x00AAEF38; // type:object size:0x58 scope:global align:8
+int_tak_yoroi_pal = .data:0x00AAEFA0; // type:object size:0x20 scope:global align:32
+int_tak_yoroi_yari_tex = .data:0x00AAEFC0; // type:object size:0x40 scope:global align:32
+int_tak_yoroi_head_tex = .data:0x00AAF000; // type:object size:0x100 scope:global align:32
+int_tak_yoroi_body_tex = .data:0x00AAF100; // type:object size:0x200 scope:global align:32
+int_tak_yoroi_leg_tex = .data:0x00AAF300; // type:object size:0x200 scope:global align:32
+int_tak_yoroi_arm_tex = .data:0x00AAF500; // type:object size:0x200 scope:global align:32
+int_tak_yoroi_v = .data:0x00AAF700; // type:object size:0x960 scope:global align:8
+int_tak_yoroi_on_model = .data:0x00AB0060; // type:object size:0x170 scope:global align:8
+int_tak_yoroi_onT_model = .data:0x00AB01D0; // type:object size:0xD0 scope:global align:8
+mFM_grd_s_tekkyo_tex = .data:0x00AB02A0; // type:object size:0x800 scope:global align:4
+mFM_grd_s_tekkyo_2_tex = .data:0x00AB0AA0; // type:object size:0x800 scope:global align:32
+mFM_grd_s_tekkyo_3_tex = .data:0x00AB12A0; // type:object size:0x800 scope:global align:32
+mFM_grd_w_tekkyo_tex = .data:0x00AB1AA0; // type:object size:0x800 scope:global align:32
+mFM_grd_w_tekkyo_2_tex = .data:0x00AB22A0; // type:object size:0x800 scope:global align:32
+mFM_grd_w_tekkyo_3_tex = .data:0x00AB2AA0; // type:object size:0x800 scope:global align:32
+rom_tent_box_pal = .data:0x00AB32A0; // type:object size:0x20 scope:global align:32
+rom_tent_can_pal = .data:0x00AB32C0; // type:object size:0x20 scope:global align:32
+rom_tent_mono1_pal = .data:0x00AB32E0; // type:object size:0x20 scope:global align:32
+rom_tent_gas_pal = .data:0x00AB3300; // type:object size:0x20 scope:global align:32
+rom_tent_enter = .data:0x00AB3320; // type:object size:0x400 scope:global align:32
+rom_tent_floor = .data:0x00AB3720; // type:object size:0x800 scope:global align:32
+rom_tent_wall1 = .data:0x00AB3F20; // type:object size:0x800 scope:global align:32
+rom_tent_wall2 = .data:0x00AB4720; // type:object size:0x800 scope:global align:32
+rom_tent_bou = .data:0x00AB4F20; // type:object size:0x20 scope:global align:32
+rom_tent_mono1 = .data:0x00AB4F40; // type:object size:0x800 scope:global align:32
+rom_tent_can = .data:0x00AB5740; // type:object size:0x100 scope:global align:32
+rom_tent_conpas = .data:0x00AB5840; // type:object size:0x80 scope:global align:32
+rom_tent_box = .data:0x00AB58C0; // type:object size:0x400 scope:global align:32
+rom_tent_kage_m = .data:0x00AB5CC0; // type:object size:0x80 scope:global align:32
+rom_tent_gas = .data:0x00AB5D40; // type:object size:0x200 scope:global align:32
+rom_tent_kage_s = .data:0x00AB5F40; // type:object size:0x80 scope:global align:32
+rom_tent_kage_b = .data:0x00AB5FC0; // type:object size:0x100 scope:global align:32
+rom_tent_v = .data:0x00AB60C0; // type:object size:0x15D0 scope:global align:8
+rom_tent_modelT = .data:0x00AB7690; // type:object size:0x8 scope:global align:8
+rom_tent_model = .data:0x00AB7698; // type:object size:0x448 scope:global align:8
+room = .data:0x00AB7AE0; // type:object size:0x20 scope:global align:4
+room_floor = .data:0x00AB7B00; // type:object size:0x400 scope:global align:4
+room_wall = .data:0x00AB7F00; // type:object size:0x800 scope:global align:4
+room_window = .data:0x00AB8700; // type:object size:0x800 scope:global align:4
+room01_v = .data:0x00AB8F00; // type:object size:0x580 scope:global align:8
+room01_grp_room01__edge = .data:0x00AB9480; // type:object size:0x98 scope:global align:8
+room01_grp_room_out01 = .data:0x00AB9518; // type:object size:0x30 scope:global align:8
+room01_grp_room01 = .data:0x00AB9548; // type:object size:0x1D0 scope:global align:8
+room01_model = .data:0x00AB9718; // type:object size:0x50 scope:global align:8
+tool_price_table = .data:0x00AB9768; // type:object size:0xBA scope:global align:4
+rom_train_1_pal = .data:0x00AB9840; // type:object size:0x20 scope:global align:32
+rom_train_2_pal = .data:0x00AB9860; // type:object size:0x20 scope:global align:32
+rom_train_3_pal = .data:0x00AB9880; // type:object size:0x20 scope:local align:32
+rom_train_seat1_tex = .data:0x00AB98A0; // type:object size:0x800 scope:global align:32
+rom_train_seat2_tex = .data:0x00ABA0A0; // type:object size:0x800 scope:global align:32
+rom_train_floor_tex = .data:0x00ABA8A0; // type:object size:0x800 scope:global align:32
+rom_train_wall1_tex = .data:0x00ABB0A0; // type:object size:0x800 scope:global align:32
+rom_train_roof_tex = .data:0x00ABB8A0; // type:object size:0x800 scope:global align:32
+rom_train_wall2_tex = .data:0x00ABC0A0; // type:object size:0x800 scope:global align:32
+rom_train_net_tex = .data:0x00ABC8A0; // type:object size:0x800 scope:global align:32
+rom_train_glass_tex = .data:0x00ABD0A0; // type:object size:0x80 scope:global align:32
+rom_train_light_tex = .data:0x00ABD120; // type:object size:0x200 scope:global align:32
+rom_train_in_v = .data:0x00ABD320; // type:object size:0x20F0 scope:global align:8
+rom_train_in_modelT = .data:0x00ABF410; // type:object size:0xB0 scope:global align:8
+rom_train_in_model = .data:0x00ABF4C0; // type:object size:0x440 scope:global align:8
+mFM_grd_s_tunnel_tex = .data:0x00ABF900; // type:object size:0x800 scope:global align:4
+mFM_grd_s_tunnel_2_tex = .data:0x00AC0100; // type:object size:0x800 scope:global align:32
+mFM_grd_s_tunnel_3_tex = .data:0x00AC0900; // type:object size:0x800 scope:global align:32
+mFM_grd_w_tunnel_2_tex = .data:0x00AC1100; // type:object size:0x800 scope:global align:32
+mFM_grd_w_tunnel_3_tex = .data:0x00AC1900; // type:object size:0x800 scope:global align:32
+rom_uranai_evw_anime_2 = .data:0x00AC2100; // type:object size:0x8 scope:global align:4
+rom_uranai_evw_anime_3 = .data:0x00AC2108; // type:object size:0x8 scope:global align:4
+rom_uranai_evw_anime = .data:0x00AC2110; // type:object size:0x10 scope:global align:4
+rom_uranai_floor_tex_pal = .data:0x00AC2120; // type:object size:0x20 scope:global align:4
+rom_uranai_wall_tex_pal = .data:0x00AC2140; // type:object size:0x20 scope:global align:4
+rom_uranai_table_tex_pal = .data:0x00AC2160; // type:object size:0x20 scope:global align:4
+rom_uranai_tubo_tex_pal = .data:0x00AC2180; // type:object size:0x20 scope:global align:4
+rom_uranai_stand_tex_pal = .data:0x00AC21A0; // type:object size:0x20 scope:global align:4
+rom_uranai_tex_nuno_pal = .data:0x00AC21C0; // type:object size:0x20 scope:global align:4
+rom_uranai_tex_bace_pal = .data:0x00AC21E0; // type:object size:0x20 scope:global align:4
+rom_uranai_card_tex_pal = .data:0x00AC2200; // type:object size:0x20 scope:global align:4
+rom_uranai_floor_tex = .data:0x00AC2220; // type:object size:0x800 scope:global align:4
+rom_uranai_wall01_tex = .data:0x00AC2A20; // type:object size:0x600 scope:global align:4
+rom_uranai_wall02_tex = .data:0x00AC3020; // type:object size:0x400 scope:global align:4
+rom_uranai_wall03_tex = .data:0x00AC3420; // type:object size:0x400 scope:global align:4
+rom_uranai_table01_tex = .data:0x00AC3820; // type:object size:0x80 scope:global align:4
+rom_uranai_table02_tex = .data:0x00AC38A0; // type:object size:0x80 scope:global align:4
+rom_uranai_tubo_tex = .data:0x00AC3920; // type:object size:0x200 scope:global align:4
+rom_uranai_shadow01_tex = .data:0x00AC3B20; // type:object size:0x100 scope:global align:4
+rom_uranai_vell_tex = .data:0x00AC3C20; // type:object size:0x400 scope:global align:4
+rom_uranai_vell02_tex = .data:0x00AC4020; // type:object size:0x400 scope:global align:4
+rom_uranai_stand01_tex = .data:0x00AC4420; // type:object size:0x200 scope:global align:4
+rom_uranai_nuno01_tex = .data:0x00AC4620; // type:object size:0x80 scope:global align:4
+rom_uranai_nuno02_tex = .data:0x00AC46A0; // type:object size:0x80 scope:global align:4
+rom_uranai_bace_tex = .data:0x00AC4720; // type:object size:0x200 scope:global align:4
+rom_uranai_card01_tex = .data:0x00AC4920; // type:object size:0x200 scope:global align:4
+rom_uranai_shadow02_tex = .data:0x00AC4B20; // type:object size:0x100 scope:global align:4
+rom_uranai_card02_tex = .data:0x00AC4C20; // type:object size:0x480 scope:global align:4
+rom_uranai_cris02_tex = .data:0x00AC50A0; // type:object size:0x800 scope:global align:4
+rom_uranai_cris01_tex_rgb_ia8 = .data:0x00AC58A0; // type:object size:0x400 scope:global align:4
+rom_uranai_hi02_tex_rgb_i4 = .data:0x00AC5CA0; // type:object size:0x200 scope:global align:4
+rom_uranai_hi03_tex_rgb_i4 = .data:0x00AC5EA0; // type:object size:0x200 scope:global align:4
+rom_uranai_v = .data:0x00AC60A0; // type:object size:0x14E0 scope:global align:8
+rom_uranai_modelT = .data:0x00AC7580; // type:object size:0x500 scope:global align:8
+rom_uranai_model = .data:0x00AC7A80; // type:object size:0x8E8 scope:global align:8
+wall_listA = .data:0x00AC8368; // type:object size:0x20 scope:global align:4
+wall_listB = .data:0x00AC8388; // type:object size:0x1E scope:global align:4
+wall_listC = .data:0x00AC83A8; // type:object size:0x20 scope:global align:4
+wall_listEvent = .data:0x00AC83C8; // type:object size:0x26 scope:global align:4
+wall_listChristmas = .data:0x00AC83F0; // type:object size:0x4 scope:global align:4
+wall_listSnow = .data:0x00AC83F4; // type:object size:0x4 scope:global align:4
+wall_listHalloween = .data:0x00AC83F8; // type:object size:0x4 scope:global align:4
+wall_listHalloween2 = .data:0x00AC83FC; // type:object size:0x2 scope:global align:4
+wall_listHomePage = .data:0x00AC8400; // type:object size:0x4 scope:global align:4
+wall_listHarvest = .data:0x00AC8404; // type:object size:0x4 scope:global align:4
+mSP_wall_list = .data:0x00AC8408; // type:object size:0x5C scope:global align:4
+wall_price_table = .data:0x00AC8468; // type:object size:0x88 scope:global align:4
+mFM_grd_water1_tex = .data:0x00AC84F0; // type:object size:0x200 scope:global align:4
+mFM_grd_water2_tex = .data:0x00AC86F0; // type:object size:0x200 scope:global align:4
+mFM_grd_wave1_tex = .data:0x00AC88F0; // type:object size:0x400 scope:global align:4
+mFM_grd_wave2_tex = .data:0x00AC8CF0; // type:object size:0x800 scope:global align:4
+mFM_grd_wave3_tex = .data:0x00AC94F0; // type:object size:0x400 scope:global align:4
+int_yaz_b_bath_pal = .data:0x00AC9900; // type:object size:0x20 scope:global align:32
+int_yaz_b_bath_kobu_tex_txt = .data:0x00AC9920; // type:object size:0x100 scope:global align:32
+int_yaz_b_bath_base_tex_txt = .data:0x00AC9A20; // type:object size:0x200 scope:global align:32
+int_yaz_b_bath_sara2_tex_txt = .data:0x00AC9C20; // type:object size:0x200 scope:global align:32
+int_yaz_b_bath_pole_tex_txt = .data:0x00AC9E20; // type:object size:0x100 scope:global align:32
+int_yaz_b_bath_water5_tex_4i4_pic_i4 = .data:0x00AC9F20; // type:object size:0x80 scope:global align:32
+int_yaz_b_bath_v = .data:0x00AC9FA0; // type:object size:0x400 scope:global align:8
+int_yaz_b_bath_water_model = .data:0x00ACA3A0; // type:object size:0x60 scope:global align:8
+int_yaz_b_bath_body_model = .data:0x00ACA400; // type:object size:0x110 scope:global align:8
+int_yaz_b_house_pal = .data:0x00ACA520; // type:object size:0x20 scope:global align:32
+int_yaz_b_house_kabu_tex_txt = .data:0x00ACA540; // type:object size:0x100 scope:global align:32
+int_yaz_b_house_kabe01_tex_txt = .data:0x00ACA640; // type:object size:0x280 scope:global align:32
+int_yaz_b_house_kabe02_tex_txt = .data:0x00ACA8C0; // type:object size:0x280 scope:global align:32
+int_yaz_b_house_ita_tex_txt = .data:0x00ACAB40; // type:object size:0x100 scope:global align:32
+int_yaz_b_house_pole_tex_txt = .data:0x00ACAC40; // type:object size:0x100 scope:global align:32
+int_yaz_b_house_v = .data:0x00ACAD40; // type:object size:0x4F0 scope:global align:8
+int_yaz_b_house_body_model = .data:0x00ACB230; // type:object size:0x158 scope:global align:8
+int_yaz_candle_pal = .data:0x00ACB3A0; // type:object size:0x20 scope:global align:32
+int_yaz_candle_fire1_tex_pic_ci4_pal = .data:0x00ACB3C0; // type:object size:0x20 scope:global align:32
+int_yaz_candle_base_tex_txt = .data:0x00ACB3E0; // type:object size:0x200 scope:global align:32
+int_yaz_candle_base2_tex_txt = .data:0x00ACB5E0; // type:object size:0x80 scope:global align:32
+int_yaz_candle_green_tex_txt = .data:0x00ACB660; // type:object size:0x100 scope:global align:32
+int_yaz_candle_red_tex_txt = .data:0x00ACB760; // type:object size:0x100 scope:global align:32
+int_yaz_candle_black_tex_txt = .data:0x00ACB860; // type:object size:0x100 scope:global align:32
+int_yaz_candle_fire1_tex_txt = .data:0x00ACB960; // type:object size:0x100 scope:global align:32
+int_yaz_candle_fire2_tex_txt = .data:0x00ACBA60; // type:object size:0x100 scope:global align:32
+int_yaz_candle_v = .data:0x00ACBB60; // type:object size:0x640 scope:global align:8
+int_yaz_candle_fire_model = .data:0x00ACC1A0; // type:object size:0x80 scope:global align:8
+int_yaz_candle_body_model = .data:0x00ACC220; // type:object size:0x108 scope:global align:8
+int_yaz_fish_trophy_fish_txt = .data:0x00ACC340; // type:object size:0x100 scope:global align:32
+int_yaz_fish_trophy_grip_txt = .data:0x00ACC440; // type:object size:0x100 scope:global align:32
+int_yaz_fish_trophy_base_txt = .data:0x00ACC540; // type:object size:0x200 scope:global align:32
+int_yaz_fish_trophy_body_txt = .data:0x00ACC740; // type:object size:0x100 scope:global align:32
+int_yaz_fish_trophy_v = .data:0x00ACC840; // type:object size:0x650 scope:global align:8
+int_yaz_fish_trophy_cup_model = .data:0x00ACCE90; // type:object size:0xF8 scope:global align:8
+int_yaz_fish_trophy_base_model = .data:0x00ACCF88; // type:object size:0xB8 scope:global align:8
+int_yaz_mario_flower_a_pal = .data:0x00ACD040; // type:object size:0x20 scope:global align:32
+int_yaz_mario_flower_b_pal = .data:0x00ACD060; // type:object size:0x20 scope:global align:32
+int_yaz_mario_flower_c_pal = .data:0x00ACD080; // type:object size:0x20 scope:global align:32
+int_yaz_mario_flower_d_pal = .data:0x00ACD0A0; // type:object size:0x20 scope:global align:32
+int_yaz_mario_flower_hana_a_tex_txt = .data:0x00ACD0C0; // type:object size:0x200 scope:global align:32
+int_yaz_mario_flower_ha_tex_txt = .data:0x00ACD2C0; // type:object size:0x300 scope:global align:32
+int_yaz_mario_flower_v = .data:0x00ACD5C0; // type:object size:0x1F0 scope:global align:8
+int_yaz_mario_flower_hana_model = .data:0x00ACD7B0; // type:object size:0x68 scope:global align:8
+int_yaz_mario_flower_body_model = .data:0x00ACD818; // type:object size:0x98 scope:global align:8
+int_yaz_rocket_pal = .data:0x00ACD8C0; // type:object size:0x20 scope:global align:32
+int_yaz_rocket_body_tex_txt = .data:0x00ACD8E0; // type:object size:0x400 scope:global align:32
+int_yaz_rocket_himo_tex_txt = .data:0x00ACDCE0; // type:object size:0x400 scope:global align:32
+int_yaz_rocket_v = .data:0x00ACE0E0; // type:object size:0x300 scope:global align:8
+int_yaz_rocket_himo_model = .data:0x00ACE3E0; // type:object size:0x58 scope:global align:8
+int_yaz_rocket_body_model = .data:0x00ACE438; // type:object size:0xA0 scope:global align:8
+int_yaz_telescope_pal = .data:0x00ACE4E0; // type:object size:0x20 scope:global align:32
+int_yaz_telescope_body_tex_txt = .data:0x00ACE500; // type:object size:0x280 scope:global align:32
+int_yaz_telescope_tutu_tex_txt = .data:0x00ACE780; // type:object size:0x80 scope:global align:32
+int_yaz_telescope_lens_tex_txt = .data:0x00ACE800; // type:object size:0x200 scope:global align:32
+int_yaz_telescope_maru_tex_txt = .data:0x00ACEA00; // type:object size:0x80 scope:global align:32
+int_yaz_telescope_ashi_tex_txt = .data:0x00ACEA80; // type:object size:0x180 scope:global align:32
+int_yaz_telescope_tome_tex_txt = .data:0x00ACEC00; // type:object size:0x100 scope:global align:32
+int_yaz_telescope_v = .data:0x00ACED00; // type:object size:0x3A0 scope:global align:8
+int_yaz_telescope_body_model = .data:0x00ACF0A0; // type:object size:0x140 scope:global align:8
+int_yaz_tub_pal = .data:0x00ACF1E0; // type:object size:0x20 scope:global align:32
+int_yaz_tub_wood2_txt = .data:0x00ACF200; // type:object size:0x200 scope:global align:32
+int_yaz_tub_wood_txt = .data:0x00ACF400; // type:object size:0x400 scope:global align:32
+int_yaz_tub_water_4i4_pic_i4 = .data:0x00ACF800; // type:object size:0x100 scope:global align:32
+int_yaz_tub_v = .data:0x00ACF900; // type:object size:0x580 scope:global align:8
+int_yaz_tub_water_model = .data:0x00ACFE80; // type:object size:0x58 scope:global align:8
+int_yaz_tub_body_model = .data:0x00ACFED8; // type:object size:0xC8 scope:global align:8
+int_yaz_turkey_chair_pal = .data:0x00ACFFA0; // type:object size:0x20 scope:global align:32
+int_yaz_turkey_chair_side_tex_txt = .data:0x00ACFFC0; // type:object size:0x200 scope:global align:32
+int_yaz_turkey_chair_seet_tex_txt = .data:0x00AD01C0; // type:object size:0x200 scope:global align:32
+int_yaz_turkey_chair_hane_asi_tex_txt = .data:0x00AD03C0; // type:object size:0x400 scope:global align:32
+int_yaz_turkey_chair_v = .data:0x00AD07C0; // type:object size:0x5A0 scope:global align:8
+int_yaz_turkey_chair_body_model = .data:0x00AD0D60; // type:object size:0x100 scope:global align:8
+int_yaz_turkey_chest_pal = .data:0x00AD0E60; // type:object size:0x20 scope:global align:32
+int_yaz_turkey_chest_drwr_tex_txt = .data:0x00AD0E80; // type:object size:0x100 scope:global align:32 data:string
+int_yaz_turkey_chest_drwr_frnt_tex_txt = .data:0x00AD0F80; // type:object size:0x100 scope:global align:32
+int_yaz_turkey_chest_knob_tex_txt = .data:0x00AD1080; // type:object size:0x80 scope:global align:32
+int_yaz_turkey_chest_asi_tex_txt = .data:0x00AD1100; // type:object size:0x40 scope:global align:32
+int_yaz_turkey_chest_back_tex_txt = .data:0x00AD1140; // type:object size:0x200 scope:global align:32
+int_yaz_turkey_chest_side_tex_txt = .data:0x00AD1340; // type:object size:0x100 scope:global align:32
+int_yaz_turkey_chest_frnt_tex_txt = .data:0x00AD1440; // type:object size:0x200 scope:global align:32
+int_yaz_turkey_chest_v = .data:0x00AD1640; // type:object size:0x580 scope:global align:8
+int_yaz_turkey_chest_door_model = .data:0x00AD1BC0; // type:object size:0xD0 scope:global align:8
+int_yaz_turkey_chest_body_model = .data:0x00AD1C90; // type:object size:0x120 scope:global align:8
+cKF_ckcb_r_int_yaz_turkey_chest_tbl = .data:0x00AD1DB0; // type:object size:0x3 scope:global align:4
+cKF_kn_int_yaz_turkey_chest_tbl = .data:0x00AD1DB4; // type:object size:0x12 scope:global align:4
+cKF_c_int_yaz_turkey_chest_tbl = .data:0x00AD1DC8; // type:object size:0x6 scope:global align:4
+cKF_ds_int_yaz_turkey_chest_tbl = .data:0x00AD1DD0; // type:object size:0x6C scope:global align:4
+cKF_ba_r_int_yaz_turkey_chest = .data:0x00AD1E3C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_yaz_turkey_chest_tbl = .data:0x00AD1E50; // type:object size:0x24 scope:global align:4
+cKF_bs_r_int_yaz_turkey_chest = .data:0x00AD1E74; // type:object size:0x8 scope:global align:4
+int_yaz_turkey_closet_pal = .data:0x00AD1E80; // type:object size:0x20 scope:global align:32
+int_yaz_turkey_closet_door_tex_txt = .data:0x00AD1EA0; // type:object size:0x100 scope:global align:32
+int_yaz_turkey_closet_knob_tex_txt = .data:0x00AD1FA0; // type:object size:0x80 scope:global align:32
+int_yaz_turkey_closet_back_tex_txt = .data:0x00AD2020; // type:object size:0x100 scope:global align:32
+int_yaz_turkey_closet_side2_tex_txt = .data:0x00AD2120; // type:object size:0x100 scope:global align:32
+int_yaz_turkey_closet_asi_tex_txt = .data:0x00AD2220; // type:object size:0x40 scope:global align:32
+int_yaz_turkey_closet_frnt_tex_txt = .data:0x00AD2260; // type:object size:0x400 scope:global align:32
+int_yaz_turkey_closet_v = .data:0x00AD2660; // type:object size:0x4E0 scope:global align:8
+int_yaz_turkey_closet_doorL_model = .data:0x00AD2B40; // type:object size:0x78 scope:global align:8
+int_yaz_turkey_closet_body_model = .data:0x00AD2BB8; // type:object size:0x140 scope:global align:8
+int_yaz_turkey_closet_doorR_model = .data:0x00AD2CF8; // type:object size:0x78 scope:global align:8
+cKF_ckcb_r_int_yaz_turkey_closet_tbl = .data:0x00AD2D70; // type:object size:0x5 scope:global align:4
+cKF_kn_int_yaz_turkey_closet_tbl = .data:0x00AD2D78; // type:object size:0x18 scope:global align:4
+cKF_c_int_yaz_turkey_closet_tbl = .data:0x00AD2D90; // type:object size:0xC scope:global align:4
+cKF_ds_int_yaz_turkey_closet_tbl = .data:0x00AD2D9C; // type:object size:0x9C scope:global align:4
+cKF_ba_r_int_yaz_turkey_closet = .data:0x00AD2E38; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_yaz_turkey_closet_tbl = .data:0x00AD2E4C; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_yaz_turkey_closet = .data:0x00AD2E88; // type:object size:0x8 scope:global align:4
+int_yaz_wagon_pal = .data:0x00AD2EA0; // type:object size:0x20 scope:global align:32
+int_yaz_wagon_wood_tex_txt = .data:0x00AD2EC0; // type:object size:0x200 scope:global align:32
+int_yaz_wagon_jiku_tex_txt = .data:0x00AD30C0; // type:object size:0x20 scope:global align:32
+int_yaz_wagon_horo2_tex_txt = .data:0x00AD30E0; // type:object size:0x120 scope:global align:32
+int_yaz_wagon_horo_tex_txt = .data:0x00AD3200; // type:object size:0x300 scope:global align:32
+int_yaz_wagon_wheel_tex_txt = .data:0x00AD3500; // type:object size:0x200 scope:global align:32
+int_yaz_wagon_v = .data:0x00AD3700; // type:object size:0x5D0 scope:global align:8
+int_wagon_body_model = .data:0x00AD3CD0; // type:object size:0x140 scope:global align:8
+int_yaz_b_feeder_pal = .data:0x00AD3E20; // type:object size:0x20 scope:global align:32
+int_yaz_b_feeder_pole_tex_txt = .data:0x00AD3E40; // type:object size:0x1C0 scope:global align:32
+int_yaz_b_feeder_ana_tex_txt = .data:0x00AD4000; // type:object size:0x180 scope:global align:32
+int_yaz_b_feeder_ura_tex_txt = .data:0x00AD4180; // type:object size:0x180 scope:global align:32
+int_yaz_b_feeder_wood_tex_txt = .data:0x00AD4300; // type:object size:0x80 scope:global align:32
+int_yaz_b_feeder_yane_tex_txt = .data:0x00AD4380; // type:object size:0x80 scope:global align:32
+int_yaz_b_feeder_wa_tex_txt = .data:0x00AD4400; // type:object size:0x200 scope:global align:32
+int_yos_b_feeder_v = .data:0x00AD4600; // type:object size:0x410 scope:global align:8
+int_yaz_b_feeder_body_model = .data:0x00AD4A10; // type:object size:0x178 scope:global align:8
+int_yos_cactus_pal = .data:0x00AD4BA0; // type:object size:0x20 scope:global align:32
+int_yos_cactus_bou_tex_txt = .data:0x00AD4BC0; // type:object size:0x400 scope:global align:32
+int_yos_cactus_v = .data:0x00AD4FC0; // type:object size:0x380 scope:global align:8
+int_yos_cactus_obj_model = .data:0x00AD5340; // type:object size:0xB0 scope:global align:8
+int_yos_flamingo_pal = .data:0x00AD5400; // type:object size:0x20 scope:global align:32
+int_yos_flamingo_kao_tex_txt = .data:0x00AD5420; // type:object size:0x400 scope:global align:32
+int_yos_flamingo_dou_tex_txt = .data:0x00AD5820; // type:object size:0x400 scope:global align:32
+int_yos_flamingo_v = .data:0x00AD5C20; // type:object size:0x450 scope:global align:8
+int_yos_flamingo_body_model = .data:0x00AD6070; // type:object size:0x110 scope:global align:8
+int_yos_flamingo2_pal = .data:0x00AD6180; // type:object size:0x20 scope:global align:32
+int_yos_flamingo2_kao_tex_txt = .data:0x00AD61A0; // type:object size:0x400 scope:global align:32
+int_yos_flamingo2_dou_tex_txt = .data:0x00AD65A0; // type:object size:0x400 scope:global align:32
+int_yos_flamingo2_v = .data:0x00AD69A0; // type:object size:0x450 scope:global align:8
+int_yos_flamingo2_body_model = .data:0x00AD6DF0; // type:object size:0x110 scope:global align:8
+int_yos_gnome_pal = .data:0x00AD6F00; // type:object size:0x20 scope:global align:32
+int_yos_gnome_all_tex_txt = .data:0x00AD6F20; // type:object size:0x800 scope:global align:32
+int_yos_gnome_v = .data:0x00AD7720; // type:object size:0x480 scope:global align:8
+int_yos_gnome_body_model = .data:0x00AD7BA0; // type:object size:0x150 scope:global align:8
+int_yos_kflag_pat = .data:0x00AD7D00; // type:object size:0x20 scope:global align:32
+int_yos_kflag_pole_tex_txt = .data:0x00AD7D20; // type:object size:0x80 scope:global align:32
+int_yos_kflag_flag_tex_txt = .data:0x00AD7DA0; // type:object size:0x180 scope:global align:32
+int_yos_kflag_v = .data:0x00AD7F20; // type:object size:0x450 scope:global align:8
+int_yos_kflag_obj_model = .data:0x00AD8370; // type:object size:0xD0 scope:global align:8
+int_yos_luigi_pal = .data:0x00AD8440; // type:object size:0x20 scope:global align:32
+int_yos_luigi_dai_tex_txt = .data:0x00AD8460; // type:object size:0x40 scope:global align:32
+int_yos_luigi_zubon_tex_txt = .data:0x00AD84A0; // type:object size:0x200 scope:global align:32
+int_yos_luigi_kao_tex_txt = .data:0x00AD86A0; // type:object size:0x200 scope:global align:32
+int_yos_luigi_hana_tex_txt = .data:0x00AD88A0; // type:object size:0x20 scope:global align:32
+int_yos_luigi_mimi_tex_txt = .data:0x00AD88C0; // type:object size:0x80 scope:global align:32
+int_yos_luigi_boushimae_tex_txt = .data:0x00AD8940; // type:object size:0x100 scope:global align:32
+int_yos_luigi_boushiushiro_tex_txt = .data:0x00AD8A40; // type:object size:0x80 scope:global align:32
+int_yos_luigi_tuba_tex_txt = .data:0x00AD8AC0; // type:object size:0x80 scope:global align:32
+int_yos_luigi_ude_tex_txt = .data:0x00AD8B40; // type:object size:0x80 scope:global align:32
+int_yos_luigi_te_tex_txt = .data:0x00AD8BC0; // type:object size:0x80 scope:global align:32
+int_yos_luigi_kutu_tex_txt = .data:0x00AD8C40; // type:object size:0x80 scope:global align:32
+int_yos_luigi_fuda_tex_txt = .data:0x00AD8CC0; // type:object size:0x20 scope:global align:32
+int_yos_luigi_v = .data:0x00AD8CE0; // type:object size:0x590 scope:global align:8
+int_yos_luigi_body_model = .data:0x00AD9270; // type:object size:0x200 scope:global align:8
+int_yos_mailbox_pal = .data:0x00AD9480; // type:object size:0x20 scope:global align:32
+int_yos_mailbox_mae_tex_txt = .data:0x00AD94A0; // type:object size:0x300 scope:global align:32
+int_yos_mailbox_ana_tex_txt = .data:0x00AD97A0; // type:object size:0x100 scope:global align:32
+int_yos_mailbox_sokumen_tex_txt = .data:0x00AD98A0; // type:object size:0x300 scope:global align:32
+int_yos_mailbox_rabel_tex_txt = .data:0x00AD9BA0; // type:object size:0x100 scope:global align:32
+int_yos_mailbox_v = .data:0x00AD9CA0; // type:object size:0x340 scope:global align:8
+int_yos_mailbox_body_model = .data:0x00AD9FE0; // type:object size:0xF8 scope:global align:8
+int_yos_mario_pal = .data:0x00ADA0E0; // type:object size:0x20 scope:global align:32
+int_yos_mario_dai_tex_txt = .data:0x00ADA100; // type:object size:0x40 scope:global align:32
+int_yos_mario_zubon_tex_txt = .data:0x00ADA140; // type:object size:0x200 scope:global align:32
+int_yos_mario_kao_tex_txt = .data:0x00ADA340; // type:object size:0x200 scope:global align:32
+int_yos_mario_hana_tex_txt = .data:0x00ADA540; // type:object size:0x20 scope:global align:32
+int_yos_mario_mimi_tex_txt = .data:0x00ADA560; // type:object size:0x80 scope:global align:32
+int_yos_mario_boushimae_tex_txt = .data:0x00ADA5E0; // type:object size:0x80 scope:global align:32
+int_yos_mario_boushiushiro_tex_txt = .data:0x00ADA660; // type:object size:0x80 scope:global align:32
+int_yos_mario_tuba_tex_txt = .data:0x00ADA6E0; // type:object size:0x80 scope:global align:32
+int_yos_mario_ude_tex_txt = .data:0x00ADA760; // type:object size:0x80 scope:global align:32
+int_yos_mario_te_tex_txt = .data:0x00ADA7E0; // type:object size:0x80 scope:global align:32
+int_yos_mario_kutu_tex_txt = .data:0x00ADA860; // type:object size:0x80 scope:global align:32
+int_yos_mario_fuda_tex_txt = .data:0x00ADA8E0; // type:object size:0x20 scope:global align:32
+int_yos_mario_v = .data:0x00ADA900; // type:object size:0x590 scope:global align:8
+int_yos_mario_body_model = .data:0x00ADAE90; // type:object size:0x208 scope:global align:8
+int_yos_pbstove_pal = .data:0x00ADB0A0; // type:object size:0x20 scope:global align:32
+int_yos_pbstove_conpane_asi_tex_txt = .data:0x00ADB0C0; // type:object size:0x200 scope:global align:32
+int_yos_pbstove_sima_tex_txt = .data:0x00ADB2C0; // type:object size:0x180 scope:global align:32
+int_yos_pbstove_mado_tex_txt = .data:0x00ADB440; // type:object size:0x200 scope:global align:32
+int_yos_pbstove_lever_tex_txt = .data:0x00ADB640; // type:object size:0x80 scope:global align:32
+int_yos_pbstove_huta_tex_txt = .data:0x00ADB6C0; // type:object size:0x200 scope:global align:32
+int_yos_pbstove_v = .data:0x00ADB8C0; // type:object size:0x5E0 scope:global align:8
+int_yos_pbstove_body_model = .data:0x00ADBEA0; // type:object size:0x198 scope:global align:8
+int_yos_terrace_pal = .data:0x00ADC040; // type:object size:0x20 scope:global align:32
+int_yos_terrace_yuka_tex_txt = .data:0x00ADC060; // type:object size:0x200 scope:global align:32
+int_yos_terrace_yane_tex_txt = .data:0x00ADC260; // type:object size:0x200 scope:global align:32
+int_yos_terrace_yuka_yoko_tex_txt = .data:0x00ADC460; // type:object size:0x40 scope:global align:32
+int_yos_terrace_kabe_tex_txt = .data:0x00ADC4A0; // type:object size:0x200 scope:global align:32
+int_yos_terrace_enshita_tex_txt = .data:0x00ADC6A0; // type:object size:0x40 scope:global align:32
+int_yos_terrace_v = .data:0x00ADC6E0; // type:object size:0x700 scope:global align:8
+int_yos_terrace_obj_model = .data:0x00ADCDE0; // type:object size:0x198 scope:global align:8
+int_yos_turkey_mirror_pal = .data:0x00ADCF80; // type:object size:0x20 scope:global align:32
+int_yos_turkey_mirror_env_tex_rgb_ci4_pal = .data:0x00ADCFA0; // type:object size:0x20 scope:global align:32
+int_yos_turkey_mirror_yoko_tex_txt = .data:0x00ADCFC0; // type:object size:0x100 scope:global align:32
+int_yos_turkey_mirror_dai_tex_txt = .data:0x00ADD0C0; // type:object size:0x200 scope:global align:32
+int_yos_turkey_mirror_asi_tex_txt = .data:0x00ADD2C0; // type:object size:0x80 scope:global align:32
+int_yos_turkey_mirror_ue_tex_txt = .data:0x00ADD340; // type:object size:0x100 scope:global align:32
+int_yos_turkey_mirror_waku_tex_txt = .data:0x00ADD440; // type:object size:0x400 scope:global align:32
+int_yos_turkey_mirror_yubi_tex_txt = .data:0x00ADD840; // type:object size:0x80 scope:global align:32
+int_yos_turkey_mirror_env_tex_txt = .data:0x00ADD8C0; // type:object size:0x80 scope:global align:32
+int_yos_turkey_mirror_v = .data:0x00ADD940; // type:object size:0x440 scope:global align:8
+int_yos_turkey_mirror_obj_model = .data:0x00ADDD80; // type:object size:0x178 scope:global align:8
+int_yos_turkey_mirror_env_model = .data:0x00ADDEF8; // type:object size:0x60 scope:global align:8
+int_yos_turkey_clk_pal = .data:0x00ADDF60; // type:object size:0x20 scope:global align:32
+int_yos_turkey_clk_hari_tex_txt = .data:0x00ADDF80; // type:object size:0x100 scope:global align:32
+int_yos_turkey_clk_ashi_tex_txt = .data:0x00ADE080; // type:object size:0x80 scope:global align:32
+int_yos_turkey_clk_yubi_tex_txt = .data:0x00ADE100; // type:object size:0x80 scope:global align:32
+int_yos_turkey_clk_sukart_tex_txt = .data:0x00ADE180; // type:object size:0x100 scope:global align:32
+int_yos_turkey_clk_mae_tex_txt = .data:0x00ADE280; // type:object size:0x400 scope:global align:32
+int_yos_turkey_clk_ato_tex_txt = .data:0x00ADE680; // type:object size:0x20 scope:global align:32
+int_yos_turkey_watch_v = .data:0x00ADE6A0; // type:object size:0x2E0 scope:global align:8
+int_yos_turkey_clk_long_model = .data:0x00ADE980; // type:object size:0x58 scope:global align:8
+int_yos_turkey_clk_obj_model = .data:0x00ADE9D8; // type:object size:0x100 scope:global align:8
+int_yos_turkey_clk_short_model = .data:0x00ADEAD8; // type:object size:0x58 scope:global align:8
+cKF_ckcb_r_int_yos_turkey_watch_tbl = .data:0x00ADEB30; // type:object size:0x5 scope:global align:4
+cKF_c_int_yos_turkey_watch_tbl = .data:0x00ADEB38; // type:object size:0x24 scope:global align:4
+cKF_ba_r_int_yos_turkey_watch = .data:0x00ADEB5C; // type:object size:0x14 scope:global align:4
+cKF_je_r_int_yos_turkey_watch_tbl = .data:0x00ADEB70; // type:object size:0x3C scope:global align:4
+cKF_bs_r_int_yos_turkey_watch = .data:0x00ADEBAC; // type:object size:0x8 scope:global align:4
+int_yos_wheel_pal = .data:0x00ADEBC0; // type:object size:0x20 scope:global align:32
+int_yos_wheel_nakatyu_tex_txt = .data:0x00ADEBE0; // type:object size:0x100 scope:global align:32
+int_yos_wheel_tyu_tex_txt = .data:0x00ADECE0; // type:object size:0x80 scope:global align:32
+int_yos_wheel_bo_tex_txt = .data:0x00ADED60; // type:object size:0x100 scope:global align:32
+int_yos_wheel_sotowa_tex_txt = .data:0x00ADEE60; // type:object size:0x200 scope:global align:32
+int_yos_wheel_v = .data:0x00ADF060; // type:object size:0x380 scope:global align:8
+int_yos_wheel_obj_model = .data:0x00ADF3E0; // type:object size:0x118 scope:global align:8
+construct_skip = .bss:0x00000000; // type:object size:0x4 scope:global align:4
+...bss.0 = .bss:0x00000008; // type:label scope:local
+l_fossil_num_debug = .bss:0x00000008; // type:object size:0x4 scope:global align:4 data:byte
+l_haniwa_num_debug = .bss:0x0000000C; // type:object size:0x4 scope:global align:4
+l_fossil_block = .bss:0x00000010; // type:object size:0xA scope:global align:4
+l_haniwa_block = .bss:0x0000001C; // type:object size:0x6 scope:global align:4
+work_view_matrix$1014 = .bss:0x00000028; // type:object size:0x40 scope:local align:8
+actor_dlftbls_num = .bss:0x00000068; // type:object size:0x4 scope:global align:4 data:4byte
+banti = .bss:0x00000070; // type:object size:0x44C scope:global align:4 data:byte
+sprashC_tex_dummy = .bss:0x000004C0; // type:object size:0x200 scope:global align:32
+sprashA_tex_dummy = .bss:0x000006C0; // type:object size:0x200 scope:global align:32
+wave3_tex_dummy = .bss:0x000008C0; // type:object size:0x400 scope:global align:32
+wave2_tex_dummy = .bss:0x00000CC0; // type:object size:0x800 scope:global align:32
+wave1_tex_dummy = .bss:0x000014C0; // type:object size:0x400 scope:global align:32
+sand_tex_dummy = .bss:0x000018C0; // type:object size:0x400 scope:global align:32
+beach_pal_dummy2 = .bss:0x00001CC0; // type:object size:0x20 scope:global align:32
+beach2_tex_dummy2 = .bss:0x00001CE0; // type:object size:0x100 scope:global align:32
+beach1_tex_dummy2 = .bss:0x00001DE0; // type:object size:0x400 scope:global align:32
+beach_tex_dummy = .bss:0x000021E0; // type:object size:0x800 scope:global align:32
+tunnel_tex_dummy = .bss:0x000029E0; // type:object size:0x800 scope:global align:32
+rail_pal_dummy = .bss:0x000031E0; // type:object size:0x20 scope:global align:32
+bush_pal_dummy = .bss:0x00003200; // type:object size:0x20 scope:global align:32
+cliff_pal_dummy = .bss:0x00003220; // type:object size:0x20 scope:global align:32
+earth_pal_dummy = .bss:0x00003240; // type:object size:0x20 scope:global align:32
+station_pal_dummy = .bss:0x00003260; // type:object size:0x20 scope:global align:32
+bridge_2_pal_dummy = .bss:0x00003280; // type:object size:0x20 scope:global align:32
+bridge_1_pal_dummy = .bss:0x000032A0; // type:object size:0x20 scope:global align:32
+tekkyo_tex_dummy = .bss:0x000032C0; // type:object size:0x800 scope:global align:32
+bridge_2_tex_dummy = .bss:0x00003AC0; // type:object size:0x800 scope:global align:32
+bridge_1_tex_dummy = .bss:0x000042C0; // type:object size:0x800 scope:global align:32
+water_2_tex_dummy = .bss:0x00004AC0; // type:object size:0x200 scope:global align:32
+water_1_tex_dummy = .bss:0x00004CC0; // type:object size:0x200 scope:global align:32
+river_tex_dummy = .bss:0x00004EC0; // type:object size:0x400 scope:global align:32
+stone_tex_dummy = .bss:0x000052C0; // type:object size:0x800 scope:global align:32
+station_tex_dummy = .bss:0x00005AC0; // type:object size:0x800 scope:global align:32
+rail_tex_dummy = .bss:0x000062C0; // type:object size:0x800 scope:global align:32
+grass_tex_dummy = .bss:0x00006AC0; // type:object size:0x200 scope:global align:32
+bush_b_tex_dummy = .bss:0x00006CC0; // type:object size:0x400 scope:global align:32
+bush_a_tex_dummy = .bss:0x000070C0; // type:object size:0x800 scope:global align:32
+cliff_tex_dummy = .bss:0x000078C0; // type:object size:0x800 scope:global align:32
+earth_tex_dummy = .bss:0x000080C0; // type:object size:0x800 scope:global align:32
+mBI_make_proc = .bss:0x000088C0; // type:object size:0x4 scope:global align:4 data:4byte
+M_bgm = .bss:0x000088C8; // type:object size:0x308 scope:global align:4 data:4byte
+signal_melody_buf$684 = .bss:0x00008BD0; // type:object size:0x10 scope:local align:4
+Choice_table_rom_start = .bss:0x00008BE0; // type:object size:0x4 scope:global align:4 data:4byte
+Choice_rom_start = .bss:0x00008BE4; // type:object size:0x4 scope:global align:4 data:4byte
+buff$729 = .bss:0x00008C00; // type:object size:0x50 scope:local align:32
+...bss.0 = .bss:0x00008C50; // type:label scope:local
+vec1$720 = .bss:0x00008C50; // type:object size:0xC scope:local align:4 data:4byte
+vec2$721 = .bss:0x00008C5C; // type:object size:0xC scope:local align:4
+l_ActorInf = .bss:0x00008C68; // type:object size:0x70 scope:global align:4 data:float
+l_VecInf = .bss:0x00008CD8; // type:object size:0x1C18 scope:global align:4 data:4byte
+l_mBgMgr = .bss:0x0000A8F0; // type:object size:0x104 scope:global align:4 data:4byte
+l_mCoBG_boat_move_bg_data = .bss:0x0000A9F4; // type:object size:0x60 scope:global align:4 data:4byte
+mCoBG_regist_decal_circle_count = .bss:0x0000AA54; // type:object size:0x4 scope:global align:4 data:4byte
+mCoBG_regist_circle_info = .bss:0x0000AA58; // type:object size:0x60 scope:global align:4
+mCoBG_decal_circle = .bss:0x0000AAB8; // type:object size:0x60 scope:global align:4
+reverse0$2234 = .bss:0x0000AB18; // type:object size:0xC scope:local align:4 data:4byte
+pre_work = .bss:0x0000AB24; // type:object size:0x104 scope:global align:4
+bk_work = .bss:0x0000AC28; // type:object size:0x104 scope:global align:4
+dist_table$2673 = .bss:0x0000AD2C; // type:object size:0x200 scope:local align:4
+merge_dist_table$2674 = .bss:0x0000AF2C; // type:object size:0x200 scope:local align:4
+l_crtutInf = .bss:0x0000B12C; // type:object size:0x960 scope:global align:4
+ground_angle0$3053 = .bss:0x0000BA8C; // type:object size:0x6 scope:local align:4 data:2byte
+mCoBG_block_bgcheck_mode = .bss:0x0000BA94; // type:object size:0x4 scope:global align:4 data:4byte
+mCoBG_wave_cos = .bss:0x0000BA98; // type:object size:0x4 scope:global align:4 data:float
+Virtual_Actor = .bss:0x0000BA9C; // type:object size:0x174 scope:global align:4 data:2byte
+mco_work = .bss:0x0000BC10; // type:object size:0x2C scope:global align:4 data:4byte
+common_data = .bss:0x0000BC40; // type:object size:0x2DC00 scope:global align:32 data:4byte
+debug_mode = .bss:0x00039840; // type:object size:0x4 scope:global align:4 data:4byte
+debug_display = .bss:0x00039848; // type:object size:0x4 scope:global align:4 data:4byte
+...bss.0 = .bss:0x00039850; // type:label scope:local
+debug_print_flg = .bss:0x00039850; // type:object size:0x4 scope:global align:4 data:4byte
+debug_print2_count = .bss:0x00039854; // type:object size:0x2 scope:global align:2 data:2byte
+debug_print2_buffer = .bss:0x00039858; // type:object size:0xDC0 scope:global align:4 data:byte
+console_scroll$456 = .bss:0x0003A618; // type:object size:0x4 scope:local align:4 data:float
+console_offset_x$457 = .bss:0x0003A61C; // type:object size:0x4 scope:local align:4 data:float
+draw_status = .bss:0x0003A620; // type:object size:0x4 scope:local align:4
+bg_draw_status = .bss:0x0003A624; // type:object size:0x4 scope:global align:4
+bg_draw_status2 = .bss:0x0003A628; // type:object size:0x4 scope:global align:4
+quest_draw_status = .bss:0x0003A62C; // type:object size:0x4 scope:global align:4
+shop_draw_status = .bss:0x0003A630; // type:object size:0x4 scope:global align:4
+event_status = .bss:0x0003A634; // type:object size:0x4 scope:global align:4
+zelda_malloc_status = .bss:0x0003A638; // type:object size:0x4 scope:global align:4
+famicom_status = .bss:0x0003A63C; // type:object size:0x4 scope:global align:4
+npc_draw_status = .bss:0x0003A640; // type:object size:0x4 scope:global align:4
+field_assessment_status = .bss:0x0003A644; // type:object size:0x4 scope:global align:4
+glist_used_bytes$759 = .bss:0x0003A648; // type:object size:0x4 scope:local align:4
+font_scale_select$471 = .bss:0x0003A64C; // type:object size:0x4 scope:local align:4
+console_position_y$455 = .bss:0x0003A650; // type:object size:0x4 scope:local align:4
+console_position_x$454 = .bss:0x0003A654; // type:object size:0x4 scope:local align:4
+demo_data = .bss:0x0003A658; // type:object size:0x338 scope:global align:4
+crcTable = .bss:0x0003A990; // type:object size:0x400 scope:global align:4
+...bss.0 = .bss:0x0003AD90; // type:label scope:local
+n_today_events = .bss:0x0003AD90; // type:object size:0x4 scope:global align:4 data:4byte
+status_edge = .bss:0x0003AD94; // type:object size:0x4 scope:global align:4 data:4byte
+funeral = .bss:0x0003AD98; // type:object size:0x4 scope:global align:4 data:4byte
+dead = .bss:0x0003AD9C; // type:object size:0x4 scope:global align:4 data:4byte
+weekday1st_year = .bss:0x0003ADA0; // type:object size:0x2 scope:global align:2 data:2byte
+weekday1st = .bss:0x0003ADA4; // type:object size:0x10 scope:global align:4
+event_today = .bss:0x0003ADB4; // type:object size:0x100 scope:global align:4 data:4byte
+index_today = .bss:0x0003AEB4; // type:object size:0x77 scope:global align:4 data:byte
+n_rumor = .bss:0x0003AF2C; // type:object size:0x4 scope:global align:4 data:4byte
+rumor_table = .bss:0x0003AF30; // type:object size:0xA0 scope:global align:4
+l_good_block_num = .bss:0x0003AFD0; // type:object size:0x4 scope:global align:4 data:4byte
+l_field_assessment_rank = .bss:0x0003AFD4; // type:object size:0x4 scope:global align:4 data:4byte
+...bss.0 = .bss:0x0003AFE0; // type:label scope:local
+l_bg_disp_num = .bss:0x0003AFE0; // type:object size:0x4 scope:global align:4 data:4byte
+l_bg_disp_size = .bss:0x0003AFE4; // type:object size:0x4 scope:global align:4 data:4byte
+mFM_pal_area = .bss:0x0003B000; // type:object size:0x160 scope:global align:32
+g_fdinfo = .bss:0x0003B160; // type:object size:0x4 scope:global align:4 data:4byte
+l_block_kind = .bss:0x0003B164; // type:object size:0x118 scope:global align:4
+l_block_type = .bss:0x0003B27C; // type:object size:0x46 scope:global align:4
+...bss.0 = .bss:0x0003B2C8; // type:label scope:local
+l_register_bg_info = .bss:0x0003B2C8; // type:object size:0x40 scope:global align:4 data:4byte
+l_barea = .bss:0x0003B308; // type:object size:0x20 scope:global align:4 data:float
+l_mfi_player_bk_kind = .bss:0x0003B328; // type:object size:0x4 scope:global align:4 data:4byte
+l_aclist$1875 = .bss:0x0003B32C; // type:object size:0x80 scope:local align:4
+l_player_wade = .bss:0x0003B3AC; // type:object size:0x4 scope:global align:4 data:4byte
+l_set_fg_table = .bss:0x0003B3B0; // type:object size:0x12 scope:global align:4 data:2byte
+candidate$2578 = .bss:0x0003B3C4; // type:object size:0x20 scope:local align:4 data:2byte
+l_reserve_set_shell = .bss:0x0003B3E4; // type:object size:0x4 scope:global align:4 data:4byte
+can_set_ut_num$2829 = .bss:0x0003B3E8; // type:object size:0x7 scope:local align:4
+shell_num_inblock$2830 = .bss:0x0003B3F0; // type:object size:0x7 scope:local align:4
+on_shell_num$2831 = .bss:0x0003B3F8; // type:object size:0x7 scope:local align:4
+set_flag$2847 = .bss:0x0003B400; // type:object size:0x4 scope:local align:4 data:4byte
+mFI_now_bg_num = .bss:0x0003B404; // type:object size:0x4 scope:global align:4 data:4byte
+l_mFI_climate = .bss:0x0003B408; // type:object size:0x4 scope:global align:4 data:4byte
+ymd$568 = .bss:0x0003B410; // type:object size:0x4 scope:local align:4 data:byte
+l_mfrm_msg_idx = .bss:0x0003B418; // type:object size:0x4 scope:global align:4 data:4byte
+l_mfrm_now_color = .bss:0x0003B41C; // type:object size:0x4 scope:global align:4 data:4byte
+l_mfrm_err_info = .bss:0x0003B420; // type:object size:0x50 scope:global align:4 data:4byte
+mtx_projection$707 = .bss:0x0003B470; // type:object size:0x40 scope:local align:8
+fuusen_DEBUG_mode_flag = .bss:0x0003B4B0; // type:object size:0x4 scope:global align:4 data:4byte
+...bss.0 = .bss:0x0003B4C0; // type:label scope:local
+Ps_table_rom_start = .bss:0x0003B4C0; // type:object size:0x4 scope:global align:4 data:4byte
+Ps_rom_start = .bss:0x0003B4C4; // type:object size:0x4 scope:global align:4 data:4byte
+Handbill_table_rom_start = .bss:0x0003B4C8; // type:object size:0x4 scope:global align:4 data:4byte
+Handbill_rom_start = .bss:0x0003B4CC; // type:object size:0x4 scope:global align:4 data:4byte
+Super_table_rom_start = .bss:0x0003B4D0; // type:object size:0x4 scope:global align:4 data:4byte
+Super_rom_start = .bss:0x0003B4D4; // type:object size:0x4 scope:global align:4 data:4byte
+Handbillz_rom_start = .bss:0x0003B4D8; // type:object size:0x4 scope:global align:4
+Handbillz_start = .bss:0x0003B4DC; // type:object size:0x4 scope:global align:4
+mHandbill_data = .bss:0x0003B4E0; // type:object size:0x198 scope:global align:4 data:4byte
+buff$652 = .bss:0x0003B680; // type:object size:0x60 scope:local align:32 data:byte
+buff$676 = .bss:0x0003B6E0; // type:object size:0x68 scope:local align:32
+mHandbill_mail_buff = .bss:0x0003B760; // type:object size:0x108 scope:global align:32
+mHandbillz_table_pos = .bss:0x0003B868; // type:object size:0x14 scope:global align:4 data:4byte
+mHandbillz_data_pos = .bss:0x0003B87C; // type:object size:0x14 scope:global align:4 data:4byte
+ram$764 = .bss:0x0003B8A0; // type:object size:0x60 scope:local align:32
+ram$799 = .bss:0x0003B900; // type:object size:0x68 scope:local align:32
+l_mld_start_flag = .bss:0x0003B968; // type:object size:0x4 scope:global align:4 data:4byte
+l_keepIsland = .bss:0x0003B980; // type:object size:0x1900 scope:global align:32
+l_keepIslandComb = .bss:0x0003D280; // type:object size:0x4 scope:global align:4
+l_misl_count_table = .bss:0x0003D284; // type:object size:0x20 scope:global align:4
+l_mEnv_electric_light = .bss:0x0003D2A8; // type:object size:0xA4 scope:global align:4 data:4byte
+point_light_wave_counter$1598 = .bss:0x0003D34C; // type:object size:0x2 scope:local align:2 data:2byte
+S_get_light_list = .bss:0x0003D350; // type:object size:0x4 scope:global align:4 data:4byte
+light_list_buf = .bss:0x0003D358; // type:object size:0x188 scope:global align:4 data:4byte
+zelda_arena = .bss:0x0003D4E0; // type:object size:0x2C scope:global align:4
+header$558 = .bss:0x0003D510; // type:object size:0x28 scope:local align:4
+footer$559 = .bss:0x0003D538; // type:object size:0x30 scope:local align:4
+l_ml_mail = .bss:0x0003D568; // type:object size:0x12A scope:global align:4
+free_str$606 = .bss:0x0003D694; // type:object size:0x10 scope:local align:4
+melody$408 = .bss:0x0003D6A8; // type:object size:0x10 scope:local align:4
+Msg_table_rom_start = .bss:0x0003D6C0; // type:object size:0x4 scope:global align:4 data:4byte
+Msg_rom_start = .bss:0x0003D6C4; // type:object size:0x4 scope:global align:4 data:4byte
+mMsg_window = .bss:0x0003D6C8; // type:object size:0x470 scope:global align:8 data:byte
+tmp_buff$872 = .bss:0x0003DB40; // type:object size:0x40 scope:local align:32
+mMsg_data = .bss:0x0003DB80; // type:object size:0x660 scope:global align:32 data:4byte
+str$1786 = .bss:0x0003E1E0; // type:object size:0x60 scope:local align:4
+l_mmsm_mail = .bss:0x0003E240; // type:object size:0x12A scope:global align:4
+present_name$537 = .bss:0x0003E36C; // type:object size:0x10 scope:local align:4
+...bss.0 = .bss:0x0003E380; // type:label scope:local
+candidate$504 = .bss:0x0003E380; // type:object size:0x3C0 scope:local align:4
+candidate_num$505 = .bss:0x0003E740; // type:object size:0x1E scope:local align:4
+share_num$506 = .bss:0x0003E760; // type:object size:0x1E scope:local align:4
+candidate_num$695 = .bss:0x0003E780; // type:object size:0x1E scope:local align:4 data:byte
+mNW_swap_work = .bss:0x0003E7A0; // type:object size:0x220 scope:global align:32
+mNtc_auto_nwrite_data = .bss:0x0003E9C0; // type:object size:0xAC scope:global align:4 data:2byte
+...bss.0 = .bss:0x0003EA80; // type:label scope:local
+tmp_super$1273 = .bss:0x0003EA80; // type:object size:0x28 scope:local align:4
+tmp_ps$1274 = .bss:0x0003EAA8; // type:object size:0x30 scope:local align:4
+tmp_super$1321 = .bss:0x0003EAD8; // type:object size:0x28 scope:local align:4
+tmp_ps$1322 = .bss:0x0003EB00; // type:object size:0x30 scope:local align:4
+l_npc_mail = .bss:0x0003EB30; // type:object size:0x12A scope:global align:4
+animal_name$1399 = .bss:0x0003EC5C; // type:object size:0x8 scope:local align:4
+animal_name$1476 = .bss:0x0003EC64; // type:object size:0x8 scope:local align:4
+fakeTable$1868 = .bss:0x0003EC6C; // type:object size:0x3B0 scope:local align:4
+fakeTable$2058 = .bss:0x0003F01C; // type:object size:0xF0 scope:local align:4
+reserved$2096 = .bss:0x0003F10C; // type:object size:0x12C scope:local align:4
+l_mnpc_remove_in_animal = .bss:0x0003F238; // type:object size:0x988 scope:global align:8
+l_mnpc_goodby_mail = .bss:0x0003FBC0; // type:object size:0x10 scope:global align:4
+animal_name$2560 = .bss:0x0003FBD0; // type:object size:0x8 scope:local align:4
+dma_area$2710 = .bss:0x0003FBE0; // type:object size:0x40 scope:local align:32
+npc_name$2719 = .bss:0x0003FC20; // type:object size:0x8 scope:local align:4
+l_npc_name_cache = .bss:0x0003FC28; // type:object size:0xC scope:global align:4 data:byte
+load_name$2767 = .bss:0x0003FC34; // type:object size:0x8 scope:local align:4
+candidate_table$3047 = .bss:0x0003FC3C; // type:object size:0x1E scope:local align:4 data:byte
+looks_table$3188 = .bss:0x0003FC5C; // type:object size:0x18 scope:local align:4
+fg_flag$3291 = .bss:0x0003FC74; // type:object size:0x20 scope:local align:4 data:2byte
+hide_ut_bit$3382 = .bss:0x0003FC94; // type:object size:0x20 scope:local align:4
+l_npc_talk_info = .bss:0x0003FCB4; // type:object size:0x80 scope:global align:4 data:2byte
+cand_table$3630 = .bss:0x0003FD34; // type:object size:0x48 scope:local align:4 data:4byte
+l_mnpc_get_ftr = .bss:0x0003FD7C; // type:object size:0x2 scope:global align:2
+l_mnpc_get_letter = .bss:0x0003FD80; // type:object size:0x4 scope:global align:4 data:4byte
+l_mnpc_chk_ftr_msg = .bss:0x0003FD84; // type:object size:0x4 scope:global align:4 data:4byte
+l_mnpc_island_ftr = .bss:0x0003FD88; // type:object size:0x2A scope:global align:4 data:2byte
+l_island_npc_room_data = .bss:0x0003FDB4; // type:object size:0x24D8 scope:global align:4 data:2byte
+l_mnpc_island_present_ftr = .bss:0x0004228C; // type:object size:0x16 scope:global align:4 data:2byte
+password$4715 = .bss:0x000422A4; // type:object size:0x15 scope:local align:4
+l_npc_hp_mail = .bss:0x000422BC; // type:object size:0x12A scope:global align:4 data:byte
+name_str$4732 = .bss:0x000423E8; // type:object size:0x10 scope:local align:4
+name_str$4747 = .bss:0x000423F8; // type:object size:0x10 scope:local align:4
+submenu_name_str$4748 = .bss:0x00042408; // type:object size:0x10 scope:local align:4
+submenu_name_str$4830 = .bss:0x00042418; // type:object size:0x10 scope:local align:4
+name_str$4829 = .bss:0x00042428; // type:object size:0x10 scope:local align:4
+gobi_str$4831 = .bss:0x00042438; // type:object size:0xA scope:local align:4
+name_str$4885 = .bss:0x00042444; // type:object size:0x10 scope:local align:4
+name_str$4893 = .bss:0x00042454; // type:object size:0x8 scope:local align:4
+name_str$4917 = .bss:0x0004245C; // type:object size:0x10 scope:local align:4
+l_mnpc_display = .bss:0x0004246C; // type:object size:0x4 scope:global align:4 data:4byte
+l_mnpc_addd = .bss:0x00042470; // type:object size:0x14 scope:global align:4 data:4byte
+l_goal_block = .bss:0x00042488; // type:object size:0x10 scope:global align:4 data:4byte
+l_arrive_stay_count = .bss:0x00042498; // type:object size:0x3C scope:global align:4
+...bss.0 = .bss:0x000424D8; // type:label scope:local
+Player_actor_ct_func = .bss:0x000424D8; // type:object size:0x4 scope:global align:4 data:4byte
+Player_actor_dt_func = .bss:0x000424DC; // type:object size:0x4 scope:global align:4 data:4byte
+Player_actor_move_func = .bss:0x000424E0; // type:object size:0x4 scope:global align:4 data:4byte
+Player_actor_draw_func = .bss:0x000424E4; // type:object size:0x4 scope:global align:4 data:4byte
+Player_bank_ID_Index = .bss:0x000424E8; // type:object size:0x4 scope:global align:4 data:4byte
+Player_face_bank_ID_Index = .bss:0x000424EC; // type:object size:0x4 scope:global align:4 data:4byte
+change_data_from_submenu = .bss:0x000424F0; // type:object size:0x50 scope:global align:8
+controller_data_for_title_demo = .bss:0x00042540; // type:object size:0x40 scope:global align:4 data:2byte
+g_foreigner_private = .bss:0x00042580; // type:object size:0x2440 scope:global align:32 data:byte
+l_mpr_mail = .bss:0x000449C0; // type:object size:0x12A scope:global align:4
+l_mqst_grab = .bss:0x00044AF0; // type:object size:0x34 scope:global align:4 data:4byte
+fbdemo_mode = .bss:0x00044B28; // type:object size:0x4 scope:global align:4 data:4byte
+mRmTp_melody = .bss:0x00044B30; // type:object size:0x10 scope:global align:4
+mRmTp_famicom_idx = .bss:0x00044B40; // type:object size:0x4 scope:global align:4 data:4byte
+l_mRmTp_switch_data = .bss:0x00044B44; // type:object size:0x4 scope:global align:4 data:4byte
+mSP_what_special_sale = .bss:0x00044B48; // type:object size:0x4 scope:global align:4 data:4byte
+l_mItemDebug_work_data = .bss:0x00044B4C; // type:object size:0xC scope:global align:4 data:4byte
+String_table_rom_start = .bss:0x00044B60; // type:object size:0x4 scope:global align:4 data:4byte
+String_rom_start = .bss:0x00044B64; // type:object size:0x4 scope:global align:4 data:4byte
+buff$408 = .bss:0x00044B80; // type:object size:0xBF scope:local align:32
+SubmenuArea_visit = .bss:0x00044C40; // type:object size:0x4 scope:global align:4 data:4byte
+SubmenuArea_allocp = .bss:0x00044C44; // type:object size:0x4 scope:global align:4 data:4byte
+S_tdemo_frame = .bss:0x00044C48; // type:object size:0x4 scope:global align:4 data:4byte
+S_titledemo_to_play = .bss:0x00044C4C; // type:object size:0x2 scope:global align:2 data:2byte
+debug_disp = .bss:0x00044C50; // type:object size:0x4 scope:global align:4 data:4byte
+l_renew_is = .bss:0x00044C54; // type:object size:0x1 scope:global align:1 data:byte
+disp$439 = .bss:0x00044C58; // type:object size:0x4 scope:local align:4 data:4byte
+id$468 = .bss:0x00044C5C; // type:object size:0x4 scope:local align:4 data:4byte
+S_watch_my_step = .bss:0x00044C60; // type:object size:0x30 scope:global align:4 data:float
+S_navigate = .bss:0x00044C90; // type:object size:0x8 scope:global align:4 data:byte
+S_se_play_flg$744 = .bss:0x00044C98; // type:object size:0x4 scope:local align:4 data:4byte
+S_mybell_conf = .bss:0x00044C9C; // type:object size:0x10 scope:global align:4 data:4byte
+...bss.0 = .bss:0x00044CC0; // type:label scope:local
+l_mcd_err_result = .bss:0x00044CC0; // type:object size:0x4 scope:global align:4 data:4byte
+l_mcd_bg_info = .bss:0x00044CC4; // type:object size:0x2C scope:global align:4 data:4byte
+work_p$834 = .bss:0x00044CF0; // type:object size:0x4 scope:local align:4
+work_p$941 = .bss:0x00044CF4; // type:object size:0x4 scope:local align:4
+read_p$942 = .bss:0x00044CF8; // type:object size:0x4 scope:local align:4
+work_p$1008 = .bss:0x00044CFC; // type:object size:0x4 scope:local align:4
+work_p$1132 = .bss:0x00044D00; // type:object size:0x4 scope:local align:4 data:4byte
+work_p$1183 = .bss:0x00044D04; // type:object size:0x4 scope:local align:4 data:4byte
+work_p$1224 = .bss:0x00044D08; // type:object size:0x4 scope:local align:4 data:4byte
+work_p$1302 = .bss:0x00044D0C; // type:object size:0x4 scope:local align:4 data:4byte
+work_p$1353 = .bss:0x00044D10; // type:object size:0x4 scope:local align:4 data:4byte
+work_p$1402 = .bss:0x00044D14; // type:object size:0x4 scope:local align:4 data:4byte
+l_keepSave_set = .bss:0x00044D18; // type:object size:0x4 scope:global align:4 data:4byte
+l_mcd_keep_startCond = .bss:0x00044D1C; // type:object size:0x4 scope:global align:4 data:4byte
+l_aram_access_bit = .bss:0x00044D20; // type:object size:0x4 scope:global align:4 data:4byte
+l_aram_block_p_table = .bss:0x00044D24; // type:object size:0xC scope:global align:4
+l_keepSave = .bss:0x00044D40; // type:object size:0x26000 scope:global align:32
+l_memMgr = .bss:0x0006AD40; // type:object size:0x11DC scope:global align:4 data:4byte
+l_mcd_card_private_table = .bss:0x0006BF1C; // type:object size:0x3DC scope:global align:4
+l_mcd_card_private = .bss:0x0006C2F8; // type:object size:0x34 scope:global align:4
+l_mcd_foreigner_file = .bss:0x0006C340; // type:object size:0x4000 scope:global align:32
+l_keep_noLandCode = .bss:0x00070340; // type:object size:0x8 scope:global align:4
+l_mCD_wctrl = .bss:0x00070348; // type:object size:0x34 scope:global align:4
+noLand_code$2000 = .bss:0x0007037C; // type:object size:0x8 scope:local align:4
+noLand_code$2962 = .bss:0x00070384; // type:object size:0x20 scope:local align:4
+l_keepMail = .bss:0x000703C0; // type:object size:0xC000 scope:global align:32
+l_keepOriginal = .bss:0x0007C3C0; // type:object size:0xE000 scope:global align:32
+l_keepDiary = .bss:0x0008A3C0; // type:object size:0xC000 scope:global align:32
+cond$4611 = .bss:0x000963C0; // type:object size:0x7F scope:local align:4 data:byte
+l_mcd_keep_private = .bss:0x00096440; // type:object size:0x2440 scope:global align:32
+l_paks_info = .bss:0x00098880; // type:object size:0x58 scope:global align:4
+mVib_info = .bss:0x000988D8; // type:object size:0x120 scope:global align:4
+...bss.0 = .bss:0x000989F8; // type:label scope:local
+gamePT = .bss:0x000989F8; // type:object size:0x4 scope:global align:4 data:4byte
+last_now_button = .bss:0x000989FC; // type:object size:0x8 scope:global align:4
+last_on_trigger = .bss:0x00098A04; // type:object size:0x8 scope:global align:4
+last_button = .bss:0x00098A0C; // type:object size:0x8 scope:global align:4
+game_GameFrame = .bss:0x00098A14; // type:object size:0x1 scope:global align:1 data:byte
+game_GameFrameF = .bss:0x00098A18; // type:object size:0x4 scope:global align:4
+game_GameFrame_2F = .bss:0x00098A1C; // type:object size:0x4 scope:global align:4 data:float
+game_GameFrame__1F = .bss:0x00098A20; // type:object size:0x4 scope:global align:4
+game_class_p = .bss:0x00098A24; // type:object size:0x4 scope:global align:4 data:4byte
+frame$403 = .bss:0x00098A28; // type:object size:0x4 scope:local align:4 data:4byte
+SoftResetEnable = .bss:0x00098A2C; // type:object size:0x1 scope:global align:1 data:byte
+skip_frame$483 = .bss:0x00098A30; // type:object size:0x4 scope:local align:4 data:4byte
+graph_class = .bss:0x00098A38; // type:object size:0x368 scope:global align:8 data:byte
+...bss.0 = .bss:0x00098DA0; // type:label scope:local
+ResetStatus = .bss:0x00098DA0; // type:object size:0x4 scope:global align:4 data:4byte
+ResetTime = .bss:0x00098DA8; // type:object size:0x8 scope:global align:8 data:4byte
+RetraceTime = .bss:0x00098DB0; // type:object size:0x8 scope:global align:8
+RetraceCount = .bss:0x00098DB8; // type:object size:0x4 scope:global align:4
+this = .bss:0x00098DBC; // type:object size:0x4 scope:local align:4 data:4byte
+irqmgr_class = .bss:0x00098DC0; // type:object size:0x410 scope:global align:8 data:4byte
+retrace$357 = .bss:0x000991D0; // type:object size:0x2 scope:local align:2
+vc_retraceCount = .bss:0x000991D2; // type:object size:0x2 scope:global align:2
+vc_msgq = .bss:0x000991D4; // type:object size:0x4 scope:global align:4
+vc_msg = .bss:0x000991D8; // type:object size:0x4 scope:global align:4
+viThread = .bss:0x000991E0; // type:object size:0x310 scope:global align:8
+viThreadStack = .bss:0x000994F0; // type:object size:0x1000 scope:global align:4
+l_lbRTC_IsSampled = .bss:0x0009A4F0; // type:object size:0x4 scope:global align:4 data:4byte
+l_lbRTC_Time = .bss:0x0009A4F4; // type:object size:0x8 scope:global align:4 data:byte
+...bss.0 = .bss:0x0009A500; // type:label scope:local
+l_serialMsgQ = .bss:0x0009A500; // type:object size:0x20 scope:global align:4
+serialMsgBuf = .bss:0x0009A520; // type:object size:0x4 scope:global align:4
+graphThread = .bss:0x0009A528; // type:object size:0x310 scope:global align:8
+SegmentBaseAddress = .bss:0x0009A838; // type:object size:0x40 scope:global align:4
+frame = .bss:0x0009A878; // type:object size:0x4 scope:global align:4 data:4byte
+padno$336 = .bss:0x0009A87C; // type:object size:0x4 scope:local align:4 data:4byte
+padmgr_class = .bss:0x0009A880; // type:object size:0x460 scope:global align:8 data:4byte
+...bss.0 = .bss:0x0009ACE0; // type:label scope:local
+l1$280 = .bss:0x0009ACE0; // type:object size:0x18 scope:local align:4 data:4byte
+ls1$281 = .bss:0x0009ACF8; // type:object size:0x18 scope:local align:4
+p2cl$366 = .bss:0x0009AD10; // type:object size:0x18 scope:local align:4
+vec01$597 = .bss:0x0009AD28; // type:object size:0xC scope:local align:4
+vec02$598 = .bss:0x0009AD34; // type:object size:0xC scope:local align:4
+tp0$706 = .bss:0x0009AD40; // type:object size:0xC scope:local align:4
+tp1$707 = .bss:0x0009AD4C; // type:object size:0xC scope:local align:4
+tp2$708 = .bss:0x0009AD58; // type:object size:0xC scope:local align:4
+cross_pos$709 = .bss:0x0009AD64; // type:object size:0xC scope:local align:4
+min_p$755 = .bss:0x0009AD70; // type:object size:0xC scope:local align:4
+max_p$756 = .bss:0x0009AD7C; // type:object size:0xC scope:local align:4
+lps_p$757 = .bss:0x0009AD88; // type:object size:0xC scope:local align:4
+lpe_p$758 = .bss:0x0009AD94; // type:object size:0xC scope:local align:4
+mult_vec$780 = .bss:0x0009ADA0; // type:object size:0xC scope:local align:4 data:float
+pos$1008 = .bss:0x0009ADAC; // type:object size:0xC scope:local align:4
+pos$1112 = .bss:0x0009ADB8; // type:object size:0xC scope:local align:4
+h$1190 = .bss:0x0009ADC4; // type:object size:0xC scope:local align:4 data:float
+h$1205 = .bss:0x0009ADD0; // type:object size:0xC scope:local align:4 data:float
+tr_center$1234 = .bss:0x0009ADDC; // type:object size:0xC scope:local align:4 data:float
+sp_center$1235 = .bss:0x0009ADE8; // type:object size:0xC scope:local align:4 data:float
+center$1250 = .bss:0x0009ADF4; // type:object size:0xC scope:local align:4
+ls$1249 = .bss:0x0009AE00; // type:object size:0x18 scope:local align:4
+cross$1251 = .bss:0x0009AE18; // type:object size:0xC scope:local align:4
+cross1$1457 = .bss:0x0009AE24; // type:object size:0xC scope:local align:4
+cross2$1458 = .bss:0x0009AE30; // type:object size:0xC scope:local align:4
+sph1$1455 = .bss:0x0009AE3C; // type:object size:0x8 scope:local align:4
+sph2$1456 = .bss:0x0009AE44; // type:object size:0x8 scope:local align:4
+sphereF$1548 = .bss:0x0009AE4C; // type:object size:0x10 scope:local align:4 data:float
+pipeF$1547 = .bss:0x0009AE5C; // type:object size:0x18 scope:local align:4 data:float
+pipe1f$1596 = .bss:0x0009AE74; // type:object size:0x18 scope:local align:4 data:float
+pipe2f$1597 = .bss:0x0009AE8C; // type:object size:0x18 scope:local align:4 data:float
+Matrix_stack = .bss:0x0009AEA8; // type:object size:0x4 scope:global align:4 data:4byte
+Matrix_now = .bss:0x0009AEAC; // type:object size:0x4 scope:global align:4 data:4byte
+irqmgrStack = .bss:0x0009AEB0; // type:object size:0x1000 scope:global align:8
+padmgrStack = .bss:0x0009BEB0; // type:object size:0x1000 scope:global align:8
+graphStack = .bss:0x0009CEB0; // type:object size:0x2000 scope:global align:8
+zurumode_flag = .bss:0x0009EEB0; // type:object size:0x4 scope:global align:4 data:4byte
+zuruKeyCheck = .bss:0x0009EEB4; // type:object size:0x6 scope:global align:4 data:byte
+gspS2DEX2_fifoDataStart = .bss:0x0009EEC0; // type:object size:0x8 scope:global align:8
+gspS2DEX2_fifoTextStart = .bss:0x0009EEC8; // type:object size:0x8 scope:global align:8
+gspF3DZEX2_NoN_PosLight_fifoDataStart = .bss:0x0009EED0; // type:object size:0x8 scope:global align:8
+gspF3DZEX2_NoN_PosLight_fifoTextStart = .bss:0x0009EED8; // type:object size:0x8 scope:global align:8
+str_mail$464 = .bss:0x0009EEE0; // type:object size:0x40 scope:local align:4
+Global_Actor_p = .bss:0x0009EF20; // type:object size:0x4 scope:global align:4 data:4byte
+aBTD_clip = .bss:0x0009EF28; // type:object size:0x8 scope:global align:4
+efbg_start_p = .bss:0x0009EF30; // type:object size:0x4 scope:global align:4 data:4byte
+...bss.0 = .bss:0x0009EF38; // type:label scope:local
+mail$483 = .bss:0x0009EF38; // type:object size:0x12A scope:local align:4 data:4byte
+wpppp = .bss:0x0009F064; // type:object size:0x4 scope:global align:4 data:4byte
+spppp = .bss:0x0009F068; // type:object size:0x4 scope:global align:4 data:4byte
+dpppp = .bss:0x0009F06C; // type:object size:0x4 scope:global align:4 data:4byte
+tpppp = .bss:0x0009F070; // type:object size:0x4 scope:global align:4 data:4byte
+fluc = .bss:0x0009F074; // type:object size:0x4 scope:global align:4 data:4byte
+n_today_event = .bss:0x0009F078; // type:object size:0x4 scope:global align:4 data:4byte
+today_event = .bss:0x0009F07C; // type:object size:0x80 scope:global align:4
+dist_info$433 = .bss:0x0009F100; // type:object size:0x360 scope:local align:4 data:float
+aFD_position_offset = .bss:0x0009F460; // type:object size:0x4 scope:global align:4 data:float
+aHOI_clip = .bss:0x0009F468; // type:object size:0x24 scope:global align:4
+aID_clip = .bss:0x0009F490; // type:object size:0x8 scope:global align:4
+tex = .bss:0x0009F4A0; // type:object size:0x2000 scope:global align:32
+pal = .bss:0x000A14A0; // type:object size:0x200 scope:global align:32
+item_name$478 = .bss:0x000A16A0; // type:object size:0x10 scope:local align:4
+item_name$551 = .bss:0x000A16B0; // type:object size:0x10 scope:local align:4
+MF_Control_Actor = .bss:0x000A16C0; // type:object size:0x4 scope:global align:4 data:4byte
+item_name$9978 = .bss:0x000A16C4; // type:object size:0x10 scope:local align:4
+MI_Control_Actor = .bss:0x000A16D8; // type:object size:0x4 scope:global align:4 data:4byte
+item_name$5395 = .bss:0x000A16DC; // type:object size:0x10 scope:local align:4
+l_aMR_work = .bss:0x000A16F0; // type:object size:0xC scope:global align:4 data:4byte
+l_bank_index_table = .bss:0x000A16FC; // type:object size:0x4F2 scope:global align:4 data:byte
+l_bank_address_table = .bss:0x000A1BF0; // type:object size:0x190 scope:global align:4
+ftr_name$1992 = .bss:0x000A1D80; // type:object size:0x10 scope:local align:4
+cancel_string$2060 = .bss:0x000A1D90; // type:object size:0x10 scope:local align:4
+else_string$2061 = .bss:0x000A1DA0; // type:object size:0x10 scope:local align:4
+cancel_string$2082 = .bss:0x000A1DB0; // type:object size:0x10 scope:local align:4
+else_string$2083 = .bss:0x000A1DC0; // type:object size:0x10 scope:local align:4
+cancel_string$2109 = .bss:0x000A1DD0; // type:object size:0x10 scope:local align:4
+else_string$2110 = .bss:0x000A1DE0; // type:object size:0x10 scope:local align:4
+item_name3$1553 = .bss:0x000A1DF0; // type:object size:0x10 scope:local align:4
+item_name2$1552 = .bss:0x000A1E00; // type:object size:0x10 scope:local align:4
+item_name1$1551 = .bss:0x000A1E10; // type:object size:0x10 scope:local align:4
+dummy_angle$471 = .bss:0x000A1E20; // type:object size:0x2 scope:local align:2
+aPRD_clip = .bss:0x000A1E28; // type:object size:0x8 scope:global align:4
+...bss.0 = .bss:0x000A1E30; // type:label scope:local
+aPT_receive_buf = .bss:0x000A1E30; // type:object size:0x100 scope:global align:4 data:byte
+header$452 = .bss:0x000A1F30; // type:object size:0x18 scope:local align:4
+body$453 = .bss:0x000A1F48; // type:object size:0xC0 scope:local align:4
+footer$454 = .bss:0x000A2008; // type:object size:0x20 scope:local align:4
+mail$477 = .bss:0x000A2028; // type:object size:0x12A scope:local align:4
+submenu_name_str$478 = .bss:0x000A2154; // type:object size:0x8 scope:local align:4
+...bss.0 = .bss:0x000A2160; // type:label scope:local
+l_client_p = .bss:0x000A2160; // type:object size:0x4 scope:global align:4 data:4byte
+l_quest_manager_mode = .bss:0x000A2164; // type:object size:0x1 scope:global align:1 data:byte
+l_quest_memory_p = .bss:0x000A2168; // type:object size:0x4 scope:global align:4 data:4byte
+l_quest_actor_p = .bss:0x000A216C; // type:object size:0x4 scope:global align:4 data:4byte
+l_quest_manager_hello = .bss:0x000A2170; // type:object size:0x4 scope:global align:4 data:4byte
+l_aQMgr_hand_start = .bss:0x000A2174; // type:object size:0x4 scope:global align:4 data:4byte
+show_mail$578 = .bss:0x000A2178; // type:object size:0x12A scope:local align:4
+str0$645 = .bss:0x000A22A8; // type:object size:0x10 scope:local align:4
+str1$646 = .bss:0x000A22B8; // type:object size:0x10 scope:local align:4
+str0$670 = .bss:0x000A22C8; // type:object size:0x10 scope:local align:4
+str1$671 = .bss:0x000A22D8; // type:object size:0x10 scope:local align:4
+l_aqmgr_str = .bss:0x000A22E8; // type:object size:0x10 scope:local align:4
+l_normal_info = .bss:0x000A22F8; // type:object size:0x20 scope:local align:4 data:4byte
+other_itemNo$695 = .bss:0x000A2318; // type:object size:0x6 scope:local align:4 data:2byte
+melody$1158 = .bss:0x000A2320; // type:object size:0x10 scope:local align:4
+oldMsg$1273 = .bss:0x000A2330; // type:object size:0x4 scope:local align:4 data:4byte
+decide_table$411 = .bss:0x000A2338; // type:object size:0x64 scope:local align:4
+l_aqmgr_str = .bss:0x000A239C; // type:object size:0x10 scope:local align:4
+l_normal_info = .bss:0x000A23AC; // type:object size:0x20 scope:local align:4 data:4byte
+other_itemNo$935 = .bss:0x000A23CC; // type:object size:0x6 scope:local align:4 data:2byte
+melody$1522 = .bss:0x000A23D4; // type:object size:0x10 scope:local align:4
+show_mail$1681 = .bss:0x000A23E4; // type:object size:0x12A scope:local align:4 data:byte
+aRSD_clip = .bss:0x000A2510; // type:object size:0x8 scope:global align:4
+aROD_clip = .bss:0x000A2518; // type:object size:0x8 scope:global align:4
+candidate_ut$745 = .bss:0x000A2520; // type:object size:0x20 scope:local align:4 data:2byte
+fg_idx_table$537 = .bss:0x000A2540; // type:object size:0x1FE scope:local align:4 data:2byte
+copy_range$687 = .bss:0x000A2740; // type:object size:0x140 scope:local align:4
+set_data$864 = .bss:0x000A2880; // type:object size:0x8 scope:local align:4
+set_data$1138 = .bss:0x000A2888; // type:object size:0x24 scope:local align:4
+copy_range$1137 = .bss:0x000A28AC; // type:object size:0x204 scope:local align:4
+...bss.0 = .bss:0x000A2AB0; // type:label scope:local
+SG_angle_y = .bss:0x000A2AB0; // type:object size:0x200 scope:global align:4 data:4byte
+Glb_shop_goods_actor = .bss:0x000A2CB0; // type:object size:0x4 scope:global align:4 data:4byte
+picture_count = .bss:0x000A2CB4; // type:object size:0x4 scope:global align:4 data:4byte
+mode = .bss:0x000A2CB8; // type:object size:0x2 scope:global align:2 data:2byte
+aSI_se_mode = .bss:0x000A2CC0; // type:object size:0x4 scope:global align:4 data:4byte
+angle_y$495 = .bss:0x000A2CC8; // type:object size:0x2 scope:local align:2
+angle_y$466 = .bss:0x000A2CD0; // type:object size:0x2 scope:local align:2
+aTOL_clip = .bss:0x000A2CD8; // type:object size:0xC scope:global align:4
+draw_pos$1935 = .bss:0x000A2CE8; // type:object size:0x48 scope:local align:4 data:byte
+draw_pos$2047 = .bss:0x000A2D30; // type:object size:0x48 scope:local align:4 data:byte
+tmp_info_tbl$2255 = .bss:0x000A2D78; // type:object size:0x400 scope:local align:4
+draw_pos$1935 = .bss:0x000A3178; // type:object size:0x48 scope:local align:4 data:byte
+draw_pos$2047 = .bss:0x000A31C0; // type:object size:0x48 scope:local align:4 data:byte
+tmp_info_tbl$2255 = .bss:0x000A3208; // type:object size:0x400 scope:local align:4
+draw_work = .bss:0x000A3608; // type:object size:0x1C scope:global align:4 data:4byte
+draw_pos$1935 = .bss:0x000A3628; // type:object size:0x48 scope:local align:4 data:byte
+draw_pos$2047 = .bss:0x000A3670; // type:object size:0x48 scope:local align:4 data:byte
+tmp_info_tbl$2255 = .bss:0x000A36B8; // type:object size:0x400 scope:local align:4
+draw_pos$1935 = .bss:0x000A3AB8; // type:object size:0x48 scope:local align:4 data:byte
+draw_pos$2047 = .bss:0x000A3B00; // type:object size:0x48 scope:local align:4 data:byte
+tmp_info_tbl$2255 = .bss:0x000A3B48; // type:object size:0x400 scope:local align:4
+eEC_ctrl_work = .bss:0x000A3F48; // type:object size:0x24AC scope:global align:4 data:byte
+eEL_light_data = .bss:0x000A63F4; // type:object size:0x18 scope:global align:4 data:4byte
+eMH_special_point_light_num = .bss:0x000A640C; // type:object size:0x4 scope:global align:4 data:4byte
+draw_status = .bss:0x000A6410; // type:object size:0x1 scope:local align:1 data:byte
+mMkRm_letter_bit = .bss:0x000A6418; // type:object size:0x8 scope:global align:8 data:4byte
+ftr_fg_table1 = .bss:0x000A6420; // type:object size:0x200 scope:global align:4
+mMkRm_search_table = .bss:0x000A6620; // type:object size:0xF0 scope:global align:4 data:4byte
+ftr_fg_table2 = .bss:0x000A6710; // type:object size:0x200 scope:global align:4
+...bss.0 = .bss:0x000A6910; // type:label scope:local
+keep_blocks$670 = .bss:0x000A6910; // type:object size:0x46 scope:local align:4
+challenge_flag$671 = .bss:0x000A6958; // type:object size:0x46 scope:local align:4
+l_use_data = .bss:0x000A69A0; // type:object size:0x8C scope:global align:4
+mRF_river_left_right_info = .bss:0x000A6A2C; // type:object size:0x8C scope:global align:4
+mRF_cliff_up_down_info = .bss:0x000A6AB8; // type:object size:0x8C scope:global align:4
+blocks_c$1312 = .bss:0x000A6B44; // type:object size:0x46 scope:local align:4
+blocks_r$1313 = .bss:0x000A6B8C; // type:object size:0x46 scope:local align:4
+base_table$1314 = .bss:0x000A6BD4; // type:object size:0x46 scope:local align:4
+l_candidate_num = .bss:0x000A6C20; // type:object size:0x1E scope:global align:4 data:byte
+tree0_info$1759 = .bss:0x000A6C40; // type:object size:0x20 scope:local align:4
+tree0_info$2120 = .bss:0x000A6C60; // type:object size:0x20 scope:local align:4
+l_candidate_flat_num = .bss:0x000A6C80; // type:object size:0x1E scope:global align:4 data:byte
+l_cancel_ut = .bss:0x000A6CA0; // type:object size:0x3C0 scope:global align:4
+pf_string$575 = .bss:0x000A7060; // type:object size:0x10 scope:local align:4
+pf_string$504 = .bss:0x000A7070; // type:object size:0x10 scope:local align:4
+aNPC_ctrlActor = .bss:0x000A7080; // type:object size:0x4 scope:local align:4 data:4byte
+aNPC_aroundNpcInfoList = .bss:0x000A7084; // type:object size:0x1A8 scope:global align:4 data:4byte
+aNPC_n_actor_cl_tbl = .bss:0x000A7230; // type:object size:0x5898 scope:global align:8
+aNPC_n_overlay = .bss:0x000ACAC8; // type:object size:0x808 scope:global align:8
+aNPC_s_overlay = .bss:0x000AD2D0; // type:object size:0x4010 scope:global align:8
+aNPC_k_overlay = .bss:0x000B12E0; // type:object size:0x9018 scope:global align:8
+aNPC_e_overlay = .bss:0x000BA2F8; // type:object size:0x5010 scope:global align:8
+aNPC_clip = .bss:0x000BF308; // type:object size:0x12C scope:local align:4
+aNPC_ctrlActor = .bss:0x000BF438; // type:object size:0x4 scope:local align:4 data:4byte
+tbl = .bss:0x000BF43C; // type:object size:0x398 scope:global align:4 data:byte
+aNPC_clip = .bss:0x000BF7D4; // type:object size:0x12C scope:local align:4
+l_fade_alpha = .bss:0x000BF900; // type:object size:0x1 scope:global align:1 data:byte
+l_ResetTime = .bss:0x000BF908; // type:object size:0x8 scope:global align:8 data:4byte
+aNMD_selectIdx = .bss:0x000BF910; // type:object size:0x4 scope:global align:4 data:4byte
+aNMD_actor_p = .bss:0x000BF914; // type:object size:0x8 scope:global align:4
+aNNW_trance_data = .bss:0x000BF920; // type:object size:0x1100 scope:global align:32
+sister_story = .bss:0x000C0A20; // type:object size:0x1 scope:global align:1 data:byte
+sister_now = .bss:0x000C0A21; // type:object size:0x1 scope:global align:1 data:byte
+static_str = .bss:0x000C0A28; // type:object size:0x60 scope:global align:4
+str$560 = .bss:0x000C0A88; // type:object size:0x10 scope:local align:4
+aSEN_matrix = .bss:0x000C0A98; // type:object size:0x40 scope:global align:4
+...bss.0 = .bss:0x000C0AD8; // type:label scope:local
+aTS0_delete_flag = .bss:0x000C0AD8; // type:object size:0x4 scope:global align:4 data:4byte
+aTS0_regist_sum = .bss:0x000C0ADC; // type:object size:0x4 scope:global align:4 data:4byte
+aTS0_failure_actor_p = .bss:0x000C0AE0; // type:object size:0x4 scope:global align:4 data:4byte
+aTMN1_flag = .bss:0x000C0AE8; // type:object size:0x2 scope:global align:2 data:2byte
+regist_cnt = .bss:0x000C0AF0; // type:object size:0x4 scope:global align:4 data:4byte
+turiActorx = .bss:0x000C0AF4; // type:object size:0x14 scope:global align:4
+aINS_ctrlActor = .bss:0x000C0B08; // type:object size:0x4 scope:global align:4 data:4byte
+aINS_overlay = .bss:0x000C0B10; // type:object size:0x5418 scope:global align:8 data:4byte
+aINS_clip = .bss:0x000C5F28; // type:object size:0x50 scope:global align:4
+aGYO_ctrlActor = .bss:0x000C5F78; // type:object size:0x4 scope:global align:4 data:4byte
+aGYO_overlay = .bss:0x000C5F80; // type:object size:0x7800 scope:global align:8
+aCOU_clip = .bss:0x000CD780; // type:object size:0x8 scope:global align:4 data:4byte
+pipeinfo = .bss:0x000CD788; // type:object size:0x1C scope:global align:4 data:4byte
+aMKBC_clip = .bss:0x000CD7A8; // type:object size:0x30 scope:global align:4 data:4byte
+totakeke_str = .bss:0x000CD7D8; // type:object size:0xFA scope:global align:4
+staffroll_info = .bss:0x000CD8D8; // type:object size:0x18 scope:global align:8 data:2byte
+aMHS_door_closed_flag = .bss:0x000CD8F0; // type:object size:0x10 scope:global align:4
+aSHR_present = .bss:0x000CD900; // type:object size:0x18 scope:global align:4
+aSHR_clip = .bss:0x000CD918; // type:object size:0xC scope:global align:4 data:4byte
+aSTC_clip = .bss:0x000CD928; // type:object size:0x4 scope:global align:4 data:4byte
+aSTR_actor_cl = .bss:0x000CD930; // type:object size:0x19BC scope:global align:4
+aSTR_overlay = .bss:0x000CF2EC; // type:object size:0x14400 scope:global align:4
+aTRC_clip = .bss:0x000E36F0; // type:object size:0x10 scope:global align:4 data:4byte
+adrs_ovl_data = .bss:0x000E3700; // type:object size:0x1E8 scope:global align:4
+bn_ovl_data = .bss:0x000E38E8; // type:object size:0x18 scope:global align:4
+birthday_ovl_data = .bss:0x000E3900; // type:object size:0x8 scope:global align:4
+board_ovl_data = .bss:0x000E3908; // type:object size:0x148 scope:global align:4
+cpedit_ovl_data = .bss:0x000E3A50; // type:object size:0x1 scope:global align:4
+cpmail_ovl_data = .bss:0x000E3A58; // type:object size:0xBC4 scope:global align:4 data:4byte
+co_ovl_data = .bss:0x000E4620; // type:object size:0x94 scope:global align:32 data:4byte
+cpwarning_ovl_data = .bss:0x000E46B8; // type:object size:0x10 scope:global align:4
+diary_ovl_data = .bss:0x000E46C8; // type:object size:0x4C scope:global align:4 data:4byte
+de_ovl_data = .bss:0x000E4720; // type:object size:0x6E0 scope:global align:32
+ee_ovl_data = .bss:0x000E4E00; // type:object size:0x8 scope:global align:4 data:byte
+edit_ovl_data = .bss:0x000E4E08; // type:object size:0x38 scope:global align:4
+gb_ovl_change_flg = .bss:0x000E4E40; // type:object size:0x1 scope:global align:1 data:byte
+hand_ovl_data = .bss:0x000E4E48; // type:object size:0x378 scope:global align:4 data:2byte
+hp_ovl_data = .bss:0x000E51C0; // type:object size:0x120 scope:global align:4
+haniwa_ovl_data = .bss:0x000E52E0; // type:object size:0x3C scope:global align:4 data:4byte
+inv_ovl_data = .bss:0x000E5320; // type:object size:0x5EC scope:global align:4
+mLE_md_name = .bss:0x000E5910; // type:object size:0x370 scope:global align:4
+mLE_npc_end_word_edit = .bss:0x000E5C80; // type:object size:0xA scope:global align:4
+mail_ovl_data = .bss:0x000E5C90; // type:object size:0x14 scope:global align:4
+...bss.0 = .bss:0x000E5CA8; // type:label scope:local
+kan_win_wakuT_model_p = .bss:0x000E5CA8; // type:object size:0x4 scope:global align:4 data:4byte
+kan_win_waku1T_model_p = .bss:0x000E5CAC; // type:object size:0x4 scope:global align:4
+kan_win_waku2T_model_p = .bss:0x000E5CB0; // type:object size:0x4 scope:global align:4
+kan_win_waku3T_model_p = .bss:0x000E5CB4; // type:object size:0x4 scope:global align:4
+kan_win_waku4T_model_p = .bss:0x000E5CB8; // type:object size:0x4 scope:global align:4
+kan_win_color0_mode_p = .bss:0x000E5CBC; // type:object size:0x4 scope:global align:4 data:4byte
+kan_win_color1_mode_p = .bss:0x000E5CC0; // type:object size:0x4 scope:global align:4 data:4byte
+mscore_ovl_data = .bss:0x000E5CC8; // type:object size:0x28 scope:global align:4
+music_ovl_data = .bss:0x000E5CF0; // type:object size:0x1C scope:global align:4
+notice_ovl_data = .bss:0x000E5D10; // type:object size:0xD4 scope:global align:4
+rp_ovl_data = .bss:0x000E5DE8; // type:object size:0x18 scope:global align:4
+ovl_base = .bss:0x000E5E00; // type:object size:0xA04 scope:global align:4 data:2byte
+tag_ovl_data = .bss:0x000E6808; // type:object size:0x3C4 scope:global align:4 data:4byte
+ti_ovl_data = .bss:0x000E6BD0; // type:object size:0x20 scope:global align:4
+wr_ovl_data = .bss:0x000E6BF0; // type:object size:0x8 scope:global align:4
+pm_ovl_data = .bss:0x000E6BF8; // type:object size:0x18 scope:global align:4
+pc_ovl_data = .bss:0x000E6C10; // type:object size:0x24 scope:global align:4
+sys_dynamic = .bss:0x000E6C38; // type:object size:0x20410 scope:global align:8 data:2byte
+S_back_title_timer = .bss:0x00107060; // type:object size:0x2 scope:global align:2 data:2byte
+S_se_endcheck_timeout = .bss:0x00107062; // type:object size:0x2 scope:global align:2 data:2byte
+fbdemo = .bss:0x00107068; // type:object size:0xE0 scope:global align:8
+gxbuf = .bss:0x00107160; // type:object size:0x140 scope:global align:32
+prbuf = .bss:0x001072A0; // type:object size:0x12C000 scope:global align:32
+...bss.0 = .bss:0x002332A0; // type:label scope:local
+sound_ok = .bss:0x002332A0; // type:object size:0x1 scope:global align:1 data:byte
+contpad_ok = .bss:0x002332A1; // type:object size:0x1 scope:global align:1 data:byte
+frame_count = .bss:0x002332A2; // type:object size:0x1 scope:global align:1
+...bss.0 = .bss:0x002332A8; // type:label scope:local
+famicom_done = .bss:0x002332A8; // type:object size:0x4 scope:global align:4 data:4byte
+famicom_done_countdown = .bss:0x002332AC; // type:object size:0x4 scope:global align:4 data:4byte
+freeXfbBase = .bss:0x002332B0; // type:object size:0x4 scope:global align:4 data:4byte
+freeXfbSize = .bss:0x002332B4; // type:object size:0x4 scope:global align:4 data:4byte
+S_ongenpos_refuse_fg = .bss:0x002332B8; // type:object size:0x4 scope:global align:4 data:4byte
diff --git a/config/GAFE01_00/splits.txt b/config/GAFE01_00/splits.txt
new file mode 100644
index 00000000..6e5eb806
--- /dev/null
+++ b/config/GAFE01_00/splits.txt
@@ -0,0 +1,1555 @@
+Sections:
+ .init type:code align:4
+ extab type:rodata align:32
+ extabindex type:rodata align:32
+ .text type:code align:32
+ .ctors type:rodata align:16
+ .dtors type:rodata align:16
+ .rodata type:rodata align:32
+ .data type:data align:4
+ .bss type:bss align:16
+ .sdata type:data align:32
+ .sbss type:bss align:16
+ .sdata2 type:rodata align:4
+
+dolphin/os/__start.c:
+ .init start:0x80003100 end:0x80003354
+
+boot.c:
+ .text start:0x800056C0 end:0x8000663C
+ .rodata start:0x800A97E0 end:0x800A97E8
+ .data start:0x800AF860 end:0x800AFE50
+ .bss start:0x800E2280 end:0x800E2318
+
+jsyswrap.cpp:
+ .text start:0x8000663C end:0x80007188
+ .ctors start:0x800A9784 end:0x800A9788
+ .data start:0x800AFE50 end:0x800B05E8
+ .bss start:0x800E2318 end:0x800E2640
+
+version.c:
+ .text start:0x80007188 end:0x80007188
+ .data start:0x800B05E8 end:0x800B0608
+
+initial_menu.c:
+ .text start:0x80007188 end:0x80007E58
+ .rodata start:0x800A97E8 end:0x800A97F8
+ .data start:0x800B0608 end:0x800B0A60
+ .bss start:0x800E2640 end:0x800E2790
+
+dvderr.c:
+ .text start:0x80007E58 end:0x800083F8
+ .rodata start:0x800A97F8 end:0x800A9838
+ .data start:0x800B0A60 end:0x800B9140
+ .bss start:0x800E2790 end:0x800E2B88
+
+bootdata/gam_win1.c:
+ .data start:0x800B9140 end:0x800BB500
+
+bootdata/gam_win2.c:
+ .data start:0x800BB500 end:0x800BD820
+
+bootdata/gam_win3.c:
+ .data start:0x800BD820 end:0x800BE460
+
+bootdata/logo_nin.c:
+ .data start:0x800BE460 end:0x800C3140
+
+nintendo_hi_0.c:
+ .text start:0x800083F8 end:0x800083F8
+ .data start:0x800C3140 end:0x800CCA40
+
+jaudio_NES/game/dummyprobe.c:
+ .text start:0x800083F8 end:0x80008400
+
+jaudio_NES/game/audioheaders.c:
+ .text start:0x80008400 end:0x80008400
+ .data start:0x800CCA40 end:0x800CE880
+
+jaudio_NES/game/verysimple.c:
+ .text start:0x80008400 end:0x80008480
+ .sdata start:0x80217B80 end:0x80217B88
+
+jaudio_NES/game/emusound.c:
+ .text start:0x80008480 end:0x8000BAF0
+ .data start:0x800CE880 end:0x800CED40
+ .bss start:0x800E2B88 end:0x800EB640
+ .sdata start:0x80217B88 end:0x80217BC0
+ .sbss start:0x80218280 end:0x802182E8
+ .sdata2 start:0x80218BE0 end:0x80218C60
+
+jaudio_NES/game/game64.c:
+ .text start:0x8000BAF0 end:0x8000BB84
+ .text start:0x8000BB84 end:0x8000BD0C
+ .text start:0x8000BD0C end:0x8001561C
+ .rodata start:0x800A9838 end:0x800A9B98
+ .data start:0x800CED40 end:0x800CFE10
+ .bss start:0x800EB640 end:0x8017BDD8
+ .sdata start:0x80217BC0 end:0x80217BD0
+ .sbss start:0x802182E8 end:0x80218390
+ .sdata2 start:0x80218C60 end:0x80218D58
+
+jaudio_NES/game/melody.c:
+ .text start:0x8001561C end:0x80015A4C
+ .rodata start:0x800A9B98 end:0x800AA500
+ .sbss start:0x80218390 end:0x802183A0
+ .sdata2 start:0x80218D58 end:0x80218D60
+
+jaudio_NES/game/rhythm.c:
+ .text start:0x80015A4C end:0x800165EC
+ .bss start:0x8017BDD8 end:0x8017BE80
+ .sdata start:0x80217BD0 end:0x80217BD8
+ .sbss start:0x802183A0 end:0x802183B0
+ .sdata2 start:0x80218D60 end:0x80218D78
+
+jaudio_NES/game/radio.c:
+ .text start:0x800165EC end:0x8001676C
+ .sdata2 start:0x80218D78 end:0x80218D88
+
+jaudio_NES/game/kappa.c:
+ .text start:0x8001676C end:0x80016840
+ .sbss start:0x802183B0 end:0x802183B8
+ .sdata2 start:0x80218D88 end:0x80218D98
+
+jaudio_NES/game/staff.c:
+ .text start:0x80016840 end:0x80016D20
+ .data start:0x800CFE10 end:0x800CFF20
+ .sbss start:0x802183B8 end:0x802183C8
+ .sdata2 start:0x80218D98 end:0x80218DA0
+
+jaudio_NES/rspsim.c:
+ .text start:0x80016D20 end:0x80017E80
+ .data start:0x800CFF20 end:0x800D01A8
+ .bss start:0x8017BE80 end:0x8017CFA0
+ .sdata start:0x80217BD8 end:0x80217BE0
+ .sbss start:0x802183C8 end:0x802183F0
+ .sdata2 start:0x80218DA0 end:0x80218DA8
+
+jaudio_NES/internal/aictrl.c:
+ .text start:0x80017E80 end:0x80018640
+ .rodata start:0x800AA500 end:0x800AA518
+ .bss start:0x8017CFA0 end:0x8017CFC0
+ .sbss start:0x802183F0 end:0x80218420
+ .sdata2 start:0x80218DA8 end:0x80218DB8
+
+jaudio_NES/internal/sample.c:
+ .text start:0x80018640 end:0x80018920
+
+jaudio_NES/internal/dummyrom.c:
+ .text start:0x80018920 end:0x80018BC0
+ .rodata start:0x800AA518 end:0x800AA528
+ .bss start:0x8020D78C end:0x8020D7A0 align:4 common
+ .sbss start:0x80218420 end:0x80218440
+
+jaudio_NES/internal/audiothread.c:
+ .text start:0x80018BC0 end:0x800190E0
+ .rodata start:0x800AA528 end:0x800AA538
+ .bss start:0x8017CFC0 end:0x80180020
+ .bss start:0x8020D7A0 end:0x8020E6F0 align:4 common
+ .sbss start:0x80218440 end:0x80218460
+ .sdata2 start:0x80218DB8 end:0x80218DC0
+
+jaudio_NES/internal/neosthread.c:
+ .text start:0x800190E0 end:0x80019380
+ .rodata start:0x800AA538 end:0x800AA558
+ .bss start:0x80180020 end:0x80186440
+ .sdata start:0x80217BE0 end:0x80217BE8
+ .sbss start:0x80218460 end:0x80218478
+
+jaudio_NES/internal/streamctrl.c:
+ .text start:0x80019380 end:0x80019760
+ .data start:0x800D01A8 end:0x800D0278
+ .bss start:0x80186440 end:0x801864B0
+ .sdata2 start:0x80218DC0 end:0x80218DD0
+
+jaudio_NES/internal/dspbuf.c:
+ .text start:0x80019760 end:0x80019AE0
+ .rodata start:0x800AA558 end:0x800AA570
+ .bss start:0x801864B0 end:0x801864C0
+ .sbss start:0x80218478 end:0x80218488
+
+jaudio_NES/internal/cpubuf.c:
+ .text start:0x80019AE0 end:0x80019DC0
+ .bss start:0x801864C0 end:0x801864D0
+ .sbss start:0x80218488 end:0x80218498
+
+jaudio_NES/internal/playercall.c:
+ .text start:0x80019DC0 end:0x8001A0C0
+ .bss start:0x801864D0 end:0x80186590
+
+jaudio_NES/internal/dvdthread.c:
+ .text start:0x8001A0C0 end:0x8001ADA0
+ .data start:0x800D0278 end:0x800D0298
+ .bss start:0x80186590 end:0x8018F1A8
+ .sbss start:0x80218498 end:0x802184E8
+
+jaudio_NES/rate.c:
+ .sdata start:0x80217BE8 end:0x80217BF8
+ .sbss start:0x802184E8 end:0x802184F0
+
+jaudio_NES/driver.c:
+ .text start:0x8001ADA0 end:0x8001DA40
+ .data start:0x800D0298 end:0x800D02D8
+ .sdata start:0x80217BF8 end:0x80217C08
+ .sbss start:0x802184F0 end:0x802184F8
+ .sdata2 start:0x80218DD0 end:0x80218DF0
+
+jaudio_NES/memory.c:
+ .text start:0x8001DA40 end:0x80020C60
+ .rodata start:0x800AA570 end:0x800AA5E8
+ .data start:0x800D02D8 end:0x800D0300
+ .sbss start:0x802184F8 end:0x80218500
+ .sdata2 start:0x80218DF0 end:0x80218E38
+
+jaudio_NES/system.c:
+ .text start:0x80020C60 end:0x80024AE0
+ .rodata start:0x800AA5E8 end:0x800AA700
+ .bss start:0x8018F1A8 end:0x8018F1C0
+ .bss start:0x8020E6F0 end:0x8020E808 align:4 common
+ .sdata start:0x80217C08 end:0x80217C10
+ .sbss start:0x80218500 end:0x80218510
+ .sdata2 start:0x80218E38 end:0x80218E48
+
+jaudio_NES/internal/sub_sys.c:
+ .text start:0x80024AE0 end:0x80026120
+ .rodata start:0x800AA700 end:0x800AA720
+ .data start:0x800D0300 end:0x800D0390
+ .sbss start:0x80218510 end:0x80218528
+ .sdata2 start:0x80218E48 end:0x80218E60
+
+jaudio_NES/audiowork.c:
+ .bss start:0x8020E808 end:0x80217AB8 align:4 common
+ .sbss start:0x80218528 end:0x80218540
+
+jaudio_NES/audiotable.c:
+ .data start:0x800D0390 end:0x800D3668
+
+jaudio_NES/audioconst.c:
+ .data start:0x800D3668 end:0x800D36C8
+
+jaudio_NES/internal/os.c:
+ .text start:0x80026120 end:0x80026300
+
+jaudio_NES/internal/astest.c:
+ .text start:0x80026300 end:0x80026400
+
+jaudio_NES/channel.c:
+ .text start:0x80026400 end:0x800281E0
+ .sdata2 start:0x80218E60 end:0x80218E98
+
+jaudio_NES/effect.c:
+ .text start:0x800281E0 end:0x80028E60
+ .data start:0x800D36C8 end:0x800D36F0
+ .sdata start:0x80217C10 end:0x80217C18
+ .sdata2 start:0x80218E98 end:0x80218EC8
+
+jaudio_NES/internal/track.c:
+ .text start:0x80028E60 end:0x8002C920
+ .rodata start:0x800AA720 end:0x800AA780
+ .data start:0x800D36F0 end:0x800D3B00
+ .sbss start:0x80218540 end:0x80218548
+ .sdata2 start:0x80218EC8 end:0x80218F08
+
+jaudio_NES/internal/dspboot.c:
+ .text start:0x8002C920 end:0x8002CD20
+ .rodata start:0x800AA780 end:0x800AA7A0
+ .data start:0x800D3B00 end:0x800D5500
+ .sdata2 start:0x80218F08 end:0x80218F10
+
+jaudio_NES/internal/dspproc.c:
+ .text start:0x8002CD20 end:0x8002CFE0
+ .sdata start:0x80217C18 end:0x80217C20
+
+jaudio_NES/ipldec.c:
+ .text start:0x8002CFE0 end:0x8002D240
+ .bss start:0x80217AB8 end:0x80217AF8 align:4 common
+ .sbss start:0x80218548 end:0x80218550
+
+jaudio_NES/dsp_cardunlock.c:
+ .text start:0x8002D240 end:0x8002DA60
+ .rodata start:0x800AA7A0 end:0x800AA7E0
+
+jaudio_NES/dsp_GBAKey.c:
+ .text start:0x8002DA60 end:0x8002DC00
+ .rodata start:0x800AA7E0 end:0x800AA838
+
+jaudio_NES/driverinterface.c:
+ .text start:0x8002DC00 end:0x8002F540
+ .data start:0x800D5500 end:0x800D5598
+ .bss start:0x8018F1C0 end:0x801A3340
+ .sdata start:0x80217C20 end:0x80217C28
+ .sbss start:0x80218550 end:0x80218560
+ .sdata2 start:0x80218F10 end:0x80218F28
+
+jaudio_NES/dspdriver.c:
+ .text start:0x8002F540 end:0x8002FDC0
+ .data start:0x800D5598 end:0x800D55C0
+ .bss start:0x801A3340 end:0x801A3740
+ .sbss start:0x80218560 end:0x80218568
+ .sdata2 start:0x80218F28 end:0x80218F38
+
+jaudio_NES/dspinterface.c:
+ .text start:0x8002FDC0 end:0x800304A0
+ .data start:0x800D55C0 end:0x800D5A20
+ .bss start:0x801A3740 end:0x801A97C0
+ .sdata start:0x80217C28 end:0x80217C38
+
+jaudio_NES/fxinterface.c:
+ .text start:0x800304A0 end:0x800305E0
+ .data start:0x800D5A20 end:0x800D5A38
+
+jaudio_NES/tables.c:
+ .data start:0x800D5A38 end:0x800D5C38
+
+jaudio_NES/bankread.c:
+ .text start:0x800305E0 end:0x800309C0
+ .bss start:0x801A97C0 end:0x801A9BC0
+
+jaudio_NES/waveread.c:
+ .text start:0x800309C0 end:0x80030EC0
+ .bss start:0x801A9BC0 end:0x801AA3C0
+ .bss start:0x80217AF8 end:0x80217B38 align:4 common
+
+jaudio_NES/connect.c:
+ .text start:0x80030EC0 end:0x80031560
+ .bss start:0x801AA3C0 end:0x801AA7C0
+
+jaudio_NES/bankdrv.c:
+ .text start:0x80031560 end:0x80031CE0
+ .data start:0x800D5C38 end:0x800D5C48
+ .sdata2 start:0x80218F38 end:0x80218F60
+
+jaudio_NES/internal/random.c:
+ .text start:0x80031CE0 end:0x80031D80
+ .sdata start:0x80217C38 end:0x80217C40
+ .sdata2 start:0x80218F60 end:0x80218F70
+
+jaudio_NES/aramcall.c:
+ .text start:0x80031D80 end:0x800320C0
+ .data start:0x800D5C48 end:0x800D5C88
+ .bss start:0x80217B38 end:0x80217B64 align:4 common
+ .sdata start:0x80217C40 end:0x80217C48
+ .sbss start:0x80218568 end:0x80218570
+
+jaudio_NES/ja_calc.c:
+ .text start:0x800320C0 end:0x800322A0
+ .bss start:0x801AA7C0 end:0x801AABC8
+ .sdata2 start:0x80218F70 end:0x80218FA0
+
+jaudio_NES/fat.c:
+ .text start:0x800322A0 end:0x80032700
+ .bss start:0x801AABC8 end:0x801AB7C8
+ .sbss start:0x80218570 end:0x80218578
+
+jaudio_NES/cmdstack.c:
+ .text start:0x80032700 end:0x800328A0
+ .sbss start:0x80218578 end:0x80218588
+
+jaudio_NES/heapctrl.c:
+ .text start:0x800328A0 end:0x80032CC0
+ .sbss start:0x80218588 end:0x80218590
+
+jaudio_NES/jammain_2.c:
+ .text start:0x80032CC0 end:0x80036B40
+ .rodata start:0x800AA838 end:0x800AA928
+ .data start:0x800D5C88 end:0x800D5F48
+ .bss start:0x801AB7C8 end:0x801AB8E8
+ .sdata start:0x80217C48 end:0x80217C50
+ .sbss start:0x80218590 end:0x802185A0
+ .sdata2 start:0x80218FA0 end:0x80218FF8
+
+jaudio_NES/midplay.c:
+ .data start:0x800D5F48 end:0x800D6348
+
+jaudio_NES/noteon.c:
+ .text start:0x80036B40 end:0x80037080
+ .sdata2 start:0x80218FF8 end:0x80219000
+
+jaudio_NES/seqsetup.c:
+ .text start:0x80037080 end:0x80037D80
+ .bss start:0x801AB8E8 end:0x801EF540
+ .sbss start:0x802185A0 end:0x802185B0
+ .sdata2 start:0x80219000 end:0x80219010
+
+jaudio_NES/centcalc.c:
+ .text start:0x80037D80 end:0x80037E40
+ .data start:0x800D6348 end:0x800D6448
+ .sdata2 start:0x80219010 end:0x80219028
+
+jaudio_NES/jamosc.c:
+ .text start:0x80037E40 end:0x80038280
+ .data start:0x800D6448 end:0x800D6530
+ .sdata2 start:0x80219028 end:0x80219030
+
+jaudio_NES/oneshot.c:
+ .text start:0x80038280 end:0x800399EC
+ .data start:0x800D6530 end:0x800D6570
+ .sdata start:0x80217C50 end:0x80217C58
+ .sdata2 start:0x80219030 end:0x80219060
+
+Famicom/ks_nes_core.cpp:
+ .text start:0x800399EC end:0x8003DEB4
+ .rodata start:0x800AA928 end:0x800AA948
+ .data start:0x800D6570 end:0x800D8690
+
+Famicom/ks_nes_draw.cpp:
+ .text start:0x8003DEB4 end:0x80041614
+ .rodata start:0x800AA948 end:0x800AA9A8
+ .data start:0x800D8690 end:0x800D8778
+
+Famicom/famicom.cpp:
+ .text start:0x80041614 end:0x80046770
+ .text start:0x80046770 end:0x80046840
+ .text start:0x80046840 end:0x80046888
+ .text start:0x80046888 end:0x800468A0
+ .text start:0x800468A0 end:0x800468FC
+ .rodata start:0x800AA9A8 end:0x800AAA30
+ .data start:0x800D8778 end:0x800D99A0
+ .bss start:0x801EF540 end:0x801F6BD8
+
+Famicom/famicom_nesinfo.cpp:
+ .text start:0x800468FC end:0x80047E40
+ .rodata start:0x800AAA30 end:0x800AAB60
+ .data start:0x800D99A0 end:0x800DA9C8
+ .bss start:0x801F6BD8 end:0x801F6C80
+
+dolphin/gba/GBA.c:
+ .text start:0x80047E40 end:0x80048130
+ .data start:0x800DA9C8 end:0x800DA9D8
+ .bss start:0x801F6C80 end:0x801F7180
+ .sbss start:0x802185B0 end:0x802185B8
+
+dolphin/gba/GBAGetProcessStatus.c:
+ .text start:0x80048130 end:0x800482A4
+
+dolphin/gba/GBAJoyBoot.c:
+ .text start:0x800482A4 end:0x80049168
+ .data start:0x800DA9D8 end:0x800DAA08
+
+dolphin/gba/GBARead.c:
+ .text start:0x80049168 end:0x800492C8
+
+dolphin/gba/GBAWrite.c:
+ .text start:0x800492C8 end:0x80049450
+
+dolphin/gba/GBAXfer.c:
+ .text start:0x80049450 end:0x80049788
+
+GBA2/JoyBoot.c:
+ .text start:0x80049788 end:0x8004AE00
+ .data start:0x800DAA08 end:0x800DAAA0
+ .bss start:0x801F7180 end:0x801F71C0
+
+libforest/emu64/emu64.cc:
+ .text start:0x8004AE00 end:0x800595CC
+ .text start:0x800595CC end:0x800595CC
+ .text start:0x800595CC end:0x8005A654
+ .ctors start:0x800A9788 end:0x800A978C
+ .rodata start:0x800AAB60 end:0x800AB110
+ .data start:0x800DAAA0 end:0x800DC6D8
+ .bss start:0x801F71C0 end:0x80206F08
+ .sdata start:0x80217C58 end:0x80217DD0
+ .sbss start:0x802185B8 end:0x80218618
+ .sdata2 start:0x80219060 end:0x80219118
+
+libforest/osreport.c:
+ .text start:0x8005A654 end:0x8005A92C
+ .data start:0x800DC6D8 end:0x800DC738
+ .bss start:0x80206F08 end:0x80206F20
+ .sbss start:0x80218618 end:0x80218628
+
+libforest/fault.c:
+ .text start:0x8005A92C end:0x8005ADAC
+ .data start:0x800DC738 end:0x800DC7C8
+ .bss start:0x80206F20 end:0x80206F30
+ .sbss start:0x80218628 end:0x80218630
+
+libforest/ReconfigBATs.c:
+ .text start:0x8005ADAC end:0x8005AED4
+
+libu64/debug.c:
+ .text start:0x8005AED4 end:0x8005AF30
+ .data start:0x800DC7C8 end:0x800DC7F0
+
+libu64/gfxprint.c:
+ .text start:0x8005AF30 end:0x8005B9A8
+ .data start:0x800DC7F0 end:0x800DC810
+ .sbss start:0x80218630 end:0x80218638
+
+libu64/gfxprint_data.c:
+ .text start:0x8005B9A8 end:0x8005B9A8
+ .data start:0x800DC810 end:0x800DD090
+
+libu64/pad.c:
+ .text start:0x8005B9A8 end:0x8005BA2C
+
+libc64/__osMalloc.c:
+ .text start:0x8005BA2C end:0x8005CBDC
+ .data start:0x800DD090 end:0x800DD360
+ .sdata start:0x80217DD0 end:0x80217DE8
+ .sbss start:0x80218638 end:0x80218640
+
+libc64/aprintf.c:
+ .text start:0x8005CBDC end:0x8005CC14
+
+libc64/math64.c:
+ .text start:0x8005CC14 end:0x8005CCCC
+ .sdata2 start:0x80219118 end:0x80219130
+
+libc64/qrand.c:
+ .text start:0x8005CCCC end:0x8005CD64
+ .sdata start:0x80217DE8 end:0x80217DF0
+ .sbss start:0x80218640 end:0x80218648
+ .sdata2 start:0x80219130 end:0x80219138
+
+libc64/sleep.c:
+ .text start:0x8005CD64 end:0x8005CE18
+
+libc64/sprintf.c:
+ .text start:0x8005CE18 end:0x8005CF08
+
+libc64/malloc.c:
+ .text start:0x8005CF08 end:0x8005D01C
+ .bss start:0x80206F30 end:0x80206F60
+
+libultra/ultra.c:
+ .text start:0x8005D01C end:0x8005D15C
+ .bss start:0x80206F60 end:0x80206FA0
+
+libultra/coss.c:
+ .text start:0x8005D15C end:0x8005D184
+
+libultra/lookat.c:
+ .text start:0x8005D184 end:0x8005D52C
+ .sdata2 start:0x80219138 end:0x80219158
+
+libultra/gu/lookathil.c:
+ .text start:0x8005D52C end:0x8005DEF8
+ .sdata2 start:0x80219158 end:0x80219198
+
+libultra/gu/mtxutil.c:
+ .text start:0x8005DEF8 end:0x8005E15C
+ .sdata2 start:0x80219198 end:0x802191A8
+
+libultra/gu/normalize.c:
+ .text start:0x8005E15C end:0x8005E218
+ .sdata2 start:0x802191A8 end:0x802191C8
+
+libultra/gu/ortho.c:
+ .text start:0x8005E218 end:0x8005E414
+ .sdata2 start:0x802191C8 end:0x802191D8
+
+libultra/perspective.c:
+ .text start:0x8005E414 end:0x8005E654
+ .sdata2 start:0x802191D8 end:0x80219200
+
+libultra/rotate.c:
+ .text start:0x8005E654 end:0x8005E7D4
+ .sdata start:0x80217DF0 end:0x80217DF8
+ .sdata2 start:0x80219200 end:0x80219208
+
+libultra/gu/scale.c:
+ .text start:0x8005E7D4 end:0x8005E860
+ .sdata2 start:0x80219208 end:0x80219210
+
+libultra/gu/sins.c:
+ .text start:0x8005E860 end:0x8005E8AC
+ .data start:0x800DD360 end:0x800DDB60
+
+libultra/gu/translate.c:
+ .text start:0x8005E8AC end:0x8005E918
+
+libultra/xldtob.c:
+ .text start:0x8005E918 end:0x8005F2A0
+ .rodata start:0x800AB110 end:0x800AB158
+ .sdata start:0x80217DF8 end:0x80217E08
+ .sdata2 start:0x80219210 end:0x80219230
+
+libultra/xlitob.c:
+ .text start:0x8005F2A0 end:0x8005F4CC
+ .data start:0x800DDB60 end:0x800DDB88
+
+libultra/xprintf.c:
+ .text start:0x8005F4CC end:0x8005FF74
+ .rodata start:0x800AB158 end:0x800AB170
+ .data start:0x800DDB88 end:0x800DDD20
+ .sdata start:0x80217E08 end:0x80217E10
+ .sdata2 start:0x80219230 end:0x80219238
+
+libultra/createmesgqueue.c:
+ .text start:0x8005FF74 end:0x8005FF94
+
+libultra/createthread.c:
+ .text start:0x8005FF94 end:0x80060008
+
+libultra/destroythread.c:
+ .text start:0x80060008 end:0x80060034
+
+libultra/getthreadid.c:
+ .text start:0x80060034 end:0x80060060
+
+libultra/gettime.c:
+ .text start:0x80060060 end:0x80060090
+ .sbss start:0x80218648 end:0x80218650
+
+libultra/initialize.c:
+ .text start:0x80060090 end:0x8006011C
+ .sdata start:0x80217E10 end:0x80217E18
+ .sbss start:0x80218650 end:0x80218678
+
+libultra/recvmesg.c:
+ .text start:0x8006011C end:0x8006013C
+
+libultra/sendmesg.c:
+ .text start:0x8006013C end:0x8006015C
+
+libultra/setthreadpri.c:
+ .text start:0x8006015C end:0x80060198
+
+libultra/settimer.c:
+ .text start:0x80060198 end:0x8006034C
+
+libultra/shutdown.c:
+ .text start:0x8006034C end:0x800604DC
+ .data start:0x800DDD20 end:0x800DDDA0
+
+libultra/startthread.c:
+ .text start:0x800604DC end:0x80060508
+
+libultra/stoptimer.c:
+ .text start:0x80060508 end:0x80060594
+
+libultra/timerintr.c:
+ .text start:0x80060594 end:0x800605D4
+ .bss start:0x80206FA0 end:0x80206FE8
+ .sdata start:0x80217E18 end:0x80217E20
+
+libultra/contquery.c:
+ .text start:0x800605D4 end:0x80060628
+
+libultra/contreaddata.c:
+ .text start:0x80060628 end:0x80060C28
+ .sbss start:0x80218678 end:0x80218688
+
+libultra/controller.c:
+ .text start:0x80060C28 end:0x80060D7C
+ .sbss start:0x80218688 end:0x80218690
+
+libultra/contsetch.c:
+ .text start:0x80060D7C end:0x80060D9C
+
+libjsys/jsyswrapper.cpp:
+ .text start:0x80060D9C end:0x80060FD4
+ .text start:0x80060FD4 end:0x80061C94
+ .text start:0x80061C94 end:0x80061CDC
+ .text start:0x80061CDC end:0x80061CDC
+ .text start:0x80061CDC end:0x80061CE4
+ .text start:0x80061CE4 end:0x80061CE4
+ .text start:0x80061CE4 end:0x80061CE4
+ .text start:0x80061CE4 end:0x80061CE4
+ .text start:0x80061CE4 end:0x80061CE4
+ .text start:0x80061CE4 end:0x80061D84
+ .sdata2 start:0x80219238 end:0x80219248
+
+JSystem/JFramework/JFWSystem.cpp:
+ .text start:0x80061D84 end:0x800620FC
+ .sdata start:0x80217E20 end:0x80217E50
+ .sbss start:0x80218690 end:0x802186B0
+ .sdata2 start:0x80219248 end:0x80219258
+
+JSystem/JFramework/JFWDisplay.cpp:
+ .text start:0x800620FC end:0x80063748
+ .text start:0x80063748 end:0x80063748
+ .data start:0x800DDDA0 end:0x800DDF20
+ .bss start:0x80206FE8 end:0x80207008
+ .sdata start:0x80217E50 end:0x80217E58
+ .sbss start:0x802186B0 end:0x802186D8
+ .sdata2 start:0x80219258 end:0x80219278
+
+JSystem/JKernel/JKRHeap.cpp:
+ .text start:0x80063748 end:0x80064018
+ .text start:0x80064018 end:0x80064028
+ .data start:0x800DDF20 end:0x800DDF98
+ .sdata start:0x80217E58 end:0x80217E80
+ .sbss start:0x802186D8 end:0x80218700
+
+JSystem/JKernel/JKRExpHeap.cpp:
+ .text start:0x80064028 end:0x80065A8C
+ .text start:0x80065A8C end:0x80065AA0
+ .data start:0x800DDF98 end:0x800DE3A8
+ .sdata start:0x80217E80 end:0x80217EC0
+ .sbss start:0x80218700 end:0x80218720
+ .sdata2 start:0x80219278 end:0x80219288
+
+JSystem/JKernel/JKRDisposer.cpp:
+ .text start:0x80065AA0 end:0x80065B8C
+ .data start:0x800DE3A8 end:0x800DE3C0
+ .sdata start:0x80217EC0 end:0x80217EC8
+
+JSystem/JKernel/JKRThread.cpp:
+ .text start:0x80065B8C end:0x80065EF0
+ .text start:0x80065EF0 end:0x80065EF8
+ .ctors start:0x800A978C end:0x800A9790
+ .data start:0x800DE3C0 end:0x800DE3F8
+ .bss start:0x80207008 end:0x80207020
+ .sdata start:0x80217EC8 end:0x80217ED8
+
+JSystem/JKernel/JKRAram.cpp:
+ .text start:0x80065EF8 end:0x80066E84
+ .ctors start:0x800A9790 end:0x800A9794
+ .data start:0x800DE3F8 end:0x800DE4C0
+ .bss start:0x80207020 end:0x80207038
+ .sdata start:0x80217ED8 end:0x80217EF8
+ .sbss start:0x80218720 end:0x80218758
+
+JSystem/JKernel/JKRAramHeap.cpp:
+ .text start:0x80066E84 end:0x80067258
+ .ctors start:0x800A9794 end:0x800A9798
+ .data start:0x800DE4C0 end:0x800DE4F0
+ .bss start:0x80207038 end:0x80207050
+ .sdata start:0x80217EF8 end:0x80217F08
+
+JSystem/JKernel/JKRAramBlock.cpp:
+ .text start:0x80067258 end:0x800674C8
+ .data start:0x800DE4F0 end:0x800DE510
+ .sdata start:0x80217F08 end:0x80217F10
+
+JSystem/JKernel/JKRAramPiece.cpp:
+ .text start:0x800674C8 end:0x80067A88
+ .ctors start:0x800A9798 end:0x800A979C
+ .data start:0x800DE510 end:0x800DE568
+ .bss start:0x80207050 end:0x80207080
+ .sdata start:0x80217F10 end:0x80217F18
+
+JSystem/JKernel/JKRAramStream.cpp:
+ .text start:0x80067A88 end:0x80067F98
+ .text start:0x80067F98 end:0x80067FF4
+ .data start:0x800DE568 end:0x800DE608
+ .sdata start:0x80217F18 end:0x80217F38
+ .sbss start:0x80218758 end:0x80218768
+
+JSystem/JKernel/JKRFileLoader.cpp:
+ .text start:0x80067FF4 end:0x800685B0
+ .ctors start:0x800A979C end:0x800A97A0
+ .data start:0x800DE608 end:0x800DE670
+ .bss start:0x80207080 end:0x80207098
+ .sdata start:0x80217F38 end:0x80217F50
+ .sbss start:0x80218768 end:0x80218770
+
+JSystem/JKernel/JKRFileFinder.cpp:
+ .text start:0x800685B0 end:0x800686E8
+ .text start:0x800686E8 end:0x80068744
+ .data start:0x800DE670 end:0x800DE6B0
+ .sdata start:0x80217F50 end:0x80217F60
+
+JSystem/JKernel/JKRArchivePub.cpp:
+ .text start:0x80068744 end:0x80068ED0
+ .data start:0x800DE6B0 end:0x800DE740
+ .sdata start:0x80217F60 end:0x80217F78
+
+JSystem/JKernel/JKRArchivePri.cpp:
+ .text start:0x80068ED0 end:0x80069530
+ .sbss start:0x80218770 end:0x80218778
+
+JSystem/JKernel/JKRMemArchive.cpp:
+ .text start:0x80069530 end:0x80069A28
+ .data start:0x800DE740 end:0x800DE828
+ .sdata start:0x80217F78 end:0x80217F98
+
+JSystem/JKernel/JKRAramArchive.cpp:
+ .text start:0x80069A28 end:0x8006A49C
+ .text start:0x8006A49C end:0x8006A4FC
+ .data start:0x800DE828 end:0x800DE938
+ .sdata start:0x80217F98 end:0x80217FC8
+
+JSystem/JKernel/JKRDvdArchive.cpp:
+ .text start:0x8006A4FC end:0x8006ADD0
+ .text start:0x8006ADD0 end:0x8006ADD0
+ .data start:0x800DE938 end:0x800DEA70
+ .sdata start:0x80217FC8 end:0x80217FE8
+
+JSystem/JKernel/JKRCompArchive.cpp:
+ .text start:0x8006ADD0 end:0x8006B8A4
+ .text start:0x8006B8A4 end:0x8006B8A4
+ .data start:0x800DEA70 end:0x800DEBA8
+ .sdata start:0x80217FE8 end:0x80218008
+
+JSystem/JKernel/JKRDvdFile.cpp:
+ .text start:0x8006B8A4 end:0x8006BD6C
+ .text start:0x8006BD6C end:0x8006BD6C
+ .text start:0x8006BD6C end:0x8006BE0C
+ .ctors start:0x800A97A0 end:0x800A97A4
+ .data start:0x800DEBA8 end:0x800DEC30
+ .bss start:0x80207098 end:0x802070B0
+ .sdata start:0x80218008 end:0x80218028
+
+JSystem/JKernel/JKRDvdRipper.cpp:
+ .text start:0x8006BE0C end:0x8006C85C
+ .text start:0x8006C85C end:0x8006C85C
+ .text start:0x8006C85C end:0x8006C8FC
+ .ctors start:0x800A97A4 end:0x800A97A8
+ .data start:0x800DEC30 end:0x800DEC90
+ .bss start:0x802070B0 end:0x802070C8
+ .sdata start:0x80218028 end:0x80218030
+ .sbss start:0x80218778 end:0x802187A8
+
+JSystem/JKernel/JKRDvdAramRipper.cpp:
+ .text start:0x8006C8FC end:0x8006D608
+ .text start:0x8006D608 end:0x8006D608
+ .text start:0x8006D608 end:0x8006D608
+ .ctors start:0x800A97A8 end:0x800A97AC
+ .bss start:0x802070C8 end:0x802070E0
+ .sdata start:0x80218030 end:0x80218038
+ .sbss start:0x802187A8 end:0x802187E8
+
+JSystem/JKernel/JKRDecomp.cpp:
+ .text start:0x8006D608 end:0x8006DD58
+ .data start:0x800DEC90 end:0x800DED18
+ .sdata start:0x80218038 end:0x80218050
+ .sbss start:0x802187E8 end:0x802187F0
+
+JSystem/JSupport/JSUList.cpp:
+ .text start:0x8006DD58 end:0x8006E168
+
+JSystem/JSupport/JSUInputStream.cpp:
+ .text start:0x8006E168 end:0x8006E33C
+ .text start:0x8006E33C end:0x8006E39C
+ .text start:0x8006E39C end:0x8006E3E4
+ .data start:0x800DED18 end:0x800DEDB8
+ .sdata start:0x80218050 end:0x80218068
+
+JSystem/JSupport/JSUFileStream.cpp:
+ .text start:0x8006E3E4 end:0x8006E5CC
+ .text start:0x8006E5CC end:0x8006E5CC
+ .text start:0x8006E5CC end:0x8006E5CC
+ .text start:0x8006E5CC end:0x8006E5CC
+ .text start:0x8006E5CC end:0x8006E604
+ .data start:0x800DEDB8 end:0x800DEE60
+ .sdata start:0x80218068 end:0x80218088
+
+JSystem/JGadget/linklist.cpp:
+ .text start:0x8006E604 end:0x8006E800
+
+JSystem/JUtility/JUTGraphFifo.cpp:
+ .text start:0x8006E800 end:0x8006E9A0
+ .data start:0x800DEE60 end:0x800DEE80
+ .sdata start:0x80218088 end:0x80218090
+ .sbss start:0x802187F0 end:0x80218800
+
+JSystem/JUtility/JUTFont.cpp:
+ .text start:0x8006E9A0 end:0x8006EBBC
+ .text start:0x8006EBBC end:0x8006EC88
+ .data start:0x800DEE80 end:0x800DEEC8
+ .sdata start:0x80218090 end:0x802180A0
+
+JSystem/JUtility/JUTResFont.cpp:
+ .text start:0x8006EC88 end:0x8006FDF0
+ .text start:0x8006FDF0 end:0x8006FE30
+ .text start:0x8006FE30 end:0x8006FE30
+ .rodata start:0x800AB170 end:0x800AB240
+ .data start:0x800DEEC8 end:0x800DEF60
+ .sdata start:0x802180A0 end:0x802180B8
+ .sdata2 start:0x80219288 end:0x802192A0
+
+JSystem/JUtility/JUTDbPrint.cpp:
+ .text start:0x8006FE30 end:0x80070274
+ .text start:0x80070274 end:0x80070274
+ .sbss start:0x80218800 end:0x80218808
+ .sdata2 start:0x802192A0 end:0x802192C0
+
+JSystem/JUtility/JUTGamePad.cpp:
+ .text start:0x80070274 end:0x80071228
+ .text start:0x80071228 end:0x800713B0
+ .ctors start:0x800A97AC end:0x800A97B0
+ .rodata start:0x800AB240 end:0x800AB260
+ .data start:0x800DEF60 end:0x800DEFA0
+ .bss start:0x802070E0 end:0x80207268
+ .sdata start:0x802180B8 end:0x802180D0
+ .sbss start:0x80218808 end:0x80218838
+ .sdata2 start:0x802192C0 end:0x80219300
+
+JSystem/JUtility/JUTFontData_Ascfont_fix12.s: comment:0
+ .rodata start:0x800AB260 end:0x800AF3C0
+
+JSystem/JUtility/JUTException.cpp:
+ .text start:0x800713B0 end:0x800730C8
+ .text start:0x800730C8 end:0x800731C4
+ .ctors start:0x800A97B0 end:0x800A97B4
+ .data start:0x800DEFA0 end:0x800DF410
+ .bss start:0x80207268 end:0x80207298
+ .sdata start:0x802180D0 end:0x80218118
+ .sbss start:0x80218838 end:0x80218858
+ .sdata2 start:0x80219300 end:0x80219310
+
+JSystem/JUtility/JUTDirectPrint.cpp:
+ .text start:0x800731C4 end:0x80073674
+ .data start:0x800DF410 end:0x800DF6C8
+ .sdata start:0x80218118 end:0x80218120
+ .sbss start:0x80218858 end:0x80218860
+
+JSystem/JUtility/JUTAssert.cpp:
+ .text start:0x80073674 end:0x80073908
+ .bss start:0x80207298 end:0x80207340
+ .sdata start:0x80218120 end:0x80218130
+ .sbss start:0x80218860 end:0x80218868
+ .sdata2 start:0x80219310 end:0x80219328
+
+JSystem/JUtility/JUTVideo.cpp:
+ .text start:0x80073908 end:0x80073E64
+ .data start:0x800DF6C8 end:0x800DF6E0
+ .sdata start:0x80218130 end:0x80218138
+ .sbss start:0x80218868 end:0x80218880
+
+JSystem/JUtility/JUTXfb.cpp:
+ .text start:0x80073E64 end:0x8007418C
+ .sbss start:0x80218880 end:0x80218888
+
+JSystem/JUtility/JUTFader.cpp:
+ .text start:0x8007418C end:0x8007442C
+ .text start:0x8007442C end:0x8007442C
+ .text start:0x8007442C end:0x8007442C
+ .data start:0x800DF6E0 end:0x800DF708
+ .sdata start:0x80218138 end:0x80218140
+ .sdata2 start:0x80219328 end:0x80219330
+
+JSystem/JUtility/JUTProcBar.cpp:
+ .text start:0x8007442C end:0x80075EE8
+ .text start:0x80075EE8 end:0x80075EFC
+ .sdata start:0x80218140 end:0x80218148
+ .sbss start:0x80218888 end:0x802188A0
+ .sdata2 start:0x80219330 end:0x80219370
+
+JSystem/JUtility/JUTConsole.cpp:
+ .text start:0x80075EFC end:0x80077294
+ .text start:0x80077294 end:0x80077294
+ .data start:0x800DF708 end:0x800DF730
+ .sdata start:0x80218148 end:0x80218158
+ .sbss start:0x802188A0 end:0x802188B0
+ .sdata2 start:0x80219370 end:0x802193A0
+
+JSystem/JUtility/JUTDirectFile.cpp:
+ .text start:0x80077294 end:0x80077674
+
+JSystem/J2DGraph/J2DGrafContext.cpp:
+ .text start:0x80077674 end:0x800780DC
+ .text start:0x800780DC end:0x80078178
+ .data start:0x800DF730 end:0x800DF768
+ .sdata start:0x80218158 end:0x80218160
+ .sdata2 start:0x802193A0 end:0x802193B8
+
+JSystem/J2DGraph/J2DOrthoGraph.cpp:
+ .text start:0x80078178 end:0x80078674
+ .text start:0x80078674 end:0x80078674
+ .text start:0x80078674 end:0x8007867C
+ .data start:0x800DF768 end:0x800DF7C0
+ .sdata start:0x80218160 end:0x80218170
+ .sdata2 start:0x802193B8 end:0x802193C0
+
+dolphin/base/PPCArch.c:
+ .text start:0x8007867C end:0x80078718
+
+dolphin/os/OS.c:
+ .text start:0x80078718 end:0x80079074
+ .data start:0x800DF7C0 end:0x800DF980
+ .bss start:0x80207340 end:0x80207390
+ .sbss start:0x802188B0 end:0x802188E0
+
+dolphin/os/OSAlarm.c:
+ .text start:0x80079074 end:0x80079720
+ .sbss start:0x802188E0 end:0x802188E8
+
+dolphin/os/OSAlloc.c:
+ .text start:0x80079720 end:0x8007988C
+ .sdata start:0x80218170 end:0x80218178
+ .sbss start:0x802188E8 end:0x802188F8
+
+dolphin/os/OSArena.c:
+ .text start:0x8007988C end:0x800798AC
+ .sdata start:0x80218178 end:0x80218180
+ .sbss start:0x802188F8 end:0x80218900
+
+dolphin/os/OSAudioSystem.c:
+ .text start:0x800798AC end:0x80079B40
+ .data start:0x800DF980 end:0x800DFA00
+
+dolphin/os/OSCache.c:
+ .text start:0x80079B40 end:0x8007A01C
+ .data start:0x800DFA00 end:0x800DFC30
+
+dolphin/os/OSContext.c:
+ .text start:0x8007A01C end:0x8007A9B0
+ .data start:0x800DFC30 end:0x800DFE08
+
+dolphin/os/OSError.c:
+ .text start:0x8007A9B0 end:0x8007ABCC
+ .data start:0x800DFE08 end:0x800E0128
+ .bss start:0x80207390 end:0x802073E0
+ .sdata start:0x80218180 end:0x80218188
+
+dolphin/os/OSFont.c:
+ .text start:0x8007ABCC end:0x8007AC24
+ .sdata start:0x80218188 end:0x80218190
+
+dolphin/os/OSInterrupt.c:
+ .text start:0x8007AC24 end:0x8007B490
+ .data start:0x800E0128 end:0x800E0158
+ .sbss start:0x80218900 end:0x80218918
+
+dolphin/os/OSLink.c:
+ .text start:0x8007B490 end:0x8007BC20
+ .data start:0x800E0158 end:0x800E01A8
+
+dolphin/os/OSMessage.c:
+ .text start:0x8007BC20 end:0x8007BEF8
+
+dolphin/os/OSMemory.c:
+ .text start:0x8007BEF8 end:0x8007C2A8
+ .data start:0x800E01A8 end:0x800E01B8
+
+dolphin/os/OSMutex.c:
+ .text start:0x8007C2A8 end:0x8007C6A0
+
+dolphin/os/OSReboot.c:
+ .text start:0x8007C6A0 end:0x8007C8C0
+ .bss start:0x802073E0 end:0x80207400
+ .sbss start:0x80218918 end:0x80218928
+
+dolphin/os/OSReset.c:
+ .text start:0x8007C8C0 end:0x8007CCA4
+ .sbss start:0x80218928 end:0x80218930
+
+dolphin/os/OSResetSW.c:
+ .text start:0x8007CCA4 end:0x8007D050
+ .sbss start:0x80218930 end:0x80218950
+
+dolphin/os/OSRtc.c:
+ .text start:0x8007D050 end:0x8007DB20
+ .bss start:0x80207400 end:0x80207458
+
+dolphin/os/OSSync.c:
+ .text start:0x8007DB20 end:0x8007DBA4
+
+dolphin/os/OSThread.c:
+ .text start:0x8007DBA4 end:0x8007F6F8
+ .data start:0x800E01B8 end:0x800E09C8
+ .bss start:0x80207458 end:0x80207E40
+ .sdata start:0x80218190 end:0x80218198
+ .sbss start:0x80218950 end:0x80218960
+
+dolphin/os/OSTime.c:
+ .text start:0x8007F6F8 end:0x8007FDFC
+ .data start:0x800E09C8 end:0x800E0A28
+
+dolphin/os/__ppc_eabi_init.cpp:
+ .init start:0x80003354 end:0x800033A8
+ .text start:0x8007FDFC end:0x8007FE90
+
+dolphin/exi/EXIBios.c:
+ .text start:0x8007FE90 end:0x80081764
+ .bss start:0x80207E40 end:0x80207F00
+
+dolphin/exi/EXIUart.c:
+ .text start:0x80081764 end:0x800819D4
+ .sbss start:0x80218960 end:0x80218970
+
+dolphin/si/SIBios.c:
+ .text start:0x800819D4 end:0x800830B4
+ .data start:0x800E0A28 end:0x800E0AF8
+ .bss start:0x80207F00 end:0x80208100
+ .sbss start:0x80218970 end:0x80218980
+
+dolphin/si/SISamplingRate.c:
+ .text start:0x800830B4 end:0x800831BC
+ .data start:0x800E0AF8 end:0x800E0B90
+ .sbss start:0x80218980 end:0x80218988
+
+dolphin/db/db.c:
+ .text start:0x800831BC end:0x800832A8
+ .data start:0x800E0B90 end:0x800E0BA8
+ .sbss start:0x80218988 end:0x80218990
+
+dolphin/mtx/mtx.c:
+ .text start:0x800832A8 end:0x8008373C
+ .sdata start:0x80218198 end:0x802181A0
+ .sdata2 start:0x802193C0 end:0x802193D0
+
+dolphin/mtx/mtxvec.c:
+ .text start:0x8008373C end:0x80083790
+
+dolphin/mtx/mtx44.c:
+ .text start:0x80083790 end:0x80083828
+ .sdata2 start:0x802193D0 end:0x802193E0
+
+dolphin/mtx/vec.c:
+ .text start:0x80083828 end:0x800838A8
+ .sdata2 start:0x802193E0 end:0x802193E8
+
+dolphin/dvd/dvdlow.c:
+ .text start:0x800838A8 end:0x800846FC
+ .bss start:0x80208100 end:0x802081E0
+ .sdata start:0x802181A0 end:0x802181A8
+ .sbss start:0x80218990 end:0x802189D8
+
+dolphin/dvd/dvdfs.c:
+ .text start:0x800846FC end:0x800850F4
+ .data start:0x800E0BA8 end:0x800E0F98
+ .sdata start:0x802181A8 end:0x802181B0
+ .sbss start:0x802189D8 end:0x802189F8
+
+dolphin/dvd/dvd.c:
+ .text start:0x800850F4 end:0x800877C0
+ .data start:0x800E0F98 end:0x800E10B0
+ .bss start:0x802081E0 end:0x802082B8
+ .sdata start:0x802181B0 end:0x802181B8
+ .sbss start:0x802189F8 end:0x80218A40
+
+dolphin/dvd/dvdqueue.c:
+ .text start:0x800877C0 end:0x800879B8
+ .bss start:0x802082B8 end:0x802082D8
+
+dolphin/dvd/dvderror.c:
+ .text start:0x800879B8 end:0x80087B50
+ .data start:0x800E10B0 end:0x800E10F8
+
+dolphin/dvd/fstload.c:
+ .text start:0x80087B50 end:0x80087D90
+ .data start:0x800E10F8 end:0x800E1168
+ .bss start:0x802082D8 end:0x80208348
+ .sdata start:0x802181B8 end:0x802181C8
+ .sbss start:0x80218A40 end:0x80218A50
+
+dolphin/vi/vi.c:
+ .text start:0x80087D90 end:0x80089AFC
+ .data start:0x800E1168 end:0x800E1430
+ .bss start:0x80208348 end:0x80208490
+ .sbss start:0x80218A50 end:0x80218AA0
+
+dolphin/pad/Padclamp.c:
+ .text start:0x80089AFC end:0x80089D34
+ .sdata start:0x802181C8 end:0x802181D0
+
+dolphin/pad/Pad.c:
+ .text start:0x80089D34 end:0x8008B928
+ .data start:0x800E1430 end:0x800E1440
+ .bss start:0x80208490 end:0x802084E0
+ .sdata start:0x802181D0 end:0x802181F0
+ .sbss start:0x80218AA0 end:0x80218AC8
+
+dolphin/ai/ai.c:
+ .text start:0x8008B928 end:0x8008C230
+ .sbss start:0x80218AC8 end:0x80218B08
+
+dolphin/ar/ar.c:
+ .text start:0x8008C230 end:0x8008CE24
+ .sbss start:0x80218B08 end:0x80218B28
+
+dolphin/ar/arq.c:
+ .text start:0x8008CE24 end:0x8008D1B8
+ .sbss start:0x80218B28 end:0x80218B50
+
+dolphin/dsp/dsp.c:
+ .text start:0x8008D1B8 end:0x8008D204
+
+dolphin/card/CARDBios.c:
+ .text start:0x8008D204 end:0x8008E554
+ .data start:0x800E1440 end:0x800E1450
+ .bss start:0x802084E0 end:0x80208720
+
+dolphin/card/CARDRdwr.c:
+ .text start:0x8008E554 end:0x8008E7D4
+
+dolphin/card/CARDBlock.c:
+ .text start:0x8008E7D4 end:0x8008EBD8
+
+dolphin/card/CARDDir.c:
+ .text start:0x8008EBD8 end:0x8008EE3C
+
+dolphin/card/CARDCheck.c:
+ .text start:0x8008EE3C end:0x8008FDCC
+
+dolphin/card/CARDMount.c:
+ .text start:0x8008FDCC end:0x8009088C
+ .data start:0x800E1450 end:0x800E1490
+
+dolphin/card/CARDFormat.c:
+ .text start:0x8009088C end:0x800910C4
+
+dolphin/card/CARDOpen.c:
+ .text start:0x800910C4 end:0x80091678
+
+dolphin/card/CARDCreate.c:
+ .text start:0x80091678 end:0x80091A10
+
+dolphin/card/CARDRead.c:
+ .text start:0x80091A10 end:0x80091E88
+
+dolphin/card/CARDWrite.c:
+ .text start:0x80091E88 end:0x80092204
+
+dolphin/card/CARDDelete.c:
+ .text start:0x80092204 end:0x80092400
+
+dolphin/card/CARDStat.c:
+ .text start:0x80092400 end:0x800928E0
+
+dolphin/card/CARDRename.c:
+ .text start:0x800928E0 end:0x80092B24
+
+dolphin/card/CARDStatEx.c:
+ .text start:0x80092B24 end:0x80092E7C
+
+dolphin/card/CARDNet.c:
+ .text start:0x80092E7C end:0x80092F40
+ .sdata start:0x802181F0 end:0x802181F8
+
+dolphin/gx/GXInit.c:
+ .text start:0x80092F40 end:0x80094030
+ .bss start:0x80208720 end:0x80208C98
+ .sdata start:0x802181F8 end:0x80218200
+ .sbss start:0x80218B50 end:0x80218B60
+ .sdata2 start:0x802193E8 end:0x80219408
+
+dolphin/gx/GXFifo.c:
+ .text start:0x80094030 end:0x80094910
+ .sbss start:0x80218B60 end:0x80218B80
+
+dolphin/gx/GXAttr.c:
+ .text start:0x80094910 end:0x80095738
+ .data start:0x800E1490 end:0x800E15B0
+ .sdata start:0x80218200 end:0x80218210
+
+dolphin/gx/GXMisc.c:
+ .text start:0x80095738 end:0x80095D24
+ .sbss start:0x80218B80 end:0x80218B98
+
+dolphin/gx/GXGeometry.c:
+ .text start:0x80095D24 end:0x80096104
+
+dolphin/gx/GXFrameBuf.c:
+ .text start:0x80096104 end:0x80096B98
+ .data start:0x800E15B0 end:0x800E16E0
+ .sdata2 start:0x80219408 end:0x80219410
+
+dolphin/gx/GXLight.c:
+ .text start:0x80096B98 end:0x80097250
+
+dolphin/gx/GXTexture.c:
+ .text start:0x80097250 end:0x800981D0
+ .data start:0x800E16E0 end:0x800E1810
+ .sdata start:0x80218210 end:0x80218250
+ .sdata2 start:0x80219410 end:0x80219438
+
+dolphin/gx/GXBump.c:
+ .text start:0x800981D0 end:0x8009883C
+ .sdata2 start:0x80219438 end:0x80219440
+
+dolphin/gx/GXTev.c:
+ .text start:0x8009883C end:0x8009918C
+ .data start:0x800E1810 end:0x800E1838
+
+dolphin/gx/GXPixel.c:
+ .text start:0x8009918C end:0x800998D4
+ .data start:0x800E1838 end:0x800E1858
+ .sdata2 start:0x80219440 end:0x80219470
+
+dolphin/gx/GXStubs.c:
+ .text start:0x800998D4 end:0x800998D8
+
+dolphin/gx/GXDisplayList.c:
+ .text start:0x800998D8 end:0x80099AE4
+ .bss start:0x80208C98 end:0x802091B8
+ .sbss start:0x80218B98 end:0x80218BA0
+
+dolphin/gx/GXTransform.c:
+ .text start:0x80099AE4 end:0x8009A060
+ .sdata2 start:0x80219470 end:0x80219480
+
+dolphin/gx/GXPerf.c:
+ .text start:0x8009A060 end:0x8009A9CC
+ .data start:0x800E1858 end:0x800E1948
+
+Runtime.PPCEABI.H/__va_arg.c:
+ .text start:0x8009A9CC end:0x8009AA94
+
+Runtime.PPCEABI.H/global_destructor_chain.c:
+ .text start:0x8009AA94 end:0x8009AAF4
+ .dtors start:0x800A97C8 end:0x800A97CC
+ .sbss start:0x80218BA0 end:0x80218BA8
+
+Runtime.PPCEABI.H/CPlusLibPPC.cp:
+ .text start:0x8009AAF4 end:0x8009AB24
+
+Runtime.PPCEABI.H/NMWException.cp:
+ extab start:0x80005620 end:0x80005648
+ extabindex start:0x80005660 end:0x80005684
+ .text start:0x8009AB24 end:0x8009AD4C
+
+Runtime.PPCEABI.H/ptmf.c:
+ .text start:0x8009AD4C end:0x8009ADA4
+
+Runtime.PPCEABI.H/runtime.c:
+ .text start:0x8009ADA4 end:0x8009B520
+ .rodata start:0x800AF3C0 end:0x800AF3D8
+
+Runtime.PPCEABI.H/__init_cpp_exceptions.cpp:
+ .text start:0x8009B520 end:0x8009B59C
+ .ctors start:0x800A9780 end:0x800A9784
+ .dtors start:0x800A97C0 end:0x800A97C8
+ .sdata start:0x80218250 end:0x80218258
+
+Runtime.PPCEABI.H/Gecko_ExceptionPPC.cp:
+ .text start:0x8009B59C end:0x8009B604
+ .bss start:0x802091B8 end:0x802091C8
+
+MSL_C.PPCEABI.bare.H/abort_exit.c:
+ .text start:0x8009B604 end:0x8009B6D0
+ .bss start:0x802091C8 end:0x802092C8
+ .sbss start:0x80218BA8 end:0x80218BB8
+
+MSL_C.PPCEABI.bare.H/errno.c:
+ .sbss start:0x80218BB8 end:0x80218BC0
+
+MSL_C.PPCEABI.bare.H/ansi_files.c:
+ .text start:0x8009B6D0 end:0x8009B7D8
+ .data start:0x800E1948 end:0x800E1A88
+ .bss start:0x802092C8 end:0x802095C8
+
+MSL_C.PPCEABI.bare.H/ansi_fp.c:
+ .text start:0x8009B7D8 end:0x8009C3F0
+ .rodata start:0x800AF3D8 end:0x800AF4B8
+ .data start:0x800E1A88 end:0x800E1BB0
+ .sdata2 start:0x80219480 end:0x80219488
+
+MSL_C.PPCEABI.bare.H/arith.c:
+ .text start:0x8009C3F0 end:0x8009C5A4
+
+MSL_C.PPCEABI.bare.H/buffer_io.c:
+ .text start:0x8009C5A4 end:0x8009C69C
+
+MSL_C.PPCEABI.bare.H/ctype.c:
+ .text start:0x8009C69C end:0x8009C6C0
+ .data start:0x800E1BB0 end:0x800E1EB0
+
+MSL_C.PPCEABI.bare.H/direct_io.c:
+ .text start:0x8009C6C0 end:0x8009C9EC
+
+MSL_C.PPCEABI.bare.H/file_io.c:
+ .text start:0x8009C9EC end:0x8009CBE4
+
+MSL_C.PPCEABI.bare.H/FILE_POS.C:
+ .text start:0x8009CBE4 end:0x8009CEB0
+
+MSL_C.PPCEABI.bare.H/mbstring.c:
+ .text start:0x8009CEB0 end:0x8009CFF4
+ .sdata2 start:0x80219488 end:0x80219490
+
+MSL_C.PPCEABI.bare.H/mem.c:
+ .text start:0x8009CFF4 end:0x8009D164
+
+MSL_C.PPCEABI.bare.H/mem_funcs.c:
+ .text start:0x8009D164 end:0x8009D444
+
+MSL_C.PPCEABI.bare.H/misc_io.c:
+ .text start:0x8009D444 end:0x8009D454
+
+MSL_C.PPCEABI.bare.H/printf.c:
+ .text start:0x8009D454 end:0x8009F46C
+ .rodata start:0x800AF4B8 end:0x800AF4E0
+ .data start:0x800E1EB0 end:0x800E20E0
+ .sdata start:0x80218258 end:0x80218260
+ .sdata2 start:0x80219490 end:0x80219498
+
+MSL_C.PPCEABI.bare.H/rand.c:
+ .text start:0x8009F46C end:0x8009F494
+ .sdata start:0x80218260 end:0x80218268
+
+MSL_C.PPCEABI.bare.H/float.c:
+ .sdata start:0x80218268 end:0x80218270
+
+MSL_C.PPCEABI.bare.H/scanf.c:
+ .text start:0x8009F494 end:0x8009F524
+
+MSL_C.PPCEABI.bare.H/string.c:
+ .text start:0x8009F524 end:0x8009F868
+
+MSL_C.PPCEABI.bare.H/strtoul.c:
+ .text start:0x8009F868 end:0x8009FCD0
+ .data start:0x800E20E0 end:0x800E2128
+
+MSL_C.PPCEABI.bare.H/uart_console_io.c:
+ .text start:0x8009FCD0 end:0x8009FD9C
+ .sbss start:0x80218BC0 end:0x80218BC8
+
+MSL_C.PPCEABI.bare.H/wchar_io.c:
+ .text start:0x8009FD9C end:0x8009FE24
+
+MSL_C.PPCEABI.bare.H/e_acos.c:
+ .text start:0x8009FE24 end:0x800A0134
+ .sdata2 start:0x80219498 end:0x80219528
+
+MSL_C.PPCEABI.bare.H/e_atan2.c:
+ .text start:0x800A0134 end:0x800A03C4
+ .sdata2 start:0x80219528 end:0x80219580
+
+MSL_C.PPCEABI.bare.H/e_rem_pio2.c:
+ .text start:0x800A03C4 end:0x800A0764
+ .rodata start:0x800AF4E0 end:0x800AF668
+ .sdata2 start:0x80219580 end:0x802195D8
+
+MSL_C.PPCEABI.bare.H/k_cos.c:
+ .text start:0x800A0764 end:0x800A0858
+ .sdata2 start:0x802195D8 end:0x80219620
+
+MSL_C.PPCEABI.bare.H/k_rem_pio2.c:
+ .text start:0x800A0858 end:0x800A16AC
+ .rodata start:0x800AF668 end:0x800AF6B8
+ .sdata2 start:0x80219620 end:0x80219660
+
+MSL_C.PPCEABI.bare.H/k_sin.c:
+ .text start:0x800A16AC end:0x800A174C
+ .sdata2 start:0x80219660 end:0x80219698
+
+MSL_C.PPCEABI.bare.H/s_atan.c:
+ .text start:0x800A174C end:0x800A194C
+ .rodata start:0x800AF6B8 end:0x800AF750
+ .sdata2 start:0x80219698 end:0x802196C0
+
+MSL_C.PPCEABI.bare.H/s_copysign.c:
+ .text start:0x800A194C end:0x800A1974
+
+MSL_C.PPCEABI.bare.H/s_cos.c:
+ .text start:0x800A1974 end:0x800A1A48
+ .sdata2 start:0x802196C0 end:0x802196C8
+
+MSL_C.PPCEABI.bare.H/s_floor.c:
+ .text start:0x800A1A48 end:0x800A1B90
+ .sdata2 start:0x802196C8 end:0x802196D8
+
+MSL_C.PPCEABI.bare.H/s_frexp.c:
+ .text start:0x800A1B90 end:0x800A1C1C
+ .sdata2 start:0x802196D8 end:0x802196E0
+
+MSL_C.PPCEABI.bare.H/s_ldexp.c:
+ .text start:0x800A1C1C end:0x800A1DE0
+ .sdata2 start:0x802196E0 end:0x80219708
+
+MSL_C.PPCEABI.bare.H/s_modf.c:
+ .text start:0x800A1DE0 end:0x800A1EDC
+
+MSL_C.PPCEABI.bare.H/s_sin.c:
+ .text start:0x800A1EDC end:0x800A1FB4
+ .sdata2 start:0x80219708 end:0x80219710
+
+MSL_C.PPCEABI.bare.H/w_acos.c:
+ .text start:0x800A1FB4 end:0x800A1FD4
+
+MSL_C.PPCEABI.bare.H/w_atan2.c:
+ .text start:0x800A1FD4 end:0x800A1FF4
+
+TRK_MINNOW_DOLPHIN/mainloop.c:
+ .text start:0x800A1FF4 end:0x800A20EC
+
+TRK_MINNOW_DOLPHIN/nubevent.c:
+ .text start:0x800A20EC end:0x800A2314
+ .bss start:0x802095C8 end:0x802095F0
+
+TRK_MINNOW_DOLPHIN/nubinit.c:
+ .text start:0x800A2314 end:0x800A2494
+ .rodata start:0x800AF750 end:0x800AF770
+ .bss start:0x802095F0 end:0x802095F8
+
+TRK_MINNOW_DOLPHIN/msg.c:
+ .text start:0x800A2494 end:0x800A2670
+
+TRK_MINNOW_DOLPHIN/msgbuf.c:
+ .text start:0x800A2670 end:0x800A309C
+ .rodata start:0x800AF770 end:0x800AF790
+ .bss start:0x802095F8 end:0x8020AFA8
+
+TRK_MINNOW_DOLPHIN/serpoll.c:
+ .text start:0x800A309C end:0x800A3468
+ .bss start:0x8020AFA8 end:0x8020AFC0
+
+TRK_MINNOW_DOLPHIN/usr_put.c:
+ .text start:0x800A3468 end:0x800A34F4
+
+TRK_MINNOW_DOLPHIN/dispatch.c:
+ .text start:0x800A34F4 end:0x800A3590
+ .data start:0x800E2128 end:0x800E21B0
+ .bss start:0x8020AFC0 end:0x8020AFC8
+
+TRK_MINNOW_DOLPHIN/msghndlr.c:
+ .text start:0x800A3590 end:0x800A5DF0
+ .data start:0x800E21B0 end:0x800E21E8
+ .bss start:0x8020AFC8 end:0x8020AFD0
+
+TRK_MINNOW_DOLPHIN/support.c:
+ .text start:0x800A5DF0 end:0x800A66B0
+
+TRK_MINNOW_DOLPHIN/mutex_TRK.c:
+ .text start:0x800A66B0 end:0x800A66C8
+
+TRK_MINNOW_DOLPHIN/notify.c:
+ .text start:0x800A66C8 end:0x800A67A0
+
+TRK_MINNOW_DOLPHIN/flush_cache.c:
+ .text start:0x800A67A0 end:0x800A67D8
+
+Runtime.PPCEABI.H/__mem.c:
+ .init start:0x800033A8 end:0x800034E0
+
+TRK_MINNOW_DOLPHIN/mem_TRK.c:
+ .init start:0x800034E0 end:0x80003534
+ .text start:0x800A67D8 end:0x800A6894
+
+TRK_MINNOW_DOLPHIN/targimpl.c:
+ .text start:0x800A6894 end:0x800A8130
+ .rodata start:0x800AF790 end:0x800AF818
+ .data start:0x800E21E8 end:0x800E2218
+ .bss start:0x8020AFD0 end:0x8020B550
+
+TRK_MINNOW_DOLPHIN/targsupp.s: comment:0
+ .text start:0x800A8130 end:0x800A8150 align:16
+
+TRK_MINNOW_DOLPHIN/__exception.s: comment:0
+ .init start:0x80003534 end:0x80005468
+
+TRK_MINNOW_DOLPHIN/dolphin_trk.c:
+ .init start:0x80005468 end:0x8000556C
+ .text start:0x800A8150 end:0x800A8290
+ .data start:0x800E2218 end:0x800E2258
+ .bss start:0x8020B550 end:0x8020B558
+
+TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c:
+ .text start:0x800A8290 end:0x800A8608
+
+TRK_MINNOW_DOLPHIN/main_TRK.c:
+ .text start:0x800A8608 end:0x800A864C
+ .bss start:0x8020B558 end:0x8020B560
+
+TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c:
+ .text start:0x800A864C end:0x800A8AF8
+ .rodata start:0x800AF818 end:0x800AF860
+ .data start:0x800E2258 end:0x800E2274
+ .bss start:0x8020B560 end:0x8020D788
+
+TRK_MINNOW_DOLPHIN/targcont.c:
+ .text start:0x800A8AF8 end:0x800A8B2C
+
+TRK_MINNOW_DOLPHIN/target_options.c:
+ .text start:0x800A8B2C end:0x800A8B48
+ .bss start:0x8020D788 end:0x8020D78C
+
+TRK_MINNOW_DOLPHIN/mslsupp.c:
+ .text start:0x800A8B48 end:0x800A8CC0
+
+dolphin/amcstubs/AmcExi2Stubs.c:
+ .text start:0x800A8CC0 end:0x800A8CF0
+
+dolphin/OdemuExi2/DebuggerDriver.c:
+ .text start:0x800A8CF0 end:0x800A9770
+ .sdata start:0x80218270 end:0x80218271
+ .sbss start:0x80218BC8 end:0x80218BDD
+
+dolphin/odenotstub/odenotstub.c:
+ .text start:0x800A9770 end:0x800A9778
diff --git a/config/GAFE01_00/symbols.txt b/config/GAFE01_00/symbols.txt
new file mode 100644
index 00000000..004154ef
--- /dev/null
+++ b/config/GAFE01_00/symbols.txt
@@ -0,0 +1,6541 @@
+__check_pad3 = .init:0x80003100; // type:function size:0x40 scope:global align:4
+__start = .init:0x80003140; // type:function size:0x138 scope:global align:4
+__init_registers = .init:0x80003278; // type:function size:0x1C scope:global align:4
+__init_data = .init:0x80003294; // type:function size:0xC0 scope:global align:4
+__init_hardware = .init:0x80003354; // type:function size:0x20 scope:global align:4
+__flush_cache = .init:0x80003374; // type:function size:0x34 scope:global align:4
+memset = .init:0x800033A8; // type:function size:0x30 scope:global align:4
+__fill_mem = .init:0x800033D8; // type:function size:0xB8 scope:global align:4
+memcpy = .init:0x80003490; // type:function size:0x50 scope:global align:4
+TRK_memset = .init:0x800034E0; // type:function size:0x30 scope:global align:4
+TRK_memcpy = .init:0x80003510; // type:function size:0x24 scope:global align:4
+gTRKInterruptVectorTable = .init:0x80003534; // type:label scope:global
+gTRKInterruptVectorTableEnd = .init:0x80005468; // type:label scope:global
+__TRK_reset = .init:0x80005468; // type:function size:0x104 scope:global align:4
+_rom_copy_info = .init:0x8000556C; // type:object size:0x84 scope:global data:4byte
+_bss_init_info = .init:0x800055F0; // type:object size:0x18 scope:global data:4byte
+@210 = extab:0x80005620; // type:object size:0x8 scope:local align:4
+@231 = extab:0x80005628; // type:object size:0x18 scope:local align:4
+@239 = extab:0x80005640; // type:object size:0x8 scope:local align:4
+@211 = extabindex:0x80005660; // type:object size:0xC scope:local align:4
+@232 = extabindex:0x8000566C; // type:object size:0xC scope:local align:4
+@240 = extabindex:0x80005678; // type:object size:0xC scope:local align:4
+_eti_init_info = extabindex:0x80005684; // type:object size:0x20 scope:global
+soundArenaAlloc = .text:0x800056C0; // type:function size:0x8 scope:global align:4
+search_partial_address = .text:0x800056C8; // type:function size:0xC0 scope:global align:4
+convert_partial_address = .text:0x80005788; // type:function size:0x60 scope:global align:4
+LoadStringTable = .text:0x800057E8; // type:function size:0x88 scope:global align:4
+UnLink = .text:0x80005870; // type:function size:0x94 scope:global align:4
+LoadLink = .text:0x80005904; // type:function size:0x1A4 scope:global align:4
+audioFatalCallback = .text:0x80005AA8; // type:function size:0x30 scope:global align:4
+sound_initial = .text:0x80005AD8; // type:function size:0x8C scope:global align:4
+sound_initial2 = .text:0x80005B64; // type:function size:0x48 scope:global align:4
+HotResetIplMenu = .text:0x80005BAC; // type:function size:0x50 scope:global align:4
+fault_callback_keyCheck = .text:0x80005BFC; // type:function size:0x94 scope:global align:4
+fault_callback_OK = .text:0x80005C90; // type:function size:0x34 scope:global align:4
+fault_callback_Setumei = .text:0x80005CC4; // type:function size:0x2C scope:global align:4
+fault_callback_vimode = .text:0x80005CF0; // type:function size:0xD0 scope:global align:4
+fault_callback_scroll = .text:0x80005DC0; // type:function size:0x244 scope:global align:4
+adjustOSArena = .text:0x80006004; // type:function size:0xF4 scope:global align:4
+main = .text:0x800060F8; // type:function size:0x544 scope:global align:4
+ReportDiskID__Fv = .text:0x8000663C; // type:function size:0x20 scope:global align:4
+JW_UpdateVideoMode = .text:0x8000665C; // type:function size:0x158 scope:global align:4
+JW_SetProgressiveMode = .text:0x800067B4; // type:function size:0x34 scope:global align:4
+JW_SetLowResoMode = .text:0x800067E8; // type:function size:0x34 scope:global align:4
+JW_SetFamicomMode = .text:0x8000681C; // type:function size:0x34 scope:global align:4
+JW_SetVideoPan = .text:0x80006850; // type:function size:0x64 scope:global align:4
+JW_SetLogoMode = .text:0x800068B4; // type:function size:0x34 scope:global align:4
+JW_JUTGamePad_read = .text:0x800068E8; // type:function size:0xA0 scope:global align:4
+JW_getPadStatus = .text:0x80006988; // type:function size:0x80 scope:global align:4
+JW_JUTGamepad_getErrorStatus = .text:0x80006A08; // type:function size:0x14 scope:global align:4
+JW_JUTGamepad_getButton = .text:0x80006A1C; // type:function size:0x10 scope:global align:4
+JW_JUTGamepad_getTrigger = .text:0x80006A2C; // type:function size:0x10 scope:global align:4
+JW_JUTGamepad_getSubStickValue = .text:0x80006A3C; // type:function size:0x10 scope:global align:4
+JW_JUTGamepad_getSubStickAngle = .text:0x80006A4C; // type:function size:0x10 scope:global align:4
+JW_BeginFrame = .text:0x80006A5C; // type:function size:0xAC scope:global align:4
+JW_EndFrame = .text:0x80006B08; // type:function size:0x30 scope:global align:4
+JW_setClearColor = .text:0x80006B38; // type:function size:0x9C scope:global align:4
+JW_GetAramAddress = .text:0x80006BD4; // type:function size:0xA0 scope:global align:4
+_JW_GetResourceAram = .text:0x80006C74; // type:function size:0x34 scope:global align:4
+JW_GetResSizeFileNo = .text:0x80006CA8; // type:function size:0xB8 scope:global align:4
+JW_Init = .text:0x80006D60; // type:function size:0x1D0 scope:global align:4
+JW_Init2 = .text:0x80006F30; // type:function size:0xB8 scope:global align:4
+JW_Init3 = .text:0x80006FE8; // type:function size:0x58 scope:global align:4
+JW_Cleanup = .text:0x80007040; // type:function size:0xB8 scope:global align:4
+__sinit_jsyswrap_cpp = .text:0x800070F8; // type:function size:0x58 scope:local align:4
+__arraydtor$2135 = .text:0x80007150; // type:function size:0x38 scope:local align:4
+step0_make_dl = .text:0x80007188; // type:function size:0x1C0 scope:global align:4
+make_dl_nintendo_logo = .text:0x80007348; // type:function size:0xF0 scope:global align:4
+step1_make_dl = .text:0x80007438; // type:function size:0xFC scope:global align:4
+step2_make_dl = .text:0x80007534; // type:function size:0x64 scope:global align:4
+make_dl = .text:0x80007598; // type:function size:0x90 scope:global align:4
+exec_dl = .text:0x80007628; // type:function size:0x38 scope:global align:4
+keycheck = .text:0x80007660; // type:function size:0x3C0 scope:global align:4
+proc = .text:0x80007A20; // type:function size:0x24C scope:global align:4
+my_alloc = .text:0x80007C6C; // type:function size:0x24 scope:global align:4
+my_free = .text:0x80007C90; // type:function size:0x20 scope:global align:4
+initial_menu_init = .text:0x80007CB0; // type:function size:0xF8 scope:global align:4
+initial_menu_cleanup = .text:0x80007DA8; // type:function size:0xB0 scope:global align:4
+dvderr_exec_dl = .text:0x80007E58; // type:function size:0x38 scope:global align:4
+dvderr_check_drive = .text:0x80007E90; // type:function size:0x9C scope:global align:4
+dvderr_draw_CoverOpen = .text:0x80007F2C; // type:function size:0x4C scope:global align:4
+dvderr_draw_NoDisk = .text:0x80007F78; // type:function size:0x4C scope:global align:4
+dvderr_draw_WrongDisk = .text:0x80007FC4; // type:function size:0x4C scope:global align:4
+dvderr_draw_Retry = .text:0x80008010; // type:function size:0x4C scope:global align:4
+dvderr_draw_Fatal = .text:0x8000805C; // type:function size:0x4C scope:global align:4
+dvderr_mtx_set = .text:0x800080A8; // type:function size:0x40 scope:global align:4
+dvderr_move_up = .text:0x800080E8; // type:function size:0x64 scope:global align:4
+dvderr_move_down = .text:0x8000814C; // type:function size:0x54 scope:global align:4
+dvderr_move_wait = .text:0x800081A0; // type:function size:0x28 scope:global align:4
+dvderr_move = .text:0x800081C8; // type:function size:0x34 scope:global align:4
+dvderr_draw = .text:0x800081FC; // type:function size:0x108 scope:global align:4
+dvderr_init = .text:0x80008304; // type:function size:0xF4 scope:global align:4
+Probe_Start = .text:0x800083F8; // type:function size:0x4 scope:global align:4
+Probe_Finish = .text:0x800083FC; // type:function size:0x4 scope:global align:4
+Jac_Start__FPvUlUl = .text:0x80008400; // type:function size:0x4C scope:global align:4
+Jac_PlayInit__Fv = .text:0x8000844C; // type:function size:0x28 scope:global align:4
+__GetWave_Pulse__Fll = .text:0x80008480; // type:function size:0x178 scope:global align:32
+__PitchTo32_VRC_C__FUs = .text:0x80008600; // type:function size:0x5C scope:global align:32
+__PitchTo32_VRC_PULSE__FUs = .text:0x80008660; // type:function size:0x5C scope:global align:32
+__PitchTo32_HVC__FUs = .text:0x800086C0; // type:function size:0x5C scope:global align:32
+__Sound_Write_VRC__FUsUc = .text:0x80008720; // type:function size:0x294 scope:global align:32
+__Sound_Write_MMC5__FUsUc = .text:0x800089C0; // type:function size:0x2AC scope:global align:32
+__Sound_Write_A__FUsUc = .text:0x80008C80; // type:function size:0x230 scope:global align:32
+__ProcessSoundA__Fv = .text:0x80008EC0; // type:function size:0x478 scope:global align:32
+__Sound_Write_B__FUsUc = .text:0x80009340; // type:function size:0x23C scope:global align:32
+__ProcessSoundB__Fv = .text:0x80009580; // type:function size:0x45C scope:global align:32
+__PitchTo32_HVC_D__FUs = .text:0x800099E0; // type:function size:0x14 scope:global align:32
+__Sound_Write_D__FUsUc = .text:0x80009A00; // type:function size:0x24C scope:global align:32
+__GetNoise__FUl = .text:0x80009C60; // type:function size:0x90 scope:global align:32
+__ProcessSoundD__Fv = .text:0x80009D00; // type:function size:0x1B0 scope:global align:32
+MoveDeltaCounter__FUc = .text:0x80009EC0; // type:function size:0x40 scope:global align:32
+MoveBias__Fv = .text:0x80009F00; // type:function size:0x5C scope:global align:32
+WriteBias__FUs = .text:0x80009F60; // type:function size:0x20 scope:global align:32
+MoveVoltage__Fv = .text:0x80009F80; // type:function size:0x9C scope:global align:32
+__PitchTo32_HVC_E__FUs = .text:0x8000A020; // type:function size:0x14 scope:global align:32
+__Sound_Write_E__FUsUc = .text:0x8000A040; // type:function size:0xD0 scope:global align:32
+StartE__Fv = .text:0x8000A120; // type:function size:0x3C scope:global align:32
+__ProcessSoundE__Fv = .text:0x8000A160; // type:function size:0x154 scope:global align:32
+__GetWave_Triangle__Fl = .text:0x8000A2C0; // type:function size:0x10 scope:global align:32
+__PitchTo32_HVC_C__FUs = .text:0x8000A2E0; // type:function size:0x68 scope:global align:32
+__Sound_Write_C__FUsUc = .text:0x8000A360; // type:function size:0x2C0 scope:global align:32
+__ProcessSoundC__Fv = .text:0x8000A620; // type:function size:0x1E8 scope:global align:32
+__CreateDiskSubWave__Fv = .text:0x8000A820; // type:function size:0x48 scope:global align:32
+__PitchTo32_DISKFM__FUs = .text:0x8000A880; // type:function size:0x58 scope:global align:32
+__Sound_Write_Disk__FUsUc = .text:0x8000A8E0; // type:function size:0x370 scope:global align:32
+HS_Event_Reset__Fv = .text:0x8000AC60; // type:function size:0x34 scope:global align:32
+HS_Event_Update__Fv = .text:0x8000ACA0; // type:function size:0x54 scope:global align:32
+HS_Event_Write__FUsUc = .text:0x8000AD00; // type:function size:0x240 scope:global align:32
+ProcessPhaseCounter__Fv = .text:0x8000AF40; // type:function size:0x70 scope:global align:32
+ForceProcessPhaseCounter__Fv = .text:0x8000AFC0; // type:function size:0x28 scope:global align:32
+Sound_Make_HVC__FlPs = .text:0x8000B000; // type:function size:0x114 scope:global align:32
+Buffer_Reset__Fv = .text:0x8000B120; // type:function size:0x3C scope:global align:32
+Sample_Copy__FUsPs = .text:0x8000B160; // type:function size:0xDC scope:global align:32
+Sound_Write = .text:0x8000B240; // type:function size:0x1DC scope:global align:32
+Sound_Reset = .text:0x8000B420; // type:function size:0x15C scope:global align:32
+__FrameCallback__Fl = .text:0x8000B580; // type:function size:0x124 scope:global align:32
+EmuSound_Start = .text:0x8000B6C0; // type:function size:0x48 scope:global align:32
+EmuSound_Exit = .text:0x8000B720; // type:function size:0xC scope:global align:32
+Sound_Read = .text:0x8000B740; // type:function size:0x178 scope:global align:32
+Sound_SetC000 = .text:0x8000B8C0; // type:function size:0x8 scope:global align:32
+Sound_SetE000 = .text:0x8000B8E0; // type:function size:0x8 scope:global align:32
+Sound_SetMMC = .text:0x8000B900; // type:function size:0x3C scope:global align:32
+Sound_PlayMENUPCM = .text:0x8000B940; // type:function size:0x10 scope:global align:32
+__Sound_Write_HVC__FUsUc = .text:0x8000B960; // type:function size:0x190 scope:global align:32
+OSAttention = .text:0x8000BAF0; // type:function size:0x94 scope:global align:4
+__OK__FUl = .text:0x8000BB84; // type:function size:0x50 scope:global align:4
+dummy_callback__FPcUlUlPUlP7jaheap_ = .text:0x8000BBD4; // type:function size:0x98 scope:global align:4
+BootSound__FUlUl = .text:0x8000BC6C; // type:function size:0xA0 scope:global align:4
+Sou_lev_ongen_data_struct_clear__Fv = .text:0x8000BD0C; // type:function size:0x408 scope:global align:4
+Sou_BgmFadeoutEndCheck__Fv = .text:0x8000C114; // type:function size:0x58 scope:global align:4
+Sou_BgmTenkiConv__FUc = .text:0x8000C16C; // type:function size:0x164 scope:global align:4
+Sou_GroupControl__FUcUcf = .text:0x8000C2D0; // type:function size:0xD8 scope:global align:4
+Sou_GroupControl_MD__FUcUcf = .text:0x8000C3A8; // type:function size:0xD8 scope:global align:4
+pan_kochou__FUcf = .text:0x8000C480; // type:function size:0xB8 scope:global align:4
+angle2pan__FUsf = .text:0x8000C538; // type:function size:0xB8 scope:global align:4
+distance2vol__Ff = .text:0x8000C5F0; // type:function size:0x7C scope:global align:4
+distance2vol4KITEKI = .text:0x8000C66C; // type:function size:0x5C scope:global align:4
+distance2vol4MD = .text:0x8000C6C8; // type:function size:0x7C scope:global align:4
+Sou_VoiceStart__FUcUc = .text:0x8000C744; // type:function size:0x40 scope:global align:4
+Sou_TrgStart__FUsfffUcUcf = .text:0x8000C784; // type:function size:0x66C scope:global align:4
+Sou_SpecialRoutine00__Fv = .text:0x8000CDF0; // type:function size:0xA8 scope:global align:4
+Sou_SpecialRoutine02__Fv = .text:0x8000CE98; // type:function size:0x30 scope:global align:4
+Sou_SpecialRoutine03__Fv = .text:0x8000CEC8; // type:function size:0x30 scope:global align:4
+Sou_TrgEndCheck__Fv = .text:0x8000CEF8; // type:function size:0x128 scope:global align:4
+Sou_LevStart__FUcUc = .text:0x8000D020; // type:function size:0x214 scope:global align:4
+Sou_LevStop__FUcUc = .text:0x8000D234; // type:function size:0xAEC scope:global align:4
+Sou_TrgMake__FUc = .text:0x8000DD20; // type:function size:0x16C scope:global align:4
+Sou_VoiceMake__FUc = .text:0x8000DE8C; // type:function size:0x178 scope:global align:4
+Sou_LevMake__FUc = .text:0x8000E004; // type:function size:0x224 scope:global align:4
+Sou_ChimeMake__Fv = .text:0x8000E228; // type:function size:0x6C scope:global align:4
+Sou_LevSet__FUc = .text:0x8000E294; // type:function size:0x87C scope:global align:4
+Sou_Insect_Lev_Cont__Fv = .text:0x8000EB10; // type:function size:0x12C scope:global align:4
+Sou_Ongen_Lev_Cont__Fv = .text:0x8000EC3C; // type:function size:0x678 scope:global align:4
+Sou_Ongen_Lev_Prog__FUc = .text:0x8000F2B4; // type:function size:0x62C scope:global align:4
+Sou_BgmStart__FUcUs = .text:0x8000F8E0; // type:function size:0x1B4 scope:global align:4
+Sou_BGMVolMove__Fv = .text:0x8000FA94; // type:function size:0x2A8 scope:global align:4
+Sou_Na_BgmStart__FUc = .text:0x8000FD3C; // type:function size:0x78 scope:global align:4
+Sou_Na_BgmStop__FUs = .text:0x8000FDB4; // type:function size:0x60 scope:global align:4
+Sou_SpecialRoutine06__Fv = .text:0x8000FE14; // type:function size:0x108 scope:global align:4
+Sou_SpecialRoutine07__Fv = .text:0x8000FF1C; // type:function size:0x1C scope:global align:4
+Sou_SeFadeoutRoutine__Fv = .text:0x8000FF38; // type:function size:0x240 scope:global align:4
+Sou_SeFadeinRoutine__Fv = .text:0x80010178; // type:function size:0x240 scope:global align:4
+Sou_SeVolumeReset__Fv = .text:0x800103B8; // type:function size:0xA8 scope:global align:4
+Sou_SeTrFadeout__FUcUs = .text:0x80010460; // type:function size:0x38 scope:global align:4
+Sou_SeFadeout__FUs = .text:0x80010498; // type:function size:0x5C scope:global align:4
+Sou_SpecialRoutine08__Fv = .text:0x800104F4; // type:function size:0x28 scope:global align:4
+Sou_SpecialRoutine10__Fv = .text:0x8001051C; // type:function size:0x64 scope:global align:4
+Sou_InitAudio__Fv = .text:0x80010580; // type:function size:0x478 scope:global align:4
+__as__11SOU_SE_FADEFRC11SOU_SE_FADE = .text:0x800109F8; // type:function size:0x2C scope:global align:4
+__as__12SOU_ROOM_INSFRC12SOU_ROOM_INS = .text:0x80010A24; // type:function size:0x2C scope:global align:4
+__as__11SOU_SYS_LEVFRC11SOU_SYS_LEV = .text:0x80010A50; // type:function size:0x1C scope:global align:4
+__as__15SOU_ONGEN_ENTRYFRC15SOU_ONGEN_ENTRY = .text:0x80010A6C; // type:function size:0x3C scope:global align:4
+__as__18SOU_LEV_ONGEN_DATAFRC18SOU_LEV_ONGEN_DATA = .text:0x80010AA8; // type:function size:0x4C scope:global align:4
+__as__12SOU_LS_STACKFRC12SOU_LS_STACK = .text:0x80010AF4; // type:function size:0x44 scope:global align:4
+__as__10SOU_LEV_SEFRC10SOU_LEV_SE = .text:0x80010B38; // type:function size:0x74 scope:global align:4
+__as__12SOU_VOICE_SEFRC12SOU_VOICE_SE = .text:0x80010BAC; // type:function size:0x54 scope:global align:4
+__as__10SOU_TRG_SEFRC10SOU_TRG_SE = .text:0x80010C00; // type:function size:0x64 scope:global align:4
+Sou_DVD_Error__FPcPUc = .text:0x80010C64; // type:function size:0x28 scope:global align:4
+Na_InitAudio = .text:0x80010C8C; // type:function size:0x90 scope:global align:4
+Na_GameFrame = .text:0x80010D1C; // type:function size:0x154 scope:global align:4
+Na_Reset = .text:0x80010E70; // type:function size:0x24 scope:global align:4
+Na_SoftReset = .text:0x80010E94; // type:function size:0x2C4 scope:global align:4
+Na_Tenki = .text:0x80011158; // type:function size:0x18 scope:global align:4
+Na_BgmStart = .text:0x80011170; // type:function size:0x20 scope:global align:4
+Na_BgmCrossfadeStart = .text:0x80011190; // type:function size:0x10 scope:global align:4
+Na_BgmStop = .text:0x800111A0; // type:function size:0x10 scope:global align:4
+Na_SysTrgStart = .text:0x800111B0; // type:function size:0x180 scope:global align:4
+Sou_WalkSe__FUsUsfUcf = .text:0x80011330; // type:function size:0x1AC scope:global align:4
+Na_PlyWalkSe = .text:0x800114DC; // type:function size:0xA8 scope:global align:4
+Na_PlyWalkSeRoom = .text:0x80011584; // type:function size:0x118 scope:global align:4
+Na_NpcWalkSe = .text:0x8001169C; // type:function size:0x7C scope:global align:4
+Na_NpcWalkSeRoom = .text:0x80011718; // type:function size:0xD8 scope:global align:4
+Na_PlayerStatusLevel = .text:0x800117F0; // type:function size:0xC scope:global align:4
+Sou_TanboinHenkan__FUcUc = .text:0x800117FC; // type:function size:0x170 scope:global align:4
+Sou_ChouboinHenkan__FUcUc = .text:0x8001196C; // type:function size:0x170 scope:global align:4
+Sou_ConnectCheck__FUcUcUc = .text:0x80011ADC; // type:function size:0x404 scope:global align:4
+Sou_BoinShiinCheck__FUc = .text:0x80011EE0; // type:function size:0x40 scope:global align:4
+Na_VoiceSe = .text:0x80011F20; // type:function size:0xEE4 scope:global align:4
+Na_MessageStatus = .text:0x80012E04; // type:function size:0x18 scope:global align:4
+Na_MessageSpeed = .text:0x80012E1C; // type:function size:0x8 scope:global align:4
+Na_MessageSpeedGet = .text:0x80012E24; // type:function size:0x8 scope:global align:4
+Na_OngenPos = .text:0x80012E2C; // type:function size:0x6C8 scope:global align:4
+Sou_PosTrgStart__FUsUsfUcf = .text:0x800134F4; // type:function size:0x234 scope:global align:4
+Na_OngenTrgStartSpeed = .text:0x80013728; // type:function size:0x114 scope:global align:4
+Na_OngenTrgStart = .text:0x8001383C; // type:function size:0x1C4 scope:global align:4
+Na_SetOutMode = .text:0x80013A00; // type:function size:0x80 scope:global align:4
+Na_SetVoiceMode = .text:0x80013A80; // type:function size:0x8 scope:global align:4
+Na_FloorTrgStart = .text:0x80013A88; // type:function size:0x94 scope:global align:4
+Na_SysLevStart = .text:0x80013B1C; // type:function size:0x220 scope:global align:4
+Na_SysLevStop = .text:0x80013D3C; // type:function size:0xC4 scope:global align:4
+Na_Pause = .text:0x80013E00; // type:function size:0xBC scope:global align:4
+Na_RhythmPos = .text:0x80013EBC; // type:function size:0xD4 scope:global align:4
+Na_SpecChange = .text:0x80013F90; // type:function size:0xCC scope:global align:4
+Na_MDPlayerPos = .text:0x8001405C; // type:function size:0x140 scope:global align:4
+Na_BGMVolume = .text:0x8001419C; // type:function size:0xB8 scope:global align:4
+Na_RestartPrepare = .text:0x80014254; // type:function size:0x3C scope:global align:4
+Na_CheckRestartReady = .text:0x80014290; // type:function size:0x24 scope:global align:4
+Na_Restart = .text:0x800142B4; // type:function size:0x34 scope:global align:4
+Na_SubGameOK = .text:0x800142E8; // type:function size:0x7C scope:global align:4
+Na_KishaStatusTrg = .text:0x80014364; // type:function size:0x11C scope:global align:4
+Na_KishaStatusLevel = .text:0x80014480; // type:function size:0x1A4 scope:global align:4
+Na_TTKK_ARM = .text:0x80014624; // type:function size:0xDC scope:global align:4
+Na_BgmMuteClear = .text:0x80014700; // type:function size:0x74 scope:global align:4
+Na_BgmFadeoutCheck = .text:0x80014774; // type:function size:0x60 scope:global align:4
+Na_SeFadeoutCheck = .text:0x800147D4; // type:function size:0x8C scope:global align:4
+Na_BgmTrOn = .text:0x80014860; // type:function size:0x48 scope:global align:4
+Na_BgmTrOff = .text:0x800148A8; // type:function size:0x48 scope:global align:4
+Na_SubGameStart = .text:0x800148F0; // type:function size:0x34 scope:global align:4
+Na_SubGameEnd = .text:0x80014924; // type:function size:0x2C scope:global align:4
+Na_SceneMode = .text:0x80014950; // type:function size:0x3C8 scope:global align:4
+Na_RoomIncectPos = .text:0x80014D18; // type:function size:0x4CC scope:global align:4
+Na_FurnitureInstPos = .text:0x800151E4; // type:function size:0x100 scope:global align:4
+Na_TrgSeEcho = .text:0x800152E4; // type:function size:0x50 scope:global align:4
+Na_LevSeEcho = .text:0x80015334; // type:function size:0x48 scope:global align:4
+Na_BGMFilter = .text:0x8001537C; // type:function size:0x140 scope:global align:4
+Na_RoomType = .text:0x800154BC; // type:function size:0x8C scope:global align:4
+Na_CheckNeosBoot = .text:0x80015548; // type:function size:0x30 scope:global align:4
+Na_Museum = .text:0x80015578; // type:function size:0x8C scope:global align:4
+Na_GetSoundFrameCounter = .text:0x80015604; // type:function size:0x10 scope:global align:4
+Na_kazagurumaLevel = .text:0x80015614; // type:function size:0x8 scope:global align:4
+Na_MelodyInit = .text:0x8001561C; // type:function size:0x20 scope:global align:4
+Na_Inst = .text:0x8001563C; // type:function size:0x7C scope:global align:4
+Na_MelodyStart__FUssPCUc = .text:0x800156B8; // type:function size:0x1A4 scope:global align:4
+Na_InstCountGet = .text:0x8001585C; // type:function size:0x40 scope:global align:4
+Na_MelodyGetSubTrackNum = .text:0x8001589C; // type:function size:0x3C scope:global align:4
+Na_FurnitureInst = .text:0x800158D8; // type:function size:0x12C scope:global align:4
+Na_MelodyVoice = .text:0x80015A04; // type:function size:0x48 scope:global align:4
+Na_RhythmInit = .text:0x80015A4C; // type:function size:0x8C scope:global align:4
+rhythm_buffer_alloc__Fv = .text:0x80015AD8; // type:function size:0x60 scope:global align:4
+get_rhythm_buffer__FUl = .text:0x80015B38; // type:function size:0x64 scope:global align:4
+Na_GetRhythmSubTrack = .text:0x80015B9C; // type:function size:0x48 scope:global align:4
+rhythm_start__FP16NA_RHYTHM_BUFFER = .text:0x80015BE4; // type:function size:0x94 scope:global align:4
+rhythm_stop__FP16NA_RHYTHM_BUFFER = .text:0x80015C78; // type:function size:0x60 scope:global align:4
+Na_RhythmStart = .text:0x80015CD8; // type:function size:0x78 scope:global align:4
+Na_RhythmStop = .text:0x80015D50; // type:function size:0x44 scope:global align:4
+Na_RhythmAllStop = .text:0x80015D94; // type:function size:0x64 scope:global align:4
+Na_GetRhythmBeatType__Fv = .text:0x80015DF8; // type:function size:0x5C scope:global align:4
+Na_GetRhythmAnimCounter = .text:0x80015E54; // type:function size:0x1B0 scope:global align:4
+Na_GetRhythmDelay = .text:0x80016004; // type:function size:0x6C scope:global align:4
+Na_GetRhythmSeNum__FScP4sub_ = .text:0x80016070; // type:function size:0x188 scope:global align:4
+Na_GetRhythmInfo = .text:0x800161F8; // type:function size:0x58 scope:global align:4
+Na_SetRhythmInfo = .text:0x80016250; // type:function size:0x74 scope:global align:4
+tempo_adjust__FP6group_ = .text:0x800162C4; // type:function size:0xA0 scope:global align:4
+Na_RhythmGrpProcess__FScP6group_ = .text:0x80016364; // type:function size:0x288 scope:global align:4
+Na_GetRadioCounter = .text:0x800165EC; // type:function size:0x180 scope:global align:4
+Na_GetKappaCounter = .text:0x8001676C; // type:function size:0xCC scope:global align:4
+Na_SetKappaSeqHandle = .text:0x80016838; // type:function size:0x8 scope:global align:4
+Na_StaffRollInit = .text:0x80016840; // type:function size:0x1C scope:global align:4
+Na_StaffRollStart = .text:0x8001685C; // type:function size:0x80 scope:global align:4
+Na_GetStaffRollInfo = .text:0x800168DC; // type:function size:0x428 scope:global align:4
+RspStart2__FPUlll = .text:0x80016D20; // type:function size:0x60 scope:global align:32
+RspStart__FPUll = .text:0x80016D80; // type:function size:0xECC scope:global align:32
+Jac_Resample16__FPsPsPsllPsPUsl = .text:0x80017C60; // type:function size:0x218 scope:global align:32
+Jac_HeapSetup = .text:0x80017E80; // type:function size:0x4C scope:global align:32
+OSAlloc2 = .text:0x80017EE0; // type:function size:0x88 scope:global align:32
+Jac_Init = .text:0x80017F80; // type:function size:0xA0 scope:global align:32
+MixMonoTrack__FPslPFl_Ps = .text:0x80018020; // type:function size:0xDC scope:global align:32
+MixMonoTrackWide__FPslPFl_Ps = .text:0x80018100; // type:function size:0xDC scope:global align:32
+MixExtraTrack__FPslPFl_Ps = .text:0x800181E0; // type:function size:0xF8 scope:global align:32
+MixInterleaveTrack__FPslPFl_Ps = .text:0x800182E0; // type:function size:0x94 scope:global align:32
+Jac_GetMixcallback = .text:0x80018380; // type:function size:0x10 scope:global align:32
+Jac_RegisterMixcallback = .text:0x800183A0; // type:function size:0xC scope:global align:32
+Jac_VframeWork = .text:0x800183C0; // type:function size:0x1B8 scope:global align:32
+Jac_UpdateDAC = .text:0x80018580; // type:function size:0xA8 scope:global align:32
+Jac_imixcopy__FPsPsPsl = .text:0x80018640; // type:function size:0x30 scope:global align:32
+Jac_bcopyfast__FPUlPUlUl = .text:0x80018680; // type:function size:0x3C scope:global align:32
+Jac_bcopy__FPvPvl = .text:0x800186C0; // type:function size:0x104 scope:global align:32
+Jac_bzerofast__FPUlUl = .text:0x800187E0; // type:function size:0x2C scope:global align:32
+Jac_bzero__FPvl = .text:0x80018820; // type:function size:0xEC scope:global align:32
+GetNeos_FileTop__Fv = .text:0x80018920; // type:function size:0x18 scope:global align:32
+GetNeosRomTop__Fv = .text:0x80018940; // type:function size:0x8 scope:global align:32
+GetNeosRom_PreLoaded__Fv = .text:0x80018960; // type:function size:0x3C scope:global align:32
+SetPreCopy_NeosRom__FPUcUli = .text:0x800189A0; // type:function size:0x10 scope:global align:32
+mesg_finishcall__FUl = .text:0x800189C0; // type:function size:0x28 scope:global align:32
+ARAMStartDMAmesg__FUlUlUlUllP13OSMesgQueue_s = .text:0x80018A00; // type:function size:0x5C scope:global align:32
+Jac_SetAudioARAMSize__FUl = .text:0x80018A60; // type:function size:0x8 scope:global align:32
+ARAllocFull__FPUl = .text:0x80018A80; // type:function size:0x5C scope:global align:32
+Jac_InitARAM__FUl = .text:0x80018AE0; // type:function size:0xE0 scope:global align:32
+DspSyncCountClear = .text:0x80018BC0; // type:function size:0x8 scope:global align:32
+DspSyncCountCheck = .text:0x80018BE0; // type:function size:0x8 scope:global align:32
+DspSync__Fv = .text:0x80018C00; // type:function size:0x44 scope:global align:32
+AudioSync__Fv = .text:0x80018C60; // type:function size:0x80 scope:global align:32
+NeosSync__Fv = .text:0x80018CE0; // type:function size:0x3C scope:global align:32
+__DspSync__FsP9OSContext = .text:0x80018D20; // type:function size:0x68 scope:global align:32
+__DspReg__Fv = .text:0x80018DA0; // type:function size:0x48 scope:global align:32
+audioproc__FPv = .text:0x80018E00; // type:function size:0x13C scope:global align:32
+OSInitFastCast__Fv = .text:0x80018F40; // type:function size:0x34 scope:global align:32
+StartAudioThread = .text:0x80018F80; // type:function size:0x154 scope:global align:32
+Neos_Update__FPs = .text:0x800190E0; // type:function size:0x50 scope:global align:32
+ImageLoaded__FUl = .text:0x80019140; // type:function size:0x34 scope:global align:32
+Neos_CheckBoot__Fv = .text:0x80019180; // type:function size:0x8 scope:global align:32
+neosproc__FPv = .text:0x800191A0; // type:function size:0x1D8 scope:global align:32
+StreamMain__Fv = .text:0x80019380; // type:function size:0x3D0 scope:global align:32
+DspbufProcess__F13DSPBUF_EVENTS = .text:0x80019760; // type:function size:0x288 scope:global align:32
+UpdateDSP__Fv = .text:0x80019A00; // type:function size:0x54 scope:global align:32
+MixDsp__Fl = .text:0x80019A60; // type:function size:0x40 scope:global align:32
+DspFrameEnd__Fv = .text:0x80019AA0; // type:function size:0x24 scope:global align:32
+CpubufProcess__F13DSPBUF_EVENTS = .text:0x80019AE0; // type:function size:0x244 scope:global align:32
+MixCpu__Fl = .text:0x80019D40; // type:function size:0x40 scope:global align:32
+CpuFrameEnd__Fv = .text:0x80019D80; // type:function size:0x24 scope:global align:32
+ResetPlayerCallback = .text:0x80019DC0; // type:function size:0x28 scope:global align:32
+Jac_CheckPlayerCallback__FPFPv_lPv = .text:0x80019E00; // type:function size:0x54 scope:global align:32
+Jac_RegisterDspPlayerCallback = .text:0x80019E60; // type:function size:0x48 scope:global align:32
+Jac_RegisterPlayerCallback = .text:0x80019EC0; // type:function size:0xB8 scope:global align:32
+PlayerCallback__Fv = .text:0x80019F80; // type:function size:0x84 scope:global align:32
+DspPlayerCallback__Fv = .text:0x8001A020; // type:function size:0x84 scope:global align:32
+GetCallStack__Fv = .text:0x8001A0C0; // type:function size:0x5C scope:global align:32
+DVDReadMutex__FP11DVDFileInfoPvllPc = .text:0x8001A120; // type:function size:0x98 scope:global align:32
+DVDT_ExtendPath__FPcPc = .text:0x8001A1C0; // type:function size:0x7C scope:global align:32
+DVDT_AddTaskHigh__FPFPv_lPvUl = .text:0x8001A240; // type:function size:0x84 scope:global align:32
+DVDT_AddTask__FPFPv_lPvUl = .text:0x8001A2E0; // type:function size:0x84 scope:global align:32
+jac_dvdproc_init__Fv = .text:0x8001A380; // type:function size:0x3C scope:global align:32
+jac_dvdproc__FPv = .text:0x8001A3C0; // type:function size:0x90 scope:global align:32
+__DoError__FP8DVDCall_Ul = .text:0x8001A460; // type:function size:0x48 scope:global align:32
+__DoFinish__FP8DVDCall_Ul = .text:0x8001A4C0; // type:function size:0x44 scope:global align:32
+__DVDT_CheckBack__FPv = .text:0x8001A520; // type:function size:0x24 scope:global align:32
+__Alloc_DVDBuffer__Fv = .text:0x8001A560; // type:function size:0x38 scope:global align:32
+__WriteBufferSize__FPUcUlUl = .text:0x8001A5A0; // type:function size:0x34 scope:global align:32
+__UpdateBuffer__Fv = .text:0x8001A5E0; // type:function size:0x40 scope:global align:32
+ARAM_DMAfinish__FUl = .text:0x8001A620; // type:function size:0x10 scope:global align:32
+DVDT_LoadtoARAM_Main__FPv = .text:0x8001A640; // type:function size:0x230 scope:global align:32
+DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v = .text:0x8001A880; // type:function size:0x8C scope:global align:32
+ARAM_DMAfinish2__FUl = .text:0x8001A920; // type:function size:0x10 scope:global align:32
+DVDT_ARAMtoDRAM_Main__FPv = .text:0x8001A940; // type:function size:0x80 scope:global align:32
+DVDT_DRAMtoARAM_Main__FPv = .text:0x8001A9C0; // type:function size:0x80 scope:global align:32
+DVDT_ARAMtoDRAM__FUlUlUlUlPUlPFUl_v = .text:0x8001AA40; // type:function size:0x60 scope:global align:32
+DVDT_DRAMtoARAM__FUlUlUlUlPUlPFUl_v = .text:0x8001AAA0; // type:function size:0x60 scope:global align:32
+DVDT_CheckFile__FPc = .text:0x8001AB00; // type:function size:0x64 scope:global align:32
+DVDT_CheckPass__FUlPUlPFUl_v = .text:0x8001AB80; // type:function size:0x40 scope:global align:32
+Jac_CheckFile__FPc = .text:0x8001ABC0; // type:function size:0x54 scope:global align:32
+Jac_RegisterDVDErrorCallback__FPFPcPUc_v = .text:0x8001AC20; // type:function size:0x8 scope:global align:32
+Jac_RegisterFastOpen__FPc = .text:0x8001AC40; // type:function size:0xF4 scope:global align:32
+Jac_DVDOpen__FPcP11DVDFileInfo = .text:0x8001AD40; // type:function size:0x58 scope:global align:32
+Nas_CpuFX__Flll = .text:0x8001ADA0; // type:function size:0x28C scope:global align:32
+__Nas_PushDrvReg__Fl = .text:0x8001B040; // type:function size:0xB8 scope:global align:32
+Nas_smzAudioFrame__FP4AcmdPlPsl = .text:0x8001B100; // type:function size:0x17C scope:global align:32
+__Nas_WaveTerminateProcess__Fll = .text:0x8001B280; // type:function size:0x54 scope:global align:32
+Nas_LoadAux2nd__FP4AcmdPC6delay_s = .text:0x8001B2E0; // type:function size:0x94 scope:global align:32
+Nas_SaveAux2nd__FP4AcmdPC6delay_s = .text:0x8001B380; // type:function size:0x94 scope:global align:32
+Nas_ClearBuffer__FP4Acmdll = .text:0x8001B420; // type:function size:0x14 scope:global align:32
+Nas_Mix__FP4Acmdllll = .text:0x8001B440; // type:function size:0x20 scope:global align:32
+Nas_SetBuffer__FP4Acmdllll = .text:0x8001B460; // type:function size:0x20 scope:global align:32
+Nas_DMEMMove__FP4Acmdlll = .text:0x8001B480; // type:function size:0x18 scope:global align:32
+Nas_HalfCut__FP4Acmdlll = .text:0x8001B4A0; // type:function size:0x18 scope:global align:32
+Nas_SetEnvParam__FP4Acmdllll = .text:0x8001B4C0; // type:function size:0x20 scope:global align:32
+Nas_LoadBuffer2__FP4Acmdlll = .text:0x8001B4E0; // type:function size:0x20 scope:global align:32
+Nas_SaveBuffer2__FP4Acmdlll = .text:0x8001B500; // type:function size:0x20 scope:global align:32
+Nas_SetEnvParam2__FP4Acmdll = .text:0x8001B520; // type:function size:0x14 scope:global align:32
+Nas_PCM8dec__FP4Acmdll = .text:0x8001B540; // type:function size:0x14 scope:global align:32
+Nas_DistFilter__FP4Acmdllll = .text:0x8001B560; // type:function size:0x20 scope:global align:32
+Nas_NoiseFilter__FP4Acmdllll = .text:0x8001B580; // type:function size:0x18 scope:global align:32
+Nas_FirFilter__FP4AcmdllPs = .text:0x8001B5A0; // type:function size:0x1C scope:global align:32
+Nas_FirLoadTable__FP4AcmdlPs = .text:0x8001B5C0; // type:function size:0x14 scope:global align:32
+Nas_CrossMix__FP4AcmdP6delay_ = .text:0x8001B5E0; // type:function size:0x58 scope:global align:32
+Nas_LoadAuxBufferC__FP4AcmdlP6delay_s = .text:0x8001B640; // type:function size:0x138 scope:global align:32
+Nas_SaveAuxBufferCH__FP4AcmdP6delay_s = .text:0x8001B780; // type:function size:0x19C scope:global align:32
+Nas_LoadAuxBufferCH__FP4AcmdlP6delay_s = .text:0x8001B920; // type:function size:0x140 scope:global align:32
+Nas_DelayFilter__FP4AcmdlP6delay_ = .text:0x8001BA60; // type:function size:0x84 scope:global align:32
+Nas_SendLine__FP4AcmdP6delay_l = .text:0x8001BB00; // type:function size:0xB8 scope:global align:32
+Nas_LoadAuxBuffer1__FP4AcmdlP6delay_s = .text:0x8001BBC0; // type:function size:0x94 scope:global align:32
+Nas_LoadAuxBuffer1_B__FP4AcmdlP6delay_s = .text:0x8001BC60; // type:function size:0x94 scope:global align:32
+Nas_SaveBufferAuto__FP4AcmdUsUsl = .text:0x8001BD00; // type:function size:0xD8 scope:global align:32
+__LoadAuxBuf__FP4AcmdUsUslP6delay_ = .text:0x8001BDE0; // type:function size:0x50 scope:global align:32
+__SaveAuxBuf__FP4AcmdUsUslP6delay_ = .text:0x8001BE40; // type:function size:0x50 scope:global align:32
+Nas_LoadAuxBuffer_B__FP4AcmdlP6delay_s = .text:0x8001BEA0; // type:function size:0x2C scope:global align:32
+Nas_LoadAuxBuffer__FP4AcmdlP6delay_s = .text:0x8001BEE0; // type:function size:0x48 scope:global align:32
+Nas_SaveAuxBuffer__FP4AcmdP6delay_s = .text:0x8001BF40; // type:function size:0x1AC scope:global align:32
+Nas_SaveAuxBuffer_B__FP4AcmdP6delay_s = .text:0x8001C100; // type:function size:0x94 scope:global align:32
+Nas_DriveRsp__FPslP4Acmdl = .text:0x8001C1A0; // type:function size:0x48C scope:global align:32
+Nas_SynthMain__FlP9commonch_P9driverch_PslP4Acmdl = .text:0x8001C640; // type:function size:0xC8C scope:global align:32
+Nas_DolbySurround__FP4AcmdP9commonch_P9driverch_lll = .text:0x8001D2E0; // type:function size:0x1E8 scope:global align:32
+Nas_Synth_Resample__FP4AcmdPC9driverch_lUsUsl = .text:0x8001D4E0; // type:function size:0x78 scope:global align:32
+Nas_Synth_Envelope__FP4AcmdP9commonch_P9driverch_lUsll = .text:0x8001D560; // type:function size:0x288 scope:global align:32
+Nas_Synth_Delay__FP4AcmdP9commonch_P9driverch_lll = .text:0x8001D800; // type:function size:0x240 scope:global align:32
+__CalcRelf__Ff = .text:0x8001DA40; // type:function size:0x1C scope:global align:32
+MakeReleaseTable__Fv = .text:0x8001DA60; // type:function size:0x180 scope:global align:32
+Nas_ResetIDtable__Fv = .text:0x8001DBE0; // type:function size:0xA8 scope:global align:32
+Nas_ForceStopChannel__Fl = .text:0x8001DCA0; // type:function size:0xD4 scope:global align:32
+Nas_ForceStopSeq__Fl = .text:0x8001DD80; // type:function size:0x8C scope:global align:32
+Nas_CacheOff__FPUcl = .text:0x8001DE20; // type:function size:0x30 scope:global align:32
+Nas_2ndHeapAlloc_CL__FP6ALHeapl = .text:0x8001DE60; // type:function size:0x70 scope:global align:32
+Nas_2ndHeapAlloc__FP6ALHeapl = .text:0x8001DEE0; // type:function size:0x70 scope:global align:32
+Nas_NcHeapAlloc__FP6ALHeapl = .text:0x8001DF60; // type:function size:0x44 scope:global align:32
+Nas_NcHeapAlloc_CL__FP6ALHeapl = .text:0x8001DFC0; // type:function size:0x44 scope:global align:32
+Nas_HeapAlloc_CL__FP6ALHeapl = .text:0x8001E020; // type:function size:0x58 scope:global align:32
+Nas_HeapAlloc__FP6ALHeapl = .text:0x8001E080; // type:function size:0x84 scope:global align:32
+Nas_HeapInit__FP6ALHeapPUcl = .text:0x8001E120; // type:function size:0x80 scope:global align:32
+Nas_SzStayClear__FP7SZStay_ = .text:0x8001E1A0; // type:function size:0x18 scope:global align:32
+Nas_SzAutoClear__FP7SZAuto_ = .text:0x8001E1C0; // type:function size:0x3C scope:global align:32
+Nas_SzStayDelete__Fl = .text:0x8001E200; // type:function size:0x114 scope:global align:32
+Nas_SzHeapReset__FUl = .text:0x8001E320; // type:function size:0x8C scope:global align:32
+Nas_SzHeapDivide__FP14AudioHeapstrc_ = .text:0x8001E3C0; // type:function size:0x94 scope:global align:32
+Nas_SzDataDivide__FP13DataHeapstrc_ = .text:0x8001E460; // type:function size:0x94 scope:global align:32
+Nas_SzStayDivide__FP13StayHeapstrc_ = .text:0x8001E500; // type:function size:0xEC scope:global align:32
+Nas_SzAutoDivide__FP13AutoHeapstrc_ = .text:0x8001E600; // type:function size:0xEC scope:global align:32
+Nas_SzHeapAlloc__Fllll = .text:0x8001E700; // type:function size:0x6B8 scope:global align:32
+Nas_SzCacheCheck__Flll = .text:0x8001EDC0; // type:function size:0x6C scope:global align:32
+__Nas_SzCacheCheck_Inner__Flll = .text:0x8001EE40; // type:function size:0x110 scope:global align:32
+Nas_SetLPFilter__FPsl = .text:0x8001EF60; // type:function size:0x40 scope:global align:32
+Nas_SetHPFilter__FPsl = .text:0x8001EFA0; // type:function size:0x40 scope:global align:32
+Nas_SetBPFilter__FPsll = .text:0x8001EFE0; // type:function size:0x134 scope:global align:32
+__DownDelay__FP6delay_ = .text:0x8001F120; // type:function size:0x4 scope:global align:32
+__Nas_DelayDown__Fv = .text:0x8001F140; // type:function size:0x94 scope:global align:32
+__Nas_DacClear__Fv = .text:0x8001F1E0; // type:function size:0x4C scope:global align:32
+Nas_SpecChange__Fv = .text:0x8001F240; // type:function size:0x250 scope:global align:32
+__Nas_MemoryReconfig__Fv = .text:0x8001F4A0; // type:function size:0x5BC scope:global align:32
+EmemOnCheck__Fll = .text:0x8001FA60; // type:function size:0x60 scope:global align:32
+EmemAlloc__Flll = .text:0x8001FAC0; // type:function size:0x80 scope:global align:32
+Nas_Alloc_Single__FllPUcScl = .text:0x8001FB40; // type:function size:0x6C scope:global align:32
+Nas_Init_Single__Fll = .text:0x8001FBC0; // type:function size:0xD0 scope:global align:32
+__Nas_Alloc_Single_Auto_Inner__Fl = .text:0x8001FCA0; // type:function size:0x208 scope:global align:32
+__SearchBank__FP9SwMember_l = .text:0x8001FEC0; // type:function size:0x130 scope:global align:32
+__KillSwMember__FP9SwMember_ = .text:0x80020000; // type:function size:0xE0 scope:global align:32
+__RomAddrSet__FP9SwMember_P13smzwavetable_ = .text:0x800200E0; // type:function size:0x34 scope:global align:32
+__Nas_Alloc_Single_Stay_Inner__Fl = .text:0x80020120; // type:function size:0x98 scope:global align:32
+__Do_EmemKill__FP9SwMember_lll = .text:0x800201C0; // type:function size:0x40 scope:global align:32
+Emem_KillSwMember__Fv = .text:0x80020200; // type:function size:0x124 scope:global align:32
+__RestoreAddr__FP16Wavelookuptable_P13smzwavetable_ = .text:0x80020340; // type:function size:0xA0 scope:global align:32
+DirtyWave__Fl = .text:0x800203E0; // type:function size:0x30 scope:global align:32
+EntryWave__Fl = .text:0x80020420; // type:function size:0x30 scope:global align:32
+__ExchangeWave__Fll = .text:0x80020460; // type:function size:0x210 scope:global align:32
+Dirty_AllWave__Fv = .text:0x80020680; // type:function size:0x90 scope:global align:32
+__Nas_GetCompressBuffer__FP6delay_ = .text:0x80020720; // type:function size:0xB4 scope:global align:32
+Nas_SetDelayLineParam__Fllll = .text:0x800207E0; // type:function size:0x280 scope:global align:32
+Nas_SetDelayLine__FlP9fxconfig_l = .text:0x80020A60; // type:function size:0x1EC scope:global align:32
+Nas_WaveDmaFrameWork__Fv = .text:0x80020C60; // type:function size:0x108 scope:global align:32
+Nas_WaveDmaCallBack__FUlUllPUcl = .text:0x80020D80; // type:function size:0x300 scope:global align:32
+Nas_WaveDmaNew__Fl = .text:0x80021080; // type:function size:0x284 scope:global align:32
+Nas_CheckIDbank__Fl = .text:0x80021320; // type:function size:0x74 scope:global align:32
+Nas_CheckIDseq__Fl = .text:0x800213A0; // type:function size:0x74 scope:global align:32
+Nas_WriteIDbank__Fll = .text:0x80021420; // type:function size:0x28 scope:global align:32
+Nas_WriteIDseq__Fll = .text:0x80021460; // type:function size:0x28 scope:global align:32
+Nas_WriteIDwave__Fll = .text:0x800214A0; // type:function size:0x58 scope:global align:32
+Nas_WriteIDwaveOnly__Fll = .text:0x80021500; // type:function size:0x28 scope:global align:32
+Nas_BankHeaderInit__FP10ArcHeader_PUcUs = .text:0x80021540; // type:function size:0x58 scope:global align:32
+Nas_PreLoadBank__FlPl = .text:0x800215A0; // type:function size:0x7C scope:global align:32
+Nas_PreLoadSeq__FlllP13OSMesgQueue_s = .text:0x80021620; // type:function size:0x74 scope:global align:32
+__Nas_LoadVoice_Inner__FP13smzwavetable_l = .text:0x800216A0; // type:function size:0xD4 scope:global align:32
+Nas_LoadVoice__Flll = .text:0x80021780; // type:function size:0xC0 scope:global align:32
+Nas_PreLoad_BG__FllllP13OSMesgQueue_s = .text:0x80021840; // type:function size:0x48 scope:global align:32
+Nas_PreLoadSeq_BG__FlllP13OSMesgQueue_s = .text:0x800218A0; // type:function size:0x38 scope:global align:32
+Nas_PreLoadWave_BG__FlllP13OSMesgQueue_s = .text:0x800218E0; // type:function size:0x38 scope:global align:32
+Nas_PreLoadBank_BG__FlllP13OSMesgQueue_s = .text:0x80021920; // type:function size:0x38 scope:global align:32
+Nas_FlushBank__Fl = .text:0x80021960; // type:function size:0x9C scope:global align:32
+__Kill_Bank__Fl = .text:0x80021A00; // type:function size:0x98 scope:global align:32
+Nas_SetExtPointer__Fllll = .text:0x80021AA0; // type:function size:0x74 scope:global align:32
+Nas_StartMySeq__Flll = .text:0x80021B20; // type:function size:0x54 scope:global align:32
+Nas_StartSeq_Skip__Flll = .text:0x80021B80; // type:function size:0x54 scope:global align:32
+__Nas_StartSeq__Flll = .text:0x80021BE0; // type:function size:0x118 scope:global align:32
+__Load_Seq__Fl = .text:0x80021D00; // type:function size:0x64 scope:global align:32
+__Load_Wave_Check__FlPUl = .text:0x80021D80; // type:function size:0x24 scope:global align:32
+__Load_Wave__FlPUll = .text:0x80021DC0; // type:function size:0x120 scope:global align:32
+__Load_Ctrl__Fl = .text:0x80021EE0; // type:function size:0x10C scope:global align:32
+__Load_Bank__FllPl = .text:0x80022000; // type:function size:0x248 scope:global align:32
+__Link_BankNum__Fll = .text:0x80022260; // type:function size:0x48 scope:global align:32
+__Check_Cache__Fll = .text:0x800222C0; // type:function size:0x64 scope:global align:32
+__Get_ArcHeader__Fl = .text:0x80022340; // type:function size:0x5C scope:global align:32
+Nas_BankOfsToAddr_Inner__FlPUcP10WaveMedia_ = .text:0x800223A0; // type:function size:0x210 scope:global align:32
+Nas_FastCopy__FPUcPUcUll = .text:0x800225C0; // type:function size:0x234 scope:global align:32
+Nas_FastDiskCopy__FPUcPUcUll = .text:0x80022800; // type:function size:0x4 scope:global align:32
+Nas_StartDma__FP8OSIoMesgllUlPvUlP13OSMesgQueue_slPSc = .text:0x80022820; // type:function size:0xE0 scope:global align:32
+__Load_Bank_BG__FllllP13OSMesgQueue_s = .text:0x80022900; // type:function size:0x308 scope:global align:32
+Nas_BgDmaFrameWork__Fl = .text:0x80022C20; // type:function size:0x3C scope:global align:32
+Nas_GetSyncDummy__FPUcl = .text:0x80022C60; // type:function size:0x8 scope:global align:32
+__SetVlute__Fl = .text:0x80022C80; // type:function size:0x58 scope:global align:32
+Nas_InitAudio__FPUxl = .text:0x80022CE0; // type:function size:0x3B4 scope:global align:32
+LpsInit__Fv = .text:0x800230A0; // type:function size:0x18 scope:global align:32
+VoiceLoad__FlUlPSc = .text:0x800230C0; // type:function size:0x188 scope:global align:32
+__as__13smzwavetable_FRC13smzwavetable_ = .text:0x80023260; // type:function size:0x24 scope:global align:32
+__GetWaveTable__Fll = .text:0x800232A0; // type:function size:0x84 scope:global align:32
+__SwapLoadLps__FP9lpscache_ = .text:0x80023340; // type:function size:0x74 scope:global align:32
+LpsDma__Fl = .text:0x800233C0; // type:function size:0x16C scope:global align:32
+__Nas_SlowCopy__FP9lpscache_l = .text:0x80023540; // type:function size:0x7C scope:global align:32
+__Nas_SlowDiskCopy__FPUcPUcUll = .text:0x800235C0; // type:function size:0x4 scope:global align:32
+SeqLoad__FlPUcPSc = .text:0x800235E0; // type:function size:0xEC scope:global align:32
+Nas_BgCopyInit__Fv = .text:0x800236E0; // type:function size:0x2C scope:global align:32
+Nas_BgCopyDisk__FlPUcPUcUlllP13OSMesgQueue_sl = .text:0x80023720; // type:function size:0x80 scope:global align:32
+Nas_BgCopyReq__FPUcPUcUlllP13OSMesgQueue_sl = .text:0x800237A0; // type:function size:0x104 scope:global align:32
+Nas_BgCopyMain__Fl = .text:0x800238C0; // type:function size:0x10C scope:global align:32
+__BgCopyDisk__FP7Bgload_l = .text:0x800239E0; // type:function size:0x4 scope:global align:32
+__BgCopyFinishProcess__FP7Bgload_ = .text:0x80023A00; // type:function size:0x124 scope:global align:32
+__BgCopySub__FP7Bgload_l = .text:0x80023B40; // type:function size:0x190 scope:global align:32
+__Nas_BgCopy__FP7Bgload_l = .text:0x80023CE0; // type:function size:0x84 scope:global align:32
+__Nas_ExCopy__FP7Bgload_l = .text:0x80023D80; // type:function size:0x74 scope:global align:32
+__Nas_BgDiskCopy__FPUcPUcUll = .text:0x80023E00; // type:function size:0x4 scope:global align:32
+__WaveTouch__FP6wtstr_UlP10WaveMedia_ = .text:0x80023E20; // type:function size:0x108 scope:global align:32
+Nas_BankOfsToAddr__FlPUcP10WaveMedia_l = .text:0x80023F40; // type:function size:0x374 scope:global align:32
+Nas_CheckBgWave__Fl = .text:0x800242C0; // type:function size:0x1A0 scope:global align:32
+__Reload__FP6wtstr_ = .text:0x80024460; // type:function size:0x48 scope:global align:32
+WaveReload__FllP10WaveMedia_ = .text:0x800244C0; // type:function size:0x3C4 scope:global align:32
+EmemReload__Fv = .text:0x800248A0; // type:function size:0x108 scope:global align:32
+MK_load__FllPUc = .text:0x800249C0; // type:function size:0x78 scope:global align:32
+MK_FrameWork__Fv = .text:0x80024A40; // type:function size:0x5C scope:global align:32
+MK_Init__Fv = .text:0x80024AA0; // type:function size:0x34 scope:global align:32
+Nap_AudioSysProcess__FP10AudioPort_ = .text:0x80024AE0; // type:function size:0x54C scope:global align:32
+__Nas_GroupFadeOut__Fll = .text:0x80025040; // type:function size:0x68 scope:global align:32
+__Nas_GroupFadeIn__Fll = .text:0x800250C0; // type:function size:0x40 scope:global align:32
+Nap_AudioPortInit__Fv = .text:0x80025100; // type:function size:0xAC scope:global align:32
+Nap_PortSet__FUlPl = .text:0x800251C0; // type:function size:0x50 scope:global align:32
+Nap_SetF32__FUlf = .text:0x80025220; // type:function size:0x28 scope:global align:32
+Nap_SetS32__FUll = .text:0x80025260; // type:function size:0x28 scope:global align:32
+Nap_SetS8__FUlSc = .text:0x800252A0; // type:function size:0x30 scope:global align:32
+Nap_SetU16__FUlUs = .text:0x800252E0; // type:function size:0x2C scope:global align:32
+Nap_SendStart__Fv = .text:0x80025320; // type:function size:0xA8 scope:global align:32
+Nap_FlushPort__Fv = .text:0x800253E0; // type:function size:0x20 scope:global align:32
+Nap_Process1Command__FP10AudioPort_ = .text:0x80025400; // type:function size:0x10C scope:global align:32
+Nap_AudioPortProcess__FUl = .text:0x80025520; // type:function size:0xD0 scope:global align:32
+Nap_CheckSpecChange__Fv = .text:0x80025600; // type:function size:0x68 scope:global align:32
+__ClearSpecChangeQ__Fv = .text:0x80025680; // type:function size:0x4C scope:global align:32
+Nap_StartSpecChange__Fl = .text:0x800256E0; // type:function size:0xA4 scope:global align:32
+Nap_StartReset__Fv = .text:0x800257A0; // type:function size:0x54 scope:global align:32
+Nap_ReadSubPort__Flll = .text:0x80025800; // type:function size:0x54 scope:global align:32
+Nap_ReadGrpPort__Fll = .text:0x80025860; // type:function size:0x24 scope:global align:32
+__SetGrpParam__FP6group_P10AudioPort_ = .text:0x800258A0; // type:function size:0x20C scope:global align:32
+__SetSubParam__FP4sub_P10AudioPort_ = .text:0x80025AC0; // type:function size:0x240 scope:global align:32
+Nap_WaitVsync__Fv = .text:0x80025D00; // type:function size:0x50 scope:global align:32
+Nap_SilenceCheck_Inner__Fl = .text:0x80025D60; // type:function size:0xB0 scope:global align:32
+Nap_GetRandom__Fv = .text:0x80025E20; // type:function size:0xA8 scope:global align:32
+Nas_InitGAudio__Fv = .text:0x80025EE0; // type:function size:0x20 scope:global align:32
+CreateAudioTask__FP4AcmdPsUll = .text:0x80025F00; // type:function size:0x218 scope:global align:32
+Z_osWritebackDCacheAll__Fv = .text:0x80026120; // type:function size:0x4 scope:global align:32
+osInvalDCache2__FPvl = .text:0x80026140; // type:function size:0x20 scope:global align:32
+osWritebackDCache2__FPvl = .text:0x80026160; // type:function size:0x20 scope:global align:32
+Z_osCreateMesgQueue__FP13OSMesgQueue_sPPvl = .text:0x80026180; // type:function size:0x18 scope:global align:32
+Z_osSendMesg__FP13OSMesgQueue_sPvl = .text:0x800261A0; // type:function size:0x50 scope:global align:32
+Z_osRecvMesg__FP13OSMesgQueue_sPPvl = .text:0x80026200; // type:function size:0x8C scope:global align:32
+Z_osEPiStartDma__FP10OSPiHandleP8OSIoMesgl = .text:0x800262A0; // type:function size:0x40 scope:global align:32
+Z_bcopy__FPvPvUl = .text:0x800262E0; // type:function size:0x20 scope:global align:32
+CopyStc__FP9commonch_P9commonch_ = .text:0x80026300; // type:function size:0x20 scope:global align:32
+__as__9commonch_FRC9commonch_ = .text:0x80026320; // type:function size:0xC8 scope:global align:32
+Nas_smzSetParam__FP8channel_P9drvparam_ = .text:0x80026400; // type:function size:0x364 scope:global align:32
+__as__6phase_FRC6phase_ = .text:0x80026780; // type:function size:0xC scope:global align:32
+Nas_smzSetPitch__FP8channel_f = .text:0x800267A0; // type:function size:0x84 scope:global align:32
+Nas_StartVoice__FP8channel_ = .text:0x80026840; // type:function size:0x88 scope:global align:32
+Nas_StopVoice__FP8channel_ = .text:0x800268E0; // type:function size:0x64 scope:global align:32
+Nas_UpdateChannel__Fv = .text:0x80026960; // type:function size:0x49C scope:global align:32
+NoteToVoice__FP11voicetable_l = .text:0x80026E00; // type:function size:0x30 scope:global align:32
+ProgToVp__Fll = .text:0x80026E40; // type:function size:0xC4 scope:global align:32
+PercToPp__Fll = .text:0x80026F20; // type:function size:0xD8 scope:global align:32
+VpercToVep__Fll = .text:0x80027000; // type:function size:0xE4 scope:global align:32
+OverwriteBank__Fllll = .text:0x80027100; // type:function size:0x12C scope:global align:32
+__as__15percvoicetable_FRC15percvoicetable_ = .text:0x80027240; // type:function size:0x14 scope:global align:32
+__Nas_Release_Channel_Main__FP5note_i = .text:0x80027260; // type:function size:0x32C scope:global align:32
+Nas_Release_Channel__FP5note_ = .text:0x800275A0; // type:function size:0x24 scope:global align:32
+Nas_Release_Channel_Force__FP5note_ = .text:0x800275E0; // type:function size:0x24 scope:global align:32
+__Nas_InitList__FP5link_ = .text:0x80027620; // type:function size:0x14 scope:global align:32
+Nas_InitChNode__FP7chnode_ = .text:0x80027640; // type:function size:0x54 scope:global align:32
+Nas_InitChannelList__Fv = .text:0x800276A0; // type:function size:0x94 scope:global align:32
+Nas_DeAllocAllVoices__FP7chnode_ = .text:0x80027740; // type:function size:0xE8 scope:global align:32
+Nas_AllocVoices__FP7chnode_l = .text:0x80027840; // type:function size:0xF8 scope:global align:32
+Nas_AddListHead__FP5link_P5link_ = .text:0x80027940; // type:function size:0x3C scope:global align:32
+Nas_CutList__FP5link_ = .text:0x80027980; // type:function size:0x2C scope:global align:32
+__Nas_GetLowerPrio__FP5link_l = .text:0x800279C0; // type:function size:0x70 scope:global align:32
+Nas_EntryTrack__FP8channel_P5note_ = .text:0x80027A40; // type:function size:0x170 scope:global align:32
+__Nas_InterTrack__FP8channel_P5note_ = .text:0x80027BC0; // type:function size:0x40 scope:global align:32
+__Nas_InterReleaseTrack__FP8channel_P5note_ = .text:0x80027C00; // type:function size:0x34 scope:global align:32
+__Nas_ChLookFree__FP7chnode_P5note_ = .text:0x80027C40; // type:function size:0x58 scope:global align:32
+__Nas_ChLookRelease__FP7chnode_P5note_ = .text:0x80027CA0; // type:function size:0x6C scope:global align:32
+__Nas_ChLookRelWait__FP7chnode_P5note_ = .text:0x80027D20; // type:function size:0xDC scope:global align:32
+Nas_AllocationOnRequest__FP5note_ = .text:0x80027E00; // type:function size:0x2DC scope:global align:32
+Nas_ChannelInit__Fv = .text:0x800280E0; // type:function size:0xE8 scope:global align:32
+__Nas_CallWaveProcess_Sub__FP4sub_ll = .text:0x800281E0; // type:function size:0x1CC scope:global align:32
+Nas_MainCtrl__FP6group_ = .text:0x800283C0; // type:function size:0x130 scope:global align:32
+Nas_SweepCalculator__FP6sweep_ = .text:0x80028500; // type:function size:0x54 scope:global align:32
+Nas_ModTableRead__FP8tmtable_ = .text:0x80028560; // type:function size:0x38 scope:global align:32
+Nas_Modulator__FP8tmtable_ = .text:0x800285A0; // type:function size:0x290 scope:global align:32
+Nas_ChannelModulation__FP8channel_ = .text:0x80028840; // type:function size:0x58 scope:global align:32
+Nas_ChannelModInit__FP8channel_ = .text:0x800288A0; // type:function size:0x124 scope:global align:32
+Nas_SweepInit__FP8channel_ = .text:0x800289E0; // type:function size:0x38 scope:global align:32
+__as__6sweep_FRC6sweep_ = .text:0x80028A20; // type:function size:0x24 scope:global align:32
+Nas_EnvInit__FP5envp_P7envdat_Ps = .text:0x80028A60; // type:function size:0x28 scope:global align:32
+Nas_EnvProcess__FP5envp_ = .text:0x80028AA0; // type:function size:0x3AC scope:global align:32
+Convert_Com__FP6macro_Uc = .text:0x80028E60; // type:function size:0x60 scope:global align:32
+Common_Com__FP6group_P6macro_ll = .text:0x80028EC0; // type:function size:0x1C4 scope:global align:32
+Nas_InitSubTrack__FP4sub_ = .text:0x800290A0; // type:function size:0x188 scope:global align:32
+Nas_EntryNoteTrack__FP4sub_i = .text:0x80029240; // type:function size:0x184 scope:global align:32
+__as__4env_FRC4env_ = .text:0x800293E0; // type:function size:0x1C scope:global align:32
+Nas_ReleaseNoteTrack__FP5note_ = .text:0x80029400; // type:function size:0x8C scope:global align:32
+Nas_CloseNoteTrack__FP4sub_l = .text:0x800294A0; // type:function size:0x68 scope:global align:32
+Nas_ReleaseSubTrack__FP4sub_ = .text:0x80029520; // type:function size:0x78 scope:global align:32
+Nas_AllocSub__FP6group_Us = .text:0x800295A0; // type:function size:0x50 scope:global align:32
+Nas_DeAllocSub__FP6group_Us = .text:0x80029600; // type:function size:0x6C scope:global align:32
+Nas_OpenSub__FP6group_UcPUc = .text:0x80029680; // type:function size:0x94 scope:global align:32
+Nas_ReleaseGroup_Force__FP6group_ = .text:0x80029720; // type:function size:0x30 scope:global align:32
+Nas_ReleaseGroup__FP6group_ = .text:0x80029760; // type:function size:0xD4 scope:global align:32
+Nas_AddList__FP5link_P5link_ = .text:0x80029840; // type:function size:0x134 scope:global align:32
+Nas_GetList__FP5link_ = .text:0x80029980; // type:function size:0x40 scope:global align:32
+Nas_InitNoteList__Fv = .text:0x800299C0; // type:function size:0x8C scope:global align:32
+Nas_ReadByteData__FP6macro_ = .text:0x80029A60; // type:function size:0x14 scope:global align:32
+Nas_ReadWordData__FP6macro_ = .text:0x80029A80; // type:function size:0x34 scope:global align:32
+Nas_ReadLengthData__FP6macro_ = .text:0x80029AC0; // type:function size:0x38 scope:global align:32
+Nas_NoteSeq__FP5note_ = .text:0x80029B00; // type:function size:0x108 scope:global align:32
+__Stop_Note__FP5note_ = .text:0x80029C20; // type:function size:0x98 scope:global align:32
+__SetChannel__FP5note_l = .text:0x80029CC0; // type:function size:0xD8 scope:global align:32
+__Command_Seq__FP5note_ = .text:0x80029DA0; // type:function size:0x3C4 scope:global align:32
+__SetVoice__FP5note_l = .text:0x8002A180; // type:function size:0x5E0 scope:global align:32
+__SetNote__FP5note_l = .text:0x8002A760; // type:function size:0x370 scope:global align:32
+Nas_PriorityChanger__FP4sub_Uc = .text:0x8002AAE0; // type:function size:0x4C scope:global align:32
+Nas_ProgramChanger__FP4sub_UcPP11voicetable_P4env_ = .text:0x8002AB40; // type:function size:0x74 scope:global align:32
+Nas_SubVoiceSet__FP4sub_Uc = .text:0x8002ABC0; // type:function size:0xB8 scope:global align:32
+Nas_SubVolumeSet__FP4sub_Uc = .text:0x8002AC80; // type:function size:0x38 scope:global align:32
+Nas_SubSeq__FP4sub_ = .text:0x8002ACC0; // type:function size:0xDEC scope:global align:32
+Nas_GroupSeq__FP6group_ = .text:0x8002BAC0; // type:function size:0x928 scope:global align:32
+Nas_MySeqMain__FUl = .text:0x8002C400; // type:function size:0xC0 scope:global align:32
+Nas_SeqSkip__FP6group_ = .text:0x8002C4C0; // type:function size:0x54 scope:global align:32
+Nas_InitMySeq__FP6group_ = .text:0x8002C520; // type:function size:0xCC scope:global align:32
+Nas_AssignSubTrack__Fl = .text:0x8002C600; // type:function size:0xC8 scope:global align:32
+__InitGroup__FP6group_ = .text:0x8002C6E0; // type:function size:0xD8 scope:global align:32
+Nas_InitPlayer__Fv = .text:0x8002C7C0; // type:function size:0x154 scope:global align:32
+__DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2 = .text:0x8002C920; // type:function size:0x2AC scope:global align:32
+DSPInit = .text:0x8002CBE0; // type:function size:0x4 scope:global align:32
+DSPInit2__FP16STRUCT_DSP_TASK2 = .text:0x8002CC00; // type:function size:0x9C scope:global align:32
+DspBoot__Fv = .text:0x8002CCA0; // type:function size:0x70 scope:global align:32
+DSPSendCommands__FPUlUl = .text:0x8002CD20; // type:function size:0x90 scope:global align:32
+DSPReleaseHalt__Fv = .text:0x8002CDC0; // type:function size:0x4C scope:global align:32
+DSPWaitFinish__Fv = .text:0x8002CE20; // type:function size:0x3C scope:global align:32
+DsetupTable__FUlUlUlUlUl = .text:0x8002CE60; // type:function size:0x48 scope:global align:32
+DsyncFrame__FUlUlUl = .text:0x8002CEC0; // type:function size:0x48 scope:global align:32
+DwaitFrame__Fv = .text:0x8002CF20; // type:function size:0x34 scope:global align:32
+DiplSec__FUl = .text:0x8002CF60; // type:function size:0x3C scope:global align:32
+DagbSec__FUl = .text:0x8002CFA0; // type:function size:0x3C scope:global align:32
+WriteTask__FUcUlPvPFPv_v = .text:0x8002CFE0; // type:function size:0x6C scope:global align:32
+DoTask__Fv = .text:0x8002D060; // type:function size:0xC8 scope:global align:32
+DspExtraTaskCheck__Fv = .text:0x8002D140; // type:function size:0x24 scope:global align:32
+Jac_DSPcardDecodeAsync__FPvPvPFPv_v = .text:0x8002D180; // type:function size:0x54 scope:global align:32
+Jac_DSPagbDecodeAsync__FPvPvPFPv_v = .text:0x8002D1E0; // type:function size:0x54 scope:global align:32
+exnor_1st__FUlUl = .text:0x8002D240; // type:function size:0x38 scope:global align:32
+exnor__FUlUl = .text:0x8002D280; // type:function size:0x38 scope:global align:32
+bitrev__FUl = .text:0x8002D2C0; // type:function size:0x7C scope:global align:32
+ReadArrayUnlock__FlUlPvli = .text:0x8002D340; // type:function size:0x180 scope:global align:32
+GetInitVal__Fv = .text:0x8002D4C0; // type:function size:0x40 scope:global align:32
+DummyLen__Fv = .text:0x8002D500; // type:function size:0x98 scope:global align:32
+__CARDUnlock = .text:0x8002D5A0; // type:function size:0x2B4 scope:global align:32
+DoneCallback__FPv = .text:0x8002D860; // type:function size:0x1E8 scope:global align:32
+F152__FP15STRUCT_DSP_TASK = .text:0x8002DA60; // type:function size:0xB4 scope:global align:32
+F25__FPv = .text:0x8002DB20; // type:function size:0x28 scope:global align:32
+__GBAX02 = .text:0x8002DB60; // type:function size:0x98 scope:global align:32
+List_CountChannel__FPP3jc_ = .text:0x8002DC00; // type:function size:0x20 scope:global align:32
+List_CutChannel__FP3jc_ = .text:0x8002DC20; // type:function size:0x70 scope:global align:32
+List_GetChannel__FPP3jc_ = .text:0x8002DCA0; // type:function size:0x2C scope:global align:32
+List_AddChannelTail__FPP3jc_P3jc_ = .text:0x8002DCE0; // type:function size:0x4C scope:global align:32
+List_AddChannel__FPP3jc_P3jc_ = .text:0x8002DD40; // type:function size:0x14 scope:global align:32
+FixAllocChannel__FP4jcs_Ul = .text:0x8002DD60; // type:function size:0xA0 scope:global align:32
+FixReleaseChannel__FP3jc_ = .text:0x8002DE00; // type:function size:0x68 scope:global align:32
+FixReleaseChannelAll__FP4jcs_ = .text:0x8002DE80; // type:function size:0x11C scope:global align:32
+FixMoveChannelAll__FP4jcs_P4jcs_ = .text:0x8002DFA0; // type:function size:0x104 scope:global align:32
+PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc = .text:0x8002E0C0; // type:function size:0x74 scope:global align:32
+InitJcs__FP4jcs_ = .text:0x8002E140; // type:function size:0x104 scope:global align:32
+Channel_Init__FP3jc_ = .text:0x8002E260; // type:function size:0x13C scope:global align:32
+Channel_FirstInit__FP3jc_ = .text:0x8002E3A0; // type:function size:0x30 scope:global align:32
+InitGlobalChannel__Fv = .text:0x8002E3E0; // type:function size:0x84 scope:global align:32
+__UpdateJcToDSPInit__FP3jc_ = .text:0x8002E480; // type:function size:0xE4 scope:global align:32
+__UpdateJcToDSP__FP3jc_ = .text:0x8002E580; // type:function size:0xE4 scope:global align:32
+UpdateJcToDSP__FP3jc_ = .text:0x8002E680; // type:function size:0x38 scope:global align:32
+UpdateEffecterParam__FP3jc_ = .text:0x8002E6C0; // type:function size:0x3D4 scope:global align:32
+DoEffectOsc__FP3jc_Ucf = .text:0x8002EAA0; // type:function size:0x68 scope:global align:32
+KillBrokenLogicalChannels__FP6dspch_ = .text:0x8002EB20; // type:function size:0x88 scope:global align:32
+CommonCallbackLogicalChannel__FP6dspch_Ul = .text:0x8002EBC0; // type:function size:0x360 scope:global align:32
+StopLogicalChannel__FP3jc_ = .text:0x8002EF20; // type:function size:0x7C scope:global align:32
+CheckLogicalChannel__FP3jc_ = .text:0x8002EFA0; // type:function size:0x28 scope:global align:32
+PlayLogicalChannel__FP3jc_ = .text:0x8002EFE0; // type:function size:0x148 scope:global align:32
+ResetInitialVolume__FP3jc_ = .text:0x8002F140; // type:function size:0x70 scope:global align:32
+Add_WaitDSPChannel__FP3jc_ = .text:0x8002F1C0; // type:function size:0xA0 scope:global align:32
+Del_WaitDSPChannel__FP3jc_ = .text:0x8002F260; // type:function size:0x60 scope:global align:32
+__Entry_WaitChannel__FUc = .text:0x8002F2C0; // type:function size:0xFC scope:global align:32
+EntryCheck_WaitDSPChannel__Fv = .text:0x8002F3C0; // type:function size:0xD0 scope:global align:32
+Cancel_WaitDSPChannel__FP3jc_ = .text:0x8002F4A0; // type:function size:0x4C scope:global align:32
+ForceStopLogicalChannel__FP3jc_ = .text:0x8002F500; // type:function size:0x38 scope:global align:32
+InitDSPchannel__Fv = .text:0x8002F540; // type:function size:0x60 scope:global align:32
+AllocDSPchannel__FUlUl = .text:0x8002F5A0; // type:function size:0x134 scope:global align:32
+DeAllocDSPchannel__FP6dspch_Ul = .text:0x8002F6E0; // type:function size:0xDC scope:global align:32
+GetLowerDSPchannel__Fv = .text:0x8002F7C0; // type:function size:0x108 scope:global align:32
+GetLowerActiveDSPchannel__Fv = .text:0x8002F8E0; // type:function size:0xD4 scope:global align:32
+ForceStopDSPchannel__FP6dspch_ = .text:0x8002F9C0; // type:function size:0x74 scope:global align:32
+BreakLowerDSPchannel__FUc = .text:0x8002FA40; // type:function size:0xA8 scope:global align:32
+BreakLowerActiveDSPchannel__FUc = .text:0x8002FB00; // type:function size:0xA8 scope:global align:32
+UpdateDSPchannelAll__Fv = .text:0x8002FBC0; // type:function size:0x1E4 scope:global align:32
+GetDspHandle__FUc = .text:0x8002FDC0; // type:function size:0x18 scope:global align:32
+GetFxHandle__FUc = .text:0x8002FDE0; // type:function size:0x14 scope:global align:32
+DSP_SetPitch__FUcUs = .text:0x8002FE00; // type:function size:0x2C scope:global align:32
+DSP_SetMixerInitDelayMax__FUcUc = .text:0x8002FE40; // type:function size:0x20 scope:global align:32
+DSP_SetMixerInitVolume__FUcUcsUc = .text:0x8002FE60; // type:function size:0x38 scope:global align:32
+DSP_SetMixerVolume__FUcUcsUc = .text:0x8002FEA0; // type:function size:0x44 scope:global align:32
+DSP_SetOscInfo__FUcUl = .text:0x8002FF00; // type:function size:0x2C scope:global align:32
+DSP_SetPauseFlag__FUcUc = .text:0x8002FF40; // type:function size:0x20 scope:global align:32
+DSP_SetWaveInfo__FUcP5Wave_Ul = .text:0x8002FF60; // type:function size:0xB4 scope:global align:32
+DSP_SetBusConnect__FUcUcUc = .text:0x80030020; // type:function size:0x34 scope:global align:32
+DSP_PlayStop__FUc = .text:0x80030060; // type:function size:0x1C scope:global align:32
+DSP_AllocInit__FUc = .text:0x80030080; // type:function size:0x48 scope:global align:32
+DSP_PlayStart__FUc = .text:0x800300E0; // type:function size:0x84 scope:global align:32
+DSP_SetDistFilter__FUcs = .text:0x80030180; // type:function size:0x1C scope:global align:32
+DSP_SetFilterTable__FPsPsUl = .text:0x800301A0; // type:function size:0x28 scope:global align:32
+DSP_SetIIRFilterParam__FUcPs = .text:0x800301E0; // type:function size:0x3C scope:global align:32
+DSP_SetFIR8FilterParam__FUcPs = .text:0x80030220; // type:function size:0x3C scope:global align:32
+DSP_SetFilterMode__FUcUs = .text:0x80030260; // type:function size:0x4C scope:global align:32
+DSP_FlushBuffer__Fv = .text:0x800302C0; // type:function size:0x3C scope:global align:32
+DSP_FlushChannel__FUc = .text:0x80030300; // type:function size:0x38 scope:global align:32
+DSP_InvalChannelAll__Fv = .text:0x80030340; // type:function size:0x2C scope:global align:32
+DSP_ClearBuffer__Fv = .text:0x80030380; // type:function size:0x5C scope:global align:32
+DSP_SetupBuffer__Fv = .text:0x800303E0; // type:function size:0x44 scope:global align:32
+DSP_InitBuffer__Fv = .text:0x80030440; // type:function size:0x5C scope:global align:32
+DFX_SetFxLine__FUcPsP13FxlineConfig_ = .text:0x800304A0; // type:function size:0x134 scope:global align:32
+PTconvert__FPPvUl = .text:0x800305E0; // type:function size:0x24 scope:local align:32
+Bank_Test__FPUc = .text:0x80030620; // type:function size:0x280 scope:global align:32
+__Bank_Regist_Inner__FPUcUlUl = .text:0x800308A0; // type:function size:0x60 scope:global align:32
+Bank_Regist__FPvUl = .text:0x80030900; // type:function size:0x24 scope:global align:32
+Bank_Init__Fv = .text:0x80030940; // type:function size:0x28 scope:global align:32
+Bank_Get__FUl = .text:0x80030980; // type:function size:0x24 scope:global align:32
+PTconvert__FPPvUl = .text:0x800309C0; // type:function size:0x38 scope:local align:32
+Wave_Test__FPUc = .text:0x80030A00; // type:function size:0x2A4 scope:global align:32
+Wavegroup_Regist__FPvUl = .text:0x80030CC0; // type:function size:0x84 scope:global align:32
+Wavegroup_Init__Fv = .text:0x80030D60; // type:function size:0x28 scope:global align:32
+WaveidToWavegroup__FUlUl = .text:0x80030DA0; // type:function size:0x58 scope:global align:32
+__WaveScene_Set__FUlUli = .text:0x80030E00; // type:function size:0x7C scope:global align:32
+WaveScene_Set__FUlUl = .text:0x80030E80; // type:function size:0x24 scope:global align:32
+UpdateWave__FP12WaveArchive_P5Ctrl_Ul = .text:0x80030EC0; // type:function size:0xA8 scope:global align:32
+UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_ = .text:0x80030F80; // type:function size:0x16C scope:global align:32
+Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli = .text:0x80031100; // type:function size:0x15C scope:global align:32
+SearchWave__FP5Ctrl_Ul = .text:0x80031260; // type:function size:0x48 scope:global align:32
+__GetSoundHandle__FP10CtrlGroup_UlUl = .text:0x800312C0; // type:function size:0x110 scope:global align:32
+GetSoundHandle__FP10CtrlGroup_Ul = .text:0x800313E0; // type:function size:0x6C scope:global align:32
+Jac_WsVirtualToPhysical__FUs = .text:0x80031460; // type:function size:0x18 scope:global align:32
+Jac_BnkVirtualToPhysical__FUs = .text:0x80031480; // type:function size:0x18 scope:global align:32
+Jac_WsConnectTableSet__FUlUl = .text:0x800314A0; // type:function size:0x30 scope:global align:32
+Jac_BnkConnectTableSet__FUlUl = .text:0x800314E0; // type:function size:0x30 scope:global align:32
+Jac_ConnectTableInit__Fv = .text:0x80031520; // type:function size:0x34 scope:global align:32
+Bank_InstChange__FP5Bank_Ul = .text:0x80031560; // type:function size:0x20 scope:global align:32
+Bank_PercChange__FP5Bank_Ul = .text:0x80031580; // type:function size:0x20 scope:global align:32
+Bank_GetInstKeymap__FP5Inst_Uc = .text:0x800315A0; // type:function size:0x64 scope:global align:32
+Bank_GetInstVmap__FP5Inst_UcUc = .text:0x80031620; // type:function size:0x94 scope:global align:32
+Bank_GetPercVmap__FP5Perc_UcUc = .text:0x800316C0; // type:function size:0x70 scope:global align:32
+Bank_SenseToOfs__FP6Sense_Uc = .text:0x80031740; // type:function size:0x104 scope:global align:32
+Bank_RandToOfs__FP5Rand_ = .text:0x80031860; // type:function size:0x48 scope:global align:32
+Bank_OscToOfs__FP4Osc_P7Oscbuf_ = .text:0x800318C0; // type:function size:0x408 scope:global align:32
+GetRandom_s32 = .text:0x80031CE0; // type:function size:0x38 scope:global align:32
+GetRandom_sf32 = .text:0x80031D20; // type:function size:0x54 scope:global align:32
+Jac_RegisterARAMCallback__FPFPcUlUlPUlP7jaheap__Ul = .text:0x80031D80; // type:function size:0x8 scope:global align:32
+LoadAram__FPcPUlUl = .text:0x80031DA0; // type:function size:0x58 scope:global align:32
+LoadAramSingle__FPcUlUlPUlUl = .text:0x80031E00; // type:function size:0x60 scope:global align:32
+Jac_WaveDirectorySet__FPc = .text:0x80031E60; // type:function size:0x2C scope:global align:32
+Get_AramMotherHeap__Fv = .text:0x80031EA0; // type:function size:0xC scope:global align:32
+Init_AramMotherHeap__Fv = .text:0x80031EC0; // type:function size:0x6C scope:global align:32
+LoadAram_Default__FPcUlUlPUlP7jaheap_ = .text:0x80031F40; // type:function size:0x100 scope:global align:32
+LoadAram_All__FPcPUlP7jaheap_ = .text:0x80032040; // type:function size:0x38 scope:global align:32
+LoadAram_One__FPcUlUlPUlP7jaheap_ = .text:0x80032080; // type:function size:0x28 scope:global align:32
+sqrtf2__Ff = .text:0x800320C0; // type:function size:0x20 scope:global align:32
+sqrtf__3stdFf = .text:0x800320E0; // type:function size:0x64 scope:global align:32
+sinf__3stdFf = .text:0x80032160; // type:function size:0x24 scope:global align:32
+Jac_InitSinTable__Fv = .text:0x800321A0; // type:function size:0xB0 scope:global align:32
+sinf3__Ff = .text:0x80032260; // type:function size:0x30 scope:global align:32
+FAT_AllocateMemory__FUl = .text:0x800322A0; // type:function size:0xE0 scope:global align:32
+FAT_FreeMemory__FUs = .text:0x80032380; // type:function size:0x1B0 scope:global align:32
+__as__4FAT_FRC4FAT_ = .text:0x80032540; // type:function size:0x1C scope:global align:32
+FAT_GetPointer__FUsUl = .text:0x80032560; // type:function size:0x50 scope:global align:32
+FAT_ReadByte__FUsUl = .text:0x800325C0; // type:function size:0x34 scope:global align:32
+FAT_StoreBlock__FPUcUsUlUl = .text:0x80032600; // type:function size:0xF0 scope:global align:32
+Get_Portcmd__FP10JPorthead_ = .text:0x80032700; // type:function size:0x40 scope:global align:32
+Jac_Portcmd_Proc_Once = .text:0x80032740; // type:function size:0x54 scope:global align:32
+Jac_Portcmd_Proc_Stay = .text:0x800327A0; // type:function size:0x50 scope:global align:32
+Portcmd_Main__FPv = .text:0x80032800; // type:function size:0x30 scope:global align:32
+Jac_Porthead_Init = .text:0x80032840; // type:function size:0x10 scope:global align:32
+Jac_Portcmd_Init = .text:0x80032860; // type:function size:0x3C scope:global align:32
+Jac_InitHeap__FP7jaheap_ = .text:0x800328A0; // type:function size:0x44 scope:global align:32
+Jac_SelfInitHeap__FP7jaheap_UlUlUl = .text:0x80032900; // type:function size:0x38 scope:global align:32
+Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl = .text:0x80032940; // type:function size:0x104 scope:global align:32
+Jac_SetGroupHeap__FP7jaheap_P7jaheap_ = .text:0x80032A60; // type:function size:0x38 scope:global align:32
+Jac_InitMotherHeap__FP7jaheap_UlUlUc = .text:0x80032AA0; // type:function size:0x5C scope:global align:32
+Jac_AllocHeap__FP7jaheap_P7jaheap_Ul = .text:0x80032B00; // type:function size:0x1B8 scope:global align:32
+Jam_OfsToAddr = .text:0x80032CC0; // type:function size:0x54 scope:global align:32
+__ByteReadOfs__FP5seqp_Ul = .text:0x80032D20; // type:function size:0x54 scope:global align:32
+__WordReadOfs__FP5seqp_Ul = .text:0x80032D80; // type:function size:0x50 scope:global align:32
+__24ReadOfs__FP5seqp_Ul = .text:0x80032DE0; // type:function size:0x68 scope:global align:32
+__LongReadOfs__FP5seqp_Ul = .text:0x80032E60; // type:function size:0x54 scope:global align:32
+__ByteRead__FP5seqp_ = .text:0x80032EC0; // type:function size:0x70 scope:global align:32
+__WordRead__FP5seqp_ = .text:0x80032F40; // type:function size:0x48 scope:global align:32
+__24Read__FP5seqp_ = .text:0x80032FA0; // type:function size:0x5C scope:global align:32
+__ConditionCheck__FP5seqp_Uc = .text:0x80033000; // type:function size:0xD0 scope:global align:32
+Jam_SEQtimeToDSPtime__FP5seqp_lUc = .text:0x800330E0; // type:function size:0x90 scope:global align:32
+Extend8to16__FUc = .text:0x80033180; // type:function size:0x1C scope:global align:32
+Jam_WriteTimeParam__FP5seqp_Uc = .text:0x800331A0; // type:function size:0x1B4 scope:global align:32
+Jam_WriteRegDirect = .text:0x80033360; // type:function size:0xB4 scope:global align:32
+LoadTbl__FP5seqp_UlUlUl = .text:0x80033420; // type:function size:0x98 scope:global align:32
+Jam_WriteRegParam = .text:0x800334C0; // type:function size:0x494 scope:global align:32
+Jam_ReadRegDirect = .text:0x80033960; // type:function size:0x190 scope:global align:32
+Jam_ReadRegXY__FP5seqp_ = .text:0x80033B00; // type:function size:0x50 scope:global align:32
+Jam_ReadReg32 = .text:0x80033B60; // type:function size:0x5C scope:global align:32
+Jam_WriteRegXY = .text:0x80033BC0; // type:function size:0x50 scope:global align:32
+__ExchangeRegisterValue__FP5seqp_Uc = .text:0x80033C20; // type:function size:0x3C scope:global align:32
+Jam_WritePortAppDirect = .text:0x80033C60; // type:function size:0x7C scope:global align:32
+Jam_InitRegistTrack = .text:0x80033CE0; // type:function size:0x30 scope:global align:32
+Jam_RegistTrack__FP5seqp_Ul = .text:0x80033D20; // type:function size:0xAC scope:global align:32
+Jam_UnRegistTrack = .text:0x80033DE0; // type:function size:0x90 scope:global align:32
+Jam_InitExtBuffer = .text:0x80033E80; // type:function size:0x18 scope:global align:32
+Jam_AssignExtBuffer = .text:0x80033EA0; // type:function size:0x38 scope:global align:32
+Jam_SetExtFirFilterD = .text:0x80033EE0; // type:function size:0x48 scope:global align:32
+__PanCalc__FfffUc = .text:0x80033F40; // type:function size:0x48 scope:global align:32
+Jam_UpdateTrackAll = .text:0x80033FA0; // type:function size:0x384 scope:global align:32
+OSf32tos8 = .text:0x80034340; // type:function size:0x34 scope:global align:32
+__OSf32tos8 = .text:0x80034380; // type:function size:0x1C scope:global align:32
+Jam_UpdateTrack = .text:0x800343A0; // type:function size:0x504 scope:global align:32
+Jam_UpdateTempo = .text:0x800348C0; // type:function size:0x100 scope:global align:32
+Jam_SetInterrupt = .text:0x800349C0; // type:function size:0x28 scope:global align:32
+Jam_TryInterrupt = .text:0x80034A00; // type:function size:0x98 scope:global align:32
+Cmd_OpenTrack__Fv = .text:0x80034AA0; // type:function size:0x38 scope:global align:32
+Cmd_OpenTrackBros__Fv = .text:0x80034AE0; // type:function size:0x50 scope:global align:32
+Cmd_Call__Fv = .text:0x80034B40; // type:function size:0x3C scope:global align:32
+Cmd_CallF__Fv = .text:0x80034B80; // type:function size:0x108 scope:global align:32
+Cmd_Ret__Fv = .text:0x80034CA0; // type:function size:0x28 scope:global align:32
+Cmd_RetF__Fv = .text:0x80034CE0; // type:function size:0x60 scope:global align:32
+Cmd_Jmp__Fv = .text:0x80034D40; // type:function size:0x1C scope:global align:32
+Cmd_JmpF__Fv = .text:0x80034D60; // type:function size:0x20 scope:global align:32
+Cmd_LoopS__Fv = .text:0x80034D80; // type:function size:0x48 scope:global align:32
+Cmd_LoopE__Fv = .text:0x80034DE0; // type:function size:0x74 scope:global align:32
+Cmd_ReadPort__Fv = .text:0x80034E60; // type:function size:0x54 scope:global align:32
+Cmd_WritePort__Fv = .text:0x80034EC0; // type:function size:0x40 scope:global align:32
+Cmd_CheckPortImport__Fv = .text:0x80034F00; // type:function size:0x44 scope:global align:32
+Cmd_CheckPortExport__Fv = .text:0x80034F60; // type:function size:0x44 scope:global align:32
+Cmd_WaitReg__Fv = .text:0x80034FC0; // type:function size:0x20 scope:global align:32
+Cmd_ConnectName__Fv = .text:0x80034FE0; // type:function size:0x28 scope:global align:32
+Cmd_ParentWritePort__Fv = .text:0x80035020; // type:function size:0x40 scope:global align:32
+Cmd_ChildWritePort__Fv = .text:0x80035060; // type:function size:0x48 scope:global align:32
+Cmd_SetLastNote__Fv = .text:0x800350C0; // type:function size:0x30 scope:global align:32
+Cmd_TimeRelate__Fv = .text:0x80035100; // type:function size:0x1C scope:global align:32
+Cmd_SimpleOsc__Fv = .text:0x80035120; // type:function size:0x34 scope:global align:32
+Cmd_SimpleEnv__Fv = .text:0x80035160; // type:function size:0x38 scope:global align:32
+Cmd_SimpleADSR__Fv = .text:0x800351A0; // type:function size:0x5C scope:global align:32
+Cmd_Transpose__Fv = .text:0x80035200; // type:function size:0x44 scope:global align:32
+Cmd_CloseTrack__Fv = .text:0x80035260; // type:function size:0x68 scope:global align:32
+Cmd_OutSwitch__Fv = .text:0x800352E0; // type:function size:0x3C scope:global align:32
+Cmd_UpdateSync__Fv = .text:0x80035320; // type:function size:0x34 scope:global align:32
+Cmd_BusConnect__Fv = .text:0x80035360; // type:function size:0x30 scope:global align:32
+Cmd_PauseStatus__Fv = .text:0x800353A0; // type:function size:0x1C scope:global align:32
+Cmd_SetInterrupt__Fv = .text:0x800353C0; // type:function size:0x44 scope:global align:32
+Cmd_DisInterrupt__Fv = .text:0x80035420; // type:function size:0x38 scope:global align:32
+Cmd_ClrI__Fv = .text:0x80035460; // type:function size:0x14 scope:global align:32
+Cmd_SetI__Fv = .text:0x80035480; // type:function size:0x14 scope:global align:32
+Cmd_RetI__Fv = .text:0x800354A0; // type:function size:0x2C scope:global align:32
+Cmd_IntTimer__Fv = .text:0x800354E0; // type:function size:0x34 scope:global align:32
+Cmd_ConnectOpen__Fv = .text:0x80035520; // type:function size:0x2C scope:global align:32
+Cmd_ConnectClose__Fv = .text:0x80035560; // type:function size:0x28 scope:global align:32
+Cmd_SyncCPU__Fv = .text:0x800355A0; // type:function size:0x60 scope:global align:32
+Cmd_FlushAll__Fv = .text:0x80035600; // type:function size:0x38 scope:global align:32
+Cmd_FlushRelease__Fv = .text:0x80035640; // type:function size:0x2C scope:global align:32
+Cmd_Wait3__Fv = .text:0x80035680; // type:function size:0x20 scope:global align:32
+Cmd_TimeBase__Fv = .text:0x800356A0; // type:function size:0x44 scope:global align:32
+Cmd_Tempo__Fv = .text:0x80035700; // type:function size:0x50 scope:global align:32
+Cmd_Finish__Fv = .text:0x80035760; // type:function size:0xD8 scope:global align:32
+Cmd_Nop__Fv = .text:0x80035840; // type:function size:0x8 scope:global align:32
+Cmd_PanPowSet__Fv = .text:0x80035860; // type:function size:0xA8 scope:global align:32
+Cmd_IIRSet__Fv = .text:0x80035920; // type:function size:0x90 scope:global align:32
+Cmd_FIRSet__Fv = .text:0x800359C0; // type:function size:0x44 scope:global align:32
+Cmd_EXTSet__Fv = .text:0x80035A20; // type:function size:0x50 scope:global align:32
+Cmd_PanSwSet__Fv = .text:0x80035A80; // type:function size:0xC0 scope:global align:32
+Cmd_OscRoute__Fv = .text:0x80035B40; // type:function size:0x44 scope:global align:32
+Cmd_IIRCutOff__Fv = .text:0x80035BA0; // type:function size:0xA0 scope:global align:32
+Cmd_OscFull__Fv = .text:0x80035C40; // type:function size:0x3C scope:global align:32
+Cmd_CheckWave__Fv = .text:0x80035C80; // type:function size:0x60 scope:global align:32
+Cmd_Printf__Fv = .text:0x80035CE0; // type:function size:0x1FC scope:global align:32
+Cmd_Process__FP5seqp_UcUs = .text:0x80035EE0; // type:function size:0x170 scope:global align:32
+__as__8Arghead_FRC8Arghead_ = .text:0x80036060; // type:function size:0x14 scope:global align:32
+RegCmd_Process__FP5seqp_iUl = .text:0x80036080; // type:function size:0xB8 scope:global align:32
+Jam_SeqmainNote = .text:0x80036140; // type:function size:0x92C scope:global align:32
+SeqUpdate = .text:0x80036A80; // type:function size:0xAC scope:global align:32
+NoteON__FP5seqp_llll = .text:0x80036B40; // type:function size:0x358 scope:global align:32
+__as__4Osc_FRC4Osc_ = .text:0x80036EA0; // type:function size:0x34 scope:global align:32
+NoteOFF_R__FP5seqp_UcUs = .text:0x80036EE0; // type:function size:0x94 scope:global align:32
+NoteOFF__FP5seqp_Uc = .text:0x80036F80; // type:function size:0x24 scope:global align:32
+GateON__FP5seqp_llll = .text:0x80036FC0; // type:function size:0x50 scope:global align:32
+CheckNoteStop__FP5seqp_l = .text:0x80037020; // type:function size:0x5C scope:global align:32
+Jaq_Reset = .text:0x80037080; // type:function size:0xA0 scope:global align:32
+BackTrack__FP5seqp_ = .text:0x80037120; // type:function size:0x68 scope:global align:32
+GetNewTrack__Fv = .text:0x800371A0; // type:function size:0x5C scope:global align:32
+AllocNewRoot__FP5seqp_ = .text:0x80037200; // type:function size:0x44 scope:global align:32
+DeAllocRoot__FP5seqp_ = .text:0x80037260; // type:function size:0x4C scope:global align:32
+Init_Track__FP5seqp_UlP5seqp_ = .text:0x800372C0; // type:function size:0x378 scope:global align:32
+__StopSeq__FP5seqp_ = .text:0x80037640; // type:function size:0x54 scope:global align:32
+Jaq_SetSeqData = .text:0x800376A0; // type:function size:0x24 scope:global align:32
+Jaq_SetSeqData_Limit = .text:0x800376E0; // type:function size:0x178 scope:global align:32
+Jaq_StartSeq = .text:0x80037860; // type:function size:0xB0 scope:global align:32
+Jaq_OpenTrack = .text:0x80037920; // type:function size:0x154 scope:global align:32
+__AllNoteOff__FP5seqp_ = .text:0x80037A80; // type:function size:0xC4 scope:global align:32
+Jaq_CloseTrack = .text:0x80037B60; // type:function size:0x11C scope:global align:32
+Jaq_RootCallback__FPv = .text:0x80037C80; // type:function size:0xE8 scope:global align:32
+Jam_PitchToCent = .text:0x80037D80; // type:function size:0xC0 scope:global align:32
+Osc_Update_Param = .text:0x80037E40; // type:function size:0x68 scope:global align:32
+Osc_Setup_Vibrato__FP5seqp_Uc = .text:0x80037EC0; // type:function size:0x3C scope:global align:32
+Osc_Setup_Tremolo__FP5seqp_Uc = .text:0x80037F00; // type:function size:0x3C scope:global align:32
+Osc_Setup_Simple = .text:0x80037F40; // type:function size:0x64 scope:global align:32
+Osc_Clear_Overwrite = .text:0x80037FC0; // type:function size:0x10 scope:global align:32
+Osc_Init_Env = .text:0x80037FE0; // type:function size:0x40 scope:global align:32
+Osc_Setup_SimpleEnv = .text:0x80038020; // type:function size:0x80 scope:global align:32
+Osc_Setup_ADSR = .text:0x800380A0; // type:function size:0xCC scope:global align:32
+Osc_Setup_Full = .text:0x80038180; // type:function size:0xF8 scope:global align:32
+__GetTrigger__FP3jc_Uc = .text:0x80038280; // type:function size:0x34 scope:global align:32
+__Clamp01__Ff = .text:0x800382C0; // type:function size:0x28 scope:global align:32
+__Clamp01InitPan__FP3jc_ = .text:0x80038300; // type:function size:0x58 scope:global align:32
+__DoEffect__FP3jc_Ucf = .text:0x80038360; // type:function size:0x68 scope:global align:32
+EffecterInit__FP3jc_P5Inst_ = .text:0x800383E0; // type:function size:0x128 scope:global align:32
+EffecterInit_Perc__FP3jc_P5Pmap_Us = .text:0x80038520; // type:function size:0xD0 scope:global align:32
+EffecterInit_Osc__FP3jc_ = .text:0x80038600; // type:function size:0x80 scope:global align:32
+Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul = .text:0x80038680; // type:function size:0x74 scope:global align:32
+__Oneshot_Play_Start__FP4jcs_P3jc_Ul = .text:0x80038700; // type:function size:0x114 scope:global align:32
+__Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_ = .text:0x80038820; // type:function size:0x148 scope:global align:32
+PercRead__FUlUl = .text:0x80038980; // type:function size:0x44 scope:global align:32
+InstRead__FUlUl = .text:0x800389E0; // type:function size:0x44 scope:global align:32
+VmapRead__FP5Inst_UcUc = .text:0x80038A40; // type:function size:0x2C scope:global align:32
+__Oneshot_WavePause__FP3jc_Uc = .text:0x80038A80; // type:function size:0x10 scope:global align:32
+__Oneshot_StartMonoPolyCheck__FP3jc_Ul = .text:0x80038AA0; // type:function size:0x14C scope:global align:32
+__Oneshot_StopMonoPolyCheck__FP3jc_Ul = .text:0x80038C00; // type:function size:0xF0 scope:global align:32
+Init_1shot__FP4jcs_Ul = .text:0x80038D00; // type:function size:0x74 scope:global align:32
+Stop_1Shot__FP3jc_ = .text:0x80038D80; // type:function size:0x3C scope:global align:32
+Stop_1Shot_R__FP3jc_Us = .text:0x80038DC0; // type:function size:0x40 scope:global align:32
+AllStop_1Shot__FP4jcs_ = .text:0x80038E00; // type:function size:0x68 scope:global align:32
+Extra_Update__FP3jc_8JCSTATUS = .text:0x80038E80; // type:function size:0x6C scope:global align:32
+SetPitchTarget_1Shot__FP3jc_fUl = .text:0x80038F00; // type:function size:0x30 scope:global align:32
+SetKeyTarget_1Shot__FP3jc_UcUl = .text:0x80038F40; // type:function size:0x8C scope:global align:32
+Gate_1Shot__FP3jc_UcUcl = .text:0x80038FE0; // type:function size:0xC4 scope:global align:32
+UpdatePanPower_1Shot__FP3jc_ffff = .text:0x800390C0; // type:function size:0x30 scope:global align:32
+FlushRelease_1Shot__FP4jcs_ = .text:0x80039100; // type:function size:0xB8 scope:global align:32
+Jesus1Shot_Update__FP3jc_8JCSTATUS = .text:0x800391C0; // type:function size:0x1B4 scope:global align:32
+One_CheckInstWave__F8SOUNDID_ = .text:0x80039380; // type:function size:0x9C scope:global align:32
+Play_1shot__FP4jcs_8SOUNDID_Ul = .text:0x80039420; // type:function size:0x278 scope:global align:32
+Play_1shot_Perc__FP4jcs_8SOUNDID_Ul = .text:0x800396A0; // type:function size:0x204 scope:global align:32
+Play_1shot_Osc__FP4jcs_8SOUNDID_Ul = .text:0x800398C0; // type:function size:0x12C scope:global align:32
+ksNesDrawMakeOBJIndTex__FP18ksNesCommonWorkObj = .text:0x800399EC; // type:function size:0x94 scope:global align:4
+ksNesDrawMakeOBJIndTexMMC5__FP18ksNesCommonWorkObj = .text:0x80039A80; // type:function size:0x94 scope:global align:4
+ksNesConvertChrToI8__FP18ksNesCommonWorkObjPCUcUl = .text:0x80039B14; // type:function size:0x140 scope:global align:4
+ksNesConvertChrToI8MMC5__FP18ksNesCommonWorkObjPCUcUl = .text:0x80039C54; // type:function size:0x104 scope:global align:4
+ksNesQDSoundSync__Fv = .text:0x80039D58; // type:function size:0x94 scope:global align:4
+ksNesQDFastLoad__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x80039DEC; // type:function size:0x1B0 scope:global align:4
+ksNesQDFastSave__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x80039F9C; // type:function size:0x1A0 scope:global align:4
+ksNesPushResetButton__FP13ksNesStateObj = .text:0x8003A13C; // type:function size:0x8C scope:global align:4
+ksNesReset__FP18ksNesCommonWorkObjP13ksNesStateObjUlPUcPUc = .text:0x8003A1C8; // type:function size:0x7E8 scope:global align:4
+ksNesEmuFrame__FP18ksNesCommonWorkObjP13ksNesStateObjUl = .text:0x8003A9B0; // type:function size:0x100 scope:global align:4
+ksNesResetAsm__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x8003AAB0; // type:function size:0x258 scope:global align:4
+ksNesInit01__Fv = .text:0x8003AB3C; // type:label scope:global
+ksNesInit03__Fv = .text:0x8003AB70; // type:label scope:global
+ksNesInit04__Fv = .text:0x8003AB78; // type:label scope:global
+ksNesInit05__Fv = .text:0x8003AB88; // type:label scope:global
+ksNesInit07__Fv = .text:0x8003ABE0; // type:label scope:global
+ksNesInit09__Fv = .text:0x8003ABF0; // type:label scope:global
+ksNesInit12__Fv = .text:0x8003ABFC; // type:label scope:global
+ksNesInit13__Fv = .text:0x8003AC0C; // type:label scope:global
+ksNesInit15__Fv = .text:0x8003AC48; // type:label scope:global
+ksNesInit18__Fv = .text:0x8003AC58; // type:label scope:global
+ksNesInit1a__Fv = .text:0x8003AC70; // type:label scope:global
+ksNesInit42__Fv = .text:0x8003AC90; // type:label scope:global
+ksNesInit43__Fv = .text:0x8003ACA4; // type:label scope:global
+ksNesInit45__Fv = .text:0x8003ACB4; // type:label scope:global
+ksNesInit49__Fv = .text:0x8003ACD0; // type:label scope:global
+ksNesInit56__Fv = .text:0x8003ACE0; // type:label scope:global
+ksNesEmuFrameAsm__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x8003AD08; // type:function size:0x31AC scope:global align:4
+ksNesLinecntIrqDefault__Fv = .text:0x8003ADA4; // type:label scope:global
+ksNesMainLoop2__Fv = .text:0x8003ADAC; // type:label scope:global
+ksNesInst_load16_imm__Fv = .text:0x8003B5D4; // type:label scope:global
+ksNesInst_load8_abs__Fv = .text:0x8003B5F4; // type:label scope:global
+ksNesInst_load8_absx__Fv = .text:0x8003B61C; // type:label scope:global
+ksNesInst_load8_absy__Fv = .text:0x8003B648; // type:label scope:global
+ksNesInst_load8_zerop__Fv = .text:0x8003B674; // type:label scope:global
+ksNesInst_load8_dx__Fv = .text:0x8003B684; // type:label scope:global
+ksNesInst_load8_dxi__Fv = .text:0x8003B698; // type:label scope:global
+ksNesInst_load8_dyi__Fv = .text:0x8003B6C4; // type:label scope:global
+ksNesInst_lda_a1__Fv = .text:0x8003B6F0; // type:label scope:global
+ksNesInst_ldx_b6__Fv = .text:0x8003B700; // type:label scope:global
+ksNesInst_ldx_a2__Fv = .text:0x8003B70C; // type:label scope:global
+ksNesInst_ldy_a0__Fv = .text:0x8003B71C; // type:label scope:global
+ksNesInst_sta_85__Fv = .text:0x8003B72C; // type:label scope:global
+ksNesInst_stx_86__Fv = .text:0x8003B734; // type:label scope:global
+ksNesInst_sty_84__Fv = .text:0x8003B73C; // type:label scope:global
+ksNesInst_sta_95__Fv = .text:0x8003B744; // type:label scope:global
+ksNesInst_stx_96__Fv = .text:0x8003B754; // type:label scope:global
+ksNesInst_sty_94__Fv = .text:0x8003B764; // type:label scope:global
+ksNesInst_sta_8d__Fv = .text:0x8003B774; // type:label scope:global
+ksNesInst_stx_8e__Fv = .text:0x8003B784; // type:label scope:global
+ksNesInst_sty_8c__Fv = .text:0x8003B794; // type:label scope:global
+ksNesInst_sta_9d__Fv = .text:0x8003B7A4; // type:label scope:global
+ksNesInst_sta_99__Fv = .text:0x8003B7BC; // type:label scope:global
+ksNesInst_sta_81__Fv = .text:0x8003B7D4; // type:label scope:global
+ksNesInst_sta_91__Fv = .text:0x8003B7FC; // type:label scope:global
+ksNesInst_clc_18__Fv = .text:0x8003B82C; // type:label scope:global
+ksNesInst_sec_38__Fv = .text:0x8003B834; // type:label scope:global
+ksNesInst_dex_ca__Fv = .text:0x8003B83C; // type:label scope:global
+ksNesInst_inx_e8__Fv = .text:0x8003B84C; // type:label scope:global
+ksNesInst_dey_88__Fv = .text:0x8003B85C; // type:label scope:global
+ksNesInst_iny_c8__Fv = .text:0x8003B86C; // type:label scope:global
+ksNesInst_txa_8a__Fv = .text:0x8003B87C; // type:label scope:global
+ksNesInst_tya_98__Fv = .text:0x8003B88C; // type:label scope:global
+ksNesInst_tax_aa__Fv = .text:0x8003B89C; // type:label scope:global
+ksNesInst_tay_a8__Fv = .text:0x8003B8AC; // type:label scope:global
+ksNesInst_cmp_c1__Fv = .text:0x8003B8BC; // type:label scope:global
+ksNesInst_cpx_e0__Fv = .text:0x8003B8D0; // type:label scope:global
+ksNesInst_cpy_c0__Fv = .text:0x8003B8E4; // type:label scope:global
+ksNesInst_adc_61__Fv = .text:0x8003B8F8; // type:label scope:global
+ksNesInst_sbc_e1__Fv = .text:0x8003B928; // type:label scope:global
+ksNesInst_ora_01__Fv = .text:0x8003B960; // type:label scope:global
+ksNesInst_and_21__Fv = .text:0x8003B970; // type:label scope:global
+ksNesInst_bit_24__Fv = .text:0x8003B980; // type:label scope:global
+ksNesInst_eor_41__Fv = .text:0x8003B990; // type:label scope:global
+ksNesInst_inc_e6__Fv = .text:0x8003B9A0; // type:label scope:global
+ksNesInst_dec_c6__Fv = .text:0x8003B9B8; // type:label scope:global
+ksNesInst_asl_0a__Fv = .text:0x8003B9D0; // type:label scope:global
+ksNesInst_asl_06__Fv = .text:0x8003B9E4; // type:label scope:global
+ksNesInst_lsr_4a__Fv = .text:0x8003BA00; // type:label scope:global
+ksNesInst_lsr_46__Fv = .text:0x8003BA14; // type:label scope:global
+ksNesInst_rol_2a__Fv = .text:0x8003BA30; // type:label scope:global
+ksNesInst_rol_26__Fv = .text:0x8003BA48; // type:label scope:global
+ksNesInst_ror_6a__Fv = .text:0x8003BA68; // type:label scope:global
+ksNesInst_ror_66__Fv = .text:0x8003BA80; // type:label scope:global
+ksNesInst_bpl_10__Fv = .text:0x8003BAA0; // type:label scope:global
+ksNesInst_bmi_30__Fv = .text:0x8003BABC; // type:label scope:global
+ksNesInst_bvc_50__Fv = .text:0x8003BAD8; // type:label scope:global
+ksNesInst_bvs_70__Fv = .text:0x8003BAF4; // type:label scope:global
+ksNesInst_bcc_90__Fv = .text:0x8003BB10; // type:label scope:global
+ksNesInst_bcs_b0__Fv = .text:0x8003BB2C; // type:label scope:global
+ksNesInst_bne_d0__Fv = .text:0x8003BB48; // type:label scope:global
+ksNesInst_beq_f0__Fv = .text:0x8003BB64; // type:label scope:global
+ksNesInst_jsr_20__Fv = .text:0x8003BB80; // type:label scope:global
+ksNesPush16_a1__Fv = .text:0x8003BB88; // type:label scope:global
+ksNesInst_pha_48__Fv = .text:0x8003BBAC; // type:label scope:global
+ksNesInst_pla_68__Fv = .text:0x8003BBC0; // type:label scope:global
+ksNesInst_rts_60__Fv = .text:0x8003BBDC; // type:label scope:global
+ksNesPopPC__Fv = .text:0x8003BBE0; // type:label scope:global
+ksNesInst_jmp_4c__Fv = .text:0x8003BC10; // type:label scope:global
+ksNesInst_jmp_6c__Fv = .text:0x8003BC18; // type:label scope:global
+ksNesInst_brk_00__Fv = .text:0x8003BC44; // type:label scope:global
+ksNesActivateIntrIRQ__Fv = .text:0x8003BC54; // type:label scope:global
+ksNesActivateIntr__Fv = .text:0x8003BC5C; // type:label scope:global
+ksNesInst_php_08__Fv = .text:0x8003BCC8; // type:label scope:global
+ksNesInst_plp_28__Fv = .text:0x8003BCD0; // type:label scope:global
+ksNesInst_rti_40__Fv = .text:0x8003BD20; // type:label scope:global
+ksNesInst_rti_40_2__Fv = .text:0x8003BD30; // type:label scope:global
+ksNesInst_cli_58__Fv = .text:0x8003BD3C; // type:label scope:global
+ksNesInst_sei_78__Fv = .text:0x8003BD60; // type:label scope:global
+ksNesInst_txs_9a__Fv = .text:0x8003BD70; // type:label scope:global
+ksNesInst_tsx_ba__Fv = .text:0x8003BD78; // type:label scope:global
+ksNesInst_cld_d8__Fv = .text:0x8003BD88; // type:label scope:global
+ksNesInst_sed_f8__Fv = .text:0x8003BD98; // type:label scope:global
+ksNesInst_clv_b8__Fv = .text:0x8003BDA8; // type:label scope:global
+ksNesLoadInvalid__Fv = .text:0x8003BDB0; // type:label scope:global
+ksNesLoadIgnore__Fv = .text:0x8003BDB4; // type:label scope:global
+ksNesLoadWRAM__Fv = .text:0x8003BDBC; // type:label scope:global
+ksNesLoadBBRAM__Fv = .text:0x8003BDC8; // type:label scope:global
+ksNesLoadPPU__Fv = .text:0x8003BDD4; // type:label scope:global
+ksNesLoadIO__Fv = .text:0x8003BE64; // type:label scope:global
+ksNesLoad4015__Fv = .text:0x8003BF28; // type:label scope:global
+ksNesLoad4017__Fv = .text:0x8003BF38; // type:label scope:global
+ksNesLoad4016__Fv = .text:0x8003BF9C; // type:label scope:global
+ksNesStoreWRAM__Fv = .text:0x8003BFD0; // type:label scope:global
+ksNesStoreBBRAM__Fv = .text:0x8003BFDC; // type:label scope:global
+ksNesStoreInvalid__Fv = .text:0x8003BFE8; // type:label scope:global
+ksNesStorePPU__Fv = .text:0x8003BFEC; // type:label scope:global
+ksNesStore2000__Fv = .text:0x8003C000; // type:label scope:global
+ksNesStorePPURam__Fv = .text:0x8003C020; // type:label scope:global
+ksNesStore2004__Fv = .text:0x8003C030; // type:label scope:global
+ksNesStore2005__Fv = .text:0x8003C034; // type:label scope:global
+ksNesStore2006__Fv = .text:0x8003C094; // type:label scope:global
+ksNesStore2007ChrRom__Fv = .text:0x8003C0E0; // type:label scope:global
+ksNesStoreIO__Fv = .text:0x8003C1F4; // type:label scope:global
+ksNesStoreQDSound__Fv = .text:0x8003C210; // type:label scope:global
+ksNesStore4017__Fv = .text:0x8003C214; // type:label scope:global
+ksNesStore4011__Fv = .text:0x8003C24C; // type:label scope:global
+ksNesStore4015__Fv = .text:0x8003C260; // type:label scope:global
+ksNesStore4003__Fv = .text:0x8003C274; // type:label scope:global
+ksNesStore4000__Fv = .text:0x8003C28C; // type:label scope:global
+ksNesStore4014__Fv = .text:0x8003C2AC; // type:label scope:global
+ksNesStore4016__Fv = .text:0x8003C2E0; // type:label scope:global
+ksNesInst_wdm_42__Fv = .text:0x8003C32C; // type:label scope:global
+ksNesLinecntIrqQD__Fv = .text:0x8003C540; // type:label scope:global
+ksNesStoreQD_4020__Fv = .text:0x8003C5CC; // type:label scope:global
+ksNesStoreQD_4022__Fv = .text:0x8003C5D8; // type:label scope:global
+ksNesStoreQD_4023__Fv = .text:0x8003C60C; // type:label scope:global
+ksNesStoreQD_4024__Fv = .text:0x8003C614; // type:label scope:global
+ksNesStoreQD_4025__Fv = .text:0x8003C640; // type:label scope:global
+ksNesStoreQD_4026__Fv = .text:0x8003C6E4; // type:label scope:global
+ksNesStore01_8000__Fv = .text:0x8003C6EC; // type:label scope:global
+ksNesStore02_8000__Fv = .text:0x8003C894; // type:label scope:global
+ksNesStore03_6000__Fv = .text:0x8003C8BC; // type:label scope:global
+ksNesLinecntIrq04__Fv = .text:0x8003C8E8; // type:label scope:global
+ksNesStore04_8000__Fv = .text:0x8003C930; // type:label scope:global
+ksNesStore04_a000__Fv = .text:0x8003CAF0; // type:label scope:global
+ksNesStore04_c000__Fv = .text:0x8003CB20; // type:label scope:global
+ksNesStore04_e000__Fv = .text:0x8003CB6C; // type:label scope:global
+ksNesLinecntIrq05Timer__Fv = .text:0x8003CB78; // type:label scope:global
+ksNesLinecntIrq05Vcount__Fv = .text:0x8003CB8C; // type:label scope:global
+ksNesStore05_4000__Fv = .text:0x8003CBA0; // type:label scope:global
+ksNesStore05_5130__Fv = .text:0x8003CCF4; // type:label scope:global
+ksNesStore05_5100__Fv = .text:0x8003CD0C; // type:label scope:global
+ksNesStore05_5113__Fv = .text:0x8003CE58; // type:label scope:global
+ksNesStore05_5101__Fv = .text:0x8003CE64; // type:label scope:global
+ksNesStore05_5120__Fv = .text:0x8003CF80; // type:label scope:global
+ksNesStore05_5128__Fv = .text:0x8003CF98; // type:label scope:global
+ksNesStore05_5102__Fv = .text:0x8003CFB0; // type:label scope:global
+ksNesStore05_5104__Fv = .text:0x8003CFBC; // type:label scope:global
+ksNesStore05_5105__Fv = .text:0x8003CFC8; // type:label scope:global
+ksNesStore05_5106__Fv = .text:0x8003D010; // type:label scope:global
+ksNesLoad05_4000__Fv = .text:0x8003D01C; // type:label scope:global
+ksNesStore07_8000__Fv = .text:0x8003D0AC; // type:label scope:global
+ksNesStore09_8000__Fv = .text:0x8003D0F8; // type:label scope:global
+ksNesStore09_a000__Fv = .text:0x8003D0FC; // type:label scope:global
+ksNesStore09_c000__Fv = .text:0x8003D13C; // type:label scope:global
+ksNesStore09_e000__Fv = .text:0x8003D16C; // type:label scope:global
+ksNesStore0a_8000__Fv = .text:0x8003D1B0; // type:label scope:global
+ksNesStore0a_a000__Fv = .text:0x8003D1B4; // type:label scope:global
+ksNesLinecntIrq49__Fv = .text:0x8003D1E4; // type:label scope:global
+ksNesStore12_8000__Fv = .text:0x8003D1F8; // type:label scope:global
+ksNesStore12_a000__Fv = .text:0x8003D264; // type:label scope:global
+ksNesStore12_e000__Fv = .text:0x8003D2B0; // type:label scope:global
+ksNesStore13_4000__Fv = .text:0x8003D368; // type:label scope:global
+ksNesLoad13_4000__Fv = .text:0x8003D3DC; // type:label scope:global
+ksNesStore13_8000__Fv = .text:0x8003D444; // type:label scope:global
+ksNesStore13_c000__Fv = .text:0x8003D45C; // type:label scope:global
+ksNesStore13_e000__Fv = .text:0x8003D4A4; // type:label scope:global
+ksNesStore16_8000__Fv = .text:0x8003D4EC; // type:label scope:global
+ksNesStore16_9000__Fv = .text:0x8003D514; // type:label scope:global
+ksNesStore16_a000__Fv = .text:0x8003D53C; // type:label scope:global
+ksNesStore16_b000__Fv = .text:0x8003D564; // type:label scope:global
+ksNesStore17_a000__Fv = .text:0x8003D584; // type:label scope:global
+ksNesStore17_b000__Fv = .text:0x8003D590; // type:label scope:global
+ksNesStore17_e000__Fv = .text:0x8003D5B4; // type:label scope:global
+ksNesLinecntIrq18__Fv = .text:0x8003D5D8; // type:label scope:global
+ksNesStore18_8000__Fv = .text:0x8003D614; // type:label scope:global
+ksNesStore18_a000__Fv = .text:0x8003D678; // type:label scope:global
+ksNesStore18_c000__Fv = .text:0x8003D6AC; // type:label scope:global
+ksNesStore18_e000__Fv = .text:0x8003D700; // type:label scope:global
+ksNesLinecntIrq19__Fv = .text:0x8003D754; // type:label scope:global
+ksNesStore19_8000__Fv = .text:0x8003D76C; // type:label scope:global
+ksNesStore19_a000__Fv = .text:0x8003D7E8; // type:label scope:global
+ksNesStore19_b000__Fv = .text:0x8003D7F4; // type:label scope:global
+ksNesStore19_e000__Fv = .text:0x8003D82C; // type:label scope:global
+ksNesStore42_8000__Fv = .text:0x8003D8D4; // type:label scope:global
+ksNesLinecntIrq43__Fv = .text:0x8003D928; // type:label scope:global
+ksNesStore43_c000__Fv = .text:0x8003D940; // type:label scope:global
+ksNesStore44_8000__Fv = .text:0x8003D96C; // type:label scope:global
+ksNesStore44_c000__Fv = .text:0x8003D990; // type:label scope:global
+ksNesStore44_e000__Fv = .text:0x8003DA50; // type:label scope:global
+ksNesStore45_8000__Fv = .text:0x8003DA88; // type:label scope:global
+ksNesStore45_a000__Fv = .text:0x8003DA90; // type:label scope:global
+ksNesStore46_8000__Fv = .text:0x8003DB68; // type:label scope:global
+ksNesStore49_a000__Fv = .text:0x8003DBD8; // type:label scope:global
+ksNesStore49_c000__Fv = .text:0x8003DBF4; // type:label scope:global
+ksNesStore4b_8000__Fv = .text:0x8003DC20; // type:label scope:global
+ksNesStore4b_a000__Fv = .text:0x8003DC28; // type:label scope:global
+ksNesStore4b_e000__Fv = .text:0x8003DCD4; // type:label scope:global
+ksNesStore56_6000__Fv = .text:0x8003DD3C; // type:label scope:global
+ksNesStore57_6000__Fv = .text:0x8003DDB8; // type:label scope:global
+ksNesStore59_c000__Fv = .text:0x8003DDDC; // type:label scope:global
+ksNesStore5d_6000__Fv = .text:0x8003DE50; // type:label scope:global
+ksNesStoreb8_6000__Fv = .text:0x8003DE78; // type:label scope:global
+ksNesDrawInit__FP18ksNesCommonWorkObj = .text:0x8003DEB4; // type:function size:0x17C scope:global align:4
+ksNesDrawEnd__Fv = .text:0x8003E030; // type:function size:0xE4 scope:global align:4
+ksNesDrawClearEFBFirst__FP18ksNesCommonWorkObj = .text:0x8003E114; // type:function size:0x190 scope:global align:4
+ksNesDrawMakeBGIndTex__FP18ksNesCommonWorkObjUl = .text:0x8003E2A4; // type:function size:0x1B0 scope:global align:4
+ksNesDrawMakeBGIndTexMMC5__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x8003E454; // type:function size:0x1BC scope:global align:4
+ksNesDrawMakeBGIndTexMMC2__FP18ksNesCommonWorkObjUl = .text:0x8003E610; // type:function size:0x2BC scope:global align:4
+ksNesDrawOBJSetupMMC2__FP18ksNesCommonWorkObj = .text:0x8003E8CC; // type:function size:0x140 scope:global align:4
+ksNesDrawBG__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x8003EA0C; // type:function size:0x818 scope:global align:4
+ksNesDrawMakeOBJBlankVtxList__FP18ksNesCommonWorkObj = .text:0x8003F224; // type:function size:0xC0 scope:global align:4
+ksNesDrawMakeOBJAppearVtxList__FP18ksNesCommonWorkObj = .text:0x8003F2E4; // type:function size:0xB8 scope:global align:4
+ksNesDrawOBJ__FP18ksNesCommonWorkObjP13ksNesStateObjUl = .text:0x8003F39C; // type:function size:0xB28 scope:global align:4
+ksNesDrawOBJMMC5__FP18ksNesCommonWorkObjP13ksNesStateObjUl = .text:0x8003FEC4; // type:function size:0x9B8 scope:global align:4
+ksNesDrawFlushEFBToRed8__FPUc = .text:0x8004087C; // type:function size:0x84 scope:global align:4
+ksNesDrawOBJI8ToEFB__FP18ksNesCommonWorkObjPUc = .text:0x80040900; // type:function size:0x2AC scope:global align:4
+ksNesDrawEmuResult__FP18ksNesCommonWorkObj = .text:0x80040BAC; // type:function size:0x930 scope:global align:4
+ksNesDraw__FP18ksNesCommonWorkObjP13ksNesStateObj = .text:0x800414DC; // type:function size:0x138 scope:global align:4
+calcSum__FPUcUl = .text:0x80041614; // type:function size:0x28 scope:local align:4
+famicom_getErrorChan = .text:0x8004163C; // type:function size:0x14 scope:global align:4
+famicom_save_data_setup__FP21FamicomSaveDataHeaderUlPUc = .text:0x80041650; // type:function size:0x1B4 scope:global align:4
+famicom_save_data_init__FP21FamicomSaveDataHeaderUlPUc = .text:0x80041804; // type:function size:0x5C scope:global align:4
+famicom_save_data_check__FPC21FamicomSaveDataHeaderiPCUc = .text:0x80041860; // type:function size:0x130 scope:global align:4
+process_filer_mode__Fv = .text:0x80041990; // type:function size:0x568 scope:global align:4
+famicom_setCallback_getSaveChan = .text:0x80041EF8; // type:function size:0xC scope:global align:4
+famicom_getSaveChan__FiPl = .text:0x80041F04; // type:function size:0x278 scope:global align:4
+memcard_mount__FiPv = .text:0x8004217C; // type:function size:0x174 scope:global align:4
+memcard_getFreeBlocks__FlPlPl = .text:0x800422F0; // type:function size:0xEC scope:global align:4
+getBannerSizeFromFormat__FUc = .text:0x800423DC; // type:function size:0x34 scope:global align:4
+getIconSizeFromFormat__FUs = .text:0x80042410; // type:function size:0x60 scope:global align:4
+SetupExternCommentImage__FPUcPUcPUc = .text:0x80042470; // type:function size:0x2F4 scope:global align:4
+SetupInternalCommentImage__FPUc = .text:0x80042764; // type:function size:0x134 scope:global align:4
+memcard_data_save__FiPCcPCcPC21FamicomSaveDataHeaderUlPCUcUcUlUsUsUli = .text:0x80042898; // type:function size:0x584 scope:global align:4
+memcard_data_load__FiPCcPCcP21FamicomSaveDataHeaderUlPCUc = .text:0x80042E1C; // type:function size:0x3A8 scope:global align:4
+memcard_game_load__FPUciPPUcPcPcP19MemcardGameHeader_tPUcUlPUcUl = .text:0x800431C4; // type:function size:0x454 scope:global align:4
+memcard_game_list__FPiPci = .text:0x80043618; // type:function size:0x2C4 scope:global align:4
+entrylist__FPCcPc = .text:0x800438DC; // type:function size:0x1A0 scope:global align:4
+select_game__Fv = .text:0x80043A7C; // type:function size:0xCC scope:global align:4
+famicom_mount_archive_end_check = .text:0x80043B48; // type:function size:0x1C scope:global align:4
+famicom_mount_archive = .text:0x80043B64; // type:function size:0x94 scope:global align:4
+famicom_mount_archive_wait__Fv = .text:0x80043BF8; // type:function size:0x5C scope:global align:4
+famicom_init = .text:0x80043C54; // type:function size:0xD7C scope:global align:4
+SetupResBanner__FPC7ResTIMGPUcUlPUlPUc = .text:0x800449D0; // type:function size:0xE4 scope:global align:4
+SetupResIcon__FPC7ResTIMGPUcUlPUlPUsPUs = .text:0x80044AB4; // type:function size:0x134 scope:global align:4
+famicom_cleanup = .text:0x80044BE8; // type:function size:0x228 scope:global align:4
+famicom_rom_load__Fv = .text:0x80044E10; // type:function size:0x4B8 scope:global align:4
+famicom_key_convert__Fv = .text:0x800452C8; // type:function size:0x1B4 scope:global align:4
+famicom_draw__Fv = .text:0x8004547C; // type:function size:0x260 scope:global align:4
+ksnes_proc__FPv = .text:0x800456DC; // type:function size:0x34 scope:global align:4
+ksnes_thread_kill__FP7OSAlarmP9OSContext = .text:0x80045710; // type:function size:0x38 scope:global align:4
+ksnes_thread_exec__FUl = .text:0x80045748; // type:function size:0x19C scope:global align:4
+nogbaInput__Fv = .text:0x800458E4; // type:function size:0x1E0 scope:global align:4
+famicom_1frame = .text:0x80045AC4; // type:function size:0x580 scope:global align:4
+famicom_rom_load_check = .text:0x80046044; // type:function size:0xDC scope:global align:4
+famicom_cardResultToMiyake__Fl = .text:0x80046120; // type:function size:0x6C scope:global align:4
+famicom_internal_data_load = .text:0x8004618C; // type:function size:0x144 scope:global align:4
+famicom_internal_data_save = .text:0x800462D0; // type:function size:0x1DC scope:global align:4
+famicom_external_data_save = .text:0x800464AC; // type:function size:0x1BC scope:global align:4
+famicom_external_data_save_check = .text:0x80046668; // type:function size:0x8 scope:global align:4
+famicom_common_save_initial__Fv = .text:0x80046670; // type:function size:0xAC scope:global align:4
+famicom_get_disksystem_titles = .text:0x8004671C; // type:function size:0x54 scope:global align:4
+my_malloc__FUli = .text:0x80046770; // type:function size:0x34 scope:global align:4
+my_free__FPv = .text:0x800467A4; // type:function size:0x34 scope:global align:4
+my_getmemblocksize__FPv = .text:0x800467D8; // type:function size:0x34 scope:global align:4
+my_gettotalfreesize__Fv = .text:0x8004680C; // type:function size:0x34 scope:global align:4
+__dt__13JKRFileFinderFv = .text:0x80046840; // type:function size:0x48 scope:global align:4
+getPortStatus__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x80046888; // type:function size:0x18 scope:global align:4
+__dt__13J2DOrthoGraphFv = .text:0x800468A0; // type:function size:0x5C scope:global align:4
+update_highscore_raw__FUiUiPUcPUcPUc = .text:0x800468FC; // type:function size:0x128 scope:global align:4
+nesinfo_get_u16__FPUc = .text:0x80046A24; // type:function size:0x18 scope:global align:4
+nesinfo_get_u8__FPUc = .text:0x80046A3C; // type:function size:0x8 scope:global align:4
+nesinfo_set_u16__FPUcUs = .text:0x80046A44; // type:function size:0x10 scope:global align:4
+nesinfo_next_tag_raw__FPUc = .text:0x80046A54; // type:function size:0x74 scope:global align:4
+nesinfo_next_tag__FPUc = .text:0x80046AC8; // type:function size:0xB8 scope:global align:4
+calc_check_sum2__FPvUl = .text:0x80046B80; // type:function size:0x9C scope:global align:4
+print_stringn_lf__FPUcUl = .text:0x80046C1C; // type:function size:0x70 scope:global align:4
+print_hex_lf__FPUcUl = .text:0x80046C8C; // type:function size:0x70 scope:global align:4
+nesinfo_tags_set = .text:0x80046CFC; // type:function size:0x8C scope:global align:4
+calcSum__FPUcUl = .text:0x80046D88; // type:function size:0x28 scope:local align:4
+special_zelda__Fv = .text:0x80046DB0; // type:function size:0x188 scope:global align:4
+nesinfo_tag_process1 = .text:0x80046F38; // type:function size:0x6E8 scope:global align:4
+nesinfo_tag_process2 = .text:0x80047620; // type:function size:0x2F8 scope:global align:4
+nesinfo_tag_process3 = .text:0x80047918; // type:function size:0x29C scope:global align:4
+nesinfo_update_highscore = .text:0x80047BB4; // type:function size:0x200 scope:global align:4
+nesinfo_get_highscore_num = .text:0x80047DB4; // type:function size:0x10 scope:global align:4
+nesinfo_get_moriName = .text:0x80047DC4; // type:function size:0x10 scope:global align:4
+nesinfo_init = .text:0x80047DD4; // type:function size:0x38 scope:global align:4
+highscore_setup_flags = .text:0x80047E0C; // type:function size:0x34 scope:global align:4
+ShortCommandProc = .text:0x80047E40; // type:function size:0x54 scope:global align:4
+GBAInit = .text:0x80047E94; // type:function size:0xA4 scope:global align:4
+GBAGetStatusAsync = .text:0x80047F38; // type:function size:0x64 scope:global align:4
+GBAGetStatus = .text:0x80047F9C; // type:function size:0x90 scope:global align:4
+GBAResetAsync = .text:0x8004802C; // type:function size:0x64 scope:global align:4
+GBAReset = .text:0x80048090; // type:function size:0x90 scope:global align:4
+OnReset = .text:0x80048120; // type:function size:0x10 scope:local align:4
+GBAGetProcessStatus = .text:0x80048130; // type:function size:0x174 scope:global align:4
+GBAJoyBootAsync = .text:0x800482A4; // type:function size:0x13C scope:global align:4
+F23 = .text:0x800483E0; // type:function size:0xA8 scope:global align:4
+F25 = .text:0x80048488; // type:function size:0xD0 scope:global align:4
+F27 = .text:0x80048558; // type:function size:0xD0 scope:global align:4
+F29 = .text:0x80048628; // type:function size:0x80 scope:global align:4
+__GBAX01 = .text:0x800486A8; // type:function size:0x1DC scope:global align:4
+F31 = .text:0x80048884; // type:function size:0x498 scope:global align:4
+F33 = .text:0x80048D1C; // type:function size:0x174 scope:global align:4
+F35 = .text:0x80048E90; // type:function size:0x15C scope:global align:4
+F37 = .text:0x80048FEC; // type:function size:0xFC scope:global align:4
+F39 = .text:0x800490E8; // type:function size:0x80 scope:global align:4
+ReadProc = .text:0x80049168; // type:function size:0x60 scope:global align:4
+GBAReadAsync = .text:0x800491C8; // type:function size:0x6C scope:global align:4
+GBARead = .text:0x80049234; // type:function size:0x94 scope:global align:4
+WriteProc = .text:0x800492C8; // type:function size:0x30 scope:global align:4
+GBAWriteAsync = .text:0x800492F8; // type:function size:0x94 scope:global align:4
+GBAWrite = .text:0x8004938C; // type:function size:0xC4 scope:global align:4
+__GBAHandler = .text:0x80049450; // type:function size:0xDC scope:global align:4
+__GBASyncCallback = .text:0x8004952C; // type:function size:0x34 scope:global align:4
+__GBASync = .text:0x80049560; // type:function size:0x6C scope:global align:4
+TypeAndStatusCallback = .text:0x800495CC; // type:function size:0x124 scope:global align:4
+__GBATransfer = .text:0x800496F0; // type:function size:0x74 scope:global align:4
+__GBASetDelay = .text:0x80049764; // type:function size:0x24 scope:global align:4
+mJOYSIO_ConvData = .text:0x80049788; // type:function size:0x30 scope:global align:4
+mGcgba_Init = .text:0x800497B8; // type:function size:0x4 scope:global align:4
+mGcgba_InitVar = .text:0x800497BC; // type:function size:0x30 scope:global align:4
+mGcgba_EndComm = .text:0x800497EC; // type:function size:0x10 scope:global align:4
+mGcgba_ConnectEnabled = .text:0x800497FC; // type:function size:0xA4 scope:global align:4
+CallBack = .text:0x800498A0; // type:function size:0x14 scope:global align:4
+mGcgba_Boot = .text:0x800498B4; // type:function size:0x140 scope:global align:4
+mJOYSIO_OpenConnection = .text:0x800499F4; // type:function size:0x130 scope:global align:4
+mGcgba_StartScan = .text:0x80049B24; // type:function size:0x228 scope:global align:4
+mGcgba_IsTypes = .text:0x80049D4C; // type:function size:0x128 scope:global align:4
+mGcgba_IsEditor = .text:0x80049E74; // type:function size:0xE8 scope:global align:4
+mGcgba_IsIsland = .text:0x80049F5C; // type:function size:0xE8 scope:global align:4
+mGcgba_Recv_sub = .text:0x8004A044; // type:function size:0x278 scope:global align:4
+mGcgba_Recv = .text:0x8004A2BC; // type:function size:0xF4 scope:global align:4
+mGcgba_Read = .text:0x8004A3B0; // type:function size:0x200 scope:global align:4
+mGcgba_CheckRecv = .text:0x8004A5B0; // type:function size:0xF4 scope:global align:4
+mGcgba_Send_sub = .text:0x8004A6A4; // type:function size:0x298 scope:global align:4
+mGcgba_Send = .text:0x8004A93C; // type:function size:0xEC scope:global align:4
+changeEndian = .text:0x8004AA28; // type:function size:0x18 scope:global align:4
+mGcgba_send_eAppri = .text:0x8004AA40; // type:function size:0x3C0 scope:global align:4
+emu64_texture_cache_data_entry_set = .text:0x8004AE00; // type:function size:0x28 scope:global align:4
+texture_cache_alloc__FP15texture_cache_tUl = .text:0x8004AE28; // type:function size:0x68 scope:global align:4
+texture_cache_data_search__FPv = .text:0x8004AE90; // type:function size:0x54 scope:global align:4
+texture_cache_data_entry__FPvPv = .text:0x8004AEE4; // type:function size:0x5C scope:global align:4
+texture_cache_bss_search__FPv = .text:0x8004AF40; // type:function size:0x8 scope:global align:4
+texture_cache_bss_entry__FPvPv = .text:0x8004AF48; // type:function size:0x8 scope:global align:4
+emu64_refresh = .text:0x8004AF50; // type:function size:0x20 scope:global align:4
+emu64_init2__FP16_GXRenderModeObj = .text:0x8004AF70; // type:function size:0x62C scope:global align:4
+emu64_init__5emu64Fv = .text:0x8004B59C; // type:function size:0x458 scope:global align:4
+panic__5emu64FPcPci = .text:0x8004B9F4; // type:function size:0x1B4 scope:global align:4
+texconv_tile__5emu64FPUcPUcUiUiUiUiUiUiUiUi = .text:0x8004BBA8; // type:function size:0x318 scope:global align:4
+replace_combine_to_tev__5emu64FP3Gfx = .text:0x8004BEC0; // type:function size:0x45C scope:global align:4
+combine_auto__5emu64Fv = .text:0x8004C31C; // type:function size:0x684 scope:global align:4
+combine_tev__5emu64Fv = .text:0x8004C9A0; // type:function size:0x324 scope:global align:4
+combine_manual__5emu64Fv = .text:0x8004CCC4; // type:function size:0x22D4 scope:global align:4
+combine__5emu64Fv = .text:0x8004EF98; // type:function size:0x1C8 scope:global align:4
+setup_texture_tile__5emu64Fi = .text:0x8004F160; // type:function size:0x970 scope:global align:4
+zmode__5emu64Fv = .text:0x8004FAD0; // type:function size:0x1D0 scope:global align:4
+texture_gen__5emu64Fi = .text:0x8004FCA0; // type:function size:0x3B8 scope:global align:4
+texture_matrix__5emu64Fv = .text:0x80050058; // type:function size:0x440 scope:global align:4
+set_position__5emu64FUi = .text:0x80050498; // type:function size:0x3F8 scope:global align:4
+draw_1tri_2tri_1quad__5emu64FUie = .text:0x80050890; // type:function size:0x250 scope:global align:4
+fill_rectangle__5emu64Fffff = .text:0x80050AE0; // type:function size:0x258 scope:global align:4
+draw_rectangle__5emu64FP9Gtexrect2 = .text:0x80050D38; // type:function size:0x518 scope:global align:4
+dirty_check__5emu64Fiii = .text:0x80051250; // type:function size:0x88C scope:global align:4
+dl_G_SPNOOP__5emu64Fv = .text:0x80051ADC; // type:function size:0x4 scope:global align:4
+dl_G_DL__5emu64Fv = .text:0x80051AE0; // type:function size:0x4A0 scope:global align:4
+dl_G_RDPHALF_1__5emu64Fv = .text:0x80051F80; // type:function size:0xC scope:global align:4
+dl_G_TEXRECT__5emu64Fv = .text:0x80051F8C; // type:function size:0x6C scope:global align:4
+dl_G_LOAD_UCODE__5emu64Fv = .text:0x80051FF8; // type:function size:0x408 scope:global align:4
+dl_G_ENDDL__5emu64Fv = .text:0x80052400; // type:function size:0x3C scope:global align:4
+dl_G_SETTILE__5emu64Fv = .text:0x8005243C; // type:function size:0x94 scope:global align:4
+dl_G_SETTILE_DOLPHIN__5emu64Fv = .text:0x800524D0; // type:function size:0x1C8 scope:global align:4
+dl_G_LOADTILE__5emu64Fv = .text:0x80052698; // type:function size:0x94 scope:global align:4
+dl_G_LOADBLOCK__5emu64Fv = .text:0x8005272C; // type:function size:0x90 scope:global align:4
+dl_G_SETTILESIZE__5emu64Fv = .text:0x800527BC; // type:function size:0x124 scope:global align:4
+dl_G_LOADTLUT__5emu64Fv = .text:0x800528E0; // type:function size:0x614 scope:global align:4
+dl_G_SETCOMBINE_NOTEV__5emu64Fv = .text:0x80052EF4; // type:function size:0x4B8 scope:global align:4
+dl_G_SETCOMBINE__5emu64Fv = .text:0x800533AC; // type:function size:0x4C8 scope:global align:4
+dl_G_SETCOMBINE_TEV__5emu64Fv = .text:0x80053874; // type:function size:0x490 scope:global align:4
+dl_G_SETOTHERMODE_H__5emu64Fv = .text:0x80053D04; // type:function size:0xB4 scope:global align:4
+dl_G_SETOTHERMODE_L__5emu64Fv = .text:0x80053DB8; // type:function size:0x1C0 scope:global align:4
+dl_G_RDPSETOTHERMODE__5emu64Fv = .text:0x80053F78; // type:function size:0x130 scope:global align:4
+dl_G_SETSCISSOR__5emu64Fv = .text:0x800540A8; // type:function size:0x50 scope:global align:4
+dl_G_FILLRECT__5emu64Fv = .text:0x800540F8; // type:function size:0xC0 scope:global align:4
+dl_G_SETCIMG__5emu64Fv = .text:0x800541B8; // type:function size:0x4 scope:global align:4
+dl_G_SETZIMG__5emu64Fv = .text:0x800541BC; // type:function size:0x4 scope:global align:4
+dl_G_SETTIMG__5emu64Fv = .text:0x800541C0; // type:function size:0x394 scope:global align:4
+dl_G_SETENVCOLOR__5emu64Fv = .text:0x80054554; // type:function size:0x20 scope:global align:4
+dl_G_SETBLENDCOLOR__5emu64Fv = .text:0x80054574; // type:function size:0x20 scope:global align:4
+dl_G_SETFOGCOLOR__5emu64Fv = .text:0x80054594; // type:function size:0x20 scope:global align:4
+dl_G_SETFILLCOLOR__5emu64Fv = .text:0x800545B4; // type:function size:0x48 scope:global align:4
+dl_G_SETTEXEDGEALPHA__5emu64Fv = .text:0x800545FC; // type:function size:0x14 scope:global align:4
+dl_G_SETPRIMDEPTH__5emu64Fv = .text:0x80054610; // type:function size:0xC scope:global align:4
+dl_G_SETPRIMCOLOR__5emu64Fv = .text:0x8005461C; // type:function size:0x3C scope:global align:4
+dl_G_RDPFULLSYNC__5emu64Fv = .text:0x80054658; // type:function size:0x4 scope:global align:4
+dl_G_RDPPIPESYNC__5emu64Fv = .text:0x8005465C; // type:function size:0x18 scope:global align:4
+dl_G_RDPTILESYNC__5emu64Fv = .text:0x80054674; // type:function size:0x4 scope:global align:4
+dl_G_RDPLOADSYNC__5emu64Fv = .text:0x80054678; // type:function size:0x4 scope:global align:4
+dl_G_NOOP__5emu64Fv = .text:0x8005467C; // type:function size:0x38 scope:global align:4
+dl_G_MTX__5emu64Fv = .text:0x800546B4; // type:function size:0xC08 scope:global align:4
+dl_G_VTX__5emu64Fv = .text:0x800552BC; // type:function size:0x950 scope:global align:4
+dl_G_MODIFYVTX__5emu64Fv = .text:0x80055C0C; // type:function size:0x48 scope:global align:4
+dl_G_LINE3D__5emu64Fv = .text:0x80055C54; // type:function size:0x38 scope:global align:4
+dl_G_TRI1__5emu64Fv = .text:0x80055C8C; // type:function size:0x1CC scope:global align:4
+dl_G_TRIN_INDEPEND__5emu64Fv = .text:0x80055E58; // type:function size:0x20 scope:global align:4
+dl_G_TRIN__5emu64Fv = .text:0x80055E78; // type:function size:0x3F0 scope:global align:4
+dl_G_QUADN__5emu64Fv = .text:0x80056268; // type:function size:0x3C0 scope:global align:4
+dl_G_TRI2__5emu64Fv = .text:0x80056628; // type:function size:0x450 scope:global align:4
+dl_G_QUAD__5emu64Fv = .text:0x80056A78; // type:function size:0x1B4 scope:global align:4
+dl_G_CULLDL__5emu64Fv = .text:0x80056C2C; // type:function size:0x2D0 scope:global align:4
+dl_G_BRANCH_Z__5emu64Fv = .text:0x80056EFC; // type:function size:0x39C scope:global align:4
+dl_G_TEXTURE__5emu64Fv = .text:0x80057298; // type:function size:0x8C scope:global align:4
+dl_G_POPMTX__5emu64Fv = .text:0x80057324; // type:function size:0x24 scope:global align:4
+dl_G_GEOMETRYMODE__5emu64Fv = .text:0x80057348; // type:function size:0x378 scope:global align:4
+dl_G_MOVEWORD__5emu64Fv = .text:0x800576C0; // type:function size:0x224 scope:global align:4
+dl_G_MOVEMEM__5emu64Fv = .text:0x800578E4; // type:function size:0x1004 scope:global align:4
+dl_G_SPECIAL_1__5emu64Fv = .text:0x800588E8; // type:function size:0x18 scope:global align:4
+emu64_taskstart_r__5emu64FP3Gfx = .text:0x80058900; // type:function size:0x1F0 scope:global align:4
+emu64_taskstart__5emu64FP3Gfx = .text:0x80058AF0; // type:function size:0xD4 scope:global align:4
+emu64_init = .text:0x80058BC4; // type:function size:0x28 scope:global align:4
+emu64_cleanup = .text:0x80058BEC; // type:function size:0x2C scope:global align:4
+emu64_taskstart = .text:0x80058C18; // type:function size:0x2C scope:global align:4
+emu64_set_ucode_info = .text:0x80058C44; // type:function size:0x14 scope:global align:4
+emu64_set_first_ucode = .text:0x80058C58; // type:function size:0xB8 scope:global align:4
+emu64_set_aflags = .text:0x80058D10; // type:function size:0x4 scope:global align:4
+emu64_get_aflags = .text:0x80058D14; // type:function size:0x20 scope:global align:4
+__sinit_emu64_c = .text:0x80058D34; // type:function size:0x898 scope:local align:4
+Printf0__11emu64_printFPCce = .text:0x800595CC; // type:function size:0x90 scope:global align:4
+Printf__11emu64_printFPCce = .text:0x8005965C; // type:function size:0x94 scope:global align:4
+segchk__5emu64FUl = .text:0x800596F0; // type:function size:0x3E0 scope:global align:4
+combine_name__5emu64FUlUl = .text:0x80059AD0; // type:function size:0x134 scope:global align:4
+combine_alpha__5emu64Fii = .text:0x80059C04; // type:function size:0x88 scope:global align:4
+combine_tev_color_name__5emu64FUl = .text:0x80059C8C; // type:function size:0xA8 scope:global align:4
+combine_tev_alpha_name__5emu64FUl = .text:0x80059D34; // type:function size:0x68 scope:global align:4
+print_combine__5emu64FUx = .text:0x80059D9C; // type:function size:0x46C scope:global align:4
+print_combine_tev__5emu64FUx = .text:0x8005A208; // type:function size:0x44C scope:global align:4
+OSReportDisable = .text:0x8005A654; // type:function size:0xC scope:global align:4
+OSReportEnable = .text:0x8005A660; // type:function size:0xC scope:global align:4
+OSVReport = .text:0x8005A66C; // type:function size:0xE4 scope:global align:4
+OSReport = .text:0x8005A750; // type:function size:0x8C scope:global align:4
+OSPanic = .text:0x8005A7DC; // type:function size:0xDC scope:global align:4
+OSChangeBootMode = .text:0x8005A8B8; // type:function size:0x40 scope:global align:4
+OSDVDFatalError = .text:0x8005A8F8; // type:function size:0x34 scope:global align:4
+fault_AddClientEx = .text:0x8005A92C; // type:function size:0x10C scope:global align:4
+fault_AddClient = .text:0x8005AA38; // type:function size:0x28 scope:global align:4
+fault_Printf = .text:0x8005AA60; // type:function size:0x9C scope:global align:4
+fault_DrawUpdate = .text:0x8005AAFC; // type:function size:0x30 scope:global align:4
+fault_WaitTime = .text:0x8005AB2C; // type:function size:0x34 scope:global align:4
+fault_ReadPad = .text:0x8005AB60; // type:function size:0x5C scope:global align:4
+fault_CallBackFunc = .text:0x8005ABBC; // type:function size:0xDC scope:global align:4
+my_PreExceptionCallback = .text:0x8005AC98; // type:function size:0x48 scope:global align:4
+my_PostExceptionCallback = .text:0x8005ACE0; // type:function size:0x48 scope:global align:4
+fault_Init = .text:0x8005AD28; // type:function size:0x84 scope:global align:4
+Config24MB = .text:0x8005ADAC; // type:function size:0x6C scope:local align:4
+Config48MB = .text:0x8005AE18; // type:function size:0x6C scope:local align:4
+ReconfigBATs = .text:0x8005AE84; // type:function size:0x50 scope:global align:4
+_dbg_hungup = .text:0x8005AED4; // type:function size:0x5C scope:global align:4
+gfxprint_setup = .text:0x8005AF30; // type:function size:0x270 scope:global align:4
+gfxprint_color = .text:0x8005B1A0; // type:function size:0x4C scope:global align:4
+gfxprint_locate = .text:0x8005B1EC; // type:function size:0x24 scope:global align:4
+gfxprint_locate8x8 = .text:0x8005B210; // type:function size:0x28 scope:global align:4
+gfxprint_putc1 = .text:0x8005B238; // type:function size:0x388 scope:global align:4
+gfxprint_putc = .text:0x8005B5C0; // type:function size:0x194 scope:global align:4
+gfxprint_write = .text:0x8005B754; // type:function size:0x58 scope:global align:4
+gfxprint_prout = .text:0x8005B7AC; // type:function size:0x38 scope:global align:4
+gfxprint_init = .text:0x8005B7E4; // type:function size:0x90 scope:global align:4
+gfxprint_cleanup = .text:0x8005B874; // type:function size:0x4 scope:global align:4
+gfxprint_open = .text:0x8005B878; // type:function size:0x4C scope:global align:4
+gfxprint_close = .text:0x8005B8C4; // type:function size:0x38 scope:global align:4
+gfxprint_vprintf = .text:0x8005B8FC; // type:function size:0x20 scope:global align:4
+gfxprint_printf = .text:0x8005B91C; // type:function size:0x8C scope:global align:4
+pad_physical_stick_x = .text:0x8005B9A8; // type:function size:0xC scope:global align:4
+pad_physical_stick_y = .text:0x8005B9B4; // type:function size:0xC scope:global align:4
+pad_set_logical_stick = .text:0x8005B9C0; // type:function size:0xC scope:global align:4
+pad_correct_stick = .text:0x8005B9CC; // type:function size:0x60 scope:global align:4
+setDebugInfo = .text:0x8005BA2C; // type:function size:0x58 scope:global align:4
+arena_lock_init = .text:0x8005BA84; // type:function size:0x2C scope:global align:4
+arena_lock = .text:0x8005BAB0; // type:function size:0x2C scope:global align:4
+arena_unlock = .text:0x8005BADC; // type:function size:0x2C scope:global align:4
+get_block_next = .text:0x8005BB08; // type:function size:0x78 scope:global align:4
+get_block_prev = .text:0x8005BB80; // type:function size:0x78 scope:global align:4
+search_last_block = .text:0x8005BBF8; // type:function size:0x60 scope:global align:4
+__osMallocInit = .text:0x8005BC58; // type:function size:0x60 scope:global align:4
+__osMallocAddBlock = .text:0x8005BCB8; // type:function size:0xBC scope:global align:4
+destroy_all_block = .text:0x8005BD74; // type:function size:0x70 scope:global align:4
+__osMallocCleanup = .text:0x8005BDE4; // type:function size:0x38 scope:global align:4
+__osMallocIsInitalized = .text:0x8005BE1C; // type:function size:0x8 scope:global align:4
+__osMalloc_FreeBlockTest = .text:0x8005BE24; // type:function size:0xB8 scope:global align:4
+__osMallocAlign_NoLock = .text:0x8005BEDC; // type:function size:0x218 scope:global align:4
+__osMalloc_NoLock = .text:0x8005C0F4; // type:function size:0x24 scope:global align:4
+__osMallocAlign = .text:0x8005C118; // type:function size:0x60 scope:global align:4
+__osMalloc = .text:0x8005C178; // type:function size:0x24 scope:global align:4
+__osMallocR = .text:0x8005C19C; // type:function size:0x144 scope:global align:4
+__osFree_NoLock = .text:0x8005C2E0; // type:function size:0x210 scope:global align:4
+__osFree = .text:0x8005C4F0; // type:function size:0x4C scope:global align:4
+__osRealloc = .text:0x8005C53C; // type:function size:0x22C scope:global align:4
+__osAnalyzeArena = .text:0x8005C768; // type:function size:0xC8 scope:global align:4
+__osGetFreeArena = .text:0x8005C830; // type:function size:0x78 scope:global align:4
+__osGetTotalFreeSize = .text:0x8005C8A8; // type:function size:0x30 scope:global align:4
+__osGetFreeSize = .text:0x8005C8D8; // type:function size:0x30 scope:global align:4
+__osGetMemBlockSize = .text:0x8005C908; // type:function size:0x34 scope:global align:4
+__osDisplayArena = .text:0x8005C93C; // type:function size:0x1F8 scope:global align:4
+__osCheckArena = .text:0x8005CB34; // type:function size:0xA8 scope:global align:4
+vaprintf = .text:0x8005CBDC; // type:function size:0x38 scope:global align:4
+fatan2 = .text:0x8005CC14; // type:function size:0x24 scope:global align:4
+fsqrt = .text:0x8005CC38; // type:function size:0x70 scope:global align:4
+facos = .text:0x8005CCA8; // type:function size:0x24 scope:global align:4
+qrand = .text:0x8005CCCC; // type:function size:0x20 scope:global align:4
+sqrand = .text:0x8005CCEC; // type:function size:0x8 scope:global align:4
+fqrand = .text:0x8005CCF4; // type:function size:0x38 scope:global align:4
+fqrand2 = .text:0x8005CD2C; // type:function size:0x38 scope:global align:4
+csleep = .text:0x8005CD64; // type:function size:0x74 scope:global align:4
+msleep = .text:0x8005CDD8; // type:function size:0x40 scope:global align:4
+proutPrintf = .text:0x8005CE18; // type:function size:0x30 scope:global align:4
+sprintf = .text:0x8005CE48; // type:function size:0xC0 scope:global align:4
+malloc = .text:0x8005CF08; // type:function size:0x2C scope:global align:4
+free = .text:0x8005CF34; // type:function size:0x2C scope:global align:4
+DisplayArena = .text:0x8005CF60; // type:function size:0x28 scope:global align:4
+GetFreeArena = .text:0x8005CF88; // type:function size:0x38 scope:global align:4
+MallocInit = .text:0x8005CFC0; // type:function size:0x34 scope:global align:4
+MallocCleanup = .text:0x8005CFF4; // type:function size:0x28 scope:global align:4
+bcopy = .text:0x8005D01C; // type:function size:0x2C scope:global align:4
+bcmp = .text:0x8005D048; // type:function size:0x20 scope:global align:4
+bzero = .text:0x8005D068; // type:function size:0x28 scope:global align:4
+osSyncPrintf = .text:0x8005D090; // type:function size:0x8C scope:global align:4
+osWritebackDCache = .text:0x8005D11C; // type:function size:0x20 scope:global align:4
+osGetCount = .text:0x8005D13C; // type:function size:0x20 scope:global align:4
+coss = .text:0x8005D15C; // type:function size:0x28 scope:global align:4
+guLookAtF = .text:0x8005D184; // type:function size:0x364 scope:global align:4
+guLookAt = .text:0x8005D4E8; // type:function size:0x44 scope:global align:4
+guLookAtHiliteF = .text:0x8005D52C; // type:function size:0x958 scope:global align:4
+guLookAtHilite = .text:0x8005DE84; // type:function size:0x74 scope:global align:4
+guMtxF2L = .text:0x8005DEF8; // type:function size:0xAC scope:global align:4
+guMtxIdentF = .text:0x8005DFA4; // type:function size:0x84 scope:global align:4
+guMtxIdent = .text:0x8005E028; // type:function size:0x134 scope:global align:4
+guNormalize = .text:0x8005E15C; // type:function size:0xBC scope:global align:4
+guOrtho = .text:0x8005E218; // type:function size:0x1FC scope:global align:4
+guPerspective = .text:0x8005E414; // type:function size:0x240 scope:global align:4
+guRotate = .text:0x8005E654; // type:function size:0x180 scope:global align:4
+guScale = .text:0x8005E7D4; // type:function size:0x8C scope:global align:4
+sins = .text:0x8005E860; // type:function size:0x4C scope:global align:4
+guTranslate = .text:0x8005E8AC; // type:function size:0x6C scope:global align:4
+_Ldtob = .text:0x8005E918; // type:function size:0x3B0 scope:global align:4
+_Ldunscale = .text:0x8005ECC8; // type:function size:0xAC scope:global align:4
+_Genld = .text:0x8005ED74; // type:function size:0x52C scope:global align:4
+_Litob = .text:0x8005F2A0; // type:function size:0x22C scope:global align:4
+_Printf = .text:0x8005F4CC; // type:function size:0x5E0 scope:global align:4
+_Putfld = .text:0x8005FAAC; // type:function size:0x4C8 scope:global align:4
+osCreateMesgQueue = .text:0x8005FF74; // type:function size:0x20 scope:global align:4
+osCreateThread2 = .text:0x8005FF94; // type:function size:0x74 scope:global align:4
+osDestroyThread = .text:0x80060008; // type:function size:0x2C scope:global align:4
+osGetThreadId = .text:0x80060034; // type:function size:0x2C scope:global align:4
+osGetTime = .text:0x80060060; // type:function size:0x30 scope:global align:4
+__osInitialize_common = .text:0x80060090; // type:function size:0x5C scope:global align:4
+osIsDisableShutdown = .text:0x800600EC; // type:function size:0x14 scope:global align:4
+osIsEnableShutdown = .text:0x80060100; // type:function size:0x10 scope:global align:4
+osGetDisableShutdownTime = .text:0x80060110; // type:function size:0xC scope:global align:4
+osRecvMesg = .text:0x8006011C; // type:function size:0x20 scope:global align:4
+osSendMesg = .text:0x8006013C; // type:function size:0x20 scope:global align:4
+osSetThreadPri = .text:0x8006015C; // type:function size:0x3C scope:global align:4
+timer_handler = .text:0x80060198; // type:function size:0xC0 scope:global align:4
+osSetTimer = .text:0x80060258; // type:function size:0xF4 scope:global align:4
+osShutdownStart = .text:0x8006034C; // type:function size:0x190 scope:global align:4
+osStartThread = .text:0x800604DC; // type:function size:0x2C scope:global align:4
+osStopTimerAll = .text:0x80060508; // type:function size:0x8C scope:global align:4
+__osTimerServicesInit = .text:0x80060594; // type:function size:0x40 scope:global align:4
+osContStartQuery = .text:0x800605D4; // type:function size:0x2C scope:global align:4
+osContGetQuery = .text:0x80060600; // type:function size:0x28 scope:global align:4
+osContStartReadData = .text:0x80060628; // type:function size:0x40 scope:global align:4
+osContGetReadData = .text:0x80060668; // type:function size:0x70 scope:global align:4
+osContGetReadDataEx = .text:0x800606D8; // type:function size:0x550 scope:global align:4
+osContInit = .text:0x80060C28; // type:function size:0x50 scope:global align:4
+__osContGetInitData = .text:0x80060C78; // type:function size:0x104 scope:global align:4
+osContSetCh = .text:0x80060D7C; // type:function size:0x20 scope:global align:4
+JC_JUTConsole_print_f_va = .text:0x80060D9C; // type:function size:0x48 scope:global align:4
+JW_JUTReport = .text:0x80060DE4; // type:function size:0xDC scope:global align:4
+JW_Alloc = .text:0x80060EC0; // type:function size:0x44 scope:global align:4
+JW_Resize = .text:0x80060F04; // type:function size:0x44 scope:global align:4
+JW_Free = .text:0x80060F48; // type:function size:0x34 scope:global align:4
+JW_GetMemBlockSize = .text:0x80060F7C; // type:function size:0x34 scope:global align:4
+JW_JUTXfb_clearIndex = .text:0x80060FB0; // type:function size:0x24 scope:global align:4
+JC_JUTFader_delete = .text:0x80060FD4; // type:function size:0x38 scope:global align:4
+JC_JUTFader_new = .text:0x8006100C; // type:function size:0xA0 scope:global align:4
+JC_JUTDbPrint_getManager = .text:0x800610AC; // type:function size:0x8 scope:global align:4
+JC_JUTDbPrint_setVisible = .text:0x800610B4; // type:function size:0x10 scope:global align:4
+JC_J2DOrthoGraph_delete = .text:0x800610C4; // type:function size:0x38 scope:global align:4
+JC_J2DOrthoGraph_new = .text:0x800610FC; // type:function size:0x38 scope:global align:4
+JC_J2DOrthoGraph_setPort = .text:0x80061134; // type:function size:0x2C scope:global align:4
+JC_J2DOrthoGraph_setOrtho = .text:0x80061160; // type:function size:0xBC scope:global align:4
+JC_JUTVideo_getManager = .text:0x8006121C; // type:function size:0x8 scope:global align:4
+JC_JUTVideo_setRenderMode = .text:0x80061224; // type:function size:0x20 scope:global align:4
+JC_JUTVideo_getFbWidth = .text:0x80061244; // type:function size:0xC scope:global align:4
+JC_JUTVideo_getEfbHeight = .text:0x80061250; // type:function size:0xC scope:global align:4
+JC_JKRHeap_alloc = .text:0x8006125C; // type:function size:0x20 scope:global align:4
+JC_JKRHeap_resize = .text:0x8006127C; // type:function size:0x20 scope:global align:4
+JC_JKRHeap_free = .text:0x8006129C; // type:function size:0x20 scope:global align:4
+JC_JKRHeap_dump = .text:0x800612BC; // type:function size:0x30 scope:global align:4
+JC_JKRHeap_getFreeSize = .text:0x800612EC; // type:function size:0x20 scope:global align:4
+JC_JKRHeap_getTotalFreeSize = .text:0x8006130C; // type:function size:0x20 scope:global align:4
+JC_JKRHeap_getSize = .text:0x8006132C; // type:function size:0x20 scope:global align:4
+JC__JKRGetSystemHeap = .text:0x8006134C; // type:function size:0x8 scope:global align:4
+JC__JKRGetMemBlockSize = .text:0x80061354; // type:function size:0x2C scope:global align:4
+JC_JKRExpHeap_changeGroupID = .text:0x80061380; // type:function size:0x28 scope:global align:4
+JC_JUTGamePad_read = .text:0x800613A8; // type:function size:0x20 scope:global align:4
+JC_JUTGamePad_getPadStatus = .text:0x800613C8; // type:function size:0x2C scope:global align:4
+JC_JUTGamePad_recalibrate = .text:0x800613F4; // type:function size:0x24 scope:global align:4
+JC_JUTConsole_setOutput = .text:0x80061418; // type:function size:0x8 scope:global align:4
+JC_JUTConsole_getOutput = .text:0x80061420; // type:function size:0x8 scope:global align:4
+JC_JUTConsole_setVisible = .text:0x80061428; // type:function size:0x10 scope:global align:4
+JC_JUTConsole_isVisible = .text:0x80061438; // type:function size:0x8 scope:global align:4
+JC_JUTConsole_getHeight = .text:0x80061440; // type:function size:0x8 scope:global align:4
+JC_JUTConsole_setPosition = .text:0x80061448; // type:function size:0xC scope:global align:4
+JC_JUTConsole_getPositionX = .text:0x80061454; // type:function size:0x8 scope:global align:4
+JC_JUTConsole_clear = .text:0x8006145C; // type:function size:0x20 scope:global align:4
+JC_JUTConsole_scroll = .text:0x8006147C; // type:function size:0x20 scope:global align:4
+JC_JUTConsole_scrollToLastLine = .text:0x8006149C; // type:function size:0x24 scope:global align:4
+JC_JUTConsole_scrollToFirstLine = .text:0x800614C0; // type:function size:0x28 scope:global align:4
+JC_JUTConsole_getUsedLine = .text:0x800614E8; // type:function size:0x20 scope:global align:4
+JC_JUTConsole_getLineOffset = .text:0x80061508; // type:function size:0x20 scope:global align:4
+JC_JUTConsole_dumpToTerminal = .text:0x80061528; // type:function size:0x20 scope:global align:4
+JC_JUTConsoleManager_getManager = .text:0x80061548; // type:function size:0x8 scope:global align:4
+JC_JUTConsoleManager_drawDirect = .text:0x80061550; // type:function size:0x2C scope:global align:4
+JC_JUTException_getManager = .text:0x8006157C; // type:function size:0x8 scope:global align:4
+JC_JUTException_enterAllPad = .text:0x80061584; // type:function size:0x10 scope:global align:4
+JC_JUTException_setPreUserCallback = .text:0x80061594; // type:function size:0x20 scope:global align:4
+JC_JUTException_setPostUserCallback = .text:0x800615B4; // type:function size:0x20 scope:global align:4
+JC_JUTException_setMapFile = .text:0x800615D4; // type:function size:0x20 scope:global align:4
+JC_JUTException_getConsole = .text:0x800615F4; // type:function size:0x8 scope:global align:4
+JC_JUTException_isEnablePad = .text:0x800615FC; // type:function size:0x24 scope:global align:4
+JC_JUTException_readPad = .text:0x80061620; // type:function size:0x24 scope:global align:4
+JC_JUTException_waitTime = .text:0x80061644; // type:function size:0x20 scope:global align:4
+JC_JFWDisplay_createManager_0 = .text:0x80061664; // type:function size:0x2C scope:global align:4
+JC_JFWDisplay_destroyManager = .text:0x80061690; // type:function size:0x20 scope:global align:4
+JC_JFWDisplay_getManager = .text:0x800616B0; // type:function size:0x8 scope:global align:4
+JC_JFWDisplay_setGamma = .text:0x800616B8; // type:function size:0x8 scope:global align:4
+JC_JFWDisplay_setFrameRate = .text:0x800616C0; // type:function size:0x10 scope:global align:4
+JC_JFWDisplay_setFader = .text:0x800616D0; // type:function size:0x8 scope:global align:4
+JC_JFWDisplay_setClearColor = .text:0x800616D8; // type:function size:0x5C scope:global align:4
+JC_JFWDisplay_beginRender = .text:0x80061734; // type:function size:0x2C scope:global align:4
+JC_JFWDisplay_endRender = .text:0x80061760; // type:function size:0x2C scope:global align:4
+JC_JFWDisplay_endFrame = .text:0x8006178C; // type:function size:0x2C scope:global align:4
+JC_JFWDisplay_startFadeIn = .text:0x800617B8; // type:function size:0x44 scope:global align:4
+JC_JFWDisplay_startFadeOut = .text:0x800617FC; // type:function size:0x44 scope:global align:4
+JC_JFWDisplay_getEfbWidth = .text:0x80061840; // type:function size:0xC scope:global align:4
+JC_JFWDisplay_getEfbHeight = .text:0x8006184C; // type:function size:0xC scope:global align:4
+JC_JFWDisplay_changeToSingleXfb = .text:0x80061858; // type:function size:0x20 scope:global align:4
+JC_JFWDisplay_changeToDoubleXfb = .text:0x80061878; // type:function size:0x20 scope:global align:4
+JC_JFWDisplay_clearEfb = .text:0x80061898; // type:function size:0x2C scope:global align:4
+JC_JFWDisplay_getRenderMode = .text:0x800618C4; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_setMaxStdHeap = .text:0x800618CC; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_setSysHeapSize = .text:0x800618D4; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_setFifoBufSize = .text:0x800618DC; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_setAramAudioBufSize = .text:0x800618E4; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_setAramGraphBufSize = .text:0x800618EC; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_init = .text:0x800618F4; // type:function size:0x20 scope:global align:4
+JC_JFWSystem_getSystemHeap = .text:0x80061914; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_getRootHeap = .text:0x8006191C; // type:function size:0x8 scope:global align:4
+JC_JFWSystem_getSystemConsole = .text:0x80061924; // type:function size:0x8 scope:global align:4
+JC_JUTProcBar_getManager = .text:0x8006192C; // type:function size:0x8 scope:global align:4
+JC_JUTProcBar_setVisible = .text:0x80061934; // type:function size:0x10 scope:global align:4
+JC_JUTProcBar_setVisibleHeapBar = .text:0x80061944; // type:function size:0x10 scope:global align:4
+JC_JKRDecomp_checkCompressed = .text:0x80061954; // type:function size:0x20 scope:global align:4
+JC_JKRDecomp_decode = .text:0x80061974; // type:function size:0x20 scope:global align:4
+JC__JKRGetResource = .text:0x80061994; // type:function size:0x20 scope:global align:4
+JC__JKRRemoveResource = .text:0x800619B4; // type:function size:0x24 scope:global align:4
+JC__JKRDetachResource = .text:0x800619D8; // type:function size:0x24 scope:global align:4
+JC__JKRMountArchive = .text:0x800619FC; // type:function size:0x20 scope:global align:4
+JC__JKRGetResourceEntry_byName = .text:0x80061A1C; // type:function size:0x34 scope:global align:4
+JC_JKRAramHeap_dump = .text:0x80061A50; // type:function size:0x20 scope:global align:4
+JC_JKRAram_getAramHeap = .text:0x80061A70; // type:function size:0xC scope:global align:4
+JC_JKRAramArchive_delete = .text:0x80061A7C; // type:function size:0x38 scope:global align:4
+JC_JKRAramArchive_new = .text:0x80061AB4; // type:function size:0x38 scope:global align:4
+JC__JKRMountFixedAramArchive = .text:0x80061AEC; // type:function size:0x28 scope:global align:4
+JC__JKRUnmountFixedAramArchive = .text:0x80061B14; // type:function size:0x20 scope:global align:4
+JC_JKRAramArchive_getAramAddress_byName = .text:0x80061B34; // type:function size:0x20 scope:global align:4
+JC__JKRAllocFromAram = .text:0x80061B54; // type:function size:0x30 scope:global align:4
+JC_JKRAramBlock_getAddress = .text:0x80061B84; // type:function size:0x8 scope:global align:4
+JC__JKRAramToMainRam_block = .text:0x80061B8C; // type:function size:0x3C scope:global align:4
+JC__JKRMainRamToAram_block = .text:0x80061BC8; // type:function size:0x30 scope:global align:4
+JC__JKRDvdToMainRam_byName = .text:0x80061BF8; // type:function size:0x34 scope:global align:4
+JC_JUTAssertion_changeDevice = .text:0x80061C2C; // type:function size:0x20 scope:global align:4
+JC_JUTAssertion_changeDisplayTime = .text:0x80061C4C; // type:function size:0x20 scope:global align:4
+JC_JUTXfb_getManager = .text:0x80061C6C; // type:function size:0x8 scope:global align:4
+JC_JUTXfb_clearIndex = .text:0x80061C74; // type:function size:0x20 scope:global align:4
+__dt__8JUTFaderFv = .text:0x80061C94; // type:function size:0x48 scope:global align:4
+dump_sort__7JKRHeapFv = .text:0x80061CDC; // type:function size:0x8 scope:global align:4
+getResFont__10JUTResFontCFv = .text:0x80061CE4; // type:function size:0x8 scope:global align:4
+getFontType__10JUTResFontCFv = .text:0x80061CEC; // type:function size:0xC scope:global align:4
+getLeading__10JUTResFontCFv = .text:0x80061CF8; // type:function size:0xC scope:global align:4
+getWidth__10JUTResFontCFv = .text:0x80061D04; // type:function size:0xC scope:global align:4
+getAscent__10JUTResFontCFv = .text:0x80061D10; // type:function size:0xC scope:global align:4
+getDescent__10JUTResFontCFv = .text:0x80061D1C; // type:function size:0xC scope:global align:4
+getHeight__10JUTResFontCFv = .text:0x80061D28; // type:function size:0x5C scope:global align:4
+firstInit__9JFWSystemFv = .text:0x80061D84; // type:function size:0x48 scope:global align:4
+init__9JFWSystemFv = .text:0x80061DCC; // type:function size:0x330 scope:global align:4
+ctor_subroutine__10JFWDisplayFPC16_GXRenderModeObjb = .text:0x800620FC; // type:function size:0xBC scope:global align:4
+__ct__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x800621B8; // type:function size:0x70 scope:global align:4
+__dt__10JFWDisplayFv = .text:0x80062228; // type:function size:0x68 scope:global align:4
+createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb = .text:0x80062290; // type:function size:0x78 scope:global align:4
+destroyManager__10JFWDisplayFv = .text:0x80062308; // type:function size:0x44 scope:global align:4
+callDirectDraw__Fv = .text:0x8006234C; // type:function size:0x58 scope:global align:4
+prepareCopyDisp__10JFWDisplayFv = .text:0x800623A4; // type:function size:0xFC scope:global align:4
+drawendXfb_single__10JFWDisplayFv = .text:0x800624A0; // type:function size:0x78 scope:global align:4
+exchangeXfb_double__10JFWDisplayFv = .text:0x80062518; // type:function size:0x100 scope:global align:4
+exchangeXfb_triple__10JFWDisplayFv = .text:0x80062618; // type:function size:0x78 scope:global align:4
+copyXfb_triple__10JFWDisplayFv = .text:0x80062690; // type:function size:0x60 scope:global align:4
+preGX__10JFWDisplayFv = .text:0x800626F0; // type:function size:0x90 scope:global align:4
+endGX__10JFWDisplayFv = .text:0x80062780; // type:function size:0xF8 scope:global align:4
+beginRender__10JFWDisplayFv = .text:0x80062878; // type:function size:0x204 scope:global align:4
+endRender__10JFWDisplayFv = .text:0x80062A7C; // type:function size:0xA0 scope:global align:4
+endFrame__10JFWDisplayFv = .text:0x80062B1C; // type:function size:0x1EC scope:global align:4
+waitBlanking__10JFWDisplayFi = .text:0x80062D08; // type:function size:0x50 scope:global align:4
+waitForTick__FUlUs = .text:0x80062D58; // type:function size:0x120 scope:global align:4
+JFWThreadAlarmHandler__FP7OSAlarmP9OSContext = .text:0x80062E78; // type:function size:0x24 scope:global align:4
+threadSleep__10JFWDisplayFx = .text:0x80062E9C; // type:function size:0x74 scope:global align:4
+changeToSingleXfb__10JFWDisplayFi = .text:0x80062F10; // type:function size:0x160 scope:global align:4
+changeToDoubleXfb__10JFWDisplayFv = .text:0x80063070; // type:function size:0x90 scope:global align:4
+clearEfb_init__10JFWDisplayFv = .text:0x80063100; // type:function size:0x74 scope:global align:4
+clearEfb__10JFWDisplayF8_GXColor = .text:0x80063174; // type:function size:0x364 scope:global align:4
+calcCombinationRatio__10JFWDisplayFv = .text:0x800634D8; // type:function size:0x8C scope:global align:4
+JFWGXAbortAlarmHandler__FP7OSAlarmP9OSContext = .text:0x80063564; // type:function size:0x28 scope:global align:4
+diagnoseGpHang__Fv = .text:0x8006358C; // type:function size:0x1BC scope:global align:4
+__ct__7JKRHeapFPvUlP7JKRHeapb = .text:0x80063748; // type:function size:0x124 scope:global align:4
+__dt__7JKRHeapFv = .text:0x8006386C; // type:function size:0x114 scope:global align:4
+initArena__7JKRHeapFPPcPUli = .text:0x80063980; // type:function size:0xB0 scope:global align:4
+becomeSystemHeap__7JKRHeapFv = .text:0x80063A30; // type:function size:0x10 scope:global align:4
+becomeCurrentHeap__7JKRHeapFv = .text:0x80063A40; // type:function size:0x10 scope:global align:4
+alloc__7JKRHeapFUliP7JKRHeap = .text:0x80063A50; // type:function size:0x78 scope:global align:4
+alloc__7JKRHeapFUli = .text:0x80063AC8; // type:function size:0x2C scope:global align:4
+free__7JKRHeapFPvP7JKRHeap = .text:0x80063AF4; // type:function size:0x48 scope:global align:4
+free__7JKRHeapFPv = .text:0x80063B3C; // type:function size:0x2C scope:global align:4
+callAllDisposer__7JKRHeapFv = .text:0x80063B68; // type:function size:0x50 scope:global align:4
+resize__7JKRHeapFPvUl = .text:0x80063BB8; // type:function size:0x2C scope:global align:4
+getSize__7JKRHeapFPvP7JKRHeap = .text:0x80063BE4; // type:function size:0x50 scope:global align:4
+getSize__7JKRHeapFPv = .text:0x80063C34; // type:function size:0x2C scope:global align:4
+getFreeSize__7JKRHeapFv = .text:0x80063C60; // type:function size:0x2C scope:global align:4
+getTotalFreeSize__7JKRHeapFv = .text:0x80063C8C; // type:function size:0x2C scope:global align:4
+changeGroupID__7JKRHeapFUc = .text:0x80063CB8; // type:function size:0x2C scope:global align:4
+findFromRoot__7JKRHeapFPv = .text:0x80063CE4; // type:function size:0x3C scope:global align:4
+find__7JKRHeapCFPv = .text:0x80063D20; // type:function size:0xA8 scope:global align:4
+dispose_subroutine__7JKRHeapFUlUl = .text:0x80063DC8; // type:function size:0x94 scope:global align:4
+dispose__7JKRHeapFPvUl = .text:0x80063E5C; // type:function size:0x28 scope:global align:4
+dispose__7JKRHeapFv = .text:0x80063E84; // type:function size:0x50 scope:global align:4
+copyMemory__7JKRHeapFPvPvUl = .text:0x80063ED4; // type:function size:0x28 scope:global align:4
+JKRDefaultMemoryErrorRoutine__FPvUli = .text:0x80063EFC; // type:function size:0x34 scope:global align:4
+__nw__FUl = .text:0x80063F30; // type:function size:0x28 scope:global align:4
+__nw__FUlP7JKRHeapi = .text:0x80063F58; // type:function size:0x2C scope:global align:4
+__nwa__FUlP7JKRHeapi = .text:0x80063F84; // type:function size:0x2C scope:global align:4
+__dl__FPv = .text:0x80063FB0; // type:function size:0x24 scope:global align:4
+__dla__FPv = .text:0x80063FD4; // type:function size:0x24 scope:global align:4
+state_register__7JKRHeapCFPQ27JKRHeap6TStateUl = .text:0x80063FF8; // type:function size:0x4 scope:global align:4
+state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80063FFC; // type:function size:0x18 scope:global align:4
+state_dump__7JKRHeapCFRCQ27JKRHeap6TState = .text:0x80064014; // type:function size:0x4 scope:global align:4
+do_changeGroupID__7JKRHeapFUc = .text:0x80064018; // type:function size:0x8 scope:global align:4
+do_getCurrentGroupId__7JKRHeapFv = .text:0x80064020; // type:function size:0x8 scope:global align:4
+createRoot__10JKRExpHeapFib = .text:0x80064028; // type:function size:0x80 scope:global align:4
+create__10JKRExpHeapFUlP7JKRHeapb = .text:0x800640A8; // type:function size:0xD4 scope:global align:4
+__ct__10JKRExpHeapFPvUlP7JKRHeapb = .text:0x8006417C; // type:function size:0x90 scope:global align:4
+__dt__10JKRExpHeapFv = .text:0x8006420C; // type:function size:0x68 scope:global align:4
+do_changeGroupID__10JKRExpHeapFUc = .text:0x80064274; // type:function size:0x50 scope:global align:4
+do_alloc__10JKRExpHeapFUli = .text:0x800642C4; // type:function size:0x134 scope:global align:4
+allocFromHead__10JKRExpHeapFUli = .text:0x800643F8; // type:function size:0x2E0 scope:global align:4
+allocFromHead__10JKRExpHeapFUl = .text:0x800646D8; // type:function size:0x120 scope:global align:4
+allocFromTail__10JKRExpHeapFUli = .text:0x800647F8; // type:function size:0x160 scope:global align:4
+allocFromTail__10JKRExpHeapFUl = .text:0x80064958; // type:function size:0xD8 scope:global align:4
+do_free__10JKRExpHeapFPv = .text:0x80064A30; // type:function size:0x74 scope:global align:4
+do_freeAll__10JKRExpHeapFv = .text:0x80064AA4; // type:function size:0x7C scope:global align:4
+do_freeTail__10JKRExpHeapFv = .text:0x80064B20; // type:function size:0x88 scope:global align:4
+do_resize__10JKRExpHeapFPvUl = .text:0x80064BA8; // type:function size:0x1AC scope:global align:4
+do_getSize__10JKRExpHeapFPv = .text:0x80064D54; // type:function size:0x80 scope:global align:4
+do_getFreeSize__10JKRExpHeapFv = .text:0x80064DD4; // type:function size:0x6C scope:global align:4
+do_getTotalFreeSize__10JKRExpHeapFv = .text:0x80064E40; // type:function size:0x64 scope:global align:4
+getUsedSize__10JKRExpHeapCFUc = .text:0x80064EA4; // type:function size:0x7C scope:global align:4
+check__10JKRExpHeapFv = .text:0x80064F20; // type:function size:0x1E8 scope:global align:4
+appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80065108; // type:function size:0x98 scope:global align:4
+setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock = .text:0x800651A0; // type:function size:0x4C scope:global align:4
+removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x800651EC; // type:function size:0x34 scope:global align:4
+removeUsedBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80065220; // type:function size:0x34 scope:global align:4
+recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x80065254; // type:function size:0x198 scope:global align:4
+joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock = .text:0x800653EC; // type:function size:0xD0 scope:global align:4
+dump__10JKRExpHeapFv = .text:0x800654BC; // type:function size:0x1D0 scope:global align:4
+dump_sort__10JKRExpHeapFv = .text:0x8006568C; // type:function size:0x200 scope:global align:4
+initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc = .text:0x8006588C; // type:function size:0x20 scope:global align:4
+allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x800658AC; // type:function size:0x44 scope:global align:4
+allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc = .text:0x800658F0; // type:function size:0x58 scope:global align:4
+free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap = .text:0x80065948; // type:function size:0x50 scope:global align:4
+getHeapBlock__Q210JKRExpHeap9CMemBlockFPv = .text:0x80065998; // type:function size:0x1C scope:global align:4
+state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl = .text:0x800659B4; // type:function size:0xA8 scope:global align:4
+state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState = .text:0x80065A5C; // type:function size:0x30 scope:global align:4
+do_getCurrentGroupId__10JKRExpHeapFv = .text:0x80065A8C; // type:function size:0x8 scope:global align:4
+getHeapType__10JKRExpHeapFv = .text:0x80065A94; // type:function size:0xC scope:global align:4
+__ct__11JKRDisposerFv = .text:0x80065AA0; // type:function size:0x68 scope:global align:4
+__dt__11JKRDisposerFv = .text:0x80065B08; // type:function size:0x84 scope:global align:4
+__ct__9JKRThreadFUlii = .text:0x80065B8C; // type:function size:0x110 scope:global align:4
+__ct__9JKRThreadFP8OSThreadi = .text:0x80065C9C; // type:function size:0xB8 scope:global align:4
+__dt__9JKRThreadFv = .text:0x80065D54; // type:function size:0xD8 scope:global align:4
+start__9JKRThreadFPv = .text:0x80065E2C; // type:function size:0x2C scope:global align:4
+__sinit_JKRThread_cpp = .text:0x80065E58; // type:function size:0x44 scope:local align:4
+__dt__19JSUList<9JKRThread>Fv = .text:0x80065E9C; // type:function size:0x54 scope:global align:4
+run__9JKRThreadFv = .text:0x80065EF0; // type:function size:0x8 scope:global align:4
+create__7JKRAramFUlUllll = .text:0x80065EF8; // type:function size:0x9C scope:global align:4
+__ct__7JKRAramFUlUll = .text:0x80065F94; // type:function size:0x10C scope:global align:4
+__dt__7JKRAramFv = .text:0x800660A0; // type:function size:0x90 scope:global align:4
+run__7JKRAramFv = .text:0x80066130; // type:function size:0x6C scope:global align:4
+checkOkAddress__7JKRAramFPUcUlP12JKRAramBlockUl = .text:0x8006619C; // type:function size:0x90 scope:global align:4
+changeGroupIdIfNeed__7JKRAramFPUci = .text:0x8006622C; // type:function size:0x60 scope:global align:4
+mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapi = .text:0x8006628C; // type:function size:0x24C scope:global align:4
+mainRamToAram__7JKRAramFPUcP12JKRAramBlockUl15JKRExpandSwitchUlP7JKRHeapi = .text:0x800664D8; // type:function size:0xD0 scope:global align:4
+aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x800665A8; // type:function size:0x278 scope:global align:4
+aramToMainRam__7JKRAramFP12JKRAramBlockPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl = .text:0x80066820; // type:function size:0xF8 scope:global align:4
+JKRDecompressFromAramToMainRam__FUlPvUlUlUl = .text:0x80066918; // type:function size:0xF0 scope:global align:4
+decompSZS_subroutine__FPUcPUc = .text:0x80066A08; // type:function size:0x284 scope:local align:4
+firstSrcData__Fv = .text:0x80066C8C; // type:function size:0x98 scope:local align:4
+nextSrcData__FPUc = .text:0x80066D24; // type:function size:0xC8 scope:local align:4
+__sinit_JKRAram_cpp = .text:0x80066DEC; // type:function size:0x44 scope:local align:4
+__dt__23JSUList<12JKRAMCommand>Fv = .text:0x80066E30; // type:function size:0x54 scope:global align:4
+__ct__11JKRAramHeapFUlUl = .text:0x80066E84; // type:function size:0xD0 scope:global align:4
+__dt__11JKRAramHeapFv = .text:0x80066F54; // type:function size:0xA0 scope:global align:4
+alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode = .text:0x80066FF4; // type:function size:0x78 scope:global align:4
+allocFromHead__11JKRAramHeapFUl = .text:0x8006706C; // type:function size:0x88 scope:global align:4
+allocFromTail__11JKRAramHeapFUl = .text:0x800670F4; // type:function size:0x78 scope:global align:4
+dump__11JKRAramHeapFv = .text:0x8006716C; // type:function size:0x54 scope:global align:4
+__sinit_JKRAramHeap_cpp = .text:0x800671C0; // type:function size:0x44 scope:local align:4
+__dt__23JSUList<12JKRAramBlock>Fv = .text:0x80067204; // type:function size:0x54 scope:global align:4
+__ct__12JKRAramBlockFUlUlUlUcb = .text:0x80067258; // type:function size:0x74 scope:global align:4
+__dt__12JKRAramBlockFv = .text:0x800672CC; // type:function size:0xBC scope:global align:4
+allocHead__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80067388; // type:function size:0x9C scope:global align:4
+allocTail__12JKRAramBlockFUlUcP11JKRAramHeap = .text:0x80067424; // type:function size:0xA4 scope:global align:4
+prepareCommand__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x800674C8; // type:function size:0x80 scope:global align:4
+sendCommand__12JKRAramPieceFP12JKRAMCommand = .text:0x80067548; // type:function size:0x20 scope:global align:4
+orderAsync__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v = .text:0x80067568; // type:function size:0x144 scope:global align:4
+sync__12JKRAramPieceFP12JKRAMCommandi = .text:0x800676AC; // type:function size:0xC8 scope:global align:4
+orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock = .text:0x80067774; // type:function size:0x98 scope:global align:4
+startDMA__12JKRAramPieceFP12JKRAMCommand = .text:0x8006780C; // type:function size:0x78 scope:global align:4
+doneDMA__12JKRAramPieceFUl = .text:0x80067884; // type:function size:0xA8 scope:global align:4
+__ct__12JKRAMCommandFv = .text:0x8006792C; // type:function size:0x70 scope:global align:4
+__dt__12JKRAMCommandFv = .text:0x8006799C; // type:function size:0xA8 scope:global align:4
+__sinit_JKRAramPiece_cpp = .text:0x80067A44; // type:function size:0x44 scope:local align:4
+create__13JKRAramStreamFl = .text:0x80067A88; // type:function size:0x70 scope:global align:4
+__ct__13JKRAramStreamFl = .text:0x80067AF8; // type:function size:0x50 scope:global align:4
+__dt__13JKRAramStreamFv = .text:0x80067B48; // type:function size:0x60 scope:global align:4
+run__13JKRAramStreamFv = .text:0x80067BA8; // type:function size:0x70 scope:global align:4
+readFromAram__13JKRAramStreamFv = .text:0x80067C18; // type:function size:0x8 scope:global align:4
+writeToAram__13JKRAramStreamFP20JKRAramStreamCommand = .text:0x80067C20; // type:function size:0x1C8 scope:global align:4
+write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUl = .text:0x80067DE8; // type:function size:0xBC scope:global align:4
+sync__13JKRAramStreamFP20JKRAramStreamCommandi = .text:0x80067EA4; // type:function size:0x94 scope:global align:4
+setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap = .text:0x80067F38; // type:function size:0x54 scope:global align:4
+__ct__20JKRAramStreamCommandFv = .text:0x80067F8C; // type:function size:0xC scope:global align:4
+getAvailable__20JSURandomInputStreamCFv = .text:0x80067F98; // type:function size:0x5C scope:global align:4
+__ct__13JKRFileLoaderFv = .text:0x80067FF4; // type:function size:0x58 scope:global align:4
+__dt__13JKRFileLoaderFv = .text:0x8006804C; // type:function size:0x8C scope:global align:4
+unmount__13JKRFileLoaderFv = .text:0x800680D8; // type:function size:0x50 scope:global align:4
+changeDirectory__13JKRFileLoaderFPCc = .text:0x80068128; // type:function size:0x44 scope:global align:4
+getGlbResource__13JKRFileLoaderFPCc = .text:0x8006816C; // type:function size:0x4C scope:global align:4
+readGlbResource__13JKRFileLoaderFPvUlPCc15JKRExpandSwitch = .text:0x800681B8; // type:function size:0x74 scope:global align:4
+removeResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x8006822C; // type:function size:0x98 scope:global align:4
+detachResource__13JKRFileLoaderFPvP13JKRFileLoader = .text:0x800682C4; // type:function size:0x98 scope:global align:4
+findVolume__13JKRFileLoaderFPPCc = .text:0x8006835C; // type:function size:0x8C scope:global align:4
+findFirstFile__13JKRFileLoaderFPCc = .text:0x800683E8; // type:function size:0x58 scope:global align:4
+fetchVolumeName__13JKRFileLoaderFPclPCc = .text:0x80068440; // type:function size:0xD8 scope:global align:4
+__sinit_JKRFileLoader_cpp = .text:0x80068518; // type:function size:0x44 scope:local align:4
+__dt__24JSUList<13JKRFileLoader>Fv = .text:0x8006855C; // type:function size:0x54 scope:global align:4
+__ct__12JKRArcFinderFP10JKRArchivell = .text:0x800685B0; // type:function size:0x8C scope:global align:4
+findNextFile__12JKRArcFinderFv = .text:0x8006863C; // type:function size:0xAC scope:global align:4
+__dt__12JKRArcFinderFv = .text:0x800686E8; // type:function size:0x5C scope:global align:4
+check_mount_already__10JKRArchiveFl = .text:0x80068744; // type:function size:0x54 scope:global align:4
+mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection = .text:0x80068798; // type:function size:0x18C scope:global align:4
+becomeCurrent__10JKRArchiveFPCc = .text:0x80068924; // type:function size:0x88 scope:global align:4
+getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl = .text:0x800689AC; // type:function size:0x78 scope:global align:4
+getResource__10JKRArchiveFPCc = .text:0x80068A24; // type:function size:0x7C scope:global align:4
+getResource__10JKRArchiveFUlPCc = .text:0x80068AA0; // type:function size:0x80 scope:global align:4
+readResource__10JKRArchiveFPvUlUlPCc = .text:0x80068B20; // type:function size:0xA8 scope:global align:4
+readResource__10JKRArchiveFPvUlPCc15JKRExpandSwitch = .text:0x80068BC8; // type:function size:0xA4 scope:global align:4
+removeResourceAll__10JKRArchiveFv = .text:0x80068C6C; // type:function size:0x88 scope:global align:4
+removeResource__10JKRArchiveFPv = .text:0x80068CF4; // type:function size:0x60 scope:global align:4
+detachResource__10JKRArchiveFPv = .text:0x80068D54; // type:function size:0x3C scope:global align:4
+getResSize__10JKRArchiveCFPCv = .text:0x80068D90; // type:function size:0x34 scope:global align:4
+countFile__10JKRArchiveCFPCc = .text:0x80068DC4; // type:function size:0x60 scope:global align:4
+getFirstFile__10JKRArchiveCFPCc = .text:0x80068E24; // type:function size:0xAC scope:global align:4
+__ct__10JKRArchiveFv = .text:0x80068ED0; // type:function size:0x4C scope:global align:4
+__ct__10JKRArchiveFlQ210JKRArchive10EMountMode = .text:0x80068F1C; // type:function size:0xA0 scope:global align:4
+__dt__10JKRArchiveFv = .text:0x80068FBC; // type:function size:0x60 scope:global align:4
+isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs = .text:0x8006901C; // type:function size:0x4C scope:global align:4
+findResType__10JKRArchiveCFUl = .text:0x80069068; // type:function size:0x34 scope:global align:4
+findDirectory__10JKRArchiveCFPCcUl = .text:0x8006909C; // type:function size:0xD8 scope:global align:4
+findTypeResource__10JKRArchiveCFUlPCc = .text:0x80069174; // type:function size:0xB0 scope:global align:4
+findFsResource__10JKRArchiveCFPCcUl = .text:0x80069224; // type:function size:0xE0 scope:global align:4
+findIdxResource__10JKRArchiveCFUl = .text:0x80069304; // type:function size:0x28 scope:global align:4
+findNameResource__10JKRArchiveCFPCc = .text:0x8006932C; // type:function size:0x88 scope:global align:4
+findPtrResource__10JKRArchiveCFPCv = .text:0x800693B4; // type:function size:0x34 scope:global align:4
+store__Q210JKRArchive8CArcNameFPCc = .text:0x800693E8; // type:function size:0x90 scope:global align:4
+store__Q210JKRArchive8CArcNameFPCcc = .text:0x80069478; // type:function size:0xB8 scope:global align:4
+__ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x80069530; // type:function size:0xB4 scope:global align:4
+__dt__13JKRMemArchiveFv = .text:0x800695E4; // type:function size:0xA8 scope:global align:4
+open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection = .text:0x8006968C; // type:function size:0x12C scope:global align:4
+fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x800697B8; // type:function size:0x34 scope:global align:4
+fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch = .text:0x800697EC; // type:function size:0xD8 scope:global align:4
+removeResourceAll__13JKRMemArchiveFv = .text:0x800698C4; // type:function size:0x50 scope:global align:4
+removeResource__13JKRMemArchiveFPv = .text:0x80069914; // type:function size:0x3C scope:global align:4
+fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli = .text:0x80069950; // type:function size:0xD8 scope:global align:4
+__ct__14JKRAramArchiveFv = .text:0x80069A28; // type:function size:0x3C scope:global align:4
+__ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80069A64; // type:function size:0xA8 scope:global align:4
+__dt__14JKRAramArchiveFv = .text:0x80069B0C; // type:function size:0x124 scope:global align:4
+fixedInit__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80069C30; // type:function size:0x44 scope:global align:4
+mountFixed__14JKRAramArchiveFlQ210JKRArchive15EMountDirection = .text:0x80069C74; // type:function size:0xC4 scope:global align:4
+mountFixed__14JKRAramArchiveFPCcQ210JKRArchive15EMountDirection = .text:0x80069D38; // type:function size:0x50 scope:global align:4
+unmountFixed__14JKRAramArchiveFv = .text:0x80069D88; // type:function size:0xF8 scope:global align:4
+open__14JKRAramArchiveFl = .text:0x80069E80; // type:function size:0x204 scope:global align:4
+fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8006A084; // type:function size:0xB8 scope:global align:4
+fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch = .text:0x8006A13C; // type:function size:0xD4 scope:global align:4
+getAramAddress_Entry__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntry = .text:0x8006A210; // type:function size:0x24 scope:global align:4
+getAramAddress__14JKRAramArchiveFUlPCc = .text:0x8006A234; // type:function size:0x3C scope:global align:4
+fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli = .text:0x8006A270; // type:function size:0xBC scope:global align:4
+fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc = .text:0x8006A32C; // type:function size:0x170 scope:global align:4
+__dt__7JKRFileFv = .text:0x8006A49C; // type:function size:0x60 scope:global align:4
+__ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection = .text:0x8006A4FC; // type:function size:0xA8 scope:global align:4
+__dt__13JKRDvdArchiveFv = .text:0x8006A5A4; // type:function size:0xF8 scope:global align:4
+open__13JKRDvdArchiveFl = .text:0x8006A69C; // type:function size:0x1C4 scope:global align:4
+fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8006A860; // type:function size:0xC0 scope:global align:4
+fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch = .text:0x8006A920; // type:function size:0xE4 scope:global align:4
+fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii = .text:0x8006AA04; // type:function size:0x1D4 scope:global align:4
+fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc = .text:0x8006ABD8; // type:function size:0x1F8 scope:global align:4
+__ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection = .text:0x8006ADD0; // type:function size:0xA8 scope:global align:4
+__dt__14JKRCompArchiveFv = .text:0x8006AE78; // type:function size:0x124 scope:global align:4
+open__14JKRCompArchiveFl = .text:0x8006AF9C; // type:function size:0x488 scope:global align:4
+fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl = .text:0x8006B424; // type:function size:0x160 scope:global align:4
+fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch = .text:0x8006B584; // type:function size:0x220 scope:global align:4
+removeResourceAll__14JKRCompArchiveFv = .text:0x8006B7A4; // type:function size:0x94 scope:global align:4
+removeResource__14JKRCompArchiveFPv = .text:0x8006B838; // type:function size:0x6C scope:global align:4
+__ct__10JKRDvdFileFv = .text:0x8006B8A4; // type:function size:0x74 scope:global align:4
+__ct__10JKRDvdFileFl = .text:0x8006B918; // type:function size:0xA8 scope:global align:4
+__dt__10JKRDvdFileFv = .text:0x8006B9C0; // type:function size:0x9C scope:global align:4
+initiate__10JKRDvdFileFv = .text:0x8006BA5C; // type:function size:0x6C scope:global align:4
+open__10JKRDvdFileFPCc = .text:0x8006BAC8; // type:function size:0x74 scope:global align:4
+open__10JKRDvdFileFl = .text:0x8006BB3C; // type:function size:0x74 scope:global align:4
+close__10JKRDvdFileFv = .text:0x8006BBB0; // type:function size:0x7C scope:global align:4
+readData__10JKRDvdFileFPvll = .text:0x8006BC2C; // type:function size:0xB4 scope:global align:4
+writeData__10JKRDvdFileFPCvll = .text:0x8006BCE0; // type:function size:0x8 scope:global align:4
+sync__10JKRDvdFileFv = .text:0x8006BCE8; // type:function size:0x54 scope:global align:4
+doneProcess__10JKRDvdFileFlP11DVDFileInfo = .text:0x8006BD3C; // type:function size:0x30 scope:global align:4
+getFileSize__10JKRDvdFileCFv = .text:0x8006BD6C; // type:function size:0x8 scope:global align:4
+__sinit_JKRDvdFile_cpp = .text:0x8006BD74; // type:function size:0x44 scope:local align:4
+__dt__21JSUList<10JKRDvdFile>Fv = .text:0x8006BDB8; // type:function size:0x54 scope:global align:4
+loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi = .text:0x8006BE0C; // type:function size:0xB4 scope:global align:4
+loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi = .text:0x8006BEC0; // type:function size:0xB4 scope:global align:4
+loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi = .text:0x8006BF74; // type:function size:0x3C4 scope:global align:4
+JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUl = .text:0x8006C338; // type:function size:0xF4 scope:global align:4
+decompSZS_subroutine__FPUcPUc = .text:0x8006C42C; // type:function size:0x294 scope:local align:4
+firstSrcData__Fv = .text:0x8006C6C0; // type:function size:0xB4 scope:local align:4
+nextSrcData__FPUc = .text:0x8006C774; // type:function size:0xE8 scope:local align:4
+isErrorRetry__12JKRDvdRipperFv = .text:0x8006C85C; // type:function size:0x8 scope:global align:4
+__sinit_JKRDvdRipper_cpp = .text:0x8006C864; // type:function size:0x44 scope:local align:4
+__dt__23JSUList<12JKRDMCommand>Fv = .text:0x8006C8A8; // type:function size:0x54 scope:global align:4
+loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUl = .text:0x8006C8FC; // type:function size:0x9C scope:global align:4
+loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUl = .text:0x8006C998; // type:function size:0x80 scope:global align:4
+loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUl = .text:0x8006CA18; // type:function size:0xAC scope:global align:4
+callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand = .text:0x8006CAC4; // type:function size:0x32C scope:global align:4
+__dt__18JSUFileInputStreamFv = .text:0x8006CDF0; // type:function size:0x70 scope:global align:4
+syncAram__16JKRDvdAramRipperFP12JKRADCommandi = .text:0x8006CE60; // type:function size:0xC8 scope:global align:4
+__ct__12JKRADCommandFv = .text:0x8006CF28; // type:function size:0x3C scope:global align:4
+__dt__12JKRADCommandFv = .text:0x8006CF64; // type:function size:0x8C scope:global align:4
+JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUl = .text:0x8006CFF0; // type:function size:0x10C scope:global align:4
+decompSZS_subroutine__FPUcUl = .text:0x8006D0FC; // type:function size:0x274 scope:global align:4
+firstSrcData__Fv = .text:0x8006D370; // type:function size:0xB4 scope:local align:4
+nextSrcData__FPUc = .text:0x8006D424; // type:function size:0xE4 scope:local align:4
+dmaBufferFlush__FUl = .text:0x8006D508; // type:function size:0x68 scope:global align:4
+__sinit_JKRDvdAramRipper_cpp = .text:0x8006D570; // type:function size:0x44 scope:local align:4
+__dt__23JSUList<12JKRADCommand>Fv = .text:0x8006D5B4; // type:function size:0x54 scope:global align:4
+create__9JKRDecompFl = .text:0x8006D608; // type:function size:0x60 scope:global align:4
+__ct__9JKRDecompFl = .text:0x8006D668; // type:function size:0x50 scope:global align:4
+__dt__9JKRDecompFv = .text:0x8006D6B8; // type:function size:0x60 scope:global align:4
+run__9JKRDecompFv = .text:0x8006D718; // type:function size:0xC8 scope:global align:4
+prepareCommand__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8006D7E0; // type:function size:0x78 scope:global align:4
+sendCommand__9JKRDecompFP16JKRDecompCommand = .text:0x8006D858; // type:function size:0x30 scope:global align:4
+orderAsync__9JKRDecompFPUcPUcUlUlPFUl_v = .text:0x8006D888; // type:function size:0x34 scope:global align:4
+sync__9JKRDecompFP16JKRDecompCommandi = .text:0x8006D8BC; // type:function size:0x54 scope:global align:4
+orderSync__9JKRDecompFPUcPUcUlUl = .text:0x8006D910; // type:function size:0x50 scope:global align:4
+decode__9JKRDecompFPUcPUcUlUl = .text:0x8006D960; // type:function size:0x7C scope:global align:4
+decodeSZP__9JKRDecompFPUcPUcUlUl = .text:0x8006D9DC; // type:function size:0x1BC scope:global align:4
+decodeSZS__9JKRDecompFPUcPUcUlUl = .text:0x8006DB98; // type:function size:0xE4 scope:global align:4
+checkCompressed__9JKRDecompFPUc = .text:0x8006DC7C; // type:function size:0x50 scope:global align:4
+__ct__16JKRDecompCommandFv = .text:0x8006DCCC; // type:function size:0x50 scope:global align:4
+__dt__16JKRDecompCommandFv = .text:0x8006DD1C; // type:function size:0x3C scope:global align:4
+__ct__10JSUPtrLinkFPv = .text:0x8006DD58; // type:function size:0x18 scope:global align:4
+__dt__10JSUPtrLinkFv = .text:0x8006DD70; // type:function size:0x60 scope:global align:4
+__ct__10JSUPtrListFb = .text:0x8006DDD0; // type:function size:0x38 scope:global align:4
+__dt__10JSUPtrListFv = .text:0x8006DE08; // type:function size:0x68 scope:global align:4
+initiate__10JSUPtrListFv = .text:0x8006DE70; // type:function size:0x14 scope:global align:4
+setFirst__10JSUPtrListFP10JSUPtrLink = .text:0x8006DE84; // type:function size:0x24 scope:global align:4
+append__10JSUPtrListFP10JSUPtrLink = .text:0x8006DEA8; // type:function size:0xA4 scope:global align:4
+prepend__10JSUPtrListFP10JSUPtrLink = .text:0x8006DF4C; // type:function size:0xA4 scope:global align:4
+insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink = .text:0x8006DFF0; // type:function size:0xC8 scope:global align:4
+remove__10JSUPtrListFP10JSUPtrLink = .text:0x8006E0B8; // type:function size:0xB0 scope:global align:4
+__dt__14JSUInputStreamFv = .text:0x8006E168; // type:function size:0x5C scope:global align:4
+read__14JSUInputStreamFPvl = .text:0x8006E1C4; // type:function size:0x58 scope:global align:4
+skip__14JSUInputStreamFl = .text:0x8006E21C; // type:function size:0x80 scope:global align:4
+skip__20JSURandomInputStreamFl = .text:0x8006E29C; // type:function size:0x5C scope:global align:4
+seek__20JSURandomInputStreamFl17JSUStreamSeekFrom = .text:0x8006E2F8; // type:function size:0x44 scope:global align:4
+__dt__20JSURandomInputStreamFv = .text:0x8006E33C; // type:function size:0x60 scope:global align:4
+__dt__10JSUIosBaseFv = .text:0x8006E39C; // type:function size:0x48 scope:global align:4
+__ct__18JSUFileInputStreamFP7JKRFile = .text:0x8006E3E4; // type:function size:0x44 scope:global align:4
+readData__18JSUFileInputStreamFPvl = .text:0x8006E428; // type:function size:0xC4 scope:global align:4
+seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom = .text:0x8006E4EC; // type:function size:0xE0 scope:global align:4
+getLength__18JSUFileInputStreamCFv = .text:0x8006E5CC; // type:function size:0x30 scope:global align:4
+getPosition__18JSUFileInputStreamCFv = .text:0x8006E5FC; // type:function size:0x8 scope:global align:4
+__dt__Q27JGadget13TNodeLinkListFv = .text:0x8006E604; // type:function size:0x3C scope:global align:4
+splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iterator = .text:0x8006E640; // type:function size:0xA0 scope:global align:4
+Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode = .text:0x8006E6E0; // type:function size:0x2C scope:global align:4
+Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x8006E70C; // type:function size:0x24 scope:global align:4
+Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode = .text:0x8006E730; // type:function size:0xD0 scope:global align:4
+__ct__12JUTGraphFifoFUl = .text:0x8006E800; // type:function size:0xDC scope:global align:4
+__dt__12JUTGraphFifoFv = .text:0x8006E8DC; // type:function size:0xC4 scope:global align:4
+__ct__7JUTFontFv = .text:0x8006E9A0; // type:function size:0x2C scope:global align:4
+initialize_state__7JUTFontFv = .text:0x8006E9CC; // type:function size:0x4C scope:global align:4
+setCharColor__7JUTFontFQ28JUtility6TColor = .text:0x8006EA18; // type:function size:0x84 scope:global align:4
+drawString_size_scale__7JUTFontFffffPCcUlb = .text:0x8006EA9C; // type:function size:0x120 scope:global align:4
+__dt__7JUTFontFv = .text:0x8006EBBC; // type:function size:0x48 scope:global align:4
+setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8006EC04; // type:function size:0x2C scope:global align:4
+getCellWidth__7JUTFontCFv = .text:0x8006EC30; // type:function size:0x2C scope:global align:4
+getCellHeight__7JUTFontCFv = .text:0x8006EC5C; // type:function size:0x2C scope:global align:4
+__ct__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8006EC88; // type:function size:0x64 scope:global align:4
+__dt__10JUTResFontFv = .text:0x8006ECEC; // type:function size:0x8C scope:global align:4
+deleteMemBlocks_ResFont__10JUTResFontFv = .text:0x8006ED78; // type:function size:0x24 scope:global align:4
+initialize_state__10JUTResFontFv = .text:0x8006ED9C; // type:function size:0x2C scope:global align:4
+initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8006EDC8; // type:function size:0x60 scope:global align:4
+protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap = .text:0x8006EE28; // type:function size:0x10C scope:global align:4
+countBlock__10JUTResFontFv = .text:0x8006EF34; // type:function size:0xFC scope:global align:4
+setBlock__10JUTResFontFv = .text:0x8006F030; // type:function size:0x144 scope:global align:4
+setGX__10JUTResFontFv = .text:0x8006F174; // type:function size:0xF8 scope:global align:4
+setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor = .text:0x8006F26C; // type:function size:0x240 scope:global align:4
+drawChar_scale__10JUTResFontFffffib = .text:0x8006F4AC; // type:function size:0x424 scope:global align:4
+loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth = .text:0x8006F8D0; // type:function size:0x80 scope:global align:4
+getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth = .text:0x8006F950; // type:function size:0xA8 scope:global align:4
+getCellWidth__10JUTResFontCFv = .text:0x8006F9F8; // type:function size:0x4C scope:global align:4
+getCellHeight__10JUTResFontCFv = .text:0x8006FA44; // type:function size:0x4C scope:global align:4
+isLeadByte__10JUTResFontCFi = .text:0x8006FA90; // type:function size:0x30 scope:global align:4
+getFontCode__10JUTResFontCFi = .text:0x8006FAC0; // type:function size:0x188 scope:global align:4
+loadImage__10JUTResFontFi11_GXTexMapID = .text:0x8006FC48; // type:function size:0x164 scope:global align:4
+convertSjis__10JUTResFontCFiPUs = .text:0x8006FDAC; // type:function size:0x44 scope:global align:4
+isLeadByte_1Byte__7JUTFontFi = .text:0x8006FDF0; // type:function size:0x8 scope:global align:4
+isLeadByte_2Byte__7JUTFontFi = .text:0x8006FDF8; // type:function size:0x8 scope:global align:4
+isLeadByte_ShiftJIS__7JUTFontFi = .text:0x8006FE00; // type:function size:0x30 scope:global align:4
+__ct__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8006FE30; // type:function size:0x48 scope:global align:4
+start__10JUTDbPrintFP7JUTFontP7JKRHeap = .text:0x8006FE78; // type:function size:0x74 scope:global align:4
+changeFont__10JUTDbPrintFP7JUTFont = .text:0x8006FEEC; // type:function size:0x18 scope:global align:4
+enter__10JUTDbPrintFiiiPCci = .text:0x8006FF04; // type:function size:0x88 scope:global align:4
+flush__10JUTDbPrintFv = .text:0x8006FF8C; // type:function size:0x11C scope:global align:4
+drawString__10JUTDbPrintFiiiPCUc = .text:0x800700A8; // type:function size:0xF0 scope:global align:4
+JUTReport__FiiiPCce = .text:0x80070198; // type:function size:0xDC scope:global align:4
+__ct__10JUTGamePadFQ210JUTGamePad8EPadPort = .text:0x80070274; // type:function size:0xC0 scope:global align:4
+__ct__10JUTGamePadFv = .text:0x80070334; // type:function size:0xA8 scope:global align:4
+__dt__10JUTGamePadFv = .text:0x800703DC; // type:function size:0xAC scope:global align:4
+initList__10JUTGamePadFv = .text:0x80070488; // type:function size:0x3C scope:global align:4
+init__10JUTGamePadFv = .text:0x800704C4; // type:function size:0x38 scope:global align:4
+clear__10JUTGamePadFv = .text:0x800704FC; // type:function size:0xC scope:global align:4
+read__10JUTGamePadFv = .text:0x80070508; // type:function size:0x274 scope:global align:4
+assign__10JUTGamePadFv = .text:0x8007077C; // type:function size:0xB0 scope:global align:4
+checkResetCallback__10JUTGamePadFx = .text:0x8007082C; // type:function size:0x78 scope:global align:4
+update__10JUTGamePadFv = .text:0x800708A4; // type:function size:0x1B0 scope:global align:4
+checkResetSwitch__10JUTGamePadFv = .text:0x80070A54; // type:function size:0x80 scope:global align:4
+clear__Q210JUTGamePad7CButtonFv = .text:0x80070AD4; // type:function size:0x3C scope:global align:4
+update__Q210JUTGamePad7CButtonFPC9PADStatusUl = .text:0x80070B10; // type:function size:0x190 scope:global align:4
+clear__Q210JUTGamePad6CStickFv = .text:0x80070CA0; // type:function size:0x1C scope:global align:4
+update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStick = .text:0x80070CBC; // type:function size:0x1CC scope:global align:4
+getButton__Q210JUTGamePad6CStickFv = .text:0x80070E88; // type:function size:0xAC scope:global align:4
+clear__Q210JUTGamePad7CRumbleFv = .text:0x80070F34; // type:function size:0x20 scope:global align:4
+clear__Q210JUTGamePad7CRumbleFP10JUTGamePad = .text:0x80070F54; // type:function size:0x58 scope:global align:4
+startMotor__Q210JUTGamePad7CRumbleFi = .text:0x80070FAC; // type:function size:0x58 scope:global align:4
+stopMotorHard__Q210JUTGamePad7CRumbleFi = .text:0x80071004; // type:function size:0x58 scope:global align:4
+update__Q210JUTGamePad7CRumbleFs = .text:0x8007105C; // type:function size:0x128 scope:global align:4
+setRepeat__Q210JUTGamePad7CButtonFUlUlUl = .text:0x80071184; // type:function size:0x1C scope:global align:4
+recalibrate__10JUTGamePadFUl = .text:0x800711A0; // type:function size:0x88 scope:global align:4
+__sinit_JUTGamePad_cpp = .text:0x80071228; // type:function size:0xD4 scope:local align:4
+__ct__Q210JUTGamePad6CStickFv = .text:0x800712FC; // type:function size:0x30 scope:global align:4
+__ct__Q210JUTGamePad7CButtonFv = .text:0x8007132C; // type:function size:0x30 scope:global align:4
+__dt__21JSUList<10JUTGamePad>Fv = .text:0x8007135C; // type:function size:0x54 scope:global align:4
+create__12JUTExceptionFP14JUTDirectPrint = .text:0x800713B0; // type:function size:0x68 scope:global align:4
+run__12JUTExceptionFv = .text:0x80071418; // type:function size:0xD8 scope:global align:4
+__ct__12JUTExceptionFP14JUTDirectPrint = .text:0x800714F0; // type:function size:0xDC scope:global align:4
+errorHandler__12JUTExceptionFUsP9OSContextUlUl = .text:0x800715CC; // type:function size:0xF4 scope:global align:4
+showFloatSub__12JUTExceptionFif = .text:0x800716C0; // type:function size:0x184 scope:global align:4
+showFloat__12JUTExceptionFP9OSContext = .text:0x80071844; // type:function size:0x10C scope:global align:4
+searchPartialModule__12JUTExceptionFUlPUlPUlPUlPUl = .text:0x80071950; // type:function size:0xC0 scope:global align:4
+search_name_part__FPUcPUci = .text:0x80071A10; // type:function size:0x78 scope:global align:4
+showStack__12JUTExceptionFP9OSContext = .text:0x80071A88; // type:function size:0xF0 scope:global align:4
+showMainInfo__12JUTExceptionFUsP9OSContextUlUl = .text:0x80071B78; // type:function size:0x94 scope:global align:4
+showGPR__12JUTExceptionFP9OSContext = .text:0x80071C0C; // type:function size:0xB0 scope:global align:4
+showMapInfo_subroutine__12JUTExceptionFUlb = .text:0x80071CBC; // type:function size:0x150 scope:global align:4
+showGPRMap__12JUTExceptionFP9OSContext = .text:0x80071E0C; // type:function size:0xF8 scope:global align:4
+printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl = .text:0x80071F04; // type:function size:0x94 scope:global align:4
+isEnablePad__12JUTExceptionCFv = .text:0x80071F98; // type:function size:0x3C scope:global align:4
+readPad__12JUTExceptionFPUlPUl = .text:0x80071FD4; // type:function size:0x570 scope:global align:4
+printContext__12JUTExceptionFUsP9OSContextUlUl = .text:0x80072544; // type:function size:0x43C scope:global align:4
+waitTime__12JUTExceptionFl = .text:0x80072980; // type:function size:0x88 scope:global align:4
+createFB__12JUTExceptionFv = .text:0x80072A08; // type:function size:0xBC scope:global align:4
+getFpscr__12JUTExceptionFv = .text:0x80072AC4; // type:function size:0x28 scope:global align:4
+setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x80072AEC; // type:function size:0x10 scope:global align:4
+setPostUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v = .text:0x80072AFC; // type:function size:0x10 scope:global align:4
+appendMapFile__12JUTExceptionFPCc = .text:0x80072B0C; // type:function size:0x94 scope:global align:4
+queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x80072BA0; // type:function size:0xE8 scope:global align:4
+queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb = .text:0x80072C88; // type:function size:0x340 scope:global align:4
+createConsole__12JUTExceptionFPvUl = .text:0x80072FC8; // type:function size:0xE0 scope:global align:4
+__ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl = .text:0x800730A8; // type:function size:0x20 scope:global align:4
+__dt__12JUTExceptionFv = .text:0x800730C8; // type:function size:0x60 scope:global align:4
+__sinit_JUTException_cpp = .text:0x80073128; // type:function size:0x48 scope:local align:4
+__dt__39JSUListFv = .text:0x80073170; // type:function size:0x54 scope:global align:4
+__ct__14JUTDirectPrintFv = .text:0x800731C4; // type:function size:0x3C scope:global align:4
+start__14JUTDirectPrintFv = .text:0x80073200; // type:function size:0x48 scope:global align:4
+erase__14JUTDirectPrintFiiii = .text:0x80073248; // type:function size:0x94 scope:global align:4
+drawChar__14JUTDirectPrintFiii = .text:0x800732DC; // type:function size:0x170 scope:global align:4
+changeFrameBuffer__14JUTDirectPrintFPvUsUs = .text:0x8007344C; // type:function size:0x38 scope:global align:4
+printSub__14JUTDirectPrintFUsUsPCcPQ23std13__tag_va_Listb = .text:0x80073484; // type:function size:0x134 scope:global align:4
+drawString__14JUTDirectPrintFUsUsPc = .text:0x800735B8; // type:function size:0x2C scope:global align:4
+drawString_f__14JUTDirectPrintFUsUsPCce = .text:0x800735E4; // type:function size:0x90 scope:global align:4
+create__12JUTAssertionFv = .text:0x80073674; // type:function size:0x4 scope:global align:4
+flush_subroutine__12JUTAssertionFv = .text:0x80073678; // type:function size:0x3C scope:global align:4
+flushMessage__12JUTAssertionFv = .text:0x800736B4; // type:function size:0x64 scope:global align:4
+flushMessage_dbPrint__12JUTAssertionFv = .text:0x80073718; // type:function size:0x1E0 scope:global align:4
+changeDisplayTime__12JUTAssertionFUl = .text:0x800738F8; // type:function size:0x8 scope:global align:4
+changeDevice__12JUTAssertionFUl = .text:0x80073900; // type:function size:0x8 scope:global align:4
+createManager__8JUTVideoFPC16_GXRenderModeObj = .text:0x80073908; // type:function size:0x58 scope:global align:4
+__ct__8JUTVideoFPC16_GXRenderModeObj = .text:0x80073960; // type:function size:0xF4 scope:global align:4
+__dt__8JUTVideoFv = .text:0x80073A54; // type:function size:0x68 scope:global align:4
+preRetraceProc__8JUTVideoFUl = .text:0x80073ABC; // type:function size:0x224 scope:global align:4
+drawDoneStart__8JUTVideoFv = .text:0x80073CE0; // type:function size:0x28 scope:global align:4
+dummyNoDrawWait__8JUTVideoFv = .text:0x80073D08; // type:function size:0xC scope:global align:4
+drawDoneCallback__8JUTVideoFv = .text:0x80073D14; // type:function size:0x88 scope:global align:4
+postRetraceProc__8JUTVideoFUl = .text:0x80073D9C; // type:function size:0x4C scope:global align:4
+setRenderMode__8JUTVideoFPC16_GXRenderModeObj = .text:0x80073DE8; // type:function size:0x78 scope:global align:4
+waitRetraceIfNeed__8JUTVideoFv = .text:0x80073E60; // type:function size:0x4 scope:global align:4
+clearIndex__6JUTXfbFv = .text:0x80073E64; // type:function size:0x14 scope:global align:4
+common_init__6JUTXfbFi = .text:0x80073E78; // type:function size:0x38 scope:global align:4
+__ct__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80073EB0; // type:function size:0x8C scope:global align:4
+__dt__6JUTXfbFv = .text:0x80073F3C; // type:function size:0x70 scope:global align:4
+delXfb__6JUTXfbFi = .text:0x80073FAC; // type:function size:0x40 scope:global align:4
+createManager__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x80073FEC; // type:function size:0x70 scope:global align:4
+destroyManager__6JUTXfbFv = .text:0x8007405C; // type:function size:0x30 scope:global align:4
+initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber = .text:0x8007408C; // type:function size:0xDC scope:global align:4
+accumeXfbSize__6JUTXfbFv = .text:0x80074168; // type:function size:0x24 scope:global align:4
+__ct__8JUTFaderFiiiiQ28JUtility6TColor = .text:0x8007418C; // type:function size:0xAC scope:global align:4
+control__8JUTFaderFv = .text:0x80074238; // type:function size:0x100 scope:global align:4
+draw__8JUTFaderFv = .text:0x80074338; // type:function size:0x90 scope:global align:4
+startFadeIn__8JUTFaderFi = .text:0x800743C8; // type:function size:0x30 scope:global align:4
+startFadeOut__8JUTFaderFi = .text:0x800743F8; // type:function size:0x34 scope:global align:4
+__ct__10JUTProcBarFv = .text:0x8007442C; // type:function size:0x118 scope:global align:4
+__dt__10JUTProcBarFv = .text:0x80074544; // type:function size:0x44 scope:global align:4
+create__10JUTProcBarFv = .text:0x80074588; // type:function size:0x48 scope:global align:4
+destroy__10JUTProcBarFv = .text:0x800745D0; // type:function size:0x38 scope:global align:4
+clear__10JUTProcBarFv = .text:0x80074608; // type:function size:0xD0 scope:global align:4
+bar_subroutine__10JUTProcBarFiiiiiiiQ28JUtility6TColorQ28JUtility6TColor = .text:0x800746D8; // type:function size:0x194 scope:global align:4
+adjustMeterLength__10JUTProcBarFUlPfffPi = .text:0x8007486C; // type:function size:0x144 scope:global align:4
+draw__10JUTProcBarFv = .text:0x800749B0; // type:function size:0x34 scope:global align:4
+drawProcessBar__10JUTProcBarFv = .text:0x800749E4; // type:function size:0xF00 scope:global align:4
+addrToXPos__FPvi = .text:0x800758E4; // type:function size:0x68 scope:global align:4
+byteToXLen__Fii = .text:0x8007594C; // type:function size:0x68 scope:global align:4
+heapBar__FP7JKRHeapiiiii = .text:0x800759B4; // type:function size:0x194 scope:global align:4
+drawHeapBar__10JUTProcBarFv = .text:0x80075B48; // type:function size:0x3A0 scope:global align:4
+__ct__Q210JUTProcBar5CTimeFv = .text:0x80075EE8; // type:function size:0x14 scope:global align:4
+create__10JUTConsoleFUiUiP7JKRHeap = .text:0x80075EFC; // type:function size:0x90 scope:global align:4
+create__10JUTConsoleFUiPvUl = .text:0x80075F8C; // type:function size:0x88 scope:global align:4
+__ct__10JUTConsoleFUiUib = .text:0x80076014; // type:function size:0xE4 scope:global align:4
+__dt__10JUTConsoleFv = .text:0x800760F8; // type:function size:0x70 scope:global align:4
+getObjectSizeFromBufferSize__10JUTConsoleFUiUi = .text:0x80076168; // type:function size:0x10 scope:global align:4
+getLineFromObjectSize__10JUTConsoleFUlUi = .text:0x80076178; // type:function size:0x10 scope:global align:4
+clear__10JUTConsoleFv = .text:0x80076188; // type:function size:0x5C scope:global align:4
+doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType = .text:0x800761E4; // type:function size:0x548 scope:global align:4
+print_f__10JUTConsoleFPCce = .text:0x8007672C; // type:function size:0x8C scope:global align:4
+print__10JUTConsoleFPCc = .text:0x800767B8; // type:function size:0x2F0 scope:global align:4
+JUTConsole_print_f_va_ = .text:0x80076AA8; // type:function size:0x48 scope:global align:4
+dumpToTerminal__10JUTConsoleFUi = .text:0x80076AF0; // type:function size:0x124 scope:global align:4
+scroll__10JUTConsoleFi = .text:0x80076C14; // type:function size:0xDC scope:global align:4
+getUsedLine__10JUTConsoleCFv = .text:0x80076CF0; // type:function size:0x24 scope:global align:4
+getLineOffset__10JUTConsoleCFv = .text:0x80076D14; // type:function size:0x24 scope:global align:4
+__ct__17JUTConsoleManagerFv = .text:0x80076D38; // type:function size:0x28 scope:global align:4
+createManager__17JUTConsoleManagerFP7JKRHeap = .text:0x80076D60; // type:function size:0x50 scope:global align:4
+appendConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80076DB0; // type:function size:0x70 scope:global align:4
+removeConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80076E20; // type:function size:0xC8 scope:global align:4
+draw__17JUTConsoleManagerCFv = .text:0x80076EE8; // type:function size:0xC4 scope:global align:4
+drawDirect__17JUTConsoleManagerCFb = .text:0x80076FAC; // type:function size:0x74 scope:global align:4
+setDirectConsole__17JUTConsoleManagerFP10JUTConsole = .text:0x80077020; // type:function size:0x5C scope:global align:4
+JUTSetReportConsole = .text:0x8007707C; // type:function size:0x8 scope:global align:4
+JUTGetReportConsole = .text:0x80077084; // type:function size:0x8 scope:global align:4
+JUTSetWarningConsole = .text:0x8007708C; // type:function size:0x8 scope:global align:4
+JUTGetWarningConsole = .text:0x80077094; // type:function size:0x8 scope:global align:4
+JUTReportConsole_f_va = .text:0x8007709C; // type:function size:0x88 scope:global align:4
+JUTReportConsole_f = .text:0x80077124; // type:function size:0x8C scope:global align:4
+JUTReportConsole = .text:0x800771B0; // type:function size:0x2C scope:global align:4
+JUTWarningConsole_f = .text:0x800771DC; // type:function size:0x8C scope:global align:4
+JUTWarningConsole = .text:0x80077268; // type:function size:0x2C scope:global align:4
+fetch32byte__13JUTDirectFileFv = .text:0x80077294; // type:function size:0xC8 scope:global align:4
+__ct__13JUTDirectFileFv = .text:0x8007735C; // type:function size:0x24 scope:global align:4
+__dt__13JUTDirectFileFv = .text:0x80077380; // type:function size:0x44 scope:global align:4
+fopen__13JUTDirectFileFPCc = .text:0x800773C4; // type:function size:0xA0 scope:global align:4
+fclose__13JUTDirectFileFv = .text:0x80077464; // type:function size:0x60 scope:global align:4
+fgets__13JUTDirectFileFPvi = .text:0x800774C4; // type:function size:0x1B0 scope:global align:4
+__ct__14J2DGrafContextFffff = .text:0x80077674; // type:function size:0xAC scope:global align:4
+setPort__14J2DGrafContextFv = .text:0x80077720; // type:function size:0x70 scope:global align:4
+setup2D__14J2DGrafContextFv = .text:0x80077790; // type:function size:0x1D4 scope:global align:4
+setScissor__14J2DGrafContextFv = .text:0x80077964; // type:function size:0x250 scope:global align:4
+place__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80077BB4; // type:function size:0x44 scope:global align:4
+setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor = .text:0x80077BF8; // type:function size:0x11C scope:global align:4
+setLineWidth__14J2DGrafContextFUc = .text:0x80077D14; // type:function size:0x2C scope:global align:4
+fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80077D40; // type:function size:0x118 scope:global align:4
+drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2 = .text:0x80077E58; // type:function size:0x138 scope:global align:4
+line__14J2DGrafContextFQ29JGeometry8TVec2Q29JGeometry8TVec2 = .text:0x80077F90; // type:function size:0xDC scope:global align:4
+lineTo__14J2DGrafContextFQ29JGeometry8TVec2 = .text:0x8007806C; // type:function size:0x70 scope:global align:4
+__dt__14J2DGrafContextFv = .text:0x800780DC; // type:function size:0x48 scope:global align:4
+place__14J2DGrafContextFffff = .text:0x80078124; // type:function size:0x48 scope:global align:4
+getGrafType__14J2DGrafContextCFv = .text:0x8007816C; // type:function size:0x8 scope:global align:4
+setLookat__14J2DGrafContextFv = .text:0x80078174; // type:function size:0x4 scope:global align:4
+__ct__13J2DOrthoGraphFv = .text:0x80078178; // type:function size:0x60 scope:global align:4
+__ct__13J2DOrthoGraphFffffff = .text:0x800781D8; // type:function size:0xDC scope:global align:4
+setPort__13J2DOrthoGraphFv = .text:0x800782B4; // type:function size:0x60 scope:global align:4
+setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff = .text:0x80078314; // type:function size:0x34 scope:global align:4
+setLookat__13J2DOrthoGraphFv = .text:0x80078348; // type:function size:0x3C scope:global align:4
+J2DDrawLine__FffffQ28JUtility6TColori = .text:0x80078384; // type:function size:0x12C scope:global align:4
+J2DFillBox__FffffQ28JUtility6TColor = .text:0x800784B0; // type:function size:0x48 scope:global align:4
+J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor = .text:0x800784F8; // type:function size:0x90 scope:global align:4
+J2DDrawFrame__FffffQ28JUtility6TColorUc = .text:0x80078588; // type:function size:0x4C scope:global align:4
+J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc = .text:0x800785D4; // type:function size:0xA0 scope:global align:4
+getGrafType__13J2DOrthoGraphCFv = .text:0x80078674; // type:function size:0x8 scope:global align:4
+PPCMfmsr = .text:0x8007867C; // type:function size:0x8 scope:global align:4
+PPCMtmsr = .text:0x80078684; // type:function size:0x8 scope:global align:4
+PPCMfhid0 = .text:0x8007868C; // type:function size:0x8 scope:global align:4
+PPCMthid0 = .text:0x80078694; // type:function size:0x8 scope:global align:4
+PPCMfl2cr = .text:0x8007869C; // type:function size:0x8 scope:global align:4
+PPCMtl2cr = .text:0x800786A4; // type:function size:0x8 scope:global align:4
+PPCMtdec = .text:0x800786AC; // type:function size:0x8 scope:global align:4
+PPCSync = .text:0x800786B4; // type:function size:0x8 scope:global align:4
+PPCHalt = .text:0x800786BC; // type:function size:0x14 scope:global align:4
+PPCMfhid2 = .text:0x800786D0; // type:function size:0x8 scope:global align:4
+PPCMthid2 = .text:0x800786D8; // type:function size:0x8 scope:global align:4
+PPCMtwpar = .text:0x800786E0; // type:function size:0x8 scope:global align:4
+PPCDisableSpeculation = .text:0x800786E8; // type:function size:0x28 scope:global align:4
+PPCSetFpNonIEEEMode = .text:0x80078710; // type:function size:0x8 scope:global align:4
+OSGetConsoleType = .text:0x80078718; // type:function size:0x28 scope:global align:4
+ClearArena = .text:0x80078740; // type:function size:0x128 scope:global align:4
+InquiryCallback = .text:0x80078868; // type:function size:0x3C scope:global align:4
+OSInit = .text:0x800788A4; // type:function size:0x3B8 scope:global align:4
+OSExceptionInit = .text:0x80078C5C; // type:function size:0x280 scope:global align:4
+__OSDBIntegrator = .text:0x80078EDC; // type:function size:0x24 scope:global align:4
+__OSDBINTSTART = .text:0x80078EDC; // type:label scope:global
+__OSDBJump = .text:0x80078F00; // type:function size:0x4 scope:global align:4
+__OSDBJUMPSTART = .text:0x80078F00; // type:label scope:global
+__OSDBJUMPEND = .text:0x80078F04; // type:label scope:global
+__OSSetExceptionHandler = .text:0x80078F04; // type:function size:0x1C scope:global align:4
+__OSGetExceptionHandler = .text:0x80078F20; // type:function size:0x14 scope:global align:4
+OSExceptionVector = .text:0x80078F34; // type:function size:0x9C scope:global align:4
+__OSEVStart = .text:0x80078F34; // type:label scope:global
+__DBVECTOR = .text:0x80078F8C; // type:label scope:global data:4byte
+__OSEVSetNumber = .text:0x80078F9C; // type:label scope:global data:4byte
+__OSEVEnd = .text:0x80078FCC; // type:label scope:global
+OSDefaultExceptionHandler = .text:0x80078FD0; // type:function size:0x58 scope:global align:4
+__OSPSInit = .text:0x80079028; // type:function size:0x38 scope:global align:4
+__OSGetDIConfig = .text:0x80079060; // type:function size:0x14 scope:global align:4
+OSInitAlarm = .text:0x80079074; // type:function size:0x4C scope:global align:4
+OSCreateAlarm = .text:0x800790C0; // type:function size:0xC scope:global align:4
+InsertAlarm = .text:0x800790CC; // type:function size:0x250 scope:global align:4
+OSSetAlarm = .text:0x8007931C; // type:function size:0x68 scope:global align:4
+OSCancelAlarm = .text:0x80079384; // type:function size:0x11C scope:global align:4
+DecrementerExceptionCallback = .text:0x800794A0; // type:function size:0x230 scope:global align:4
+DecrementerExceptionHandler = .text:0x800796D0; // type:function size:0x50 scope:global align:4
+OSAllocFromHeap = .text:0x80079720; // type:function size:0xFC scope:global align:4
+OSInitAlloc = .text:0x8007981C; // type:function size:0x70 scope:global align:4
+OSGetArenaHi = .text:0x8007988C; // type:function size:0x8 scope:global align:4
+OSGetArenaLo = .text:0x80079894; // type:function size:0x8 scope:global align:4
+OSSetArenaHi = .text:0x8007989C; // type:function size:0x8 scope:global align:4
+OSSetArenaLo = .text:0x800798A4; // type:function size:0x8 scope:global align:4
+__OSInitAudioSystem = .text:0x800798AC; // type:function size:0x1BC scope:global align:4
+__OSStopAudioSystem = .text:0x80079A68; // type:function size:0xD8 scope:global align:4
+DCEnable = .text:0x80079B40; // type:function size:0x14 scope:global align:4
+DCInvalidateRange = .text:0x80079B54; // type:function size:0x30 scope:global align:4
+DCFlushRange = .text:0x80079B84; // type:function size:0x34 scope:global align:4
+DCStoreRange = .text:0x80079BB8; // type:function size:0x34 scope:global align:4
+DCFlushRangeNoSync = .text:0x80079BEC; // type:function size:0x30 scope:global align:4
+DCStoreRangeNoSync = .text:0x80079C1C; // type:function size:0x30 scope:global align:4
+DCZeroRange = .text:0x80079C4C; // type:function size:0x30 scope:global align:4
+DCTouchRange = .text:0x80079C7C; // type:function size:0x30 scope:global align:4
+ICInvalidateRange = .text:0x80079CAC; // type:function size:0x38 scope:global align:4
+ICFlashInvalidate = .text:0x80079CE4; // type:function size:0x10 scope:global align:4
+ICEnable = .text:0x80079CF4; // type:function size:0x14 scope:global align:4
+LCDisable = .text:0x80079D08; // type:function size:0x28 scope:global align:4
+L2GlobalInvalidate = .text:0x80079D30; // type:function size:0x98 scope:global align:4
+DMAErrorHandler = .text:0x80079DC8; // type:function size:0x160 scope:global align:4
+__OSCacheInit = .text:0x80079F28; // type:function size:0xF4 scope:global align:4
+__OSLoadFPUContext = .text:0x8007A01C; // type:function size:0x124 scope:global align:4
+__OSSaveFPUContext = .text:0x8007A140; // type:function size:0x128 scope:global align:4
+OSSetCurrentContext = .text:0x8007A268; // type:function size:0x5C scope:global align:4
+OSGetCurrentContext = .text:0x8007A2C4; // type:function size:0xC scope:global align:4
+OSSaveContext = .text:0x8007A2D0; // type:function size:0x80 scope:global align:4
+OSLoadContext = .text:0x8007A350; // type:function size:0xD8 scope:global align:4
+OSGetStackPointer = .text:0x8007A428; // type:function size:0x8 scope:global align:4
+OSClearContext = .text:0x8007A430; // type:function size:0x24 scope:global align:4
+OSInitContext = .text:0x8007A454; // type:function size:0xBC scope:global align:4
+OSDumpContext = .text:0x8007A510; // type:function size:0x2A8 scope:global align:4
+OSSwitchFPUContext = .text:0x8007A7B8; // type:function size:0x84 scope:global align:4
+__OSContextInit = .text:0x8007A83C; // type:function size:0x48 scope:global align:4
+OSFillFPUContext = .text:0x8007A884; // type:function size:0x12C scope:global align:4
+OSSetErrorHandler = .text:0x8007A9B0; // type:function size:0x1C scope:global align:4
+__OSUnhandledException = .text:0x8007A9CC; // type:function size:0x200 scope:global align:4
+OSGetFontEncode = .text:0x8007ABCC; // type:function size:0x58 scope:global align:4
+OSDisableInterrupts = .text:0x8007AC24; // type:function size:0x14 scope:global align:4
+__RAS_OSDisableInterrupts_begin = .text:0x8007AC24; // type:label scope:global
+__RAS_OSDisableInterrupts_end = .text:0x8007AC34; // type:label scope:global
+OSEnableInterrupts = .text:0x8007AC38; // type:function size:0x14 scope:global align:4
+OSRestoreInterrupts = .text:0x8007AC4C; // type:function size:0x24 scope:global align:4
+__OSSetInterruptHandler = .text:0x8007AC70; // type:function size:0x1C scope:global align:4
+__OSGetInterruptHandler = .text:0x8007AC8C; // type:function size:0x14 scope:global align:4
+__OSInterruptInit = .text:0x8007ACA0; // type:function size:0x74 scope:global align:4
+SetInterruptMask = .text:0x8007AD14; // type:function size:0x2D8 scope:global align:4
+__OSMaskInterrupts = .text:0x8007AFEC; // type:function size:0x88 scope:global align:4
+__OSUnmaskInterrupts = .text:0x8007B074; // type:function size:0x88 scope:global align:4
+__OSDispatchInterrupt = .text:0x8007B0FC; // type:function size:0x344 scope:global align:4
+ExternalInterruptHandler = .text:0x8007B440; // type:function size:0x50 scope:global align:4
+OSNotifyLink = .text:0x8007B490; // type:function size:0x4 scope:global align:4
+OSNotifyUnlink = .text:0x8007B494; // type:function size:0x4 scope:global align:4
+OSSetStringTable = .text:0x8007B498; // type:function size:0xC scope:global align:4
+Relocate = .text:0x8007B4A4; // type:function size:0x274 scope:global align:4
+OSLink = .text:0x8007B718; // type:function size:0x250 scope:global align:4
+Undo = .text:0x8007B968; // type:function size:0x20C scope:global align:4
+OSUnlink = .text:0x8007BB74; // type:function size:0x94 scope:global align:4
+__OSModuleInit = .text:0x8007BC08; // type:function size:0x18 scope:global align:4
+OSInitMessageQueue = .text:0x8007BC20; // type:function size:0x60 scope:global align:4
+OSSendMessage = .text:0x8007BC80; // type:function size:0xC8 scope:global align:4
+OSReceiveMessage = .text:0x8007BD48; // type:function size:0xDC scope:global align:4
+OSJamMessage = .text:0x8007BE24; // type:function size:0xD4 scope:global align:4
+OSGetConsoleSimulatedMemSize = .text:0x8007BEF8; // type:function size:0xC scope:global align:4
+OnReset = .text:0x8007BF04; // type:function size:0x3C scope:local align:4
+MEMIntrruptHandler = .text:0x8007BF40; // type:function size:0x6C scope:global align:4
+OSProtectRange = .text:0x8007BFAC; // type:function size:0xC4 scope:global align:4
+Config24MB = .text:0x8007C070; // type:function size:0x80 scope:local align:4
+Config48MB = .text:0x8007C0F0; // type:function size:0x80 scope:local align:4
+RealMode = .text:0x8007C170; // type:function size:0x18 scope:global align:4
+__OSInitMemoryProtection = .text:0x8007C188; // type:function size:0x120 scope:global align:4
+OSInitMutex = .text:0x8007C2A8; // type:function size:0x38 scope:global align:4
+OSLockMutex = .text:0x8007C2E0; // type:function size:0xDC scope:global align:4
+OSUnlockMutex = .text:0x8007C3BC; // type:function size:0xC8 scope:global align:4
+__OSUnlockAllMutex = .text:0x8007C484; // type:function size:0x70 scope:global align:4
+__OSCheckMutex = .text:0x8007C4F4; // type:function size:0x100 scope:global align:4
+__OSCheckDeadLock = .text:0x8007C5F4; // type:function size:0x38 scope:global align:4
+__OSCheckMutexes = .text:0x8007C62C; // type:function size:0x74 scope:global align:4
+Run = .text:0x8007C6A0; // type:function size:0x40 scope:global align:4
+Callback = .text:0x8007C6E0; // type:function size:0xC scope:local align:4
+__OSReboot = .text:0x8007C6EC; // type:function size:0x1C0 scope:global align:4
+OSGetSaveRegion = .text:0x8007C8AC; // type:function size:0x14 scope:global align:4
+OSRegisterResetFunction = .text:0x8007C8C0; // type:function size:0x84 scope:global align:4
+Reset = .text:0x8007C944; // type:function size:0x70 scope:global align:4
+__OSDoHotReset = .text:0x8007C9B4; // type:function size:0x48 scope:global align:4
+OSResetSystem = .text:0x8007C9FC; // type:function size:0x278 scope:global align:4
+OSGetResetCode = .text:0x8007CC74; // type:function size:0x30 scope:global align:4
+__OSResetSWInterruptHandler = .text:0x8007CCA4; // type:function size:0xF4 scope:global align:4
+OSGetResetButtonState = .text:0x8007CD98; // type:function size:0x298 scope:global align:4
+OSGetResetSwitchState = .text:0x8007D030; // type:function size:0x20 scope:global align:4
+WriteSramCallback = .text:0x8007D050; // type:function size:0x60 scope:global align:4
+WriteSram = .text:0x8007D0B0; // type:function size:0x118 scope:global align:4
+__OSInitSram = .text:0x8007D1C8; // type:function size:0x134 scope:global align:4
+__OSLockSram = .text:0x8007D2FC; // type:function size:0x5C scope:global align:4
+__OSLockSramEx = .text:0x8007D358; // type:function size:0x5C scope:global align:4
+UnlockSram = .text:0x8007D3B4; // type:function size:0x308 scope:global align:4
+__OSUnlockSram = .text:0x8007D6BC; // type:function size:0x24 scope:global align:4
+__OSUnlockSramEx = .text:0x8007D6E0; // type:function size:0x24 scope:global align:4
+__OSSyncSram = .text:0x8007D704; // type:function size:0x10 scope:global align:4
+OSGetSoundMode = .text:0x8007D714; // type:function size:0x80 scope:global align:4
+OSSetSoundMode = .text:0x8007D794; // type:function size:0xA4 scope:global align:4
+OSGetProgressiveMode = .text:0x8007D838; // type:function size:0x70 scope:global align:4
+OSSetProgressiveMode = .text:0x8007D8A8; // type:function size:0xA4 scope:global align:4
+__OSSetBootMode = .text:0x8007D94C; // type:function size:0xA4 scope:global align:4
+OSGetWirelessID = .text:0x8007D9F0; // type:function size:0x84 scope:global align:4
+OSSetWirelessID = .text:0x8007DA74; // type:function size:0xAC scope:global align:4
+SystemCallVector = .text:0x8007DB20; // type:function size:0x20 scope:global align:4
+__OSSystemCallVectorStart = .text:0x8007DB20; // type:label scope:global
+__OSSystemCallVectorEnd = .text:0x8007DB3C; // type:label scope:global
+__OSInitSystemCall = .text:0x8007DB40; // type:function size:0x64 scope:global align:4
+__OSThreadInit = .text:0x8007DBA4; // type:function size:0x128 scope:global align:4
+OSInitThreadQueue = .text:0x8007DCCC; // type:function size:0x10 scope:global align:4
+OSGetCurrentThread = .text:0x8007DCDC; // type:function size:0xC scope:global align:4
+OSIsThreadTerminated = .text:0x8007DCE8; // type:function size:0x34 scope:global align:4
+OSDisableScheduler = .text:0x8007DD1C; // type:function size:0x40 scope:global align:4
+OSEnableScheduler = .text:0x8007DD5C; // type:function size:0x40 scope:global align:4
+UnsetRun = .text:0x8007DD9C; // type:function size:0x68 scope:global align:4
+__OSGetEffectivePriority = .text:0x8007DE04; // type:function size:0x3C scope:global align:4
+SetEffectivePriority = .text:0x8007DE40; // type:function size:0x1C0 scope:global align:4
+__OSPromoteThread = .text:0x8007E000; // type:function size:0x50 scope:global align:4
+SelectThread = .text:0x8007E050; // type:function size:0x200 scope:global align:4
+__OSReschedule = .text:0x8007E250; // type:function size:0x30 scope:global align:4
+OSYieldThread = .text:0x8007E280; // type:function size:0x3C scope:global align:4
+OSCreateThread = .text:0x8007E2BC; // type:function size:0x120 scope:global align:4
+OSExitThread = .text:0x8007E3DC; // type:function size:0xE4 scope:global align:4
+OSCancelThread = .text:0x8007E4C0; // type:function size:0x1BC scope:global align:4
+OSJoinThread = .text:0x8007E67C; // type:function size:0x140 scope:global align:4
+OSDetachThread = .text:0x8007E7BC; // type:function size:0xA0 scope:global align:4
+OSResumeThread = .text:0x8007E85C; // type:function size:0x288 scope:global align:4
+OSSuspendThread = .text:0x8007EAE4; // type:function size:0x170 scope:global align:4
+OSSleepThread = .text:0x8007EC54; // type:function size:0xEC scope:global align:4
+OSWakeupThread = .text:0x8007ED40; // type:function size:0x104 scope:global align:4
+OSSetThreadPriority = .text:0x8007EE44; // type:function size:0xC0 scope:global align:4
+OSGetThreadPriority = .text:0x8007EF04; // type:function size:0x8 scope:global align:4
+CheckThreadQueue = .text:0x8007EF0C; // type:function size:0x9C scope:global align:4
+OSCheckActiveThreads = .text:0x8007EFA8; // type:function size:0x750 scope:global align:4
+OSGetTime = .text:0x8007F6F8; // type:function size:0x18 scope:global align:4
+OSGetTick = .text:0x8007F710; // type:function size:0x8 scope:global align:4
+__OSGetSystemTime = .text:0x8007F718; // type:function size:0x64 scope:global align:4
+GetDates = .text:0x8007F77C; // type:function size:0x19C scope:global align:4
+OSTicksToCalendarTime = .text:0x8007F918; // type:function size:0x204 scope:global align:4
+OSCalendarTimeToTicks = .text:0x8007FB1C; // type:function size:0x2E0 scope:global align:4
+__init_user = .text:0x8007FDFC; // type:function size:0x20 scope:global align:4
+__init_cpp = .text:0x8007FE1C; // type:function size:0x54 scope:global align:4
+_ExitProcess = .text:0x8007FE70; // type:function size:0x20 scope:global align:4
+SetExiInterruptMask = .text:0x8007FE90; // type:function size:0xF4 scope:global align:4
+EXIImm = .text:0x8007FF84; // type:function size:0x25C scope:global align:4
+EXIImmEx = .text:0x800801E0; // type:function size:0xA0 scope:global align:4
+EXIDma = .text:0x80080280; // type:function size:0xEC scope:global align:4
+EXISync = .text:0x8008036C; // type:function size:0x238 scope:global align:4
+EXIClearInterrupts = .text:0x800805A4; // type:function size:0x48 scope:global align:4
+EXISetExiCallback = .text:0x800805EC; // type:function size:0x7C scope:global align:4
+__EXIProbe = .text:0x80080668; // type:function size:0x174 scope:global align:4
+EXIProbe = .text:0x800807DC; // type:function size:0x80 scope:global align:4
+EXIProbeEx = .text:0x8008085C; // type:function size:0xB4 scope:global align:4
+EXIAttach = .text:0x80080910; // type:function size:0x10C scope:global align:4
+EXIDetach = .text:0x80080A1C; // type:function size:0xBC scope:global align:4
+EXISelect = .text:0x80080AD8; // type:function size:0x12C scope:global align:4
+EXIDeselect = .text:0x80080C04; // type:function size:0x110 scope:global align:4
+EXIIntrruptHandler = .text:0x80080D14; // type:function size:0xC8 scope:global align:4
+TCIntrruptHandler = .text:0x80080DDC; // type:function size:0x218 scope:global align:4
+EXTIntrruptHandler = .text:0x80080FF4; // type:function size:0xD0 scope:global align:4
+EXIInit = .text:0x800810C4; // type:function size:0x114 scope:global align:4
+EXILock = .text:0x800811D8; // type:function size:0xF4 scope:global align:4
+EXIUnlock = .text:0x800812CC; // type:function size:0xDC scope:global align:4
+EXIGetState = .text:0x800813A8; // type:function size:0x18 scope:global align:4
+UnlockedHandler = .text:0x800813C0; // type:function size:0x28 scope:global align:4
+EXIGetID = .text:0x800813E8; // type:function size:0x37C scope:global align:4
+InitializeUART = .text:0x80081764; // type:function size:0x70 scope:global align:4
+WriteUARTN = .text:0x800817D4; // type:function size:0x200 scope:global align:4
+SIBusy = .text:0x800819D4; // type:function size:0x20 scope:global align:4
+SIIsChanBusy = .text:0x800819F4; // type:function size:0x3C scope:global align:4
+CompleteTransfer = .text:0x80081A30; // type:function size:0x2FC scope:global align:4
+SIInterruptHandler = .text:0x80081D2C; // type:function size:0x344 scope:global align:4
+SIEnablePollingInterrupt = .text:0x80082070; // type:function size:0x98 scope:global align:4
+SIRegisterPollingHandler = .text:0x80082108; // type:function size:0xCC scope:global align:4
+SIUnregisterPollingHandler = .text:0x800821D4; // type:function size:0xF4 scope:global align:4
+SIInit = .text:0x800822C8; // type:function size:0xA4 scope:global align:4
+__SITransfer = .text:0x8008236C; // type:function size:0x20C scope:global align:4
+SIGetStatus = .text:0x80082578; // type:function size:0x7C scope:global align:4
+SISetCommand = .text:0x800825F4; // type:function size:0x14 scope:global align:4
+SITransferCommands = .text:0x80082608; // type:function size:0x10 scope:global align:4
+SISetXY = .text:0x80082618; // type:function size:0x6C scope:global align:4
+SIEnablePolling = .text:0x80082684; // type:function size:0x9C scope:global align:4
+SIDisablePolling = .text:0x80082720; // type:function size:0x6C scope:global align:4
+SIGetResponseRaw = .text:0x8008278C; // type:function size:0xD4 scope:global align:4
+SIGetResponse = .text:0x80082860; // type:function size:0xC4 scope:global align:4
+AlarmHandler = .text:0x80082924; // type:function size:0x8C scope:local align:4
+SITransfer = .text:0x800829B0; // type:function size:0x16C scope:global align:4
+GetTypeCallback = .text:0x80082B1C; // type:function size:0x298 scope:global align:4
+SIGetType = .text:0x80082DB4; // type:function size:0x1C4 scope:global align:4
+SIGetTypeAsync = .text:0x80082F78; // type:function size:0x13C scope:global align:4
+SISetSamplingRate = .text:0x800830B4; // type:function size:0xE4 scope:global align:4
+SIRefreshSamplingRate = .text:0x80083198; // type:function size:0x24 scope:global align:4
+DBInit = .text:0x800831BC; // type:function size:0x28 scope:global align:4
+__DBExceptionDestinationAux = .text:0x800831E4; // type:function size:0x48 scope:global align:4
+__DBExceptionDestination = .text:0x8008322C; // type:function size:0x10 scope:global align:4
+__DBIsExceptionMarked = .text:0x8008323C; // type:function size:0x1C scope:global align:4
+DBPrintf = .text:0x80083258; // type:function size:0x50 scope:global align:4
+PSMTXIdentity = .text:0x800832A8; // type:function size:0x2C scope:global align:4
+PSMTXCopy = .text:0x800832D4; // type:function size:0x34 scope:global align:4
+PSMTXConcat = .text:0x80083308; // type:function size:0xCC scope:global align:4
+PSMTXInverse = .text:0x800833D4; // type:function size:0xF8 scope:global align:4
+PSMTXTrans = .text:0x800834CC; // type:function size:0x34 scope:global align:4
+PSMTXScale = .text:0x80083500; // type:function size:0x28 scope:global align:4
+C_MTXLookAt = .text:0x80083528; // type:function size:0x18C scope:global align:4
+C_MTXLightOrtho = .text:0x800836B4; // type:function size:0x88 scope:global align:4
+PSMTXMultVec = .text:0x8008373C; // type:function size:0x54 scope:global align:4
+C_MTXOrtho = .text:0x80083790; // type:function size:0x98 scope:global align:4
+PSVECNormalize = .text:0x80083828; // type:function size:0x44 scope:global align:4
+PSVECCrossProduct = .text:0x8008386C; // type:function size:0x3C scope:global align:4
+__DVDInitWA = .text:0x800838A8; // type:function size:0x40 scope:global align:4
+__DVDInterruptHandler = .text:0x800838E8; // type:function size:0x2F4 scope:global align:4
+AlarmHandler = .text:0x80083BDC; // type:function size:0x84 scope:local align:4
+AlarmHandlerForTimeout = .text:0x80083C60; // type:function size:0x70 scope:global align:4
+Read = .text:0x80083CD0; // type:function size:0x110 scope:global align:4
+SeekTwiceBeforeRead = .text:0x80083DE0; // type:function size:0x80 scope:global align:4
+DVDLowRead = .text:0x80083E60; // type:function size:0x298 scope:global align:4
+DVDLowSeek = .text:0x800840F8; // type:function size:0x94 scope:global align:4
+DVDLowWaitCoverClose = .text:0x8008418C; // type:function size:0x2C scope:global align:4
+DVDLowReadDiskID = .text:0x800841B8; // type:function size:0xA4 scope:global align:4
+DVDLowStopMotor = .text:0x8008425C; // type:function size:0x8C scope:global align:4
+DVDLowRequestError = .text:0x800842E8; // type:function size:0x8C scope:global align:4
+DVDLowInquiry = .text:0x80084374; // type:function size:0x9C scope:global align:4
+DVDLowAudioStream = .text:0x80084410; // type:function size:0x98 scope:global align:4
+DVDLowRequestAudioStatus = .text:0x800844A8; // type:function size:0x8C scope:global align:4
+DVDLowAudioBufferConfig = .text:0x80084534; // type:function size:0x9C scope:global align:4
+DVDLowReset = .text:0x800845D0; // type:function size:0xBC scope:global align:4
+DVDLowBreak = .text:0x8008468C; // type:function size:0x14 scope:global align:4
+DVDLowClearCallback = .text:0x800846A0; // type:function size:0x18 scope:global align:4
+__DVDLowSetWAType = .text:0x800846B8; // type:function size:0x44 scope:global align:4
+__DVDFSInit = .text:0x800846FC; // type:function size:0x38 scope:global align:4
+DVDConvertPathToEntrynum = .text:0x80084734; // type:function size:0x2F4 scope:global align:4
+DVDFastOpen = .text:0x80084A28; // type:function size:0x74 scope:global align:4
+DVDOpen = .text:0x80084A9C; // type:function size:0xC8 scope:global align:4
+DVDClose = .text:0x80084B64; // type:function size:0x24 scope:global align:4
+entryToPath = .text:0x80084B88; // type:function size:0x160 scope:global align:4
+DVDGetCurrentDir = .text:0x80084CE8; // type:function size:0xC4 scope:global align:4
+DVDReadAsyncPrio = .text:0x80084DAC; // type:function size:0xC0 scope:global align:4
+cbForReadAsync = .text:0x80084E6C; // type:function size:0x30 scope:global align:4
+DVDReadPrio = .text:0x80084E9C; // type:function size:0x118 scope:global align:4
+cbForReadSync = .text:0x80084FB4; // type:function size:0x24 scope:global align:4
+DVDPrepareStreamAsync = .text:0x80084FD8; // type:function size:0xEC scope:global align:4
+cbForPrepareStreamAsync = .text:0x800850C4; // type:function size:0x30 scope:global align:4
+DVDInit = .text:0x800850F4; // type:function size:0xFC scope:global align:4
+stateReadingFST = .text:0x800851F0; // type:function size:0x54 scope:global align:4
+cbForStateReadingFST = .text:0x80085244; // type:function size:0x80 scope:global align:4
+cbForStateError = .text:0x800852C4; // type:function size:0xA8 scope:global align:4
+stateTimeout = .text:0x8008536C; // type:function size:0x9C scope:global align:4
+stateGettingError = .text:0x80085408; // type:function size:0x28 scope:global align:4
+CategorizeError = .text:0x80085430; // type:function size:0xB4 scope:global align:4
+cbForStateGettingError = .text:0x800854E4; // type:function size:0x294 scope:global align:4
+cbForUnrecoveredError = .text:0x80085778; // type:function size:0x68 scope:global align:4
+cbForUnrecoveredErrorRetry = .text:0x800857E0; // type:function size:0x98 scope:global align:4
+stateGoToRetry = .text:0x80085878; // type:function size:0x28 scope:global align:4
+cbForStateGoToRetry = .text:0x800858A0; // type:function size:0x158 scope:global align:4
+stateCheckID = .text:0x800859F8; // type:function size:0xE4 scope:global align:4
+stateCheckID3 = .text:0x80085ADC; // type:function size:0x34 scope:global align:4
+stateCheckID2 = .text:0x80085B10; // type:function size:0x38 scope:global align:4
+cbForStateCheckID1 = .text:0x80085B48; // type:function size:0x114 scope:global align:4
+cbForStateCheckID2 = .text:0x80085C5C; // type:function size:0xA4 scope:global align:4
+cbForStateCheckID3 = .text:0x80085D00; // type:function size:0xFC scope:global align:4
+AlarmHandler = .text:0x80085DFC; // type:function size:0x44 scope:local align:4
+stateCoverClosed = .text:0x80085E40; // type:function size:0xCC scope:global align:4
+stateCoverClosed_CMD = .text:0x80085F0C; // type:function size:0x30 scope:global align:4
+cbForStateCoverClosed = .text:0x80085F3C; // type:function size:0x70 scope:global align:4
+stateMotorStopped = .text:0x80085FAC; // type:function size:0x28 scope:global align:4
+cbForStateMotorStopped = .text:0x80085FD4; // type:function size:0xE4 scope:global align:4
+stateReady = .text:0x800860B8; // type:function size:0x248 scope:global align:4
+stateBusy = .text:0x80086300; // type:function size:0x2C0 scope:global align:4
+cbForStateBusy = .text:0x800865C0; // type:function size:0x5D4 scope:global align:4
+issueCommand = .text:0x80086B94; // type:function size:0xBC scope:global align:4
+DVDReadAbsAsyncPrio = .text:0x80086C50; // type:function size:0xDC scope:global align:4
+DVDReadAbsAsyncForBS = .text:0x80086D2C; // type:function size:0xD0 scope:global align:4
+DVDReadDiskID = .text:0x80086DFC; // type:function size:0xD4 scope:global align:4
+DVDPrepareStreamAbsAsync = .text:0x80086ED0; // type:function size:0xC4 scope:global align:4
+DVDCancelStream = .text:0x80086F94; // type:function size:0xA0 scope:global align:4
+cbForCancelStreamSync = .text:0x80087034; // type:function size:0x28 scope:global align:4
+DVDInquiryAsync = .text:0x8008705C; // type:function size:0xD0 scope:global align:4
+DVDReset = .text:0x8008712C; // type:function size:0x44 scope:global align:4
+DVDGetCommandBlockStatus = .text:0x80087170; // type:function size:0x4C scope:global align:4
+DVDGetDriveStatus = .text:0x800871BC; // type:function size:0xAC scope:global align:4
+DVDSetAutoInvalidation = .text:0x80087268; // type:function size:0x10 scope:global align:4
+DVDCancelAsync = .text:0x80087278; // type:function size:0x270 scope:global align:4
+DVDCancel = .text:0x800874E8; // type:function size:0xAC scope:global align:4
+cbForCancelSync = .text:0x80087594; // type:function size:0x24 scope:global align:4
+DVDGetCurrentDiskID = .text:0x800875B8; // type:function size:0x8 scope:global align:4
+DVDCheckDisk = .text:0x800875C0; // type:function size:0xE4 scope:global align:4
+__DVDPrepareResetAsync = .text:0x800876A4; // type:function size:0x11C scope:global align:4
+__DVDClearWaitingQueue = .text:0x800877C0; // type:function size:0x38 scope:global align:4
+__DVDPushWaitingQueue = .text:0x800877F8; // type:function size:0x68 scope:global align:4
+__DVDPopWaitingQueue = .text:0x80087860; // type:function size:0xA0 scope:global align:4
+__DVDCheckWaitingQueue = .text:0x80087900; // type:function size:0x58 scope:global align:4
+__DVDDequeueWaitingQueue = .text:0x80087958; // type:function size:0x60 scope:global align:4
+ErrorCode2Num = .text:0x800879B8; // type:function size:0x11C scope:global align:4
+__DVDStoreErrorCode = .text:0x80087AD4; // type:function size:0x7C scope:global align:4
+cb = .text:0x80087B50; // type:function size:0xD8 scope:global align:4
+__fstLoad = .text:0x80087C28; // type:function size:0x168 scope:global align:4
+__VIRetraceHandler = .text:0x80087D90; // type:function size:0x228 scope:global align:4
+VISetPreRetraceCallback = .text:0x80087FB8; // type:function size:0x44 scope:global align:4
+VISetPostRetraceCallback = .text:0x80087FFC; // type:function size:0x44 scope:global align:4
+getTiming = .text:0x80088040; // type:function size:0x90 scope:global align:4
+__VIInit = .text:0x800880D0; // type:function size:0x1F8 scope:global align:4
+VIInit = .text:0x800882C8; // type:function size:0x478 scope:global align:4
+VIWaitForRetrace = .text:0x80088740; // type:function size:0x54 scope:global align:4
+setFbbRegs = .text:0x80088794; // type:function size:0x2D4 scope:global align:4
+setVerticalRegs = .text:0x80088A68; // type:function size:0x1A0 scope:global align:4
+VIConfigure = .text:0x80088C08; // type:function size:0x79C scope:global align:4
+VIConfigurePan = .text:0x800893A4; // type:function size:0x394 scope:global align:4
+VIFlush = .text:0x80089738; // type:function size:0x11C scope:global align:4
+VISetNextFrameBuffer = .text:0x80089854; // type:function size:0x6C scope:global align:4
+VISetBlack = .text:0x800898C0; // type:function size:0x7C scope:global align:4
+VIGetRetraceCount = .text:0x8008993C; // type:function size:0x8 scope:global align:4
+getCurrentFieldEvenOdd = .text:0x80089944; // type:function size:0x68 scope:global align:4
+VIGetCurrentLine = .text:0x800899AC; // type:function size:0x98 scope:global align:4
+VIGetTvFormat = .text:0x80089A44; // type:function size:0x7C scope:global align:4
+VIGetDTVStatus = .text:0x80089AC0; // type:function size:0x3C scope:global align:4
+ClampStick = .text:0x80089AFC; // type:function size:0x130 scope:global align:4
+PADClamp = .text:0x80089C2C; // type:function size:0x108 scope:global align:4
+UpdateOrigin = .text:0x80089D34; // type:function size:0x1A4 scope:global align:4
+PADOriginCallback = .text:0x80089ED8; // type:function size:0xC4 scope:global align:4
+PADOriginUpdateCallback = .text:0x80089F9C; // type:function size:0xC0 scope:global align:4
+PADProbeCallback = .text:0x8008A05C; // type:function size:0xD8 scope:global align:4
+PADTypeAndStatusCallback = .text:0x8008A134; // type:function size:0x32C scope:global align:4
+PADReceiveCheckCallback = .text:0x8008A460; // type:function size:0x134 scope:global align:4
+PADReset = .text:0x8008A594; // type:function size:0x100 scope:global align:4
+PADRecalibrate = .text:0x8008A694; // type:function size:0x104 scope:global align:4
+PADInit = .text:0x8008A798; // type:function size:0x210 scope:global align:4
+PADRead = .text:0x8008A9A8; // type:function size:0x3AC scope:global align:4
+PADControlAllMotors = .text:0x8008AD54; // type:function size:0xB8 scope:global align:4
+PADControlMotor = .text:0x8008AE0C; // type:function size:0xA4 scope:global align:4
+PADSetSpec = .text:0x8008AEB0; // type:function size:0x60 scope:global align:4
+SPEC0_MakeStatus = .text:0x8008AF10; // type:function size:0x174 scope:global align:4
+SPEC1_MakeStatus = .text:0x8008B084; // type:function size:0x174 scope:global align:4
+SPEC2_MakeStatus = .text:0x8008B1F8; // type:function size:0x3F8 scope:global align:4
+PADSetAnalogMode = .text:0x8008B5F0; // type:function size:0x74 scope:global align:4
+OnReset = .text:0x8008B664; // type:function size:0x194 scope:local align:4
+SamplingHandler = .text:0x8008B7F8; // type:function size:0x60 scope:global align:4
+PADSetSamplingCallback = .text:0x8008B858; // type:function size:0x54 scope:global align:4
+__PADDisableRecalibration = .text:0x8008B8AC; // type:function size:0x7C scope:global align:4
+AIRegisterDMACallback = .text:0x8008B928; // type:function size:0x44 scope:global align:4
+AIInitDMA = .text:0x8008B96C; // type:function size:0x88 scope:global align:4
+AIStartDMA = .text:0x8008B9F4; // type:function size:0x18 scope:global align:4
+AIGetStreamSampleCount = .text:0x8008BA0C; // type:function size:0x10 scope:global align:4
+AIResetStreamSampleCount = .text:0x8008BA1C; // type:function size:0x18 scope:global align:4
+AIGetStreamTrigger = .text:0x8008BA34; // type:function size:0x10 scope:global align:4
+AISetStreamPlayState = .text:0x8008BA44; // type:function size:0xD8 scope:global align:4
+AIGetStreamPlayState = .text:0x8008BB1C; // type:function size:0x10 scope:global align:4
+AISetDSPSampleRate = .text:0x8008BB2C; // type:function size:0xE0 scope:global align:4
+AIGetDSPSampleRate = .text:0x8008BC0C; // type:function size:0x14 scope:global align:4
+AISetStreamSampleRate = .text:0x8008BC20; // type:function size:0x28 scope:global align:4
+__AI_set_stream_sample_rate = .text:0x8008BC48; // type:function size:0xD4 scope:global align:4
+AIGetStreamSampleRate = .text:0x8008BD1C; // type:function size:0x10 scope:global align:4
+AISetStreamVolLeft = .text:0x8008BD2C; // type:function size:0x1C scope:global align:4
+AIGetStreamVolLeft = .text:0x8008BD48; // type:function size:0x10 scope:global align:4
+AISetStreamVolRight = .text:0x8008BD58; // type:function size:0x1C scope:global align:4
+AIGetStreamVolRight = .text:0x8008BD74; // type:function size:0x10 scope:global align:4
+AIInit = .text:0x8008BD84; // type:function size:0x164 scope:global align:4
+__AISHandler = .text:0x8008BEE8; // type:function size:0x7C scope:global align:4
+__AIDHandler = .text:0x8008BF64; // type:function size:0x90 scope:global align:4
+__AICallbackStackSwitch = .text:0x8008BFF4; // type:function size:0x58 scope:global align:4
+__AI_SRC_INIT = .text:0x8008C04C; // type:function size:0x1E4 scope:global align:4
+ARRegisterDMACallback = .text:0x8008C230; // type:function size:0x44 scope:global align:4
+ARStartDMA = .text:0x8008C274; // type:function size:0xF0 scope:global align:4
+ARAlloc = .text:0x8008C364; // type:function size:0x68 scope:global align:4
+ARInit = .text:0x8008C3CC; // type:function size:0xBC scope:global align:4
+ARGetBaseAddress = .text:0x8008C488; // type:function size:0x8 scope:global align:4
+ARGetSize = .text:0x8008C490; // type:function size:0x8 scope:global align:4
+__ARHandler = .text:0x8008C498; // type:function size:0x78 scope:global align:4
+__ARChecksize = .text:0x8008C510; // type:function size:0x914 scope:global align:4
+__ARQServiceQueueLo = .text:0x8008CE24; // type:function size:0x100 scope:global align:4
+__ARQCallbackHack = .text:0x8008CF24; // type:function size:0x4 scope:global align:4
+__ARQInterruptServiceRoutine = .text:0x8008CF28; // type:function size:0xCC scope:global align:4
+ARQInit = .text:0x8008CFF4; // type:function size:0x68 scope:global align:4
+ARQPostRequest = .text:0x8008D05C; // type:function size:0x15C scope:global align:4
+DSPCheckMailToDSP = .text:0x8008D1B8; // type:function size:0x10 scope:global align:4
+DSPCheckMailFromDSP = .text:0x8008D1C8; // type:function size:0x10 scope:global align:4
+DSPReadMailFromDSP = .text:0x8008D1D8; // type:function size:0x18 scope:global align:4
+DSPSendMailToDSP = .text:0x8008D1F0; // type:function size:0x14 scope:global align:4
+__CARDDefaultApiCallback = .text:0x8008D204; // type:function size:0x4 scope:global align:4
+__CARDSyncCallback = .text:0x8008D208; // type:function size:0x34 scope:global align:4
+__CARDExtHandler = .text:0x8008D23C; // type:function size:0xD8 scope:global align:4
+__CARDExiHandler = .text:0x8008D314; // type:function size:0x118 scope:global align:4
+__CARDTxHandler = .text:0x8008D42C; // type:function size:0xA8 scope:global align:4
+__CARDUnlockedHandler = .text:0x8008D4D4; // type:function size:0x84 scope:global align:4
+__CARDEnableInterrupt = .text:0x8008D558; // type:function size:0xC0 scope:global align:4
+__CARDReadStatus = .text:0x8008D618; // type:function size:0xF0 scope:global align:4
+__CARDClearStatus = .text:0x8008D708; // type:function size:0xAC scope:global align:4
+TimeoutHandler = .text:0x8008D7B4; // type:function size:0xA4 scope:global align:4
+Retry = .text:0x8008D858; // type:function size:0x22C scope:global align:4
+UnlockedCallback = .text:0x8008DA84; // type:function size:0x110 scope:global align:4
+__CARDStart = .text:0x8008DB94; // type:function size:0x1B4 scope:global align:4
+__CARDReadSegment = .text:0x8008DD48; // type:function size:0x134 scope:global align:4
+__CARDWritePage = .text:0x8008DE7C; // type:function size:0x11C scope:global align:4
+__CARDEraseSector = .text:0x8008DF98; // type:function size:0xE0 scope:global align:4
+CARDInit = .text:0x8008E078; // type:function size:0x9C scope:global align:4
+__CARDSetDiskID = .text:0x8008E114; // type:function size:0x38 scope:global align:4
+__CARDGetControlBlock = .text:0x8008E14C; // type:function size:0xB8 scope:global align:4
+__CARDPutControlBlock = .text:0x8008E204; // type:function size:0x64 scope:global align:4
+CARDGetResultCode = .text:0x8008E268; // type:function size:0x30 scope:global align:4
+CARDFreeBlocks = .text:0x8008E298; // type:function size:0x150 scope:global align:4
+CARDGetSectorSize = .text:0x8008E3E8; // type:function size:0x84 scope:global align:4
+__CARDSync = .text:0x8008E46C; // type:function size:0x98 scope:global align:4
+OnReset = .text:0x8008E504; // type:function size:0x50 scope:local align:4
+BlockReadCallback = .text:0x8008E554; // type:function size:0xDC scope:global align:4
+__CARDRead = .text:0x8008E630; // type:function size:0x64 scope:global align:4
+BlockWriteCallback = .text:0x8008E694; // type:function size:0xDC scope:global align:4
+__CARDWrite = .text:0x8008E770; // type:function size:0x64 scope:global align:4
+__CARDGetFatBlock = .text:0x8008E7D4; // type:function size:0x8 scope:global align:4
+WriteCallback = .text:0x8008E7DC; // type:function size:0xD4 scope:local align:4
+EraseCallback = .text:0x8008E8B0; // type:function size:0xC8 scope:local align:4
+__CARDAllocBlock = .text:0x8008E978; // type:function size:0x118 scope:global align:4
+__CARDFreeBlock = .text:0x8008EA90; // type:function size:0x9C scope:global align:4
+__CARDUpdateFatBlock = .text:0x8008EB2C; // type:function size:0xAC scope:global align:4
+__CARDGetDirBlock = .text:0x8008EBD8; // type:function size:0x8 scope:global align:4
+WriteCallback = .text:0x8008EBE0; // type:function size:0xD0 scope:local align:4
+EraseCallback = .text:0x8008ECB0; // type:function size:0xC8 scope:local align:4
+__CARDUpdateDir = .text:0x8008ED78; // type:function size:0xC4 scope:global align:4
+__CARDCheckSum = .text:0x8008EE3C; // type:function size:0x1B0 scope:global align:4
+VerifyID = .text:0x8008EFEC; // type:function size:0x284 scope:global align:4
+VerifyDir = .text:0x8008F270; // type:function size:0x240 scope:global align:4
+VerifyFAT = .text:0x8008F4B0; // type:function size:0x284 scope:global align:4
+__CARDVerify = .text:0x8008F734; // type:function size:0x8C scope:global align:4
+CARDCheckExAsync = .text:0x8008F7C0; // type:function size:0x590 scope:global align:4
+CARDCheckAsync = .text:0x8008FD50; // type:function size:0x28 scope:global align:4
+CARDCheck = .text:0x8008FD78; // type:function size:0x54 scope:global align:4
+IsCard = .text:0x8008FDCC; // type:function size:0xCC scope:global align:4
+CARDProbeEx = .text:0x8008FE98; // type:function size:0x17C scope:global align:4
+DoMount = .text:0x80090014; // type:function size:0x410 scope:global align:4
+__CARDMountCallback = .text:0x80090424; // type:function size:0x138 scope:global align:4
+CARDMountAsync = .text:0x8009055C; // type:function size:0x1A0 scope:global align:4
+CARDMount = .text:0x800906FC; // type:function size:0x48 scope:global align:4
+DoUnmount = .text:0x80090744; // type:function size:0x9C scope:global align:4
+CARDUnmount = .text:0x800907E0; // type:function size:0xAC scope:global align:4
+FormatCallback = .text:0x8009088C; // type:function size:0x144 scope:global align:4
+__CARDFormatRegionAsync = .text:0x800909D0; // type:function size:0x658 scope:global align:4
+CARDFormatAsync = .text:0x80091028; // type:function size:0x48 scope:global align:4
+CARDFormat = .text:0x80091070; // type:function size:0x54 scope:global align:4
+__CARDCompareFileName = .text:0x800910C4; // type:function size:0x68 scope:global align:4
+__CARDAccess = .text:0x8009112C; // type:function size:0x98 scope:global align:4
+__CARDIsPublic = .text:0x800911C4; // type:function size:0x30 scope:global align:4
+__CARDGetFileNo = .text:0x800911F4; // type:function size:0x150 scope:global align:4
+CARDFastOpen = .text:0x80091344; // type:function size:0x160 scope:global align:4
+CARDOpen = .text:0x800914A4; // type:function size:0x178 scope:global align:4
+CARDClose = .text:0x8009161C; // type:function size:0x54 scope:global align:4
+__CARDIsOpened = .text:0x80091670; // type:function size:0x8 scope:global align:4
+CreateCallbackFat = .text:0x80091678; // type:function size:0x130 scope:global align:4
+CARDCreateAsync = .text:0x800917A8; // type:function size:0x220 scope:global align:4
+CARDCreate = .text:0x800919C8; // type:function size:0x48 scope:global align:4
+__CARDSeek = .text:0x80091A10; // type:function size:0x1B8 scope:global align:4
+ReadCallback = .text:0x80091BC8; // type:function size:0x130 scope:global align:4
+CARDReadAsync = .text:0x80091CF8; // type:function size:0x148 scope:global align:4
+CARDRead = .text:0x80091E40; // type:function size:0x48 scope:global align:4
+WriteCallback = .text:0x80091E88; // type:function size:0x170 scope:local align:4
+EraseCallback = .text:0x80091FF8; // type:function size:0xB0 scope:local align:4
+CARDWriteAsync = .text:0x800920A8; // type:function size:0x114 scope:global align:4
+CARDWrite = .text:0x800921BC; // type:function size:0x48 scope:global align:4
+DeleteCallback = .text:0x80092204; // type:function size:0xA4 scope:global align:4
+CARDDeleteAsync = .text:0x800922A8; // type:function size:0x110 scope:global align:4
+CARDDelete = .text:0x800923B8; // type:function size:0x48 scope:global align:4
+UpdateIconOffsets = .text:0x80092400; // type:function size:0x1F8 scope:global align:4
+CARDGetStatus = .text:0x800925F8; // type:function size:0x12C scope:global align:4
+CARDSetStatusAsync = .text:0x80092724; // type:function size:0x174 scope:global align:4
+CARDSetStatus = .text:0x80092898; // type:function size:0x48 scope:global align:4
+CARDRenameAsync = .text:0x800928E0; // type:function size:0x1FC scope:global align:4
+CARDRename = .text:0x80092ADC; // type:function size:0x48 scope:global align:4
+__CARDGetStatusEx = .text:0x80092B24; // type:function size:0xBC scope:global align:4
+__CARDSetStatusExAsync = .text:0x80092BE0; // type:function size:0x254 scope:global align:4
+__CARDSetStatusEx = .text:0x80092E34; // type:function size:0x48 scope:global align:4
+CARDGetAttributes = .text:0x80092E7C; // type:function size:0x40 scope:global align:4
+CARDSetAttributes = .text:0x80092EBC; // type:function size:0x84 scope:global align:4
+__GXDefaultTexRegionCallback = .text:0x80092F40; // type:function size:0x7C scope:global align:4
+__GXDefaultTlutRegionCallback = .text:0x80092FBC; // type:function size:0x24 scope:global align:4
+GXInit = .text:0x80092FE0; // type:function size:0x7CC scope:global align:4
+__GXInitGX = .text:0x800937AC; // type:function size:0x884 scope:global align:4
+GXCPInterruptHandler = .text:0x80094030; // type:function size:0x13C scope:global align:4
+GXInitFifoBase = .text:0x8009416C; // type:function size:0x6C scope:global align:4
+GXInitFifoPtrs = .text:0x800941D8; // type:function size:0x70 scope:global align:4
+GXInitFifoLimits = .text:0x80094248; // type:function size:0xC scope:global align:4
+GXSetCPUFifo = .text:0x80094254; // type:function size:0x110 scope:global align:4
+GXSetGPFifo = .text:0x80094364; // type:function size:0x178 scope:global align:4
+GXSaveCPUFifo = .text:0x800944DC; // type:function size:0x20 scope:global align:4
+__GXSaveCPUFifoAux = .text:0x800944FC; // type:function size:0xDC scope:global align:4
+GXGetGPStatus = .text:0x800945D8; // type:function size:0x64 scope:global align:4
+__GXFifoInit = .text:0x8009463C; // type:function size:0x4C scope:global align:4
+__GXFifoReadEnable = .text:0x80094688; // type:function size:0x28 scope:global align:4
+__GXFifoReadDisable = .text:0x800946B0; // type:function size:0x24 scope:global align:4
+__GXFifoLink = .text:0x800946D4; // type:function size:0x44 scope:global align:4
+__GXWriteFifoIntEnable = .text:0x80094718; // type:function size:0x4C scope:global align:4
+__GXWriteFifoIntReset = .text:0x80094764; // type:function size:0x4C scope:global align:4
+__GXCleanGPFifo = .text:0x800947B0; // type:function size:0xFC scope:global align:4
+GXSetCurrentGXThread = .text:0x800948AC; // type:function size:0x4C scope:global align:4
+GXGetCurrentGXThread = .text:0x800948F8; // type:function size:0x8 scope:global align:4
+GXGetCPUFifo = .text:0x80094900; // type:function size:0x8 scope:global align:4
+GXGetGPFifo = .text:0x80094908; // type:function size:0x8 scope:global align:4
+__GXXfVtxSpecs = .text:0x80094910; // type:function size:0x158 scope:global align:4
+GXSetVtxDesc = .text:0x80094A68; // type:function size:0x360 scope:global align:4
+__GXSetVCD = .text:0x80094DC8; // type:function size:0x54 scope:global align:4
+__GXCalculateVLim = .text:0x80094E1C; // type:function size:0x124 scope:global align:4
+GXClearVtxDesc = .text:0x80094F40; // type:function size:0x4C scope:global align:4
+GXSetVtxAttrFmt = .text:0x80094F8C; // type:function size:0x35C scope:global align:4
+__GXSetVAT = .text:0x800952E8; // type:function size:0x9C scope:global align:4
+GXSetArray = .text:0x80095384; // type:function size:0x8C scope:global align:4
+GXInvalidateVtxCache = .text:0x80095410; // type:function size:0x10 scope:global align:4
+GXSetTexCoordGen2 = .text:0x80095420; // type:function size:0x2D0 scope:global align:4
+GXSetNumTexGens = .text:0x800956F0; // type:function size:0x48 scope:global align:4
+GXSetMisc = .text:0x80095738; // type:function size:0x78 scope:global align:4
+GXFlush = .text:0x800957B0; // type:function size:0x5C scope:global align:4
+GXAbortFrame = .text:0x8009580C; // type:function size:0xCC scope:global align:4
+GXSetDrawDone = .text:0x800958D8; // type:function size:0x98 scope:global align:4
+GXDrawDone = .text:0x80095970; // type:function size:0x80 scope:global align:4
+GXPixModeSync = .text:0x800959F0; // type:function size:0x24 scope:global align:4
+GXPokeAlphaMode = .text:0x80095A14; // type:function size:0x14 scope:global align:4
+GXPokeAlphaRead = .text:0x80095A28; // type:function size:0x14 scope:global align:4
+GXPokeAlphaUpdate = .text:0x80095A3C; // type:function size:0x1C scope:global align:4
+GXPokeBlendMode = .text:0x80095A58; // type:function size:0x88 scope:global align:4
+GXPokeColorUpdate = .text:0x80095AE0; // type:function size:0x1C scope:global align:4
+GXPokeDstAlpha = .text:0x80095AFC; // type:function size:0x14 scope:global align:4
+GXPokeDither = .text:0x80095B10; // type:function size:0x1C scope:global align:4
+GXPokeZMode = .text:0x80095B2C; // type:function size:0x28 scope:global align:4
+GXTokenInterruptHandler = .text:0x80095B54; // type:function size:0x88 scope:global align:4
+GXSetDrawDoneCallback = .text:0x80095BDC; // type:function size:0x44 scope:global align:4
+GXFinishInterruptHandler = .text:0x80095C20; // type:function size:0x84 scope:global align:4
+__GXPEInit = .text:0x80095CA4; // type:function size:0x80 scope:global align:4
+__GXSetDirtyState = .text:0x80095D24; // type:function size:0xA0 scope:global align:4
+GXBegin = .text:0x80095DC4; // type:function size:0xF0 scope:global align:4
+__GXSendFlushPrim = .text:0x80095EB4; // type:function size:0x88 scope:global align:4
+GXSetLineWidth = .text:0x80095F3C; // type:function size:0x58 scope:global align:4
+GXSetPointSize = .text:0x80095F94; // type:function size:0x54 scope:global align:4
+GXEnableTexOffsets = .text:0x80095FE8; // type:function size:0x64 scope:global align:4
+GXSetCullMode = .text:0x8009604C; // type:function size:0x50 scope:global align:4
+GXSetCoPlanar = .text:0x8009609C; // type:function size:0x44 scope:global align:4
+__GXSetGenMode = .text:0x800960E0; // type:function size:0x24 scope:global align:4
+GXSetDispCopySrc = .text:0x80096104; // type:function size:0xC0 scope:global align:4
+GXSetTexCopySrc = .text:0x800961C4; // type:function size:0xC0 scope:global align:4
+GXSetDispCopyDst = .text:0x80096284; // type:function size:0x44 scope:global align:4
+GXSetTexCopyDst = .text:0x800962C8; // type:function size:0x170 scope:global align:4
+GXSetDispCopyFrame2Field = .text:0x80096438; // type:function size:0x2C scope:global align:4
+GXSetCopyClamp = .text:0x80096464; // type:function size:0x7C scope:global align:4
+GXSetDispCopyYScale = .text:0x800964E0; // type:function size:0xD4 scope:global align:4
+GXSetCopyClear = .text:0x800965B4; // type:function size:0x68 scope:global align:4
+GXSetCopyFilter = .text:0x8009661C; // type:function size:0x228 scope:global align:4
+GXSetDispCopyGamma = .text:0x80096844; // type:function size:0x1C scope:global align:4
+GXCopyDisp = .text:0x80096860; // type:function size:0x170 scope:global align:4
+GXCopyTex = .text:0x800969D0; // type:function size:0x190 scope:global align:4
+GXClearBoundingBox = .text:0x80096B60; // type:function size:0x38 scope:global align:4
+GXInitLightAttn = .text:0x80096B98; // type:function size:0x1C scope:global align:4
+GXInitLightPos = .text:0x80096BB4; // type:function size:0x10 scope:global align:4
+GXInitLightDir = .text:0x80096BC4; // type:function size:0x1C scope:global align:4
+GXInitLightColor = .text:0x80096BE0; // type:function size:0x28 scope:global align:4
+GXLoadLightObjImm = .text:0x80096C08; // type:function size:0x148 scope:global align:4
+GXSetChanAmbColor = .text:0x80096D50; // type:function size:0x168 scope:global align:4
+GXSetChanMatColor = .text:0x80096EB8; // type:function size:0x168 scope:global align:4
+GXSetNumChans = .text:0x80097020; // type:function size:0x4C scope:global align:4
+GXSetChanCtrl = .text:0x8009706C; // type:function size:0x1E4 scope:global align:4
+__GetImageTileCount = .text:0x80097250; // type:function size:0xC8 scope:global align:4
+GXInitTexObj = .text:0x80097318; // type:function size:0x274 scope:global align:4
+GXInitTexObjCI = .text:0x8009758C; // type:function size:0x48 scope:global align:4
+GXInitTexObjLOD = .text:0x800975D4; // type:function size:0x194 scope:global align:4
+GXGetTexObjFmt = .text:0x80097768; // type:function size:0x8 scope:global align:4
+GXLoadTexObjPreLoaded = .text:0x80097770; // type:function size:0x1A8 scope:global align:4
+GXLoadTexObj = .text:0x80097918; // type:function size:0x54 scope:global align:4
+GXInitTlutObj = .text:0x8009796C; // type:function size:0x48 scope:global align:4
+GXLoadTlut = .text:0x800979B4; // type:function size:0x9C scope:global align:4
+GXInitTexCacheRegion = .text:0x80097A50; // type:function size:0x120 scope:global align:4
+GXInitTlutRegion = .text:0x80097B70; // type:function size:0x48 scope:global align:4
+GXInvalidateTexAll = .text:0x80097BB8; // type:function size:0x48 scope:global align:4
+GXSetTexRegionCallback = .text:0x80097C00; // type:function size:0x14 scope:global align:4
+GXSetTlutRegionCallback = .text:0x80097C14; // type:function size:0x14 scope:global align:4
+GXSetTexCoordScaleManually = .text:0x80097C28; // type:function size:0x9C scope:global align:4
+GXSetTexCoordBias = .text:0x80097CC4; // type:function size:0x84 scope:global align:4
+__SetSURegs = .text:0x80097D48; // type:function size:0xCC scope:global align:4
+__GXSetSUTexRegs = .text:0x80097E14; // type:function size:0x17C scope:global align:4
+__GXSetTmemConfig = .text:0x80097F90; // type:function size:0x240 scope:global align:4
+GXSetTevIndirect = .text:0x800981D0; // type:function size:0x9C scope:global align:4
+GXSetIndTexMtx = .text:0x8009826C; // type:function size:0x160 scope:global align:4
+GXSetIndTexCoordScale = .text:0x800983CC; // type:function size:0x1D4 scope:global align:4
+GXSetIndTexOrder = .text:0x800985A0; // type:function size:0x138 scope:global align:4
+GXSetNumIndStages = .text:0x800986D8; // type:function size:0x2C scope:global align:4
+GXSetTevDirect = .text:0x80098704; // type:function size:0x48 scope:global align:4
+__GXUpdateBPMask = .text:0x8009874C; // type:function size:0xCC scope:global align:4
+__GXFlushTextureState = .text:0x80098818; // type:function size:0x24 scope:global align:4
+GXSetTevOp = .text:0x8009883C; // type:function size:0x1A4 scope:global align:4
+GXSetTevColorIn = .text:0x800989E0; // type:function size:0x80 scope:global align:4
+GXSetTevAlphaIn = .text:0x80098A60; // type:function size:0x84 scope:global align:4
+GXSetTevColorOp = .text:0x80098AE4; // type:function size:0xC0 scope:global align:4
+GXSetTevAlphaOp = .text:0x80098BA4; // type:function size:0xC0 scope:global align:4
+GXSetTevColor = .text:0x80098C64; // type:function size:0x74 scope:global align:4
+GXSetTevKColorSel = .text:0x80098CD8; // type:function size:0x6C scope:global align:4
+GXSetTevKAlphaSel = .text:0x80098D44; // type:function size:0x6C scope:global align:4
+GXSetTevSwapMode = .text:0x80098DB0; // type:function size:0x58 scope:global align:4
+GXSetTevSwapModeTable = .text:0x80098E08; // type:function size:0xA0 scope:global align:4
+GXSetAlphaCompare = .text:0x80098EA8; // type:function size:0x50 scope:global align:4
+GXSetZTexture = .text:0x80098EF8; // type:function size:0x84 scope:global align:4
+GXSetTevOrder = .text:0x80098F7C; // type:function size:0x1DC scope:global align:4
+GXSetNumTevStages = .text:0x80099158; // type:function size:0x34 scope:global align:4
+GXSetFog = .text:0x8009918C; // type:function size:0x1B0 scope:global align:4
+GXSetFogRangeAdj = .text:0x8009933C; // type:function size:0x100 scope:global align:4
+GXSetBlendMode = .text:0x8009943C; // type:function size:0x104 scope:global align:4
+GXSetColorUpdate = .text:0x80099540; // type:function size:0x40 scope:global align:4
+GXSetAlphaUpdate = .text:0x80099580; // type:function size:0x40 scope:global align:4
+GXSetZMode = .text:0x800995C0; // type:function size:0x78 scope:global align:4
+GXSetZCompLoc = .text:0x80099638; // type:function size:0x40 scope:global align:4
+GXSetPixelFmt = .text:0x80099678; // type:function size:0x110 scope:global align:4
+GXSetDither = .text:0x80099788; // type:function size:0x40 scope:global align:4
+GXSetDstAlpha = .text:0x800997C8; // type:function size:0x54 scope:global align:4
+GXSetFieldMask = .text:0x8009981C; // type:function size:0x38 scope:global align:4
+GXSetFieldMode = .text:0x80099854; // type:function size:0x80 scope:global align:4
+__GXSetRange = .text:0x800998D4; // type:function size:0x4 scope:global align:4
+GXBeginDisplayList = .text:0x800998D8; // type:function size:0xC8 scope:global align:4
+GXEndDisplayList = .text:0x800999A0; // type:function size:0xD4 scope:global align:4
+GXCallDisplayList = .text:0x80099A74; // type:function size:0x70 scope:global align:4
+GXSetProjection = .text:0x80099AE4; // type:function size:0xD4 scope:global align:4
+WriteMTXPS4x3 = .text:0x80099BB8; // type:function size:0x34 scope:global align:4
+WriteMTXPS3x3from3x4 = .text:0x80099BEC; // type:function size:0x34 scope:global align:4
+WriteMTXPS4x2 = .text:0x80099C20; // type:function size:0x24 scope:global align:4
+GXLoadPosMtxImm = .text:0x80099C44; // type:function size:0x3C scope:global align:4
+GXLoadNrmMtxImm = .text:0x80099C80; // type:function size:0x40 scope:global align:4
+GXSetCurrentMtx = .text:0x80099CC0; // type:function size:0x3C scope:global align:4
+GXLoadTexMtxImm = .text:0x80099CFC; // type:function size:0x84 scope:global align:4
+GXSetViewportJitter = .text:0x80099D80; // type:function size:0x11C scope:global align:4
+GXSetViewport = .text:0x80099E9C; // type:function size:0x24 scope:global align:4
+GXSetScissor = .text:0x80099EC0; // type:function size:0xB0 scope:global align:4
+GXSetScissorBoxOffset = .text:0x80099F70; // type:function size:0x44 scope:global align:4
+GXSetClipMode = .text:0x80099FB4; // type:function size:0x28 scope:global align:4
+__GXSetMatrixIndex = .text:0x80099FDC; // type:function size:0x84 scope:global align:4
+GXSetGPMetric = .text:0x8009A060; // type:function size:0x898 scope:global align:4
+GXClearGPMetric = .text:0x8009A8F8; // type:function size:0x10 scope:global align:4
+GXReadXfRasMetric = .text:0x8009A908; // type:function size:0xC4 scope:global align:4
+__va_arg = .text:0x8009A9CC; // type:function size:0xC8 scope:global align:4
+__destroy_global_chain = .text:0x8009AA94; // type:function size:0x48 scope:global align:4
+__register_global_object = .text:0x8009AADC; // type:function size:0x18 scope:global align:4
+__copy = .text:0x8009AAF4; // type:function size:0x30 scope:global align:4
+__destroy_arr = .text:0x8009AB24; // type:function size:0x78 scope:global align:4
+__construct_array = .text:0x8009AB9C; // type:function size:0xF8 scope:global align:4
+__dt__26__partial_array_destructorFv = .text:0x8009AC94; // type:function size:0xB8 scope:global align:4
+__ptmf_test = .text:0x8009AD4C; // type:function size:0x30 scope:global align:4
+__ptmf_scall = .text:0x8009AD7C; // type:function size:0x28 scope:global align:4
+__cvt_fp2unsigned = .text:0x8009ADA4; // type:function size:0x5C scope:global align:4
+__save_fpr = .text:0x8009AE00; // type:function size:0x4C scope:global align:4
+_savefpr_25 = .text:0x8009AE2C; // type:label scope:global
+_savefpr_27 = .text:0x8009AE34; // type:label scope:global
+_savefpr_28 = .text:0x8009AE38; // type:label scope:global
+_savefpr_29 = .text:0x8009AE3C; // type:label scope:global
+__restore_fpr = .text:0x8009AE4C; // type:function size:0x4C scope:global align:4
+_restfpr_25 = .text:0x8009AE78; // type:label scope:global
+_restfpr_27 = .text:0x8009AE80; // type:label scope:global
+_restfpr_28 = .text:0x8009AE84; // type:label scope:global
+_restfpr_29 = .text:0x8009AE88; // type:label scope:global
+__save_gpr = .text:0x8009AE98; // type:function size:0x4C scope:global align:4
+_savegpr_14 = .text:0x8009AE98; // type:label scope:global
+_savegpr_15 = .text:0x8009AE9C; // type:label scope:global
+_savegpr_16 = .text:0x8009AEA0; // type:label scope:global
+_savegpr_17 = .text:0x8009AEA4; // type:label scope:global
+_savegpr_18 = .text:0x8009AEA8; // type:label scope:global
+_savegpr_19 = .text:0x8009AEAC; // type:label scope:global
+_savegpr_20 = .text:0x8009AEB0; // type:label scope:global
+_savegpr_21 = .text:0x8009AEB4; // type:label scope:global
+_savegpr_22 = .text:0x8009AEB8; // type:label scope:global
+_savegpr_23 = .text:0x8009AEBC; // type:label scope:global
+_savegpr_24 = .text:0x8009AEC0; // type:label scope:global
+_savegpr_25 = .text:0x8009AEC4; // type:label scope:global
+_savegpr_26 = .text:0x8009AEC8; // type:label scope:global
+_savegpr_27 = .text:0x8009AECC; // type:label scope:global
+_savegpr_28 = .text:0x8009AED0; // type:label scope:global
+_savegpr_29 = .text:0x8009AED4; // type:label scope:global
+__restore_gpr = .text:0x8009AEE4; // type:function size:0x4C scope:global align:4
+_restgpr_14 = .text:0x8009AEE4; // type:label scope:global
+_restgpr_15 = .text:0x8009AEE8; // type:label scope:global
+_restgpr_16 = .text:0x8009AEEC; // type:label scope:global
+_restgpr_17 = .text:0x8009AEF0; // type:label scope:global
+_restgpr_18 = .text:0x8009AEF4; // type:label scope:global
+_restgpr_19 = .text:0x8009AEF8; // type:label scope:global
+_restgpr_20 = .text:0x8009AEFC; // type:label scope:global
+_restgpr_21 = .text:0x8009AF00; // type:label scope:global
+_restgpr_22 = .text:0x8009AF04; // type:label scope:global
+_restgpr_23 = .text:0x8009AF08; // type:label scope:global
+_restgpr_24 = .text:0x8009AF0C; // type:label scope:global
+_restgpr_25 = .text:0x8009AF10; // type:label scope:global
+_restgpr_26 = .text:0x8009AF14; // type:label scope:global
+_restgpr_27 = .text:0x8009AF18; // type:label scope:global
+_restgpr_28 = .text:0x8009AF1C; // type:label scope:global
+_restgpr_29 = .text:0x8009AF20; // type:label scope:global
+__div2u = .text:0x8009AF30; // type:function size:0xEC scope:global align:4
+__div2i = .text:0x8009B01C; // type:function size:0x138 scope:global align:4
+__mod2u = .text:0x8009B154; // type:function size:0xE4 scope:global align:4
+__mod2i = .text:0x8009B238; // type:function size:0x10C scope:global align:4
+__shl2i = .text:0x8009B344; // type:function size:0x24 scope:global align:4
+__shr2u = .text:0x8009B368; // type:function size:0x24 scope:global align:4
+__shr2i = .text:0x8009B38C; // type:function size:0x28 scope:global align:4
+__cvt_ull_flt = .text:0x8009B3B4; // type:function size:0xA0 scope:global align:4
+__cvt_dbl_usll = .text:0x8009B454; // type:function size:0xCC scope:global align:4
+GetR2__Fv = .text:0x8009B520; // type:function size:0x8 scope:global align:4
+__fini_cpp_exceptions = .text:0x8009B528; // type:function size:0x34 scope:global align:4
+__init_cpp_exceptions = .text:0x8009B55C; // type:function size:0x40 scope:global align:4
+__unregister_fragment = .text:0x8009B59C; // type:function size:0x34 scope:global align:4
+__register_fragment = .text:0x8009B5D0; // type:function size:0x34 scope:global align:4
+exit = .text:0x8009B604; // type:function size:0xCC scope:global align:4
+__flush_all = .text:0x8009B6D0; // type:function size:0x70 scope:global align:4
+__close_all = .text:0x8009B740; // type:function size:0x98 scope:global align:4
+__num2dec = .text:0x8009B7D8; // type:function size:0x1A4 scope:global align:4
+__num2dec_internal = .text:0x8009B97C; // type:function size:0x23C scope:global align:4
+__two_exp = .text:0x8009BBB8; // type:function size:0x340 scope:global align:4
+__str2dec = .text:0x8009BEF8; // type:function size:0xEC scope:global align:4
+__timesdec = .text:0x8009BFE4; // type:function size:0x28C scope:global align:4
+__ull2dec = .text:0x8009C270; // type:function size:0x110 scope:global align:4
+__count_trailing_zerol = .text:0x8009C380; // type:function size:0x70 scope:global align:4
+lldiv = .text:0x8009C3F0; // type:function size:0x15C scope:global align:4
+ldiv = .text:0x8009C54C; // type:function size:0x58 scope:global align:4
+__flush_buffer = .text:0x8009C5A4; // type:function size:0xC4 scope:global align:4
+__prep_buffer = .text:0x8009C668; // type:function size:0x34 scope:global align:4
+tolower = .text:0x8009C69C; // type:function size:0x24 scope:global align:4
+__fwrite = .text:0x8009C6C0; // type:function size:0x30C scope:global align:4
+fwrite = .text:0x8009C9CC; // type:function size:0x20 scope:global align:4
+fflush = .text:0x8009C9EC; // type:function size:0x138 scope:global align:4
+fclose = .text:0x8009CB24; // type:function size:0xC0 scope:global align:4
+fseek = .text:0x8009CBE4; // type:function size:0x20 scope:global align:4
+_fseek = .text:0x8009CC04; // type:function size:0x23C scope:global align:4
+ftell = .text:0x8009CE40; // type:function size:0x70 scope:global align:4
+wcstombs = .text:0x8009CEB0; // type:function size:0xA0 scope:global align:4
+unicode_to_UTF8 = .text:0x8009CF50; // type:function size:0xA4 scope:global align:4
+memcmp = .text:0x8009CFF4; // type:function size:0x4C scope:global align:4
+__memrchr = .text:0x8009D040; // type:function size:0x2C scope:global align:4
+memchr = .text:0x8009D06C; // type:function size:0x2C scope:global align:4
+memmove = .text:0x8009D098; // type:function size:0xCC scope:global align:4
+__copy_longs_rev_unaligned = .text:0x8009D164; // type:function size:0xB0 scope:global align:4
+__copy_longs_unaligned = .text:0x8009D214; // type:function size:0xC4 scope:global align:4
+__copy_longs_rev_aligned = .text:0x8009D2D8; // type:function size:0xAC scope:global align:4
+__copy_longs_aligned = .text:0x8009D384; // type:function size:0xC0 scope:global align:4
+__stdio_atexit = .text:0x8009D444; // type:function size:0x10 scope:global align:4
+snprintf = .text:0x8009D454; // type:function size:0xD4 scope:global align:4
+vsnprintf = .text:0x8009D528; // type:function size:0x74 scope:global align:4
+vprintf = .text:0x8009D59C; // type:function size:0x7C scope:global align:4
+printf = .text:0x8009D618; // type:function size:0xCC scope:global align:4
+__StringWrite = .text:0x8009D6E4; // type:function size:0x6C scope:global align:4
+__FileWrite = .text:0x8009D750; // type:function size:0x58 scope:global align:4
+__pformatter = .text:0x8009D7A8; // type:function size:0x774 scope:global align:4
+float2str = .text:0x8009DF1C; // type:function size:0x6EC scope:global align:4
+round_decimal = .text:0x8009E608; // type:function size:0x12C scope:global align:4
+double2hex = .text:0x8009E734; // type:function size:0x338 scope:global align:4
+longlong2str = .text:0x8009EA6C; // type:function size:0x2DC scope:global align:4
+long2str = .text:0x8009ED48; // type:function size:0x220 scope:global align:4
+parse_format = .text:0x8009EF68; // type:function size:0x504 scope:global align:4
+srand = .text:0x8009F46C; // type:function size:0x8 scope:global align:4
+rand = .text:0x8009F474; // type:function size:0x20 scope:global align:4
+__StringRead = .text:0x8009F494; // type:function size:0x90 scope:global align:4
+strstr = .text:0x8009F524; // type:function size:0x68 scope:global align:4
+strchr = .text:0x8009F58C; // type:function size:0x30 scope:global align:4
+strncmp = .text:0x8009F5BC; // type:function size:0x40 scope:global align:4
+strcmp = .text:0x8009F5FC; // type:function size:0x128 scope:global align:4
+strcat = .text:0x8009F724; // type:function size:0x2C scope:global align:4
+strncpy = .text:0x8009F750; // type:function size:0x44 scope:global align:4
+strcpy = .text:0x8009F794; // type:function size:0xB8 scope:global align:4
+strlen = .text:0x8009F84C; // type:function size:0x1C scope:global align:4
+strtol = .text:0x8009F868; // type:function size:0xF0 scope:global align:4
+__strtoul = .text:0x8009F958; // type:function size:0x378 scope:global align:4
+__close_console = .text:0x8009FCD0; // type:function size:0x8 scope:global align:4
+__write_console = .text:0x8009FCD8; // type:function size:0xC4 scope:global align:4
+fwide = .text:0x8009FD9C; // type:function size:0x88 scope:global align:4
+__ieee754_acos = .text:0x8009FE24; // type:function size:0x310 scope:global align:4
+__ieee754_atan2 = .text:0x800A0134; // type:function size:0x290 scope:global align:4
+__ieee754_rem_pio2 = .text:0x800A03C4; // type:function size:0x3A0 scope:global align:4
+__kernel_cos = .text:0x800A0764; // type:function size:0xF4 scope:global align:4
+__kernel_rem_pio2 = .text:0x800A0858; // type:function size:0xE54 scope:global align:4
+__kernel_sin = .text:0x800A16AC; // type:function size:0xA0 scope:global align:4
+atan = .text:0x800A174C; // type:function size:0x200 scope:global align:4
+copysign = .text:0x800A194C; // type:function size:0x28 scope:global align:4
+cos = .text:0x800A1974; // type:function size:0xD4 scope:global align:4
+floor = .text:0x800A1A48; // type:function size:0x148 scope:global align:4
+frexp = .text:0x800A1B90; // type:function size:0x8C scope:global align:4
+ldexp = .text:0x800A1C1C; // type:function size:0x1C4 scope:global align:4
+modf = .text:0x800A1DE0; // type:function size:0xFC scope:global align:4
+sin = .text:0x800A1EDC; // type:function size:0xD8 scope:global align:4
+acos = .text:0x800A1FB4; // type:function size:0x20 scope:global align:4
+atan2 = .text:0x800A1FD4; // type:function size:0x20 scope:global align:4
+TRKNubMainLoop = .text:0x800A1FF4; // type:function size:0xF8 scope:global align:4
+TRKDestructEvent = .text:0x800A20EC; // type:function size:0x24 scope:global align:4
+TRKConstructEvent = .text:0x800A2110; // type:function size:0x18 scope:global align:4
+TRKPostEvent = .text:0x800A2128; // type:function size:0xE0 scope:global align:4
+TRKGetNextEvent = .text:0x800A2208; // type:function size:0xB4 scope:global align:4
+TRKInitializeEventQueue = .text:0x800A22BC; // type:function size:0x58 scope:global align:4
+TRKNubWelcome = .text:0x800A2314; // type:function size:0x28 scope:global align:4
+TRKTerminateNub = .text:0x800A233C; // type:function size:0x24 scope:global align:4
+TRKInitializeNub = .text:0x800A2360; // type:function size:0x134 scope:global align:4
+TRKMessageSend = .text:0x800A2494; // type:function size:0x1DC scope:global align:4
+TRKReadBuffer_ui32 = .text:0x800A2670; // type:function size:0xF0 scope:global align:4
+TRKReadBuffer_ui8 = .text:0x800A2760; // type:function size:0x98 scope:global align:4
+TRKReadBuffer1_ui64 = .text:0x800A27F8; // type:function size:0xE8 scope:global align:4
+TRKReadBuffer1_ui32 = .text:0x800A28E0; // type:function size:0xC8 scope:global align:4
+TRKReadBuffer1_ui16 = .text:0x800A29A8; // type:function size:0xB8 scope:global align:4
+TRKReadBuffer1_ui8 = .text:0x800A2A60; // type:function size:0x80 scope:global align:4
+TRKAppendBuffer_ui32 = .text:0x800A2AE0; // type:function size:0xA8 scope:global align:4
+TRKAppendBuffer_ui8 = .text:0x800A2B88; // type:function size:0x68 scope:global align:4
+TRKAppendBuffer1_ui64 = .text:0x800A2BF0; // type:function size:0x88 scope:global align:4
+TRKAppendBuffer1_ui32 = .text:0x800A2C78; // type:function size:0x64 scope:global align:4
+TRKAppendBuffer1_ui16 = .text:0x800A2CDC; // type:function size:0x54 scope:global align:4
+TRKReadBuffer = .text:0x800A2D30; // type:function size:0x8C scope:global align:4
+TRKAppendBuffer = .text:0x800A2DBC; // type:function size:0xA4 scope:global align:4
+TRKSetBufferPosition = .text:0x800A2E60; // type:function size:0x30 scope:global align:4
+TRKResetBuffer = .text:0x800A2E90; // type:function size:0x40 scope:global align:4
+TRKReleaseBuffer = .text:0x800A2ED0; // type:function size:0x64 scope:global align:4
+TRKGetBuffer = .text:0x800A2F34; // type:function size:0x2C scope:global align:4
+TRKGetFreeBuffer = .text:0x800A2F60; // type:function size:0xC8 scope:global align:4
+TRKInitializeMessageBuffers = .text:0x800A3028; // type:function size:0x74 scope:global align:4
+TRKTerminateSerialHandler = .text:0x800A309C; // type:function size:0x8 scope:global align:4
+TRKInitializeSerialHandler = .text:0x800A30A4; // type:function size:0x24 scope:global align:4
+TRKProcessInput = .text:0x800A30C8; // type:function size:0x50 scope:global align:4
+TRKGetInput = .text:0x800A3118; // type:function size:0x98 scope:global align:4
+TRKTestForPacket = .text:0x800A31B0; // type:function size:0x2B8 scope:global align:4
+usr_put_initialize = .text:0x800A3468; // type:function size:0x4 scope:global align:4
+usr_puts_serial = .text:0x800A346C; // type:function size:0x88 scope:global align:4
+TRKDispatchMessage = .text:0x800A34F4; // type:function size:0x84 scope:global align:4
+TRKInitializeDispatcher = .text:0x800A3578; // type:function size:0x18 scope:global align:4
+TRKDoSetOption = .text:0x800A3590; // type:function size:0x1A4 scope:global align:4
+TRKDoStop = .text:0x800A3734; // type:function size:0x100 scope:global align:4
+TRKDoStep = .text:0x800A3834; // type:function size:0x530 scope:global align:4
+TRKDoContinue = .text:0x800A3D64; // type:function size:0x154 scope:global align:4
+TRKDoFlushCache = .text:0x800A3EB8; // type:function size:0x2F8 scope:global align:4
+TRKDoWriteRegisters = .text:0x800A41B0; // type:function size:0x3C8 scope:global align:4
+TRKDoReadRegisters = .text:0x800A4578; // type:function size:0x3CC scope:global align:4
+TRKDoWriteMemory = .text:0x800A4944; // type:function size:0x420 scope:global align:4
+TRKDoReadMemory = .text:0x800A4D64; // type:function size:0x410 scope:global align:4
+TRKDoCPUType = .text:0x800A5174; // type:function size:0x398 scope:global align:4
+TRKDoSupportMask = .text:0x800A550C; // type:function size:0x230 scope:global align:4
+TRKDoVersions = .text:0x800A573C; // type:function size:0x2D8 scope:global align:4
+TRKDoReset = .text:0x800A5A14; // type:function size:0xB8 scope:global align:4
+TRKDoDisconnect = .text:0x800A5ACC; // type:function size:0xE4 scope:global align:4
+TRKDoConnect = .text:0x800A5BB0; // type:function size:0xBC scope:global align:4
+TRKDoUnsupported = .text:0x800A5C6C; // type:function size:0xB0 scope:global align:4
+TRKStandardACK = .text:0x800A5D1C; // type:function size:0xB8 scope:global align:4
+SetTRKConnected = .text:0x800A5DD4; // type:function size:0xC scope:global align:4
+GetTRKConnected = .text:0x800A5DE0; // type:function size:0x10 scope:global align:4
+HandlePositionFileSupportRequest = .text:0x800A5DF0; // type:function size:0x190 scope:global align:4
+HandleCloseFileSupportRequest = .text:0x800A5F80; // type:function size:0x120 scope:global align:4
+HandleOpenFileSupportRequest = .text:0x800A60A0; // type:function size:0x1A8 scope:global align:4
+TRKRequestSend = .text:0x800A6248; // type:function size:0x1A4 scope:global align:4
+TRKSuppAccessFile = .text:0x800A63EC; // type:function size:0x2C4 scope:global align:4
+TRKReleaseMutex = .text:0x800A66B0; // type:function size:0x8 scope:global align:4
+TRKAcquireMutex = .text:0x800A66B8; // type:function size:0x8 scope:global align:4
+TRKInitializeMutex = .text:0x800A66C0; // type:function size:0x8 scope:global align:4
+TRKDoNotifyStopped = .text:0x800A66C8; // type:function size:0xD8 scope:global align:4
+TRK_flush_cache = .text:0x800A67A0; // type:function size:0x38 scope:global align:4
+TRK_fill_mem = .text:0x800A67D8; // type:function size:0xBC scope:global align:4
+__TRK_get_MSR = .text:0x800A6894; // type:function size:0x8 scope:global align:4
+__TRK_set_MSR = .text:0x800A689C; // type:function size:0x8 scope:global align:4
+TRK_ppc_memcpy = .text:0x800A68A4; // type:function size:0x3C scope:global align:4
+TRKInterruptHandler = .text:0x800A68E0; // type:function size:0x194 scope:global align:4
+TRKExceptionHandler = .text:0x800A6A74; // type:function size:0x9C scope:global align:4
+TRKSwapAndGo = .text:0x800A6B10; // type:function size:0xC4 scope:global align:4
+TRKInterruptHandlerEnableInterrupts = .text:0x800A6BD4; // type:function size:0x54 scope:global align:4
+TRKTargetSetInputPendingPtr = .text:0x800A6C28; // type:function size:0x10 scope:global align:4
+TRKPPCAccessFPRegister = .text:0x800A6C38; // type:function size:0x21C scope:global align:4
+TRKTargetStop = .text:0x800A6E54; // type:function size:0x18 scope:global align:4
+TRKTargetSetStopped = .text:0x800A6E6C; // type:function size:0x10 scope:global align:4
+TRKTargetStopped = .text:0x800A6E7C; // type:function size:0x10 scope:global align:4
+TRKTargetFlushCache = .text:0x800A6E8C; // type:function size:0x3C scope:global align:4
+TRKTargetSupportRequest = .text:0x800A6EC8; // type:function size:0x208 scope:global align:4
+TRKTargetGetPC = .text:0x800A70D0; // type:function size:0x10 scope:global align:4
+TRKTargetStepOutOfRange = .text:0x800A70E0; // type:function size:0x7C scope:global align:4
+TRKTargetSingleStep = .text:0x800A715C; // type:function size:0x6C scope:global align:4
+TRKTargetAddExceptionInfo = .text:0x800A71C8; // type:function size:0xAC scope:global align:4
+TRKTargetAddStopInfo = .text:0x800A7274; // type:function size:0x124 scope:global align:4
+TRKTargetInterrupt = .text:0x800A7398; // type:function size:0x15C scope:global align:4
+TRKPostInterruptEvent = .text:0x800A74F4; // type:function size:0xC0 scope:global align:4
+TRKTargetCPUType = .text:0x800A75B4; // type:function size:0x60 scope:global align:4
+TRKTargetSupportMask = .text:0x800A7614; // type:function size:0xA4 scope:global align:4
+TRKTargetVersions = .text:0x800A76B8; // type:function size:0x24 scope:global align:4
+TRKTargetAccessExtended2 = .text:0x800A76DC; // type:function size:0x438 scope:global align:4
+TRKTargetAccessExtended1 = .text:0x800A7B14; // type:function size:0x170 scope:global align:4
+TRKTargetAccessFP = .text:0x800A7C84; // type:function size:0x13C scope:global align:4
+TRKTargetAccessDefault = .text:0x800A7DC0; // type:function size:0xF4 scope:global align:4
+TRKTargetAccessMemory = .text:0x800A7EB4; // type:function size:0x14C scope:global align:4
+TRKValidMemory32 = .text:0x800A8000; // type:function size:0x124 scope:global align:4
+TRKAccessFile = .text:0x800A8130; // type:label scope:global
+TRKOpenFile = .text:0x800A8138; // type:label scope:global
+TRKCloseFile = .text:0x800A8140; // type:label scope:global
+TRKPositionFile = .text:0x800A8148; // type:label scope:global
+InitMetroTRK = .text:0x800A8150; // type:function size:0x94 scope:global align:4
+TRKInitializeTarget = .text:0x800A81E4; // type:function size:0x4C scope:global align:4
+TRKTargetTranslate = .text:0x800A8230; // type:function size:0x40 scope:global align:4
+EnableMetroTRKInterrupts = .text:0x800A8270; // type:function size:0x20 scope:global align:4
+TRKSaveExtended1Block = .text:0x800A8290; // type:function size:0x1B8 scope:global align:4
+TRKRestoreExtended1Block = .text:0x800A8448; // type:function size:0x1B8 scope:global align:4
+TRKTargetCPUMinorType = .text:0x800A8600; // type:function size:0x8 scope:global align:4
+TRK_main = .text:0x800A8608; // type:function size:0x44 scope:global align:4
+TRKLoadContext = .text:0x800A864C; // type:function size:0x88 scope:global align:4
+TRKUARTInterruptHandler = .text:0x800A86D4; // type:function size:0x4 scope:global align:4
+TRK_board_display = .text:0x800A86D8; // type:function size:0x24 scope:global align:4
+UnreserveEXI2Port = .text:0x800A86FC; // type:function size:0x30 scope:global align:4
+ReserveEXI2Port = .text:0x800A872C; // type:function size:0x30 scope:global align:4
+TRKReadUARTPoll = .text:0x800A875C; // type:function size:0xF0 scope:global align:4
+WriteUART1 = .text:0x800A884C; // type:function size:0x28 scope:global align:4
+WriteUARTFlush = .text:0x800A8874; // type:function size:0xE0 scope:global align:4
+EnableEXI2Interrupts = .text:0x800A8954; // type:function size:0x30 scope:global align:4
+TRKInitializeIntDrivenUART = .text:0x800A8984; // type:function size:0x3C scope:global align:4
+InitMetroTRKCommTable = .text:0x800A89C0; // type:function size:0x100 scope:global align:4
+TRKEXICallBack = .text:0x800A8AC0; // type:function size:0x38 scope:global align:4
+TRKTargetContinue = .text:0x800A8AF8; // type:function size:0x34 scope:global align:4
+GetUseSerialIO = .text:0x800A8B2C; // type:function size:0x10 scope:global align:4
+SetUseSerialIO = .text:0x800A8B3C; // type:function size:0xC scope:global align:4
+__TRK_write_console = .text:0x800A8B48; // type:function size:0xBC scope:global align:4
+__read_console = .text:0x800A8C04; // type:function size:0xBC scope:global align:4
+EXI2_Init = .text:0x800A8CC0; // type:function size:0x4 scope:global align:4
+EXI2_EnableInterrupts = .text:0x800A8CC4; // type:function size:0x4 scope:global align:4
+EXI2_Poll = .text:0x800A8CC8; // type:function size:0x8 scope:global align:4
+EXI2_ReadN = .text:0x800A8CD0; // type:function size:0x8 scope:global align:4
+EXI2_WriteN = .text:0x800A8CD8; // type:function size:0x8 scope:global align:4
+EXI2_Reserve = .text:0x800A8CE0; // type:function size:0x4 scope:global align:4
+EXI2_Unreserve = .text:0x800A8CE4; // type:function size:0x4 scope:global align:4
+AMC_IsStub = .text:0x800A8CE8; // type:function size:0x8 scope:global align:4
+DBClose = .text:0x800A8CF0; // type:function size:0x4 scope:global align:4
+DBOpen = .text:0x800A8CF4; // type:function size:0x4 scope:global align:4
+DBWrite = .text:0x800A8CF8; // type:function size:0x260 scope:global align:4
+DBRead = .text:0x800A8F58; // type:function size:0x8C scope:global align:4
+DBQueryData = .text:0x800A8FE4; // type:function size:0x9C scope:global align:4
+DBInitInterrupts = .text:0x800A9080; // type:function size:0x54 scope:global align:4
+DBInitComm = .text:0x800A90D4; // type:function size:0x78 scope:global align:4
+DBGHandler = .text:0x800A914C; // type:function size:0x40 scope:global align:4
+MWCallback = .text:0x800A918C; // type:function size:0x3C scope:global align:4
+DBGReadStatus = .text:0x800A91C8; // type:function size:0xAC scope:global align:4
+DBGWrite = .text:0x800A9274; // type:function size:0xDC scope:global align:4
+DBGRead = .text:0x800A9350; // type:function size:0xDC scope:global align:4
+DBGReadMailbox = .text:0x800A942C; // type:function size:0xAC scope:global align:4
+DBGEXIImm = .text:0x800A94D8; // type:function size:0x298 scope:global align:4
+Hu_IsStub = .text:0x800A9770; // type:function size:0x8 scope:global align:4
+__init_cpp_exceptions_reference = .ctors:0x800A9780; // type:object size:0x4 scope:global align:4
+_ctors = .ctors:0x800A9780; // type:label scope:global data:4byte
+__destroy_global_chain_reference = .dtors:0x800A97C0; // type:object size:0x4 scope:local align:4
+_dtors = .dtors:0x800A97C0; // type:label scope:global data:4byte
+__fini_cpp_exceptions_reference = .dtors:0x800A97C4; // type:object size:0x4 scope:global align:4
+__destroy_global_chain_reference = .dtors:0x800A97C8; // type:object size:0x4 scope:local align:4
+tbl$544 = .rodata:0x800A97E0; // type:object size:0x8 scope:local align:4 data:4byte
+@297 = .rodata:0x800A97E8; // type:object size:0x4 scope:local align:4 data:float
+@298 = .rodata:0x800A97EC; // type:object size:0x4 scope:local align:4 data:float
+@300 = .rodata:0x800A97F0; // type:object size:0x8 scope:local align:8 data:double
+this = .rodata:0x800A97F8; // type:object size:0x4 scope:local align:4 data:4byte
+@305 = .rodata:0x800A97FC; // type:object size:0x4 scope:local align:4 data:float
+@316 = .rodata:0x800A9800; // type:object size:0x4 scope:local align:4 data:float
+@325 = .rodata:0x800A9804; // type:object size:0x4 scope:local align:4 data:float
+draw_proc$341 = .rodata:0x800A9808; // type:object size:0x14 scope:local align:4
+@354 = .rodata:0x800A981C; // type:object size:0x4 scope:local align:4 data:float
+@355 = .rodata:0x800A9820; // type:object size:0x4 scope:local align:4 data:float
+@356 = .rodata:0x800A9824; // type:object size:0x4 scope:local align:4 data:float
+@357 = .rodata:0x800A9828; // type:object size:0x4 scope:local align:4 data:float
+@358 = .rodata:0x800A982C; // type:object size:0x4 scope:local align:4 data:float
+@359 = .rodata:0x800A9830; // type:object size:0x4 scope:local align:4 data:float
+@360 = .rodata:0x800A9834; // type:object size:0x4 scope:local align:4 data:float
+...rodata.0 = .rodata:0x800A9838; // type:label scope:local
+SEQ_TABLE = .rodata:0x800A9838; // type:object size:0x100 scope:global align:1
+SE_FLOOR_DATA = .rodata:0x800A9938; // type:object size:0xBE scope:global align:2
+SE_ROOM_INS_DATA = .rodata:0x800A99F6; // type:object size:0x22 scope:global align:2 data:2byte
+SE_ROOM_INS_RANDOM_OFFSET = .rodata:0x800A9A18; // type:object size:0x22 scope:global align:2
+SHIIN2BOIN = .rodata:0x800A9A3A; // type:object size:0x56 scope:global align:1
+TRGPRIO = .rodata:0x800A9A90; // type:object size:0x80 scope:global align:1 data:string
+sou_trg_se_init = .rodata:0x800A9B10; // type:object size:0x20 scope:global align:4
+sou_voice_se_init = .rodata:0x800A9B30; // type:object size:0x24 scope:global align:4
+sou_lev_se_init = .rodata:0x800A9B54; // type:object size:0x14 scope:global align:4
+sou_lev_ongen_data_init = .rodata:0x800A9B68; // type:object size:0x14 scope:global align:4
+sou_ongen_entry_init = .rodata:0x800A9B7C; // type:object size:0x10 scope:global align:4
+sou_se_fade_init = .rodata:0x800A9B8C; // type:object size:0xC scope:global align:4
+melody_seq_size = .rodata:0x800A9B98; // type:object size:0x4AC scope:global align:4
+melody_seq_offset = .rodata:0x800AA044; // type:object size:0x4AC scope:global align:4
+melody$236 = .rodata:0x800AA4F0; // type:object size:0x10 scope:local align:1
+@287 = .rodata:0x800AA500; // type:object size:0x9 scope:local align:4 data:string
+@307 = .rodata:0x800AA50C; // type:object size:0xC scope:local align:4 data:string
+@240 = .rodata:0x800AA518; // type:object size:0xE scope:local align:4 data:string
+@160 = .rodata:0x800AA528; // type:object size:0xB scope:local align:4 data:string
+@218 = .rodata:0x800AA538; // type:object size:0xE scope:local align:4 data:string
+@219 = .rodata:0x800AA548; // type:object size:0xC scope:local align:4 data:string
+@257 = .rodata:0x800AA558; // type:object size:0x9 scope:local align:4 data:string
+@262 = .rodata:0x800AA564; // type:object size:0xB scope:local align:4 data:string
+@360 = .rodata:0x800AA570; // type:object size:0x1D scope:local align:4 data:string
+@372 = .rodata:0x800AA590; // type:object size:0x17 scope:local align:4 data:string
+@405 = .rodata:0x800AA5A8; // type:object size:0xF scope:local align:4 data:string
+@954 = .rodata:0x800AA5B8; // type:object size:0x2F scope:local align:4 data:string
+...rodata.0 = .rodata:0x800AA5E8; // type:label scope:local
+@263 = .rodata:0x800AA5E8; // type:object size:0x9 scope:local align:4 data:string
+@823 = .rodata:0x800AA5F4; // type:object size:0x28 scope:local align:4 data:string
+@824 = .rodata:0x800AA61C; // type:object size:0x28 scope:local align:4 data:string
+@825 = .rodata:0x800AA644; // type:object size:0x28 scope:local align:4 data:string
+@826 = .rodata:0x800AA66C; // type:object size:0x9 scope:local align:4 data:string
+@999 = .rodata:0x800AA678; // type:object size:0x24 scope:local align:4 data:string
+@1000 = .rodata:0x800AA69C; // type:object size:0xF scope:local align:4 data:string
+@1001 = .rodata:0x800AA6AC; // type:object size:0xF scope:local align:4 data:string
+@1002 = .rodata:0x800AA6BC; // type:object size:0xF scope:local align:4 data:string
+@1003 = .rodata:0x800AA6CC; // type:object size:0xF scope:local align:4 data:string
+@1004 = .rodata:0x800AA6DC; // type:object size:0x12 scope:local align:4 data:string
+@1110 = .rodata:0x800AA6F0; // type:object size:0x9 scope:local align:4 data:string
+@443 = .rodata:0x800AA700; // type:object size:0x1C scope:local align:4 data:string
+...rodata.0 = .rodata:0x800AA720; // type:label scope:local
+@340 = .rodata:0x800AA720; // type:object size:0xF scope:local align:4 data:string
+@341 = .rodata:0x800AA730; // type:object size:0x10 scope:local align:4 data:string
+@342 = .rodata:0x800AA740; // type:object size:0x13 scope:local align:4 data:string
+@343 = .rodata:0x800AA754; // type:object size:0x13 scope:local align:4 data:string
+@344 = .rodata:0x800AA768; // type:object size:0x9 scope:local align:4 data:string
+@345 = .rodata:0x800AA774; // type:object size:0x9 scope:local align:4 data:string
+@284 = .rodata:0x800AA780; // type:object size:0x1D scope:local align:4 data:string
+@137 = .rodata:0x800AA7A0; // type:object size:0x11 scope:local align:4 data:string
+@138 = .rodata:0x800AA7B4; // type:object size:0x27 scope:local align:4 data:string
+...rodata.0 = .rodata:0x800AA7E0; // type:label scope:local
+@99 = .rodata:0x800AA7E0; // type:object size:0xD scope:local align:4 data:string
+@100 = .rodata:0x800AA7F0; // type:object size:0x27 scope:local align:4 data:string
+@101 = .rodata:0x800AA818; // type:object size:0x1A scope:local align:4 data:string
+...rodata.0 = .rodata:0x800AA838; // type:label scope:local
+@1543 = .rodata:0x800AA838; // type:object size:0x29 scope:local align:4 data:string
+@1544 = .rodata:0x800AA864; // type:object size:0x1B scope:local align:4 data:string
+@1810 = .rodata:0x800AA880; // type:object size:0x1C scope:local align:4
+@1811 = .rodata:0x800AA89C; // type:object size:0x1F scope:local align:4
+@1813 = .rodata:0x800AA8BC; // type:object size:0x39 scope:local align:4
+@1815 = .rodata:0x800AA8F8; // type:object size:0x2B scope:local align:4
+array$228 = .rodata:0x800AA928; // type:object size:0x8 scope:local align:4
+array$247 = .rodata:0x800AA930; // type:object size:0x4 scope:local align:4
+table$478 = .rodata:0x800AA934; // type:object size:0x10 scope:local align:4
+...rodata.0 = .rodata:0x800AA948; // type:label scope:local
+@228 = .rodata:0x800AA948; // type:object size:0xC scope:local align:4 data:4byte
+@229 = .rodata:0x800AA954; // type:object size:0xC scope:local align:4
+@230 = .rodata:0x800AA960; // type:object size:0xC scope:local align:4
+@232 = .rodata:0x800AA96C; // type:object size:0x4 scope:local align:4 data:float
+@233 = .rodata:0x800AA970; // type:object size:0x4 scope:local align:4
+@234 = .rodata:0x800AA974; // type:object size:0x4 scope:local align:4
+@235 = .rodata:0x800AA978; // type:object size:0x4 scope:local align:4
+color_r_0xf0$478 = .rodata:0x800AA97C; // type:object size:0x4 scope:local align:4 data:4byte
+color_thres$627 = .rodata:0x800AA980; // type:object size:0x4 scope:local align:4
+@812 = .rodata:0x800AA984; // type:object size:0x4 scope:local align:4
+@814 = .rodata:0x800AA988; // type:object size:0x8 scope:local align:8
+color_thres$820 = .rodata:0x800AA990; // type:object size:0x4 scope:local align:4
+black$960 = .rodata:0x800AA994; // type:object size:0x4 scope:local align:4 data:4byte
+black$1005 = .rodata:0x800AA998; // type:object size:0x4 scope:local align:4
+color0$1006 = .rodata:0x800AA99C; // type:object size:0x4 scope:local align:4 data:string
+color1$1007 = .rodata:0x800AA9A0; // type:object size:0x4 scope:local align:4 data:string
+color2$1008 = .rodata:0x800AA9A4; // type:object size:0x4 scope:local align:4
+camPt$2267 = .rodata:0x800AA9A8; // type:object size:0xC scope:local align:4
+at$2268 = .rodata:0x800AA9B4; // type:object size:0xC scope:local align:4
+up$2269 = .rodata:0x800AA9C0; // type:object size:0xC scope:local align:4
+@2373 = .rodata:0x800AA9CC; // type:object size:0x4 scope:local align:4 data:float
+@2374 = .rodata:0x800AA9D0; // type:object size:0x4 scope:local align:4 data:float
+@2375 = .rodata:0x800AA9D4; // type:object size:0x4 scope:local align:4 data:float
+@2376 = .rodata:0x800AA9D8; // type:object size:0x4 scope:local align:4 data:float
+checkTableNG = .rodata:0x800AA9DC; // type:object size:0x14 scope:global align:4
+@3416 = .rodata:0x800AA9F0; // type:object size:0x4 scope:local align:4 data:float
+@3436 = .rodata:0x800AA9F8; // type:object size:0x8 scope:local align:8 data:double
+@3752 = .rodata:0x800AAA00; // type:object size:0x4 scope:local align:4 data:float
+@3753 = .rodata:0x800AAA04; // type:object size:0x4 scope:local align:4 data:float
+@3964 = .rodata:0x800AAA08; // type:object size:0x8 scope:local align:8 data:double
+@3965 = .rodata:0x800AAA10; // type:object size:0x4 scope:local align:4 data:float
+@3966 = .rodata:0x800AAA14; // type:object size:0x4 scope:local align:4 data:float
+@3967 = .rodata:0x800AAA18; // type:object size:0x4 scope:local align:4 data:float
+@3968 = .rodata:0x800AAA20; // type:object size:0x8 scope:local align:8 data:double
+@3969 = .rodata:0x800AAA28; // type:object size:0x4 scope:local align:4 data:float
+tags_table_table = .rodata:0x800AAA30; // type:object size:0x130 scope:global align:4 noreloc
+...rodata.0 = .rodata:0x800AAB60; // type:label scope:local
+geomtbl = .rodata:0x800AAB60; // type:object size:0xC0 scope:global align:4 data:4byte
+gmtxtbl = .rodata:0x800AAC20; // type:object size:0x24 scope:global align:4
+h_tbl = .rodata:0x800AAC44; // type:object size:0x1E4 scope:global align:4
+l_tbl = .rodata:0x800AAE28; // type:object size:0x58 scope:global align:4
+kakko$835 = .rodata:0x800AAE80; // type:object size:0x10 scope:local align:4 data:string
+@869 = .rodata:0x800AAE90; // type:object size:0x10 scope:local align:4 data:4byte
+@870 = .rodata:0x800AAEA0; // type:object size:0x1E scope:local align:4 data:4byte
+flags$1134 = .rodata:0x800AAEC0; // type:object size:0xC0 scope:local align:4
+m$1151 = .rodata:0x800AAF80; // type:object size:0x40 scope:local align:4
+fmtxtbl__5emu64 = .rodata:0x800AAFC0; // type:object size:0x40 scope:global align:4
+tbla = .rodata:0x800AB000; // type:object size:0x10 scope:global align:4
+tblc = .rodata:0x800AB010; // type:object size:0x80 scope:global align:4
+shift_tbl$3336 = .rodata:0x800AB090; // type:object size:0x40 scope:local align:4
+shift_tbl$3412 = .rodata:0x800AB0D0; // type:object size:0x40 scope:local align:4
+pows = .rodata:0x800AB110; // type:object size:0x48 scope:global align:8 data:double
+fbit$8 = .rodata:0x800AB158; // type:object size:0x18 scope:local align:4
+saoAboutEncoding___10JUTResFont = .rodata:0x800AB170; // type:object size:0xC scope:global align:4
+halftofull$677 = .rodata:0x800AB17C; // type:object size:0xBE scope:local align:4
+@1058 = .rodata:0x800AB240; // type:object size:0x10 scope:local align:4 data:4byte
+JUTResFONT_Ascfont_fix12 = .rodata:0x800AB260; // type:label size:0x4160 scope:global align:32
+__constants = .rodata:0x800AF3C0; // type:object size:0x18 scope:global align:8 data:double
+@stringBase0 = .rodata:0x800AF3D8; // type:object size:0xDD scope:local align:4 data:string_table
+@stringBase0 = .rodata:0x800AF4B8; // type:object size:0x25 scope:local align:4 data:string_table
+two_over_pi = .rodata:0x800AF4E0; // type:object size:0x108 scope:global align:4
+npio2_hw = .rodata:0x800AF5E8; // type:object size:0x80 scope:global align:4
+init_jk = .rodata:0x800AF668; // type:object size:0x10 scope:global align:4
+PIo2 = .rodata:0x800AF678; // type:object size:0x40 scope:global align:8 data:double
+...rodata.0 = .rodata:0x800AF6B8; // type:label scope:local
+atanhi = .rodata:0x800AF6B8; // type:object size:0x20 scope:global align:8
+atanlo = .rodata:0x800AF6D8; // type:object size:0x20 scope:global align:8
+aT = .rodata:0x800AF6F8; // type:object size:0x58 scope:global align:8
+@62 = .rodata:0x800AF750; // type:object size:0x1C scope:local align:4 data:string
+@484 = .rodata:0x800AF770; // type:object size:0x1D scope:local align:4 data:string
+gTRKMemMap = .rodata:0x800AF790; // type:object size:0x10 scope:global align:4 data:4byte
+@300 = .rodata:0x800AF7A0; // type:object size:0x28 scope:local align:4 data:4byte
+@307 = .rodata:0x800AF7C8; // type:object size:0x28 scope:local align:4 data:4byte
+@314 = .rodata:0x800AF7F0; // type:object size:0x28 scope:local align:4 data:4byte
+@148 = .rodata:0x800AF818; // type:object size:0x21 scope:local align:4 data:string
+@149 = .rodata:0x800AF83C; // type:object size:0x24 scope:local align:4 data:string
+...data.0 = .data:0x800AF860; // type:label scope:local
+@311 = .data:0x800AF860; // type:object size:0x20 scope:local align:4
+@312 = .data:0x800AF880; // type:object size:0x21 scope:local align:4
+@321 = .data:0x800AF8A4; // type:object size:0x10 scope:local align:4
+@322 = .data:0x800AF8B4; // type:object size:0x10 scope:local align:4
+@323 = .data:0x800AF8C4; // type:object size:0xE scope:local align:4
+@324 = .data:0x800AF8D4; // type:object size:0x10 scope:local align:4
+@343 = .data:0x800AF8E4; // type:object size:0x1C scope:local align:4
+@344 = .data:0x800AF900; // type:object size:0x28 scope:local align:4
+@345 = .data:0x800AF928; // type:object size:0x1E scope:local align:4
+@346 = .data:0x800AF948; // type:object size:0xD scope:local align:4 data:string
+@347 = .data:0x800AF958; // type:object size:0xD scope:local align:4 data:string
+@348 = .data:0x800AF968; // type:object size:0xD scope:local align:4 data:string
+@349 = .data:0x800AF978; // type:object size:0x25 scope:local align:4
+@354 = .data:0x800AF9A0; // type:object size:0x17 scope:local align:4
+@359 = .data:0x800AF9B8; // type:object size:0x1C scope:local align:4 data:string
+@360 = .data:0x800AF9D4; // type:object size:0x26 scope:local align:4
+@361 = .data:0x800AF9FC; // type:object size:0x31 scope:local align:4
+@394 = .data:0x800AFA30; // type:object size:0x9 scope:local align:4 data:string
+@399 = .data:0x800AFA3C; // type:object size:0x15 scope:local align:4 data:string
+@404 = .data:0x800AFA54; // type:object size:0x51 scope:local align:4 data:string
+@425 = .data:0x800AFAA8; // type:object size:0x2C scope:local align:4
+@426 = .data:0x800AFAD4; // type:object size:0x1D scope:local align:4
+@510 = .data:0x800AFAF4; // type:object size:0x14 scope:local align:4
+@511 = .data:0x800AFB08; // type:object size:0x3C scope:local align:4
+@512 = .data:0x800AFB44; // type:object size:0x3C scope:local align:4
+@513 = .data:0x800AFB80; // type:object size:0x27 scope:local align:4
+@514 = .data:0x800AFBA8; // type:object size:0x39 scope:local align:4
+@545 = .data:0x800AFBE4; // type:object size:0x1B scope:local align:4 data:string
+@581 = .data:0x800AFC00; // type:object size:0x14 scope:local align:4
+@582 = .data:0x800AFC14; // type:object size:0x18 scope:local align:4
+@583 = .data:0x800AFC2C; // type:object size:0xD scope:local align:4
+@584 = .data:0x800AFC3C; // type:object size:0x14 scope:local align:4
+@585 = .data:0x800AFC50; // type:object size:0xC scope:local align:4
+@586 = .data:0x800AFC5C; // type:object size:0x1B scope:local align:4 data:string
+@587 = .data:0x800AFC78; // type:object size:0x10 scope:local align:4
+@588 = .data:0x800AFC88; // type:object size:0x17 scope:local align:4 data:string
+@589 = .data:0x800AFCA0; // type:object size:0x2A scope:local align:4
+@590 = .data:0x800AFCCC; // type:object size:0x35 scope:local align:4
+@591 = .data:0x800AFD04; // type:object size:0x12 scope:local align:4 data:string
+@592 = .data:0x800AFD18; // type:object size:0x1B scope:local align:4 data:string
+@593 = .data:0x800AFD34; // type:object size:0x47 scope:local align:4
+@594 = .data:0x800AFD7C; // type:object size:0x1E scope:local align:4
+@595 = .data:0x800AFD9C; // type:object size:0xC scope:local align:4 data:string
+@596 = .data:0x800AFDA8; // type:object size:0x18 scope:local align:4 data:string
+@597 = .data:0x800AFDC0; // type:object size:0x14 scope:local align:4
+@598 = .data:0x800AFDD4; // type:object size:0x11 scope:local align:4 data:string
+@599 = .data:0x800AFDE8; // type:object size:0xA scope:local align:4 data:string
+@600 = .data:0x800AFDF4; // type:object size:0xC scope:local align:4 data:string
+@601 = .data:0x800AFE00; // type:object size:0x11 scope:local align:4 data:string
+@602 = .data:0x800AFE14; // type:object size:0x16 scope:local align:4
+@603 = .data:0x800AFE2C; // type:object size:0x1E scope:local align:4
+...data.0 = .data:0x800AFE50; // type:label scope:local
+SystemHeapSize = .data:0x800AFE50; // type:object size:0x4 scope:global align:4 data:4byte
+gameheap_len = .data:0x800AFE54; // type:object size:0x4 scope:global align:4 data:4byte
+customized_GXNtsc240Ds = .data:0x800AFE58; // type:object size:0x3C scope:global align:4
+customized_GXNtsc240Prog = .data:0x800AFE94; // type:object size:0x3C scope:global align:4
+customized_GXNtsc240IntDf = .data:0x800AFED0; // type:object size:0x3C scope:global align:4
+customized_GXNtsc480Ds = .data:0x800AFF0C; // type:object size:0x3C scope:global align:4
+customized_GXNtsc480IntDf = .data:0x800AFF48; // type:object size:0x3C scope:global align:4
+customized_GXNtsc480Prog = .data:0x800AFF84; // type:object size:0x3C scope:global align:4
+@2291 = .data:0x800AFFC0; // type:object size:0xB scope:local align:4 data:string
+@2292 = .data:0x800AFFCC; // type:object size:0xE scope:local align:4 data:string
+@2293 = .data:0x800AFFDC; // type:object size:0x14 scope:local align:4 data:string
+@2294 = .data:0x800AFFF0; // type:object size:0xF scope:local align:4 data:string
+@2295 = .data:0x800B0000; // type:object size:0x15 scope:local align:4 data:string
+@2296 = .data:0x800B0018; // type:object size:0xF scope:local align:4 data:string
+@2297 = .data:0x800B0028; // type:object size:0x15 scope:local align:4 data:string
+@2298 = .data:0x800B0040; // type:object size:0xF scope:local align:4 data:string
+@2299 = .data:0x800B0050; // type:object size:0x15 scope:local align:4 data:string
+@2300 = .data:0x800B0068; // type:object size:0xF scope:local align:4 data:string
+@2301 = .data:0x800B0078; // type:object size:0xC scope:local align:4 data:string
+@2302 = .data:0x800B0084; // type:object size:0x12 scope:local align:4 data:string
+@2303 = .data:0x800B0098; // type:object size:0xD scope:local align:4 data:string
+@2304 = .data:0x800B00A8; // type:object size:0x13 scope:local align:4 data:string
+@2305 = .data:0x800B00BC; // type:object size:0x10 scope:local align:4 data:string
+@2306 = .data:0x800B00CC; // type:object size:0x16 scope:local align:4 data:string
+@2307 = .data:0x800B00E4; // type:object size:0x10 scope:local align:4 data:string
+@2308 = .data:0x800B00F4; // type:object size:0x16 scope:local align:4 data:string
+@2309 = .data:0x800B010C; // type:object size:0x10 scope:local align:4 data:string
+@2310 = .data:0x800B011C; // type:object size:0x16 scope:local align:4 data:string
+@2311 = .data:0x800B0134; // type:object size:0xF scope:local align:4 data:string
+@2312 = .data:0x800B0144; // type:object size:0x15 scope:local align:4 data:string
+@2313 = .data:0x800B015C; // type:object size:0xC scope:local align:4 data:string
+@2314 = .data:0x800B0168; // type:object size:0xD scope:local align:4 data:string
+@2315 = .data:0x800B0178; // type:object size:0xE scope:local align:4 data:string
+@2316 = .data:0x800B0188; // type:object size:0x11 scope:local align:4 data:string
+@2317 = .data:0x800B019C; // type:object size:0x17 scope:local align:4 data:string
+@2318 = .data:0x800B01B4; // type:object size:0x10 scope:local align:4 data:string
+@2319 = .data:0x800B01C4; // type:object size:0xF scope:local align:4 data:string
+@2320 = .data:0x800B01D4; // type:object size:0x16 scope:local align:4 data:string
+@2321 = .data:0x800B01EC; // type:object size:0x15 scope:local align:4 data:string
+@2322 = .data:0x800B0204; // type:object size:0x17 scope:local align:4 data:string
+@2323 = .data:0x800B021C; // type:object size:0x18 scope:local align:4 data:string
+@2324 = .data:0x800B0234; // type:object size:0x18 scope:local align:4 data:string
+@2325 = .data:0x800B024C; // type:object size:0xA scope:local align:4 data:string
+@2326 = .data:0x800B0258; // type:object size:0x10 scope:local align:4 data:string
+@2327 = .data:0x800B0268; // type:object size:0x10 scope:local align:4 data:string
+@2328 = .data:0x800B0278; // type:object size:0xE scope:local align:4 data:string
+@2329 = .data:0x800B0288; // type:object size:0x10 scope:local align:4 data:string
+@2330 = .data:0x800B0298; // type:object size:0xC scope:local align:4 data:string
+@2331 = .data:0x800B02A4; // type:object size:0xA scope:local align:4 data:string
+@2332 = .data:0x800B02B0; // type:object size:0x9 scope:local align:4 data:string
+@2333 = .data:0x800B02BC; // type:object size:0xB scope:local align:4 data:string
+@2334 = .data:0x800B02C8; // type:object size:0xB scope:local align:4 data:string
+@2335 = .data:0x800B02D4; // type:object size:0xB scope:local align:4 data:string
+@2336 = .data:0x800B02E0; // type:object size:0xB scope:local align:4 data:string
+@2337 = .data:0x800B02EC; // type:object size:0x9 scope:local align:4 data:string
+@2338 = .data:0x800B02F8; // type:object size:0xB scope:local align:4 data:string
+@2339 = .data:0x800B0304; // type:object size:0xB scope:local align:4 data:string
+@2340 = .data:0x800B0310; // type:object size:0xB scope:local align:4 data:string
+@2341 = .data:0x800B031C; // type:object size:0xB scope:local align:4 data:string
+@2342 = .data:0x800B0328; // type:object size:0x9 scope:local align:4 data:string
+@2343 = .data:0x800B0334; // type:object size:0xB scope:local align:4 data:string
+@2344 = .data:0x800B0340; // type:object size:0xB scope:local align:4 data:string
+@2345 = .data:0x800B034C; // type:object size:0xB scope:local align:4 data:string
+@2346 = .data:0x800B0358; // type:object size:0xB scope:local align:4 data:string
+@2347 = .data:0x800B0364; // type:object size:0xB scope:local align:4 data:string
+@2348 = .data:0x800B0370; // type:object size:0xC scope:local align:4 data:string
+@2349 = .data:0x800B037C; // type:object size:0xC scope:local align:4 data:string
+@2350 = .data:0x800B0388; // type:object size:0x9 scope:local align:4 data:string
+@2351 = .data:0x800B0394; // type:object size:0x9 scope:local align:4 data:string
+@2352 = .data:0x800B03A0; // type:object size:0x9 scope:local align:4 data:string
+@2353 = .data:0x800B03AC; // type:object size:0x9 scope:local align:4 data:string
+@2354 = .data:0x800B03B8; // type:object size:0x9 scope:local align:4 data:string
+@2355 = .data:0x800B03C4; // type:object size:0x9 scope:local align:4 data:string
+@2356 = .data:0x800B03D0; // type:object size:0x9 scope:local align:4 data:string
+@2357 = .data:0x800B03DC; // type:object size:0x9 scope:local align:4 data:string
+@2358 = .data:0x800B03E8; // type:object size:0xA scope:local align:4 data:string
+@2359 = .data:0x800B03F4; // type:object size:0xA scope:local align:4 data:string
+@2360 = .data:0x800B0400; // type:object size:0xA scope:local align:4 data:string
+@2361 = .data:0x800B040C; // type:object size:0xA scope:local align:4 data:string
+@2362 = .data:0x800B0418; // type:object size:0xA scope:local align:4 data:string
+@2363 = .data:0x800B0424; // type:object size:0xA scope:local align:4 data:string
+@2364 = .data:0x800B0430; // type:object size:0xA scope:local align:4 data:string
+@2365 = .data:0x800B043C; // type:object size:0xA scope:local align:4 data:string
+@2366 = .data:0x800B0448; // type:object size:0x14 scope:local align:4 data:string
+aram_resName = .data:0x800B045C; // type:object size:0x130 scope:global align:4
+@2439 = .data:0x800B058C; // type:object size:0x3A scope:local align:4 data:string
+@2451 = .data:0x800B05C8; // type:object size:0xF scope:local align:4 data:string
+@2463 = .data:0x800B05D8; // type:object size:0xF scope:local align:4 data:string
+__Creator__ = .data:0x800B05E8; // type:object size:0xC scope:global align:4 data:string
+__DateTime__ = .data:0x800B05F4; // type:object size:0x12 scope:global align:4 data:string
+...data.0 = .data:0x800B0608; // type:label scope:local
+gam_win1_cursor_setup = .data:0x800B0608; // type:object size:0x28 scope:global align:8
+gam_win1_moji_setup = .data:0x800B0630; // type:object size:0x28 scope:global align:8
+viewport = .data:0x800B0658; // type:object size:0x10 scope:global align:8
+projection = .data:0x800B0668; // type:object size:0x40 scope:global align:8
+lookat = .data:0x800B06A8; // type:object size:0x40 scope:global align:8
+default_model_scale = .data:0x800B06E8; // type:object size:0x40 scope:global align:8
+logo_projection = .data:0x800B0728; // type:object size:0x40 scope:global align:8
+logo_model_scale = .data:0x800B0768; // type:object size:0x40 scope:global align:8
+initial_dl = .data:0x800B07A8; // type:object size:0x58 scope:global align:8
+logo_initial_dl = .data:0x800B0800; // type:object size:0x58 scope:global align:8
+logo_draw_dl = .data:0x800B0858; // type:object size:0x38 scope:global align:8
+step1_draw_dl = .data:0x800B0890; // type:object size:0x68 scope:global align:8
+step2_draw_dl = .data:0x800B08F8; // type:object size:0x38 scope:global align:8
+pad_good_frame_count = .data:0x800B0930; // type:object size:0x4 scope:global align:4 data:4byte
+@275 = .data:0x800B0934; // type:object size:0x10 scope:local align:4 data:string
+@276 = .data:0x800B0944; // type:object size:0xA scope:local align:4 data:string
+@277 = .data:0x800B0950; // type:object size:0xF scope:local align:4 data:string
+@278 = .data:0x800B0960; // type:object size:0xF scope:local align:4 data:string
+@279 = .data:0x800B0970; // type:object size:0x15 scope:local align:4 data:string
+@280 = .data:0x800B0988; // type:object size:0x1E scope:local align:4 data:string
+@281 = .data:0x800B09A8; // type:object size:0x17 scope:local align:4 data:string
+@282 = .data:0x800B09C0; // type:object size:0x1E scope:local align:4 data:string
+@283 = .data:0x800B09E0; // type:object size:0x1D scope:local align:4 data:string
+@284 = .data:0x800B0A00; // type:object size:0x15 scope:local align:4 data:string
+yes_no_model$292 = .data:0x800B0A18; // type:object size:0x8 scope:local align:4
+@419 = .data:0x800B0A20; // type:object size:0x2A scope:local align:4 data:string
+dvd_keikoku_moji1_1_tex = .data:0x800B0A60; // type:object size:0x500 scope:global align:32 noreloc
+dvd_keikoku_moji1_2_tex = .data:0x800B0F60; // type:object size:0x500 scope:global align:32 noreloc
+dvd_keikoku_moji1_3_tex = .data:0x800B1460; // type:object size:0x200 scope:global align:32 noreloc
+dvd_keikoku_moji1_4_tex = .data:0x800B1660; // type:object size:0x600 scope:global align:32 noreloc
+ctl_att_w1_tex = .data:0x800B1C60; // type:object size:0x400 scope:global align:32 noreloc
+ctl_att_w2_tex = .data:0x800B2060; // type:object size:0x400 scope:global align:32 noreloc
+ctl_att_w3_tex = .data:0x800B2460; // type:object size:0x400 scope:global align:32 noreloc
+ctl_att_w4_tex = .data:0x800B2860; // type:object size:0x400 scope:global align:32 noreloc
+ctl_att_w5_tex = .data:0x800B2C60; // type:object size:0x400 scope:global align:32 noreloc
+ctl_att_w6_tex = .data:0x800B3060; // type:object size:0x80 scope:global align:32 noreloc
+dvd_keikoku1_v = .data:0x800B30E0; // type:object size:0x3C0 scope:global align:8
+keikoku1_dvd_att_moji_model = .data:0x800B34A0; // type:object size:0x98 scope:global align:8
+keikoku1_dvd_att_winT_model = .data:0x800B3538; // type:object size:0xF8 scope:global align:8
+dvd_keikoku_moji2_tex = .data:0x800B3640; // type:object size:0x280 scope:global align:32 noreloc
+dvd_keikoku_moji2_2_tex = .data:0x800B38C0; // type:object size:0x600 scope:global align:32 noreloc
+dvd_keikoku_moji2_3_tex = .data:0x800B3EC0; // type:object size:0x80 scope:global align:32 noreloc
+dvd_keikoku2_v = .data:0x800B3F40; // type:object size:0x380 scope:global align:8
+keikoku2_dvd_att_moji_model = .data:0x800B42C0; // type:object size:0x80 scope:global align:8
+keikoku2_dvd_att_winT_model = .data:0x800B4340; // type:object size:0xF8 scope:global align:8
+dvd_keikoku_moji4_tex = .data:0x800B4440; // type:object size:0x280 scope:global align:32 noreloc
+dvd_keikoku_moji3_1_tex = .data:0x800B46C0; // type:object size:0x600 scope:global align:32 noreloc
+dvd_keikoku_moji3_2_tex = .data:0x800B4CC0; // type:object size:0x280 scope:global align:32 noreloc
+dvd_keikoku_moji3_3_tex = .data:0x800B4F40; // type:object size:0x80 scope:global align:32 noreloc
+dvd_keikoku3_v = .data:0x800B4FC0; // type:object size:0x440 scope:global align:8
+keikoku3_dvd_att_moji_model = .data:0x800B5400; // type:object size:0xA8 scope:global align:8
+keikoku3_dvd_att_winT_model = .data:0x800B54A8; // type:object size:0xF8 scope:global align:8
+dvd_keikoku_moji5_tex = .data:0x800B55A0; // type:object size:0x300 scope:global align:32 noreloc
+dvd_keikoku_moji6_2_tex = .data:0x800B58A0; // type:object size:0x480 scope:global align:32 noreloc
+dvd_keikoku_moji6_3_tex = .data:0x800B5D20; // type:object size:0x280 scope:global align:32 noreloc
+dvd_keikoku_moji6_tex = .data:0x800B5FA0; // type:object size:0x400 scope:global align:32 noreloc
+dvd_keikoku_moji6_1_tex = .data:0x800B63A0; // type:object size:0x580 scope:global align:32 noreloc
+dvd_keikoku_moji6_new1_tex = .data:0x800B6920; // type:object size:0x200 scope:global align:32 noreloc
+dvd_keikoku_moji6_new2_tex = .data:0x800B6B20; // type:object size:0x200 scope:global align:32 noreloc
+dvd_keikoku4_v = .data:0x800B6D20; // type:object size:0x480 scope:global align:8
+keikoku4_dvd_att_moji_model = .data:0x800B71A0; // type:object size:0xE0 scope:global align:8
+keikoku4_dvd_att_winT_model = .data:0x800B7280; // type:object size:0xF8 scope:global align:8
+dvd_keikoku_moji7_tex = .data:0x800B7380; // type:object size:0x500 scope:global align:32 noreloc
+dvd_keikoku_moji8_tex = .data:0x800B7880; // type:object size:0x400 scope:global align:32 noreloc
+dvd_keikoku_moji10_tex = .data:0x800B7C80; // type:object size:0x200 scope:global align:32 noreloc
+dvd_keikoku_moji11_tex = .data:0x800B7E80; // type:object size:0x480 scope:global align:32 noreloc
+dvd_keikoku_moji12_tex = .data:0x800B8300; // type:object size:0x280 scope:global align:32 noreloc
+dvd_keikoku_moji9_tex = .data:0x800B8580; // type:object size:0x500 scope:global align:32 noreloc
+dvd_keikoku5_v = .data:0x800B8A80; // type:object size:0x440 scope:global align:8
+keikoku5_dvd_att_moji_model = .data:0x800B8EC0; // type:object size:0xC8 scope:global align:8
+keikoku5_dvd_att_winT_model = .data:0x800B8F88; // type:object size:0xF8 scope:global align:8
+Dvderr_viewport = .data:0x800B9080; // type:object size:0x10 scope:global align:8
+Dvderr_initial_dl = .data:0x800B9090; // type:object size:0x70 scope:global align:8
+@278 = .data:0x800B9100; // type:object size:0x34 scope:local align:4
+gam_win_moji1_tex = .data:0x800B9140; // type:object size:0x280 scope:global align:32 noreloc
+gam_win_moji2_tex = .data:0x800B93C0; // type:object size:0x500 scope:global align:32 noreloc
+yes = .data:0x800B98C0; // type:object size:0x100 scope:global align:32 noreloc
+no = .data:0x800B99C0; // type:object size:0x80 scope:global align:32 noreloc
+att_win_waku1_tex = .data:0x800B9A40; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku2_tex = .data:0x800B9E40; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku3_tex = .data:0x800BA240; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku4_tex = .data:0x800BA640; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku5_tex = .data:0x800BAA40; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku6_tex = .data:0x800BAE40; // type:object size:0x80 scope:local align:32 noreloc
+gam_win1_v = .data:0x800BAEC0; // type:object size:0x3F0 scope:global align:8 noreloc
+gam_win1_cursor_model = .data:0x800BB2B0; // type:object size:0x40 scope:global align:8
+gam_win1_moji_model = .data:0x800BB2F0; // type:object size:0x68 scope:global align:8
+gam_win1_moji2_model = .data:0x800BB358; // type:object size:0x50 scope:global align:8
+gam_win1_moji3_model = .data:0x800BB3A8; // type:object size:0x50 scope:global align:8
+gam_win1_winT_model = .data:0x800BB3F8; // type:object size:0xF8 scope:global align:8
+gam_win_moji3_tex = .data:0x800BB500; // type:object size:0x500 scope:local align:32 noreloc
+gam_win_moji4_tex = .data:0x800BBA00; // type:object size:0x500 scope:global align:32 noreloc
+att_win_waku1_tex = .data:0x800BBF00; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku2_tex = .data:0x800BC300; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku3_tex = .data:0x800BC700; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku4_tex = .data:0x800BCB00; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku5_tex = .data:0x800BCF00; // type:object size:0x400 scope:local align:32 noreloc
+att_win_waku6_tex = .data:0x800BD300; // type:object size:0x80 scope:local align:32 noreloc
+gam_win2_v = .data:0x800BD380; // type:object size:0x340 scope:global align:8
+gam_win2_moji_model = .data:0x800BD6C0; // type:object size:0x68 scope:global align:8
+gam_win2_winT_model = .data:0x800BD728; // type:object size:0xF8 scope:global align:8
+gam_win_moji3_tex = .data:0x800BD820; // type:object size:0x500 scope:local align:32 noreloc
+gam_win_moji5_tex = .data:0x800BDD20; // type:object size:0x380 scope:global align:32 noreloc
+gam_win3_v = .data:0x800BE0A0; // type:object size:0x340 scope:global align:8 noreloc
+gam_win3_moji_model = .data:0x800BE3E0; // type:object size:0x68 scope:global align:8
+nintendo_376x104 = .data:0x800BE460; // type:object size:0x4C60 scope:global align:32 noreloc
+logo_nin_v = .data:0x800C30C0; // type:object size:0x40 scope:global align:8 noreloc
+logo_ninT_model = .data:0x800C3100; // type:object size:0x28 scope:global align:8
+nintendo_hi_0 = .data:0x800C3140; // type:object size:0x9900 scope:global align:32 noreloc
+AudioseqHeaderStart = .data:0x800CCA40; // type:object size:0xFA0 scope:global align:1 data:2byte
+AudiobankHeaderStart = .data:0x800CD9E0; // type:object size:0xA00 scope:global align:1
+AudiowaveHeaderStart = .data:0x800CE3E0; // type:object size:0x70 scope:global align:1
+AudiodataHeaderStart = .data:0x800CE450; // type:object size:0x40 scope:global align:1 data:2byte
+AudiomapHeaderStart = .data:0x800CE490; // type:object size:0x3F0 scope:global align:1
+...data.0 = .data:0x800CE880; // type:label scope:local
+LEN_TABLE = .data:0x800CE880; // type:object size:0x20 scope:global align:4
+NOISE_FREQ_TABLE = .data:0x800CE8A0; // type:object size:0x40 scope:global align:4
+sbuffer = .data:0x800CE8E0; // type:object size:0x100 scope:global align:4 data:byte
+LEN_TABLE_HVC = .data:0x800CE9E0; // type:object size:0x20 scope:global align:4
+TRIANGLE_TABLE = .data:0x800CEA00; // type:object size:0x20 scope:global align:4
+NOISE_TABLE = .data:0x800CEA20; // type:object size:0x40 scope:local align:4
+NOISE_PULSE_TABLE = .data:0x800CEA60; // type:object size:0x10 scope:global align:4 data:string
+DMOD_TABLE = .data:0x800CEA70; // type:object size:0x40 scope:global align:4
+VOLTABLE_DELTAMOD = .data:0x800CEAB0; // type:object size:0x100 scope:global align:4
+VOLTABLE_DISKFM = .data:0x800CEBB0; // type:object size:0x21 scope:global align:4
+VOLTABLE_DISKFM_SUB = .data:0x800CEBD4; // type:object size:0x21 scope:global align:4
+DISKFM_GAINTABLE = .data:0x800CEBF8; // type:object size:0x10 scope:global align:4
+DEB1 = .data:0x800CEC08; // type:object size:0x10 scope:global align:4
+VOLTABLE_HVCPULSE = .data:0x800CEC18; // type:object size:0x44 scope:global align:4
+VOLTABLE_VRCPULSE = .data:0x800CEC5C; // type:object size:0x20 scope:global align:4
+@186 = .data:0x800CEC7C; // type:object size:0x50 scope:local align:4
+@1069 = .data:0x800CECCC; // type:object size:0x2C scope:local align:4
+PCM = .data:0x800CECF8; // type:object size:0x24 scope:global align:4
+PCMSIZE = .data:0x800CED1C; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x800CED40; // type:label scope:local
+OCTAVETABLE = .data:0x800CED40; // type:object size:0x30 scope:global align:4
+BGM_MUTE_TABLE_FINE = .data:0x800CED70; // type:object size:0x30 scope:global align:2
+BGM_MUTE_TABLE_SNOW = .data:0x800CEDA0; // type:object size:0x30 scope:global align:2
+BGM_MUTE_TABLE_SAKURA = .data:0x800CEDD0; // type:object size:0x30 scope:global align:2
+BGM_MUTE_TABLE_MUSEUM = .data:0x800CEE00; // type:object size:0xC scope:global align:2
+NIN_SEQ = .data:0x800CEE20; // type:object size:0x60 scope:global align:32
+NIN_BANK = .data:0x800CEE80; // type:object size:0x880 scope:global align:32
+NIN_WAVE = .data:0x800CF700; // type:object size:0x240 scope:global align:32
+@1277 = .data:0x800CF940; // type:object size:0x90 scope:local align:4
+@1323 = .data:0x800CF9D0; // type:object size:0x90 scope:local align:4
+@1429 = .data:0x800CFA60; // type:object size:0x44 scope:local align:4
+@1428 = .data:0x800CFAA4; // type:object size:0x50 scope:local align:4
+@1427 = .data:0x800CFAF4; // type:object size:0x80 scope:local align:4
+@1426 = .data:0x800CFB74; // type:object size:0x3C scope:local align:4
+@1425 = .data:0x800CFBB0; // type:object size:0x2C scope:local align:4
+@1424 = .data:0x800CFBDC; // type:object size:0x68 scope:local align:4
+@1461 = .data:0x800CFC44; // type:object size:0x68 scope:local align:4
+@1679 = .data:0x800CFCAC; // type:object size:0x28 scope:local align:4
+@1836 = .data:0x800CFCD4; // type:object size:0xE scope:local align:1 data:string
+@1837 = .data:0x800CFCE2; // type:object size:0x35 scope:local align:1 data:string
+@1838 = .data:0x800CFD17; // type:object size:0x2C scope:local align:1 data:string
+@1840 = .data:0x800CFD43; // type:object size:0x1C scope:local align:1 data:string
+@1991 = .data:0x800CFD60; // type:object size:0x28 scope:local align:4
+@2197 = .data:0x800CFD88; // type:object size:0x4C scope:local align:4
+@2273 = .data:0x800CFDD4; // type:object size:0x3C scope:local align:4
+@272 = .data:0x800CFE10; // type:object size:0xD4 scope:local align:4
+@271 = .data:0x800CFEE4; // type:object size:0x38 scope:local align:4
+RES_FILTER = .data:0x800CFF20; // type:object size:0x200 scope:global align:32
+AD4 = .data:0x800D0120; // type:object size:0x20 scope:global align:4
+@430 = .data:0x800D0140; // type:object size:0x68 scope:local align:4
+J_STREAMNAME = .data:0x800D01A8; // type:object size:0x80 scope:global align:4
+J_STREAM = .data:0x800D0228; // type:object size:0x2C scope:global align:4 data:4byte
+@176 = .data:0x800D0254; // type:object size:0x20 scope:local align:4
+audio_root_path = .data:0x800D0278; // type:object size:0x20 scope:global align:4 data:byte
+NOISE_TABLE = .data:0x800D0298; // type:object size:0x20 scope:local align:4
+@914 = .data:0x800D02B8; // type:object size:0x20 scope:local align:4
+@1406 = .data:0x800D02D8; // type:object size:0x28 scope:local align:4
+@624 = .data:0x800D0300; // type:object size:0x38 scope:local align:4
+@684 = .data:0x800D0338; // type:object size:0x58 scope:local align:4
+VELOCONV_TABLE = .data:0x800D0390; // type:object size:0x1000 scope:global align:4
+LSF_TABLE = .data:0x800D1390; // type:object size:0x100 scope:global align:4
+HSF_TABLE = .data:0x800D1490; // type:object size:0xF0 scope:global align:4
+EL_FILTER = .data:0x800D1580; // type:object size:0x690 scope:global align:4
+BP_FILTER = .data:0x800D1C10; // type:object size:0x690 scope:global align:4
+wm_sin = .data:0x800D22A0; // type:object size:0x200 scope:global align:4
+WAVEMEM_TABLE = .data:0x800D24A0; // type:object size:0x24 scope:global align:4
+PCENTTABLE = .data:0x800D24C4; // type:object size:0x400 scope:global align:4
+PCENTTABLE2 = .data:0x800D28C4; // type:object size:0x400 scope:global align:4
+PITCHTABLE = .data:0x800D2CC4; // type:object size:0x200 scope:global align:4
+DEFAULT_VTABLE = .data:0x800D2EC4; // type:object size:0x10 scope:global align:4
+DEFAULT_GTABLE = .data:0x800D2ED4; // type:object size:0x10 scope:global align:4
+DEFAULT_ENV = .data:0x800D2EE4; // type:object size:0x10 scope:global align:4
+NA_CHINIT_TABLE = .data:0x800D2EF4; // type:object size:0x20 scope:global align:4
+NA_SVCINIT_TABLE = .data:0x800D2F14; // type:object size:0x20 scope:global align:4
+CDELAYTABLE = .data:0x800D2F34; // type:object size:0x80 scope:global align:4
+PhoneLeft = .data:0x800D2FB4; // type:object size:0x200 scope:global align:4
+WideLeft = .data:0x800D31B4; // type:object size:0x200 scope:global align:4
+StereoLeft = .data:0x800D33B4; // type:object size:0x200 scope:global align:4
+BDB_SEQDATA = .data:0x800D35B4; // type:object size:0xB0 scope:global align:4
+NA_HALL_DELAY = .data:0x800D3668; // type:object size:0x18 scope:global align:4
+NA_SPEC_CONFIG = .data:0x800D3680; // type:object size:0x38 scope:global align:4
+AGC = .data:0x800D36B8; // type:object size:0x10 scope:global align:4 data:byte
+@375 = .data:0x800D36C8; // type:object size:0x24 scope:local align:4
+SCOM_TABLE = .data:0x800D36F0; // type:object size:0x60 scope:global align:4
+@215 = .data:0x800D3750; // type:object size:0x38 scope:local align:4
+@545 = .data:0x800D3788; // type:object size:0xC4 scope:local align:4
+@1059 = .data:0x800D384C; // type:object size:0xA4 scope:local align:4
+@1057 = .data:0x800D38F0; // type:object size:0x148 scope:local align:4
+@1252 = .data:0x800D3A38; // type:object size:0xC0 scope:local align:4
+jdsp = .data:0x800D3B00; // type:object size:0x1A00 scope:global align:32 noreloc
+calc_sw_table = .data:0x800D5500; // type:object size:0x51 scope:global align:4
+@473 = .data:0x800D5554; // type:object size:0x20 scope:local align:4
+@472 = .data:0x800D5574; // type:object size:0x20 scope:local align:4
+history = .data:0x800D5598; // type:object size:0x28 scope:global align:4 data:4byte
+connect_table$194 = .data:0x800D55C0; // type:object size:0x18 scope:local align:4
+DSPADPCM_FILTER = .data:0x800D55E0; // type:object size:0x40 scope:global align:32 noreloc
+DSPRES_FILTER = .data:0x800D5620; // type:object size:0x400 scope:global align:32 noreloc
+SEND_TABLE = .data:0x800D5A20; // type:object size:0x18 scope:global align:4
+C5BASE_PITCHTABLE = .data:0x800D5A38; // type:object size:0x200 scope:global align:4
+FORCE_RELEASE_TABLE = .data:0x800D5C38; // type:object size:0xC scope:global align:4
+extdir = .data:0x800D5C48; // type:object size:0x40 scope:global align:4
+@251 = .data:0x800D5C88; // type:object size:0x34 scope:local align:4
+@348 = .data:0x800D5CBC; // type:object size:0x44 scope:local align:4
+@388 = .data:0x800D5D00; // type:object size:0x44 scope:local align:4
+Arglist = .data:0x800D5D44; // type:object size:0x100 scope:global align:4
+CMDP_LIST = .data:0x800D5E44; // type:object size:0x100 scope:global align:4
+CUTOFF_TO_IIR_TABLE = .data:0x800D5F48; // type:object size:0x400 scope:global align:4
+KEY_TABLE = .data:0x800D6348; // type:object size:0x100 scope:global align:4
+...data.0 = .data:0x800D6448; // type:label scope:local
+VIB_TABLE = .data:0x800D6448; // type:object size:0x24 scope:global align:4 noreloc
+TRE_TABLE = .data:0x800D646C; // type:object size:0x24 scope:global align:4 noreloc
+REL_TABLE = .data:0x800D6490; // type:object size:0xC scope:global align:4 noreloc
+VIBRATO_DEF = .data:0x800D649C; // type:object size:0x18 scope:global align:4
+TREMOLO_DEF = .data:0x800D64B4; // type:object size:0x18 scope:global align:4
+ENVELOPE_DEF = .data:0x800D64CC; // type:object size:0x18 scope:global align:4
+ADS_TABLE = .data:0x800D64E4; // type:object size:0x18 scope:global align:4 noreloc
+ADSR_DEF = .data:0x800D64FC; // type:object size:0x18 scope:global align:4
+OSC_DEF = .data:0x800D6514; // type:object size:0x18 scope:global align:4
+PERC_ENV = .data:0x800D6530; // type:object size:0x18 scope:global align:4
+OSC_ENV = .data:0x800D6548; // type:object size:0x18 scope:global align:4
+polys_table = .data:0x800D6560; // type:object size:0x10 scope:global align:4
+...data.0 = .data:0x800D6570; // type:label scope:local
+ksNesStoreFuncTblDefault = .data:0x800D6570; // type:object size:0x20 scope:global align:4
+ksNesStorePPUFuncTblDefault = .data:0x800D6590; // type:object size:0x20 scope:global align:4
+ksNesStoreIOFuncTblDefault = .data:0x800D65B0; // type:object size:0xA0 scope:global align:4
+ksNesStoreQDFuncTbl = .data:0x800D6650; // type:object size:0x20 scope:global align:4
+ksNesInitQDDataTbl = .data:0x800D6670; // type:object size:0xB scope:global align:4
+ksNesStore05FuncTbl = .data:0x800D667C; // type:object size:0xC4 scope:global align:4
+ksNesLoadFuncTblDefault = .data:0x800D6740; // type:object size:0x20 scope:global align:4
+ksNesLoadIOFuncTblDefault = .data:0x800D6760; // type:object size:0x60 scope:global align:4
+ksNesVoiceIdTable_12 = .data:0x800D67C0; // type:object size:0x10 scope:global align:4
+ksNesMapperInitFuncTbl = .data:0x800D67D0; // type:object size:0xE74 scope:global align:4
+ksNesInstJumpTbl = .data:0x800D7644; // type:object size:0x1000 scope:global align:4
+sound_init_data$454 = .data:0x800D8644; // type:object size:0x28 scope:local align:4
+@594 = .data:0x800D866C; // type:object size:0x5 scope:local align:4 data:string
+@595 = .data:0x800D8674; // type:object size:0x9 scope:local align:4 data:string
+@596 = .data:0x800D8680; // type:object size:0x9 scope:local align:4
+ksNesPaletteNormal = .data:0x800D8690; // type:object size:0x80 scope:global align:4 noreloc
+indtexmtx_screen$477 = .data:0x800D8710; // type:object size:0x18 scope:local align:4
+indtexmtx_obj$626 = .data:0x800D8728; // type:object size:0x18 scope:local align:4 data:float
+@811 = .data:0x800D8740; // type:object size:0x8 scope:local align:4 data:string
+indtexmtx_obj$819 = .data:0x800D8748; // type:object size:0x18 scope:local align:4 data:float
+indtexmtx$1004 = .data:0x800D8760; // type:object size:0x18 scope:local align:4
+...data.0 = .data:0x800D8778; // type:label scope:local
+errorChan = .data:0x800D8778; // type:object size:0x1 scope:global align:1 data:byte
+@2206 = .data:0x800D877C; // type:object size:0x23 scope:local align:4
+@2207 = .data:0x800D87A0; // type:object size:0x14 scope:local align:4
+@2208 = .data:0x800D87B4; // type:object size:0x26 scope:local align:4
+@2209 = .data:0x800D87DC; // type:object size:0x1A scope:local align:4
+@2241 = .data:0x800D87F8; // type:object size:0x16 scope:local align:4
+@2242 = .data:0x800D8810; // type:object size:0x20 scope:local align:4
+@2243 = .data:0x800D8830; // type:object size:0x28 scope:local align:4
+@2244 = .data:0x800D8858; // type:object size:0x29 scope:local align:4
+@2245 = .data:0x800D8884; // type:object size:0x20 scope:local align:4
+@2377 = .data:0x800D88A4; // type:object size:0x22 scope:local align:4 data:string
+@2378 = .data:0x800D88C8; // type:object size:0x21 scope:local align:4 data:string
+@2379 = .data:0x800D88EC; // type:object size:0x1B scope:local align:4 data:string
+@2380 = .data:0x800D8908; // type:object size:0x5 scope:local align:4 data:string
+@2381 = .data:0x800D8910; // type:object size:0x3 scope:local align:4 data:string
+@2382 = .data:0x800D8914; // type:object size:0x3 scope:local align:4 data:string
+@2456 = .data:0x800D8918; // type:object size:0x16 scope:local align:4
+@2493 = .data:0x800D8930; // type:object size:0x40 scope:local align:4
+@2494 = .data:0x800D8970; // type:object size:0x25 scope:local align:4
+@2495 = .data:0x800D8998; // type:object size:0x1E scope:local align:4
+@2496 = .data:0x800D89B8; // type:object size:0x26 scope:local align:4
+@2497 = .data:0x800D89E0; // type:object size:0x1E scope:local align:4
+@2498 = .data:0x800D8A00; // type:object size:0x20 scope:local align:4
+@2499 = .data:0x800D8A20; // type:object size:0x24 scope:local align:4
+@2500 = .data:0x800D8A44; // type:object size:0x2C scope:local align:4
+@2501 = .data:0x800D8A70; // type:object size:0x1E scope:local align:4
+@2523 = .data:0x800D8A90; // type:object size:0x12 scope:local align:4
+@2558 = .data:0x800D8AA4; // type:object size:0x6B scope:local align:4 data:string
+@2559 = .data:0x800D8B10; // type:object size:0x60 scope:local align:4 data:string
+@2618 = .data:0x800D8B70; // type:object size:0x7 scope:local align:4 data:string
+@2619 = .data:0x800D8B78; // type:object size:0x7 scope:local align:4 data:string
+@2620 = .data:0x800D8B80; // type:object size:0x10 scope:local align:4 data:string
+@2621 = .data:0x800D8B90; // type:object size:0x19 scope:local align:4 data:string
+@2622 = .data:0x800D8BAC; // type:object size:0x20 scope:local align:4 data:string
+@2623 = .data:0x800D8BCC; // type:object size:0x19 scope:local align:4 data:string
+@2635 = .data:0x800D8BE8; // type:object size:0x19 scope:local align:4 data:string
+@2636 = .data:0x800D8C04; // type:object size:0x19 scope:local align:4 data:string
+@2742 = .data:0x800D8C20; // type:object size:0x8 scope:local align:4 data:string
+@2743 = .data:0x800D8C28; // type:object size:0x1E scope:local align:4
+@2744 = .data:0x800D8C48; // type:object size:0x12 scope:local align:4
+@2745 = .data:0x800D8C5C; // type:object size:0x32 scope:local align:4
+@2746 = .data:0x800D8C90; // type:object size:0x22 scope:local align:4
+@2747 = .data:0x800D8CB4; // type:object size:0x22 scope:local align:4
+@2748 = .data:0x800D8CD8; // type:object size:0x26 scope:local align:4
+@2749 = .data:0x800D8D00; // type:object size:0x25 scope:local align:4
+@2750 = .data:0x800D8D28; // type:object size:0x12 scope:local align:4
+@2751 = .data:0x800D8D3C; // type:object size:0x18 scope:local align:4
+@2752 = .data:0x800D8D54; // type:object size:0x1A scope:local align:4
+@2753 = .data:0x800D8D70; // type:object size:0x10 scope:local align:4
+@2754 = .data:0x800D8D80; // type:object size:0x10 scope:local align:4
+@2755 = .data:0x800D8D90; // type:object size:0xA scope:local align:4
+@2756 = .data:0x800D8D9C; // type:object size:0x16 scope:local align:4
+@2757 = .data:0x800D8DB4; // type:object size:0x10 scope:local align:4
+@2758 = .data:0x800D8DC4; // type:object size:0x14 scope:local align:4
+@2759 = .data:0x800D8DD8; // type:object size:0x10 scope:local align:4
+@2760 = .data:0x800D8DE8; // type:object size:0x14 scope:local align:4
+@2839 = .data:0x800D8DFC; // type:object size:0x14 scope:local align:4
+@2840 = .data:0x800D8E10; // type:object size:0x14 scope:local align:4
+@2841 = .data:0x800D8E24; // type:object size:0x19 scope:local align:4
+@2842 = .data:0x800D8E40; // type:object size:0x1C scope:local align:4
+@2843 = .data:0x800D8E5C; // type:object size:0x18 scope:local align:4
+@2844 = .data:0x800D8E74; // type:object size:0x18 scope:local align:4
+@2845 = .data:0x800D8E8C; // type:object size:0x20 scope:local align:4
+@2846 = .data:0x800D8EAC; // type:object size:0x20 scope:local align:4
+@2847 = .data:0x800D8ECC; // type:object size:0xE scope:local align:4
+@2848 = .data:0x800D8EDC; // type:object size:0x12 scope:local align:4
+@2849 = .data:0x800D8EF0; // type:object size:0x10 scope:local align:4
+@2850 = .data:0x800D8F00; // type:object size:0x14 scope:local align:4
+@2851 = .data:0x800D8F14; // type:object size:0x12 scope:local align:4
+@2852 = .data:0x800D8F28; // type:object size:0x12 scope:local align:4
+@2853 = .data:0x800D8F3C; // type:object size:0x22 scope:local align:4
+@2854 = .data:0x800D8F60; // type:object size:0x26 scope:local align:4
+@2855 = .data:0x800D8F88; // type:object size:0x2C scope:local align:4
+@2960 = .data:0x800D8FB4; // type:object size:0x5 scope:local align:4 data:string
+@2961 = .data:0x800D8FBC; // type:object size:0x3 scope:local align:4 data:string
+@2962 = .data:0x800D8FC0; // type:object size:0x12 scope:local align:4 data:string
+@2963 = .data:0x800D8FD4; // type:object size:0x5 scope:local align:4 data:string
+@2964 = .data:0x800D8FDC; // type:object size:0x1A scope:local align:4
+@2965 = .data:0x800D8FF8; // type:object size:0x18 scope:local align:4
+@2966 = .data:0x800D9010; // type:object size:0x12 scope:local align:4
+@2967 = .data:0x800D9024; // type:object size:0xE scope:local align:4
+@2968 = .data:0x800D9034; // type:object size:0x36 scope:local align:4
+brokenTitle$3010 = .data:0x800D906C; // type:object size:0x10 scope:local align:4 data:string
+@3044 = .data:0x800D907C; // type:object size:0x16 scope:local align:4
+@3045 = .data:0x800D9094; // type:object size:0x12 scope:local align:4
+@3046 = .data:0x800D90A8; // type:object size:0x14 scope:local align:4
+@3078 = .data:0x800D90BC; // type:object size:0x6 scope:local align:4 data:string
+@3106 = .data:0x800D90C4; // type:object size:0xC scope:local align:4 data:string
+@3107 = .data:0x800D90D0; // type:object size:0x15 scope:local align:4 data:string
+@3131 = .data:0x800D90E8; // type:object size:0xC scope:local align:4 data:string
+@3153 = .data:0x800D90F4; // type:object size:0x38 scope:local align:4
+@3389 = .data:0x800D912C; // type:object size:0x9 scope:local align:4
+@3390 = .data:0x800D9138; // type:object size:0x14 scope:local align:4 data:string
+@3391 = .data:0x800D914C; // type:object size:0x16 scope:local align:4 data:string
+@3392 = .data:0x800D9164; // type:object size:0xA scope:local align:4 data:string
+@3393 = .data:0x800D9170; // type:object size:0x37 scope:local align:4 data:string
+@3394 = .data:0x800D91A8; // type:object size:0x26 scope:local align:4
+@3395 = .data:0x800D91D0; // type:object size:0x3 scope:local align:4 data:string
+@3396 = .data:0x800D91D4; // type:object size:0x13 scope:local align:4 data:string
+@3397 = .data:0x800D91E8; // type:object size:0x26 scope:local align:4
+@3398 = .data:0x800D9210; // type:object size:0x30 scope:local align:4 data:string
+@3399 = .data:0x800D9240; // type:object size:0x45 scope:local align:4 data:string
+@3400 = .data:0x800D9288; // type:object size:0x2B scope:local align:4 data:string
+@3401 = .data:0x800D92B4; // type:object size:0x13 scope:local align:4 data:string
+@3402 = .data:0x800D92C8; // type:object size:0x1B scope:local align:4 data:string
+@3403 = .data:0x800D92E4; // type:object size:0x2B scope:local align:4 data:string
+@3404 = .data:0x800D9310; // type:object size:0xE scope:local align:4 data:string
+@3405 = .data:0x800D9320; // type:object size:0x16 scope:local align:4 data:string
+@3406 = .data:0x800D9338; // type:object size:0x30 scope:local align:4 data:string
+@3407 = .data:0x800D9368; // type:object size:0x13 scope:local align:4 data:string
+@3408 = .data:0x800D937C; // type:object size:0x2F scope:local align:4 data:string
+@3409 = .data:0x800D93AC; // type:object size:0x12 scope:local align:4 data:string
+@3410 = .data:0x800D93C0; // type:object size:0x33 scope:local align:4 data:string
+@3411 = .data:0x800D93F4; // type:object size:0x17 scope:local align:4 data:string
+@3412 = .data:0x800D940C; // type:object size:0x34 scope:local align:4 data:string
+@3413 = .data:0x800D9440; // type:object size:0x1C scope:local align:4 data:string
+@3414 = .data:0x800D945C; // type:object size:0xE scope:local align:4 data:string
+@3415 = .data:0x800D946C; // type:object size:0x18 scope:local align:4 data:string
+@3417 = .data:0x800D9484; // type:object size:0x18 scope:local align:4 data:string
+@3418 = .data:0x800D949C; // type:object size:0x18 scope:local align:4 data:string
+@3419 = .data:0x800D94B4; // type:object size:0x18 scope:local align:4 data:string
+@3420 = .data:0x800D94CC; // type:object size:0x18 scope:local align:4 data:string
+@3421 = .data:0x800D94E4; // type:object size:0x18 scope:local align:4 data:string
+@3422 = .data:0x800D94FC; // type:object size:0x18 scope:local align:4 data:string
+@3423 = .data:0x800D9514; // type:object size:0x18 scope:local align:4 data:string
+@3424 = .data:0x800D952C; // type:object size:0x88 scope:local align:4 data:string
+@3425 = .data:0x800D95B4; // type:object size:0xE scope:local align:4 data:string
+@3426 = .data:0x800D95C4; // type:object size:0x5 scope:local align:4 data:string
+@3427 = .data:0x800D95CC; // type:object size:0x16 scope:local align:4 data:string
+@3428 = .data:0x800D95E4; // type:object size:0x2F scope:local align:4 data:string
+@3429 = .data:0x800D9614; // type:object size:0x5 scope:local align:4 data:string
+@3430 = .data:0x800D961C; // type:object size:0x1B scope:local align:4 data:string
+@3431 = .data:0x800D9638; // type:object size:0x31 scope:local align:4 data:string
+@3432 = .data:0x800D966C; // type:object size:0x5 scope:local align:4 data:string
+@3433 = .data:0x800D9674; // type:object size:0x7 scope:local align:4 data:string
+@3610 = .data:0x800D967C; // type:object size:0x25 scope:local align:4 data:string
+@3611 = .data:0x800D96A4; // type:object size:0x39 scope:local align:4
+@3674 = .data:0x800D96E0; // type:object size:0x17 scope:local align:4 data:string
+@3675 = .data:0x800D96F8; // type:object size:0x30 scope:local align:4
+@3676 = .data:0x800D9728; // type:object size:0x32 scope:local align:4
+@3677 = .data:0x800D975C; // type:object size:0x23 scope:local align:4
+@3678 = .data:0x800D9780; // type:object size:0x9 scope:local align:4 data:string
+@3679 = .data:0x800D978C; // type:object size:0x27 scope:local align:4
+@3680 = .data:0x800D97B4; // type:object size:0x2B scope:local align:4
+@3681 = .data:0x800D97E0; // type:object size:0x9 scope:local align:4
+@3682 = .data:0x800D97EC; // type:object size:0x27 scope:local align:4 data:string
+@3683 = .data:0x800D9814; // type:object size:0x17 scope:local align:4 data:string
+@3684 = .data:0x800D982C; // type:object size:0x39 scope:local align:4 data:string
+@3762 = .data:0x800D9868; // type:object size:0x21 scope:local align:4
+@3776 = .data:0x800D988C; // type:object size:0x16 scope:local align:4
+@3777 = .data:0x800D98A4; // type:object size:0x1D scope:local align:4
+@3961 = .data:0x800D98C4; // type:object size:0x10 scope:local align:4 data:string
+@3962 = .data:0x800D98D4; // type:object size:0x9 scope:local align:4 data:string
+@3963 = .data:0x800D98E0; // type:object size:0x8 scope:local align:4 data:string
+@3970 = .data:0x800D98E8; // type:object size:0xB scope:local align:4 data:string
+@3971 = .data:0x800D98F4; // type:object size:0xB scope:local align:4 data:string
+@3972 = .data:0x800D9900; // type:object size:0x11 scope:local align:4 data:string
+@4042 = .data:0x800D9914; // type:object size:0x38 scope:local align:4
+@4156 = .data:0x800D994C; // type:object size:0x26 scope:local align:4
+@4161 = .data:0x800D9974; // type:object size:0xE scope:local align:4 data:string
+__RTTI__13JKRFileFinder = .data:0x800D9984; // type:object size:0x8 scope:local align:4
+__vt__13JKRFileFinder = .data:0x800D998C; // type:object size:0x10 scope:global align:4
+...data.0 = .data:0x800D99A0; // type:label scope:local
+tags_table_default = .data:0x800D99A0; // type:object size:0x4 scope:global align:4 data:string noreloc
+tags_table_cluclu_land = .data:0x800D99A4; // type:object size:0x2F scope:global align:4 noreloc
+tags_table_balloon_fight = .data:0x800D99D4; // type:object size:0x47 scope:global align:4 noreloc
+tags_table_donkey_kong = .data:0x800D9A1C; // type:object size:0x34 scope:global align:4 noreloc
+tags_table_sansu_asobi = .data:0x800D9A50; // type:object size:0x6E scope:global align:4 noreloc
+tags_table_pinball = .data:0x800D9AC0; // type:object size:0x36 scope:global align:4 noreloc
+tags_table_tennis = .data:0x800D9AF8; // type:object size:0x19 scope:global align:4 noreloc
+tags_table_golf = .data:0x800D9B14; // type:object size:0x24 scope:global align:4 noreloc
+tags_table_punchout = .data:0x800D9B38; // type:object size:0x33 scope:global align:4 noreloc
+tags_table_baseball = .data:0x800D9B6C; // type:object size:0x1B scope:global align:4 noreloc
+tags_table_cluclu_land_disk = .data:0x800D9B88; // type:object size:0x31 scope:global align:4 noreloc
+tags_table_donkey_kong_3 = .data:0x800D9BBC; // type:object size:0x36 scope:global align:4 noreloc
+tags_table_donkey_kong_jr = .data:0x800D9BF4; // type:object size:0x37 scope:global align:4 noreloc
+tags_table_gomoku_narabe = .data:0x800D9C2C; // type:object size:0x20 scope:global align:4 noreloc
+tags_table_mahjong = .data:0x800D9C4C; // type:object size:0x1A scope:global align:4 noreloc
+tags_table_wario_no_mori = .data:0x800D9C68; // type:object size:0x64 scope:global align:4 noreloc
+tags_table_ice_climber = .data:0x800D9CCC; // type:object size:0x2D scope:global align:4 noreloc
+tags_table_mario_bros = .data:0x800D9CFC; // type:object size:0x2D scope:global align:4 noreloc
+tags_table_super_mario_bros = .data:0x800D9D2C; // type:object size:0x43 scope:global align:4 noreloc
+tags_table_legend_of_zelda_disk = .data:0x800D9D70; // type:object size:0x31 scope:global align:4 noreloc
+tags_table_legend_of_zelda_rom = .data:0x800D9DA4; // type:object size:0x36 scope:global align:4 noreloc
+tags_table_soccer = .data:0x800D9DDC; // type:object size:0x19 scope:global align:4 noreloc
+tags_table_excite_bike = .data:0x800D9DF8; // type:object size:0xE9 scope:global align:4 noreloc
+tags_table_excite_bike_design = .data:0x800D9EE4; // type:object size:0x1DF scope:global align:4 noreloc
+tags_table_nazo_no_murasamejo = .data:0x800DA0C4; // type:object size:0x33 scope:global align:4 noreloc
+tags_table_super_mario_bros_2 = .data:0x800DA0F8; // type:object size:0x4E scope:global align:4 noreloc
+tags_table_marioopen_golf = .data:0x800DA148; // type:object size:0x3B scope:global align:4 noreloc
+tags_table_external_default = .data:0x800DA184; // type:object size:0x15 scope:global align:4 noreloc
+tags_table_balloon_fight_jpn = .data:0x800DA19C; // type:object size:0x53 scope:global align:4 noreloc
+@2140 = .data:0x800DA1F0; // type:object size:0xD scope:local align:4 data:string
+@2141 = .data:0x800DA200; // type:object size:0xE scope:local align:4 data:string
+@2142 = .data:0x800DA210; // type:object size:0xC scope:local align:4 data:string
+@2143 = .data:0x800DA21C; // type:object size:0xF scope:local align:4 data:string
+@2144 = .data:0x800DA22C; // type:object size:0x8 scope:local align:4 data:string
+@2145 = .data:0x800DA234; // type:object size:0x7 scope:local align:4 data:string
+@2146 = .data:0x800DA23C; // type:object size:0x5 scope:local align:4 data:string
+@2147 = .data:0x800DA244; // type:object size:0xA scope:local align:4 data:string
+@2148 = .data:0x800DA250; // type:object size:0xA scope:local align:4 data:string
+@2149 = .data:0x800DA25C; // type:object size:0x11 scope:local align:4 data:string
+@2150 = .data:0x800DA270; // type:object size:0xE scope:local align:4 data:string
+@2151 = .data:0x800DA280; // type:object size:0xF scope:local align:4 data:string
+@2152 = .data:0x800DA290; // type:object size:0x7 scope:local align:4 data:string
+@2153 = .data:0x800DA298; // type:object size:0xB scope:local align:4 data:string
+@2154 = .data:0x800DA2A4; // type:object size:0xE scope:local align:4 data:string
+@2155 = .data:0x800DA2B4; // type:object size:0xC scope:local align:4 data:string
+@2156 = .data:0x800DA2C0; // type:object size:0xB scope:local align:4 data:string
+@2157 = .data:0x800DA2CC; // type:object size:0x11 scope:local align:4 data:string
+@2158 = .data:0x800DA2E0; // type:object size:0x10 scope:local align:4 data:string
+moriNameTable = .data:0x800DA2F0; // type:object size:0x130 scope:global align:4 data:string
+@2177 = .data:0x800DA420; // type:object size:0x2A scope:local align:4
+@2178 = .data:0x800DA44C; // type:object size:0x26 scope:local align:4
+@2179 = .data:0x800DA474; // type:object size:0x3A scope:local align:4
+@2180 = .data:0x800DA4B0; // type:object size:0x22 scope:local align:4
+@2205 = .data:0x800DA4D4; // type:object size:0x4 scope:local align:4 data:string
+@2229 = .data:0x800DA4D8; // type:object size:0x4 scope:local align:4 data:string
+@2230 = .data:0x800DA4DC; // type:object size:0x4 scope:local align:4 data:string
+@2293 = .data:0x800DA4E0; // type:object size:0x3 scope:local align:4 data:string
+@2294 = .data:0x800DA4E4; // type:object size:0x2 scope:local align:4 data:string
+@2303 = .data:0x800DA4E8; // type:object size:0x6 scope:local align:4 data:string
+@2348 = .data:0x800DA4F0; // type:object size:0x1A scope:local align:4
+@2349 = .data:0x800DA50C; // type:object size:0x23 scope:local align:4
+@2522 = .data:0x800DA530; // type:object size:0x25 scope:local align:4
+@2523 = .data:0x800DA558; // type:object size:0x15 scope:local align:4
+@2524 = .data:0x800DA570; // type:object size:0x4 scope:local align:4 data:string
+@2525 = .data:0x800DA574; // type:object size:0x4 scope:local align:4 data:string
+@2526 = .data:0x800DA578; // type:object size:0x4 scope:local align:4 data:string
+@2527 = .data:0x800DA57C; // type:object size:0x4 scope:local align:4 data:string
+@2528 = .data:0x800DA580; // type:object size:0x4 scope:local align:4 data:string
+@2529 = .data:0x800DA584; // type:object size:0x26 scope:local align:4
+@2530 = .data:0x800DA5AC; // type:object size:0x34 scope:local align:4
+@2531 = .data:0x800DA5E0; // type:object size:0x4 scope:local align:4 data:string
+@2532 = .data:0x800DA5E4; // type:object size:0x4 scope:local align:4 data:string
+@2533 = .data:0x800DA5E8; // type:object size:0x1E scope:local align:4
+@2534 = .data:0x800DA608; // type:object size:0x20 scope:local align:4
+@2535 = .data:0x800DA628; // type:object size:0x4 scope:local align:4 data:string
+@2536 = .data:0x800DA62C; // type:object size:0x30 scope:local align:4
+@2537 = .data:0x800DA65C; // type:object size:0x1E scope:local align:4
+@2538 = .data:0x800DA67C; // type:object size:0x4 scope:local align:4 data:string
+@2539 = .data:0x800DA680; // type:object size:0x15 scope:local align:4
+@2540 = .data:0x800DA698; // type:object size:0x4 scope:local align:4 data:string
+@2541 = .data:0x800DA69C; // type:object size:0x4 scope:local align:4 data:string
+@2542 = .data:0x800DA6A0; // type:object size:0x4 scope:local align:4 data:string
+@2543 = .data:0x800DA6A4; // type:object size:0x4 scope:local align:4 data:string
+@2544 = .data:0x800DA6A8; // type:object size:0x15 scope:local align:4
+@2545 = .data:0x800DA6C0; // type:object size:0x4 scope:local align:4 data:string
+@2546 = .data:0x800DA6C4; // type:object size:0x4 scope:local align:4 data:string
+@2547 = .data:0x800DA6C8; // type:object size:0x1A scope:local align:4
+@2548 = .data:0x800DA6E4; // type:object size:0x4 scope:local align:4 data:string
+@2549 = .data:0x800DA6E8; // type:object size:0x4 scope:local align:4 data:string
+@2550 = .data:0x800DA6EC; // type:object size:0x4 scope:local align:4 data:string
+@2551 = .data:0x800DA6F0; // type:object size:0x14 scope:local align:4
+@2552 = .data:0x800DA704; // type:object size:0x1B scope:local align:4
+@2631 = .data:0x800DA720; // type:object size:0x1B scope:local align:4
+@2632 = .data:0x800DA73C; // type:object size:0x4 scope:local align:4 data:string
+@2633 = .data:0x800DA740; // type:object size:0x4 scope:local align:4 data:string
+@2634 = .data:0x800DA744; // type:object size:0x4 scope:local align:4 data:string
+@2635 = .data:0x800DA748; // type:object size:0x4 scope:local align:4 data:string
+@2636 = .data:0x800DA74C; // type:object size:0x1B scope:local align:4
+@2681 = .data:0x800DA768; // type:object size:0x1B scope:local align:4
+@2682 = .data:0x800DA784; // type:object size:0x1E scope:local align:4
+@2683 = .data:0x800DA7A4; // type:object size:0x16 scope:local align:4
+@2684 = .data:0x800DA7BC; // type:object size:0x15 scope:local align:4
+@2776 = .data:0x800DA7D4; // type:object size:0x35 scope:local align:4
+@2777 = .data:0x800DA80C; // type:object size:0x35 scope:local align:4
+@2778 = .data:0x800DA844; // type:object size:0x1B scope:local align:4
+@2790 = .data:0x800DA860; // type:object size:0x3F scope:local align:4
+@2791 = .data:0x800DA8A0; // type:object size:0x3F scope:local align:4
+@2808 = .data:0x800DA8E0; // type:object size:0x31 scope:local align:4
+@2809 = .data:0x800DA914; // type:object size:0x36 scope:local align:4
+@2822 = .data:0x800DA94C; // type:object size:0x3B scope:local align:4
+@2823 = .data:0x800DA988; // type:object size:0x39 scope:local align:4
+ResetFunctionInfo = .data:0x800DA9C8; // type:object size:0x10 scope:local align:4
+...data.0 = .data:0x800DA9D8; // type:label scope:local
+D54 = .data:0x800DA9D8; // type:object size:0x2D scope:global align:4 data:byte
+...data.0 = .data:0x800DAA08; // type:label scope:local
+@357 = .data:0x800DAA08; // type:object size:0x5 scope:local align:4 data:string
+@358 = .data:0x800DAA10; // type:object size:0x5 scope:local align:4 data:4byte
+@579 = .data:0x800DAA18; // type:object size:0x17 scope:local align:4
+@580 = .data:0x800DAA30; // type:object size:0x1B scope:local align:4
+@581 = .data:0x800DAA4C; // type:object size:0xF scope:local align:4
+@716 = .data:0x800DAA5C; // type:object size:0x5 scope:local align:4 data:4byte
+@803 = .data:0x800DAA64; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x800DAAA0; // type:label scope:local
+texture_cache_data_func = .data:0x800DAAA0; // type:object size:0xC scope:global align:4
+texture_cache_bss_func = .data:0x800DAAAC; // type:object size:0xC scope:global align:4
+texture_cache_data = .data:0x800DAAB8; // type:object size:0x20 scope:global align:4
+texture_cache_bss = .data:0x800DAAD8; // type:object size:0x20 scope:global align:4
+@497 = .data:0x800DAAF8; // type:object size:0x18 scope:local align:4
+@498 = .data:0x800DAB10; // type:object size:0x1B scope:local align:4 data:string
+@499 = .data:0x800DAB2C; // type:object size:0x10 scope:local align:4 data:string
+@500 = .data:0x800DAB3C; // type:object size:0x22 scope:local align:4
+@501 = .data:0x800DAB60; // type:object size:0x15 scope:local align:4
+doltexwrapmode = .data:0x800DAB78; // type:object size:0x10 scope:global align:4
+@701 = .data:0x800DAB88; // type:object size:0x9 scope:local align:4 data:string
+dolfmttbl2 = .data:0x800DAB94; // type:object size:0x50 scope:global align:4
+dolfmttbl = .data:0x800DABE4; // type:object size:0x20 scope:global align:4
+@711 = .data:0x800DAC04; // type:object size:0xA scope:local align:4 data:string
+@712 = .data:0x800DAC10; // type:object size:0x11 scope:local align:4 data:string
+@714 = .data:0x800DAC24; // type:object size:0x11 scope:local align:4 data:string
+@715 = .data:0x800DAC38; // type:object size:0xD scope:local align:4 data:string
+@716 = .data:0x800DAC48; // type:object size:0xC scope:local align:4 data:string
+@718 = .data:0x800DAC54; // type:object size:0xB scope:local align:4 data:string
+@719 = .data:0x800DAC60; // type:object size:0xE scope:local align:4 data:string
+@720 = .data:0x800DAC70; // type:object size:0x15 scope:local align:4 data:string
+@722 = .data:0x800DAC88; // type:object size:0x16 scope:local align:4 data:string
+@723 = .data:0x800DACA0; // type:object size:0xE scope:local align:4 data:string
+@724 = .data:0x800DACB0; // type:object size:0xF scope:local align:4 data:string
+@725 = .data:0x800DACC0; // type:object size:0xF scope:local align:4 data:string
+@726 = .data:0x800DACD0; // type:object size:0x10 scope:local align:4 data:string
+@727 = .data:0x800DACE0; // type:object size:0x11 scope:local align:4 data:string
+@728 = .data:0x800DACF4; // type:object size:0x10 scope:local align:4 data:string
+@729 = .data:0x800DAD04; // type:object size:0xB scope:local align:4 data:string
+@730 = .data:0x800DAD10; // type:object size:0xA scope:local align:4 data:string
+@731 = .data:0x800DAD1C; // type:object size:0xB scope:local align:4 data:string
+@732 = .data:0x800DAD28; // type:object size:0xD scope:local align:4 data:string
+@735 = .data:0x800DAD38; // type:object size:0xF scope:local align:4 data:string
+@736 = .data:0x800DAD48; // type:object size:0xD scope:local align:4 data:string
+@737 = .data:0x800DAD58; // type:object size:0x10 scope:local align:4 data:string
+@738 = .data:0x800DAD68; // type:object size:0xB scope:local align:4 data:string
+@739 = .data:0x800DAD74; // type:object size:0xD scope:local align:4 data:string
+@740 = .data:0x800DAD84; // type:object size:0xF scope:local align:4 data:string
+@741 = .data:0x800DAD94; // type:object size:0xD scope:local align:4 data:string
+@742 = .data:0x800DADA4; // type:object size:0xB scope:local align:4 data:string
+@743 = .data:0x800DADB0; // type:object size:0xB scope:local align:4 data:string
+@744 = .data:0x800DADBC; // type:object size:0xD scope:local align:4 data:string
+@745 = .data:0x800DADCC; // type:object size:0xE scope:local align:4 data:string
+@746 = .data:0x800DADDC; // type:object size:0xA scope:local align:4 data:string
+@747 = .data:0x800DADE8; // type:object size:0x9 scope:local align:4 data:string
+@749 = .data:0x800DADF4; // type:object size:0x12 scope:local align:4 data:string
+@750 = .data:0x800DAE08; // type:object size:0xA scope:local align:4 data:string
+@751 = .data:0x800DAE14; // type:object size:0xE scope:local align:4 data:string
+@752 = .data:0x800DAE24; // type:object size:0xA scope:local align:4 data:string
+@753 = .data:0x800DAE30; // type:object size:0x11 scope:local align:4 data:string
+@754 = .data:0x800DAE44; // type:object size:0xB scope:local align:4 data:string
+@755 = .data:0x800DAE50; // type:object size:0xD scope:local align:4 data:string
+@756 = .data:0x800DAE60; // type:object size:0xC scope:local align:4 data:string
+@757 = .data:0x800DAE6C; // type:object size:0xE scope:local align:4 data:string
+@758 = .data:0x800DAE7C; // type:object size:0xA scope:local align:4 data:string
+@759 = .data:0x800DAE88; // type:object size:0xC scope:local align:4 data:string
+@760 = .data:0x800DAE94; // type:object size:0xA scope:local align:4 data:string
+@761 = .data:0x800DAEA0; // type:object size:0xE scope:local align:4 data:string
+@762 = .data:0x800DAEB0; // type:object size:0xA scope:local align:4 data:string
+@763 = .data:0x800DAEBC; // type:object size:0x9 scope:local align:4 data:string
+@764 = .data:0x800DAEC8; // type:object size:0x11 scope:local align:4 data:string
+@765 = .data:0x800DAEDC; // type:object size:0xB scope:local align:4 data:string
+@766 = .data:0x800DAEE8; // type:object size:0xD scope:local align:4 data:string
+@767 = .data:0x800DAEF8; // type:object size:0xC scope:local align:4 data:string
+@768 = .data:0x800DAF04; // type:object size:0x10 scope:local align:4 data:string
+@769 = .data:0x800DAF14; // type:object size:0xB scope:local align:4 data:string
+@770 = .data:0x800DAF20; // type:object size:0xA scope:local align:4 data:string
+@771 = .data:0x800DAF2C; // type:object size:0xD scope:local align:4 data:string
+@772 = .data:0x800DAF3C; // type:object size:0xD scope:local align:4 data:string
+@773 = .data:0x800DAF4C; // type:object size:0xD scope:local align:4 data:string
+@774 = .data:0x800DAF5C; // type:object size:0xB scope:local align:4 data:string
+@775 = .data:0x800DAF68; // type:object size:0xB scope:local align:4 data:string
+@776 = .data:0x800DAF74; // type:object size:0xD scope:local align:4 data:string
+@777 = .data:0x800DAF84; // type:object size:0x10 scope:local align:4 data:string
+@778 = .data:0x800DAF94; // type:object size:0x10 scope:local align:4 data:string
+@779 = .data:0x800DAFA4; // type:object size:0x14 scope:local align:4 data:string
+@780 = .data:0x800DAFB8; // type:object size:0xA scope:local align:4 data:string
+@781 = .data:0x800DAFC4; // type:object size:0xF scope:local align:4 data:string
+@782 = .data:0x800DAFD4; // type:object size:0xC scope:local align:4 data:string
+@783 = .data:0x800DAFE0; // type:object size:0x13 scope:local align:4 data:string
+@784 = .data:0x800DAFF4; // type:object size:0xB scope:local align:4 data:string
+@785 = .data:0x800DB000; // type:object size:0xA scope:local align:4 data:string
+@951 = .data:0x800DB00C; // type:object size:0x1A scope:local align:4 data:string
+@952 = .data:0x800DB028; // type:object size:0xF scope:local align:4 data:string
+@953 = .data:0x800DB038; // type:object size:0xC scope:local align:4 data:string
+@954 = .data:0x800DB044; // type:object size:0xC scope:local align:4 data:string
+@955 = .data:0x800DB050; // type:object size:0xC scope:local align:4 data:string
+@956 = .data:0x800DB05C; // type:object size:0xC scope:local align:4 data:string
+@957 = .data:0x800DB068; // type:object size:0xC scope:local align:4 data:string
+@958 = .data:0x800DB074; // type:object size:0xC scope:local align:4 data:string
+@959 = .data:0x800DB080; // type:object size:0xE scope:local align:4 data:string
+@960 = .data:0x800DB090; // type:object size:0xE scope:local align:4 data:string
+@961 = .data:0x800DB0A0; // type:object size:0xE scope:local align:4 data:string
+@962 = .data:0x800DB0B0; // type:object size:0xE scope:local align:4 data:string
+@963 = .data:0x800DB0C0; // type:object size:0xE scope:local align:4 data:string
+@964 = .data:0x800DB0D0; // type:object size:0xE scope:local align:4 data:string
+@965 = .data:0x800DB0E0; // type:object size:0x10 scope:local align:4 data:string
+@966 = .data:0x800DB0F0; // type:object size:0x18 scope:local align:4 data:string
+@967 = .data:0x800DB108; // type:object size:0x1D scope:local align:4 data:string
+@968 = .data:0x800DB128; // type:object size:0x25 scope:local align:4 data:string
+@1011 = .data:0x800DB150; // type:object size:0x9 scope:local align:4 data:string
+@1014 = .data:0x800DB15C; // type:object size:0xA scope:local align:4 data:string
+@1016 = .data:0x800DB168; // type:object size:0xC scope:local align:4 data:string
+@1022 = .data:0x800DB174; // type:object size:0xF scope:local align:4 data:string
+@1024 = .data:0x800DB184; // type:object size:0xD scope:local align:4 data:string
+@1025 = .data:0x800DB194; // type:object size:0xD scope:local align:4 data:string
+@1026 = .data:0x800DB1A4; // type:object size:0x10 scope:local align:4 data:string
+@1027 = .data:0x800DB1B4; // type:object size:0xC scope:local align:4 data:string
+@1028 = .data:0x800DB1C0; // type:object size:0xA scope:local align:4 data:string
+@1029 = .data:0x800DB1CC; // type:object size:0xD scope:local align:4 data:string
+@1030 = .data:0x800DB1DC; // type:object size:0xE scope:local align:4 data:string
+@1033 = .data:0x800DB1EC; // type:object size:0x20 scope:local align:4
+@1032 = .data:0x800DB20C; // type:object size:0x20 scope:local align:4
+@1053 = .data:0x800DB22C; // type:object size:0x20 scope:local align:4
+@1078 = .data:0x800DB24C; // type:object size:0x40 scope:local align:4
+@1092 = .data:0x800DB28C; // type:object size:0x20 scope:local align:4
+@1139 = .data:0x800DB2AC; // type:object size:0xB scope:local align:4 data:string
+@1140 = .data:0x800DB2B8; // type:object size:0xE scope:local align:4 data:string
+@1141 = .data:0x800DB2C8; // type:object size:0xD scope:local align:4 data:string
+@1142 = .data:0x800DB2D8; // type:object size:0xD scope:local align:4 data:string
+@1143 = .data:0x800DB2E8; // type:object size:0xD scope:local align:4 data:string
+@1144 = .data:0x800DB2F8; // type:object size:0xA scope:local align:4 data:string
+@1145 = .data:0x800DB304; // type:object size:0xC scope:local align:4 data:string
+@1146 = .data:0x800DB310; // type:object size:0xA scope:local align:4 data:string
+@1147 = .data:0x800DB31C; // type:object size:0xA scope:local align:4 data:string
+@1148 = .data:0x800DB328; // type:object size:0xC scope:local align:4 data:string
+@1149 = .data:0x800DB334; // type:object size:0xE scope:local align:4 data:string
+@1150 = .data:0x800DB344; // type:object size:0x9 scope:local align:4 data:string
+@1152 = .data:0x800DB350; // type:object size:0xC scope:local align:4 data:string
+@1153 = .data:0x800DB35C; // type:object size:0xD scope:local align:4 data:string
+@1154 = .data:0x800DB36C; // type:object size:0xC scope:local align:4 data:string
+@1155 = .data:0x800DB378; // type:object size:0xD scope:local align:4 data:string
+@1156 = .data:0x800DB388; // type:object size:0xA scope:local align:4 data:string
+@1157 = .data:0x800DB394; // type:object size:0xB scope:local align:4 data:string
+@1158 = .data:0x800DB3A0; // type:object size:0xD scope:local align:4 data:string
+@1160 = .data:0x800DB3B0; // type:object size:0x9 scope:local align:4 data:string
+@1161 = .data:0x800DB3BC; // type:object size:0xB scope:local align:4 data:string
+@1194 = .data:0x800DB3C8; // type:object size:0x19 scope:local align:4 data:string
+@1195 = .data:0x800DB3E4; // type:object size:0x18 scope:local align:4 data:string
+@1220 = .data:0x800DB3FC; // type:object size:0x43 scope:local align:4 data:string
+@1221 = .data:0x800DB440; // type:object size:0x43 scope:local align:4 data:string
+@1336 = .data:0x800DB484; // type:object size:0x48 scope:local align:4 data:string
+@1344 = .data:0x800DB4CC; // type:object size:0x20 scope:local align:4
+@1343 = .data:0x800DB4EC; // type:object size:0x20 scope:local align:4
+@1342 = .data:0x800DB50C; // type:object size:0x20 scope:local align:4
+@1341 = .data:0x800DB52C; // type:object size:0x20 scope:local align:4
+@1340 = .data:0x800DB54C; // type:object size:0x20 scope:local align:4
+@1339 = .data:0x800DB56C; // type:object size:0x20 scope:local align:4
+@1338 = .data:0x800DB58C; // type:object size:0x20 scope:local align:4
+@1337 = .data:0x800DB5AC; // type:object size:0x20 scope:local align:4
+@1467 = .data:0x800DB5CC; // type:object size:0x47 scope:local align:4 data:string
+@1475 = .data:0x800DB614; // type:object size:0x20 scope:local align:4
+@1474 = .data:0x800DB634; // type:object size:0x20 scope:local align:4
+@1473 = .data:0x800DB654; // type:object size:0x20 scope:local align:4
+@1472 = .data:0x800DB674; // type:object size:0x20 scope:local align:4
+@1471 = .data:0x800DB694; // type:object size:0x20 scope:local align:4
+@1470 = .data:0x800DB6B4; // type:object size:0x20 scope:local align:4
+@1469 = .data:0x800DB6D4; // type:object size:0x20 scope:local align:4
+@1468 = .data:0x800DB6F4; // type:object size:0x20 scope:local align:4
+black_texture$1943 = .data:0x800DB720; // type:object size:0x20 scope:local align:32
+@2029 = .data:0x800DB740; // type:object size:0x19 scope:local align:4
+@2030 = .data:0x800DB75C; // type:object size:0xE scope:local align:4 data:string
+@2031 = .data:0x800DB76C; // type:object size:0xE scope:local align:4
+@2032 = .data:0x800DB77C; // type:object size:0x9 scope:local align:4 data:string
+@2034 = .data:0x800DB788; // type:object size:0x18 scope:local align:4
+@2035 = .data:0x800DB7A0; // type:object size:0xF scope:local align:4 data:string
+@2076 = .data:0x800DB7B0; // type:object size:0x28 scope:local align:4
+@2077 = .data:0x800DB7D8; // type:object size:0x1A scope:local align:4
+@2108 = .data:0x800DB7F4; // type:object size:0x24 scope:local align:4
+@2204 = .data:0x800DB818; // type:object size:0x21 scope:local align:4
+@2526 = .data:0x800DB83C; // type:object size:0xF scope:local align:4 data:string
+@2778 = .data:0x800DB84C; // type:object size:0x40 scope:local align:4
+@2787 = .data:0x800DB88C; // type:object size:0x20 scope:local align:4
+@2786 = .data:0x800DB8AC; // type:object size:0x20 scope:local align:4
+@2785 = .data:0x800DB8CC; // type:object size:0x20 scope:local align:4
+@2784 = .data:0x800DB8EC; // type:object size:0x20 scope:local align:4
+@2783 = .data:0x800DB90C; // type:object size:0x20 scope:local align:4
+@2782 = .data:0x800DB92C; // type:object size:0x20 scope:local align:4
+@2781 = .data:0x800DB94C; // type:object size:0x20 scope:local align:4
+@2780 = .data:0x800DB96C; // type:object size:0x20 scope:local align:4
+@3220 = .data:0x800DB98C; // type:object size:0x1C scope:local align:4 data:string
+@3221 = .data:0x800DB9A8; // type:object size:0x10 scope:local align:4 data:string
+@3477 = .data:0x800DB9B8; // type:object size:0x4C scope:local align:4
+@3478 = .data:0x800DBA04; // type:object size:0x4C scope:local align:4
+@3479 = .data:0x800DBA50; // type:object size:0x4C scope:local align:4
+@3480 = .data:0x800DBA9C; // type:object size:0x4C scope:local align:4
+@3657 = .data:0x800DBAE8; // type:object size:0x49 scope:local align:4
+@4187 = .data:0x800DBB34; // type:object size:0x3C scope:local align:4
+@4296 = .data:0x800DBB70; // type:object size:0x21 scope:local align:4
+@4297 = .data:0x800DBB94; // type:object size:0x1B scope:local align:4 data:string
+@4706 = .data:0x800DBBB0; // type:object size:0x45 scope:local align:4
+@4830 = .data:0x800DBBF8; // type:object size:0x20 scope:local align:4
+@4829 = .data:0x800DBC18; // type:object size:0x20 scope:local align:4
+@4828 = .data:0x800DBC38; // type:object size:0x20 scope:local align:4
+@4827 = .data:0x800DBC58; // type:object size:0x20 scope:local align:4
+@4826 = .data:0x800DBC78; // type:object size:0x20 scope:local align:4
+@4825 = .data:0x800DBC98; // type:object size:0x20 scope:local align:4
+@4824 = .data:0x800DBCB8; // type:object size:0x20 scope:local align:4
+@4823 = .data:0x800DBCD8; // type:object size:0x20 scope:local align:4
+@4957 = .data:0x800DBCF8; // type:object size:0x20 scope:local align:4
+@4956 = .data:0x800DBD18; // type:object size:0x20 scope:local align:4
+@4955 = .data:0x800DBD38; // type:object size:0x20 scope:local align:4
+@4954 = .data:0x800DBD58; // type:object size:0x20 scope:local align:4
+@4953 = .data:0x800DBD78; // type:object size:0x20 scope:local align:4
+@4952 = .data:0x800DBD98; // type:object size:0x20 scope:local align:4
+@4951 = .data:0x800DBDB8; // type:object size:0x20 scope:local align:4
+@4950 = .data:0x800DBDD8; // type:object size:0x20 scope:local align:4
+@5088 = .data:0x800DBDF8; // type:object size:0x20 scope:local align:4
+@5087 = .data:0x800DBE18; // type:object size:0x20 scope:local align:4
+@5086 = .data:0x800DBE38; // type:object size:0x20 scope:local align:4
+@5085 = .data:0x800DBE58; // type:object size:0x20 scope:local align:4
+@5084 = .data:0x800DBE78; // type:object size:0x20 scope:local align:4
+@5083 = .data:0x800DBE98; // type:object size:0x20 scope:local align:4
+@5082 = .data:0x800DBEB8; // type:object size:0x20 scope:local align:4
+@5081 = .data:0x800DBED8; // type:object size:0x20 scope:local align:4
+@6026 = .data:0x800DBEF8; // type:object size:0x1B scope:local align:4 data:string
+@6245 = .data:0x800DBF14; // type:object size:0x2A scope:local align:4
+@6271 = .data:0x800DBF40; // type:object size:0x23 scope:local align:4
+@6915 = .data:0x800DBF64; // type:object size:0x36 scope:local align:4
+@7202 = .data:0x800DBF9C; // type:object size:0x13 scope:local align:4 data:string
+@7205 = .data:0x800DBFB0; // type:object size:0x21 scope:local align:4 data:string
+@7206 = .data:0x800DBFD4; // type:object size:0x15 scope:local align:4
+@7207 = .data:0x800DBFEC; // type:object size:0x18 scope:local align:4
+@7208 = .data:0x800DC004; // type:object size:0x3C scope:local align:4
+@7570 = .data:0x800DC040; // type:object size:0x25 scope:local align:4
+@7801 = .data:0x800DC068; // type:object size:0x26 scope:local align:4
+@7821 = .data:0x800DC090; // type:object size:0xC scope:local align:4
+@7822 = .data:0x800DC09C; // type:object size:0xC scope:local align:4
+@7823 = .data:0x800DC0A8; // type:object size:0xC scope:local align:4
+@7824 = .data:0x800DC0B4; // type:object size:0xC scope:local align:4
+@7825 = .data:0x800DC0C0; // type:object size:0xC scope:local align:4
+@7826 = .data:0x800DC0CC; // type:object size:0xC scope:local align:4
+@7827 = .data:0x800DC0D8; // type:object size:0xC scope:local align:4
+@7828 = .data:0x800DC0E4; // type:object size:0xC scope:local align:4
+@7829 = .data:0x800DC0F0; // type:object size:0xC scope:local align:4
+@7830 = .data:0x800DC0FC; // type:object size:0xC scope:local align:4
+@7831 = .data:0x800DC108; // type:object size:0xC scope:local align:4
+@7832 = .data:0x800DC114; // type:object size:0xC scope:local align:4
+@7833 = .data:0x800DC120; // type:object size:0xC scope:local align:4
+@7834 = .data:0x800DC12C; // type:object size:0xC scope:local align:4
+@7835 = .data:0x800DC138; // type:object size:0xC scope:local align:4
+@7836 = .data:0x800DC144; // type:object size:0xC scope:local align:4
+@7837 = .data:0x800DC150; // type:object size:0xC scope:local align:4
+@7838 = .data:0x800DC15C; // type:object size:0xC scope:local align:4
+@7839 = .data:0x800DC168; // type:object size:0xC scope:local align:4
+@7840 = .data:0x800DC174; // type:object size:0xC scope:local align:4
+@7841 = .data:0x800DC180; // type:object size:0xC scope:local align:4
+@7842 = .data:0x800DC18C; // type:object size:0xC scope:local align:4
+@7843 = .data:0x800DC198; // type:object size:0xC scope:local align:4
+@7844 = .data:0x800DC1A4; // type:object size:0xC scope:local align:4
+@7845 = .data:0x800DC1B0; // type:object size:0xC scope:local align:4
+@7846 = .data:0x800DC1BC; // type:object size:0xC scope:local align:4
+@7847 = .data:0x800DC1C8; // type:object size:0xC scope:local align:4
+@7848 = .data:0x800DC1D4; // type:object size:0xC scope:local align:4
+@7849 = .data:0x800DC1E0; // type:object size:0xC scope:local align:4
+@7850 = .data:0x800DC1EC; // type:object size:0xC scope:local align:4
+@7851 = .data:0x800DC1F8; // type:object size:0xC scope:local align:4
+@7852 = .data:0x800DC204; // type:object size:0xC scope:local align:4
+@7853 = .data:0x800DC210; // type:object size:0xC scope:local align:4
+@7854 = .data:0x800DC21C; // type:object size:0xC scope:local align:4
+@7855 = .data:0x800DC228; // type:object size:0xC scope:local align:4
+@7856 = .data:0x800DC234; // type:object size:0xC scope:local align:4
+@7857 = .data:0x800DC240; // type:object size:0xC scope:local align:4
+@7858 = .data:0x800DC24C; // type:object size:0xC scope:local align:4
+@7859 = .data:0x800DC258; // type:object size:0xC scope:local align:4
+@7860 = .data:0x800DC264; // type:object size:0xC scope:local align:4
+@7861 = .data:0x800DC270; // type:object size:0xC scope:local align:4
+@7862 = .data:0x800DC27C; // type:object size:0xC scope:local align:4
+@7863 = .data:0x800DC288; // type:object size:0xC scope:local align:4
+@7864 = .data:0x800DC294; // type:object size:0xC scope:local align:4
+@7865 = .data:0x800DC2A0; // type:object size:0xC scope:local align:4
+@7866 = .data:0x800DC2AC; // type:object size:0xC scope:local align:4
+@7867 = .data:0x800DC2B8; // type:object size:0xC scope:local align:4
+@7868 = .data:0x800DC2C4; // type:object size:0xC scope:local align:4
+@7869 = .data:0x800DC2D0; // type:object size:0xC scope:local align:4
+@7870 = .data:0x800DC2DC; // type:object size:0xC scope:local align:4
+@7871 = .data:0x800DC2E8; // type:object size:0xC scope:local align:4
+@7872 = .data:0x800DC2F4; // type:object size:0xC scope:local align:4
+@7873 = .data:0x800DC300; // type:object size:0xC scope:local align:4
+@7874 = .data:0x800DC30C; // type:object size:0xC scope:local align:4
+@7875 = .data:0x800DC318; // type:object size:0xC scope:local align:4
+@7876 = .data:0x800DC324; // type:object size:0xC scope:local align:4
+@7877 = .data:0x800DC330; // type:object size:0xC scope:local align:4
+@7878 = .data:0x800DC33C; // type:object size:0xC scope:local align:4
+@7879 = .data:0x800DC348; // type:object size:0xC scope:local align:4
+@7880 = .data:0x800DC354; // type:object size:0xC scope:local align:4
+@7881 = .data:0x800DC360; // type:object size:0xC scope:local align:4
+@7882 = .data:0x800DC36C; // type:object size:0xC scope:local align:4
+@7883 = .data:0x800DC378; // type:object size:0xC scope:local align:4
+@7884 = .data:0x800DC384; // type:object size:0xC scope:local align:4
+dl_func_tbl = .data:0x800DC390; // type:object size:0x300 scope:global align:4
+@8028 = .data:0x800DC690; // type:object size:0x2E scope:local align:4
+@8029 = .data:0x800DC6C0; // type:object size:0x14 scope:local align:4
+@379 = .data:0x800DC6D8; // type:object size:0x20 scope:local align:4 data:string
+@389 = .data:0x800DC6F8; // type:object size:0x16 scope:local align:4 data:string
+@407 = .data:0x800DC710; // type:object size:0x25 scope:local align:4 data:string
+@280 = .data:0x800DC738; // type:object size:0x37 scope:local align:4
+@347 = .data:0x800DC770; // type:object size:0x2F scope:local align:4 data:string
+@348 = .data:0x800DC7A0; // type:object size:0x21 scope:local align:4 data:string
+@373 = .data:0x800DC7C8; // type:object size:0x26 scope:local align:4 data:string
+@386 = .data:0x800DC7F0; // type:object size:0x20 scope:local align:4
+gfxprint_moji_tlut = .data:0x800DC810; // type:object size:0x80 scope:global align:4
+gfxprint_font = .data:0x800DC890; // type:object size:0x800 scope:global align:4
+...data.0 = .data:0x800DD090; // type:label scope:local
+@318 = .data:0x800DD090; // type:object size:0x36 scope:local align:4
+@319 = .data:0x800DD0C8; // type:object size:0xD scope:local align:4 data:string
+@391 = .data:0x800DD0D8; // type:object size:0x4B scope:local align:4
+@603 = .data:0x800DD124; // type:object size:0x24 scope:local align:4
+@604 = .data:0x800DD148; // type:object size:0x24 scope:local align:4
+@605 = .data:0x800DD16C; // type:object size:0x44 scope:local align:4
+@646 = .data:0x800DD1B0; // type:object size:0x2D scope:local align:4
+@647 = .data:0x800DD1E0; // type:object size:0x2D scope:local align:4
+@786 = .data:0x800DD210; // type:object size:0x19 scope:local align:4
+@787 = .data:0x800DD22C; // type:object size:0x42 scope:local align:4
+@790 = .data:0x800DD270; // type:object size:0x14 scope:local align:4 data:string
+@791 = .data:0x800DD284; // type:object size:0x9 scope:local align:4 data:string
+@792 = .data:0x800DD290; // type:object size:0x15 scope:local align:4 data:string
+@794 = .data:0x800DD2A8; // type:object size:0x14 scope:local align:4 data:string
+@795 = .data:0x800DD2BC; // type:object size:0x28 scope:local align:4
+@796 = .data:0x800DD2E4; // type:object size:0x28 scope:local align:4
+@797 = .data:0x800DD30C; // type:object size:0x28 scope:local align:4
+@812 = .data:0x800DD334; // type:object size:0x25 scope:local align:4
+sintable = .data:0x800DD360; // type:object size:0x800 scope:global align:4
+ldigs = .data:0x800DDB60; // type:object size:0x11 scope:global align:4 data:string
+udigs = .data:0x800DDB74; // type:object size:0x11 scope:global align:4 data:string
+spaces = .data:0x800DDB88; // type:object size:0x21 scope:global align:4 data:string
+zeroes = .data:0x800DDBAC; // type:object size:0x21 scope:global align:4 data:string
+@282 = .data:0x800DDBD0; // type:object size:0x150 scope:local align:4
+...data.0 = .data:0x800DDD20; // type:label scope:local
+@284 = .data:0x800DDD20; // type:object size:0x17 scope:local align:4 data:string
+@285 = .data:0x800DDD38; // type:object size:0x3E scope:local align:4
+@286 = .data:0x800DDD78; // type:object size:0x20 scope:local align:4
+...data.0 = .data:0x800DDDA0; // type:label scope:local
+e_mtx = .data:0x800DDDA0; // type:object size:0x30 scope:global align:4
+clear_z_TX = .data:0x800DDDE0; // type:object size:0x40 scope:global align:32
+@2793 = .data:0x800DDE20; // type:object size:0x1C scope:local align:4 data:string
+@2794 = .data:0x800DDE3C; // type:object size:0x1E scope:local align:4 data:string
+@2795 = .data:0x800DDE5C; // type:object size:0x28 scope:local align:4 data:string
+@2796 = .data:0x800DDE84; // type:object size:0x25 scope:local align:4 data:string
+@2797 = .data:0x800DDEAC; // type:object size:0x30 scope:local align:4 data:string
+@2798 = .data:0x800DDEDC; // type:object size:0x19 scope:local align:4 data:string
+@2799 = .data:0x800DDEF8; // type:object size:0xB scope:local align:4 data:string
+__vt__10JFWDisplay = .data:0x800DDF04; // type:object size:0x18 scope:global align:4
+@663 = .data:0x800DDF20; // type:object size:0xC scope:local align:4 data:string
+@809 = .data:0x800DDF2C; // type:object size:0xC scope:local align:4 data:string
+@808 = .data:0x800DDF38; // type:object size:0xC scope:local align:4
+__vt__7JKRHeap = .data:0x800DDF44; // type:object size:0x54 scope:global align:4
+...data.0 = .data:0x800DDF98; // type:label scope:local
+@544 = .data:0x800DDF98; // type:object size:0x25 scope:local align:4 data:string
+@897 = .data:0x800DDFC0; // type:object size:0x2A scope:local align:4 data:string
+@898 = .data:0x800DDFEC; // type:object size:0x2D scope:local align:4 data:string
+@899 = .data:0x800DE01C; // type:object size:0x2B scope:local align:4 data:string
+@900 = .data:0x800DE048; // type:object size:0x29 scope:local align:4 data:string
+@901 = .data:0x800DE074; // type:object size:0x25 scope:local align:4 data:string
+@902 = .data:0x800DE09C; // type:object size:0x2D scope:local align:4 data:string
+@903 = .data:0x800DE0CC; // type:object size:0x26 scope:local align:4 data:string
+@915 = .data:0x800DE0F4; // type:object size:0xF scope:local align:4 data:string
+@916 = .data:0x800DE104; // type:object size:0x1A scope:local align:4 data:string
+@985 = .data:0x800DE120; // type:object size:0x24 scope:local align:4 data:string
+@986 = .data:0x800DE144; // type:object size:0x10 scope:local align:4 data:string
+@1020 = .data:0x800DE154; // type:object size:0x37 scope:local align:4 data:string
+@1021 = .data:0x800DE18C; // type:object size:0xF scope:local align:4 data:string
+@1023 = .data:0x800DE19C; // type:object size:0x3A scope:local align:4 data:string
+@1024 = .data:0x800DE1D8; // type:object size:0x25 scope:local align:4 data:string
+@1027 = .data:0x800DE200; // type:object size:0xF scope:local align:4 data:string
+@1029 = .data:0x800DE210; // type:object size:0x2A scope:local align:4 data:string
+@1106 = .data:0x800DE23C; // type:object size:0x1C scope:local align:4 data:string
+@1107 = .data:0x800DE258; // type:object size:0x30 scope:local align:4 data:string
+@1108 = .data:0x800DE288; // type:object size:0x12 scope:local align:4 data:string
+@1109 = .data:0x800DE29C; // type:object size:0x9 scope:local align:4 data:string
+@1110 = .data:0x800DE2A8; // type:object size:0x1C scope:local align:4 data:string
+@1111 = .data:0x800DE2C4; // type:object size:0x11 scope:local align:4 data:string
+@1112 = .data:0x800DE2D8; // type:object size:0x12 scope:local align:4 data:string
+@1113 = .data:0x800DE2EC; // type:object size:0x11 scope:local align:4 data:string
+@1114 = .data:0x800DE300; // type:object size:0x15 scope:local align:4 data:string
+@1186 = .data:0x800DE318; // type:object size:0xB scope:local align:4 data:string
+@1188 = .data:0x800DE324; // type:object size:0xC scope:local align:4 data:string
+@1190 = .data:0x800DE330; // type:object size:0xC scope:local align:4
+@1187 = .data:0x800DE33C; // type:object size:0x14 scope:local align:4
+__vt__10JKRExpHeap = .data:0x800DE350; // type:object size:0x54 scope:global align:4
+@265 = .data:0x800DE3A8; // type:object size:0xC scope:local align:4 data:string
+__vt__11JKRDisposer = .data:0x800DE3B4; // type:object size:0xC scope:global align:4
+@370 = .data:0x800DE3C0; // type:object size:0xC scope:local align:4 data:string
+@371 = .data:0x800DE3CC; // type:object size:0xA scope:local align:4 data:string
+@372 = .data:0x800DE3D8; // type:object size:0xC scope:local align:4
+__vt__9JKRThread = .data:0x800DE3E4; // type:object size:0x10 scope:global align:4
+sMessageBuffer__7JKRAram = .data:0x800DE3F8; // type:object size:0x10 scope:global align:4
+sMessageQueue__7JKRAram = .data:0x800DE408; // type:object size:0x20 scope:global align:4
+@332 = .data:0x800DE428; // type:object size:0xC scope:local align:4 data:string
+@333 = .data:0x800DE434; // type:object size:0x1F scope:local align:4 data:string
+@634 = .data:0x800DE454; // type:object size:0x1E scope:local align:4 data:string
+@927 = .data:0x800DE474; // type:object size:0xC scope:local align:4 data:string
+@928 = .data:0x800DE480; // type:object size:0xA scope:local align:4 data:string
+@929 = .data:0x800DE48C; // type:object size:0xC scope:local align:4
+@926 = .data:0x800DE498; // type:object size:0x14 scope:local align:4
+__vt__7JKRAram = .data:0x800DE4AC; // type:object size:0x10 scope:global align:4
+@730 = .data:0x800DE4C0; // type:object size:0xC scope:local align:4 data:string
+@732 = .data:0x800DE4CC; // type:object size:0xC scope:local align:4 data:string
+@731 = .data:0x800DE4D8; // type:object size:0xC scope:local align:4
+__vt__11JKRAramHeap = .data:0x800DE4E4; // type:object size:0xC scope:global align:4
+@320 = .data:0x800DE4F0; // type:object size:0xD scope:local align:4 data:string
+__vt__12JKRAramBlock = .data:0x800DE500; // type:object size:0xC scope:global align:4
+...data.0 = .data:0x800DE510; // type:label scope:local
+@308 = .data:0x800DE510; // type:object size:0x10 scope:local align:4 data:string
+@309 = .data:0x800DE520; // type:object size:0xD scope:local align:4 data:string
+@310 = .data:0x800DE530; // type:object size:0x12 scope:local align:4 data:string
+@311 = .data:0x800DE544; // type:object size:0xD scope:local align:4 data:string
+@312 = .data:0x800DE554; // type:object size:0x11 scope:local align:4 data:string
+sMessageBuffer__13JKRAramStream = .data:0x800DE568; // type:object size:0x10 scope:global align:4
+sMessageQueue__13JKRAramStream = .data:0x800DE578; // type:object size:0x20 scope:global align:4
+@331 = .data:0x800DE598; // type:object size:0x12 scope:local align:4 data:string
+@392 = .data:0x800DE5AC; // type:object size:0xE scope:local align:4 data:string
+@394 = .data:0x800DE5BC; // type:object size:0xC scope:local align:4 data:string
+@395 = .data:0x800DE5C8; // type:object size:0xA scope:local align:4 data:string
+@396 = .data:0x800DE5D4; // type:object size:0xC scope:local align:4
+@393 = .data:0x800DE5E0; // type:object size:0x14 scope:local align:4
+__vt__13JKRAramStream = .data:0x800DE5F4; // type:object size:0x10 scope:global align:4
+@2434 = .data:0x800DE608; // type:object size:0xE scope:local align:4 data:string
+@2436 = .data:0x800DE618; // type:object size:0xC scope:local align:4 data:string
+@2435 = .data:0x800DE624; // type:object size:0xC scope:local align:4
+__vt__13JKRFileLoader = .data:0x800DE630; // type:object size:0x3C scope:global align:4
+@292 = .data:0x800DE670; // type:object size:0xE scope:local align:4 data:string
+@293 = .data:0x800DE680; // type:object size:0xD scope:local align:4 data:string
+@294 = .data:0x800DE690; // type:object size:0xC scope:local align:4
+__vt__12JKRArcFinder = .data:0x800DE69C; // type:object size:0x10 scope:global align:4
+@2510 = .data:0x800DE6B0; // type:object size:0xB scope:local align:4 data:string
+@2512 = .data:0x800DE6BC; // type:object size:0xC scope:local align:4 data:string
+@2513 = .data:0x800DE6C8; // type:object size:0xE scope:local align:4 data:string
+@2514 = .data:0x800DE6D8; // type:object size:0xC scope:local align:4
+@2511 = .data:0x800DE6E4; // type:object size:0x14 scope:local align:4
+__vt__10JKRArchive = .data:0x800DE6F8; // type:object size:0x44 scope:global align:4
+@2311 = .data:0x800DE740; // type:object size:0x12 scope:local align:4 data:string
+@2312 = .data:0x800DE754; // type:object size:0x15 scope:local align:4 data:string
+@2313 = .data:0x800DE76C; // type:object size:0xE scope:local align:4 data:string
+@2315 = .data:0x800DE77C; // type:object size:0xC scope:local align:4 data:string
+@2316 = .data:0x800DE788; // type:object size:0xE scope:local align:4 data:string
+@2317 = .data:0x800DE798; // type:object size:0xC scope:local align:4
+@2318 = .data:0x800DE7A4; // type:object size:0xB scope:local align:4 data:string
+@2319 = .data:0x800DE7B0; // type:object size:0x14 scope:local align:4
+@2314 = .data:0x800DE7C4; // type:object size:0x1C scope:local align:4
+__vt__13JKRMemArchive = .data:0x800DE7E0; // type:object size:0x44 scope:global align:4
+@2368 = .data:0x800DE828; // type:object size:0x13 scope:local align:4 data:string
+@2369 = .data:0x800DE83C; // type:object size:0x15 scope:local align:4 data:string
+@2389 = .data:0x800DE854; // type:object size:0xC scope:local align:4 data:string
+@2388 = .data:0x800DE860; // type:object size:0xC scope:local align:4
+__vt__7JKRFile = .data:0x800DE86C; // type:object size:0x20 scope:global align:4
+@2390 = .data:0x800DE88C; // type:object size:0xF scope:local align:4 data:string
+@2392 = .data:0x800DE89C; // type:object size:0xE scope:local align:4 data:string
+@2393 = .data:0x800DE8AC; // type:object size:0xC scope:local align:4
+@2394 = .data:0x800DE8B8; // type:object size:0xB scope:local align:4 data:string
+@2395 = .data:0x800DE8C4; // type:object size:0x14 scope:local align:4
+@2391 = .data:0x800DE8D8; // type:object size:0x1C scope:local align:4
+__vt__14JKRAramArchive = .data:0x800DE8F4; // type:object size:0x44 scope:global align:4
+...data.0 = .data:0x800DE938; // type:label scope:local
+@787 = .data:0x800DE938; // type:object size:0x12 scope:local align:4 data:string
+@788 = .data:0x800DE94C; // type:object size:0x26 scope:local align:4 data:string
+@789 = .data:0x800DE974; // type:object size:0x15 scope:local align:4 data:string
+@816 = .data:0x800DE98C; // type:object size:0xC scope:local align:4 data:string
+@815 = .data:0x800DE998; // type:object size:0xC scope:local align:4
+@817 = .data:0x800DE9C4; // type:object size:0xE scope:local align:4 data:string
+@819 = .data:0x800DE9D4; // type:object size:0xE scope:local align:4 data:string
+@820 = .data:0x800DE9E4; // type:object size:0xC scope:local align:4
+@821 = .data:0x800DE9F0; // type:object size:0xB scope:local align:4 data:string
+@822 = .data:0x800DE9FC; // type:object size:0x14 scope:local align:4
+@818 = .data:0x800DEA10; // type:object size:0x1C scope:local align:4
+__vt__13JKRDvdArchive = .data:0x800DEA2C; // type:object size:0x44 scope:global align:4
+...data.0 = .data:0x800DEA70; // type:label scope:local
+@2441 = .data:0x800DEA70; // type:object size:0x13 scope:local align:4 data:string
+@2442 = .data:0x800DEA84; // type:object size:0x20 scope:local align:4 data:string
+@2443 = .data:0x800DEAA4; // type:object size:0x1A scope:local align:4 data:string
+@2478 = .data:0x800DEAC0; // type:object size:0xC scope:local align:4 data:string
+@2477 = .data:0x800DEACC; // type:object size:0xC scope:local align:4
+@2479 = .data:0x800DEAF8; // type:object size:0xF scope:local align:4 data:string
+@2481 = .data:0x800DEB08; // type:object size:0xE scope:local align:4 data:string
+@2482 = .data:0x800DEB18; // type:object size:0xC scope:local align:4
+@2483 = .data:0x800DEB24; // type:object size:0xB scope:local align:4 data:string
+@2484 = .data:0x800DEB30; // type:object size:0x14 scope:local align:4
+@2480 = .data:0x800DEB44; // type:object size:0x1C scope:local align:4
+__vt__14JKRCompArchive = .data:0x800DEB60; // type:object size:0x44 scope:global align:4
+@652 = .data:0x800DEBA8; // type:object size:0xF scope:local align:4 data:string
+@653 = .data:0x800DEBB8; // type:object size:0x17 scope:local align:4 data:string
+@748 = .data:0x800DEBD0; // type:object size:0xB scope:local align:4 data:string
+@750 = .data:0x800DEBDC; // type:object size:0xC scope:local align:4 data:string
+@752 = .data:0x800DEBE8; // type:object size:0xC scope:local align:4
+@749 = .data:0x800DEBF4; // type:object size:0x14 scope:local align:4
+__vt__10JKRDvdFile = .data:0x800DEC08; // type:object size:0x24 scope:global align:4
+...data.0 = .data:0x800DEC30; // type:label scope:local
+@393 = .data:0x800DEC30; // type:object size:0x11 scope:local align:4 data:string
+@394 = .data:0x800DEC44; // type:object size:0x26 scope:local align:4 data:string
+@395 = .data:0x800DEC6C; // type:object size:0x24 scope:local align:4 data:string
+sMessageBuffer__9JKRDecomp = .data:0x800DEC90; // type:object size:0x10 scope:global align:4
+sMessageQueue__9JKRDecomp = .data:0x800DECA0; // type:object size:0x20 scope:global align:4
+@432 = .data:0x800DECC0; // type:object size:0xA scope:local align:4 data:string
+@434 = .data:0x800DECCC; // type:object size:0xC scope:local align:4 data:string
+@435 = .data:0x800DECD8; // type:object size:0xA scope:local align:4 data:string
+@436 = .data:0x800DECE4; // type:object size:0xC scope:local align:4
+@433 = .data:0x800DECF0; // type:object size:0x14 scope:local align:4
+__vt__9JKRDecomp = .data:0x800DED04; // type:object size:0x10 scope:global align:4
+@342 = .data:0x800DED18; // type:object size:0x15 scope:local align:4 data:string
+@344 = .data:0x800DED30; // type:object size:0xB scope:local align:4 data:string
+@345 = .data:0x800DED3C; // type:object size:0xF scope:local align:4 data:string
+@346 = .data:0x800DED4C; // type:object size:0xC scope:local align:4
+@343 = .data:0x800DED58; // type:object size:0x14 scope:local align:4
+__vt__20JSURandomInputStream = .data:0x800DED6C; // type:object size:0x24 scope:global align:4
+__vt__10JSUIosBase = .data:0x800DED90; // type:object size:0xC scope:global align:4
+__vt__14JSUInputStream = .data:0x800DED9C; // type:object size:0x18 scope:global align:4
+@337 = .data:0x800DEDB8; // type:object size:0xB scope:local align:4 data:string
+@353 = .data:0x800DEDC4; // type:object size:0x13 scope:local align:4 data:string
+@355 = .data:0x800DEDD8; // type:object size:0xF scope:local align:4 data:string
+@356 = .data:0x800DEDE8; // type:object size:0xC scope:local align:4
+@357 = .data:0x800DEDF4; // type:object size:0x15 scope:local align:4 data:string
+@358 = .data:0x800DEE0C; // type:object size:0x14 scope:local align:4
+@354 = .data:0x800DEE20; // type:object size:0x1C scope:local align:4
+__vt__18JSUFileInputStream = .data:0x800DEE3C; // type:object size:0x24 scope:global align:4
+@360 = .data:0x800DEE60; // type:object size:0xD scope:local align:4 data:string
+__vt__12JUTGraphFifo = .data:0x800DEE70; // type:object size:0xC scope:global align:4
+__vt__7JUTFont = .data:0x800DEE80; // type:object size:0x44 scope:global align:4
+@518 = .data:0x800DEEC8; // type:object size:0x20 scope:local align:4 data:string
+@538 = .data:0x800DEEE8; // type:object size:0x14 scope:local align:4 data:string
+@761 = .data:0x800DEEFC; // type:object size:0xB scope:local align:4 data:string
+@762 = .data:0x800DEF08; // type:object size:0xC scope:local align:4
+__vt__10JUTResFont = .data:0x800DEF14; // type:object size:0x4C scope:global align:4
+channel_mask = .data:0x800DEF60; // type:object size:0x10 scope:global align:4
+@1211 = .data:0x800DEF70; // type:object size:0xB scope:local align:4 data:string
+@1213 = .data:0x800DEF7C; // type:object size:0xC scope:local align:4 data:string
+@1212 = .data:0x800DEF88; // type:object size:0xC scope:local align:4
+__vt__10JUTGamePad = .data:0x800DEF94; // type:object size:0xC scope:global align:4
+...data.0 = .data:0x800DEFA0; // type:label scope:local
+sMessageQueue__12JUTException = .data:0x800DEFA0; // type:object size:0x20 scope:global align:4
+c3bcnt = .data:0x800DEFC0; // type:object size:0x20 scope:global align:8 data:4byte
+@2095 = .data:0x800DEFE0; // type:object size:0xD scope:local align:4 data:string
+@2096 = .data:0x800DEFF0; // type:object size:0xE scope:local align:4 data:string
+@2099 = .data:0x800DF000; // type:object size:0x13 scope:local align:4 data:string
+@2100 = .data:0x800DF014; // type:object size:0xA scope:local align:4 data:string
+@2102 = .data:0x800DF020; // type:object size:0xF scope:local align:4 data:string
+@2103 = .data:0x800DF030; // type:object size:0xC scope:local align:4 data:string
+@2104 = .data:0x800DF03C; // type:object size:0xC scope:local align:4 data:string
+@2106 = .data:0x800DF048; // type:object size:0x13 scope:local align:4 data:string
+@2107 = .data:0x800DF05C; // type:object size:0xC scope:local align:4 data:string
+@2108 = .data:0x800DF068; // type:object size:0x11 scope:local align:4 data:string
+@2109 = .data:0x800DF07C; // type:object size:0x12 scope:local align:4 data:string
+@2110 = .data:0x800DF090; // type:object size:0xB scope:local align:4 data:string
+sCpuExpName__12JUTException = .data:0x800DF09C; // type:object size:0x40 scope:global align:4
+@2185 = .data:0x800DF0DC; // type:object size:0x11 scope:local align:4 data:string
+@2186 = .data:0x800DF0F0; // type:object size:0x10 scope:local align:4 data:string
+@2187 = .data:0x800DF100; // type:object size:0x10 scope:local align:4 data:string
+@2189 = .data:0x800DF110; // type:object size:0x11 scope:local align:4 data:string
+@2190 = .data:0x800DF124; // type:object size:0xC scope:local align:4 data:string
+@2204 = .data:0x800DF130; // type:object size:0x26 scope:local align:4 data:string
+@2278 = .data:0x800DF158; // type:object size:0x28 scope:local align:4 data:string
+@2279 = .data:0x800DF180; // type:object size:0x20 scope:local align:4 data:string
+@2280 = .data:0x800DF1A0; // type:object size:0x11 scope:local align:4 data:string
+@2281 = .data:0x800DF1B4; // type:object size:0x15 scope:local align:4 data:string
+@2289 = .data:0x800DF1CC; // type:object size:0x1F scope:local align:4 data:string
+@2290 = .data:0x800DF1EC; // type:object size:0x1C scope:local align:4 data:string
+@2291 = .data:0x800DF208; // type:object size:0x1C scope:local align:4 data:string
+@2305 = .data:0x800DF224; // type:object size:0x26 scope:local align:4 data:string
+@2306 = .data:0x800DF24C; // type:object size:0x27 scope:local align:4 data:string
+@2307 = .data:0x800DF274; // type:object size:0x1A scope:local align:4 data:string
+@2343 = .data:0x800DF290; // type:object size:0x15 scope:local align:4 data:string
+@2364 = .data:0x800DF2A8; // type:object size:0x29 scope:local align:4 data:string
+@2365 = .data:0x800DF2D4; // type:object size:0xD scope:local align:4 data:string
+@2366 = .data:0x800DF2E4; // type:object size:0x12 scope:local align:4 data:string
+@2367 = .data:0x800DF2F8; // type:object size:0x26 scope:local align:4 data:string
+@2380 = .data:0x800DF320; // type:object size:0x19 scope:local align:4 data:string
+@2639 = .data:0x800DF33C; // type:object size:0x37 scope:local align:4 data:string
+@2640 = .data:0x800DF374; // type:object size:0x22 scope:local align:4 data:string
+@2864 = .data:0x800DF398; // type:object size:0x20 scope:local align:4 data:string
+@2904 = .data:0x800DF3B8; // type:object size:0xD scope:local align:4 data:string
+@2906 = .data:0x800DF3C8; // type:object size:0xC scope:local align:4 data:string
+@2907 = .data:0x800DF3D4; // type:object size:0xA scope:local align:4 data:string
+@2908 = .data:0x800DF3E0; // type:object size:0xC scope:local align:4
+@2905 = .data:0x800DF3EC; // type:object size:0x14 scope:local align:4
+__vt__12JUTException = .data:0x800DF400; // type:object size:0x10 scope:global align:4
+sAsciiTable__14JUTDirectPrint = .data:0x800DF410; // type:object size:0x80 scope:global align:4 noreloc
+sFontData__14JUTDirectPrint = .data:0x800DF490; // type:object size:0x100 scope:global align:4 noreloc
+sFontData2__14JUTDirectPrint = .data:0x800DF590; // type:object size:0x134 scope:global align:4 noreloc
+@2278 = .data:0x800DF6C8; // type:object size:0x9 scope:local align:4 data:string
+__vt__8JUTVideo = .data:0x800DF6D4; // type:object size:0xC scope:global align:4
+@2190 = .data:0x800DF6E0; // type:object size:0x9 scope:local align:4 data:string
+__vt__8JUTFader = .data:0x800DF6EC; // type:object size:0x18 scope:global align:4
+@2540 = .data:0x800DF708; // type:object size:0xB scope:local align:4 data:string
+@3028 = .data:0x800DF714; // type:object size:0xB scope:local align:4 data:string
+__vt__10JUTConsole = .data:0x800DF720; // type:object size:0xC scope:global align:4
+@873 = .data:0x800DF730; // type:object size:0xF scope:local align:4 data:string
+__vt__14J2DGrafContext = .data:0x800DF740; // type:object size:0x28 scope:global align:4
+@666 = .data:0x800DF768; // type:object size:0xE scope:local align:4 data:string
+@668 = .data:0x800DF778; // type:object size:0xF scope:local align:4 data:string
+@667 = .data:0x800DF788; // type:object size:0xC scope:local align:4
+__vt__13J2DOrthoGraph = .data:0x800DF794; // type:object size:0x28 scope:global align:4
+...data.0 = .data:0x800DF7C0; // type:label scope:local
+@84 = .data:0x800DF7C0; // type:object size:0x1E scope:local align:4 data:string
+@85 = .data:0x800DF7E0; // type:object size:0x16 scope:local align:4 data:string
+@86 = .data:0x800DF7F8; // type:object size:0xC scope:local align:4 data:string
+@87 = .data:0x800DF804; // type:object size:0x9 scope:local align:4 data:string
+@88 = .data:0x800DF810; // type:object size:0x10 scope:local align:4 data:string
+@89 = .data:0x800DF820; // type:object size:0xB scope:local align:4 data:string
+@90 = .data:0x800DF82C; // type:object size:0xE scope:local align:4 data:string
+@91 = .data:0x800DF83C; // type:object size:0xD scope:local align:4 data:string
+@92 = .data:0x800DF84C; // type:object size:0xD scope:local align:4 data:string
+@93 = .data:0x800DF85C; // type:object size:0xD scope:local align:4 data:string
+@94 = .data:0x800DF86C; // type:object size:0x12 scope:local align:4 data:string
+@95 = .data:0x800DF880; // type:object size:0xE scope:local align:4 data:string
+@96 = .data:0x800DF890; // type:object size:0x15 scope:local align:4 data:string
+__OSExceptionLocations = .data:0x800DF8A8; // type:object size:0x3C scope:global align:4
+@130 = .data:0x800DF8E4; // type:object size:0x1B scope:local align:4 data:string
+@131 = .data:0x800DF900; // type:object size:0x2E scope:local align:4 data:string
+@132 = .data:0x800DF930; // type:object size:0x2F scope:local align:4 data:string
+@133 = .data:0x800DF960; // type:object size:0x1B scope:local align:4 data:string
+DSPInitCode = .data:0x800DF980; // type:object size:0x80 scope:global align:4
+...data.0 = .data:0x800DFA00; // type:label scope:local
+@69 = .data:0x800DFA00; // type:object size:0x29 scope:local align:4 data:string
+@90 = .data:0x800DFA2C; // type:object size:0x18 scope:local align:4 data:string
+@91 = .data:0x800DFA44; // type:object size:0x1B scope:local align:4 data:string
+@92 = .data:0x800DFA60; // type:object size:0x30 scope:local align:4 data:string
+@93 = .data:0x800DFA90; // type:object size:0x3C scope:local align:4 data:string
+@94 = .data:0x800DFACC; // type:object size:0x37 scope:local align:4 data:string
+@95 = .data:0x800DFB04; // type:object size:0x3F scope:local align:4 data:string
+@96 = .data:0x800DFB44; // type:object size:0x29 scope:local align:4 data:string
+@97 = .data:0x800DFB70; // type:object size:0x1D scope:local align:4 data:string
+@98 = .data:0x800DFB90; // type:object size:0x19 scope:local align:4 data:string
+@110 = .data:0x800DFBAC; // type:object size:0x19 scope:local align:4 data:string
+@111 = .data:0x800DFBC8; // type:object size:0x19 scope:local align:4 data:string
+@112 = .data:0x800DFBE4; // type:object size:0x16 scope:local align:4 data:string
+@113 = .data:0x800DFBFC; // type:object size:0x2E scope:local align:4 data:string
+...data.0 = .data:0x800DFC30; // type:label scope:local
+@59 = .data:0x800DFC30; // type:object size:0x44 scope:local align:4 data:string
+@60 = .data:0x800DFC74; // type:object size:0x30 scope:local align:4 data:string
+@61 = .data:0x800DFCA4; // type:object size:0x2F scope:local align:4 data:string
+@62 = .data:0x800DFCD4; // type:object size:0x2F scope:local align:4 data:string
+@63 = .data:0x800DFD04; // type:object size:0x11 scope:local align:4 data:string
+@64 = .data:0x800DFD18; // type:object size:0x21 scope:local align:4 data:string
+@65 = .data:0x800DFD3C; // type:object size:0x12 scope:local align:4 data:string
+@66 = .data:0x800DFD50; // type:object size:0x19 scope:local align:4 data:string
+@67 = .data:0x800DFD6C; // type:object size:0x12 scope:local align:4 data:string
+@68 = .data:0x800DFD80; // type:object size:0x1D scope:local align:4 data:string
+@69 = .data:0x800DFDA0; // type:object size:0x26 scope:local align:4 data:string
+@70 = .data:0x800DFDC8; // type:object size:0x1C scope:local align:4 data:string
+@74 = .data:0x800DFDE4; // type:object size:0x23 scope:local align:4 data:string
+...data.0 = .data:0x800DFE08; // type:label scope:local
+@10 = .data:0x800DFE08; // type:object size:0x16 scope:local align:4 data:string
+@11 = .data:0x800DFE20; // type:object size:0x26 scope:local align:4 data:string
+@12 = .data:0x800DFE48; // type:object size:0x1C scope:local align:4 data:string
+@30 = .data:0x800DFE64; // type:object size:0x1D scope:local align:4 data:string
+@31 = .data:0x800DFE84; // type:object size:0x17 scope:local align:4 data:string
+@33 = .data:0x800DFE9C; // type:object size:0x31 scope:local align:4 data:string
+@34 = .data:0x800DFED0; // type:object size:0x10 scope:local align:4 data:string
+@35 = .data:0x800DFEE0; // type:object size:0x60 scope:local align:4 data:string
+@36 = .data:0x800DFF40; // type:object size:0x4C scope:local align:4 data:string
+@37 = .data:0x800DFF8C; // type:object size:0x62 scope:local align:4 data:string
+@38 = .data:0x800DFFF0; // type:object size:0x60 scope:local align:4 data:string
+@39 = .data:0x800E0050; // type:object size:0x1F scope:local align:4 data:string
+@40 = .data:0x800E0070; // type:object size:0x1F scope:local align:4 data:string
+@41 = .data:0x800E0090; // type:object size:0x1B scope:local align:4 data:string
+@42 = .data:0x800E00AC; // type:object size:0x35 scope:local align:4 data:string
+@43 = .data:0x800E00E4; // type:object size:0x40 scope:local align:4
+InterruptPrioTable = .data:0x800E0128; // type:object size:0x2C scope:global align:4 data:4byte
+@54 = .data:0x800E0158; // type:object size:0x25 scope:local align:4 data:string
+@153 = .data:0x800E0180; // type:object size:0x27 scope:local align:4 data:string
+ResetFunctionInfo = .data:0x800E01A8; // type:object size:0x10 scope:local align:4
+...data.0 = .data:0x800E01B8; // type:label scope:local
+@794 = .data:0x800E01B8; // type:object size:0x5F scope:local align:4 data:string
+@795 = .data:0x800E0218; // type:object size:0xB scope:local align:4 data:string
+@797 = .data:0x800E0224; // type:object size:0x5F scope:local align:4 data:string
+@798 = .data:0x800E0284; // type:object size:0x46 scope:local align:4 data:string
+@799 = .data:0x800E02CC; // type:object size:0x7E scope:local align:4 data:string
+@800 = .data:0x800E034C; // type:object size:0x7E scope:local align:4 data:string
+@801 = .data:0x800E03CC; // type:object size:0x7A scope:local align:4 data:string
+@802 = .data:0x800E0448; // type:object size:0x7A scope:local align:4 data:string
+@803 = .data:0x800E04C4; // type:object size:0x51 scope:local align:4 data:string
+@804 = .data:0x800E0518; // type:object size:0x71 scope:local align:4 data:string
+@805 = .data:0x800E058C; // type:object size:0x39 scope:local align:4 data:string
+@806 = .data:0x800E05C8; // type:object size:0x49 scope:local align:4 data:string
+@807 = .data:0x800E0614; // type:object size:0x51 scope:local align:4 data:string
+@808 = .data:0x800E0668; // type:object size:0x52 scope:local align:4 data:string
+@809 = .data:0x800E06BC; // type:object size:0x59 scope:local align:4 data:string
+@810 = .data:0x800E0718; // type:object size:0x42 scope:local align:4 data:string
+@811 = .data:0x800E075C; // type:object size:0x3A scope:local align:4 data:string
+@812 = .data:0x800E0798; // type:object size:0x3A scope:local align:4 data:string
+@813 = .data:0x800E07D4; // type:object size:0x44 scope:local align:4 data:string
+@814 = .data:0x800E0818; // type:object size:0x44 scope:local align:4 data:string
+@815 = .data:0x800E085C; // type:object size:0x3B scope:local align:4 data:string
+@816 = .data:0x800E0898; // type:object size:0x3F scope:local align:4 data:string
+@817 = .data:0x800E08D8; // type:object size:0x67 scope:local align:4 data:string
+@818 = .data:0x800E0940; // type:object size:0x45 scope:local align:4 data:string
+@819 = .data:0x800E0988; // type:object size:0x3D scope:local align:4 data:string
+YearDays = .data:0x800E09C8; // type:object size:0x30 scope:global align:4
+LeapYearDays = .data:0x800E09F8; // type:object size:0x30 scope:global align:4
+...data.0 = .data:0x800E0A28; // type:label scope:local
+Si = .data:0x800E0A28; // type:object size:0x14 scope:global align:4 data:4byte
+Type = .data:0x800E0A3C; // type:object size:0x10 scope:local align:4
+@456 = .data:0x800E0A4C; // type:object size:0xC scope:local align:4 data:string
+@458 = .data:0x800E0A58; // type:object size:0xF scope:local align:4 data:string
+@459 = .data:0x800E0A68; // type:object size:0xF scope:local align:4 data:string
+@460 = .data:0x800E0A78; // type:object size:0xD scope:local align:4 data:string
+@461 = .data:0x800E0A88; // type:object size:0xA scope:local align:4 data:string
+@462 = .data:0x800E0A94; // type:object size:0x10 scope:local align:4 data:string
+@463 = .data:0x800E0AA4; // type:object size:0x14 scope:local align:4 data:string
+@464 = .data:0x800E0AB8; // type:object size:0x12 scope:local align:4 data:string
+@465 = .data:0x800E0ACC; // type:object size:0x14 scope:local align:4 data:string
+@466 = .data:0x800E0AE0; // type:object size:0x9 scope:local align:4 data:string
+@467 = .data:0x800E0AEC; // type:object size:0x9 scope:local align:4 data:string
+...data.0 = .data:0x800E0AF8; // type:label scope:local
+XYNTSC = .data:0x800E0AF8; // type:object size:0x30 scope:global align:4
+XYPAL = .data:0x800E0B28; // type:object size:0x30 scope:global align:4
+@16 = .data:0x800E0B58; // type:object size:0x33 scope:local align:4 data:string
+@7 = .data:0x800E0B90; // type:object size:0x18 scope:local align:4 data:string
+...data.0 = .data:0x800E0BA8; // type:label scope:local
+@117 = .data:0x800E0BA8; // type:object size:0xC8 scope:local align:4 data:string
+@138 = .data:0x800E0C70; // type:object size:0x37 scope:local align:4 data:string
+@237 = .data:0x800E0CA8; // type:object size:0x34 scope:local align:4 data:string
+@263 = .data:0x800E0CDC; // type:object size:0x2F scope:local align:4 data:string
+@269 = .data:0x800E0D0C; // type:object size:0x27 scope:local align:4 data:string
+@309 = .data:0x800E0D34; // type:object size:0x3A scope:local align:4 data:string
+@340 = .data:0x800E0D70; // type:object size:0x66 scope:local align:4 data:string
+@341 = .data:0x800E0DD8; // type:object size:0x55 scope:local align:4 data:string
+@342 = .data:0x800E0E30; // type:object size:0x5C scope:local align:4 data:string
+@373 = .data:0x800E0E8C; // type:object size:0x61 scope:local align:4 data:string
+@374 = .data:0x800E0EF0; // type:object size:0x50 scope:local align:4 data:string
+@375 = .data:0x800E0F40; // type:object size:0x57 scope:local align:4 data:string
+...data.0 = .data:0x800E0F98; // type:label scope:local
+@13 = .data:0x800E0F98; // type:object size:0x15 scope:local align:4 data:string
+@14 = .data:0x800E0FB0; // type:object size:0xA scope:local align:4 data:string
+@15 = .data:0x800E0FBC; // type:object size:0x19 scope:local align:4 data:string
+@16 = .data:0x800E0FD8; // type:object size:0x9 scope:local align:4 data:string
+@293 = .data:0x800E0FE4; // type:object size:0x20 scope:local align:4
+@331 = .data:0x800E1004; // type:object size:0x40 scope:local align:4
+@835 = .data:0x800E1044; // type:object size:0x34 scope:local align:4
+@936 = .data:0x800E1078; // type:object size:0x34 scope:local align:4
+ErrorTable = .data:0x800E10B0; // type:object size:0x48 scope:global align:4 data:4byte
+...data.0 = .data:0x800E10F8; // type:label scope:local
+@36 = .data:0x800E10F8; // type:object size:0x1A scope:local align:4 data:string
+@37 = .data:0x800E1114; // type:object size:0x16 scope:local align:4 data:string
+@38 = .data:0x800E112C; // type:object size:0x14 scope:local align:4 data:string
+@39 = .data:0x800E1140; // type:object size:0x14 scope:local align:4 data:string
+@42 = .data:0x800E1154; // type:object size:0x14 scope:local align:4 data:string
+...data.0 = .data:0x800E1168; // type:label scope:local
+timing = .data:0x800E1168; // type:object size:0x130 scope:global align:4
+taps = .data:0x800E1298; // type:object size:0x32 scope:global align:4
+@92 = .data:0x800E12CC; // type:object size:0x58 scope:local align:4
+@336 = .data:0x800E1324; // type:object size:0x29 scope:local align:4 data:string
+@337 = .data:0x800E1350; // type:object size:0x29 scope:local align:4 data:string
+@338 = .data:0x800E137C; // type:object size:0x29 scope:local align:4 data:string
+@339 = .data:0x800E13A8; // type:object size:0x29 scope:local align:4 data:string
+@340 = .data:0x800E13D4; // type:object size:0x29 scope:local align:4 data:string
+@341 = .data:0x800E1400; // type:object size:0x29 scope:local align:4 data:string
+ResetFunctionInfo = .data:0x800E1430; // type:object size:0x10 scope:local align:4
+ResetFunctionInfo = .data:0x800E1440; // type:object size:0x10 scope:local align:4
+SectorSizeTable = .data:0x800E1450; // type:object size:0x20 scope:global align:4
+LatencyTable = .data:0x800E1470; // type:object size:0x20 scope:global align:4
+@140 = .data:0x800E1490; // type:object size:0x68 scope:local align:4
+@314 = .data:0x800E14F8; // type:object size:0x44 scope:local align:4
+@511 = .data:0x800E153C; // type:object size:0x1C scope:local align:4
+@510 = .data:0x800E1558; // type:object size:0x54 scope:local align:4
+GXNtsc480IntDf = .data:0x800E15B0; // type:object size:0x3C scope:global align:4
+GXNtsc480Int = .data:0x800E15EC; // type:object size:0x3C scope:global align:4
+GXMpal480IntDf = .data:0x800E1628; // type:object size:0x3C scope:global align:4
+GXPal528IntDf = .data:0x800E1664; // type:object size:0x3C scope:global align:4
+GXEurgb60Hz480IntDf = .data:0x800E16A0; // type:object size:0x3C scope:global align:4
+@145 = .data:0x800E16E0; // type:object size:0xF4 scope:local align:4
+@180 = .data:0x800E17D4; // type:object size:0x3C scope:local align:4
+c2r$83 = .data:0x800E1810; // type:object size:0x24 scope:local align:4
+p2f$206 = .data:0x800E1838; // type:object size:0x20 scope:local align:4
+@254 = .data:0x800E1858; // type:object size:0x5C scope:local align:4
+@253 = .data:0x800E18B4; // type:object size:0x90 scope:local align:4
+...data.0 = .data:0x800E1948; // type:label scope:local
+__files = .data:0x800E1948; // type:object size:0x140 scope:global align:4
+@904 = .data:0x800E1A88; // type:object size:0x124 scope:local align:4
+__ctype_map = .data:0x800E1BB0; // type:object size:0x100 scope:global align:4
+__lower_map = .data:0x800E1CB0; // type:object size:0x100 scope:global align:4
+__upper_map = .data:0x800E1DB0; // type:object size:0x100 scope:global align:4
+@1235 = .data:0x800E1EB0; // type:object size:0x84 scope:local align:4
+@1293 = .data:0x800E1F34; // type:object size:0x84 scope:local align:4
+@1428 = .data:0x800E1FB8; // type:object size:0xE0 scope:local align:4
+@1427 = .data:0x800E2098; // type:object size:0x44 scope:local align:4
+@425 = .data:0x800E20E0; // type:object size:0x44 scope:local align:4
+gTRKDispatchTable = .data:0x800E2128; // type:object size:0x84 scope:global align:4
+@893 = .data:0x800E21B0; // type:object size:0x1C scope:local align:4
+@989 = .data:0x800E21CC; // type:object size:0x1C scope:local align:4
+gTRKRestoreFlags = .data:0x800E21E8; // type:object size:0x9 scope:global align:4 data:byte
+gTRKExceptionStatus = .data:0x800E21F4; // type:object size:0x10 scope:global align:4 data:4byte
+gTRKStepStatus = .data:0x800E2204; // type:object size:0x14 scope:global align:4 data:4byte
+TRK_ISR_OFFSETS = .data:0x800E2218; // type:object size:0x3C scope:global align:4 data:4byte
+gDBCommTable = .data:0x800E2258; // type:object size:0x1C scope:global align:4 data:4byte
+...bss.0 = .bss:0x800E2280; // type:label scope:local
+StringTable = .bss:0x800E2280; // type:object size:0x4 scope:global align:4 data:4byte
+fakemain_check = .bss:0x800E2284; // type:object size:0x4 scope:global align:4
+InitialStartTime = .bss:0x800E2288; // type:object size:0x8 scope:global align:8
+my_fault_client5$550 = .bss:0x800E2290; // type:object size:0x14 scope:local align:4
+my_fault_client1$546 = .bss:0x800E22A4; // type:object size:0x14 scope:local align:4
+my_fault_client2$547 = .bss:0x800E22B8; // type:object size:0x14 scope:local align:4
+my_fault_client3$548 = .bss:0x800E22CC; // type:object size:0x14 scope:local align:4
+my_fault_client6$551 = .bss:0x800E22E0; // type:object size:0x14 scope:local align:4
+my_fault_client4$549 = .bss:0x800E22F4; // type:object size:0x14 scope:local align:4
+boot_copyDate = .bss:0x800E2308; // type:object size:0x4 scope:global align:4 data:4byte
+moduleA = .bss:0x800E230C; // type:object size:0x4 scope:global align:4
+HotStartEntry = .bss:0x800E2310; // type:object size:0x4 scope:global align:4
+boot_sound_initializing = .bss:0x800E2314; // type:object size:0x1 scope:global align:1
+...bss.0 = .bss:0x800E2318; // type:label scope:local
+@935 = .bss:0x800E2318; // type:object size:0x1 scope:local align:4
+@936 = .bss:0x800E231C; // type:object size:0x1 scope:local align:4
+@938 = .bss:0x800E2320; // type:object size:0x1 scope:local align:4
+@940 = .bss:0x800E2324; // type:object size:0x1 scope:local align:4
+@978 = .bss:0x800E2328; // type:object size:0x1 scope:local align:4
+@979 = .bss:0x800E232C; // type:object size:0x1 scope:local align:4
+@981 = .bss:0x800E2330; // type:object size:0x1 scope:local align:4
+@983 = .bss:0x800E2334; // type:object size:0x1 scope:local align:4
+@1020 = .bss:0x800E2338; // type:object size:0x1 scope:local align:4
+@1021 = .bss:0x800E233C; // type:object size:0x1 scope:local align:4
+@1023 = .bss:0x800E2340; // type:object size:0x1 scope:local align:4
+@1025 = .bss:0x800E2344; // type:object size:0x1 scope:local align:4
+@1030 = .bss:0x800E2348; // type:object size:0x1 scope:local align:4
+@1031 = .bss:0x800E234C; // type:object size:0x1 scope:local align:4
+@1033 = .bss:0x800E2350; // type:object size:0x1 scope:local align:4
+@1035 = .bss:0x800E2354; // type:object size:0x1 scope:local align:4
+@2136 = .bss:0x800E2358; // type:object size:0xC scope:local align:4
+gamePad = .bss:0x800E2368; // type:object size:0x2A0 scope:global align:8
+jc_fader = .bss:0x800E2608; // type:object size:0x4 scope:global align:4
+forest_arc_aram_p = .bss:0x800E260C; // type:object size:0x4 scope:global align:4 data:4byte
+forest_arc_aram2_p = .bss:0x800E2610; // type:object size:0x4 scope:global align:4 data:4byte
+gameheap_base = .bss:0x800E2614; // type:object size:0x4 scope:global align:4 data:4byte
+jc_gport = .bss:0x800E2618; // type:object size:0x4 scope:global align:4 data:4byte
+jc_sysConsole = .bss:0x800E261C; // type:object size:0x4 scope:global align:4
+video_progressive = .bss:0x800E2620; // type:object size:0x1 scope:global align:1 data:byte
+video_lowreso = .bss:0x800E2621; // type:object size:0x1 scope:global align:1 data:byte
+video_famicom = .bss:0x800E2622; // type:object size:0x1 scope:global align:1 data:byte
+video_logo = .bss:0x800E2623; // type:object size:0x1 scope:global align:1 data:byte
+video_pan_enable = .bss:0x800E2624; // type:object size:0x1 scope:global align:1
+video_pan_xorg = .bss:0x800E2626; // type:object size:0x2 scope:global align:2
+video_pan_yorg = .bss:0x800E2628; // type:object size:0x2 scope:global align:2
+video_pan_width = .bss:0x800E262A; // type:object size:0x2 scope:global align:2
+video_pan_height = .bss:0x800E262C; // type:object size:0x2 scope:global align:2
+last_pad_read$2201 = .bss:0x800E2630; // type:object size:0x8 scope:local align:8 data:4byte
+FrameDrawing = .bss:0x800E2638; // type:object size:0x1 scope:global align:1 data:byte
+clear_color$2268 = .bss:0x800E263C; // type:object size:0x4 scope:local align:4 data:byte
+...bss.0 = .bss:0x800E2640; // type:label scope:local
+model_cursor = .bss:0x800E2640; // type:object size:0x40 scope:global align:8
+progressive_mode = .bss:0x800E2680; // type:object size:0x1 scope:global align:1 data:byte
+menu_step = .bss:0x800E2681; // type:object size:0x1 scope:global align:1 data:byte
+start_time = .bss:0x800E2688; // type:object size:0x8 scope:global align:8
+button = .bss:0x800E2690; // type:object size:0x4 scope:global align:4
+trigger = .bss:0x800E2694; // type:object size:0x4 scope:global align:4
+frame_count = .bss:0x800E2698; // type:object size:0x4 scope:global align:4
+limit_time = .bss:0x800E26A0; // type:object size:0x8 scope:global align:8
+select_done = .bss:0x800E26A8; // type:object size:0x4 scope:global align:4
+menu_sub_frame = .bss:0x800E26AC; // type:object size:0x1 scope:global align:1
+commandQ = .bss:0x800E26B0; // type:object size:0x20 scope:global align:4
+fadeout_step = .bss:0x800E26D0; // type:object size:0x4 scope:global align:4
+load_game_done = .bss:0x800E26D4; // type:object size:0x4 scope:global align:4
+gfxbuf = .bss:0x800E26D8; // type:object size:0x80 scope:global align:8
+statusQ = .bss:0x800E2758; // type:object size:0x20 scope:global align:4
+Thread_p = .bss:0x800E2778; // type:object size:0x4 scope:global align:4
+initialMenuStack = .bss:0x800E277C; // type:object size:0x4 scope:global align:4
+commandMsgBuf = .bss:0x800E2780; // type:object size:0x8 scope:global align:4
+statusMsgBuf = .bss:0x800E2788; // type:object size:0x4 scope:global align:4
+Dvderr_work = .bss:0x800E2790; // type:object size:0x3F8 scope:global align:8
+...bss.0 = .bss:0x800E2B88; // type:label scope:local
+PCMH2 = .bss:0x800E2B88; // type:object size:0x10 scope:global align:4
+SoundA = .bss:0x800E2B98; // type:object size:0x4C scope:global align:4 data:byte
+SoundB = .bss:0x800E2BE4; // type:object size:0x4C scope:global align:4 data:byte
+SoundC = .bss:0x800E2C30; // type:object size:0x4C scope:global align:4 data:byte
+SoundD = .bss:0x800E2C7C; // type:object size:0x4C scope:global align:4 data:byte
+SoundE = .bss:0x800E2CC8; // type:object size:0x24 scope:global align:4 data:byte
+SoundX = .bss:0x800E2CEC; // type:object size:0x4C scope:global align:4
+SoundY = .bss:0x800E2D38; // type:object size:0x4C scope:global align:4
+SoundZ = .bss:0x800E2D84; // type:object size:0x4C scope:global align:4
+SoundM = .bss:0x800E2DD0; // type:object size:0x4C scope:global align:4
+SoundN = .bss:0x800E2E1C; // type:object size:0x4C scope:global align:4
+SoundF = .bss:0x800E2E68; // type:object size:0x4C scope:global align:4
+SoundP = .bss:0x800E2EB4; // type:object size:0x18 scope:global align:4
+DUMMY_ACTIVE = .bss:0x800E2ECC; // type:object size:0x9 scope:global align:4 data:byte
+DISKFM_TABLE = .bss:0x800E2ED8; // type:object size:0x40 scope:global align:4
+DISKSUB_TABLE = .bss:0x800E2F18; // type:object size:0x20 scope:global align:4 data:byte
+disksubwave = .bss:0x800E2F38; // type:object size:0x80 scope:global align:4 data:2byte
+SoundQ = .bss:0x800E2FB8; // type:object size:0x20 scope:global align:4
+SoundQbuf = .bss:0x800E2FD8; // type:object size:0x4000 scope:global align:4
+sound_loop_buffer = .bss:0x800E6FD8; // type:object size:0x4000 scope:global align:4
+buf$1289 = .bss:0x800EAFD8; // type:object size:0x20 scope:local align:4
+buf$1331 = .bss:0x800EAFF8; // type:object size:0x640 scope:local align:4
+...bss.0 = .bss:0x800EB640; // type:label scope:local
+sou_ls_stack = .bss:0x800EB640; // type:object size:0x30 scope:global align:1 data:byte
+sou_trg_se = .bss:0x800EB670; // type:object size:0xC0 scope:global align:4 data:2byte
+sou_voice_se = .bss:0x800EB730; // type:object size:0x48 scope:global align:4
+sou_lev_se = .bss:0x800EB778; // type:object size:0x78 scope:global align:4
+sou_lev_ongen_data = .bss:0x800EB7F0; // type:object size:0x50 scope:global align:4
+sou_ongen_entry = .bss:0x800EB840; // type:object size:0x320 scope:global align:4
+sou_room_ins = .bss:0x800EBB60; // type:object size:0x190 scope:global align:4 data:4byte
+sou_se_fade = .bss:0x800EBCF0; // type:object size:0xC0 scope:global align:4
+audiomemory = .bss:0x800EBDC0; // type:object size:0x90000 scope:global align:32
+SOU_FIR_STATE_COPY = .bss:0x8017BDC0; // type:object size:0x18 scope:global align:8
+rhythm_buffer = .bss:0x8017BDD8; // type:object size:0xA8 scope:global align:4
+...bss.0 = .bss:0x8017BE80; // type:label scope:local
+DMEM = .bss:0x8017BE80; // type:object size:0x1000 scope:global align:32
+ADPCM_BOOKBUF = .bss:0x8017CE80; // type:object size:0x100 scope:global align:32
+FINALR_STATE_BUF = .bss:0x8017CF80; // type:object size:0x20 scope:global align:32
+dac = .bss:0x8017CFA0; // type:object size:0xC scope:global align:4
+audio_hp = .bss:0x8017CFAC; // type:object size:0x14 scope:global align:4
+...bss.0 = .bss:0x8017CFC0; // type:label scope:local
+audioStack = .bss:0x8017CFC0; // type:object size:0x1000 scope:global align:32
+neosStack = .bss:0x8017DFC0; // type:object size:0x1000 scope:global align:32
+dvdStack = .bss:0x8017EFC0; // type:object size:0x1000 scope:global align:32
+audioproc_mq = .bss:0x8017FFC0; // type:object size:0x20 scope:global align:4
+msgbuf = .bss:0x8017FFE0; // type:object size:0x40 scope:local align:4
+neosproc_mq = .bss:0x80180020; // type:object size:0x20 scope:global align:4
+task_buf$191 = .bss:0x80180040; // type:object size:0x6400 scope:local align:8
+finfo$116 = .bss:0x80186440; // type:object size:0x3C scope:local align:4
+cmd$117 = .bss:0x8018647C; // type:object size:0x30 scope:local align:4
+dsp_buf = .bss:0x801864B0; // type:object size:0xC scope:local align:4
+dsp_buf = .bss:0x801864C0; // type:object size:0xC scope:local align:4
+PLAYER_CALLLIST = .bss:0x801864D0; // type:object size:0xC0 scope:global align:4 data:4byte
+mq = .bss:0x80186590; // type:object size:0x20 scope:global align:4
+msgbuf = .bss:0x801865B0; // type:object size:0x200 scope:local align:4
+CALLSTACK = .bss:0x801867B0; // type:object size:0x8000 scope:global align:4
+finfo$348 = .bss:0x8018E7B0; // type:object size:0x3C scope:local align:4
+req$349 = .bss:0x8018E7EC; // type:object size:0x80 scope:local align:4
+req$405 = .bss:0x8018E86C; // type:object size:0x20 scope:local align:4
+req$417 = .bss:0x8018E88C; // type:object size:0x20 scope:local align:4
+finfo$444 = .bss:0x8018E8AC; // type:object size:0x3C scope:local align:4
+finfo$471 = .bss:0x8018E8E8; // type:object size:0x3C scope:local align:4
+dvd_file = .bss:0x8018E924; // type:object size:0x800 scope:global align:4
+dvd_entrynum = .bss:0x8018F124; // type:object size:0x80 scope:global align:4
+awheap$1312 = .bss:0x8018F1A8; // type:object size:0x14 scope:local align:4 data:4byte
+GLOBAL_CHANNEL = .bss:0x8018F1C0; // type:object size:0x74 scope:global align:4 data:4byte
+CHANNEL = .bss:0x8018F240; // type:object size:0x14000 scope:global align:32
+waitp = .bss:0x801A3240; // type:object size:0x80 scope:global align:4
+waittime = .bss:0x801A32C0; // type:object size:0x80 scope:global align:4
+DSPCH = .bss:0x801A3340; // type:object size:0x400 scope:global align:32 data:byte
+CH_BUF = .bss:0x801A3740; // type:object size:0x6000 scope:global align:32
+FX_BUF = .bss:0x801A9740; // type:object size:0x80 scope:global align:32
+bankp = .bss:0x801A97C0; // type:object size:0x400 scope:global align:4
+wavearc = .bss:0x801A9BC0; // type:object size:0x400 scope:global align:4
+wavegroup = .bss:0x801A9FC0; // type:object size:0x400 scope:global align:4
+WS_V2P_TABLE = .bss:0x801AA3C0; // type:object size:0x200 scope:global align:4
+BNK_V2P_TABLE = .bss:0x801AA5C0; // type:object size:0x200 scope:global align:4
+SINTABLE = .bss:0x801AA7C0; // type:object size:0x404 scope:global align:4
+FH_TO_FAT = .bss:0x801AABC8; // type:object size:0x400 scope:global align:4
+FAT = .bss:0x801AAFC8; // type:object size:0x800 scope:global align:4
+TRACK_LIST = .bss:0x801AB7C8; // type:object size:0x100 scope:global align:4
+SEQ_ARG = .bss:0x801AB8C8; // type:object size:0x20 scope:global align:4 data:4byte
+seq = .bss:0x801AB8E8; // type:object size:0x43400 scope:global align:4
+ROOT_OUTER = .bss:0x801EECE8; // type:object size:0x400 scope:global align:4
+rootseq = .bss:0x801EF0E8; // type:object size:0x40 scope:global align:4
+FREE_SEQP_QUEUE = .bss:0x801EF128; // type:object size:0x400 scope:global align:4
+...bss.0 = .bss:0x801EF540; // type:label scope:local
+@909 = .bss:0x801EF540; // type:object size:0x1 scope:local align:4
+@910 = .bss:0x801EF544; // type:object size:0x1 scope:local align:4
+@912 = .bss:0x801EF548; // type:object size:0x1 scope:local align:4
+@914 = .bss:0x801EF54C; // type:object size:0x1 scope:local align:4
+@952 = .bss:0x801EF550; // type:object size:0x1 scope:local align:4
+@953 = .bss:0x801EF554; // type:object size:0x1 scope:local align:4
+@955 = .bss:0x801EF558; // type:object size:0x1 scope:local align:4
+@957 = .bss:0x801EF55C; // type:object size:0x1 scope:local align:4
+@994 = .bss:0x801EF560; // type:object size:0x1 scope:local align:4
+@995 = .bss:0x801EF564; // type:object size:0x1 scope:local align:4
+@997 = .bss:0x801EF568; // type:object size:0x1 scope:local align:4
+@999 = .bss:0x801EF56C; // type:object size:0x1 scope:local align:4
+@1004 = .bss:0x801EF570; // type:object size:0x1 scope:local align:4
+@1005 = .bss:0x801EF574; // type:object size:0x1 scope:local align:4
+@1007 = .bss:0x801EF578; // type:object size:0x1 scope:local align:4
+@1009 = .bss:0x801EF57C; // type:object size:0x1 scope:local align:4
+commentImageBuffer = .bss:0x801EF580; // type:object size:0x5840 scope:global align:32
+save_game_image = .bss:0x801F4DC0; // type:object size:0x1 scope:global align:1
+famicomCommon = .bss:0x801F4DC4; // type:object size:0xB8 scope:global align:4 data:4byte
+famicomCommonSave = .bss:0x801F4E7C; // type:object size:0x19C0 scope:global align:4
+nesrom_filename_ptrs = .bss:0x801F683C; // type:object size:0x4 scope:global align:4 data:4byte
+nesrom_filename_strbuf = .bss:0x801F6840; // type:object size:0x4 scope:global align:4
+InputValid = .bss:0x801F6844; // type:object size:0x4 scope:global align:4
+InputData = .bss:0x801F6848; // type:object size:0x10 scope:global align:4
+InputButton = .bss:0x801F6858; // type:object size:0x10 scope:global align:4
+InputTrigger = .bss:0x801F6868; // type:object size:0x10 scope:global align:4
+InputRepeat = .bss:0x801F6878; // type:object size:0x10 scope:global align:4
+InputRepeatCount = .bss:0x801F6888; // type:object size:0x10 scope:global align:4
+filer_mode_enable = .bss:0x801F6898; // type:object size:0x1 scope:global align:1
+filer_mode = .bss:0x801F6899; // type:object size:0x1 scope:global align:1
+filer_demo_mode = .bss:0x801F689A; // type:object size:0x1 scope:global align:1
+filer_demo_count = .bss:0x801F689C; // type:object size:0x4 scope:global align:4
+nesrom_idx_loaded = .bss:0x801F68A0; // type:object size:0x4 scope:global align:4
+nesrom_idx = .bss:0x801F68A4; // type:object size:0x4 scope:global align:4
+nesrom_count = .bss:0x801F68A8; // type:object size:0x4 scope:global align:4 data:4byte
+rapid_count = .bss:0x801F68AC; // type:object size:0x4 scope:global align:4
+rapid_mode_a = .bss:0x801F68B0; // type:object size:0x1 scope:global align:1
+rapid_mode_b = .bss:0x801F68B1; // type:object size:0x1 scope:global align:1
+nines_over_double_click = .bss:0x801F68B2; // type:object size:0x1 scope:global align:1
+nines_over_mode = .bss:0x801F68B3; // type:object size:0x1 scope:global align:1
+hispeed_mode = .bss:0x801F68B4; // type:object size:0x1 scope:global align:1
+slow_mode = .bss:0x801F68B5; // type:object size:0x1 scope:global align:1
+slow_mode_sub = .bss:0x801F68B6; // type:object size:0x1 scope:global align:1
+speed_show = .bss:0x801F68B7; // type:object size:0x1 scope:global align:1
+famicom_getSaveChanCallback = .bss:0x801F68B8; // type:object size:0x4 scope:global align:4 data:4byte
+my_malloc_current = .bss:0x801F68BC; // type:object size:0x4 scope:global align:4 data:4byte
+famicom_arc = .bss:0x801F68C0; // type:object size:0x4 scope:global align:4 data:4byte
+famicom_arc_mounting = .bss:0x801F68C4; // type:object size:0x1 scope:global align:1 data:byte
+ksnes_thread = .bss:0x801F68C8; // type:object size:0x310 scope:global align:8
+...bss.0 = .bss:0x801F6BD8; // type:label scope:local
+@909 = .bss:0x801F6BD8; // type:object size:0x1 scope:local align:4
+@910 = .bss:0x801F6BDC; // type:object size:0x1 scope:local align:4
+@912 = .bss:0x801F6BE0; // type:object size:0x1 scope:local align:4
+@914 = .bss:0x801F6BE4; // type:object size:0x1 scope:local align:4
+@952 = .bss:0x801F6BE8; // type:object size:0x1 scope:local align:4
+@953 = .bss:0x801F6BEC; // type:object size:0x1 scope:local align:4
+@955 = .bss:0x801F6BF0; // type:object size:0x1 scope:local align:4
+@957 = .bss:0x801F6BF4; // type:object size:0x1 scope:local align:4
+@994 = .bss:0x801F6BF8; // type:object size:0x1 scope:local align:4
+@995 = .bss:0x801F6BFC; // type:object size:0x1 scope:local align:4
+@997 = .bss:0x801F6C00; // type:object size:0x1 scope:local align:4
+@999 = .bss:0x801F6C04; // type:object size:0x1 scope:local align:4
+@1004 = .bss:0x801F6C08; // type:object size:0x1 scope:local align:4
+@1005 = .bss:0x801F6C0C; // type:object size:0x1 scope:local align:4
+@1007 = .bss:0x801F6C10; // type:object size:0x1 scope:local align:4
+@1009 = .bss:0x801F6C14; // type:object size:0x1 scope:local align:4
+highscore_num = .bss:0x801F6C15; // type:object size:0x1 scope:global align:1 data:byte
+highscore_updated = .bss:0x801F6C16; // type:object size:0x1 scope:global align:1 data:byte
+highscore_flags = .bss:0x801F6C18; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_mcrd_cont_no = .bss:0x801F6C1C; // type:object size:0x1 scope:global align:1
+nesinfo_mcrd_game_name = .bss:0x801F6C20; // type:object size:0x21 scope:global align:4
+nesinfo_ptr = .bss:0x801F6C44; // type:object size:0x4 scope:global align:4
+nesinfo_tags_size = .bss:0x801F6C48; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_tags_start = .bss:0x801F6C4C; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_tags_end = .bss:0x801F6C50; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_tags_gameName = .bss:0x801F6C54; // type:object size:0x4 scope:global align:4
+nesinfo_tags_kanjiName = .bss:0x801F6C58; // type:object size:0x4 scope:global align:4
+nesinfo_tags_moriName = .bss:0x801F6C5C; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_data_size = .bss:0x801F6C60; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_data_start = .bss:0x801F6C64; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_data_end = .bss:0x801F6C68; // type:object size:0x4 scope:global align:4 data:4byte
+nesinfo_rom_size = .bss:0x801F6C6C; // type:object size:0x4 scope:global align:4
+nesinfo_rom_start = .bss:0x801F6C70; // type:object size:0x4 scope:global align:4
+nesinfo_rom_end = .bss:0x801F6C74; // type:object size:0x4 scope:global align:4
+nesinfo_expand_rom_size = .bss:0x801F6C78; // type:object size:0x4 scope:global align:4
+tcs_bad = .bss:0x801F6C7C; // type:object size:0x1 scope:global align:1 data:byte
+ics_bad = .bss:0x801F6C7D; // type:object size:0x1 scope:global align:1 data:byte
+SecParams = .bss:0x801F6C80; // type:object size:0x100 scope:global align:32
+__GBA = .bss:0x801F6D80; // type:object size:0x400 scope:global align:8
+...bss.0 = .bss:0x801F7180; // type:label scope:local
+g_Joy_wrk = .bss:0x801F7180; // type:object size:0x30 scope:global align:4
+Port = .bss:0x801F71B0; // type:object size:0x4 scope:global align:4 data:4byte
+state$300 = .bss:0x801F71B4; // type:object size:0x1 scope:local align:1
+...bss.0 = .bss:0x801F71C0; // type:label scope:local
+texture_buffer_data = .bss:0x801F71C0; // type:object size:0xC000 scope:global align:32
+texture_buffer_bss = .bss:0x802031C0; // type:object size:0x400 scope:global align:32
+tmem_map = .bss:0x802035C0; // type:object size:0xE00 scope:global align:4
+texture_cache_list = .bss:0x802043C0; // type:object size:0x800 scope:global align:4 data:4byte
+str$868 = .bss:0x80204BC0; // type:object size:0x40 scope:local align:4 data:byte
+texture_cache_data_entry_tbl = .bss:0x80204C00; // type:object size:0x50 scope:global align:4 data:4byte
+highlow_errs$2642 = .bss:0x80204C50; // type:object size:0x50 scope:local align:8 data:4byte
+s$4209 = .bss:0x80204CA0; // type:object size:0x100 scope:local align:4
+emu64_class = .bss:0x80204DA0; // type:object size:0x2080 scope:global align:8
+warningString__5emu64 = .bss:0x80206E20; // type:object size:0x28 scope:global align:4 data:4byte
+warningTime__5emu64 = .bss:0x80206E48; // type:object size:0x28 scope:global align:4 data:4byte
+s1$7136 = .bss:0x80206E70; // type:object size:0x14 scope:local align:4
+s2$7137 = .bss:0x80206E84; // type:object size:0x40 scope:local align:4
+s3$7138 = .bss:0x80206EC4; // type:object size:0x40 scope:local align:4
+print_mutex = .bss:0x80206F08; // type:object size:0x18 scope:global align:4
+fault_class = .bss:0x80206F20; // type:object size:0xC scope:global align:4
+malloc_arena = .bss:0x80206F30; // type:object size:0x2C scope:global align:4
+osAppNMIBuffer = .bss:0x80206F60; // type:object size:0x40 scope:global align:4
+__osBaseTimer = .bss:0x80206FA0; // type:object size:0x48 scope:global align:8
+clear_z_tobj = .bss:0x80206FE8; // type:object size:0x20 scope:global align:4
+@231 = .bss:0x80207008; // type:object size:0xC scope:local align:4
+sThreadList__9JKRThread = .bss:0x80207014; // type:object size:0xC scope:global align:4
+@266 = .bss:0x80207020; // type:object size:0xC scope:local align:4
+sAramCommandList__7JKRAram = .bss:0x8020702C; // type:object size:0xC scope:global align:4
+@262 = .bss:0x80207038; // type:object size:0xC scope:local align:4
+sAramList__11JKRAramHeap = .bss:0x80207044; // type:object size:0xC scope:global align:4 data:4byte
+@266 = .bss:0x80207050; // type:object size:0xC scope:local align:4
+sAramPieceCommandList__12JKRAramPiece = .bss:0x8020705C; // type:object size:0xC scope:global align:4
+mMutex__12JKRAramPiece = .bss:0x80207068; // type:object size:0x18 scope:global align:4
+@2094 = .bss:0x80207080; // type:object size:0xC scope:local align:4
+sVolumeList__13JKRFileLoader = .bss:0x8020708C; // type:object size:0xC scope:global align:4 data:4byte
+@554 = .bss:0x80207098; // type:object size:0xC scope:local align:4
+sDvdList__10JKRDvdFile = .bss:0x802070A4; // type:object size:0xC scope:global align:4
+@262 = .bss:0x802070B0; // type:object size:0xC scope:local align:4
+sDvdAsyncList__12JKRDvdRipper = .bss:0x802070BC; // type:object size:0xC scope:global align:4
+@266 = .bss:0x802070C8; // type:object size:0xC scope:local align:4
+sDvdAramAsyncList__16JKRDvdAramRipper = .bss:0x802070D4; // type:object size:0xC scope:global align:4
+...bss.0 = .bss:0x802070E0; // type:label scope:local
+@477 = .bss:0x802070E0; // type:object size:0xC scope:local align:4
+mPadList__10JUTGamePad = .bss:0x802070EC; // type:object size:0xC scope:global align:4 data:4byte
+mPadStatus__10JUTGamePad = .bss:0x802070F8; // type:object size:0x30 scope:global align:4
+mPadButton__10JUTGamePad = .bss:0x80207128; // type:object size:0xC0 scope:global align:4
+mPadMStick__10JUTGamePad = .bss:0x802071E8; // type:object size:0x40 scope:global align:4
+mPadSStick__10JUTGamePad = .bss:0x80207228; // type:object size:0x40 scope:global align:4
+exCallbackObject = .bss:0x80207268; // type:object size:0x14 scope:global align:4 data:4byte
+@2094 = .bss:0x8020727C; // type:object size:0xC scope:local align:4
+sMapFileList__12JUTException = .bss:0x80207288; // type:object size:0xC scope:global align:4 data:4byte
+sMessageFileLine__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x80207298; // type:object size:0x40 scope:global align:4
+sMessageString__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .bss:0x802072D8; // type:object size:0x60 scope:global align:4
+...bss.0 = .bss:0x80207340; // type:label scope:local
+DriveInfo = .bss:0x80207340; // type:object size:0x20 scope:global align:32
+DriveBlock = .bss:0x80207360; // type:object size:0x30 scope:global align:4
+__OSErrorTable = .bss:0x80207390; // type:object size:0x40 scope:global align:4
+...bss.0 = .bss:0x802073E0; // type:label scope:local
+Header = .bss:0x802073E0; // type:object size:0x20 scope:global align:32
+...bss.0 = .bss:0x80207400; // type:label scope:local
+Scb = .bss:0x80207400; // type:object size:0x54 scope:global align:32 data:2byte
+...bss.0 = .bss:0x80207458; // type:label scope:local
+RunQueue = .bss:0x80207458; // type:object size:0x100 scope:global align:4 data:4byte
+IdleThread = .bss:0x80207558; // type:object size:0x310 scope:global align:8
+DefaultThread = .bss:0x80207868; // type:object size:0x310 scope:global align:8
+IdleContext = .bss:0x80207B78; // type:object size:0x2C8 scope:global align:8
+Ecb = .bss:0x80207E40; // type:object size:0xC0 scope:global align:4
+...bss.0 = .bss:0x80207F00; // type:label scope:local
+Packet = .bss:0x80207F00; // type:object size:0x80 scope:global align:8 data:4byte
+Alarm = .bss:0x80207F80; // type:object size:0xA0 scope:global align:8
+TypeTime = .bss:0x80208020; // type:object size:0x20 scope:global align:8
+XferTime = .bss:0x80208040; // type:object size:0x20 scope:global align:8
+TypeCallback = .bss:0x80208060; // type:object size:0x40 scope:global align:4
+RDSTHandler = .bss:0x802080A0; // type:object size:0x10 scope:global align:4 data:4byte
+InputBufferValid = .bss:0x802080B0; // type:object size:0x10 scope:global align:4
+InputBuffer = .bss:0x802080C0; // type:object size:0x20 scope:global align:4
+InputBufferVcount = .bss:0x802080E0; // type:object size:0x10 scope:global align:4
+cmdFixDevice$326 = .bss:0x802080F0; // type:object size:0x10 scope:local align:4
+...bss.0 = .bss:0x80208100; // type:label scope:local
+CommandList = .bss:0x80208100; // type:object size:0x3C scope:global align:4 data:4byte
+AlarmForWA = .bss:0x80208140; // type:object size:0x28 scope:global align:8
+AlarmForTimeout = .bss:0x80208168; // type:object size:0x28 scope:global align:8
+AlarmForBreak = .bss:0x80208190; // type:object size:0x28 scope:global align:8
+Prev = .bss:0x802081B8; // type:object size:0xC scope:global align:4
+Curr = .bss:0x802081C4; // type:object size:0xC scope:global align:4
+...bss.0 = .bss:0x802081E0; // type:label scope:local
+tmpBuffer = .bss:0x802081E0; // type:object size:0x80 scope:global align:32
+DummyCommandBlock = .bss:0x80208260; // type:object size:0x30 scope:global align:4
+ResetAlarm = .bss:0x80208290; // type:object size:0x28 scope:global align:8
+...bss.0 = .bss:0x802082B8; // type:label scope:local
+WaitingQueue = .bss:0x802082B8; // type:object size:0x20 scope:global align:4 data:4byte
+bb2Buf = .bss:0x802082D8; // type:object size:0x3F scope:global align:4
+block$16 = .bss:0x80208318; // type:object size:0x30 scope:local align:4
+...bss.0 = .bss:0x80208348; // type:label scope:local
+regs = .bss:0x80208348; // type:object size:0x76 scope:global align:4 data:2byte
+shdwRegs = .bss:0x802083C0; // type:object size:0x76 scope:global align:4
+HorVer = .bss:0x80208438; // type:object size:0x58 scope:global align:4
+...bss.0 = .bss:0x80208490; // type:label scope:local
+Type = .bss:0x80208490; // type:object size:0x10 scope:local align:4
+Origin = .bss:0x802084A0; // type:object size:0x30 scope:global align:4
+CmdProbeDevice = .bss:0x802084D0; // type:object size:0x10 scope:global align:4
+...bss.0 = .bss:0x802084E0; // type:label scope:local
+__CARDBlock = .bss:0x802084E0; // type:object size:0x220 scope:global align:8 data:4byte
+__CARDDiskNone = .bss:0x80208700; // type:object size:0x20 scope:global align:4
+...bss.0 = .bss:0x80208720; // type:label scope:local
+gxData = .bss:0x80208720; // type:object size:0x4F8 scope:global align:4
+FifoObj = .bss:0x80208C18; // type:object size:0x80 scope:global align:4
+...bss.0 = .bss:0x80208C98; // type:label scope:local
+DisplayListFifo = .bss:0x80208C98; // type:object size:0x24 scope:global align:4 data:4byte
+__savedGXdata = .bss:0x80208CBC; // type:object size:0x4F8 scope:global align:4
+fragmentinfo = .bss:0x802091B8; // type:object size:0xC scope:global align:4 data:4byte
+__atexit_funcs = .bss:0x802091C8; // type:object size:0x100 scope:global align:4
+stderr_buff = .bss:0x802092C8; // type:object size:0x100 scope:global align:4
+stdout_buff = .bss:0x802093C8; // type:object size:0x100 scope:global align:4
+stdin_buff = .bss:0x802094C8; // type:object size:0x100 scope:global align:4
+gTRKEventQueue = .bss:0x802095C8; // type:object size:0x28 scope:global align:4
+gTRKBigEndian = .bss:0x802095F0; // type:object size:0x4 scope:global align:4 data:4byte
+gTRKMsgBufs = .bss:0x802095F8; // type:object size:0x19B0 scope:global align:4
+gTRKInputPendingPtr = .bss:0x8020AFA8; // type:object size:0x4 scope:global align:4 data:4byte
+gTRKFramingState = .bss:0x8020AFAC; // type:object size:0x14 scope:global align:4 data:4byte
+gTRKDispatchTableSize = .bss:0x8020AFC0; // type:object size:0x4 scope:global align:4 data:4byte
+IsTRKConnected = .bss:0x8020AFC8; // type:object size:0x4 scope:global align:4 data:4byte
+TRK_saved_exceptionID = .bss:0x8020AFD0; // type:object size:0x2 scope:global align:2 data:2byte
+gTRKState = .bss:0x8020AFD4; // type:object size:0xA4 scope:global align:4 data:4byte
+gTRKCPUState = .bss:0x8020B078; // type:object size:0x430 scope:global align:8
+gTRKSaveState = .bss:0x8020B4A8; // type:object size:0x94 scope:global align:4
+TRKvalue128_temp = .bss:0x8020B53C; // type:object size:0x10 scope:global align:4
+lc_base = .bss:0x8020B550; // type:object size:0x4 scope:global align:4 data:4byte
+TRK_mainError = .bss:0x8020B558; // type:object size:0x4 scope:global align:4 data:4byte
+...bss.0 = .bss:0x8020B560; // type:label scope:local
+gWritePos = .bss:0x8020B560; // type:object size:0x4 scope:global align:4 data:4byte
+gReadPos = .bss:0x8020B564; // type:object size:0x4 scope:global align:4
+gReadCount = .bss:0x8020B568; // type:object size:0x4 scope:global align:4
+_MetroTRK_Has_Framing = .bss:0x8020B56C; // type:object size:0x4 scope:global align:4
+gReadBuf = .bss:0x8020B570; // type:object size:0x110A scope:global align:4
+gWriteBuf = .bss:0x8020C67C; // type:object size:0x110A scope:global align:4
+bUseSerialIO = .bss:0x8020D788; // type:object size:0x1 scope:global align:1 data:byte
+aram_hp = .bss:0x8020D78C; // type:object size:0x14 scope:global align:4 data:4byte
+jac_audioThread = .bss:0x8020D7A0; // type:object size:0x310 scope:global align:8
+jac_neosThread = .bss:0x8020E0D0; // type:object size:0x310 scope:global align:8
+jac_dvdThread = .bss:0x8020E3E0; // type:object size:0x310 scope:global align:8
+MK_QUEUE = .bss:0x8020E6F0; // type:object size:0x18 scope:global align:4
+MK_QBUF = .bss:0x8020E788; // type:object size:0x40 scope:global align:4
+MK_RMES = .bss:0x8020E7C8; // type:object size:0x40 scope:global align:4
+AG = .bss:0x8020E808; // type:object size:0x92B0 scope:global align:8
+EX_DSPTASK = .bss:0x80217AB8; // type:object size:0x40 scope:global align:4
+CGRP_ARRAY = .bss:0x80217AF8; // type:object size:0x40 scope:global align:4 data:4byte
+aram_mother = .bss:0x80217B38; // type:object size:0x2C scope:global align:4
+@152 = .sdata:0x80217B80; // type:object size:0x2 scope:local align:1 data:string
+DISK_SUB_GAIN = .sdata:0x80217B88; // type:object size:0x8 scope:global align:4
+ROM_TOP_C000 = .sdata:0x80217B90; // type:object size:0x4 scope:global align:4 data:4byte
+ROM_TOP_E000 = .sdata:0x80217B94; // type:object size:0x4 scope:global align:4 data:4byte
+DISK_FRAME_SAMPLE = .sdata:0x80217B98; // type:object size:0x4 scope:global align:4 data:4byte
+FRAME_SAMPLE = .sdata:0x80217B9C; // type:object size:0x4 scope:global align:4 data:4byte
+PHASE_SAMPLE = .sdata:0x80217BA0; // type:object size:0x4 scope:global align:4 data:4byte
+NOISE_MASTER = .sdata:0x80217BA4; // type:object size:0x4 scope:global align:4 data:4byte
+NOISE_SHIFT = .sdata:0x80217BA8; // type:object size:0x4 scope:global align:4 data:4byte
+write_pointer = .sdata:0x80217BAC; // type:object size:0x4 scope:global align:4 data:4byte
+buffer_remain = .sdata:0x80217BB0; // type:object size:0x4 scope:global align:4 data:4byte
+_STOP = .sdata:0x80217BB4; // type:object size:0x8 scope:global align:4
+sou_now_bgm_handle = .sdata:0x80217BC0; // type:object size:0x1 scope:global align:1 data:byte
+SOU_ONGEN_AREA1 = .sdata:0x80217BC4; // type:object size:0x4 scope:global align:4 data:float
+SOU_ONGEN_AREA2 = .sdata:0x80217BC8; // type:object size:0x4 scope:global align:4 data:float
+sou_md_bgm_boost_pasent = .sdata:0x80217BCC; // type:object size:0x4 scope:global align:4 data:float
+rhythm_beat_type = .sdata:0x80217BD0; // type:object size:0x2 scope:global align:2 data:2byte
+AD2 = .sdata:0x80217BD8; // type:object size:0x8 scope:global align:4
+tasks$192 = .sdata:0x80217BE0; // type:object size:0x8 scope:local align:4
+JAC_DAC_RATE = .sdata:0x80217BE8; // type:object size:0x4 scope:global align:4 data:float
+JAC_SUBFRAMES = .sdata:0x80217BEC; // type:object size:0x4 scope:global align:4 data:4byte
+JAC_FRAMESAMPLES = .sdata:0x80217BF0; // type:object size:0x4 scope:global align:4 data:4byte
+DAC_SIZE = .sdata:0x80217BF4; // type:object size:0x4 scope:global align:4 data:4byte
+Env_DataH = .sdata:0x80217BF8; // type:object size:0x4 scope:global align:4 data:4byte
+Env_Data_L1 = .sdata:0x80217BFC; // type:object size:0x4 scope:global align:4 data:4byte
+Env_Data_L2 = .sdata:0x80217C00; // type:object size:0x4 scope:global align:4 data:4byte
+Env_Data_L3 = .sdata:0x80217C04; // type:object size:0x4 scope:global align:4 data:4byte
+NA_DMA_PROC = .sdata:0x80217C08; // type:object size:0x4 scope:global align:4 data:4byte
+NA_SYNC_PROC = .sdata:0x80217C0C; // type:object size:0x4 scope:global align:4 data:4byte
+updates_all$167 = .sdata:0x80217C10; // type:object size:0x1 scope:local align:4 data:byte
+DSP_MIXERLEVEL = .sdata:0x80217C18; // type:object size:0x2 scope:global align:2 data:2byte
+MAX_MIXERLEVEL = .sdata:0x80217C20; // type:object size:0x2 scope:global align:2 data:2byte
+JAC_SYSTEM_OUTPUT_MODE = .sdata:0x80217C24; // type:object size:0x4 scope:global align:4 data:4byte
+COMP_BLOCKSAMPLES$178 = .sdata:0x80217C28; // type:object size:0x8 scope:local align:4
+COMP_BLOCKBYTES$179 = .sdata:0x80217C30; // type:object size:0x8 scope:local align:4
+v0 = .sdata:0x80217C38; // type:object size:0x4 scope:global align:4 data:4byte
+v1 = .sdata:0x80217C3C; // type:object size:0x4 scope:global align:4 data:4byte
+ARCALL = .sdata:0x80217C40; // type:object size:0x4 scope:global align:4 data:4byte
+first = .sdata:0x80217C44; // type:object size:0x4 scope:global align:4 data:4byte
+osc_table = .sdata:0x80217C48; // type:object size:0x5 scope:global align:4
+OSC_REL = .sdata:0x80217C50; // type:object size:0x8 scope:global align:4
+black_color = .sdata:0x80217C58; // type:object size:0x4 scope:global align:4 data:4byte
+white_color = .sdata:0x80217C5C; // type:object size:0x4 scope:global align:4 data:4byte
+@688 = .sdata:0x80217C60; // type:object size:0x6 scope:local align:4 data:string
+@689 = .sdata:0x80217C68; // type:object size:0x7 scope:local align:4 data:string
+@690 = .sdata:0x80217C70; // type:object size:0x7 scope:local align:4 data:string
+@691 = .sdata:0x80217C78; // type:object size:0x2 scope:local align:4 data:string
+@692 = .sdata:0x80217C7C; // type:object size:0x5 scope:local align:4 data:string
+@693 = .sdata:0x80217C84; // type:object size:0x2 scope:local align:4 data:string
+@694 = .sdata:0x80217C88; // type:object size:0x3 scope:local align:4 data:string
+@695 = .sdata:0x80217C8C; // type:object size:0x3 scope:local align:4 data:string
+@696 = .sdata:0x80217C90; // type:object size:0x2 scope:local align:4 data:string
+@697 = .sdata:0x80217C94; // type:object size:0x6 scope:local align:4 data:string
+@698 = .sdata:0x80217C9C; // type:object size:0x7 scope:local align:4 data:string
+@699 = .sdata:0x80217CA4; // type:object size:0x4 scope:local align:4 data:string
+@700 = .sdata:0x80217CA8; // type:object size:0x7 scope:local align:4 data:string
+@702 = .sdata:0x80217CB0; // type:object size:0x4 scope:local align:4 data:string
+@703 = .sdata:0x80217CB4; // type:object size:0x4 scope:local align:4 data:string
+@704 = .sdata:0x80217CB8; // type:object size:0x5 scope:local align:4 data:string
+@705 = .sdata:0x80217CC0; // type:object size:0x3 scope:local align:4 data:string
+@706 = .sdata:0x80217CC4; // type:object size:0x3 scope:local align:4 data:string
+@707 = .sdata:0x80217CC8; // type:object size:0x4 scope:local align:4 data:string
+@708 = .sdata:0x80217CCC; // type:object size:0x4 scope:local align:4 data:string
+@709 = .sdata:0x80217CD0; // type:object size:0x7 scope:local align:4 data:string
+@710 = .sdata:0x80217CD8; // type:object size:0x6 scope:local align:4 data:string
+@713 = .sdata:0x80217CE0; // type:object size:0x8 scope:local align:4 data:string
+@717 = .sdata:0x80217CE8; // type:object size:0x6 scope:local align:4 data:string
+@721 = .sdata:0x80217CF0; // type:object size:0x6 scope:local align:4 data:string
+@748 = .sdata:0x80217CF8; // type:object size:0x3 scope:local align:4 data:string
+@827 = .sdata:0x80217CFC; // type:object size:0x2 scope:local align:4 data:string
+@864 = .sdata:0x80217D00; // type:object size:0x7 scope:local align:4 data:string
+@950 = .sdata:0x80217D08; // type:object size:0x7 scope:local align:4 data:string
+@1012 = .sdata:0x80217D10; // type:object size:0x7 scope:local align:4 data:string
+@1013 = .sdata:0x80217D18; // type:object size:0x7 scope:local align:4 data:string
+@1015 = .sdata:0x80217D20; // type:object size:0x6 scope:local align:4 data:string
+@1017 = .sdata:0x80217D28; // type:object size:0x7 scope:local align:4 data:string
+@1018 = .sdata:0x80217D30; // type:object size:0x6 scope:local align:4 data:string
+@1019 = .sdata:0x80217D38; // type:object size:0x2 scope:local align:4 data:string
+@1020 = .sdata:0x80217D3C; // type:object size:0x6 scope:local align:4 data:string
+@1021 = .sdata:0x80217D44; // type:object size:0x3 scope:local align:4 data:string
+@1023 = .sdata:0x80217D48; // type:object size:0x2 scope:local align:4 data:string
+@1031 = .sdata:0x80217D4C; // type:object size:0x3 scope:local align:4 data:string
+@1075 = .sdata:0x80217D50; // type:object size:0x7 scope:local align:4 data:string
+@1076 = .sdata:0x80217D58; // type:object size:0x7 scope:local align:4 data:string
+@1077 = .sdata:0x80217D60; // type:object size:0x8 scope:local align:4 data:string
+@1128 = .sdata:0x80217D68; // type:object size:0x2 scope:local align:4 data:string
+@1129 = .sdata:0x80217D6C; // type:object size:0x3 scope:local align:4 data:string
+@1135 = .sdata:0x80217D70; // type:object size:0x6 scope:local align:4 data:string
+@1136 = .sdata:0x80217D78; // type:object size:0x6 scope:local align:4 data:string
+@1137 = .sdata:0x80217D80; // type:object size:0x6 scope:local align:4 data:string
+@1138 = .sdata:0x80217D88; // type:object size:0x6 scope:local align:4 data:string
+@1159 = .sdata:0x80217D90; // type:object size:0x7 scope:local align:4 data:string
+@1162 = .sdata:0x80217D98; // type:object size:0x7 scope:local align:4 data:string
+@1193 = .sdata:0x80217DA0; // type:object size:0x4 scope:local align:4 data:string
+@2033 = .sdata:0x80217DA4; // type:object size:0x7 scope:local align:4 data:string
+@2525 = .sdata:0x80217DAC; // type:object size:0x8 scope:local align:4 data:string
+@2779 = .sdata:0x80217DB4; // type:object size:0x5 scope:local align:4
+@7203 = .sdata:0x80217DBC; // type:object size:0x8 scope:local align:4 data:string
+@7204 = .sdata:0x80217DC4; // type:object size:0x8 scope:local align:4 data:string
+@320 = .sdata:0x80217DD0; // type:object size:0x1 scope:local align:4
+@788 = .sdata:0x80217DD4; // type:object size:0x5 scope:local align:4
+@789 = .sdata:0x80217DDC; // type:object size:0x5 scope:local align:4
+@793 = .sdata:0x80217DE4; // type:object size:0x2 scope:local align:4 data:string
+__qrand_idum = .sdata:0x80217DE8; // type:object size:0x4 scope:global align:4 data:4byte
+dtor$258 = .sdata:0x80217DF0; // type:object size:0x4 scope:local align:4 data:float
+@105 = .sdata:0x80217DF8; // type:object size:0x4 scope:local align:4 data:string
+@106 = .sdata:0x80217DFC; // type:object size:0x4 scope:local align:4 data:string
+@218 = .sdata:0x80217E00; // type:object size:0x2 scope:local align:4 data:string
+@196 = .sdata:0x80217E08; // type:object size:0x4 scope:local align:4 data:string
+__osFinalrom = .sdata:0x80217E10; // type:object size:0x4 scope:global align:4 data:4byte
+__osTimerList = .sdata:0x80217E18; // type:object size:0x4 scope:global align:4 data:4byte
+maxStdHeaps__Q29JFWSystem11CSetUpParam = .sdata:0x80217E20; // type:object size:0x4 scope:global align:4 data:4byte
+sysHeapSize__Q29JFWSystem11CSetUpParam = .sdata:0x80217E24; // type:object size:0x4 scope:global align:4 data:4byte
+fifoBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80217E28; // type:object size:0x4 scope:global align:4 data:4byte
+aramAudioBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80217E2C; // type:object size:0x4 scope:global align:4 data:4byte
+aramGraphBufSize__Q29JFWSystem11CSetUpParam = .sdata:0x80217E30; // type:object size:0x4 scope:global align:4 data:4byte
+streamPriority__Q29JFWSystem11CSetUpParam = .sdata:0x80217E34; // type:object size:0x4 scope:global align:4 data:4byte
+decompPriority__Q29JFWSystem11CSetUpParam = .sdata:0x80217E38; // type:object size:0x4 scope:global align:4 data:4byte
+aPiecePriority__Q29JFWSystem11CSetUpParam = .sdata:0x80217E3C; // type:object size:0x4 scope:global align:4 data:4byte
+systemFontRes__Q29JFWSystem11CSetUpParam = .sdata:0x80217E40; // type:object size:0x4 scope:global align:4 data:4byte
+renderMode__Q29JFWSystem11CSetUpParam = .sdata:0x80217E44; // type:object size:0x4 scope:global align:4 data:4byte
+exConsoleBufferSize__Q29JFWSystem11CSetUpParam = .sdata:0x80217E48; // type:object size:0x4 scope:global align:4 data:4byte
+__RTTI__10JFWDisplay = .sdata:0x80217E50; // type:object size:0x8 scope:global align:4
+sDefaultFillFlag__7JKRHeap = .sdata:0x80217E58; // type:object size:0x1 scope:global align:1 data:byte
+@664 = .sdata:0x80217E5C; // type:object size:0x7 scope:local align:4 data:string
+@807 = .sdata:0x80217E64; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217E6C; // type:object size:0x8 scope:local align:4
+__RTTI__7JKRHeap = .sdata:0x80217E74; // type:object size:0x8 scope:local align:4
+@1022 = .sdata:0x80217E80; // type:object size:0x7 scope:local align:4 data:string
+@1025 = .sdata:0x80217E88; // type:object size:0x6 scope:local align:4 data:string
+@1026 = .sdata:0x80217E90; // type:object size:0x6 scope:local align:4 data:string
+@1028 = .sdata:0x80217E98; // type:object size:0x6 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217EA0; // type:object size:0x8 scope:local align:4
+@1189 = .sdata:0x80217EA8; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__7JKRHeap = .sdata:0x80217EB0; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRExpHeap = .sdata:0x80217EB8; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80217EC0; // type:object size:0x8 scope:local align:4
+__RTTI__11JKRDisposer = .sdata:0x80217EC8; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRThread = .sdata:0x80217ED0; // type:object size:0x8 scope:local align:4
+@925 = .sdata:0x80217ED8; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217EE0; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRThread = .sdata:0x80217EE8; // type:object size:0x8 scope:local align:4
+__RTTI__7JKRAram = .sdata:0x80217EF0; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80217EF8; // type:object size:0x8 scope:local align:4
+__RTTI__11JKRAramHeap = .sdata:0x80217F00; // type:object size:0x8 scope:global align:4
+__RTTI__12JKRAramBlock = .sdata:0x80217F08; // type:object size:0x8 scope:global align:4
+@313 = .sdata:0x80217F10; // type:object size:0x7 scope:local align:4 data:string
+@332 = .sdata:0x80217F18; // type:object size:0x7 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217F20; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRThread = .sdata:0x80217F28; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRAramStream = .sdata:0x80217F30; // type:object size:0x8 scope:global align:4
+rootPath$2412 = .sdata:0x80217F38; // type:object size:0x2 scope:local align:4 data:string
+@2432 = .sdata:0x80217F3C; // type:object size:0x2 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217F40; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217F48; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileFinder = .sdata:0x80217F50; // type:object size:0x8 scope:local align:4
+__RTTI__12JKRArcFinder = .sdata:0x80217F58; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80217F60; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217F68; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRArchive = .sdata:0x80217F70; // type:object size:0x8 scope:local align:4
+__RTTI__11JKRDisposer = .sdata:0x80217F78; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217F80; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRArchive = .sdata:0x80217F88; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRMemArchive = .sdata:0x80217F90; // type:object size:0x8 scope:global align:4
+@2387 = .sdata:0x80217F98; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80217FA0; // type:object size:0x8 scope:local align:4
+__RTTI__7JKRFile = .sdata:0x80217FA8; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217FB0; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRArchive = .sdata:0x80217FB8; // type:object size:0x8 scope:local align:4
+__RTTI__14JKRAramArchive = .sdata:0x80217FC0; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80217FC8; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217FD0; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRArchive = .sdata:0x80217FD8; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRDvdArchive = .sdata:0x80217FE0; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80217FE8; // type:object size:0x8 scope:local align:4
+__RTTI__13JKRFileLoader = .sdata:0x80217FF0; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRArchive = .sdata:0x80217FF8; // type:object size:0x8 scope:local align:4
+__RTTI__14JKRCompArchive = .sdata:0x80218000; // type:object size:0x8 scope:global align:4
+__RTTI__11JKRDisposer = .sdata:0x80218008; // type:object size:0x8 scope:local align:4
+@751 = .sdata:0x80218010; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__7JKRFile = .sdata:0x80218018; // type:object size:0x8 scope:local align:4
+__RTTI__10JKRDvdFile = .sdata:0x80218020; // type:object size:0x8 scope:global align:4
+errorRetry__12JKRDvdRipper = .sdata:0x80218028; // type:object size:0x1 scope:global align:1 data:byte
+errorRetry__16JKRDvdAramRipper = .sdata:0x80218030; // type:object size:0x1 scope:global align:1 data:byte
+__RTTI__11JKRDisposer = .sdata:0x80218038; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRThread = .sdata:0x80218040; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRDecomp = .sdata:0x80218048; // type:object size:0x8 scope:global align:4
+__RTTI__10JSUIosBase = .sdata:0x80218050; // type:object size:0x8 scope:local align:4
+__RTTI__14JSUInputStream = .sdata:0x80218058; // type:object size:0x8 scope:local align:4
+__RTTI__20JSURandomInputStream = .sdata:0x80218060; // type:object size:0x8 scope:local align:4
+__RTTI__10JSUIosBase = .sdata:0x80218068; // type:object size:0x8 scope:local align:4
+__RTTI__14JSUInputStream = .sdata:0x80218070; // type:object size:0x8 scope:local align:4
+__RTTI__20JSURandomInputStream = .sdata:0x80218078; // type:object size:0x8 scope:local align:4
+__RTTI__18JSUFileInputStream = .sdata:0x80218080; // type:object size:0x8 scope:global align:4
+__RTTI__12JUTGraphFifo = .sdata:0x80218088; // type:object size:0x8 scope:global align:4
+@351 = .sdata:0x80218090; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__7JUTFont = .sdata:0x80218098; // type:object size:0x8 scope:local align:4
+@763 = .sdata:0x802180A0; // type:object size:0x8 scope:local align:4 data:string
+__RTTI__7JUTFont = .sdata:0x802180A8; // type:object size:0x8 scope:local align:4
+__RTTI__10JUTResFont = .sdata:0x802180B0; // type:object size:0x8 scope:global align:4
+mStickMode__10JUTGamePad = .sdata:0x802180B8; // type:object size:0x4 scope:global align:4 data:4byte
+sResetPattern__Q210JUTGamePad13C3ButtonReset = .sdata:0x802180BC; // type:object size:0x4 scope:global align:4 data:4byte
+__RTTI__11JKRDisposer = .sdata:0x802180C0; // type:object size:0x8 scope:local align:4
+__RTTI__10JUTGamePad = .sdata:0x802180C8; // type:object size:0x8 scope:global align:4
+sMessageBuffer__12JUTException = .sdata:0x802180D0; // type:object size:0x4 scope:global align:4
+@2097 = .sdata:0x802180D4; // type:object size:0x4 scope:local align:4 data:string
+@2098 = .sdata:0x802180D8; // type:object size:0x4 scope:local align:4 data:string
+@2101 = .sdata:0x802180DC; // type:object size:0x8 scope:local align:4 data:string
+@2105 = .sdata:0x802180E4; // type:object size:0x6 scope:local align:4 data:string
+@2205 = .sdata:0x802180EC; // type:object size:0x2 scope:local align:4 data:string
+@2206 = .sdata:0x802180F0; // type:object size:0x2 scope:local align:4 data:string
+@2342 = .sdata:0x802180F4; // type:object size:0x1 scope:local align:4
+@2757 = .sdata:0x802180F8; // type:object size:0x5 scope:local align:4 data:string
+__RTTI__11JKRDisposer = .sdata:0x80218100; // type:object size:0x8 scope:local align:4
+__RTTI__9JKRThread = .sdata:0x80218108; // type:object size:0x8 scope:local align:4
+__RTTI__12JUTException = .sdata:0x80218110; // type:object size:0x8 scope:global align:4
+@410 = .sdata:0x80218118; // type:object size:0x3 scope:local align:4 data:string
+sDisplayTime__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sdata:0x80218120; // type:object size:0x4 scope:global align:4 data:4byte
+sDevice__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sdata:0x80218124; // type:object size:0x4 scope:global align:4 data:4byte
+mVisible__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sdata:0x80218128; // type:object size:0x1 scope:global align:1 data:byte
+__RTTI__8JUTVideo = .sdata:0x80218130; // type:object size:0x8 scope:global align:4
+__RTTI__8JUTFader = .sdata:0x80218138; // type:object size:0x8 scope:global align:4
+oneFrameRate = .sdata:0x80218140; // type:object size:0x4 scope:global align:4 data:float
+oneFrameRateUser = .sdata:0x80218144; // type:object size:0x4 scope:global align:4 data:float
+@2541 = .sdata:0x80218148; // type:object size:0x4 scope:local align:4 data:string
+@3002 = .sdata:0x8021814C; // type:object size:0x3 scope:local align:4 data:string
+__RTTI__10JUTConsole = .sdata:0x80218150; // type:object size:0x8 scope:global align:4
+__RTTI__14J2DGrafContext = .sdata:0x80218158; // type:object size:0x8 scope:local align:4
+__RTTI__14J2DGrafContext = .sdata:0x80218160; // type:object size:0x8 scope:local align:4
+__RTTI__13J2DOrthoGraph = .sdata:0x80218168; // type:object size:0x8 scope:global align:4
+__OSCurrHeap = .sdata:0x80218170; // type:object size:0x4 scope:global align:4 data:4byte
+__OSArenaLo = .sdata:0x80218178; // type:object size:0x4 scope:global align:4 data:4byte
+@32 = .sdata:0x80218180; // type:object size:0x2 scope:local align:4 data:string
+fontEncode$80 = .sdata:0x80218188; // type:object size:0x2 scope:local align:2 data:2byte
+@796 = .sdata:0x80218190; // type:object size:0x1 scope:local align:4
+Unit01 = .sdata:0x80218198; // type:object size:0x8 scope:global align:4
+FirstRead = .sdata:0x802181A0; // type:object size:0x4 scope:global align:4 data:4byte
+@116 = .sdata:0x802181A8; // type:object size:0x8 scope:local align:4 data:string
+autoInvalidation = .sdata:0x802181B0; // type:object size:0x4 scope:global align:4 data:4byte
+@35 = .sdata:0x802181B8; // type:object size:0x2 scope:local align:4 data:string
+@40 = .sdata:0x802181BC; // type:object size:0x4 scope:local align:4 data:string
+@41 = .sdata:0x802181C0; // type:object size:0x3 scope:local align:4 data:string
+ClampRegion = .sdata:0x802181C8; // type:object size:0x8 scope:global align:4 data:byte
+ResettingChan = .sdata:0x802181D0; // type:object size:0x4 scope:global align:4 data:4byte
+XPatchBits = .sdata:0x802181D4; // type:object size:0x4 scope:global align:4 data:4byte
+AnalogMode = .sdata:0x802181D8; // type:object size:0x4 scope:global align:4 data:4byte
+Spec = .sdata:0x802181DC; // type:object size:0x4 scope:global align:4 data:4byte
+MakeStatus = .sdata:0x802181E0; // type:object size:0x4 scope:global align:4 data:4byte
+CmdReadOrigin = .sdata:0x802181E4; // type:object size:0x4 scope:global align:4
+CmdCalibrate = .sdata:0x802181E8; // type:object size:0x4 scope:global align:4
+__CARDVendorID = .sdata:0x802181F0; // type:object size:0x2 scope:global align:2 data:2byte
+gx = .sdata:0x802181F8; // type:object size:0x4 scope:global align:4 data:4byte
+tbl1$227 = .sdata:0x80218200; // type:object size:0x4 scope:local align:4
+tbl2$228 = .sdata:0x80218204; // type:object size:0x4 scope:local align:4
+tbl3$229 = .sdata:0x80218208; // type:object size:0x4 scope:local align:4
+GXTexMode0Ids = .sdata:0x80218210; // type:object size:0x8 scope:global align:4
+GXTexMode1Ids = .sdata:0x80218218; // type:object size:0x8 scope:global align:4
+GXTexImage0Ids = .sdata:0x80218220; // type:object size:0x8 scope:global align:4
+GXTexImage1Ids = .sdata:0x80218228; // type:object size:0x8 scope:global align:4
+GXTexImage2Ids = .sdata:0x80218230; // type:object size:0x8 scope:global align:4
+GXTexImage3Ids = .sdata:0x80218238; // type:object size:0x8 scope:global align:4
+GXTexTlutIds = .sdata:0x80218240; // type:object size:0x8 scope:global align:4
+GX2HWFiltConv = .sdata:0x80218248; // type:object size:0x6 scope:global align:4
+fragmentID = .sdata:0x80218250; // type:object size:0x4 scope:global align:4 data:4byte
+@wstringBase0 = .sdata:0x80218258; // type:object size:0x2 scope:local align:4
+next = .sdata:0x80218260; // type:object size:0x4 scope:global align:4 data:4byte
+__float_nan = .sdata:0x80218268; // type:object size:0x4 scope:global align:4 data:float
+__float_huge = .sdata:0x8021826C; // type:object size:0x4 scope:global align:4 data:float
+SendCount = .sdata:0x80218270; // type:object size:0x1 scope:global align:1 data:byte
+beforemode = .sbss:0x80218280; // type:object size:0x1 scope:global align:1 data:byte
+move_to_50 = .sbss:0x80218281; // type:object size:0x1 scope:global align:1 data:byte
+MMC_MODE = .sbss:0x80218282; // type:object size:0x1 scope:global align:1 data:byte
+NOISE_DTABLE = .sbss:0x80218284; // type:object size:0x4 scope:global align:4 data:4byte
+PHASE_SYNC_FLAG = .sbss:0x80218288; // type:object size:0x4 scope:global align:4 data:4byte
+FRAME_SYNC_FLAG = .sbss:0x8021828C; // type:object size:0x4 scope:global align:4 data:4byte
+PHASE_SYNC_COUNTER = .sbss:0x80218290; // type:object size:0x4 scope:global align:4 data:4byte
+FRAME_SYNC_COUNTER = .sbss:0x80218294; // type:object size:0x4 scope:global align:4 data:4byte
+NOISE_PULSE = .sbss:0x80218298; // type:object size:0x1 scope:global align:1 data:byte
+data$698 = .sbss:0x80218299; // type:object size:0x1 scope:local align:1 data:byte
+init$699 = .sbss:0x8021829A; // type:object size:0x1 scope:local align:1 data:byte
+delta_counter = .sbss:0x8021829C; // type:object size:0x4 scope:global align:4 data:4byte
+delta_sign = .sbss:0x802182A0; // type:object size:0x1 scope:global align:1 data:byte
+bias_move = .sbss:0x802182A4; // type:object size:0x4 scope:global align:4 data:4byte
+bias = .sbss:0x802182A8; // type:object size:0x4 scope:global align:4 data:4byte
+voltage = .sbss:0x802182AC; // type:object size:0x4 scope:global align:4 data:float
+voltage_out = .sbss:0x802182B0; // type:object size:0x4 scope:global align:4 data:float
+sample_timer = .sbss:0x802182B4; // type:object size:0x4 scope:global align:4 data:4byte
+abs_timer = .sbss:0x802182B8; // type:object size:0x4 scope:global align:4 data:4byte
+timer$919 = .sbss:0x802182BC; // type:object size:0x2 scope:local align:2 data:2byte
+init$920 = .sbss:0x802182BE; // type:object size:0x1 scope:local align:1 data:byte
+shiftr$1006 = .sbss:0x802182C0; // type:object size:0x4 scope:local align:4 data:4byte
+init$1007 = .sbss:0x802182C4; // type:object size:0x1 scope:local align:1 data:byte
+lastsample$1251 = .sbss:0x802182C8; // type:object size:0x4 scope:local align:4 data:4byte
+read_pointer = .sbss:0x802182CC; // type:object size:0x4 scope:global align:4 data:4byte
+create_counter$1290 = .sbss:0x802182D0; // type:object size:0x4 scope:local align:4 data:float
+init$1291 = .sbss:0x802182D4; // type:object size:0x1 scope:local align:1 data:byte
+create_speed$1293 = .sbss:0x802182D8; // type:object size:0x4 scope:local align:4 data:float
+exitflag = .sbss:0x802182DC; // type:object size:0x4 scope:global align:4 data:4byte
+old_mixcall = .sbss:0x802182E0; // type:object size:0x4 scope:global align:4 data:4byte
+old_mixmode = .sbss:0x802182E4; // type:object size:0x1 scope:global align:1 data:byte
+bootsound_ptr = .sbss:0x802182E8; // type:object size:0x4 scope:global align:4 data:4byte
+bootsound_size = .sbss:0x802182EC; // type:object size:0x4 scope:global align:4 data:4byte
+sou_now_spec = .sbss:0x802182F0; // type:object size:0x4 scope:global align:4 data:4byte
+sou_scene_mode = .sbss:0x802182F4; // type:object size:0x1 scope:global align:1 data:byte
+sou_chime_status = .sbss:0x802182F5; // type:object size:0x1 scope:global align:1 data:byte
+fatalErrorCallback = .sbss:0x802182F8; // type:object size:0x4 scope:global align:4 data:4byte
+sou_last_kokoro_counter = .sbss:0x802182FC; // type:object size:0x1 scope:global align:1 data:byte
+sou_game_frame_counter = .sbss:0x802182FD; // type:object size:0x1 scope:global align:1 data:byte
+sou_kokoro_toguru = .sbss:0x802182FE; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_sys_trg_num = .sbss:0x80218300; // type:object size:0x2 scope:global align:2 data:2byte
+sou_sub_game_flag = .sbss:0x80218302; // type:object size:0x1 scope:global align:1 data:byte
+sou_kazaguruma_speed = .sbss:0x80218304; // type:object size:0x4 scope:global align:4 data:float
+sou_NeosBootCheck_ok = .sbss:0x80218308; // type:object size:0x1 scope:global align:1 data:byte
+sou_walk_flag = .sbss:0x80218309; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_walk_l = .sbss:0x8021830A; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_walk_r = .sbss:0x8021830B; // type:object size:0x1 scope:global align:1 data:byte
+sou_player_dash = .sbss:0x8021830C; // type:object size:0x1 scope:global align:1 data:byte
+sou_player_speed = .sbss:0x80218310; // type:object size:0x4 scope:global align:4 data:float
+sou_voice_se_toguru = .sbss:0x80218314; // type:object size:0x1 scope:global align:1 data:byte
+sou_message_speed = .sbss:0x80218315; // type:object size:0x1 scope:global align:1 data:byte
+sou_message_status = .sbss:0x80218316; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_voice = .sbss:0x80218317; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_effect = .sbss:0x80218318; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_effect_counter = .sbss:0x80218319; // type:object size:0x1 scope:global align:1 data:byte
+sou_pause_flag = .sbss:0x8021831A; // type:object size:0x1 scope:global align:1 data:byte
+sou_metranome_counter = .sbss:0x8021831B; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_perio = .sbss:0x8021831C; // type:object size:0x2 scope:global align:2 data:2byte
+sou_last_uchiwa = .sbss:0x8021831E; // type:object size:0x2 scope:global align:2 data:2byte
+sou_out_mode = .sbss:0x80218320; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_mode = .sbss:0x80218321; // type:object size:0x1 scope:global align:1 data:byte
+sou_kiteki_random = .sbss:0x80218322; // type:object size:0x2 scope:global align:2 data:2byte
+sou_kiteki_counter = .sbss:0x80218324; // type:object size:0x2 scope:global align:2 data:2byte
+sou_camera2ground = .sbss:0x80218328; // type:object size:0x4 scope:global align:4 data:float
+sou_now_boin = .sbss:0x8021832C; // type:object size:0x1 scope:global align:1 data:byte
+sou_now_voice_seq = .sbss:0x8021832D; // type:object size:0x1 scope:global align:1 data:byte
+sou_nobasu_count = .sbss:0x8021832E; // type:object size:0x1 scope:global align:1 data:byte
+sou_now_bgm_num = .sbss:0x8021832F; // type:object size:0x1 scope:global align:1 data:byte
+sou_bgm_vol_move_target = .sbss:0x80218330; // type:object size:0x4 scope:global align:4 data:float
+sou_bgm_vol_move_delta = .sbss:0x80218334; // type:object size:0x4 scope:global align:4 data:float
+sou_bgm1_vol_now = .sbss:0x80218338; // type:object size:0x4 scope:global align:4 data:float
+sou_bgm2_vol_now = .sbss:0x8021833C; // type:object size:0x4 scope:global align:4 data:float
+sou_bgm_vol_move_time = .sbss:0x80218340; // type:object size:0x2 scope:global align:2 data:2byte
+sou_bgm_vol_move_counter = .sbss:0x80218342; // type:object size:0x2 scope:global align:2 data:2byte
+sou_kisha_angle = .sbss:0x80218344; // type:object size:0x2 scope:global align:2 data:2byte
+sou_kisha_distance = .sbss:0x80218348; // type:object size:0x4 scope:global align:4 data:float
+sou_kisha_angle2 = .sbss:0x8021834C; // type:object size:0x2 scope:global align:2 data:2byte
+sou_kisha_distance2 = .sbss:0x80218350; // type:object size:0x4 scope:global align:4 data:float
+sou_kisha_status = .sbss:0x80218354; // type:object size:0x2 scope:global align:2 data:2byte
+sou_shu_count = .sbss:0x80218356; // type:object size:0x2 scope:global align:2 data:2byte
+sou_tonton_count = .sbss:0x80218358; // type:object size:0x2 scope:global align:2 data:2byte
+sou_voice_type = .sbss:0x8021835A; // type:object size:0x1 scope:global align:1 data:byte
+sou_SE_SENTAKU_KETTEI_timer = .sbss:0x8021835B; // type:object size:0x1 scope:global align:1 data:byte
+sou_SE_ami_hit_water_timer = .sbss:0x8021835C; // type:object size:0x1 scope:global align:1 data:byte
+sou_tenki = .sbss:0x8021835D; // type:object size:0x1 scope:global align:1 data:byte
+sou_now_bgm_fadeout = .sbss:0x8021835E; // type:object size:0x1 scope:global align:1 data:byte
+sou_se_handle_ready = .sbss:0x8021835F; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_handle_ready = .sbss:0x80218360; // type:object size:0x1 scope:global align:1 data:byte
+sou_bgm_call_buffer = .sbss:0x80218361; // type:object size:0x1 scope:global align:1 data:byte
+sou_bgm_call_buffer_u8 = .sbss:0x80218362; // type:object size:0x1 scope:global align:1 data:byte
+sou_bgm_call_buffer_u16 = .sbss:0x80218364; // type:object size:0x2 scope:global align:2 data:2byte
+sou_ongenpos_kill_countdown = .sbss:0x80218366; // type:object size:0x2 scope:global align:2 data:2byte
+sou_chime_volume = .sbss:0x80218368; // type:object size:0x4 scope:global align:4 data:float
+sou_filter_status = .sbss:0x8021836C; // type:object size:0x1 scope:global align:1 data:byte
+sou_room_type = .sbss:0x8021836D; // type:object size:0x1 scope:global align:1 data:byte
+sou_museum_type = .sbss:0x8021836E; // type:object size:0x1 scope:global align:1 data:byte
+sou_internal_filter_status = .sbss:0x8021836F; // type:object size:0x1 scope:global align:1 data:byte
+sou_se_fadeout_flag = .sbss:0x80218370; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_sad_toguru = .sbss:0x80218371; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_voice_toguru = .sbss:0x80218372; // type:object size:0x1 scope:global align:1 data:byte
+sou_voice_se_skip = .sbss:0x80218373; // type:object size:0x1 scope:global align:1 data:byte
+sou_num2_request = .sbss:0x80218374; // type:object size:0x1 scope:global align:1 data:byte
+sou_Na_VoiceSeFlag = .sbss:0x80218375; // type:object size:0x1 scope:global align:1 data:byte
+sou_num2_animal_id = .sbss:0x80218376; // type:object size:0x2 scope:global align:2 data:2byte
+sou_num2_scale = .sbss:0x80218378; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_num = .sbss:0x80218379; // type:object size:0x1 scope:global align:1 data:byte
+sou_last_num2 = .sbss:0x8021837A; // type:object size:0x1 scope:global align:1 data:byte
+sou_num_org = .sbss:0x8021837B; // type:object size:0x1 scope:global align:1 data:byte
+sou_num2_org = .sbss:0x8021837C; // type:object size:0x1 scope:global align:1 data:byte
+sou_num3_org = .sbss:0x8021837D; // type:object size:0x1 scope:global align:1 data:byte
+sou_sys_lev = .sbss:0x8021837E; // type:object size:0x6 scope:global align:1
+SOU_FIR_STATE = .sbss:0x80218384; // type:object size:0x4 scope:global align:4 data:4byte
+init$2308 = .sbss:0x80218388; // type:object size:0x4 scope:local align:4 data:4byte
+init$2309 = .sbss:0x8021838C; // type:object size:0x1 scope:local align:1 data:byte
+current_sub_track = .sbss:0x80218390; // type:object size:0x4 scope:global align:4 data:4byte
+na_melody_id_hist = .sbss:0x80218394; // type:object size:0x8 scope:global align:4 data:4byte
+pre_beat_type$427 = .sbss:0x802183A0; // type:object size:0x4 scope:local align:4 data:4byte
+init$428 = .sbss:0x802183A4; // type:object size:0x1 scope:local align:1 data:byte
+pre_frame_per_step$430 = .sbss:0x802183A8; // type:object size:0x4 scope:local align:4 data:4byte
+init$431 = .sbss:0x802183AC; // type:object size:0x1 scope:local align:1 data:byte
+kappa_seq_handle = .sbss:0x802183B0; // type:object size:0x4 scope:global align:4 data:4byte
+start_flag = .sbss:0x802183B8; // type:object size:0x4 scope:global align:4 data:4byte
+mouth_num = .sbss:0x802183BC; // type:object size:0x4 scope:global align:4 data:4byte
+seq_num = .sbss:0x802183C0; // type:object size:0x4 scope:global align:4 data:4byte
+ADPCM_BOOKBUF_SIZE = .sbss:0x802183C8; // type:object size:0x4 scope:global align:4 data:4byte
+taskp$90 = .sbss:0x802183CC; // type:object size:0x4 scope:local align:4 data:4byte
+alltasks$91 = .sbss:0x802183D0; // type:object size:0x4 scope:local align:4 data:4byte
+consumes$92 = .sbss:0x802183D4; // type:object size:0x4 scope:local align:4 data:4byte
+init$105 = .sbss:0x802183D8; // type:object size:0x4 scope:local align:4 data:4byte
+init$106 = .sbss:0x802183DC; // type:object size:0x1 scope:local align:1 data:byte
+flag$227 = .sbss:0x802183E0; // type:object size:0x4 scope:local align:4 data:4byte
+init$228 = .sbss:0x802183E4; // type:object size:0x1 scope:local align:1 data:byte
+finalr_phase$230 = .sbss:0x802183E6; // type:object size:0x2 scope:local align:2
+finalr_state$231 = .sbss:0x802183E8; // type:object size:0x4 scope:local align:4 data:4byte
+UNIVERSAL_DACCOUNTER = .sbss:0x802183F0; // type:object size:0x4 scope:global align:4 data:4byte
+audio_hp_exist = .sbss:0x802183F4; // type:object size:0x4 scope:global align:4 data:4byte
+last_rsp_madep = .sbss:0x802183F8; // type:object size:0x4 scope:global align:4 data:4byte
+use_rsp_madep = .sbss:0x802183FC; // type:object size:0x4 scope:global align:4 data:4byte
+vframe_work_running = .sbss:0x80218400; // type:object size:0x4 scope:global align:4 data:4byte
+DAC_CALLBACK_FUNC = .sbss:0x80218404; // type:object size:0x4 scope:global align:4 data:4byte
+JAC_VFRAME_COUNTER = .sbss:0x80218408; // type:object size:0x4 scope:global align:4 data:4byte
+ext_mixcallback = .sbss:0x8021840C; // type:object size:0x4 scope:global align:4 data:4byte
+ext_mixmode = .sbss:0x80218410; // type:object size:0x1 scope:global align:1 data:byte
+dacp$354 = .sbss:0x80218414; // type:object size:0x4 scope:local align:4 data:4byte
+init$355 = .sbss:0x80218418; // type:object size:0x1 scope:local align:1 data:byte
+JAC_ARAM_DMA_BUFFER_TOP = .sbss:0x80218420; // type:object size:0x4 scope:global align:4 data:4byte
+AUDIO_ARAM_TOP = .sbss:0x80218424; // type:object size:0x4 scope:global align:4 data:4byte
+CARD_SECURITY_BUFFER = .sbss:0x80218428; // type:object size:0x4 scope:global align:4 data:4byte
+init_load_size = .sbss:0x8021842C; // type:object size:0x4 scope:global align:4 data:4byte
+init_load_addr = .sbss:0x80218430; // type:object size:0x4 scope:global align:4 data:4byte
+init_cut_flag = .sbss:0x80218434; // type:object size:0x4 scope:global align:4 data:4byte
+SELECTED_ARAM_SIZE = .sbss:0x80218438; // type:object size:0x4 scope:global align:4 data:4byte
+audioproc_mq_init = .sbss:0x80218440; // type:object size:0x4 scope:global align:4 data:4byte
+intcount = .sbss:0x80218444; // type:object size:0x4 scope:global align:4 data:4byte
+first$150 = .sbss:0x80218448; // type:object size:0x4 scope:local align:4 data:4byte
+init$151 = .sbss:0x8021844C; // type:object size:0x1 scope:local align:1 data:byte
+priority_set = .sbss:0x80218450; // type:object size:0x4 scope:global align:4 data:4byte
+pri = .sbss:0x80218454; // type:object size:0x4 scope:global align:4 data:4byte
+pri2 = .sbss:0x80218458; // type:object size:0x4 scope:global align:4 data:4byte
+pri3 = .sbss:0x8021845C; // type:object size:0x4 scope:global align:4 data:4byte
+neosproc_mq_init = .sbss:0x80218460; // type:object size:0x4 scope:global align:4 data:4byte
+tmp_buf = .sbss:0x80218464; // type:object size:0x4 scope:global align:4 data:4byte
+neos_ready = .sbss:0x80218468; // type:object size:0x4 scope:global align:4 data:4byte
+msgbuf$190 = .sbss:0x8021846C; // type:object size:0x4 scope:local align:4
+cur$193 = .sbss:0x80218470; // type:object size:0x4 scope:local align:4 data:4byte
+init$194 = .sbss:0x80218474; // type:object size:0x1 scope:local align:1 data:byte
+write_buffer = .sbss:0x80218478; // type:object size:0x1 scope:local align:1 data:byte
+read_buffer = .sbss:0x80218479; // type:object size:0x1 scope:local align:1 data:byte
+dspstatus = .sbss:0x8021847A; // type:object size:0x1 scope:local align:1 data:byte
+dac_sync_counter = .sbss:0x8021847C; // type:object size:0x4 scope:global align:4 data:4byte
+cur$266 = .sbss:0x80218480; // type:object size:0x4 scope:local align:4 data:4byte
+init$267 = .sbss:0x80218484; // type:object size:0x1 scope:local align:1 data:byte
+write_buffer = .sbss:0x80218488; // type:object size:0x1 scope:local align:1 data:byte
+read_buffer = .sbss:0x80218489; // type:object size:0x1 scope:local align:1 data:byte
+dspstatus = .sbss:0x8021848A; // type:object size:0x1 scope:local align:1 data:byte
+cur$257 = .sbss:0x8021848C; // type:object size:0x4 scope:local align:4 data:4byte
+init$258 = .sbss:0x80218490; // type:object size:0x1 scope:local align:1 data:byte
+mq_init = .sbss:0x80218498; // type:object size:0x4 scope:global align:4 data:4byte
+buffersize = .sbss:0x8021849C; // type:object size:0x4 scope:global align:4 data:4byte
+buffers = .sbss:0x802184A0; // type:object size:0x4 scope:global align:4 data:4byte
+next_buffersize = .sbss:0x802184A4; // type:object size:0x4 scope:global align:4 data:4byte
+next_buffertop = .sbss:0x802184A8; // type:object size:0x4 scope:global align:4 data:4byte
+next_buffers = .sbss:0x802184AC; // type:object size:0x4 scope:global align:4 data:4byte
+cur_q = .sbss:0x802184B0; // type:object size:0x4 scope:global align:4 data:4byte
+dvdt_sleep = .sbss:0x802184B4; // type:object size:0x8 scope:global align:4
+DVDT_PAUSE_FLAG = .sbss:0x802184BC; // type:object size:0x4 scope:global align:4 data:4byte
+error_callback = .sbss:0x802184C0; // type:object size:0x4 scope:global align:4 data:4byte
+ADVD_BUFFER = .sbss:0x802184C4; // type:object size:0x8 scope:global align:4
+buffer_load = .sbss:0x802184CC; // type:object size:0x4 scope:global align:4 data:4byte
+buffer_full = .sbss:0x802184D0; // type:object size:0x4 scope:global align:4 data:4byte
+arq_index$350 = .sbss:0x802184D4; // type:object size:0x4 scope:local align:4 data:4byte
+init$351 = .sbss:0x802184D8; // type:object size:0x1 scope:local align:1 data:byte
+buffer_full2 = .sbss:0x802184DC; // type:object size:0x4 scope:global align:4 data:4byte
+dvdfile_dics = .sbss:0x802184E0; // type:object size:0x4 scope:global align:4 data:4byte
+JAC_AI_SETTING = .sbss:0x802184E8; // type:object size:0x4 scope:global align:4 data:4byte
+STOP_VELOCONV = .sbss:0x802184F0; // type:object size:0x4 scope:global align:4 data:4byte
+EXGTYPE = .sbss:0x802184F8; // type:object size:0x4 scope:global align:4 data:4byte
+AUDIO_SYSTEM_READY = .sbss:0x80218500; // type:object size:0x4 scope:global align:4 data:4byte
+FASTDMA_BUFFER = .sbss:0x80218504; // type:object size:0x4 scope:global align:4 data:4byte
+use$1616 = .sbss:0x80218508; // type:object size:0x4 scope:local align:4 data:4byte
+init$1617 = .sbss:0x8021850C; // type:object size:0x1 scope:local align:1 data:byte
+worst$431 = .sbss:0x80218510; // type:object size:0x1 scope:local align:1 data:byte
+init$432 = .sbss:0x80218511; // type:object size:0x1 scope:local align:1 data:byte
+begin$483 = .sbss:0x80218512; // type:object size:0x1 scope:local align:1 data:byte
+init$484 = .sbss:0x80218513; // type:object size:0x1 scope:local align:1 data:byte
+get$780 = .sbss:0x80218514; // type:object size:0x4 scope:local align:4 data:4byte
+init$781 = .sbss:0x80218518; // type:object size:0x1 scope:local align:1 data:byte
+oldGetCount$783 = .sbss:0x8021851C; // type:object size:0x4 scope:local align:4 data:4byte
+init$784 = .sbss:0x80218520; // type:object size:0x1 scope:local align:1 data:byte
+NA_VFRAME_CALLBACK = .sbss:0x80218528; // type:object size:0x4 scope:global align:4 data:4byte
+NA_CALLBACK = .sbss:0x8021852C; // type:object size:0x4 scope:global align:4 data:4byte
+NA_GRP_CALLBACK = .sbss:0x80218530; // type:object size:0x4 scope:global align:4 data:4byte
+NA_SOUND_CALLBACK = .sbss:0x80218534; // type:object size:0x4 scope:global align:4 data:4byte
+NA_DACOUT_CALLBACK = .sbss:0x80218538; // type:object size:0x4 scope:global align:4 data:4byte
+first$334 = .sbss:0x80218540; // type:object size:0x4 scope:local align:4 data:4byte
+init$335 = .sbss:0x80218544; // type:object size:0x1 scope:local align:1 data:byte
+TASK_READPTR = .sbss:0x80218548; // type:object size:0x1 scope:global align:1 data:byte
+TASK_WRITEPTR = .sbss:0x80218549; // type:object size:0x1 scope:global align:1 data:byte
+TASK_REMAIN = .sbss:0x8021854A; // type:object size:0x1 scope:global align:1 data:byte
+cur_waits = .sbss:0x80218550; // type:object size:0x4 scope:global align:4 data:4byte
+cur_top = .sbss:0x80218554; // type:object size:0x4 scope:global align:4 data:4byte
+cur_tail = .sbss:0x80218558; // type:object size:0x4 scope:global align:4 data:4byte
+old_time = .sbss:0x80218560; // type:object size:0x4 scope:global align:4 data:4byte
+inited$149 = .sbss:0x80218568; // type:object size:0x4 scope:local align:4 data:4byte
+init$150 = .sbss:0x8021856C; // type:object size:0x1 scope:local align:1 data:byte
+ACTIVE_FATS = .sbss:0x80218570; // type:object size:0x4 scope:global align:4 data:4byte
+USEFAT_TAIL = .sbss:0x80218574; // type:object size:0x4 scope:global align:4 data:4byte
+cmd_once = .sbss:0x80218578; // type:object size:0x8 scope:global align:4
+cmd_stay = .sbss:0x80218580; // type:object size:0x8 scope:global align:4
+global_id = .sbss:0x80218588; // type:object size:0x4 scope:global align:4 data:4byte
+JAM_CALLBACK_FUNC = .sbss:0x80218590; // type:object size:0x4 scope:global align:4 data:4byte
+T_LISTS = .sbss:0x80218594; // type:object size:0x4 scope:global align:4 data:4byte
+SEQ_P = .sbss:0x80218598; // type:object size:0x4 scope:global align:4 data:4byte
+SEQ_CMD = .sbss:0x8021859C; // type:object size:0x1 scope:global align:1 data:byte
+BACK_P = .sbss:0x802185A0; // type:object size:0x4 scope:global align:4 data:4byte
+GET_P = .sbss:0x802185A4; // type:object size:0x4 scope:global align:4 data:4byte
+SEQ_REMAIN = .sbss:0x802185A8; // type:object size:0x4 scope:global align:4 data:4byte
+__GBAReset = .sbss:0x802185B0; // type:object size:0x4 scope:global align:4 data:4byte
+texture_cache_num = .sbss:0x802185B8; // type:object size:0x4 scope:global align:4 data:4byte
+texture_cache_data_entry_num = .sbss:0x802185BC; // type:object size:0x4 scope:global align:4 data:4byte
+AAnear$1922 = .sbss:0x802185C0; // type:object size:0x4 scope:local align:4 data:float
+init$1923 = .sbss:0x802185C4; // type:object size:0x1 scope:local align:1 data:byte
+AAfar$1925 = .sbss:0x802185C8; // type:object size:0x4 scope:local align:4 data:float
+init$1926 = .sbss:0x802185CC; // type:object size:0x1 scope:local align:1 data:byte
+line_width$1933 = .sbss:0x802185CD; // type:object size:0x1 scope:local align:1 data:byte
+init$1934 = .sbss:0x802185CE; // type:object size:0x1 scope:local align:1 data:byte
+tex_offsets$1936 = .sbss:0x802185D0; // type:object size:0x4 scope:local align:4 data:4byte
+init$1937 = .sbss:0x802185D4; // type:object size:0x1 scope:local align:1 data:byte
+last_highlow$2641 = .sbss:0x802185D8; // type:object size:0x4 scope:local align:4 data:4byte
+compare_enable$3259 = .sbss:0x802185DC; // type:object size:0x1 scope:local align:1 data:byte
+init$3260 = .sbss:0x802185DD; // type:object size:0x1 scope:local align:1 data:byte
+compare_func$3262 = .sbss:0x802185E0; // type:object size:0x4 scope:local align:4 data:4byte
+init$3263 = .sbss:0x802185E4; // type:object size:0x1 scope:local align:1 data:byte
+update_enable$3265 = .sbss:0x802185E5; // type:object size:0x1 scope:local align:1 data:byte
+init$3266 = .sbss:0x802185E6; // type:object size:0x1 scope:local align:1 data:byte
+zcomp$3268 = .sbss:0x802185E7; // type:object size:0x1 scope:local align:1 data:byte
+init$3269 = .sbss:0x802185E8; // type:object size:0x1 scope:local align:1 data:byte
+scaleS$3400 = .sbss:0x802185EC; // type:object size:0x4 scope:local align:4 data:float
+init$3401 = .sbss:0x802185F0; // type:object size:0x1 scope:local align:1 data:byte
+scaleT$3403 = .sbss:0x802185F4; // type:object size:0x4 scope:local align:4 data:float
+init$3404 = .sbss:0x802185F8; // type:object size:0x1 scope:local align:1 data:byte
+transS$3406 = .sbss:0x802185FC; // type:object size:0x4 scope:local align:4 data:float
+init$3407 = .sbss:0x80218600; // type:object size:0x1 scope:local align:1 data:byte
+transT$3409 = .sbss:0x80218604; // type:object size:0x4 scope:local align:4 data:float
+init$3410 = .sbss:0x80218608; // type:object size:0x1 scope:local align:1 data:byte
+displayWarning__5emu64 = .sbss:0x80218609; // type:object size:0x1 scope:global align:1 data:byte
+FrameCansel = .sbss:0x8021860A; // type:object size:0x1 scope:global align:1 data:byte
+flag$8033 = .sbss:0x8021860C; // type:object size:0x4 scope:local align:4 data:4byte
+init$8034 = .sbss:0x80218610; // type:object size:0x1 scope:local align:1 data:byte
+print_mutex_initialized = .sbss:0x80218618; // type:object size:0x1 scope:global align:1 data:byte
+__OSReport_MonopolyThread = .sbss:0x8021861C; // type:object size:0x4 scope:global align:4 data:4byte
+__OSReport_disable = .sbss:0x80218620; // type:object size:0x4 scope:global align:4 data:4byte
+this = .sbss:0x80218628; // type:object size:0x4 scope:local align:4 data:4byte
+__gfxprint_default_flags = .sbss:0x80218630; // type:object size:0x1 scope:global align:1 data:byte
+__osMalloc_FreeBlockTest_Enable = .sbss:0x80218638; // type:object size:0x4 scope:global align:4 data:4byte
+arena_lock_msg$299 = .sbss:0x8021863C; // type:object size:0x4 scope:local align:4
+__qrand_itemp = .sbss:0x80218640; // type:object size:0x4 scope:global align:4 data:float
+__osTimeOffset = .sbss:0x80218648; // type:object size:0x8 scope:global align:8 data:4byte
+__osInitialized = .sbss:0x80218650; // type:object size:0x1 scope:global align:1 data:byte
+osShutdown = .sbss:0x80218654; // type:object size:0x4 scope:global align:4 data:4byte
+__osShutdownDisable = .sbss:0x80218658; // type:object size:0x4 scope:global align:4 data:4byte
+__osShutdown = .sbss:0x8021865C; // type:object size:0x4 scope:global align:4 data:4byte
+__osDisableShutdownTime = .sbss:0x80218660; // type:object size:0x8 scope:global align:8 data:4byte
+__osDisableShutdownLevel = .sbss:0x80218668; // type:object size:0x4 scope:global align:4 data:4byte
+__osShutdownTime = .sbss:0x80218670; // type:object size:0x8 scope:global align:8 data:4byte
+last_button$254 = .sbss:0x80218678; // type:object size:0x2 scope:local align:2 data:2byte
+reset_t0$253 = .sbss:0x8021867C; // type:object size:0x4 scope:local align:4 data:4byte
+__osResetSwitchPressed = .sbss:0x80218680; // type:object size:0x1 scope:global align:1 data:byte
+__osResetKeyStep = .sbss:0x80218681; // type:object size:0x1 scope:global align:1 data:byte
+__osContinitialized = .sbss:0x80218688; // type:object size:0x4 scope:global align:4 data:4byte
+__osMaxControllers = .sbss:0x8021868C; // type:object size:0x1 scope:global align:1 data:byte
+rootHeap__9JFWSystem = .sbss:0x80218690; // type:object size:0x4 scope:global align:4 data:4byte
+systemHeap__9JFWSystem = .sbss:0x80218694; // type:object size:0x4 scope:global align:4 data:4byte
+mainThread__9JFWSystem = .sbss:0x80218698; // type:object size:0x4 scope:global align:4 data:4byte
+debugPrint__9JFWSystem = .sbss:0x8021869C; // type:object size:0x4 scope:global align:4 data:4byte
+systemFont__9JFWSystem = .sbss:0x802186A0; // type:object size:0x4 scope:global align:4 data:4byte
+systemConsoleManager__9JFWSystem = .sbss:0x802186A4; // type:object size:0x4 scope:global align:4 data:4byte
+systemConsole__9JFWSystem = .sbss:0x802186A8; // type:object size:0x4 scope:global align:4 data:4byte
+sInitCalled__9JFWSystem = .sbss:0x802186AC; // type:object size:0x1 scope:global align:1 data:byte
+sManager__10JFWDisplay = .sbss:0x802186B0; // type:object size:0x4 scope:global align:4 data:4byte
+prevFrame$2481 = .sbss:0x802186B4; // type:object size:0x4 scope:local align:4 data:4byte
+init$2482 = .sbss:0x802186B8; // type:object size:0x1 scope:local align:1 data:byte
+nextTick$2526 = .sbss:0x802186C0; // type:object size:0x8 scope:local align:8 data:4byte
+init$2527 = .sbss:0x802186C8; // type:object size:0x1 scope:local align:1 data:byte
+nextCount$2534 = .sbss:0x802186CC; // type:object size:0x4 scope:local align:4 data:4byte
+init$2535 = .sbss:0x802186D0; // type:object size:0x1 scope:local align:1 data:byte
+sSystemHeap__7JKRHeap = .sbss:0x802186D8; // type:object size:0x4 scope:global align:4 data:4byte
+sCurrentHeap__7JKRHeap = .sbss:0x802186DC; // type:object size:0x4 scope:global align:4 data:4byte
+sRootHeap__7JKRHeap = .sbss:0x802186E0; // type:object size:0x4 scope:global align:4 data:4byte
+mErrorHandler__7JKRHeap = .sbss:0x802186E4; // type:object size:0x4 scope:global align:4 data:4byte
+mCodeStart__7JKRHeap = .sbss:0x802186E8; // type:object size:0x4 scope:global align:4 data:4byte
+mCodeEnd__7JKRHeap = .sbss:0x802186EC; // type:object size:0x4 scope:global align:4 data:4byte
+mUserRamStart__7JKRHeap = .sbss:0x802186F0; // type:object size:0x4 scope:global align:4 data:4byte
+mUserRamEnd__7JKRHeap = .sbss:0x802186F4; // type:object size:0x4 scope:global align:4 data:4byte
+mMemorySize__7JKRHeap = .sbss:0x802186F8; // type:object size:0x4 scope:global align:4 data:4byte
+whatdo = .sbss:0x80218700; // type:object size:0x4 scope:global align:4 data:4byte
+whatdo2 = .sbss:0x80218704; // type:object size:0x4 scope:global align:4 data:4byte
+DBfoundSize = .sbss:0x80218708; // type:object size:0x4 scope:global align:4 data:4byte
+DBfoundOffset = .sbss:0x8021870C; // type:object size:0x4 scope:global align:4 data:4byte
+DBfoundBlock = .sbss:0x80218710; // type:object size:0x4 scope:global align:4 data:4byte
+DBnewFreeBlock = .sbss:0x80218714; // type:object size:0x4 scope:global align:4 data:4byte
+DBnewUsedBlock = .sbss:0x80218718; // type:object size:0x4 scope:global align:4 data:4byte
+sAramObject__7JKRAram = .sbss:0x80218720; // type:object size:0x4 scope:global align:4 data:4byte
+szpBuf = .sbss:0x80218724; // type:object size:0x4 scope:local align:4 data:4byte
+szpEnd = .sbss:0x80218728; // type:object size:0x4 scope:local align:4 data:4byte
+refBuf = .sbss:0x8021872C; // type:object size:0x4 scope:local align:4 data:4byte
+refEnd = .sbss:0x80218730; // type:object size:0x4 scope:local align:4 data:4byte
+refCurrent = .sbss:0x80218734; // type:object size:0x4 scope:local align:4 data:4byte
+srcOffset = .sbss:0x80218738; // type:object size:0x4 scope:local align:4 data:4byte
+transLeft = .sbss:0x8021873C; // type:object size:0x4 scope:local align:4 data:4byte
+srcLimit = .sbss:0x80218740; // type:object size:0x4 scope:local align:4 data:4byte
+srcAddress = .sbss:0x80218744; // type:object size:0x4 scope:global align:4 data:4byte
+fileOffset = .sbss:0x80218748; // type:object size:0x4 scope:local align:4 data:4byte
+readCount = .sbss:0x8021874C; // type:object size:0x4 scope:local align:4 data:4byte
+maxDest = .sbss:0x80218750; // type:object size:0x4 scope:local align:4 data:4byte
+sAramStreamObject__13JKRAramStream = .sbss:0x80218758; // type:object size:0x4 scope:global align:4 data:4byte
+transBuffer__13JKRAramStream = .sbss:0x8021875C; // type:object size:0x4 scope:global align:4 data:4byte
+transSize__13JKRAramStream = .sbss:0x80218760; // type:object size:0x4 scope:global align:4 data:4byte
+transHeap__13JKRAramStream = .sbss:0x80218764; // type:object size:0x4 scope:global align:4 data:4byte
+sCurrentVolume__13JKRFileLoader = .sbss:0x80218768; // type:object size:0x4 scope:global align:4 data:4byte
+sCurrentDirID__10JKRArchive = .sbss:0x80218770; // type:object size:0x4 scope:global align:4 data:4byte
+szpBuf = .sbss:0x80218778; // type:object size:0x4 scope:local align:4 data:4byte
+szpEnd = .sbss:0x8021877C; // type:object size:0x4 scope:local align:4 data:4byte
+refBuf = .sbss:0x80218780; // type:object size:0x4 scope:local align:4 data:4byte
+refEnd = .sbss:0x80218784; // type:object size:0x4 scope:local align:4 data:4byte
+refCurrent = .sbss:0x80218788; // type:object size:0x4 scope:local align:4 data:4byte
+srcOffset = .sbss:0x8021878C; // type:object size:0x4 scope:local align:4 data:4byte
+transLeft = .sbss:0x80218790; // type:object size:0x4 scope:local align:4 data:4byte
+srcLimit = .sbss:0x80218794; // type:object size:0x4 scope:local align:4 data:4byte
+srcFile = .sbss:0x80218798; // type:object size:0x4 scope:local align:4 data:4byte
+fileOffset = .sbss:0x8021879C; // type:object size:0x4 scope:local align:4 data:4byte
+readCount = .sbss:0x802187A0; // type:object size:0x4 scope:local align:4 data:4byte
+maxDest = .sbss:0x802187A4; // type:object size:0x4 scope:local align:4 data:4byte
+szpBuf = .sbss:0x802187A8; // type:object size:0x4 scope:local align:4 data:4byte
+szpEnd = .sbss:0x802187AC; // type:object size:0x4 scope:local align:4 data:4byte
+refBuf = .sbss:0x802187B0; // type:object size:0x4 scope:local align:4 data:4byte
+refEnd = .sbss:0x802187B4; // type:object size:0x4 scope:local align:4 data:4byte
+refCurrent = .sbss:0x802187B8; // type:object size:0x4 scope:local align:4 data:4byte
+dmaBuf = .sbss:0x802187BC; // type:object size:0x4 scope:global align:4 data:4byte
+dmaEnd = .sbss:0x802187C0; // type:object size:0x4 scope:global align:4 data:4byte
+dmaCurrent = .sbss:0x802187C4; // type:object size:0x4 scope:global align:4 data:4byte
+srcOffset = .sbss:0x802187C8; // type:object size:0x4 scope:local align:4 data:4byte
+transLeft = .sbss:0x802187CC; // type:object size:0x4 scope:local align:4 data:4byte
+srcLimit = .sbss:0x802187D0; // type:object size:0x4 scope:local align:4 data:4byte
+srcFile = .sbss:0x802187D4; // type:object size:0x4 scope:local align:4 data:4byte
+fileOffset = .sbss:0x802187D8; // type:object size:0x4 scope:local align:4 data:4byte
+readCount = .sbss:0x802187DC; // type:object size:0x4 scope:local align:4 data:4byte
+maxDest = .sbss:0x802187E0; // type:object size:0x4 scope:local align:4 data:4byte
+sDecompObject__9JKRDecomp = .sbss:0x802187E8; // type:object size:0x4 scope:global align:4 data:4byte
+sInitiated__12JUTGraphFifo = .sbss:0x802187F0; // type:object size:0x1 scope:global align:1 data:byte
+sCurrentFifo__12JUTGraphFifo = .sbss:0x802187F4; // type:object size:0x4 scope:global align:4 data:4byte
+mGpStatus__12JUTGraphFifo = .sbss:0x802187F8; // type:object size:0x5 scope:global align:4
+sDebugPrint__10JUTDbPrint = .sbss:0x80218800; // type:object size:0x4 scope:global align:4 data:4byte
+mListInitialized__10JUTGamePad = .sbss:0x80218808; // type:object size:0x1 scope:global align:1 data:byte
+mPadAssign__10JUTGamePad = .sbss:0x8021880C; // type:object size:0x4 scope:global align:4 data:byte
+mSuppressPadReset__10JUTGamePad = .sbss:0x80218810; // type:object size:0x4 scope:global align:4 data:4byte
+sAnalogMode__10JUTGamePad = .sbss:0x80218814; // type:object size:0x4 scope:global align:4 data:4byte
+mStatus__Q210JUTGamePad7CRumble = .sbss:0x80218818; // type:object size:0x4 scope:global align:4
+mEnabled__Q210JUTGamePad7CRumble = .sbss:0x8021881C; // type:object size:0x4 scope:global align:4 data:4byte
+sCallback__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218820; // type:object size:0x4 scope:global align:4 data:4byte
+sCallbackArg__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218824; // type:object size:0x4 scope:global align:4 data:4byte
+sThreshold__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218828; // type:object size:0x8 scope:global align:8 data:4byte
+sResetSwitchPushing__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218830; // type:object size:0x1 scope:global align:1 data:byte
+sResetOccurred__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218831; // type:object size:0x1 scope:global align:1 data:byte
+sResetOccurredPort__Q210JUTGamePad13C3ButtonReset = .sbss:0x80218834; // type:object size:0x4 scope:global align:4 data:4byte
+sErrorManager__12JUTException = .sbss:0x80218838; // type:object size:0x4 scope:global align:4 data:4byte
+sPreUserCallback__12JUTException = .sbss:0x8021883C; // type:object size:0x4 scope:global align:4 data:4byte
+sPostUserCallback__12JUTException = .sbss:0x80218840; // type:object size:0x4 scope:global align:4 data:4byte
+sConsoleBuffer__12JUTException = .sbss:0x80218844; // type:object size:0x4 scope:global align:4 data:4byte
+sConsoleBufferSize__12JUTException = .sbss:0x80218848; // type:object size:0x4 scope:global align:4 data:4byte
+sConsole__12JUTException = .sbss:0x8021884C; // type:object size:0x4 scope:global align:4 data:4byte
+msr__12JUTException = .sbss:0x80218850; // type:object size:0x4 scope:global align:4 data:4byte
+fpscr__12JUTException = .sbss:0x80218854; // type:object size:0x4 scope:global align:4 data:4byte
+sDirectPrint__14JUTDirectPrint = .sbss:0x80218858; // type:object size:0x4 scope:global align:4 data:4byte
+sMessageLife__Q212JUTAssertion23@unnamed@JUTAssert_cpp@ = .sbss:0x80218860; // type:object size:0x4 scope:global align:4 data:4byte
+sManager__8JUTVideo = .sbss:0x80218868; // type:object size:0x4 scope:global align:4 data:4byte
+sVideoLastTick__8JUTVideo = .sbss:0x8021886C; // type:object size:0x4 scope:global align:4 data:4byte
+sVideoInterval__8JUTVideo = .sbss:0x80218870; // type:object size:0x4 scope:global align:4 data:4byte
+sDrawWaiting = .sbss:0x80218874; // type:object size:0x1 scope:global align:1 data:byte
+frameBuffer$2132 = .sbss:0x80218878; // type:object size:0x4 scope:local align:4 data:4byte
+init$2133 = .sbss:0x8021887C; // type:object size:0x1 scope:local align:1 data:byte
+sManager__6JUTXfb = .sbss:0x80218880; // type:object size:0x4 scope:global align:4 data:4byte
+sManager__10JUTProcBar = .sbss:0x80218888; // type:object size:0x4 scope:global align:4 data:4byte
+cnt$2246 = .sbss:0x8021888C; // type:object size:0x4 scope:local align:4 data:4byte
+init$2247 = .sbss:0x80218890; // type:object size:0x1 scope:local align:1 data:byte
+cntUser$2295 = .sbss:0x80218894; // type:object size:0x4 scope:local align:4 data:4byte
+init$2296 = .sbss:0x80218898; // type:object size:0x1 scope:local align:1 data:byte
+sManager__17JUTConsoleManager = .sbss:0x802188A0; // type:object size:0x4 scope:global align:4 data:4byte
+sReportConsole = .sbss:0x802188A4; // type:object size:0x4 scope:global align:4 data:4byte
+sWarningConsole = .sbss:0x802188A8; // type:object size:0x4 scope:global align:4 data:4byte
+BootInfo = .sbss:0x802188B0; // type:object size:0x4 scope:local align:4 data:4byte
+BI2DebugFlag = .sbss:0x802188B4; // type:object size:0x4 scope:global align:4 data:4byte
+BI2DebugFlagHolder = .sbss:0x802188B8; // type:object size:0x4 scope:global align:4 data:4byte
+__OSIsGcam = .sbss:0x802188BC; // type:object size:0x4 scope:global align:4 data:4byte
+AreWeInitialized = .sbss:0x802188C0; // type:object size:0x4 scope:global align:4 data:4byte
+OSExceptionTable = .sbss:0x802188C4; // type:object size:0x4 scope:global align:4 data:4byte
+__OSSavedRegionEnd = .sbss:0x802188C8; // type:object size:0x4 scope:global align:4 data:4byte
+__OSSavedRegionStart = .sbss:0x802188CC; // type:object size:0x4 scope:global align:4 data:4byte
+__OSInIPL = .sbss:0x802188D0; // type:object size:0x4 scope:global align:4 data:4byte
+__OSStartTime = .sbss:0x802188D8; // type:object size:0x8 scope:global align:8 data:4byte
+AlarmQueue = .sbss:0x802188E0; // type:object size:0x8 scope:global align:4 data:4byte
+HeapArray = .sbss:0x802188E8; // type:object size:0x4 scope:global align:4 data:4byte
+NumHeaps = .sbss:0x802188EC; // type:object size:0x4 scope:global align:4 data:4byte
+ArenaStart = .sbss:0x802188F0; // type:object size:0x4 scope:global align:4 data:4byte
+ArenaEnd = .sbss:0x802188F4; // type:object size:0x4 scope:global align:4 data:4byte
+__OSArenaHi = .sbss:0x802188F8; // type:object size:0x4 scope:global align:4 data:4byte
+InterruptHandlerTable = .sbss:0x80218900; // type:object size:0x4 scope:global align:4 data:4byte
+__OSLastInterruptSrr0 = .sbss:0x80218904; // type:object size:0x4 scope:global align:4 data:4byte
+__OSLastInterrupt = .sbss:0x80218908; // type:object size:0x2 scope:global align:2 data:2byte
+__OSLastInterruptTime = .sbss:0x80218910; // type:object size:0x8 scope:global align:8 data:4byte
+SaveStart = .sbss:0x80218918; // type:object size:0x4 scope:global align:4 data:4byte
+SaveEnd = .sbss:0x8021891C; // type:object size:0x4 scope:global align:4 data:4byte
+Prepared = .sbss:0x80218920; // type:object size:0x4 scope:global align:4 data:4byte
+ResetFunctionQueue = .sbss:0x80218928; // type:object size:0x8 scope:global align:4 data:4byte
+ResetCallback = .sbss:0x80218930; // type:object size:0x4 scope:global align:4 data:4byte
+Down = .sbss:0x80218934; // type:object size:0x4 scope:global align:4 data:4byte
+LastState = .sbss:0x80218938; // type:object size:0x4 scope:local align:4 data:4byte
+HoldUp = .sbss:0x80218940; // type:object size:0x8 scope:global align:8 data:4byte
+HoldDown = .sbss:0x80218948; // type:object size:0x8 scope:global align:8 data:4byte
+RunQueueBits = .sbss:0x80218950; // type:object size:0x4 scope:global align:4 data:4byte
+RunQueueHint = .sbss:0x80218954; // type:object size:0x4 scope:global align:4 data:4byte
+Reschedule = .sbss:0x80218958; // type:object size:0x4 scope:global align:4 data:4byte
+Chan = .sbss:0x80218960; // type:object size:0x4 scope:global align:4 data:4byte
+Dev = .sbss:0x80218964; // type:object size:0x4 scope:global align:4 data:4byte
+Enabled = .sbss:0x80218968; // type:object size:0x4 scope:global align:4 data:4byte
+BarnacleEnabled = .sbss:0x8021896C; // type:object size:0x4 scope:global align:4 data:4byte
+cmdTypeAndStatus$77 = .sbss:0x80218970; // type:object size:0x4 scope:local align:4
+cmdTypeAndStatus$371 = .sbss:0x80218974; // type:object size:0x4 scope:local align:4
+__PADFixBits = .sbss:0x80218978; // type:object size:0x4 scope:global align:4 data:4byte
+SamplingRate = .sbss:0x80218980; // type:object size:0x4 scope:global align:4 data:4byte
+__DBInterface = .sbss:0x80218988; // type:object size:0x4 scope:global align:4 data:4byte
+DBVerbose = .sbss:0x8021898C; // type:object size:0x4 scope:global align:4 data:4byte
+StopAtNextInt = .sbss:0x80218990; // type:object size:0x4 scope:global align:4 data:4byte
+LastLength = .sbss:0x80218994; // type:object size:0x4 scope:global align:4 data:4byte
+Callback = .sbss:0x80218998; // type:object size:0x4 scope:local align:4 data:4byte
+ResetCoverCallback = .sbss:0x8021899C; // type:object size:0x4 scope:global align:4 data:4byte
+LastResetEnd = .sbss:0x802189A0; // type:object size:0x8 scope:global align:8 data:4byte
+ResetOccurred = .sbss:0x802189A8; // type:object size:0x4 scope:global align:4 data:4byte
+WaitingCoverClose = .sbss:0x802189AC; // type:object size:0x4 scope:global align:4 data:4byte
+Breaking = .sbss:0x802189B0; // type:object size:0x4 scope:global align:4 data:4byte
+WorkAroundType = .sbss:0x802189B4; // type:object size:0x4 scope:global align:4 data:4byte
+WorkAroundSeekLocation = .sbss:0x802189B8; // type:object size:0x4 scope:global align:4 data:4byte
+LastReadFinished = .sbss:0x802189C0; // type:object size:0x8 scope:global align:8 data:4byte
+LastReadIssued = .sbss:0x802189C8; // type:object size:0x8 scope:global align:8 data:4byte
+LastCommandWasRead = .sbss:0x802189D0; // type:object size:0x4 scope:global align:4 data:4byte
+NextCommandNumber = .sbss:0x802189D4; // type:object size:0x4 scope:global align:4 data:4byte
+BootInfo = .sbss:0x802189D8; // type:object size:0x4 scope:local align:4 data:4byte
+FstStart = .sbss:0x802189DC; // type:object size:0x4 scope:global align:4 data:4byte
+FstStringStart = .sbss:0x802189E0; // type:object size:0x4 scope:global align:4 data:4byte
+MaxEntryNum = .sbss:0x802189E4; // type:object size:0x4 scope:global align:4 data:4byte
+currentDirectory = .sbss:0x802189E8; // type:object size:0x4 scope:global align:4 data:4byte
+__DVDLongFileNameFlag = .sbss:0x802189EC; // type:object size:0x4 scope:global align:4 data:4byte
+__DVDThreadQueue = .sbss:0x802189F0; // type:object size:0x8 scope:global align:4
+executing = .sbss:0x802189F8; // type:object size:0x4 scope:global align:4 data:4byte
+currID = .sbss:0x802189FC; // type:object size:0x4 scope:global align:4 data:4byte
+bootInfo = .sbss:0x80218A00; // type:object size:0x4 scope:global align:4 data:4byte
+PauseFlag = .sbss:0x80218A04; // type:object size:0x4 scope:global align:4 data:4byte
+PausingFlag = .sbss:0x80218A08; // type:object size:0x4 scope:global align:4 data:4byte
+AutoFinishing = .sbss:0x80218A0C; // type:object size:0x4 scope:global align:4 data:4byte
+FatalErrorFlag = .sbss:0x80218A10; // type:object size:0x4 scope:global align:4 data:4byte
+CurrCommand = .sbss:0x80218A14; // type:object size:0x4 scope:global align:4 data:4byte
+Canceling = .sbss:0x80218A18; // type:object size:0x4 scope:global align:4 data:4byte
+CancelCallback = .sbss:0x80218A1C; // type:object size:0x4 scope:global align:4 data:4byte
+ResumeFromHere = .sbss:0x80218A20; // type:object size:0x4 scope:global align:4 data:4byte
+CancelLastError = .sbss:0x80218A24; // type:object size:0x4 scope:global align:4 data:4byte
+LastError = .sbss:0x80218A28; // type:object size:0x4 scope:global align:4 data:4byte
+NumInternalRetry = .sbss:0x80218A2C; // type:object size:0x4 scope:global align:4 data:4byte
+ResetRequired = .sbss:0x80218A30; // type:object size:0x4 scope:global align:4 data:4byte
+FirstTimeInBootrom = .sbss:0x80218A34; // type:object size:0x4 scope:global align:4 data:4byte
+DVDInitialized = .sbss:0x80218A38; // type:object size:0x4 scope:global align:4 data:4byte
+LastState = .sbss:0x80218A3C; // type:object size:0x4 scope:local align:4 data:4byte
+status = .sbss:0x80218A40; // type:object size:0x4 scope:global align:4 data:4byte
+bb2 = .sbss:0x80218A44; // type:object size:0x4 scope:global align:4 data:4byte
+idTmp = .sbss:0x80218A48; // type:object size:0x4 scope:global align:4 data:4byte
+retraceCount = .sbss:0x80218A50; // type:object size:0x4 scope:global align:4 data:4byte
+flushFlag = .sbss:0x80218A54; // type:object size:0x4 scope:global align:4 data:4byte
+retraceQueue = .sbss:0x80218A58; // type:object size:0x8 scope:global align:4
+PreCB = .sbss:0x80218A60; // type:object size:0x4 scope:global align:4 data:4byte
+PostCB = .sbss:0x80218A64; // type:object size:0x4 scope:global align:4 data:4byte
+encoderType = .sbss:0x80218A68; // type:object size:0x4 scope:global align:4 data:4byte
+displayOffsetH = .sbss:0x80218A6C; // type:object size:0x2 scope:global align:2 data:2byte
+displayOffsetV = .sbss:0x80218A6E; // type:object size:0x2 scope:global align:2 data:2byte
+changeMode = .sbss:0x80218A70; // type:object size:0x4 scope:global align:4 data:4byte
+changed = .sbss:0x80218A78; // type:object size:0x8 scope:global align:8 data:4byte
+shdwChangeMode = .sbss:0x80218A80; // type:object size:0x4 scope:global align:4 data:4byte
+shdwChanged = .sbss:0x80218A88; // type:object size:0x8 scope:global align:8 data:4byte
+CurrTiming = .sbss:0x80218A90; // type:object size:0x4 scope:global align:4 data:4byte
+CurrTvMode = .sbss:0x80218A94; // type:object size:0x4 scope:global align:4 data:4byte
+FBSet = .sbss:0x80218A98; // type:object size:0x4 scope:global align:4 data:4byte
+message$332 = .sbss:0x80218A9C; // type:object size:0x4 scope:local align:4 data:4byte
+Initialized = .sbss:0x80218AA0; // type:object size:0x4 scope:global align:4 data:4byte
+EnabledBits = .sbss:0x80218AA4; // type:object size:0x4 scope:global align:4 data:4byte
+ResettingBits = .sbss:0x80218AA8; // type:object size:0x4 scope:global align:4 data:4byte
+RecalibrateBits = .sbss:0x80218AAC; // type:object size:0x4 scope:global align:4 data:4byte
+WaitingBits = .sbss:0x80218AB0; // type:object size:0x4 scope:global align:4 data:4byte
+CheckingBits = .sbss:0x80218AB4; // type:object size:0x4 scope:global align:4 data:4byte
+PendingBits = .sbss:0x80218AB8; // type:object size:0x4 scope:global align:4 data:4byte
+SamplingCallback = .sbss:0x80218ABC; // type:object size:0x4 scope:global align:4 data:4byte
+recalibrated$396 = .sbss:0x80218AC0; // type:object size:0x4 scope:local align:4 data:4byte
+__PADSpec = .sbss:0x80218AC4; // type:object size:0x4 scope:global align:4 data:4byte
+__AIS_Callback = .sbss:0x80218AC8; // type:object size:0x4 scope:global align:4 data:4byte
+__AID_Callback = .sbss:0x80218ACC; // type:object size:0x4 scope:global align:4 data:4byte
+__CallbackStack = .sbss:0x80218AD0; // type:object size:0x4 scope:global align:4 data:4byte
+__OldStack = .sbss:0x80218AD4; // type:object size:0x4 scope:global align:4 data:4byte
+__AI_init_flag = .sbss:0x80218AD8; // type:object size:0x4 scope:global align:4 data:4byte
+bound_32KHz = .sbss:0x80218AE0; // type:object size:0x8 scope:global align:8 data:4byte
+bound_48KHz = .sbss:0x80218AE8; // type:object size:0x8 scope:global align:8 data:4byte
+min_wait = .sbss:0x80218AF0; // type:object size:0x8 scope:global align:8 data:4byte
+max_wait = .sbss:0x80218AF8; // type:object size:0x8 scope:global align:8 data:4byte
+buffer = .sbss:0x80218B00; // type:object size:0x8 scope:global align:8 data:4byte
+__AR_Callback = .sbss:0x80218B08; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_Size = .sbss:0x80218B0C; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_InternalSize = .sbss:0x80218B10; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_ExpansionSize = .sbss:0x80218B14; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_StackPointer = .sbss:0x80218B18; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_FreeBlocks = .sbss:0x80218B1C; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_BlockLength = .sbss:0x80218B20; // type:object size:0x4 scope:global align:4 data:4byte
+__AR_init_flag = .sbss:0x80218B24; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestQueueHi = .sbss:0x80218B28; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestTailHi = .sbss:0x80218B2C; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestQueueLo = .sbss:0x80218B30; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestTailLo = .sbss:0x80218B34; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestPendingHi = .sbss:0x80218B38; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQRequestPendingLo = .sbss:0x80218B3C; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQCallbackHi = .sbss:0x80218B40; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQCallbackLo = .sbss:0x80218B44; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQChunkSize = .sbss:0x80218B48; // type:object size:0x4 scope:global align:4 data:4byte
+__ARQ_init_flag = .sbss:0x80218B4C; // type:object size:0x4 scope:global align:4 data:4byte
+__piReg = .sbss:0x80218B50; // type:object size:0x4 scope:global align:4 data:4byte
+__cpReg = .sbss:0x80218B54; // type:object size:0x4 scope:global align:4 data:4byte
+__peReg = .sbss:0x80218B58; // type:object size:0x4 scope:global align:4 data:4byte
+__memReg = .sbss:0x80218B5C; // type:object size:0x4 scope:global align:4 data:4byte
+CPUFifo = .sbss:0x80218B60; // type:object size:0x4 scope:global align:4 data:4byte
+GPFifo = .sbss:0x80218B64; // type:object size:0x4 scope:global align:4 data:4byte
+__GXCurrentThread = .sbss:0x80218B68; // type:object size:0x4 scope:global align:4 data:4byte
+CPGPLinked = .sbss:0x80218B6C; // type:object size:0x1 scope:global align:1 data:byte
+GXOverflowSuspendInProgress = .sbss:0x80218B70; // type:object size:0x4 scope:global align:4 data:4byte
+BreakPointCB = .sbss:0x80218B74; // type:object size:0x4 scope:global align:4 data:4byte
+__GXOverflowCount = .sbss:0x80218B78; // type:object size:0x4 scope:global align:4 data:4byte
+TokenCB = .sbss:0x80218B80; // type:object size:0x4 scope:global align:4 data:4byte
+DrawDoneCB = .sbss:0x80218B84; // type:object size:0x4 scope:global align:4 data:4byte
+DrawDone = .sbss:0x80218B88; // type:object size:0x1 scope:global align:1 data:byte
+FinishQueue = .sbss:0x80218B8C; // type:object size:0x8 scope:global align:4
+OldCPUFifo = .sbss:0x80218B98; // type:object size:0x4 scope:global align:4 data:4byte
+__global_destructor_chain = .sbss:0x80218BA0; // type:object size:0x4 scope:global align:4 data:4byte
+__aborting = .sbss:0x80218BA8; // type:object size:0x4 scope:global align:4 data:4byte
+__atexit_curr_func = .sbss:0x80218BAC; // type:object size:0x4 scope:global align:4 data:4byte
+__stdio_exit = .sbss:0x80218BB0; // type:object size:0x4 scope:global align:4 data:4byte
+__console_exit = .sbss:0x80218BB4; // type:object size:0x4 scope:global align:4 data:4byte
+errno = .sbss:0x80218BB8; // type:object size:0x4 scope:global align:4 data:4byte
+initialized$16 = .sbss:0x80218BC0; // type:object size:0x4 scope:local align:4 data:4byte
+MTRCallback = .sbss:0x80218BC8; // type:object size:0x4 scope:global align:4 data:4byte
+DBGCallback = .sbss:0x80218BCC; // type:object size:0x4 scope:global align:4 data:4byte
+SendMailData = .sbss:0x80218BD0; // type:object size:0x4 scope:global align:4 data:4byte
+RecvDataLeng = .sbss:0x80218BD4; // type:object size:0x4 scope:global align:4 data:4byte
+pEXIInputFlag = .sbss:0x80218BD8; // type:object size:0x4 scope:global align:4 data:4byte
+EXIInputFlag = .sbss:0x80218BDC; // type:object size:0x1 scope:global align:1 data:byte
+@191 = .sdata2:0x80218BE0; // type:object size:0x4 scope:local align:4 data:float
+@192 = .sdata2:0x80218BE4; // type:object size:0x4 scope:local align:4 data:float
+@193 = .sdata2:0x80218BE8; // type:object size:0x4 scope:local align:4 data:float
+@195 = .sdata2:0x80218BF0; // type:object size:0x8 scope:local align:8 data:double
+@200 = .sdata2:0x80218BF8; // type:object size:0x4 scope:local align:4 data:float
+@206 = .sdata2:0x80218BFC; // type:object size:0x4 scope:local align:4 data:float
+@504 = .sdata2:0x80218C00; // type:object size:0x4 scope:local align:4 data:float
+@505 = .sdata2:0x80218C04; // type:object size:0x4 scope:local align:4 data:float
+@506 = .sdata2:0x80218C08; // type:object size:0x4 scope:local align:4 data:float
+@507 = .sdata2:0x80218C10; // type:object size:0x8 scope:local align:8 data:double
+@508 = .sdata2:0x80218C18; // type:object size:0x4 scope:local align:4 data:float
+@693 = .sdata2:0x80218C1C; // type:object size:0x4 scope:local align:4 data:float
+@789 = .sdata2:0x80218C20; // type:object size:0x4 scope:local align:4 data:float
+@790 = .sdata2:0x80218C24; // type:object size:0x4 scope:local align:4 data:float
+@791 = .sdata2:0x80218C28; // type:object size:0x4 scope:local align:4 data:float
+@792 = .sdata2:0x80218C2C; // type:object size:0x4 scope:local align:4 data:float
+@793 = .sdata2:0x80218C30; // type:object size:0x4 scope:local align:4 data:float
+@1000 = .sdata2:0x80218C34; // type:object size:0x4 scope:local align:4 data:float
+@1001 = .sdata2:0x80218C38; // type:object size:0x4 scope:local align:4 data:float
+@1316 = .sdata2:0x80218C3C; // type:object size:0x4 scope:local align:4 data:float
+@1317 = .sdata2:0x80218C40; // type:object size:0x4 scope:local align:4 data:float
+@1318 = .sdata2:0x80218C44; // type:object size:0x4 scope:local align:4 data:float
+@1319 = .sdata2:0x80218C48; // type:object size:0x4 scope:local align:4 data:float
+@1320 = .sdata2:0x80218C50; // type:object size:0x8 scope:local align:8 data:double
+@1321 = .sdata2:0x80218C58; // type:object size:0x4 scope:local align:4 data:float
+sou_ls_stack_init = .sdata2:0x80218C60; // type:object size:0x8 scope:global align:1
+sou_sys_lev_init = .sdata2:0x80218C68; // type:object size:0x3 scope:global align:1
+sou_room_ins_init = .sdata2:0x80218C6C; // type:object size:0x8 scope:global align:4
+@290 = .sdata2:0x80218C74; // type:object size:0x4 scope:local align:4 data:float
+@291 = .sdata2:0x80218C78; // type:object size:0x4 scope:local align:4 data:float
+@292 = .sdata2:0x80218C7C; // type:object size:0x4 scope:local align:4 data:float
+@345 = .sdata2:0x80218C80; // type:object size:0x4 scope:local align:4 data:float
+@358 = .sdata2:0x80218C84; // type:object size:0x4 scope:local align:4 data:float
+@359 = .sdata2:0x80218C88; // type:object size:0x4 scope:local align:4 data:float
+@361 = .sdata2:0x80218C90; // type:object size:0x8 scope:local align:8 data:double
+@386 = .sdata2:0x80218C98; // type:object size:0x4 scope:local align:4 data:float
+@387 = .sdata2:0x80218C9C; // type:object size:0x4 scope:local align:4 data:float
+@396 = .sdata2:0x80218CA0; // type:object size:0x4 scope:local align:4 data:float
+@397 = .sdata2:0x80218CA4; // type:object size:0x4 scope:local align:4 data:float
+@409 = .sdata2:0x80218CA8; // type:object size:0x4 scope:local align:4 data:float
+@410 = .sdata2:0x80218CAC; // type:object size:0x4 scope:local align:4 data:float
+@610 = .sdata2:0x80218CB0; // type:object size:0x4 scope:local align:4 data:float
+@885 = .sdata2:0x80218CB8; // type:object size:0x8 scope:local align:8 data:double
+@1034 = .sdata2:0x80218CC0; // type:object size:0x4 scope:local align:4 data:float
+@1035 = .sdata2:0x80218CC4; // type:object size:0x4 scope:local align:4 data:float
+@1187 = .sdata2:0x80218CC8; // type:object size:0x4 scope:local align:4 data:float
+@1205 = .sdata2:0x80218CCC; // type:object size:0x4 scope:local align:4 data:float
+@1206 = .sdata2:0x80218CD0; // type:object size:0x4 scope:local align:4 data:float
+@1207 = .sdata2:0x80218CD4; // type:object size:0x4 scope:local align:4 data:float
+@1215 = .sdata2:0x80218CD8; // type:object size:0x4 scope:local align:4 data:float
+@1227 = .sdata2:0x80218CDC; // type:object size:0x4 scope:local align:4 data:float
+@1664 = .sdata2:0x80218CE0; // type:object size:0x4 scope:local align:4 data:float
+@1665 = .sdata2:0x80218CE4; // type:object size:0x4 scope:local align:4 data:float
+@1666 = .sdata2:0x80218CE8; // type:object size:0x4 scope:local align:4 data:float
+@1667 = .sdata2:0x80218CEC; // type:object size:0x4 scope:local align:4 data:float
+@1668 = .sdata2:0x80218CF0; // type:object size:0x4 scope:local align:4 data:float
+@1669 = .sdata2:0x80218CF4; // type:object size:0x4 scope:local align:4 data:float
+@1670 = .sdata2:0x80218CF8; // type:object size:0x4 scope:local align:4 data:float
+@1671 = .sdata2:0x80218CFC; // type:object size:0x4 scope:local align:4 data:float
+@1672 = .sdata2:0x80218D00; // type:object size:0x4 scope:local align:4 data:float
+@1673 = .sdata2:0x80218D04; // type:object size:0x4 scope:local align:4 data:float
+@1674 = .sdata2:0x80218D08; // type:object size:0x4 scope:local align:4 data:float
+@1675 = .sdata2:0x80218D0C; // type:object size:0x4 scope:local align:4 data:float
+@1676 = .sdata2:0x80218D10; // type:object size:0x4 scope:local align:4 data:float
+@1677 = .sdata2:0x80218D14; // type:object size:0x4 scope:local align:4 data:float
+@1678 = .sdata2:0x80218D18; // type:object size:0x4 scope:local align:4 data:float
+@1825 = .sdata2:0x80218D1C; // type:object size:0x4 scope:local align:4 data:float
+@1839 = .sdata2:0x80218D20; // type:object size:0x4 scope:local align:4 data:float
+@1877 = .sdata2:0x80218D24; // type:object size:0x4 scope:local align:4 data:float
+@1966 = .sdata2:0x80218D28; // type:object size:0x4 scope:local align:4 data:float
+@1967 = .sdata2:0x80218D2C; // type:object size:0x4 scope:local align:4 data:float
+@2017 = .sdata2:0x80218D30; // type:object size:0x4 scope:local align:4 data:float
+@2018 = .sdata2:0x80218D34; // type:object size:0x4 scope:local align:4 data:float
+@2093 = .sdata2:0x80218D38; // type:object size:0x4 scope:local align:4 data:float
+@2094 = .sdata2:0x80218D3C; // type:object size:0x4 scope:local align:4 data:float
+@2095 = .sdata2:0x80218D40; // type:object size:0x4 scope:local align:4 data:float
+@2096 = .sdata2:0x80218D44; // type:object size:0x4 scope:local align:4 data:float
+@2333 = .sdata2:0x80218D48; // type:object size:0x4 scope:local align:4 data:float
+@2334 = .sdata2:0x80218D4C; // type:object size:0x4 scope:local align:4 data:float
+@2335 = .sdata2:0x80218D50; // type:object size:0x4 scope:local align:4 data:float
+@2336 = .sdata2:0x80218D54; // type:object size:0x4 scope:local align:4 data:float
+@184 = .sdata2:0x80218D58; // type:object size:0x4 scope:local align:4 data:float
+@238 = .sdata2:0x80218D5C; // type:object size:0x4 scope:local align:4 data:float
+@274 = .sdata2:0x80218D60; // type:object size:0x4 scope:local align:4 data:float
+@275 = .sdata2:0x80218D64; // type:object size:0x4 scope:local align:4 data:float
+@276 = .sdata2:0x80218D68; // type:object size:0x4 scope:local align:4 data:float
+@278 = .sdata2:0x80218D70; // type:object size:0x8 scope:local align:8 data:double
+@184 = .sdata2:0x80218D78; // type:object size:0x4 scope:local align:4 data:float
+@185 = .sdata2:0x80218D7C; // type:object size:0x4 scope:local align:4 data:float
+@187 = .sdata2:0x80218D80; // type:object size:0x8 scope:local align:8 data:double
+@178 = .sdata2:0x80218D88; // type:object size:0x4 scope:local align:4 data:float
+@180 = .sdata2:0x80218D90; // type:object size:0x8 scope:local align:8 data:double
+@274 = .sdata2:0x80218D98; // type:object size:0x8 scope:local align:8 data:double
+@432 = .sdata2:0x80218DA0; // type:object size:0x8 scope:local align:8 data:double
+@327 = .sdata2:0x80218DA8; // type:object size:0x7 scope:local align:4 data:string
+@328 = .sdata2:0x80218DB0; // type:object size:0x7 scope:local align:4 data:string
+@194 = .sdata2:0x80218DB8; // type:object size:0x8 scope:local align:4 data:string
+@97 = .sdata2:0x80218DC0; // type:object size:0x8 scope:local align:8 data:double
+@175 = .sdata2:0x80218DC8; // type:object size:0x4 scope:local align:4 data:float
+@928 = .sdata2:0x80218DD0; // type:object size:0x4 scope:local align:4 data:float
+@929 = .sdata2:0x80218DD4; // type:object size:0x4 scope:local align:4 data:float
+@930 = .sdata2:0x80218DD8; // type:object size:0x4 scope:local align:4 data:float
+@931 = .sdata2:0x80218DDC; // type:object size:0x4 scope:local align:4 data:float
+@933 = .sdata2:0x80218DE0; // type:object size:0x8 scope:local align:8 data:double
+@935 = .sdata2:0x80218DE8; // type:object size:0x8 scope:local align:8 data:double
+@168 = .sdata2:0x80218DF0; // type:object size:0x4 scope:local align:4 data:float
+@194 = .sdata2:0x80218DF4; // type:object size:0x4 scope:local align:4 data:float
+@195 = .sdata2:0x80218DF8; // type:object size:0x4 scope:local align:4 data:float
+@196 = .sdata2:0x80218DFC; // type:object size:0x4 scope:local align:4 data:float
+@197 = .sdata2:0x80218E00; // type:object size:0x4 scope:local align:4 data:float
+@198 = .sdata2:0x80218E04; // type:object size:0x4 scope:local align:4 data:float
+@199 = .sdata2:0x80218E08; // type:object size:0x4 scope:local align:4 data:float
+@201 = .sdata2:0x80218E10; // type:object size:0x8 scope:local align:8 data:double
+@955 = .sdata2:0x80218E18; // type:object size:0x4 scope:local align:4 data:float
+@956 = .sdata2:0x80218E1C; // type:object size:0x4 scope:local align:4 data:float
+@957 = .sdata2:0x80218E20; // type:object size:0x4 scope:local align:4 data:float
+@958 = .sdata2:0x80218E24; // type:object size:0x4 scope:local align:4 data:float
+@959 = .sdata2:0x80218E28; // type:object size:0x8 scope:local align:8 data:double
+@966 = .sdata2:0x80218E30; // type:object size:0x8 scope:local align:8 data:double
+@998 = .sdata2:0x80218E38; // type:object size:0x4 scope:local align:4 data:float
+@1269 = .sdata2:0x80218E3C; // type:object size:0x7 scope:local align:4 data:string
+@382 = .sdata2:0x80218E48; // type:object size:0x8 scope:local align:8 data:double
+@389 = .sdata2:0x80218E50; // type:object size:0x4 scope:local align:4 data:float
+@621 = .sdata2:0x80218E54; // type:object size:0x4 scope:local align:4 data:float
+@622 = .sdata2:0x80218E58; // type:object size:0x4 scope:local align:4 data:float
+@623 = .sdata2:0x80218E5C; // type:object size:0x4 scope:local align:4 data:float
+@226 = .sdata2:0x80218E60; // type:object size:0x4 scope:local align:4 data:float
+@227 = .sdata2:0x80218E64; // type:object size:0x4 scope:local align:4 data:float
+@228 = .sdata2:0x80218E68; // type:object size:0x4 scope:local align:4 data:float
+@229 = .sdata2:0x80218E6C; // type:object size:0x4 scope:local align:4 data:float
+@250 = .sdata2:0x80218E70; // type:object size:0x4 scope:local align:4 data:float
+@251 = .sdata2:0x80218E74; // type:object size:0x4 scope:local align:4 data:float
+@252 = .sdata2:0x80218E78; // type:object size:0x4 scope:local align:4 data:float
+@253 = .sdata2:0x80218E7C; // type:object size:0x4 scope:local align:4 data:float
+@254 = .sdata2:0x80218E80; // type:object size:0x4 scope:local align:4 data:float
+@561 = .sdata2:0x80218E84; // type:object size:0x4 scope:local align:4 data:float
+@563 = .sdata2:0x80218E88; // type:object size:0x8 scope:local align:8 data:double
+@703 = .sdata2:0x80218E90; // type:object size:0x4 scope:local align:4 data:float
+@209 = .sdata2:0x80218E98; // type:object size:0x8 scope:local align:8 data:double
+@236 = .sdata2:0x80218EA0; // type:object size:0x4 scope:local align:4 data:float
+@237 = .sdata2:0x80218EA4; // type:object size:0x4 scope:local align:4 data:float
+@281 = .sdata2:0x80218EA8; // type:object size:0x4 scope:local align:4 data:float
+@282 = .sdata2:0x80218EAC; // type:object size:0x4 scope:local align:4 data:float
+@283 = .sdata2:0x80218EB0; // type:object size:0x4 scope:local align:4 data:float
+@285 = .sdata2:0x80218EB8; // type:object size:0x8 scope:local align:8 data:double
+@373 = .sdata2:0x80218EC0; // type:object size:0x4 scope:local align:4 data:float
+@374 = .sdata2:0x80218EC4; // type:object size:0x4 scope:local align:4 data:float
+@227 = .sdata2:0x80218EC8; // type:object size:0x4 scope:local align:4 data:float
+@244 = .sdata2:0x80218ECC; // type:object size:0x4 scope:local align:4 data:float
+@544 = .sdata2:0x80218ED0; // type:object size:0x4 scope:local align:4 data:float
+@547 = .sdata2:0x80218ED8; // type:object size:0x8 scope:local align:8 data:double
+@670 = .sdata2:0x80218EE0; // type:object size:0x4 scope:local align:4 data:float
+@672 = .sdata2:0x80218EE8; // type:object size:0x8 scope:local align:8 data:double
+@729 = .sdata2:0x80218EF0; // type:object size:0x4 scope:local align:4 data:float
+@771 = .sdata2:0x80218EF4; // type:object size:0x4 scope:local align:4 data:float
+@1055 = .sdata2:0x80218EF8; // type:object size:0x4 scope:local align:4 data:float
+@1056 = .sdata2:0x80218EFC; // type:object size:0x4 scope:local align:4 data:float
+@1285 = .sdata2:0x80218F00; // type:object size:0x4 scope:local align:4 data:float
+@283 = .sdata2:0x80218F08; // type:object size:0x7 scope:local align:4 data:string
+@304 = .sdata2:0x80218F10; // type:object size:0x4 scope:local align:4 data:float
+@322 = .sdata2:0x80218F14; // type:object size:0x4 scope:local align:4 data:float
+@323 = .sdata2:0x80218F18; // type:object size:0x4 scope:local align:4 data:float
+@470 = .sdata2:0x80218F1C; // type:object size:0x4 scope:local align:4 data:float
+@474 = .sdata2:0x80218F20; // type:object size:0x8 scope:local align:8 data:double
+@339 = .sdata2:0x80218F28; // type:object size:0x4 scope:local align:4 data:float
+@341 = .sdata2:0x80218F30; // type:object size:0x8 scope:local align:8 data:double
+@201 = .sdata2:0x80218F38; // type:object size:0x4 scope:local align:4 data:float
+@202 = .sdata2:0x80218F3C; // type:object size:0x4 scope:local align:4 data:float
+@204 = .sdata2:0x80218F40; // type:object size:0x8 scope:local align:8 data:double
+@206 = .sdata2:0x80218F48; // type:object size:0x8 scope:local align:8 data:double
+@279 = .sdata2:0x80218F50; // type:object size:0x4 scope:local align:4 data:float
+@280 = .sdata2:0x80218F54; // type:object size:0x4 scope:local align:4 data:float
+@281 = .sdata2:0x80218F58; // type:object size:0x4 scope:local align:4 data:float
+@282 = .sdata2:0x80218F5C; // type:object size:0x4 scope:local align:4 data:float
+@134 = .sdata2:0x80218F60; // type:object size:0x4 scope:local align:4 data:float
+@136 = .sdata2:0x80218F68; // type:object size:0x8 scope:local align:8 data:double
+@135 = .sdata2:0x80218F70; // type:object size:0x4 scope:local align:4 data:float
+@136 = .sdata2:0x80218F78; // type:object size:0x8 scope:local align:8 data:double
+@137 = .sdata2:0x80218F80; // type:object size:0x8 scope:local align:8 data:double
+@161 = .sdata2:0x80218F88; // type:object size:0x4 scope:local align:4 data:float
+@162 = .sdata2:0x80218F8C; // type:object size:0x4 scope:local align:4 data:float
+@164 = .sdata2:0x80218F90; // type:object size:0x8 scope:local align:8 data:double
+@169 = .sdata2:0x80218F98; // type:object size:0x4 scope:local align:4 data:float
+@211 = .sdata2:0x80218FA0; // type:object size:0x4 scope:local align:4 data:float
+@212 = .sdata2:0x80218FA4; // type:object size:0x4 scope:local align:4 data:float
+@214 = .sdata2:0x80218FA8; // type:object size:0x8 scope:local align:8 data:double
+@216 = .sdata2:0x80218FB0; // type:object size:0x8 scope:local align:8 data:double
+@248 = .sdata2:0x80218FB8; // type:object size:0x4 scope:local align:4 data:float
+@249 = .sdata2:0x80218FBC; // type:object size:0x4 scope:local align:4 data:float
+@250 = .sdata2:0x80218FC0; // type:object size:0x4 scope:local align:4 data:float
+@759 = .sdata2:0x80218FC4; // type:object size:0x4 scope:local align:4 data:float
+@818 = .sdata2:0x80218FC8; // type:object size:0x4 scope:local align:4 data:float
+@971 = .sdata2:0x80218FCC; // type:object size:0x4 scope:local align:4 data:float
+@972 = .sdata2:0x80218FD0; // type:object size:0x4 scope:local align:4 data:float
+@1402 = .sdata2:0x80218FD4; // type:object size:0x4 scope:local align:4 data:float
+@1426 = .sdata2:0x80218FD8; // type:object size:0x7 scope:local align:4 data:4byte
+@1427 = .sdata2:0x80218FE0; // type:object size:0x7 scope:local align:4 data:4byte
+@1812 = .sdata2:0x80218FE8; // type:object size:0x7 scope:local align:4
+@1814 = .sdata2:0x80218FF0; // type:object size:0x4 scope:local align:4
+@262 = .sdata2:0x80218FF8; // type:object size:0x8 scope:local align:8 data:double
+@274 = .sdata2:0x80219000; // type:object size:0x4 scope:local align:4 data:float
+@275 = .sdata2:0x80219004; // type:object size:0x4 scope:local align:4 data:float
+@276 = .sdata2:0x80219008; // type:object size:0x4 scope:local align:4 data:float
+@136 = .sdata2:0x80219010; // type:object size:0x4 scope:local align:4 data:float
+@137 = .sdata2:0x80219014; // type:object size:0x4 scope:local align:4 data:float
+@138 = .sdata2:0x80219018; // type:object size:0x4 scope:local align:4 data:float
+@139 = .sdata2:0x8021901C; // type:object size:0x4 scope:local align:4 data:float
+@142 = .sdata2:0x80219020; // type:object size:0x8 scope:local align:8 data:double
+@216 = .sdata2:0x80219028; // type:object size:0x4 scope:local align:4 data:float
+@133 = .sdata2:0x80219030; // type:object size:0x4 scope:local align:4 data:float
+@134 = .sdata2:0x80219034; // type:object size:0x4 scope:local align:4 data:float
+@186 = .sdata2:0x80219038; // type:object size:0x4 scope:local align:4 data:float
+@433 = .sdata2:0x80219040; // type:object size:0x8 scope:local align:8 data:double
+@473 = .sdata2:0x80219048; // type:object size:0x4 scope:local align:4 data:float
+@699 = .sdata2:0x80219050; // type:object size:0x8 scope:local align:8 data:double
+@714 = .sdata2:0x80219058; // type:object size:0x4 scope:local align:4 data:float
+@537 = .sdata2:0x80219060; // type:object size:0x4 scope:local align:4 data:float
+@545 = .sdata2:0x80219064; // type:object size:0x4 scope:local align:4 data:float
+@606 = .sdata2:0x80219068; // type:object size:0x4 scope:local align:4 data:float
+@607 = .sdata2:0x80219070; // type:object size:0x8 scope:local align:8 data:double
+@608 = .sdata2:0x80219078; // type:object size:0x8 scope:local align:8 data:double
+@643 = .sdata2:0x80219080; // type:object size:0x4 scope:local align:4 data:float
+@1632 = .sdata2:0x80219084; // type:object size:0x4 scope:local align:4 data:float
+@1633 = .sdata2:0x80219088; // type:object size:0x4 scope:local align:4 data:float
+@1726 = .sdata2:0x80219090; // type:object size:0x8 scope:local align:8 data:double
+@1915 = .sdata2:0x80219098; // type:object size:0x4 scope:local align:4 data:float
+@1917 = .sdata2:0x802190A0; // type:object size:0x8 scope:local align:8 data:double
+@1959 = .sdata2:0x802190A8; // type:object size:0x4 scope:local align:4 data:float
+blk_tbl$localstatic3$get_blk_wd_ht__FUiPUiPUi = .sdata2:0x802190AC; // type:object size:0x8 scope:local align:4
+@3378 = .sdata2:0x802190B4; // type:object size:0x4 scope:local align:4 data:float
+@3379 = .sdata2:0x802190B8; // type:object size:0x4 scope:local align:4 data:float
+@3380 = .sdata2:0x802190BC; // type:object size:0x4 scope:local align:4 data:float
+@3381 = .sdata2:0x802190C0; // type:object size:0x4 scope:local align:4 data:float
+@3475 = .sdata2:0x802190C4; // type:object size:0x4 scope:local align:4 data:float
+@3476 = .sdata2:0x802190C8; // type:object size:0x4 scope:local align:4 data:float
+@3658 = .sdata2:0x802190CC; // type:object size:0x4 scope:local align:4 data:float
+@3816 = .sdata2:0x802190D0; // type:object size:0x4 scope:local align:4 data:float
+@3817 = .sdata2:0x802190D4; // type:object size:0x4 scope:local align:4 data:float
+@3888 = .sdata2:0x802190D8; // type:object size:0x4 scope:local align:4 data:float
+@3889 = .sdata2:0x802190DC; // type:object size:0x4 scope:local align:4 data:float
+@3890 = .sdata2:0x802190E0; // type:object size:0x4 scope:local align:4 data:float
+@4180 = .sdata2:0x802190E4; // type:object size:0x4 scope:local align:4 data:float
+@4181 = .sdata2:0x802190E8; // type:object size:0x4 scope:local align:4 data:float
+@4182 = .sdata2:0x802190EC; // type:object size:0x4 scope:local align:4 data:float
+@4183 = .sdata2:0x802190F0; // type:object size:0x4 scope:local align:4 data:float
+@4184 = .sdata2:0x802190F4; // type:object size:0x4 scope:local align:4 data:float
+@4185 = .sdata2:0x802190F8; // type:object size:0x4 scope:local align:4 data:float
+@4186 = .sdata2:0x802190FC; // type:object size:0x4 scope:local align:4 data:float
+@7569 = .sdata2:0x80219100; // type:object size:0x4 scope:local align:4 data:float
+@7571 = .sdata2:0x80219104; // type:object size:0x4 scope:local align:4 data:float
+@7572 = .sdata2:0x80219108; // type:object size:0x4 scope:local align:4 data:float
+@7573 = .sdata2:0x8021910C; // type:object size:0x4 scope:local align:4 data:float
+@7574 = .sdata2:0x80219110; // type:object size:0x4 scope:local align:4 data:float
+@283 = .sdata2:0x80219118; // type:object size:0x4 scope:local align:4 data:float
+@284 = .sdata2:0x80219120; // type:object size:0x8 scope:local align:8 data:double
+@285 = .sdata2:0x80219128; // type:object size:0x8 scope:local align:8 data:double
+@14 = .sdata2:0x80219130; // type:object size:0x4 scope:local align:4 data:float
+@20 = .sdata2:0x80219134; // type:object size:0x4 scope:local align:4 data:float
+@288 = .sdata2:0x80219138; // type:object size:0x4 scope:local align:4 data:float
+@289 = .sdata2:0x80219140; // type:object size:0x8 scope:local align:8 data:double
+@290 = .sdata2:0x80219148; // type:object size:0x8 scope:local align:8 data:double
+@291 = .sdata2:0x80219150; // type:object size:0x4 scope:local align:4 data:float
+@292 = .sdata2:0x80219154; // type:object size:0x4 scope:local align:4 data:float
+@361 = .sdata2:0x80219158; // type:object size:0x4 scope:local align:4 data:float
+@362 = .sdata2:0x80219160; // type:object size:0x8 scope:local align:8 data:double
+@363 = .sdata2:0x80219168; // type:object size:0x8 scope:local align:8 data:double
+@364 = .sdata2:0x80219170; // type:object size:0x4 scope:local align:4 data:float
+@365 = .sdata2:0x80219174; // type:object size:0x4 scope:local align:4 data:float
+@366 = .sdata2:0x80219178; // type:object size:0x8 scope:local align:8 data:double
+@367 = .sdata2:0x80219180; // type:object size:0x4 scope:local align:4 data:float
+@368 = .sdata2:0x80219184; // type:object size:0x4 scope:local align:4 data:float
+@369 = .sdata2:0x80219188; // type:object size:0x4 scope:local align:4 data:float
+@371 = .sdata2:0x80219190; // type:object size:0x8 scope:local align:8 data:double
+@278 = .sdata2:0x80219198; // type:object size:0x4 scope:local align:4 data:float
+@330 = .sdata2:0x8021919C; // type:object size:0x4 scope:local align:4 data:float
+@331 = .sdata2:0x802191A0; // type:object size:0x4 scope:local align:4 data:float
+@271 = .sdata2:0x802191A8; // type:object size:0x4 scope:local align:4 data:float
+@272 = .sdata2:0x802191B0; // type:object size:0x8 scope:local align:8 data:double
+@273 = .sdata2:0x802191B8; // type:object size:0x8 scope:local align:8 data:double
+@274 = .sdata2:0x802191C0; // type:object size:0x4 scope:local align:4 data:float
+@279 = .sdata2:0x802191C8; // type:object size:0x4 scope:local align:4 data:float
+@280 = .sdata2:0x802191CC; // type:object size:0x4 scope:local align:4 data:float
+@281 = .sdata2:0x802191D0; // type:object size:0x4 scope:local align:4 data:float
+@288 = .sdata2:0x802191D8; // type:object size:0x8 scope:local align:8 data:double
+@289 = .sdata2:0x802191E0; // type:object size:0x4 scope:local align:4 data:float
+@290 = .sdata2:0x802191E4; // type:object size:0x4 scope:local align:4 data:float
+@291 = .sdata2:0x802191E8; // type:object size:0x4 scope:local align:4 data:float
+@292 = .sdata2:0x802191EC; // type:object size:0x4 scope:local align:4 data:float
+@293 = .sdata2:0x802191F0; // type:object size:0x8 scope:local align:8 data:double
+@294 = .sdata2:0x802191F8; // type:object size:0x8 scope:local align:8 data:double
+@271 = .sdata2:0x80219200; // type:object size:0x4 scope:local align:4 data:float
+@259 = .sdata2:0x80219208; // type:object size:0x4 scope:local align:4 data:float
+@107 = .sdata2:0x80219210; // type:object size:0x8 scope:local align:8 data:double
+@108 = .sdata2:0x80219218; // type:object size:0x8 scope:local align:8 data:double
+@109 = .sdata2:0x80219220; // type:object size:0x8 scope:local align:8 data:double
+@112 = .sdata2:0x80219228; // type:object size:0x8 scope:local align:8 data:double
+fchar$7 = .sdata2:0x80219230; // type:object size:0x6 scope:local align:4 data:string
+@2244 = .sdata2:0x80219238; // type:object size:0x4 scope:local align:4 data:float
+@2245 = .sdata2:0x8021923C; // type:object size:0x4 scope:local align:4 data:float
+@2247 = .sdata2:0x80219240; // type:object size:0x8 scope:local align:8 data:double
+@2152 = .sdata2:0x80219248; // type:object size:0x4 scope:local align:4 data:float
+@2153 = .sdata2:0x8021924C; // type:object size:0x4 scope:local align:4 data:float
+@2155 = .sdata2:0x80219250; // type:object size:0x8 scope:local align:8 data:double
+@2114 = .sdata2:0x80219258; // type:object size:0x4 scope:local align:4 data:float
+@2267 = .sdata2:0x80219260; // type:object size:0x8 scope:local align:8 data:double
+@2399 = .sdata2:0x80219268; // type:object size:0x4 scope:local align:4 data:float
+@2400 = .sdata2:0x8021926C; // type:object size:0x4 scope:local align:4 data:float
+@2749 = .sdata2:0x80219270; // type:object size:0x8 scope:local align:8 data:double
+@1030 = .sdata2:0x80219278; // type:object size:0x4 scope:local align:4 data:float
+@1032 = .sdata2:0x80219280; // type:object size:0x8 scope:local align:8 data:double
+@599 = .sdata2:0x80219288; // type:object size:0x4 scope:local align:4 data:float
+@601 = .sdata2:0x80219290; // type:object size:0x8 scope:local align:8 data:double
+@603 = .sdata2:0x80219298; // type:object size:0x8 scope:local align:8 data:double
+@719 = .sdata2:0x802192A0; // type:object size:0x4 scope:local align:4 data:float
+@720 = .sdata2:0x802192A4; // type:object size:0x4 scope:local align:4 data:float
+@721 = .sdata2:0x802192A8; // type:object size:0x4 scope:local align:4 data:float
+@722 = .sdata2:0x802192AC; // type:object size:0x4 scope:local align:4 data:float
+@723 = .sdata2:0x802192B0; // type:object size:0x4 scope:local align:4 data:float
+@736 = .sdata2:0x802192B8; // type:object size:0x8 scope:local align:8 data:double
+@798 = .sdata2:0x802192C0; // type:object size:0x4 scope:local align:4 data:float
+@801 = .sdata2:0x802192C8; // type:object size:0x8 scope:local align:8 data:double
+@807 = .sdata2:0x802192D0; // type:object size:0x4 scope:local align:4 data:float
+@844 = .sdata2:0x802192D8; // type:object size:0x8 scope:local align:8 data:double
+@845 = .sdata2:0x802192E0; // type:object size:0x8 scope:local align:8 data:double
+@846 = .sdata2:0x802192E8; // type:object size:0x4 scope:local align:4 data:float
+@847 = .sdata2:0x802192EC; // type:object size:0x4 scope:local align:4 data:float
+@878 = .sdata2:0x802192F0; // type:object size:0x4 scope:local align:4 data:float
+@879 = .sdata2:0x802192F4; // type:object size:0x4 scope:local align:4 data:float
+@880 = .sdata2:0x802192F8; // type:object size:0x4 scope:local align:4 data:float
+@881 = .sdata2:0x802192FC; // type:object size:0x4 scope:local align:4 data:float
+@2188 = .sdata2:0x80219300; // type:object size:0x4 scope:local align:4 data:float
+@2890 = .sdata2:0x80219304; // type:object size:0x4 scope:local align:4 data:float
+@2891 = .sdata2:0x80219308; // type:object size:0x4 scope:local align:4 data:float
+@610 = .sdata2:0x80219310; // type:object size:0x4 scope:local align:4 data:float
+@611 = .sdata2:0x80219314; // type:object size:0x4 scope:local align:4 data:float
+@612 = .sdata2:0x80219318; // type:object size:0x4 scope:local align:4 data:float
+@614 = .sdata2:0x80219320; // type:object size:0x8 scope:local align:8 data:double
+@2108 = .sdata2:0x80219328; // type:object size:0x8 scope:local align:8 data:double
+@2174 = .sdata2:0x80219330; // type:object size:0x4 scope:local align:4 data:float
+@2175 = .sdata2:0x80219334; // type:object size:0x4 scope:local align:4 data:float
+@2195 = .sdata2:0x80219338; // type:object size:0x4 scope:local align:4 data:float
+@2197 = .sdata2:0x80219340; // type:object size:0x8 scope:local align:8 data:double
+@2224 = .sdata2:0x80219348; // type:object size:0x4 scope:local align:4 data:float
+@2225 = .sdata2:0x8021934C; // type:object size:0x4 scope:local align:4 data:float
+@2226 = .sdata2:0x80219350; // type:object size:0x4 scope:local align:4 data:float
+@2227 = .sdata2:0x80219354; // type:object size:0x4 scope:local align:4 data:float
+@2228 = .sdata2:0x80219358; // type:object size:0x4 scope:local align:4 data:float
+@2229 = .sdata2:0x8021935C; // type:object size:0x4 scope:local align:4 data:float
+@2231 = .sdata2:0x80219360; // type:object size:0x8 scope:local align:8 data:double
+@2496 = .sdata2:0x80219368; // type:object size:0x4 scope:local align:4 data:float
+@2497 = .sdata2:0x8021936C; // type:object size:0x4 scope:local align:4 data:float
+@2366 = .sdata2:0x80219370; // type:object size:0x4 scope:local align:4 data:float
+@2367 = .sdata2:0x80219374; // type:object size:0x4 scope:local align:4 data:float
+@2368 = .sdata2:0x80219378; // type:object size:0x4 scope:local align:4 data:float
+@2369 = .sdata2:0x8021937C; // type:object size:0x4 scope:local align:4 data:float
+@2370 = .sdata2:0x80219380; // type:object size:0x4 scope:local align:4 data:float
+@2371 = .sdata2:0x80219384; // type:object size:0x4 scope:local align:4 data:float
+@2372 = .sdata2:0x80219388; // type:object size:0x4 scope:local align:4 data:float
+@2375 = .sdata2:0x80219390; // type:object size:0x8 scope:local align:8 data:double
+@2377 = .sdata2:0x80219398; // type:object size:0x8 scope:local align:8 data:double
+@514 = .sdata2:0x802193A0; // type:object size:0x4 scope:local align:4 data:float
+@515 = .sdata2:0x802193A4; // type:object size:0x4 scope:local align:4 data:float
+@627 = .sdata2:0x802193A8; // type:object size:0x4 scope:local align:4 data:float
+@628 = .sdata2:0x802193AC; // type:object size:0x4 scope:local align:4 data:float
+@629 = .sdata2:0x802193B0; // type:object size:0x4 scope:local align:4 data:float
+@427 = .sdata2:0x802193B8; // type:object size:0x4 scope:local align:4 data:float
+@477 = .sdata2:0x802193BC; // type:object size:0x4 scope:local align:4 data:float
+@94 = .sdata2:0x802193C0; // type:object size:0x4 scope:local align:4 data:float
+@95 = .sdata2:0x802193C4; // type:object size:0x4 scope:local align:4 data:float
+@193 = .sdata2:0x802193C8; // type:object size:0x4 scope:local align:4 data:float
+@97 = .sdata2:0x802193D0; // type:object size:0x4 scope:local align:4 data:float
+@98 = .sdata2:0x802193D4; // type:object size:0x4 scope:local align:4 data:float
+@99 = .sdata2:0x802193D8; // type:object size:0x4 scope:local align:4 data:float
+@100 = .sdata2:0x802193DC; // type:object size:0x4 scope:local align:4 data:float
+@116 = .sdata2:0x802193E0; // type:object size:0x4 scope:local align:4 data:float
+@117 = .sdata2:0x802193E4; // type:object size:0x4 scope:local align:4 data:float
+@133 = .sdata2:0x802193E8; // type:object size:0x4 scope:local align:4 data:4byte
+@134 = .sdata2:0x802193EC; // type:object size:0x4 scope:local align:4 data:4byte
+@135 = .sdata2:0x802193F0; // type:object size:0x4 scope:local align:4 data:4byte
+@189 = .sdata2:0x802193F4; // type:object size:0x4 scope:local align:4 data:float
+@190 = .sdata2:0x802193F8; // type:object size:0x4 scope:local align:4 data:float
+@191 = .sdata2:0x802193FC; // type:object size:0x4 scope:local align:4 data:float
+@193 = .sdata2:0x80219400; // type:object size:0x8 scope:local align:8 data:double
+@95 = .sdata2:0x80219408; // type:object size:0x4 scope:local align:4 data:float
+@176 = .sdata2:0x80219410; // type:object size:0x4 scope:local align:4 data:float
+@178 = .sdata2:0x80219418; // type:object size:0x8 scope:local align:8 data:double
+@204 = .sdata2:0x80219420; // type:object size:0x4 scope:local align:4 data:float
+@205 = .sdata2:0x80219424; // type:object size:0x4 scope:local align:4 data:float
+@206 = .sdata2:0x80219428; // type:object size:0x4 scope:local align:4 data:float
+@207 = .sdata2:0x8021942C; // type:object size:0x4 scope:local align:4 data:float
+@208 = .sdata2:0x80219430; // type:object size:0x4 scope:local align:4 data:float
+@209 = .sdata2:0x80219434; // type:object size:0x4 scope:local align:4 data:float
+@57 = .sdata2:0x80219438; // type:object size:0x4 scope:local align:4 data:float
+@137 = .sdata2:0x80219440; // type:object size:0x4 scope:local align:4 data:float
+@138 = .sdata2:0x80219444; // type:object size:0x4 scope:local align:4 data:float
+@139 = .sdata2:0x80219448; // type:object size:0x8 scope:local align:8 data:double
+@140 = .sdata2:0x80219450; // type:object size:0x4 scope:local align:4 data:float
+@141 = .sdata2:0x80219458; // type:object size:0x8 scope:local align:8 data:double
+@142 = .sdata2:0x80219460; // type:object size:0x4 scope:local align:4 data:float
+@144 = .sdata2:0x80219468; // type:object size:0x8 scope:local align:8 data:double
+@28 = .sdata2:0x80219470; // type:object size:0x4 scope:local align:4 data:float
+@75 = .sdata2:0x80219474; // type:object size:0x4 scope:local align:4 data:float
+@76 = .sdata2:0x80219478; // type:object size:0x4 scope:local align:4 data:float
+@620 = .sdata2:0x80219480; // type:object size:0x8 scope:local align:8 data:double
+@74 = .sdata2:0x80219488; // type:object size:0x4 scope:local align:4 data:4byte
+@1079 = .sdata2:0x80219490; // type:object size:0x8 scope:local align:8 data:double
+@103 = .sdata2:0x80219498; // type:object size:0x8 scope:local align:8 data:double
+@104 = .sdata2:0x802194A0; // type:object size:0x8 scope:local align:8 data:double
+@105 = .sdata2:0x802194A8; // type:object size:0x8 scope:local align:8 data:double
+@106 = .sdata2:0x802194B0; // type:object size:0x8 scope:local align:8 data:double
+@107 = .sdata2:0x802194B8; // type:object size:0x8 scope:local align:8 data:double
+@108 = .sdata2:0x802194C0; // type:object size:0x8 scope:local align:8 data:double
+@109 = .sdata2:0x802194C8; // type:object size:0x8 scope:local align:8 data:double
+@110 = .sdata2:0x802194D0; // type:object size:0x8 scope:local align:8 data:double
+@111 = .sdata2:0x802194D8; // type:object size:0x8 scope:local align:8 data:double
+@112 = .sdata2:0x802194E0; // type:object size:0x8 scope:local align:8 data:double
+@113 = .sdata2:0x802194E8; // type:object size:0x8 scope:local align:8 data:double
+@114 = .sdata2:0x802194F0; // type:object size:0x8 scope:local align:8 data:double
+@115 = .sdata2:0x802194F8; // type:object size:0x8 scope:local align:8 data:double
+@116 = .sdata2:0x80219500; // type:object size:0x8 scope:local align:8 data:double
+@117 = .sdata2:0x80219508; // type:object size:0x8 scope:local align:8 data:double
+@118 = .sdata2:0x80219510; // type:object size:0x8 scope:local align:8 data:double
+@119 = .sdata2:0x80219518; // type:object size:0x8 scope:local align:8 data:double
+@120 = .sdata2:0x80219520; // type:object size:0x8 scope:local align:8 data:double
+@146 = .sdata2:0x80219528; // type:object size:0x8 scope:local align:8 data:double
+@147 = .sdata2:0x80219530; // type:object size:0x8 scope:local align:8 data:double
+@148 = .sdata2:0x80219538; // type:object size:0x8 scope:local align:8 data:double
+@149 = .sdata2:0x80219540; // type:object size:0x8 scope:local align:8 data:double
+@150 = .sdata2:0x80219548; // type:object size:0x8 scope:local align:8 data:double
+@151 = .sdata2:0x80219550; // type:object size:0x8 scope:local align:8 data:double
+@152 = .sdata2:0x80219558; // type:object size:0x8 scope:local align:8 data:double
+@153 = .sdata2:0x80219560; // type:object size:0x8 scope:local align:8 data:double
+@154 = .sdata2:0x80219568; // type:object size:0x8 scope:local align:8 data:double
+@155 = .sdata2:0x80219570; // type:object size:0x8 scope:local align:8 data:double
+@156 = .sdata2:0x80219578; // type:object size:0x8 scope:local align:8 data:double
+@146 = .sdata2:0x80219580; // type:object size:0x8 scope:local align:8 data:double
+@147 = .sdata2:0x80219588; // type:object size:0x8 scope:local align:8 data:double
+@148 = .sdata2:0x80219590; // type:object size:0x8 scope:local align:8 data:double
+@149 = .sdata2:0x80219598; // type:object size:0x8 scope:local align:8 data:double
+@150 = .sdata2:0x802195A0; // type:object size:0x8 scope:local align:8 data:double
+@151 = .sdata2:0x802195A8; // type:object size:0x8 scope:local align:8 data:double
+@152 = .sdata2:0x802195B0; // type:object size:0x8 scope:local align:8 data:double
+@153 = .sdata2:0x802195B8; // type:object size:0x8 scope:local align:8 data:double
+@154 = .sdata2:0x802195C0; // type:object size:0x8 scope:local align:8 data:double
+@155 = .sdata2:0x802195C8; // type:object size:0x8 scope:local align:8 data:double
+@158 = .sdata2:0x802195D0; // type:object size:0x8 scope:local align:8 data:double
+@71 = .sdata2:0x802195D8; // type:object size:0x8 scope:local align:8 data:double
+@72 = .sdata2:0x802195E0; // type:object size:0x8 scope:local align:8 data:double
+@73 = .sdata2:0x802195E8; // type:object size:0x8 scope:local align:8 data:double
+@74 = .sdata2:0x802195F0; // type:object size:0x8 scope:local align:8 data:double
+@75 = .sdata2:0x802195F8; // type:object size:0x8 scope:local align:8 data:double
+@76 = .sdata2:0x80219600; // type:object size:0x8 scope:local align:8 data:double
+@77 = .sdata2:0x80219608; // type:object size:0x8 scope:local align:8 data:double
+@78 = .sdata2:0x80219610; // type:object size:0x8 scope:local align:8 data:double
+@79 = .sdata2:0x80219618; // type:object size:0x8 scope:local align:8 data:double
+@437 = .sdata2:0x80219620; // type:object size:0x8 scope:local align:8 data:double
+@438 = .sdata2:0x80219628; // type:object size:0x8 scope:local align:8 data:double
+@439 = .sdata2:0x80219630; // type:object size:0x8 scope:local align:8 data:double
+@440 = .sdata2:0x80219638; // type:object size:0x8 scope:local align:8 data:double
+@441 = .sdata2:0x80219640; // type:object size:0x8 scope:local align:8 data:double
+@442 = .sdata2:0x80219648; // type:object size:0x8 scope:local align:8 data:double
+@443 = .sdata2:0x80219650; // type:object size:0x8 scope:local align:8 data:double
+@445 = .sdata2:0x80219658; // type:object size:0x8 scope:local align:8 data:double
+@61 = .sdata2:0x80219660; // type:object size:0x8 scope:local align:8 data:double
+@62 = .sdata2:0x80219668; // type:object size:0x8 scope:local align:8 data:double
+@63 = .sdata2:0x80219670; // type:object size:0x8 scope:local align:8 data:double
+@64 = .sdata2:0x80219678; // type:object size:0x8 scope:local align:8 data:double
+@65 = .sdata2:0x80219680; // type:object size:0x8 scope:local align:8 data:double
+@66 = .sdata2:0x80219688; // type:object size:0x8 scope:local align:8 data:double
+@67 = .sdata2:0x80219690; // type:object size:0x8 scope:local align:8 data:double
+@116 = .sdata2:0x80219698; // type:object size:0x8 scope:local align:8 data:double
+@117 = .sdata2:0x802196A0; // type:object size:0x8 scope:local align:8 data:double
+@118 = .sdata2:0x802196A8; // type:object size:0x8 scope:local align:8 data:double
+@119 = .sdata2:0x802196B0; // type:object size:0x8 scope:local align:8 data:double
+@120 = .sdata2:0x802196B8; // type:object size:0x8 scope:local align:8 data:double
+@73 = .sdata2:0x802196C0; // type:object size:0x8 scope:local align:8 data:double
+@125 = .sdata2:0x802196C8; // type:object size:0x8 scope:local align:8 data:double
+@126 = .sdata2:0x802196D0; // type:object size:0x8 scope:local align:8 data:double
+@60 = .sdata2:0x802196D8; // type:object size:0x8 scope:local align:8 data:double
+@102 = .sdata2:0x802196E0; // type:object size:0x8 scope:local align:8 data:double
+@103 = .sdata2:0x802196E8; // type:object size:0x8 scope:local align:8 data:double
+@104 = .sdata2:0x802196F0; // type:object size:0x8 scope:local align:8 data:double
+@105 = .sdata2:0x802196F8; // type:object size:0x8 scope:local align:8 data:double
+@106 = .sdata2:0x80219700; // type:object size:0x8 scope:local align:8 data:double
+@73 = .sdata2:0x80219708; // type:object size:0x8 scope:local align:8 data:double
diff --git a/config/analysis_overrides.yml b/config/analysis_overrides.yml
deleted file mode 100644
index ee443475..00000000
--- a/config/analysis_overrides.yml
+++ /dev/null
@@ -1,416 +0,0 @@
-blocked_pointers:
- - 0x800A8440
- - 0x800A8514
-blocked_targets:
- - 0x800A97E0 # boot.c local static const tbl, also start of .rodata
- - 0x80008000
- - 0x80018800
- - 0x800189C0
- - 0x801F6C7C # tcs_bad
- - 0x801F6C7D # ics_bad
- - 0x800a9a90
- # - 0x800a9838
- - 0x800a9938
- - 0x800a9a3a
- - 0x800a99f6
- - 0x800a9a18
-forced_types:
- 0x80003534: FUNCTION
- 0x80005468: FUNCTION
- 0x8003ab3c: ENTRY
- 0x8003ab70: ENTRY
- 0x8003ab70: ENTRY
- 0x8003ab70: ENTRY
- 0x8003ab70: ENTRY
- 0x8003ab78: ENTRY
- 0x8003ab88: ENTRY
- 0x8003abe0: ENTRY
- 0x8003abf0: ENTRY
- 0x8003abfc: ENTRY
- 0x8003ac0c: ENTRY
- 0x8003ac48: ENTRY
- 0x8003ac48: ENTRY
- 0x8003ac48: ENTRY
- 0x8003ac58: ENTRY
- 0x8003ac70: ENTRY
- 0x8003ac90: ENTRY
- 0x8003aca4: ENTRY
- 0x8003acb4: ENTRY
- 0x8003acd0: ENTRY
- 0x8003ace0: ENTRY
- 0x8003ada4: ENTRY
- 0x8003ada4: ENTRY
- 0x8003ada4: ENTRY
- 0x8003ada4: ENTRY
- 0x8003ada4: ENTRY
- 0x8003adac: ENTRY
- 0x8003b5d4: ENTRY
- 0x8003b5f4: ENTRY
- 0x8003b61c: ENTRY
- 0x8003b648: ENTRY
- 0x8003b674: ENTRY
- 0x8003b684: ENTRY
- 0x8003b698: ENTRY
- 0x8003b6c4: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b6f0: ENTRY
- 0x8003b700: ENTRY
- 0x8003b70c: ENTRY
- 0x8003b70c: ENTRY
- 0x8003b70c: ENTRY
- 0x8003b70c: ENTRY
- 0x8003b71c: ENTRY
- 0x8003b71c: ENTRY
- 0x8003b71c: ENTRY
- 0x8003b71c: ENTRY
- 0x8003b71c: ENTRY
- 0x8003b72c: ENTRY
- 0x8003b734: ENTRY
- 0x8003b73c: ENTRY
- 0x8003b744: ENTRY
- 0x8003b754: ENTRY
- 0x8003b764: ENTRY
- 0x8003b774: ENTRY
- 0x8003b784: ENTRY
- 0x8003b794: ENTRY
- 0x8003b7a4: ENTRY
- 0x8003b7bc: ENTRY
- 0x8003b7d4: ENTRY
- 0x8003b7fc: ENTRY
- 0x8003b82c: ENTRY
- 0x8003b834: ENTRY
- 0x8003b83c: ENTRY
- 0x8003b84c: ENTRY
- 0x8003b85c: ENTRY
- 0x8003b86c: ENTRY
- 0x8003b87c: ENTRY
- 0x8003b88c: ENTRY
- 0x8003b89c: ENTRY
- 0x8003b8ac: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8bc: ENTRY
- 0x8003b8d0: ENTRY
- 0x8003b8d0: ENTRY
- 0x8003b8d0: ENTRY
- 0x8003b8e4: ENTRY
- 0x8003b8e4: ENTRY
- 0x8003b8e4: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b8f8: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b928: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b960: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b970: ENTRY
- 0x8003b980: ENTRY
- 0x8003b980: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b990: ENTRY
- 0x8003b9a0: ENTRY
- 0x8003b9a0: ENTRY
- 0x8003b9a0: ENTRY
- 0x8003b9a0: ENTRY
- 0x8003b9b8: ENTRY
- 0x8003b9b8: ENTRY
- 0x8003b9b8: ENTRY
- 0x8003b9b8: ENTRY
- 0x8003b9d0: ENTRY
- 0x8003b9e4: ENTRY
- 0x8003b9e4: ENTRY
- 0x8003b9e4: ENTRY
- 0x8003b9e4: ENTRY
- 0x8003ba00: ENTRY
- 0x8003ba14: ENTRY
- 0x8003ba14: ENTRY
- 0x8003ba14: ENTRY
- 0x8003ba14: ENTRY
- 0x8003ba30: ENTRY
- 0x8003ba48: ENTRY
- 0x8003ba48: ENTRY
- 0x8003ba48: ENTRY
- 0x8003ba48: ENTRY
- 0x8003ba68: ENTRY
- 0x8003ba80: ENTRY
- 0x8003ba80: ENTRY
- 0x8003ba80: ENTRY
- 0x8003ba80: ENTRY
- 0x8003baa0: ENTRY
- 0x8003babc: ENTRY
- 0x8003bad8: ENTRY
- 0x8003baf4: ENTRY
- 0x8003bb10: ENTRY
- 0x8003bb2c: ENTRY
- 0x8003bb48: ENTRY
- 0x8003bb64: ENTRY
- 0x8003bb80: ENTRY
- 0x8003bb88: ENTRY
- 0x8003bbac: ENTRY
- 0x8003bbc0: ENTRY
- 0x8003bbdc: ENTRY
- 0x8003bbe0: ENTRY
- 0x8003bc10: ENTRY
- 0x8003bc18: ENTRY
- 0x8003bc44: ENTRY
- 0x8003bc54: ENTRY
- 0x8003bc5c: ENTRY
- 0x8003bcc8: ENTRY
- 0x8003bcd0: ENTRY
- 0x8003bd20: ENTRY
- 0x8003bd30: ENTRY
- 0x8003bd3c: ENTRY
- 0x8003bd60: ENTRY
- 0x8003bd70: ENTRY
- 0x8003bd78: ENTRY
- 0x8003bd88: ENTRY
- 0x8003bd98: ENTRY
- 0x8003bda8: ENTRY
- 0x8003bdb0: ENTRY
- 0x8003bdb4: ENTRY
- 0x8003bdbc: ENTRY
- 0x8003bdc8: ENTRY
- 0x8003bdc8: ENTRY
- 0x8003bdd4: ENTRY
- 0x8003be64: ENTRY
- 0x8003bf28: ENTRY
- 0x8003bf38: ENTRY
- 0x8003bf9c: ENTRY
- 0x8003bfd0: ENTRY
- 0x8003bfdc: ENTRY
- 0x8003bfe8: ENTRY
- 0x8003bfec: ENTRY
- 0x8003c000: ENTRY
- 0x8003c020: ENTRY
- 0x8003c030: ENTRY
- 0x8003c034: ENTRY
- 0x8003c094: ENTRY
- 0x8003c0e0: ENTRY
- 0x8003c1f4: ENTRY
- 0x8003c210: ENTRY
- 0x8003c214: ENTRY
- 0x8003c24c: ENTRY
- 0x8003c260: ENTRY
- 0x8003c274: ENTRY
- 0x8003c274: ENTRY
- 0x8003c274: ENTRY
- 0x8003c274: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c28c: ENTRY
- 0x8003c2ac: ENTRY
- 0x8003c2e0: ENTRY
- 0x8003c32c: ENTRY
- 0x8003c540: ENTRY
- 0x8003c5cc: ENTRY
- 0x8003c5cc: ENTRY
- 0x8003c5d8: ENTRY
- 0x8003c60c: ENTRY
- 0x8003c614: ENTRY
- 0x8003c640: ENTRY
- 0x8003c6e4: ENTRY
- 0x8003c6ec: ENTRY
- 0x8003c894: ENTRY
- 0x8003c8bc: ENTRY
- 0x8003c8e8: ENTRY
- 0x8003c930: ENTRY
- 0x8003caf0: ENTRY
- 0x8003cb20: ENTRY
- 0x8003cb6c: ENTRY
- 0x8003cb78: ENTRY
- 0x8003cb8c: ENTRY
- 0x8003cba0: ENTRY
- 0x8003ccf4: ENTRY
- 0x8003cd0c: ENTRY
- 0x8003ce58: ENTRY
- 0x8003ce58: ENTRY
- 0x8003ce58: ENTRY
- 0x8003ce58: ENTRY
- 0x8003ce58: ENTRY
- 0x8003ce64: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf80: ENTRY
- 0x8003cf98: ENTRY
- 0x8003cf98: ENTRY
- 0x8003cf98: ENTRY
- 0x8003cf98: ENTRY
- 0x8003cfb0: ENTRY
- 0x8003cfb0: ENTRY
- 0x8003cfbc: ENTRY
- 0x8003cfc8: ENTRY
- 0x8003d010: ENTRY
- 0x8003d010: ENTRY
- 0x8003d01c: ENTRY
- 0x8003d0ac: ENTRY
- 0x8003d0f8: ENTRY
- 0x8003d0fc: ENTRY
- 0x8003d13c: ENTRY
- 0x8003d16c: ENTRY
- 0x8003d1b0: ENTRY
- 0x8003d1b4: ENTRY
- 0x8003d1e4: ENTRY
- 0x8003d1e4: ENTRY
- 0x8003d1e4: ENTRY
- 0x8003d1e4: ENTRY
- 0x8003d1f8: ENTRY
- 0x8003d264: ENTRY
- 0x8003d2b0: ENTRY
- 0x8003d368: ENTRY
- 0x8003d3dc: ENTRY
- 0x8003d444: ENTRY
- 0x8003d45c: ENTRY
- 0x8003d4a4: ENTRY
- 0x8003d4ec: ENTRY
- 0x8003d514: ENTRY
- 0x8003d53c: ENTRY
- 0x8003d564: ENTRY
- 0x8003d584: ENTRY
- 0x8003d590: ENTRY
- 0x8003d5b4: ENTRY
- 0x8003d5d8: ENTRY
- 0x8003d614: ENTRY
- 0x8003d678: ENTRY
- 0x8003d6ac: ENTRY
- 0x8003d700: ENTRY
- 0x8003d754: ENTRY
- 0x8003d76c: ENTRY
- 0x8003d7e8: ENTRY
- 0x8003d7f4: ENTRY
- 0x8003d82c: ENTRY
- 0x8003d8d4: ENTRY
- 0x8003d928: ENTRY
- 0x8003d940: ENTRY
- 0x8003d96c: ENTRY
- 0x8003d990: ENTRY
- 0x8003da50: ENTRY
- 0x8003da88: ENTRY
- 0x8003da90: ENTRY
- 0x8003db68: ENTRY
- 0x8003dbd8: ENTRY
- 0x8003dbf4: ENTRY
- 0x8003dc20: ENTRY
- 0x8003dc28: ENTRY
- 0x8003dc28: ENTRY
- 0x8003dcd4: ENTRY
- 0x8003dd3c: ENTRY
- 0x8003ddb8: ENTRY
- 0x8003dddc: ENTRY
- 0x8003de50: ENTRY
- 0x8003de78: ENTRY
- 0x80078edc: ENTRY
- 0x80078f00: ENTRY
- 0x80078f00: ENTRY
- 0x80078f04: ENTRY
- 0x80078f34: ENTRY
- 0x80078f8c: ENTRY
- 0x80078f9c: ENTRY
- 0x80078fcc: ENTRY
- 0x8007ac24: ENTRY
- 0x8007ac34: ENTRY
-# 0x8007db20: ENTRY
- 0x8007db3c: ENTRY
- 0x8009ae2c: ENTRY
- 0x8009ae34: ENTRY
- 0x8009ae38: ENTRY
- 0x8009ae3c: ENTRY
- 0x8009ae78: ENTRY
- 0x8009ae80: ENTRY
- 0x8009ae84: ENTRY
- 0x8009ae88: ENTRY
- 0x8009ae98: ENTRY
- 0x8009ae9c: ENTRY
- 0x8009aea0: ENTRY
- 0x8009aea4: ENTRY
- 0x8009aea8: ENTRY
- 0x8009aeac: ENTRY
- 0x8009aeb0: ENTRY
- 0x8009aeb4: ENTRY
- 0x8009aeb8: ENTRY
- 0x8009aebc: ENTRY
- 0x8009aec0: ENTRY
- 0x8009aec4: ENTRY
- 0x8009aec8: ENTRY
- 0x8009aecc: ENTRY
- 0x8009aed0: ENTRY
- 0x8009aed4: ENTRY
- 0x8009aee4: ENTRY
- 0x8009aee8: ENTRY
- 0x8009aeec: ENTRY
- 0x8009aef0: ENTRY
- 0x8009aef4: ENTRY
- 0x8009aef8: ENTRY
- 0x8009aefc: ENTRY
- 0x8009af00: ENTRY
- 0x8009af04: ENTRY
- 0x8009af08: ENTRY
- 0x8009af0c: ENTRY
- 0x8009af10: ENTRY
- 0x8009af14: ENTRY
- 0x8009af18: ENTRY
- 0x8009af1c: ENTRY
- 0x8009af20: ENTRY
- 0x800A6A74: FUNCTION # TRKExceptionHandler
- 0x800A6BD4: FUNCTION # TRKInterruptHandlerEnableInterrupts
- 0x800a8130: ENTRY
- 0x800a8138: ENTRY
- 0x800a8140: ENTRY
- 0x800a8148: ENTRY
-# 0x800ab260: ENTRY
diff --git a/config/assets.yml b/config/assets.yml
deleted file mode 100644
index 4ede5a27..00000000
--- a/config/assets.yml
+++ /dev/null
@@ -1,10638 +0,0 @@
-config/dol.yml:
- __Creator__:
- addrs: [0x800b05e8, 0x800b05f4]
- __DateTime__:
- addrs: [0x800b05f4, 0x800b0608]
- # dvderr.c
- dvd_keikoku_moji1_1_tex:
- addrs: [0x800b0a60, 0x800b0f60]
- dvd_keikoku_moji1_2_tex:
- addrs: [0x800b0f60, 0x800b1460]
- dvd_keikoku_moji1_3_tex:
- addrs: [0x800b1460, 0x800b1660]
- dvd_keikoku_moji1_4_tex:
- addrs: [0x800b1660, 0x800b1c60]
- ctl_att_w1_tex:
- addrs: [0x800b1c60, 0x800b2060]
- ctl_att_w2_tex:
- addrs: [0x800b2060, 0x800b2460]
- ctl_att_w3_tex:
- addrs: [0x800b2460, 0x800b2860]
- ctl_att_w4_tex:
- addrs: [0x800b2860, 0x800b2c60]
- ctl_att_w5_tex:
- addrs: [0x800b2c60, 0x800b3060]
- ctl_att_w6_tex:
- addrs: [0x800b3060, 0x800b30e0]
- dvd_keikoku1_v:
- addrs: [0x800b30e0, 0x800b34a0]
- type: vtx
- dvd_keikoku_moji2_tex:
- addrs: [0x800b3640, 0x800b38c0]
- dvd_keikoku_moji2_2_tex:
- addrs: [0x800b38c0, 0x800b3ec0]
- dvd_keikoku_moji2_3_tex:
- addrs: [0x800b3ec0, 0x800b3f40]
- dvd_keikoku2_v:
- addrs: [0x800b3f40, 0x800b42c0]
- type: vtx
- dvd_keikoku_moji4_tex:
- addrs: [0x800b4440, 0x800b46c0]
- dvd_keikoku_moji3_1_tex:
- addrs: [0x800b46c0, 0x800b4cc0]
- dvd_keikoku_moji3_2_tex:
- addrs: [0x800b4cc0, 0x800b4f40]
- dvd_keikoku_moji3_3_tex:
- addrs: [0x800b4f40, 0x800b4fc0]
- dvd_keikoku3_v:
- addrs: [0x800b4fc0, 0x800b5400]
- type: vtx
- dvd_keikoku_moji5_tex:
- addrs: [0x800b55a0, 0x800b58a0]
- dvd_keikoku_moji6_2_tex:
- addrs: [0x800b58a0, 0x800b5d20]
- dvd_keikoku_moji6_3_tex:
- addrs: [0x800b5d20, 0x800b5fa0]
- dvd_keikoku_moji6_tex:
- addrs: [0x800b5fa0, 0x800b63a0]
- dvd_keikoku_moji6_1_tex:
- addrs: [0x800b63a0, 0x800b6920]
- dvd_keikoku_moji6_new1_tex:
- addrs: [0x800b6920, 0x800b6b20]
- dvd_keikoku_moji6_new2_tex:
- addrs: [0x800b6b20, 0x800b6d20]
- dvd_keikoku4_v:
- addrs: [0x800b6d20, 0x800b71a0]
- type: vtx
- dvd_keikoku_moji7_tex:
- addrs: [0x800b7380, 0x800b7880]
- dvd_keikoku_moji8_tex:
- addrs: [0x800b7880, 0x800b7c80]
- dvd_keikoku_moji10_tex:
- addrs: [0x800b7c80, 0x800b7e80]
- dvd_keikoku_moji11_tex:
- addrs: [0x800b7e80, 0x800b8300]
- dvd_keikoku_moji12_tex:
- addrs: [0x800b8300, 0x800b8580]
- dvd_keikoku_moji9_tex:
- addrs: [0x800b8580, 0x800b8a80]
- dvd_keikoku5_v:
- addrs: [0x800b8a80, 0x800b8ec0]
- type: vtx
-
- nintendo_hi_0:
- addrs: [0x800c3140, 0x800cca40]
-
- # initial_menu.c
- bootdata/gam_win_moji1_tex:
- addrs: [0x800b9140, 0x800b93c0]
- bootdata/gam_win_moji2_tex:
- addrs: [0x800b93c0, 0x800b98c0]
- bootdata/yes:
- addrs: [0x800b98c0, 0x800b99c0]
- bootdata/no:
- addrs: [0x800b99c0, 0x800b9a40]
- bootdata/att_win_waku1_tex:
- addrs: [0x800b9a40, 0x800b9e40]
- bootdata/att_win_waku2_tex:
- addrs: [0x800b9e40, 0x800ba240]
- bootdata/att_win_waku3_tex:
- addrs: [0x800ba240, 0x800ba640]
- bootdata/att_win_waku4_tex:
- addrs: [0x800ba640, 0x800baa40]
- bootdata/att_win_waku5_tex:
- addrs: [0x800baa40, 0x800bae40]
- bootdata/att_win_waku6_tex:
- addrs: [0x800bae40, 0x800baec0]
- bootdata/gam_win1_v:
- addrs: [0x800baec0, 0x800bb2b0]
- type: vtx
- bootdata/gam_win_moji3_tex:
- addrs: [0x800bb500, 0x800bba00]
- bootdata/gam_win_moji4_tex:
- addrs: [0x800bba00, 0x800bbf00]
- bootdata/att_win_waku1_tex_1:
- addrs: [0x800bbf00, 0x800bc300]
- bootdata/att_win_waku2_tex_1:
- addrs: [0x800bc300, 0x800bc700]
- bootdata/att_win_waku3_tex_1:
- addrs: [0x800bc700, 0x800bcb00]
- bootdata/att_win_waku4_tex_1:
- addrs: [0x800bcb00, 0x800bcf00]
- bootdata/att_win_waku5_tex_1:
- addrs: [0x800bcf00, 0x800bd300]
- bootdata/att_win_waku6_tex_1:
- addrs: [0x800bd300, 0x800bd380]
- bootdata/gam_win2_v:
- addrs: [0x800bd380, 0x800bd6c0]
- type: vtx
- bootdata/gam_win_moji3_tex_1:
- addrs: [0x800bd820, 0x800bdd20]
- bootdata/gam_win_moji5_tex:
- addrs: [0x800bdd20, 0x800be0a0]
- bootdata/gam_win3_v:
- addrs: [0x800be0a0, 0x800be3e0]
- type: vtx
- bootdata/nintendo_376x104:
- addrs: [0x800be460, 0x800c30c0]
- bootdata/logo_nin_v:
- addrs: [0x800c30c0, 0x800c3100]
- type: vtx
- static/JSystem/JUtility/FontData/Ascfont_fix12.bfn:
- addrs: [0x800ab260, 0x800af3c0]
-
-config/rel.yml:
- con_waku_swaku3_tex: # m_choice
- addrs: [0x8064F880, 0x80650880]
- con_sentaku2_v:
- addrs: [0x80650880, 0x806508C0]
- type: vtx
- # m_msg
- wipe1_v:
- addrs: [0x80652AD0, 0x80652C60]
- type: vtx
- g_wipe1_txt:
- addrs: [0x80652C60, 0x80653460]
- msg/con_kaiwa2_w1_tex:
- addrs: [0x80657360, 0x80657B60]
- msg/con_kaiwa2_w2_tex:
- addrs: [0x80657B60, 0x80658B60]
- msg/con_kaiwa2_w3_tex:
- addrs: [0x80658B60, 0x80659B60]
- msg/con_kaiwa2_v:
- addrs: [0x80659B60, 0x80659CE0]
- type: vtx
- msg/con_namefuti_TXT:
- addrs: [0x80659D60, 0x8065A160]
- msg/con_kaiwaname_v:
- addrs: [0x8065A160, 0x8065A1A0]
- type: vtx
- # ac_boat_demo
- aBTD_island_prg:
- addrs: [0x8065FD4C, 0x80674F90]
- aBTD_island_ldr:
- addrs: [0x80674F90, 0x806817CC]
- mbg_v:
- addrs: [0x80684BB0, 0x80684C30]
- type: vtx
- # m_player
- tol_sponge_1_v:
- addrs: [0x8069E580, 0x8069E620]
- type: vtx
- tol_sponge_1_pal:
- addrs: [0x8069E620, 0x8069E640]
- type: pal16
- tol_sponge_1_main1_tex_txt:
- addrs: [0x8069E640, 0x8069E6C0]
- aKOI_obj_e_koinobori_a_pal:
- addrs: [0x806C5900, 0x806C5920]
- type: pal16
- obj_e_koinobori_b_pal:
- addrs: [0x806C5920, 0x806C5940]
- type: pal16
- # ac_lotus
- aLOT_obj_01_lotus_pal:
- addrs: [0x806C59E0, 0x806C5A00]
- type: pal16
- obj_02_lotus_pal:
- addrs: [0x806C5A00, 0x806C5A20]
- type: pal16
- obj_03_lotus_pal:
- addrs: [0x806C5A20, 0x806C5A40]
- type: pal16
- obj_04_lotus_pal:
- addrs: [0x806C5A40, 0x806C5A60]
- type: pal16
- obj_05_lotus_pal:
- addrs: [0x806C5A60, 0x806C5A80]
- type: pal16
- obj_06_lotus_pal:
- addrs: [0x806C5A80, 0x806C5AA0]
- type: pal16
- obj_07_lotus_pal:
- addrs: [0x806C5AA0, 0x806C5AC0]
- type: pal16
- obj_08_lotus_pal:
- addrs: [0x806C5AC0, 0x806C5AE0]
- type: pal16
- obj_09_lotus_pal:
- addrs: [0x806C5AE0, 0x806C5B00]
- type: pal16
- # ef_coin.o
- ef_coin_gold_pal:
- addrs: [0x806D20E0, 0x806D2100]
- type: pal16
- ef_coin_silver_pal:
- addrs: [0x806D2100, 0x806D2120]
- type: pal16
- # f_furniture.o
- int_nog_kamakura_off_pal:
- addrs: [0x806D79C0, 0x806D79E0]
- type: pal16
- int_nog_kamakura_on_pal:
- addrs: [0x806D79E0, 0x806D7A00]
- type: pal16
- int_nog_kouban_on_pal:
- addrs: [0x806D7B80, 0x806D7BA0]
- type: pal16
- int_nog_kouban_off_pal:
- addrs: [0x806D7BA0, 0x806D7BC0]
- type: pal16
- int_nog_museum_off_pal:
- addrs: [0x806D7D80, 0x806D7DA0]
- type: pal16
- int_nog_museum_on_pal:
- addrs: [0x806D7DA0, 0x806D7DC0]
- type: pal16
- int_nog_station1_a_pal:
- addrs: [0x806D8200, 0x806D8220]
- type: pal16
- int_nog_station1_b_pal:
- addrs: [0x806D8220, 0x806D8240]
- type: pal16
- int_nog_station1_c_pal:
- addrs: [0x806D8240, 0x806D8260]
- type: pal16
- int_nog_station1_d_pal:
- addrs: [0x806D8260, 0x806D8280]
- type: pal16
- int_nog_station1_e_pal:
- addrs: [0x806D8280, 0x806D82A0]
- type: pal16
- int_nog_station2_a_pal:
- addrs: [0x806D82A0, 0x806D82C0]
- type: pal16
- int_nog_station2_b_pal:
- addrs: [0x806D82C0, 0x806D82E0]
- type: pal16
- int_nog_station2_c_pal:
- addrs: [0x806D82E0, 0x806D8300]
- type: pal16
- int_nog_station2_d_pal:
- addrs: [0x806D8300, 0x806D8320]
- type: pal16
- int_nog_station2_e_pal:
- addrs: [0x806D8320, 0x806D8340]
- type: pal16
- int_nog_station3_a_pal:
- addrs: [0x806D8340, 0x806D8360]
- type: pal16
- int_nog_station3_b_pal:
- addrs: [0x806D8360, 0x806D8380]
- type: pal16
- int_nog_station3_c_pal:
- addrs: [0x806D8380, 0x806D83A0]
- type: pal16
- int_nog_station3_d_pal:
- addrs: [0x806D83A0, 0x806D83C0]
- type: pal16
- int_nog_station3_e_pal:
- addrs: [0x806D83C0, 0x806D83E0]
- type: pal16
- int_nog_shop1_on_pal:
- addrs: [0x806D8560, 0x806D8580]
- type: pal16
- int_nog_shop1_off_pal:
- addrs: [0x806D8580, 0x806D85A0]
- type: pal16
- int_nog_uranai_off_pal:
- addrs: [0x806D8900, 0x806D8920]
- type: pal16
- int_nog_uranai_on_pal:
- addrs: [0x806D8920, 0x806D8940]
- type: pal16
- int_nog_yamishop_off_pal:
- addrs: [0x806D89A0, 0x806D89C0]
- type: pal16
- int_nog_yamishop_on_pal:
- addrs: [0x806D89C0, 0x806D89E0]
- type: pal16
- int_nog_yubin_on_pal:
- addrs: [0x806D8A40, 0x806D8A60]
- type: pal16
- int_nog_yubin_off_pal:
- addrs: [0x806D8A60, 0x806D8A80]
- type: pal16
- int_tak_tailor_on_pal:
- addrs: [0x806DE200, 0x806DE220]
- type: pal16
- int_tak_tailor_off_pal:
- addrs: [0x806DE220, 0x806DE240]
- type: pal16
- radio_pal:
- addrs: [0x806DE600, 0x806DE620]
- type: pal16
- int_yaz_fish_trophy_pal:
- addrs: [0x806DF4C0, 0x806DF4E0]
- type: pal16
- int_tak_tent_on_pal:
- addrs: [0x806DFB40, 0x806DFB60]
- type: pal16
- int_tak_tent_off_pal:
- addrs: [0x806DFB60, 0x806DFB80]
- type: pal16
- int_yaz_fish_trophy2_pal:
- addrs: [0x806DFC40, 0x806DFC60]
- type: pal16
- int_nog_flower_a_pal:
- addrs: [0x806E0080, 0x806E00A0]
- type: pal16
- int_nog_flower_b_pal:
- addrs: [0x806E00A0, 0x806E00C0]
- type: pal16
- int_nog_flower_c_pal:
- addrs: [0x806E00C0, 0x806E00E0]
- type: pal16
-
- # flowers
- npc/mdl/bev_1_v:
- addrs: [0x806E03A0, 0x806E1DF0]
- type: vtx
- npc/tex/bev_1_pal:
- addrs: [0x806E27E0, 0x806E2800]
- type: pal16
- npc/tex/bev_1_eye1_TA_tex_txt:
- addrs: [0x806E2800, 0x806E2900]
- npc/tex/bev_1_eye2_TA_tex_txt:
- addrs: [0x806E2900, 0x806E2A00]
- npc/tex/bev_1_eye3_TA_tex_txt:
- addrs: [0x806E2A00, 0x806E2B00]
- npc/tex/bev_1_eye4_TA_tex_txt:
- addrs: [0x806E2B00, 0x806E2C00]
- npc/tex/bev_1_eye5_TA_tex_txt:
- addrs: [0x806E2C00, 0x806E2D00]
- npc/tex/bev_1_eye6_TA_tex_txt:
- addrs: [0x806E2D00, 0x806E2E00]
- npc/tex/bev_1_eye7_TA_tex_txt:
- addrs: [0x806E2E00, 0x806E2F00]
- npc/tex/bev_1_eye8_TA_tex_txt:
- addrs: [0x806E2F00, 0x806E3000]
- npc/tex/bev_1_tmem_txt:
- addrs: [0x806E3000, 0x806E3500]
- npc/mdl/ant_1_v:
- addrs: [0x806E3838, 0x806E4F68]
- type: vtx
- npc/tex/ant_1_pal:
- addrs: [0x806E5920, 0x806E5940]
- type: pal16
- npc/tex/ant_1_eye1_TA_tex_txt:
- addrs: [0x806E5940, 0x806E5A40]
- npc/tex/ant_1_eye2_TA_tex_txt:
- addrs: [0x806E5A40, 0x806E5B40]
- npc/tex/ant_1_eye3_TA_tex_txt:
- addrs: [0x806E5B40, 0x806E5C40]
- npc/tex/ant_1_eye4_TA_tex_txt:
- addrs: [0x806E5C40, 0x806E5D40]
- npc/tex/ant_1_eye5_TA_tex_txt:
- addrs: [0x806E5D40, 0x806E5E40]
- npc/tex/ant_1_eye6_TA_tex_txt:
- addrs: [0x806E5E40, 0x806E5F40]
- npc/tex/ant_1_eye7_TA_tex_txt:
- addrs: [0x806E5F40, 0x806E6040]
- npc/tex/ant_1_eye8_TA_tex_txt:
- addrs: [0x806E6040, 0x806E6140]
- npc/tex/ant_1_tmem_txt:
- addrs: [0x806E6140, 0x806E6640]
- npc/tex/ant_2_pal:
- addrs: [0x806E6640, 0x806E6660]
- type: pal16
- npc/tex/ant_2_eye1_TA_tex_txt:
- addrs: [0x806E6660, 0x806E6760]
- npc/tex/ant_2_eye2_TA_tex_txt:
- addrs: [0x806E6760, 0x806E6860]
- npc/tex/ant_2_eye3_TA_tex_txt:
- addrs: [0x806E6860, 0x806E6960]
- npc/tex/ant_2_eye4_TA_tex_txt:
- addrs: [0x806E6960, 0x806E6A60]
- npc/tex/ant_2_eye5_TA_tex_txt:
- addrs: [0x806E6A60, 0x806E6B60]
- npc/tex/ant_2_eye6_TA_tex_txt:
- addrs: [0x806E6B60, 0x806E6C60]
- npc/tex/ant_2_eye7_TA_tex_txt:
- addrs: [0x806E6C60, 0x806E6D60]
- npc/tex/ant_2_eye8_TA_tex_txt:
- addrs: [0x806E6D60, 0x806E6E60]
- npc/tex/ant_2_tmem_txt:
- addrs: [0x806E6E60, 0x806E7360]
- npc/tex/ant_3_pal:
- addrs: [0x806E7360, 0x806E7380]
- type: pal16
- npc/tex/ant_3_eye1_TA_tex_txt:
- addrs: [0x806E7380, 0x806E7480]
- npc/tex/ant_3_eye2_TA_tex_txt:
- addrs: [0x806E7480, 0x806E7580]
- npc/tex/ant_3_eye3_TA_tex_txt:
- addrs: [0x806E7580, 0x806E7680]
- npc/tex/ant_3_eye4_TA_tex_txt:
- addrs: [0x806E7680, 0x806E7780]
- npc/tex/ant_3_eye5_TA_tex_txt:
- addrs: [0x806E7780, 0x806E7880]
- npc/tex/ant_3_eye6_TA_tex_txt:
- addrs: [0x806E7880, 0x806E7980]
- npc/tex/ant_3_eye7_TA_tex_txt:
- addrs: [0x806E7980, 0x806E7A80]
- npc/tex/ant_3_eye8_TA_tex_txt:
- addrs: [0x806E7A80, 0x806E7B80]
- npc/tex/ant_3_tmem_txt:
- addrs: [0x806E7B80, 0x806E8080]
- npc/tex/ant_4_pal:
- addrs: [0x806E8080, 0x806E80A0]
- type: pal16
- npc/tex/ant_4_eye1_TA_tex_txt:
- addrs: [0x806E80A0, 0x806E81A0]
- npc/tex/ant_4_eye2_TA_tex_txt:
- addrs: [0x806E81A0, 0x806E82A0]
- npc/tex/ant_4_eye3_TA_tex_txt:
- addrs: [0x806E82A0, 0x806E83A0]
- npc/tex/ant_4_eye4_TA_tex_txt:
- addrs: [0x806E83A0, 0x806E84A0]
- npc/tex/ant_4_eye5_TA_tex_txt:
- addrs: [0x806E84A0, 0x806E85A0]
- npc/tex/ant_4_eye6_TA_tex_txt:
- addrs: [0x806E85A0, 0x806E86A0]
- npc/tex/ant_4_eye7_TA_tex_txt:
- addrs: [0x806E86A0, 0x806E87A0]
- npc/tex/ant_4_eye8_TA_tex_txt:
- addrs: [0x806E87A0, 0x806E88A0]
- npc/tex/ant_4_tmem_txt:
- addrs: [0x806E88A0, 0x806E8DA0]
- npc/tex/ant_5_pal:
- addrs: [0x806E8DA0, 0x806E8DC0]
- type: pal16
- npc/tex/ant_5_eye1_TA_tex_txt:
- addrs: [0x806E8DC0, 0x806E8EC0]
- npc/tex/ant_5_eye2_TA_tex_txt:
- addrs: [0x806E8EC0, 0x806E8FC0]
- npc/tex/ant_5_eye3_TA_tex_txt:
- addrs: [0x806E8FC0, 0x806E90C0]
- npc/tex/ant_5_eye4_TA_tex_txt:
- addrs: [0x806E90C0, 0x806E91C0]
- npc/tex/ant_5_eye5_TA_tex_txt:
- addrs: [0x806E91C0, 0x806E92C0]
- npc/tex/ant_5_eye6_TA_tex_txt:
- addrs: [0x806E92C0, 0x806E93C0]
- npc/tex/ant_5_eye7_TA_tex_txt:
- addrs: [0x806E93C0, 0x806E94C0]
- npc/tex/ant_5_eye8_TA_tex_txt:
- addrs: [0x806E94C0, 0x806E95C0]
- npc/tex/ant_5_tmem_txt:
- addrs: [0x806E95C0, 0x806E9AC0]
- npc/mdl/wls_1_v:
- addrs: [0x806E9AC0, 0x806EB510]
- type: vtx
- npc/tex/wls_1_pal:
- addrs: [0x806EC000, 0x806EC020]
- type: pal16
- npc/tex/wls_1_eye1_TA_tex_txt:
- addrs: [0x806EC020, 0x806EC120]
- npc/tex/wls_1_eye2_TA_tex_txt:
- addrs: [0x806EC120, 0x806EC220]
- npc/tex/wls_1_eye3_TA_tex_txt:
- addrs: [0x806EC220, 0x806EC320]
- npc/tex/wls_1_eye4_TA_tex_txt:
- addrs: [0x806EC320, 0x806EC420]
- npc/tex/wls_1_eye5_TA_tex_txt:
- addrs: [0x806EC420, 0x806EC520]
- npc/tex/wls_1_eye6_TA_tex_txt:
- addrs: [0x806EC520, 0x806EC620]
- npc/tex/wls_1_eye7_TA_tex_txt:
- addrs: [0x806EC620, 0x806EC720]
- npc/tex/wls_1_eye8_TA_tex_txt:
- addrs: [0x806EC720, 0x806EC820]
- npc/tex/wls_1_tmem_txt:
- addrs: [0x806EC820, 0x806ECFA0]
- npc/mdl/bea_1_v:
- addrs: [0x806EF078, 0x806F0798]
- type: vtx
- npc/tex/bea_1_pal:
- addrs: [0x806F1040, 0x806F1060]
- type: pal16
- npc/tex/bea_1_eye1_TA_tex_txt:
- addrs: [0x806F1060, 0x806F1160]
- npc/tex/bea_1_eye2_TA_tex_txt:
- addrs: [0x806F1160, 0x806F1260]
- npc/tex/bea_1_eye3_TA_tex_txt:
- addrs: [0x806F1260, 0x806F1360]
- npc/tex/bea_1_eye4_TA_tex_txt:
- addrs: [0x806F1360, 0x806F1460]
- npc/tex/bea_1_eye5_TA_tex_txt:
- addrs: [0x806F1460, 0x806F1560]
- npc/tex/bea_1_eye6_TA_tex_txt:
- addrs: [0x806F1560, 0x806F1660]
- npc/tex/bea_1_eye7_TA_tex_txt:
- addrs: [0x806F1660, 0x806F1760]
- npc/tex/bea_1_eye8_TA_tex_txt:
- addrs: [0x806F1760, 0x806F1860]
- npc/tex/bea_1_mouth1_TA_tex_txt:
- addrs: [0x806F1860, 0x806F1960]
- npc/tex/bea_1_mouth2_TA_tex_txt:
- addrs: [0x806F1960, 0x806F1A60]
- npc/tex/bea_1_mouth3_TA_tex_txt:
- addrs: [0x806F1A60, 0x806F1B60]
- npc/tex/bea_1_mouth4_TA_tex_txt:
- addrs: [0x806F1B60, 0x806F1C60]
- npc/tex/bea_1_mouth5_TA_tex_txt:
- addrs: [0x806F1C60, 0x806F1D60]
- npc/tex/bea_1_mouth6_TA_tex_txt:
- addrs: [0x806F1D60, 0x806F1E60]
- npc/tex/bea_1_tmem_txt:
- addrs: [0x806F1E60, 0x806F2260]
- npc/tex/bea_2_pal:
- addrs: [0x806F2260, 0x806F2280]
- type: pal16
- npc/tex/bea_2_eye1_TA_tex_txt:
- addrs: [0x806F2280, 0x806F2380]
- npc/tex/bea_2_eye2_TA_tex_txt:
- addrs: [0x806F2380, 0x806F2480]
- npc/tex/bea_2_eye3_TA_tex_txt:
- addrs: [0x806F2480, 0x806F2580]
- npc/tex/bea_2_eye4_TA_tex_txt:
- addrs: [0x806F2580, 0x806F2680]
- npc/tex/bea_2_eye5_TA_tex_txt:
- addrs: [0x806F2680, 0x806F2780]
- npc/tex/bea_2_eye6_TA_tex_txt:
- addrs: [0x806F2780, 0x806F2880]
- npc/tex/bea_2_eye7_TA_tex_txt:
- addrs: [0x806F2880, 0x806F2980]
- npc/tex/bea_2_eye8_TA_tex_txt:
- addrs: [0x806F2980, 0x806F2A80]
- npc/tex/bea_2_mouth1_TA_tex_txt:
- addrs: [0x806F2A80, 0x806F2B80]
- npc/tex/bea_2_mouth2_TA_tex_txt:
- addrs: [0x806F2B80, 0x806F2C80]
- npc/tex/bea_2_mouth3_TA_tex_txt:
- addrs: [0x806F2C80, 0x806F2D80]
- npc/tex/bea_2_mouth4_TA_tex_txt:
- addrs: [0x806F2D80, 0x806F2E80]
- npc/tex/bea_2_mouth5_TA_tex_txt:
- addrs: [0x806F2E80, 0x806F2F80]
- npc/tex/bea_2_mouth6_TA_tex_txt:
- addrs: [0x806F2F80, 0x806F3080]
- npc/tex/bea_2_tmem_txt:
- addrs: [0x806F3080, 0x806F3480]
- npc/tex/bea_3_pal:
- addrs: [0x806F3480, 0x806F34A0]
- type: pal16
- npc/tex/bea_3_eye1_TA_tex_txt:
- addrs: [0x806F34A0, 0x806F35A0]
- npc/tex/bea_3_eye2_TA_tex_txt:
- addrs: [0x806F35A0, 0x806F36A0]
- npc/tex/bea_3_eye3_TA_tex_txt:
- addrs: [0x806F36A0, 0x806F37A0]
- npc/tex/bea_3_eye4_TA_tex_txt:
- addrs: [0x806F37A0, 0x806F38A0]
- npc/tex/bea_3_eye5_TA_tex_txt:
- addrs: [0x806F38A0, 0x806F39A0]
- npc/tex/bea_3_eye6_TA_tex_txt:
- addrs: [0x806F39A0, 0x806F3AA0]
- npc/tex/bea_3_eye7_TA_tex_txt:
- addrs: [0x806F3AA0, 0x806F3BA0]
- npc/tex/bea_3_eye8_TA_tex_txt:
- addrs: [0x806F3BA0, 0x806F3CA0]
- npc/tex/bea_3_mouth1_TA_tex_txt:
- addrs: [0x806F3CA0, 0x806F3DA0]
- npc/tex/bea_3_mouth2_TA_tex_txt:
- addrs: [0x806F3DA0, 0x806F3EA0]
- npc/tex/bea_3_mouth3_TA_tex_txt:
- addrs: [0x806F3EA0, 0x806F3FA0]
- npc/tex/bea_3_mouth4_TA_tex_txt:
- addrs: [0x806F3FA0, 0x806F40A0]
- npc/tex/bea_3_mouth5_TA_tex_txt:
- addrs: [0x806F40A0, 0x806F41A0]
- npc/tex/bea_3_mouth6_TA_tex_txt:
- addrs: [0x806F41A0, 0x806F42A0]
- npc/tex/bea_3_tmem_txt:
- addrs: [0x806F42A0, 0x806F46A0]
- npc/tex/bea_5_pal:
- addrs: [0x806F46A0, 0x806F46C0]
- type: pal16
- npc/tex/bea_5_eye1_TA_tex_txt:
- addrs: [0x806F46C0, 0x806F47C0]
- npc/tex/bea_5_eye2_TA_tex_txt:
- addrs: [0x806F47C0, 0x806F48C0]
- npc/tex/bea_5_eye3_TA_tex_txt:
- addrs: [0x806F48C0, 0x806F49C0]
- npc/tex/bea_5_eye4_TA_tex_txt:
- addrs: [0x806F49C0, 0x806F4AC0]
- npc/tex/bea_5_eye5_TA_tex_txt:
- addrs: [0x806F4AC0, 0x806F4BC0]
- npc/tex/bea_5_eye6_TA_tex_txt:
- addrs: [0x806F4BC0, 0x806F4CC0]
- npc/tex/bea_5_eye7_TA_tex_txt:
- addrs: [0x806F4CC0, 0x806F4DC0]
- npc/tex/bea_5_eye8_TA_tex_txt:
- addrs: [0x806F4DC0, 0x806F4EC0]
- npc/tex/bea_5_mouth1_TA_tex_txt:
- addrs: [0x806F4EC0, 0x806F4FC0]
- npc/tex/bea_5_mouth2_TA_tex_txt:
- addrs: [0x806F4FC0, 0x806F50C0]
- npc/tex/bea_5_mouth3_TA_tex_txt:
- addrs: [0x806F50C0, 0x806F51C0]
- npc/tex/bea_5_mouth4_TA_tex_txt:
- addrs: [0x806F51C0, 0x806F52C0]
- npc/tex/bea_5_mouth5_TA_tex_txt:
- addrs: [0x806F52C0, 0x806F53C0]
- npc/tex/bea_5_mouth6_TA_tex_txt:
- addrs: [0x806F53C0, 0x806F54C0]
- npc/tex/bea_5_tmem_txt:
- addrs: [0x806F54C0, 0x806F58C0]
- npc/tex/bea_6_pal:
- addrs: [0x806F58C0, 0x806F58E0]
- type: pal16
- npc/tex/bea_6_eye1_TA_tex_txt:
- addrs: [0x806F58E0, 0x806F59E0]
- npc/tex/bea_6_eye2_TA_tex_txt:
- addrs: [0x806F59E0, 0x806F5AE0]
- npc/tex/bea_6_eye3_TA_tex_txt:
- addrs: [0x806F5AE0, 0x806F5BE0]
- npc/tex/bea_6_eye4_TA_tex_txt:
- addrs: [0x806F5BE0, 0x806F5CE0]
- npc/tex/bea_6_eye5_TA_tex_txt:
- addrs: [0x806F5CE0, 0x806F5DE0]
- npc/tex/bea_6_eye6_TA_tex_txt:
- addrs: [0x806F5DE0, 0x806F5EE0]
- npc/tex/bea_6_eye7_TA_tex_txt:
- addrs: [0x806F5EE0, 0x806F5FE0]
- npc/tex/bea_6_eye8_TA_tex_txt:
- addrs: [0x806F5FE0, 0x806F60E0]
- npc/tex/bea_6_mouth1_TA_tex_txt:
- addrs: [0x806F60E0, 0x806F61E0]
- npc/tex/bea_6_mouth2_TA_tex_txt:
- addrs: [0x806F61E0, 0x806F62E0]
- npc/tex/bea_6_mouth3_TA_tex_txt:
- addrs: [0x806F62E0, 0x806F63E0]
- npc/tex/bea_6_mouth4_TA_tex_txt:
- addrs: [0x806F63E0, 0x806F64E0]
- npc/tex/bea_6_mouth5_TA_tex_txt:
- addrs: [0x806F64E0, 0x806F65E0]
- npc/tex/bea_6_mouth6_TA_tex_txt:
- addrs: [0x806F65E0, 0x806F66E0]
- npc/tex/bea_6_tmem_txt:
- addrs: [0x806F66E0, 0x806F6AE0]
- npc/tex/bea_7_pal:
- addrs: [0x806F6AE0, 0x806F6B00]
- type: pal16
- npc/tex/bea_7_eye1_TA_tex_txt:
- addrs: [0x806F6B00, 0x806F6C00]
- npc/tex/bea_7_eye2_TA_tex_txt:
- addrs: [0x806F6C00, 0x806F6D00]
- npc/tex/bea_7_eye3_TA_tex_txt:
- addrs: [0x806F6D00, 0x806F6E00]
- npc/tex/bea_7_eye4_TA_tex_txt:
- addrs: [0x806F6E00, 0x806F6F00]
- npc/tex/bea_7_eye5_TA_tex_txt:
- addrs: [0x806F6F00, 0x806F7000]
- npc/tex/bea_7_eye6_TA_tex_txt:
- addrs: [0x806F7000, 0x806F7100]
- npc/tex/bea_7_eye7_TA_tex_txt:
- addrs: [0x806F7100, 0x806F7200]
- npc/tex/bea_7_eye8_TA_tex_txt:
- addrs: [0x806F7200, 0x806F7300]
- npc/tex/bea_7_mouth1_TA_tex_txt:
- addrs: [0x806F7300, 0x806F7400]
- npc/tex/bea_7_mouth2_TA_tex_txt:
- addrs: [0x806F7400, 0x806F7500]
- npc/tex/bea_7_mouth3_TA_tex_txt:
- addrs: [0x806F7500, 0x806F7600]
- npc/tex/bea_7_mouth4_TA_tex_txt:
- addrs: [0x806F7600, 0x806F7700]
- npc/tex/bea_7_mouth5_TA_tex_txt:
- addrs: [0x806F7700, 0x806F7800]
- npc/tex/bea_7_mouth6_TA_tex_txt:
- addrs: [0x806F7800, 0x806F7900]
- npc/tex/bea_7_tmem_txt:
- addrs: [0x806F7900, 0x806F7D00]
- npc/tex/bea_8_pal:
- addrs: [0x806F7D00, 0x806F7D20]
- type: pal16
- npc/tex/bea_8_eye1_TA_tex_txt:
- addrs: [0x806F7D20, 0x806F7E20]
- npc/tex/bea_8_eye2_TA_tex_txt:
- addrs: [0x806F7E20, 0x806F7F20]
- npc/tex/bea_8_eye3_TA_tex_txt:
- addrs: [0x806F7F20, 0x806F8020]
- npc/tex/bea_8_eye4_TA_tex_txt:
- addrs: [0x806F8020, 0x806F8120]
- npc/tex/bea_8_eye5_TA_tex_txt:
- addrs: [0x806F8120, 0x806F8220]
- npc/tex/bea_8_eye6_TA_tex_txt:
- addrs: [0x806F8220, 0x806F8320]
- npc/tex/bea_8_eye7_TA_tex_txt:
- addrs: [0x806F8320, 0x806F8420]
- npc/tex/bea_8_eye8_TA_tex_txt:
- addrs: [0x806F8420, 0x806F8520]
- npc/tex/bea_8_mouth1_TA_tex_txt:
- addrs: [0x806F8520, 0x806F8620]
- npc/tex/bea_8_mouth2_TA_tex_txt:
- addrs: [0x806F8620, 0x806F8720]
- npc/tex/bea_8_mouth3_TA_tex_txt:
- addrs: [0x806F8720, 0x806F8820]
- npc/tex/bea_8_mouth4_TA_tex_txt:
- addrs: [0x806F8820, 0x806F8920]
- npc/tex/bea_8_mouth5_TA_tex_txt:
- addrs: [0x806F8920, 0x806F8A20]
- npc/tex/bea_8_mouth6_TA_tex_txt:
- addrs: [0x806F8A20, 0x806F8B20]
- npc/tex/bea_8_tmem_txt:
- addrs: [0x806F8B20, 0x806F8F20]
- npc/tex/bea_9_pal:
- addrs: [0x806F8F20, 0x806F8F40]
- type: pal16
- npc/tex/bea_9_eye1_TA_tex_txt:
- addrs: [0x806F8F40, 0x806F9040]
- npc/tex/bea_9_eye2_TA_tex_txt:
- addrs: [0x806F9040, 0x806F9140]
- npc/tex/bea_9_eye3_TA_tex_txt:
- addrs: [0x806F9140, 0x806F9240]
- npc/tex/bea_9_eye4_TA_tex_txt:
- addrs: [0x806F9240, 0x806F9340]
- npc/tex/bea_9_eye5_TA_tex_txt:
- addrs: [0x806F9340, 0x806F9440]
- npc/tex/bea_9_eye6_TA_tex_txt:
- addrs: [0x806F9440, 0x806F9540]
- npc/tex/bea_9_eye7_TA_tex_txt:
- addrs: [0x806F9540, 0x806F9640]
- npc/tex/bea_9_eye8_TA_tex_txt:
- addrs: [0x806F9640, 0x806F9740]
- npc/tex/bea_9_mouth1_TA_tex_txt:
- addrs: [0x806F9740, 0x806F9840]
- npc/tex/bea_9_mouth2_TA_tex_txt:
- addrs: [0x806F9840, 0x806F9940]
- npc/tex/bea_9_mouth3_TA_tex_txt:
- addrs: [0x806F9940, 0x806F9A40]
- npc/tex/bea_9_mouth4_TA_tex_txt:
- addrs: [0x806F9A40, 0x806F9B40]
- npc/tex/bea_9_mouth5_TA_tex_txt:
- addrs: [0x806F9B40, 0x806F9C40]
- npc/tex/bea_9_mouth6_TA_tex_txt:
- addrs: [0x806F9C40, 0x806F9D40]
- npc/tex/bea_9_tmem_txt:
- addrs: [0x806F9D40, 0x806FA140]
- npc/tex/bea_10_pal:
- addrs: [0x806FA140, 0x806FA160]
- type: pal16
- npc/tex/bea_10_eye1_TA_tex_txt:
- addrs: [0x806FA160, 0x806FA260]
- npc/tex/bea_10_eye2_TA_tex_txt:
- addrs: [0x806FA260, 0x806FA360]
- npc/tex/bea_10_eye3_TA_tex_txt:
- addrs: [0x806FA360, 0x806FA460]
- npc/tex/bea_10_eye4_TA_tex_txt:
- addrs: [0x806FA460, 0x806FA560]
- npc/tex/bea_10_eye5_TA_tex_txt:
- addrs: [0x806FA560, 0x806FA660]
- npc/tex/bea_10_eye6_TA_tex_txt:
- addrs: [0x806FA660, 0x806FA760]
- npc/tex/bea_10_eye7_TA_tex_txt:
- addrs: [0x806FA760, 0x806FA860]
- npc/tex/bea_10_eye8_TA_tex_txt:
- addrs: [0x806FA860, 0x806FA960]
- npc/tex/bea_10_mouth1_TA_tex_txt:
- addrs: [0x806FA960, 0x806FAA60]
- npc/tex/bea_10_mouth2_TA_tex_txt:
- addrs: [0x806FAA60, 0x806FAB60]
- npc/tex/bea_10_mouth3_TA_tex_txt:
- addrs: [0x806FAB60, 0x806FAC60]
- npc/tex/bea_10_mouth4_TA_tex_txt:
- addrs: [0x806FAC60, 0x806FAD60]
- npc/tex/bea_10_mouth5_TA_tex_txt:
- addrs: [0x806FAD60, 0x806FAE60]
- npc/tex/bea_10_mouth6_TA_tex_txt:
- addrs: [0x806FAE60, 0x806FAF60]
- npc/tex/bea_10_tmem_txt:
- addrs: [0x806FAF60, 0x806FB360]
- flower/obj_flower_tex:
- addrs: [0x8074FE80, 0x80750680]
- flower/obj_flower_a_v:
- addrs: [0x80750680, 0x80750700]
- type: vtx
- flower/obj_flower_b_v:
- addrs: [0x80750700, 0x80750780]
- type: vtx
- flower/obj_flower_c_v:
- addrs: [0x80750780, 0x80750800]
- type: vtx
- flower/obj_flower_leaf_tex:
- addrs: [0x807508C0, 0x807510C0]
- flower/obj_flower_leaf_v:
- addrs: [0x807510C0, 0x80751100]
- type: vtx
-
- # dataobj.obj item names
- npc/mdl/pbr_1_v:
- addrs: [0x8076DFA8, 0x8076F6E8]
- type: vtx
- npc/tex/pbr_1_pal:
- addrs: [0x80770180, 0x807701A0]
- type: pal16
- npc/tex/pbr_1_eye1_TA_tex_txt:
- addrs: [0x807701A0, 0x807702A0]
- npc/tex/pbr_1_eye2_TA_tex_txt:
- addrs: [0x807702A0, 0x807703A0]
- npc/tex/pbr_1_eye3_TA_tex_txt:
- addrs: [0x807703A0, 0x807704A0]
- npc/tex/pbr_1_eye4_TA_tex_txt:
- addrs: [0x807704A0, 0x807705A0]
- npc/tex/pbr_1_eye5_TA_tex_txt:
- addrs: [0x807705A0, 0x807706A0]
- npc/tex/pbr_1_eye6_TA_tex_txt:
- addrs: [0x807706A0, 0x807707A0]
- npc/tex/pbr_1_eye7_TA_tex_txt:
- addrs: [0x807707A0, 0x807708A0]
- npc/tex/pbr_1_eye8_TA_tex_txt:
- addrs: [0x807708A0, 0x807709A0]
- npc/tex/pbr_1_tmem_txt:
- addrs: [0x807709A0, 0x80770EA0]
- npc/tex/pbr_2_pal:
- addrs: [0x80770EA0, 0x80770EC0]
- type: pal16
- npc/tex/pbr_2_eye1_TA_tex_txt:
- addrs: [0x80770EC0, 0x80770FC0]
- npc/tex/pbr_2_eye2_TA_tex_txt:
- addrs: [0x80770FC0, 0x807710C0]
- npc/tex/pbr_2_eye3_TA_tex_txt:
- addrs: [0x807710C0, 0x807711C0]
- npc/tex/pbr_2_eye4_TA_tex_txt:
- addrs: [0x807711C0, 0x807712C0]
- npc/tex/pbr_2_eye5_TA_tex_txt:
- addrs: [0x807712C0, 0x807713C0]
- npc/tex/pbr_2_eye6_TA_tex_txt:
- addrs: [0x807713C0, 0x807714C0]
- npc/tex/pbr_2_eye7_TA_tex_txt:
- addrs: [0x807714C0, 0x807715C0]
- npc/tex/pbr_2_eye8_TA_tex_txt:
- addrs: [0x807715C0, 0x807716C0]
- npc/tex/pbr_2_tmem_txt:
- addrs: [0x807716C0, 0x80771BC0]
- npc/tex/pbr_3_pal:
- addrs: [0x80771BC0, 0x80771BE0]
- type: pal16
- npc/tex/pbr_3_eye1_TA_tex_txt:
- addrs: [0x80771BE0, 0x80771CE0]
- npc/tex/pbr_3_eye2_TA_tex_txt:
- addrs: [0x80771CE0, 0x80771DE0]
- npc/tex/pbr_3_eye3_TA_tex_txt:
- addrs: [0x80771DE0, 0x80771EE0]
- npc/tex/pbr_3_eye4_TA_tex_txt:
- addrs: [0x80771EE0, 0x80771FE0]
- npc/tex/pbr_3_eye5_TA_tex_txt:
- addrs: [0x80771FE0, 0x807720E0]
- npc/tex/pbr_3_eye6_TA_tex_txt:
- addrs: [0x807720E0, 0x807721E0]
- npc/tex/pbr_3_eye7_TA_tex_txt:
- addrs: [0x807721E0, 0x807722E0]
- npc/tex/pbr_3_eye8_TA_tex_txt:
- addrs: [0x807722E0, 0x807723E0]
- npc/tex/pbr_3_tmem_txt:
- addrs: [0x807723E0, 0x807728E0]
- npc/tex/pbr_4_pal:
- addrs: [0x807728E0, 0x80772900]
- type: pal16
- npc/tex/pbr_4_eye1_TA_tex_txt:
- addrs: [0x80772900, 0x80772A00]
- npc/tex/pbr_4_eye2_TA_tex_txt:
- addrs: [0x80772A00, 0x80772B00]
- npc/tex/pbr_4_eye3_TA_tex_txt:
- addrs: [0x80772B00, 0x80772C00]
- npc/tex/pbr_4_eye4_TA_tex_txt:
- addrs: [0x80772C00, 0x80772D00]
- npc/tex/pbr_4_eye5_TA_tex_txt:
- addrs: [0x80772D00, 0x80772E00]
- npc/tex/pbr_4_eye6_TA_tex_txt:
- addrs: [0x80772E00, 0x80772F00]
- npc/tex/pbr_4_eye7_TA_tex_txt:
- addrs: [0x80772F00, 0x80773000]
- npc/tex/pbr_4_eye8_TA_tex_txt:
- addrs: [0x80773000, 0x80773100]
- npc/tex/pbr_4_tmem_txt:
- addrs: [0x80773100, 0x80773600]
- npc/tex/pbr_5_pal:
- addrs: [0x80773600, 0x80773620]
- type: pal16
- npc/tex/pbr_5_eye1_TA_tex_txt:
- addrs: [0x80773620, 0x80773720]
- npc/tex/pbr_5_eye2_TA_tex_txt:
- addrs: [0x80773720, 0x80773820]
- npc/tex/pbr_5_eye3_TA_tex_txt:
- addrs: [0x80773820, 0x80773920]
- npc/tex/pbr_5_eye4_TA_tex_txt:
- addrs: [0x80773920, 0x80773A20]
- npc/tex/pbr_5_eye5_TA_tex_txt:
- addrs: [0x80773A20, 0x80773B20]
- npc/tex/pbr_5_eye6_TA_tex_txt:
- addrs: [0x80773B20, 0x80773C20]
- npc/tex/pbr_5_eye7_TA_tex_txt:
- addrs: [0x80773C20, 0x80773D20]
- npc/tex/pbr_5_eye8_TA_tex_txt:
- addrs: [0x80773D20, 0x80773E20]
- npc/tex/pbr_5_tmem_txt:
- addrs: [0x80773E20, 0x80774320]
- npc/mdl/brd_1_v:
- addrs: [0x80774320, 0x80775920]
- type: vtx
- npc/tex/brd_1_pal:
- addrs: [0x80776360, 0x80776380]
- type: pal16
- npc/tex/brd_1_eye1_TA_tex_txt:
- addrs: [0x80776380, 0x80776480]
- npc/tex/brd_1_eye2_TA_tex_txt:
- addrs: [0x80776480, 0x80776580]
- npc/tex/brd_1_eye3_TA_tex_txt:
- addrs: [0x80776580, 0x80776680]
- npc/tex/brd_1_eye4_TA_tex_txt:
- addrs: [0x80776680, 0x80776780]
- npc/tex/brd_1_eye5_TA_tex_txt:
- addrs: [0x80776780, 0x80776880]
- npc/tex/brd_1_eye6_TA_tex_txt:
- addrs: [0x80776880, 0x80776980]
- npc/tex/brd_1_eye7_TA_tex_txt:
- addrs: [0x80776980, 0x80776A80]
- npc/tex/brd_1_eye8_TA_tex_txt:
- addrs: [0x80776A80, 0x80776B80]
- npc/tex/brd_1_tmem_txt:
- addrs: [0x80776B80, 0x80777080]
- npc/tex/brd_2_pal:
- addrs: [0x80777080, 0x807770A0]
- type: pal16
- npc/tex/brd_2_eye1_TA_tex_txt:
- addrs: [0x807770A0, 0x807771A0]
- npc/tex/brd_2_eye2_TA_tex_txt:
- addrs: [0x807771A0, 0x807772A0]
- npc/tex/brd_2_eye3_TA_tex_txt:
- addrs: [0x807772A0, 0x807773A0]
- npc/tex/brd_2_eye4_TA_tex_txt:
- addrs: [0x807773A0, 0x807774A0]
- npc/tex/brd_2_eye5_TA_tex_txt:
- addrs: [0x807774A0, 0x807775A0]
- npc/tex/brd_2_eye6_TA_tex_txt:
- addrs: [0x807775A0, 0x807776A0]
- npc/tex/brd_2_eye7_TA_tex_txt:
- addrs: [0x807776A0, 0x807777A0]
- npc/tex/brd_2_eye8_TA_tex_txt:
- addrs: [0x807777A0, 0x807778A0]
- npc/tex/brd_2_tmem_txt:
- addrs: [0x807778A0, 0x80777DA0]
- npc/tex/brd_11_pal:
- addrs: [0x80777DA0, 0x80777DC0]
- type: pal16
- npc/tex/brd_11_eye1_TA_tex_txt:
- addrs: [0x80777DC0, 0x80777EC0]
- npc/tex/brd_11_eye2_TA_tex_txt:
- addrs: [0x80777EC0, 0x80777FC0]
- npc/tex/brd_11_eye3_TA_tex_txt:
- addrs: [0x80777FC0, 0x807780C0]
- npc/tex/brd_11_eye4_TA_tex_txt:
- addrs: [0x807780C0, 0x807781C0]
- npc/tex/brd_11_eye5_TA_tex_txt:
- addrs: [0x807781C0, 0x807782C0]
- npc/tex/brd_11_eye6_TA_tex_txt:
- addrs: [0x807782C0, 0x807783C0]
- npc/tex/brd_11_eye7_TA_tex_txt:
- addrs: [0x807783C0, 0x807784C0]
- npc/tex/brd_11_eye8_TA_tex_txt:
- addrs: [0x807784C0, 0x807785C0]
- npc/tex/brd_11_tmem_txt:
- addrs: [0x807785C0, 0x80778AC0]
- npc/tex/brd_3_pal:
- addrs: [0x80778AC0, 0x80778AE0]
- type: pal16
- npc/tex/brd_3_eye1_TA_tex_txt:
- addrs: [0x80778AE0, 0x80778BE0]
- npc/tex/brd_3_eye2_TA_tex_txt:
- addrs: [0x80778BE0, 0x80778CE0]
- npc/tex/brd_3_eye3_TA_tex_txt:
- addrs: [0x80778CE0, 0x80778DE0]
- npc/tex/brd_3_eye4_TA_tex_txt:
- addrs: [0x80778DE0, 0x80778EE0]
- npc/tex/brd_3_eye5_TA_tex_txt:
- addrs: [0x80778EE0, 0x80778FE0]
- npc/tex/brd_3_eye6_TA_tex_txt:
- addrs: [0x80778FE0, 0x807790E0]
- npc/tex/brd_3_eye7_TA_tex_txt:
- addrs: [0x807790E0, 0x807791E0]
- npc/tex/brd_3_eye8_TA_tex_txt:
- addrs: [0x807791E0, 0x807792E0]
- npc/tex/brd_3_tmem_txt:
- addrs: [0x807792E0, 0x807797E0]
- npc/tex/brd_4_pal:
- addrs: [0x807797E0, 0x80779800]
- type: pal16
- npc/tex/brd_4_eye1_TA_tex_txt:
- addrs: [0x80779800, 0x80779900]
- npc/tex/brd_4_eye2_TA_tex_txt:
- addrs: [0x80779900, 0x80779A00]
- npc/tex/brd_4_eye3_TA_tex_txt:
- addrs: [0x80779A00, 0x80779B00]
- npc/tex/brd_4_eye4_TA_tex_txt:
- addrs: [0x80779B00, 0x80779C00]
- npc/tex/brd_4_eye5_TA_tex_txt:
- addrs: [0x80779C00, 0x80779D00]
- npc/tex/brd_4_eye6_TA_tex_txt:
- addrs: [0x80779D00, 0x80779E00]
- npc/tex/brd_4_eye7_TA_tex_txt:
- addrs: [0x80779E00, 0x80779F00]
- npc/tex/brd_4_eye8_TA_tex_txt:
- addrs: [0x80779F00, 0x8077A000]
- npc/tex/brd_4_tmem_txt:
- addrs: [0x8077A000, 0x8077A500]
- npc/tex/brd_5_pal:
- addrs: [0x8077A500, 0x8077A520]
- type: pal16
- npc/tex/brd_5_eye1_TA_tex_txt:
- addrs: [0x8077A520, 0x8077A620]
- npc/tex/brd_5_eye2_TA_tex_txt:
- addrs: [0x8077A620, 0x8077A720]
- npc/tex/brd_5_eye3_TA_tex_txt:
- addrs: [0x8077A720, 0x8077A820]
- npc/tex/brd_5_eye4_TA_tex_txt:
- addrs: [0x8077A820, 0x8077A920]
- npc/tex/brd_5_eye5_TA_tex_txt:
- addrs: [0x8077A920, 0x8077AA20]
- npc/tex/brd_5_eye6_TA_tex_txt:
- addrs: [0x8077AA20, 0x8077AB20]
- npc/tex/brd_5_eye7_TA_tex_txt:
- addrs: [0x8077AB20, 0x8077AC20]
- npc/tex/brd_5_eye8_TA_tex_txt:
- addrs: [0x8077AC20, 0x8077AD20]
- npc/tex/brd_5_tmem_txt:
- addrs: [0x8077AD20, 0x8077B220]
- npc/tex/brd_6_pal:
- addrs: [0x8077B220, 0x8077B240]
- type: pal16
- npc/tex/brd_6_eye1_TA_tex_txt:
- addrs: [0x8077B240, 0x8077B340]
- npc/tex/brd_6_eye2_TA_tex_txt:
- addrs: [0x8077B340, 0x8077B440]
- npc/tex/brd_6_eye3_TA_tex_txt:
- addrs: [0x8077B440, 0x8077B540]
- npc/tex/brd_6_eye4_TA_tex_txt:
- addrs: [0x8077B540, 0x8077B640]
- npc/tex/brd_6_eye5_TA_tex_txt:
- addrs: [0x8077B640, 0x8077B740]
- npc/tex/brd_6_eye6_TA_tex_txt:
- addrs: [0x8077B740, 0x8077B840]
- npc/tex/brd_6_eye7_TA_tex_txt:
- addrs: [0x8077B840, 0x8077B940]
- npc/tex/brd_6_eye8_TA_tex_txt:
- addrs: [0x8077B940, 0x8077BA40]
- npc/tex/brd_6_tmem_txt:
- addrs: [0x8077BA40, 0x8077BF40]
- npc/tex/brd_7_pal:
- addrs: [0x8077BF40, 0x8077BF60]
- type: pal16
- npc/tex/brd_7_eye1_TA_tex_txt:
- addrs: [0x8077BF60, 0x8077C060]
- npc/tex/brd_7_eye2_TA_tex_txt:
- addrs: [0x8077C060, 0x8077C160]
- npc/tex/brd_7_eye3_TA_tex_txt:
- addrs: [0x8077C160, 0x8077C260]
- npc/tex/brd_7_eye4_TA_tex_txt:
- addrs: [0x8077C260, 0x8077C360]
- npc/tex/brd_7_eye5_TA_tex_txt:
- addrs: [0x8077C360, 0x8077C460]
- npc/tex/brd_7_eye6_TA_tex_txt:
- addrs: [0x8077C460, 0x8077C560]
- npc/tex/brd_7_eye7_TA_tex_txt:
- addrs: [0x8077C560, 0x8077C660]
- npc/tex/brd_7_eye8_TA_tex_txt:
- addrs: [0x8077C660, 0x8077C760]
- npc/tex/brd_7_tmem_txt:
- addrs: [0x8077C760, 0x8077CC60]
- npc/tex/brd_8_pal:
- addrs: [0x8077CC60, 0x8077CC80]
- type: pal16
- npc/tex/brd_8_eye1_TA_tex_txt:
- addrs: [0x8077CC80, 0x8077CD80]
- npc/tex/brd_8_eye2_TA_tex_txt:
- addrs: [0x8077CD80, 0x8077CE80]
- npc/tex/brd_8_eye3_TA_tex_txt:
- addrs: [0x8077CE80, 0x8077CF80]
- npc/tex/brd_8_eye4_TA_tex_txt:
- addrs: [0x8077CF80, 0x8077D080]
- npc/tex/brd_8_eye5_TA_tex_txt:
- addrs: [0x8077D080, 0x8077D180]
- npc/tex/brd_8_eye6_TA_tex_txt:
- addrs: [0x8077D180, 0x8077D280]
- npc/tex/brd_8_eye7_TA_tex_txt:
- addrs: [0x8077D280, 0x8077D380]
- npc/tex/brd_8_eye8_TA_tex_txt:
- addrs: [0x8077D380, 0x8077D480]
- npc/tex/brd_8_tmem_txt:
- addrs: [0x8077D480, 0x8077D980]
- npc/tex/brd_9_pal:
- addrs: [0x8077D980, 0x8077D9A0]
- type: pal16
- npc/tex/brd_9_eye1_TA_tex_txt:
- addrs: [0x8077D9A0, 0x8077DAA0]
- npc/tex/brd_9_eye2_TA_tex_txt:
- addrs: [0x8077DAA0, 0x8077DBA0]
- npc/tex/brd_9_eye3_TA_tex_txt:
- addrs: [0x8077DBA0, 0x8077DCA0]
- npc/tex/brd_9_eye4_TA_tex_txt:
- addrs: [0x8077DCA0, 0x8077DDA0]
- npc/tex/brd_9_eye5_TA_tex_txt:
- addrs: [0x8077DDA0, 0x8077DEA0]
- npc/tex/brd_9_eye6_TA_tex_txt:
- addrs: [0x8077DEA0, 0x8077DFA0]
- npc/tex/brd_9_eye7_TA_tex_txt:
- addrs: [0x8077DFA0, 0x8077E0A0]
- npc/tex/brd_9_eye8_TA_tex_txt:
- addrs: [0x8077E0A0, 0x8077E1A0]
- npc/tex/brd_9_tmem_txt:
- addrs: [0x8077E1A0, 0x8077E6A0]
- npc/tex/brd_10_pal:
- addrs: [0x8077E6A0, 0x8077E6C0]
- type: pal16
- npc/tex/brd_10_eye1_TA_tex_txt:
- addrs: [0x8077E6C0, 0x8077E7C0]
- npc/tex/brd_10_eye2_TA_tex_txt:
- addrs: [0x8077E7C0, 0x8077E8C0]
- npc/tex/brd_10_eye3_TA_tex_txt:
- addrs: [0x8077E8C0, 0x8077E9C0]
- npc/tex/brd_10_eye4_TA_tex_txt:
- addrs: [0x8077E9C0, 0x8077EAC0]
- npc/tex/brd_10_eye5_TA_tex_txt:
- addrs: [0x8077EAC0, 0x8077EBC0]
- npc/tex/brd_10_eye6_TA_tex_txt:
- addrs: [0x8077EBC0, 0x8077ECC0]
- npc/tex/brd_10_eye7_TA_tex_txt:
- addrs: [0x8077ECC0, 0x8077EDC0]
- npc/tex/brd_10_eye8_TA_tex_txt:
- addrs: [0x8077EDC0, 0x8077EEC0]
- npc/tex/brd_10_tmem_txt:
- addrs: [0x8077EEC0, 0x8077F3C0]
- npc/mdl/fox_1_v:
- addrs: [0x807D5FE8, 0x807D76E8]
- type: vtx
- npc/tex/fox_1_pal:
- addrs: [0x807D80A0, 0x807D80C0]
- type: pal16
- npc/tex/fox_1_eye1_TA_tex_txt:
- addrs: [0x807D80C0, 0x807D81C0]
- npc/tex/fox_1_eye2_TA_tex_txt:
- addrs: [0x807D81C0, 0x807D82C0]
- npc/tex/fox_1_eye3_TA_tex_txt:
- addrs: [0x807D82C0, 0x807D83C0]
- npc/tex/fox_1_eye4_TA_tex_txt:
- addrs: [0x807D83C0, 0x807D84C0]
- npc/tex/fox_1_eye5_TA_tex_txt:
- addrs: [0x807D84C0, 0x807D85C0]
- npc/tex/fox_1_eye6_TA_tex_txt:
- addrs: [0x807D85C0, 0x807D86C0]
- npc/tex/fox_1_eye7_TA_tex_txt:
- addrs: [0x807D86C0, 0x807D87C0]
- npc/tex/fox_1_eye8_TA_tex_txt:
- addrs: [0x807D87C0, 0x807D88C0]
- npc/tex/fox_1_tmem_txt:
- addrs: [0x807D88C0, 0x807D8FC0]
- npc/mdl/bul_1_v:
- addrs: [0x807D8FC0, 0x807DA640]
- type: vtx
- npc/tex/bul_1_pal:
- addrs: [0x807DAFC0, 0x807DAFE0]
- type: pal16
- npc/tex/bul_1_eye1_TA_tex_txt:
- addrs: [0x807DAFE0, 0x807DB0E0]
- npc/tex/bul_1_eye2_TA_tex_txt:
- addrs: [0x807DB0E0, 0x807DB1E0]
- npc/tex/bul_1_eye3_TA_tex_txt:
- addrs: [0x807DB1E0, 0x807DB2E0]
- npc/tex/bul_1_eye4_TA_tex_txt:
- addrs: [0x807DB2E0, 0x807DB3E0]
- npc/tex/bul_1_eye5_TA_tex_txt:
- addrs: [0x807DB3E0, 0x807DB4E0]
- npc/tex/bul_1_eye6_TA_tex_txt:
- addrs: [0x807DB4E0, 0x807DB5E0]
- npc/tex/bul_1_eye7_TA_tex_txt:
- addrs: [0x807DB5E0, 0x807DB6E0]
- npc/tex/bul_1_eye8_TA_tex_txt:
- addrs: [0x807DB6E0, 0x807DB7E0]
- npc/tex/bul_1_mouth1_TA_tex_txt:
- addrs: [0x807DB7E0, 0x807DB8E0]
- npc/tex/bul_1_mouth2_TA_tex_txt:
- addrs: [0x807DB8E0, 0x807DB9E0]
- npc/tex/bul_1_mouth3_TA_tex_txt:
- addrs: [0x807DB9E0, 0x807DBAE0]
- npc/tex/bul_1_mouth4_TA_tex_txt:
- addrs: [0x807DBAE0, 0x807DBBE0]
- npc/tex/bul_1_mouth5_TA_tex_txt:
- addrs: [0x807DBBE0, 0x807DBCE0]
- npc/tex/bul_1_mouth6_TA_tex_txt:
- addrs: [0x807DBCE0, 0x807DBDE0]
- npc/tex/bul_1_tmem_txt:
- addrs: [0x807DBDE0, 0x807DC1E0]
- npc/tex/bul_2_pal:
- addrs: [0x807DC1E0, 0x807DC200]
- type: pal16
- npc/tex/bul_2_eye1_TA_tex_txt:
- addrs: [0x807DC200, 0x807DC300]
- npc/tex/bul_2_eye2_TA_tex_txt:
- addrs: [0x807DC300, 0x807DC400]
- npc/tex/bul_2_eye3_TA_tex_txt:
- addrs: [0x807DC400, 0x807DC500]
- npc/tex/bul_2_eye4_TA_tex_txt:
- addrs: [0x807DC500, 0x807DC600]
- npc/tex/bul_2_eye5_TA_tex_txt:
- addrs: [0x807DC600, 0x807DC700]
- npc/tex/bul_2_eye6_TA_tex_txt:
- addrs: [0x807DC700, 0x807DC800]
- npc/tex/bul_2_eye7_TA_tex_txt:
- addrs: [0x807DC800, 0x807DC900]
- npc/tex/bul_2_eye8_TA_tex_txt:
- addrs: [0x807DC900, 0x807DCA00]
- npc/tex/bul_2_mouth1_TA_tex_txt:
- addrs: [0x807DCA00, 0x807DCB00]
- npc/tex/bul_2_mouth2_TA_tex_txt:
- addrs: [0x807DCB00, 0x807DCC00]
- npc/tex/bul_2_mouth3_TA_tex_txt:
- addrs: [0x807DCC00, 0x807DCD00]
- npc/tex/bul_2_mouth4_TA_tex_txt:
- addrs: [0x807DCD00, 0x807DCE00]
- npc/tex/bul_2_mouth5_TA_tex_txt:
- addrs: [0x807DCE00, 0x807DCF00]
- npc/tex/bul_2_mouth6_TA_tex_txt:
- addrs: [0x807DCF00, 0x807DD000]
- npc/tex/bul_2_tmem_txt:
- addrs: [0x807DD000, 0x807DD400]
- npc/tex/bul_3_pal:
- addrs: [0x807DD400, 0x807DD420]
- type: pal16
- npc/tex/bul_3_eye1_TA_tex_txt:
- addrs: [0x807DD420, 0x807DD520]
- npc/tex/bul_3_eye2_TA_tex_txt:
- addrs: [0x807DD520, 0x807DD620]
- npc/tex/bul_3_eye3_TA_tex_txt:
- addrs: [0x807DD620, 0x807DD720]
- npc/tex/bul_3_eye4_TA_tex_txt:
- addrs: [0x807DD720, 0x807DD820]
- npc/tex/bul_3_eye5_TA_tex_txt:
- addrs: [0x807DD820, 0x807DD920]
- npc/tex/bul_3_eye6_TA_tex_txt:
- addrs: [0x807DD920, 0x807DDA20]
- npc/tex/bul_3_eye7_TA_tex_txt:
- addrs: [0x807DDA20, 0x807DDB20]
- npc/tex/bul_3_eye8_TA_tex_txt:
- addrs: [0x807DDB20, 0x807DDC20]
- npc/tex/bul_3_mouth1_TA_tex_txt:
- addrs: [0x807DDC20, 0x807DDD20]
- npc/tex/bul_3_mouth2_TA_tex_txt:
- addrs: [0x807DDD20, 0x807DDE20]
- npc/tex/bul_3_mouth3_TA_tex_txt:
- addrs: [0x807DDE20, 0x807DDF20]
- npc/tex/bul_3_mouth4_TA_tex_txt:
- addrs: [0x807DDF20, 0x807DE020]
- npc/tex/bul_3_mouth5_TA_tex_txt:
- addrs: [0x807DE020, 0x807DE120]
- npc/tex/bul_3_mouth6_TA_tex_txt:
- addrs: [0x807DE120, 0x807DE220]
- npc/tex/bul_3_tmem_txt:
- addrs: [0x807DE220, 0x807DE620]
- npc/tex/bul_4_pal:
- addrs: [0x807DE620, 0x807DE640]
- type: pal16
- npc/tex/bul_4_eye1_TA_tex_txt:
- addrs: [0x807DE640, 0x807DE740]
- npc/tex/bul_4_eye2_TA_tex_txt:
- addrs: [0x807DE740, 0x807DE840]
- npc/tex/bul_4_eye3_TA_tex_txt:
- addrs: [0x807DE840, 0x807DE940]
- npc/tex/bul_4_eye4_TA_tex_txt:
- addrs: [0x807DE940, 0x807DEA40]
- npc/tex/bul_4_eye5_TA_tex_txt:
- addrs: [0x807DEA40, 0x807DEB40]
- npc/tex/bul_4_eye6_TA_tex_txt:
- addrs: [0x807DEB40, 0x807DEC40]
- npc/tex/bul_4_eye7_TA_tex_txt:
- addrs: [0x807DEC40, 0x807DED40]
- npc/tex/bul_4_eye8_TA_tex_txt:
- addrs: [0x807DED40, 0x807DEE40]
- npc/tex/bul_4_mouth1_TA_tex_txt:
- addrs: [0x807DEE40, 0x807DEF40]
- npc/tex/bul_4_mouth2_TA_tex_txt:
- addrs: [0x807DEF40, 0x807DF040]
- npc/tex/bul_4_mouth3_TA_tex_txt:
- addrs: [0x807DF040, 0x807DF140]
- npc/tex/bul_4_mouth4_TA_tex_txt:
- addrs: [0x807DF140, 0x807DF240]
- npc/tex/bul_4_mouth5_TA_tex_txt:
- addrs: [0x807DF240, 0x807DF340]
- npc/tex/bul_4_mouth6_TA_tex_txt:
- addrs: [0x807DF340, 0x807DF440]
- npc/tex/bul_4_tmem_txt:
- addrs: [0x807DF440, 0x807DF840]
- npc/mdl/cml_1_v:
- addrs: [0x807DF840, 0x807E1470]
- type: vtx
- npc/tex/cml_1_pal:
- addrs: [0x807E1EC0, 0x807E1EE0]
- type: pal16
- npc/tex/cml_1_eye1_TA_tex_txt:
- addrs: [0x807E1EE0, 0x807E1FE0]
- npc/tex/cml_1_eye2_TA_tex_txt:
- addrs: [0x807E1FE0, 0x807E20E0]
- npc/tex/cml_1_eye3_TA_tex_txt:
- addrs: [0x807E20E0, 0x807E21E0]
- npc/tex/cml_1_eye4_TA_tex_txt:
- addrs: [0x807E21E0, 0x807E22E0]
- npc/tex/cml_1_eye5_TA_tex_txt:
- addrs: [0x807E22E0, 0x807E23E0]
- npc/tex/cml_1_eye6_TA_tex_txt:
- addrs: [0x807E23E0, 0x807E24E0]
- npc/tex/cml_1_eye7_TA_tex_txt:
- addrs: [0x807E24E0, 0x807E25E0]
- npc/tex/cml_1_eye8_TA_tex_txt:
- addrs: [0x807E25E0, 0x807E26E0]
- npc/tex/cml_1_tmem_txt:
- addrs: [0x807E26E0, 0x807E2E60]
- npc/mdl/cat_1_v:
- addrs: [0x807E2E60, 0x807E4290]
- type: vtx
- npc/tex/cat_1_pal:
- addrs: [0x807E4BC0, 0x807E4BE0]
- type: pal16
- npc/tex/cat_1_eye1_TA_tex_txt:
- addrs: [0x807E4BE0, 0x807E4CE0]
- npc/tex/cat_1_eye2_TA_tex_txt:
- addrs: [0x807E4CE0, 0x807E4DE0]
- npc/tex/cat_1_eye3_TA_tex_txt:
- addrs: [0x807E4DE0, 0x807E4EE0]
- npc/tex/cat_1_eye4_TA_tex_txt:
- addrs: [0x807E4EE0, 0x807E4FE0]
- npc/tex/cat_1_eye5_TA_tex_txt:
- addrs: [0x807E4FE0, 0x807E50E0]
- npc/tex/cat_1_eye6_TA_tex_txt:
- addrs: [0x807E50E0, 0x807E51E0]
- npc/tex/cat_1_eye7_TA_tex_txt:
- addrs: [0x807E51E0, 0x807E52E0]
- npc/tex/cat_1_eye8_TA_tex_txt:
- addrs: [0x807E52E0, 0x807E53E0]
- npc/tex/cat_1_mouth1_TA_tex_txt:
- addrs: [0x807E53E0, 0x807E54E0]
- npc/tex/cat_1_mouth2_TA_tex_txt:
- addrs: [0x807E54E0, 0x807E55E0]
- npc/tex/cat_1_mouth3_TA_tex_txt:
- addrs: [0x807E55E0, 0x807E56E0]
- npc/tex/cat_1_mouth4_TA_tex_txt:
- addrs: [0x807E56E0, 0x807E57E0]
- npc/tex/cat_1_mouth5_TA_tex_txt:
- addrs: [0x807E57E0, 0x807E58E0]
- npc/tex/cat_1_mouth6_TA_tex_txt:
- addrs: [0x807E58E0, 0x807E59E0]
- npc/tex/cat_1_tmem_txt:
- addrs: [0x807E59E0, 0x807E5DE0]
- npc/tex/cat_2_pal:
- addrs: [0x807E5DE0, 0x807E5E00]
- type: pal16
- npc/tex/cat_2_eye1_TA_tex_txt:
- addrs: [0x807E5E00, 0x807E5F00]
- npc/tex/cat_2_eye2_TA_tex_txt:
- addrs: [0x807E5F00, 0x807E6000]
- npc/tex/cat_2_eye3_TA_tex_txt:
- addrs: [0x807E6000, 0x807E6100]
- npc/tex/cat_2_eye4_TA_tex_txt:
- addrs: [0x807E6100, 0x807E6200]
- npc/tex/cat_2_eye5_TA_tex_txt:
- addrs: [0x807E6200, 0x807E6300]
- npc/tex/cat_2_eye6_TA_tex_txt:
- addrs: [0x807E6300, 0x807E6400]
- npc/tex/cat_2_eye7_TA_tex_txt:
- addrs: [0x807E6400, 0x807E6500]
- npc/tex/cat_2_eye8_TA_tex_txt:
- addrs: [0x807E6500, 0x807E6600]
- npc/tex/cat_2_mouth1_TA_tex_txt:
- addrs: [0x807E6600, 0x807E6700]
- npc/tex/cat_2_mouth2_TA_tex_txt:
- addrs: [0x807E6700, 0x807E6800]
- npc/tex/cat_2_mouth3_TA_tex_txt:
- addrs: [0x807E6800, 0x807E6900]
- npc/tex/cat_2_mouth4_TA_tex_txt:
- addrs: [0x807E6900, 0x807E6A00]
- npc/tex/cat_2_mouth5_TA_tex_txt:
- addrs: [0x807E6A00, 0x807E6B00]
- npc/tex/cat_2_mouth6_TA_tex_txt:
- addrs: [0x807E6B00, 0x807E6C00]
- npc/tex/cat_2_tmem_txt:
- addrs: [0x807E6C00, 0x807E7000]
- npc/tex/cat_11_pal:
- addrs: [0x807E7000, 0x807E7020]
- type: pal16
- npc/tex/cat_11_eye1_TA_tex_txt:
- addrs: [0x807E7020, 0x807E7120]
- npc/tex/cat_11_eye2_TA_tex_txt:
- addrs: [0x807E7120, 0x807E7220]
- npc/tex/cat_11_eye3_TA_tex_txt:
- addrs: [0x807E7220, 0x807E7320]
- npc/tex/cat_11_eye4_TA_tex_txt:
- addrs: [0x807E7320, 0x807E7420]
- npc/tex/cat_11_eye5_TA_tex_txt:
- addrs: [0x807E7420, 0x807E7520]
- npc/tex/cat_11_eye6_TA_tex_txt:
- addrs: [0x807E7520, 0x807E7620]
- npc/tex/cat_11_eye7_TA_tex_txt:
- addrs: [0x807E7620, 0x807E7720]
- npc/tex/cat_11_eye8_TA_tex_txt:
- addrs: [0x807E7720, 0x807E7820]
- npc/tex/cat_11_mouth1_TA_tex_txt:
- addrs: [0x807E7820, 0x807E7920]
- npc/tex/cat_11_mouth2_TA_tex_txt:
- addrs: [0x807E7920, 0x807E7A20]
- npc/tex/cat_11_mouth3_TA_tex_txt:
- addrs: [0x807E7A20, 0x807E7B20]
- npc/tex/cat_11_mouth4_TA_tex_txt:
- addrs: [0x807E7B20, 0x807E7C20]
- npc/tex/cat_11_mouth5_TA_tex_txt:
- addrs: [0x807E7C20, 0x807E7D20]
- npc/tex/cat_11_mouth6_TA_tex_txt:
- addrs: [0x807E7D20, 0x807E7E20]
- npc/tex/cat_11_tmem_txt:
- addrs: [0x807E7E20, 0x807E8220]
- npc/tex/cat_12_pal:
- addrs: [0x807E8220, 0x807E8240]
- type: pal16
- npc/tex/cat_12_eye1_TA_tex_txt:
- addrs: [0x807E8240, 0x807E8340]
- npc/tex/cat_12_eye2_TA_tex_txt:
- addrs: [0x807E8340, 0x807E8440]
- npc/tex/cat_12_eye3_TA_tex_txt:
- addrs: [0x807E8440, 0x807E8540]
- npc/tex/cat_12_eye4_TA_tex_txt:
- addrs: [0x807E8540, 0x807E8640]
- npc/tex/cat_12_eye5_TA_tex_txt:
- addrs: [0x807E8640, 0x807E8740]
- npc/tex/cat_12_eye6_TA_tex_txt:
- addrs: [0x807E8740, 0x807E8840]
- npc/tex/cat_12_eye7_TA_tex_txt:
- addrs: [0x807E8840, 0x807E8940]
- npc/tex/cat_12_eye8_TA_tex_txt:
- addrs: [0x807E8940, 0x807E8A40]
- npc/tex/cat_12_mouth1_TA_tex_txt:
- addrs: [0x807E8A40, 0x807E8B40]
- npc/tex/cat_12_mouth2_TA_tex_txt:
- addrs: [0x807E8B40, 0x807E8C40]
- npc/tex/cat_12_mouth3_TA_tex_txt:
- addrs: [0x807E8C40, 0x807E8D40]
- npc/tex/cat_12_mouth4_TA_tex_txt:
- addrs: [0x807E8D40, 0x807E8E40]
- npc/tex/cat_12_mouth5_TA_tex_txt:
- addrs: [0x807E8E40, 0x807E8F40]
- npc/tex/cat_12_mouth6_TA_tex_txt:
- addrs: [0x807E8F40, 0x807E9040]
- npc/tex/cat_12_tmem_txt:
- addrs: [0x807E9040, 0x807E9440]
- npc/tex/cat_13_pal:
- addrs: [0x807E9440, 0x807E9460]
- type: pal16
- npc/tex/cat_13_eye1_TA_tex_txt:
- addrs: [0x807E9460, 0x807E9560]
- npc/tex/cat_13_eye2_TA_tex_txt:
- addrs: [0x807E9560, 0x807E9660]
- npc/tex/cat_13_eye3_TA_tex_txt:
- addrs: [0x807E9660, 0x807E9760]
- npc/tex/cat_13_eye4_TA_tex_txt:
- addrs: [0x807E9760, 0x807E9860]
- npc/tex/cat_13_eye5_TA_tex_txt:
- addrs: [0x807E9860, 0x807E9960]
- npc/tex/cat_13_eye6_TA_tex_txt:
- addrs: [0x807E9960, 0x807E9A60]
- npc/tex/cat_13_eye7_TA_tex_txt:
- addrs: [0x807E9A60, 0x807E9B60]
- npc/tex/cat_13_eye8_TA_tex_txt:
- addrs: [0x807E9B60, 0x807E9C60]
- npc/tex/cat_13_mouth1_TA_tex_txt:
- addrs: [0x807E9C60, 0x807E9D60]
- npc/tex/cat_13_mouth2_TA_tex_txt:
- addrs: [0x807E9D60, 0x807E9E60]
- npc/tex/cat_13_mouth3_TA_tex_txt:
- addrs: [0x807E9E60, 0x807E9F60]
- npc/tex/cat_13_mouth4_TA_tex_txt:
- addrs: [0x807E9F60, 0x807EA060]
- npc/tex/cat_13_mouth5_TA_tex_txt:
- addrs: [0x807EA060, 0x807EA160]
- npc/tex/cat_13_mouth6_TA_tex_txt:
- addrs: [0x807EA160, 0x807EA260]
- npc/tex/cat_13_tmem_txt:
- addrs: [0x807EA260, 0x807EA660]
- npc/tex/cat_14_pal:
- addrs: [0x807EA660, 0x807EA680]
- type: pal16
- npc/tex/cat_14_eye1_TA_tex_txt:
- addrs: [0x807EA680, 0x807EA780]
- npc/tex/cat_14_eye2_TA_tex_txt:
- addrs: [0x807EA780, 0x807EA880]
- npc/tex/cat_14_eye3_TA_tex_txt:
- addrs: [0x807EA880, 0x807EA980]
- npc/tex/cat_14_eye4_TA_tex_txt:
- addrs: [0x807EA980, 0x807EAA80]
- npc/tex/cat_14_eye5_TA_tex_txt:
- addrs: [0x807EAA80, 0x807EAB80]
- npc/tex/cat_14_eye6_TA_tex_txt:
- addrs: [0x807EAB80, 0x807EAC80]
- npc/tex/cat_14_eye7_TA_tex_txt:
- addrs: [0x807EAC80, 0x807EAD80]
- npc/tex/cat_14_eye8_TA_tex_txt:
- addrs: [0x807EAD80, 0x807EAE80]
- npc/tex/cat_14_mouth1_TA_tex_txt:
- addrs: [0x807EAE80, 0x807EAF80]
- npc/tex/cat_14_mouth2_TA_tex_txt:
- addrs: [0x807EAF80, 0x807EB080]
- npc/tex/cat_14_mouth3_TA_tex_txt:
- addrs: [0x807EB080, 0x807EB180]
- npc/tex/cat_14_mouth4_TA_tex_txt:
- addrs: [0x807EB180, 0x807EB280]
- npc/tex/cat_14_mouth5_TA_tex_txt:
- addrs: [0x807EB280, 0x807EB380]
- npc/tex/cat_14_mouth6_TA_tex_txt:
- addrs: [0x807EB380, 0x807EB480]
- npc/tex/cat_14_tmem_txt:
- addrs: [0x807EB480, 0x807EB880]
- npc/tex/cat_15_pal:
- addrs: [0x807EB880, 0x807EB8A0]
- type: pal16
- npc/tex/cat_15_eye1_TA_tex_txt:
- addrs: [0x807EB8A0, 0x807EB9A0]
- npc/tex/cat_15_eye2_TA_tex_txt:
- addrs: [0x807EB9A0, 0x807EBAA0]
- npc/tex/cat_15_eye3_TA_tex_txt:
- addrs: [0x807EBAA0, 0x807EBBA0]
- npc/tex/cat_15_eye4_TA_tex_txt:
- addrs: [0x807EBBA0, 0x807EBCA0]
- npc/tex/cat_15_eye5_TA_tex_txt:
- addrs: [0x807EBCA0, 0x807EBDA0]
- npc/tex/cat_15_eye6_TA_tex_txt:
- addrs: [0x807EBDA0, 0x807EBEA0]
- npc/tex/cat_15_eye7_TA_tex_txt:
- addrs: [0x807EBEA0, 0x807EBFA0]
- npc/tex/cat_15_eye8_TA_tex_txt:
- addrs: [0x807EBFA0, 0x807EC0A0]
- npc/tex/cat_15_mouth1_TA_tex_txt:
- addrs: [0x807EC0A0, 0x807EC1A0]
- npc/tex/cat_15_mouth2_TA_tex_txt:
- addrs: [0x807EC1A0, 0x807EC2A0]
- npc/tex/cat_15_mouth3_TA_tex_txt:
- addrs: [0x807EC2A0, 0x807EC3A0]
- npc/tex/cat_15_mouth4_TA_tex_txt:
- addrs: [0x807EC3A0, 0x807EC4A0]
- npc/tex/cat_15_mouth5_TA_tex_txt:
- addrs: [0x807EC4A0, 0x807EC5A0]
- npc/tex/cat_15_mouth6_TA_tex_txt:
- addrs: [0x807EC5A0, 0x807EC6A0]
- npc/tex/cat_15_tmem_txt:
- addrs: [0x807EC6A0, 0x807ECAA0]
- npc/tex/cat_3_pal:
- addrs: [0x807ECAA0, 0x807ECAC0]
- type: pal16
- npc/tex/cat_3_eye1_TA_tex_txt:
- addrs: [0x807ECAC0, 0x807ECBC0]
- npc/tex/cat_3_eye2_TA_tex_txt:
- addrs: [0x807ECBC0, 0x807ECCC0]
- npc/tex/cat_3_eye3_TA_tex_txt:
- addrs: [0x807ECCC0, 0x807ECDC0]
- npc/tex/cat_3_eye4_TA_tex_txt:
- addrs: [0x807ECDC0, 0x807ECEC0]
- npc/tex/cat_3_eye5_TA_tex_txt:
- addrs: [0x807ECEC0, 0x807ECFC0]
- npc/tex/cat_3_eye6_TA_tex_txt:
- addrs: [0x807ECFC0, 0x807ED0C0]
- npc/tex/cat_3_eye7_TA_tex_txt:
- addrs: [0x807ED0C0, 0x807ED1C0]
- npc/tex/cat_3_eye8_TA_tex_txt:
- addrs: [0x807ED1C0, 0x807ED2C0]
- npc/tex/cat_3_mouth1_TA_tex_txt:
- addrs: [0x807ED2C0, 0x807ED3C0]
- npc/tex/cat_3_mouth2_TA_tex_txt:
- addrs: [0x807ED3C0, 0x807ED4C0]
- npc/tex/cat_3_mouth3_TA_tex_txt:
- addrs: [0x807ED4C0, 0x807ED5C0]
- npc/tex/cat_3_mouth4_TA_tex_txt:
- addrs: [0x807ED5C0, 0x807ED6C0]
- npc/tex/cat_3_mouth5_TA_tex_txt:
- addrs: [0x807ED6C0, 0x807ED7C0]
- npc/tex/cat_3_mouth6_TA_tex_txt:
- addrs: [0x807ED7C0, 0x807ED8C0]
- npc/tex/cat_3_tmem_txt:
- addrs: [0x807ED8C0, 0x807EDCC0]
- npc/tex/cat_4_pal:
- addrs: [0x807EDCC0, 0x807EDCE0]
- type: pal16
- npc/tex/cat_4_eye1_TA_tex_txt:
- addrs: [0x807EDCE0, 0x807EDDE0]
- npc/tex/cat_4_eye2_TA_tex_txt:
- addrs: [0x807EDDE0, 0x807EDEE0]
- npc/tex/cat_4_eye3_TA_tex_txt:
- addrs: [0x807EDEE0, 0x807EDFE0]
- npc/tex/cat_4_eye4_TA_tex_txt:
- addrs: [0x807EDFE0, 0x807EE0E0]
- npc/tex/cat_4_eye5_TA_tex_txt:
- addrs: [0x807EE0E0, 0x807EE1E0]
- npc/tex/cat_4_eye6_TA_tex_txt:
- addrs: [0x807EE1E0, 0x807EE2E0]
- npc/tex/cat_4_eye7_TA_tex_txt:
- addrs: [0x807EE2E0, 0x807EE3E0]
- npc/tex/cat_4_eye8_TA_tex_txt:
- addrs: [0x807EE3E0, 0x807EE4E0]
- npc/tex/cat_4_mouth1_TA_tex_txt:
- addrs: [0x807EE4E0, 0x807EE5E0]
- npc/tex/cat_4_mouth2_TA_tex_txt:
- addrs: [0x807EE5E0, 0x807EE6E0]
- npc/tex/cat_4_mouth3_TA_tex_txt:
- addrs: [0x807EE6E0, 0x807EE7E0]
- npc/tex/cat_4_mouth4_TA_tex_txt:
- addrs: [0x807EE7E0, 0x807EE8E0]
- npc/tex/cat_4_mouth5_TA_tex_txt:
- addrs: [0x807EE8E0, 0x807EE9E0]
- npc/tex/cat_4_mouth6_TA_tex_txt:
- addrs: [0x807EE9E0, 0x807EEAE0]
- npc/tex/cat_4_tmem_txt:
- addrs: [0x807EEAE0, 0x807EEEE0]
- npc/tex/cat_5_pal:
- addrs: [0x807EEEE0, 0x807EEF00]
- type: pal16
- npc/tex/cat_5_eye1_TA_tex_txt:
- addrs: [0x807EEF00, 0x807EF000]
- npc/tex/cat_5_eye2_TA_tex_txt:
- addrs: [0x807EF000, 0x807EF100]
- npc/tex/cat_5_eye3_TA_tex_txt:
- addrs: [0x807EF100, 0x807EF200]
- npc/tex/cat_5_eye4_TA_tex_txt:
- addrs: [0x807EF200, 0x807EF300]
- npc/tex/cat_5_eye5_TA_tex_txt:
- addrs: [0x807EF300, 0x807EF400]
- npc/tex/cat_5_eye6_TA_tex_txt:
- addrs: [0x807EF400, 0x807EF500]
- npc/tex/cat_5_eye7_TA_tex_txt:
- addrs: [0x807EF500, 0x807EF600]
- npc/tex/cat_5_eye8_TA_tex_txt:
- addrs: [0x807EF600, 0x807EF700]
- npc/tex/cat_5_mouth1_TA_tex_txt:
- addrs: [0x807EF700, 0x807EF800]
- npc/tex/cat_5_mouth2_TA_tex_txt:
- addrs: [0x807EF800, 0x807EF900]
- npc/tex/cat_5_mouth3_TA_tex_txt:
- addrs: [0x807EF900, 0x807EFA00]
- npc/tex/cat_5_mouth4_TA_tex_txt:
- addrs: [0x807EFA00, 0x807EFB00]
- npc/tex/cat_5_mouth5_TA_tex_txt:
- addrs: [0x807EFB00, 0x807EFC00]
- npc/tex/cat_5_mouth6_TA_tex_txt:
- addrs: [0x807EFC00, 0x807EFD00]
- npc/tex/cat_5_tmem_txt:
- addrs: [0x807EFD00, 0x807F0100]
- npc/tex/cat_6_pal:
- addrs: [0x807F0100, 0x807F0120]
- type: pal16
- npc/tex/cat_6_eye1_TA_tex_txt:
- addrs: [0x807F0120, 0x807F0220]
- npc/tex/cat_6_eye2_TA_tex_txt:
- addrs: [0x807F0220, 0x807F0320]
- npc/tex/cat_6_eye3_TA_tex_txt:
- addrs: [0x807F0320, 0x807F0420]
- npc/tex/cat_6_eye4_TA_tex_txt:
- addrs: [0x807F0420, 0x807F0520]
- npc/tex/cat_6_eye5_TA_tex_txt:
- addrs: [0x807F0520, 0x807F0620]
- npc/tex/cat_6_eye6_TA_tex_txt:
- addrs: [0x807F0620, 0x807F0720]
- npc/tex/cat_6_eye7_TA_tex_txt:
- addrs: [0x807F0720, 0x807F0820]
- npc/tex/cat_6_eye8_TA_tex_txt:
- addrs: [0x807F0820, 0x807F0920]
- npc/tex/cat_6_mouth1_TA_tex_txt:
- addrs: [0x807F0920, 0x807F0A20]
- npc/tex/cat_6_mouth2_TA_tex_txt:
- addrs: [0x807F0A20, 0x807F0B20]
- npc/tex/cat_6_mouth3_TA_tex_txt:
- addrs: [0x807F0B20, 0x807F0C20]
- npc/tex/cat_6_mouth4_TA_tex_txt:
- addrs: [0x807F0C20, 0x807F0D20]
- npc/tex/cat_6_mouth5_TA_tex_txt:
- addrs: [0x807F0D20, 0x807F0E20]
- npc/tex/cat_6_mouth6_TA_tex_txt:
- addrs: [0x807F0E20, 0x807F0F20]
- npc/tex/cat_6_tmem_txt:
- addrs: [0x807F0F20, 0x807F1320]
- npc/tex/cat_7_pal:
- addrs: [0x807F1320, 0x807F1340]
- type: pal16
- npc/tex/cat_7_eye1_TA_tex_txt:
- addrs: [0x807F1340, 0x807F1440]
- npc/tex/cat_7_eye2_TA_tex_txt:
- addrs: [0x807F1440, 0x807F1540]
- npc/tex/cat_7_eye3_TA_tex_txt:
- addrs: [0x807F1540, 0x807F1640]
- npc/tex/cat_7_eye4_TA_tex_txt:
- addrs: [0x807F1640, 0x807F1740]
- npc/tex/cat_7_eye5_TA_tex_txt:
- addrs: [0x807F1740, 0x807F1840]
- npc/tex/cat_7_eye6_TA_tex_txt:
- addrs: [0x807F1840, 0x807F1940]
- npc/tex/cat_7_eye7_TA_tex_txt:
- addrs: [0x807F1940, 0x807F1A40]
- npc/tex/cat_7_eye8_TA_tex_txt:
- addrs: [0x807F1A40, 0x807F1B40]
- npc/tex/cat_7_mouth1_TA_tex_txt:
- addrs: [0x807F1B40, 0x807F1C40]
- npc/tex/cat_7_mouth2_TA_tex_txt:
- addrs: [0x807F1C40, 0x807F1D40]
- npc/tex/cat_7_mouth3_TA_tex_txt:
- addrs: [0x807F1D40, 0x807F1E40]
- npc/tex/cat_7_mouth4_TA_tex_txt:
- addrs: [0x807F1E40, 0x807F1F40]
- npc/tex/cat_7_mouth5_TA_tex_txt:
- addrs: [0x807F1F40, 0x807F2040]
- npc/tex/cat_7_mouth6_TA_tex_txt:
- addrs: [0x807F2040, 0x807F2140]
- npc/tex/cat_7_tmem_txt:
- addrs: [0x807F2140, 0x807F2540]
- npc/tex/cat_8_pal:
- addrs: [0x807F2540, 0x807F2560]
- type: pal16
- npc/tex/cat_8_eye1_TA_tex_txt:
- addrs: [0x807F2560, 0x807F2660]
- npc/tex/cat_8_eye2_TA_tex_txt:
- addrs: [0x807F2660, 0x807F2760]
- npc/tex/cat_8_eye3_TA_tex_txt:
- addrs: [0x807F2760, 0x807F2860]
- npc/tex/cat_8_eye4_TA_tex_txt:
- addrs: [0x807F2860, 0x807F2960]
- npc/tex/cat_8_eye5_TA_tex_txt:
- addrs: [0x807F2960, 0x807F2A60]
- npc/tex/cat_8_eye6_TA_tex_txt:
- addrs: [0x807F2A60, 0x807F2B60]
- npc/tex/cat_8_eye7_TA_tex_txt:
- addrs: [0x807F2B60, 0x807F2C60]
- npc/tex/cat_8_eye8_TA_tex_txt:
- addrs: [0x807F2C60, 0x807F2D60]
- npc/tex/cat_8_mouth1_TA_tex_txt:
- addrs: [0x807F2D60, 0x807F2E60]
- npc/tex/cat_8_mouth2_TA_tex_txt:
- addrs: [0x807F2E60, 0x807F2F60]
- npc/tex/cat_8_mouth3_TA_tex_txt:
- addrs: [0x807F2F60, 0x807F3060]
- npc/tex/cat_8_mouth4_TA_tex_txt:
- addrs: [0x807F3060, 0x807F3160]
- npc/tex/cat_8_mouth5_TA_tex_txt:
- addrs: [0x807F3160, 0x807F3260]
- npc/tex/cat_8_mouth6_TA_tex_txt:
- addrs: [0x807F3260, 0x807F3360]
- npc/tex/cat_8_tmem_txt:
- addrs: [0x807F3360, 0x807F3760]
- npc/tex/cat_9_pal:
- addrs: [0x807F3760, 0x807F3780]
- type: pal16
- npc/tex/cat_9_eye1_TA_tex_txt:
- addrs: [0x807F3780, 0x807F3880]
- npc/tex/cat_9_eye2_TA_tex_txt:
- addrs: [0x807F3880, 0x807F3980]
- npc/tex/cat_9_eye3_TA_tex_txt:
- addrs: [0x807F3980, 0x807F3A80]
- npc/tex/cat_9_eye4_TA_tex_txt:
- addrs: [0x807F3A80, 0x807F3B80]
- npc/tex/cat_9_eye5_TA_tex_txt:
- addrs: [0x807F3B80, 0x807F3C80]
- npc/tex/cat_9_eye6_TA_tex_txt:
- addrs: [0x807F3C80, 0x807F3D80]
- npc/tex/cat_9_eye7_TA_tex_txt:
- addrs: [0x807F3D80, 0x807F3E80]
- npc/tex/cat_9_eye8_TA_tex_txt:
- addrs: [0x807F3E80, 0x807F3F80]
- npc/tex/cat_9_mouth1_TA_tex_txt:
- addrs: [0x807F3F80, 0x807F4080]
- npc/tex/cat_9_mouth2_TA_tex_txt:
- addrs: [0x807F4080, 0x807F4180]
- npc/tex/cat_9_mouth3_TA_tex_txt:
- addrs: [0x807F4180, 0x807F4280]
- npc/tex/cat_9_mouth4_TA_tex_txt:
- addrs: [0x807F4280, 0x807F4380]
- npc/tex/cat_9_mouth5_TA_tex_txt:
- addrs: [0x807F4380, 0x807F4480]
- npc/tex/cat_9_mouth6_TA_tex_txt:
- addrs: [0x807F4480, 0x807F4580]
- npc/tex/cat_9_tmem_txt:
- addrs: [0x807F4580, 0x807F4980]
- npc/tex/cat_10_pal:
- addrs: [0x807F4980, 0x807F49A0]
- type: pal16
- npc/tex/cat_10_eye1_TA_tex_txt:
- addrs: [0x807F49A0, 0x807F4AA0]
- npc/tex/cat_10_eye2_TA_tex_txt:
- addrs: [0x807F4AA0, 0x807F4BA0]
- npc/tex/cat_10_eye3_TA_tex_txt:
- addrs: [0x807F4BA0, 0x807F4CA0]
- npc/tex/cat_10_eye4_TA_tex_txt:
- addrs: [0x807F4CA0, 0x807F4DA0]
- npc/tex/cat_10_eye5_TA_tex_txt:
- addrs: [0x807F4DA0, 0x807F4EA0]
- npc/tex/cat_10_eye6_TA_tex_txt:
- addrs: [0x807F4EA0, 0x807F4FA0]
- npc/tex/cat_10_eye7_TA_tex_txt:
- addrs: [0x807F4FA0, 0x807F50A0]
- npc/tex/cat_10_eye8_TA_tex_txt:
- addrs: [0x807F50A0, 0x807F51A0]
- npc/tex/cat_10_mouth1_TA_tex_txt:
- addrs: [0x807F51A0, 0x807F52A0]
- npc/tex/cat_10_mouth2_TA_tex_txt:
- addrs: [0x807F52A0, 0x807F53A0]
- npc/tex/cat_10_mouth3_TA_tex_txt:
- addrs: [0x807F53A0, 0x807F54A0]
- npc/tex/cat_10_mouth4_TA_tex_txt:
- addrs: [0x807F54A0, 0x807F55A0]
- npc/tex/cat_10_mouth5_TA_tex_txt:
- addrs: [0x807F55A0, 0x807F56A0]
- npc/tex/cat_10_mouth6_TA_tex_txt:
- addrs: [0x807F56A0, 0x807F57A0]
- npc/tex/cat_10_tmem_txt:
- addrs: [0x807F57A0, 0x807F5BA0]
- npc/mdl/chn_1_v:
- addrs: [0x807F5BA0, 0x807F77C0]
- type: vtx
- npc/tex/chn_1_pal:
- addrs: [0x807F8360, 0x807F8380]
- type: pal16
- npc/tex/chn_1_eye1_TA_tex_txt:
- addrs: [0x807F8380, 0x807F8480]
- npc/tex/chn_1_eye2_TA_tex_txt:
- addrs: [0x807F8480, 0x807F8580]
- npc/tex/chn_1_eye3_TA_tex_txt:
- addrs: [0x807F8580, 0x807F8680]
- npc/tex/chn_1_eye4_TA_tex_txt:
- addrs: [0x807F8680, 0x807F8780]
- npc/tex/chn_1_eye5_TA_tex_txt:
- addrs: [0x807F8780, 0x807F8880]
- npc/tex/chn_1_eye6_TA_tex_txt:
- addrs: [0x807F8880, 0x807F8980]
- npc/tex/chn_1_eye7_TA_tex_txt:
- addrs: [0x807F8980, 0x807F8A80]
- npc/tex/chn_1_eye8_TA_tex_txt:
- addrs: [0x807F8A80, 0x807F8B80]
- npc/tex/chn_1_tmem_txt:
- addrs: [0x807F8B80, 0x807F9040]
- npc/tex/chn_2_pal:
- addrs: [0x807F9040, 0x807F9060]
- type: pal16
- npc/tex/chn_2_eye1_TA_tex_txt:
- addrs: [0x807F9060, 0x807F9160]
- npc/tex/chn_2_eye2_TA_tex_txt:
- addrs: [0x807F9160, 0x807F9260]
- npc/tex/chn_2_eye3_TA_tex_txt:
- addrs: [0x807F9260, 0x807F9360]
- npc/tex/chn_2_eye4_TA_tex_txt:
- addrs: [0x807F9360, 0x807F9460]
- npc/tex/chn_2_eye5_TA_tex_txt:
- addrs: [0x807F9460, 0x807F9560]
- npc/tex/chn_2_eye6_TA_tex_txt:
- addrs: [0x807F9560, 0x807F9660]
- npc/tex/chn_2_eye7_TA_tex_txt:
- addrs: [0x807F9660, 0x807F9760]
- npc/tex/chn_2_eye8_TA_tex_txt:
- addrs: [0x807F9760, 0x807F9860]
- npc/tex/chn_2_tmem_txt:
- addrs: [0x807F9860, 0x807F9D20]
- npc/tex/chn_3_pal:
- addrs: [0x807F9D20, 0x807F9D40]
- type: pal16
- npc/tex/chn_3_eye1_TA_tex_txt:
- addrs: [0x807F9D40, 0x807F9E40]
- npc/tex/chn_3_eye2_TA_tex_txt:
- addrs: [0x807F9E40, 0x807F9F40]
- npc/tex/chn_3_eye3_TA_tex_txt:
- addrs: [0x807F9F40, 0x807FA040]
- npc/tex/chn_3_eye4_TA_tex_txt:
- addrs: [0x807FA040, 0x807FA140]
- npc/tex/chn_3_eye5_TA_tex_txt:
- addrs: [0x807FA140, 0x807FA240]
- npc/tex/chn_3_eye6_TA_tex_txt:
- addrs: [0x807FA240, 0x807FA340]
- npc/tex/chn_3_eye7_TA_tex_txt:
- addrs: [0x807FA340, 0x807FA440]
- npc/tex/chn_3_eye8_TA_tex_txt:
- addrs: [0x807FA440, 0x807FA540]
- npc/tex/chn_3_tmem_txt:
- addrs: [0x807FA540, 0x807FAA00]
- npc/tex/chn_4_pal:
- addrs: [0x807FAA00, 0x807FAA20]
- type: pal16
- npc/tex/chn_4_eye1_TA_tex_txt:
- addrs: [0x807FAA20, 0x807FAB20]
- npc/tex/chn_4_eye2_TA_tex_txt:
- addrs: [0x807FAB20, 0x807FAC20]
- npc/tex/chn_4_eye3_TA_tex_txt:
- addrs: [0x807FAC20, 0x807FAD20]
- npc/tex/chn_4_eye4_TA_tex_txt:
- addrs: [0x807FAD20, 0x807FAE20]
- npc/tex/chn_4_eye5_TA_tex_txt:
- addrs: [0x807FAE20, 0x807FAF20]
- npc/tex/chn_4_eye6_TA_tex_txt:
- addrs: [0x807FAF20, 0x807FB020]
- npc/tex/chn_4_eye7_TA_tex_txt:
- addrs: [0x807FB020, 0x807FB120]
- npc/tex/chn_4_eye8_TA_tex_txt:
- addrs: [0x807FB120, 0x807FB220]
- npc/tex/chn_4_tmem_txt:
- addrs: [0x807FB220, 0x807FB6E0]
- npc/tex/chn_5_pal:
- addrs: [0x807FB6E0, 0x807FB700]
- type: pal16
- npc/tex/chn_5_eye1_TA_tex_txt:
- addrs: [0x807FB700, 0x807FB800]
- npc/tex/chn_5_eye2_TA_tex_txt:
- addrs: [0x807FB800, 0x807FB900]
- npc/tex/chn_5_eye3_TA_tex_txt:
- addrs: [0x807FB900, 0x807FBA00]
- npc/tex/chn_5_eye4_TA_tex_txt:
- addrs: [0x807FBA00, 0x807FBB00]
- npc/tex/chn_5_eye5_TA_tex_txt:
- addrs: [0x807FBB00, 0x807FBC00]
- npc/tex/chn_5_eye6_TA_tex_txt:
- addrs: [0x807FBC00, 0x807FBD00]
- npc/tex/chn_5_eye7_TA_tex_txt:
- addrs: [0x807FBD00, 0x807FBE00]
- npc/tex/chn_5_eye8_TA_tex_txt:
- addrs: [0x807FBE00, 0x807FBF00]
- npc/tex/chn_5_tmem_txt:
- addrs: [0x807FBF00, 0x807FC3C0]
- npc/tex/chn_6_pal:
- addrs: [0x807FC3C0, 0x807FC3E0]
- type: pal16
- npc/tex/chn_6_eye1_TA_tex_txt:
- addrs: [0x807FC3E0, 0x807FC4E0]
- npc/tex/chn_6_eye2_TA_tex_txt:
- addrs: [0x807FC4E0, 0x807FC5E0]
- npc/tex/chn_6_eye3_TA_tex_txt:
- addrs: [0x807FC5E0, 0x807FC6E0]
- npc/tex/chn_6_eye4_TA_tex_txt:
- addrs: [0x807FC6E0, 0x807FC7E0]
- npc/tex/chn_6_eye5_TA_tex_txt:
- addrs: [0x807FC7E0, 0x807FC8E0]
- npc/tex/chn_6_eye6_TA_tex_txt:
- addrs: [0x807FC8E0, 0x807FC9E0]
- npc/tex/chn_6_eye7_TA_tex_txt:
- addrs: [0x807FC9E0, 0x807FCAE0]
- npc/tex/chn_6_eye8_TA_tex_txt:
- addrs: [0x807FCAE0, 0x807FCBE0]
- npc/tex/chn_6_tmem_txt:
- addrs: [0x807FCBE0, 0x807FD0A0]
- npc/tex/chn_7_pal:
- addrs: [0x807FD0A0, 0x807FD0C0]
- type: pal16
- npc/tex/chn_7_eye1_TA_tex_txt:
- addrs: [0x807FD0C0, 0x807FD1C0]
- npc/tex/chn_7_eye2_TA_tex_txt:
- addrs: [0x807FD1C0, 0x807FD2C0]
- npc/tex/chn_7_eye3_TA_tex_txt:
- addrs: [0x807FD2C0, 0x807FD3C0]
- npc/tex/chn_7_eye4_TA_tex_txt:
- addrs: [0x807FD3C0, 0x807FD4C0]
- npc/tex/chn_7_eye5_TA_tex_txt:
- addrs: [0x807FD4C0, 0x807FD5C0]
- npc/tex/chn_7_eye6_TA_tex_txt:
- addrs: [0x807FD5C0, 0x807FD6C0]
- npc/tex/chn_7_eye7_TA_tex_txt:
- addrs: [0x807FD6C0, 0x807FD7C0]
- npc/tex/chn_7_eye8_TA_tex_txt:
- addrs: [0x807FD7C0, 0x807FD8C0]
- npc/tex/chn_7_tmem_txt:
- addrs: [0x807FD8C0, 0x807FDD80]
- npc/tex/chn_8_pal:
- addrs: [0x807FDD80, 0x807FDDA0]
- type: pal16
- npc/tex/chn_8_eye1_TA_tex_txt:
- addrs: [0x807FDDA0, 0x807FDEA0]
- npc/tex/chn_8_eye2_TA_tex_txt:
- addrs: [0x807FDEA0, 0x807FDFA0]
- npc/tex/chn_8_eye3_TA_tex_txt:
- addrs: [0x807FDFA0, 0x807FE0A0]
- npc/tex/chn_8_eye4_TA_tex_txt:
- addrs: [0x807FE0A0, 0x807FE1A0]
- npc/tex/chn_8_eye5_TA_tex_txt:
- addrs: [0x807FE1A0, 0x807FE2A0]
- npc/tex/chn_8_eye6_TA_tex_txt:
- addrs: [0x807FE2A0, 0x807FE3A0]
- npc/tex/chn_8_eye7_TA_tex_txt:
- addrs: [0x807FE3A0, 0x807FE4A0]
- npc/tex/chn_8_eye8_TA_tex_txt:
- addrs: [0x807FE4A0, 0x807FE5A0]
- npc/tex/chn_8_tmem_txt:
- addrs: [0x807FE5A0, 0x807FEA60]
- npc/tex/chn_9_pal:
- addrs: [0x807FEA60, 0x807FEA80]
- type: pal16
- npc/tex/chn_9_eye1_TA_tex_txt:
- addrs: [0x807FEA80, 0x807FEB80]
- npc/tex/chn_9_eye2_TA_tex_txt:
- addrs: [0x807FEB80, 0x807FEC80]
- npc/tex/chn_9_eye3_TA_tex_txt:
- addrs: [0x807FEC80, 0x807FED80]
- npc/tex/chn_9_eye4_TA_tex_txt:
- addrs: [0x807FED80, 0x807FEE80]
- npc/tex/chn_9_eye5_TA_tex_txt:
- addrs: [0x807FEE80, 0x807FEF80]
- npc/tex/chn_9_eye6_TA_tex_txt:
- addrs: [0x807FEF80, 0x807FF080]
- npc/tex/chn_9_eye7_TA_tex_txt:
- addrs: [0x807FF080, 0x807FF180]
- npc/tex/chn_9_eye8_TA_tex_txt:
- addrs: [0x807FF180, 0x807FF280]
- npc/tex/chn_9_tmem_txt:
- addrs: [0x807FF280, 0x807FF740]
- npc/mdl/cbr_1_v:
- addrs: [0x807FF740, 0x80800CE0]
- type: vtx
- npc/tex/cbr_1_pal:
- addrs: [0x80801620, 0x80801640]
- type: pal16
- npc/tex/cbr_1_eye1_TA_tex_txt:
- addrs: [0x80801640, 0x80801740]
- npc/tex/cbr_1_eye2_TA_tex_txt:
- addrs: [0x80801740, 0x80801840]
- npc/tex/cbr_1_eye3_TA_tex_txt:
- addrs: [0x80801840, 0x80801940]
- npc/tex/cbr_1_eye4_TA_tex_txt:
- addrs: [0x80801940, 0x80801A40]
- npc/tex/cbr_1_eye5_TA_tex_txt:
- addrs: [0x80801A40, 0x80801B40]
- npc/tex/cbr_1_eye6_TA_tex_txt:
- addrs: [0x80801B40, 0x80801C40]
- npc/tex/cbr_1_eye7_TA_tex_txt:
- addrs: [0x80801C40, 0x80801D40]
- npc/tex/cbr_1_eye8_TA_tex_txt:
- addrs: [0x80801D40, 0x80801E40]
- npc/tex/cbr_1_mouth1_TA_tex_txt:
- addrs: [0x80801E40, 0x80801F40]
- npc/tex/cbr_1_mouth2_TA_tex_txt:
- addrs: [0x80801F40, 0x80802040]
- npc/tex/cbr_1_mouth3_TA_tex_txt:
- addrs: [0x80802040, 0x80802140]
- npc/tex/cbr_1_mouth4_TA_tex_txt:
- addrs: [0x80802140, 0x80802240]
- npc/tex/cbr_1_mouth5_TA_tex_txt:
- addrs: [0x80802240, 0x80802340]
- npc/tex/cbr_1_mouth6_TA_tex_txt:
- addrs: [0x80802340, 0x80802440]
- npc/tex/cbr_1_tmem_txt:
- addrs: [0x80802440, 0x80802840]
- npc/tex/cbr_2_pal:
- addrs: [0x80802840, 0x80802860]
- type: pal16
- npc/tex/cbr_2_eye1_TA_tex_txt:
- addrs: [0x80802860, 0x80802960]
- npc/tex/cbr_2_eye2_TA_tex_txt:
- addrs: [0x80802960, 0x80802A60]
- npc/tex/cbr_2_eye3_TA_tex_txt:
- addrs: [0x80802A60, 0x80802B60]
- npc/tex/cbr_2_eye4_TA_tex_txt:
- addrs: [0x80802B60, 0x80802C60]
- npc/tex/cbr_2_eye5_TA_tex_txt:
- addrs: [0x80802C60, 0x80802D60]
- npc/tex/cbr_2_eye6_TA_tex_txt:
- addrs: [0x80802D60, 0x80802E60]
- npc/tex/cbr_2_eye7_TA_tex_txt:
- addrs: [0x80802E60, 0x80802F60]
- npc/tex/cbr_2_eye8_TA_tex_txt:
- addrs: [0x80802F60, 0x80803060]
- npc/tex/cbr_2_mouth1_TA_tex_txt:
- addrs: [0x80803060, 0x80803160]
- npc/tex/cbr_2_mouth2_TA_tex_txt:
- addrs: [0x80803160, 0x80803260]
- npc/tex/cbr_2_mouth3_TA_tex_txt:
- addrs: [0x80803260, 0x80803360]
- npc/tex/cbr_2_mouth4_TA_tex_txt:
- addrs: [0x80803360, 0x80803460]
- npc/tex/cbr_2_mouth5_TA_tex_txt:
- addrs: [0x80803460, 0x80803560]
- npc/tex/cbr_2_mouth6_TA_tex_txt:
- addrs: [0x80803560, 0x80803660]
- npc/tex/cbr_2_tmem_txt:
- addrs: [0x80803660, 0x80803A60]
- npc/tex/cbr_11_pal:
- addrs: [0x80803A60, 0x80803A80]
- type: pal16
- npc/tex/cbr_11_eye1_TA_tex_txt:
- addrs: [0x80803A80, 0x80803B80]
- npc/tex/cbr_11_eye2_TA_tex_txt:
- addrs: [0x80803B80, 0x80803C80]
- npc/tex/cbr_11_eye3_TA_tex_txt:
- addrs: [0x80803C80, 0x80803D80]
- npc/tex/cbr_11_eye4_TA_tex_txt:
- addrs: [0x80803D80, 0x80803E80]
- npc/tex/cbr_11_eye5_TA_tex_txt:
- addrs: [0x80803E80, 0x80803F80]
- npc/tex/cbr_11_eye6_TA_tex_txt:
- addrs: [0x80803F80, 0x80804080]
- npc/tex/cbr_11_eye7_TA_tex_txt:
- addrs: [0x80804080, 0x80804180]
- npc/tex/cbr_11_eye8_TA_tex_txt:
- addrs: [0x80804180, 0x80804280]
- npc/tex/cbr_11_mouth1_TA_tex_txt:
- addrs: [0x80804280, 0x80804380]
- npc/tex/cbr_11_mouth2_TA_tex_txt:
- addrs: [0x80804380, 0x80804480]
- npc/tex/cbr_11_mouth3_TA_tex_txt:
- addrs: [0x80804480, 0x80804580]
- npc/tex/cbr_11_mouth4_TA_tex_txt:
- addrs: [0x80804580, 0x80804680]
- npc/tex/cbr_11_mouth5_TA_tex_txt:
- addrs: [0x80804680, 0x80804780]
- npc/tex/cbr_11_mouth6_TA_tex_txt:
- addrs: [0x80804780, 0x80804880]
- npc/tex/cbr_11_tmem_txt:
- addrs: [0x80804880, 0x80804C80]
- npc/tex/cbr_3_pal:
- addrs: [0x80804C80, 0x80804CA0]
- type: pal16
- npc/tex/cbr_3_eye1_TA_tex_txt:
- addrs: [0x80804CA0, 0x80804DA0]
- npc/tex/cbr_3_eye2_TA_tex_txt:
- addrs: [0x80804DA0, 0x80804EA0]
- npc/tex/cbr_3_eye3_TA_tex_txt:
- addrs: [0x80804EA0, 0x80804FA0]
- npc/tex/cbr_3_eye4_TA_tex_txt:
- addrs: [0x80804FA0, 0x808050A0]
- npc/tex/cbr_3_eye5_TA_tex_txt:
- addrs: [0x808050A0, 0x808051A0]
- npc/tex/cbr_3_eye6_TA_tex_txt:
- addrs: [0x808051A0, 0x808052A0]
- npc/tex/cbr_3_eye7_TA_tex_txt:
- addrs: [0x808052A0, 0x808053A0]
- npc/tex/cbr_3_eye8_TA_tex_txt:
- addrs: [0x808053A0, 0x808054A0]
- npc/tex/cbr_3_mouth1_TA_tex_txt:
- addrs: [0x808054A0, 0x808055A0]
- npc/tex/cbr_3_mouth2_TA_tex_txt:
- addrs: [0x808055A0, 0x808056A0]
- npc/tex/cbr_3_mouth3_TA_tex_txt:
- addrs: [0x808056A0, 0x808057A0]
- npc/tex/cbr_3_mouth4_TA_tex_txt:
- addrs: [0x808057A0, 0x808058A0]
- npc/tex/cbr_3_mouth5_TA_tex_txt:
- addrs: [0x808058A0, 0x808059A0]
- npc/tex/cbr_3_mouth6_TA_tex_txt:
- addrs: [0x808059A0, 0x80805AA0]
- npc/tex/cbr_3_tmem_txt:
- addrs: [0x80805AA0, 0x80805EA0]
- npc/tex/cbr_4_pal:
- addrs: [0x80805EA0, 0x80805EC0]
- type: pal16
- npc/tex/cbr_4_eye1_TA_tex_txt:
- addrs: [0x80805EC0, 0x80805FC0]
- npc/tex/cbr_4_eye2_TA_tex_txt:
- addrs: [0x80805FC0, 0x808060C0]
- npc/tex/cbr_4_eye3_TA_tex_txt:
- addrs: [0x808060C0, 0x808061C0]
- npc/tex/cbr_4_eye4_TA_tex_txt:
- addrs: [0x808061C0, 0x808062C0]
- npc/tex/cbr_4_eye5_TA_tex_txt:
- addrs: [0x808062C0, 0x808063C0]
- npc/tex/cbr_4_eye6_TA_tex_txt:
- addrs: [0x808063C0, 0x808064C0]
- npc/tex/cbr_4_eye7_TA_tex_txt:
- addrs: [0x808064C0, 0x808065C0]
- npc/tex/cbr_4_eye8_TA_tex_txt:
- addrs: [0x808065C0, 0x808066C0]
- npc/tex/cbr_4_mouth1_TA_tex_txt:
- addrs: [0x808066C0, 0x808067C0]
- npc/tex/cbr_4_mouth2_TA_tex_txt:
- addrs: [0x808067C0, 0x808068C0]
- npc/tex/cbr_4_mouth3_TA_tex_txt:
- addrs: [0x808068C0, 0x808069C0]
- npc/tex/cbr_4_mouth4_TA_tex_txt:
- addrs: [0x808069C0, 0x80806AC0]
- npc/tex/cbr_4_mouth5_TA_tex_txt:
- addrs: [0x80806AC0, 0x80806BC0]
- npc/tex/cbr_4_mouth6_TA_tex_txt:
- addrs: [0x80806BC0, 0x80806CC0]
- npc/tex/cbr_4_tmem_txt:
- addrs: [0x80806CC0, 0x808070C0]
- npc/tex/cbr_5_pal:
- addrs: [0x808070C0, 0x808070E0]
- type: pal16
- npc/tex/cbr_5_eye1_TA_tex_txt:
- addrs: [0x808070E0, 0x808071E0]
- npc/tex/cbr_5_eye2_TA_tex_txt:
- addrs: [0x808071E0, 0x808072E0]
- npc/tex/cbr_5_eye3_TA_tex_txt:
- addrs: [0x808072E0, 0x808073E0]
- npc/tex/cbr_5_eye4_TA_tex_txt:
- addrs: [0x808073E0, 0x808074E0]
- npc/tex/cbr_5_eye5_TA_tex_txt:
- addrs: [0x808074E0, 0x808075E0]
- npc/tex/cbr_5_eye6_TA_tex_txt:
- addrs: [0x808075E0, 0x808076E0]
- npc/tex/cbr_5_eye7_TA_tex_txt:
- addrs: [0x808076E0, 0x808077E0]
- npc/tex/cbr_5_eye8_TA_tex_txt:
- addrs: [0x808077E0, 0x808078E0]
- npc/tex/cbr_5_mouth1_TA_tex_txt:
- addrs: [0x808078E0, 0x808079E0]
- npc/tex/cbr_5_mouth2_TA_tex_txt:
- addrs: [0x808079E0, 0x80807AE0]
- npc/tex/cbr_5_mouth3_TA_tex_txt:
- addrs: [0x80807AE0, 0x80807BE0]
- npc/tex/cbr_5_mouth4_TA_tex_txt:
- addrs: [0x80807BE0, 0x80807CE0]
- npc/tex/cbr_5_mouth5_TA_tex_txt:
- addrs: [0x80807CE0, 0x80807DE0]
- npc/tex/cbr_5_mouth6_TA_tex_txt:
- addrs: [0x80807DE0, 0x80807EE0]
- npc/tex/cbr_5_tmem_txt:
- addrs: [0x80807EE0, 0x808082E0]
- npc/tex/cbr_6_pal:
- addrs: [0x808082E0, 0x80808300]
- type: pal16
- npc/tex/cbr_6_eye1_TA_tex_txt:
- addrs: [0x80808300, 0x80808400]
- npc/tex/cbr_6_eye2_TA_tex_txt:
- addrs: [0x80808400, 0x80808500]
- npc/tex/cbr_6_eye3_TA_tex_txt:
- addrs: [0x80808500, 0x80808600]
- npc/tex/cbr_6_eye4_TA_tex_txt:
- addrs: [0x80808600, 0x80808700]
- npc/tex/cbr_6_eye5_TA_tex_txt:
- addrs: [0x80808700, 0x80808800]
- npc/tex/cbr_6_eye6_TA_tex_txt:
- addrs: [0x80808800, 0x80808900]
- npc/tex/cbr_6_eye7_TA_tex_txt:
- addrs: [0x80808900, 0x80808A00]
- npc/tex/cbr_6_eye8_TA_tex_txt:
- addrs: [0x80808A00, 0x80808B00]
- npc/tex/cbr_6_mouth1_TA_tex_txt:
- addrs: [0x80808B00, 0x80808C00]
- npc/tex/cbr_6_mouth2_TA_tex_txt:
- addrs: [0x80808C00, 0x80808D00]
- npc/tex/cbr_6_mouth3_TA_tex_txt:
- addrs: [0x80808D00, 0x80808E00]
- npc/tex/cbr_6_mouth4_TA_tex_txt:
- addrs: [0x80808E00, 0x80808F00]
- npc/tex/cbr_6_mouth5_TA_tex_txt:
- addrs: [0x80808F00, 0x80809000]
- npc/tex/cbr_6_mouth6_TA_tex_txt:
- addrs: [0x80809000, 0x80809100]
- npc/tex/cbr_6_tmem_txt:
- addrs: [0x80809100, 0x80809500]
- npc/tex/cbr_7_pal:
- addrs: [0x80809500, 0x80809520]
- type: pal16
- npc/tex/cbr_7_eye1_TA_tex_txt:
- addrs: [0x80809520, 0x80809620]
- npc/tex/cbr_7_eye2_TA_tex_txt:
- addrs: [0x80809620, 0x80809720]
- npc/tex/cbr_7_eye3_TA_tex_txt:
- addrs: [0x80809720, 0x80809820]
- npc/tex/cbr_7_eye4_TA_tex_txt:
- addrs: [0x80809820, 0x80809920]
- npc/tex/cbr_7_eye5_TA_tex_txt:
- addrs: [0x80809920, 0x80809A20]
- npc/tex/cbr_7_eye6_TA_tex_txt:
- addrs: [0x80809A20, 0x80809B20]
- npc/tex/cbr_7_eye7_TA_tex_txt:
- addrs: [0x80809B20, 0x80809C20]
- npc/tex/cbr_7_eye8_TA_tex_txt:
- addrs: [0x80809C20, 0x80809D20]
- npc/tex/cbr_7_mouth1_TA_tex_txt:
- addrs: [0x80809D20, 0x80809E20]
- npc/tex/cbr_7_mouth2_TA_tex_txt:
- addrs: [0x80809E20, 0x80809F20]
- npc/tex/cbr_7_mouth3_TA_tex_txt:
- addrs: [0x80809F20, 0x8080A020]
- npc/tex/cbr_7_mouth4_TA_tex_txt:
- addrs: [0x8080A020, 0x8080A120]
- npc/tex/cbr_7_mouth5_TA_tex_txt:
- addrs: [0x8080A120, 0x8080A220]
- npc/tex/cbr_7_mouth6_TA_tex_txt:
- addrs: [0x8080A220, 0x8080A320]
- npc/tex/cbr_7_tmem_txt:
- addrs: [0x8080A320, 0x8080A720]
- npc/tex/cbr_8_pal:
- addrs: [0x8080A720, 0x8080A740]
- type: pal16
- npc/tex/cbr_8_eye1_TA_tex_txt:
- addrs: [0x8080A740, 0x8080A840]
- npc/tex/cbr_8_eye2_TA_tex_txt:
- addrs: [0x8080A840, 0x8080A940]
- npc/tex/cbr_8_eye3_TA_tex_txt:
- addrs: [0x8080A940, 0x8080AA40]
- npc/tex/cbr_8_eye4_TA_tex_txt:
- addrs: [0x8080AA40, 0x8080AB40]
- npc/tex/cbr_8_eye5_TA_tex_txt:
- addrs: [0x8080AB40, 0x8080AC40]
- npc/tex/cbr_8_eye6_TA_tex_txt:
- addrs: [0x8080AC40, 0x8080AD40]
- npc/tex/cbr_8_eye7_TA_tex_txt:
- addrs: [0x8080AD40, 0x8080AE40]
- npc/tex/cbr_8_eye8_TA_tex_txt:
- addrs: [0x8080AE40, 0x8080AF40]
- npc/tex/cbr_8_mouth1_TA_tex_txt:
- addrs: [0x8080AF40, 0x8080B040]
- npc/tex/cbr_8_mouth2_TA_tex_txt:
- addrs: [0x8080B040, 0x8080B140]
- npc/tex/cbr_8_mouth3_TA_tex_txt:
- addrs: [0x8080B140, 0x8080B240]
- npc/tex/cbr_8_mouth4_TA_tex_txt:
- addrs: [0x8080B240, 0x8080B340]
- npc/tex/cbr_8_mouth5_TA_tex_txt:
- addrs: [0x8080B340, 0x8080B440]
- npc/tex/cbr_8_mouth6_TA_tex_txt:
- addrs: [0x8080B440, 0x8080B540]
- npc/tex/cbr_8_tmem_txt:
- addrs: [0x8080B540, 0x8080B940]
- npc/tex/cbr_9_pal:
- addrs: [0x8080B940, 0x8080B960]
- type: pal16
- npc/tex/cbr_9_eye1_TA_tex_txt:
- addrs: [0x8080B960, 0x8080BA60]
- npc/tex/cbr_9_eye2_TA_tex_txt:
- addrs: [0x8080BA60, 0x8080BB60]
- npc/tex/cbr_9_eye3_TA_tex_txt:
- addrs: [0x8080BB60, 0x8080BC60]
- npc/tex/cbr_9_eye4_TA_tex_txt:
- addrs: [0x8080BC60, 0x8080BD60]
- npc/tex/cbr_9_eye5_TA_tex_txt:
- addrs: [0x8080BD60, 0x8080BE60]
- npc/tex/cbr_9_eye6_TA_tex_txt:
- addrs: [0x8080BE60, 0x8080BF60]
- npc/tex/cbr_9_eye7_TA_tex_txt:
- addrs: [0x8080BF60, 0x8080C060]
- npc/tex/cbr_9_eye8_TA_tex_txt:
- addrs: [0x8080C060, 0x8080C160]
- npc/tex/cbr_9_mouth1_TA_tex_txt:
- addrs: [0x8080C160, 0x8080C260]
- npc/tex/cbr_9_mouth2_TA_tex_txt:
- addrs: [0x8080C260, 0x8080C360]
- npc/tex/cbr_9_mouth3_TA_tex_txt:
- addrs: [0x8080C360, 0x8080C460]
- npc/tex/cbr_9_mouth4_TA_tex_txt:
- addrs: [0x8080C460, 0x8080C560]
- npc/tex/cbr_9_mouth5_TA_tex_txt:
- addrs: [0x8080C560, 0x8080C660]
- npc/tex/cbr_9_mouth6_TA_tex_txt:
- addrs: [0x8080C660, 0x8080C760]
- npc/tex/cbr_9_tmem_txt:
- addrs: [0x8080C760, 0x8080CB60]
- npc/tex/cbr_10_pal:
- addrs: [0x8080CB60, 0x8080CB80]
- type: pal16
- npc/tex/cbr_10_eye1_TA_tex_txt:
- addrs: [0x8080CB80, 0x8080CC80]
- npc/tex/cbr_10_eye2_TA_tex_txt:
- addrs: [0x8080CC80, 0x8080CD80]
- npc/tex/cbr_10_eye3_TA_tex_txt:
- addrs: [0x8080CD80, 0x8080CE80]
- npc/tex/cbr_10_eye4_TA_tex_txt:
- addrs: [0x8080CE80, 0x8080CF80]
- npc/tex/cbr_10_eye5_TA_tex_txt:
- addrs: [0x8080CF80, 0x8080D080]
- npc/tex/cbr_10_eye6_TA_tex_txt:
- addrs: [0x8080D080, 0x8080D180]
- npc/tex/cbr_10_eye7_TA_tex_txt:
- addrs: [0x8080D180, 0x8080D280]
- npc/tex/cbr_10_eye8_TA_tex_txt:
- addrs: [0x8080D280, 0x8080D380]
- npc/tex/cbr_10_mouth1_TA_tex_txt:
- addrs: [0x8080D380, 0x8080D480]
- npc/tex/cbr_10_mouth2_TA_tex_txt:
- addrs: [0x8080D480, 0x8080D580]
- npc/tex/cbr_10_mouth3_TA_tex_txt:
- addrs: [0x8080D580, 0x8080D680]
- npc/tex/cbr_10_mouth4_TA_tex_txt:
- addrs: [0x8080D680, 0x8080D780]
- npc/tex/cbr_10_mouth5_TA_tex_txt:
- addrs: [0x8080D780, 0x8080D880]
- npc/tex/cbr_10_mouth6_TA_tex_txt:
- addrs: [0x8080D880, 0x8080D980]
- npc/tex/cbr_10_tmem_txt:
- addrs: [0x8080D980, 0x8080DD80]
- npc/mdl/rcc_1_v:
- addrs: [0x8080E628, 0x8080FBD8]
- type: vtx
- npc/tex/rcc_1_pal:
- addrs: [0x80810620, 0x80810640]
- type: pal16
- npc/tex/rcc_1_eye1_TA_tex_txt:
- addrs: [0x80810640, 0x80810740]
- npc/tex/rcc_1_eye2_TA_tex_txt:
- addrs: [0x80810740, 0x80810840]
- npc/tex/rcc_1_eye3_TA_tex_txt:
- addrs: [0x80810840, 0x80810940]
- npc/tex/rcc_1_eye4_TA_tex_txt:
- addrs: [0x80810940, 0x80810A40]
- npc/tex/rcc_1_eye5_TA_tex_txt:
- addrs: [0x80810A40, 0x80810B40]
- npc/tex/rcc_1_eye6_TA_tex_txt:
- addrs: [0x80810B40, 0x80810C40]
- npc/tex/rcc_1_eye7_TA_tex_txt:
- addrs: [0x80810C40, 0x80810D40]
- npc/tex/rcc_1_eye8_TA_tex_txt:
- addrs: [0x80810D40, 0x80810E40]
- npc/tex/rcc_1_tmem_txt:
- addrs: [0x80810E40, 0x80811500]
- npc/mdl/cow_1_v:
- addrs: [0x80811500, 0x80812B30]
- type: vtx
- npc/tex/cow_1_pal:
- addrs: [0x808134E0, 0x80813500]
- type: pal16
- npc/tex/cow_1_eye1_TA_tex_txt:
- addrs: [0x80813500, 0x80813600]
- npc/tex/cow_1_eye2_TA_tex_txt:
- addrs: [0x80813600, 0x80813700]
- npc/tex/cow_1_eye3_TA_tex_txt:
- addrs: [0x80813700, 0x80813800]
- npc/tex/cow_1_eye4_TA_tex_txt:
- addrs: [0x80813800, 0x80813900]
- npc/tex/cow_1_eye5_TA_tex_txt:
- addrs: [0x80813900, 0x80813A00]
- npc/tex/cow_1_eye6_TA_tex_txt:
- addrs: [0x80813A00, 0x80813B00]
- npc/tex/cow_1_eye7_TA_tex_txt:
- addrs: [0x80813B00, 0x80813C00]
- npc/tex/cow_1_eye8_TA_tex_txt:
- addrs: [0x80813C00, 0x80813D00]
- npc/tex/cow_1_mouth1_TA_tex_txt:
- addrs: [0x80813D00, 0x80813E00]
- npc/tex/cow_1_mouth2_TA_tex_txt:
- addrs: [0x80813E00, 0x80813F00]
- npc/tex/cow_1_mouth3_TA_tex_txt:
- addrs: [0x80813F00, 0x80814000]
- npc/tex/cow_1_mouth4_TA_tex_txt:
- addrs: [0x80814000, 0x80814100]
- npc/tex/cow_1_mouth5_TA_tex_txt:
- addrs: [0x80814100, 0x80814200]
- npc/tex/cow_1_mouth6_TA_tex_txt:
- addrs: [0x80814200, 0x80814300]
- npc/tex/cow_1_tmem_txt:
- addrs: [0x80814300, 0x80814700]
- npc/tex/cow_2_pal:
- addrs: [0x80814700, 0x80814720]
- type: pal16
- npc/tex/cow_2_eye1_TA_tex_txt:
- addrs: [0x80814720, 0x80814820]
- npc/tex/cow_2_eye2_TA_tex_txt:
- addrs: [0x80814820, 0x80814920]
- npc/tex/cow_2_eye3_TA_tex_txt:
- addrs: [0x80814920, 0x80814A20]
- npc/tex/cow_2_eye4_TA_tex_txt:
- addrs: [0x80814A20, 0x80814B20]
- npc/tex/cow_2_eye5_TA_tex_txt:
- addrs: [0x80814B20, 0x80814C20]
- npc/tex/cow_2_eye6_TA_tex_txt:
- addrs: [0x80814C20, 0x80814D20]
- npc/tex/cow_2_eye7_TA_tex_txt:
- addrs: [0x80814D20, 0x80814E20]
- npc/tex/cow_2_eye8_TA_tex_txt:
- addrs: [0x80814E20, 0x80814F20]
- npc/tex/cow_2_mouth1_TA_tex_txt:
- addrs: [0x80814F20, 0x80815020]
- npc/tex/cow_2_mouth2_TA_tex_txt:
- addrs: [0x80815020, 0x80815120]
- npc/tex/cow_2_mouth3_TA_tex_txt:
- addrs: [0x80815120, 0x80815220]
- npc/tex/cow_2_mouth4_TA_tex_txt:
- addrs: [0x80815220, 0x80815320]
- npc/tex/cow_2_mouth5_TA_tex_txt:
- addrs: [0x80815320, 0x80815420]
- npc/tex/cow_2_mouth6_TA_tex_txt:
- addrs: [0x80815420, 0x80815520]
- npc/tex/cow_2_tmem_txt:
- addrs: [0x80815520, 0x80815920]
- npc/tex/cow_3_pal:
- addrs: [0x80815920, 0x80815940]
- type: pal16
- npc/tex/cow_3_eye1_TA_tex_txt:
- addrs: [0x80815940, 0x80815A40]
- npc/tex/cow_3_eye2_TA_tex_txt:
- addrs: [0x80815A40, 0x80815B40]
- npc/tex/cow_3_eye3_TA_tex_txt:
- addrs: [0x80815B40, 0x80815C40]
- npc/tex/cow_3_eye4_TA_tex_txt:
- addrs: [0x80815C40, 0x80815D40]
- npc/tex/cow_3_eye5_TA_tex_txt:
- addrs: [0x80815D40, 0x80815E40]
- npc/tex/cow_3_eye6_TA_tex_txt:
- addrs: [0x80815E40, 0x80815F40]
- npc/tex/cow_3_eye7_TA_tex_txt:
- addrs: [0x80815F40, 0x80816040]
- npc/tex/cow_3_eye8_TA_tex_txt:
- addrs: [0x80816040, 0x80816140]
- npc/tex/cow_3_mouth1_TA_tex_txt:
- addrs: [0x80816140, 0x80816240]
- npc/tex/cow_3_mouth2_TA_tex_txt:
- addrs: [0x80816240, 0x80816340]
- npc/tex/cow_3_mouth3_TA_tex_txt:
- addrs: [0x80816340, 0x80816440]
- npc/tex/cow_3_mouth4_TA_tex_txt:
- addrs: [0x80816440, 0x80816540]
- npc/tex/cow_3_mouth5_TA_tex_txt:
- addrs: [0x80816540, 0x80816640]
- npc/tex/cow_3_mouth6_TA_tex_txt:
- addrs: [0x80816640, 0x80816740]
- npc/tex/cow_3_tmem_txt:
- addrs: [0x80816740, 0x80816B40]
- npc/tex/cow_4_pal:
- addrs: [0x80816B40, 0x80816B60]
- type: pal16
- npc/tex/cow_4_eye1_TA_tex_txt:
- addrs: [0x80816B60, 0x80816C60]
- npc/tex/cow_4_eye2_TA_tex_txt:
- addrs: [0x80816C60, 0x80816D60]
- npc/tex/cow_4_eye3_TA_tex_txt:
- addrs: [0x80816D60, 0x80816E60]
- npc/tex/cow_4_eye4_TA_tex_txt:
- addrs: [0x80816E60, 0x80816F60]
- npc/tex/cow_4_eye5_TA_tex_txt:
- addrs: [0x80816F60, 0x80817060]
- npc/tex/cow_4_eye6_TA_tex_txt:
- addrs: [0x80817060, 0x80817160]
- npc/tex/cow_4_eye7_TA_tex_txt:
- addrs: [0x80817160, 0x80817260]
- npc/tex/cow_4_eye8_TA_tex_txt:
- addrs: [0x80817260, 0x80817360]
- npc/tex/cow_4_mouth1_TA_tex_txt:
- addrs: [0x80817360, 0x80817460]
- npc/tex/cow_4_mouth2_TA_tex_txt:
- addrs: [0x80817460, 0x80817560]
- npc/tex/cow_4_mouth3_TA_tex_txt:
- addrs: [0x80817560, 0x80817660]
- npc/tex/cow_4_mouth4_TA_tex_txt:
- addrs: [0x80817660, 0x80817760]
- npc/tex/cow_4_mouth5_TA_tex_txt:
- addrs: [0x80817760, 0x80817860]
- npc/tex/cow_4_mouth6_TA_tex_txt:
- addrs: [0x80817860, 0x80817960]
- npc/tex/cow_4_tmem_txt:
- addrs: [0x80817960, 0x80817D60]
- npc/mdl/crd_1_v:
- addrs: [0x80817D60, 0x808194F0]
- type: vtx
- npc/tex/crd_1_pal:
- addrs: [0x80819F00, 0x80819F20]
- type: pal16
- npc/tex/crd_1_eye1_TA_tex_txt:
- addrs: [0x80819F20, 0x8081A020]
- npc/tex/crd_1_eye2_TA_tex_txt:
- addrs: [0x8081A020, 0x8081A120]
- npc/tex/crd_1_eye3_TA_tex_txt:
- addrs: [0x8081A120, 0x8081A220]
- npc/tex/crd_1_eye4_TA_tex_txt:
- addrs: [0x8081A220, 0x8081A320]
- npc/tex/crd_1_eye5_TA_tex_txt:
- addrs: [0x8081A320, 0x8081A420]
- npc/tex/crd_1_eye6_TA_tex_txt:
- addrs: [0x8081A420, 0x8081A520]
- npc/tex/crd_1_eye7_TA_tex_txt:
- addrs: [0x8081A520, 0x8081A620]
- npc/tex/crd_1_eye8_TA_tex_txt:
- addrs: [0x8081A620, 0x8081A720]
- npc/tex/crd_1_tmem_txt:
- addrs: [0x8081A720, 0x8081AC20]
- npc/tex/crd_2_pal:
- addrs: [0x8081AC20, 0x8081AC40]
- type: pal16
- npc/tex/crd_2_eye1_TA_tex_txt:
- addrs: [0x8081AC40, 0x8081AD40]
- npc/tex/crd_2_eye2_TA_tex_txt:
- addrs: [0x8081AD40, 0x8081AE40]
- npc/tex/crd_2_eye3_TA_tex_txt:
- addrs: [0x8081AE40, 0x8081AF40]
- npc/tex/crd_2_eye4_TA_tex_txt:
- addrs: [0x8081AF40, 0x8081B040]
- npc/tex/crd_2_eye5_TA_tex_txt:
- addrs: [0x8081B040, 0x8081B140]
- npc/tex/crd_2_eye6_TA_tex_txt:
- addrs: [0x8081B140, 0x8081B240]
- npc/tex/crd_2_eye7_TA_tex_txt:
- addrs: [0x8081B240, 0x8081B340]
- npc/tex/crd_2_eye8_TA_tex_txt:
- addrs: [0x8081B340, 0x8081B440]
- npc/tex/crd_2_tmem_txt:
- addrs: [0x8081B440, 0x8081B940]
- npc/tex/crd_3_pal:
- addrs: [0x8081B940, 0x8081B960]
- type: pal16
- npc/tex/crd_3_eye1_TA_tex_txt:
- addrs: [0x8081B960, 0x8081BA60]
- npc/tex/crd_3_eye2_TA_tex_txt:
- addrs: [0x8081BA60, 0x8081BB60]
- npc/tex/crd_3_eye3_TA_tex_txt:
- addrs: [0x8081BB60, 0x8081BC60]
- npc/tex/crd_3_eye4_TA_tex_txt:
- addrs: [0x8081BC60, 0x8081BD60]
- npc/tex/crd_3_eye5_TA_tex_txt:
- addrs: [0x8081BD60, 0x8081BE60]
- npc/tex/crd_3_eye6_TA_tex_txt:
- addrs: [0x8081BE60, 0x8081BF60]
- npc/tex/crd_3_eye7_TA_tex_txt:
- addrs: [0x8081BF60, 0x8081C060]
- npc/tex/crd_3_eye8_TA_tex_txt:
- addrs: [0x8081C060, 0x8081C160]
- npc/tex/crd_3_tmem_txt:
- addrs: [0x8081C160, 0x8081C660]
- npc/tex/crd_4_pal:
- addrs: [0x8081C660, 0x8081C680]
- type: pal16
- npc/tex/crd_4_eye1_TA_tex_txt:
- addrs: [0x8081C680, 0x8081C780]
- npc/tex/crd_4_eye2_TA_tex_txt:
- addrs: [0x8081C780, 0x8081C880]
- npc/tex/crd_4_eye3_TA_tex_txt:
- addrs: [0x8081C880, 0x8081C980]
- npc/tex/crd_4_eye4_TA_tex_txt:
- addrs: [0x8081C980, 0x8081CA80]
- npc/tex/crd_4_eye5_TA_tex_txt:
- addrs: [0x8081CA80, 0x8081CB80]
- npc/tex/crd_4_eye6_TA_tex_txt:
- addrs: [0x8081CB80, 0x8081CC80]
- npc/tex/crd_4_eye7_TA_tex_txt:
- addrs: [0x8081CC80, 0x8081CD80]
- npc/tex/crd_4_eye8_TA_tex_txt:
- addrs: [0x8081CD80, 0x8081CE80]
- npc/tex/crd_4_tmem_txt:
- addrs: [0x8081CE80, 0x8081D380]
- npc/mdl/owl_1_v:
- addrs: [0x8081D380, 0x8081EE10]
- type: vtx
- npc/tex/owl_1_pal:
- addrs: [0x8081F9C0, 0x8081F9E0]
- type: pal16
- npc/tex/owl_1_eye1_TA_tex_txt:
- addrs: [0x8081F9E0, 0x8081FAE0]
- npc/tex/owl_1_eye2_TA_tex_txt:
- addrs: [0x8081FAE0, 0x8081FBE0]
- npc/tex/owl_1_eye3_TA_tex_txt:
- addrs: [0x8081FBE0, 0x8081FCE0]
- npc/tex/owl_1_eye4_TA_tex_txt:
- addrs: [0x8081FCE0, 0x8081FDE0]
- npc/tex/owl_1_eye5_TA_tex_txt:
- addrs: [0x8081FDE0, 0x8081FEE0]
- npc/tex/owl_1_eye6_TA_tex_txt:
- addrs: [0x8081FEE0, 0x8081FFE0]
- npc/tex/owl_1_eye7_TA_tex_txt:
- addrs: [0x8081FFE0, 0x808200E0]
- npc/tex/owl_1_eye8_TA_tex_txt:
- addrs: [0x808200E0, 0x808201E0]
- npc/tex/owl_1_tmem_txt:
- addrs: [0x808201E0, 0x80820820]
- npc/mdl/rcd_1_v:
- addrs: [0x80820820, 0x80821D40]
- type: vtx
- npc/tex/rcd_1_pal:
- addrs: [0x80822720, 0x80822740]
- type: pal16
- npc/tex/rcd_1_eye1_TA_tex_txt:
- addrs: [0x80822740, 0x80822840]
- npc/tex/rcd_1_eye2_TA_tex_txt:
- addrs: [0x80822840, 0x80822940]
- npc/tex/rcd_1_eye3_TA_tex_txt:
- addrs: [0x80822940, 0x80822A40]
- npc/tex/rcd_1_eye4_TA_tex_txt:
- addrs: [0x80822A40, 0x80822B40]
- npc/tex/rcd_1_eye5_TA_tex_txt:
- addrs: [0x80822B40, 0x80822C40]
- npc/tex/rcd_1_eye6_TA_tex_txt:
- addrs: [0x80822C40, 0x80822D40]
- npc/tex/rcd_1_eye7_TA_tex_txt:
- addrs: [0x80822D40, 0x80822E40]
- npc/tex/rcd_1_eye8_TA_tex_txt:
- addrs: [0x80822E40, 0x80822F40]
- npc/tex/rcd_1_tmem_txt:
- addrs: [0x80822F40, 0x80823580]
- npc/mdl/grf_1_v:
- addrs: [0x80823580, 0x80825060]
- type: vtx
- npc/tex/grf_1_pal:
- addrs: [0x80825B40, 0x80825B60]
- type: pal16
- npc/tex/grf_1_eye1_TA_tex_txt:
- addrs: [0x80825B60, 0x80825C60]
- npc/tex/grf_1_eye2_TA_tex_txt:
- addrs: [0x80825C60, 0x80825D60]
- npc/tex/grf_1_eye3_TA_tex_txt:
- addrs: [0x80825D60, 0x80825E60]
- npc/tex/grf_1_eye4_TA_tex_txt:
- addrs: [0x80825E60, 0x80825F60]
- npc/tex/grf_1_eye5_TA_tex_txt:
- addrs: [0x80825F60, 0x80826060]
- npc/tex/grf_1_eye6_TA_tex_txt:
- addrs: [0x80826060, 0x80826160]
- npc/tex/grf_1_eye7_TA_tex_txt:
- addrs: [0x80826160, 0x80826260]
- npc/tex/grf_1_eye8_TA_tex_txt:
- addrs: [0x80826260, 0x80826360]
- npc/tex/grf_1_tmem_txt:
- addrs: [0x80826360, 0x80826A60]
- npc/mdl/dog_1_v:
- addrs: [0x80826A60, 0x80828110]
- type: vtx
- npc/tex/dog_1_pal:
- addrs: [0x80828A40, 0x80828A60]
- type: pal16
- npc/tex/dog_1_eye1_TA_tex_txt:
- addrs: [0x80828A60, 0x80828B60]
- npc/tex/dog_1_eye2_TA_tex_txt:
- addrs: [0x80828B60, 0x80828C60]
- npc/tex/dog_1_eye3_TA_tex_txt:
- addrs: [0x80828C60, 0x80828D60]
- npc/tex/dog_1_eye4_TA_tex_txt:
- addrs: [0x80828D60, 0x80828E60]
- npc/tex/dog_1_eye5_TA_tex_txt:
- addrs: [0x80828E60, 0x80828F60]
- npc/tex/dog_1_eye6_TA_tex_txt:
- addrs: [0x80828F60, 0x80829060]
- npc/tex/dog_1_eye7_TA_tex_txt:
- addrs: [0x80829060, 0x80829160]
- npc/tex/dog_1_eye8_TA_tex_txt:
- addrs: [0x80829160, 0x80829260]
- npc/tex/dog_1_mouth1_TA_tex_txt:
- addrs: [0x80829260, 0x80829360]
- npc/tex/dog_1_mouth2_TA_tex_txt:
- addrs: [0x80829360, 0x80829460]
- npc/tex/dog_1_mouth3_TA_tex_txt:
- addrs: [0x80829460, 0x80829560]
- npc/tex/dog_1_mouth4_TA_tex_txt:
- addrs: [0x80829560, 0x80829660]
- npc/tex/dog_1_mouth5_TA_tex_txt:
- addrs: [0x80829660, 0x80829760]
- npc/tex/dog_1_mouth6_TA_tex_txt:
- addrs: [0x80829760, 0x80829860]
- npc/tex/dog_1_tmem_txt:
- addrs: [0x80829860, 0x80829C60]
- npc/tex/dog_2_pal:
- addrs: [0x80829C60, 0x80829C80]
- type: pal16
- npc/tex/dog_2_eye1_TA_tex_txt:
- addrs: [0x80829C80, 0x80829D80]
- npc/tex/dog_2_eye2_TA_tex_txt:
- addrs: [0x80829D80, 0x80829E80]
- npc/tex/dog_2_eye3_TA_tex_txt:
- addrs: [0x80829E80, 0x80829F80]
- npc/tex/dog_2_eye4_TA_tex_txt:
- addrs: [0x80829F80, 0x8082A080]
- npc/tex/dog_2_eye5_TA_tex_txt:
- addrs: [0x8082A080, 0x8082A180]
- npc/tex/dog_2_eye6_TA_tex_txt:
- addrs: [0x8082A180, 0x8082A280]
- npc/tex/dog_2_eye7_TA_tex_txt:
- addrs: [0x8082A280, 0x8082A380]
- npc/tex/dog_2_eye8_TA_tex_txt:
- addrs: [0x8082A380, 0x8082A480]
- npc/tex/dog_2_mouth1_TA_tex_txt:
- addrs: [0x8082A480, 0x8082A580]
- npc/tex/dog_2_mouth2_TA_tex_txt:
- addrs: [0x8082A580, 0x8082A680]
- npc/tex/dog_2_mouth3_TA_tex_txt:
- addrs: [0x8082A680, 0x8082A780]
- npc/tex/dog_2_mouth4_TA_tex_txt:
- addrs: [0x8082A780, 0x8082A880]
- npc/tex/dog_2_mouth5_TA_tex_txt:
- addrs: [0x8082A880, 0x8082A980]
- npc/tex/dog_2_mouth6_TA_tex_txt:
- addrs: [0x8082A980, 0x8082AA80]
- npc/tex/dog_2_tmem_txt:
- addrs: [0x8082AA80, 0x8082AE80]
- npc/tex/dog_3_pal:
- addrs: [0x8082AE80, 0x8082AEA0]
- type: pal16
- npc/tex/dog_3_eye1_TA_tex_txt:
- addrs: [0x8082AEA0, 0x8082AFA0]
- npc/tex/dog_3_eye2_TA_tex_txt:
- addrs: [0x8082AFA0, 0x8082B0A0]
- npc/tex/dog_3_eye3_TA_tex_txt:
- addrs: [0x8082B0A0, 0x8082B1A0]
- npc/tex/dog_3_eye4_TA_tex_txt:
- addrs: [0x8082B1A0, 0x8082B2A0]
- npc/tex/dog_3_eye5_TA_tex_txt:
- addrs: [0x8082B2A0, 0x8082B3A0]
- npc/tex/dog_3_eye6_TA_tex_txt:
- addrs: [0x8082B3A0, 0x8082B4A0]
- npc/tex/dog_3_eye7_TA_tex_txt:
- addrs: [0x8082B4A0, 0x8082B5A0]
- npc/tex/dog_3_eye8_TA_tex_txt:
- addrs: [0x8082B5A0, 0x8082B6A0]
- npc/tex/dog_3_mouth1_TA_tex_txt:
- addrs: [0x8082B6A0, 0x8082B7A0]
- npc/tex/dog_3_mouth2_TA_tex_txt:
- addrs: [0x8082B7A0, 0x8082B8A0]
- npc/tex/dog_3_mouth3_TA_tex_txt:
- addrs: [0x8082B8A0, 0x8082B9A0]
- npc/tex/dog_3_mouth4_TA_tex_txt:
- addrs: [0x8082B9A0, 0x8082BAA0]
- npc/tex/dog_3_mouth5_TA_tex_txt:
- addrs: [0x8082BAA0, 0x8082BBA0]
- npc/tex/dog_3_mouth6_TA_tex_txt:
- addrs: [0x8082BBA0, 0x8082BCA0]
- npc/tex/dog_3_tmem_txt:
- addrs: [0x8082BCA0, 0x8082C0A0]
- npc/tex/dog_4_pal:
- addrs: [0x8082C0A0, 0x8082C0C0]
- type: pal16
- npc/tex/dog_4_eye1_TA_tex_txt:
- addrs: [0x8082C0C0, 0x8082C1C0]
- npc/tex/dog_4_eye2_TA_tex_txt:
- addrs: [0x8082C1C0, 0x8082C2C0]
- npc/tex/dog_4_eye3_TA_tex_txt:
- addrs: [0x8082C2C0, 0x8082C3C0]
- npc/tex/dog_4_eye4_TA_tex_txt:
- addrs: [0x8082C3C0, 0x8082C4C0]
- npc/tex/dog_4_eye5_TA_tex_txt:
- addrs: [0x8082C4C0, 0x8082C5C0]
- npc/tex/dog_4_eye6_TA_tex_txt:
- addrs: [0x8082C5C0, 0x8082C6C0]
- npc/tex/dog_4_eye7_TA_tex_txt:
- addrs: [0x8082C6C0, 0x8082C7C0]
- npc/tex/dog_4_eye8_TA_tex_txt:
- addrs: [0x8082C7C0, 0x8082C8C0]
- npc/tex/dog_4_mouth1_TA_tex_txt:
- addrs: [0x8082C8C0, 0x8082C9C0]
- npc/tex/dog_4_mouth2_TA_tex_txt:
- addrs: [0x8082C9C0, 0x8082CAC0]
- npc/tex/dog_4_mouth3_TA_tex_txt:
- addrs: [0x8082CAC0, 0x8082CBC0]
- npc/tex/dog_4_mouth4_TA_tex_txt:
- addrs: [0x8082CBC0, 0x8082CCC0]
- npc/tex/dog_4_mouth5_TA_tex_txt:
- addrs: [0x8082CCC0, 0x8082CDC0]
- npc/tex/dog_4_mouth6_TA_tex_txt:
- addrs: [0x8082CDC0, 0x8082CEC0]
- npc/tex/dog_4_tmem_txt:
- addrs: [0x8082CEC0, 0x8082D2C0]
- npc/tex/dog_5_pal:
- addrs: [0x8082D2C0, 0x8082D2E0]
- type: pal16
- npc/tex/dog_5_eye1_TA_tex_txt:
- addrs: [0x8082D2E0, 0x8082D3E0]
- npc/tex/dog_5_eye2_TA_tex_txt:
- addrs: [0x8082D3E0, 0x8082D4E0]
- npc/tex/dog_5_eye3_TA_tex_txt:
- addrs: [0x8082D4E0, 0x8082D5E0]
- npc/tex/dog_5_eye4_TA_tex_txt:
- addrs: [0x8082D5E0, 0x8082D6E0]
- npc/tex/dog_5_eye5_TA_tex_txt:
- addrs: [0x8082D6E0, 0x8082D7E0]
- npc/tex/dog_5_eye6_TA_tex_txt:
- addrs: [0x8082D7E0, 0x8082D8E0]
- npc/tex/dog_5_eye7_TA_tex_txt:
- addrs: [0x8082D8E0, 0x8082D9E0]
- npc/tex/dog_5_eye8_TA_tex_txt:
- addrs: [0x8082D9E0, 0x8082DAE0]
- npc/tex/dog_5_mouth1_TA_tex_txt:
- addrs: [0x8082DAE0, 0x8082DBE0]
- npc/tex/dog_5_mouth2_TA_tex_txt:
- addrs: [0x8082DBE0, 0x8082DCE0]
- npc/tex/dog_5_mouth3_TA_tex_txt:
- addrs: [0x8082DCE0, 0x8082DDE0]
- npc/tex/dog_5_mouth4_TA_tex_txt:
- addrs: [0x8082DDE0, 0x8082DEE0]
- npc/tex/dog_5_mouth5_TA_tex_txt:
- addrs: [0x8082DEE0, 0x8082DFE0]
- npc/tex/dog_5_mouth6_TA_tex_txt:
- addrs: [0x8082DFE0, 0x8082E0E0]
- npc/tex/dog_5_tmem_txt:
- addrs: [0x8082E0E0, 0x8082E4E0]
- npc/tex/dog_6_pal:
- addrs: [0x8082E4E0, 0x8082E500]
- type: pal16
- npc/tex/dog_6_eye1_TA_tex_txt:
- addrs: [0x8082E500, 0x8082E600]
- npc/tex/dog_6_eye2_TA_tex_txt:
- addrs: [0x8082E600, 0x8082E700]
- npc/tex/dog_6_eye3_TA_tex_txt:
- addrs: [0x8082E700, 0x8082E800]
- npc/tex/dog_6_eye4_TA_tex_txt:
- addrs: [0x8082E800, 0x8082E900]
- npc/tex/dog_6_eye5_TA_tex_txt:
- addrs: [0x8082E900, 0x8082EA00]
- npc/tex/dog_6_eye6_TA_tex_txt:
- addrs: [0x8082EA00, 0x8082EB00]
- npc/tex/dog_6_eye7_TA_tex_txt:
- addrs: [0x8082EB00, 0x8082EC00]
- npc/tex/dog_6_eye8_TA_tex_txt:
- addrs: [0x8082EC00, 0x8082ED00]
- npc/tex/dog_6_mouth1_TA_tex_txt:
- addrs: [0x8082ED00, 0x8082EE00]
- npc/tex/dog_6_mouth2_TA_tex_txt:
- addrs: [0x8082EE00, 0x8082EF00]
- npc/tex/dog_6_mouth3_TA_tex_txt:
- addrs: [0x8082EF00, 0x8082F000]
- npc/tex/dog_6_mouth4_TA_tex_txt:
- addrs: [0x8082F000, 0x8082F100]
- npc/tex/dog_6_mouth5_TA_tex_txt:
- addrs: [0x8082F100, 0x8082F200]
- npc/tex/dog_6_mouth6_TA_tex_txt:
- addrs: [0x8082F200, 0x8082F300]
- npc/tex/dog_6_tmem_txt:
- addrs: [0x8082F300, 0x8082F700]
- npc/tex/dog_7_pal:
- addrs: [0x8082F700, 0x8082F720]
- type: pal16
- npc/tex/dog_7_eye1_TA_tex_txt:
- addrs: [0x8082F720, 0x8082F820]
- npc/tex/dog_7_eye2_TA_tex_txt:
- addrs: [0x8082F820, 0x8082F920]
- npc/tex/dog_7_eye3_TA_tex_txt:
- addrs: [0x8082F920, 0x8082FA20]
- npc/tex/dog_7_eye4_TA_tex_txt:
- addrs: [0x8082FA20, 0x8082FB20]
- npc/tex/dog_7_eye5_TA_tex_txt:
- addrs: [0x8082FB20, 0x8082FC20]
- npc/tex/dog_7_eye6_TA_tex_txt:
- addrs: [0x8082FC20, 0x8082FD20]
- npc/tex/dog_7_eye7_TA_tex_txt:
- addrs: [0x8082FD20, 0x8082FE20]
- npc/tex/dog_7_eye8_TA_tex_txt:
- addrs: [0x8082FE20, 0x8082FF20]
- npc/tex/dog_7_mouth1_TA_tex_txt:
- addrs: [0x8082FF20, 0x80830020]
- npc/tex/dog_7_mouth2_TA_tex_txt:
- addrs: [0x80830020, 0x80830120]
- npc/tex/dog_7_mouth3_TA_tex_txt:
- addrs: [0x80830120, 0x80830220]
- npc/tex/dog_7_mouth4_TA_tex_txt:
- addrs: [0x80830220, 0x80830320]
- npc/tex/dog_7_mouth5_TA_tex_txt:
- addrs: [0x80830320, 0x80830420]
- npc/tex/dog_7_mouth6_TA_tex_txt:
- addrs: [0x80830420, 0x80830520]
- npc/tex/dog_7_tmem_txt:
- addrs: [0x80830520, 0x80830920]
- npc/tex/dog_8_pal:
- addrs: [0x80830920, 0x80830940]
- type: pal16
- npc/tex/dog_8_eye1_TA_tex_txt:
- addrs: [0x80830940, 0x80830A40]
- npc/tex/dog_8_eye2_TA_tex_txt:
- addrs: [0x80830A40, 0x80830B40]
- npc/tex/dog_8_eye3_TA_tex_txt:
- addrs: [0x80830B40, 0x80830C40]
- npc/tex/dog_8_eye4_TA_tex_txt:
- addrs: [0x80830C40, 0x80830D40]
- npc/tex/dog_8_eye5_TA_tex_txt:
- addrs: [0x80830D40, 0x80830E40]
- npc/tex/dog_8_eye6_TA_tex_txt:
- addrs: [0x80830E40, 0x80830F40]
- npc/tex/dog_8_eye7_TA_tex_txt:
- addrs: [0x80830F40, 0x80831040]
- npc/tex/dog_8_eye8_TA_tex_txt:
- addrs: [0x80831040, 0x80831140]
- npc/tex/dog_8_mouth1_TA_tex_txt:
- addrs: [0x80831140, 0x80831240]
- npc/tex/dog_8_mouth2_TA_tex_txt:
- addrs: [0x80831240, 0x80831340]
- npc/tex/dog_8_mouth3_TA_tex_txt:
- addrs: [0x80831340, 0x80831440]
- npc/tex/dog_8_mouth4_TA_tex_txt:
- addrs: [0x80831440, 0x80831540]
- npc/tex/dog_8_mouth5_TA_tex_txt:
- addrs: [0x80831540, 0x80831640]
- npc/tex/dog_8_mouth6_TA_tex_txt:
- addrs: [0x80831640, 0x80831740]
- npc/tex/dog_8_tmem_txt:
- addrs: [0x80831740, 0x80831B40]
- npc/tex/dog_9_pal:
- addrs: [0x80831B40, 0x80831B60]
- type: pal16
- npc/tex/dog_9_eye1_TA_tex_txt:
- addrs: [0x80831B60, 0x80831C60]
- npc/tex/dog_9_eye2_TA_tex_txt:
- addrs: [0x80831C60, 0x80831D60]
- npc/tex/dog_9_eye3_TA_tex_txt:
- addrs: [0x80831D60, 0x80831E60]
- npc/tex/dog_9_eye4_TA_tex_txt:
- addrs: [0x80831E60, 0x80831F60]
- npc/tex/dog_9_eye5_TA_tex_txt:
- addrs: [0x80831F60, 0x80832060]
- npc/tex/dog_9_eye6_TA_tex_txt:
- addrs: [0x80832060, 0x80832160]
- npc/tex/dog_9_eye7_TA_tex_txt:
- addrs: [0x80832160, 0x80832260]
- npc/tex/dog_9_eye8_TA_tex_txt:
- addrs: [0x80832260, 0x80832360]
- npc/tex/dog_9_mouth1_TA_tex_txt:
- addrs: [0x80832360, 0x80832460]
- npc/tex/dog_9_mouth2_TA_tex_txt:
- addrs: [0x80832460, 0x80832560]
- npc/tex/dog_9_mouth3_TA_tex_txt:
- addrs: [0x80832560, 0x80832660]
- npc/tex/dog_9_mouth4_TA_tex_txt:
- addrs: [0x80832660, 0x80832760]
- npc/tex/dog_9_mouth5_TA_tex_txt:
- addrs: [0x80832760, 0x80832860]
- npc/tex/dog_9_mouth6_TA_tex_txt:
- addrs: [0x80832860, 0x80832960]
- npc/tex/dog_9_tmem_txt:
- addrs: [0x80832960, 0x80832D60]
- npc/tex/dog_10_pal:
- addrs: [0x80832D60, 0x80832D80]
- type: pal16
- npc/tex/dog_10_eye1_TA_tex_txt:
- addrs: [0x80832D80, 0x80832E80]
- npc/tex/dog_10_eye2_TA_tex_txt:
- addrs: [0x80832E80, 0x80832F80]
- npc/tex/dog_10_eye3_TA_tex_txt:
- addrs: [0x80832F80, 0x80833080]
- npc/tex/dog_10_eye4_TA_tex_txt:
- addrs: [0x80833080, 0x80833180]
- npc/tex/dog_10_eye5_TA_tex_txt:
- addrs: [0x80833180, 0x80833280]
- npc/tex/dog_10_eye6_TA_tex_txt:
- addrs: [0x80833280, 0x80833380]
- npc/tex/dog_10_eye7_TA_tex_txt:
- addrs: [0x80833380, 0x80833480]
- npc/tex/dog_10_eye8_TA_tex_txt:
- addrs: [0x80833480, 0x80833580]
- npc/tex/dog_10_mouth1_TA_tex_txt:
- addrs: [0x80833580, 0x80833680]
- npc/tex/dog_10_mouth2_TA_tex_txt:
- addrs: [0x80833680, 0x80833780]
- npc/tex/dog_10_mouth3_TA_tex_txt:
- addrs: [0x80833780, 0x80833880]
- npc/tex/dog_10_mouth4_TA_tex_txt:
- addrs: [0x80833880, 0x80833980]
- npc/tex/dog_10_mouth5_TA_tex_txt:
- addrs: [0x80833980, 0x80833A80]
- npc/tex/dog_10_mouth6_TA_tex_txt:
- addrs: [0x80833A80, 0x80833B80]
- npc/tex/dog_10_tmem_txt:
- addrs: [0x80833B80, 0x80833F80]
- npc/mdl/seg_1_v:
- addrs: [0x80833F80, 0x808357E0]
- type: vtx
- npc/tex/seg_1_pal:
- addrs: [0x80836300, 0x80836320]
- type: pal16
- npc/tex/seg_1_eye1_TA_tex_txt:
- addrs: [0x80836320, 0x80836420]
- npc/tex/seg_1_eye2_TA_tex_txt:
- addrs: [0x80836420, 0x80836520]
- npc/tex/seg_1_eye3_TA_tex_txt:
- addrs: [0x80836520, 0x80836620]
- npc/tex/seg_1_eye4_TA_tex_txt:
- addrs: [0x80836620, 0x80836720]
- npc/tex/seg_1_eye5_TA_tex_txt:
- addrs: [0x80836720, 0x80836820]
- npc/tex/seg_1_eye6_TA_tex_txt:
- addrs: [0x80836820, 0x80836920]
- npc/tex/seg_1_eye7_TA_tex_txt:
- addrs: [0x80836920, 0x80836A20]
- npc/tex/seg_1_eye8_TA_tex_txt:
- addrs: [0x80836A20, 0x80836B20]
- npc/tex/seg_1_tmem_txt:
- addrs: [0x80836B20, 0x80837160]
- npc/mdl/duk_1_v:
- addrs: [0x80837160, 0x808386E0]
- type: vtx
- npc/tex/duk_1_pal:
- addrs: [0x80839080, 0x808390A0]
- type: pal16
- npc/tex/duk_1_eye1_TA_tex_txt:
- addrs: [0x808390A0, 0x808391A0]
- npc/tex/duk_1_eye2_TA_tex_txt:
- addrs: [0x808391A0, 0x808392A0]
- npc/tex/duk_1_eye3_TA_tex_txt:
- addrs: [0x808392A0, 0x808393A0]
- npc/tex/duk_1_eye4_TA_tex_txt:
- addrs: [0x808393A0, 0x808394A0]
- npc/tex/duk_1_eye5_TA_tex_txt:
- addrs: [0x808394A0, 0x808395A0]
- npc/tex/duk_1_eye6_TA_tex_txt:
- addrs: [0x808395A0, 0x808396A0]
- npc/tex/duk_1_eye7_TA_tex_txt:
- addrs: [0x808396A0, 0x808397A0]
- npc/tex/duk_1_eye8_TA_tex_txt:
- addrs: [0x808397A0, 0x808398A0]
- npc/tex/duk_1_mouth1_TA_tex_txt:
- addrs: [0x808398A0, 0x808399A0]
- npc/tex/duk_1_mouth2_TA_tex_txt:
- addrs: [0x808399A0, 0x80839AA0]
- npc/tex/duk_1_mouth3_TA_tex_txt:
- addrs: [0x80839AA0, 0x80839BA0]
- npc/tex/duk_1_mouth4_TA_tex_txt:
- addrs: [0x80839BA0, 0x80839CA0]
- npc/tex/duk_1_mouth5_TA_tex_txt:
- addrs: [0x80839CA0, 0x80839DA0]
- npc/tex/duk_1_mouth6_TA_tex_txt:
- addrs: [0x80839DA0, 0x80839EA0]
- npc/tex/duk_1_tmem_txt:
- addrs: [0x80839EA0, 0x8083A2A0]
- npc/tex/duk_2_pal:
- addrs: [0x8083A2A0, 0x8083A2C0]
- type: pal16
- npc/tex/duk_2_eye1_TA_tex_txt:
- addrs: [0x8083A2C0, 0x8083A3C0]
- npc/tex/duk_2_eye2_TA_tex_txt:
- addrs: [0x8083A3C0, 0x8083A4C0]
- npc/tex/duk_2_eye3_TA_tex_txt:
- addrs: [0x8083A4C0, 0x8083A5C0]
- npc/tex/duk_2_eye4_TA_tex_txt:
- addrs: [0x8083A5C0, 0x8083A6C0]
- npc/tex/duk_2_eye5_TA_tex_txt:
- addrs: [0x8083A6C0, 0x8083A7C0]
- npc/tex/duk_2_eye6_TA_tex_txt:
- addrs: [0x8083A7C0, 0x8083A8C0]
- npc/tex/duk_2_eye7_TA_tex_txt:
- addrs: [0x8083A8C0, 0x8083A9C0]
- npc/tex/duk_2_eye8_TA_tex_txt:
- addrs: [0x8083A9C0, 0x8083AAC0]
- npc/tex/duk_2_mouth1_TA_tex_txt:
- addrs: [0x8083AAC0, 0x8083ABC0]
- npc/tex/duk_2_mouth2_TA_tex_txt:
- addrs: [0x8083ABC0, 0x8083ACC0]
- npc/tex/duk_2_mouth3_TA_tex_txt:
- addrs: [0x8083ACC0, 0x8083ADC0]
- npc/tex/duk_2_mouth4_TA_tex_txt:
- addrs: [0x8083ADC0, 0x8083AEC0]
- npc/tex/duk_2_mouth5_TA_tex_txt:
- addrs: [0x8083AEC0, 0x8083AFC0]
- npc/tex/duk_2_mouth6_TA_tex_txt:
- addrs: [0x8083AFC0, 0x8083B0C0]
- npc/tex/duk_2_tmem_txt:
- addrs: [0x8083B0C0, 0x8083B4C0]
- npc/tex/duk_11_pal:
- addrs: [0x8083B4C0, 0x8083B4E0]
- type: pal16
- npc/tex/duk_11_eye1_TA_tex_txt:
- addrs: [0x8083B4E0, 0x8083B5E0]
- npc/tex/duk_11_eye2_TA_tex_txt:
- addrs: [0x8083B5E0, 0x8083B6E0]
- npc/tex/duk_11_eye3_TA_tex_txt:
- addrs: [0x8083B6E0, 0x8083B7E0]
- npc/tex/duk_11_eye4_TA_tex_txt:
- addrs: [0x8083B7E0, 0x8083B8E0]
- npc/tex/duk_11_eye5_TA_tex_txt:
- addrs: [0x8083B8E0, 0x8083B9E0]
- npc/tex/duk_11_eye6_TA_tex_txt:
- addrs: [0x8083B9E0, 0x8083BAE0]
- npc/tex/duk_11_eye7_TA_tex_txt:
- addrs: [0x8083BAE0, 0x8083BBE0]
- npc/tex/duk_11_eye8_TA_tex_txt:
- addrs: [0x8083BBE0, 0x8083BCE0]
- npc/tex/duk_11_mouth1_TA_tex_txt:
- addrs: [0x8083BCE0, 0x8083BDE0]
- npc/tex/duk_11_mouth2_TA_tex_txt:
- addrs: [0x8083BDE0, 0x8083BEE0]
- npc/tex/duk_11_mouth3_TA_tex_txt:
- addrs: [0x8083BEE0, 0x8083BFE0]
- npc/tex/duk_11_mouth4_TA_tex_txt:
- addrs: [0x8083BFE0, 0x8083C0E0]
- npc/tex/duk_11_mouth5_TA_tex_txt:
- addrs: [0x8083C0E0, 0x8083C1E0]
- npc/tex/duk_11_mouth6_TA_tex_txt:
- addrs: [0x8083C1E0, 0x8083C2E0]
- npc/tex/duk_11_tmem_txt:
- addrs: [0x8083C2E0, 0x8083C6E0]
- npc/tex/duk_3_pal:
- addrs: [0x8083C6E0, 0x8083C700]
- type: pal16
- npc/tex/duk_3_eye1_TA_tex_txt:
- addrs: [0x8083C700, 0x8083C800]
- npc/tex/duk_3_eye2_TA_tex_txt:
- addrs: [0x8083C800, 0x8083C900]
- npc/tex/duk_3_eye3_TA_tex_txt:
- addrs: [0x8083C900, 0x8083CA00]
- npc/tex/duk_3_eye4_TA_tex_txt:
- addrs: [0x8083CA00, 0x8083CB00]
- npc/tex/duk_3_eye5_TA_tex_txt:
- addrs: [0x8083CB00, 0x8083CC00]
- npc/tex/duk_3_eye6_TA_tex_txt:
- addrs: [0x8083CC00, 0x8083CD00]
- npc/tex/duk_3_eye7_TA_tex_txt:
- addrs: [0x8083CD00, 0x8083CE00]
- npc/tex/duk_3_eye8_TA_tex_txt:
- addrs: [0x8083CE00, 0x8083CF00]
- npc/tex/duk_3_mouth1_TA_tex_txt:
- addrs: [0x8083CF00, 0x8083D000]
- npc/tex/duk_3_mouth2_TA_tex_txt:
- addrs: [0x8083D000, 0x8083D100]
- npc/tex/duk_3_mouth3_TA_tex_txt:
- addrs: [0x8083D100, 0x8083D200]
- npc/tex/duk_3_mouth4_TA_tex_txt:
- addrs: [0x8083D200, 0x8083D300]
- npc/tex/duk_3_mouth5_TA_tex_txt:
- addrs: [0x8083D300, 0x8083D400]
- npc/tex/duk_3_mouth6_TA_tex_txt:
- addrs: [0x8083D400, 0x8083D500]
- npc/tex/duk_3_tmem_txt:
- addrs: [0x8083D500, 0x8083D900]
- npc/tex/duk_4_pal:
- addrs: [0x8083D900, 0x8083D920]
- type: pal16
- npc/tex/duk_4_eye1_TA_tex_txt:
- addrs: [0x8083D920, 0x8083DA20]
- npc/tex/duk_4_eye2_TA_tex_txt:
- addrs: [0x8083DA20, 0x8083DB20]
- npc/tex/duk_4_eye3_TA_tex_txt:
- addrs: [0x8083DB20, 0x8083DC20]
- npc/tex/duk_4_eye4_TA_tex_txt:
- addrs: [0x8083DC20, 0x8083DD20]
- npc/tex/duk_4_eye5_TA_tex_txt:
- addrs: [0x8083DD20, 0x8083DE20]
- npc/tex/duk_4_eye6_TA_tex_txt:
- addrs: [0x8083DE20, 0x8083DF20]
- npc/tex/duk_4_eye7_TA_tex_txt:
- addrs: [0x8083DF20, 0x8083E020]
- npc/tex/duk_4_eye8_TA_tex_txt:
- addrs: [0x8083E020, 0x8083E120]
- npc/tex/duk_4_mouth1_TA_tex_txt:
- addrs: [0x8083E120, 0x8083E220]
- npc/tex/duk_4_mouth2_TA_tex_txt:
- addrs: [0x8083E220, 0x8083E320]
- npc/tex/duk_4_mouth3_TA_tex_txt:
- addrs: [0x8083E320, 0x8083E420]
- npc/tex/duk_4_mouth4_TA_tex_txt:
- addrs: [0x8083E420, 0x8083E520]
- npc/tex/duk_4_mouth5_TA_tex_txt:
- addrs: [0x8083E520, 0x8083E620]
- npc/tex/duk_4_mouth6_TA_tex_txt:
- addrs: [0x8083E620, 0x8083E720]
- npc/tex/duk_4_tmem_txt:
- addrs: [0x8083E720, 0x8083EB20]
- npc/tex/duk_5_pal:
- addrs: [0x8083EB20, 0x8083EB40]
- type: pal16
- npc/tex/duk_5_eye1_TA_tex_txt:
- addrs: [0x8083EB40, 0x8083EC40]
- npc/tex/duk_5_eye2_TA_tex_txt:
- addrs: [0x8083EC40, 0x8083ED40]
- npc/tex/duk_5_eye3_TA_tex_txt:
- addrs: [0x8083ED40, 0x8083EE40]
- npc/tex/duk_5_eye4_TA_tex_txt:
- addrs: [0x8083EE40, 0x8083EF40]
- npc/tex/duk_5_eye5_TA_tex_txt:
- addrs: [0x8083EF40, 0x8083F040]
- npc/tex/duk_5_eye6_TA_tex_txt:
- addrs: [0x8083F040, 0x8083F140]
- npc/tex/duk_5_eye7_TA_tex_txt:
- addrs: [0x8083F140, 0x8083F240]
- npc/tex/duk_5_eye8_TA_tex_txt:
- addrs: [0x8083F240, 0x8083F340]
- npc/tex/duk_5_mouth1_TA_tex_txt:
- addrs: [0x8083F340, 0x8083F440]
- npc/tex/duk_5_mouth2_TA_tex_txt:
- addrs: [0x8083F440, 0x8083F540]
- npc/tex/duk_5_mouth3_TA_tex_txt:
- addrs: [0x8083F540, 0x8083F640]
- npc/tex/duk_5_mouth4_TA_tex_txt:
- addrs: [0x8083F640, 0x8083F740]
- npc/tex/duk_5_mouth5_TA_tex_txt:
- addrs: [0x8083F740, 0x8083F840]
- npc/tex/duk_5_mouth6_TA_tex_txt:
- addrs: [0x8083F840, 0x8083F940]
- npc/tex/duk_5_tmem_txt:
- addrs: [0x8083F940, 0x8083FD40]
- npc/tex/duk_6_pal:
- addrs: [0x8083FD40, 0x8083FD60]
- type: pal16
- npc/tex/duk_6_eye1_TA_tex_txt:
- addrs: [0x8083FD60, 0x8083FE60]
- npc/tex/duk_6_eye2_TA_tex_txt:
- addrs: [0x8083FE60, 0x8083FF60]
- npc/tex/duk_6_eye3_TA_tex_txt:
- addrs: [0x8083FF60, 0x80840060]
- npc/tex/duk_6_eye4_TA_tex_txt:
- addrs: [0x80840060, 0x80840160]
- npc/tex/duk_6_eye5_TA_tex_txt:
- addrs: [0x80840160, 0x80840260]
- npc/tex/duk_6_eye6_TA_tex_txt:
- addrs: [0x80840260, 0x80840360]
- npc/tex/duk_6_eye7_TA_tex_txt:
- addrs: [0x80840360, 0x80840460]
- npc/tex/duk_6_eye8_TA_tex_txt:
- addrs: [0x80840460, 0x80840560]
- npc/tex/duk_6_mouth1_TA_tex_txt:
- addrs: [0x80840560, 0x80840660]
- npc/tex/duk_6_mouth2_TA_tex_txt:
- addrs: [0x80840660, 0x80840760]
- npc/tex/duk_6_mouth3_TA_tex_txt:
- addrs: [0x80840760, 0x80840860]
- npc/tex/duk_6_mouth4_TA_tex_txt:
- addrs: [0x80840860, 0x80840960]
- npc/tex/duk_6_mouth5_TA_tex_txt:
- addrs: [0x80840960, 0x80840A60]
- npc/tex/duk_6_mouth6_TA_tex_txt:
- addrs: [0x80840A60, 0x80840B60]
- npc/tex/duk_6_tmem_txt:
- addrs: [0x80840B60, 0x80840F60]
- npc/tex/duk_7_pal:
- addrs: [0x80840F60, 0x80840F80]
- type: pal16
- npc/tex/duk_7_eye1_TA_tex_txt:
- addrs: [0x80840F80, 0x80841080]
- npc/tex/duk_7_eye2_TA_tex_txt:
- addrs: [0x80841080, 0x80841180]
- npc/tex/duk_7_eye3_TA_tex_txt:
- addrs: [0x80841180, 0x80841280]
- npc/tex/duk_7_eye4_TA_tex_txt:
- addrs: [0x80841280, 0x80841380]
- npc/tex/duk_7_eye5_TA_tex_txt:
- addrs: [0x80841380, 0x80841480]
- npc/tex/duk_7_eye6_TA_tex_txt:
- addrs: [0x80841480, 0x80841580]
- npc/tex/duk_7_eye7_TA_tex_txt:
- addrs: [0x80841580, 0x80841680]
- npc/tex/duk_7_eye8_TA_tex_txt:
- addrs: [0x80841680, 0x80841780]
- npc/tex/duk_7_mouth1_TA_tex_txt:
- addrs: [0x80841780, 0x80841880]
- npc/tex/duk_7_mouth2_TA_tex_txt:
- addrs: [0x80841880, 0x80841980]
- npc/tex/duk_7_mouth3_TA_tex_txt:
- addrs: [0x80841980, 0x80841A80]
- npc/tex/duk_7_mouth4_TA_tex_txt:
- addrs: [0x80841A80, 0x80841B80]
- npc/tex/duk_7_mouth5_TA_tex_txt:
- addrs: [0x80841B80, 0x80841C80]
- npc/tex/duk_7_mouth6_TA_tex_txt:
- addrs: [0x80841C80, 0x80841D80]
- npc/tex/duk_7_tmem_txt:
- addrs: [0x80841D80, 0x80842180]
- npc/tex/duk_8_pal:
- addrs: [0x80842180, 0x808421A0]
- type: pal16
- npc/tex/duk_8_eye1_TA_tex_txt:
- addrs: [0x808421A0, 0x808422A0]
- npc/tex/duk_8_eye2_TA_tex_txt:
- addrs: [0x808422A0, 0x808423A0]
- npc/tex/duk_8_eye3_TA_tex_txt:
- addrs: [0x808423A0, 0x808424A0]
- npc/tex/duk_8_eye4_TA_tex_txt:
- addrs: [0x808424A0, 0x808425A0]
- npc/tex/duk_8_eye5_TA_tex_txt:
- addrs: [0x808425A0, 0x808426A0]
- npc/tex/duk_8_eye6_TA_tex_txt:
- addrs: [0x808426A0, 0x808427A0]
- npc/tex/duk_8_eye7_TA_tex_txt:
- addrs: [0x808427A0, 0x808428A0]
- npc/tex/duk_8_eye8_TA_tex_txt:
- addrs: [0x808428A0, 0x808429A0]
- npc/tex/duk_8_mouth1_TA_tex_txt:
- addrs: [0x808429A0, 0x80842AA0]
- npc/tex/duk_8_mouth2_TA_tex_txt:
- addrs: [0x80842AA0, 0x80842BA0]
- npc/tex/duk_8_mouth3_TA_tex_txt:
- addrs: [0x80842BA0, 0x80842CA0]
- npc/tex/duk_8_mouth4_TA_tex_txt:
- addrs: [0x80842CA0, 0x80842DA0]
- npc/tex/duk_8_mouth5_TA_tex_txt:
- addrs: [0x80842DA0, 0x80842EA0]
- npc/tex/duk_8_mouth6_TA_tex_txt:
- addrs: [0x80842EA0, 0x80842FA0]
- npc/tex/duk_8_tmem_txt:
- addrs: [0x80842FA0, 0x808433A0]
- npc/tex/duk_9_pal:
- addrs: [0x808433A0, 0x808433C0]
- type: pal16
- npc/tex/duk_9_eye1_TA_tex_txt:
- addrs: [0x808433C0, 0x808434C0]
- npc/tex/duk_9_eye2_TA_tex_txt:
- addrs: [0x808434C0, 0x808435C0]
- npc/tex/duk_9_eye3_TA_tex_txt:
- addrs: [0x808435C0, 0x808436C0]
- npc/tex/duk_9_eye4_TA_tex_txt:
- addrs: [0x808436C0, 0x808437C0]
- npc/tex/duk_9_eye5_TA_tex_txt:
- addrs: [0x808437C0, 0x808438C0]
- npc/tex/duk_9_eye6_TA_tex_txt:
- addrs: [0x808438C0, 0x808439C0]
- npc/tex/duk_9_eye7_TA_tex_txt:
- addrs: [0x808439C0, 0x80843AC0]
- npc/tex/duk_9_eye8_TA_tex_txt:
- addrs: [0x80843AC0, 0x80843BC0]
- npc/tex/duk_9_mouth1_TA_tex_txt:
- addrs: [0x80843BC0, 0x80843CC0]
- npc/tex/duk_9_mouth2_TA_tex_txt:
- addrs: [0x80843CC0, 0x80843DC0]
- npc/tex/duk_9_mouth3_TA_tex_txt:
- addrs: [0x80843DC0, 0x80843EC0]
- npc/tex/duk_9_mouth4_TA_tex_txt:
- addrs: [0x80843EC0, 0x80843FC0]
- npc/tex/duk_9_mouth5_TA_tex_txt:
- addrs: [0x80843FC0, 0x808440C0]
- npc/tex/duk_9_mouth6_TA_tex_txt:
- addrs: [0x808440C0, 0x808441C0]
- npc/tex/duk_9_tmem_txt:
- addrs: [0x808441C0, 0x808445C0]
- npc/tex/duk_10_pal:
- addrs: [0x808445C0, 0x808445E0]
- type: pal16
- npc/tex/duk_10_eye1_TA_tex_txt:
- addrs: [0x808445E0, 0x808446E0]
- npc/tex/duk_10_eye2_TA_tex_txt:
- addrs: [0x808446E0, 0x808447E0]
- npc/tex/duk_10_eye3_TA_tex_txt:
- addrs: [0x808447E0, 0x808448E0]
- npc/tex/duk_10_eye4_TA_tex_txt:
- addrs: [0x808448E0, 0x808449E0]
- npc/tex/duk_10_eye5_TA_tex_txt:
- addrs: [0x808449E0, 0x80844AE0]
- npc/tex/duk_10_eye6_TA_tex_txt:
- addrs: [0x80844AE0, 0x80844BE0]
- npc/tex/duk_10_eye7_TA_tex_txt:
- addrs: [0x80844BE0, 0x80844CE0]
- npc/tex/duk_10_eye8_TA_tex_txt:
- addrs: [0x80844CE0, 0x80844DE0]
- npc/tex/duk_10_mouth1_TA_tex_txt:
- addrs: [0x80844DE0, 0x80844EE0]
- npc/tex/duk_10_mouth2_TA_tex_txt:
- addrs: [0x80844EE0, 0x80844FE0]
- npc/tex/duk_10_mouth3_TA_tex_txt:
- addrs: [0x80844FE0, 0x808450E0]
- npc/tex/duk_10_mouth4_TA_tex_txt:
- addrs: [0x808450E0, 0x808451E0]
- npc/tex/duk_10_mouth5_TA_tex_txt:
- addrs: [0x808451E0, 0x808452E0]
- npc/tex/duk_10_mouth6_TA_tex_txt:
- addrs: [0x808452E0, 0x808453E0]
- npc/tex/duk_10_tmem_txt:
- addrs: [0x808453E0, 0x808457E0]
- npc/mdl/elp_1_v:
- addrs: [0x80845830, 0x80846FF0]
- type: vtx
- npc/tex/elp_1_pal:
- addrs: [0x808479A0, 0x808479C0]
- type: pal16
- npc/tex/elp_1_eye1_TA_tex_txt:
- addrs: [0x808479C0, 0x80847AC0]
- npc/tex/elp_1_eye2_TA_tex_txt:
- addrs: [0x80847AC0, 0x80847BC0]
- npc/tex/elp_1_eye3_TA_tex_txt:
- addrs: [0x80847BC0, 0x80847CC0]
- npc/tex/elp_1_eye4_TA_tex_txt:
- addrs: [0x80847CC0, 0x80847DC0]
- npc/tex/elp_1_eye5_TA_tex_txt:
- addrs: [0x80847DC0, 0x80847EC0]
- npc/tex/elp_1_eye6_TA_tex_txt:
- addrs: [0x80847EC0, 0x80847FC0]
- npc/tex/elp_1_eye7_TA_tex_txt:
- addrs: [0x80847FC0, 0x808480C0]
- npc/tex/elp_1_eye8_TA_tex_txt:
- addrs: [0x808480C0, 0x808481C0]
- npc/tex/elp_1_mouth1_TA_tex_txt:
- addrs: [0x808481C0, 0x808482C0]
- npc/tex/elp_1_mouth2_TA_tex_txt:
- addrs: [0x808482C0, 0x808483C0]
- npc/tex/elp_1_mouth3_TA_tex_txt:
- addrs: [0x808483C0, 0x808484C0]
- npc/tex/elp_1_mouth4_TA_tex_txt:
- addrs: [0x808484C0, 0x808485C0]
- npc/tex/elp_1_mouth5_TA_tex_txt:
- addrs: [0x808485C0, 0x808486C0]
- npc/tex/elp_1_mouth6_TA_tex_txt:
- addrs: [0x808486C0, 0x808487C0]
- npc/tex/elp_1_tmem_txt:
- addrs: [0x808487C0, 0x80848BC0]
- npc/tex/elp_2_pal:
- addrs: [0x80848BC0, 0x80848BE0]
- type: pal16
- npc/tex/elp_2_eye1_TA_tex_txt:
- addrs: [0x80848BE0, 0x80848CE0]
- npc/tex/elp_2_eye2_TA_tex_txt:
- addrs: [0x80848CE0, 0x80848DE0]
- npc/tex/elp_2_eye3_TA_tex_txt:
- addrs: [0x80848DE0, 0x80848EE0]
- npc/tex/elp_2_eye4_TA_tex_txt:
- addrs: [0x80848EE0, 0x80848FE0]
- npc/tex/elp_2_eye5_TA_tex_txt:
- addrs: [0x80848FE0, 0x808490E0]
- npc/tex/elp_2_eye6_TA_tex_txt:
- addrs: [0x808490E0, 0x808491E0]
- npc/tex/elp_2_eye7_TA_tex_txt:
- addrs: [0x808491E0, 0x808492E0]
- npc/tex/elp_2_eye8_TA_tex_txt:
- addrs: [0x808492E0, 0x808493E0]
- npc/tex/elp_2_mouth1_TA_tex_txt:
- addrs: [0x808493E0, 0x808494E0]
- npc/tex/elp_2_mouth2_TA_tex_txt:
- addrs: [0x808494E0, 0x808495E0]
- npc/tex/elp_2_mouth3_TA_tex_txt:
- addrs: [0x808495E0, 0x808496E0]
- npc/tex/elp_2_mouth4_TA_tex_txt:
- addrs: [0x808496E0, 0x808497E0]
- npc/tex/elp_2_mouth5_TA_tex_txt:
- addrs: [0x808497E0, 0x808498E0]
- npc/tex/elp_2_mouth6_TA_tex_txt:
- addrs: [0x808498E0, 0x808499E0]
- npc/tex/elp_2_tmem_txt:
- addrs: [0x808499E0, 0x80849DE0]
- npc/tex/elp_3_pal:
- addrs: [0x80849DE0, 0x80849E00]
- type: pal16
- npc/tex/elp_3_eye1_TA_tex_txt:
- addrs: [0x80849E00, 0x80849F00]
- npc/tex/elp_3_eye2_TA_tex_txt:
- addrs: [0x80849F00, 0x8084A000]
- npc/tex/elp_3_eye3_TA_tex_txt:
- addrs: [0x8084A000, 0x8084A100]
- npc/tex/elp_3_eye4_TA_tex_txt:
- addrs: [0x8084A100, 0x8084A200]
- npc/tex/elp_3_eye5_TA_tex_txt:
- addrs: [0x8084A200, 0x8084A300]
- npc/tex/elp_3_eye6_TA_tex_txt:
- addrs: [0x8084A300, 0x8084A400]
- npc/tex/elp_3_eye7_TA_tex_txt:
- addrs: [0x8084A400, 0x8084A500]
- npc/tex/elp_3_eye8_TA_tex_txt:
- addrs: [0x8084A500, 0x8084A600]
- npc/tex/elp_3_mouth1_TA_tex_txt:
- addrs: [0x8084A600, 0x8084A700]
- npc/tex/elp_3_mouth2_TA_tex_txt:
- addrs: [0x8084A700, 0x8084A800]
- npc/tex/elp_3_mouth3_TA_tex_txt:
- addrs: [0x8084A800, 0x8084A900]
- npc/tex/elp_3_mouth4_TA_tex_txt:
- addrs: [0x8084A900, 0x8084AA00]
- npc/tex/elp_3_mouth5_TA_tex_txt:
- addrs: [0x8084AA00, 0x8084AB00]
- npc/tex/elp_3_mouth6_TA_tex_txt:
- addrs: [0x8084AB00, 0x8084AC00]
- npc/tex/elp_3_tmem_txt:
- addrs: [0x8084AC00, 0x8084B000]
- npc/tex/elp_4_pal:
- addrs: [0x8084B000, 0x8084B020]
- type: pal16
- npc/tex/elp_4_eye1_TA_tex_txt:
- addrs: [0x8084B020, 0x8084B120]
- npc/tex/elp_4_eye2_TA_tex_txt:
- addrs: [0x8084B120, 0x8084B220]
- npc/tex/elp_4_eye3_TA_tex_txt:
- addrs: [0x8084B220, 0x8084B320]
- npc/tex/elp_4_eye4_TA_tex_txt:
- addrs: [0x8084B320, 0x8084B420]
- npc/tex/elp_4_eye5_TA_tex_txt:
- addrs: [0x8084B420, 0x8084B520]
- npc/tex/elp_4_eye6_TA_tex_txt:
- addrs: [0x8084B520, 0x8084B620]
- npc/tex/elp_4_eye7_TA_tex_txt:
- addrs: [0x8084B620, 0x8084B720]
- npc/tex/elp_4_eye8_TA_tex_txt:
- addrs: [0x8084B720, 0x8084B820]
- npc/tex/elp_4_mouth1_TA_tex_txt:
- addrs: [0x8084B820, 0x8084B920]
- npc/tex/elp_4_mouth2_TA_tex_txt:
- addrs: [0x8084B920, 0x8084BA20]
- npc/tex/elp_4_mouth3_TA_tex_txt:
- addrs: [0x8084BA20, 0x8084BB20]
- npc/tex/elp_4_mouth4_TA_tex_txt:
- addrs: [0x8084BB20, 0x8084BC20]
- npc/tex/elp_4_mouth5_TA_tex_txt:
- addrs: [0x8084BC20, 0x8084BD20]
- npc/tex/elp_4_mouth6_TA_tex_txt:
- addrs: [0x8084BD20, 0x8084BE20]
- npc/tex/elp_4_tmem_txt:
- addrs: [0x8084BE20, 0x8084C220]
- npc/tex/elp_5_pal:
- addrs: [0x8084C220, 0x8084C240]
- type: pal16
- npc/tex/elp_5_eye1_TA_tex_txt:
- addrs: [0x8084C240, 0x8084C340]
- npc/tex/elp_5_eye2_TA_tex_txt:
- addrs: [0x8084C340, 0x8084C440]
- npc/tex/elp_5_eye3_TA_tex_txt:
- addrs: [0x8084C440, 0x8084C540]
- npc/tex/elp_5_eye4_TA_tex_txt:
- addrs: [0x8084C540, 0x8084C640]
- npc/tex/elp_5_eye5_TA_tex_txt:
- addrs: [0x8084C640, 0x8084C740]
- npc/tex/elp_5_eye6_TA_tex_txt:
- addrs: [0x8084C740, 0x8084C840]
- npc/tex/elp_5_eye7_TA_tex_txt:
- addrs: [0x8084C840, 0x8084C940]
- npc/tex/elp_5_eye8_TA_tex_txt:
- addrs: [0x8084C940, 0x8084CA40]
- npc/tex/elp_5_mouth1_TA_tex_txt:
- addrs: [0x8084CA40, 0x8084CB40]
- npc/tex/elp_5_mouth2_TA_tex_txt:
- addrs: [0x8084CB40, 0x8084CC40]
- npc/tex/elp_5_mouth3_TA_tex_txt:
- addrs: [0x8084CC40, 0x8084CD40]
- npc/tex/elp_5_mouth4_TA_tex_txt:
- addrs: [0x8084CD40, 0x8084CE40]
- npc/tex/elp_5_mouth5_TA_tex_txt:
- addrs: [0x8084CE40, 0x8084CF40]
- npc/tex/elp_5_mouth6_TA_tex_txt:
- addrs: [0x8084CF40, 0x8084D040]
- npc/tex/elp_5_tmem_txt:
- addrs: [0x8084D040, 0x8084D440]
- npc/tex/elp_6_pal:
- addrs: [0x8084D440, 0x8084D460]
- type: pal16
- npc/tex/elp_6_eye1_TA_tex_txt:
- addrs: [0x8084D460, 0x8084D560]
- npc/tex/elp_6_eye2_TA_tex_txt:
- addrs: [0x8084D560, 0x8084D660]
- npc/tex/elp_6_eye3_TA_tex_txt:
- addrs: [0x8084D660, 0x8084D760]
- npc/tex/elp_6_eye4_TA_tex_txt:
- addrs: [0x8084D760, 0x8084D860]
- npc/tex/elp_6_eye5_TA_tex_txt:
- addrs: [0x8084D860, 0x8084D960]
- npc/tex/elp_6_eye6_TA_tex_txt:
- addrs: [0x8084D960, 0x8084DA60]
- npc/tex/elp_6_eye7_TA_tex_txt:
- addrs: [0x8084DA60, 0x8084DB60]
- npc/tex/elp_6_eye8_TA_tex_txt:
- addrs: [0x8084DB60, 0x8084DC60]
- npc/tex/elp_6_mouth1_TA_tex_txt:
- addrs: [0x8084DC60, 0x8084DD60]
- npc/tex/elp_6_mouth2_TA_tex_txt:
- addrs: [0x8084DD60, 0x8084DE60]
- npc/tex/elp_6_mouth3_TA_tex_txt:
- addrs: [0x8084DE60, 0x8084DF60]
- npc/tex/elp_6_mouth4_TA_tex_txt:
- addrs: [0x8084DF60, 0x8084E060]
- npc/tex/elp_6_mouth5_TA_tex_txt:
- addrs: [0x8084E060, 0x8084E160]
- npc/tex/elp_6_mouth6_TA_tex_txt:
- addrs: [0x8084E160, 0x8084E260]
- npc/tex/elp_6_tmem_txt:
- addrs: [0x8084E260, 0x8084E660]
- npc/tex/elp_7_pal:
- addrs: [0x8084E660, 0x8084E680]
- type: pal16
- npc/tex/elp_7_eye1_TA_tex_txt:
- addrs: [0x8084E680, 0x8084E780]
- npc/tex/elp_7_eye2_TA_tex_txt:
- addrs: [0x8084E780, 0x8084E880]
- npc/tex/elp_7_eye3_TA_tex_txt:
- addrs: [0x8084E880, 0x8084E980]
- npc/tex/elp_7_eye4_TA_tex_txt:
- addrs: [0x8084E980, 0x8084EA80]
- npc/tex/elp_7_eye5_TA_tex_txt:
- addrs: [0x8084EA80, 0x8084EB80]
- npc/tex/elp_7_eye6_TA_tex_txt:
- addrs: [0x8084EB80, 0x8084EC80]
- npc/tex/elp_7_eye7_TA_tex_txt:
- addrs: [0x8084EC80, 0x8084ED80]
- npc/tex/elp_7_eye8_TA_tex_txt:
- addrs: [0x8084ED80, 0x8084EE80]
- npc/tex/elp_7_mouth1_TA_tex_txt:
- addrs: [0x8084EE80, 0x8084EF80]
- npc/tex/elp_7_mouth2_TA_tex_txt:
- addrs: [0x8084EF80, 0x8084F080]
- npc/tex/elp_7_mouth3_TA_tex_txt:
- addrs: [0x8084F080, 0x8084F180]
- npc/tex/elp_7_mouth4_TA_tex_txt:
- addrs: [0x8084F180, 0x8084F280]
- npc/tex/elp_7_mouth5_TA_tex_txt:
- addrs: [0x8084F280, 0x8084F380]
- npc/tex/elp_7_mouth6_TA_tex_txt:
- addrs: [0x8084F380, 0x8084F480]
- npc/tex/elp_7_tmem_txt:
- addrs: [0x8084F480, 0x8084F880]
- npc/mdl/flg_1_v:
- addrs: [0x80857D80, 0x80858FC0]
- type: vtx
- npc/tex/flg_1_pal:
- addrs: [0x808597E0, 0x80859800]
- type: pal16
- npc/tex/flg_1_eye1_TA_tex_txt:
- addrs: [0x80859800, 0x80859900]
- npc/tex/flg_1_eye2_TA_tex_txt:
- addrs: [0x80859900, 0x80859A00]
- npc/tex/flg_1_eye3_TA_tex_txt:
- addrs: [0x80859A00, 0x80859B00]
- npc/tex/flg_1_eye4_TA_tex_txt:
- addrs: [0x80859B00, 0x80859C00]
- npc/tex/flg_1_eye5_TA_tex_txt:
- addrs: [0x80859C00, 0x80859D00]
- npc/tex/flg_1_eye6_TA_tex_txt:
- addrs: [0x80859D00, 0x80859E00]
- npc/tex/flg_1_eye7_TA_tex_txt:
- addrs: [0x80859E00, 0x80859F00]
- npc/tex/flg_1_eye8_TA_tex_txt:
- addrs: [0x80859F00, 0x8085A000]
- npc/tex/flg_1_mouth1_TA_tex_txt:
- addrs: [0x8085A000, 0x8085A100]
- npc/tex/flg_1_mouth2_TA_tex_txt:
- addrs: [0x8085A100, 0x8085A200]
- npc/tex/flg_1_mouth3_TA_tex_txt:
- addrs: [0x8085A200, 0x8085A300]
- npc/tex/flg_1_mouth4_TA_tex_txt:
- addrs: [0x8085A300, 0x8085A400]
- npc/tex/flg_1_mouth5_TA_tex_txt:
- addrs: [0x8085A400, 0x8085A500]
- npc/tex/flg_1_mouth6_TA_tex_txt:
- addrs: [0x8085A500, 0x8085A600]
- npc/tex/flg_1_tmem_txt:
- addrs: [0x8085A600, 0x8085AA00]
- npc/tex/flg_2_pal:
- addrs: [0x8085AA00, 0x8085AA20]
- type: pal16
- npc/tex/flg_2_eye1_TA_tex_txt:
- addrs: [0x8085AA20, 0x8085AB20]
- npc/tex/flg_2_eye2_TA_tex_txt:
- addrs: [0x8085AB20, 0x8085AC20]
- npc/tex/flg_2_eye3_TA_tex_txt:
- addrs: [0x8085AC20, 0x8085AD20]
- npc/tex/flg_2_eye4_TA_tex_txt:
- addrs: [0x8085AD20, 0x8085AE20]
- npc/tex/flg_2_eye5_TA_tex_txt:
- addrs: [0x8085AE20, 0x8085AF20]
- npc/tex/flg_2_eye6_TA_tex_txt:
- addrs: [0x8085AF20, 0x8085B020]
- npc/tex/flg_2_eye7_TA_tex_txt:
- addrs: [0x8085B020, 0x8085B120]
- npc/tex/flg_2_eye8_TA_tex_txt:
- addrs: [0x8085B120, 0x8085B220]
- npc/tex/flg_2_mouth1_TA_tex_txt:
- addrs: [0x8085B220, 0x8085B320]
- npc/tex/flg_2_mouth2_TA_tex_txt:
- addrs: [0x8085B320, 0x8085B420]
- npc/tex/flg_2_mouth3_TA_tex_txt:
- addrs: [0x8085B420, 0x8085B520]
- npc/tex/flg_2_mouth4_TA_tex_txt:
- addrs: [0x8085B520, 0x8085B620]
- npc/tex/flg_2_mouth5_TA_tex_txt:
- addrs: [0x8085B620, 0x8085B720]
- npc/tex/flg_2_mouth6_TA_tex_txt:
- addrs: [0x8085B720, 0x8085B820]
- npc/tex/flg_2_tmem_txt:
- addrs: [0x8085B820, 0x8085BC20]
- npc/tex/flg_11_pal:
- addrs: [0x8085BC20, 0x8085BC40]
- type: pal16
- npc/tex/flg_11_eye1_TA_tex_txt:
- addrs: [0x8085BC40, 0x8085BD40]
- npc/tex/flg_11_eye2_TA_tex_txt:
- addrs: [0x8085BD40, 0x8085BE40]
- npc/tex/flg_11_eye3_TA_tex_txt:
- addrs: [0x8085BE40, 0x8085BF40]
- npc/tex/flg_11_eye4_TA_tex_txt:
- addrs: [0x8085BF40, 0x8085C040]
- npc/tex/flg_11_eye5_TA_tex_txt:
- addrs: [0x8085C040, 0x8085C140]
- npc/tex/flg_11_eye6_TA_tex_txt:
- addrs: [0x8085C140, 0x8085C240]
- npc/tex/flg_11_eye7_TA_tex_txt:
- addrs: [0x8085C240, 0x8085C340]
- npc/tex/flg_11_eye8_TA_tex_txt:
- addrs: [0x8085C340, 0x8085C440]
- npc/tex/flg_11_mouth1_TA_tex_txt:
- addrs: [0x8085C440, 0x8085C540]
- npc/tex/flg_11_mouth2_TA_tex_txt:
- addrs: [0x8085C540, 0x8085C640]
- npc/tex/flg_11_mouth3_TA_tex_txt:
- addrs: [0x8085C640, 0x8085C740]
- npc/tex/flg_11_mouth4_TA_tex_txt:
- addrs: [0x8085C740, 0x8085C840]
- npc/tex/flg_11_mouth5_TA_tex_txt:
- addrs: [0x8085C840, 0x8085C940]
- npc/tex/flg_11_mouth6_TA_tex_txt:
- addrs: [0x8085C940, 0x8085CA40]
- npc/tex/flg_11_tmem_txt:
- addrs: [0x8085CA40, 0x8085CE40]
- npc/tex/flg_12_pal:
- addrs: [0x8085CE40, 0x8085CE60]
- type: pal16
- npc/tex/flg_12_eye1_TA_tex_txt:
- addrs: [0x8085CE60, 0x8085CF60]
- npc/tex/flg_12_eye2_TA_tex_txt:
- addrs: [0x8085CF60, 0x8085D060]
- npc/tex/flg_12_eye3_TA_tex_txt:
- addrs: [0x8085D060, 0x8085D160]
- npc/tex/flg_12_eye4_TA_tex_txt:
- addrs: [0x8085D160, 0x8085D260]
- npc/tex/flg_12_eye5_TA_tex_txt:
- addrs: [0x8085D260, 0x8085D360]
- npc/tex/flg_12_eye6_TA_tex_txt:
- addrs: [0x8085D360, 0x8085D460]
- npc/tex/flg_12_eye7_TA_tex_txt:
- addrs: [0x8085D460, 0x8085D560]
- npc/tex/flg_12_eye8_TA_tex_txt:
- addrs: [0x8085D560, 0x8085D660]
- npc/tex/flg_12_mouth1_TA_tex_txt:
- addrs: [0x8085D660, 0x8085D760]
- npc/tex/flg_12_mouth2_TA_tex_txt:
- addrs: [0x8085D760, 0x8085D860]
- npc/tex/flg_12_mouth3_TA_tex_txt:
- addrs: [0x8085D860, 0x8085D960]
- npc/tex/flg_12_mouth4_TA_tex_txt:
- addrs: [0x8085D960, 0x8085DA60]
- npc/tex/flg_12_mouth5_TA_tex_txt:
- addrs: [0x8085DA60, 0x8085DB60]
- npc/tex/flg_12_mouth6_TA_tex_txt:
- addrs: [0x8085DB60, 0x8085DC60]
- npc/tex/flg_12_tmem_txt:
- addrs: [0x8085DC60, 0x8085DFE0]
- npc/tex/flg_13_pal:
- addrs: [0x8085DFE0, 0x8085E000]
- type: pal16
- npc/tex/flg_13_eye1_TA_tex_txt:
- addrs: [0x8085E000, 0x8085E100]
- npc/tex/flg_13_eye2_TA_tex_txt:
- addrs: [0x8085E100, 0x8085E200]
- npc/tex/flg_13_eye3_TA_tex_txt:
- addrs: [0x8085E200, 0x8085E300]
- npc/tex/flg_13_eye4_TA_tex_txt:
- addrs: [0x8085E300, 0x8085E400]
- npc/tex/flg_13_eye5_TA_tex_txt:
- addrs: [0x8085E400, 0x8085E500]
- npc/tex/flg_13_eye6_TA_tex_txt:
- addrs: [0x8085E500, 0x8085E600]
- npc/tex/flg_13_eye7_TA_tex_txt:
- addrs: [0x8085E600, 0x8085E700]
- npc/tex/flg_13_eye8_TA_tex_txt:
- addrs: [0x8085E700, 0x8085E800]
- npc/tex/flg_13_mouth1_TA_tex_txt:
- addrs: [0x8085E800, 0x8085E900]
- npc/tex/flg_13_mouth2_TA_tex_txt:
- addrs: [0x8085E900, 0x8085EA00]
- npc/tex/flg_13_mouth3_TA_tex_txt:
- addrs: [0x8085EA00, 0x8085EB00]
- npc/tex/flg_13_mouth4_TA_tex_txt:
- addrs: [0x8085EB00, 0x8085EC00]
- npc/tex/flg_13_mouth5_TA_tex_txt:
- addrs: [0x8085EC00, 0x8085ED00]
- npc/tex/flg_13_mouth6_TA_tex_txt:
- addrs: [0x8085ED00, 0x8085EE00]
- npc/tex/flg_13_tmem_txt:
- addrs: [0x8085EE00, 0x8085F200]
- npc/tex/flg_3_pal:
- addrs: [0x8085F200, 0x8085F220]
- type: pal16
- npc/tex/flg_3_eye1_TA_tex_txt:
- addrs: [0x8085F220, 0x8085F320]
- npc/tex/flg_3_eye2_TA_tex_txt:
- addrs: [0x8085F320, 0x8085F420]
- npc/tex/flg_3_eye3_TA_tex_txt:
- addrs: [0x8085F420, 0x8085F520]
- npc/tex/flg_3_eye4_TA_tex_txt:
- addrs: [0x8085F520, 0x8085F620]
- npc/tex/flg_3_eye5_TA_tex_txt:
- addrs: [0x8085F620, 0x8085F720]
- npc/tex/flg_3_eye6_TA_tex_txt:
- addrs: [0x8085F720, 0x8085F820]
- npc/tex/flg_3_eye7_TA_tex_txt:
- addrs: [0x8085F820, 0x8085F920]
- npc/tex/flg_3_eye8_TA_tex_txt:
- addrs: [0x8085F920, 0x8085FA20]
- npc/tex/flg_3_mouth1_TA_tex_txt:
- addrs: [0x8085FA20, 0x8085FB20]
- npc/tex/flg_3_mouth2_TA_tex_txt:
- addrs: [0x8085FB20, 0x8085FC20]
- npc/tex/flg_3_mouth3_TA_tex_txt:
- addrs: [0x8085FC20, 0x8085FD20]
- npc/tex/flg_3_mouth4_TA_tex_txt:
- addrs: [0x8085FD20, 0x8085FE20]
- npc/tex/flg_3_mouth5_TA_tex_txt:
- addrs: [0x8085FE20, 0x8085FF20]
- npc/tex/flg_3_mouth6_TA_tex_txt:
- addrs: [0x8085FF20, 0x80860020]
- npc/tex/flg_3_tmem_txt:
- addrs: [0x80860020, 0x80860420]
- npc/tex/flg_4_pal:
- addrs: [0x80860420, 0x80860440]
- type: pal16
- npc/tex/flg_4_eye1_TA_tex_txt:
- addrs: [0x80860440, 0x80860540]
- npc/tex/flg_4_eye2_TA_tex_txt:
- addrs: [0x80860540, 0x80860640]
- npc/tex/flg_4_eye3_TA_tex_txt:
- addrs: [0x80860640, 0x80860740]
- npc/tex/flg_4_eye4_TA_tex_txt:
- addrs: [0x80860740, 0x80860840]
- npc/tex/flg_4_eye5_TA_tex_txt:
- addrs: [0x80860840, 0x80860940]
- npc/tex/flg_4_eye6_TA_tex_txt:
- addrs: [0x80860940, 0x80860A40]
- npc/tex/flg_4_eye7_TA_tex_txt:
- addrs: [0x80860A40, 0x80860B40]
- npc/tex/flg_4_eye8_TA_tex_txt:
- addrs: [0x80860B40, 0x80860C40]
- npc/tex/flg_4_mouth1_TA_tex_txt:
- addrs: [0x80860C40, 0x80860D40]
- npc/tex/flg_4_mouth2_TA_tex_txt:
- addrs: [0x80860D40, 0x80860E40]
- npc/tex/flg_4_mouth3_TA_tex_txt:
- addrs: [0x80860E40, 0x80860F40]
- npc/tex/flg_4_mouth4_TA_tex_txt:
- addrs: [0x80860F40, 0x80861040]
- npc/tex/flg_4_mouth5_TA_tex_txt:
- addrs: [0x80861040, 0x80861140]
- npc/tex/flg_4_mouth6_TA_tex_txt:
- addrs: [0x80861140, 0x80861240]
- npc/tex/flg_4_tmem_txt:
- addrs: [0x80861240, 0x80861640]
- npc/tex/flg_5_pal:
- addrs: [0x80861640, 0x80861660]
- type: pal16
- npc/tex/flg_5_eye1_TA_tex_txt:
- addrs: [0x80861660, 0x80861760]
- npc/tex/flg_5_eye2_TA_tex_txt:
- addrs: [0x80861760, 0x80861860]
- npc/tex/flg_5_eye3_TA_tex_txt:
- addrs: [0x80861860, 0x80861960]
- npc/tex/flg_5_eye4_TA_tex_txt:
- addrs: [0x80861960, 0x80861A60]
- npc/tex/flg_5_eye5_TA_tex_txt:
- addrs: [0x80861A60, 0x80861B60]
- npc/tex/flg_5_eye6_TA_tex_txt:
- addrs: [0x80861B60, 0x80861C60]
- npc/tex/flg_5_eye7_TA_tex_txt:
- addrs: [0x80861C60, 0x80861D60]
- npc/tex/flg_5_eye8_TA_tex_txt:
- addrs: [0x80861D60, 0x80861E60]
- npc/tex/flg_5_mouth1_TA_tex_txt:
- addrs: [0x80861E60, 0x80861F60]
- npc/tex/flg_5_mouth2_TA_tex_txt:
- addrs: [0x80861F60, 0x80862060]
- npc/tex/flg_5_mouth3_TA_tex_txt:
- addrs: [0x80862060, 0x80862160]
- npc/tex/flg_5_mouth4_TA_tex_txt:
- addrs: [0x80862160, 0x80862260]
- npc/tex/flg_5_mouth5_TA_tex_txt:
- addrs: [0x80862260, 0x80862360]
- npc/tex/flg_5_mouth6_TA_tex_txt:
- addrs: [0x80862360, 0x80862460]
- npc/tex/flg_5_tmem_txt:
- addrs: [0x80862460, 0x80862860]
- npc/tex/flg_6_pal:
- addrs: [0x80862860, 0x80862880]
- type: pal16
- npc/tex/flg_6_eye1_TA_tex_txt:
- addrs: [0x80862880, 0x80862980]
- npc/tex/flg_6_eye2_TA_tex_txt:
- addrs: [0x80862980, 0x80862A80]
- npc/tex/flg_6_eye3_TA_tex_txt:
- addrs: [0x80862A80, 0x80862B80]
- npc/tex/flg_6_eye4_TA_tex_txt:
- addrs: [0x80862B80, 0x80862C80]
- npc/tex/flg_6_eye5_TA_tex_txt:
- addrs: [0x80862C80, 0x80862D80]
- npc/tex/flg_6_eye6_TA_tex_txt:
- addrs: [0x80862D80, 0x80862E80]
- npc/tex/flg_6_eye7_TA_tex_txt:
- addrs: [0x80862E80, 0x80862F80]
- npc/tex/flg_6_eye8_TA_tex_txt:
- addrs: [0x80862F80, 0x80863080]
- npc/tex/flg_6_mouth1_TA_tex_txt:
- addrs: [0x80863080, 0x80863180]
- npc/tex/flg_6_mouth2_TA_tex_txt:
- addrs: [0x80863180, 0x80863280]
- npc/tex/flg_6_mouth3_TA_tex_txt:
- addrs: [0x80863280, 0x80863380]
- npc/tex/flg_6_mouth4_TA_tex_txt:
- addrs: [0x80863380, 0x80863480]
- npc/tex/flg_6_mouth5_TA_tex_txt:
- addrs: [0x80863480, 0x80863580]
- npc/tex/flg_6_mouth6_TA_tex_txt:
- addrs: [0x80863580, 0x80863680]
- npc/tex/flg_6_tmem_txt:
- addrs: [0x80863680, 0x80863A80]
- npc/tex/flg_7_pal:
- addrs: [0x80863A80, 0x80863AA0]
- type: pal16
- npc/tex/flg_7_eye1_TA_tex_txt:
- addrs: [0x80863AA0, 0x80863BA0]
- npc/tex/flg_7_eye2_TA_tex_txt:
- addrs: [0x80863BA0, 0x80863CA0]
- npc/tex/flg_7_eye3_TA_tex_txt:
- addrs: [0x80863CA0, 0x80863DA0]
- npc/tex/flg_7_eye4_TA_tex_txt:
- addrs: [0x80863DA0, 0x80863EA0]
- npc/tex/flg_7_eye5_TA_tex_txt:
- addrs: [0x80863EA0, 0x80863FA0]
- npc/tex/flg_7_eye6_TA_tex_txt:
- addrs: [0x80863FA0, 0x808640A0]
- npc/tex/flg_7_eye7_TA_tex_txt:
- addrs: [0x808640A0, 0x808641A0]
- npc/tex/flg_7_eye8_TA_tex_txt:
- addrs: [0x808641A0, 0x808642A0]
- npc/tex/flg_7_mouth1_TA_tex_txt:
- addrs: [0x808642A0, 0x808643A0]
- npc/tex/flg_7_mouth2_TA_tex_txt:
- addrs: [0x808643A0, 0x808644A0]
- npc/tex/flg_7_mouth3_TA_tex_txt:
- addrs: [0x808644A0, 0x808645A0]
- npc/tex/flg_7_mouth4_TA_tex_txt:
- addrs: [0x808645A0, 0x808646A0]
- npc/tex/flg_7_mouth5_TA_tex_txt:
- addrs: [0x808646A0, 0x808647A0]
- npc/tex/flg_7_mouth6_TA_tex_txt:
- addrs: [0x808647A0, 0x808648A0]
- npc/tex/flg_7_tmem_txt:
- addrs: [0x808648A0, 0x80864CA0]
- npc/tex/flg_8_pal:
- addrs: [0x80864CA0, 0x80864CC0]
- type: pal16
- npc/tex/flg_8_eye1_TA_tex_txt:
- addrs: [0x80864CC0, 0x80864DC0]
- npc/tex/flg_8_eye2_TA_tex_txt:
- addrs: [0x80864DC0, 0x80864EC0]
- npc/tex/flg_8_eye3_TA_tex_txt:
- addrs: [0x80864EC0, 0x80864FC0]
- npc/tex/flg_8_eye4_TA_tex_txt:
- addrs: [0x80864FC0, 0x808650C0]
- npc/tex/flg_8_eye5_TA_tex_txt:
- addrs: [0x808650C0, 0x808651C0]
- npc/tex/flg_8_eye6_TA_tex_txt:
- addrs: [0x808651C0, 0x808652C0]
- npc/tex/flg_8_eye7_TA_tex_txt:
- addrs: [0x808652C0, 0x808653C0]
- npc/tex/flg_8_eye8_TA_tex_txt:
- addrs: [0x808653C0, 0x808654C0]
- npc/tex/flg_8_mouth1_TA_tex_txt:
- addrs: [0x808654C0, 0x808655C0]
- npc/tex/flg_8_mouth2_TA_tex_txt:
- addrs: [0x808655C0, 0x808656C0]
- npc/tex/flg_8_mouth3_TA_tex_txt:
- addrs: [0x808656C0, 0x808657C0]
- npc/tex/flg_8_mouth4_TA_tex_txt:
- addrs: [0x808657C0, 0x808658C0]
- npc/tex/flg_8_mouth5_TA_tex_txt:
- addrs: [0x808658C0, 0x808659C0]
- npc/tex/flg_8_mouth6_TA_tex_txt:
- addrs: [0x808659C0, 0x80865AC0]
- npc/tex/flg_8_tmem_txt:
- addrs: [0x80865AC0, 0x80865EC0]
- npc/tex/flg_9_pal:
- addrs: [0x80865EC0, 0x80865EE0]
- type: pal16
- npc/tex/flg_9_eye1_TA_tex_txt:
- addrs: [0x80865EE0, 0x80865FE0]
- npc/tex/flg_9_eye2_TA_tex_txt:
- addrs: [0x80865FE0, 0x808660E0]
- npc/tex/flg_9_eye3_TA_tex_txt:
- addrs: [0x808660E0, 0x808661E0]
- npc/tex/flg_9_eye4_TA_tex_txt:
- addrs: [0x808661E0, 0x808662E0]
- npc/tex/flg_9_eye5_TA_tex_txt:
- addrs: [0x808662E0, 0x808663E0]
- npc/tex/flg_9_eye6_TA_tex_txt:
- addrs: [0x808663E0, 0x808664E0]
- npc/tex/flg_9_eye7_TA_tex_txt:
- addrs: [0x808664E0, 0x808665E0]
- npc/tex/flg_9_eye8_TA_tex_txt:
- addrs: [0x808665E0, 0x808666E0]
- npc/tex/flg_9_mouth1_TA_tex_txt:
- addrs: [0x808666E0, 0x808667E0]
- npc/tex/flg_9_mouth2_TA_tex_txt:
- addrs: [0x808667E0, 0x808668E0]
- npc/tex/flg_9_mouth3_TA_tex_txt:
- addrs: [0x808668E0, 0x808669E0]
- npc/tex/flg_9_mouth4_TA_tex_txt:
- addrs: [0x808669E0, 0x80866AE0]
- npc/tex/flg_9_mouth5_TA_tex_txt:
- addrs: [0x80866AE0, 0x80866BE0]
- npc/tex/flg_9_mouth6_TA_tex_txt:
- addrs: [0x80866BE0, 0x80866CE0]
- npc/tex/flg_9_tmem_txt:
- addrs: [0x80866CE0, 0x808670E0]
- npc/tex/flg_10_pal:
- addrs: [0x808670E0, 0x80867100]
- type: pal16
- npc/tex/flg_10_eye1_TA_tex_txt:
- addrs: [0x80867100, 0x80867200]
- npc/tex/flg_10_eye2_TA_tex_txt:
- addrs: [0x80867200, 0x80867300]
- npc/tex/flg_10_eye3_TA_tex_txt:
- addrs: [0x80867300, 0x80867400]
- npc/tex/flg_10_eye4_TA_tex_txt:
- addrs: [0x80867400, 0x80867500]
- npc/tex/flg_10_eye5_TA_tex_txt:
- addrs: [0x80867500, 0x80867600]
- npc/tex/flg_10_eye6_TA_tex_txt:
- addrs: [0x80867600, 0x80867700]
- npc/tex/flg_10_eye7_TA_tex_txt:
- addrs: [0x80867700, 0x80867800]
- npc/tex/flg_10_eye8_TA_tex_txt:
- addrs: [0x80867800, 0x80867900]
- npc/tex/flg_10_mouth1_TA_tex_txt:
- addrs: [0x80867900, 0x80867A00]
- npc/tex/flg_10_mouth2_TA_tex_txt:
- addrs: [0x80867A00, 0x80867B00]
- npc/tex/flg_10_mouth3_TA_tex_txt:
- addrs: [0x80867B00, 0x80867C00]
- npc/tex/flg_10_mouth4_TA_tex_txt:
- addrs: [0x80867C00, 0x80867D00]
- npc/tex/flg_10_mouth5_TA_tex_txt:
- addrs: [0x80867D00, 0x80867E00]
- npc/tex/flg_10_mouth6_TA_tex_txt:
- addrs: [0x80867E00, 0x80867F00]
- npc/tex/flg_10_tmem_txt:
- addrs: [0x80867F00, 0x80868300]
- npc/mdl/rcf_1_v:
- addrs: [0x80868300, 0x80869E30]
- type: vtx
- npc/tex/rcf_1_pal:
- addrs: [0x8086A9A0, 0x8086A9C0]
- type: pal16
- npc/tex/rcf_1_eye1_TA_tex_txt:
- addrs: [0x8086A9C0, 0x8086AAC0]
- npc/tex/rcf_1_eye2_TA_tex_txt:
- addrs: [0x8086AAC0, 0x8086ABC0]
- npc/tex/rcf_1_eye3_TA_tex_txt:
- addrs: [0x8086ABC0, 0x8086ACC0]
- npc/tex/rcf_1_eye4_TA_tex_txt:
- addrs: [0x8086ACC0, 0x8086ADC0]
- npc/tex/rcf_1_eye5_TA_tex_txt:
- addrs: [0x8086ADC0, 0x8086AEC0]
- npc/tex/rcf_1_eye6_TA_tex_txt:
- addrs: [0x8086AEC0, 0x8086AFC0]
- npc/tex/rcf_1_eye7_TA_tex_txt:
- addrs: [0x8086AFC0, 0x8086B0C0]
- npc/tex/rcf_1_eye8_TA_tex_txt:
- addrs: [0x8086B0C0, 0x8086B1C0]
- npc/tex/rcf_1_tmem_txt:
- addrs: [0x8086B1C0, 0x8086B8C0]
- npc/mdl/gst_1_v:
- addrs: [0x8086CB08, 0x8086DC18]
- type: vtx
- npc/tex/gst_1_pal:
- addrs: [0x8086E180, 0x8086E1A0]
- type: pal16
- npc/tex/gst_1_eye1_TA_tex_txt:
- addrs: [0x8086E1A0, 0x8086E2A0]
- npc/tex/gst_1_eye2_TA_tex_txt:
- addrs: [0x8086E2A0, 0x8086E3A0]
- npc/tex/gst_1_eye3_TA_tex_txt:
- addrs: [0x8086E3A0, 0x8086E4A0]
- npc/tex/gst_1_eye4_TA_tex_txt:
- addrs: [0x8086E4A0, 0x8086E5A0]
- npc/tex/gst_1_eye5_TA_tex_txt:
- addrs: [0x8086E5A0, 0x8086E6A0]
- npc/tex/gst_1_eye6_TA_tex_txt:
- addrs: [0x8086E6A0, 0x8086E7A0]
- npc/tex/gst_1_eye7_TA_tex_txt:
- addrs: [0x8086E7A0, 0x8086E8A0]
- npc/tex/gst_1_eye8_TA_tex_txt:
- addrs: [0x8086E8A0, 0x8086E9A0]
- npc/tex/gst_1_mouth1_TA_tex_txt:
- addrs: [0x8086E9A0, 0x8086EAA0]
- npc/tex/gst_1_mouth2_TA_tex_txt:
- addrs: [0x8086EAA0, 0x8086EBA0]
- npc/tex/gst_1_mouth3_TA_tex_txt:
- addrs: [0x8086EBA0, 0x8086ECA0]
- npc/tex/gst_1_mouth4_TA_tex_txt:
- addrs: [0x8086ECA0, 0x8086EDA0]
- npc/tex/gst_1_mouth5_TA_tex_txt:
- addrs: [0x8086EDA0, 0x8086EEA0]
- npc/tex/gst_1_mouth6_TA_tex_txt:
- addrs: [0x8086EEA0, 0x8086EFA0]
- npc/tex/gst_1_tmem_txt:
- addrs: [0x8086EFA0, 0x8086F120]
- npc/mdl/goa_1_v:
- addrs: [0x80871730, 0x80872D70]
- type: vtx
- npc/tex/goa_1_pal:
- addrs: [0x80873700, 0x80873720]
- type: pal16
- npc/tex/goa_1_eye1_TA_tex_txt:
- addrs: [0x80873720, 0x80873820]
- npc/tex/goa_1_eye2_TA_tex_txt:
- addrs: [0x80873820, 0x80873920]
- npc/tex/goa_1_eye3_TA_tex_txt:
- addrs: [0x80873920, 0x80873A20]
- npc/tex/goa_1_eye4_TA_tex_txt:
- addrs: [0x80873A20, 0x80873B20]
- npc/tex/goa_1_eye5_TA_tex_txt:
- addrs: [0x80873B20, 0x80873C20]
- npc/tex/goa_1_eye6_TA_tex_txt:
- addrs: [0x80873C20, 0x80873D20]
- npc/tex/goa_1_eye7_TA_tex_txt:
- addrs: [0x80873D20, 0x80873E20]
- npc/tex/goa_1_eye8_TA_tex_txt:
- addrs: [0x80873E20, 0x80873F20]
- npc/tex/goa_1_mouth1_TA_tex_txt:
- addrs: [0x80873F20, 0x80874020]
- npc/tex/goa_1_mouth2_TA_tex_txt:
- addrs: [0x80874020, 0x80874120]
- npc/tex/goa_1_mouth3_TA_tex_txt:
- addrs: [0x80874120, 0x80874220]
- npc/tex/goa_1_mouth4_TA_tex_txt:
- addrs: [0x80874220, 0x80874320]
- npc/tex/goa_1_mouth5_TA_tex_txt:
- addrs: [0x80874320, 0x80874420]
- npc/tex/goa_1_mouth6_TA_tex_txt:
- addrs: [0x80874420, 0x80874520]
- npc/tex/goa_1_tmem_txt:
- addrs: [0x80874520, 0x80874920]
- npc/tex/goa_2_pal:
- addrs: [0x80874920, 0x80874940]
- type: pal16
- npc/tex/goa_2_eye1_TA_tex_txt:
- addrs: [0x80874940, 0x80874A40]
- npc/tex/goa_2_eye2_TA_tex_txt:
- addrs: [0x80874A40, 0x80874B40]
- npc/tex/goa_2_eye3_TA_tex_txt:
- addrs: [0x80874B40, 0x80874C40]
- npc/tex/goa_2_eye4_TA_tex_txt:
- addrs: [0x80874C40, 0x80874D40]
- npc/tex/goa_2_eye5_TA_tex_txt:
- addrs: [0x80874D40, 0x80874E40]
- npc/tex/goa_2_eye6_TA_tex_txt:
- addrs: [0x80874E40, 0x80874F40]
- npc/tex/goa_2_eye7_TA_tex_txt:
- addrs: [0x80874F40, 0x80875040]
- npc/tex/goa_2_eye8_TA_tex_txt:
- addrs: [0x80875040, 0x80875140]
- npc/tex/goa_2_mouth1_TA_tex_txt:
- addrs: [0x80875140, 0x80875240]
- npc/tex/goa_2_mouth2_TA_tex_txt:
- addrs: [0x80875240, 0x80875340]
- npc/tex/goa_2_mouth3_TA_tex_txt:
- addrs: [0x80875340, 0x80875440]
- npc/tex/goa_2_mouth4_TA_tex_txt:
- addrs: [0x80875440, 0x80875540]
- npc/tex/goa_2_mouth5_TA_tex_txt:
- addrs: [0x80875540, 0x80875640]
- npc/tex/goa_2_mouth6_TA_tex_txt:
- addrs: [0x80875640, 0x80875740]
- npc/tex/goa_2_tmem_txt:
- addrs: [0x80875740, 0x80875B40]
- npc/tex/goa_3_pal:
- addrs: [0x80875B40, 0x80875B60]
- type: pal16
- npc/tex/goa_3_eye1_TA_tex_txt:
- addrs: [0x80875B60, 0x80875C60]
- npc/tex/goa_3_eye2_TA_tex_txt:
- addrs: [0x80875C60, 0x80875D60]
- npc/tex/goa_3_eye3_TA_tex_txt:
- addrs: [0x80875D60, 0x80875E60]
- npc/tex/goa_3_eye4_TA_tex_txt:
- addrs: [0x80875E60, 0x80875F60]
- npc/tex/goa_3_eye5_TA_tex_txt:
- addrs: [0x80875F60, 0x80876060]
- npc/tex/goa_3_eye6_TA_tex_txt:
- addrs: [0x80876060, 0x80876160]
- npc/tex/goa_3_eye7_TA_tex_txt:
- addrs: [0x80876160, 0x80876260]
- npc/tex/goa_3_eye8_TA_tex_txt:
- addrs: [0x80876260, 0x80876360]
- npc/tex/goa_3_mouth1_TA_tex_txt:
- addrs: [0x80876360, 0x80876460]
- npc/tex/goa_3_mouth2_TA_tex_txt:
- addrs: [0x80876460, 0x80876560]
- npc/tex/goa_3_mouth3_TA_tex_txt:
- addrs: [0x80876560, 0x80876660]
- npc/tex/goa_3_mouth4_TA_tex_txt:
- addrs: [0x80876660, 0x80876760]
- npc/tex/goa_3_mouth5_TA_tex_txt:
- addrs: [0x80876760, 0x80876860]
- npc/tex/goa_3_mouth6_TA_tex_txt:
- addrs: [0x80876860, 0x80876960]
- npc/tex/goa_3_tmem_txt:
- addrs: [0x80876960, 0x80876D60]
- npc/tex/goa_4_pal:
- addrs: [0x80876D60, 0x80876D80]
- type: pal16
- npc/tex/goa_4_eye1_TA_tex_txt:
- addrs: [0x80876D80, 0x80876E80]
- npc/tex/goa_4_eye2_TA_tex_txt:
- addrs: [0x80876E80, 0x80876F80]
- npc/tex/goa_4_eye3_TA_tex_txt:
- addrs: [0x80876F80, 0x80877080]
- npc/tex/goa_4_eye4_TA_tex_txt:
- addrs: [0x80877080, 0x80877180]
- npc/tex/goa_4_eye5_TA_tex_txt:
- addrs: [0x80877180, 0x80877280]
- npc/tex/goa_4_eye6_TA_tex_txt:
- addrs: [0x80877280, 0x80877380]
- npc/tex/goa_4_eye7_TA_tex_txt:
- addrs: [0x80877380, 0x80877480]
- npc/tex/goa_4_eye8_TA_tex_txt:
- addrs: [0x80877480, 0x80877580]
- npc/tex/goa_4_mouth1_TA_tex_txt:
- addrs: [0x80877580, 0x80877680]
- npc/tex/goa_4_mouth2_TA_tex_txt:
- addrs: [0x80877680, 0x80877780]
- npc/tex/goa_4_mouth3_TA_tex_txt:
- addrs: [0x80877780, 0x80877880]
- npc/tex/goa_4_mouth4_TA_tex_txt:
- addrs: [0x80877880, 0x80877980]
- npc/tex/goa_4_mouth5_TA_tex_txt:
- addrs: [0x80877980, 0x80877A80]
- npc/tex/goa_4_mouth6_TA_tex_txt:
- addrs: [0x80877A80, 0x80877B80]
- npc/tex/goa_4_tmem_txt:
- addrs: [0x80877B80, 0x80877F80]
- npc/tex/goa_5_pal:
- addrs: [0x80877F80, 0x80877FA0]
- type: pal16
- npc/tex/goa_5_eye1_TA_tex_txt:
- addrs: [0x80877FA0, 0x808780A0]
- npc/tex/goa_5_eye2_TA_tex_txt:
- addrs: [0x808780A0, 0x808781A0]
- npc/tex/goa_5_eye3_TA_tex_txt:
- addrs: [0x808781A0, 0x808782A0]
- npc/tex/goa_5_eye4_TA_tex_txt:
- addrs: [0x808782A0, 0x808783A0]
- npc/tex/goa_5_eye5_TA_tex_txt:
- addrs: [0x808783A0, 0x808784A0]
- npc/tex/goa_5_eye6_TA_tex_txt:
- addrs: [0x808784A0, 0x808785A0]
- npc/tex/goa_5_eye7_TA_tex_txt:
- addrs: [0x808785A0, 0x808786A0]
- npc/tex/goa_5_eye8_TA_tex_txt:
- addrs: [0x808786A0, 0x808787A0]
- npc/tex/goa_5_mouth1_TA_tex_txt:
- addrs: [0x808787A0, 0x808788A0]
- npc/tex/goa_5_mouth2_TA_tex_txt:
- addrs: [0x808788A0, 0x808789A0]
- npc/tex/goa_5_mouth3_TA_tex_txt:
- addrs: [0x808789A0, 0x80878AA0]
- npc/tex/goa_5_mouth4_TA_tex_txt:
- addrs: [0x80878AA0, 0x80878BA0]
- npc/tex/goa_5_mouth5_TA_tex_txt:
- addrs: [0x80878BA0, 0x80878CA0]
- npc/tex/goa_5_mouth6_TA_tex_txt:
- addrs: [0x80878CA0, 0x80878DA0]
- npc/tex/goa_5_tmem_txt:
- addrs: [0x80878DA0, 0x808791A0]
- npc/tex/goa_6_pal:
- addrs: [0x808791A0, 0x808791C0]
- type: pal16
- npc/tex/goa_6_eye1_TA_tex_txt:
- addrs: [0x808791C0, 0x808792C0]
- npc/tex/goa_6_eye2_TA_tex_txt:
- addrs: [0x808792C0, 0x808793C0]
- npc/tex/goa_6_eye3_TA_tex_txt:
- addrs: [0x808793C0, 0x808794C0]
- npc/tex/goa_6_eye4_TA_tex_txt:
- addrs: [0x808794C0, 0x808795C0]
- npc/tex/goa_6_eye5_TA_tex_txt:
- addrs: [0x808795C0, 0x808796C0]
- npc/tex/goa_6_eye6_TA_tex_txt:
- addrs: [0x808796C0, 0x808797C0]
- npc/tex/goa_6_eye7_TA_tex_txt:
- addrs: [0x808797C0, 0x808798C0]
- npc/tex/goa_6_eye8_TA_tex_txt:
- addrs: [0x808798C0, 0x808799C0]
- npc/tex/goa_6_mouth1_TA_tex_txt:
- addrs: [0x808799C0, 0x80879AC0]
- npc/tex/goa_6_mouth2_TA_tex_txt:
- addrs: [0x80879AC0, 0x80879BC0]
- npc/tex/goa_6_mouth3_TA_tex_txt:
- addrs: [0x80879BC0, 0x80879CC0]
- npc/tex/goa_6_mouth4_TA_tex_txt:
- addrs: [0x80879CC0, 0x80879DC0]
- npc/tex/goa_6_mouth5_TA_tex_txt:
- addrs: [0x80879DC0, 0x80879EC0]
- npc/tex/goa_6_mouth6_TA_tex_txt:
- addrs: [0x80879EC0, 0x80879FC0]
- npc/tex/goa_6_tmem_txt:
- addrs: [0x80879FC0, 0x8087A3C0]
- npc/mdl/gor_1_v:
- addrs: [0x8087A3C0, 0x8087BE90]
- type: vtx
- npc/tex/gor_1_pal:
- addrs: [0x8087C960, 0x8087C980]
- type: pal16
- npc/tex/gor_1_eye1_TA_tex_txt:
- addrs: [0x8087C980, 0x8087CA80]
- npc/tex/gor_1_eye2_TA_tex_txt:
- addrs: [0x8087CA80, 0x8087CB80]
- npc/tex/gor_1_eye3_TA_tex_txt:
- addrs: [0x8087CB80, 0x8087CC80]
- npc/tex/gor_1_eye4_TA_tex_txt:
- addrs: [0x8087CC80, 0x8087CD80]
- npc/tex/gor_1_eye5_TA_tex_txt:
- addrs: [0x8087CD80, 0x8087CE80]
- npc/tex/gor_1_eye6_TA_tex_txt:
- addrs: [0x8087CE80, 0x8087CF80]
- npc/tex/gor_1_eye7_TA_tex_txt:
- addrs: [0x8087CF80, 0x8087D080]
- npc/tex/gor_1_eye8_TA_tex_txt:
- addrs: [0x8087D080, 0x8087D180]
- npc/tex/gor_1_mouth1_TA_tex_txt:
- addrs: [0x8087D180, 0x8087D280]
- npc/tex/gor_1_mouth2_TA_tex_txt:
- addrs: [0x8087D280, 0x8087D380]
- npc/tex/gor_1_mouth3_TA_tex_txt:
- addrs: [0x8087D380, 0x8087D480]
- npc/tex/gor_1_mouth4_TA_tex_txt:
- addrs: [0x8087D480, 0x8087D580]
- npc/tex/gor_1_mouth5_TA_tex_txt:
- addrs: [0x8087D580, 0x8087D680]
- npc/tex/gor_1_mouth6_TA_tex_txt:
- addrs: [0x8087D680, 0x8087D780]
- npc/tex/gor_1_tmem_txt:
- addrs: [0x8087D780, 0x8087DB80]
- npc/tex/gor_2_pal:
- addrs: [0x8087DB80, 0x8087DBA0]
- type: pal16
- npc/tex/gor_2_eye1_TA_tex_txt:
- addrs: [0x8087DBA0, 0x8087DCA0]
- npc/tex/gor_2_eye2_TA_tex_txt:
- addrs: [0x8087DCA0, 0x8087DDA0]
- npc/tex/gor_2_eye3_TA_tex_txt:
- addrs: [0x8087DDA0, 0x8087DEA0]
- npc/tex/gor_2_eye4_TA_tex_txt:
- addrs: [0x8087DEA0, 0x8087DFA0]
- npc/tex/gor_2_eye5_TA_tex_txt:
- addrs: [0x8087DFA0, 0x8087E0A0]
- npc/tex/gor_2_eye6_TA_tex_txt:
- addrs: [0x8087E0A0, 0x8087E1A0]
- npc/tex/gor_2_eye7_TA_tex_txt:
- addrs: [0x8087E1A0, 0x8087E2A0]
- npc/tex/gor_2_eye8_TA_tex_txt:
- addrs: [0x8087E2A0, 0x8087E3A0]
- npc/tex/gor_2_mouth1_TA_tex_txt:
- addrs: [0x8087E3A0, 0x8087E4A0]
- npc/tex/gor_2_mouth2_TA_tex_txt:
- addrs: [0x8087E4A0, 0x8087E5A0]
- npc/tex/gor_2_mouth3_TA_tex_txt:
- addrs: [0x8087E5A0, 0x8087E6A0]
- npc/tex/gor_2_mouth4_TA_tex_txt:
- addrs: [0x8087E6A0, 0x8087E7A0]
- npc/tex/gor_2_mouth5_TA_tex_txt:
- addrs: [0x8087E7A0, 0x8087E8A0]
- npc/tex/gor_2_mouth6_TA_tex_txt:
- addrs: [0x8087E8A0, 0x8087E9A0]
- npc/tex/gor_2_tmem_txt:
- addrs: [0x8087E9A0, 0x8087EDA0]
- npc/tex/gor_3_pal:
- addrs: [0x8087EDA0, 0x8087EDC0]
- type: pal16
- npc/tex/gor_3_eye1_TA_tex_txt:
- addrs: [0x8087EDC0, 0x8087EEC0]
- npc/tex/gor_3_eye2_TA_tex_txt:
- addrs: [0x8087EEC0, 0x8087EFC0]
- npc/tex/gor_3_eye3_TA_tex_txt:
- addrs: [0x8087EFC0, 0x8087F0C0]
- npc/tex/gor_3_eye4_TA_tex_txt:
- addrs: [0x8087F0C0, 0x8087F1C0]
- npc/tex/gor_3_eye5_TA_tex_txt:
- addrs: [0x8087F1C0, 0x8087F2C0]
- npc/tex/gor_3_eye6_TA_tex_txt:
- addrs: [0x8087F2C0, 0x8087F3C0]
- npc/tex/gor_3_eye7_TA_tex_txt:
- addrs: [0x8087F3C0, 0x8087F4C0]
- npc/tex/gor_3_eye8_TA_tex_txt:
- addrs: [0x8087F4C0, 0x8087F5C0]
- npc/tex/gor_3_mouth1_TA_tex_txt:
- addrs: [0x8087F5C0, 0x8087F6C0]
- npc/tex/gor_3_mouth2_TA_tex_txt:
- addrs: [0x8087F6C0, 0x8087F7C0]
- npc/tex/gor_3_mouth3_TA_tex_txt:
- addrs: [0x8087F7C0, 0x8087F8C0]
- npc/tex/gor_3_mouth4_TA_tex_txt:
- addrs: [0x8087F8C0, 0x8087F9C0]
- npc/tex/gor_3_mouth5_TA_tex_txt:
- addrs: [0x8087F9C0, 0x8087FAC0]
- npc/tex/gor_3_mouth6_TA_tex_txt:
- addrs: [0x8087FAC0, 0x8087FBC0]
- npc/tex/gor_3_tmem_txt:
- addrs: [0x8087FBC0, 0x8087FFC0]
- npc/tex/gor_4_pal:
- addrs: [0x8087FFC0, 0x8087FFE0]
- type: pal16
- npc/tex/gor_4_eye1_TA_tex_txt:
- addrs: [0x8087FFE0, 0x808800E0]
- npc/tex/gor_4_eye2_TA_tex_txt:
- addrs: [0x808800E0, 0x808801E0]
- npc/tex/gor_4_eye3_TA_tex_txt:
- addrs: [0x808801E0, 0x808802E0]
- npc/tex/gor_4_eye4_TA_tex_txt:
- addrs: [0x808802E0, 0x808803E0]
- npc/tex/gor_4_eye5_TA_tex_txt:
- addrs: [0x808803E0, 0x808804E0]
- npc/tex/gor_4_eye6_TA_tex_txt:
- addrs: [0x808804E0, 0x808805E0]
- npc/tex/gor_4_eye7_TA_tex_txt:
- addrs: [0x808805E0, 0x808806E0]
- npc/tex/gor_4_eye8_TA_tex_txt:
- addrs: [0x808806E0, 0x808807E0]
- npc/tex/gor_4_mouth1_TA_tex_txt:
- addrs: [0x808807E0, 0x808808E0]
- npc/tex/gor_4_mouth2_TA_tex_txt:
- addrs: [0x808808E0, 0x808809E0]
- npc/tex/gor_4_mouth3_TA_tex_txt:
- addrs: [0x808809E0, 0x80880AE0]
- npc/tex/gor_4_mouth4_TA_tex_txt:
- addrs: [0x80880AE0, 0x80880BE0]
- npc/tex/gor_4_mouth5_TA_tex_txt:
- addrs: [0x80880BE0, 0x80880CE0]
- npc/tex/gor_4_mouth6_TA_tex_txt:
- addrs: [0x80880CE0, 0x80880DE0]
- npc/tex/gor_4_tmem_txt:
- addrs: [0x80880DE0, 0x808811E0]
- npc/tex/gor_5_pal:
- addrs: [0x808811E0, 0x80881200]
- type: pal16
- npc/tex/gor_5_eye1_TA_tex_txt:
- addrs: [0x80881200, 0x80881300]
- npc/tex/gor_5_eye2_TA_tex_txt:
- addrs: [0x80881300, 0x80881400]
- npc/tex/gor_5_eye3_TA_tex_txt:
- addrs: [0x80881400, 0x80881500]
- npc/tex/gor_5_eye4_TA_tex_txt:
- addrs: [0x80881500, 0x80881600]
- npc/tex/gor_5_eye5_TA_tex_txt:
- addrs: [0x80881600, 0x80881700]
- npc/tex/gor_5_eye6_TA_tex_txt:
- addrs: [0x80881700, 0x80881800]
- npc/tex/gor_5_eye7_TA_tex_txt:
- addrs: [0x80881800, 0x80881900]
- npc/tex/gor_5_eye8_TA_tex_txt:
- addrs: [0x80881900, 0x80881A00]
- npc/tex/gor_5_mouth1_TA_tex_txt:
- addrs: [0x80881A00, 0x80881B00]
- npc/tex/gor_5_mouth2_TA_tex_txt:
- addrs: [0x80881B00, 0x80881C00]
- npc/tex/gor_5_mouth3_TA_tex_txt:
- addrs: [0x80881C00, 0x80881D00]
- npc/tex/gor_5_mouth4_TA_tex_txt:
- addrs: [0x80881D00, 0x80881E00]
- npc/tex/gor_5_mouth5_TA_tex_txt:
- addrs: [0x80881E00, 0x80881F00]
- npc/tex/gor_5_mouth6_TA_tex_txt:
- addrs: [0x80881F00, 0x80882000]
- npc/tex/gor_5_tmem_txt:
- addrs: [0x80882000, 0x80882400]
- npc/mdl/xct_1_v:
- addrs: [0x80882400, 0x808837B0]
- type: vtx
- npc/tex/xct_1_pal:
- addrs: [0x80884080, 0x808840A0]
- type: pal16
- npc/tex/xct_1_eye1_TA_tex_txt:
- addrs: [0x808840A0, 0x808841A0]
- npc/tex/xct_1_eye2_TA_tex_txt:
- addrs: [0x808841A0, 0x808842A0]
- npc/tex/xct_1_eye3_TA_tex_txt:
- addrs: [0x808842A0, 0x808843A0]
- npc/tex/xct_1_eye4_TA_tex_txt:
- addrs: [0x808843A0, 0x808844A0]
- npc/tex/xct_1_eye5_TA_tex_txt:
- addrs: [0x808844A0, 0x808845A0]
- npc/tex/xct_1_eye6_TA_tex_txt:
- addrs: [0x808845A0, 0x808846A0]
- npc/tex/xct_1_eye7_TA_tex_txt:
- addrs: [0x808846A0, 0x808847A0]
- npc/tex/xct_1_eye8_TA_tex_txt:
- addrs: [0x808847A0, 0x808848A0]
- npc/tex/xct_1_mouth1_TA_tex_txt:
- addrs: [0x808848A0, 0x808849A0]
- npc/tex/xct_1_mouth2_TA_tex_txt:
- addrs: [0x808849A0, 0x80884AA0]
- npc/tex/xct_1_mouth3_TA_tex_txt:
- addrs: [0x80884AA0, 0x80884BA0]
- npc/tex/xct_1_mouth4_TA_tex_txt:
- addrs: [0x80884BA0, 0x80884CA0]
- npc/tex/xct_1_mouth5_TA_tex_txt:
- addrs: [0x80884CA0, 0x80884DA0]
- npc/tex/xct_1_mouth6_TA_tex_txt:
- addrs: [0x80884DA0, 0x80884EA0]
- npc/tex/xct_1_tmem_txt:
- addrs: [0x80884EA0, 0x80885420]
- npc/mdl/bpt_1_v:
- addrs: [0x80894928, 0x80896008]
- type: vtx
- npc/tex/bpt_1_pal:
- addrs: [0x80896A80, 0x80896AA0]
- type: pal16
- npc/tex/bpt_1_eye1_TA_tex_txt:
- addrs: [0x80896AA0, 0x80896BA0]
- npc/tex/bpt_1_eye2_TA_tex_txt:
- addrs: [0x80896BA0, 0x80896CA0]
- npc/tex/bpt_1_eye3_TA_tex_txt:
- addrs: [0x80896CA0, 0x80896DA0]
- npc/tex/bpt_1_eye4_TA_tex_txt:
- addrs: [0x80896DA0, 0x80896EA0]
- npc/tex/bpt_1_eye5_TA_tex_txt:
- addrs: [0x80896EA0, 0x80896FA0]
- npc/tex/bpt_1_eye6_TA_tex_txt:
- addrs: [0x80896FA0, 0x808970A0]
- npc/tex/bpt_1_eye7_TA_tex_txt:
- addrs: [0x808970A0, 0x808971A0]
- npc/tex/bpt_1_eye8_TA_tex_txt:
- addrs: [0x808971A0, 0x808972A0]
- npc/tex/bpt_1_tmem_txt:
- addrs: [0x808972A0, 0x808979A0]
- npc/mdl/pkn_1_v:
- addrs: [0x808979A0, 0x80898BA0]
- type: vtx
- npc/tex/pkn_1_pal:
- addrs: [0x808993E0, 0x80899400]
- type: pal16
- npc/tex/pkn_1_tmem_txt:
- addrs: [0x80899400, 0x80899A80]
- npc/mdl/hem_1_v:
- addrs: [0x8089BA80, 0x8089CF50]
- type: vtx
- npc/tex/hem_1_pal:
- addrs: [0x8089D6E0, 0x8089D700]
- type: pal16
- npc/tex/hem_1_tmem_txt:
- addrs: [0x8089D700, 0x8089DE40]
- npc/mdl/hip_1_v:
- addrs: [0x8089DE40, 0x8089FAA0]
- type: vtx
- npc/tex/hip_1_pal:
- addrs: [0x808A0560, 0x808A0580]
- type: pal16
- npc/tex/hip_1_eye1_TA_tex_txt:
- addrs: [0x808A0580, 0x808A0680]
- npc/tex/hip_1_eye2_TA_tex_txt:
- addrs: [0x808A0680, 0x808A0780]
- npc/tex/hip_1_eye3_TA_tex_txt:
- addrs: [0x808A0780, 0x808A0880]
- npc/tex/hip_1_eye4_TA_tex_txt:
- addrs: [0x808A0880, 0x808A0980]
- npc/tex/hip_1_eye5_TA_tex_txt:
- addrs: [0x808A0980, 0x808A0A80]
- npc/tex/hip_1_eye6_TA_tex_txt:
- addrs: [0x808A0A80, 0x808A0B80]
- npc/tex/hip_1_eye7_TA_tex_txt:
- addrs: [0x808A0B80, 0x808A0C80]
- npc/tex/hip_1_eye8_TA_tex_txt:
- addrs: [0x808A0C80, 0x808A0D80]
- npc/tex/hip_1_tmem_txt:
- addrs: [0x808A0D80, 0x808A1280]
- npc/tex/hip_2_pal:
- addrs: [0x808A1280, 0x808A12A0]
- type: pal16
- npc/tex/hip_2_eye1_TA_tex_txt:
- addrs: [0x808A12A0, 0x808A13A0]
- npc/tex/hip_2_eye2_TA_tex_txt:
- addrs: [0x808A13A0, 0x808A14A0]
- npc/tex/hip_2_eye3_TA_tex_txt:
- addrs: [0x808A14A0, 0x808A15A0]
- npc/tex/hip_2_eye4_TA_tex_txt:
- addrs: [0x808A15A0, 0x808A16A0]
- npc/tex/hip_2_eye5_TA_tex_txt:
- addrs: [0x808A16A0, 0x808A17A0]
- npc/tex/hip_2_eye6_TA_tex_txt:
- addrs: [0x808A17A0, 0x808A18A0]
- npc/tex/hip_2_eye7_TA_tex_txt:
- addrs: [0x808A18A0, 0x808A19A0]
- npc/tex/hip_2_eye8_TA_tex_txt:
- addrs: [0x808A19A0, 0x808A1AA0]
- npc/tex/hip_2_tmem_txt:
- addrs: [0x808A1AA0, 0x808A1FA0]
- npc/tex/hip_3_pal:
- addrs: [0x808A1FA0, 0x808A1FC0]
- type: pal16
- npc/tex/hip_3_eye1_TA_tex_txt:
- addrs: [0x808A1FC0, 0x808A20C0]
- npc/tex/hip_3_eye2_TA_tex_txt:
- addrs: [0x808A20C0, 0x808A21C0]
- npc/tex/hip_3_eye3_TA_tex_txt:
- addrs: [0x808A21C0, 0x808A22C0]
- npc/tex/hip_3_eye4_TA_tex_txt:
- addrs: [0x808A22C0, 0x808A23C0]
- npc/tex/hip_3_eye5_TA_tex_txt:
- addrs: [0x808A23C0, 0x808A24C0]
- npc/tex/hip_3_eye6_TA_tex_txt:
- addrs: [0x808A24C0, 0x808A25C0]
- npc/tex/hip_3_eye7_TA_tex_txt:
- addrs: [0x808A25C0, 0x808A26C0]
- npc/tex/hip_3_eye8_TA_tex_txt:
- addrs: [0x808A26C0, 0x808A27C0]
- npc/tex/hip_3_tmem_txt:
- addrs: [0x808A27C0, 0x808A2CC0]
- npc/tex/hip_4_pal:
- addrs: [0x808A2CC0, 0x808A2CE0]
- type: pal16
- npc/tex/hip_4_eye1_TA_tex_txt:
- addrs: [0x808A2CE0, 0x808A2DE0]
- npc/tex/hip_4_eye2_TA_tex_txt:
- addrs: [0x808A2DE0, 0x808A2EE0]
- npc/tex/hip_4_eye3_TA_tex_txt:
- addrs: [0x808A2EE0, 0x808A2FE0]
- npc/tex/hip_4_eye4_TA_tex_txt:
- addrs: [0x808A2FE0, 0x808A30E0]
- npc/tex/hip_4_eye5_TA_tex_txt:
- addrs: [0x808A30E0, 0x808A31E0]
- npc/tex/hip_4_eye6_TA_tex_txt:
- addrs: [0x808A31E0, 0x808A32E0]
- npc/tex/hip_4_eye7_TA_tex_txt:
- addrs: [0x808A32E0, 0x808A33E0]
- npc/tex/hip_4_eye8_TA_tex_txt:
- addrs: [0x808A33E0, 0x808A34E0]
- npc/tex/hip_4_tmem_txt:
- addrs: [0x808A34E0, 0x808A39E0]
- npc/tex/hip_5_pal:
- addrs: [0x808A39E0, 0x808A3A00]
- type: pal16
- npc/tex/hip_5_eye1_TA_tex_txt:
- addrs: [0x808A3A00, 0x808A3B00]
- npc/tex/hip_5_eye2_TA_tex_txt:
- addrs: [0x808A3B00, 0x808A3C00]
- npc/tex/hip_5_eye3_TA_tex_txt:
- addrs: [0x808A3C00, 0x808A3D00]
- npc/tex/hip_5_eye4_TA_tex_txt:
- addrs: [0x808A3D00, 0x808A3E00]
- npc/tex/hip_5_eye5_TA_tex_txt:
- addrs: [0x808A3E00, 0x808A3F00]
- npc/tex/hip_5_eye6_TA_tex_txt:
- addrs: [0x808A3F00, 0x808A4000]
- npc/tex/hip_5_eye7_TA_tex_txt:
- addrs: [0x808A4000, 0x808A4100]
- npc/tex/hip_5_eye8_TA_tex_txt:
- addrs: [0x808A4100, 0x808A4200]
- npc/tex/hip_5_tmem_txt:
- addrs: [0x808A4200, 0x808A4700]
- npc/tex/hip_6_pal:
- addrs: [0x808A4700, 0x808A4720]
- type: pal16
- npc/tex/hip_6_eye1_TA_tex_txt:
- addrs: [0x808A4720, 0x808A4820]
- npc/tex/hip_6_eye2_TA_tex_txt:
- addrs: [0x808A4820, 0x808A4920]
- npc/tex/hip_6_eye3_TA_tex_txt:
- addrs: [0x808A4920, 0x808A4A20]
- npc/tex/hip_6_eye4_TA_tex_txt:
- addrs: [0x808A4A20, 0x808A4B20]
- npc/tex/hip_6_eye5_TA_tex_txt:
- addrs: [0x808A4B20, 0x808A4C20]
- npc/tex/hip_6_eye6_TA_tex_txt:
- addrs: [0x808A4C20, 0x808A4D20]
- npc/tex/hip_6_eye7_TA_tex_txt:
- addrs: [0x808A4D20, 0x808A4E20]
- npc/tex/hip_6_eye8_TA_tex_txt:
- addrs: [0x808A4E20, 0x808A4F20]
- npc/tex/hip_6_tmem_txt:
- addrs: [0x808A4F20, 0x808A5420]
- npc/tex/hip_7_pal:
- addrs: [0x808A5420, 0x808A5440]
- type: pal16
- npc/tex/hip_7_eye1_TA_tex_txt:
- addrs: [0x808A5440, 0x808A5540]
- npc/tex/hip_7_eye2_TA_tex_txt:
- addrs: [0x808A5540, 0x808A5640]
- npc/tex/hip_7_eye3_TA_tex_txt:
- addrs: [0x808A5640, 0x808A5740]
- npc/tex/hip_7_eye4_TA_tex_txt:
- addrs: [0x808A5740, 0x808A5840]
- npc/tex/hip_7_eye5_TA_tex_txt:
- addrs: [0x808A5840, 0x808A5940]
- npc/tex/hip_7_eye6_TA_tex_txt:
- addrs: [0x808A5940, 0x808A5A40]
- npc/tex/hip_7_eye7_TA_tex_txt:
- addrs: [0x808A5A40, 0x808A5B40]
- npc/tex/hip_7_eye8_TA_tex_txt:
- addrs: [0x808A5B40, 0x808A5C40]
- npc/tex/hip_7_tmem_txt:
- addrs: [0x808A5C40, 0x808A6140]
- npc/mdl/hrs_1_v:
- addrs: [0x808A6140, 0x808A7A70]
- type: vtx
- npc/tex/hrs_1_pal:
- addrs: [0x808A8520, 0x808A8540]
- type: pal16
- npc/tex/hrs_1_eye1_TA_tex_txt:
- addrs: [0x808A8540, 0x808A8640]
- npc/tex/hrs_1_eye2_TA_tex_txt:
- addrs: [0x808A8640, 0x808A8740]
- npc/tex/hrs_1_eye3_TA_tex_txt:
- addrs: [0x808A8740, 0x808A8840]
- npc/tex/hrs_1_eye4_TA_tex_txt:
- addrs: [0x808A8840, 0x808A8940]
- npc/tex/hrs_1_eye5_TA_tex_txt:
- addrs: [0x808A8940, 0x808A8A40]
- npc/tex/hrs_1_eye6_TA_tex_txt:
- addrs: [0x808A8A40, 0x808A8B40]
- npc/tex/hrs_1_eye7_TA_tex_txt:
- addrs: [0x808A8B40, 0x808A8C40]
- npc/tex/hrs_1_eye8_TA_tex_txt:
- addrs: [0x808A8C40, 0x808A8D40]
- npc/tex/hrs_1_tmem_txt:
- addrs: [0x808A8D40, 0x808A92C0]
- npc/tex/hrs_2_pal:
- addrs: [0x808A92C0, 0x808A92E0]
- type: pal16
- npc/tex/hrs_2_eye1_TA_tex_txt:
- addrs: [0x808A92E0, 0x808A93E0]
- npc/tex/hrs_2_eye2_TA_tex_txt:
- addrs: [0x808A93E0, 0x808A94E0]
- npc/tex/hrs_2_eye3_TA_tex_txt:
- addrs: [0x808A94E0, 0x808A95E0]
- npc/tex/hrs_2_eye4_TA_tex_txt:
- addrs: [0x808A95E0, 0x808A96E0]
- npc/tex/hrs_2_eye5_TA_tex_txt:
- addrs: [0x808A96E0, 0x808A97E0]
- npc/tex/hrs_2_eye6_TA_tex_txt:
- addrs: [0x808A97E0, 0x808A98E0]
- npc/tex/hrs_2_eye7_TA_tex_txt:
- addrs: [0x808A98E0, 0x808A99E0]
- npc/tex/hrs_2_eye8_TA_tex_txt:
- addrs: [0x808A99E0, 0x808A9AE0]
- npc/tex/hrs_2_tmem_txt:
- addrs: [0x808A9AE0, 0x808AA060]
- npc/tex/hrs_3_pal:
- addrs: [0x808AA060, 0x808AA080]
- type: pal16
- npc/tex/hrs_3_eye1_TA_tex_txt:
- addrs: [0x808AA080, 0x808AA180]
- npc/tex/hrs_3_eye2_TA_tex_txt:
- addrs: [0x808AA180, 0x808AA280]
- npc/tex/hrs_3_eye3_TA_tex_txt:
- addrs: [0x808AA280, 0x808AA380]
- npc/tex/hrs_3_eye4_TA_tex_txt:
- addrs: [0x808AA380, 0x808AA480]
- npc/tex/hrs_3_eye5_TA_tex_txt:
- addrs: [0x808AA480, 0x808AA580]
- npc/tex/hrs_3_eye6_TA_tex_txt:
- addrs: [0x808AA580, 0x808AA680]
- npc/tex/hrs_3_eye7_TA_tex_txt:
- addrs: [0x808AA680, 0x808AA780]
- npc/tex/hrs_3_eye8_TA_tex_txt:
- addrs: [0x808AA780, 0x808AA880]
- npc/tex/hrs_3_tmem_txt:
- addrs: [0x808AA880, 0x808AAE00]
- npc/tex/hrs_4_pal:
- addrs: [0x808AAE00, 0x808AAE20]
- type: pal16
- npc/tex/hrs_4_eye1_TA_tex_txt:
- addrs: [0x808AAE20, 0x808AAF20]
- npc/tex/hrs_4_eye2_TA_tex_txt:
- addrs: [0x808AAF20, 0x808AB020]
- npc/tex/hrs_4_eye3_TA_tex_txt:
- addrs: [0x808AB020, 0x808AB120]
- npc/tex/hrs_4_eye4_TA_tex_txt:
- addrs: [0x808AB120, 0x808AB220]
- npc/tex/hrs_4_eye5_TA_tex_txt:
- addrs: [0x808AB220, 0x808AB320]
- npc/tex/hrs_4_eye6_TA_tex_txt:
- addrs: [0x808AB320, 0x808AB420]
- npc/tex/hrs_4_eye7_TA_tex_txt:
- addrs: [0x808AB420, 0x808AB520]
- npc/tex/hrs_4_eye8_TA_tex_txt:
- addrs: [0x808AB520, 0x808AB620]
- npc/tex/hrs_4_tmem_txt:
- addrs: [0x808AB620, 0x808ABBA0]
- npc/tex/hrs_5_pal:
- addrs: [0x808ABBA0, 0x808ABBC0]
- type: pal16
- npc/tex/hrs_5_eye1_TA_tex_txt:
- addrs: [0x808ABBC0, 0x808ABCC0]
- npc/tex/hrs_5_eye2_TA_tex_txt:
- addrs: [0x808ABCC0, 0x808ABDC0]
- npc/tex/hrs_5_eye3_TA_tex_txt:
- addrs: [0x808ABDC0, 0x808ABEC0]
- npc/tex/hrs_5_eye4_TA_tex_txt:
- addrs: [0x808ABEC0, 0x808ABFC0]
- npc/tex/hrs_5_eye5_TA_tex_txt:
- addrs: [0x808ABFC0, 0x808AC0C0]
- npc/tex/hrs_5_eye6_TA_tex_txt:
- addrs: [0x808AC0C0, 0x808AC1C0]
- npc/tex/hrs_5_eye7_TA_tex_txt:
- addrs: [0x808AC1C0, 0x808AC2C0]
- npc/tex/hrs_5_eye8_TA_tex_txt:
- addrs: [0x808AC2C0, 0x808AC3C0]
- npc/tex/hrs_5_tmem_txt:
- addrs: [0x808AC3C0, 0x808AC940]
- npc/tex/hrs_6_pal:
- addrs: [0x808AC940, 0x808AC960]
- type: pal16
- npc/tex/hrs_6_eye1_TA_tex_txt:
- addrs: [0x808AC960, 0x808ACA60]
- npc/tex/hrs_6_eye2_TA_tex_txt:
- addrs: [0x808ACA60, 0x808ACB60]
- npc/tex/hrs_6_eye3_TA_tex_txt:
- addrs: [0x808ACB60, 0x808ACC60]
- npc/tex/hrs_6_eye4_TA_tex_txt:
- addrs: [0x808ACC60, 0x808ACD60]
- npc/tex/hrs_6_eye5_TA_tex_txt:
- addrs: [0x808ACD60, 0x808ACE60]
- npc/tex/hrs_6_eye6_TA_tex_txt:
- addrs: [0x808ACE60, 0x808ACF60]
- npc/tex/hrs_6_eye7_TA_tex_txt:
- addrs: [0x808ACF60, 0x808AD060]
- npc/tex/hrs_6_eye8_TA_tex_txt:
- addrs: [0x808AD060, 0x808AD160]
- npc/tex/hrs_6_tmem_txt:
- addrs: [0x808AD160, 0x808AD6E0]
- npc/tex/hrs_7_pal:
- addrs: [0x808AD6E0, 0x808AD700]
- type: pal16
- npc/tex/hrs_7_eye1_TA_tex_txt:
- addrs: [0x808AD700, 0x808AD800]
- npc/tex/hrs_7_eye2_TA_tex_txt:
- addrs: [0x808AD800, 0x808AD900]
- npc/tex/hrs_7_eye3_TA_tex_txt:
- addrs: [0x808AD900, 0x808ADA00]
- npc/tex/hrs_7_eye4_TA_tex_txt:
- addrs: [0x808ADA00, 0x808ADB00]
- npc/tex/hrs_7_eye5_TA_tex_txt:
- addrs: [0x808ADB00, 0x808ADC00]
- npc/tex/hrs_7_eye6_TA_tex_txt:
- addrs: [0x808ADC00, 0x808ADD00]
- npc/tex/hrs_7_eye7_TA_tex_txt:
- addrs: [0x808ADD00, 0x808ADE00]
- npc/tex/hrs_7_eye8_TA_tex_txt:
- addrs: [0x808ADE00, 0x808ADF00]
- npc/tex/hrs_7_tmem_txt:
- addrs: [0x808ADF00, 0x808AE480]
- npc/tex/hrs_8_pal:
- addrs: [0x808AE480, 0x808AE4A0]
- type: pal16
- npc/tex/hrs_8_eye1_TA_tex_txt:
- addrs: [0x808AE4A0, 0x808AE5A0]
- npc/tex/hrs_8_eye2_TA_tex_txt:
- addrs: [0x808AE5A0, 0x808AE6A0]
- npc/tex/hrs_8_eye3_TA_tex_txt:
- addrs: [0x808AE6A0, 0x808AE7A0]
- npc/tex/hrs_8_eye4_TA_tex_txt:
- addrs: [0x808AE7A0, 0x808AE8A0]
- npc/tex/hrs_8_eye5_TA_tex_txt:
- addrs: [0x808AE8A0, 0x808AE9A0]
- npc/tex/hrs_8_eye6_TA_tex_txt:
- addrs: [0x808AE9A0, 0x808AEAA0]
- npc/tex/hrs_8_eye7_TA_tex_txt:
- addrs: [0x808AEAA0, 0x808AEBA0]
- npc/tex/hrs_8_eye8_TA_tex_txt:
- addrs: [0x808AEBA0, 0x808AECA0]
- npc/tex/hrs_8_tmem_txt:
- addrs: [0x808AECA0, 0x808AF220]
- npc/mdl/plj_1_v:
- addrs: [0x808B8D00, 0x808BA3A0]
- type: vtx
- npc/tex/plj_1_pal:
- addrs: [0x808BAD00, 0x808BAD20]
- type: pal16
- npc/tex/plj_1_eye1_TA_tex_txt:
- addrs: [0x808BAD20, 0x808BAE20]
- npc/tex/plj_1_eye2_TA_tex_txt:
- addrs: [0x808BAE20, 0x808BAF20]
- npc/tex/plj_1_eye3_TA_tex_txt:
- addrs: [0x808BAF20, 0x808BB020]
- npc/tex/plj_1_eye4_TA_tex_txt:
- addrs: [0x808BB020, 0x808BB120]
- npc/tex/plj_1_eye5_TA_tex_txt:
- addrs: [0x808BB120, 0x808BB220]
- npc/tex/plj_1_eye6_TA_tex_txt:
- addrs: [0x808BB220, 0x808BB320]
- npc/tex/plj_1_eye7_TA_tex_txt:
- addrs: [0x808BB320, 0x808BB420]
- npc/tex/plj_1_eye8_TA_tex_txt:
- addrs: [0x808BB420, 0x808BB520]
- npc/tex/plj_1_mouth1_TA_tex_txt:
- addrs: [0x808BB520, 0x808BB620]
- npc/tex/plj_1_mouth2_TA_tex_txt:
- addrs: [0x808BB620, 0x808BB720]
- npc/tex/plj_1_mouth3_TA_tex_txt:
- addrs: [0x808BB720, 0x808BB820]
- npc/tex/plj_1_mouth4_TA_tex_txt:
- addrs: [0x808BB820, 0x808BB920]
- npc/tex/plj_1_mouth5_TA_tex_txt:
- addrs: [0x808BB920, 0x808BBA20]
- npc/tex/plj_1_mouth6_TA_tex_txt:
- addrs: [0x808BBA20, 0x808BBB20]
- npc/tex/plj_1_tmem_txt:
- addrs: [0x808BBB20, 0x808BC1A0]
- npc/mdl/xsq_1_v:
- addrs: [0x808BC1A0, 0x808BD890]
- type: vtx
- npc/tex/xsq_1_pal:
- addrs: [0x808BE240, 0x808BE260]
- type: pal16
- npc/tex/xsq_1_eye1_TA_tex_txt:
- addrs: [0x808BE260, 0x808BE360]
- npc/tex/xsq_1_eye2_TA_tex_txt:
- addrs: [0x808BE360, 0x808BE460]
- npc/tex/xsq_1_eye3_TA_tex_txt:
- addrs: [0x808BE460, 0x808BE560]
- npc/tex/xsq_1_eye4_TA_tex_txt:
- addrs: [0x808BE560, 0x808BE660]
- npc/tex/xsq_1_eye5_TA_tex_txt:
- addrs: [0x808BE660, 0x808BE760]
- npc/tex/xsq_1_eye6_TA_tex_txt:
- addrs: [0x808BE760, 0x808BE860]
- npc/tex/xsq_1_eye7_TA_tex_txt:
- addrs: [0x808BE860, 0x808BE960]
- npc/tex/xsq_1_eye8_TA_tex_txt:
- addrs: [0x808BE960, 0x808BEA60]
- npc/tex/xsq_1_mouth1_TA_tex_txt:
- addrs: [0x808BEA60, 0x808BEB60]
- npc/tex/xsq_1_mouth2_TA_tex_txt:
- addrs: [0x808BEB60, 0x808BEC60]
- npc/tex/xsq_1_mouth3_TA_tex_txt:
- addrs: [0x808BEC60, 0x808BED60]
- npc/tex/xsq_1_mouth4_TA_tex_txt:
- addrs: [0x808BED60, 0x808BEE60]
- npc/tex/xsq_1_mouth5_TA_tex_txt:
- addrs: [0x808BEE60, 0x808BEF60]
- npc/tex/xsq_1_mouth6_TA_tex_txt:
- addrs: [0x808BEF60, 0x808BF060]
- npc/tex/xsq_1_tmem_txt:
- addrs: [0x808BF060, 0x808BF660]
- itemName_paper:
- addrs: [0x808BF660, 0x808C0660]
- itemName_money:
- addrs: [0x808C0660, 0x808C06A0]
- itemName_tool:
- addrs: [0x808C06A0, 0x808C0C60]
- itemName_fish:
- addrs: [0x808C0C60, 0x808C0EE0]
- itemName_cloth:
- addrs: [0x808C0EE0, 0x808C1ED0]
- itemName_etc:
- addrs: [0x808C1ED0, 0x808C21E0]
- itemName_carpet:
- addrs: [0x808C21E0, 0x808C2610]
- itemName_wall:
- addrs: [0x808C2610, 0x808C2A40]
- itemName_fruit:
- addrs: [0x808C2A40, 0x808C2AC0]
- itemName_plant:
- addrs: [0x808C2AC0, 0x808C2B70]
- itemName_minidisk:
- addrs: [0x808C2B70, 0x808C2EE0]
- itemName_dummy:
- addrs: [0x808C2EE0, 0x808C2FE0]
- itemName_ticket:
- addrs: [0x808C2FE0, 0x808C35E0]
- itemName_insect:
- addrs: [0x808C35E0, 0x808C38B0]
- itemName_hukubukuro:
- addrs: [0x808C38B0, 0x808C38D0]
- itemName_kabu:
- addrs: [0x808C38D0, 0x808C3910]
- ftrName_table:
- addrs: [0x808C3910, 0x808C7910]
- ftrName2_table:
- addrs: [0x808C7910, 0x808C8830]
- npc/mdl/boa_1_v:
- addrs: [0x808C88A8, 0x808CA4F8]
- type: vtx
- npc/tex/boa_1_pal:
- addrs: [0x808CAF60, 0x808CAF80]
- type: pal16
- npc/tex/boa_1_eye1_TA_tex_txt:
- addrs: [0x808CAF80, 0x808CB080]
- npc/tex/boa_1_eye2_TA_tex_txt:
- addrs: [0x808CB080, 0x808CB180]
- npc/tex/boa_1_eye3_TA_tex_txt:
- addrs: [0x808CB180, 0x808CB280]
- npc/tex/boa_1_eye4_TA_tex_txt:
- addrs: [0x808CB280, 0x808CB380]
- npc/tex/boa_1_eye5_TA_tex_txt:
- addrs: [0x808CB380, 0x808CB480]
- npc/tex/boa_1_eye6_TA_tex_txt:
- addrs: [0x808CB480, 0x808CB580]
- npc/tex/boa_1_eye7_TA_tex_txt:
- addrs: [0x808CB580, 0x808CB680]
- npc/tex/boa_1_eye8_TA_tex_txt:
- addrs: [0x808CB680, 0x808CB780]
- npc/tex/boa_1_tmem_txt:
- addrs: [0x808CB780, 0x808CBD40]
- npc/mdl/kgr_1_v:
- addrs: [0x808CBD40, 0x808CD830]
- type: vtx
- npc/tex/kgr_1_pal:
- addrs: [0x808CE3E0, 0x808CE400]
- type: pal16
- npc/tex/kgr_1_eye1_TA_tex_txt:
- addrs: [0x808CE400, 0x808CE500]
- npc/tex/kgr_1_eye2_TA_tex_txt:
- addrs: [0x808CE500, 0x808CE600]
- npc/tex/kgr_1_eye3_TA_tex_txt:
- addrs: [0x808CE600, 0x808CE700]
- npc/tex/kgr_1_eye4_TA_tex_txt:
- addrs: [0x808CE700, 0x808CE800]
- npc/tex/kgr_1_eye5_TA_tex_txt:
- addrs: [0x808CE800, 0x808CE900]
- npc/tex/kgr_1_eye6_TA_tex_txt:
- addrs: [0x808CE900, 0x808CEA00]
- npc/tex/kgr_1_eye7_TA_tex_txt:
- addrs: [0x808CEA00, 0x808CEB00]
- npc/tex/kgr_1_eye8_TA_tex_txt:
- addrs: [0x808CEB00, 0x808CEC00]
- npc/tex/kgr_1_tmem_txt:
- addrs: [0x808CEC00, 0x808CF040]
- npc/tex/kgr_2_pal:
- addrs: [0x808CF040, 0x808CF060]
- type: pal16
- npc/tex/kgr_2_eye1_TA_tex_txt:
- addrs: [0x808CF060, 0x808CF160]
- npc/tex/kgr_2_eye2_TA_tex_txt:
- addrs: [0x808CF160, 0x808CF260]
- npc/tex/kgr_2_eye3_TA_tex_txt:
- addrs: [0x808CF260, 0x808CF360]
- npc/tex/kgr_2_eye4_TA_tex_txt:
- addrs: [0x808CF360, 0x808CF460]
- npc/tex/kgr_2_eye5_TA_tex_txt:
- addrs: [0x808CF460, 0x808CF560]
- npc/tex/kgr_2_eye6_TA_tex_txt:
- addrs: [0x808CF560, 0x808CF660]
- npc/tex/kgr_2_eye7_TA_tex_txt:
- addrs: [0x808CF660, 0x808CF760]
- npc/tex/kgr_2_eye8_TA_tex_txt:
- addrs: [0x808CF760, 0x808CF860]
- npc/tex/kgr_2_tmem_txt:
- addrs: [0x808CF860, 0x808CFCA0]
- npc/tex/kgr_3_pal:
- addrs: [0x808CFCA0, 0x808CFCC0]
- type: pal16
- npc/tex/kgr_3_eye1_TA_tex_txt:
- addrs: [0x808CFCC0, 0x808CFDC0]
- npc/tex/kgr_3_eye2_TA_tex_txt:
- addrs: [0x808CFDC0, 0x808CFEC0]
- npc/tex/kgr_3_eye3_TA_tex_txt:
- addrs: [0x808CFEC0, 0x808CFFC0]
- npc/tex/kgr_3_eye4_TA_tex_txt:
- addrs: [0x808CFFC0, 0x808D00C0]
- npc/tex/kgr_3_eye5_TA_tex_txt:
- addrs: [0x808D00C0, 0x808D01C0]
- npc/tex/kgr_3_eye6_TA_tex_txt:
- addrs: [0x808D01C0, 0x808D02C0]
- npc/tex/kgr_3_eye7_TA_tex_txt:
- addrs: [0x808D02C0, 0x808D03C0]
- npc/tex/kgr_3_eye8_TA_tex_txt:
- addrs: [0x808D03C0, 0x808D04C0]
- npc/tex/kgr_3_tmem_txt:
- addrs: [0x808D04C0, 0x808D0900]
- npc/tex/kgr_4_pal:
- addrs: [0x808D0900, 0x808D0920]
- type: pal16
- npc/tex/kgr_4_eye1_TA_tex_txt:
- addrs: [0x808D0920, 0x808D0A20]
- npc/tex/kgr_4_eye2_TA_tex_txt:
- addrs: [0x808D0A20, 0x808D0B20]
- npc/tex/kgr_4_eye3_TA_tex_txt:
- addrs: [0x808D0B20, 0x808D0C20]
- npc/tex/kgr_4_eye4_TA_tex_txt:
- addrs: [0x808D0C20, 0x808D0D20]
- npc/tex/kgr_4_eye5_TA_tex_txt:
- addrs: [0x808D0D20, 0x808D0E20]
- npc/tex/kgr_4_eye6_TA_tex_txt:
- addrs: [0x808D0E20, 0x808D0F20]
- npc/tex/kgr_4_eye7_TA_tex_txt:
- addrs: [0x808D0F20, 0x808D1020]
- npc/tex/kgr_4_eye8_TA_tex_txt:
- addrs: [0x808D1020, 0x808D1120]
- npc/tex/kgr_4_tmem_txt:
- addrs: [0x808D1120, 0x808D1560]
- npc/tex/kgr_5_pal:
- addrs: [0x808D1560, 0x808D1580]
- type: pal16
- npc/tex/kgr_5_eye1_TA_tex_txt:
- addrs: [0x808D1580, 0x808D1680]
- npc/tex/kgr_5_eye2_TA_tex_txt:
- addrs: [0x808D1680, 0x808D1780]
- npc/tex/kgr_5_eye3_TA_tex_txt:
- addrs: [0x808D1780, 0x808D1880]
- npc/tex/kgr_5_eye4_TA_tex_txt:
- addrs: [0x808D1880, 0x808D1980]
- npc/tex/kgr_5_eye5_TA_tex_txt:
- addrs: [0x808D1980, 0x808D1A80]
- npc/tex/kgr_5_eye6_TA_tex_txt:
- addrs: [0x808D1A80, 0x808D1B80]
- npc/tex/kgr_5_eye7_TA_tex_txt:
- addrs: [0x808D1B80, 0x808D1C80]
- npc/tex/kgr_5_eye8_TA_tex_txt:
- addrs: [0x808D1C80, 0x808D1D80]
- npc/tex/kgr_5_tmem_txt:
- addrs: [0x808D1D80, 0x808D21C0]
- npc/tex/kgr_6_pal:
- addrs: [0x808D21C0, 0x808D21E0]
- type: pal16
- npc/tex/kgr_6_eye1_TA_tex_txt:
- addrs: [0x808D21E0, 0x808D22E0]
- npc/tex/kgr_6_eye2_TA_tex_txt:
- addrs: [0x808D22E0, 0x808D23E0]
- npc/tex/kgr_6_eye3_TA_tex_txt:
- addrs: [0x808D23E0, 0x808D24E0]
- npc/tex/kgr_6_eye4_TA_tex_txt:
- addrs: [0x808D24E0, 0x808D25E0]
- npc/tex/kgr_6_eye5_TA_tex_txt:
- addrs: [0x808D25E0, 0x808D26E0]
- npc/tex/kgr_6_eye6_TA_tex_txt:
- addrs: [0x808D26E0, 0x808D27E0]
- npc/tex/kgr_6_eye7_TA_tex_txt:
- addrs: [0x808D27E0, 0x808D28E0]
- npc/tex/kgr_6_eye8_TA_tex_txt:
- addrs: [0x808D28E0, 0x808D29E0]
- npc/tex/kgr_6_tmem_txt:
- addrs: [0x808D29E0, 0x808D2E20]
- npc/mdl/fob_1_v:
- addrs: [0x808D2E20, 0x808D4850]
- type: vtx
- npc/tex/fob_1_pal:
- addrs: [0x808D5360, 0x808D5380]
- type: pal16
- npc/tex/fob_1_eye1_TA_tex_txt:
- addrs: [0x808D5380, 0x808D5480]
- npc/tex/fob_1_eye2_TA_tex_txt:
- addrs: [0x808D5480, 0x808D5580]
- npc/tex/fob_1_eye3_TA_tex_txt:
- addrs: [0x808D5580, 0x808D5680]
- npc/tex/fob_1_eye4_TA_tex_txt:
- addrs: [0x808D5680, 0x808D5780]
- npc/tex/fob_1_eye5_TA_tex_txt:
- addrs: [0x808D5780, 0x808D5880]
- npc/tex/fob_1_eye6_TA_tex_txt:
- addrs: [0x808D5880, 0x808D5980]
- npc/tex/fob_1_eye7_TA_tex_txt:
- addrs: [0x808D5980, 0x808D5A80]
- npc/tex/fob_1_eye8_TA_tex_txt:
- addrs: [0x808D5A80, 0x808D5B80]
- npc/tex/fob_1_tmem_txt:
- addrs: [0x808D5B80, 0x808D62C0]
- npc/mdl/kal_1_v:
- addrs: [0x808D62C0, 0x808D7950]
- type: vtx
- npc/tex/kal_1_pal:
- addrs: [0x808D81E0, 0x808D8200]
- type: pal16
- npc/tex/kal_1_eye1_TA_tex_txt:
- addrs: [0x808D8200, 0x808D8300]
- npc/tex/kal_1_eye2_TA_tex_txt:
- addrs: [0x808D8300, 0x808D8400]
- npc/tex/kal_1_eye3_TA_tex_txt:
- addrs: [0x808D8400, 0x808D8500]
- npc/tex/kal_1_eye4_TA_tex_txt:
- addrs: [0x808D8500, 0x808D8600]
- npc/tex/kal_1_eye5_TA_tex_txt:
- addrs: [0x808D8600, 0x808D8700]
- npc/tex/kal_1_eye6_TA_tex_txt:
- addrs: [0x808D8700, 0x808D8800]
- npc/tex/kal_1_eye7_TA_tex_txt:
- addrs: [0x808D8800, 0x808D8900]
- npc/tex/kal_1_eye8_TA_tex_txt:
- addrs: [0x808D8900, 0x808D8A00]
- npc/tex/kal_1_mouth1_TA_tex_txt:
- addrs: [0x808D8A00, 0x808D8B00]
- npc/tex/kal_1_mouth2_TA_tex_txt:
- addrs: [0x808D8B00, 0x808D8C00]
- npc/tex/kal_1_mouth3_TA_tex_txt:
- addrs: [0x808D8C00, 0x808D8D00]
- npc/tex/kal_1_mouth4_TA_tex_txt:
- addrs: [0x808D8D00, 0x808D8E00]
- npc/tex/kal_1_mouth5_TA_tex_txt:
- addrs: [0x808D8E00, 0x808D8F00]
- npc/tex/kal_1_mouth6_TA_tex_txt:
- addrs: [0x808D8F00, 0x808D9000]
- npc/tex/kal_1_tmem_txt:
- addrs: [0x808D9000, 0x808D9480]
- npc/tex/kal_2_pal:
- addrs: [0x808D9480, 0x808D94A0]
- type: pal16
- npc/tex/kal_2_eye1_TA_tex_txt:
- addrs: [0x808D94A0, 0x808D95A0]
- npc/tex/kal_2_eye2_TA_tex_txt:
- addrs: [0x808D95A0, 0x808D96A0]
- npc/tex/kal_2_eye3_TA_tex_txt:
- addrs: [0x808D96A0, 0x808D97A0]
- npc/tex/kal_2_eye4_TA_tex_txt:
- addrs: [0x808D97A0, 0x808D98A0]
- npc/tex/kal_2_eye5_TA_tex_txt:
- addrs: [0x808D98A0, 0x808D99A0]
- npc/tex/kal_2_eye6_TA_tex_txt:
- addrs: [0x808D99A0, 0x808D9AA0]
- npc/tex/kal_2_eye7_TA_tex_txt:
- addrs: [0x808D9AA0, 0x808D9BA0]
- npc/tex/kal_2_eye8_TA_tex_txt:
- addrs: [0x808D9BA0, 0x808D9CA0]
- npc/tex/kal_2_mouth1_TA_tex_txt:
- addrs: [0x808D9CA0, 0x808D9DA0]
- npc/tex/kal_2_mouth2_TA_tex_txt:
- addrs: [0x808D9DA0, 0x808D9EA0]
- npc/tex/kal_2_mouth3_TA_tex_txt:
- addrs: [0x808D9EA0, 0x808D9FA0]
- npc/tex/kal_2_mouth4_TA_tex_txt:
- addrs: [0x808D9FA0, 0x808DA0A0]
- npc/tex/kal_2_mouth5_TA_tex_txt:
- addrs: [0x808DA0A0, 0x808DA1A0]
- npc/tex/kal_2_mouth6_TA_tex_txt:
- addrs: [0x808DA1A0, 0x808DA2A0]
- npc/tex/kal_2_tmem_txt:
- addrs: [0x808DA2A0, 0x808DA720]
- npc/tex/kal_3_pal:
- addrs: [0x808DA720, 0x808DA740]
- type: pal16
- npc/tex/kal_3_eye1_TA_tex_txt:
- addrs: [0x808DA740, 0x808DA840]
- npc/tex/kal_3_eye2_TA_tex_txt:
- addrs: [0x808DA840, 0x808DA940]
- npc/tex/kal_3_eye3_TA_tex_txt:
- addrs: [0x808DA940, 0x808DAA40]
- npc/tex/kal_3_eye4_TA_tex_txt:
- addrs: [0x808DAA40, 0x808DAB40]
- npc/tex/kal_3_eye5_TA_tex_txt:
- addrs: [0x808DAB40, 0x808DAC40]
- npc/tex/kal_3_eye6_TA_tex_txt:
- addrs: [0x808DAC40, 0x808DAD40]
- npc/tex/kal_3_eye7_TA_tex_txt:
- addrs: [0x808DAD40, 0x808DAE40]
- npc/tex/kal_3_eye8_TA_tex_txt:
- addrs: [0x808DAE40, 0x808DAF40]
- npc/tex/kal_3_mouth1_TA_tex_txt:
- addrs: [0x808DAF40, 0x808DB040]
- npc/tex/kal_3_mouth2_TA_tex_txt:
- addrs: [0x808DB040, 0x808DB140]
- npc/tex/kal_3_mouth3_TA_tex_txt:
- addrs: [0x808DB140, 0x808DB240]
- npc/tex/kal_3_mouth4_TA_tex_txt:
- addrs: [0x808DB240, 0x808DB340]
- npc/tex/kal_3_mouth5_TA_tex_txt:
- addrs: [0x808DB340, 0x808DB440]
- npc/tex/kal_3_mouth6_TA_tex_txt:
- addrs: [0x808DB440, 0x808DB540]
- npc/tex/kal_3_tmem_txt:
- addrs: [0x808DB540, 0x808DB9C0]
- npc/tex/kal_4_pal:
- addrs: [0x808DB9C0, 0x808DB9E0]
- type: pal16
- npc/tex/kal_4_eye1_TA_tex_txt:
- addrs: [0x808DB9E0, 0x808DBAE0]
- npc/tex/kal_4_eye2_TA_tex_txt:
- addrs: [0x808DBAE0, 0x808DBBE0]
- npc/tex/kal_4_eye3_TA_tex_txt:
- addrs: [0x808DBBE0, 0x808DBCE0]
- npc/tex/kal_4_eye4_TA_tex_txt:
- addrs: [0x808DBCE0, 0x808DBDE0]
- npc/tex/kal_4_eye5_TA_tex_txt:
- addrs: [0x808DBDE0, 0x808DBEE0]
- npc/tex/kal_4_eye6_TA_tex_txt:
- addrs: [0x808DBEE0, 0x808DBFE0]
- npc/tex/kal_4_eye7_TA_tex_txt:
- addrs: [0x808DBFE0, 0x808DC0E0]
- npc/tex/kal_4_eye8_TA_tex_txt:
- addrs: [0x808DC0E0, 0x808DC1E0]
- npc/tex/kal_4_mouth1_TA_tex_txt:
- addrs: [0x808DC1E0, 0x808DC2E0]
- npc/tex/kal_4_mouth2_TA_tex_txt:
- addrs: [0x808DC2E0, 0x808DC3E0]
- npc/tex/kal_4_mouth3_TA_tex_txt:
- addrs: [0x808DC3E0, 0x808DC4E0]
- npc/tex/kal_4_mouth4_TA_tex_txt:
- addrs: [0x808DC4E0, 0x808DC5E0]
- npc/tex/kal_4_mouth5_TA_tex_txt:
- addrs: [0x808DC5E0, 0x808DC6E0]
- npc/tex/kal_4_mouth6_TA_tex_txt:
- addrs: [0x808DC6E0, 0x808DC7E0]
- npc/tex/kal_4_tmem_txt:
- addrs: [0x808DC7E0, 0x808DCC60]
- npc/tex/kal_5_pal:
- addrs: [0x808DCC60, 0x808DCC80]
- type: pal16
- npc/tex/kal_5_eye1_TA_tex_txt:
- addrs: [0x808DCC80, 0x808DCD80]
- npc/tex/kal_5_eye2_TA_tex_txt:
- addrs: [0x808DCD80, 0x808DCE80]
- npc/tex/kal_5_eye3_TA_tex_txt:
- addrs: [0x808DCE80, 0x808DCF80]
- npc/tex/kal_5_eye4_TA_tex_txt:
- addrs: [0x808DCF80, 0x808DD080]
- npc/tex/kal_5_eye5_TA_tex_txt:
- addrs: [0x808DD080, 0x808DD180]
- npc/tex/kal_5_eye6_TA_tex_txt:
- addrs: [0x808DD180, 0x808DD280]
- npc/tex/kal_5_eye7_TA_tex_txt:
- addrs: [0x808DD280, 0x808DD380]
- npc/tex/kal_5_eye8_TA_tex_txt:
- addrs: [0x808DD380, 0x808DD480]
- npc/tex/kal_5_mouth1_TA_tex_txt:
- addrs: [0x808DD480, 0x808DD580]
- npc/tex/kal_5_mouth2_TA_tex_txt:
- addrs: [0x808DD580, 0x808DD680]
- npc/tex/kal_5_mouth3_TA_tex_txt:
- addrs: [0x808DD680, 0x808DD780]
- npc/tex/kal_5_mouth4_TA_tex_txt:
- addrs: [0x808DD780, 0x808DD880]
- npc/tex/kal_5_mouth5_TA_tex_txt:
- addrs: [0x808DD880, 0x808DD980]
- npc/tex/kal_5_mouth6_TA_tex_txt:
- addrs: [0x808DD980, 0x808DDA80]
- npc/tex/kal_5_tmem_txt:
- addrs: [0x808DDA80, 0x808DDF00]
- npc/tex/kal_6_pal:
- addrs: [0x808DDF00, 0x808DDF20]
- type: pal16
- npc/tex/kal_6_eye1_TA_tex_txt:
- addrs: [0x808DDF20, 0x808DE020]
- npc/tex/kal_6_eye2_TA_tex_txt:
- addrs: [0x808DE020, 0x808DE120]
- npc/tex/kal_6_eye3_TA_tex_txt:
- addrs: [0x808DE120, 0x808DE220]
- npc/tex/kal_6_eye4_TA_tex_txt:
- addrs: [0x808DE220, 0x808DE320]
- npc/tex/kal_6_eye5_TA_tex_txt:
- addrs: [0x808DE320, 0x808DE420]
- npc/tex/kal_6_eye6_TA_tex_txt:
- addrs: [0x808DE420, 0x808DE520]
- npc/tex/kal_6_eye7_TA_tex_txt:
- addrs: [0x808DE520, 0x808DE620]
- npc/tex/kal_6_eye8_TA_tex_txt:
- addrs: [0x808DE620, 0x808DE720]
- npc/tex/kal_6_mouth1_TA_tex_txt:
- addrs: [0x808DE720, 0x808DE820]
- npc/tex/kal_6_mouth2_TA_tex_txt:
- addrs: [0x808DE820, 0x808DE920]
- npc/tex/kal_6_mouth3_TA_tex_txt:
- addrs: [0x808DE920, 0x808DEA20]
- npc/tex/kal_6_mouth4_TA_tex_txt:
- addrs: [0x808DEA20, 0x808DEB20]
- npc/tex/kal_6_mouth5_TA_tex_txt:
- addrs: [0x808DEB20, 0x808DEC20]
- npc/tex/kal_6_mouth6_TA_tex_txt:
- addrs: [0x808DEC20, 0x808DED20]
- npc/tex/kal_6_tmem_txt:
- addrs: [0x808DED20, 0x808DF1A0]
- npc/mdl/lon_1_v:
- addrs: [0x808E1A10, 0x808E3530]
- type: vtx
- npc/tex/lon_1_pal:
- addrs: [0x808E3F80, 0x808E3FA0]
- type: pal16
- npc/tex/lon_1_eye1_TA_tex_txt:
- addrs: [0x808E3FA0, 0x808E40A0]
- npc/tex/lon_1_eye2_TA_tex_txt:
- addrs: [0x808E40A0, 0x808E41A0]
- npc/tex/lon_1_eye3_TA_tex_txt:
- addrs: [0x808E41A0, 0x808E42A0]
- npc/tex/lon_1_eye4_TA_tex_txt:
- addrs: [0x808E42A0, 0x808E43A0]
- npc/tex/lon_1_eye5_TA_tex_txt:
- addrs: [0x808E43A0, 0x808E44A0]
- npc/tex/lon_1_eye6_TA_tex_txt:
- addrs: [0x808E44A0, 0x808E45A0]
- npc/tex/lon_1_eye7_TA_tex_txt:
- addrs: [0x808E45A0, 0x808E46A0]
- npc/tex/lon_1_eye8_TA_tex_txt:
- addrs: [0x808E46A0, 0x808E47A0]
- npc/tex/lon_1_mouth1_TA_tex_txt:
- addrs: [0x808E47A0, 0x808E48A0]
- npc/tex/lon_1_mouth2_TA_tex_txt:
- addrs: [0x808E48A0, 0x808E49A0]
- npc/tex/lon_1_mouth3_TA_tex_txt:
- addrs: [0x808E49A0, 0x808E4AA0]
- npc/tex/lon_1_mouth4_TA_tex_txt:
- addrs: [0x808E4AA0, 0x808E4BA0]
- npc/tex/lon_1_mouth5_TA_tex_txt:
- addrs: [0x808E4BA0, 0x808E4CA0]
- npc/tex/lon_1_mouth6_TA_tex_txt:
- addrs: [0x808E4CA0, 0x808E4DA0]
- npc/tex/lon_1_tmem_txt:
- addrs: [0x808E4DA0, 0x808E5260]
- npc/tex/lon_2_pal:
- addrs: [0x808E5260, 0x808E5280]
- type: pal16
- npc/tex/lon_2_eye1_TA_tex_txt:
- addrs: [0x808E5280, 0x808E5380]
- npc/tex/lon_2_eye2_TA_tex_txt:
- addrs: [0x808E5380, 0x808E5480]
- npc/tex/lon_2_eye3_TA_tex_txt:
- addrs: [0x808E5480, 0x808E5580]
- npc/tex/lon_2_eye4_TA_tex_txt:
- addrs: [0x808E5580, 0x808E5680]
- npc/tex/lon_2_eye5_TA_tex_txt:
- addrs: [0x808E5680, 0x808E5780]
- npc/tex/lon_2_eye6_TA_tex_txt:
- addrs: [0x808E5780, 0x808E5880]
- npc/tex/lon_2_eye7_TA_tex_txt:
- addrs: [0x808E5880, 0x808E5980]
- npc/tex/lon_2_eye8_TA_tex_txt:
- addrs: [0x808E5980, 0x808E5A80]
- npc/tex/lon_2_mouth1_TA_tex_txt:
- addrs: [0x808E5A80, 0x808E5B80]
- npc/tex/lon_2_mouth2_TA_tex_txt:
- addrs: [0x808E5B80, 0x808E5C80]
- npc/tex/lon_2_mouth3_TA_tex_txt:
- addrs: [0x808E5C80, 0x808E5D80]
- npc/tex/lon_2_mouth4_TA_tex_txt:
- addrs: [0x808E5D80, 0x808E5E80]
- npc/tex/lon_2_mouth5_TA_tex_txt:
- addrs: [0x808E5E80, 0x808E5F80]
- npc/tex/lon_2_mouth6_TA_tex_txt:
- addrs: [0x808E5F80, 0x808E6080]
- npc/tex/lon_2_tmem_txt:
- addrs: [0x808E6080, 0x808E6540]
- npc/tex/lon_3_pal:
- addrs: [0x808E6540, 0x808E6560]
- type: pal16
- npc/tex/lon_3_eye1_TA_tex_txt:
- addrs: [0x808E6560, 0x808E6660]
- npc/tex/lon_3_eye2_TA_tex_txt:
- addrs: [0x808E6660, 0x808E6760]
- npc/tex/lon_3_eye3_TA_tex_txt:
- addrs: [0x808E6760, 0x808E6860]
- npc/tex/lon_3_eye4_TA_tex_txt:
- addrs: [0x808E6860, 0x808E6960]
- npc/tex/lon_3_eye5_TA_tex_txt:
- addrs: [0x808E6960, 0x808E6A60]
- npc/tex/lon_3_eye6_TA_tex_txt:
- addrs: [0x808E6A60, 0x808E6B60]
- npc/tex/lon_3_eye7_TA_tex_txt:
- addrs: [0x808E6B60, 0x808E6C60]
- npc/tex/lon_3_eye8_TA_tex_txt:
- addrs: [0x808E6C60, 0x808E6D60]
- npc/tex/lon_3_mouth1_TA_tex_txt:
- addrs: [0x808E6D60, 0x808E6E60]
- npc/tex/lon_3_mouth2_TA_tex_txt:
- addrs: [0x808E6E60, 0x808E6F60]
- npc/tex/lon_3_mouth3_TA_tex_txt:
- addrs: [0x808E6F60, 0x808E7060]
- npc/tex/lon_3_mouth4_TA_tex_txt:
- addrs: [0x808E7060, 0x808E7160]
- npc/tex/lon_3_mouth5_TA_tex_txt:
- addrs: [0x808E7160, 0x808E7260]
- npc/tex/lon_3_mouth6_TA_tex_txt:
- addrs: [0x808E7260, 0x808E7360]
- npc/tex/lon_3_tmem_txt:
- addrs: [0x808E7360, 0x808E7820]
- npc/tex/lon_4_pal:
- addrs: [0x808E7820, 0x808E7840]
- type: pal16
- npc/tex/lon_4_eye1_TA_tex_txt:
- addrs: [0x808E7840, 0x808E7940]
- npc/tex/lon_4_eye2_TA_tex_txt:
- addrs: [0x808E7940, 0x808E7A40]
- npc/tex/lon_4_eye3_TA_tex_txt:
- addrs: [0x808E7A40, 0x808E7B40]
- npc/tex/lon_4_eye4_TA_tex_txt:
- addrs: [0x808E7B40, 0x808E7C40]
- npc/tex/lon_4_eye5_TA_tex_txt:
- addrs: [0x808E7C40, 0x808E7D40]
- npc/tex/lon_4_eye6_TA_tex_txt:
- addrs: [0x808E7D40, 0x808E7E40]
- npc/tex/lon_4_eye7_TA_tex_txt:
- addrs: [0x808E7E40, 0x808E7F40]
- npc/tex/lon_4_eye8_TA_tex_txt:
- addrs: [0x808E7F40, 0x808E8040]
- npc/tex/lon_4_mouth1_TA_tex_txt:
- addrs: [0x808E8040, 0x808E8140]
- npc/tex/lon_4_mouth2_TA_tex_txt:
- addrs: [0x808E8140, 0x808E8240]
- npc/tex/lon_4_mouth3_TA_tex_txt:
- addrs: [0x808E8240, 0x808E8340]
- npc/tex/lon_4_mouth4_TA_tex_txt:
- addrs: [0x808E8340, 0x808E8440]
- npc/tex/lon_4_mouth5_TA_tex_txt:
- addrs: [0x808E8440, 0x808E8540]
- npc/tex/lon_4_mouth6_TA_tex_txt:
- addrs: [0x808E8540, 0x808E8640]
- npc/tex/lon_4_tmem_txt:
- addrs: [0x808E8640, 0x808E8B00]
- npc/mdl/mos_1_v:
- addrs: [0x808EAEA0, 0x808EC2C0]
- type: vtx
- npc/tex/mos_1_pal:
- addrs: [0x808ECAE0, 0x808ECB00]
- type: pal16
- npc/tex/mos_1_eye1_TA_tex_txt:
- addrs: [0x808ECB00, 0x808ECC00]
- npc/tex/mos_1_eye2_TA_tex_txt:
- addrs: [0x808ECC00, 0x808ECD00]
- npc/tex/mos_1_eye3_TA_tex_txt:
- addrs: [0x808ECD00, 0x808ECE00]
- npc/tex/mos_1_eye4_TA_tex_txt:
- addrs: [0x808ECE00, 0x808ECF00]
- npc/tex/mos_1_eye5_TA_tex_txt:
- addrs: [0x808ECF00, 0x808ED000]
- npc/tex/mos_1_eye6_TA_tex_txt:
- addrs: [0x808ED000, 0x808ED100]
- npc/tex/mos_1_eye7_TA_tex_txt:
- addrs: [0x808ED100, 0x808ED200]
- npc/tex/mos_1_eye8_TA_tex_txt:
- addrs: [0x808ED200, 0x808ED300]
- npc/tex/mos_1_mouth1_TA_tex_txt:
- addrs: [0x808ED300, 0x808ED400]
- npc/tex/mos_1_mouth2_TA_tex_txt:
- addrs: [0x808ED400, 0x808ED500]
- npc/tex/mos_1_mouth3_TA_tex_txt:
- addrs: [0x808ED500, 0x808ED600]
- npc/tex/mos_1_mouth4_TA_tex_txt:
- addrs: [0x808ED600, 0x808ED700]
- npc/tex/mos_1_mouth5_TA_tex_txt:
- addrs: [0x808ED700, 0x808ED800]
- npc/tex/mos_1_mouth6_TA_tex_txt:
- addrs: [0x808ED800, 0x808ED900]
- npc/tex/mos_1_tmem_txt:
- addrs: [0x808ED900, 0x808EDF80]
- npc/mdl/mol_1_v:
- addrs: [0x808EDF80, 0x808EF3A0]
- type: vtx
- npc/tex/mol_1_pal:
- addrs: [0x808EFBC0, 0x808EFBE0]
- type: pal16
- npc/tex/mol_1_eye1_TA_tex_txt:
- addrs: [0x808EFBE0, 0x808EFCE0]
- npc/tex/mol_1_eye2_TA_tex_txt:
- addrs: [0x808EFCE0, 0x808EFDE0]
- npc/tex/mol_1_eye3_TA_tex_txt:
- addrs: [0x808EFDE0, 0x808EFEE0]
- npc/tex/mol_1_eye4_TA_tex_txt:
- addrs: [0x808EFEE0, 0x808EFFE0]
- npc/tex/mol_1_eye5_TA_tex_txt:
- addrs: [0x808EFFE0, 0x808F00E0]
- npc/tex/mol_1_eye6_TA_tex_txt:
- addrs: [0x808F00E0, 0x808F01E0]
- npc/tex/mol_1_eye7_TA_tex_txt:
- addrs: [0x808F01E0, 0x808F02E0]
- npc/tex/mol_1_eye8_TA_tex_txt:
- addrs: [0x808F02E0, 0x808F03E0]
- npc/tex/mol_1_mouth1_TA_tex_txt:
- addrs: [0x808F03E0, 0x808F04E0]
- npc/tex/mol_1_mouth2_TA_tex_txt:
- addrs: [0x808F04E0, 0x808F05E0]
- npc/tex/mol_1_mouth3_TA_tex_txt:
- addrs: [0x808F05E0, 0x808F06E0]
- npc/tex/mol_1_mouth4_TA_tex_txt:
- addrs: [0x808F06E0, 0x808F07E0]
- npc/tex/mol_1_mouth5_TA_tex_txt:
- addrs: [0x808F07E0, 0x808F08E0]
- npc/tex/mol_1_mouth6_TA_tex_txt:
- addrs: [0x808F08E0, 0x808F09E0]
- npc/tex/mol_1_tmem_txt:
- addrs: [0x808F09E0, 0x808F1060]
- npc/mdl/lrc_1_v:
- addrs: [0x808F1060, 0x808F25A0]
- type: vtx
- npc/tex/lrc_1_pal:
- addrs: [0x808F2F60, 0x808F2F80]
- type: pal16
- npc/tex/lrc_1_eye1_TA_tex_txt:
- addrs: [0x808F2F80, 0x808F3080]
- npc/tex/lrc_1_eye2_TA_tex_txt:
- addrs: [0x808F3080, 0x808F3180]
- npc/tex/lrc_1_eye3_TA_tex_txt:
- addrs: [0x808F3180, 0x808F3280]
- npc/tex/lrc_1_eye4_TA_tex_txt:
- addrs: [0x808F3280, 0x808F3380]
- npc/tex/lrc_1_eye5_TA_tex_txt:
- addrs: [0x808F3380, 0x808F3480]
- npc/tex/lrc_1_eye6_TA_tex_txt:
- addrs: [0x808F3480, 0x808F3580]
- npc/tex/lrc_1_eye7_TA_tex_txt:
- addrs: [0x808F3580, 0x808F3680]
- npc/tex/lrc_1_eye8_TA_tex_txt:
- addrs: [0x808F3680, 0x808F3780]
- npc/tex/lrc_1_tmem_txt:
- addrs: [0x808F3780, 0x808F3E00]
- npc/mdl/mka_1_v:
- addrs: [0x808F3E00, 0x808F5280]
- type: vtx
- npc/tex/mka_1_pal:
- addrs: [0x808F5BC0, 0x808F5BE0]
- type: pal16
- npc/tex/mka_1_tmem_txt:
- addrs: [0x808F5BE0, 0x808F6060]
- npc/mdl/mus_1_v:
- addrs: [0x808F6EA8, 0x808F86A8]
- type: vtx
- npc/tex/mus_1_pal:
- addrs: [0x808F90C0, 0x808F90E0]
- type: pal16
- npc/tex/mus_1_eye1_TA_tex_txt:
- addrs: [0x808F90E0, 0x808F91E0]
- npc/tex/mus_1_eye2_TA_tex_txt:
- addrs: [0x808F91E0, 0x808F92E0]
- npc/tex/mus_1_eye3_TA_tex_txt:
- addrs: [0x808F92E0, 0x808F93E0]
- npc/tex/mus_1_eye4_TA_tex_txt:
- addrs: [0x808F93E0, 0x808F94E0]
- npc/tex/mus_1_eye5_TA_tex_txt:
- addrs: [0x808F94E0, 0x808F95E0]
- npc/tex/mus_1_eye6_TA_tex_txt:
- addrs: [0x808F95E0, 0x808F96E0]
- npc/tex/mus_1_eye7_TA_tex_txt:
- addrs: [0x808F96E0, 0x808F97E0]
- npc/tex/mus_1_eye8_TA_tex_txt:
- addrs: [0x808F97E0, 0x808F98E0]
- npc/tex/mus_1_mouth1_TA_tex_txt:
- addrs: [0x808F98E0, 0x808F99E0]
- npc/tex/mus_1_mouth2_TA_tex_txt:
- addrs: [0x808F99E0, 0x808F9AE0]
- npc/tex/mus_1_mouth3_TA_tex_txt:
- addrs: [0x808F9AE0, 0x808F9BE0]
- npc/tex/mus_1_mouth4_TA_tex_txt:
- addrs: [0x808F9BE0, 0x808F9CE0]
- npc/tex/mus_1_mouth5_TA_tex_txt:
- addrs: [0x808F9CE0, 0x808F9DE0]
- npc/tex/mus_1_mouth6_TA_tex_txt:
- addrs: [0x808F9DE0, 0x808F9EE0]
- npc/tex/mus_1_tmem_txt:
- addrs: [0x808F9EE0, 0x808FA2E0]
- npc/tex/mus_2_pal:
- addrs: [0x808FA2E0, 0x808FA300]
- type: pal16
- npc/tex/mus_2_eye1_TA_tex_txt:
- addrs: [0x808FA300, 0x808FA400]
- npc/tex/mus_2_eye2_TA_tex_txt:
- addrs: [0x808FA400, 0x808FA500]
- npc/tex/mus_2_eye3_TA_tex_txt:
- addrs: [0x808FA500, 0x808FA600]
- npc/tex/mus_2_eye4_TA_tex_txt:
- addrs: [0x808FA600, 0x808FA700]
- npc/tex/mus_2_eye5_TA_tex_txt:
- addrs: [0x808FA700, 0x808FA800]
- npc/tex/mus_2_eye6_TA_tex_txt:
- addrs: [0x808FA800, 0x808FA900]
- npc/tex/mus_2_eye7_TA_tex_txt:
- addrs: [0x808FA900, 0x808FAA00]
- npc/tex/mus_2_eye8_TA_tex_txt:
- addrs: [0x808FAA00, 0x808FAB00]
- npc/tex/mus_2_mouth1_TA_tex_txt:
- addrs: [0x808FAB00, 0x808FAC00]
- npc/tex/mus_2_mouth2_TA_tex_txt:
- addrs: [0x808FAC00, 0x808FAD00]
- npc/tex/mus_2_mouth3_TA_tex_txt:
- addrs: [0x808FAD00, 0x808FAE00]
- npc/tex/mus_2_mouth4_TA_tex_txt:
- addrs: [0x808FAE00, 0x808FAF00]
- npc/tex/mus_2_mouth5_TA_tex_txt:
- addrs: [0x808FAF00, 0x808FB000]
- npc/tex/mus_2_mouth6_TA_tex_txt:
- addrs: [0x808FB000, 0x808FB100]
- npc/tex/mus_2_tmem_txt:
- addrs: [0x808FB100, 0x808FB500]
- npc/tex/mus_3_pal:
- addrs: [0x808FB500, 0x808FB520]
- type: pal16
- npc/tex/mus_3_eye1_TA_tex_txt:
- addrs: [0x808FB520, 0x808FB620]
- npc/tex/mus_3_eye2_TA_tex_txt:
- addrs: [0x808FB620, 0x808FB720]
- npc/tex/mus_3_eye3_TA_tex_txt:
- addrs: [0x808FB720, 0x808FB820]
- npc/tex/mus_3_eye4_TA_tex_txt:
- addrs: [0x808FB820, 0x808FB920]
- npc/tex/mus_3_eye5_TA_tex_txt:
- addrs: [0x808FB920, 0x808FBA20]
- npc/tex/mus_3_eye6_TA_tex_txt:
- addrs: [0x808FBA20, 0x808FBB20]
- npc/tex/mus_3_eye7_TA_tex_txt:
- addrs: [0x808FBB20, 0x808FBC20]
- npc/tex/mus_3_eye8_TA_tex_txt:
- addrs: [0x808FBC20, 0x808FBD20]
- npc/tex/mus_3_mouth1_TA_tex_txt:
- addrs: [0x808FBD20, 0x808FBE20]
- npc/tex/mus_3_mouth2_TA_tex_txt:
- addrs: [0x808FBE20, 0x808FBF20]
- npc/tex/mus_3_mouth3_TA_tex_txt:
- addrs: [0x808FBF20, 0x808FC020]
- npc/tex/mus_3_mouth4_TA_tex_txt:
- addrs: [0x808FC020, 0x808FC120]
- npc/tex/mus_3_mouth5_TA_tex_txt:
- addrs: [0x808FC120, 0x808FC220]
- npc/tex/mus_3_mouth6_TA_tex_txt:
- addrs: [0x808FC220, 0x808FC320]
- npc/tex/mus_3_tmem_txt:
- addrs: [0x808FC320, 0x808FC720]
- npc/tex/mus_4_pal:
- addrs: [0x808FC720, 0x808FC740]
- type: pal16
- npc/tex/mus_4_eye1_TA_tex_txt:
- addrs: [0x808FC740, 0x808FC840]
- npc/tex/mus_4_eye2_TA_tex_txt:
- addrs: [0x808FC840, 0x808FC940]
- npc/tex/mus_4_eye3_TA_tex_txt:
- addrs: [0x808FC940, 0x808FCA40]
- npc/tex/mus_4_eye4_TA_tex_txt:
- addrs: [0x808FCA40, 0x808FCB40]
- npc/tex/mus_4_eye5_TA_tex_txt:
- addrs: [0x808FCB40, 0x808FCC40]
- npc/tex/mus_4_eye6_TA_tex_txt:
- addrs: [0x808FCC40, 0x808FCD40]
- npc/tex/mus_4_eye7_TA_tex_txt:
- addrs: [0x808FCD40, 0x808FCE40]
- npc/tex/mus_4_eye8_TA_tex_txt:
- addrs: [0x808FCE40, 0x808FCF40]
- npc/tex/mus_4_mouth1_TA_tex_txt:
- addrs: [0x808FCF40, 0x808FD040]
- npc/tex/mus_4_mouth2_TA_tex_txt:
- addrs: [0x808FD040, 0x808FD140]
- npc/tex/mus_4_mouth3_TA_tex_txt:
- addrs: [0x808FD140, 0x808FD240]
- npc/tex/mus_4_mouth4_TA_tex_txt:
- addrs: [0x808FD240, 0x808FD340]
- npc/tex/mus_4_mouth5_TA_tex_txt:
- addrs: [0x808FD340, 0x808FD440]
- npc/tex/mus_4_mouth6_TA_tex_txt:
- addrs: [0x808FD440, 0x808FD540]
- npc/tex/mus_4_tmem_txt:
- addrs: [0x808FD540, 0x808FD940]
- npc/tex/mus_5_pal:
- addrs: [0x808FD940, 0x808FD960]
- type: pal16
- npc/tex/mus_5_eye1_TA_tex_txt:
- addrs: [0x808FD960, 0x808FDA60]
- npc/tex/mus_5_eye2_TA_tex_txt:
- addrs: [0x808FDA60, 0x808FDB60]
- npc/tex/mus_5_eye3_TA_tex_txt:
- addrs: [0x808FDB60, 0x808FDC60]
- npc/tex/mus_5_eye4_TA_tex_txt:
- addrs: [0x808FDC60, 0x808FDD60]
- npc/tex/mus_5_eye5_TA_tex_txt:
- addrs: [0x808FDD60, 0x808FDE60]
- npc/tex/mus_5_eye6_TA_tex_txt:
- addrs: [0x808FDE60, 0x808FDF60]
- npc/tex/mus_5_eye7_TA_tex_txt:
- addrs: [0x808FDF60, 0x808FE060]
- npc/tex/mus_5_eye8_TA_tex_txt:
- addrs: [0x808FE060, 0x808FE160]
- npc/tex/mus_5_mouth1_TA_tex_txt:
- addrs: [0x808FE160, 0x808FE260]
- npc/tex/mus_5_mouth2_TA_tex_txt:
- addrs: [0x808FE260, 0x808FE360]
- npc/tex/mus_5_mouth3_TA_tex_txt:
- addrs: [0x808FE360, 0x808FE460]
- npc/tex/mus_5_mouth4_TA_tex_txt:
- addrs: [0x808FE460, 0x808FE560]
- npc/tex/mus_5_mouth5_TA_tex_txt:
- addrs: [0x808FE560, 0x808FE660]
- npc/tex/mus_5_mouth6_TA_tex_txt:
- addrs: [0x808FE660, 0x808FE760]
- npc/tex/mus_5_tmem_txt:
- addrs: [0x808FE760, 0x808FEB60]
- npc/tex/mus_6_pal:
- addrs: [0x808FEB60, 0x808FEB80]
- type: pal16
- npc/tex/mus_6_eye1_TA_tex_txt:
- addrs: [0x808FEB80, 0x808FEC80]
- npc/tex/mus_6_eye2_TA_tex_txt:
- addrs: [0x808FEC80, 0x808FED80]
- npc/tex/mus_6_eye3_TA_tex_txt:
- addrs: [0x808FED80, 0x808FEE80]
- npc/tex/mus_6_eye4_TA_tex_txt:
- addrs: [0x808FEE80, 0x808FEF80]
- npc/tex/mus_6_eye5_TA_tex_txt:
- addrs: [0x808FEF80, 0x808FF080]
- npc/tex/mus_6_eye6_TA_tex_txt:
- addrs: [0x808FF080, 0x808FF180]
- npc/tex/mus_6_eye7_TA_tex_txt:
- addrs: [0x808FF180, 0x808FF280]
- npc/tex/mus_6_eye8_TA_tex_txt:
- addrs: [0x808FF280, 0x808FF380]
- npc/tex/mus_6_mouth1_TA_tex_txt:
- addrs: [0x808FF380, 0x808FF480]
- npc/tex/mus_6_mouth2_TA_tex_txt:
- addrs: [0x808FF480, 0x808FF580]
- npc/tex/mus_6_mouth3_TA_tex_txt:
- addrs: [0x808FF580, 0x808FF680]
- npc/tex/mus_6_mouth4_TA_tex_txt:
- addrs: [0x808FF680, 0x808FF780]
- npc/tex/mus_6_mouth5_TA_tex_txt:
- addrs: [0x808FF780, 0x808FF880]
- npc/tex/mus_6_mouth6_TA_tex_txt:
- addrs: [0x808FF880, 0x808FF980]
- npc/tex/mus_6_tmem_txt:
- addrs: [0x808FF980, 0x808FFD80]
- npc/tex/mus_7_pal:
- addrs: [0x808FFD80, 0x808FFDA0]
- type: pal16
- npc/tex/mus_7_eye1_TA_tex_txt:
- addrs: [0x808FFDA0, 0x808FFEA0]
- npc/tex/mus_7_eye2_TA_tex_txt:
- addrs: [0x808FFEA0, 0x808FFFA0]
- npc/tex/mus_7_eye3_TA_tex_txt:
- addrs: [0x808FFFA0, 0x809000A0]
- npc/tex/mus_7_eye4_TA_tex_txt:
- addrs: [0x809000A0, 0x809001A0]
- npc/tex/mus_7_eye5_TA_tex_txt:
- addrs: [0x809001A0, 0x809002A0]
- npc/tex/mus_7_eye6_TA_tex_txt:
- addrs: [0x809002A0, 0x809003A0]
- npc/tex/mus_7_eye7_TA_tex_txt:
- addrs: [0x809003A0, 0x809004A0]
- npc/tex/mus_7_eye8_TA_tex_txt:
- addrs: [0x809004A0, 0x809005A0]
- npc/tex/mus_7_mouth1_TA_tex_txt:
- addrs: [0x809005A0, 0x809006A0]
- npc/tex/mus_7_mouth2_TA_tex_txt:
- addrs: [0x809006A0, 0x809007A0]
- npc/tex/mus_7_mouth3_TA_tex_txt:
- addrs: [0x809007A0, 0x809008A0]
- npc/tex/mus_7_mouth4_TA_tex_txt:
- addrs: [0x809008A0, 0x809009A0]
- npc/tex/mus_7_mouth5_TA_tex_txt:
- addrs: [0x809009A0, 0x80900AA0]
- npc/tex/mus_7_mouth6_TA_tex_txt:
- addrs: [0x80900AA0, 0x80900BA0]
- npc/tex/mus_7_tmem_txt:
- addrs: [0x80900BA0, 0x80900FA0]
- npc/tex/mus_8_pal:
- addrs: [0x80900FA0, 0x80900FC0]
- type: pal16
- npc/tex/mus_8_eye1_TA_tex_txt:
- addrs: [0x80900FC0, 0x809010C0]
- npc/tex/mus_8_eye2_TA_tex_txt:
- addrs: [0x809010C0, 0x809011C0]
- npc/tex/mus_8_eye3_TA_tex_txt:
- addrs: [0x809011C0, 0x809012C0]
- npc/tex/mus_8_eye4_TA_tex_txt:
- addrs: [0x809012C0, 0x809013C0]
- npc/tex/mus_8_eye5_TA_tex_txt:
- addrs: [0x809013C0, 0x809014C0]
- npc/tex/mus_8_eye6_TA_tex_txt:
- addrs: [0x809014C0, 0x809015C0]
- npc/tex/mus_8_eye7_TA_tex_txt:
- addrs: [0x809015C0, 0x809016C0]
- npc/tex/mus_8_eye8_TA_tex_txt:
- addrs: [0x809016C0, 0x809017C0]
- npc/tex/mus_8_mouth1_TA_tex_txt:
- addrs: [0x809017C0, 0x809018C0]
- npc/tex/mus_8_mouth2_TA_tex_txt:
- addrs: [0x809018C0, 0x809019C0]
- npc/tex/mus_8_mouth3_TA_tex_txt:
- addrs: [0x809019C0, 0x80901AC0]
- npc/tex/mus_8_mouth4_TA_tex_txt:
- addrs: [0x80901AC0, 0x80901BC0]
- npc/tex/mus_8_mouth5_TA_tex_txt:
- addrs: [0x80901BC0, 0x80901CC0]
- npc/tex/mus_8_mouth6_TA_tex_txt:
- addrs: [0x80901CC0, 0x80901DC0]
- npc/tex/mus_8_tmem_txt:
- addrs: [0x80901DC0, 0x809021C0]
- npc/tex/mus_9_pal:
- addrs: [0x809021C0, 0x809021E0]
- type: pal16
- npc/tex/mus_9_eye1_TA_tex_txt:
- addrs: [0x809021E0, 0x809022E0]
- npc/tex/mus_9_eye2_TA_tex_txt:
- addrs: [0x809022E0, 0x809023E0]
- npc/tex/mus_9_eye3_TA_tex_txt:
- addrs: [0x809023E0, 0x809024E0]
- npc/tex/mus_9_eye4_TA_tex_txt:
- addrs: [0x809024E0, 0x809025E0]
- npc/tex/mus_9_eye5_TA_tex_txt:
- addrs: [0x809025E0, 0x809026E0]
- npc/tex/mus_9_eye6_TA_tex_txt:
- addrs: [0x809026E0, 0x809027E0]
- npc/tex/mus_9_eye7_TA_tex_txt:
- addrs: [0x809027E0, 0x809028E0]
- npc/tex/mus_9_eye8_TA_tex_txt:
- addrs: [0x809028E0, 0x809029E0]
- npc/tex/mus_9_mouth1_TA_tex_txt:
- addrs: [0x809029E0, 0x80902AE0]
- npc/tex/mus_9_mouth2_TA_tex_txt:
- addrs: [0x80902AE0, 0x80902BE0]
- npc/tex/mus_9_mouth3_TA_tex_txt:
- addrs: [0x80902BE0, 0x80902CE0]
- npc/tex/mus_9_mouth4_TA_tex_txt:
- addrs: [0x80902CE0, 0x80902DE0]
- npc/tex/mus_9_mouth5_TA_tex_txt:
- addrs: [0x80902DE0, 0x80902EE0]
- npc/tex/mus_9_mouth6_TA_tex_txt:
- addrs: [0x80902EE0, 0x80902FE0]
- npc/tex/mus_9_tmem_txt:
- addrs: [0x80902FE0, 0x809033E0]
- npc/tex/mus_10_pal:
- addrs: [0x809033E0, 0x80903400]
- type: pal16
- npc/tex/mus_10_eye1_TA_tex_txt:
- addrs: [0x80903400, 0x80903500]
- npc/tex/mus_10_eye2_TA_tex_txt:
- addrs: [0x80903500, 0x80903600]
- npc/tex/mus_10_eye3_TA_tex_txt:
- addrs: [0x80903600, 0x80903700]
- npc/tex/mus_10_eye4_TA_tex_txt:
- addrs: [0x80903700, 0x80903800]
- npc/tex/mus_10_eye5_TA_tex_txt:
- addrs: [0x80903800, 0x80903900]
- npc/tex/mus_10_eye6_TA_tex_txt:
- addrs: [0x80903900, 0x80903A00]
- npc/tex/mus_10_eye7_TA_tex_txt:
- addrs: [0x80903A00, 0x80903B00]
- npc/tex/mus_10_eye8_TA_tex_txt:
- addrs: [0x80903B00, 0x80903C00]
- npc/tex/mus_10_mouth1_TA_tex_txt:
- addrs: [0x80903C00, 0x80903D00]
- npc/tex/mus_10_mouth2_TA_tex_txt:
- addrs: [0x80903D00, 0x80903E00]
- npc/tex/mus_10_mouth3_TA_tex_txt:
- addrs: [0x80903E00, 0x80903F00]
- npc/tex/mus_10_mouth4_TA_tex_txt:
- addrs: [0x80903F00, 0x80904000]
- npc/tex/mus_10_mouth5_TA_tex_txt:
- addrs: [0x80904000, 0x80904100]
- npc/tex/mus_10_mouth6_TA_tex_txt:
- addrs: [0x80904100, 0x80904200]
- npc/tex/mus_10_tmem_txt:
- addrs: [0x80904200, 0x80904600]
- # ac_mural.o
- obj_mural_v:
- addrs: [0x80904600, 0x80904640]
- type: vtx
- npc/mdl/hgh_1_v:
- addrs: [0x80911E70, 0x80913B10]
- type: vtx
- npc/tex/hgh_1_pal:
- addrs: [0x80914620, 0x80914640]
- type: pal16
- npc/tex/hgh_1_eye1_TA_tex_txt:
- addrs: [0x80914640, 0x80914740]
- npc/tex/hgh_1_eye2_TA_tex_txt:
- addrs: [0x80914740, 0x80914840]
- npc/tex/hgh_1_eye3_TA_tex_txt:
- addrs: [0x80914840, 0x80914940]
- npc/tex/hgh_1_eye4_TA_tex_txt:
- addrs: [0x80914940, 0x80914A40]
- npc/tex/hgh_1_eye5_TA_tex_txt:
- addrs: [0x80914A40, 0x80914B40]
- npc/tex/hgh_1_eye6_TA_tex_txt:
- addrs: [0x80914B40, 0x80914C40]
- npc/tex/hgh_1_eye7_TA_tex_txt:
- addrs: [0x80914C40, 0x80914D40]
- npc/tex/hgh_1_eye8_TA_tex_txt:
- addrs: [0x80914D40, 0x80914E40]
- npc/tex/hgh_1_tmem_txt:
- addrs: [0x80914E40, 0x80915500]
- npc/mdl/hgs_1_v:
- addrs: [0x80915500, 0x80917180]
- type: vtx
- npc/tex/hgs_1_pal:
- addrs: [0x80917C80, 0x80917CA0]
- type: pal16
- npc/tex/hgs_1_eye1_TA_tex_txt:
- addrs: [0x80917CA0, 0x80917DA0]
- npc/tex/hgs_1_eye2_TA_tex_txt:
- addrs: [0x80917DA0, 0x80917EA0]
- npc/tex/hgs_1_eye3_TA_tex_txt:
- addrs: [0x80917EA0, 0x80917FA0]
- npc/tex/hgs_1_eye4_TA_tex_txt:
- addrs: [0x80917FA0, 0x809180A0]
- npc/tex/hgs_1_eye5_TA_tex_txt:
- addrs: [0x809180A0, 0x809181A0]
- npc/tex/hgs_1_eye6_TA_tex_txt:
- addrs: [0x809181A0, 0x809182A0]
- npc/tex/hgs_1_eye7_TA_tex_txt:
- addrs: [0x809182A0, 0x809183A0]
- npc/tex/hgs_1_eye8_TA_tex_txt:
- addrs: [0x809183A0, 0x809184A0]
- npc/tex/hgs_1_tmem_txt:
- addrs: [0x809184A0, 0x80918B60]
- npc/mdl/oct_1_v:
- addrs: [0x80977CB0, 0x80979A30]
- type: vtx
- npc/tex/oct_1_pal:
- addrs: [0x8097A460, 0x8097A480]
- type: pal16
- npc/tex/oct_1_eye1_TA_tex_txt:
- addrs: [0x8097A480, 0x8097A580]
- npc/tex/oct_1_eye2_TA_tex_txt:
- addrs: [0x8097A580, 0x8097A680]
- npc/tex/oct_1_eye3_TA_tex_txt:
- addrs: [0x8097A680, 0x8097A780]
- npc/tex/oct_1_eye4_TA_tex_txt:
- addrs: [0x8097A780, 0x8097A880]
- npc/tex/oct_1_eye5_TA_tex_txt:
- addrs: [0x8097A880, 0x8097A980]
- npc/tex/oct_1_eye6_TA_tex_txt:
- addrs: [0x8097A980, 0x8097AA80]
- npc/tex/oct_1_eye7_TA_tex_txt:
- addrs: [0x8097AA80, 0x8097AB80]
- npc/tex/oct_1_eye8_TA_tex_txt:
- addrs: [0x8097AB80, 0x8097AC80]
- npc/tex/oct_1_tmem_txt:
- addrs: [0x8097AC80, 0x8097AE80]
- npc/mdl/ost_1_v:
- addrs: [0x8097AE80, 0x8097C650]
- type: vtx
- npc/tex/ost_1_pal:
- addrs: [0x8097D100, 0x8097D120]
- type: pal16
- npc/tex/ost_1_eye1_TA_tex_txt:
- addrs: [0x8097D120, 0x8097D220]
- npc/tex/ost_1_eye2_TA_tex_txt:
- addrs: [0x8097D220, 0x8097D320]
- npc/tex/ost_1_eye3_TA_tex_txt:
- addrs: [0x8097D320, 0x8097D420]
- npc/tex/ost_1_eye4_TA_tex_txt:
- addrs: [0x8097D420, 0x8097D520]
- npc/tex/ost_1_eye5_TA_tex_txt:
- addrs: [0x8097D520, 0x8097D620]
- npc/tex/ost_1_eye6_TA_tex_txt:
- addrs: [0x8097D620, 0x8097D720]
- npc/tex/ost_1_eye7_TA_tex_txt:
- addrs: [0x8097D720, 0x8097D820]
- npc/tex/ost_1_eye8_TA_tex_txt:
- addrs: [0x8097D820, 0x8097D920]
- npc/tex/ost_1_tmem_txt:
- addrs: [0x8097D920, 0x8097DE60]
- npc/tex/ost_2_pal:
- addrs: [0x8097DE60, 0x8097DE80]
- type: pal16
- npc/tex/ost_2_eye1_TA_tex_txt:
- addrs: [0x8097DE80, 0x8097DF80]
- npc/tex/ost_2_eye2_TA_tex_txt:
- addrs: [0x8097DF80, 0x8097E080]
- npc/tex/ost_2_eye3_TA_tex_txt:
- addrs: [0x8097E080, 0x8097E180]
- npc/tex/ost_2_eye4_TA_tex_txt:
- addrs: [0x8097E180, 0x8097E280]
- npc/tex/ost_2_eye5_TA_tex_txt:
- addrs: [0x8097E280, 0x8097E380]
- npc/tex/ost_2_eye6_TA_tex_txt:
- addrs: [0x8097E380, 0x8097E480]
- npc/tex/ost_2_eye7_TA_tex_txt:
- addrs: [0x8097E480, 0x8097E580]
- npc/tex/ost_2_eye8_TA_tex_txt:
- addrs: [0x8097E580, 0x8097E680]
- npc/tex/ost_2_tmem_txt:
- addrs: [0x8097E680, 0x8097EBC0]
- npc/tex/ost_3_pal:
- addrs: [0x8097EBC0, 0x8097EBE0]
- type: pal16
- npc/tex/ost_3_eye1_TA_tex_txt:
- addrs: [0x8097EBE0, 0x8097ECE0]
- npc/tex/ost_3_eye2_TA_tex_txt:
- addrs: [0x8097ECE0, 0x8097EDE0]
- npc/tex/ost_3_eye3_TA_tex_txt:
- addrs: [0x8097EDE0, 0x8097EEE0]
- npc/tex/ost_3_eye4_TA_tex_txt:
- addrs: [0x8097EEE0, 0x8097EFE0]
- npc/tex/ost_3_eye5_TA_tex_txt:
- addrs: [0x8097EFE0, 0x8097F0E0]
- npc/tex/ost_3_eye6_TA_tex_txt:
- addrs: [0x8097F0E0, 0x8097F1E0]
- npc/tex/ost_3_eye7_TA_tex_txt:
- addrs: [0x8097F1E0, 0x8097F2E0]
- npc/tex/ost_3_eye8_TA_tex_txt:
- addrs: [0x8097F2E0, 0x8097F3E0]
- npc/tex/ost_3_tmem_txt:
- addrs: [0x8097F3E0, 0x8097F920]
- npc/tex/ost_4_pal:
- addrs: [0x8097F920, 0x8097F940]
- type: pal16
- npc/tex/ost_4_eye1_TA_tex_txt:
- addrs: [0x8097F940, 0x8097FA40]
- npc/tex/ost_4_eye2_TA_tex_txt:
- addrs: [0x8097FA40, 0x8097FB40]
- npc/tex/ost_4_eye3_TA_tex_txt:
- addrs: [0x8097FB40, 0x8097FC40]
- npc/tex/ost_4_eye4_TA_tex_txt:
- addrs: [0x8097FC40, 0x8097FD40]
- npc/tex/ost_4_eye5_TA_tex_txt:
- addrs: [0x8097FD40, 0x8097FE40]
- npc/tex/ost_4_eye6_TA_tex_txt:
- addrs: [0x8097FE40, 0x8097FF40]
- npc/tex/ost_4_eye7_TA_tex_txt:
- addrs: [0x8097FF40, 0x80980040]
- npc/tex/ost_4_eye8_TA_tex_txt:
- addrs: [0x80980040, 0x80980140]
- npc/tex/ost_4_tmem_txt:
- addrs: [0x80980140, 0x80980680]
- npc/mdl/pgn_1_v:
- addrs: [0x80980F28, 0x80982708]
- type: vtx
- npc/tex/pgn_1_pal:
- addrs: [0x80983140, 0x80983160]
- type: pal16
- npc/tex/pgn_1_eye1_TA_tex_txt:
- addrs: [0x80983160, 0x80983260]
- npc/tex/pgn_1_eye2_TA_tex_txt:
- addrs: [0x80983260, 0x80983360]
- npc/tex/pgn_1_eye3_TA_tex_txt:
- addrs: [0x80983360, 0x80983460]
- npc/tex/pgn_1_eye4_TA_tex_txt:
- addrs: [0x80983460, 0x80983560]
- npc/tex/pgn_1_eye5_TA_tex_txt:
- addrs: [0x80983560, 0x80983660]
- npc/tex/pgn_1_eye6_TA_tex_txt:
- addrs: [0x80983660, 0x80983760]
- npc/tex/pgn_1_eye7_TA_tex_txt:
- addrs: [0x80983760, 0x80983860]
- npc/tex/pgn_1_eye8_TA_tex_txt:
- addrs: [0x80983860, 0x80983960]
- npc/tex/pgn_1_tmem_txt:
- addrs: [0x80983960, 0x80983EE0]
- npc/tex/pgn_2_pal:
- addrs: [0x80983EE0, 0x80983F00]
- type: pal16
- npc/tex/pgn_2_eye1_TA_tex_txt:
- addrs: [0x80983F00, 0x80984000]
- npc/tex/pgn_2_eye2_TA_tex_txt:
- addrs: [0x80984000, 0x80984100]
- npc/tex/pgn_2_eye3_TA_tex_txt:
- addrs: [0x80984100, 0x80984200]
- npc/tex/pgn_2_eye4_TA_tex_txt:
- addrs: [0x80984200, 0x80984300]
- npc/tex/pgn_2_eye5_TA_tex_txt:
- addrs: [0x80984300, 0x80984400]
- npc/tex/pgn_2_eye6_TA_tex_txt:
- addrs: [0x80984400, 0x80984500]
- npc/tex/pgn_2_eye7_TA_tex_txt:
- addrs: [0x80984500, 0x80984600]
- npc/tex/pgn_2_eye8_TA_tex_txt:
- addrs: [0x80984600, 0x80984700]
- npc/tex/pgn_2_tmem_txt:
- addrs: [0x80984700, 0x80984C80]
- npc/tex/pgn_3_pal:
- addrs: [0x80984C80, 0x80984CA0]
- type: pal16
- npc/tex/pgn_3_eye1_TA_tex_txt:
- addrs: [0x80984CA0, 0x80984DA0]
- npc/tex/pgn_3_eye2_TA_tex_txt:
- addrs: [0x80984DA0, 0x80984EA0]
- npc/tex/pgn_3_eye3_TA_tex_txt:
- addrs: [0x80984EA0, 0x80984FA0]
- npc/tex/pgn_3_eye4_TA_tex_txt:
- addrs: [0x80984FA0, 0x809850A0]
- npc/tex/pgn_3_eye5_TA_tex_txt:
- addrs: [0x809850A0, 0x809851A0]
- npc/tex/pgn_3_eye6_TA_tex_txt:
- addrs: [0x809851A0, 0x809852A0]
- npc/tex/pgn_3_eye7_TA_tex_txt:
- addrs: [0x809852A0, 0x809853A0]
- npc/tex/pgn_3_eye8_TA_tex_txt:
- addrs: [0x809853A0, 0x809854A0]
- npc/tex/pgn_3_tmem_txt:
- addrs: [0x809854A0, 0x80985A20]
- npc/tex/pgn_4_pal:
- addrs: [0x80985A20, 0x80985A40]
- type: pal16
- npc/tex/pgn_4_eye1_TA_tex_txt:
- addrs: [0x80985A40, 0x80985B40]
- npc/tex/pgn_4_eye2_TA_tex_txt:
- addrs: [0x80985B40, 0x80985C40]
- npc/tex/pgn_4_eye3_TA_tex_txt:
- addrs: [0x80985C40, 0x80985D40]
- npc/tex/pgn_4_eye4_TA_tex_txt:
- addrs: [0x80985D40, 0x80985E40]
- npc/tex/pgn_4_eye5_TA_tex_txt:
- addrs: [0x80985E40, 0x80985F40]
- npc/tex/pgn_4_eye6_TA_tex_txt:
- addrs: [0x80985F40, 0x80986040]
- npc/tex/pgn_4_eye7_TA_tex_txt:
- addrs: [0x80986040, 0x80986140]
- npc/tex/pgn_4_eye8_TA_tex_txt:
- addrs: [0x80986140, 0x80986240]
- npc/tex/pgn_4_tmem_txt:
- addrs: [0x80986240, 0x809867C0]
- npc/tex/pgn_5_pal:
- addrs: [0x809867C0, 0x809867E0]
- type: pal16
- npc/tex/pgn_5_eye1_TA_tex_txt:
- addrs: [0x809867E0, 0x809868E0]
- npc/tex/pgn_5_eye2_TA_tex_txt:
- addrs: [0x809868E0, 0x809869E0]
- npc/tex/pgn_5_eye3_TA_tex_txt:
- addrs: [0x809869E0, 0x80986AE0]
- npc/tex/pgn_5_eye4_TA_tex_txt:
- addrs: [0x80986AE0, 0x80986BE0]
- npc/tex/pgn_5_eye5_TA_tex_txt:
- addrs: [0x80986BE0, 0x80986CE0]
- npc/tex/pgn_5_eye6_TA_tex_txt:
- addrs: [0x80986CE0, 0x80986DE0]
- npc/tex/pgn_5_eye7_TA_tex_txt:
- addrs: [0x80986DE0, 0x80986EE0]
- npc/tex/pgn_5_eye8_TA_tex_txt:
- addrs: [0x80986EE0, 0x80986FE0]
- npc/tex/pgn_5_tmem_txt:
- addrs: [0x80986FE0, 0x80987560]
- npc/tex/pgn_6_pal:
- addrs: [0x80987560, 0x80987580]
- type: pal16
- npc/tex/pgn_6_eye1_TA_tex_txt:
- addrs: [0x80987580, 0x80987680]
- npc/tex/pgn_6_eye2_TA_tex_txt:
- addrs: [0x80987680, 0x80987780]
- npc/tex/pgn_6_eye3_TA_tex_txt:
- addrs: [0x80987780, 0x80987880]
- npc/tex/pgn_6_eye4_TA_tex_txt:
- addrs: [0x80987880, 0x80987980]
- npc/tex/pgn_6_eye5_TA_tex_txt:
- addrs: [0x80987980, 0x80987A80]
- npc/tex/pgn_6_eye6_TA_tex_txt:
- addrs: [0x80987A80, 0x80987B80]
- npc/tex/pgn_6_eye7_TA_tex_txt:
- addrs: [0x80987B80, 0x80987C80]
- npc/tex/pgn_6_eye8_TA_tex_txt:
- addrs: [0x80987C80, 0x80987D80]
- npc/tex/pgn_6_tmem_txt:
- addrs: [0x80987D80, 0x80988300]
- npc/tex/pgn_7_pal:
- addrs: [0x80988300, 0x80988320]
- type: pal16
- npc/tex/pgn_7_eye1_TA_tex_txt:
- addrs: [0x80988320, 0x80988420]
- npc/tex/pgn_7_eye2_TA_tex_txt:
- addrs: [0x80988420, 0x80988520]
- npc/tex/pgn_7_eye3_TA_tex_txt:
- addrs: [0x80988520, 0x80988620]
- npc/tex/pgn_7_eye4_TA_tex_txt:
- addrs: [0x80988620, 0x80988720]
- npc/tex/pgn_7_eye5_TA_tex_txt:
- addrs: [0x80988720, 0x80988820]
- npc/tex/pgn_7_eye6_TA_tex_txt:
- addrs: [0x80988820, 0x80988920]
- npc/tex/pgn_7_eye7_TA_tex_txt:
- addrs: [0x80988920, 0x80988A20]
- npc/tex/pgn_7_eye8_TA_tex_txt:
- addrs: [0x80988A20, 0x80988B20]
- npc/tex/pgn_7_tmem_txt:
- addrs: [0x80988B20, 0x809890A0]
- npc/tex/pgn_8_pal:
- addrs: [0x809890A0, 0x809890C0]
- type: pal16
- npc/tex/pgn_8_eye1_TA_tex_txt:
- addrs: [0x809890C0, 0x809891C0]
- npc/tex/pgn_8_eye2_TA_tex_txt:
- addrs: [0x809891C0, 0x809892C0]
- npc/tex/pgn_8_eye3_TA_tex_txt:
- addrs: [0x809892C0, 0x809893C0]
- npc/tex/pgn_8_eye4_TA_tex_txt:
- addrs: [0x809893C0, 0x809894C0]
- npc/tex/pgn_8_eye5_TA_tex_txt:
- addrs: [0x809894C0, 0x809895C0]
- npc/tex/pgn_8_eye6_TA_tex_txt:
- addrs: [0x809895C0, 0x809896C0]
- npc/tex/pgn_8_eye7_TA_tex_txt:
- addrs: [0x809896C0, 0x809897C0]
- npc/tex/pgn_8_eye8_TA_tex_txt:
- addrs: [0x809897C0, 0x809898C0]
- npc/tex/pgn_8_tmem_txt:
- addrs: [0x809898C0, 0x80989E40]
- npc/mdl/pig_1_v:
- addrs: [0x80989E40, 0x8098B230]
- type: vtx
- npc/tex/pig_1_pal:
- addrs: [0x8098BAC0, 0x8098BAE0]
- type: pal16
- npc/tex/pig_1_eye1_TA_tex_txt:
- addrs: [0x8098BAE0, 0x8098BBE0]
- npc/tex/pig_1_eye2_TA_tex_txt:
- addrs: [0x8098BBE0, 0x8098BCE0]
- npc/tex/pig_1_eye3_TA_tex_txt:
- addrs: [0x8098BCE0, 0x8098BDE0]
- npc/tex/pig_1_eye4_TA_tex_txt:
- addrs: [0x8098BDE0, 0x8098BEE0]
- npc/tex/pig_1_eye5_TA_tex_txt:
- addrs: [0x8098BEE0, 0x8098BFE0]
- npc/tex/pig_1_eye6_TA_tex_txt:
- addrs: [0x8098BFE0, 0x8098C0E0]
- npc/tex/pig_1_eye7_TA_tex_txt:
- addrs: [0x8098C0E0, 0x8098C1E0]
- npc/tex/pig_1_eye8_TA_tex_txt:
- addrs: [0x8098C1E0, 0x8098C2E0]
- npc/tex/pig_1_mouth1_TA_tex_txt:
- addrs: [0x8098C2E0, 0x8098C3E0]
- npc/tex/pig_1_mouth2_TA_tex_txt:
- addrs: [0x8098C3E0, 0x8098C4E0]
- npc/tex/pig_1_mouth3_TA_tex_txt:
- addrs: [0x8098C4E0, 0x8098C5E0]
- npc/tex/pig_1_mouth4_TA_tex_txt:
- addrs: [0x8098C5E0, 0x8098C6E0]
- npc/tex/pig_1_mouth5_TA_tex_txt:
- addrs: [0x8098C6E0, 0x8098C7E0]
- npc/tex/pig_1_mouth6_TA_tex_txt:
- addrs: [0x8098C7E0, 0x8098C8E0]
- npc/tex/pig_1_tmem_txt:
- addrs: [0x8098C8E0, 0x8098CC60]
- npc/tex/pig_2_pal:
- addrs: [0x8098CC60, 0x8098CC80]
- type: pal16
- npc/tex/pig_2_eye1_TA_tex_txt:
- addrs: [0x8098CC80, 0x8098CD80]
- npc/tex/pig_2_eye2_TA_tex_txt:
- addrs: [0x8098CD80, 0x8098CE80]
- npc/tex/pig_2_eye3_TA_tex_txt:
- addrs: [0x8098CE80, 0x8098CF80]
- npc/tex/pig_2_eye4_TA_tex_txt:
- addrs: [0x8098CF80, 0x8098D080]
- npc/tex/pig_2_eye5_TA_tex_txt:
- addrs: [0x8098D080, 0x8098D180]
- npc/tex/pig_2_eye6_TA_tex_txt:
- addrs: [0x8098D180, 0x8098D280]
- npc/tex/pig_2_eye7_TA_tex_txt:
- addrs: [0x8098D280, 0x8098D380]
- npc/tex/pig_2_eye8_TA_tex_txt:
- addrs: [0x8098D380, 0x8098D480]
- npc/tex/pig_2_mouth1_TA_tex_txt:
- addrs: [0x8098D480, 0x8098D580]
- npc/tex/pig_2_mouth2_TA_tex_txt:
- addrs: [0x8098D580, 0x8098D680]
- npc/tex/pig_2_mouth3_TA_tex_txt:
- addrs: [0x8098D680, 0x8098D780]
- npc/tex/pig_2_mouth4_TA_tex_txt:
- addrs: [0x8098D780, 0x8098D880]
- npc/tex/pig_2_mouth5_TA_tex_txt:
- addrs: [0x8098D880, 0x8098D980]
- npc/tex/pig_2_mouth6_TA_tex_txt:
- addrs: [0x8098D980, 0x8098DA80]
- npc/tex/pig_2_tmem_txt:
- addrs: [0x8098DA80, 0x8098DE00]
- npc/tex/pig_11_pal:
- addrs: [0x8098DE00, 0x8098DE20]
- type: pal16
- npc/tex/pig_11_eye1_TA_tex_txt:
- addrs: [0x8098DE20, 0x8098DF20]
- npc/tex/pig_11_eye2_TA_tex_txt:
- addrs: [0x8098DF20, 0x8098E020]
- npc/tex/pig_11_eye3_TA_tex_txt:
- addrs: [0x8098E020, 0x8098E120]
- npc/tex/pig_11_eye4_TA_tex_txt:
- addrs: [0x8098E120, 0x8098E220]
- npc/tex/pig_11_eye5_TA_tex_txt:
- addrs: [0x8098E220, 0x8098E320]
- npc/tex/pig_11_eye6_TA_tex_txt:
- addrs: [0x8098E320, 0x8098E420]
- npc/tex/pig_11_eye7_TA_tex_txt:
- addrs: [0x8098E420, 0x8098E520]
- npc/tex/pig_11_eye8_TA_tex_txt:
- addrs: [0x8098E520, 0x8098E620]
- npc/tex/pig_11_mouth1_TA_tex_txt:
- addrs: [0x8098E620, 0x8098E720]
- npc/tex/pig_11_mouth2_TA_tex_txt:
- addrs: [0x8098E720, 0x8098E820]
- npc/tex/pig_11_mouth3_TA_tex_txt:
- addrs: [0x8098E820, 0x8098E920]
- npc/tex/pig_11_mouth4_TA_tex_txt:
- addrs: [0x8098E920, 0x8098EA20]
- npc/tex/pig_11_mouth5_TA_tex_txt:
- addrs: [0x8098EA20, 0x8098EB20]
- npc/tex/pig_11_mouth6_TA_tex_txt:
- addrs: [0x8098EB20, 0x8098EC20]
- npc/tex/pig_11_tmem_txt:
- addrs: [0x8098EC20, 0x8098EFA0]
- npc/tex/pig_3_pal:
- addrs: [0x8098EFA0, 0x8098EFC0]
- type: pal16
- npc/tex/pig_3_eye1_TA_tex_txt:
- addrs: [0x8098EFC0, 0x8098F0C0]
- npc/tex/pig_3_eye2_TA_tex_txt:
- addrs: [0x8098F0C0, 0x8098F1C0]
- npc/tex/pig_3_eye3_TA_tex_txt:
- addrs: [0x8098F1C0, 0x8098F2C0]
- npc/tex/pig_3_eye4_TA_tex_txt:
- addrs: [0x8098F2C0, 0x8098F3C0]
- npc/tex/pig_3_eye5_TA_tex_txt:
- addrs: [0x8098F3C0, 0x8098F4C0]
- npc/tex/pig_3_eye6_TA_tex_txt:
- addrs: [0x8098F4C0, 0x8098F5C0]
- npc/tex/pig_3_eye7_TA_tex_txt:
- addrs: [0x8098F5C0, 0x8098F6C0]
- npc/tex/pig_3_eye8_TA_tex_txt:
- addrs: [0x8098F6C0, 0x8098F7C0]
- npc/tex/pig_3_mouth1_TA_tex_txt:
- addrs: [0x8098F7C0, 0x8098F8C0]
- npc/tex/pig_3_mouth2_TA_tex_txt:
- addrs: [0x8098F8C0, 0x8098F9C0]
- npc/tex/pig_3_mouth3_TA_tex_txt:
- addrs: [0x8098F9C0, 0x8098FAC0]
- npc/tex/pig_3_mouth4_TA_tex_txt:
- addrs: [0x8098FAC0, 0x8098FBC0]
- npc/tex/pig_3_mouth5_TA_tex_txt:
- addrs: [0x8098FBC0, 0x8098FCC0]
- npc/tex/pig_3_mouth6_TA_tex_txt:
- addrs: [0x8098FCC0, 0x8098FDC0]
- npc/tex/pig_3_tmem_txt:
- addrs: [0x8098FDC0, 0x80990140]
- npc/tex/pig_4_pal:
- addrs: [0x80990140, 0x80990160]
- type: pal16
- npc/tex/pig_4_eye1_TA_tex_txt:
- addrs: [0x80990160, 0x80990260]
- npc/tex/pig_4_eye2_TA_tex_txt:
- addrs: [0x80990260, 0x80990360]
- npc/tex/pig_4_eye3_TA_tex_txt:
- addrs: [0x80990360, 0x80990460]
- npc/tex/pig_4_eye4_TA_tex_txt:
- addrs: [0x80990460, 0x80990560]
- npc/tex/pig_4_eye5_TA_tex_txt:
- addrs: [0x80990560, 0x80990660]
- npc/tex/pig_4_eye6_TA_tex_txt:
- addrs: [0x80990660, 0x80990760]
- npc/tex/pig_4_eye7_TA_tex_txt:
- addrs: [0x80990760, 0x80990860]
- npc/tex/pig_4_eye8_TA_tex_txt:
- addrs: [0x80990860, 0x80990960]
- npc/tex/pig_4_mouth1_TA_tex_txt:
- addrs: [0x80990960, 0x80990A60]
- npc/tex/pig_4_mouth2_TA_tex_txt:
- addrs: [0x80990A60, 0x80990B60]
- npc/tex/pig_4_mouth3_TA_tex_txt:
- addrs: [0x80990B60, 0x80990C60]
- npc/tex/pig_4_mouth4_TA_tex_txt:
- addrs: [0x80990C60, 0x80990D60]
- npc/tex/pig_4_mouth5_TA_tex_txt:
- addrs: [0x80990D60, 0x80990E60]
- npc/tex/pig_4_mouth6_TA_tex_txt:
- addrs: [0x80990E60, 0x80990F60]
- npc/tex/pig_4_tmem_txt:
- addrs: [0x80990F60, 0x809912E0]
- npc/tex/pig_5_pal:
- addrs: [0x809912E0, 0x80991300]
- type: pal16
- npc/tex/pig_5_eye1_TA_tex_txt:
- addrs: [0x80991300, 0x80991400]
- npc/tex/pig_5_eye2_TA_tex_txt:
- addrs: [0x80991400, 0x80991500]
- npc/tex/pig_5_eye3_TA_tex_txt:
- addrs: [0x80991500, 0x80991600]
- npc/tex/pig_5_eye4_TA_tex_txt:
- addrs: [0x80991600, 0x80991700]
- npc/tex/pig_5_eye5_TA_tex_txt:
- addrs: [0x80991700, 0x80991800]
- npc/tex/pig_5_eye6_TA_tex_txt:
- addrs: [0x80991800, 0x80991900]
- npc/tex/pig_5_eye7_TA_tex_txt:
- addrs: [0x80991900, 0x80991A00]
- npc/tex/pig_5_eye8_TA_tex_txt:
- addrs: [0x80991A00, 0x80991B00]
- npc/tex/pig_5_mouth1_TA_tex_txt:
- addrs: [0x80991B00, 0x80991C00]
- npc/tex/pig_5_mouth2_TA_tex_txt:
- addrs: [0x80991C00, 0x80991D00]
- npc/tex/pig_5_mouth3_TA_tex_txt:
- addrs: [0x80991D00, 0x80991E00]
- npc/tex/pig_5_mouth4_TA_tex_txt:
- addrs: [0x80991E00, 0x80991F00]
- npc/tex/pig_5_mouth5_TA_tex_txt:
- addrs: [0x80991F00, 0x80992000]
- npc/tex/pig_5_mouth6_TA_tex_txt:
- addrs: [0x80992000, 0x80992100]
- npc/tex/pig_5_tmem_txt:
- addrs: [0x80992100, 0x80992480]
- npc/tex/pig_6_pal:
- addrs: [0x80992480, 0x809924A0]
- type: pal16
- npc/tex/pig_6_eye1_TA_tex_txt:
- addrs: [0x809924A0, 0x809925A0]
- npc/tex/pig_6_eye2_TA_tex_txt:
- addrs: [0x809925A0, 0x809926A0]
- npc/tex/pig_6_eye3_TA_tex_txt:
- addrs: [0x809926A0, 0x809927A0]
- npc/tex/pig_6_eye4_TA_tex_txt:
- addrs: [0x809927A0, 0x809928A0]
- npc/tex/pig_6_eye5_TA_tex_txt:
- addrs: [0x809928A0, 0x809929A0]
- npc/tex/pig_6_eye6_TA_tex_txt:
- addrs: [0x809929A0, 0x80992AA0]
- npc/tex/pig_6_eye7_TA_tex_txt:
- addrs: [0x80992AA0, 0x80992BA0]
- npc/tex/pig_6_eye8_TA_tex_txt:
- addrs: [0x80992BA0, 0x80992CA0]
- npc/tex/pig_6_mouth1_TA_tex_txt:
- addrs: [0x80992CA0, 0x80992DA0]
- npc/tex/pig_6_mouth2_TA_tex_txt:
- addrs: [0x80992DA0, 0x80992EA0]
- npc/tex/pig_6_mouth3_TA_tex_txt:
- addrs: [0x80992EA0, 0x80992FA0]
- npc/tex/pig_6_mouth4_TA_tex_txt:
- addrs: [0x80992FA0, 0x809930A0]
- npc/tex/pig_6_mouth5_TA_tex_txt:
- addrs: [0x809930A0, 0x809931A0]
- npc/tex/pig_6_mouth6_TA_tex_txt:
- addrs: [0x809931A0, 0x809932A0]
- npc/tex/pig_6_tmem_txt:
- addrs: [0x809932A0, 0x80993620]
- npc/tex/pig_7_pal:
- addrs: [0x80993620, 0x80993640]
- type: pal16
- npc/tex/pig_7_eye1_TA_tex_txt:
- addrs: [0x80993640, 0x80993740]
- npc/tex/pig_7_eye2_TA_tex_txt:
- addrs: [0x80993740, 0x80993840]
- npc/tex/pig_7_eye3_TA_tex_txt:
- addrs: [0x80993840, 0x80993940]
- npc/tex/pig_7_eye4_TA_tex_txt:
- addrs: [0x80993940, 0x80993A40]
- npc/tex/pig_7_eye5_TA_tex_txt:
- addrs: [0x80993A40, 0x80993B40]
- npc/tex/pig_7_eye6_TA_tex_txt:
- addrs: [0x80993B40, 0x80993C40]
- npc/tex/pig_7_eye7_TA_tex_txt:
- addrs: [0x80993C40, 0x80993D40]
- npc/tex/pig_7_eye8_TA_tex_txt:
- addrs: [0x80993D40, 0x80993E40]
- npc/tex/pig_7_mouth1_TA_tex_txt:
- addrs: [0x80993E40, 0x80993F40]
- npc/tex/pig_7_mouth2_TA_tex_txt:
- addrs: [0x80993F40, 0x80994040]
- npc/tex/pig_7_mouth3_TA_tex_txt:
- addrs: [0x80994040, 0x80994140]
- npc/tex/pig_7_mouth4_TA_tex_txt:
- addrs: [0x80994140, 0x80994240]
- npc/tex/pig_7_mouth5_TA_tex_txt:
- addrs: [0x80994240, 0x80994340]
- npc/tex/pig_7_mouth6_TA_tex_txt:
- addrs: [0x80994340, 0x80994440]
- npc/tex/pig_7_tmem_txt:
- addrs: [0x80994440, 0x809947C0]
- npc/tex/pig_8_pal:
- addrs: [0x809947C0, 0x809947E0]
- type: pal16
- npc/tex/pig_8_eye1_TA_tex_txt:
- addrs: [0x809947E0, 0x809948E0]
- npc/tex/pig_8_eye2_TA_tex_txt:
- addrs: [0x809948E0, 0x809949E0]
- npc/tex/pig_8_eye3_TA_tex_txt:
- addrs: [0x809949E0, 0x80994AE0]
- npc/tex/pig_8_eye4_TA_tex_txt:
- addrs: [0x80994AE0, 0x80994BE0]
- npc/tex/pig_8_eye5_TA_tex_txt:
- addrs: [0x80994BE0, 0x80994CE0]
- npc/tex/pig_8_eye6_TA_tex_txt:
- addrs: [0x80994CE0, 0x80994DE0]
- npc/tex/pig_8_eye7_TA_tex_txt:
- addrs: [0x80994DE0, 0x80994EE0]
- npc/tex/pig_8_eye8_TA_tex_txt:
- addrs: [0x80994EE0, 0x80994FE0]
- npc/tex/pig_8_mouth1_TA_tex_txt:
- addrs: [0x80994FE0, 0x809950E0]
- npc/tex/pig_8_mouth2_TA_tex_txt:
- addrs: [0x809950E0, 0x809951E0]
- npc/tex/pig_8_mouth3_TA_tex_txt:
- addrs: [0x809951E0, 0x809952E0]
- npc/tex/pig_8_mouth4_TA_tex_txt:
- addrs: [0x809952E0, 0x809953E0]
- npc/tex/pig_8_mouth5_TA_tex_txt:
- addrs: [0x809953E0, 0x809954E0]
- npc/tex/pig_8_mouth6_TA_tex_txt:
- addrs: [0x809954E0, 0x809955E0]
- npc/tex/pig_8_tmem_txt:
- addrs: [0x809955E0, 0x80995960]
- npc/tex/pig_9_pal:
- addrs: [0x80995960, 0x80995980]
- type: pal16
- npc/tex/pig_9_eye1_TA_tex_txt:
- addrs: [0x80995980, 0x80995A80]
- npc/tex/pig_9_eye2_TA_tex_txt:
- addrs: [0x80995A80, 0x80995B80]
- npc/tex/pig_9_eye3_TA_tex_txt:
- addrs: [0x80995B80, 0x80995C80]
- npc/tex/pig_9_eye4_TA_tex_txt:
- addrs: [0x80995C80, 0x80995D80]
- npc/tex/pig_9_eye5_TA_tex_txt:
- addrs: [0x80995D80, 0x80995E80]
- npc/tex/pig_9_eye6_TA_tex_txt:
- addrs: [0x80995E80, 0x80995F80]
- npc/tex/pig_9_eye7_TA_tex_txt:
- addrs: [0x80995F80, 0x80996080]
- npc/tex/pig_9_eye8_TA_tex_txt:
- addrs: [0x80996080, 0x80996180]
- npc/tex/pig_9_mouth1_TA_tex_txt:
- addrs: [0x80996180, 0x80996280]
- npc/tex/pig_9_mouth2_TA_tex_txt:
- addrs: [0x80996280, 0x80996380]
- npc/tex/pig_9_mouth3_TA_tex_txt:
- addrs: [0x80996380, 0x80996480]
- npc/tex/pig_9_mouth4_TA_tex_txt:
- addrs: [0x80996480, 0x80996580]
- npc/tex/pig_9_mouth5_TA_tex_txt:
- addrs: [0x80996580, 0x80996680]
- npc/tex/pig_9_mouth6_TA_tex_txt:
- addrs: [0x80996680, 0x80996780]
- npc/tex/pig_9_tmem_txt:
- addrs: [0x80996780, 0x80996B00]
- npc/tex/pig_10_pal:
- addrs: [0x80996B00, 0x80996B20]
- type: pal16
- npc/tex/pig_10_eye1_TA_tex_txt:
- addrs: [0x80996B20, 0x80996C20]
- npc/tex/pig_10_eye2_TA_tex_txt:
- addrs: [0x80996C20, 0x80996D20]
- npc/tex/pig_10_eye3_TA_tex_txt:
- addrs: [0x80996D20, 0x80996E20]
- npc/tex/pig_10_eye4_TA_tex_txt:
- addrs: [0x80996E20, 0x80996F20]
- npc/tex/pig_10_eye5_TA_tex_txt:
- addrs: [0x80996F20, 0x80997020]
- npc/tex/pig_10_eye6_TA_tex_txt:
- addrs: [0x80997020, 0x80997120]
- npc/tex/pig_10_eye7_TA_tex_txt:
- addrs: [0x80997120, 0x80997220]
- npc/tex/pig_10_eye8_TA_tex_txt:
- addrs: [0x80997220, 0x80997320]
- npc/tex/pig_10_mouth1_TA_tex_txt:
- addrs: [0x80997320, 0x80997420]
- npc/tex/pig_10_mouth2_TA_tex_txt:
- addrs: [0x80997420, 0x80997520]
- npc/tex/pig_10_mouth3_TA_tex_txt:
- addrs: [0x80997520, 0x80997620]
- npc/tex/pig_10_mouth4_TA_tex_txt:
- addrs: [0x80997620, 0x80997720]
- npc/tex/pig_10_mouth5_TA_tex_txt:
- addrs: [0x80997720, 0x80997820]
- npc/tex/pig_10_mouth6_TA_tex_txt:
- addrs: [0x80997820, 0x80997920]
- npc/tex/pig_10_tmem_txt:
- addrs: [0x80997920, 0x80997CA0]
- npc/mdl/pla_1_v:
- addrs: [0x80997CA0, 0x80999950]
- type: vtx
- npc/mdl/plc_1_v:
- addrs: [0x8099A318, 0x8099BA48]
- type: vtx
- npc/tex/plc_1_pal:
- addrs: [0x8099C420, 0x8099C440]
- type: pal16
- npc/tex/plc_1_eye1_TA_tex_txt:
- addrs: [0x8099C440, 0x8099C540]
- npc/tex/plc_1_eye2_TA_tex_txt:
- addrs: [0x8099C540, 0x8099C640]
- npc/tex/plc_1_eye3_TA_tex_txt:
- addrs: [0x8099C640, 0x8099C740]
- npc/tex/plc_1_eye4_TA_tex_txt:
- addrs: [0x8099C740, 0x8099C840]
- npc/tex/plc_1_eye5_TA_tex_txt:
- addrs: [0x8099C840, 0x8099C940]
- npc/tex/plc_1_eye6_TA_tex_txt:
- addrs: [0x8099C940, 0x8099CA40]
- npc/tex/plc_1_eye7_TA_tex_txt:
- addrs: [0x8099CA40, 0x8099CB40]
- npc/tex/plc_1_eye8_TA_tex_txt:
- addrs: [0x8099CB40, 0x8099CC40]
- npc/tex/plc_1_mouth1_TA_tex_txt:
- addrs: [0x8099CC40, 0x8099CD40]
- npc/tex/plc_1_mouth2_TA_tex_txt:
- addrs: [0x8099CD40, 0x8099CE40]
- npc/tex/plc_1_mouth3_TA_tex_txt:
- addrs: [0x8099CE40, 0x8099CF40]
- npc/tex/plc_1_mouth4_TA_tex_txt:
- addrs: [0x8099CF40, 0x8099D040]
- npc/tex/plc_1_mouth5_TA_tex_txt:
- addrs: [0x8099D040, 0x8099D140]
- npc/tex/plc_1_mouth6_TA_tex_txt:
- addrs: [0x8099D140, 0x8099D240]
- npc/tex/plc_1_tmem_txt:
- addrs: [0x8099D240, 0x8099D900]
- npc/tex/pla_1_pal:
- addrs: [0x8099D900, 0x8099D920]
- type: pal16
- npc/tex/pla_1_eye1_TA_tex_txt:
- addrs: [0x8099D920, 0x8099DA20]
- npc/tex/pla_1_eye2_TA_tex_txt:
- addrs: [0x8099DA20, 0x8099DB20]
- npc/tex/pla_1_eye3_TA_tex_txt:
- addrs: [0x8099DB20, 0x8099DC20]
- npc/tex/pla_1_eye4_TA_tex_txt:
- addrs: [0x8099DC20, 0x8099DD20]
- npc/tex/pla_1_eye5_TA_tex_txt:
- addrs: [0x8099DD20, 0x8099DE20]
- npc/tex/pla_1_eye6_TA_tex_txt:
- addrs: [0x8099DE20, 0x8099DF20]
- npc/tex/pla_1_eye7_TA_tex_txt:
- addrs: [0x8099DF20, 0x8099E020]
- npc/tex/pla_1_eye8_TA_tex_txt:
- addrs: [0x8099E020, 0x8099E120]
- npc/tex/pla_1_mouth1_TA_tex_txt:
- addrs: [0x8099E120, 0x8099E220]
- npc/tex/pla_1_mouth2_TA_tex_txt:
- addrs: [0x8099E220, 0x8099E320]
- npc/tex/pla_1_mouth3_TA_tex_txt:
- addrs: [0x8099E320, 0x8099E420]
- npc/tex/pla_1_mouth4_TA_tex_txt:
- addrs: [0x8099E420, 0x8099E520]
- npc/tex/pla_1_mouth5_TA_tex_txt:
- addrs: [0x8099E520, 0x8099E620]
- npc/tex/pla_1_mouth6_TA_tex_txt:
- addrs: [0x8099E620, 0x8099E720]
- npc/tex/pla_1_tmem_txt:
- addrs: [0x8099E720, 0x8099ECA0]
- npc/mdl/pga_1_v:
- addrs: [0x8099ECA0, 0x809A06C0]
- type: vtx
- npc/tex/pga_1_pal:
- addrs: [0x809A11A0, 0x809A11C0]
- type: pal16
- npc/tex/pga_1_eye1_TA_tex_txt:
- addrs: [0x809A11C0, 0x809A12C0]
- npc/tex/pga_1_eye2_TA_tex_txt:
- addrs: [0x809A12C0, 0x809A13C0]
- npc/tex/pga_1_eye3_TA_tex_txt:
- addrs: [0x809A13C0, 0x809A14C0]
- npc/tex/pga_1_eye4_TA_tex_txt:
- addrs: [0x809A14C0, 0x809A15C0]
- npc/tex/pga_1_eye5_TA_tex_txt:
- addrs: [0x809A15C0, 0x809A16C0]
- npc/tex/pga_1_eye6_TA_tex_txt:
- addrs: [0x809A16C0, 0x809A17C0]
- npc/tex/pga_1_eye7_TA_tex_txt:
- addrs: [0x809A17C0, 0x809A18C0]
- npc/tex/pga_1_eye8_TA_tex_txt:
- addrs: [0x809A18C0, 0x809A19C0]
- npc/tex/pga_1_tmem_txt:
- addrs: [0x809A19C0, 0x809A2000]
- npc/mdl/pgb_1_v:
- addrs: [0x809A2000, 0x809A3990]
- type: vtx
- npc/tex/pgb_1_pal:
- addrs: [0x809A4460, 0x809A4480]
- type: pal16
- npc/tex/pgb_1_eye1_TA_tex_txt:
- addrs: [0x809A4480, 0x809A4580]
- npc/tex/pgb_1_eye2_TA_tex_txt:
- addrs: [0x809A4580, 0x809A4680]
- npc/tex/pgb_1_eye3_TA_tex_txt:
- addrs: [0x809A4680, 0x809A4780]
- npc/tex/pgb_1_eye4_TA_tex_txt:
- addrs: [0x809A4780, 0x809A4880]
- npc/tex/pgb_1_eye5_TA_tex_txt:
- addrs: [0x809A4880, 0x809A4980]
- npc/tex/pgb_1_eye6_TA_tex_txt:
- addrs: [0x809A4980, 0x809A4A80]
- npc/tex/pgb_1_eye7_TA_tex_txt:
- addrs: [0x809A4A80, 0x809A4B80]
- npc/tex/pgb_1_eye8_TA_tex_txt:
- addrs: [0x809A4B80, 0x809A4C80]
- npc/tex/pgb_1_tmem_txt:
- addrs: [0x809A4C80, 0x809A5400]
- npc/mdl/plb_1_v:
- addrs: [0x809A5400, 0x809A6E80]
- type: vtx
- npc/tex/plb_1_pal:
- addrs: [0x809A7980, 0x809A79A0]
- type: pal16
- npc/tex/plb_1_eye1_TA_tex_txt:
- addrs: [0x809A79A0, 0x809A7AA0]
- npc/tex/plb_1_eye2_TA_tex_txt:
- addrs: [0x809A7AA0, 0x809A7BA0]
- npc/tex/plb_1_eye3_TA_tex_txt:
- addrs: [0x809A7BA0, 0x809A7CA0]
- npc/tex/plb_1_eye4_TA_tex_txt:
- addrs: [0x809A7CA0, 0x809A7DA0]
- npc/tex/plb_1_eye5_TA_tex_txt:
- addrs: [0x809A7DA0, 0x809A7EA0]
- npc/tex/plb_1_eye6_TA_tex_txt:
- addrs: [0x809A7EA0, 0x809A7FA0]
- npc/tex/plb_1_eye7_TA_tex_txt:
- addrs: [0x809A7FA0, 0x809A80A0]
- npc/tex/plb_1_eye8_TA_tex_txt:
- addrs: [0x809A80A0, 0x809A81A0]
- npc/tex/plb_1_tmem_txt:
- addrs: [0x809A81A0, 0x809A8920]
- npc/mdl/rbt_1_v:
- addrs: [0x809A8920, 0x809A9EC0]
- type: vtx
- npc/tex/rbt_1_pal:
- addrs: [0x809AA7C0, 0x809AA7E0]
- type: pal16
- npc/tex/rbt_1_eye1_TA_tex_txt:
- addrs: [0x809AA7E0, 0x809AA8E0]
- npc/tex/rbt_1_eye2_TA_tex_txt:
- addrs: [0x809AA8E0, 0x809AA9E0]
- npc/tex/rbt_1_eye3_TA_tex_txt:
- addrs: [0x809AA9E0, 0x809AAAE0]
- npc/tex/rbt_1_eye4_TA_tex_txt:
- addrs: [0x809AAAE0, 0x809AABE0]
- npc/tex/rbt_1_eye5_TA_tex_txt:
- addrs: [0x809AABE0, 0x809AACE0]
- npc/tex/rbt_1_eye6_TA_tex_txt:
- addrs: [0x809AACE0, 0x809AADE0]
- npc/tex/rbt_1_eye7_TA_tex_txt:
- addrs: [0x809AADE0, 0x809AAEE0]
- npc/tex/rbt_1_eye8_TA_tex_txt:
- addrs: [0x809AAEE0, 0x809AAFE0]
- npc/tex/rbt_1_mouth1_TA_tex_txt:
- addrs: [0x809AAFE0, 0x809AB0E0]
- npc/tex/rbt_1_mouth2_TA_tex_txt:
- addrs: [0x809AB0E0, 0x809AB1E0]
- npc/tex/rbt_1_mouth3_TA_tex_txt:
- addrs: [0x809AB1E0, 0x809AB2E0]
- npc/tex/rbt_1_mouth4_TA_tex_txt:
- addrs: [0x809AB2E0, 0x809AB3E0]
- npc/tex/rbt_1_mouth5_TA_tex_txt:
- addrs: [0x809AB3E0, 0x809AB4E0]
- npc/tex/rbt_1_mouth6_TA_tex_txt:
- addrs: [0x809AB4E0, 0x809AB5E0]
- npc/tex/rbt_1_tmem_txt:
- addrs: [0x809AB5E0, 0x809AB9E0]
- npc/tex/rbt_2_pal:
- addrs: [0x809AB9E0, 0x809ABA00]
- type: pal16
- npc/tex/rbt_2_eye1_TA_tex_txt:
- addrs: [0x809ABA00, 0x809ABB00]
- npc/tex/rbt_2_eye2_TA_tex_txt:
- addrs: [0x809ABB00, 0x809ABC00]
- npc/tex/rbt_2_eye3_TA_tex_txt:
- addrs: [0x809ABC00, 0x809ABD00]
- npc/tex/rbt_2_eye4_TA_tex_txt:
- addrs: [0x809ABD00, 0x809ABE00]
- npc/tex/rbt_2_eye5_TA_tex_txt:
- addrs: [0x809ABE00, 0x809ABF00]
- npc/tex/rbt_2_eye6_TA_tex_txt:
- addrs: [0x809ABF00, 0x809AC000]
- npc/tex/rbt_2_eye7_TA_tex_txt:
- addrs: [0x809AC000, 0x809AC100]
- npc/tex/rbt_2_eye8_TA_tex_txt:
- addrs: [0x809AC100, 0x809AC200]
- npc/tex/rbt_2_mouth1_TA_tex_txt:
- addrs: [0x809AC200, 0x809AC300]
- npc/tex/rbt_2_mouth2_TA_tex_txt:
- addrs: [0x809AC300, 0x809AC400]
- npc/tex/rbt_2_mouth3_TA_tex_txt:
- addrs: [0x809AC400, 0x809AC500]
- npc/tex/rbt_2_mouth4_TA_tex_txt:
- addrs: [0x809AC500, 0x809AC600]
- npc/tex/rbt_2_mouth5_TA_tex_txt:
- addrs: [0x809AC600, 0x809AC700]
- npc/tex/rbt_2_mouth6_TA_tex_txt:
- addrs: [0x809AC700, 0x809AC800]
- npc/tex/rbt_2_tmem_txt:
- addrs: [0x809AC800, 0x809ACC00]
- npc/tex/rbt_11_pal:
- addrs: [0x809ACC00, 0x809ACC20]
- type: pal16
- npc/tex/rbt_11_eye1_TA_tex_txt:
- addrs: [0x809ACC20, 0x809ACD20]
- npc/tex/rbt_11_eye2_TA_tex_txt:
- addrs: [0x809ACD20, 0x809ACE20]
- npc/tex/rbt_11_eye3_TA_tex_txt:
- addrs: [0x809ACE20, 0x809ACF20]
- npc/tex/rbt_11_eye4_TA_tex_txt:
- addrs: [0x809ACF20, 0x809AD020]
- npc/tex/rbt_11_eye5_TA_tex_txt:
- addrs: [0x809AD020, 0x809AD120]
- npc/tex/rbt_11_eye6_TA_tex_txt:
- addrs: [0x809AD120, 0x809AD220]
- npc/tex/rbt_11_eye7_TA_tex_txt:
- addrs: [0x809AD220, 0x809AD320]
- npc/tex/rbt_11_eye8_TA_tex_txt:
- addrs: [0x809AD320, 0x809AD420]
- npc/tex/rbt_11_mouth1_TA_tex_txt:
- addrs: [0x809AD420, 0x809AD520]
- npc/tex/rbt_11_mouth2_TA_tex_txt:
- addrs: [0x809AD520, 0x809AD620]
- npc/tex/rbt_11_mouth3_TA_tex_txt:
- addrs: [0x809AD620, 0x809AD720]
- npc/tex/rbt_11_mouth4_TA_tex_txt:
- addrs: [0x809AD720, 0x809AD820]
- npc/tex/rbt_11_mouth5_TA_tex_txt:
- addrs: [0x809AD820, 0x809AD920]
- npc/tex/rbt_11_mouth6_TA_tex_txt:
- addrs: [0x809AD920, 0x809ADA20]
- npc/tex/rbt_11_tmem_txt:
- addrs: [0x809ADA20, 0x809ADE20]
- npc/tex/rbt_3_pal:
- addrs: [0x809ADE20, 0x809ADE40]
- type: pal16
- npc/tex/rbt_3_eye1_TA_tex_txt:
- addrs: [0x809ADE40, 0x809ADF40]
- npc/tex/rbt_3_eye2_TA_tex_txt:
- addrs: [0x809ADF40, 0x809AE040]
- npc/tex/rbt_3_eye3_TA_tex_txt:
- addrs: [0x809AE040, 0x809AE140]
- npc/tex/rbt_3_eye4_TA_tex_txt:
- addrs: [0x809AE140, 0x809AE240]
- npc/tex/rbt_3_eye5_TA_tex_txt:
- addrs: [0x809AE240, 0x809AE340]
- npc/tex/rbt_3_eye6_TA_tex_txt:
- addrs: [0x809AE340, 0x809AE440]
- npc/tex/rbt_3_eye7_TA_tex_txt:
- addrs: [0x809AE440, 0x809AE540]
- npc/tex/rbt_3_eye8_TA_tex_txt:
- addrs: [0x809AE540, 0x809AE640]
- npc/tex/rbt_3_mouth1_TA_tex_txt:
- addrs: [0x809AE640, 0x809AE740]
- npc/tex/rbt_3_mouth2_TA_tex_txt:
- addrs: [0x809AE740, 0x809AE840]
- npc/tex/rbt_3_mouth3_TA_tex_txt:
- addrs: [0x809AE840, 0x809AE940]
- npc/tex/rbt_3_mouth4_TA_tex_txt:
- addrs: [0x809AE940, 0x809AEA40]
- npc/tex/rbt_3_mouth5_TA_tex_txt:
- addrs: [0x809AEA40, 0x809AEB40]
- npc/tex/rbt_3_mouth6_TA_tex_txt:
- addrs: [0x809AEB40, 0x809AEC40]
- npc/tex/rbt_3_tmem_txt:
- addrs: [0x809AEC40, 0x809AF040]
- npc/tex/rbt_4_pal:
- addrs: [0x809AF040, 0x809AF060]
- type: pal16
- npc/tex/rbt_4_eye1_TA_tex_txt:
- addrs: [0x809AF060, 0x809AF160]
- npc/tex/rbt_4_eye2_TA_tex_txt:
- addrs: [0x809AF160, 0x809AF260]
- npc/tex/rbt_4_eye3_TA_tex_txt:
- addrs: [0x809AF260, 0x809AF360]
- npc/tex/rbt_4_eye4_TA_tex_txt:
- addrs: [0x809AF360, 0x809AF460]
- npc/tex/rbt_4_eye5_TA_tex_txt:
- addrs: [0x809AF460, 0x809AF560]
- npc/tex/rbt_4_eye6_TA_tex_txt:
- addrs: [0x809AF560, 0x809AF660]
- npc/tex/rbt_4_eye7_TA_tex_txt:
- addrs: [0x809AF660, 0x809AF760]
- npc/tex/rbt_4_eye8_TA_tex_txt:
- addrs: [0x809AF760, 0x809AF860]
- npc/tex/rbt_4_mouth1_TA_tex_txt:
- addrs: [0x809AF860, 0x809AF960]
- npc/tex/rbt_4_mouth2_TA_tex_txt:
- addrs: [0x809AF960, 0x809AFA60]
- npc/tex/rbt_4_mouth3_TA_tex_txt:
- addrs: [0x809AFA60, 0x809AFB60]
- npc/tex/rbt_4_mouth4_TA_tex_txt:
- addrs: [0x809AFB60, 0x809AFC60]
- npc/tex/rbt_4_mouth5_TA_tex_txt:
- addrs: [0x809AFC60, 0x809AFD60]
- npc/tex/rbt_4_mouth6_TA_tex_txt:
- addrs: [0x809AFD60, 0x809AFE60]
- npc/tex/rbt_4_tmem_txt:
- addrs: [0x809AFE60, 0x809B0260]
- npc/tex/rbt_5_pal:
- addrs: [0x809B0260, 0x809B0280]
- type: pal16
- npc/tex/rbt_5_eye1_TA_tex_txt:
- addrs: [0x809B0280, 0x809B0380]
- npc/tex/rbt_5_eye2_TA_tex_txt:
- addrs: [0x809B0380, 0x809B0480]
- npc/tex/rbt_5_eye3_TA_tex_txt:
- addrs: [0x809B0480, 0x809B0580]
- npc/tex/rbt_5_eye4_TA_tex_txt:
- addrs: [0x809B0580, 0x809B0680]
- npc/tex/rbt_5_eye5_TA_tex_txt:
- addrs: [0x809B0680, 0x809B0780]
- npc/tex/rbt_5_eye6_TA_tex_txt:
- addrs: [0x809B0780, 0x809B0880]
- npc/tex/rbt_5_eye7_TA_tex_txt:
- addrs: [0x809B0880, 0x809B0980]
- npc/tex/rbt_5_eye8_TA_tex_txt:
- addrs: [0x809B0980, 0x809B0A80]
- npc/tex/rbt_5_mouth1_TA_tex_txt:
- addrs: [0x809B0A80, 0x809B0B80]
- npc/tex/rbt_5_mouth2_TA_tex_txt:
- addrs: [0x809B0B80, 0x809B0C80]
- npc/tex/rbt_5_mouth3_TA_tex_txt:
- addrs: [0x809B0C80, 0x809B0D80]
- npc/tex/rbt_5_mouth4_TA_tex_txt:
- addrs: [0x809B0D80, 0x809B0E80]
- npc/tex/rbt_5_mouth5_TA_tex_txt:
- addrs: [0x809B0E80, 0x809B0F80]
- npc/tex/rbt_5_mouth6_TA_tex_txt:
- addrs: [0x809B0F80, 0x809B1080]
- npc/tex/rbt_5_tmem_txt:
- addrs: [0x809B1080, 0x809B1480]
- npc/tex/rbt_6_pal:
- addrs: [0x809B1480, 0x809B14A0]
- type: pal16
- npc/tex/rbt_6_eye1_TA_tex_txt:
- addrs: [0x809B14A0, 0x809B15A0]
- npc/tex/rbt_6_eye2_TA_tex_txt:
- addrs: [0x809B15A0, 0x809B16A0]
- npc/tex/rbt_6_eye3_TA_tex_txt:
- addrs: [0x809B16A0, 0x809B17A0]
- npc/tex/rbt_6_eye4_TA_tex_txt:
- addrs: [0x809B17A0, 0x809B18A0]
- npc/tex/rbt_6_eye5_TA_tex_txt:
- addrs: [0x809B18A0, 0x809B19A0]
- npc/tex/rbt_6_eye6_TA_tex_txt:
- addrs: [0x809B19A0, 0x809B1AA0]
- npc/tex/rbt_6_eye7_TA_tex_txt:
- addrs: [0x809B1AA0, 0x809B1BA0]
- npc/tex/rbt_6_eye8_TA_tex_txt:
- addrs: [0x809B1BA0, 0x809B1CA0]
- npc/tex/rbt_6_mouth1_TA_tex_txt:
- addrs: [0x809B1CA0, 0x809B1DA0]
- npc/tex/rbt_6_mouth2_TA_tex_txt:
- addrs: [0x809B1DA0, 0x809B1EA0]
- npc/tex/rbt_6_mouth3_TA_tex_txt:
- addrs: [0x809B1EA0, 0x809B1FA0]
- npc/tex/rbt_6_mouth4_TA_tex_txt:
- addrs: [0x809B1FA0, 0x809B20A0]
- npc/tex/rbt_6_mouth5_TA_tex_txt:
- addrs: [0x809B20A0, 0x809B21A0]
- npc/tex/rbt_6_mouth6_TA_tex_txt:
- addrs: [0x809B21A0, 0x809B22A0]
- npc/tex/rbt_6_tmem_txt:
- addrs: [0x809B22A0, 0x809B26A0]
- npc/tex/rbt_7_pal:
- addrs: [0x809B26A0, 0x809B26C0]
- type: pal16
- npc/tex/rbt_7_eye1_TA_tex_txt:
- addrs: [0x809B26C0, 0x809B27C0]
- npc/tex/rbt_7_eye2_TA_tex_txt:
- addrs: [0x809B27C0, 0x809B28C0]
- npc/tex/rbt_7_eye3_TA_tex_txt:
- addrs: [0x809B28C0, 0x809B29C0]
- npc/tex/rbt_7_eye4_TA_tex_txt:
- addrs: [0x809B29C0, 0x809B2AC0]
- npc/tex/rbt_7_eye5_TA_tex_txt:
- addrs: [0x809B2AC0, 0x809B2BC0]
- npc/tex/rbt_7_eye6_TA_tex_txt:
- addrs: [0x809B2BC0, 0x809B2CC0]
- npc/tex/rbt_7_eye7_TA_tex_txt:
- addrs: [0x809B2CC0, 0x809B2DC0]
- npc/tex/rbt_7_eye8_TA_tex_txt:
- addrs: [0x809B2DC0, 0x809B2EC0]
- npc/tex/rbt_7_mouth1_TA_tex_txt:
- addrs: [0x809B2EC0, 0x809B2FC0]
- npc/tex/rbt_7_mouth2_TA_tex_txt:
- addrs: [0x809B2FC0, 0x809B30C0]
- npc/tex/rbt_7_mouth3_TA_tex_txt:
- addrs: [0x809B30C0, 0x809B31C0]
- npc/tex/rbt_7_mouth4_TA_tex_txt:
- addrs: [0x809B31C0, 0x809B32C0]
- npc/tex/rbt_7_mouth5_TA_tex_txt:
- addrs: [0x809B32C0, 0x809B33C0]
- npc/tex/rbt_7_mouth6_TA_tex_txt:
- addrs: [0x809B33C0, 0x809B34C0]
- npc/tex/rbt_7_tmem_txt:
- addrs: [0x809B34C0, 0x809B38C0]
- npc/tex/rbt_8_pal:
- addrs: [0x809B38C0, 0x809B38E0]
- type: pal16
- npc/tex/rbt_8_eye1_TA_tex_txt:
- addrs: [0x809B38E0, 0x809B39E0]
- npc/tex/rbt_8_eye2_TA_tex_txt:
- addrs: [0x809B39E0, 0x809B3AE0]
- npc/tex/rbt_8_eye3_TA_tex_txt:
- addrs: [0x809B3AE0, 0x809B3BE0]
- npc/tex/rbt_8_eye4_TA_tex_txt:
- addrs: [0x809B3BE0, 0x809B3CE0]
- npc/tex/rbt_8_eye5_TA_tex_txt:
- addrs: [0x809B3CE0, 0x809B3DE0]
- npc/tex/rbt_8_eye6_TA_tex_txt:
- addrs: [0x809B3DE0, 0x809B3EE0]
- npc/tex/rbt_8_eye7_TA_tex_txt:
- addrs: [0x809B3EE0, 0x809B3FE0]
- npc/tex/rbt_8_eye8_TA_tex_txt:
- addrs: [0x809B3FE0, 0x809B40E0]
- npc/tex/rbt_8_mouth1_TA_tex_txt:
- addrs: [0x809B40E0, 0x809B41E0]
- npc/tex/rbt_8_mouth2_TA_tex_txt:
- addrs: [0x809B41E0, 0x809B42E0]
- npc/tex/rbt_8_mouth3_TA_tex_txt:
- addrs: [0x809B42E0, 0x809B43E0]
- npc/tex/rbt_8_mouth4_TA_tex_txt:
- addrs: [0x809B43E0, 0x809B44E0]
- npc/tex/rbt_8_mouth5_TA_tex_txt:
- addrs: [0x809B44E0, 0x809B45E0]
- npc/tex/rbt_8_mouth6_TA_tex_txt:
- addrs: [0x809B45E0, 0x809B46E0]
- npc/tex/rbt_8_tmem_txt:
- addrs: [0x809B46E0, 0x809B4AE0]
- npc/tex/rbt_9_pal:
- addrs: [0x809B4AE0, 0x809B4B00]
- type: pal16
- npc/tex/rbt_9_eye1_TA_tex_txt:
- addrs: [0x809B4B00, 0x809B4C00]
- npc/tex/rbt_9_eye2_TA_tex_txt:
- addrs: [0x809B4C00, 0x809B4D00]
- npc/tex/rbt_9_eye3_TA_tex_txt:
- addrs: [0x809B4D00, 0x809B4E00]
- npc/tex/rbt_9_eye4_TA_tex_txt:
- addrs: [0x809B4E00, 0x809B4F00]
- npc/tex/rbt_9_eye5_TA_tex_txt:
- addrs: [0x809B4F00, 0x809B5000]
- npc/tex/rbt_9_eye6_TA_tex_txt:
- addrs: [0x809B5000, 0x809B5100]
- npc/tex/rbt_9_eye7_TA_tex_txt:
- addrs: [0x809B5100, 0x809B5200]
- npc/tex/rbt_9_eye8_TA_tex_txt:
- addrs: [0x809B5200, 0x809B5300]
- npc/tex/rbt_9_mouth1_TA_tex_txt:
- addrs: [0x809B5300, 0x809B5400]
- npc/tex/rbt_9_mouth2_TA_tex_txt:
- addrs: [0x809B5400, 0x809B5500]
- npc/tex/rbt_9_mouth3_TA_tex_txt:
- addrs: [0x809B5500, 0x809B5600]
- npc/tex/rbt_9_mouth4_TA_tex_txt:
- addrs: [0x809B5600, 0x809B5700]
- npc/tex/rbt_9_mouth5_TA_tex_txt:
- addrs: [0x809B5700, 0x809B5800]
- npc/tex/rbt_9_mouth6_TA_tex_txt:
- addrs: [0x809B5800, 0x809B5900]
- npc/tex/rbt_9_tmem_txt:
- addrs: [0x809B5900, 0x809B5D00]
- npc/tex/rbt_10_pal:
- addrs: [0x809B5D00, 0x809B5D20]
- type: pal16
- npc/tex/rbt_10_eye1_TA_tex_txt:
- addrs: [0x809B5D20, 0x809B5E20]
- npc/tex/rbt_10_eye2_TA_tex_txt:
- addrs: [0x809B5E20, 0x809B5F20]
- npc/tex/rbt_10_eye3_TA_tex_txt:
- addrs: [0x809B5F20, 0x809B6020]
- npc/tex/rbt_10_eye4_TA_tex_txt:
- addrs: [0x809B6020, 0x809B6120]
- npc/tex/rbt_10_eye5_TA_tex_txt:
- addrs: [0x809B6120, 0x809B6220]
- npc/tex/rbt_10_eye6_TA_tex_txt:
- addrs: [0x809B6220, 0x809B6320]
- npc/tex/rbt_10_eye7_TA_tex_txt:
- addrs: [0x809B6320, 0x809B6420]
- npc/tex/rbt_10_eye8_TA_tex_txt:
- addrs: [0x809B6420, 0x809B6520]
- npc/tex/rbt_10_mouth1_TA_tex_txt:
- addrs: [0x809B6520, 0x809B6620]
- npc/tex/rbt_10_mouth2_TA_tex_txt:
- addrs: [0x809B6620, 0x809B6720]
- npc/tex/rbt_10_mouth3_TA_tex_txt:
- addrs: [0x809B6720, 0x809B6820]
- npc/tex/rbt_10_mouth4_TA_tex_txt:
- addrs: [0x809B6820, 0x809B6920]
- npc/tex/rbt_10_mouth5_TA_tex_txt:
- addrs: [0x809B6920, 0x809B6A20]
- npc/tex/rbt_10_mouth6_TA_tex_txt:
- addrs: [0x809B6A20, 0x809B6B20]
- npc/tex/rbt_10_tmem_txt:
- addrs: [0x809B6B20, 0x809B6F20]
- npc/mdl/mob_1_v:
- addrs: [0x809B6F20, 0x809B82D0]
- type: vtx
- npc/tex/mob_1_pal:
- addrs: [0x809B8AA0, 0x809B8AC0]
- type: pal16
- npc/tex/mob_1_eye1_TA_tex_txt:
- addrs: [0x809B8AC0, 0x809B8BC0]
- npc/tex/mob_1_eye2_TA_tex_txt:
- addrs: [0x809B8BC0, 0x809B8CC0]
- npc/tex/mob_1_eye3_TA_tex_txt:
- addrs: [0x809B8CC0, 0x809B8DC0]
- npc/tex/mob_1_eye4_TA_tex_txt:
- addrs: [0x809B8DC0, 0x809B8EC0]
- npc/tex/mob_1_eye5_TA_tex_txt:
- addrs: [0x809B8EC0, 0x809B8FC0]
- npc/tex/mob_1_eye6_TA_tex_txt:
- addrs: [0x809B8FC0, 0x809B90C0]
- npc/tex/mob_1_eye7_TA_tex_txt:
- addrs: [0x809B90C0, 0x809B91C0]
- npc/tex/mob_1_eye8_TA_tex_txt:
- addrs: [0x809B91C0, 0x809B92C0]
- npc/tex/mob_1_mouth1_TA_tex_txt:
- addrs: [0x809B92C0, 0x809B93C0]
- npc/tex/mob_1_mouth2_TA_tex_txt:
- addrs: [0x809B93C0, 0x809B94C0]
- npc/tex/mob_1_mouth3_TA_tex_txt:
- addrs: [0x809B94C0, 0x809B95C0]
- npc/tex/mob_1_mouth4_TA_tex_txt:
- addrs: [0x809B95C0, 0x809B96C0]
- npc/tex/mob_1_mouth5_TA_tex_txt:
- addrs: [0x809B96C0, 0x809B97C0]
- npc/tex/mob_1_mouth6_TA_tex_txt:
- addrs: [0x809B97C0, 0x809B98C0]
- npc/tex/mob_1_tmem_txt:
- addrs: [0x809B98C0, 0x809B9F40]
- npc/mdl/rhn_1_v:
- addrs: [0x809BA340, 0x809BBF40]
- type: vtx
- npc/tex/rhn_1_pal:
- addrs: [0x809BCB00, 0x809BCB20]
- type: pal16
- npc/tex/rhn_1_eye1_TA_tex_txt:
- addrs: [0x809BCB20, 0x809BCC20]
- npc/tex/rhn_1_eye2_TA_tex_txt:
- addrs: [0x809BCC20, 0x809BCD20]
- npc/tex/rhn_1_eye3_TA_tex_txt:
- addrs: [0x809BCD20, 0x809BCE20]
- npc/tex/rhn_1_eye4_TA_tex_txt:
- addrs: [0x809BCE20, 0x809BCF20]
- npc/tex/rhn_1_eye5_TA_tex_txt:
- addrs: [0x809BCF20, 0x809BD020]
- npc/tex/rhn_1_eye6_TA_tex_txt:
- addrs: [0x809BD020, 0x809BD120]
- npc/tex/rhn_1_eye7_TA_tex_txt:
- addrs: [0x809BD120, 0x809BD220]
- npc/tex/rhn_1_eye8_TA_tex_txt:
- addrs: [0x809BD220, 0x809BD320]
- npc/tex/rhn_1_mouth1_TA_tex_txt:
- addrs: [0x809BD320, 0x809BD420]
- npc/tex/rhn_1_mouth2_TA_tex_txt:
- addrs: [0x809BD420, 0x809BD520]
- npc/tex/rhn_1_mouth3_TA_tex_txt:
- addrs: [0x809BD520, 0x809BD620]
- npc/tex/rhn_1_mouth4_TA_tex_txt:
- addrs: [0x809BD620, 0x809BD720]
- npc/tex/rhn_1_mouth5_TA_tex_txt:
- addrs: [0x809BD720, 0x809BD820]
- npc/tex/rhn_1_mouth6_TA_tex_txt:
- addrs: [0x809BD820, 0x809BD920]
- npc/tex/rhn_1_tmem_txt:
- addrs: [0x809BD920, 0x809BDD20]
- npc/tex/rhn_2_pal:
- addrs: [0x809BDD20, 0x809BDD40]
- type: pal16
- npc/tex/rhn_2_eye1_TA_tex_txt:
- addrs: [0x809BDD40, 0x809BDE40]
- npc/tex/rhn_2_eye2_TA_tex_txt:
- addrs: [0x809BDE40, 0x809BDF40]
- npc/tex/rhn_2_eye3_TA_tex_txt:
- addrs: [0x809BDF40, 0x809BE040]
- npc/tex/rhn_2_eye4_TA_tex_txt:
- addrs: [0x809BE040, 0x809BE140]
- npc/tex/rhn_2_eye5_TA_tex_txt:
- addrs: [0x809BE140, 0x809BE240]
- npc/tex/rhn_2_eye6_TA_tex_txt:
- addrs: [0x809BE240, 0x809BE340]
- npc/tex/rhn_2_eye7_TA_tex_txt:
- addrs: [0x809BE340, 0x809BE440]
- npc/tex/rhn_2_eye8_TA_tex_txt:
- addrs: [0x809BE440, 0x809BE540]
- npc/tex/rhn_2_mouth1_TA_tex_txt:
- addrs: [0x809BE540, 0x809BE640]
- npc/tex/rhn_2_mouth2_TA_tex_txt:
- addrs: [0x809BE640, 0x809BE740]
- npc/tex/rhn_2_mouth3_TA_tex_txt:
- addrs: [0x809BE740, 0x809BE840]
- npc/tex/rhn_2_mouth4_TA_tex_txt:
- addrs: [0x809BE840, 0x809BE940]
- npc/tex/rhn_2_mouth5_TA_tex_txt:
- addrs: [0x809BE940, 0x809BEA40]
- npc/tex/rhn_2_mouth6_TA_tex_txt:
- addrs: [0x809BEA40, 0x809BEB40]
- npc/tex/rhn_2_tmem_txt:
- addrs: [0x809BEB40, 0x809BEF40]
- npc/tex/rhn_3_pal:
- addrs: [0x809BEF40, 0x809BEF60]
- type: pal16
- npc/tex/rhn_3_eye1_TA_tex_txt:
- addrs: [0x809BEF60, 0x809BF060]
- npc/tex/rhn_3_eye2_TA_tex_txt:
- addrs: [0x809BF060, 0x809BF160]
- npc/tex/rhn_3_eye3_TA_tex_txt:
- addrs: [0x809BF160, 0x809BF260]
- npc/tex/rhn_3_eye4_TA_tex_txt:
- addrs: [0x809BF260, 0x809BF360]
- npc/tex/rhn_3_eye5_TA_tex_txt:
- addrs: [0x809BF360, 0x809BF460]
- npc/tex/rhn_3_eye6_TA_tex_txt:
- addrs: [0x809BF460, 0x809BF560]
- npc/tex/rhn_3_eye7_TA_tex_txt:
- addrs: [0x809BF560, 0x809BF660]
- npc/tex/rhn_3_eye8_TA_tex_txt:
- addrs: [0x809BF660, 0x809BF760]
- npc/tex/rhn_3_mouth1_TA_tex_txt:
- addrs: [0x809BF760, 0x809BF860]
- npc/tex/rhn_3_mouth2_TA_tex_txt:
- addrs: [0x809BF860, 0x809BF960]
- npc/tex/rhn_3_mouth3_TA_tex_txt:
- addrs: [0x809BF960, 0x809BFA60]
- npc/tex/rhn_3_mouth4_TA_tex_txt:
- addrs: [0x809BFA60, 0x809BFB60]
- npc/tex/rhn_3_mouth5_TA_tex_txt:
- addrs: [0x809BFB60, 0x809BFC60]
- npc/tex/rhn_3_mouth6_TA_tex_txt:
- addrs: [0x809BFC60, 0x809BFD60]
- npc/tex/rhn_3_tmem_txt:
- addrs: [0x809BFD60, 0x809C0160]
- npc/tex/rhn_4_pal:
- addrs: [0x809C0160, 0x809C0180]
- type: pal16
- npc/tex/rhn_4_eye1_TA_tex_txt:
- addrs: [0x809C0180, 0x809C0280]
- npc/tex/rhn_4_eye2_TA_tex_txt:
- addrs: [0x809C0280, 0x809C0380]
- npc/tex/rhn_4_eye3_TA_tex_txt:
- addrs: [0x809C0380, 0x809C0480]
- npc/tex/rhn_4_eye4_TA_tex_txt:
- addrs: [0x809C0480, 0x809C0580]
- npc/tex/rhn_4_eye5_TA_tex_txt:
- addrs: [0x809C0580, 0x809C0680]
- npc/tex/rhn_4_eye6_TA_tex_txt:
- addrs: [0x809C0680, 0x809C0780]
- npc/tex/rhn_4_eye7_TA_tex_txt:
- addrs: [0x809C0780, 0x809C0880]
- npc/tex/rhn_4_eye8_TA_tex_txt:
- addrs: [0x809C0880, 0x809C0980]
- npc/tex/rhn_4_mouth1_TA_tex_txt:
- addrs: [0x809C0980, 0x809C0A80]
- npc/tex/rhn_4_mouth2_TA_tex_txt:
- addrs: [0x809C0A80, 0x809C0B80]
- npc/tex/rhn_4_mouth3_TA_tex_txt:
- addrs: [0x809C0B80, 0x809C0C80]
- npc/tex/rhn_4_mouth4_TA_tex_txt:
- addrs: [0x809C0C80, 0x809C0D80]
- npc/tex/rhn_4_mouth5_TA_tex_txt:
- addrs: [0x809C0D80, 0x809C0E80]
- npc/tex/rhn_4_mouth6_TA_tex_txt:
- addrs: [0x809C0E80, 0x809C0F80]
- npc/tex/rhn_4_tmem_txt:
- addrs: [0x809C0F80, 0x809C1380]
- npc/mdl/snt_1_v:
- addrs: [0x809C9148, 0x809CA508]
- type: vtx
- npc/tex/snt_1_pal:
- addrs: [0x809CAD40, 0x809CAD60]
- type: pal16
- npc/tex/snt_1_eye1_TA_tex_txt:
- addrs: [0x809CAD60, 0x809CAE60]
- npc/tex/snt_1_eye2_TA_tex_txt:
- addrs: [0x809CAE60, 0x809CAF60]
- npc/tex/snt_1_eye3_TA_tex_txt:
- addrs: [0x809CAF60, 0x809CB060]
- npc/tex/snt_1_eye4_TA_tex_txt:
- addrs: [0x809CB060, 0x809CB160]
- npc/tex/snt_1_eye5_TA_tex_txt:
- addrs: [0x809CB160, 0x809CB260]
- npc/tex/snt_1_eye6_TA_tex_txt:
- addrs: [0x809CB260, 0x809CB360]
- npc/tex/snt_1_eye7_TA_tex_txt:
- addrs: [0x809CB360, 0x809CB460]
- npc/tex/snt_1_eye8_TA_tex_txt:
- addrs: [0x809CB460, 0x809CB560]
- npc/tex/snt_1_mouth1_TA_tex_txt:
- addrs: [0x809CB560, 0x809CB660]
- npc/tex/snt_1_mouth2_TA_tex_txt:
- addrs: [0x809CB660, 0x809CB760]
- npc/tex/snt_1_mouth3_TA_tex_txt:
- addrs: [0x809CB760, 0x809CB860]
- npc/tex/snt_1_mouth4_TA_tex_txt:
- addrs: [0x809CB860, 0x809CB960]
- npc/tex/snt_1_mouth5_TA_tex_txt:
- addrs: [0x809CB960, 0x809CBA60]
- npc/tex/snt_1_mouth6_TA_tex_txt:
- addrs: [0x809CBA60, 0x809CBB60]
- npc/tex/snt_1_tmem_txt:
- addrs: [0x809CBB60, 0x809CC1E0]
- npc/mdl/wip_1_v:
- addrs: [0x809CC1E0, 0x809CD8E0]
- type: vtx
- npc/tex/wip_1_pal:
- addrs: [0x809CE180, 0x809CE1A0]
- type: pal16
- npc/tex/wip_1_eye1_TA_tex_txt:
- addrs: [0x809CE1A0, 0x809CE2A0]
- npc/tex/wip_1_eye2_TA_tex_txt:
- addrs: [0x809CE2A0, 0x809CE3A0]
- npc/tex/wip_1_eye3_TA_tex_txt:
- addrs: [0x809CE3A0, 0x809CE4A0]
- npc/tex/wip_1_eye4_TA_tex_txt:
- addrs: [0x809CE4A0, 0x809CE5A0]
- npc/tex/wip_1_eye5_TA_tex_txt:
- addrs: [0x809CE5A0, 0x809CE6A0]
- npc/tex/wip_1_eye6_TA_tex_txt:
- addrs: [0x809CE6A0, 0x809CE7A0]
- npc/tex/wip_1_eye7_TA_tex_txt:
- addrs: [0x809CE7A0, 0x809CE8A0]
- npc/tex/wip_1_eye8_TA_tex_txt:
- addrs: [0x809CE8A0, 0x809CE9A0]
- npc/tex/wip_1_mouth1_TA_tex_txt:
- addrs: [0x809CE9A0, 0x809CEAA0]
- npc/tex/wip_1_mouth2_TA_tex_txt:
- addrs: [0x809CEAA0, 0x809CEBA0]
- npc/tex/wip_1_mouth3_TA_tex_txt:
- addrs: [0x809CEBA0, 0x809CECA0]
- npc/tex/wip_1_mouth4_TA_tex_txt:
- addrs: [0x809CECA0, 0x809CEDA0]
- npc/tex/wip_1_mouth5_TA_tex_txt:
- addrs: [0x809CEDA0, 0x809CEEA0]
- npc/tex/wip_1_mouth6_TA_tex_txt:
- addrs: [0x809CEEA0, 0x809CEFA0]
- npc/tex/wip_1_tmem_txt:
- addrs: [0x809CEFA0, 0x809CF560]
- npc/mdl/shp_1_v:
- addrs: [0x809CF560, 0x809D09C0]
- type: vtx
- npc/tex/shp_1_pal:
- addrs: [0x809D11A0, 0x809D11C0]
- type: pal16
- npc/tex/shp_1_eye1_TA_tex_txt:
- addrs: [0x809D11C0, 0x809D12C0]
- npc/tex/shp_1_eye2_TA_tex_txt:
- addrs: [0x809D12C0, 0x809D13C0]
- npc/tex/shp_1_eye3_TA_tex_txt:
- addrs: [0x809D13C0, 0x809D14C0]
- npc/tex/shp_1_eye4_TA_tex_txt:
- addrs: [0x809D14C0, 0x809D15C0]
- npc/tex/shp_1_eye5_TA_tex_txt:
- addrs: [0x809D15C0, 0x809D16C0]
- npc/tex/shp_1_eye6_TA_tex_txt:
- addrs: [0x809D16C0, 0x809D17C0]
- npc/tex/shp_1_eye7_TA_tex_txt:
- addrs: [0x809D17C0, 0x809D18C0]
- npc/tex/shp_1_eye8_TA_tex_txt:
- addrs: [0x809D18C0, 0x809D19C0]
- npc/tex/shp_1_mouth1_TA_tex_txt:
- addrs: [0x809D19C0, 0x809D1AC0]
- npc/tex/shp_1_mouth2_TA_tex_txt:
- addrs: [0x809D1AC0, 0x809D1BC0]
- npc/tex/shp_1_mouth3_TA_tex_txt:
- addrs: [0x809D1BC0, 0x809D1CC0]
- npc/tex/shp_1_mouth4_TA_tex_txt:
- addrs: [0x809D1CC0, 0x809D1DC0]
- npc/tex/shp_1_mouth5_TA_tex_txt:
- addrs: [0x809D1DC0, 0x809D1EC0]
- npc/tex/shp_1_mouth6_TA_tex_txt:
- addrs: [0x809D1EC0, 0x809D1FC0]
- npc/tex/shp_1_tmem_txt:
- addrs: [0x809D1FC0, 0x809D23C0]
- npc/tex/shp_2_pal:
- addrs: [0x809D23C0, 0x809D23E0]
- type: pal16
- npc/tex/shp_2_eye1_TA_tex_txt:
- addrs: [0x809D23E0, 0x809D24E0]
- npc/tex/shp_2_eye2_TA_tex_txt:
- addrs: [0x809D24E0, 0x809D25E0]
- npc/tex/shp_2_eye3_TA_tex_txt:
- addrs: [0x809D25E0, 0x809D26E0]
- npc/tex/shp_2_eye4_TA_tex_txt:
- addrs: [0x809D26E0, 0x809D27E0]
- npc/tex/shp_2_eye5_TA_tex_txt:
- addrs: [0x809D27E0, 0x809D28E0]
- npc/tex/shp_2_eye6_TA_tex_txt:
- addrs: [0x809D28E0, 0x809D29E0]
- npc/tex/shp_2_eye7_TA_tex_txt:
- addrs: [0x809D29E0, 0x809D2AE0]
- npc/tex/shp_2_eye8_TA_tex_txt:
- addrs: [0x809D2AE0, 0x809D2BE0]
- npc/tex/shp_2_mouth1_TA_tex_txt:
- addrs: [0x809D2BE0, 0x809D2CE0]
- npc/tex/shp_2_mouth2_TA_tex_txt:
- addrs: [0x809D2CE0, 0x809D2DE0]
- npc/tex/shp_2_mouth3_TA_tex_txt:
- addrs: [0x809D2DE0, 0x809D2EE0]
- npc/tex/shp_2_mouth4_TA_tex_txt:
- addrs: [0x809D2EE0, 0x809D2FE0]
- npc/tex/shp_2_mouth5_TA_tex_txt:
- addrs: [0x809D2FE0, 0x809D30E0]
- npc/tex/shp_2_mouth6_TA_tex_txt:
- addrs: [0x809D30E0, 0x809D31E0]
- npc/tex/shp_2_tmem_txt:
- addrs: [0x809D31E0, 0x809D35E0]
- npc/tex/shp_3_pal:
- addrs: [0x809D35E0, 0x809D3600]
- type: pal16
- npc/tex/shp_3_eye1_TA_tex_txt:
- addrs: [0x809D3600, 0x809D3700]
- npc/tex/shp_3_eye2_TA_tex_txt:
- addrs: [0x809D3700, 0x809D3800]
- npc/tex/shp_3_eye3_TA_tex_txt:
- addrs: [0x809D3800, 0x809D3900]
- npc/tex/shp_3_eye4_TA_tex_txt:
- addrs: [0x809D3900, 0x809D3A00]
- npc/tex/shp_3_eye5_TA_tex_txt:
- addrs: [0x809D3A00, 0x809D3B00]
- npc/tex/shp_3_eye6_TA_tex_txt:
- addrs: [0x809D3B00, 0x809D3C00]
- npc/tex/shp_3_eye7_TA_tex_txt:
- addrs: [0x809D3C00, 0x809D3D00]
- npc/tex/shp_3_eye8_TA_tex_txt:
- addrs: [0x809D3D00, 0x809D3E00]
- npc/tex/shp_3_mouth1_TA_tex_txt:
- addrs: [0x809D3E00, 0x809D3F00]
- npc/tex/shp_3_mouth2_TA_tex_txt:
- addrs: [0x809D3F00, 0x809D4000]
- npc/tex/shp_3_mouth3_TA_tex_txt:
- addrs: [0x809D4000, 0x809D4100]
- npc/tex/shp_3_mouth4_TA_tex_txt:
- addrs: [0x809D4100, 0x809D4200]
- npc/tex/shp_3_mouth5_TA_tex_txt:
- addrs: [0x809D4200, 0x809D4300]
- npc/tex/shp_3_mouth6_TA_tex_txt:
- addrs: [0x809D4300, 0x809D4400]
- npc/tex/shp_3_tmem_txt:
- addrs: [0x809D4400, 0x809D4800]
- npc/tex/shp_4_pal:
- addrs: [0x809D4800, 0x809D4820]
- type: pal16
- npc/tex/shp_4_eye1_TA_tex_txt:
- addrs: [0x809D4820, 0x809D4920]
- npc/tex/shp_4_eye2_TA_tex_txt:
- addrs: [0x809D4920, 0x809D4A20]
- npc/tex/shp_4_eye3_TA_tex_txt:
- addrs: [0x809D4A20, 0x809D4B20]
- npc/tex/shp_4_eye4_TA_tex_txt:
- addrs: [0x809D4B20, 0x809D4C20]
- npc/tex/shp_4_eye5_TA_tex_txt:
- addrs: [0x809D4C20, 0x809D4D20]
- npc/tex/shp_4_eye6_TA_tex_txt:
- addrs: [0x809D4D20, 0x809D4E20]
- npc/tex/shp_4_eye7_TA_tex_txt:
- addrs: [0x809D4E20, 0x809D4F20]
- npc/tex/shp_4_eye8_TA_tex_txt:
- addrs: [0x809D4F20, 0x809D5020]
- npc/tex/shp_4_mouth1_TA_tex_txt:
- addrs: [0x809D5020, 0x809D5120]
- npc/tex/shp_4_mouth2_TA_tex_txt:
- addrs: [0x809D5120, 0x809D5220]
- npc/tex/shp_4_mouth3_TA_tex_txt:
- addrs: [0x809D5220, 0x809D5320]
- npc/tex/shp_4_mouth4_TA_tex_txt:
- addrs: [0x809D5320, 0x809D5420]
- npc/tex/shp_4_mouth5_TA_tex_txt:
- addrs: [0x809D5420, 0x809D5520]
- npc/tex/shp_4_mouth6_TA_tex_txt:
- addrs: [0x809D5520, 0x809D5620]
- npc/tex/shp_4_tmem_txt:
- addrs: [0x809D5620, 0x809D5A20]
- npc/tex/shp_5_pal:
- addrs: [0x809D5A20, 0x809D5A40]
- type: pal16
- npc/tex/shp_5_eye1_TA_tex_txt:
- addrs: [0x809D5A40, 0x809D5B40]
- npc/tex/shp_5_eye2_TA_tex_txt:
- addrs: [0x809D5B40, 0x809D5C40]
- npc/tex/shp_5_eye3_TA_tex_txt:
- addrs: [0x809D5C40, 0x809D5D40]
- npc/tex/shp_5_eye4_TA_tex_txt:
- addrs: [0x809D5D40, 0x809D5E40]
- npc/tex/shp_5_eye5_TA_tex_txt:
- addrs: [0x809D5E40, 0x809D5F40]
- npc/tex/shp_5_eye6_TA_tex_txt:
- addrs: [0x809D5F40, 0x809D6040]
- npc/tex/shp_5_eye7_TA_tex_txt:
- addrs: [0x809D6040, 0x809D6140]
- npc/tex/shp_5_eye8_TA_tex_txt:
- addrs: [0x809D6140, 0x809D6240]
- npc/tex/shp_5_mouth1_TA_tex_txt:
- addrs: [0x809D6240, 0x809D6340]
- npc/tex/shp_5_mouth2_TA_tex_txt:
- addrs: [0x809D6340, 0x809D6440]
- npc/tex/shp_5_mouth3_TA_tex_txt:
- addrs: [0x809D6440, 0x809D6540]
- npc/tex/shp_5_mouth4_TA_tex_txt:
- addrs: [0x809D6540, 0x809D6640]
- npc/tex/shp_5_mouth5_TA_tex_txt:
- addrs: [0x809D6640, 0x809D6740]
- npc/tex/shp_5_mouth6_TA_tex_txt:
- addrs: [0x809D6740, 0x809D6840]
- npc/tex/shp_5_tmem_txt:
- addrs: [0x809D6840, 0x809D6C40]
- npc/tex/shp_6_pal:
- addrs: [0x809D6C40, 0x809D6C60]
- type: pal16
- npc/tex/shp_6_eye1_TA_tex_txt:
- addrs: [0x809D6C60, 0x809D6D60]
- npc/tex/shp_6_eye2_TA_tex_txt:
- addrs: [0x809D6D60, 0x809D6E60]
- npc/tex/shp_6_eye3_TA_tex_txt:
- addrs: [0x809D6E60, 0x809D6F60]
- npc/tex/shp_6_eye4_TA_tex_txt:
- addrs: [0x809D6F60, 0x809D7060]
- npc/tex/shp_6_eye5_TA_tex_txt:
- addrs: [0x809D7060, 0x809D7160]
- npc/tex/shp_6_eye6_TA_tex_txt:
- addrs: [0x809D7160, 0x809D7260]
- npc/tex/shp_6_eye7_TA_tex_txt:
- addrs: [0x809D7260, 0x809D7360]
- npc/tex/shp_6_eye8_TA_tex_txt:
- addrs: [0x809D7360, 0x809D7460]
- npc/tex/shp_6_mouth1_TA_tex_txt:
- addrs: [0x809D7460, 0x809D7560]
- npc/tex/shp_6_mouth2_TA_tex_txt:
- addrs: [0x809D7560, 0x809D7660]
- npc/tex/shp_6_mouth3_TA_tex_txt:
- addrs: [0x809D7660, 0x809D7760]
- npc/tex/shp_6_mouth4_TA_tex_txt:
- addrs: [0x809D7760, 0x809D7860]
- npc/tex/shp_6_mouth5_TA_tex_txt:
- addrs: [0x809D7860, 0x809D7960]
- npc/tex/shp_6_mouth6_TA_tex_txt:
- addrs: [0x809D7960, 0x809D7A60]
- npc/tex/shp_6_tmem_txt:
- addrs: [0x809D7A60, 0x809D7E60]
- npc/mdl/rcn_1_v:
- addrs: [0x809D7E60, 0x809D94B0]
- type: vtx
- npc/tex/rcn_1_pal:
- addrs: [0x809D9E80, 0x809D9EA0]
- type: pal16
- npc/tex/rcn_1_eye1_TA_tex_txt:
- addrs: [0x809D9EA0, 0x809D9FA0]
- npc/tex/rcn_1_eye2_TA_tex_txt:
- addrs: [0x809D9FA0, 0x809DA0A0]
- npc/tex/rcn_1_eye3_TA_tex_txt:
- addrs: [0x809DA0A0, 0x809DA1A0]
- npc/tex/rcn_1_eye4_TA_tex_txt:
- addrs: [0x809DA1A0, 0x809DA2A0]
- npc/tex/rcn_1_eye5_TA_tex_txt:
- addrs: [0x809DA2A0, 0x809DA3A0]
- npc/tex/rcn_1_eye6_TA_tex_txt:
- addrs: [0x809DA3A0, 0x809DA4A0]
- npc/tex/rcn_1_eye7_TA_tex_txt:
- addrs: [0x809DA4A0, 0x809DA5A0]
- npc/tex/rcn_1_eye8_TA_tex_txt:
- addrs: [0x809DA5A0, 0x809DA6A0]
- npc/tex/rcn_1_tmem_txt:
- addrs: [0x809DA6A0, 0x809DACE0]
- npc/mdl/kab_1_v:
- addrs: [0x80A001B0, 0x80A01A70]
- type: vtx
- npc/tex/kab_1_pal:
- addrs: [0x80A023A0, 0x80A023C0]
- type: pal16
- npc/tex/kab_1_eye1_TA_tex_txt:
- addrs: [0x80A023C0, 0x80A024C0]
- npc/tex/kab_1_eye2_TA_tex_txt:
- addrs: [0x80A024C0, 0x80A025C0]
- npc/tex/kab_1_eye3_TA_tex_txt:
- addrs: [0x80A025C0, 0x80A026C0]
- npc/tex/kab_1_eye4_TA_tex_txt:
- addrs: [0x80A026C0, 0x80A027C0]
- npc/tex/kab_1_eye5_TA_tex_txt:
- addrs: [0x80A027C0, 0x80A028C0]
- npc/tex/kab_1_eye6_TA_tex_txt:
- addrs: [0x80A028C0, 0x80A029C0]
- npc/tex/kab_1_eye7_TA_tex_txt:
- addrs: [0x80A029C0, 0x80A02AC0]
- npc/tex/kab_1_eye8_TA_tex_txt:
- addrs: [0x80A02AC0, 0x80A02BC0]
- npc/tex/kab_1_tmem_txt:
- addrs: [0x80A02BC0, 0x80A02FC0]
- npc/mdl/ttl_1_v:
- addrs: [0x80B38FC0, 0x80B3A410]
- type: vtx
- npc/tex/ttl_1_pal:
- addrs: [0x80B3ADE0, 0x80B3AE00]
- type: pal16
- npc/tex/ttl_1_eye1_TA_tex_txt:
- addrs: [0x80B3AE00, 0x80B3AF00]
- npc/tex/ttl_1_eye2_TA_tex_txt:
- addrs: [0x80B3AF00, 0x80B3B000]
- npc/tex/ttl_1_eye3_TA_tex_txt:
- addrs: [0x80B3B000, 0x80B3B100]
- npc/tex/ttl_1_eye4_TA_tex_txt:
- addrs: [0x80B3B100, 0x80B3B200]
- npc/tex/ttl_1_eye5_TA_tex_txt:
- addrs: [0x80B3B200, 0x80B3B300]
- npc/tex/ttl_1_eye6_TA_tex_txt:
- addrs: [0x80B3B300, 0x80B3B400]
- npc/tex/ttl_1_eye7_TA_tex_txt:
- addrs: [0x80B3B400, 0x80B3B500]
- npc/tex/ttl_1_eye8_TA_tex_txt:
- addrs: [0x80B3B500, 0x80B3B600]
- npc/tex/ttl_1_tmem_txt:
- addrs: [0x80B3B600, 0x80B3BD40]
- npc/mdl/squ_1_v:
- addrs: [0x80B3BD40, 0x80B3D430]
- type: vtx
- npc/tex/squ_1_pal:
- addrs: [0x80B3DDE0, 0x80B3DE00]
- type: pal16
- npc/tex/squ_1_eye1_TA_tex_txt:
- addrs: [0x80B3DE00, 0x80B3DF00]
- npc/tex/squ_1_eye2_TA_tex_txt:
- addrs: [0x80B3DF00, 0x80B3E000]
- npc/tex/squ_1_eye3_TA_tex_txt:
- addrs: [0x80B3E000, 0x80B3E100]
- npc/tex/squ_1_eye4_TA_tex_txt:
- addrs: [0x80B3E100, 0x80B3E200]
- npc/tex/squ_1_eye5_TA_tex_txt:
- addrs: [0x80B3E200, 0x80B3E300]
- npc/tex/squ_1_eye6_TA_tex_txt:
- addrs: [0x80B3E300, 0x80B3E400]
- npc/tex/squ_1_eye7_TA_tex_txt:
- addrs: [0x80B3E400, 0x80B3E500]
- npc/tex/squ_1_eye8_TA_tex_txt:
- addrs: [0x80B3E500, 0x80B3E600]
- npc/tex/squ_1_mouth1_TA_tex_txt:
- addrs: [0x80B3E600, 0x80B3E700]
- npc/tex/squ_1_mouth2_TA_tex_txt:
- addrs: [0x80B3E700, 0x80B3E800]
- npc/tex/squ_1_mouth3_TA_tex_txt:
- addrs: [0x80B3E800, 0x80B3E900]
- npc/tex/squ_1_mouth4_TA_tex_txt:
- addrs: [0x80B3E900, 0x80B3EA00]
- npc/tex/squ_1_mouth5_TA_tex_txt:
- addrs: [0x80B3EA00, 0x80B3EB00]
- npc/tex/squ_1_mouth6_TA_tex_txt:
- addrs: [0x80B3EB00, 0x80B3EC00]
- npc/tex/squ_1_tmem_txt:
- addrs: [0x80B3EC00, 0x80B3F000]
- npc/tex/squ_2_pal:
- addrs: [0x80B3F000, 0x80B3F020]
- type: pal16
- npc/tex/squ_2_eye1_TA_tex_txt:
- addrs: [0x80B3F020, 0x80B3F120]
- npc/tex/squ_2_eye2_TA_tex_txt:
- addrs: [0x80B3F120, 0x80B3F220]
- npc/tex/squ_2_eye3_TA_tex_txt:
- addrs: [0x80B3F220, 0x80B3F320]
- npc/tex/squ_2_eye4_TA_tex_txt:
- addrs: [0x80B3F320, 0x80B3F420]
- npc/tex/squ_2_eye5_TA_tex_txt:
- addrs: [0x80B3F420, 0x80B3F520]
- npc/tex/squ_2_eye6_TA_tex_txt:
- addrs: [0x80B3F520, 0x80B3F620]
- npc/tex/squ_2_eye7_TA_tex_txt:
- addrs: [0x80B3F620, 0x80B3F720]
- npc/tex/squ_2_eye8_TA_tex_txt:
- addrs: [0x80B3F720, 0x80B3F820]
- npc/tex/squ_2_mouth1_TA_tex_txt:
- addrs: [0x80B3F820, 0x80B3F920]
- npc/tex/squ_2_mouth2_TA_tex_txt:
- addrs: [0x80B3F920, 0x80B3FA20]
- npc/tex/squ_2_mouth3_TA_tex_txt:
- addrs: [0x80B3FA20, 0x80B3FB20]
- npc/tex/squ_2_mouth4_TA_tex_txt:
- addrs: [0x80B3FB20, 0x80B3FC20]
- npc/tex/squ_2_mouth5_TA_tex_txt:
- addrs: [0x80B3FC20, 0x80B3FD20]
- npc/tex/squ_2_mouth6_TA_tex_txt:
- addrs: [0x80B3FD20, 0x80B3FE20]
- npc/tex/squ_2_tmem_txt:
- addrs: [0x80B3FE20, 0x80B40220]
- npc/tex/squ_11_pal:
- addrs: [0x80B40220, 0x80B40240]
- type: pal16
- npc/tex/squ_11_eye1_TA_tex_txt:
- addrs: [0x80B40240, 0x80B40340]
- npc/tex/squ_11_eye2_TA_tex_txt:
- addrs: [0x80B40340, 0x80B40440]
- npc/tex/squ_11_eye3_TA_tex_txt:
- addrs: [0x80B40440, 0x80B40540]
- npc/tex/squ_11_eye4_TA_tex_txt:
- addrs: [0x80B40540, 0x80B40640]
- npc/tex/squ_11_eye5_TA_tex_txt:
- addrs: [0x80B40640, 0x80B40740]
- npc/tex/squ_11_eye6_TA_tex_txt:
- addrs: [0x80B40740, 0x80B40840]
- npc/tex/squ_11_eye7_TA_tex_txt:
- addrs: [0x80B40840, 0x80B40940]
- npc/tex/squ_11_eye8_TA_tex_txt:
- addrs: [0x80B40940, 0x80B40A40]
- npc/tex/squ_11_mouth1_TA_tex_txt:
- addrs: [0x80B40A40, 0x80B40B40]
- npc/tex/squ_11_mouth2_TA_tex_txt:
- addrs: [0x80B40B40, 0x80B40C40]
- npc/tex/squ_11_mouth3_TA_tex_txt:
- addrs: [0x80B40C40, 0x80B40D40]
- npc/tex/squ_11_mouth4_TA_tex_txt:
- addrs: [0x80B40D40, 0x80B40E40]
- npc/tex/squ_11_mouth5_TA_tex_txt:
- addrs: [0x80B40E40, 0x80B40F40]
- npc/tex/squ_11_mouth6_TA_tex_txt:
- addrs: [0x80B40F40, 0x80B41040]
- npc/tex/squ_11_tmem_txt:
- addrs: [0x80B41040, 0x80B41440]
- npc/tex/squ_3_pal:
- addrs: [0x80B41440, 0x80B41460]
- type: pal16
- npc/tex/squ_3_eye1_TA_tex_txt:
- addrs: [0x80B41460, 0x80B41560]
- npc/tex/squ_3_eye2_TA_tex_txt:
- addrs: [0x80B41560, 0x80B41660]
- npc/tex/squ_3_eye3_TA_tex_txt:
- addrs: [0x80B41660, 0x80B41760]
- npc/tex/squ_3_eye4_TA_tex_txt:
- addrs: [0x80B41760, 0x80B41860]
- npc/tex/squ_3_eye5_TA_tex_txt:
- addrs: [0x80B41860, 0x80B41960]
- npc/tex/squ_3_eye6_TA_tex_txt:
- addrs: [0x80B41960, 0x80B41A60]
- npc/tex/squ_3_eye7_TA_tex_txt:
- addrs: [0x80B41A60, 0x80B41B60]
- npc/tex/squ_3_eye8_TA_tex_txt:
- addrs: [0x80B41B60, 0x80B41C60]
- npc/tex/squ_3_mouth1_TA_tex_txt:
- addrs: [0x80B41C60, 0x80B41D60]
- npc/tex/squ_3_mouth2_TA_tex_txt:
- addrs: [0x80B41D60, 0x80B41E60]
- npc/tex/squ_3_mouth3_TA_tex_txt:
- addrs: [0x80B41E60, 0x80B41F60]
- npc/tex/squ_3_mouth4_TA_tex_txt:
- addrs: [0x80B41F60, 0x80B42060]
- npc/tex/squ_3_mouth5_TA_tex_txt:
- addrs: [0x80B42060, 0x80B42160]
- npc/tex/squ_3_mouth6_TA_tex_txt:
- addrs: [0x80B42160, 0x80B42260]
- npc/tex/squ_3_tmem_txt:
- addrs: [0x80B42260, 0x80B42660]
- npc/tex/squ_4_pal:
- addrs: [0x80B42660, 0x80B42680]
- type: pal16
- npc/tex/squ_4_eye1_TA_tex_txt:
- addrs: [0x80B42680, 0x80B42780]
- npc/tex/squ_4_eye2_TA_tex_txt:
- addrs: [0x80B42780, 0x80B42880]
- npc/tex/squ_4_eye3_TA_tex_txt:
- addrs: [0x80B42880, 0x80B42980]
- npc/tex/squ_4_eye4_TA_tex_txt:
- addrs: [0x80B42980, 0x80B42A80]
- npc/tex/squ_4_eye5_TA_tex_txt:
- addrs: [0x80B42A80, 0x80B42B80]
- npc/tex/squ_4_eye6_TA_tex_txt:
- addrs: [0x80B42B80, 0x80B42C80]
- npc/tex/squ_4_eye7_TA_tex_txt:
- addrs: [0x80B42C80, 0x80B42D80]
- npc/tex/squ_4_eye8_TA_tex_txt:
- addrs: [0x80B42D80, 0x80B42E80]
- npc/tex/squ_4_mouth1_TA_tex_txt:
- addrs: [0x80B42E80, 0x80B42F80]
- npc/tex/squ_4_mouth2_TA_tex_txt:
- addrs: [0x80B42F80, 0x80B43080]
- npc/tex/squ_4_mouth3_TA_tex_txt:
- addrs: [0x80B43080, 0x80B43180]
- npc/tex/squ_4_mouth4_TA_tex_txt:
- addrs: [0x80B43180, 0x80B43280]
- npc/tex/squ_4_mouth5_TA_tex_txt:
- addrs: [0x80B43280, 0x80B43380]
- npc/tex/squ_4_mouth6_TA_tex_txt:
- addrs: [0x80B43380, 0x80B43480]
- npc/tex/squ_4_tmem_txt:
- addrs: [0x80B43480, 0x80B43880]
- npc/tex/squ_5_pal:
- addrs: [0x80B43880, 0x80B438A0]
- type: pal16
- npc/tex/squ_5_eye1_TA_tex_txt:
- addrs: [0x80B438A0, 0x80B439A0]
- npc/tex/squ_5_eye2_TA_tex_txt:
- addrs: [0x80B439A0, 0x80B43AA0]
- npc/tex/squ_5_eye3_TA_tex_txt:
- addrs: [0x80B43AA0, 0x80B43BA0]
- npc/tex/squ_5_eye4_TA_tex_txt:
- addrs: [0x80B43BA0, 0x80B43CA0]
- npc/tex/squ_5_eye5_TA_tex_txt:
- addrs: [0x80B43CA0, 0x80B43DA0]
- npc/tex/squ_5_eye6_TA_tex_txt:
- addrs: [0x80B43DA0, 0x80B43EA0]
- npc/tex/squ_5_eye7_TA_tex_txt:
- addrs: [0x80B43EA0, 0x80B43FA0]
- npc/tex/squ_5_eye8_TA_tex_txt:
- addrs: [0x80B43FA0, 0x80B440A0]
- npc/tex/squ_5_mouth1_TA_tex_txt:
- addrs: [0x80B440A0, 0x80B441A0]
- npc/tex/squ_5_mouth2_TA_tex_txt:
- addrs: [0x80B441A0, 0x80B442A0]
- npc/tex/squ_5_mouth3_TA_tex_txt:
- addrs: [0x80B442A0, 0x80B443A0]
- npc/tex/squ_5_mouth4_TA_tex_txt:
- addrs: [0x80B443A0, 0x80B444A0]
- npc/tex/squ_5_mouth5_TA_tex_txt:
- addrs: [0x80B444A0, 0x80B445A0]
- npc/tex/squ_5_mouth6_TA_tex_txt:
- addrs: [0x80B445A0, 0x80B446A0]
- npc/tex/squ_5_tmem_txt:
- addrs: [0x80B446A0, 0x80B44AA0]
- npc/tex/squ_6_pal:
- addrs: [0x80B44AA0, 0x80B44AC0]
- type: pal16
- npc/tex/squ_6_eye1_TA_tex_txt:
- addrs: [0x80B44AC0, 0x80B44BC0]
- npc/tex/squ_6_eye2_TA_tex_txt:
- addrs: [0x80B44BC0, 0x80B44CC0]
- npc/tex/squ_6_eye3_TA_tex_txt:
- addrs: [0x80B44CC0, 0x80B44DC0]
- npc/tex/squ_6_eye4_TA_tex_txt:
- addrs: [0x80B44DC0, 0x80B44EC0]
- npc/tex/squ_6_eye5_TA_tex_txt:
- addrs: [0x80B44EC0, 0x80B44FC0]
- npc/tex/squ_6_eye6_TA_tex_txt:
- addrs: [0x80B44FC0, 0x80B450C0]
- npc/tex/squ_6_eye7_TA_tex_txt:
- addrs: [0x80B450C0, 0x80B451C0]
- npc/tex/squ_6_eye8_TA_tex_txt:
- addrs: [0x80B451C0, 0x80B452C0]
- npc/tex/squ_6_mouth1_TA_tex_txt:
- addrs: [0x80B452C0, 0x80B453C0]
- npc/tex/squ_6_mouth2_TA_tex_txt:
- addrs: [0x80B453C0, 0x80B454C0]
- npc/tex/squ_6_mouth3_TA_tex_txt:
- addrs: [0x80B454C0, 0x80B455C0]
- npc/tex/squ_6_mouth4_TA_tex_txt:
- addrs: [0x80B455C0, 0x80B456C0]
- npc/tex/squ_6_mouth5_TA_tex_txt:
- addrs: [0x80B456C0, 0x80B457C0]
- npc/tex/squ_6_mouth6_TA_tex_txt:
- addrs: [0x80B457C0, 0x80B458C0]
- npc/tex/squ_6_tmem_txt:
- addrs: [0x80B458C0, 0x80B45CC0]
- npc/tex/squ_7_pal:
- addrs: [0x80B45CC0, 0x80B45CE0]
- type: pal16
- npc/tex/squ_7_eye1_TA_tex_txt:
- addrs: [0x80B45CE0, 0x80B45DE0]
- npc/tex/squ_7_eye2_TA_tex_txt:
- addrs: [0x80B45DE0, 0x80B45EE0]
- npc/tex/squ_7_eye3_TA_tex_txt:
- addrs: [0x80B45EE0, 0x80B45FE0]
- npc/tex/squ_7_eye4_TA_tex_txt:
- addrs: [0x80B45FE0, 0x80B460E0]
- npc/tex/squ_7_eye5_TA_tex_txt:
- addrs: [0x80B460E0, 0x80B461E0]
- npc/tex/squ_7_eye6_TA_tex_txt:
- addrs: [0x80B461E0, 0x80B462E0]
- npc/tex/squ_7_eye7_TA_tex_txt:
- addrs: [0x80B462E0, 0x80B463E0]
- npc/tex/squ_7_eye8_TA_tex_txt:
- addrs: [0x80B463E0, 0x80B464E0]
- npc/tex/squ_7_mouth1_TA_tex_txt:
- addrs: [0x80B464E0, 0x80B465E0]
- npc/tex/squ_7_mouth2_TA_tex_txt:
- addrs: [0x80B465E0, 0x80B466E0]
- npc/tex/squ_7_mouth3_TA_tex_txt:
- addrs: [0x80B466E0, 0x80B467E0]
- npc/tex/squ_7_mouth4_TA_tex_txt:
- addrs: [0x80B467E0, 0x80B468E0]
- npc/tex/squ_7_mouth5_TA_tex_txt:
- addrs: [0x80B468E0, 0x80B469E0]
- npc/tex/squ_7_mouth6_TA_tex_txt:
- addrs: [0x80B469E0, 0x80B46AE0]
- npc/tex/squ_7_tmem_txt:
- addrs: [0x80B46AE0, 0x80B46EE0]
- npc/tex/squ_8_pal:
- addrs: [0x80B46EE0, 0x80B46F00]
- type: pal16
- npc/tex/squ_8_eye1_TA_tex_txt:
- addrs: [0x80B46F00, 0x80B47000]
- npc/tex/squ_8_eye2_TA_tex_txt:
- addrs: [0x80B47000, 0x80B47100]
- npc/tex/squ_8_eye3_TA_tex_txt:
- addrs: [0x80B47100, 0x80B47200]
- npc/tex/squ_8_eye4_TA_tex_txt:
- addrs: [0x80B47200, 0x80B47300]
- npc/tex/squ_8_eye5_TA_tex_txt:
- addrs: [0x80B47300, 0x80B47400]
- npc/tex/squ_8_eye6_TA_tex_txt:
- addrs: [0x80B47400, 0x80B47500]
- npc/tex/squ_8_eye7_TA_tex_txt:
- addrs: [0x80B47500, 0x80B47600]
- npc/tex/squ_8_eye8_TA_tex_txt:
- addrs: [0x80B47600, 0x80B47700]
- npc/tex/squ_8_mouth1_TA_tex_txt:
- addrs: [0x80B47700, 0x80B47800]
- npc/tex/squ_8_mouth2_TA_tex_txt:
- addrs: [0x80B47800, 0x80B47900]
- npc/tex/squ_8_mouth3_TA_tex_txt:
- addrs: [0x80B47900, 0x80B47A00]
- npc/tex/squ_8_mouth4_TA_tex_txt:
- addrs: [0x80B47A00, 0x80B47B00]
- npc/tex/squ_8_mouth5_TA_tex_txt:
- addrs: [0x80B47B00, 0x80B47C00]
- npc/tex/squ_8_mouth6_TA_tex_txt:
- addrs: [0x80B47C00, 0x80B47D00]
- npc/tex/squ_8_tmem_txt:
- addrs: [0x80B47D00, 0x80B48100]
- npc/tex/squ_9_pal:
- addrs: [0x80B48100, 0x80B48120]
- type: pal16
- npc/tex/squ_9_eye1_TA_tex_txt:
- addrs: [0x80B48120, 0x80B48220]
- npc/tex/squ_9_eye2_TA_tex_txt:
- addrs: [0x80B48220, 0x80B48320]
- npc/tex/squ_9_eye3_TA_tex_txt:
- addrs: [0x80B48320, 0x80B48420]
- npc/tex/squ_9_eye4_TA_tex_txt:
- addrs: [0x80B48420, 0x80B48520]
- npc/tex/squ_9_eye5_TA_tex_txt:
- addrs: [0x80B48520, 0x80B48620]
- npc/tex/squ_9_eye6_TA_tex_txt:
- addrs: [0x80B48620, 0x80B48720]
- npc/tex/squ_9_eye7_TA_tex_txt:
- addrs: [0x80B48720, 0x80B48820]
- npc/tex/squ_9_eye8_TA_tex_txt:
- addrs: [0x80B48820, 0x80B48920]
- npc/tex/squ_9_mouth1_TA_tex_txt:
- addrs: [0x80B48920, 0x80B48A20]
- npc/tex/squ_9_mouth2_TA_tex_txt:
- addrs: [0x80B48A20, 0x80B48B20]
- npc/tex/squ_9_mouth3_TA_tex_txt:
- addrs: [0x80B48B20, 0x80B48C20]
- npc/tex/squ_9_mouth4_TA_tex_txt:
- addrs: [0x80B48C20, 0x80B48D20]
- npc/tex/squ_9_mouth5_TA_tex_txt:
- addrs: [0x80B48D20, 0x80B48E20]
- npc/tex/squ_9_mouth6_TA_tex_txt:
- addrs: [0x80B48E20, 0x80B48F20]
- npc/tex/squ_9_tmem_txt:
- addrs: [0x80B48F20, 0x80B49320]
- npc/tex/squ_10_pal:
- addrs: [0x80B49320, 0x80B49340]
- type: pal16
- npc/tex/squ_10_eye1_TA_tex_txt:
- addrs: [0x80B49340, 0x80B49440]
- npc/tex/squ_10_eye2_TA_tex_txt:
- addrs: [0x80B49440, 0x80B49540]
- npc/tex/squ_10_eye3_TA_tex_txt:
- addrs: [0x80B49540, 0x80B49640]
- npc/tex/squ_10_eye4_TA_tex_txt:
- addrs: [0x80B49640, 0x80B49740]
- npc/tex/squ_10_eye5_TA_tex_txt:
- addrs: [0x80B49740, 0x80B49840]
- npc/tex/squ_10_eye6_TA_tex_txt:
- addrs: [0x80B49840, 0x80B49940]
- npc/tex/squ_10_eye7_TA_tex_txt:
- addrs: [0x80B49940, 0x80B49A40]
- npc/tex/squ_10_eye8_TA_tex_txt:
- addrs: [0x80B49A40, 0x80B49B40]
- npc/tex/squ_10_mouth1_TA_tex_txt:
- addrs: [0x80B49B40, 0x80B49C40]
- npc/tex/squ_10_mouth2_TA_tex_txt:
- addrs: [0x80B49C40, 0x80B49D40]
- npc/tex/squ_10_mouth3_TA_tex_txt:
- addrs: [0x80B49D40, 0x80B49E40]
- npc/tex/squ_10_mouth4_TA_tex_txt:
- addrs: [0x80B49E40, 0x80B49F40]
- npc/tex/squ_10_mouth5_TA_tex_txt:
- addrs: [0x80B49F40, 0x80B4A040]
- npc/tex/squ_10_mouth6_TA_tex_txt:
- addrs: [0x80B4A040, 0x80B4A140]
- npc/tex/squ_10_tmem_txt:
- addrs: [0x80B4A140, 0x80B4A540]
- npc/mdl/mnk_1_v:
- addrs: [0x80B4A540, 0x80B4BD90]
- type: vtx
- npc/tex/mnk_1_pal:
- addrs: [0x80B4C800, 0x80B4C820]
- type: pal16
- npc/tex/mnk_1_eye1_TA_tex_txt:
- addrs: [0x80B4C820, 0x80B4C920]
- npc/tex/mnk_1_eye2_TA_tex_txt:
- addrs: [0x80B4C920, 0x80B4CA20]
- npc/tex/mnk_1_eye3_TA_tex_txt:
- addrs: [0x80B4CA20, 0x80B4CB20]
- npc/tex/mnk_1_eye4_TA_tex_txt:
- addrs: [0x80B4CB20, 0x80B4CC20]
- npc/tex/mnk_1_eye5_TA_tex_txt:
- addrs: [0x80B4CC20, 0x80B4CD20]
- npc/tex/mnk_1_eye6_TA_tex_txt:
- addrs: [0x80B4CD20, 0x80B4CE20]
- npc/tex/mnk_1_eye7_TA_tex_txt:
- addrs: [0x80B4CE20, 0x80B4CF20]
- npc/tex/mnk_1_eye8_TA_tex_txt:
- addrs: [0x80B4CF20, 0x80B4D020]
- npc/tex/mnk_1_mouth1_TA_tex_txt:
- addrs: [0x80B4D020, 0x80B4D120]
- npc/tex/mnk_1_mouth2_TA_tex_txt:
- addrs: [0x80B4D120, 0x80B4D220]
- npc/tex/mnk_1_mouth3_TA_tex_txt:
- addrs: [0x80B4D220, 0x80B4D320]
- npc/tex/mnk_1_mouth4_TA_tex_txt:
- addrs: [0x80B4D320, 0x80B4D420]
- npc/tex/mnk_1_mouth5_TA_tex_txt:
- addrs: [0x80B4D420, 0x80B4D520]
- npc/tex/mnk_1_mouth6_TA_tex_txt:
- addrs: [0x80B4D520, 0x80B4D620]
- npc/tex/mnk_1_tmem_txt:
- addrs: [0x80B4D620, 0x80B4DC20]
- npc/mdl/rcs_1_v:
- addrs: [0x80C09AC0, 0x80C0B1C0]
- type: vtx
- npc/tex/rcs_1_pal:
- addrs: [0x80C0BBC0, 0x80C0BBE0]
- type: pal16
- npc/tex/rcs_1_eye1_TA_tex_txt:
- addrs: [0x80C0BBE0, 0x80C0BCE0]
- npc/tex/rcs_1_eye2_TA_tex_txt:
- addrs: [0x80C0BCE0, 0x80C0BDE0]
- npc/tex/rcs_1_eye3_TA_tex_txt:
- addrs: [0x80C0BDE0, 0x80C0BEE0]
- npc/tex/rcs_1_eye4_TA_tex_txt:
- addrs: [0x80C0BEE0, 0x80C0BFE0]
- npc/tex/rcs_1_eye5_TA_tex_txt:
- addrs: [0x80C0BFE0, 0x80C0C0E0]
- npc/tex/rcs_1_eye6_TA_tex_txt:
- addrs: [0x80C0C0E0, 0x80C0C1E0]
- npc/tex/rcs_1_eye7_TA_tex_txt:
- addrs: [0x80C0C1E0, 0x80C0C2E0]
- npc/tex/rcs_1_eye8_TA_tex_txt:
- addrs: [0x80C0C2E0, 0x80C0C3E0]
- npc/tex/rcs_1_tmem_txt:
- addrs: [0x80C0C3E0, 0x80C0C960]
- npc/mdl/tig_1_v:
- addrs: [0x80C2C9F8, 0x80C2E4B8]
- type: vtx
- npc/tex/tig_1_pal:
- addrs: [0x80C2EEA0, 0x80C2EEC0]
- type: pal16
- npc/tex/tig_1_eye1_TA_tex_txt:
- addrs: [0x80C2EEC0, 0x80C2EFC0]
- npc/tex/tig_1_eye2_TA_tex_txt:
- addrs: [0x80C2EFC0, 0x80C2F0C0]
- npc/tex/tig_1_eye3_TA_tex_txt:
- addrs: [0x80C2F0C0, 0x80C2F1C0]
- npc/tex/tig_1_eye4_TA_tex_txt:
- addrs: [0x80C2F1C0, 0x80C2F2C0]
- npc/tex/tig_1_eye5_TA_tex_txt:
- addrs: [0x80C2F2C0, 0x80C2F3C0]
- npc/tex/tig_1_eye6_TA_tex_txt:
- addrs: [0x80C2F3C0, 0x80C2F4C0]
- npc/tex/tig_1_eye7_TA_tex_txt:
- addrs: [0x80C2F4C0, 0x80C2F5C0]
- npc/tex/tig_1_eye8_TA_tex_txt:
- addrs: [0x80C2F5C0, 0x80C2F6C0]
- npc/tex/tig_1_tmem_txt:
- addrs: [0x80C2F6C0, 0x80C2FC40]
- npc/tex/tig_2_pal:
- addrs: [0x80C2FC40, 0x80C2FC60]
- type: pal16
- npc/tex/tig_2_eye1_TA_tex_txt:
- addrs: [0x80C2FC60, 0x80C2FD60]
- npc/tex/tig_2_eye2_TA_tex_txt:
- addrs: [0x80C2FD60, 0x80C2FE60]
- npc/tex/tig_2_eye3_TA_tex_txt:
- addrs: [0x80C2FE60, 0x80C2FF60]
- npc/tex/tig_2_eye4_TA_tex_txt:
- addrs: [0x80C2FF60, 0x80C30060]
- npc/tex/tig_2_eye5_TA_tex_txt:
- addrs: [0x80C30060, 0x80C30160]
- npc/tex/tig_2_eye6_TA_tex_txt:
- addrs: [0x80C30160, 0x80C30260]
- npc/tex/tig_2_eye7_TA_tex_txt:
- addrs: [0x80C30260, 0x80C30360]
- npc/tex/tig_2_eye8_TA_tex_txt:
- addrs: [0x80C30360, 0x80C30460]
- npc/tex/tig_2_tmem_txt:
- addrs: [0x80C30460, 0x80C309E0]
- npc/tex/tig_3_pal:
- addrs: [0x80C309E0, 0x80C30A00]
- type: pal16
- npc/tex/tig_3_eye1_TA_tex_txt:
- addrs: [0x80C30A00, 0x80C30B00]
- npc/tex/tig_3_eye2_TA_tex_txt:
- addrs: [0x80C30B00, 0x80C30C00]
- npc/tex/tig_3_eye3_TA_tex_txt:
- addrs: [0x80C30C00, 0x80C30D00]
- npc/tex/tig_3_eye4_TA_tex_txt:
- addrs: [0x80C30D00, 0x80C30E00]
- npc/tex/tig_3_eye5_TA_tex_txt:
- addrs: [0x80C30E00, 0x80C30F00]
- npc/tex/tig_3_eye6_TA_tex_txt:
- addrs: [0x80C30F00, 0x80C31000]
- npc/tex/tig_3_eye7_TA_tex_txt:
- addrs: [0x80C31000, 0x80C31100]
- npc/tex/tig_3_eye8_TA_tex_txt:
- addrs: [0x80C31100, 0x80C31200]
- npc/tex/tig_3_tmem_txt:
- addrs: [0x80C31200, 0x80C31780]
- npc/tex/tig_4_pal:
- addrs: [0x80C31780, 0x80C317A0]
- type: pal16
- npc/tex/tig_4_eye1_TA_tex_txt:
- addrs: [0x80C317A0, 0x80C318A0]
- npc/tex/tig_4_eye2_TA_tex_txt:
- addrs: [0x80C318A0, 0x80C319A0]
- npc/tex/tig_4_eye3_TA_tex_txt:
- addrs: [0x80C319A0, 0x80C31AA0]
- npc/tex/tig_4_eye4_TA_tex_txt:
- addrs: [0x80C31AA0, 0x80C31BA0]
- npc/tex/tig_4_eye5_TA_tex_txt:
- addrs: [0x80C31BA0, 0x80C31CA0]
- npc/tex/tig_4_eye6_TA_tex_txt:
- addrs: [0x80C31CA0, 0x80C31DA0]
- npc/tex/tig_4_eye7_TA_tex_txt:
- addrs: [0x80C31DA0, 0x80C31EA0]
- npc/tex/tig_4_eye8_TA_tex_txt:
- addrs: [0x80C31EA0, 0x80C31FA0]
- npc/tex/tig_4_tmem_txt:
- addrs: [0x80C31FA0, 0x80C32520]
- npc/mdl/end_1_v:
- addrs: [0x80C45A08, 0x80C47658]
- type: vtx
- npc/tex/end_1_pal:
- addrs: [0x80C480C0, 0x80C480E0]
- type: pal16
- npc/tex/end_1_eye1_TA_tex_txt:
- addrs: [0x80C480E0, 0x80C481E0]
- npc/tex/end_1_eye2_TA_tex_txt:
- addrs: [0x80C481E0, 0x80C482E0]
- npc/tex/end_1_eye3_TA_tex_txt:
- addrs: [0x80C482E0, 0x80C483E0]
- npc/tex/end_1_eye4_TA_tex_txt:
- addrs: [0x80C483E0, 0x80C484E0]
- npc/tex/end_1_eye5_TA_tex_txt:
- addrs: [0x80C484E0, 0x80C485E0]
- npc/tex/end_1_eye6_TA_tex_txt:
- addrs: [0x80C485E0, 0x80C486E0]
- npc/tex/end_1_eye7_TA_tex_txt:
- addrs: [0x80C486E0, 0x80C487E0]
- npc/tex/end_1_eye8_TA_tex_txt:
- addrs: [0x80C487E0, 0x80C488E0]
- npc/tex/end_1_mouth1_TA_tex_txt:
- addrs: [0x80C488E0, 0x80C489E0]
- npc/tex/end_1_mouth2_TA_tex_txt:
- addrs: [0x80C489E0, 0x80C48AE0]
- npc/tex/end_1_mouth3_TA_tex_txt:
- addrs: [0x80C48AE0, 0x80C48BE0]
- npc/tex/end_1_mouth4_TA_tex_txt:
- addrs: [0x80C48BE0, 0x80C48CE0]
- npc/tex/end_1_mouth5_TA_tex_txt:
- addrs: [0x80C48CE0, 0x80C48DE0]
- npc/tex/end_1_mouth6_TA_tex_txt:
- addrs: [0x80C48DE0, 0x80C48EE0]
- npc/tex/end_1_tmem_txt:
- addrs: [0x80C48EE0, 0x80C493A0]
- field/bg/rom_train_3_pal:
- addrs: [0x80C49C00, 0x80C49C20]
- type: pal16
- npc/mdl/tuk_1_v:
- addrs: [0x80C4B710, 0x80C4D460]
- type: vtx
- npc/tex/tuk_1_pal:
- addrs: [0x80C4E080, 0x80C4E0A0]
- type: pal16
- npc/tex/tuk_1_eye1_TA_tex_txt:
- addrs: [0x80C4E0A0, 0x80C4E1A0]
- npc/tex/tuk_1_eye2_TA_tex_txt:
- addrs: [0x80C4E1A0, 0x80C4E2A0]
- npc/tex/tuk_1_eye3_TA_tex_txt:
- addrs: [0x80C4E2A0, 0x80C4E3A0]
- npc/tex/tuk_1_eye4_TA_tex_txt:
- addrs: [0x80C4E3A0, 0x80C4E4A0]
- npc/tex/tuk_1_eye5_TA_tex_txt:
- addrs: [0x80C4E4A0, 0x80C4E5A0]
- npc/tex/tuk_1_eye6_TA_tex_txt:
- addrs: [0x80C4E5A0, 0x80C4E6A0]
- npc/tex/tuk_1_eye7_TA_tex_txt:
- addrs: [0x80C4E6A0, 0x80C4E7A0]
- npc/tex/tuk_1_eye8_TA_tex_txt:
- addrs: [0x80C4E7A0, 0x80C4E8A0]
- npc/tex/tuk_1_tmem_txt:
- addrs: [0x80C4E8A0, 0x80C4EF20]
- npc/mdl/wol_1_v:
- addrs: [0x80C4F588, 0x80C50CE8]
- type: vtx
- npc/tex/wol_1_pal:
- addrs: [0x80C51660, 0x80C51680]
- type: pal16
- npc/tex/wol_1_eye1_TA_tex_txt:
- addrs: [0x80C51680, 0x80C51780]
- npc/tex/wol_1_eye2_TA_tex_txt:
- addrs: [0x80C51780, 0x80C51880]
- npc/tex/wol_1_eye3_TA_tex_txt:
- addrs: [0x80C51880, 0x80C51980]
- npc/tex/wol_1_eye4_TA_tex_txt:
- addrs: [0x80C51980, 0x80C51A80]
- npc/tex/wol_1_eye5_TA_tex_txt:
- addrs: [0x80C51A80, 0x80C51B80]
- npc/tex/wol_1_eye6_TA_tex_txt:
- addrs: [0x80C51B80, 0x80C51C80]
- npc/tex/wol_1_eye7_TA_tex_txt:
- addrs: [0x80C51C80, 0x80C51D80]
- npc/tex/wol_1_eye8_TA_tex_txt:
- addrs: [0x80C51D80, 0x80C51E80]
- npc/tex/wol_1_tmem_txt:
- addrs: [0x80C51E80, 0x80C52280]
- npc/tex/wol_2_pal:
- addrs: [0x80C52280, 0x80C522A0]
- type: pal16
- npc/tex/wol_2_eye1_TA_tex_txt:
- addrs: [0x80C522A0, 0x80C523A0]
- npc/tex/wol_2_eye2_TA_tex_txt:
- addrs: [0x80C523A0, 0x80C524A0]
- npc/tex/wol_2_eye3_TA_tex_txt:
- addrs: [0x80C524A0, 0x80C525A0]
- npc/tex/wol_2_eye4_TA_tex_txt:
- addrs: [0x80C525A0, 0x80C526A0]
- npc/tex/wol_2_eye5_TA_tex_txt:
- addrs: [0x80C526A0, 0x80C527A0]
- npc/tex/wol_2_eye6_TA_tex_txt:
- addrs: [0x80C527A0, 0x80C528A0]
- npc/tex/wol_2_eye7_TA_tex_txt:
- addrs: [0x80C528A0, 0x80C529A0]
- npc/tex/wol_2_eye8_TA_tex_txt:
- addrs: [0x80C529A0, 0x80C52AA0]
- npc/tex/wol_2_tmem_txt:
- addrs: [0x80C52AA0, 0x80C52EA0]
- npc/tex/wol_3_pal:
- addrs: [0x80C52EA0, 0x80C52EC0]
- type: pal16
- npc/tex/wol_3_eye1_TA_tex_txt:
- addrs: [0x80C52EC0, 0x80C52FC0]
- npc/tex/wol_3_eye2_TA_tex_txt:
- addrs: [0x80C52FC0, 0x80C530C0]
- npc/tex/wol_3_eye3_TA_tex_txt:
- addrs: [0x80C530C0, 0x80C531C0]
- npc/tex/wol_3_eye4_TA_tex_txt:
- addrs: [0x80C531C0, 0x80C532C0]
- npc/tex/wol_3_eye5_TA_tex_txt:
- addrs: [0x80C532C0, 0x80C533C0]
- npc/tex/wol_3_eye6_TA_tex_txt:
- addrs: [0x80C533C0, 0x80C534C0]
- npc/tex/wol_3_eye7_TA_tex_txt:
- addrs: [0x80C534C0, 0x80C535C0]
- npc/tex/wol_3_eye8_TA_tex_txt:
- addrs: [0x80C535C0, 0x80C536C0]
- npc/tex/wol_3_tmem_txt:
- addrs: [0x80C536C0, 0x80C53AC0]
- npc/tex/wol_4_pal:
- addrs: [0x80C53AC0, 0x80C53AE0]
- type: pal16
- npc/tex/wol_4_eye1_TA_tex_txt:
- addrs: [0x80C53AE0, 0x80C53BE0]
- npc/tex/wol_4_eye2_TA_tex_txt:
- addrs: [0x80C53BE0, 0x80C53CE0]
- npc/tex/wol_4_eye3_TA_tex_txt:
- addrs: [0x80C53CE0, 0x80C53DE0]
- npc/tex/wol_4_eye4_TA_tex_txt:
- addrs: [0x80C53DE0, 0x80C53EE0]
- npc/tex/wol_4_eye5_TA_tex_txt:
- addrs: [0x80C53EE0, 0x80C53FE0]
- npc/tex/wol_4_eye6_TA_tex_txt:
- addrs: [0x80C53FE0, 0x80C540E0]
- npc/tex/wol_4_eye7_TA_tex_txt:
- addrs: [0x80C540E0, 0x80C541E0]
- npc/tex/wol_4_eye8_TA_tex_txt:
- addrs: [0x80C541E0, 0x80C542E0]
- npc/tex/wol_4_tmem_txt:
- addrs: [0x80C542E0, 0x80C546E0]
- npc/tex/wol_5_pal:
- addrs: [0x80C546E0, 0x80C54700]
- type: pal16
- npc/tex/wol_5_eye1_TA_tex_txt:
- addrs: [0x80C54700, 0x80C54800]
- npc/tex/wol_5_eye2_TA_tex_txt:
- addrs: [0x80C54800, 0x80C54900]
- npc/tex/wol_5_eye3_TA_tex_txt:
- addrs: [0x80C54900, 0x80C54A00]
- npc/tex/wol_5_eye4_TA_tex_txt:
- addrs: [0x80C54A00, 0x80C54B00]
- npc/tex/wol_5_eye5_TA_tex_txt:
- addrs: [0x80C54B00, 0x80C54C00]
- npc/tex/wol_5_eye6_TA_tex_txt:
- addrs: [0x80C54C00, 0x80C54D00]
- npc/tex/wol_5_eye7_TA_tex_txt:
- addrs: [0x80C54D00, 0x80C54E00]
- npc/tex/wol_5_eye8_TA_tex_txt:
- addrs: [0x80C54E00, 0x80C54F00]
- npc/tex/wol_5_tmem_txt:
- addrs: [0x80C54F00, 0x80C55300]
- npc/tex/wol_6_pal:
- addrs: [0x80C55300, 0x80C55320]
- type: pal16
- npc/tex/wol_6_eye1_TA_tex_txt:
- addrs: [0x80C55320, 0x80C55420]
- npc/tex/wol_6_eye2_TA_tex_txt:
- addrs: [0x80C55420, 0x80C55520]
- npc/tex/wol_6_eye3_TA_tex_txt:
- addrs: [0x80C55520, 0x80C55620]
- npc/tex/wol_6_eye4_TA_tex_txt:
- addrs: [0x80C55620, 0x80C55720]
- npc/tex/wol_6_eye5_TA_tex_txt:
- addrs: [0x80C55720, 0x80C55820]
- npc/tex/wol_6_eye6_TA_tex_txt:
- addrs: [0x80C55820, 0x80C55920]
- npc/tex/wol_6_eye7_TA_tex_txt:
- addrs: [0x80C55920, 0x80C55A20]
- npc/tex/wol_6_eye8_TA_tex_txt:
- addrs: [0x80C55A20, 0x80C55B20]
- npc/tex/wol_6_tmem_txt:
- addrs: [0x80C55B20, 0x80C55F20]
- mFM_beach_pal_0:
- addrs: [0x80C59CA8, 0x80C59CC8]
- type: pal16
- mFM_beach_pal_1:
- addrs: [0x80C59CC8, 0x80C59CE8]
- type: pal16
- mFM_beach_pal_2:
- addrs: [0x80C59CE8, 0x80C59D08]
- type: pal16
- mFM_beach_pal_3:
- addrs: [0x80C59D08, 0x80C59D28]
- type: pal16
- mFM_beach_pal_4:
- addrs: [0x80C59D28, 0x80C59D48]
- type: pal16
- mFM_beach_pal_5:
- addrs: [0x80C59D48, 0x80C59D68]
- type: pal16
- mFM_beach_pal_6:
- addrs: [0x80C59D68, 0x80C59D88]
- type: pal16
- mFM_beach_pal_7:
- addrs: [0x80C59D88, 0x80C59DA8]
- type: pal16
- mFM_beach_pal_8:
- addrs: [0x80C59DA8, 0x80C59DC8]
- type: pal16
- mFM_beach_pal_9:
- addrs: [0x80C59DC8, 0x80C59DE8]
- type: pal16
- mFM_beach_pal_10:
- addrs: [0x80C59DE8, 0x80C59E08]
- type: pal16
- mFM_beach_pal_11:
- addrs: [0x80C59E08, 0x80C59E28]
- type: pal16
- # grd_yamishop.c
- field/bg/rom_yami_wall_pal:
- addrs: [0x80C5A240, 0x80C5A260]
- type: pal16
- field/bg/rom_yami_floor_pal:
- addrs: [0x80C5A260, 0x80C5A280]
- type: pal16
- field/bg/rom_yami_box_pal:
- addrs: [0x80C5A280, 0x80C5A2A0]
- type: pal16
- field/bg/rom_yami_mono01_pal:
- addrs: [0x80C5A2A0, 0x80C5A2C0]
- type: pal16
- field/bg/rom_yami_mono02_pal:
- addrs: [0x80C5A2C0, 0x80C5A2E0]
- type: pal16
- field/bg/rom_yami_mono03_pal:
- addrs: [0x80C5A2E0, 0x80C5A300]
- type: pal16
- field/bg/rom_yami_qup_pal:
- addrs: [0x80C5A300, 0x80C5A320]
- type: pal16
- field/bg/rom_yami_hyou_pal:
- addrs: [0x80C5A320, 0x80C5A340]
- type: pal16
- field/bg/rom_yami_step_tex_pal:
- addrs: [0x80C5A340, 0x80C5A360]
- type: pal16
- field/bg/rom_yami_hugu_pal:
- addrs: [0x80C5A360, 0x80C5A380]
- type: pal16
- field/bg/rom_yami_tama_pal:
- addrs: [0x80C5A380, 0x80C5A3A0]
- type: pal16
- field/bg/rom_yami_wall_tex:
- addrs: [0x80C5A3A0, 0x80C5A6A0]
- field/bg/rom_yami_floor_tex:
- addrs: [0x80C5A6A0, 0x80C5AEA0]
- field/bg/rom_yami_poll_tex:
- addrs: [0x80C5AEA0, 0x80C5AF20]
- field/bg/rom_yami_box01_tex:
- addrs: [0x80C5AF20, 0x80C5B020]
- field/bg/rom_yami_box02_tex:
- addrs: [0x80C5B020, 0x80C5B0A0]
- field/bg/rom_yami_mono01_tex:
- addrs: [0x80C5B0A0, 0x80C5B2A0]
- field/bg/rom_yami_mono02_tex:
- addrs: [0x80C5B2A0, 0x80C5B4A0]
- field/bg/rom_yami_mono03_tex:
- addrs: [0x80C5B4A0, 0x80C5B6A0]
- field/bg/rom_yami_qup_tex:
- addrs: [0x80C5B6A0, 0x80C5B9A0]
- field/bg/rom_yami_hyou_tex:
- addrs: [0x80C5B9A0, 0x80C5BAA0]
- field/bg/rom_yami_hyou02_tex:
- addrs: [0x80C5BAA0, 0x80C5BBA0]
- field/bg/rom_yami_step_tex:
- addrs: [0x80C5BBA0, 0x80C5BFA0]
- field/bg/rom_yami_hugu_tex:
- addrs: [0x80C5BFA0, 0x80C5C2A0]
- field/bg/rom_yami_tama_tex:
- addrs: [0x80C5C2A0, 0x80C5C5A0]
- field/bg/rom_yami_shadow01_tex:
- addrs: [0x80C5C5A0, 0x80C5C6A0]
- field/bg/grd_yamishop_v:
- addrs: [0x80C5C6A0, 0x80C5D770]
- type: vtx
- # grd_post_office.c
- field/bg/yubin_k_pal:
- addrs: [0x80C5DBA0, 0x80C5DBC0]
- type: pal16
- field/bg/yubin_k2_pal:
- addrs: [0x80C5DBC0, 0x80C5DBE0]
- type: pal16
- field/bg/yubin_floor_pal:
- addrs: [0x80C5DBE0, 0x80C5DC00]
- type: pal16
- field/bg/yubin_hakari_pal:
- addrs: [0x80C5DC00, 0x80C5DC20]
- type: pal16
- field/bg/yubin_wall_pal:
- addrs: [0x80C5DC20, 0x80C5DC40]
- type: pal16
- field/bg/yubin_letter_pal:
- addrs: [0x80C5DC40, 0x80C5DC60]
- type: pal16
- field/bg/yubin_us_bag_pal:
- addrs: [0x80C5DC60, 0x80C5DC80]
- type: pal16
- field/bg/zzzyubin_tree_pal:
- addrs: [0x80C5DC80, 0x80C5DCA0]
- type: pal16
- field/bg/yubin_t_pal:
- addrs: [0x80C5DCA0, 0x80C5DCC0]
- type: pal16
- field/bg/yubin_us_card_pal:
- addrs: [0x80C5DCC0, 0x80C5DCE0]
- type: pal16
- field/bg/yuibn_kaunta01_tex:
- addrs: [0x80C5DCE0, 0x80C5DEE0]
- field/bg/yuibn_kaunta02_tex:
- addrs: [0x80C5DEE0, 0x80C5E0E0]
- field/bg/yuibn_desk01_tex:
- addrs: [0x80C5E0E0, 0x80C5E2E0]
- field/bg/yubin_ark01_tex:
- addrs: [0x80C5E2E0, 0x80C5E6E0]
- field/bg/yuibn_kaunta03_tex:
- addrs: [0x80C5E6E0, 0x80C5E7E0]
- field/bg/yuibn_kaunta04_tex:
- addrs: [0x80C5E7E0, 0x80C5E9E0]
- field/bg/yubin_floor01_tex:
- addrs: [0x80C5E9E0, 0x80C5F1E0]
- field/bg/yubin_floor02_tex:
- addrs: [0x80C5F1E0, 0x80C5F9E0]
- field/bg/yubin_floor03_tex:
- addrs: [0x80C5F9E0, 0x80C5FAE0]
- field/bg/yubin_hakari01_tex:
- addrs: [0x80C5FAE0, 0x80C5FBE0]
- field/bg/yubin_hakari02_tex:
- addrs: [0x80C5FBE0, 0x80C5FC60]
- field/bg/yubin_hakari03_tex:
- addrs: [0x80C5FC60, 0x80C5FD60]
- field/bg/yubin_wall04_tex:
- addrs: [0x80C5FD60, 0x80C60060]
- field/bg/yubin_letter01_tex:
- addrs: [0x80C60060, 0x80C60160]
- field/bg/yubin_window_tex:
- addrs: [0x80C60160, 0x80C601E0]
- field/bg/yubin_us_bag_tex:
- addrs: [0x80C601E0, 0x80C60660]
- field/bg/yubin_tree2_tex:
- addrs: [0x80C60660, 0x80C60960]
- field/bg/yubin_tree_tex:
- addrs: [0x80C60960, 0x80C60A60]
- field/bg/yubin_tree3_tex:
- addrs: [0x80C60A60, 0x80C60AE0]
- field/bg/yubin_tree4_tex:
- addrs: [0x80C60AE0, 0x80C60B60]
- field/bg/yubin_step_tex:
- addrs: [0x80C60B60, 0x80C60C60]
- field/bg/rom_yubinkyoku_akril_tex:
- addrs: [0x80C60C60, 0x80C60CE0]
- field/bg/rom_yubinkyoku_shede_tex:
- addrs: [0x80C60CE0, 0x80C60DE0]
- field/bg/yubin_us_card_tex:
- addrs: [0x80C60DE0, 0x80C611E0]
- field/bg/yubin_us_mat_tex:
- addrs: [0x80C611E0, 0x80C614E0]
- field/bg/rom_yubinkyoku_shadow_tex:
- addrs: [0x80C614E0, 0x80C615E0]
- field/bg/yubin_us_card2_tex:
- addrs: [0x80C615E0, 0x80C616E0]
- field/bg/grd_post_office_v:
- addrs: [0x80C616E0, 0x80C62DE0]
- type: vtx
- # tmp4.c
- field/bg/tmp4_v:
- addrs: [0x80C63408, 0x80C640C8]
- type: vtx
- # tmpr4.c
- field/bg/tmpr4_v:
- addrs: [0x80C646D8, 0x80C659A8]
- type: vtx
- # tmp3.c
- field/bg/tmp3_v:
- addrs: [0x80C66278, 0x80C67298]
- type: vtx
- # tmpr3.c
- field/bg/tmpr3_v:
- addrs: [0x80C67838, 0x80C68998]
- type: vtx
- # tmp.c
- field/bg/tmp_v:
- addrs: [0x80C69338, 0x80C694F8]
- type: vtx
- # tmpr.c
- field/bg/tmpr_v:
- addrs: [0x80C695F0, 0x80C6A330]
- type: vtx
- # tmp2.c
- field/bg/grd_s_cliff_pal:
- addrs: [0x80C6A8C8, 0x80C6A8E8]
- type: pal16
- field/bg/grd_s_earth_pal:
- addrs: [0x80C6A8E8, 0x80C6A908]
- type: pal16
- field/bg/grd_s_cliff_tex:
- addrs: [0x80C6A908, 0x80C6B108]
- field/bg/grd_s_earth_tex:
- addrs: [0x80C6B108, 0x80C6B908]
- field/bg/grd_s_grass_tex:
- addrs: [0x80C6B908, 0x80C6BB08]
- field/bg/tmp2_v:
- addrs: [0x80C6BB08, 0x80C6C9C8]
- type: vtx
- # tmpr2.c
- field/bg/grd_1_earth_pal:
- addrs: [0x80C6CE78, 0x80C6CE98]
- type: pal16
- field/bg/grd_s_river_tex:
- addrs: [0x80C6CE98, 0x80C6D298]
- field/bg/grd_water1_tex:
- addrs: [0x80C6D298, 0x80C6D498]
- field/bg/grd_s_grass_tex2:
- addrs: [0x80C6D498, 0x80C6D698]
- field/bg/tmpr2_v:
- addrs: [0x80C6D698, 0x80C6D9F8]
- type: vtx
- mFM_bush_pal_0:
- addrs: [0x80C78680, 0x80C786A0]
- type: pal16
- mFM_bush_pal_1:
- addrs: [0x80C786A0, 0x80C786C0]
- type: pal16
- mFM_bush_pal_2:
- addrs: [0x80C786C0, 0x80C786E0]
- type: pal16
- mFM_bush_pal_3:
- addrs: [0x80C786E0, 0x80C78700]
- type: pal16
- mFM_bush_pal_4:
- addrs: [0x80C78700, 0x80C78720]
- type: pal16
- mFM_bush_pal_5:
- addrs: [0x80C78720, 0x80C78740]
- type: pal16
- mFM_bush_pal_6:
- addrs: [0x80C78740, 0x80C78760]
- type: pal16
- mFM_bush_pal_7:
- addrs: [0x80C78760, 0x80C78780]
- type: pal16
- mFM_bush_pal_8:
- addrs: [0x80C78780, 0x80C787A0]
- type: pal16
- mFM_bush_pal_9:
- addrs: [0x80C787A0, 0x80C787C0]
- type: pal16
- mFM_bush_pal_10:
- addrs: [0x80C787C0, 0x80C787E0]
- type: pal16
- mFM_bush_pal_11:
- addrs: [0x80C787E0, 0x80C78800]
- type: pal16
- mFM_cliff_pal_0:
- addrs: [0x80C78988, 0x80C789A8]
- type: pal16
- mFM_cliff_pal_1:
- addrs: [0x80C789A8, 0x80C789C8]
- type: pal16
- mFM_cliff_pal_2:
- addrs: [0x80C789C8, 0x80C789E8]
- type: pal16
- mFM_cliff_pal_3:
- addrs: [0x80C789E8, 0x80C78A08]
- type: pal16
- mFM_cliff_pal_4:
- addrs: [0x80C78A08, 0x80C78A28]
- type: pal16
- mFM_cliff_pal_5:
- addrs: [0x80C78A28, 0x80C78A48]
- type: pal16
- mFM_cliff_pal_6:
- addrs: [0x80C78A48, 0x80C78A68]
- type: pal16
- mFM_cliff_pal_7:
- addrs: [0x80C78A68, 0x80C78A88]
- type: pal16
- mFM_cliff_pal_8:
- addrs: [0x80C78A88, 0x80C78AA8]
- type: pal16
- mFM_cliff_pal_9:
- addrs: [0x80C78AA8, 0x80C78AC8]
- type: pal16
- mFM_cliff_pal_10:
- addrs: [0x80C78AC8, 0x80C78AE8]
- type: pal16
- mFM_cliff_pal_11:
- addrs: [0x80C78AE8, 0x80C78B08]
- type: pal16
- mFM_earth_pal_0:
- addrs: [0x80C90100, 0x80C90120]
- type: pal16
- mFM_earth_pal_1:
- addrs: [0x80C90120, 0x80C90140]
- type: pal16
- mFM_earth_pal_2:
- addrs: [0x80C90140, 0x80C90160]
- type: pal16
- mFM_earth_pal_3:
- addrs: [0x80C90160, 0x80C90180]
- type: pal16
- mFM_earth_pal_4:
- addrs: [0x80C90180, 0x80C901A0]
- type: pal16
- mFM_earth_pal_5:
- addrs: [0x80C901A0, 0x80C901C0]
- type: pal16
- mFM_earth_pal_6:
- addrs: [0x80C901C0, 0x80C901E0]
- type: pal16
- mFM_earth_pal_7:
- addrs: [0x80C901E0, 0x80C90200]
- type: pal16
- mFM_earth_pal_8:
- addrs: [0x80C90200, 0x80C90220]
- type: pal16
- mFM_earth_pal_9:
- addrs: [0x80C90220, 0x80C90240]
- type: pal16
- mFM_earth_pal_10:
- addrs: [0x80C90240, 0x80C90260]
- type: pal16
- mFM_earth_pal_11:
- addrs: [0x80C90260, 0x80C90280]
- type: pal16
-
- # map submenu
- # grd_s_c1_1.c
- field/bg/grd_s_c1_1_v:
- addrs: [0x80CE7320, 0x80CE8180]
- type: vtx
- # grd_s_c1_2.c
- field/bg/grd_s_c1_2_v:
- addrs: [0x80CE83C0, 0x80CE9290]
- type: vtx
- # grd_s_c1_3.c
- field/bg/grd_s_c1_3_v:
- addrs: [0x80CE9510, 0x80CEA330]
- type: vtx
- # grd_s_c1_4.c
- field/bg/grd_s_c1_4_v:
- addrs: [0x80CEA598, 0x80CEB5D8]
- type: vtx
- # grd_s_c1_5.c
- field/bg/grd_s_c1_5_v:
- addrs: [0x80CEB868, 0x80CEC538]
- type: vtx
- # grd_s_c1_r1_1.c
- field/bg/grd_s_c1_r1_1_v:
- addrs: [0x80CEC748, 0x80CED978]
- type: vtx
- # grd_s_c1_r1_2.c
- field/bg/grd_s_c1_r1_2_v:
- addrs: [0x80CEDD00, 0x80CEEE20]
- type: vtx
- # grd_s_c1_r1_3.c
- field/bg/grd_s_c1_r1_3_v:
- addrs: [0x80CEF138, 0x80CF0258]
- type: vtx
- # grd_s_c1_r2_1.c
- field/bg/grd_s_c1_r2_1_v:
- addrs: [0x80CF0548, 0x80CF1648]
- type: vtx
- # grd_s_c1_r2_2.c
- field/bg/grd_s_c1_r2_2_v:
- addrs: [0x80CF1970, 0x80CF2AF0]
- type: vtx
- # grd_s_c1_r2_3.c
- field/bg/grd_s_c1_r2_3_v:
- addrs: [0x80CF2DD8, 0x80CF40D8]
- type: vtx
- # grd_s_c1_r3_1.c
- field/bg/grd_s_c1_r3_1_v:
- addrs: [0x80CF4450, 0x80CF5230]
- type: vtx
- # grd_s_c1_r3_2.c
- field/bg/grd_s_c1_r3_2_v:
- addrs: [0x80CF5518, 0x80CF6508]
- type: vtx
- # grd_s_c1_r3_3.c
- field/bg/grd_s_c1_r3_3_v:
- addrs: [0x80CF6820, 0x80CF7900]
- type: vtx
- # grd_s_c1_s_1.c
- field/bg/grd_s_c1_s_1_v:
- addrs: [0x80CF7C58, 0x80CF8918]
- type: vtx
- # grd_s_c1_s_2.c
- field/bg/grd_s_c1_s_2_v:
- addrs: [0x80CF8B38, 0x80CF99F8]
- type: vtx
- # grd_s_c1_s_3.c
- field/bg/grd_s_c1_s_3_v:
- addrs: [0x80CF9C60, 0x80CFAC60]
- type: vtx
- # grd_s_c1_s_4.c
- field/bg/grd_s_c1_s_4_v:
- addrs: [0x80CFAEA0, 0x80CFBF20]
- type: vtx
- # grd_s_c2_1.c
- field/bg/grd_s_c2_1_v:
- addrs: [0x80CFC1B0, 0x80CFCF80]
- type: vtx
- # grd_s_c2_2.c
- field/bg/grd_s_c2_2_v:
- addrs: [0x80CFD1D0, 0x80CFE010]
- type: vtx
- # grd_s_c2_3.c
- field/bg/grd_s_c2_3_v:
- addrs: [0x80CFE230, 0x80CFF2B0]
- type: vtx
- # grd_s_c2_r1_1.c
- field/bg/grd_s_c2_r1_1_v:
- addrs: [0x80CFF5B8, 0x80D00688]
- type: vtx
- # grd_s_c2_r1_2.c
- field/bg/grd_s_c2_r1_2_v:
- addrs: [0x80D009B0, 0x80D01B50]
- type: vtx
- # grd_s_c2_r2_1.c
- field/bg/grd_s_c2_r2_1_v:
- addrs: [0x80D01E80, 0x80D02E70]
- type: vtx
- # grd_s_c2_r2_2.c
- field/bg/grd_s_c2_r2_2_v:
- addrs: [0x80D03150, 0x80D04360]
- type: vtx
- # grd_s_c2_s_1.c
- field/bg/grd_s_c2_s_1_v:
- addrs: [0x80D04680, 0x80D05790]
- type: vtx
- # grd_s_c2_s_2.c
- field/bg/grd_s_c2_s_2_v:
- addrs: [0x80D05A20, 0x80D06880]
- type: vtx
- # grd_s_c2_s_3.c
- field/bg/grd_s_c2_s_3_v:
- addrs: [0x80D06AF0, 0x80D07880]
- type: vtx
- # grd_s_c3_1.c
- field/bg/grd_s_c3_1_v:
- addrs: [0x80D07AF0, 0x80D08A30]
- type: vtx
- # grd_s_c3_2.c
- field/bg/grd_s_c3_2_v:
- addrs: [0x80D08C90, 0x80D09A90]
- type: vtx
- # grd_s_c3_3.c
- field/bg/grd_s_c3_3_v:
- addrs: [0x80D09D80, 0x80D0AAA0]
- type: vtx
- # grd_s_c3_r1_1.c
- field/bg/grd_s_c3_r1_1_v:
- addrs: [0x80D0AD00, 0x80D0BBA0]
- type: vtx
- # grd_s_c3_r1_2.c
- field/bg/grd_s_c3_r1_2_v:
- addrs: [0x80D0BE58, 0x80D0CE48]
- type: vtx
- # grd_s_c3_r2_1.c
- field/bg/grd_s_c3_r2_1_v:
- addrs: [0x80D0D158, 0x80D0E468]
- type: vtx
- # grd_s_c3_r2_2.c
- field/bg/grd_s_c3_r2_2_v:
- addrs: [0x80D0E7D8, 0x80D0FAE8]
- type: vtx
- # grd_s_c3_s_1.c
- field/bg/grd_s_c3_s_1_v:
- addrs: [0x80D0FE60, 0x80D11330]
- type: vtx
- # grd_s_c4_1.c
- field/bg/grd_s_c4_1_v:
- addrs: [0x80D11628, 0x80D12218]
- type: vtx
- # grd_s_c4_2.c
- field/bg/grd_s_c4_2_v:
- addrs: [0x80D12430, 0x80D13370]
- type: vtx
- # grd_s_c4_3.c
- field/bg/grd_s_c4_3_v:
- addrs: [0x80D135B0, 0x80D14340]
- type: vtx
- # grd_s_c4_r1_1.c
- field/bg/grd_s_c4_r1_1_v:
- addrs: [0x80D145A8, 0x80D155A8]
- type: vtx
- # grd_s_c4_r1_2.c
- field/bg/grd_s_c4_r1_2_v:
- addrs: [0x80D158C0, 0x80D16860]
- type: vtx
- # grd_s_c4_r2_1.c
- field/bg/grd_s_c4_r2_1_v:
- addrs: [0x80D16B90, 0x80D17C00]
- type: vtx
- # grd_s_c4_r2_2.c
- field/bg/grd_s_c4_r2_2_v:
- addrs: [0x80D17F08, 0x80D18D08]
- type: vtx
- # grd_s_c4_r3_1.c
- field/bg/grd_s_c4_r3_1_v:
- addrs: [0x80D18FC0, 0x80D19DE0]
- type: vtx
- # grd_s_c4_r3_2.c
- field/bg/grd_s_c4_r3_2_v:
- addrs: [0x80D1A0D8, 0x80D1AE08]
- type: vtx
- # grd_s_c4_s_1.c
- field/bg/grd_s_c4_s_1_v:
- addrs: [0x80D1B088, 0x80D1BDD8]
- type: vtx
- # grd_s_c4_s_2.c
- field/bg/grd_s_c4_s_2_v:
- addrs: [0x80D1C030, 0x80D1D020]
- type: vtx
- # grd_s_c5_1.c
- field/bg/grd_s_c5_1_v:
- addrs: [0x80D1D2A8, 0x80D1DD98]
- type: vtx
- # grd_s_c5_2.c
- field/bg/grd_s_c5_2_v:
- addrs: [0x80D1DFA8, 0x80D1EF28]
- type: vtx
- # grd_s_c5_3.c
- field/bg/grd_s_c5_3_v:
- addrs: [0x80D1F1B8, 0x80D1FD08]
- type: vtx
- # grd_s_c5_r1_1.c
- field/bg/grd_s_c5_r1_1_v:
- addrs: [0x80D1FF30, 0x80D211D0]
- type: vtx
- # grd_s_c5_r1_2.c
- field/bg/grd_s_c5_r1_2_v:
- addrs: [0x80D21520, 0x80D22760]
- type: vtx
- # grd_s_c5_r2_1.c
- field/bg/grd_s_c5_r2_1_v:
- addrs: [0x80D22AC0, 0x80D23E40]
- type: vtx
- # grd_s_c5_r2_2.c
- field/bg/grd_s_c5_r2_2_v:
- addrs: [0x80D241D0, 0x80D25300]
- type: vtx
- # grd_s_c5_r3_1.c
- field/bg/grd_s_c5_r3_1_v:
- addrs: [0x80D25648, 0x80D26658]
- type: vtx
- # grd_s_c5_r3_2.c
- field/bg/grd_s_c5_r3_2_v:
- addrs: [0x80D26988, 0x80D27898]
- type: vtx
- # grd_s_c5_s_1.c
- field/bg/grd_s_c5_s_1_v:
- addrs: [0x80D27B78, 0x80D288F8]
- type: vtx
- # grd_s_c5_s_2.c
- field/bg/grd_s_c5_s_2_v:
- addrs: [0x80D28B20, 0x80D298C0]
- type: vtx
- # grd_s_c6_1.c
- field/bg/grd_s_c6_1_v:
- addrs: [0x80D29AC8, 0x80D2A998]
- type: vtx
- # grd_s_c6_2.c
- field/bg/grd_s_c6_2_v:
- addrs: [0x80D2AC00, 0x80D2BB80]
- type: vtx
- # grd_s_c6_3.c
- field/bg/grd_s_c6_3_v:
- addrs: [0x80D2BE00, 0x80D2CB60]
- type: vtx
- # grd_s_c6_r1_1.c
- field/bg/grd_s_c6_r1_1_v:
- addrs: [0x80D2CDB0, 0x80D2DD50]
- type: vtx
- # grd_s_c6_r1_2.c
- field/bg/grd_s_c6_r1_2_v:
- addrs: [0x80D2E098, 0x80D2F0B8]
- type: vtx
- # grd_s_c6_r3_1.c
- field/bg/grd_s_c6_r3_1_v:
- addrs: [0x80D2F3F8, 0x80D30888]
- type: vtx
- # grd_s_c6_s_1.c
- field/bg/grd_s_c6_s_1_v:
- addrs: [0x80D30BB0, 0x80D31A50]
- type: vtx
- # grd_s_c7_1.c
- field/bg/grd_s_c7_1_v:
- addrs: [0x80D31C90, 0x80D32A90]
- type: vtx
- # grd_s_c7_2.c
- field/bg/grd_s_c7_2_v:
- addrs: [0x80D32CC8, 0x80D33DD8]
- type: vtx
- # grd_s_c7_3.c
- field/bg/grd_s_c7_3_v:
- addrs: [0x80D34090, 0x80D35150]
- type: vtx
- # grd_s_c7_r1_1.c
- field/bg/grd_s_c7_r1_1_v:
- addrs: [0x80D35460, 0x80D362A0]
- type: vtx
- # grd_s_c7_r1_2.c
- field/bg/grd_s_c7_r1_2_v:
- addrs: [0x80D365B0, 0x80D37440]
- type: vtx
- # grd_s_c7_r3_1.c
- field/bg/grd_s_c7_r3_1_v:
- addrs: [0x80D37708, 0x80D38908]
- type: vtx
- # grd_s_c7_r3_2.c
- field/bg/grd_s_c7_r3_2_v:
- addrs: [0x80D38C58, 0x80D39FA8]
- type: vtx
- # grd_s_c7_s_1.c
- field/bg/grd_s_c7_s_1_v:
- addrs: [0x80D3A318, 0x80D3B678]
- type: vtx
- # grd_s_c7_s_2.c
- field/bg/grd_s_c7_s_2_v:
- addrs: [0x80D3B938, 0x80D3C5B8]
- type: vtx
- # grd_s_c7_s_3.c
- field/bg/grd_s_c7_s_3_v:
- addrs: [0x80D3C800, 0x80D3D6C0]
- type: vtx
- # grd_s_e1_1.c
- field/bg/grd_s_e1_1_v:
- addrs: [0x80D3D930, 0x80D3DE90]
- type: vtx
- # grd_s_e1_r1_1.c
- field/bg/grd_s_e1_r1_1_v:
- addrs: [0x80D3DFF0, 0x80D3F3E0]
- type: vtx
- # grd_s_e2_1.c
- field/bg/grd_s_e2_1_v:
- addrs: [0x80D3F770, 0x80D3FDA0]
- type: vtx
- # grd_s_e2_c1_1.c
- field/bg/grd_s_e2_c1_1_v:
- addrs: [0x80D3FF08, 0x80D40568]
- type: vtx
- # grd_s_e2_m_1.c
- field/bg/grd_s_e2_m_1_v:
- addrs: [0x80D406C8, 0x80D40D58]
- type: vtx
- # grd_s_e2_o_1.c
- field/bg/grd_s_e2_o_1_v:
- addrs: [0x80D40FA0, 0x80D41180]
- type: vtx
- # grd_s_e2_t_1.c
- field/bg/grd_s_e2_t_1_v:
- addrs: [0x80D41280, 0x80D41C00]
- type: vtx
- # grd_s_e3_1.c
- field/bg/grd_s_e3_1_v:
- addrs: [0x80D41DF0, 0x80D42480]
- type: vtx
- # grd_s_e3_c1_1.c
- field/bg/grd_s_e3_c1_1_v:
- addrs: [0x80D425D8, 0x80D42C48]
- type: vtx
- # grd_s_e3_m_1.c
- field/bg/grd_s_e3_m_1_v:
- addrs: [0x80D42DB0, 0x80D434C0]
- type: vtx
- # grd_s_e3_o_1.c
- field/bg/grd_s_e3_o_1_v:
- addrs: [0x80D436F8, 0x80D438D8]
- type: vtx
- # grd_s_e3_t_1.c
- field/bg/grd_s_e3_t_1_v:
- addrs: [0x80D439D8, 0x80D44278]
- type: vtx
- # grd_s_e4_1.c
- field/bg/grd_s_e4_1_v:
- addrs: [0x80D44468, 0x80D445C8]
- type: vtx
- # grd_s_e5_1.c
- field/bg/grd_s_e5_1_v:
- addrs: [0x80D44670, 0x80D447F0]
- type: vtx
- # grd_s_f_1.c
- field/bg/grd_s_f_1_v:
- addrs: [0x80D448A0, 0x80D45410]
- type: vtx
- # grd_s_f_10.c
- field/bg/grd_s_f_10_v:
- addrs: [0x80D455F0, 0x80D46210]
- type: vtx
- # grd_s_f_2.c
- field/bg/grd_s_f_2_v:
- addrs: [0x80D463D8, 0x80D47118]
- type: vtx
- # grd_s_f_3.c
- field/bg/grd_s_f_3_v:
- addrs: [0x80D47320, 0x80D47B00]
- type: vtx
- # grd_s_f_4.c
- field/bg/grd_s_f_4_v:
- addrs: [0x80D47C88, 0x80D487F8]
- type: vtx
- # grd_s_f_5.c
- field/bg/grd_s_f_5_v:
- addrs: [0x80D48A70, 0x80D499A0]
- type: vtx
- # grd_s_f_6.c
- field/bg/grd_s_f_6_v:
- addrs: [0x80D49C60, 0x80D4ABD0]
- type: vtx
- # grd_s_f_7.c
- field/bg/grd_s_f_7_v:
- addrs: [0x80D4AE88, 0x80D4C3B8]
- type: vtx
- # grd_s_f_8.c
- field/bg/grd_s_f_8_v:
- addrs: [0x80D4C640, 0x80D4D360]
- type: vtx
- # grd_s_f_9.c
- field/bg/grd_s_f_9_v:
- addrs: [0x80D4D568, 0x80D4E4D8]
- type: vtx
- # grd_s_f_ko_1.c
- field/bg/grd_s_f_ko_1_v:
- addrs: [0x80D4E708, 0x80D4F5D8]
- type: vtx
- # grd_s_f_ko_2.c
- field/bg/grd_s_f_ko_2_v:
- addrs: [0x80D4F808, 0x80D502B8]
- type: vtx
- # grd_s_f_ko_3.c
- field/bg/grd_s_f_ko_3_v:
- addrs: [0x80D504A0, 0x80D51430]
- type: vtx
- # grd_s_f_mh_1.c
- field/bg/grd_s_f_mh_1_v:
- addrs: [0x80D51708, 0x80D523C8]
- type: vtx
- # grd_s_f_mh_2.c
- field/bg/grd_s_f_mh_2_v:
- addrs: [0x80D52588, 0x80D53338]
- type: vtx
- # grd_s_f_mh_3.c
- field/bg/grd_s_f_mh_3_v:
- addrs: [0x80D534F0, 0x80D53FF0]
- type: vtx
- # grd_s_f_mu_1.c
- field/bg/grd_s_f_mu_1_v:
- addrs: [0x80D54190, 0x80D54B90]
- type: vtx
- # grd_s_f_mu_2.c
- field/bg/grd_s_f_mu_2_v:
- addrs: [0x80D54D60, 0x80D55750]
- type: vtx
- # grd_s_f_mu_3.c
- field/bg/grd_s_f_mu_3_v:
- addrs: [0x80D55930, 0x80D562B0]
- type: vtx
- # grd_s_f_pk_1.c
- field/bg/grd_s_f_pk_1_v:
- addrs: [0x80D564B8, 0x80D57378]
- type: vtx
- # grd_s_f_pk_2.c
- field/bg/grd_s_f_pk_2_v:
- addrs: [0x80D575B8, 0x80D58358]
- type: vtx
- # grd_s_f_pk_3.c
- field/bg/grd_s_f_pk_3_v:
- addrs: [0x80D58580, 0x80D595A0]
- type: vtx
- # grd_s_hole_test.c
- field/bg/grd_s_hole_test_v:
- addrs: [0x80D59810, 0x80D5A740]
- type: vtx
- # grd_s_il_1.c
- field/bg/grd_s_il_1_v:
- addrs: [0x80D5A9A8, 0x80D5B6C8]
- type: vtx
- # grd_s_il_2.c
- field/bg/grd_s_il_2_v:
- addrs: [0x80D5BA18, 0x80D5CF08]
- type: vtx
- # grd_s_il_3.c
- field/bg/grd_s_il_3_v:
- addrs: [0x80D5D358, 0x80D5E188]
- type: vtx
- # grd_s_il_4.c
- field/bg/grd_s_il_4_v:
- addrs: [0x80D5E4F8, 0x80D5F278]
- type: vtx
- # grd_s_ir_1.c
- field/bg/grd_s_ir_1_v:
- addrs: [0x80D5F5E8, 0x80D60668]
- type: vtx
- # grd_s_ir_2.c
- field/bg/grd_s_ir_2_v:
- addrs: [0x80D60A60, 0x80D61DD0]
- type: vtx
- # grd_s_ir_3.c
- field/bg/grd_s_ir_3_v:
- addrs: [0x80D621F8, 0x80D63748]
- type: vtx
- # grd_s_ir_4.c
- field/bg/grd_s_ir_4_v:
- addrs: [0x80D63BB0, 0x80D64D60]
- type: vtx
- # grd_s_m_1.c
- field/bg/grd_s_m_1_v:
- addrs: [0x80D65158, 0x80D65F58]
- type: vtx
- # grd_s_m_10.c
- field/bg/grd_s_m_10_v:
- addrs: [0x80D662B0, 0x80D670A0]
- type: vtx
- # grd_s_m_2.c
- field/bg/grd_s_m_2_v:
- addrs: [0x80D67438, 0x80D68368]
- type: vtx
- # grd_s_m_3.c
- field/bg/grd_s_m_3_v:
- addrs: [0x80D68718, 0x80D69578]
- type: vtx
- # grd_s_m_4.c
- field/bg/grd_s_m_4_v:
- addrs: [0x80D698C8, 0x80D6A528]
- type: vtx
- # grd_s_m_5.c
- field/bg/grd_s_m_5_v:
- addrs: [0x80D6A8A0, 0x80D6B8A0]
- type: vtx
- # grd_s_m_6.c
- field/bg/grd_s_m_6_v:
- addrs: [0x80D6BC70, 0x80D6CBE0]
- type: vtx
- # grd_s_m_7.c
- field/bg/grd_s_m_7_v:
- addrs: [0x80D6CF60, 0x80D6DBF0]
- type: vtx
- # grd_s_m_8.c
- field/bg/grd_s_m_8_v:
- addrs: [0x80D6DF60, 0x80D6EC70]
- type: vtx
- # grd_s_m_9.c
- field/bg/grd_s_m_9_v:
- addrs: [0x80D6EFE8, 0x80D6FC28]
- type: vtx
- # grd_s_m_r1_1.c
- field/bg/grd_s_m_r1_1_v:
- addrs: [0x80D6FF78, 0x80D70FB8]
- type: vtx
- # grd_s_m_r1_2.c
- field/bg/grd_s_m_r1_2_v:
- addrs: [0x80D713F8, 0x80D723C8]
- type: vtx
- # grd_s_m_r1_3.c
- field/bg/grd_s_m_r1_3_v:
- addrs: [0x80D727D8, 0x80D73638]
- type: vtx
- # grd_s_m_r1_4.c
- field/bg/grd_s_m_r1_4_v:
- addrs: [0x80D73A50, 0x80D74B90]
- type: vtx
- # grd_s_m_r1_5.c
- field/bg/grd_s_m_r1_5_v:
- addrs: [0x80D74FF8, 0x80D76238]
- type: vtx
- # grd_s_m_r1_b_1.c
- field/bg/grd_s_m_r1_b_1_v:
- addrs: [0x80D76680, 0x80D774E0]
- type: vtx
- # grd_s_m_r1_b_2.c
- field/bg/grd_s_m_r1_b_2_v:
- addrs: [0x80D77928, 0x80D78AB8]
- type: vtx
- # grd_s_m_r1_b_3.c
- field/bg/grd_s_m_r1_b_3_v:
- addrs: [0x80D78F30, 0x80D79F30]
- type: vtx
- # grd_s_m_ta_1.c
- field/bg/grd_s_m_ta_1_v:
- addrs: [0x80D7A370, 0x80D7B320]
- type: vtx
- # grd_s_m_ta_2.c
- field/bg/grd_s_m_ta_2_v:
- addrs: [0x80D7B6E8, 0x80D7C568]
- type: vtx
- # grd_s_m_ta_3.c
- field/bg/grd_s_m_ta_3_v:
- addrs: [0x80D7C920, 0x80D7D890]
- type: vtx
- # grd_s_m_wf_1.c
- field/bg/grd_s_m_wf_1_v:
- addrs: [0x80D7DCB0, 0x80D7EEE0]
- type: vtx
- # grd_s_m_wf_2.c
- field/bg/grd_s_m_wf_2_v:
- addrs: [0x80D7F350, 0x80D80B60]
- type: vtx
- # grd_s_m_wf_3.c
- field/bg/grd_s_m_wf_3_v:
- addrs: [0x80D81048, 0x80D82348]
- type: vtx
- # grd_s_o_1.c
- field/bg/grd_s_o_1_v:
- addrs: [0x80D827C0, 0x80D82B60]
- type: vtx
- # grd_s_o_10.c
- field/bg/grd_s_o_10_v:
- addrs: [0x80D82CE0, 0x80D83040]
- type: vtx
- # grd_s_o_2.c
- field/bg/grd_s_o_2_v:
- addrs: [0x80D831B8, 0x80D83518]
- type: vtx
- # grd_s_o_3.c
- field/bg/grd_s_o_3_v:
- addrs: [0x80D83698, 0x80D839C8]
- type: vtx
- # grd_s_o_4.c
- field/bg/grd_s_o_4_v:
- addrs: [0x80D83B40, 0x80D83E90]
- type: vtx
- # grd_s_o_5.c
- field/bg/grd_s_o_5_v:
- addrs: [0x80D84010, 0x80D84350]
- type: vtx
- # grd_s_o_6.c
- field/bg/grd_s_o_6_v:
- addrs: [0x80D844D0, 0x80D84800]
- type: vtx
- # grd_s_o_7.c
- field/bg/grd_s_o_7_v:
- addrs: [0x80D84978, 0x80D84CC8]
- type: vtx
- # grd_s_o_8.c
- field/bg/grd_s_o_8_v:
- addrs: [0x80D84E48, 0x80D851E8]
- type: vtx
- # grd_s_o_9.c
- field/bg/grd_s_o_9_v:
- addrs: [0x80D85378, 0x80D85708]
- type: vtx
- # grd_s_o_i_1.c
- field/bg/grd_s_o_i_1_v:
- addrs: [0x80D85850, 0x80D85B70]
- type: vtx
- # grd_s_o_i_2.c
- field/bg/grd_s_o_i_2_v:
- addrs: [0x80D85CF0, 0x80D85ED0]
- type: vtx
- # grd_s_o_r1_1.c
- field/bg/grd_s_o_r1_1_v:
- addrs: [0x80D86010, 0x80D863E0]
- type: vtx
- # grd_s_o_r1_2.c
- field/bg/grd_s_o_r1_2_v:
- addrs: [0x80D86560, 0x80D86900]
- type: vtx
- # grd_s_o_r1_3.c
- field/bg/grd_s_o_r1_3_v:
- addrs: [0x80D86A80, 0x80D86E30]
- type: vtx
- # grd_s_o_r1_4.c
- field/bg/grd_s_o_r1_4_v:
- addrs: [0x80D86FB8, 0x80D87338]
- type: vtx
- # grd_s_o_r1_5.c
- field/bg/grd_s_o_r1_5_v:
- addrs: [0x80D874B8, 0x80D87778]
- type: vtx
- # grd_s_o_r1_b_1.c
- field/bg/grd_s_o_r1_b_1_v:
- addrs: [0x80D878D0, 0x80D87AB0]
- type: vtx
- # grd_s_o_r1_b_2.c
- field/bg/grd_s_o_r1_b_2_v:
- addrs: [0x80D87BF0, 0x80D87DD0]
- type: vtx
- # grd_s_o_r1_b_3.c
- field/bg/grd_s_o_r1_b_3_v:
- addrs: [0x80D87F08, 0x80D880E8]
- type: vtx
- # grd_s_o_ta_1.c
- field/bg/grd_s_o_ta_1_v:
- addrs: [0x80D88220, 0x80D885E0]
- type: vtx
- # grd_s_o_ta_2.c
- field/bg/grd_s_o_ta_2_v:
- addrs: [0x80D88768, 0x80D88A48]
- type: vtx
- # grd_s_o_ta_3.c
- field/bg/grd_s_o_ta_3_v:
- addrs: [0x80D88BB0, 0x80D88EA0]
- type: vtx
- # grd_s_o_wf_1.c
- field/bg/grd_s_o_wf_1_v:
- addrs: [0x80D89008, 0x80D893F8]
- type: vtx
- # grd_s_o_wf_2.c
- field/bg/grd_s_o_wf_2_v:
- addrs: [0x80D89578, 0x80D89998]
- type: vtx
- # grd_s_o_wf_3.c
- field/bg/grd_s_o_wf_3_v:
- addrs: [0x80D89B18, 0x80D89EF8]
- type: vtx
- # grd_s_r1_1.c
- field/bg/grd_s_r1_1_v:
- addrs: [0x80D8A040, 0x80D8AC00]
- type: vtx
- # grd_s_r1_2.c
- field/bg/grd_s_r1_2_v:
- addrs: [0x80D8AE38, 0x80D8BAD8]
- type: vtx
- # grd_s_r1_3.c
- field/bg/grd_s_r1_3_v:
- addrs: [0x80D8BD70, 0x80D8CAE0]
- type: vtx
- # grd_s_r1_4.c
- field/bg/grd_s_r1_4_v:
- addrs: [0x80D8CDA0, 0x80D8D880]
- type: vtx
- # grd_s_r1_b_1.c
- field/bg/grd_s_r1_b_1_v:
- addrs: [0x80D8DAB8, 0x80D8E818]
- type: vtx
- # grd_s_r1_b_2.c
- field/bg/grd_s_r1_b_2_v:
- addrs: [0x80D8EAF0, 0x80D8FC00]
- type: vtx
- # grd_s_r1_b_3.c
- field/bg/grd_s_r1_b_3_v:
- addrs: [0x80D8FF30, 0x80D90EF0]
- type: vtx
- # grd_s_r1_p_1.c
- field/bg/grd_s_r1_p_1_v:
- addrs: [0x80D91220, 0x80D921D0]
- type: vtx
- # grd_s_r2_1.c
- field/bg/grd_s_r2_1_v:
- addrs: [0x80D924C0, 0x80D93040]
- type: vtx
- # grd_s_r2_2.c
- field/bg/grd_s_r2_2_v:
- addrs: [0x80D932E8, 0x80D93F18]
- type: vtx
- # grd_s_r2_3.c
- field/bg/grd_s_r2_3_v:
- addrs: [0x80D94148, 0x80D94EE8]
- type: vtx
- # grd_s_r2_4.c
- field/bg/grd_s_r2_4_v:
- addrs: [0x80D951B8, 0x80D95F08]
- type: vtx
- # grd_s_r2_b_1.c
- field/bg/grd_s_r2_b_1_v:
- addrs: [0x80D961D0, 0x80D97490]
- type: vtx
- # grd_s_r2_b_2.c
- field/bg/grd_s_r2_b_2_v:
- addrs: [0x80D97810, 0x80D98850]
- type: vtx
- # grd_s_r2_b_3.c
- field/bg/grd_s_r2_b_3_v:
- addrs: [0x80D98B78, 0x80D99D28]
- type: vtx
- # grd_s_r2_p_1.c
- field/bg/grd_s_r2_p_1_v:
- addrs: [0x80D9A070, 0x80D9B5B0]
- type: vtx
- # grd_s_r3_1.c
- field/bg/grd_s_r3_1_v:
- addrs: [0x80D9B8E0, 0x80D9C6C0]
- type: vtx
- # grd_s_r3_2.c
- field/bg/grd_s_r3_2_v:
- addrs: [0x80D9C988, 0x80D9D5F8]
- type: vtx
- # grd_s_r3_3.c
- field/bg/grd_s_r3_3_v:
- addrs: [0x80D9D888, 0x80D9E518]
- type: vtx
- # grd_s_r3_4.c
- field/bg/grd_s_r3_4_v:
- addrs: [0x80D9E7D0, 0x80D9F3A0]
- type: vtx
- # grd_s_r3_b_1.c
- field/bg/grd_s_r3_b_1_v:
- addrs: [0x80D9F630, 0x80DA0520]
- type: vtx
- # grd_s_r3_b_2.c
- field/bg/grd_s_r3_b_2_v:
- addrs: [0x80DA0828, 0x80DA19F8]
- type: vtx
- # grd_s_r3_b_3.c
- field/bg/grd_s_r3_b_3_v:
- addrs: [0x80DA1D50, 0x80DA2E50]
- type: vtx
- # grd_s_r3_p_1.c
- field/bg/grd_s_r3_p_1_v:
- addrs: [0x80DA3180, 0x80DA44F0]
- type: vtx
- # grd_s_r4_1.c
- field/bg/grd_s_r4_1_v:
- addrs: [0x80DA4830, 0x80DA54D0]
- type: vtx
- # grd_s_r4_2.c
- field/bg/grd_s_r4_2_v:
- addrs: [0x80DA5768, 0x80DA6478]
- type: vtx
- # grd_s_r4_3.c
- field/bg/grd_s_r4_3_v:
- addrs: [0x80DA66E0, 0x80DA7270]
- type: vtx
- # grd_s_r4_b_1.c
- field/bg/grd_s_r4_b_1_v:
- addrs: [0x80DA7508, 0x80DA7F78]
- type: vtx
- # grd_s_r4_b_2.c
- field/bg/grd_s_r4_b_2_v:
- addrs: [0x80DA8208, 0x80DA90E8]
- type: vtx
- # grd_s_r4_p_1.c
- field/bg/grd_s_r4_p_1_v:
- addrs: [0x80DA93E8, 0x80DAA5A8]
- type: vtx
- # grd_s_r5_1.c
- field/bg/grd_s_r5_1_v:
- addrs: [0x80DAA938, 0x80DAB678]
- type: vtx
- # grd_s_r5_2.c
- field/bg/grd_s_r5_2_v:
- addrs: [0x80DAB930, 0x80DAC770]
- type: vtx
- # grd_s_r5_3.c
- field/bg/grd_s_r5_3_v:
- addrs: [0x80DACA20, 0x80DAD820]
- type: vtx
- # grd_s_r5_b_1.c
- field/bg/grd_s_r5_b_1_v:
- addrs: [0x80DADAD8, 0x80DAEAB8]
- type: vtx
- # grd_s_r5_b_2.c
- field/bg/grd_s_r5_b_2_v:
- addrs: [0x80DAEDA8, 0x80DAFD98]
- type: vtx
- # grd_s_r5_p_1.c
- field/bg/grd_s_r5_p_1_v:
- addrs: [0x80DB00B0, 0x80DB1210]
- type: vtx
- # grd_s_r6_1.c
- field/bg/grd_s_r6_1_v:
- addrs: [0x80DB1540, 0x80DB2010]
- type: vtx
- # grd_s_r6_2.c
- field/bg/grd_s_r6_2_v:
- addrs: [0x80DB2268, 0x80DB2DB8]
- type: vtx
- # grd_s_r6_3.c
- field/bg/grd_s_r6_3_v:
- addrs: [0x80DB2FF8, 0x80DB3B08]
- type: vtx
- # grd_s_r6_b_1.c
- field/bg/grd_s_r6_b_1_v:
- addrs: [0x80DB3D70, 0x80DB4930]
- type: vtx
- # grd_s_r6_b_2.c
- field/bg/grd_s_r6_b_2_v:
- addrs: [0x80DB4BE8, 0x80DB5E18]
- type: vtx
- # grd_s_r6_p_1.c
- field/bg/grd_s_r6_p_1_v:
- addrs: [0x80DB6138, 0x80DB7428]
- type: vtx
- # grd_s_r7_1.c
- field/bg/grd_s_r7_1_v:
- addrs: [0x80DB77B8, 0x80DB8408]
- type: vtx
- # grd_s_r7_2.c
- field/bg/grd_s_r7_2_v:
- addrs: [0x80DB86B0, 0x80DB9260]
- type: vtx
- # grd_s_r7_3.c
- field/bg/grd_s_r7_3_v:
- addrs: [0x80DB94C0, 0x80DBA020]
- type: vtx
- # grd_s_r7_b_1.c
- field/bg/grd_s_r7_b_1_v:
- addrs: [0x80DBA268, 0x80DBAF58]
- type: vtx
- # grd_s_r7_b_2.c
- field/bg/grd_s_r7_b_2_v:
- addrs: [0x80DBB228, 0x80DBC478]
- type: vtx
- # grd_s_r7_p_1.c
- field/bg/grd_s_r7_p_1_v:
- addrs: [0x80DBC7D0, 0x80DBD8E0]
- type: vtx
- # grd_s_t_1.c
- field/bg/grd_s_t_1_v:
- addrs: [0x80DBDBF8, 0x80DBE618]
- type: vtx
- # grd_s_t_10.c
- field/bg/grd_s_t_10_v:
- addrs: [0x80DBE858, 0x80DBF688]
- type: vtx
- # grd_s_t_2.c
- field/bg/grd_s_t_2_v:
- addrs: [0x80DBF8F8, 0x80DC05E8]
- type: vtx
- # grd_s_t_3.c
- field/bg/grd_s_t_3_v:
- addrs: [0x80DC0808, 0x80DC1188]
- type: vtx
- # grd_s_t_4.c
- field/bg/grd_s_t_4_v:
- addrs: [0x80DC1378, 0x80DC2218]
- type: vtx
- # grd_s_t_5.c
- field/bg/grd_s_t_5_v:
- addrs: [0x80DC2500, 0x80DC3480]
- type: vtx
- # grd_s_t_6.c
- field/bg/grd_s_t_6_v:
- addrs: [0x80DC3770, 0x80DC48D0]
- type: vtx
- # grd_s_t_7.c
- field/bg/grd_s_t_7_v:
- addrs: [0x80DC4B78, 0x80DC5CC8]
- type: vtx
- # grd_s_t_8.c
- field/bg/grd_s_t_8_v:
- addrs: [0x80DC5F48, 0x80DC6B88]
- type: vtx
- # grd_s_t_9.c
- field/bg/grd_s_t_9_v:
- addrs: [0x80DC6DA8, 0x80DC7A68]
- type: vtx
- # grd_s_t_po_1.c
- field/bg/grd_s_t_po_1_v:
- addrs: [0x80DC7C88, 0x80DC8708]
- type: vtx
- # grd_s_t_po_2.c
- field/bg/grd_s_t_po_2_v:
- addrs: [0x80DC8918, 0x80DC9348]
- type: vtx
- # grd_s_t_po_3.c
- field/bg/grd_s_t_po_3_v:
- addrs: [0x80DC9578, 0x80DCA3D8]
- type: vtx
- # grd_s_t_r1_1.c
- field/bg/grd_s_t_r1_1_v:
- addrs: [0x80DCA6E0, 0x80DCB5D0]
- type: vtx
- # grd_s_t_r1_2.c
- field/bg/grd_s_t_r1_2_v:
- addrs: [0x80DCB8E8, 0x80DCCA18]
- type: vtx
- # grd_s_t_r1_3.c
- field/bg/grd_s_t_r1_3_v:
- addrs: [0x80DCCD78, 0x80DCDEC8]
- type: vtx
- # grd_s_t_r1_4.c
- field/bg/grd_s_t_r1_4_v:
- addrs: [0x80DCE230, 0x80DCF240]
- type: vtx
- # grd_s_t_r1_5.c
- field/bg/grd_s_t_r1_5_v:
- addrs: [0x80DCF588, 0x80DD06E8]
- type: vtx
- # grd_s_t_sh_1.c
- field/bg/grd_s_t_sh_1_v:
- addrs: [0x80DD0A38, 0x80DD1458]
- type: vtx
- # grd_s_t_sh_2.c
- field/bg/grd_s_t_sh_2_v:
- addrs: [0x80DD1678, 0x80DD2338]
- type: vtx
- # grd_s_t_sh_3.c
- field/bg/grd_s_t_sh_3_v:
- addrs: [0x80DD2610, 0x80DD3070]
- type: vtx
- # grd_s_t_st1_1.c
- field/bg/grd_s_t_st1_1_v:
- addrs: [0x80DD3270, 0x80DD3EA0]
- type: vtx
- # grd_s_t_st1_2.c
- field/bg/grd_s_t_st1_2_v:
- addrs: [0x80DD40F0, 0x80DD4FF0]
- type: vtx
- # grd_s_t_st1_3.c
- field/bg/grd_s_t_st1_3_v:
- addrs: [0x80DD5280, 0x80DD5F30]
- type: vtx
- # rom_toudai.c
- field/bg/rom_toudai_yuka_pal:
- addrs: [0x80F08520, 0x80F08540]
- type: pal16
- field/bg/rom_toudai_kabe_pal:
- addrs: [0x80F08540, 0x80F08560]
- type: pal16
- field/bg/rom_toudai_step_pal:
- addrs: [0x80F08560, 0x80F08580]
- type: pal16
- field/bg/rom_toudai_meka_pal:
- addrs: [0x80F08580, 0x80F085A0]
- type: pal16
- field/bg/rom_toudai_ukiwa_pal:
- addrs: [0x80F085A0, 0x80F085C0]
- type: pal16
- field/bg/rom_toudai_yuka_tex:
- addrs: [0x80F085C0, 0x80F08DC0]
- field/bg/rom_toudai_kabeA_tex:
- addrs: [0x80F08DC0, 0x80F095C0]
- field/bg/rom_toudai_kabeB_tex:
- addrs: [0x80F095C0, 0x80F09DC0]
- field/bg/rom_toudai_step_tex:
- addrs: [0x80F09DC0, 0x80F0A1C0]
- field/bg/rom_toudai_mekaA_tex:
- addrs: [0x80F0A1C0, 0x80F0A2C0]
- field/bg/rom_toudai_ukiwa_tex:
- addrs: [0x80F0A2C0, 0x80F0A4C0]
- field/bg/rom_toudai_kage1_tex:
- addrs: [0x80F0A4C0, 0x80F0A540]
- field/bg/rom_toudai_mekaC_tex:
- addrs: [0x80F0A540, 0x80F0A740]
- field/bg/rom_toudai_kage2_tex:
- addrs: [0x80F0A740, 0x80F0A7C0]
- field/bg/rom_toudai_v:
- addrs: [0x80F0A7C0, 0x80F0AE30]
- type: vtx
- submenu/map/kan_tizu_c1_TA_tex_txt:
- addrs: [0x80F0B020, 0x80F0B220]
- submenu/map/kan_tizu_c1r1_TA_tex_txt:
- addrs: [0x80F0B220, 0x80F0B420]
- submenu/map/kan_tizu_c1s_TA_tex_txt:
- addrs: [0x80F0B420, 0x80F0B620]
- submenu/map/kan_tizu_c2_TA_tex_txt:
- addrs: [0x80F0B620, 0x80F0B820]
- submenu/map/kan_tizu_c2r1_TA_tex_txt:
- addrs: [0x80F0B820, 0x80F0BA20]
- submenu/map/kan_tizu_c3r1_TA_tex_txt:
- addrs: [0x80F0BA20, 0x80F0BC20]
- submenu/map/kan_tizu_c4r1_TA_tex_txt:
- addrs: [0x80F0BC20, 0x80F0BE20]
- submenu/map/kan_tizu_c5r1_TA_tex_txt:
- addrs: [0x80F0BE20, 0x80F0C020]
- submenu/map/kan_tizu_c6_TA_tex_txt:
- addrs: [0x80F0C020, 0x80F0C220]
- submenu/map/kan_tizu_c6r1_TA_tex_txt:
- addrs: [0x80F0C220, 0x80F0C420]
- submenu/map/kan_tizu_c6s_TA_tex_txt:
- addrs: [0x80F0C420, 0x80F0C620]
- submenu/map/kan_tizu_c7_TA_tex_txt:
- addrs: [0x80F0C620, 0x80F0C820]
- submenu/map/kan_tizu_c7r1_TA_tex_txt:
- addrs: [0x80F0C820, 0x80F0CA20]
- submenu/map/kan_tizu_f_TA_tex_txt:
- addrs: [0x80F0CA20, 0x80F0CC20]
- submenu/map/kan_tizu_r1_TA_tex_txt:
- addrs: [0x80F0CC20, 0x80F0CE20]
- submenu/map/kan_tizu_r1b_TA_tex_txt:
- addrs: [0x80F0CE20, 0x80F0D020]
- submenu/map/kan_tizu_r2_TA_tex_txt:
- addrs: [0x80F0D020, 0x80F0D220]
- submenu/map/kan_tizu_r4_TA_tex_txt:
- addrs: [0x80F0D220, 0x80F0D420]
- submenu/map/kan_tizu_r5_TA_tex_txt:
- addrs: [0x80F0D420, 0x80F0D620]
- submenu/map/kan_tizu_r6_TA_tex_txt:
- addrs: [0x80F0D620, 0x80F0D820]
- submenu/map/kan_tizu_r7_TA_tex_txt:
- addrs: [0x80F0D820, 0x80F0DA20]
- submenu/map/kan_tizu_c4_TA_tex_txt:
- addrs: [0x80F0DA20, 0x80F0DC20]
- submenu/map/kan_tizu_c5_TA_tex_txt:
- addrs: [0x80F0DC20, 0x80F0DE20]
- submenu/map/kan_tizu_c3_TA_tex_txt:
- addrs: [0x80F0DE20, 0x80F0E020]
- submenu/map/kan_tizu_r7b_TA_tex_txt:
- addrs: [0x80F0E020, 0x80F0E220]
- submenu/map/kan_tizu_c1r2_TA_tex_txt:
- addrs: [0x80F0E220, 0x80F0E420]
- submenu/map/kan_tizu_c2r2_TA_tex_txt:
- addrs: [0x80F0E420, 0x80F0E620]
- submenu/map/kan_tizu_c3r2_TA_tex_txt:
- addrs: [0x80F0E620, 0x80F0E820]
- submenu/map/kan_tizu_c4r2_TA_tex_txt:
- addrs: [0x80F0E820, 0x80F0EA20]
- submenu/map/kan_tizu_c5r2_TA_tex_txt:
- addrs: [0x80F0EA20, 0x80F0EC20]
- submenu/map/kan_tizu_c6r3_TA_tex_txt:
- addrs: [0x80F0EC20, 0x80F0EE20]
- submenu/map/kan_tizu_c7r3_TA_tex_txt:
- addrs: [0x80F0EE20, 0x80F0F020]
- submenu/map/kan_tizu_c2s_TA_tex_txt:
- addrs: [0x80F0F020, 0x80F0F220]
- submenu/map/kan_tizu_c3s_TA_tex_txt:
- addrs: [0x80F0F220, 0x80F0F420]
- submenu/map/kan_tizu_c4s_TA_tex_txt:
- addrs: [0x80F0F420, 0x80F0F620]
- submenu/map/kan_tizu_c5s_TA_tex_txt:
- addrs: [0x80F0F620, 0x80F0F820]
- submenu/map/kan_tizu_c7s_TA_tex_txt:
- addrs: [0x80F0F820, 0x80F0FA20]
- submenu/map/kan_tizu_r2b_TA_tex_txt:
- addrs: [0x80F0FA20, 0x80F0FC20]
- submenu/map/kan_tizu_r4b_TA_tex_txt:
- addrs: [0x80F0FC20, 0x80F0FE20]
- submenu/map/kan_tizu_r5b_TA_tex_txt:
- addrs: [0x80F0FE20, 0x80F10020]
- submenu/map/kan_tizu_r6b_TA_tex_txt:
- addrs: [0x80F10020, 0x80F10220]
- submenu/map/kan_tizu_pr1_TA_tex_txt:
- addrs: [0x80F10220, 0x80F10420]
- submenu/map/kan_tizu_pr2_TA_tex_txt:
- addrs: [0x80F10420, 0x80F10620]
- submenu/map/kan_tizu_pr4_TA_tex_txt:
- addrs: [0x80F10620, 0x80F10820]
- submenu/map/kan_tizu_pr5_TA_tex_txt:
- addrs: [0x80F10820, 0x80F10A20]
- submenu/map/kan_tizu_pr6_TA_tex_txt:
- addrs: [0x80F10A20, 0x80F10C20]
- submenu/map/kan_tizu_pr7_TA_tex_txt:
- addrs: [0x80F10C20, 0x80F10E20]
- submenu/map/kan_tizu_c3r1b_TA_tex_txt:
- addrs: [0x80F10E20, 0x80F11020]
- submenu/map/kan_tizu_c4r1b_TA_tex_txt:
- addrs: [0x80F11020, 0x80F11220]
- submenu/map/kan_tizu_c1r2b_TA_tex_txt:
- addrs: [0x80F11220, 0x80F11420]
- submenu/map/kan_tizu_c4r2b_TA_tex_txt:
- addrs: [0x80F11420, 0x80F11620]
- submenu/map/kan_tizu_c5r2b_TA_tex_txt:
- addrs: [0x80F11620, 0x80F11820]
- submenu/map/kan_tizu_c6r1b_TA_tex_txt:
- addrs: [0x80F11820, 0x80F11A20]
- submenu/map/kan_tizu_c7r1b_TA_tex_txt:
- addrs: [0x80F11A20, 0x80F11C20]
- submenu/map/kan_tizu_tst1_TA_tex_txt:
- addrs: [0x80F11C20, 0x80F11E20]
- submenu/map/kan_tizu_tr1_TA_tex_txt:
- addrs: [0x80F11E20, 0x80F12020]
- submenu/map/kan_tizu_t_TA_tex_txt:
- addrs: [0x80F12020, 0x80F12220]
- submenu/map/kan_tizu_fsh_TA_tex_txt:
- addrs: [0x80F12220, 0x80F12420]
- submenu/map/kan_tizu_fpo_TA_tex_txt:
- addrs: [0x80F12420, 0x80F12620]
- submenu/map/kan_tizu_fpk_TA_tex_txt:
- addrs: [0x80F12620, 0x80F12820]
- submenu/map/kan_tizu_fmh_TA_tex_txt:
- addrs: [0x80F12820, 0x80F12A20]
- submenu/map/kan_tizu_fko_TA_tex_txt:
- addrs: [0x80F12A20, 0x80F12C20]
- submenu/map/kan_tizu_mr1_TA_tex_txt:
- addrs: [0x80F12C20, 0x80F12E20]
- submenu/map/kan_tizu_m_TA_tex_txt:
- addrs: [0x80F12E20, 0x80F13020]
- submenu/map/kan_tizu_mr1b_TA_tex_txt:
- addrs: [0x80F13020, 0x80F13220]
- submenu/map/kan_tizu_tr1b_TA_tex_txt:
- addrs: [0x80F13220, 0x80F13420]
- submenu/map/kan_tizu_fta_TA_tex_txt:
- addrs: [0x80F13420, 0x80F13620]
- submenu/map/kan_tizu_mwf_TA_tex_txt:
- addrs: [0x80F13620, 0x80F13820]
- submenu/map/kan_tizu_fmu_TA_tex_txt:
- addrs: [0x80F13820, 0x80F13A20]
- # rom_museum1.c
- field/bg/rom_museum1_mado_pal:
- addrs: [0x80F13AA0, 0x80F13AC0]
- type: pal16
- field/bg/rom_museum1_step_pal:
- addrs: [0x80F13AC0, 0x80F13AE0]
- type: pal16
- field/bg/rom_museum1_floor_pal:
- addrs: [0x80F13AE0, 0x80F13B00]
- type: pal16
- field/bg/rom_museum1_wall_pal:
- addrs: [0x80F13B00, 0x80F13B20]
- type: pal16
- field/bg/rom_museum1_mado1_tex:
- addrs: [0x80F13B20, 0x80F14320]
- field/bg/rom_museum1_step1_tex:
- addrs: [0x80F14320, 0x80F14B20]
- field/bg/rom_museum1_step2_tex:
- addrs: [0x80F14B20, 0x80F14F20]
- field/bg/rom_museum1_floorA_tex:
- addrs: [0x80F14F20, 0x80F15720]
- field/bg/rom_museum1_floorB_tex:
- addrs: [0x80F15720, 0x80F15F20]
- field/bg/rom_museum1_mado2_tex:
- addrs: [0x80F15F20, 0x80F16720]
- field/bg/rom_museum1_sign1_tex:
- addrs: [0x80F16720, 0x80F16B20]
- field/bg/rom_museum1_wallA_tex:
- addrs: [0x80F16B20, 0x80F17320]
- field/bg/rom_museum1_wallB_tex:
- addrs: [0x80F17320, 0x80F17B20]
- field/bg/rom_museum1_sign2_tex:
- addrs: [0x80F17B20, 0x80F17F20]
- field/bg/rom_museum1_sign3_tex:
- addrs: [0x80F17F20, 0x80F18320]
- field/bg/rom_museum1_sign4_tex:
- addrs: [0x80F18320, 0x80F18720]
- field/bg/rom_museum1_v:
- addrs: [0x80F18720, 0x80F199E0]
- type: vtx
- # rom_museum5.c
- field/bg/rom_museum5_on_pal:
- addrs: [0x80F19DC0, 0x80F19DE0]
- type: pal16
- field/bg/rom_museum5_wall_pal:
- addrs: [0x80F19DE0, 0x80F19E00]
- type: pal16
- field/bg/rom_museum5_floor_pal:
- addrs: [0x80F19E00, 0x80F19E20]
- type: pal16
- field/bg/rom_museum5_step_pal:
- addrs: [0x80F19E20, 0x80F19E40]
- type: pal16
- field/bg/rom_museum5_ki_tex:
- addrs: [0x80F19E40, 0x80F1A040]
- field/bg/rom_museum5_wallA_tex:
- addrs: [0x80F1A040, 0x80F1A840]
- field/bg/rom_museum5_floor_tex:
- addrs: [0x80F1A840, 0x80F1B040]
- field/bg/rom_museum5_step_tex:
- addrs: [0x80F1B040, 0x80F1B840]
- field/bg/rom_museum5_isi_tex:
- addrs: [0x80F1B840, 0x80F1BA40]
- field/bg/rom_museum5_plate_tex:
- addrs: [0x80F1BA40, 0x80F1BC40]
- field/bg/rom_museum5_v:
- addrs: [0x80F1BC40, 0x80F1C9C0]
- type: vtx
- # rom_museum2.c
- field/bg/rom_museum2_wall_pal:
- addrs: [0x80F1D5C0, 0x80F1D5E0]
- type: pal16
- field/bg/rom_museum2_floor_pal:
- addrs: [0x80F1D5E0, 0x80F1D600]
- type: pal16
- field/bg/rom_museum2_step1_pal:
- addrs: [0x80F1D600, 0x80F1D620]
- type: pal16
- field/bg/rom_museum2_wallA_tex:
- addrs: [0x80F1D620, 0x80F1DE20]
- field/bg/rom_museum2_wallB_tex:
- addrs: [0x80F1DE20, 0x80F1E620]
- field/bg/rom_museum2_floorA_tex:
- addrs: [0x80F1E620, 0x80F1EE20]
- field/bg/rom_museum2_step1_tex:
- addrs: [0x80F1EE20, 0x80F1F620]
- field/bg/rom_museum2_plate_tex:
- addrs: [0x80F1F620, 0x80F1F720]
- field/bg/rom_museum2_v:
- addrs: [0x80F1F720, 0x80F20820]
- type: vtx
- # rom_museum3.c
- field/bg/rom_museum3_wall_pal:
- addrs: [0x80F23E40, 0x80F23E60]
- type: pal16
- field/bg/rom_museum3_back_pal:
- addrs: [0x80F23E60, 0x80F23E80]
- type: pal16
- field/bg/rom_museum3_floor_pal:
- addrs: [0x80F23E80, 0x80F23EA0]
- type: pal16
- field/bg/rom_museum3_wallA_tex:
- addrs: [0x80F23EA0, 0x80F246A0]
- field/bg/rom_museum3_wallB_tex:
- addrs: [0x80F246A0, 0x80F24EA0]
- field/bg/rom_museum3_back_tex:
- addrs: [0x80F24EA0, 0x80F256A0]
- field/bg/rom_museum3_floorA_tex:
- addrs: [0x80F256A0, 0x80F25EA0]
- field/bg/rom_museum3_step_tex:
- addrs: [0x80F25EA0, 0x80F266A0]
- field/bg/rom_museum3_hasira_tex:
- addrs: [0x80F266A0, 0x80F267A0]
- field/bg/rom_museum3_backside_tex:
- addrs: [0x80F267A0, 0x80F26920]
- field/bg/rom_museum3_v:
- addrs: [0x80F26920, 0x80F27AD0]
- type: vtx
- # rom_tailor.c
- field/bg/rom_tailor_wall_pal:
- addrs: [0x80F29260, 0x80F29280]
- type: pal16
- field/bg/rom_tailor_floor_pal:
- addrs: [0x80F29280, 0x80F292A0]
- type: pal16
- field/bg/rom_tailor_mado_pal:
- addrs: [0x80F292A0, 0x80F292C0]
- type: pal16
- field/bg/rom_tailor_reji_pal:
- addrs: [0x80F292C0, 0x80F292E0]
- type: pal16
- field/bg/rom_tailor_dogu_pal:
- addrs: [0x80F292E0, 0x80F29300]
- type: pal16
- field/bg/rom_tailor_misin_pal:
- addrs: [0x80F29300, 0x80F29320]
- type: pal16
- field/bg/rom_tailor_table_pal:
- addrs: [0x80F29320, 0x80F29340]
- type: pal16
- field/bg/rom_tailor_box_pal:
- addrs: [0x80F29340, 0x80F29360]
- type: pal16
- field/bg/rom_tailor_quilt_pal:
- addrs: [0x80F29360, 0x80F29380]
- type: pal16
- field/bg/rom_tailor_ent_pal:
- addrs: [0x80F29380, 0x80F293A0]
- type: pal16
- field/bg/rom_tailor_wallA_tex:
- addrs: [0x80F293A0, 0x80F29BA0]
- field/bg/rom_tailor_wallB_tex:
- addrs: [0x80F29BA0, 0x80F2A3A0]
- field/bg/rom_tailor_floorA_tex:
- addrs: [0x80F2A3A0, 0x80F2ABA0]
- field/bg/rom_tailor_floorB_tex:
- addrs: [0x80F2ABA0, 0x80F2B3A0]
- field/bg/rom_tailor_floorC_tex:
- addrs: [0x80F2B3A0, 0x80F2BBA0]
- field/bg/rom_tailor_floorD_tex:
- addrs: [0x80F2BBA0, 0x80F2C3A0]
- field/bg/rom_tailor_kage1_tex:
- addrs: [0x80F2C3A0, 0x80F2C4A0]
- field/bg/rom_tailor_mado_tex:
- addrs: [0x80F2C4A0, 0x80F2C6A0]
- field/bg/rom_tailor_pic1_tex:
- addrs: [0x80F2C6A0, 0x80F2C8A0]
- field/bg/rom_tailor_pic2_tex:
- addrs: [0x80F2C8A0, 0x80F2CAA0]
- field/bg/rom_tailor_pic3_tex:
- addrs: [0x80F2CAA0, 0x80F2CCA0]
- field/bg/rom_tailor_pic4_tex:
- addrs: [0x80F2CCA0, 0x80F2CEA0]
- field/bg/rom_tailor_pic5_tex:
- addrs: [0x80F2CEA0, 0x80F2D0A0]
- field/bg/rom_tailor_pic6_tex:
- addrs: [0x80F2D0A0, 0x80F2D2A0]
- field/bg/rom_tailor_pic7_tex:
- addrs: [0x80F2D2A0, 0x80F2D4A0]
- field/bg/rom_tailor_pic8_tex:
- addrs: [0x80F2D4A0, 0x80F2D6A0]
- field/bg/rom_tailor_tyoki_tex:
- addrs: [0x80F2D6A0, 0x80F2D7A0]
- field/bg/rom_tailor_cloth1_tex:
- addrs: [0x80F2D7A0, 0x80F2D820]
- field/bg/rom_tailor_misin2_tex:
- addrs: [0x80F2D820, 0x80F2DA20]
- field/bg/rom_tailor_table_mae_tex:
- addrs: [0x80F2DA20, 0x80F2DB20]
- field/bg/rom_tailor_table_yoko_tex:
- addrs: [0x80F2DB20, 0x80F2DBA0]
- field/bg/rom_tailor_table_ue_tex:
- addrs: [0x80F2DBA0, 0x80F2DCA0]
- field/bg/rom_tailor_ito_tex:
- addrs: [0x80F2DCA0, 0x80F2DEA0]
- field/bg/rom_tailor_table_reji_tex:
- addrs: [0x80F2DEA0, 0x80F2DF20]
- field/bg/rom_tailor_misin1_tex:
- addrs: [0x80F2DF20, 0x80F2E120]
- field/bg/rom_tailor_misindai_tex:
- addrs: [0x80F2E120, 0x80F2E320]
- field/bg/rom_tailor_table_misin1_tex:
- addrs: [0x80F2E320, 0x80F2E420]
- field/bg/rom_tailor_reji_tex:
- addrs: [0x80F2E420, 0x80F2E620]
- field/bg/rom_tailor_table_misin2_tex:
- addrs: [0x80F2E620, 0x80F2E6A0]
- field/bg/rom_tailor_box_tex:
- addrs: [0x80F2E6A0, 0x80F2E7A0]
- field/bg/rom_tailor_box1_tex:
- addrs: [0x80F2E7A0, 0x80F2E820]
- field/bg/rom_tailor_box2_tex:
- addrs: [0x80F2E820, 0x80F2E8A0]
- field/bg/rom_tailor_box3_tex:
- addrs: [0x80F2E8A0, 0x80F2E920]
- field/bg/rom_tailor_box4_tex:
- addrs: [0x80F2E920, 0x80F2E9A0]
- field/bg/rom_tailor_box5_tex:
- addrs: [0x80F2E9A0, 0x80F2EA20]
- field/bg/rom_tailor_box6_tex:
- addrs: [0x80F2EA20, 0x80F2EAA0]
- field/bg/rom_tailor_box7_tex:
- addrs: [0x80F2EAA0, 0x80F2EB20]
- field/bg/rom_tailor_box8_tex:
- addrs: [0x80F2EB20, 0x80F2EBA0]
- field/bg/rom_tailor_kage2_tex:
- addrs: [0x80F2EBA0, 0x80F2EC20]
- field/bg/rom_tailor_quilt_tex:
- addrs: [0x80F2EC20, 0x80F2F420]
- field/bg/rom_tailor_ent_tex:
- addrs: [0x80F2F420, 0x80F2F520]
- field/bg/rom_tailor_misinbari1_tex:
- addrs: [0x80F2F520, 0x80F2F5A0]
- field/bg/rom_tailor_misinbari2_tex:
- addrs: [0x80F2F5A0, 0x80F2F620]
- field/bg/rom_tailor_tape_tex:
- addrs: [0x80F2F620, 0x80F2F820]
- field/bg/rom_tailor_dogu1_tex:
- addrs: [0x80F2F820, 0x80F2F8A0]
- field/bg/rom_tailor_dogu2_tex:
- addrs: [0x80F2F8A0, 0x80F2F920]
- field/bg/rom_tailor_v:
- addrs: [0x80F2F920, 0x80F31700]
- type: vtx
- # myr_etc.c
- field/bg/myr_kotei_pal:
- addrs: [0x80F84780, 0x80F847A0]
- type: pal16
- field/bg/myr_enter:
- addrs: [0x80F847A0, 0x80F84BA0]
- field/bg/myr_window:
- addrs: [0x80F84BA0, 0x80F853A0]
- field/bg/myr_kotei_v:
- addrs: [0x80F853A0, 0x80F85500]
- type: vtx
- # grd_player_select.c
- field/bg/rom_open_pal:
- addrs: [0x80F85740, 0x80F85760]
- type: pal16
- field/bg/rom_open_floor_tex:
- addrs: [0x80F85760, 0x80F85F60]
- field/bg/rom_open_shade_tex:
- addrs: [0x80F85F60, 0x80F86360]
- field/bg/rom_open_spot2_tex_rgb_i4:
- addrs: [0x80F86360, 0x80F86560]
- field/bg/rom_open_spot_tex:
- addrs: [0x80F86560, 0x80F86D60]
- field/bg/grd_player_select_v:
- addrs: [0x80F86D60, 0x80F86EA0]
- type: vtx
- # police_indoor.c
- field/bg/rom_koban_tel_pal:
- addrs: [0x80F86FA0, 0x80F86FC0]
- type: pal16
- field/bg/rom_koban_win_pal:
- addrs: [0x80F86FC0, 0x80F86FE0]
- type: pal16
- field/bg/rom_koban_us_pos_pal:
- addrs: [0x80F86FE0, 0x80F87000]
- type: pal16
- field/bg/rom_koban_jim_pal:
- addrs: [0x80F87000, 0x80F87020]
- type: pal16
- field/bg/rom_koban_kabe_pal:
- addrs: [0x80F87020, 0x80F87040]
- type: pal16
- field/bg/rom_koban_roc_pal:
- addrs: [0x80F87040, 0x80F87060]
- type: pal16
- field/bg/rom_koban_tel:
- addrs: [0x80F87060, 0x80F87260]
- field/bg/rom_koban_win:
- addrs: [0x80F87260, 0x80F87460]
- field/bg/rom_koban_desk_front:
- addrs: [0x80F87460, 0x80F87560]
- field/bg/rom_koban_desk_side:
- addrs: [0x80F87560, 0x80F875E0]
- field/bg/rom_koban_desk_top:
- addrs: [0x80F875E0, 0x80F876E0]
- field/bg/rom_koban_yuka:
- addrs: [0x80F876E0, 0x80F87EE0]
- field/bg/rom_koban_us_pos1:
- addrs: [0x80F87EE0, 0x80F881E0]
- field/bg/rom_koban_us_pos2:
- addrs: [0x80F881E0, 0x80F884E0]
- field/bg/rom_koban_kage1:
- addrs: [0x80F884E0, 0x80F885E0]
- field/bg/rom_koban_kage2:
- addrs: [0x80F885E0, 0x80F88660]
- field/bg/rom_koban_ent:
- addrs: [0x80F88660, 0x80F88A60]
- field/bg/rom_koban_jim_front:
- addrs: [0x80F88A60, 0x80F88C60]
- field/bg/rom_koban_jim_side:
- addrs: [0x80F88C60, 0x80F88D60]
- field/bg/rom_koban_jim_top:
- addrs: [0x80F88D60, 0x80F88E60]
- field/bg/rom_koban_kabe1:
- addrs: [0x80F88E60, 0x80F89660]
- field/bg/rom_koban_telcode:
- addrs: [0x80F89660, 0x80F896E0]
- field/bg/rom_koban_book:
- addrs: [0x80F896E0, 0x80F89760]
- field/bg/rom_koban_roc_s:
- addrs: [0x80F89760, 0x80F89860]
- field/bg/rom_koban_roc_t:
- addrs: [0x80F89860, 0x80F898E0]
- field/bg/rom_koban_kabe3:
- addrs: [0x80F898E0, 0x80F89CE0]
- field/bg/rom_koban_isu:
- addrs: [0x80F89CE0, 0x80F89D60]
- field/bg/rom_koban_roc_i:
- addrs: [0x80F89D60, 0x80F89E60]
- field/bg/rom_koban_roc_f3:
- addrs: [0x80F89E60, 0x80F8A260]
- field/bg/police_indoor_v:
- addrs: [0x80F8A260, 0x80F8BCF0]
- type: vtx
-
- # Rail palettes
- mFM_rail_pal_0:
- addrs: [0x80F8C2C8, 0x80F8C2E8]
- type: pal16
- mFM_rail_pal_1:
- addrs: [0x80F8C2E8, 0x80F8C308]
- type: pal16
- mFM_rail_pal_2:
- addrs: [0x80F8C308, 0x80F8C328]
- type: pal16
- mFM_rail_pal_3:
- addrs: [0x80F8C328, 0x80F8C348]
- type: pal16
- mFM_rail_pal_4:
- addrs: [0x80F8C348, 0x80F8C368]
- type: pal16
- mFM_rail_pal_5:
- addrs: [0x80F8C368, 0x80F8C388]
- type: pal16
- mFM_rail_pal_6:
- addrs: [0x80F8C388, 0x80F8C3A8]
- type: pal16
- mFM_rail_pal_7:
- addrs: [0x80F8C3A8, 0x80F8C3C8]
- type: pal16
- mFM_rail_pal_8:
- addrs: [0x80F8C3C8, 0x80F8C3E8]
- type: pal16
- mFM_rail_pal_9:
- addrs: [0x80F8C3E8, 0x80F8C408]
- type: pal16
- mFM_rail_pal_10:
- addrs: [0x80F8C408, 0x80F8C428]
- type: pal16
- mFM_rail_pal_11:
- addrs: [0x80F8C428, 0x80F8C448]
- type: pal16
- # ac_koinobori
-
- # NPC draw data assets
- field/bg/rom_shop_kouhaku_pal:
- addrs: [0x80F9CDC0, 0x80F9CDE0]
- type: pal16
- field/bg/rom_shop_kouhaku_tex:
- addrs: [0x80F9D260, 0x80F9DA60]
- # rom_shop4_1.c
- field/bg/rom_shop4_1_floor_tex_pal:
- addrs: [0x80F9FF80, 0x80F9FFA0]
- type: pal16
- field/bg/rom_shop4_1_lamp_tex_pal:
- addrs: [0x80F9FFA0, 0x80F9FFC0]
- type: pal16
- field/bg/rom_shop4_1_base_tex_pal:
- addrs: [0x80F9FFC0, 0x80F9FFE0]
- type: pal16
- field/bg/rom_shop4_1_stair_tex_pal:
- addrs: [0x80F9FFE0, 0x80FA0000]
- type: pal16
- field/bg/rom_shop4_1_table_tex_pal:
- addrs: [0x80FA0000, 0x80FA0020]
- type: pal16
- field/bg/rom_shop4_1_wall_tex_pal:
- addrs: [0x80FA0020, 0x80FA0040]
- type: pal16
- field/bg/rom_shop4_1_sign01_tex_pal:
- addrs: [0x80FA0040, 0x80FA0060]
- type: pal16
- field/bg/rom_shop4_1_kaunta_tex_pal:
- addrs: [0x80FA0060, 0x80FA0080]
- type: pal16
- field/bg/rom_shop4_1_us_sign01_tex_pal:
- addrs: [0x80FA0080, 0x80FA00A0]
- type: pal16
- field/bg/rom_shop4_1_us_sign02_tex_pal:
- addrs: [0x80FA00A0, 0x80FA00C0]
- type: pal16
- field/bg/rom_shop4_1_us_sign03_tex_pal:
- addrs: [0x80FA00C0, 0x80FA00E0]
- type: pal16
- field/bg/rom_shop4_1_sign03_tex_pal:
- addrs: [0x80FA00E0, 0x80FA0100]
- type: pal16
- field/bg/rom_shop4_1_reji_tex_pal:
- addrs: [0x80FA0100, 0x80FA0120]
- type: pal16
- field/bg/rom_shop4_1_floor01_tex:
- addrs: [0x80FA0120, 0x80FA0920]
- field/bg/rom_shop4_1_lamp_tex:
- addrs: [0x80FA0920, 0x80FA09A0]
- field/bg/rom_shop4_1_base_tex:
- addrs: [0x80FA09A0, 0x80FA0BA0]
- field/bg/rom_shop4_1_stair01_tex:
- addrs: [0x80FA0BA0, 0x80FA0CA0]
- field/bg/rom_shop4_1_table01_tex:
- addrs: [0x80FA0CA0, 0x80FA0DA0]
- field/bg/rom_shop4_1_table02_tex:
- addrs: [0x80FA0DA0, 0x80FA0EA0]
- field/bg/rom_shop4_1_wall01_tex:
- addrs: [0x80FA0EA0, 0x80FA16A0]
- field/bg/rom_shop4_1_wall02_tex:
- addrs: [0x80FA16A0, 0x80FA18A0]
- field/bg/rom_shop4_1_sign05_tex:
- addrs: [0x80FA18A0, 0x80FA1920]
- field/bg/rom_shop4_1_kaunta01_tex:
- addrs: [0x80FA1920, 0x80FA1B20]
- field/bg/rom_shop4_1_kaunta02_tex:
- addrs: [0x80FA1B20, 0x80FA1BA0]
- field/bg/rom_shop4_1_us_sign01_tex:
- addrs: [0x80FA1BA0, 0x80FA1FA0]
- field/bg/rom_shop4_1_us_sign02_tex:
- addrs: [0x80FA1FA0, 0x80FA20A0]
- field/bg/rom_shop4_1_us_sign03_tex:
- addrs: [0x80FA20A0, 0x80FA26A0]
- field/bg/rom_shop4_1_sign04_tex:
- addrs: [0x80FA26A0, 0x80FA27A0]
- field/bg/rom_shop4_1_reji01_tex:
- addrs: [0x80FA27A0, 0x80FA2AA0]
- field/bg/rom_shop4_1_reji02_tex:
- addrs: [0x80FA2AA0, 0x80FA2BA0]
- field/bg/rom_shop4_1_reji03_tex:
- addrs: [0x80FA2BA0, 0x80FA2CA0]
- field/bg/rom_shop4_1_floor02_tex:
- addrs: [0x80FA2CA0, 0x80FA34A0]
- field/bg/rom_shop4_1_floor03_tex:
- addrs: [0x80FA34A0, 0x80FA3CA0]
- field/bg/rom_shop4_1_floor04_tex:
- addrs: [0x80FA3CA0, 0x80FA44A0]
- field/bg/rom_shop4_1_shadow01_tex:
- addrs: [0x80FA44A0, 0x80FA45A0]
- field/bg/rom_shop4_1_shadow02_tex:
- addrs: [0x80FA45A0, 0x80FA46A0]
- field/bg/rom_shop4_1_lamp02_tex:
- addrs: [0x80FA46A0, 0x80FA4720]
- field/bg/rom_shop4_1_shadow03_tex:
- addrs: [0x80FA4720, 0x80FA4820]
- field/bg/rom_shop4_1_v:
- addrs: [0x80FA4820, 0x80FA5E40]
- type: vtx
- # rom_shop4_fuku.c
- field/bg/rom_shop4_1_floor_tex_pal2:
- addrs: [0x80FA6400, 0x80FA6420]
- type: pal16
- field/bg/rom_shop4_1_base_tex_pal2:
- addrs: [0x80FA6420, 0x80FA6440]
- type: pal16
- field/bg/rom_shop4_1_stair_tex_pal2:
- addrs: [0x80FA6440, 0x80FA6460]
- type: pal16
- field/bg/rom_shop4_1_table_tex_pal2:
- addrs: [0x80FA6460, 0x80FA6480]
- type: pal16
- field/bg/rom_shop4_1_wall_tex_pal2:
- addrs: [0x80FA6480, 0x80FA64A0]
- type: pal16
- field/bg/rom_shop4_1_sign01_tex_pal2:
- addrs: [0x80FA64A0, 0x80FA64C0]
- type: pal16
- field/bg/rom_shop4_1_kaunta_tex_pal2:
- addrs: [0x80FA64C0, 0x80FA64E0]
- type: pal16
- field/bg/rom_shop4_2_sign01_us_tex_pal:
- addrs: [0x80FA64E0, 0x80FA6500]
- type: pal16
- field/bg/rom_shop4_1_us_sign02_tex_pal2:
- addrs: [0x80FA6500, 0x80FA6520]
- type: pal16
- field/bg/rom_shop4_1_us_sign0_tex_pal:
- addrs: [0x80FA6520, 0x80FA6540]
- type: pal16
- field/bg/rom_shop4_1_sign03_tex_pal2:
- addrs: [0x80FA6540, 0x80FA6560]
- type: pal16
- field/bg/rom_shop4_1_reji_tex_pal2:
- addrs: [0x80FA6560, 0x80FA6580]
- type: pal16
- field/bg/rom_shop_kouhaku_pal2:
- addrs: [0x80FA6580, 0x80FA65A0]
- type: pal16
- field/bg/rom_shop4_1_floor01_tex2:
- addrs: [0x80FA65A0, 0x80FA6DA0]
- field/bg/rom_shop4_1_base_tex2:
- addrs: [0x80FA6DA0, 0x80FA6FA0]
- field/bg/rom_shop4_1_stair01_tex2:
- addrs: [0x80FA6FA0, 0x80FA70A0]
- field/bg/rom_shop4_1_table01_tex2:
- addrs: [0x80FA70A0, 0x80FA71A0]
- field/bg/rom_shop4_1_table02_tex2:
- addrs: [0x80FA71A0, 0x80FA72A0]
- field/bg/rom_shop4_1_wall01_tex2:
- addrs: [0x80FA72A0, 0x80FA7AA0]
- field/bg/rom_shop4_1_wall02_tex2:
- addrs: [0x80FA7AA0, 0x80FA7CA0]
- field/bg/rom_shop4_1_sign05_tex2:
- addrs: [0x80FA7CA0, 0x80FA7D20]
- field/bg/rom_shop4_1_kaunta01_tex2:
- addrs: [0x80FA7D20, 0x80FA7F20]
- field/bg/rom_shop4_1_kaunta02_tex2:
- addrs: [0x80FA7F20, 0x80FA7FA0]
- field/bg/rom_shop4_2_us_sign01_tex:
- addrs: [0x80FA7FA0, 0x80FA83A0]
- field/bg/rom_shop4_1_us_sign02_tex2:
- addrs: [0x80FA83A0, 0x80FA84A0]
- field/bg/rom_shop4_1_us_sign0_tex:
- addrs: [0x80FA84A0, 0x80FA8AA0]
- field/bg/rom_shop4_1_sign04_tex2:
- addrs: [0x80FA8AA0, 0x80FA8BA0]
- field/bg/rom_shop4_1_reji01_tex2:
- addrs: [0x80FA8BA0, 0x80FA8EA0]
- field/bg/rom_shop4_1_reji02_tex2:
- addrs: [0x80FA8EA0, 0x80FA8FA0]
- field/bg/rom_shop4_1_reji03_tex2:
- addrs: [0x80FA8FA0, 0x80FA90A0]
- field/bg/rom_shop4_1_floor02_tex2:
- addrs: [0x80FA90A0, 0x80FA98A0]
- field/bg/rom_shop4_1_floor03_tex2:
- addrs: [0x80FA98A0, 0x80FAA0A0]
- field/bg/rom_shop4_1_floor04_tex2:
- addrs: [0x80FAA0A0, 0x80FAA8A0]
- field/bg/rom_shop4_1_shadow02_tex2:
- addrs: [0x80FAA8A0, 0x80FAA9A0]
- field/bg/rom_shop_kouhaku_tex2:
- addrs: [0x80FAA9A0, 0x80FAB1A0]
- field/bg/rom_shop4_fuku_v:
- addrs: [0x80FAB1A0, 0x80FAC8C0]
- type: vtx
- # rom_tent.c
- field/bg/rom_tent_box_pal:
- addrs: [0x811007A0, 0x811007C0]
- type: pal16
- field/bg/rom_tent_can_pal:
- addrs: [0x811007C0, 0x811007E0]
- type: pal16
- field/bg/rom_tent_mono1_pal:
- addrs: [0x811007E0, 0x81100800]
- type: pal16
- field/bg/rom_tent_gas_pal:
- addrs: [0x81100800, 0x81100820]
- type: pal16
- field/bg/rom_tent_enter:
- addrs: [0x81100820, 0x81100C20]
- field/bg/rom_tent_floor:
- addrs: [0x81100C20, 0x81101420]
- field/bg/rom_tent_wall1:
- addrs: [0x81101420, 0x81101C20]
- field/bg/rom_tent_wall2:
- addrs: [0x81101C20, 0x81102420]
- field/bg/rom_tent_bou:
- addrs: [0x81102420, 0x81102440]
- field/bg/rom_tent_mono1:
- addrs: [0x81102440, 0x81102C40]
- field/bg/rom_tent_can:
- addrs: [0x81102C40, 0x81102D40]
- field/bg/rom_tent_conpas:
- addrs: [0x81102D40, 0x81102DC0]
- field/bg/rom_tent_box:
- addrs: [0x81102DC0, 0x811031C0]
- field/bg/rom_tent_kage_m:
- addrs: [0x811031C0, 0x81103240]
- field/bg/rom_tent_gas:
- addrs: [0x81103240, 0x81103440]
- field/bg/rom_tent_kage_s:
- addrs: [0x81103440, 0x811034C0]
- field/bg/rom_tent_kage_b:
- addrs: [0x811034C0, 0x811035C0]
- field/bg/rom_tent_v:
- addrs: [0x811035C0, 0x81104B90]
- type: vtx
- # room01.c
- field/bg/room:
- addrs: [0x81104FE0, 0x81105000]
- type: pal16
- field/bg/room_floor:
- addrs: [0x81105000, 0x81105400]
- field/bg/room_wall:
- addrs: [0x81105400, 0x81105C00]
- field/bg/room_window:
- addrs: [0x81105C00, 0x81106400]
- field/bg/room01_v:
- addrs: [0x81106400, 0x81106980]
- type: vtx
- # rom_train_in.c
- field/bg/rom_train_1_pal:
- addrs: [0x81106D40, 0x81106D60]
- type: pal16
- field/bg/rom_train_2_pal:
- addrs: [0x81106D60, 0x81106D80]
- type: pal16
- field/bg/rom_train_seat1_tex:
- addrs: [0x81106DA0, 0x811075A0]
- field/bg/rom_train_seat2_tex:
- addrs: [0x811075A0, 0x81107DA0]
- field/bg/rom_train_floor_tex:
- addrs: [0x81107DA0, 0x811085A0]
- field/bg/rom_train_wall1_tex:
- addrs: [0x811085A0, 0x81108DA0]
- field/bg/rom_train_roof_tex:
- addrs: [0x81108DA0, 0x811095A0]
- field/bg/rom_train_wall2_tex:
- addrs: [0x811095A0, 0x81109DA0]
- field/bg/rom_train_net_tex:
- addrs: [0x81109DA0, 0x8110A5A0]
- field/bg/rom_train_glass_tex:
- addrs: [0x8110A5A0, 0x8110A620]
- field/bg/rom_train_light_tex:
- addrs: [0x8110A620, 0x8110A820]
- field/bg/rom_train_in_v:
- addrs: [0x8110A820, 0x8110C910]
- type: vtx
- # rom_uranai.c
- field/bg/rom_uranai_floor_tex_pal:
- addrs: [0x8110F620, 0x8110F640]
- type: pal16
- field/bg/rom_uranai_wall_tex_pal:
- addrs: [0x8110F640, 0x8110F660]
- type: pal16
- field/bg/rom_uranai_table_tex_pal:
- addrs: [0x8110F660, 0x8110F680]
- type: pal16
- field/bg/rom_uranai_tubo_tex_pal:
- addrs: [0x8110F680, 0x8110F6A0]
- type: pal16
- field/bg/rom_uranai_stand_tex_pal:
- addrs: [0x8110F6A0, 0x8110F6C0]
- type: pal16
- field/bg/rom_uranai_tex_nuno_pal:
- addrs: [0x8110F6C0, 0x8110F6E0]
- type: pal16
- field/bg/rom_uranai_tex_bace_pal:
- addrs: [0x8110F6E0, 0x8110F700]
- type: pal16
- field/bg/rom_uranai_card_tex_pal:
- addrs: [0x8110F700, 0x8110F720]
- type: pal16
- field/bg/rom_uranai_floor_tex:
- addrs: [0x8110F720, 0x8110FF20]
- field/bg/rom_uranai_wall01_tex:
- addrs: [0x8110FF20, 0x81110520]
- field/bg/rom_uranai_wall02_tex:
- addrs: [0x81110520, 0x81110920]
- field/bg/rom_uranai_wall03_tex:
- addrs: [0x81110920, 0x81110D20]
- field/bg/rom_uranai_table01_tex:
- addrs: [0x81110D20, 0x81110DA0]
- field/bg/rom_uranai_table02_tex:
- addrs: [0x81110DA0, 0x81110E20]
- field/bg/rom_uranai_tubo_tex:
- addrs: [0x81110E20, 0x81111020]
- field/bg/rom_uranai_shadow01_tex:
- addrs: [0x81111020, 0x81111120]
- field/bg/rom_uranai_vell_tex:
- addrs: [0x81111120, 0x81111520]
- field/bg/rom_uranai_vell02_tex:
- addrs: [0x81111520, 0x81111920]
- field/bg/rom_uranai_stand01_tex:
- addrs: [0x81111920, 0x81111B20]
- field/bg/rom_uranai_nuno01_tex:
- addrs: [0x81111B20, 0x81111BA0]
- field/bg/rom_uranai_nuno02_tex:
- addrs: [0x81111BA0, 0x81111C20]
- field/bg/rom_uranai_bace_tex:
- addrs: [0x81111C20, 0x81111E20]
- field/bg/rom_uranai_card01_tex:
- addrs: [0x81111E20, 0x81112020]
- field/bg/rom_uranai_shadow02_tex:
- addrs: [0x81112020, 0x81112120]
- field/bg/rom_uranai_card02_tex:
- addrs: [0x81112120, 0x811125A0]
- field/bg/rom_uranai_cris02_tex:
- addrs: [0x811125A0, 0x81112DA0]
- field/bg/rom_uranai_cris01_tex_rgb_ia8:
- addrs: [0x81112DA0, 0x811131A0]
- field/bg/rom_uranai_hi02_tex_rgb_i4:
- addrs: [0x811131A0, 0x811133A0]
- field/bg/rom_uranai_hi03_tex_rgb_i4:
- addrs: [0x811133A0, 0x811135A0]
- field/bg/rom_uranai_v:
- addrs: [0x811135A0, 0x81114A80]
- type: vtx
diff --git a/config/disasm_overrides.yml b/config/disasm_overrides.yml
deleted file mode 100644
index eef32643..00000000
--- a/config/disasm_overrides.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-trim_ctors: true
-
-symbol_aligns:
- 0x80008480: 32
- 0x80016d20: 32
- 0x80018920: 32
- 0x800190e0: 32
- 0x80019380: 32
- 0x80019760: 32
- 0x8001a0c0: 32
- 0x80026400: 32
- 0x8002c920: 32 # __DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2
- 0x80031d80: 32
- 0x8001ada0: 32
- 0x8002cfe0: 32
- 0x8018f1a8: 8
- 0x80207458: 8 # align RunQueue to 0x001251d8
- 0x800b9140: 32 # align gam_win_moji1_tex to 32 bytes
- 0x801f71c0: 32 # align texture_buffer_data to 32 bytes
- 0x800daaa0: 32 # align texture_cache_data_func to 32 bytes
- 0x80206f30: 16 # malloc.c align 16 bytes
- 0x800ab260: 32
- 0x800d3b00: 32 # dspboot data section has alignment to 32
- 0x801864b0: 8 # dspbuf align 8 (not sure why this doesn't happen)
\ No newline at end of file
diff --git a/config/dol.lcf b/config/dol.lcf
deleted file mode 100644
index 4c725c04..00000000
--- a/config/dol.lcf
+++ /dev/null
@@ -1,47 +0,0 @@
-MEMORY {
-text : origin = 0x80003100
-forcestrip : origin = 0
-}
-
-SECTIONS
-{
- GROUP:{
- .init ALIGN(0x20):{}
- extab_ ALIGN(0x20):{}
- extabindex_ ALIGN(0x20):{}
- .text ALIGN(0x20):{}
- .ctors ALIGN(0x20):{}
- .dtors ALIGN(0x20):{}
- .rodata ALIGN(0x20):{}
- .data ALIGN(0x20):{}
- .bss ALIGN(0x20):{}
- .sdata ALIGN(0x20):{}
- .sbss ALIGN(0x20):{}
- .sdata2 ALIGN(0x20):{}
- .sbss2 ALIGN(0x20):{}
- .stack ALIGN(0x100):{}
- } > text
- GROUP:{
- forcestrip ALIGN(0x20):{}
- } > forcestrip
- _stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 65536 + 0x7) & ~0x7;
- _stack_end = _f_sbss2 + SIZEOF(.sbss2);
- _db_stack_addr = (_stack_addr + 0x2000);
- _db_stack_end = _stack_addr;
- __ArenaLo = (_db_stack_addr + 0x1f) & ~0x1f;
- __ArenaHi = 0x81700000;
- _eti_init_info = 0x80005684;
- }
-FORCEACTIVE {
- PPCDIS_FORCEACTIVE
-}
-
-FORCEFILES
-{
- PPCDIS_FORCEFILES
-}
-
-__dummy_str = 0;
-__dummy_float = 0;
-__dummy_double = 0;
-__dummy_pointer = 0;
diff --git a/config/dol.yml b/config/dol.yml
deleted file mode 100644
index f6f55442..00000000
--- a/config/dol.yml
+++ /dev/null
@@ -1,25 +0,0 @@
-path: dump/static.dol
-r13: 0x8021fb80
-r2: 0x80220be0
-section_defs:
- text:
- - name: .init
- - name: .text
- data:
- - name: extab_
- attr: a
- - name: extabindex_
- attr: a
- - name: .ctors
- balign: 0
- - name: .dtors
- balign: 0
- - name: .rodata
- - name: .data
- - name: .sdata
- - name: .sdata2
- bss:
- - name: .bss
- balign: 4
- - name: .sbss
-label_prefix: ".L"
\ No newline at end of file
diff --git a/config/dol_slices.yml b/config/dol_slices.yml
deleted file mode 100644
index 13d549b5..00000000
--- a/config/dol_slices.yml
+++ /dev/null
@@ -1,396 +0,0 @@
-ctors.s:
- .ctors: [0x800a97b4, 0x800a97c0] # remove trailing 0s from ctor area
-#dolphin/os/__start.c:
-# .init: [0x80003100, 0x80003354]
-runtime/__mem.c:
- .init: [0x800033a8, 0x800034e0]
-TRK/init/mem_TRK.c:
- .init: [0x800034e0, 0x80003534]
-asm/__exception.s:
- .init: [0x80003534, 0x80005468]
-boot.c:
- .text: [0x800056c0, 0x8000663c]
- .rodata: [0x800a97e0, 0x800a97e8]
- .data: [0x800af860, 0x800afe50]
- .bss: [0x800e2280, 0x800e2318]
-jsyswrap.cpp:
- .text: [0x8000663c, 0x80007188]
- .ctors: [0x800a9784, 0x800a9788]
- .data: [0x800afe50, 0x800b05e8]
- .bss: [0x800e2318, 0x800e2640]
-initial_menu.c:
- .text: [0x80007188, 0x80007e58]
- .rodata: [0x800a97e8, 0x800a97f8]
- .data: [0x800b0608, 0x800b0a60]
- .bss: [0x800e2640, 0x800e2790]
-dvderr.c:
- .text: [0x80007e58, 0x800083f8]
- .rodata: [0x800a97f8, 0x800a9838]
- .data: [0x800b0a60, 0x800b9140]
- .bss: [0x800e2790, 0x800e2b88]
-jaudio_NES/game/dummyprobe.c:
- .text: [0x800083f8, 0x80008400]
-jaudio_NES/game/audioheaders.c:
- .data: [0x800cca40, 0x800ce880]
-jaudio_NES/game/verysimple.c:
- .text: [0x80008400, 0x80008480]
- .sdata: [0x80217b80, 0x80217b88]
-# jaudio_NES/game/game64.c: # TODO: finish
-# .rodata: [0x800a9938, 0x800a9b98]
-jaudio_NES/game/melody.c:
- .text: [0x8001561c, 0x80015a4c]
- .rodata: [0x800a9b98, 0x800aa500]
- .sbss: [0x80218390, 0x802183a0]
- .sdata2: [0x80218d58, 0x80218d60]
-jaudio_NES/game/rhythm.c:
- .text: [0x80015a4c, 0x800165ec]
- .bss: [0x8017bdd8, 0x8017be80]
- .sdata: [0x80217bd0, 0x80217bd8]
- .sbss: [0x802183a0, 0x802183b0]
- .sdata2: [0x80218d60, 0x80218d78]
-jaudio_NES/game/radio.c:
- .text: [0x800165ec, 0x8001676c]
- .sdata2: [0x80218d78, 0x80218d88]
-jaudio_NES/game/kappa.c:
- .text: [0x8001676c,0x80016840]
- .sbss: [0x802183b0, 0x802183b8]
-jaudio_NES/game/staff.c:
- .text: [0x80016840, 0x80016d20]
- .data: [0x800cfe10, 0x800cff20]
- .sbss: [0x802183b8, 0x802183c8]
- .sdata2: [0x80218d98, 0x80218da0]
-jaudio_NES/internal/aictrl.c:
- .text: [0x80017e80, 0x80018640]
- .rodata: [0x800aa500, 0x800aa518]
- .bss: [0x8017cfa0, 0x8017cfc0]
- .sbss: [0x802183f0, 0x80218420]
- .sdata2: [0x80218da8, 0x80218db8]
-jaudio_NES/internal/sample.c:
- .text: [0x80018640, 0x80018920]
-jaudio_NES/internal/dummyrom.c:
- .text: [0x80018920, 0x80018bc0]
- .rodata: [0x800aa518, 0x800aa528]
-# .bss: [0x8020d78c, 0x8020d7a0] # placed in common bss
- .sbss: [0x80218420, 0x80218440]
-jaudio_NES/internal/audiothread.c:
- .text: [0x80018bc0, 0x800190e0]
- .rodata: [0x800aa528, 0x800aa538]
- .bss: [0x8017cfc0, 0x80180020]
- .sbss: [0x80218440, 0x80218460]
- .sdata2: [0x80218db8, 0x80218dc0]
-jaudio_NES/internal/neosthread.c:
- .text: [0x800190e0, 0x80019380]
- .rodata: [0x800aa538, 0x800aa558]
- .bss: [0x80180020, 0x80186440]
- .sdata: [0x80217be0, 0x80217be8]
- .sbss: [0x80218460, 0x80218478]
-jaudio_NES/internal/streamctrl.c:
- .text: [0x80019380, 0x80019760]
- .data: [0x800d01a8, 0x800d0278]
- .bss: [0x80186440, 0x801864b0]
- .sdata2: [0x80218dc0, 0x80218dd0]
-jaudio_NES/internal/dspbuf.c:
- .text: [0x80019760, 0x80019ae0]
- .rodata: [0x800aa558, 0x800aa570]
- .bss: [0x801864b0, 0x801864c0]
- .sbss: [0x80218478, 0x80218488]
-jaudio_NES/internal/cpubuf.c:
- .text: [0x80019ae0, 0x80019dc0]
- .bss: [0x801864c0, 0x801864d0]
- .sbss: [0x80218488, 0x80218498]
-jaudio_NES/internal/playercall.c:
- .text: [0x80019dc0, 0x8001a0c0]
- .bss: [0x801864d0,0x80186590]
-jaudio_NES/internal/dvdthread.c:
- .text: [0x8001a0c0, 0x8001ada0]
- .data: [0x800d0278, 0x800d0298]
- .bss: [0x80186590, 0x8018f1a8]
- .sbss: [0x80218498, 0x802184e8]
-jaudio_NES/internal/sub_sys.c:
- .text: [0x80024ae0, 0x80026120]
- .rodata: [0x800aa700, 0x800aa720]
- .data: [0x800d0300, 0x800d0390]
- .sbss: [0x80218510, 0x80218528]
- .sdata2: [0x80218e48, 0x80218e60]
-jaudio_NES/internal/os.c:
- .text: [0x80026120, 0x80026300]
-jaudio_NES/internal/astest.c:
- .text: [0x80026300, 0x80026400]
-jaudio_NES/internal/track.c:
- .text: [0x80028e60, 0x8002c920]
- .rodata: [0x800aa720, 0x800aa780]
- .data: [0x800d36f0, 0x800d3b00]
- .sbss: [0x80218540, 0x80218548]
- .sdata2: [0x80218ec8, 0x80218f08]
-jaudio_NES/internal/dspboot.c:
- .text: [0x8002c920, 0x8002cd20]
- .rodata: [0x800aa780, 0x800aa7a0]
- .data: [0x800d3b00, 0x800d5500]
- .sdata2: [0x80218f08, 0x80218f10]
-jaudio_NES/internal/dspproc.c:
- .text: [0x8002cd20, 0x8002cfe0]
- .sdata: [0x80217c18, 0x80217c20]
-jaudio_NES/internal/random.c:
- .text: [0x80031ce0, 0x80031d80]
- .sdata: [0x80217c38, 0x80217c40]
- .sdata2: [0x80218f60, 0x80218f70]
-Famicom/famicom.cpp:
- .text: [0x80041614, 0x80046888] # TODO: get ~J2DOrthoGraph's dtor in here somehow? 0x800468fc, also add in JUTGamePad::getPortStatus when JUTGamePad is linked?
- .rodata: [0x800aa9a8, 0x800aaa30]
- .data: [0x800d8778, 0x800d99a0]
- .bss: [0x801ef540, 0x801f6bd8]
-Famicom/famicom_nesinfo.cpp:
- .text: [0x800468fc, 0x80047e40]
- .rodata: [0x800aaa30, 0x800aab60]
- .data: [0x800d99a0, 0x800da9c8]
- .bss: [0x801f6bd8, 0x801f6c80]
-GBA2/JoyBoot.c:
- .text: [0x80049788, 0x8004ae00]
- .data: [0x800daa08, 0x800daaa0]
- .bss: [0x801f7180, 0x801f71c0]
-libforest/osreport.c:
- .text: [0x8005a654, 0x8005a92c]
- .data: [0x800dc6d8, 0x800dc738]
- .bss: [0x80206f08, 0x80206f20]
- .sbss: [0x80218618, 0x80218628]
-libforest/fault.c:
- .text: [0x8005a92c, 0x8005adac]
- .data: [0x800dc738, 0x800dc7c8]
- .bss: [0x80206f20, 0x80206f30]
- .sbss: [0x80218628, 0x80218630]
-libforest/ReconfigBATs.c:
- .text: [0x8005adac, 0x8005aed4]
-libu64/debug.c:
- .text: [0x8005aed4, 0x8005af30]
- .data: [0x800dc7c8, 0x800dc7f0]
-libu64/gfxprint.c:
- .text: [0x8005af30, 0x8005b9a8]
- .data: [0x800dc7f0, 0x800dc810]
- .sbss: [0x80218630, 0x80218638]
-libu64/pad.c:
- .text: [0x8005b9a8, 0x8005ba2c]
-libc64/aprintf.c:
- .text: [0x8005cbdc, 0x8005cc14]
-libc64/math64.c:
- .text: [0x8005cc14, 0x8005cccc]
- .sdata2: [0x80219118, 0x80219130]
-libc64/qrand.c:
- .text: [0x8005cccc, 0x8005cd64]
- .sdata: [0x80217de8, 0x80217df0]
- .sbss: [0x80218640, 0x80218648]
- .sdata2: [0x80219130, 0x80219138]
-libc64/sprintf.c:
- .text: [0x8005ce18, 0x8005cf08]
-libc64/malloc.c:
- .text: [0x8005cf08, 0x8005d01c]
- .bss: [0x80206F30, 0x80206F60]
-libultra/ultra.c:
- .text: [0x8005d01c, 0x8005d15c]
- .bss: [0x80206f60, 0x80206fa0]
-#libultra/gu/scale.c:
-# .text: [0x8005e7d4, 0x8005e860]
-# .sdata2: [0x80219208, 0x80219210]
-#libultra/gu/translate.c:
-# .text: [0x8005e8ac, 0x8005e918]
-libultra/gu/sins.c:
- .text: [0x8005e860, 0x8005e8ac]
- .data: [0x800dd360, 0x800ddb60]
-#libultra/xldtob.c:
-# .text: [0x8005e918, 0x8005f2a0]
-# .rodata: [0x800ab110, 0x800ab158]
-# .sdata: [0x80217df8, 0x80217e08]
-# .sdata2: [0x80219210, 0x80219230]
-#libultra/xlitob.c:
-# .text: [0x8005f2a0, 0x8005f4cc]
-# .data: [0x800ddb60, 0x800ddb88]
-#libultra/xprintf.c:
-# .text: [0x8005f4cc, 0x8005ff74]
-# .rodata: [0x800ab158, 0x800ab170]
-# .data: [0x800ddb88, 0x800ddd20]
-# .sdata: [0x80217e08, 0x80217e10]
-# .sdata2: [0x80219230, 0x80219238]
-JSystem/JKernel/JKRHeap.cpp:
- .text: [0x80063748, 0x80064028]
- .data: [0x800ddf20, 0x800ddf98]
- .sdata: [0x80217e58, 0x80217e80]
- .sbss: [0x802186d8, 0x80218700]
-JSystem/JKernel/JKRExpHeap.cpp:
- .text: [0x80064028, 0x80065aa0]
- .data: [0x800ddf98, 0x800de3a8]
- .sdata: [0x80217e80, 0x80217ec0]
- .sbss: [0x80218700, 0x80218720]
- .sdata2: [0x80219278, 0x80219288]
-JSystem/JKernel/JKRDisposer.cpp:
- .text: [0x80065aa0, 0x80065b8c]
- .data: [0x800de3a8, 0x800de3c0]
- .sdata: [0x80217ec0, 0x80217ec8]
-JSystem/JKernel/JKRThread.cpp:
- .text: [0x80065b8c, 0x80065ef0]
- .ctors: [0x800a978c, 0x800a9790]
- .data: [0x800de3c0, 0x800de3f8]
- .bss: [0x80207008, 0x80207020]
- .sdata: [0x80217ec8, 0x80217ed8]
-JSystem/JKernel/JKRAram.cpp:
- .text: [0x80065ef8, 0x80066e84]
- .ctors: [0x800a9790, 0x800a9794]
- .data: [0x800de3f8, 0x800de4c0]
- .bss: [0x80207020, 0x80207038]
- .sdata: [0x80217ed8, 0x80217ef8]
- .sbss: [0x80218720, 0x80218758]
-JSystem/JKernel/JKRAramHeap.cpp:
- .text: [0x80066e84, 0x80067258]
- .ctors: [0x800a9794, 0x800a9798]
- .data: [0x800de4c0, 0x800de4f0]
- .bss: [0x80207038, 0x80207050]
- .sdata: [0x80217ef8, 0x80217f08]
-JSystem/JKernel/JKRAramBlock.cpp:
- .text: [0x80067258, 0x800674c8]
- .data: [0x800de4f0, 0x800de510]
- .sdata: [0x80217f08, 0x80217f10]
-JSystem/JKernel/JKRAramPiece.cpp:
- .text: [0x800674c8, 0x80067a88]
- .ctors: [0x800a9798, 0x800a979c]
- .data: [0x800de510, 0x800de568]
- .bss: [0x80207050, 0x80207080]
- .sdata: [0x80217f10, 0x80217f18]
-JSystem/JKernel/JKRAramStream.cpp:
- .text: [0x80067a88, 0x80067ff4]
- .data: [0x800de568, 0x800de608]
- .sdata: [0x80217f18, 0x80217f38]
- .sbss: [0x80218758, 0x80218768]
-JSystem/JKernel/JKRFileLoader.cpp:
- .text: [0x80067ff4, 0x800685b0]
- .ctors: [0x800a979c, 0x800a97a0]
- .data: [0x800de608, 0x800de670]
- .bss: [0x80207080, 0x80207098]
- .sdata: [0x80217f38, 0x80217f50]
- .sbss: [0x80218768, 0x80218770]
-JSystem/JKernel/JKRFileFinder.cpp:
- .text: [0x800685b0, 0x80068744]
- .data: [0x800de670, 0x800de6b0]
- .sdata: [0x80217f50, 0x80217f60]
-JSystem/JKernel/JKRArchivePub.cpp:
- .text: [0x80068744, 0x80068ed0]
- .data: [0x800de6b0, 0x800de740]
- .sdata: [0x80217f60, 0x80217f78]
-JSystem/JKernel/JKRArchivePri.cpp:
- .text: [0x80068ed0, 0x80069530]
- .sbss: [0x80218770, 0x80218778]
-JSystem/JKernel/JKRMemArchive.cpp:
- .text: [0x80069530, 0x80069a28]
- .data: [0x800de740, 0x800de828]
- .sdata: [0x80217f78, 0x80217f98]
-JSystem/JKernel/JKRAramArchive.cpp:
- .text: [0x80069a28, 0x8006a4fc]
- .data: [0x800de828, 0x800de938]
- .sdata: [0x80217f98, 0x80217fc8]
-JSystem/JKernel/JKRDvdArchive.cpp:
- .text: [0x8006a4fc, 0x8006add0]
- .data: [0x800de938, 0x800dea70]
- .sdata: [0x80217fc8, 0x80217fe8]
-JSystem/JKernel/JKRCompArchive.cpp:
- .text: [0x8006add0, 0x8006b8a4]
- .data: [0x800dea70, 0x800deba8]
- .sdata: [0x80217fe8, 0x80218008]
-JSystem/JKernel/JKRDvdFile.cpp:
- .text: [0x8006b8a4, 0x8006be0c]
- .ctors: [0x800a97a0, 0x800a97a4]
- .data: [0x800deba8, 0x800dec30]
- .bss: [0x80207098, 0x802070b0]
- .sdata: [0x80218008, 0x80218028]
-JSystem/JKernel/JKRDvdRipper.cpp:
- .text: [0x8006be0c, 0x8006c8fc]
- .ctors: [0x800a97a4, 0x800a97a8]
- .data: [0x800dec30, 0x800dec90]
- .bss: [0x802070b0, 0x802070c8]
- .sdata: [0x80218028, 0x80218030]
- .sbss: [0x80218778, 0x802187a8]
-JSystem/JKernel/JKRDvdAramRipper.cpp:
- .text: [0x8006c8fc, 0x8006d608]
- .ctors: [0x800a97a8, 0x800a97ac]
- .bss: [0x802070c8, 0x802070e0]
- .sdata: [0x80218030, 0x80218038]
- .sbss: [0x802187a8, 0x802187e8]
-JSystem/JKernel/JKRDecomp.cpp:
- .text: [0x8006d608, 0x8006dd58]
- .data: [0x800dec90, 0x800ded18]
- .sdata: [0x80218038, 0x80218050]
- .sbss: [0x802187e8, 0x802187f0]
-JSystem/JSupport/JSUInputStream.cpp:
- .text: [0x8006e168, 0x8006e3e4]
- .data: [0x800ded18, 0x800dedb8]
- .sdata: [0x80218050, 0x80218068]
-#JSystem/JSupport/JSUFileStream.cpp: # JSUFileStream linkage disabled until we can resolve order of RTTI strings in .data
-# .text: [0x8006e3e4, 0x8006e604]
-# .data: [0x800dedb8, 0x800dee60]
-# .sdata: [0x80218068, 0x80218088]
-JSystem/JGadget/linklist.cpp:
- .text: [0x8006e604, 0x8006e800]
-JSystem/JUtility/JUTGamePad.cpp:
- .text: [0x80070274, 0x800713b0]
- .ctors: [0x800a97ac, 0x800a97b0]
- .rodata: [0x800ab240, 0x800ab260]
- .data: [0x800def60, 0x800defa0]
- .bss: [0x802070e0, 0x80207268]
- .sdata: [0x802180b8, 0x802180d0]
- .sbss: [0x80218808, 0x80218838]
- .sdata2: [0x802192c0, 0x80219300]
-dolphin/BASE/ppcarch.c:
- .text: [0x8007867c, 0x80078718]
-dolphin/os/OSArena.c:
- .text: [0x8007988c, 0x800798ac]
- .sdata: [0x80218178, 0x80218180]
- .sbss: [0x802188f8, 0x80218900]
-#dolphin/os/OSCache.c:
-# .text: [0x80079b40, 0x8007a01c]
-# .data: [0x800dfa00, 0x800dfc30]
-#dolphin/os/OSDisableInterrupts.c:
- # .text: [0x8007ac24, 0x8007ac38]
-dolphin/os/OSEnableInterrupts.c:
- .text: [0x8007ac38, 0x8007ac4c]
-dolphin/os/OSRestoreInterrupts.c:
- .text: [0x8007ac4c, 0x8007ac70]
-dolphin/os/OSRtc.c:
- .text: [0x8007d050, 0x8007db20]
- .bss: [0x80207400, 0x80207458]
-dolphin/__ppc_eabi_init.cpp:
- .init: [0x80003354, 0x800033a8]
- .text: [0x8007fdfc, 0x8007fe90]
-dolphin/gx/GXStubs.c:
- .text: [0x800998d4, 0x800998d8]
-MSL_C/rand.c:
- .text: [0x8009f46c, 0x8009f494]
- .sdata: [0x80218260, 0x80218268]
-TRK/mainloop.c:
- .text: [0x800A1FF4, 0x800A20EC]
-TRK/nubevent.c:
- .text: [0x800A20EC, 0x800A2314]
- .bss: [0x802095C8, 0x802095F0]
-dolphin/amcstubs/AmcExi2Stubs.c:
- .text: [0x800a8cc0, 0x800a8cf0]
-#TRK/nubinit.c: #things break, fix later
-# .text: [0x800A2314, 0x800A2494]
-# .rodata: [0x800AF750, 0x800AF770]
-# .bss: [0x802095F0, 0x802095F8]
-#TRK/usr_put.c:
-# .text: [0x800A3468, 0x800A34F4]
-#TRK/dispatch.c:
-# .text: [0x800A34F4, 0x800A3590]
-# .data: [0x800E2128, 0x800E21B0]
-# .bss: [0x8020AFC0, 0x8020AFC8]
-dolphin/odenotstub/odenotstub.c:
- .text: [0x800a9770, 0x800a9780]
-version.c:
- .data: [0x800b05e8, 0x800b0608]
-bootdata/gam_win1.c:
- .data: [0x800b9140, 0x800bb500]
-bootdata/gam_win2.c:
- .data: [0x800bb500, 0x800bd820]
-bootdata/gam_win3.c:
- .data: [0x800bd820, 0x800be460]
-bootdata/logo_nin.c:
- .data: [0x800be460, 0x800c3140]
-nintendo_hi_0.c:
- .data: [0x800c3140, 0x800cca40]
-libu64/gfxprint_data.c:
- .data: [0x800dc810, 0x800dd090]
diff --git a/config/rel.lcf b/config/rel.lcf
deleted file mode 100644
index 36c87745..00000000
--- a/config/rel.lcf
+++ /dev/null
@@ -1,24 +0,0 @@
-SECTIONS {
- GROUP:{
- .init:{}
- .text:{}
- .ctors:{}
- .dtors:{}
- .rodata:{}
- .data:{}
- .bss:{}
-
- // Removed by elf2rel
- forcestrip:{}
- relsymdef:{}
- }
-}
-FORCEFILES {
-}
-FORCEACTIVE {
- _prolog _epilog _unresolved
-}
-
-__dummy_str = 0;
-__dummy_float = 0;
-__dummy_double = 0;
\ No newline at end of file
diff --git a/config/rel.yml b/config/rel.yml
deleted file mode 100644
index 4edb6246..00000000
--- a/config/rel.yml
+++ /dev/null
@@ -1,5 +0,0 @@
-path: dump/foresta.rel
-address: 0x803701C0
-bss_address: 0x8125A7C0
-dol: config/dol.yml
-label_prefix: ".L"
\ No newline at end of file
diff --git a/config/rel_disasm_overrides.yml b/config/rel_disasm_overrides.yml
deleted file mode 100644
index bd2bbc05..00000000
--- a/config/rel_disasm_overrides.yml
+++ /dev/null
@@ -1,24 +0,0 @@
-trim_ctors: true
-trim_dtors: true
-symbol_aligns:
- 0x8064d500 : 0x20
- 0x81295C80 : 0x20 # .bss m_handbill.o
- 0x8125a7c0 : 0x20 # construct_skip
- 0x81361820 : 0x20 # S_back_title_timer
- 0x806D4D40: 32 # align fFTR_myhome_off_pal_table to 32 bytes
- 0x8064F860: 32 # data right after m_camera2 TU
- 0x80C78B20: 32 # mFM_grd_s_cliff_tex
- 0x80F8C460: 32 # mFM_grd_s_rail_tex
- 0x80657200: 32 # .data msg.o
- 0x81297E80: 32 # .bss msg.o
- 0x81296140: 32 # .bss m_island.o
- 0x80904700: 32 # rom_myhome1_floor_v
- 0x80751140: 32 # dataobject.obj/.data/obj_zassou_tex
- 0x80DD61A0: 32 # dataobject/obj/.data/cKF_ckcb_r_int_hnw001_tbl (TU is aligned to 32 because of 32-byte aligned entries)
- 0x80F1CCA0: 32 # dataobject/obj/.data/rom_museum5_wall_pal
- 0x80F85720: 32 # dataobject/obj/.data/grd_player_select_evw_anime_1 (TU is aligned to 32)
- 0x80FACE20: 32 # dataobject/obj/.data/rom_shop4_1_floor_tex_pal
- 0x8074B840: 32 # dataobject/obj/.data/mFM_obj_a_01_flower_pal
- 0x808DF220: 32 # obj_otiba01_pal
- 0x809C8FA0: 32 # ef_hanabira01_0
- 0x80C0CBA0: 32 # crw_anrium1_pal
\ No newline at end of file
diff --git a/config/rel_slices.yml b/config/rel_slices.yml
deleted file mode 100644
index 30c4a65e..00000000
--- a/config/rel_slices.yml
+++ /dev/null
@@ -1,3057 +0,0 @@
-executor.c:
- .text: [0x803702A8, 0x803703F8]
- .data: [0x8064D500, 0x8064D580]
- .bss: [0x8125A7C0, 0x8125A7C8]
-sys_vimgr.c:
- .text: [0x803703F8, 0x80370418]
-c_keyframe.c:
- .text: [0x80370418, 0x80372C8C]
- .rodata: [0x80641260, 0x806412A8]
-evw_anime.c:
- .text: [0x80372C8C, 0x803736D0]
- .rodata: [0x806412A8, 0x806412C0]
- .data: [0x8064D580, 0x8064D598]
-m_all_grow.c:
- .text: [0x803736D0, 0x803742B8]
- .rodata: [0x806412C0, 0x806412E8]
- .data: [0x8064D598, 0x8064D600]
- .bss: [0x8125A7C8, 0x8125A7E8]
-m_actor.c:
- .text: [0x803742B8, 0x8037619C]
- .rodata: [0x806412E8, 0x80641328]
- .data: [0x8064D600, 0x8064D628]
- .bss: [0x8125A7E8, 0x8125A828]
-m_actor_dlftbls.c:
- .text: [0x8037619C, 0x803761BC]
- .data: [0x8064D628, 0x8064F4E8]
- .bss: [0x8125A828, 0x8125A830]
-m_actor_shadow.c:
- .text: [0x803761BC, 0x80377114]
- .rodata: [0x80641328, 0x80641388]
- .data: [0x8064F4E8, 0x8064F548]
-m_banti.c:
- .text: [0x80377114, 0x80378858]
- .rodata: [0x80641388, 0x806413E0]
- .data: [0x8064F548, 0x8064F658]
- .bss: [0x8125A830, 0x8125AC80]
-m_bg_item.c:
- .text: [0x80378858, 0x803789F8]
- .rodata: [0x806413E0, 0x806413F0]
- .bss: [0x81263080, 0x81263088]
-m_bgm.c:
- .text: [0x803789F8, 0x8037D190]
- .rodata: [0x806413F0, 0x80641438]
- .data: [0x8064F658, 0x8064F818]
- .bss: [0x81263088, 0x812633A0]
-m_calendar.c:
- .text: [0x8037D190, 0x8037DA54]
-m_camera2.c:
- .text: [0x8037DA54, 0x8038344C]
- .rodata: [0x80641438, 0x80641828]
- .data: [0x8064F818, 0x8064F860]
-m_choice.c:
- .text: [0x8038344C, 0x80385404]
- .rodata: [0x80641828, 0x80641A90]
- .data: [0x8064F860, 0x80650960]
- .bss: [0x812633A0, 0x81263410]
-m_clip.c:
- .text: [0x80385404, 0x80385430]
-m_cockroach.c:
- .text: [0x80385430, 0x80385A80]
-m_collision_obj.c:
- .text: [0x80394518, 0x80395B24]
- .rodata: [0x80641CE8, 0x80641D20]
- .data: [0x80651208, 0x806512D8]
- .bss: [0x812663D0, 0x81266400]
-m_common_data.c:
- .text: [0x80395B24, 0x80395BE8]
-m_controller.c:
- .text: [0x80395BE8, 0x80396120]
- .rodata: [0x80641D20, 0x80641D50]
-m_debug.c:
- .text: [0x80396120, 0x80396198]
- .bss: [0x81294000, 0x81294008]
-m_debug_display.c:
- .text: [0x80396198, 0x803965E4]
- .data: [0x806512D8, 0x80651328]
- .bss: [0x81294008, 0x81294010]
-m_debug_hayakawa.c:
- .text: [0x803965E4, 0x803973E8]
- .rodata: [0x80641D50, 0x80641D90]
- .data: [0x80651328, 0x80651358]
-m_debug_mode.c:
- .text: [0x803973E8, 0x803984B4]
- .rodata: [0x80641D90, 0x80641DA8]
- .data: [0x80651358, 0x80651788]
- .bss: [0x81294010, 0x81294E18]
-m_demo.c:
- .text: [0x803984B4, 0x8039A540]
- .rodata: [0x80641DA8, 0x80641F00]
- .data: [0x80651788, 0x80651918]
- .bss: [0x81294E18, 0x81295150]
-m_eappli.c:
- .text: [0x8039A5E0, 0x8039A960]
- .bss: [0x81295150, 0x81295550]
-m_event.c:
- .text: [0x8039A960, 0x8039F510]
- .rodata: [0x80641F00, 0x80641F38]
- .data: [0x80651918, 0x806522F8]
- .bss: [0x81295550, 0x81295790]
-m_fbdemo.c:
- .text: [0x803A0350, 0x803A0ABC]
- .rodata: [0x80641F40, 0x80641F60]
- .data: [0x80652AA0, 0x80652AD0]
-m_fbdemo_triforce.c:
- .text: [0x803A0ABC, 0x803A0F00]
- .rodata: [0x80641F60, 0x80641FA0]
-m_fbdemo_wipe1.c:
- .text: [0x803A0F00, 0x803A12F8]
- .rodata: [0x80641FA0, 0x80641FC0]
- .data: [0x80652AD0, 0x80653558]
-m_fbdemo_fade.c:
- .text: [0x803A12F8, 0x803A1508]
- .rodata: [0x80641FC0, 0x80641FD8]
- .data: [0x80653558, 0x806535A0]
-m_field_assessment.c:
- .text: [0x803A1508, 0x803A22C4]
- .rodata: [0x80641FD8, 0x80641FE0]
- .data: [0x806535A0, 0x80653620]
- .bss: [0x81295790, 0x812957A0]
-m_field_make.c:
- .text: [0x803A22C4, 0x803A4D68]
- .rodata: [0x80641FE0, 0x80642008]
- .data: [0x80653620, 0x80653E28]
- .bss: [0x812957A0, 0x81295A88]
-m_field_info.c:
- .text: [0x803A4D68, 0x803AB698]
- .rodata: [0x80642008, 0x80642068]
- .data: [0x80653E28, 0x80654180]
- .bss: [0x81295A88, 0x81295BD0]
-m_fishrecord.c:
- .text: [0x803AB698, 0x803AC5C8]
- .rodata: [0x80642068, 0x80642080]
- .data: [0x80654180, 0x80654188]
- .bss: [0x81295BD0, 0x81295BD8]
-m_flashrom.c:
- .text: [0x803AC5C8, 0x803AF48C]
- .data: [0x80654188, 0x80654298]
- .bss: [0x81295BD8, 0x81295C30]
-m_font.c:
- .text: [0x803AF48C, 0x803B15E0]
- .rodata: [0x80642080, 0x80642258]
- .data: [0x80654298, 0x806544D0]
- .bss: [0x81295C30, 0x81295C70]
-m_fuusen.c:
- .text: [0x803B15E0, 0x803B1908]
- .rodata: [0x80642258, 0x80642288]
- .bss: [0x81295C70, 0x81295C80]
-m_huusui_room.c:
- .text: [0x803B1908, 0x803B1968]
-m_handbill.c:
- .text: [0x803B1968, 0x803B2E88]
- .rodata: [0x80642288, 0x80642478]
- .data: [0x806546B0, 0x806546C8]
- .bss: [0x81295C80, 0x81296128]
-m_home.c:
- .text: [0x803B2E88, 0x803B3688]
- .data: [0x806546C8, 0x80655340]
-m_house.c:
- .text: [0x803B3688, 0x803B3880]
-m_land.c:
- .text: [0x803B3880, 0x803B3CB8]
- .rodata: [0x80642478, 0x80642480]
- .bss: [0x81296128, 0x81296140]
-m_island.c:
- .text: [0x803B3CB8, 0x803B5A68]
- .data: [0x80655340, 0x80655388]
- .bss: [0x81296140, 0x81297A68]
-m_item_name.c:
- .text: [0x803B5A68, 0x803B5CC4]
- .data: [0x80655388, 0x80655D48]
-m_kabu_manager.c:
- .text: [0x803B5CC4, 0x803B6280]
- .rodata: [0x80642480, 0x806424C0]
- .data: [0x80655D48, 0x80655D78]
-m_kankyo.c:
- .text: [0x803B6280, 0x803BAB0C]
- .rodata: [0x806424C0, 0x80642640]
- .data: [0x80655D78, 0x80656670]
- .bss: [0x81297A68, 0x81297B18]
-m_lib.c:
- .text: [0x803BAB0C, 0x803BB960]
- .rodata: [0x80642640, 0x80642680]
-m_lights.c:
- .text: [0x803BB960, 0x803BC510]
- .rodata: [0x80642680, 0x806426D8]
- .bss: [0x81297B18, 0x81297CA0]
-m_malloc.c:
- .text: [0x803BC510, 0x803BC70C]
- .bss: [0x81297CA0, 0x81297CD0]
-m_mail.c:
- .text: [0x803BC70C, 0x803BD230]
- .data: [0x80656670, 0x806566C0]
- .bss: [0x81297CD0, 0x81297E68]
-m_mail_check.c:
- .text: [0x803BD230, 0x803BD250]
-m_mail_password_check.c:
- .text: [0x803BD250, 0x803BEC9C]
- .data: [0x806566C0, 0x806571D8]
-m_mark_room.c:
- .text: [0x803BEC9C, 0x803BF210]
- .rodata: [0x806426D8, 0x806426E8]
-m_melody.c:
- .text: [0x803BF210, 0x803BF464]
- .data: [0x806571D8, 0x80657200]
- .bss: [0x81297E68, 0x81297E80]
-m_msg.c:
- .text: [0x803BF464, 0x803C6228]
- .rodata: [0x806426E8, 0x80642938]
- .data: [0x80657200, 0x8065A280]
- .bss: [0x81297E80, 0x81298A00]
-m_museum.c:
- .text: [0x803C6228, 0x803C74C0]
- .rodata: [0x80642938, 0x80642950]
- .data: [0x8065A280, 0x8065A308]
- .bss: [0x81298A00, 0x81298B40]
-m_museum_display.c:
- .text: [0x803C74C0, 0x803C8090]
- .data: [0x8065A308, 0x8065A3F8]
-m_mushroom.c:
- .text: [0x803C8090, 0x803C90A8]
- .rodata: [0x80642950, 0x80642960]
- .data: [0x8065A3F8, 0x8065A430]
- .bss: [0x81298B40, 0x81298F60]
-m_name_table.c:
- .text: [0x803C90A8, 0x803C98EC]
- .rodata: [0x80642960, 0x80642978]
- .data: [0x8065A430, 0x8065ABC0]
-m_needlework.c:
- .text: [0x803C98EC, 0x803C9F7C]
- .data: [0x8065ABC0, 0x8065AE30]
- .bss: [0x81298F60, 0x81299180]
-m_notice.c:
- .text: [0x803C9F7C, 0x803CB340]
- .rodata: [0x80642978, 0x806429B8]
- .data: [0x8065AE30, 0x8065AEE8]
- .bss: [0x81299180, 0x81299240]
-m_npc.c:
- .text: [0x803CB340, 0x803D7570]
- .rodata: [0x806429B8, 0x806429F0]
- .data: [0x8065AEE8, 0x8065B638]
- .bss: [0x81299240, 0x8129CC48]
-m_npc_schedule.c:
- .text: [0x803D7570, 0x803D7890]
- .data: [0x8065B638, 0x8065B7F0]
-m_npc_walk.c:
- .text: [0x803D7890, 0x803D88E8]
- .rodata: [0x806429F0, 0x80642A00]
- .data: [0x8065B7F0, 0x8065B9A0]
- .bss: [0x8129CC48, 0x8129CC98]
-m_olib.c:
- .text: [0x803D88E8, 0x803D8A34]
- .rodata: [0x80642A00, 0x80642A10]
-m_pause.c:
- .text: [0x803D8A34, 0x803D8AEC]
-m_player_call.c:
- .text: [0x803D8AEC, 0x803D8CEC]
- .data: [0x8065B9A0, 0x8065B9C8]
- .bss: [0x8129CC98, 0x8129CCA8]
-m_player_lib.c:
- .text: [0x803D8CEC, 0x803DE8A0]
- .rodata: [0x80642A10, 0x806431C8]
- .data: [0x8065B9C8, 0x8065BE98]
- .bss: [0x8129CCA8, 0x8129CD40]
-m_police_box.c:
- .text: [0x803DE8A0, 0x803DEE38]
- .rodata: [0x806431C8, 0x806431D8]
- .data: [0x8065BE98, 0x8065BEF0]
-m_post_office.c:
- .text: [0x803DEE38, 0x803DFF7C]
- .data: [0x8065BEF0, 0x8065BF00]
-m_private.c:
- .text: [0x803DFF7C, 0x803E2990]
- .rodata: [0x806431D8, 0x80643208]
- .data: [0x8065BF00, 0x8065C030]
- .bss: [0x8129CD40, 0x8129F2B0]
-m_quest.c:
- .text: [0x803E2990, 0x803E4B20]
- .rodata: [0x80643208, 0x80643218]
- .data: [0x8065C030, 0x8065C098]
- .bss: [0x8129F2B0, 0x8129F2E8]
-m_random_field.c:
- .text: [0x803E4B20, 0x803E50E4]
- .rodata: [0x80643218, 0x80643240]
- .data: [0x8065C098, 0x8065C588]
-m_rcp.c:
- .text: [0x803E50E4, 0x803E5D04]
- .data: [0x8065C588, 0x8065C910]
- .bss: [0x8129F2E8, 0x8129F2F0]
-m_room_type.c:
- .text: [0x803E5D04, 0x803E7998]
- .rodata: [0x80643240, 0x80643270]
- .data: [0x8065C910, 0x8065D690]
- .bss: [0x8129F2F0, 0x8129F308]
-m_scene_ftr.c:
- .text: [0x803E7998, 0x803E7A7C]
-m_shop.c:
- .text: [0x803E7A7C, 0x803EC240]
- .rodata: [0x80643270, 0x806432D0]
- .data: [0x8065D690, 0x8065DBF8]
- .bss: [0x8129F308, 0x8129F320]
-m_soncho.c:
- .text: [0x803EC240, 0x803EDEC0]
- .rodata: [0x806432D0, 0x806432E0]
- .data: [0x8065DBF8, 0x8065DD70]
-m_start_data_init.c:
- .text: [0x803EDEC0, 0x803EED30]
- .rodata: [0x806432E0, 0x806432F0]
- .data: [0x8065DD70, 0x8065DDD0]
-m_string.c:
- .text: [0x803EED30, 0x803EF290]
- .bss: [0x8129F320, 0x8129F400]
-m_submenu.c:
- .text: [0x803EF290, 0x803F0610]
- .rodata: [0x806432F0, 0x806432F8]
- .data: [0x8065DDD0, 0x8065DE80]
- .bss: [0x8129F400, 0x8129F408]
-m_scene.c:
- .text: [0x803F0610, 0x803F1528]
- .rodata: [0x806432F8, 0x80643310]
- .data: [0x8065DE80, 0x8065DEC8]
-m_skin_matrix.c:
- .text: [0x803f1528, 0x803f1bb4]
- .rodata: [0x80643310, 0x80643318]
-m_snowman.c:
- .text: [0x803F1BB4, 0x803F1F94]
- .rodata: [0x80643318, 0x80643330]
-m_titledemo.c:
- .text: [0x803F1F94, 0x803F2428]
- .rodata: [0x80643330, 0x80643350]
- .data: [0x8065E2D8, 0x8065E2F0]
- .bss: [0x8129F408, 0x8129F410]
-m_train_control.c:
- .text: [0x803F2428, 0x803F33DC]
- .rodata: [0x80643350, 0x806433B0]
- .data: [0x8065E2F0, 0x8065E378]
-m_time.c:
- .text: [0x803F33DC, 0x803F3E58]
- .rodata: [0x806433B0, 0x806433D8]
- .data: [0x8065E378, 0x8065E438]
- .bss: [0x8129F410, 0x8129F420]
-m_view.c:
- .text: [0x803F3E58, 0x803F4E08]
- .rodata: [0x806433D8, 0x80643408]
-m_roll_lib.c:
- .text: [0x803F6570, 0x803F76F0]
- .rodata: [0x806434D8, 0x80643538]
-m_cpak.c:
- .text: [0x80403830, 0x80403874]
- .data: [0x8065EC98, 0x8065ECA0]
- .bss: [0x812F3040, 0x812F3098]
-m_vibctl.c:
- .text: [0x8040387C, 0x804040F0]
- .rodata: [0x80643550, 0x806436C8]
- .bss: [0x812F3098, 0x812F31B8]
-PreRender.c:
- .text: [0x804040F0, 0x80404AE0]
- .rodata: [0x806436C8, 0x806436E8]
-THA_GA.c:
- .text: [0x80404AE0, 0x80404B40]
-TwoHeadArena.c:
- .text: [0x80404B40, 0x80404C68]
-game.c:
- .text: [0x80404C68, 0x80405370]
- .rodata: [0x806436E8, 0x806436F8]
- .data: [0x8065ECA0, 0x8065ECA8]
- .bss: [0x812F31B8, 0x812F31E8]
-gamealloc.c:
- .text: [0x80405370, 0x804054B0]
-gfxalloc.c:
- .text: [0x804054b0, 0x80405518]
-graph.c:
- .text: [0x80405518, 0x80405EC8]
- .data: [0x8065ECA8, 0x8065ECB0]
- .bss: [0x812F31E8, 0x812F3560]
-irqmgr.c:
- .text: [0x80405EC8, 0x80406480]
- .data: [0x8065ECB0, 0x8065ECD0]
- .bss: [0x812F3560, 0x812F4CB0]
-lb_rtc.c:
- .text: [0x80406480, 0x8040752C]
- .rodata: [0x806436F8, 0x806437A0]
- .data: [0x8065ECD0, 0x8065ECD8]
- .bss: [0x812F4CB0, 0x812F4CC0]
-lb_reki.c:
- .text: [0x8040752C, 0x80407AE8]
- .rodata: [0x806437A0, 0x806437C0]
- .data: [0x8065ECD8, 0x8065F110]
-main.c:
- .text: [0x80407AE8, 0x80407CF4]
- .data: [0x8065F110, 0x8065F138]
- .bss: [0x812F4CC0, 0x812F5038]
-padmgr.c:
- .text: [0x80407CF4, 0x80408940]
- .data: [0x8065F138, 0x8065F150]
- .bss: [0x812F5038, 0x812F54A0]
-sys_math.c:
- .text: [0x80408940, 0x80408A44]
- .rodata: [0x806437C0, 0x806437D0]
-sys_math3d.c:
- .text: [0x80408A44, 0x8040C06C]
- .rodata: [0x806437D0, 0x80643810]
- .data: [0x8065F150, 0x8065F168]
- .bss: [0x812F54A0, 0x812F5668]
-sys_math_atan.c:
- .text: [0x8040C06C, 0x8040C284]
- .rodata: [0x80643810, 0x80643828]
- .data: [0x8065F168, 0x8065f970]
-sys_matrix.c:
- .text: [0x8040C284, 0x8040EB38]
- .rodata: [0x80643828, 0x80643860]
- .data: [0x8065F970, 0x8065F9F0]
- .bss: [0x812F5668, 0x812F5670]
-zurumode.c:
- .text: [0x8040eb38, 0x8040f008]
- .bss: [0x812f9670, 0x812f9680]
- .data: [0x8065F9F0, 0x8065FA30]
-sys_ucode.c:
- .text: [0x8040F008, 0x8040F048]
- .data: [0x8065FA30, 0x8065FA40]
- .bss: [0x812F9680, 0x812F96A0]
-ac_sample.c:
- .text: [0x8040F048, 0x8040F614]
- .rodata: [0x80643860, 0x80643868]
- .data: [0x8065FA40, 0x8065FAA0]
- .bss: [0x812F96A0, 0x812F96E0]
-ac_airplane.c:
- .text: [0x8040F614, 0x804104AC]
- .rodata: [0x80643868, 0x80643918]
- .data: [0x8065FAA0, 0x8065FB68]
-ac_animal_logo.c:
- .text: [0x804104AC, 0x804117D4]
- .rodata: [0x80643918, 0x80643A88]
- .data: [0x8065FB68, 0x8065FBA8]
-ac_animal_logo_misc.c:
- .text: [0x804117D4, 0x80411A60]
-ac_arrange_room.c:
- .text: [0x80411A70, 0x80411F64]
- .rodata: [0x80643A88, 0x80643A90]
- .data: [0x8065FBD0, 0x8065FBF8]
-ac_ball.c:
- .text: [0x80411F64, 0x80413DD4]
- .rodata: [0x80643A90, 0x80643B60]
- .data: [0x8065FBF8, 0x8065FC58]
- .bss: [0x812F96E0, 0x812F96E8]
-ac_birth_control.c:
- .text: [0x80414598, 0x80414EC4]
- .rodata: [0x80643B90, 0x80643B98]
- .data: [0x8065FCB0, 0x8065FD28]
-ac_boat_demo.c:
- .text: [0x80414EC4, 0x80415BD8]
- .rodata: [0x80643B98, 0x80643BA0]
- .data: [0x8065FD28, 0x806818A0]
- .bss: [0x812F96E8, 0x812F96F0]
-ac_boxManager.c:
- .text: [0x80415BD8, 0x80415BE8]
- .data: [0x806818A0, 0x806818C8]
-ac_boxMove.c:
- .text: [0x80415BE8, 0x80415BF8]
- .data: [0x806818C8, 0x806818F0]
-ac_boxTrick01.c:
- .text: [0x80415BF8, 0x80415C04]
- .data: [0x806818F0, 0x80681918]
-ac_cottage.c:
- .text: [0x80415F04, 0x804174C4]
- .rodata: [0x80643BA0, 0x80643DB0]
- .data: [0x80681958, 0x80681A98]
-ac_field_draw.c:
- .text: [0x80422DA8, 0x80423E20]
- .rodata: [0x80643F00, 0x80643F88]
- .data: [0x806829E0, 0x80682B68]
- .bss: [0x812F98C0, 0x812F9C28]
-ac_flag.c:
- .text: [0x80423E30, 0x80424B88]
- .rodata: [0x80643F88, 0x80643FC0]
- .data: [0x80682B90, 0x80682C00]
-ac_handOverItem.c:
- .text: [0x80426A50, 0x80427624]
- .rodata: [0x806440A0, 0x806440B8]
- .data: [0x806832C0, 0x80683D08]
- .bss: [0x812F9C28, 0x812F9C50]
-ac_haniwa.c:
- .text: [0x80427624, 0x80428F64]
- .rodata: [0x806440B8, 0x806440F8]
- .data: [0x80683D08, 0x80683E98]
-ac_intro_demo.c:
- .text: [0x8042A97C, 0x8042B65C]
- .rodata: [0x80644128, 0x80644158]
- .data: [0x80684208, 0x806842E0]
- .bss: [0x812F9C50, 0x812F9C60]
-ac_mbg.c:
- .text: [0x8042DCA0, 0x8042DEC8]
- .rodata: [0x80644218, 0x80644238]
- .data: [0x80684BB0, 0x80684CB8]
-ac_misin.c:
- .text: [0x8042DEC8, 0x8042EAE0]
- .rodata: [0x80644238, 0x80644288]
- .data: [0x80684CB8, 0x80684D20]
-ac_mural.c:
- .text: [0x8042EAE0, 0x8042EDC0]
- .rodata: [0x80644288, 0x806442A0]
- .data: [0x80684D20, 0x80684D48]
- .bss: [0x812F9C60, 0x812FBE60]
-ac_museum_fossil.c:
- .text: [0x8042EDC0, 0x8042F170]
- .rodata: [0x806442A0, 0x806442D0]
- .data: [0x80684D48, 0x80684E38]
- .bss: [0x812FBE60, 0x812FBE70]
-ac_museum_picture.c:
- .text: [0x8042F170, 0x8042F7FC]
- .rodata: [0x806442D0, 0x80644330]
- .data: [0x80684E38, 0x80684F58]
- .bss: [0x812FBE70, 0x812FBE80]
-ac_my_indoor.c:
- .text: [0x8046EE38, 0x80470288]
- .rodata: [0x80644A88, 0x80644A98]
- .data: [0x806870F0, 0x806873E8]
-ac_my_room.c:
- .text: [0x80470288, 0x80482D9C]
- .rodata: [0x80644A98, 0x80644C28]
- .data: [0x806873E8, 0x8068A378]
- .bss: [0x812FBEB0, 0x812FC5E0]
-ac_psnowman.c:
- .text: [0x80484098, 0x80484694]
- .rodata: [0x80644C30, 0x80644C60]
- .data: [0x8068A458, 0x8068A480]
-ac_quest_manager.c:
- .text: [0x80485508, 0x80487A78]
- .data: [0x8068A520, 0x8068ADF8]
- .bss: [0x812FC920, 0x812FC938]
-ac_quest_talk_fj_init.c:
- .text: [0x80487A78, 0x80488474]
- .data: [0x8068ADF8, 0x8068AE40]
- .bss: [0x812FC938, 0x812FCA68]
-ac_quest_talk_greeting.c:
- .text: [0x80488474, 0x80489A34]
- .rodata: [0x80644CA0, 0x80644CA8]
- .data: [0x8068AE40, 0x8068B048]
- .bss: [0x812FCA68, 0x812FCAA8]
-ac_quest_talk_init.c:
- .text: [0x80489A34, 0x8048D768]
- .rodata: [0x80644CA8, 0x80644D10]
- .data: [0x8068B048, 0x8068B310]
-ac_ride_off_demo.c:
- .text: [0x80496218, 0x804967A4]
- .rodata: [0x80644D90, 0x80644DB0]
- .data: [0x8068BB28, 0x8068BB80]
- .bss: [0x812FCCD8, 0x812FCCE0]
-ac_rope.c:
- .text: [0x804967A4, 0x80496AB8]
- .rodata: [0x80644DB0, 0x80644DB8]
- .data: [0x8068BB80, 0x8068BBE0]
-ac_set_manager.c:
- .text: [0x80496AB8, 0x80496F50]
- .rodata: [0x80644DB8, 0x80644DC8]
- .data: [0x8068BBE0, 0x8068BC18]
-ac_set_ovl_gyoei.c:
- .text: [0x804995D4, 0x8049A9E4]
- .rodata: [0x80644DD0, 0x80644E00]
- .data: [0x8068BCF0, 0x8068CDE8]
- .bss: [0x812FCD00, 0x812FD048]
-ac_set_ovl_insect.c:
- .text: [0x8049A9E4, 0x8049C748]
- .rodata: [0x80644E00, 0x80644E28]
- .data: [0x8068CDE8, 0x8068E3C0]
- .bss: [0x812FD048, 0x812FD270]
-ac_shop_design.c:
- .text: [0x8049C748, 0x8049D51C]
- .data: [0x8068E3C0, 0x8068E430]
-ac_shop_goods.c:
- .text: [0x8049D51C, 0x8049E6F4]
- .rodata: [0x80644E28, 0x80645CB0]
- .data: [0x8068E430, 0x8068E458]
- .bss: [0x812FD270, 0x812FD480]
-ac_shop_indoor.c:
- .text: [0x8049E6F4, 0x8049F40C]
- .rodata: [0x80645CB0, 0x80645CD0]
- .data: [0x8068E458, 0x8068E520]
- .bss: [0x812FD480, 0x812FD488]
-ac_shop_level.c:
- .text: [0x8049F40C, 0x8049FEC4]
- .data: [0x8068E520, 0x8068E708]
-ac_sign.c:
- .text: [0x804A127C, 0x804A3328]
- .rodata: [0x80645D18, 0x80645D78]
- .data: [0x8068E880, 0x8068E8E8]
-ac_t_anrium1.c:
- .text: [0x804A7750, 0x804A78A4]
- .data: [0x8068E9C8, 0x8068EA08]
-ac_t_bag1.c:
- .text: [0x804A78A4, 0x804A79F8]
- .data: [0x8068EA08, 0x8068EA48]
-ac_t_bag2.c:
- .text: [0x804A79F8, 0x804A7B4C]
- .data: [0x8068EA48, 0x8068EA88]
-ac_t_biscus1.c:
- .text: [0x804A7B4C, 0x804A7CA0]
- .data: [0x8068EA88, 0x8068EAC8]
-ac_t_biscus2.c:
- .text: [0x804A7CA0, 0x804A7DF4]
- .data: [0x8068EAC8, 0x8068EB08]
-ac_t_biscus3.c:
- .text: [0x804A7DF4, 0x804A7F48]
- .data: [0x8068EB08, 0x8068EB48]
-ac_t_biscus4.c:
- .text: [0x804A7F48, 0x804A809C]
- .data: [0x8068EB48, 0x8068EB88]
-ac_t_cobra1.c:
- .text: [0x804A809C, 0x804A81F0]
- .data: [0x8068EB88, 0x8068EBC8]
-ac_t_cracker.c:
- .text: [0x804A81F0, 0x804A8454]
- .rodata: [0x80645EA8, 0x80645EB0]
- .data: [0x8068EBC8, 0x8068EC28]
-ac_t_flag.c:
- .text: [0x804A8454, 0x804A8834]
- .rodata: [0x80645EB0, 0x80645EC8]
- .data: [0x8068EC28, 0x8068EC50]
-ac_t_hanabi.c:
- .text: [0x804A8834, 0x804A8A9C]
- .rodata: [0x80645EC8, 0x80645ED0]
- .data: [0x8068EC50, 0x8068ECB0]
-ac_t_hasu1.c:
- .text: [0x804A8A9C, 0x804A8BF0]
- .data: [0x8068ECB0, 0x8068ECF0]
-ac_t_hat1.c:
- .text: [0x804A8BF0, 0x804A8D44]
- .data: [0x8068ECF0, 0x8068ED30]
-ac_t_hat2.c:
- .text: [0x804A8D44, 0x804A8E98]
- .data: [0x8068ED30, 0x8068ED70]
-ac_t_hat3.c:
- .text: [0x804A8E98, 0x804A8FEC]
- .data: [0x8068ED70, 0x8068EDB0]
-ac_t_keitai.c:
- .text: [0x804A8FEC, 0x804A9348]
- .data: [0x8068EDB0, 0x8068EE58]
- .rodata: [0x80645ED0, 0x80645EE0]
-ac_t_npc_sao.c:
- .text: [0x804A9348, 0x804A95F4]
- .rodata: [0x80645EE0, 0x80645EF8]
- .data: [0x8068EE58, 0x8068EE98]
-ac_t_pistol.c:
- .text: [0x804A95F4, 0x804A9858]
- .rodata: [0x80645EF8, 0x80645F00]
- .data: [0x8068EE98, 0x8068EEF8]
-ac_t_rei1.c:
- .text: [0x804A9858, 0x804A99AC]
- .data: [0x8068EEF8, 0x8068EF38]
-ac_t_rei2.c:
- .text: [0x804A99AC, 0x804A9B00]
- .data: [0x8068EF38, 0x8068EF78]
-ac_t_tama.c:
- .text: [0x804A9B00, 0x804A9CC4]
- .data: [0x8068EF78, 0x8068EFE0]
- .rodata: [0x80645F00, 0x80645F10]
-ac_t_tumbler.c:
- .text: [0x804A9CC4, 0x804A9F24]
- .rodata: [0x80645F10, 0x80645F18]
- .data: [0x8068EFE0, 0x8068F040]
-ac_t_umbrella.c:
- .text: [0x804A9F24, 0x804AA4C8]
- .data: [0x8068F040, 0x8068F310]
- .rodata: [0x80645F18, 0x80645F30]
-ac_t_utiwa.c:
- .text: [0x804AA4C8, 0x804AA72C]
- .data: [0x8068F310, 0x8068F370]
- .rodata: [0x80645F30, 0x80645F38]
-ac_t_zinnia1.c:
- .text: [0x804AA72C, 0x804AA880]
- .data: [0x8068F370, 0x8068F3B0]
-ac_t_zinnia2.c:
- .text: [0x804AA880, 0x804AA9D4]
- .data: [0x8068F3B0, 0x8068F3F0]
-ac_tools.c:
- .text: [0x804AC034, 0x804AC2D8]
- .rodata: [0x80645F90, 0x80645F98]
- .data: [0x8068F510, 0x8068F5C0]
- .bss: [0x812FD498, 0x812FD4A8]
-ac_train_door.c:
- .text: [0x804AC2D8, 0x804AC510]
- .rodata: [0x80645F98, 0x80645FA8]
- .data: [0x8068F5C0, 0x8068F600]
-ac_train_window.c:
- .text: [0x804AC510, 0x804AD428]
- .rodata: [0x80645FA8, 0x80645FF8]
- .data: [0x8068F600, 0x8068F830]
-ac_uki.c:
- .text: [0x804AD644, 0x804AFC14]
- .rodata: [0x80646010, 0x806460D8]
- .data: [0x8068F858, 0x8068FC68]
-bg_cherry_item.c:
- .text: [0x804AFC14, 0x804B6FB4]
- .rodata: [0x806460D8, 0x80646178]
- .data: [0x8068FC68, 0x80692BE0]
- .bss: [0x812FD4A8, 0x812FD938]
-bg_item.c:
- .text: [0x804B6FB4, 0x804BE338]
- .rodata: [0x80646178, 0x80646218]
- .data: [0x80692BE0, 0x80695B38]
- .bss: [0x812FD938, 0x812FDDC8]
-bg_police_item.c:
- .text: [0x804BE338, 0x804BE890]
- .rodata: [0x80646218, 0x80646220]
- .data: [0x80695B38, 0x80695D60]
- .bss: [0x812FDDC8, 0x812FDDE8]
-bg_post_item.c:
- .text: [0x804BE890, 0x804BE9FC]
- .rodata: [0x80646220, 0x80646228]
- .data: [0x80695D60, 0x80695D98]
-bg_winter_item.c:
- .text: [0x804BE9FC, 0x804C5E30]
- .rodata: [0x80646228, 0x806462C8]
- .data: [0x80695D98, 0x80698D10]
- .bss: [0x812FDDE8, 0x812FE278]
-bg_xmas_item.c:
- .text: [0x804C5E30, 0x804CD474]
- .rodata: [0x806462C8, 0x80646368]
- .data: [0x80698D10, 0x8069BD10]
- .bss: [0x812FE278, 0x812FE708]
-ef_effect_control.c:
- .text: [0x804CD474, 0x804CEC5C]
- .rodata: [0x80646368, 0x806463C8]
- .data: [0x8069BD10, 0x8069BFD0]
- .bss: [0x812FE708, 0x81300BD0]
-ef_lamp_light.c:
- .text: [0x804CEC5C, 0x804CEF2C]
- .rodata: [0x806463C8, 0x806463D8]
- .data: [0x8069BFD0, 0x8069C028]
-ef_room_sunshine.c:
- .text: [0x804CEF2C, 0x804CF784]
- .rodata: [0x806463D8, 0x80646420]
- .data: [0x8069C028, 0x8069C050]
-ef_room_sunshine_police.c:
- .text: [0x804CF784, 0x804CFF8C]
- .rodata: [0x80646420, 0x80646470]
- .data: [0x8069C050, 0x8069C078]
-ef_room_sunshine_posthouse.c:
- .text: [0x804CFF8C, 0x804D0704]
- .rodata: [0x80646470, 0x806464B8]
- .data: [0x8069C078, 0x8069C0A0]
-ef_room_sunshine_museum.c:
- .text: [0x804D0704, 0x804D0F3C]
- .rodata: [0x806464B8, 0x80646508]
- .data: [0x8069C0A0, 0x8069C0C8]
-ef_room_sunshine_minsect.c:
- .text: [0x804D0F3C, 0x804D1BBC]
- .rodata: [0x80646508, 0x80646558]
- .data: [0x8069C0C8, 0x8069C0F0]
- .bss: [0x81300BD0, 0x81300BD8]
-m_huusui_room_ovl.c:
- .text: [0x804D1BBC, 0x804D2164]
- .rodata: [0x80646558, 0x806465C8]
- .data: [0x8069C0F0, 0x8069CAF0]
-m_mark_room_ovl.c:
- .text: [0x804D2164, 0x804D3B24]
- .rodata: [0x806465C8, 0x806465D0]
- .data: [0x8069CAF0, 0x8069E580]
- .bss: [0x81300BD8, 0x813010D0]
-m_player.c:
- .text: [0x804D3B24, 0x80508E58]
- .rodata: [0x806465D0, 0x80648ED0]
- .data: [0x8069E580, 0x8069E918]
-m_random_field_ovl.c:
- .text: [0x80508E58, 0x8050B3D0]
- .rodata: [0x80648ED0, 0x80648ED8]
- .data: [0x8069E918, 0x8069F070]
- .bss: [0x813010D0, 0x813013E0]
-ev_cherry_manager.c:
- .text: [0x8050B3D0, 0x8050B404]
- .data: [0x8069F070, 0x8069F098]
-ac_fuusen.c:
- .text: [0x8050DAC4, 0x8050F06C]
- .rodata: [0x80648FE8, 0x80649098]
- .data: [0x8069F190, 0x8069F320]
-m_mail_check_ovl.c:
- .text: [0x8050F06C, 0x8050F838]
- .data: [0x8069F320, 0x8069FA40]
-ac_dummy.c:
- .text: [0x8050F838, 0x8050F848]
- .data: [0x8069FA40, 0x8069FA68]
-m_all_grow_ovl.c:
- .text: [0x8050F848, 0x80515340]
- .rodata: [0x80649098, 0x80649110]
- .data: [0x8069FA68, 0x8069FD08]
- .bss: [0x813013E0, 0x81301820]
-ac_aprilfool_control.c:
- .text: [0x80515340, 0x805155C8]
- .data: [0x8069FD08, 0x8069FD88]
-ac_groundhog_control.c:
- .text: [0x805155C8, 0x80515C48]
- .data: [0x8069FD88, 0x8069FDD0]
-ac_ev_broker.c:
- .text: [0x80519D4C, 0x8051A880]
- .rodata: [0x80649160, 0x80649178]
- .data: [0x806A0128, 0x806A01B0]
-ac_ev_castaway.c:
- .text: [0x8051CAC4, 0x8051CDCC]
- .rodata: [0x806491B0, 0x806491B8]
- .data: [0x806A03A0, 0x806A03F8]
-ac_ev_dokutu.c:
- .text: [0x8051DFF4, 0x8051E228]
- .data: [0x806A05C8, 0x806A0608]
-ac_ev_ghost.c:
- .text: [0x8051F10C, 0x80520D78]
- .rodata: [0x806491E8, 0x80649228]
- .data: [0x806A06A0, 0x806A0938]
- .bss: [0x81301820, 0x81301830]
-ac_ev_gypsy.c:
- .text: [0x80520D78, 0x80521414]
- .rodata: [0x80649228, 0x80649238]
- .data: [0x806A0938, 0x806A09F8]
-ac_ev_kabuPeddler.c:
- .text: [0x80521414, 0x80521D34]
- .data: [0x806A09F8, 0x806A0AD8]
-ac_ev_santa.c:
- .text: [0x80523498, 0x8052400C]
- .rodata: [0x80649268, 0x80649270]
- .data: [0x806A0BE0, 0x806A0D38]
-ac_ev_soncho.c:
- .text: [0x8052400C, 0x8052475C]
- .rodata: [0x80649270, 0x80649278]
- .data: [0x806A0D38, 0x806A0D88]
-ac_go_home_npc.c:
- .text: [0x80526F48, 0x805272D8]
- .rodata: [0x806492B8, 0x806492C0]
- .data: [0x806A0FB8, 0x806A0FF8]
-ac_npc_curator.c:
- .text: [0x8054B06C, 0x8054CF28]
- .rodata: [0x806495B0, 0x806495B8]
- .data: [0x806A4FB0, 0x806A5530]
-ac_npc_engineer.c:
- .text: [0x80552984, 0x80552B5C]
- .data: [0x806A61C8, 0x806A6208]
-ac_npc_guide.c:
- .text: [0x80552B5C, 0x80554B00]
- .rodata: [0x80649620, 0x806496A0]
- .data: [0x806A6208, 0x806A6508]
-ac_npc_guide2.c:
- .text: [0x80554B00, 0x80556714]
- .rodata: [0x806496A0, 0x80649720]
- .data: [0x806A6508, 0x806A67E0]
-ac_npc_p_sel.c:
- .text: [0x805662C0, 0x80567000]
- .rodata: [0x806498C0, 0x806498F8]
- .data: [0x806BE3F0, 0x806BE480]
-ac_npc_rcn_guide.c:
- .text: [0x8056EED0, 0x8056FFF0]
- .rodata: [0x806499C0, 0x806499E8]
- .data: [0x806BEE20, 0x806BF028]
-ac_npc_rcn_guide2.c:
- .text: [0x8056FFF0, 0x80572050]
- .rodata: [0x806499E8, 0x806499F0]
- .data: [0x806BF028, 0x806BF4F8]
-ac_npc_rtc.c:
- .text: [0x80573044, 0x80574134]
- .rodata: [0x80649A08, 0x80649A40]
- .data: [0x806BF648, 0x806BF788]
-ac_npc_sendo.c:
- .text: [0x80574134, 0x80576468]
- .rodata: [0x80649A40, 0x80649A58]
- .data: [0x806BF788, 0x806BFA80]
- .bss: [0x8131B258, 0x8131B298]
-ac_ev_majin.c:
- .text: [0x80592A40, 0x80593158]
- .rodata: [0x80649D98, 0x80649DA0]
- .data: [0x806C2B50, 0x806C2BD0]
-ac_insect.c:
- .text: [0x80594344, 0x80595C74]
- .rodata: [0x80649E00, 0x80649E70]
- .data: [0x806C2C80, 0x806C3200]
- .bss: [0x8131B2C8, 0x81320738]
-ac_ins_amenbo.c:
- .text: [0x80595C74, 0x80596388]
- .rodata: [0x80649E70, 0x80649EC8]
- .data: [0x806C3200, 0x806C3230]
-ac_ins_batta.c:
- .text: [0x80596388, 0x80597708]
- .rodata: [0x80649EC8, 0x80649F60]
- .data: [0x806C3230, 0x806C32B8]
-ac_ins_dango.c:
- .text: [0x80597708, 0x805983F8]
- .rodata: [0x80649F60, 0x80649FA8]
- .data: [0x806C32B8, 0x806C3308]
-ac_ins_chou.c:
- .text: [0x805983F8, 0x80599A2C]
- .rodata: [0x80649FA8, 0x8064A028]
- .data: [0x806C3308, 0x806C33C8]
-ac_ins_goki.c:
- .text: [0x80599A2C, 0x8059A8E8]
- .rodata: [0x8064A028, 0x8064A090]
- .data: [0x806C33C8, 0x806C3460]
-ac_ins_hitodama.c:
- .text: [0x8059A8E8, 0x8059B354]
- .rodata: [0x8064A090, 0x8064A108]
- .data: [0x806C3460, 0x806C34B0]
-ac_ins_ka.c:
- .text: [0x8059C174, 0x8059C9EC]
- .rodata: [0x8064A1A8, 0x8064A1F0]
- .data: [0x806C3550, 0x806C3580]
-ac_ins_kabuto.c:
- .text: [0x8059C9EC, 0x8059D1F4]
- .rodata: [0x8064A1F0, 0x8064A228]
- .data: [0x806C3580, 0x806C35E0]
-ac_boat.c:
- .text: [0x805A6CF4, 0x805A856C]
- .rodata: [0x8064A5B0, 0x8064A630]
- .data: [0x806C4440, 0x806C4560]
-ac_br_shop.c:
- .text: [0x805A856C, 0x805A9474]
- .rodata: [0x8064A630, 0x8064A660]
- .data: [0x806C4560, 0x806C4688]
-ac_bridge_a.c:
- .text: [0x805A9474, 0x805A9CA0]
- .rodata: [0x8064A660, 0x8064A6D0]
- .data: [0x806C4688, 0x806C4730]
-ac_buggy.c:
- .text: [0x805A9CA0, 0x805AAB3C]
- .rodata: [0x8064A6D0, 0x8064A708]
- .data: [0x806C4730, 0x806C4858]
-ac_douzou.c:
- .text: [0x805AD6D8, 0x805AE704]
- .rodata: [0x8064A7C0, 0x8064A7E8]
- .data: [0x806C4DF0, 0x806C5018]
-ac_dump.c:
- .text: [0x805AE704, 0x805AECE8]
- .rodata: [0x8064A7E8, 0x8064A808]
- .data: [0x806C5018, 0x806C5120]
-ac_fallS.c:
- .text: [0x805AECE8, 0x805AEF84]
- .rodata: [0x8064A808, 0x8064A830]
- .data: [0x806C5120, 0x806C5148]
-ac_fallSESW.c:
- .text: [0x805AEF84, 0x805AF278]
- .rodata: [0x8064A830, 0x8064A858]
- .data: [0x806C5148, 0x806C51B0]
-ac_goza.c:
- .text: [0x805AF4C4, 0x805AF924]
- .rodata: [0x8064A868, 0x8064A878]
- .data: [0x806C5200, 0x806C5340]
-ac_kago.c:
- .text: [0x805B1A08, 0x805B1D50]
- .data: [0x806C5750, 0x806C57A8]
-ac_kamakura.c:
- .text: [0x805B1D50, 0x805B27B8]
- .rodata: [0x8064A948, 0x8064A978]
- .data: [0x806C57A8, 0x806C58A0]
-ac_koinobori.c:
- .text: [0x805B27B8, 0x805B2AE0]
- .data: [0x806C58A0, 0x806C5940]
- .rodata: [0x8064A978, 0x8064A990]
-ac_lotus.c:
- .text: [0x805B2AE0, 0x805B3010]
- .rodata: [0x8064A990, 0x8064A9B0]
- .data: [0x806C5940, 0x806C5B58]
- .bss: [0x81327F48, 0x81327F68]
-ac_mikuji.c:
- .text: [0x805B414C, 0x805B44C4]
- .data: [0x806C5C10, 0x806C5CA0]
-ac_museum.c:
- .text: [0x805B44C4, 0x805B4CF4]
- .rodata: [0x8064AA00, 0x8064AA50]
- .data: [0x806C5CA0, 0x806C5DC0]
-ac_my_house.c:
- .text: [0x805B4CF4, 0x805B63FC]
- .rodata: [0x8064AA50, 0x8064AAA0]
- .data: [0x806C5DC0, 0x806C6110]
- .bss: [0x813280B0, 0x813280C0]
-ac_nameplate.c:
- .text: [0x805B63FC, 0x805B65C4]
- .data: [0x806C6110, 0x806C6138]
-ac_needlework_shop.c:
- .text: [0x805B65C4, 0x805B7338]
- .rodata: [0x8064AAA0, 0x8064AAE8]
- .data: [0x806C6138, 0x806C62D0]
-ac_police_box.c:
- .text: [0x805B7338, 0x805B7B0C]
- .rodata: [0x8064AAE8, 0x8064AB18]
- .data: [0x806C62D0, 0x806C63C0]
-ac_post_office.c:
- .text: [0x805B7B0C, 0x805B887C]
- .rodata: [0x8064AB18, 0x8064AB58]
- .data: [0x806C63C0, 0x806C6558]
-ac_radio.c:
- .text: [0x805B887C, 0x805B8C7C]
- .rodata: [0x8064AB58, 0x8064AB68]
- .data: [0x806C6558, 0x806C65A0]
-ac_reserve.c:
- .text: [0x805B8C7C, 0x805B9098]
- .data: [0x806C65A0, 0x806C6608]
-ac_s_car.c:
- .text: [0x805B9098, 0x805B9644]
- .rodata: [0x8064AB68, 0x8064AB88]
- .data: [0x806C6608, 0x806C66D0]
-ac_shop.c:
- .text: [0x805B9644, 0x805BA4D8]
- .rodata: [0x8064AB88, 0x8064ABD0]
- .data: [0x806C66D0, 0x806C6838]
-ac_shrine.c:
- .text: [0x805BA4D8, 0x805BB8D0]
- .rodata: [0x8064ABD0, 0x8064AC18]
- .data: [0x806C6838, 0x806C6930]
- .bss: [0x813280C0, 0x813280E8]
-ac_structure.c:
- .text: [0x805BCA00, 0x805BD06C]
- .rodata: [0x8064AC30, 0x8064AC38]
- .data: [0x806C6C00, 0x806C6ED0]
- .bss: [0x813280F0, 0x8133DEB0]
-ac_tama.c:
- .text: [0x805BDDF4, 0x805BE06C]
- .rodata: [0x8064AC78, 0x8064AC80]
- .data: [0x806C7110, 0x806C7140]
-ac_tent.c:
- .text: [0x805BE06C, 0x805BEA00]
- .rodata: [0x8064AC80, 0x8064ACB0]
- .data: [0x806C7140, 0x806C7200]
-ac_toudai.c:
- .text: [0x805BEA00, 0x805BFC28]
- .rodata: [0x8064ACB0, 0x8064AD28]
- .data: [0x806C7200, 0x806C72D0]
-ac_train0.c:
- .text: [0x805BFC28, 0x805C0614]
- .rodata: [0x8064AD28, 0x8064AD80]
- .data: [0x806C72D0, 0x806C7300]
-ac_train1.c:
- .text: [0x805C0614, 0x805C0CC8]
- .rodata: [0x8064AD80, 0x8064ADB0]
- .data: [0x806C7300, 0x806C7388]
-ac_tukimi.c:
- .text: [0x805C0CC8, 0x805C11A8]
- .rodata: [0x8064ADB0, 0x8064ADC0]
- .data: [0x806C7388, 0x806C7400]
-ac_windmill.c:
- .text: [0x805C1AB8, 0x805C1D34]
- .data: [0x806C75D0, 0x806C76B8]
-ac_yatai.c:
- .text: [0x805C1D34, 0x805C217C]
- .rodata: [0x8064ADC0, 0x8064ADC8]
- .data: [0x806C76B8, 0x806C77E0]
-m_bank_ovl.c:
- .text: [0x805C38E4, 0x805C4714]
- .rodata: [0x8064AE58, 0x8064AE90]
- .data: [0x806C7B90, 0x806C7BE0]
- .bss: [0x8133E0A8, 0x8133E0C0]
-m_birthday_ovl.c:
- .text: [0x805C4714, 0x805C4E94]
- .rodata: [0x8064AE90, 0x8064AEB8]
- .data: [0x806C7BE0, 0x806C7C60]
- .bss: [0x8133E0C0, 0x8133E0C8]
-m_board_ovl.c:
- .text: [0x805C4E94, 0x805C67DC]
- .rodata: [0x8064AEB8, 0x8064AF28]
- .data: [0x806C7C60, 0x806C8880]
- .bss: [0x8133E0C8, 0x8133E210]
-m_catalog_ovl.c:
- .text: [0x805C9254, 0x805CC1F4]
- .rodata: [0x8064AF90, 0x8064B090]
- .data: [0x806C8AB0, 0x806CB838]
-m_cpedit_ovl.c:
- .text: [0x805CC1F4, 0x805CC3E8]
- .data: [0x806CB838, 0x806CB850]
- .bss: [0x8133E210, 0x8133E218]
-m_cpwarning_ovl.c:
- .text: [0x805CEC68, 0x805CF458]
- .rodata: [0x8064B130, 0x8064B198]
- .data: [0x806CBA18, 0x806CBA70]
- .bss: [0x8133EE78, 0x8133EE88]
-m_editEndChk_ovl.c:
- .text: [0x805D7A64, 0x805D8498]
- .rodata: [0x8064B2C0, 0x8064B300]
- .data: [0x806CC8B8, 0x806CC9D8]
- .bss: [0x8133F5C0, 0x8133F5C8]
-m_editor_ovl.c:
- .text: [0x805D8498, 0x805DC3CC]
- .rodata: [0x8064B300, 0x8064B368]
- .data: [0x806CC9D8, 0x806CD068]
- .bss: [0x8133F5C8, 0x8133F600]
-m_gba_ovl.c:
- .text: [0x805DC3CC, 0x805DD104]
- .rodata: [0x8064B368, 0x8064B388]
- .data: [0x806CD068, 0x806CD0A0]
- .bss: [0x8133F600, 0x8133F608]
-m_hand_ovl.c:
- .text: [0x805DD104, 0x805DFA00]
- .rodata: [0x8064B388, 0x8064B418]
- .data: [0x806CD0A0, 0x806CD260]
- .bss: [0x8133F608, 0x8133F980]
-m_haniwaPortrait_ovl.c:
- .text: [0x805DFA00, 0x805DFE48]
- .rodata: [0x8064B418, 0x8064B448]
- .bss: [0x8133F980, 0x8133FAA0]
-m_hboard_ovl.c:
- .text: [0x805E0AC8, 0x805E1398]
- .rodata: [0x8064B480, 0x8064B4B8]
- .data: [0x806CD3B0, 0x806CD3C8]
-m_inventory_ovl.c:
- .text: [0x805E1398, 0x805E4DFC]
- .rodata: [0x8064B4B8, 0x8064B5C8]
- .data: [0x806CD3C8, 0x806CD7B8]
- .bss: [0x8133FAE0, 0x813400D0]
-m_map_ovl.c:
- .text: [0x805E5EFC, 0x805E7A54]
- .rodata: [0x8064B628, 0x8064B6B0]
- .data: [0x806CD9C0, 0x806CE008]
- .bss: [0x81340468, 0x81340488]
-m_mscore_ovl.c:
- .text: [0x805E7A54, 0x805E8CF8]
- .rodata: [0x8064B6B0, 0x8064B738]
- .data: [0x806CE008, 0x806CE338]
- .bss: [0x81340488, 0x813404B0]
-m_needlework_ovl.c:
- .text: [0x805E9768, 0x805EAAC0]
- .rodata: [0x8064B778, 0x8064B7A8]
- .data: [0x806CE350, 0x806CE3C8]
-m_notice_ovl.c:
- .text: [0x805EAAC0, 0x805EC550]
- .rodata: [0x8064B7A8, 0x8064B830]
- .data: [0x806CE3C8, 0x806CE4E0]
- .bss: [0x813404D0, 0x813405A8]
-m_repay_ovl.c:
- .text: [0x805EC550, 0x805ED0FC]
- .rodata: [0x8064B830, 0x8064B870]
- .data: [0x806CE4E0, 0x806CE550]
- .bss: [0x813405A8, 0x813405C0]
-m_submenu_ovl.c:
- .text: [0x805ED0FC, 0x805EF6CC]
- .rodata: [0x8064B870, 0x8064B900]
- .data: [0x806CE550, 0x806CF928]
- .bss: [0x813405C0, 0x81340FC8]
-m_tag_ovl.c:
- .text: [0x805EF6CC, 0x805FF3C4]
- .rodata: [0x8064B900, 0x8064BA00]
- .data: [0x806CF928, 0x806D1320]
- .bss: [0x81340FC8, 0x81341390]
-m_timeIn_ovl.c:
- .text: [0x805FF3C4, 0x80600370]
- .rodata: [0x8064BA00, 0x8064BA58]
- .data: [0x806D1320, 0x806D13E8]
- .bss: [0x81341390, 0x813413B0]
-m_warning_ovl.c:
- .text: [0x80600370, 0x80600B00]
- .rodata: [0x8064BA58, 0x8064BA78]
- .data: [0x806D13E8, 0x806D1CD0]
- .bss: [0x813413B0, 0x813413B8]
-m_passwordMake_ovl.c:
- .text: [0x80600B00, 0x80601290]
- .rodata: [0x8064BA78, 0x8064BAB0]
- .data: [0x806D1CD0, 0x806D1D18]
- .bss: [0x813413B8, 0x813413D0]
-m_passwordChk_ovl.c:
- .text: [0x80601290, 0x8060193C]
- .rodata: [0x8064BAB0, 0x8064BAE8]
- .data: [0x806D1D18, 0x806D1D50]
- .bss: [0x813413D0, 0x813413F8]
-ac_weather.c:
- .text: [0x8060193C, 0x80602E70]
- .rodata: [0x8064BAE8, 0x8064BB08]
- .data: [0x806D1D50, 0x806D1DA0]
-ac_weather_rain.c:
- .text: [0x80602E70, 0x80603494]
- .rodata: [0x8064BB08, 0x8064BB30]
- .data: [0x806D1DB8, 0x806D1DF8]
-ac_weather_snow.c:
- .text: [0x80603494, 0x80603B44]
- .rodata: [0x8064BB30, 0x8064BB88]
- .data: [0x806D1DF8, 0x806D1E10]
-ac_weather_sakura.c:
- .text: [0x80603B44, 0x8060420C]
- .rodata: [0x8064BB88, 0x8064BBE8]
- .data: [0x806D1E10, 0x806D1E28]
-ac_weather_leaf.c:
- .text: [0x8060420C, 0x806048B8]
- .rodata: [0x8064BBE8, 0x8064BC40]
- .data: [0x806D1E28, 0x806D1E48]
-ef_ami_mizu.c:
- .text: [0x806048B8, 0x80604C9C]
- .rodata: [0x8064BC40, 0x8064BC78]
- .data: [0x806D1E48, 0x806D1E60]
-ef_anahikari.c:
- .text: [0x80604C9C, 0x80604F78]
- .rodata: [0x8064BC78, 0x8064BC90]
- .data: [0x806D1E60, 0x806D1E88]
-ef_ase.c:
- .text: [0x80604F78, 0x806050E4]
- .rodata: [0x8064BC90, 0x8064BC98]
- .data: [0x806D1E88, 0x806D1EA0]
-ef_ase2.c:
- .text: [0x806050E4, 0x806052A8]
- .rodata: [0x8064BC98, 0x8064BCA8]
- .data: [0x806D1EA0, 0x806D1EC8]
-ef_ase_ch.c:
- .text: [0x806052A8, 0x806054F0]
- .rodata: [0x8064BCA8, 0x8064BCC0]
- .data: [0x806D1EC8, 0x806D1F08]
-ef_break_axe.c:
- .text: [0x806054F0, 0x8060672C]
- .rodata: [0x8064BCC0, 0x8064BD60]
- .data: [0x806D1F08, 0x806D1F20]
-ef_bubu.c:
- .text: [0x8060672C, 0x80606878]
- .rodata: [0x8064BD60, 0x8064BD68]
- .data: [0x806D1F20, 0x806D1F38]
-ef_buruburu.c:
- .text: [0x80606878, 0x80606A68]
- .rodata: [0x8064BD68, 0x8064BD78]
- .data: [0x806D1F38, 0x806D1F68]
-ef_bush_happa.c:
- .text: [0x80606A68, 0x806072DC]
- .rodata: [0x8064BD78, 0x8064BDD8]
- .data: [0x806D1F68, 0x806D1F80]
-ef_bush_yuki.c:
- .text: [0x806072DC, 0x806075BC]
- .rodata: [0x8064BDD8, 0x8064BE00]
- .data: [0x806D1F80, 0x806D1F98]
-ef_car_blight.c:
- .text: [0x806075BC, 0x806079CC]
- .rodata: [0x8064BE00, 0x8064BE18]
- .data: [0x806D1F98, 0x806D2070]
-ef_car_light.c:
- .text: [0x806079CC, 0x80607B9C]
- .rodata: [0x8064BE18, 0x8064BE20]
- .data: [0x806D2070, 0x806D2088]
-ef_clacker.c:
- .text: [0x80607B9C, 0x80608060]
- .rodata: [0x8064BE20, 0x8064BE48]
- .data: [0x806D2088, 0x806D20C0]
-ef_coin.c:
- .text: [0x80608060, 0x806087EC]
- .rodata: [0x8064BE48, 0x8064BEA0]
- .data: [0x806D20C0, 0x806D2128]
-ef_dash_asimoto.c:
- .text: [0x806087EC, 0x80609030]
- .rodata: [0x8064BEA0, 0x8064BEB8]
- .data: [0x806D2128, 0x806D21B0]
-ef_dig_hole.c:
- .text: [0x80609030, 0x80609910]
- .rodata: [0x8064BEB8, 0x8064BF20]
- .data: [0x806D21B0, 0x806D2220]
-ef_dig_mud.c:
- .text: [0x80609910, 0x80609F6C]
- .rodata: [0x8064BF20, 0x8064BF70]
- .data: [0x806D2220, 0x806D2268]
-ef_dig_scoop.c:
- .text: [0x80609F6C, 0x8060A808]
- .rodata: [0x8064BF70, 0x8064BF90]
- .data: [0x806D2268, 0x806D2280]
-ef_douzou_light.c:
- .text: [0x8060A808, 0x8060AAD4]
- .rodata: [0x8064BF90, 0x8064BFA8]
- .data: [0x806D2280, 0x806D2298]
-ef_doyon.c:
- .text: [0x8060AAD4, 0x8060B068]
- .rodata: [0x8064BFA8, 0x8064C000]
- .data: [0x806D2298, 0x806D22B0]
-ef_flash.c:
- .text: [0x8060B7B4, 0x8060BCB0]
- .rodata: [0x8064C078, 0x8064C0B0]
- .data: [0x806D2350, 0x806D2430]
-ef_footprint.c:
- .text: [0x8060BCB0, 0x8060C21C]
- .rodata: [0x8064C0B0, 0x8064C0E0]
- .data: [0x806D2430, 0x806D2470]
-ef_halloween.c:
- .text: [0x8060D44C, 0x8060D654]
- .rodata: [0x8064C1C0, 0x8064C1D0]
- .data: [0x806D2600, 0x806D2618]
-ef_halloween_smoke.c:
- .text: [0x8060D654, 0x8060D8D8]
- .rodata: [0x8064C1D0, 0x8064C1E0]
- .data: [0x806D2618, 0x806D2660]
-ef_hanabi_dummy.c:
- .text: [0x8060E6D8, 0x8060E9B8]
- .rodata: [0x8064C2A0, 0x8064C2C0]
- .data: [0x806D2858, 0x806D2888]
-ef_hanatiri.c:
- .text: [0x80610478, 0x8061061C]
- .data: [0x806D2C08, 0x806D2C20]
-ef_kasamizu.c:
- .text: [0x806127BC, 0x80612960]
- .data: [0x806D2DE0, 0x806D2E08]
-ef_killer.c:
- .text: [0x80614178, 0x8061481C]
- .rodata: [0x8064C680, 0x8064C6C0]
- .data: [0x806D2EC0, 0x806D2F90]
-ef_make_hem.c:
- .text: [0x806162B0, 0x8061710C]
- .rodata: [0x8064C818, 0x8064C860]
- .data: [0x806D3160, 0x806D31B8]
-ef_otosiana.c:
- .text: [0x8061A4E0, 0x8061A650]
- .data: [0x806D33B8, 0x806D33D8]
-ef_pun.c:
- .text: [0x8061A650, 0x8061A824]
- .rodata: [0x8064CAB8, 0x8064CAC0]
- .data: [0x806D33D8, 0x806D33F0]
-ef_pun_sekimen.c:
- .text: [0x8061A824, 0x8061AA20]
- .rodata: [0x8064CAC0, 0x8064CAD8]
- .data: [0x806D33F0, 0x806D3408]
-ef_pun_yuge.c:
- .text: [0x8061AA20, 0x8061AE9C]
- .rodata: [0x8064CAD8, 0x8064CB08]
- .data: [0x806D3408, 0x806D3478]
-ef_tent_lamp.c:
- .text: [0x80622304, 0x8062260C]
- .rodata: [0x8064CF10, 0x8064CF38]
- .data: [0x806D3910, 0x806D3928]
-ef_yukidama.c:
- .text: [0x806272EC, 0x80627914]
- .rodata: [0x8064D150, 0x8064D180]
- .data: [0x806D3C08, 0x806D3CA8]
-ef_yukidaruma.c:
- .text: [0x80627914, 0x80627CB8]
- .rodata: [0x8064D180, 0x8064D190]
- .data: [0x806D3CA8, 0x806D3CD0]
-ef_yukihane.c:
- .text: [0x80627CB8, 0x80627F88]
- .rodata: [0x8064D190, 0x8064D1B0]
- .data: [0x806D3CD0, 0x806D3D08]
-m_select.c:
- .text: [0x80627F88, 0x80629CA8]
- .rodata: [0x8064D1B0, 0x8064D1B8]
- .data: [0x806D3D08, 0x806D46D0]
-first_game.c:
- .text: [0x80629CA8, 0x80629D4C]
-sys_romcheck.c:
- .text: [0x80629D4C, 0x80629D8C]
-m_play.c:
- .text: [0x80629D8C, 0x8062B630]
- .rodata: [0x8064D1B8, 0x8064D1C0]
- .data: [0x806D46D0, 0x806D4958]
- .bss: [0x81361820, 0x8148DA60]
-second_game.c:
- .text: [0x8062B630, 0x8062B848]
- .bss: [0x8148DA60, 0x8148DA68]
-m_trademark.c:
- .text: [0x8062B848, 0x8062C048]
- .rodata: [0x8064D1C0, 0x8064D1C8]
- .data: [0x806D4958, 0x806D4B18]
-player_select.c:
- .text: [0x8062C048, 0x8062CA5C]
- .rodata: [0x8064D1C8, 0x8064D1F8]
- .data: [0x806D4B18, 0x806D4B80]
-save_menu.c:
- .text: [0x8062CA5C, 0x8062D39C]
- .rodata: [0x8064D1F8, 0x8064D318]
- .data: [0x806D4B80, 0x806D4B98]
-famicom_emu.c:
- .text: [0x8062D39C, 0x8062D8FC]
- .data: [0x806D4B98, 0x806D4CB0]
- .bss: [0x8148DA68, 0x8148DA78]
-m_prenmi.c:
- .text: [0x8062D8FC, 0x8062DC04]
- .rodata: [0x8064D318, 0x8064D340]
-audio.c:
- .text: [0x8062DC04, 0x8062E96C]
- .rodata: [0x8064D340, 0x8064D360]
- .data: [0x806D4CB0, 0x806D4D40]
- .bss: [0x8148DA78, 0x8148DA7C]
-f_furniture.c:
- .text: [0x8062E96C, 0x80641254]
- .rodata: [0x8064D360, 0x8064D4D0]
- .data: [0x806D4D40, 0x806E02A0]
-ac_weather_fine.c:
- .data: [0x806D1DA0, 0x806D1DB8]
-# dataobject.obj NPC draw data TUs
-data/npc/model/mdl/bev_1.c:
- .data: [0x806E03A0, 0x806E27D0]
-data/npc/model/tex/bev_1.c:
- .data: [0x806E27E0, 0x806E3500]
-data/npc/model/mdl/ant_1.c:
- .data: [0x806E3838, 0x806E5910]
-data/npc/model/tex/ant_1.c:
- .data: [0x806E5920, 0x806E6640]
-data/npc/model/tex/ant_2.c:
- .data: [0x806E6640, 0x806E7360]
-data/npc/model/tex/ant_3.c:
- .data: [0x806E7360, 0x806E8080]
-data/npc/model/tex/ant_4.c:
- .data: [0x806E8080, 0x806E8DA0]
-data/npc/model/tex/ant_5.c:
- .data: [0x806E8DA0, 0x806E9AC0]
-data/npc/model/mdl/wls_1.c:
- .data: [0x806E9AC0, 0x806EBFF0]
-data/npc/model/tex/wls_1.c:
- .data: [0x806EC000, 0x806ECFA0]
-data/scene/BG_TEST01.c:
- .data: [0x806ECFA0, 0x806ECFF0]
-data/scene/BG_TEST01_XLU.c:
- .data: [0x806ECFF0, 0x806ED040]
-data/scene/broker_shop.c:
- .data: [0x806ED040, 0x806ED0C0]
-data/scene/buggy.c:
- .data: [0x806ED0C0, 0x806ED128]
-data/npc/model/mdl/bea_1.c:
- .data: [0x806EF078, 0x806F1030]
-data/npc/model/tex/bea_1.c:
- .data: [0x806F1040, 0x806F2260]
-data/npc/model/tex/bea_2.c:
- .data: [0x806F2260, 0x806F3480]
-data/npc/model/tex/bea_3.c:
- .data: [0x806F3480, 0x806F46A0]
-data/npc/model/tex/bea_5.c:
- .data: [0x806F46A0, 0x806F58C0]
-data/npc/model/tex/bea_6.c:
- .data: [0x806F58C0, 0x806F6AE0]
-data/npc/model/tex/bea_7.c:
- .data: [0x806F6AE0, 0x806F7D00]
-data/npc/model/tex/bea_8.c:
- .data: [0x806F7D00, 0x806F8F20]
-data/npc/model/tex/bea_9.c:
- .data: [0x806F8F20, 0x806FA140]
-data/npc/model/tex/bea_10.c:
- .data: [0x806FA140, 0x806FB360]
-data/field/bg/acre/bg_data.c:
- .data: [0x806FE048, 0x8074B840]
-# dataobject.obj files
-data/field/bg/flower/obj_flower.c:
- .data: [0x8074FE80, 0x807508C0]
-data/field/bg/flower/obj_flower_leaf.c:
- .data: [0x807508C0, 0x80751140]
-data/npc/model/mdl/pbr_1.c:
- .data: [0x8076DFA8, 0x80770178]
-data/npc/model/tex/pbr_1.c:
- .data: [0x80770180, 0x80770EA0]
-data/npc/model/tex/pbr_2.c:
- .data: [0x80770EA0, 0x80771BC0]
-data/npc/model/tex/pbr_3.c:
- .data: [0x80771BC0, 0x807728E0]
-data/npc/model/tex/pbr_4.c:
- .data: [0x807728E0, 0x80773600]
-data/npc/model/tex/pbr_5.c:
- .data: [0x80773600, 0x80774320]
-data/npc/model/mdl/brd_1.c:
- .data: [0x80774320, 0x80776358]
-data/npc/model/tex/brd_1.c:
- .data: [0x80776360, 0x80777080]
-data/npc/model/tex/brd_2.c:
- .data: [0x80777080, 0x80777DA0]
-data/npc/model/tex/brd_11.c:
- .data: [0x80777DA0, 0x80778AC0]
-data/npc/model/tex/brd_3.c:
- .data: [0x80778AC0, 0x807797E0]
-data/npc/model/tex/brd_4.c:
- .data: [0x807797E0, 0x8077A500]
-data/npc/model/tex/brd_5.c:
- .data: [0x8077A500, 0x8077B220]
-data/npc/model/tex/brd_6.c:
- .data: [0x8077B220, 0x8077BF40]
-data/npc/model/tex/brd_7.c:
- .data: [0x8077BF40, 0x8077CC60]
-data/npc/model/tex/brd_8.c:
- .data: [0x8077CC60, 0x8077D980]
-data/npc/model/tex/brd_9.c:
- .data: [0x8077D980, 0x8077E6A0]
-data/npc/model/tex/brd_10.c:
- .data: [0x8077E6A0, 0x8077F3C0]
-data/player/BOY_part_data.c:
- .data: [0x807D5F60, 0x807D5FE8]
-data/npc/model/mdl/fox_1.c:
- .data: [0x807D5FE8, 0x807D8098]
-data/npc/model/tex/fox_1.c:
- .data: [0x807D80A0, 0x807D8FC0]
-data/npc/model/mdl/bul_1.c:
- .data: [0x807D8FC0, 0x807DAFB0]
-data/npc/model/tex/bul_1.c:
- .data: [0x807DAFC0, 0x807DC1E0]
-data/npc/model/tex/bul_2.c:
- .data: [0x807DC1E0, 0x807DD400]
-data/npc/model/tex/bul_3.c:
- .data: [0x807DD400, 0x807DE620]
-data/npc/model/tex/bul_4.c:
- .data: [0x807DE620, 0x807DF840]
-data/npc/model/mdl/cml_1.c:
- .data: [0x807DF840, 0x807E1EA8]
-data/npc/model/tex/cml_1.c:
- .data: [0x807E1EC0, 0x807E2E60]
-data/npc/model/mdl/cat_1.c:
- .data: [0x807E2E60, 0x807E4BB0]
-data/npc/model/tex/cat_1.c:
- .data: [0x807E4BC0, 0x807E5DE0]
-data/npc/model/tex/cat_2.c:
- .data: [0x807E5DE0, 0x807E7000]
-data/npc/model/tex/cat_11.c:
- .data: [0x807E7000, 0x807E8220]
-data/npc/model/tex/cat_12.c:
- .data: [0x807E8220, 0x807E9440]
-data/npc/model/tex/cat_13.c:
- .data: [0x807E9440, 0x807EA660]
-data/npc/model/tex/cat_14.c:
- .data: [0x807EA660, 0x807EB880]
-data/npc/model/tex/cat_15.c:
- .data: [0x807EB880, 0x807ECAA0]
-data/npc/model/tex/cat_3.c:
- .data: [0x807ECAA0, 0x807EDCC0]
-data/npc/model/tex/cat_4.c:
- .data: [0x807EDCC0, 0x807EEEE0]
-data/npc/model/tex/cat_5.c:
- .data: [0x807EEEE0, 0x807F0100]
-data/npc/model/tex/cat_6.c:
- .data: [0x807F0100, 0x807F1320]
-data/npc/model/tex/cat_7.c:
- .data: [0x807F1320, 0x807F2540]
-data/npc/model/tex/cat_8.c:
- .data: [0x807F2540, 0x807F3760]
-data/npc/model/tex/cat_9.c:
- .data: [0x807F3760, 0x807F4980]
-data/npc/model/tex/cat_10.c:
- .data: [0x807F4980, 0x807F5BA0]
-data/npc/model/mdl/chn_1.c:
- .data: [0x807F5BA0, 0x807F8348]
-data/npc/model/tex/chn_1.c:
- .data: [0x807F8360, 0x807F9040]
-data/npc/model/tex/chn_2.c:
- .data: [0x807F9040, 0x807F9D20]
-data/npc/model/tex/chn_3.c:
- .data: [0x807F9D20, 0x807FAA00]
-data/npc/model/tex/chn_4.c:
- .data: [0x807FAA00, 0x807FB6E0]
-data/npc/model/tex/chn_5.c:
- .data: [0x807FB6E0, 0x807FC3C0]
-data/npc/model/tex/chn_6.c:
- .data: [0x807FC3C0, 0x807FD0A0]
-data/npc/model/tex/chn_7.c:
- .data: [0x807FD0A0, 0x807FDD80]
-data/npc/model/tex/chn_8.c:
- .data: [0x807FDD80, 0x807FEA60]
-data/npc/model/tex/chn_9.c:
- .data: [0x807FEA60, 0x807FF740]
-data/npc/model/mdl/cbr_1.c:
- .data: [0x807FF740, 0x80801620]
-data/npc/model/tex/cbr_1.c:
- .data: [0x80801620, 0x80802840]
-data/npc/model/tex/cbr_2.c:
- .data: [0x80802840, 0x80803A60]
-data/npc/model/tex/cbr_11.c:
- .data: [0x80803A60, 0x80804C80]
-data/npc/model/tex/cbr_3.c:
- .data: [0x80804C80, 0x80805EA0]
-data/npc/model/tex/cbr_4.c:
- .data: [0x80805EA0, 0x808070C0]
-data/npc/model/tex/cbr_5.c:
- .data: [0x808070C0, 0x808082E0]
-data/npc/model/tex/cbr_6.c:
- .data: [0x808082E0, 0x80809500]
-data/npc/model/tex/cbr_7.c:
- .data: [0x80809500, 0x8080A720]
-data/npc/model/tex/cbr_8.c:
- .data: [0x8080A720, 0x8080B940]
-data/npc/model/tex/cbr_9.c:
- .data: [0x8080B940, 0x8080CB60]
-data/npc/model/tex/cbr_10.c:
- .data: [0x8080CB60, 0x8080DD80]
-data/combi/data_combi.c:
- .data: [0x8080DD80, 0x8080E628]
-data/npc/model/mdl/rcc_1.c:
- .data: [0x8080E628, 0x80810608]
-data/npc/model/tex/rcc_1.c:
- .data: [0x80810620, 0x80811500]
-data/npc/model/mdl/cow_1.c:
- .data: [0x80811500, 0x808134E0]
-data/npc/model/tex/cow_1.c:
- .data: [0x808134E0, 0x80814700]
-data/npc/model/tex/cow_2.c:
- .data: [0x80814700, 0x80815920]
-data/npc/model/tex/cow_3.c:
- .data: [0x80815920, 0x80816B40]
-data/npc/model/tex/cow_4.c:
- .data: [0x80816B40, 0x80817D60]
-data/npc/model/mdl/crd_1.c:
- .data: [0x80817D60, 0x80819EE8]
-data/npc/model/tex/crd_1.c:
- .data: [0x80819F00, 0x8081AC20]
-data/npc/model/tex/crd_2.c:
- .data: [0x8081AC20, 0x8081B940]
-data/npc/model/tex/crd_3.c:
- .data: [0x8081B940, 0x8081C660]
-data/npc/model/tex/crd_4.c:
- .data: [0x8081C660, 0x8081D380]
-data/npc/model/mdl/owl_1.c:
- .data: [0x8081D380, 0x8081F9A8]
-data/npc/model/tex/owl_1.c:
- .data: [0x8081F9C0, 0x80820820]
-data/npc/model/mdl/rcd_1.c:
- .data: [0x80820820, 0x80822720]
-data/npc/model/tex/rcd_1.c:
- .data: [0x80822720, 0x80823580]
-data/npc/model/mdl/grf_1.c:
- .data: [0x80823580, 0x80825B28]
-data/npc/model/tex/grf_1.c:
- .data: [0x80825B40, 0x80826A60]
-data/npc/model/mdl/dog_1.c:
- .data: [0x80826A60, 0x80828A40]
-data/npc/model/tex/dog_1.c:
- .data: [0x80828A40, 0x80829C60]
-data/npc/model/tex/dog_2.c:
- .data: [0x80829C60, 0x8082AE80]
-data/npc/model/tex/dog_3.c:
- .data: [0x8082AE80, 0x8082C0A0]
-data/npc/model/tex/dog_4.c:
- .data: [0x8082C0A0, 0x8082D2C0]
-data/npc/model/tex/dog_5.c:
- .data: [0x8082D2C0, 0x8082E4E0]
-data/npc/model/tex/dog_6.c:
- .data: [0x8082E4E0, 0x8082F700]
-data/npc/model/tex/dog_7.c:
- .data: [0x8082F700, 0x80830920]
-data/npc/model/tex/dog_8.c:
- .data: [0x80830920, 0x80831B40]
-data/npc/model/tex/dog_9.c:
- .data: [0x80831B40, 0x80832D60]
-data/npc/model/tex/dog_10.c:
- .data: [0x80832D60, 0x80833F80]
-data/npc/model/mdl/seg_1.c:
- .data: [0x80833F80, 0x808362E8]
-data/npc/model/tex/seg_1.c:
- .data: [0x80836300, 0x80837160]
-data/npc/model/mdl/duk_1.c:
- .data: [0x80837160, 0x80839070]
-data/npc/model/tex/duk_1.c:
- .data: [0x80839080, 0x8083A2A0]
-data/npc/model/tex/duk_2.c:
- .data: [0x8083A2A0, 0x8083B4C0]
-data/npc/model/tex/duk_11.c:
- .data: [0x8083B4C0, 0x8083C6E0]
-data/npc/model/tex/duk_3.c:
- .data: [0x8083C6E0, 0x8083D900]
-data/npc/model/tex/duk_4.c:
- .data: [0x8083D900, 0x8083EB20]
-data/npc/model/tex/duk_5.c:
- .data: [0x8083EB20, 0x8083FD40]
-data/npc/model/tex/duk_6.c:
- .data: [0x8083FD40, 0x80840F60]
-data/npc/model/tex/duk_7.c:
- .data: [0x80840F60, 0x80842180]
-data/npc/model/tex/duk_8.c:
- .data: [0x80842180, 0x808433A0]
-data/npc/model/tex/duk_9.c:
- .data: [0x808433A0, 0x808445C0]
-data/npc/model/tex/duk_10.c:
- .data: [0x808445C0, 0x808457E0]
-data/scene/event_notification.c:
- .data: [0x808457E0, 0x80845830]
-data/npc/model/mdl/elp_1.c:
- .data: [0x80845830, 0x808479A0]
-data/npc/model/tex/elp_1.c:
- .data: [0x808479A0, 0x80848BC0]
-data/npc/model/tex/elp_2.c:
- .data: [0x80848BC0, 0x80849DE0]
-data/npc/model/tex/elp_3.c:
- .data: [0x80849DE0, 0x8084B000]
-data/npc/model/tex/elp_4.c:
- .data: [0x8084B000, 0x8084C220]
-data/npc/model/tex/elp_5.c:
- .data: [0x8084C220, 0x8084D440]
-data/npc/model/tex/elp_6.c:
- .data: [0x8084D440, 0x8084E660]
-data/npc/model/tex/elp_7.c:
- .data: [0x8084E660, 0x8084F880]
-data/scene/fg_tool_in.c:
- .data: [0x8084F880, 0x8084F940]
-data/scene/field_tool_field.c:
- .data: [0x8084F940, 0x8084F9B0]
-data/npc/model/mdl/flg_1.c:
- .data: [0x80857D80, 0x808597E0]
-data/npc/model/tex/flg_1.c:
- .data: [0x808597E0, 0x8085AA00]
-data/npc/model/tex/flg_2.c:
- .data: [0x8085AA00, 0x8085BC20]
-data/npc/model/tex/flg_11.c:
- .data: [0x8085BC20, 0x8085CE40]
-data/npc/model/tex/flg_12.c:
- .data: [0x8085CE40, 0x8085DFE0]
-data/npc/model/tex/flg_13.c:
- .data: [0x8085DFE0, 0x8085F200]
-data/npc/model/tex/flg_3.c:
- .data: [0x8085F200, 0x80860420]
-data/npc/model/tex/flg_4.c:
- .data: [0x80860420, 0x80861640]
-data/npc/model/tex/flg_5.c:
- .data: [0x80861640, 0x80862860]
-data/npc/model/tex/flg_6.c:
- .data: [0x80862860, 0x80863A80]
-data/npc/model/tex/flg_7.c:
- .data: [0x80863A80, 0x80864CA0]
-data/npc/model/tex/flg_8.c:
- .data: [0x80864CA0, 0x80865EC0]
-data/npc/model/tex/flg_9.c:
- .data: [0x80865EC0, 0x808670E0]
-data/npc/model/tex/flg_10.c:
- .data: [0x808670E0, 0x80868300]
-data/npc/model/mdl/rcf_1.c:
- .data: [0x80868300, 0x8086A9A0]
-data/npc/model/tex/rcf_1.c:
- .data: [0x8086A9A0, 0x8086B8C0]
-data/npc/model/mdl/gst_1.c:
- .data: [0x8086CB08, 0x8086E180]
-data/npc/model/tex/gst_1.c:
- .data: [0x8086E180, 0x8086F120]
-data/npc/model/mdl/goa_1.c:
- .data: [0x80871730, 0x808736E8]
-data/npc/model/tex/goa_1.c:
- .data: [0x80873700, 0x80874920]
-data/npc/model/tex/goa_2.c:
- .data: [0x80874920, 0x80875B40]
-data/npc/model/tex/goa_3.c:
- .data: [0x80875B40, 0x80876D60]
-data/npc/model/tex/goa_4.c:
- .data: [0x80876D60, 0x80877F80]
-data/npc/model/tex/goa_5.c:
- .data: [0x80877F80, 0x808791A0]
-data/npc/model/tex/goa_6.c:
- .data: [0x808791A0, 0x8087A3C0]
-data/npc/model/mdl/gor_1.c:
- .data: [0x8087A3C0, 0x8087C948]
-data/npc/model/tex/gor_1.c:
- .data: [0x8087C960, 0x8087DB80]
-data/npc/model/tex/gor_2.c:
- .data: [0x8087DB80, 0x8087EDA0]
-data/npc/model/tex/gor_3.c:
- .data: [0x8087EDA0, 0x8087FFC0]
-data/npc/model/tex/gor_4.c:
- .data: [0x8087FFC0, 0x808811E0]
-data/npc/model/tex/gor_5.c:
- .data: [0x808811E0, 0x80882400]
-data/npc/model/mdl/xct_1.c:
- .data: [0x80882400, 0x80884068]
-data/npc/model/tex/xct_1.c:
- .data: [0x80884080, 0x80885420]
-data/npc/model/mdl/bpt_1.c:
- .data: [0x80894928, 0x80896A80]
-data/npc/model/tex/bpt_1.c:
- .data: [0x80896A80, 0x808979A0]
-data/npc/model/mdl/pkn_1.c:
- .data: [0x808979A0, 0x808993C8]
-data/npc/model/tex/pkn_1.c:
- .data: [0x808993E0, 0x80899A80]
-data/npc/model/mdl/hem_1.c:
- .data: [0x8089BA80, 0x8089D6E0]
-data/npc/model/tex/hem_1.c:
- .data: [0x8089D6E0, 0x8089DE40]
-data/npc/model/mdl/hip_1.c:
- .data: [0x8089DE40, 0x808A0558]
-data/npc/model/tex/hip_1.c:
- .data: [0x808A0560, 0x808A1280]
-data/npc/model/tex/hip_2.c:
- .data: [0x808A1280, 0x808A1FA0]
-data/npc/model/tex/hip_3.c:
- .data: [0x808A1FA0, 0x808A2CC0]
-data/npc/model/tex/hip_4.c:
- .data: [0x808A2CC0, 0x808A39E0]
-data/npc/model/tex/hip_5.c:
- .data: [0x808A39E0, 0x808A4700]
-data/npc/model/tex/hip_6.c:
- .data: [0x808A4700, 0x808A5420]
-data/npc/model/tex/hip_7.c:
- .data: [0x808A5420, 0x808A6140]
-data/npc/model/mdl/hrs_1.c:
- .data: [0x808A6140, 0x808A8508]
-data/npc/model/tex/hrs_1.c:
- .data: [0x808A8520, 0x808A92C0]
-data/npc/model/tex/hrs_2.c:
- .data: [0x808A92C0, 0x808AA060]
-data/npc/model/tex/hrs_3.c:
- .data: [0x808AA060, 0x808AAE00]
-data/npc/model/tex/hrs_4.c:
- .data: [0x808AAE00, 0x808ABBA0]
-data/npc/model/tex/hrs_5.c:
- .data: [0x808ABBA0, 0x808AC940]
-data/npc/model/tex/hrs_6.c:
- .data: [0x808AC940, 0x808AD6E0]
-data/npc/model/tex/hrs_7.c:
- .data: [0x808AD6E0, 0x808AE480]
-data/npc/model/tex/hrs_8.c:
- .data: [0x808AE480, 0x808AF220]
-data/npc/model/mdl/plj_1.c:
- .data: [0x808B8D00, 0x808BAD00]
-data/npc/model/tex/plj_1.c:
- .data: [0x808BAD00, 0x808BC1A0]
-data/npc/model/mdl/xsq_1.c:
- .data: [0x808BC1A0, 0x808BE240]
-data/npc/model/tex/xsq_1.c:
- .data: [0x808BE240, 0x808BF660]
-data/item/item_name.c:
- .data: [0x808BF660, 0x808C8830]
-data/scene/kamakura.c:
- .data: [0x808C8830, 0x808C88A8]
-data/npc/model/mdl/boa_1.c:
- .data: [0x808C88A8, 0x808CAF48]
-data/npc/model/tex/boa_1.c:
- .data: [0x808CAF60, 0x808CBD40]
-data/npc/model/mdl/kgr_1.c:
- .data: [0x808CBD40, 0x808CE3C8]
-data/npc/model/tex/kgr_1.c:
- .data: [0x808CE3E0, 0x808CF040]
-data/npc/model/tex/kgr_2.c:
- .data: [0x808CF040, 0x808CFCA0]
-data/npc/model/tex/kgr_3.c:
- .data: [0x808CFCA0, 0x808D0900]
-data/npc/model/tex/kgr_4.c:
- .data: [0x808D0900, 0x808D1560]
-data/npc/model/tex/kgr_5.c:
- .data: [0x808D1560, 0x808D21C0]
-data/npc/model/tex/kgr_6.c:
- .data: [0x808D21C0, 0x808D2E20]
-data/npc/model/mdl/fob_1.c:
- .data: [0x808D2E20, 0x808D5360]
-data/npc/model/tex/fob_1.c:
- .data: [0x808D5360, 0x808D62C0]
-data/npc/model/mdl/kal_1.c:
- .data: [0x808D62C0, 0x808D81D8]
-data/npc/model/tex/kal_1.c:
- .data: [0x808D81E0, 0x808D9480]
-data/npc/model/tex/kal_2.c:
- .data: [0x808D9480, 0x808DA720]
-data/npc/model/tex/kal_3.c:
- .data: [0x808DA720, 0x808DB9C0]
-data/npc/model/tex/kal_4.c:
- .data: [0x808DB9C0, 0x808DCC60]
-data/npc/model/tex/kal_5.c:
- .data: [0x808DCC60, 0x808DDF00]
-data/npc/model/tex/kal_6.c:
- .data: [0x808DDF00, 0x808DF1A0]
-data/scene/lighthouse.c:
- .data: [0x808DF1A0, 0x808DF220]
-data/npc/model/mdl/lon_1.c:
- .data: [0x808E1A10, 0x808E3F78]
-data/npc/model/tex/lon_1.c:
- .data: [0x808E3F80, 0x808E5260]
-data/npc/model/tex/lon_2.c:
- .data: [0x808E5260, 0x808E6540]
-data/npc/model/tex/lon_3.c:
- .data: [0x808E6540, 0x808E7820]
-data/npc/model/tex/lon_4.c:
- .data: [0x808E7820, 0x808E8B00]
-data/scene/museum_entrance.c:
- .data: [0x808E8B00, 0x808E8C08]
-data/scene/museum_fish.c:
- .data: [0x808E8C08, 0x808E8CB0]
-data/scene/museum_fossil.c:
- .data: [0x808E8CB0, 0x808E8D30]
-data/scene/museum_insect.c:
- .data: [0x808E8D30, 0x808E8DF0]
-data/scene/museum_picture.c:
- .data: [0x808E8DF0, 0x808E8EA0]
-data/npc/model/mdl/mos_1.c:
- .data: [0x808EAEA0, 0x808ECAC8]
-data/npc/model/tex/mos_1.c:
- .data: [0x808ECAE0, 0x808EDF80]
-data/npc/model/mdl/mol_1.c:
- .data: [0x808EDF80, 0x808EFBA8]
-data/npc/model/tex/mol_1.c:
- .data: [0x808EFBC0, 0x808F1060]
-data/npc/model/mdl/lrc_1.c:
- .data: [0x808F1060, 0x808F2F50]
-data/npc/model/tex/lrc_1.c:
- .data: [0x808F2F60, 0x808F3E00]
-data/npc/model/mdl/mka_1.c:
- .data: [0x808F3E00, 0x808F5BA8]
-data/npc/model/tex/mka_1.c:
- .data: [0x808F5BC0, 0x808F6060]
-data/npc/model/mdl/mus_1.c:
- .data: [0x808F6EA8, 0x808F90B0]
-data/npc/model/tex/mus_1.c:
- .data: [0x808F90C0, 0x808FA2E0]
-data/npc/model/tex/mus_2.c:
- .data: [0x808FA2E0, 0x808FB500]
-data/npc/model/tex/mus_3.c:
- .data: [0x808FB500, 0x808FC720]
-data/npc/model/tex/mus_4.c:
- .data: [0x808FC720, 0x808FD940]
-data/npc/model/tex/mus_5.c:
- .data: [0x808FD940, 0x808FEB60]
-data/npc/model/tex/mus_6.c:
- .data: [0x808FEB60, 0x808FFD80]
-data/npc/model/tex/mus_7.c:
- .data: [0x808FFD80, 0x80900FA0]
-data/npc/model/tex/mus_8.c:
- .data: [0x80900FA0, 0x809021C0]
-data/npc/model/tex/mus_9.c:
- .data: [0x809021C0, 0x809033E0]
-data/npc/model/tex/mus_10.c:
- .data: [0x809033E0, 0x80904600]
-data/model/mural/obj_mural.c:
- .data: [0x80904600, 0x80904700]
-data/scene/NEEDLEWORK.c:
- .data: [0x80911C68, 0x80911D20]
-data/scene/npc_room01.c:
- .data: [0x80911D20, 0x80911DC8]
-data/scene/npc_room_island.c:
- .data: [0x80911DC8, 0x80911E70]
-data/npc/model/mdl/hgh_1.c:
- .data: [0x80911E70, 0x80914610]
-data/npc/model/tex/hgh_1.c:
- .data: [0x80914620, 0x80915500]
-data/npc/model/mdl/hgs_1.c:
- .data: [0x80915500, 0x80917C80]
-data/npc/model/tex/hgs_1.c:
- .data: [0x80917C80, 0x80918B60]
-data/npc/default_list.c:
- .data: [0x8096CD90, 0x8096D328]
-data/npc/npc_draw_data.c:
- .data: [0x8096D328, 0x80977450]
-data/npc/grow_list.c:
- .data: [0x80977450, 0x80977540]
-data/npc/house_list.c:
- .data: [0x80977540, 0x80977CB0]
-data/npc/model/mdl/oct_1.c:
- .data: [0x80977CB0, 0x8097A460]
-data/npc/model/tex/oct_1.c:
- .data: [0x8097A460, 0x8097AE80]
-data/npc/model/mdl/ost_1.c:
- .data: [0x8097AE80, 0x8097D100]
-data/npc/model/tex/ost_1.c:
- .data: [0x8097D100, 0x8097DE60]
-data/npc/model/tex/ost_2.c:
- .data: [0x8097DE60, 0x8097EBC0]
-data/npc/model/tex/ost_3.c:
- .data: [0x8097EBC0, 0x8097F920]
-data/npc/model/tex/ost_4.c:
- .data: [0x8097F920, 0x80980680]
-data/scene/player_room_island.c:
- .data: [0x80980680, 0x80980728]
-data/scene/player_room_ll1.c:
- .data: [0x80980728, 0x809807E8]
-data/scene/player_room_ll2.c:
- .data: [0x809807E8, 0x80980890]
-data/scene/player_room_l.c:
- .data: [0x80980890, 0x80980938]
-data/scene/player_room_m.c:
- .data: [0x80980938, 0x809809E0]
-data/scene/player_room_s.c:
- .data: [0x809809E0, 0x80980A88]
-data/scene/PLAYER_SELECT2.c:
- .data: [0x80980A88, 0x80980AD0]
-data/scene/PLAYER_SELECT3.c:
- .data: [0x80980AD0, 0x80980B18]
-data/scene/PLAYER_SELECT4.c:
- .data: [0x80980B18, 0x80980B60]
-data/scene/player_select.c:
- .data: [0x80980B60, 0x80980BA8]
-data/scene/police_box.c:
- .data: [0x80980BA8, 0x80980C48]
-data/scene/post_office.c:
- .data: [0x80980C48, 0x80980D00]
-data/scene/p_room_bm_ll1.c:
- .data: [0x80980D00, 0x80980D80]
-data/scene/p_room_bm_l.c:
- .data: [0x80980D80, 0x80980E00]
-data/scene/p_room_bm_m.c:
- .data: [0x80980E00, 0x80980E80]
-data/scene/p_room_bm_s.c:
- .data: [0x80980E80, 0x80980F00]
-data/npc/model/mdl/pgn_1.c:
- .data: [0x80980F28, 0x80983140]
-data/npc/model/tex/pgn_1.c:
- .data: [0x80983140, 0x80983EE0]
-data/npc/model/tex/pgn_2.c:
- .data: [0x80983EE0, 0x80984C80]
-data/npc/model/tex/pgn_3.c:
- .data: [0x80984C80, 0x80985A20]
-data/npc/model/tex/pgn_4.c:
- .data: [0x80985A20, 0x809867C0]
-data/npc/model/tex/pgn_5.c:
- .data: [0x809867C0, 0x80987560]
-data/npc/model/tex/pgn_6.c:
- .data: [0x80987560, 0x80988300]
-data/npc/model/tex/pgn_7.c:
- .data: [0x80988300, 0x809890A0]
-data/npc/model/tex/pgn_8.c:
- .data: [0x809890A0, 0x80989E40]
-data/npc/model/mdl/pig_1.c:
- .data: [0x80989E40, 0x8098BAC0]
-data/npc/model/tex/pig_1.c:
- .data: [0x8098BAC0, 0x8098CC60]
-data/npc/model/tex/pig_2.c:
- .data: [0x8098CC60, 0x8098DE00]
-data/npc/model/tex/pig_11.c:
- .data: [0x8098DE00, 0x8098EFA0]
-data/npc/model/tex/pig_3.c:
- .data: [0x8098EFA0, 0x80990140]
-data/npc/model/tex/pig_4.c:
- .data: [0x80990140, 0x809912E0]
-data/npc/model/tex/pig_5.c:
- .data: [0x809912E0, 0x80992480]
-data/npc/model/tex/pig_6.c:
- .data: [0x80992480, 0x80993620]
-data/npc/model/tex/pig_7.c:
- .data: [0x80993620, 0x809947C0]
-data/npc/model/tex/pig_8.c:
- .data: [0x809947C0, 0x80995960]
-data/npc/model/tex/pig_9.c:
- .data: [0x80995960, 0x80996B00]
-data/npc/model/tex/pig_10.c:
- .data: [0x80996B00, 0x80997CA0]
-data/npc/model/mdl/pla_1.c:
- .data: [0x80997CA0, 0x8099A318]
-data/npc/model/mdl/plc_1.c:
- .data: [0x8099A318, 0x8099C410]
-data/npc/model/tex/plc_1.c:
- .data: [0x8099C420, 0x8099D900]
-data/npc/model/tex/pla_1.c:
- .data: [0x8099D900, 0x8099ECA0]
-data/npc/model/mdl/pga_1.c:
- .data: [0x8099ECA0, 0x809A11A0]
-data/npc/model/tex/pga_1.c:
- .data: [0x809A11A0, 0x809A2000]
-data/npc/model/mdl/pgb_1.c:
- .data: [0x809A2000, 0x809A4450]
-data/npc/model/tex/pgb_1.c:
- .data: [0x809A4460, 0x809A5400]
-data/npc/model/mdl/plb_1.c:
- .data: [0x809A5400, 0x809A7980]
-data/npc/model/tex/plb_1.c:
- .data: [0x809A7980, 0x809A8920]
-data/npc/model/mdl/rbt_1.c:
- .data: [0x809A8920, 0x809AA7B8]
-data/npc/model/tex/rbt_1.c:
- .data: [0x809AA7C0, 0x809AB9E0]
-data/npc/model/tex/rbt_2.c:
- .data: [0x809AB9E0, 0x809ACC00]
-data/npc/model/tex/rbt_11.c:
- .data: [0x809ACC00, 0x809ADE20]
-data/npc/model/tex/rbt_3.c:
- .data: [0x809ADE20, 0x809AF040]
-data/npc/model/tex/rbt_4.c:
- .data: [0x809AF040, 0x809B0260]
-data/npc/model/tex/rbt_5.c:
- .data: [0x809B0260, 0x809B1480]
-data/npc/model/tex/rbt_6.c:
- .data: [0x809B1480, 0x809B26A0]
-data/npc/model/tex/rbt_7.c:
- .data: [0x809B26A0, 0x809B38C0]
-data/npc/model/tex/rbt_8.c:
- .data: [0x809B38C0, 0x809B4AE0]
-data/npc/model/tex/rbt_9.c:
- .data: [0x809B4AE0, 0x809B5D00]
-data/npc/model/tex/rbt_10.c:
- .data: [0x809B5D00, 0x809B6F20]
-data/npc/model/mdl/mob_1.c:
- .data: [0x809B6F20, 0x809B8AA0]
-data/npc/model/tex/mob_1.c:
- .data: [0x809B8AA0, 0x809B9F40]
-data/npc/model/mdl/rhn_1.c:
- .data: [0x809BA340, 0x809BCAF0]
-data/npc/model/tex/rhn_1.c:
- .data: [0x809BCB00, 0x809BDD20]
-data/npc/model/tex/rhn_2.c:
- .data: [0x809BDD20, 0x809BEF40]
-data/npc/model/tex/rhn_3.c:
- .data: [0x809BEF40, 0x809C0160]
-data/npc/model/tex/rhn_4.c:
- .data: [0x809C0160, 0x809C1380]
-data/scene/shop01.c:
- .data: [0x809C8B98, 0x809C8C20]
-data/scene/shop02.c:
- .data: [0x809C8C20, 0x809C8CA8]
-data/scene/shop03.c:
- .data: [0x809C8CA8, 0x809C8D28]
-data/scene/shop04_1f.c:
- .data: [0x809C8D28, 0x809C8DB0]
-data/scene/shop04_2f.c:
- .data: [0x809C8DB0, 0x809C8E38]
-data/scene/start_demo1.c:
- .data: [0x809C8E38, 0x809C8EA8]
-data/scene/start_demo2.c:
- .data: [0x809C8EA8, 0x809C8F18]
-data/scene/start_demo3.c:
- .data: [0x809C8F18, 0x809C8FA0]
-data/npc/model/mdl/snt_1.c:
- .data: [0x809C9148, 0x809CAD30]
-data/npc/model/tex/snt_1.c:
- .data: [0x809CAD40, 0x809CC1E0]
-data/npc/model/mdl/wip_1.c:
- .data: [0x809CC1E0, 0x809CE170]
-data/npc/model/tex/wip_1.c:
- .data: [0x809CE180, 0x809CF560]
-data/npc/model/mdl/shp_1.c:
- .data: [0x809CF560, 0x809D11A0]
-data/npc/model/tex/shp_1.c:
- .data: [0x809D11A0, 0x809D23C0]
-data/npc/model/tex/shp_2.c:
- .data: [0x809D23C0, 0x809D35E0]
-data/npc/model/tex/shp_3.c:
- .data: [0x809D35E0, 0x809D4800]
-data/npc/model/tex/shp_4.c:
- .data: [0x809D4800, 0x809D5A20]
-data/npc/model/tex/shp_5.c:
- .data: [0x809D5A20, 0x809D6C40]
-data/npc/model/tex/shp_6.c:
- .data: [0x809D6C40, 0x809D7E60]
-data/npc/model/mdl/rcn_1.c:
- .data: [0x809D7E60, 0x809D9E80]
-data/npc/model/tex/rcn_1.c:
- .data: [0x809D9E80, 0x809DACE0]
-data/npc/model/mdl/kab_1.c:
- .data: [0x80A001B0, 0x80A02398]
-data/npc/model/tex/kab_1.c:
- .data: [0x80A023A0, 0x80A02FC0]
-data/npc/model/mdl/ttl_1.c:
- .data: [0x80B38FC0, 0x80B3ADD8]
-data/npc/model/tex/ttl_1.c:
- .data: [0x80B3ADE0, 0x80B3BD40]
-data/npc/model/mdl/squ_1.c:
- .data: [0x80B3BD40, 0x80B3DDE0]
-data/npc/model/tex/squ_1.c:
- .data: [0x80B3DDE0, 0x80B3F000]
-data/npc/model/tex/squ_2.c:
- .data: [0x80B3F000, 0x80B40220]
-data/npc/model/tex/squ_11.c:
- .data: [0x80B40220, 0x80B41440]
-data/npc/model/tex/squ_3.c:
- .data: [0x80B41440, 0x80B42660]
-data/npc/model/tex/squ_4.c:
- .data: [0x80B42660, 0x80B43880]
-data/npc/model/tex/squ_5.c:
- .data: [0x80B43880, 0x80B44AA0]
-data/npc/model/tex/squ_6.c:
- .data: [0x80B44AA0, 0x80B45CC0]
-data/npc/model/tex/squ_7.c:
- .data: [0x80B45CC0, 0x80B46EE0]
-data/npc/model/tex/squ_8.c:
- .data: [0x80B46EE0, 0x80B48100]
-data/npc/model/tex/squ_9.c:
- .data: [0x80B48100, 0x80B49320]
-data/npc/model/tex/squ_10.c:
- .data: [0x80B49320, 0x80B4A540]
-data/npc/model/mdl/mnk_1.c:
- .data: [0x80B4A540, 0x80B4C7F8]
-data/npc/model/tex/mnk_1.c:
- .data: [0x80B4C800, 0x80B4DC20]
-data/npc/model/mdl/rcs_1.c:
- .data: [0x80C09AC0, 0x80C0BBA8]
-data/npc/model/tex/rcs_1.c:
- .data: [0x80C0BBC0, 0x80C0C960]
-data/scene/tent.c:
- .data: [0x80C0C960, 0x80C0C9D8]
-
-data/scene/test_fd_npc_land.c:
- .data: [0x80C0C9D8, 0x80C0CA68]
-data/scene/water_test.c:
- .data: [0x80C0CA68, 0x80C0CAE8]
-data/scene/test_step01.c:
- .data: [0x80C0CAE8, 0x80C0CB18]
-data/scene/title_demo.c:
- .data: [0x80C0CB18, 0x80C0CBA0]
-# acres
-# data/field/bg/acre/grd_post_office/grd_post_office.c:
- # .data: [0x80C5DBA0, 0x80C63408]
-
-# scenes
-data/scene/test01.c:
- .data: [0x80C2C800, 0x80C2C888]
-data/scene/test02.c:
- .data: [0x80C2C888, 0x80C2C8D8]
-data/scene/test03.c:
- .data: [0x80C2C8D8, 0x80C2C960]
-data/scene/test04.c:
- .data: [0x80C2C960, 0x80C2C9B0]
-data/scene/test05.c:
- .data: [0x80C2C9B0, 0x80C2C9F8]
-
-data/npc/model/mdl/tig_1.c:
- .data: [0x80C2C9F8, 0x80C2EE88]
-data/npc/model/tex/tig_1.c:
- .data: [0x80C2EEA0, 0x80C2FC40]
-data/npc/model/tex/tig_2.c:
- .data: [0x80C2FC40, 0x80C309E0]
-data/npc/model/tex/tig_3.c:
- .data: [0x80C309E0, 0x80C31780]
-data/npc/model/tex/tig_4.c:
- .data: [0x80C31780, 0x80C32520]
-data/titledemo/pact0.c:
- .data: [0x80C411D8, 0x80C42038]
-data/titledemo/pact1.c:
- .data: [0x80C42038, 0x80C42E98]
-data/titledemo/pact2.c:
- .data: [0x80C42E98, 0x80C43D18]
-data/titledemo/pact3.c:
- .data: [0x80C43D18, 0x80C44B98]
-data/titledemo/pact4.c:
- .data: [0x80C44B98, 0x80C45A08]
-data/npc/model/mdl/end_1.c:
- .data: [0x80C45A08, 0x80C480A8]
-data/npc/model/tex/end_1.c:
- .data: [0x80C480C0, 0x80C493A0]
-data/npc/model/mdl/tuk_1.c:
- .data: [0x80C4B710, 0x80C4E080]
-data/npc/model/tex/tuk_1.c:
- .data: [0x80C4E080, 0x80C4EF20]
-data/npc/model/mdl/wol_1.c:
- .data: [0x80C4F588, 0x80C51650]
-data/npc/model/tex/wol_1.c:
- .data: [0x80C51660, 0x80C52280]
-data/npc/model/tex/wol_2.c:
- .data: [0x80C52280, 0x80C52EA0]
-data/npc/model/tex/wol_3.c:
- .data: [0x80C52EA0, 0x80C53AC0]
-data/npc/model/tex/wol_4.c:
- .data: [0x80C53AC0, 0x80C546E0]
-data/npc/model/tex/wol_5.c:
- .data: [0x80C546E0, 0x80C55300]
-data/npc/model/tex/wol_6.c:
- .data: [0x80C55300, 0x80C55F20]
-data/field/bg/beach_pal.c:
- .data: [0x80C59CA8, 0x80C59E28]
-data/field/bg/acre/grd_yamishop/grd_yamishop.c:
- .data: [0x80C5A240, 0x80C5DBA0]
-data/field/bg/acre/grd_post_office/grd_post_office.c:
- .data: [0x80C5DBA0, 0x80C63408]
-data/field/bg/acre/tmp4/tmp4.c:
- .data: [0x80C63408, 0x80C64698]
-data/field/bg/acre/tmpr4/tmpr4_evw_anime.c:
- .data: [0x80C64698, 0x80C646D8]
-data/field/bg/acre/tmpr4/tmpr4.c:
- .data: [0x80C646D8, 0x80C66278]
-data/field/bg/acre/tmp3/tmp3.c:
- .data: [0x80C66278, 0x80C677F8]
-data/field/bg/acre/tmpr3/tmpr3_evw_anime.c:
- .data: [0x80C677F8, 0x80C67838]
-data/field/bg/acre/tmpr3/tmpr3.c:
- .data: [0x80C67838, 0x80C69338]
-data/field/bg/acre/tmp/tmp.c:
- .data: [0x80C69338, 0x80C695E0]
-data/field/bg/acre/tmpr/tmpr_evw_anime.c:
- .data: [0x80C695E0, 0x80C695F0]
-data/field/bg/acre/tmpr/tmpr.c:
- .data: [0x80C695F0, 0x80C6A8C8]
-data/field/bg/acre/tmp2/tmp2.c:
- .data: [0x80C6A8C8, 0x80C6CE68]
-data/field/bg/acre/tmpr2/tmpr2_evw_anime.c:
- .data: [0x80C6CE68, 0x80C6CE78]
-data/field/bg/acre/tmpr2/tmpr2.c:
- .data: [0x80C6CE78, 0x80C6DCC0]
-data/field/bg/bush_pal.c:
- .data: [0x80C78680, 0x80C78800]
-data/field/bg/cliff_pal.c:
- .data: [0x80C78988, 0x80C78B20]
-data/field/bg/earth_pal.c:
- .data: [0x80C90100, 0x80C90280]
-data/field/bg/acre/grd_s_c1_1/grd_s_c1_1.c:
- .data: [0x80CE7320, 0x80CE83C0]
-data/field/bg/acre/grd_s_c1_2/grd_s_c1_2.c:
- .data: [0x80CE83C0, 0x80CE9510]
-data/field/bg/acre/grd_s_c1_3/grd_s_c1_3.c:
- .data: [0x80CE9510, 0x80CEA598]
-data/field/bg/acre/grd_s_c1_4/grd_s_c1_4.c:
- .data: [0x80CEA598, 0x80CEB868]
-data/field/bg/acre/grd_s_c1_5/grd_s_c1_5.c:
- .data: [0x80CEB868, 0x80CEC738]
-data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1_evw_anime.c:
- .data: [0x80CEC738, 0x80CEC748]
-data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1.c:
- .data: [0x80CEC748, 0x80CEDCF0]
-data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2_evw_anime.c:
- .data: [0x80CEDCF0, 0x80CEDD00]
-data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2.c:
- .data: [0x80CEDD00, 0x80CEF128]
-data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3_evw_anime.c:
- .data: [0x80CEF128, 0x80CEF138]
-data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3.c:
- .data: [0x80CEF138, 0x80CF0538]
-data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1_evw_anime.c:
- .data: [0x80CF0538, 0x80CF0548]
-data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1.c:
- .data: [0x80CF0548, 0x80CF1960]
-data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2_evw_anime.c:
- .data: [0x80CF1960, 0x80CF1970]
-data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2.c:
- .data: [0x80CF1970, 0x80CF2DC8]
-data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3_evw_anime.c:
- .data: [0x80CF2DC8, 0x80CF2DD8]
-data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3.c:
- .data: [0x80CF2DD8, 0x80CF4440]
-data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1_evw_anime.c:
- .data: [0x80CF4440, 0x80CF4450]
-data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1.c:
- .data: [0x80CF4450, 0x80CF5508]
-data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2_evw_anime.c:
- .data: [0x80CF5508, 0x80CF5518]
-data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2.c:
- .data: [0x80CF5518, 0x80CF6810]
-data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3_evw_anime.c:
- .data: [0x80CF6810, 0x80CF6820]
-data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3.c:
- .data: [0x80CF6820, 0x80CF7C58]
-data/field/bg/acre/grd_s_c1_s_1/grd_s_c1_s_1.c:
- .data: [0x80CF7C58, 0x80CF8B38]
-data/field/bg/acre/grd_s_c1_s_2/grd_s_c1_s_2.c:
- .data: [0x80CF8B38, 0x80CF9C60]
-data/field/bg/acre/grd_s_c1_s_3/grd_s_c1_s_3.c:
- .data: [0x80CF9C60, 0x80CFAEA0]
-data/field/bg/acre/grd_s_c1_s_4/grd_s_c1_s_4.c:
- .data: [0x80CFAEA0, 0x80CFC1B0]
-data/field/bg/acre/grd_s_c2_1/grd_s_c2_1.c:
- .data: [0x80CFC1B0, 0x80CFD1D0]
-data/field/bg/acre/grd_s_c2_2/grd_s_c2_2.c:
- .data: [0x80CFD1D0, 0x80CFE220]
-data/field/bg/acre/grd_s_c2_3/grd_s_c2_3_evw_anime.c:
- .data: [0x80CFE220, 0x80CFE230]
-data/field/bg/acre/grd_s_c2_3/grd_s_c2_3.c:
- .data: [0x80CFE230, 0x80CFF5A8]
-data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1_evw_anime.c:
- .data: [0x80CFF5A8, 0x80CFF5B8]
-data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1.c:
- .data: [0x80CFF5B8, 0x80D009A0]
-data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2_evw_anime.c:
- .data: [0x80D009A0, 0x80D009B0]
-data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2.c:
- .data: [0x80D009B0, 0x80D01E70]
-data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1_evw_anime.c:
- .data: [0x80D01E70, 0x80D01E80]
-data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1.c:
- .data: [0x80D01E80, 0x80D03140]
-data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2_evw_anime.c:
- .data: [0x80D03140, 0x80D03150]
-data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2.c:
- .data: [0x80D03150, 0x80D04680]
-data/field/bg/acre/grd_s_c2_s_1/grd_s_c2_s_1.c:
- .data: [0x80D04680, 0x80D05A20]
-data/field/bg/acre/grd_s_c2_s_2/grd_s_c2_s_2.c:
- .data: [0x80D05A20, 0x80D06AF0]
-data/field/bg/acre/grd_s_c2_s_3/grd_s_c2_s_3.c:
- .data: [0x80D06AF0, 0x80D07AF0]
-data/field/bg/acre/grd_s_c3_1/grd_s_c3_1.c:
- .data: [0x80D07AF0, 0x80D08C80]
-data/field/bg/acre/grd_s_c3_2/grd_s_c3_2_evw_anime.c:
- .data: [0x80D08C80, 0x80D08C90]
-data/field/bg/acre/grd_s_c3_2/grd_s_c3_2.c:
- .data: [0x80D08C90, 0x80D09D80]
-data/field/bg/acre/grd_s_c3_3/grd_s_c3_3.c:
- .data: [0x80D09D80, 0x80D0ACF0]
-data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1_evw_anime.c:
- .data: [0x80D0ACF0, 0x80D0AD00]
-data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1.c:
- .data: [0x80D0AD00, 0x80D0BE48]
-data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2_evw_anime.c:
- .data: [0x80D0BE48, 0x80D0BE58]
-data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2.c:
- .data: [0x80D0BE58, 0x80D0D148]
-data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1_evw_anime.c:
- .data: [0x80D0D148, 0x80D0D158]
-data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1.c:
- .data: [0x80D0D158, 0x80D0E7C8]
-data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2_evw_anime.c:
- .data: [0x80D0E7C8, 0x80D0E7D8]
-data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2.c:
- .data: [0x80D0E7D8, 0x80D0FE50]
-data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1_evw_anime.c:
- .data: [0x80D0FE50, 0x80D0FE60]
-data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1.c:
- .data: [0x80D0FE60, 0x80D11628]
-data/field/bg/acre/grd_s_c4_1/grd_s_c4_1.c:
- .data: [0x80D11628, 0x80D12430]
-data/field/bg/acre/grd_s_c4_2/grd_s_c4_2.c:
- .data: [0x80D12430, 0x80D135B0]
-data/field/bg/acre/grd_s_c4_3/grd_s_c4_3.c:
- .data: [0x80D135B0, 0x80D14598]
-data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1_evw_anime.c:
- .data: [0x80D14598, 0x80D145A8]
-data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1.c:
- .data: [0x80D145A8, 0x80D158B0]
-data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2_evw_anime.c:
- .data: [0x80D158B0, 0x80D158C0]
-data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2.c:
- .data: [0x80D158C0, 0x80D16B80]
-data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1_evw_anime.c:
- .data: [0x80D16B80, 0x80D16B90]
-data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1.c:
- .data: [0x80D16B90, 0x80D17EF8]
-data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2_evw_anime.c:
- .data: [0x80D17EF8, 0x80D17F08]
-data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2.c:
- .data: [0x80D17F08, 0x80D18FB0]
-data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1_evw_anime.c:
- .data: [0x80D18FB0, 0x80D18FC0]
-data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1.c:
- .data: [0x80D18FC0, 0x80D1A0C8]
-data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2_evw_anime.c:
- .data: [0x80D1A0C8, 0x80D1A0D8]
-data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2.c:
- .data: [0x80D1A0D8, 0x80D1B088]
-data/field/bg/acre/grd_s_c4_s_1/grd_s_c4_s_1.c:
- .data: [0x80D1B088, 0x80D1C030]
-data/field/bg/acre/grd_s_c4_s_2/grd_s_c4_s_2.c:
- .data: [0x80D1C030, 0x80D1D2A8]
-data/field/bg/acre/grd_s_c5_1/grd_s_c5_1.c:
- .data: [0x80D1D2A8, 0x80D1DFA8]
-data/field/bg/acre/grd_s_c5_2/grd_s_c5_2.c:
- .data: [0x80D1DFA8, 0x80D1F1B8]
-data/field/bg/acre/grd_s_c5_3/grd_s_c5_3.c:
- .data: [0x80D1F1B8, 0x80D1FF20]
-data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1_evw_anime.c:
- .data: [0x80D1FF20, 0x80D1FF30]
-data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1.c:
- .data: [0x80D1FF30, 0x80D21510]
-data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2_evw_anime.c:
- .data: [0x80D21510, 0x80D21520]
-data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2.c:
- .data: [0x80D21520, 0x80D22AB0]
-data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1_evw_anime.c:
- .data: [0x80D22AB0, 0x80D22AC0]
-data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1.c:
- .data: [0x80D22AC0, 0x80D241C0]
-data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2_evw_anime.c:
- .data: [0x80D241C0, 0x80D241D0]
-data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2.c:
- .data: [0x80D241D0, 0x80D25638]
-data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1_evw_anime.c:
- .data: [0x80D25638, 0x80D25648]
-data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1.c:
- .data: [0x80D25648, 0x80D26978]
-data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2_evw_anime.c:
- .data: [0x80D26978, 0x80D26988]
-data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2.c:
- .data: [0x80D26988, 0x80D27B78]
-data/field/bg/acre/grd_s_c5_s_1/grd_s_c5_s_1.c:
- .data: [0x80D27B78, 0x80D28B20]
-data/field/bg/acre/grd_s_c5_s_2/grd_s_c5_s_2.c:
- .data: [0x80D28B20, 0x80D29AC8]
-data/field/bg/acre/grd_s_c6_1/grd_s_c6_1.c:
- .data: [0x80D29AC8, 0x80D2AC00]
-data/field/bg/acre/grd_s_c6_2/grd_s_c6_2.c:
- .data: [0x80D2AC00, 0x80D2BE00]
-data/field/bg/acre/grd_s_c6_3/grd_s_c6_3.c:
- .data: [0x80D2BE00, 0x80D2CDA0]
-data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1_evw_anime.c:
- .data: [0x80D2CDA0, 0x80D2CDB0]
-data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1.c:
- .data: [0x80D2CDB0, 0x80D2E088]
-data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2_evw_anime.c:
- .data: [0x80D2E088, 0x80D2E098]
-data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2.c:
- .data: [0x80D2E098, 0x80D2F3E8]
-data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1_evw_anime.c:
- .data: [0x80D2F3E8, 0x80D2F3F8]
-data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1.c:
- .data: [0x80D2F3F8, 0x80D30BB0]
-data/field/bg/acre/grd_s_c6_s_1/grd_s_c6_s_1.c:
- .data: [0x80D30BB0, 0x80D31C90]
-data/field/bg/acre/grd_s_c7_1/grd_s_c7_1.c:
- .data: [0x80D31C90, 0x80D32CC8]
-data/field/bg/acre/grd_s_c7_2/grd_s_c7_2.c:
- .data: [0x80D32CC8, 0x80D34080]
-data/field/bg/acre/grd_s_c7_3/grd_s_c7_3_evw_anime.c:
- .data: [0x80D34080, 0x80D34090]
-data/field/bg/acre/grd_s_c7_3/grd_s_c7_3.c:
- .data: [0x80D34090, 0x80D35450]
-data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1_evw_anime.c:
- .data: [0x80D35450, 0x80D35460]
-data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1.c:
- .data: [0x80D35460, 0x80D365A0]
-data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2_evw_anime.c:
- .data: [0x80D365A0, 0x80D365B0]
-data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2.c:
- .data: [0x80D365B0, 0x80D376F8]
-data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1_evw_anime.c:
- .data: [0x80D376F8, 0x80D37708]
-data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1.c:
- .data: [0x80D37708, 0x80D38C48]
-data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2_evw_anime.c:
- .data: [0x80D38C48, 0x80D38C58]
-data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2.c:
- .data: [0x80D38C58, 0x80D3A318]
-data/field/bg/acre/grd_s_c7_s_1/grd_s_c7_s_1.c:
- .data: [0x80D3A318, 0x80D3B938]
-data/field/bg/acre/grd_s_c7_s_2/grd_s_c7_s_2.c:
- .data: [0x80D3B938, 0x80D3C800]
-data/field/bg/acre/grd_s_c7_s_3/grd_s_c7_s_3.c:
- .data: [0x80D3C800, 0x80D3D930]
-data/field/bg/acre/grd_s_e1_1/grd_s_e1_1.c:
- .data: [0x80D3D930, 0x80D3DFE0]
-data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1_evw_anime.c:
- .data: [0x80D3DFE0, 0x80D3DFF0]
-data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1.c:
- .data: [0x80D3DFF0, 0x80D3F770]
-data/field/bg/acre/grd_s_e2_1/grd_s_e2_1.c:
- .data: [0x80D3F770, 0x80D3FF08]
-data/field/bg/acre/grd_s_e2_c1_1/grd_s_e2_c1_1.c:
- .data: [0x80D3FF08, 0x80D406C8]
-data/field/bg/acre/grd_s_e2_m_1/grd_s_e2_m_1.c:
- .data: [0x80D406C8, 0x80D40FA0]
-data/field/bg/acre/grd_s_e2_o_1/grd_s_e2_o_1.c:
- .data: [0x80D40FA0, 0x80D41280]
-data/field/bg/acre/grd_s_e2_t_1/grd_s_e2_t_1.c:
- .data: [0x80D41280, 0x80D41DF0]
-data/field/bg/acre/grd_s_e3_1/grd_s_e3_1.c:
- .data: [0x80D41DF0, 0x80D425D8]
-data/field/bg/acre/grd_s_e3_c1_1/grd_s_e3_c1_1.c:
- .data: [0x80D425D8, 0x80D42DB0]
-data/field/bg/acre/grd_s_e3_m_1/grd_s_e3_m_1.c:
- .data: [0x80D42DB0, 0x80D436F8]
-data/field/bg/acre/grd_s_e3_o_1/grd_s_e3_o_1.c:
- .data: [0x80D436F8, 0x80D439D8]
-data/field/bg/acre/grd_s_e3_t_1/grd_s_e3_t_1.c:
- .data: [0x80D439D8, 0x80D44468]
-data/field/bg/acre/grd_s_e4_1/grd_s_e4_1.c:
- .data: [0x80D44468, 0x80D44670]
-data/field/bg/acre/grd_s_e5_1/grd_s_e5_1.c:
- .data: [0x80D44670, 0x80D448A0]
-data/field/bg/acre/grd_s_f_1/grd_s_f_1.c:
- .data: [0x80D448A0, 0x80D455F0]
-data/field/bg/acre/grd_s_f_10/grd_s_f_10.c:
- .data: [0x80D455F0, 0x80D463D8]
-data/field/bg/acre/grd_s_f_2/grd_s_f_2.c:
- .data: [0x80D463D8, 0x80D47320]
-data/field/bg/acre/grd_s_f_3/grd_s_f_3.c:
- .data: [0x80D47320, 0x80D47C78]
-data/field/bg/acre/grd_s_f_4/grd_s_f_4_evw_anime.c:
- .data: [0x80D47C78, 0x80D47C88]
-data/field/bg/acre/grd_s_f_4/grd_s_f_4.c:
- .data: [0x80D47C88, 0x80D48A60]
-data/field/bg/acre/grd_s_f_5/grd_s_f_5_evw_anime.c:
- .data: [0x80D48A60, 0x80D48A70]
-data/field/bg/acre/grd_s_f_5/grd_s_f_5.c:
- .data: [0x80D48A70, 0x80D49C50]
-data/field/bg/acre/grd_s_f_6/grd_s_f_6_evw_anime.c:
- .data: [0x80D49C50, 0x80D49C60]
-data/field/bg/acre/grd_s_f_6/grd_s_f_6.c:
- .data: [0x80D49C60, 0x80D4AE88]
-data/field/bg/acre/grd_s_f_7/grd_s_f_7.c:
- .data: [0x80D4AE88, 0x80D4C640]
-data/field/bg/acre/grd_s_f_8/grd_s_f_8.c:
- .data: [0x80D4C640, 0x80D4D568]
-data/field/bg/acre/grd_s_f_9/grd_s_f_9.c:
- .data: [0x80D4D568, 0x80D4E708]
-data/field/bg/acre/grd_s_f_ko_1/grd_s_f_ko_1.c:
- .data: [0x80D4E708, 0x80D4F808]
-data/field/bg/acre/grd_s_f_ko_2/grd_s_f_ko_2.c:
- .data: [0x80D4F808, 0x80D50490]
-data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3_evw_anime.c:
- .data: [0x80D50490, 0x80D504A0]
-data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3.c:
- .data: [0x80D504A0, 0x80D51708]
-data/field/bg/acre/grd_s_f_mh_1/grd_s_f_mh_1.c:
- .data: [0x80D51708, 0x80D52588]
-data/field/bg/acre/grd_s_f_mh_2/grd_s_f_mh_2.c:
- .data: [0x80D52588, 0x80D534F0]
-data/field/bg/acre/grd_s_f_mh_3/grd_s_f_mh_3.c:
- .data: [0x80D534F0, 0x80D54190]
-data/field/bg/acre/grd_s_f_mu_1/grd_s_f_mu_1.c:
- .data: [0x80D54190, 0x80D54D60]
-data/field/bg/acre/grd_s_f_mu_2/grd_s_f_mu_2.c:
- .data: [0x80D54D60, 0x80D55920]
-data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3_evw_anime.c:
- .data: [0x80D55920, 0x80D55930]
-data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3.c:
- .data: [0x80D55930, 0x80D564B8]
-data/field/bg/acre/grd_s_f_pk_1/grd_s_f_pk_1.c:
- .data: [0x80D564B8, 0x80D575B8]
-data/field/bg/acre/grd_s_f_pk_2/grd_s_f_pk_2.c:
- .data: [0x80D575B8, 0x80D58580]
-data/field/bg/acre/grd_s_f_pk_3/grd_s_f_pk_3.c:
- .data: [0x80D58580, 0x80D59810]
-data/field/bg/acre/grd_s_hole_test/grd_s_hole_test.c:
- .data: [0x80D59810, 0x80D5A9A8]
-data/field/bg/acre/grd_s_il_1/grd_s_il_1.c:
- .data: [0x80D5A9A8, 0x80D5BA18]
-data/field/bg/acre/grd_s_il_2/grd_s_il_2.c:
- .data: [0x80D5BA18, 0x80D5D358]
-data/field/bg/acre/grd_s_il_3/grd_s_il_3.c:
- .data: [0x80D5D358, 0x80D5E4F8]
-data/field/bg/acre/grd_s_il_4/grd_s_il_4.c:
- .data: [0x80D5E4F8, 0x80D5F5E8]
-data/field/bg/acre/grd_s_ir_1/grd_s_ir_1.c:
- .data: [0x80D5F5E8, 0x80D60A60]
-data/field/bg/acre/grd_s_ir_2/grd_s_ir_2.c:
- .data: [0x80D60A60, 0x80D621F8]
-data/field/bg/acre/grd_s_ir_3/grd_s_ir_3.c:
- .data: [0x80D621F8, 0x80D63BB0]
-data/field/bg/acre/grd_s_ir_4/grd_s_ir_4.c:
- .data: [0x80D63BB0, 0x80D65158]
-data/field/bg/acre/grd_s_m_1/grd_s_m_1.c:
- .data: [0x80D65158, 0x80D662B0]
-data/field/bg/acre/grd_s_m_10/grd_s_m_10.c:
- .data: [0x80D662B0, 0x80D67438]
-data/field/bg/acre/grd_s_m_2/grd_s_m_2.c:
- .data: [0x80D67438, 0x80D68718]
-data/field/bg/acre/grd_s_m_3/grd_s_m_3.c:
- .data: [0x80D68718, 0x80D698C8]
-data/field/bg/acre/grd_s_m_4/grd_s_m_4.c:
- .data: [0x80D698C8, 0x80D6A8A0]
-data/field/bg/acre/grd_s_m_5/grd_s_m_5.c:
- .data: [0x80D6A8A0, 0x80D6BC70]
-data/field/bg/acre/grd_s_m_6/grd_s_m_6.c:
- .data: [0x80D6BC70, 0x80D6CF60]
-data/field/bg/acre/grd_s_m_7/grd_s_m_7.c:
- .data: [0x80D6CF60, 0x80D6DF60]
-data/field/bg/acre/grd_s_m_8/grd_s_m_8.c:
- .data: [0x80D6DF60, 0x80D6EFE8]
-data/field/bg/acre/grd_s_m_9/grd_s_m_9.c:
- .data: [0x80D6EFE8, 0x80D6FF58]
-data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1_evw_anime.c:
- .data: [0x80D6FF58, 0x80D6FF78]
-data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1.c:
- .data: [0x80D6FF78, 0x80D713D8]
-data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2_evw_anime.c:
- .data: [0x80D713D8, 0x80D713F8]
-data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2.c:
- .data: [0x80D713F8, 0x80D727B8]
-data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3_evw_anime.c:
- .data: [0x80D727B8, 0x80D727D8]
-data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3.c:
- .data: [0x80D727D8, 0x80D73A30]
-data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4_evw_anime.c:
- .data: [0x80D73A30, 0x80D73A50]
-data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4.c:
- .data: [0x80D73A50, 0x80D74FD8]
-data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5_evw_anime.c:
- .data: [0x80D74FD8, 0x80D74FF8]
-data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5.c:
- .data: [0x80D74FF8, 0x80D76660]
-data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1_evw_anime.c:
- .data: [0x80D76660, 0x80D76680]
-data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1.c:
- .data: [0x80D76680, 0x80D77908]
-data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2_evw_anime.c:
- .data: [0x80D77908, 0x80D77928]
-data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2.c:
- .data: [0x80D77928, 0x80D78F10]
-data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3_evw_anime.c:
- .data: [0x80D78F10, 0x80D78F30]
-data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3.c:
- .data: [0x80D78F30, 0x80D7A350]
-data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1_evw_anime.c:
- .data: [0x80D7A350, 0x80D7A370]
-data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1.c:
- .data: [0x80D7A370, 0x80D7B6C8]
-data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2_evw_anime.c:
- .data: [0x80D7B6C8, 0x80D7B6E8]
-data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2.c:
- .data: [0x80D7B6E8, 0x80D7C900]
-data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3_evw_anime.c:
- .data: [0x80D7C900, 0x80D7C920]
-data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3.c:
- .data: [0x80D7C920, 0x80D7DC70]
-data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1_evw_anime.c:
- .data: [0x80D7DC70, 0x80D7DCB0]
-data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1.c:
- .data: [0x80D7DCB0, 0x80D7F310]
-data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2_evw_anime.c:
- .data: [0x80D7F310, 0x80D7F350]
-data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2.c:
- .data: [0x80D7F350, 0x80D81008]
-data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3_evw_anime.c:
- .data: [0x80D81008, 0x80D81048]
-data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3.c:
- .data: [0x80D81048, 0x80D82780]
-data/field/bg/acre/grd_s_o_1/grd_s_o_1_evw_anime.c:
- .data: [0x80D82780, 0x80D827C0]
-data/field/bg/acre/grd_s_o_1/grd_s_o_1.c:
- .data: [0x80D827C0, 0x80D82CA0]
-data/field/bg/acre/grd_s_o_10/grd_s_o_10_evw_anime.c:
- .data: [0x80D82CA0, 0x80D82CE0]
-data/field/bg/acre/grd_s_o_10/grd_s_o_10.c:
- .data: [0x80D82CE0, 0x80D83178]
-data/field/bg/acre/grd_s_o_2/grd_s_o_2_evw_anime.c:
- .data: [0x80D83178, 0x80D831B8]
-data/field/bg/acre/grd_s_o_2/grd_s_o_2.c:
- .data: [0x80D831B8, 0x80D83658]
-data/field/bg/acre/grd_s_o_3/grd_s_o_3_evw_anime.c:
- .data: [0x80D83658, 0x80D83698]
-data/field/bg/acre/grd_s_o_3/grd_s_o_3.c:
- .data: [0x80D83698, 0x80D83B00]
-data/field/bg/acre/grd_s_o_4/grd_s_o_4_evw_anime.c:
- .data: [0x80D83B00, 0x80D83B40]
-data/field/bg/acre/grd_s_o_4/grd_s_o_4.c:
- .data: [0x80D83B40, 0x80D83FD0]
-data/field/bg/acre/grd_s_o_5/grd_s_o_5_evw_anime.c:
- .data: [0x80D83FD0, 0x80D84010]
-data/field/bg/acre/grd_s_o_5/grd_s_o_5.c:
- .data: [0x80D84010, 0x80D84490]
-data/field/bg/acre/grd_s_o_6/grd_s_o_6_evw_anime.c:
- .data: [0x80D84490, 0x80D844D0]
-data/field/bg/acre/grd_s_o_6/grd_s_o_6.c:
- .data: [0x80D844D0, 0x80D84938]
-data/field/bg/acre/grd_s_o_7/grd_s_o_7_evw_anime.c:
- .data: [0x80D84938, 0x80D84978]
-data/field/bg/acre/grd_s_o_7/grd_s_o_7.c:
- .data: [0x80D84978, 0x80D84E08]
-data/field/bg/acre/grd_s_o_8/grd_s_o_8_evw_anime.c:
- .data: [0x80D84E08, 0x80D84E48]
-data/field/bg/acre/grd_s_o_8/grd_s_o_8.c:
- .data: [0x80D84E48, 0x80D85338]
-data/field/bg/acre/grd_s_o_9/grd_s_o_9_evw_anime.c:
- .data: [0x80D85338, 0x80D85378]
-data/field/bg/acre/grd_s_o_9/grd_s_o_9.c:
- .data: [0x80D85378, 0x80D85850]
-data/field/bg/acre/grd_s_o_i_1/grd_s_o_i_1.c:
- .data: [0x80D85850, 0x80D85CB0]
-data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2_evw_anime.c:
- .data: [0x80D85CB0, 0x80D85CF0]
-data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2.c:
- .data: [0x80D85CF0, 0x80D85FD0]
-data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1_evw_anime.c:
- .data: [0x80D85FD0, 0x80D86010]
-data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1.c:
- .data: [0x80D86010, 0x80D86520]
-data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2_evw_anime.c:
- .data: [0x80D86520, 0x80D86560]
-data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2.c:
- .data: [0x80D86560, 0x80D86A40]
-data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3_evw_anime.c:
- .data: [0x80D86A40, 0x80D86A80]
-data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3.c:
- .data: [0x80D86A80, 0x80D86F78]
-data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4_evw_anime.c:
- .data: [0x80D86F78, 0x80D86FB8]
-data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4.c:
- .data: [0x80D86FB8, 0x80D87478]
-data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5_evw_anime.c:
- .data: [0x80D87478, 0x80D874B8]
-data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5.c:
- .data: [0x80D874B8, 0x80D87890]
-data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1_evw_anime.c:
- .data: [0x80D87890, 0x80D878D0]
-data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1.c:
- .data: [0x80D878D0, 0x80D87BB0]
-data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2_evw_anime.c:
- .data: [0x80D87BB0, 0x80D87BF0]
-data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2.c:
- .data: [0x80D87BF0, 0x80D87EC8]
-data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3_evw_anime.c:
- .data: [0x80D87EC8, 0x80D87F08]
-data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3.c:
- .data: [0x80D87F08, 0x80D881E0]
-data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1_evw_anime.c:
- .data: [0x80D881E0, 0x80D88220]
-data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1.c:
- .data: [0x80D88220, 0x80D88728]
-data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2_evw_anime.c:
- .data: [0x80D88728, 0x80D88768]
-data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2.c:
- .data: [0x80D88768, 0x80D88B70]
-data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3_evw_anime.c:
- .data: [0x80D88B70, 0x80D88BB0]
-data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3.c:
- .data: [0x80D88BB0, 0x80D88FC8]
-data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1_evw_anime.c:
- .data: [0x80D88FC8, 0x80D89008]
-data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1.c:
- .data: [0x80D89008, 0x80D89538]
-data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2_evw_anime.c:
- .data: [0x80D89538, 0x80D89578]
-data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2.c:
- .data: [0x80D89578, 0x80D89AD8]
-data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3_evw_anime.c:
- .data: [0x80D89AD8, 0x80D89B18]
-data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3.c:
- .data: [0x80D89B18, 0x80D8A030]
-data/field/bg/acre/grd_s_r1_1/grd_s_r1_1_evw_anime.c:
- .data: [0x80D8A030, 0x80D8A040]
-data/field/bg/acre/grd_s_r1_1/grd_s_r1_1.c:
- .data: [0x80D8A040, 0x80D8AE28]
-data/field/bg/acre/grd_s_r1_2/grd_s_r1_2_evw_anime.c:
- .data: [0x80D8AE28, 0x80D8AE38]
-data/field/bg/acre/grd_s_r1_2/grd_s_r1_2.c:
- .data: [0x80D8AE38, 0x80D8BD60]
-data/field/bg/acre/grd_s_r1_3/grd_s_r1_3_evw_anime.c:
- .data: [0x80D8BD60, 0x80D8BD70]
-data/field/bg/acre/grd_s_r1_3/grd_s_r1_3.c:
- .data: [0x80D8BD70, 0x80D8CD90]
-data/field/bg/acre/grd_s_r1_4/grd_s_r1_4_evw_anime.c:
- .data: [0x80D8CD90, 0x80D8CDA0]
-data/field/bg/acre/grd_s_r1_4/grd_s_r1_4.c:
- .data: [0x80D8CDA0, 0x80D8DAA8]
-data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1_evw_anime.c:
- .data: [0x80D8DAA8, 0x80D8DAB8]
-data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1.c:
- .data: [0x80D8DAB8, 0x80D8EAE0]
-data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2_evw_anime.c:
- .data: [0x80D8EAE0, 0x80D8EAF0]
-data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2.c:
- .data: [0x80D8EAF0, 0x80D8FF20]
-data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3_evw_anime.c:
- .data: [0x80D8FF20, 0x80D8FF30]
-data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3.c:
- .data: [0x80D8FF30, 0x80D91210]
-data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1_evw_anime.c:
- .data: [0x80D91210, 0x80D91220]
-data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1.c:
- .data: [0x80D91220, 0x80D924B0]
-data/field/bg/acre/grd_s_r2_1/grd_s_r2_1_evw_anime.c:
- .data: [0x80D924B0, 0x80D924C0]
-data/field/bg/acre/grd_s_r2_1/grd_s_r2_1.c:
- .data: [0x80D924C0, 0x80D932D8]
-data/field/bg/acre/grd_s_r2_2/grd_s_r2_2_evw_anime.c:
- .data: [0x80D932D8, 0x80D932E8]
-data/field/bg/acre/grd_s_r2_2/grd_s_r2_2.c:
- .data: [0x80D932E8, 0x80D94138]
-data/field/bg/acre/grd_s_r2_3/grd_s_r2_3_evw_anime.c:
- .data: [0x80D94138, 0x80D94148]
-data/field/bg/acre/grd_s_r2_3/grd_s_r2_3.c:
- .data: [0x80D94148, 0x80D951A8]
-data/field/bg/acre/grd_s_r2_4/grd_s_r2_4_evw_anime.c:
- .data: [0x80D951A8, 0x80D951B8]
-data/field/bg/acre/grd_s_r2_4/grd_s_r2_4.c:
- .data: [0x80D951B8, 0x80D961C0]
-data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1_evw_anime.c:
- .data: [0x80D961C0, 0x80D961D0]
-data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1.c:
- .data: [0x80D961D0, 0x80D97800]
-data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2_evw_anime.c:
- .data: [0x80D97800, 0x80D97810]
-data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2.c:
- .data: [0x80D97810, 0x80D98B68]
-data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3_evw_anime.c:
- .data: [0x80D98B68, 0x80D98B78]
-data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3.c:
- .data: [0x80D98B78, 0x80D9A060]
-data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1_evw_anime.c:
- .data: [0x80D9A060, 0x80D9A070]
-data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1.c:
- .data: [0x80D9A070, 0x80D9B8D0]
-data/field/bg/acre/grd_s_r3_1/grd_s_r3_1_evw_anime.c:
- .data: [0x80D9B8D0, 0x80D9B8E0]
-data/field/bg/acre/grd_s_r3_1/grd_s_r3_1.c:
- .data: [0x80D9B8E0, 0x80D9C978]
-data/field/bg/acre/grd_s_r3_2/grd_s_r3_2_evw_anime.c:
- .data: [0x80D9C978, 0x80D9C988]
-data/field/bg/acre/grd_s_r3_2/grd_s_r3_2.c:
- .data: [0x80D9C988, 0x80D9D878]
-data/field/bg/acre/grd_s_r3_3/grd_s_r3_3_evw_anime.c:
- .data: [0x80D9D878, 0x80D9D888]
-data/field/bg/acre/grd_s_r3_3/grd_s_r3_3.c:
- .data: [0x80D9D888, 0x80D9E7C0]
-data/field/bg/acre/grd_s_r3_4/grd_s_r3_4_evw_anime.c:
- .data: [0x80D9E7C0, 0x80D9E7D0]
-data/field/bg/acre/grd_s_r3_4/grd_s_r3_4.c:
- .data: [0x80D9E7D0, 0x80D9F620]
-data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1_evw_anime.c:
- .data: [0x80D9F620, 0x80D9F630]
-data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1.c:
- .data: [0x80D9F630, 0x80DA0818]
-data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2_evw_anime.c:
- .data: [0x80DA0818, 0x80DA0828]
-data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2.c:
- .data: [0x80DA0828, 0x80DA1D40]
-data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3_evw_anime.c:
- .data: [0x80DA1D40, 0x80DA1D50]
-data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3.c:
- .data: [0x80DA1D50, 0x80DA3170]
-data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1_evw_anime.c:
- .data: [0x80DA3170, 0x80DA3180]
-data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1.c:
- .data: [0x80DA3180, 0x80DA4820]
-data/field/bg/acre/grd_s_r4_1/grd_s_r4_1_evw_anime.c:
- .data: [0x80DA4820, 0x80DA4830]
-data/field/bg/acre/grd_s_r4_1/grd_s_r4_1.c:
- .data: [0x80DA4830, 0x80DA5758]
-data/field/bg/acre/grd_s_r4_2/grd_s_r4_2_evw_anime.c:
- .data: [0x80DA5758, 0x80DA5768]
-data/field/bg/acre/grd_s_r4_2/grd_s_r4_2.c:
- .data: [0x80DA5768, 0x80DA66D0]
-data/field/bg/acre/grd_s_r4_3/grd_s_r4_3_evw_anime.c:
- .data: [0x80DA66D0, 0x80DA66E0]
-data/field/bg/acre/grd_s_r4_3/grd_s_r4_3.c:
- .data: [0x80DA66E0, 0x80DA74F8]
-data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1_evw_anime.c:
- .data: [0x80DA74F8, 0x80DA7508]
-data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1.c:
- .data: [0x80DA7508, 0x80DA81F8]
-data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2_evw_anime.c:
- .data: [0x80DA81F8, 0x80DA8208]
-data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2.c:
- .data: [0x80DA8208, 0x80DA93D8]
-data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1_evw_anime.c:
- .data: [0x80DA93D8, 0x80DA93E8]
-data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1.c:
- .data: [0x80DA93E8, 0x80DAA928]
-data/field/bg/acre/grd_s_r5_1/grd_s_r5_1_evw_anime.c:
- .data: [0x80DAA928, 0x80DAA938]
-data/field/bg/acre/grd_s_r5_1/grd_s_r5_1.c:
- .data: [0x80DAA938, 0x80DAB920]
-data/field/bg/acre/grd_s_r5_2/grd_s_r5_2_evw_anime.c:
- .data: [0x80DAB920, 0x80DAB930]
-data/field/bg/acre/grd_s_r5_2/grd_s_r5_2.c:
- .data: [0x80DAB930, 0x80DACA10]
-data/field/bg/acre/grd_s_r5_3/grd_s_r5_3_evw_anime.c:
- .data: [0x80DACA10, 0x80DACA20]
-data/field/bg/acre/grd_s_r5_3/grd_s_r5_3.c:
- .data: [0x80DACA20, 0x80DADAC8]
-data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1_evw_anime.c:
- .data: [0x80DADAC8, 0x80DADAD8]
-data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1.c:
- .data: [0x80DADAD8, 0x80DAED98]
-data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2_evw_anime.c:
- .data: [0x80DAED98, 0x80DAEDA8]
-data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2.c:
- .data: [0x80DAEDA8, 0x80DB00A0]
-data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1_evw_anime.c:
- .data: [0x80DB00A0, 0x80DB00B0]
-data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1.c:
- .data: [0x80DB00B0, 0x80DB1530]
-data/field/bg/acre/grd_s_r6_1/grd_s_r6_1_evw_anime.c:
- .data: [0x80DB1530, 0x80DB1540]
-data/field/bg/acre/grd_s_r6_1/grd_s_r6_1.c:
- .data: [0x80DB1540, 0x80DB2258]
-data/field/bg/acre/grd_s_r6_2/grd_s_r6_2_evw_anime.c:
- .data: [0x80DB2258, 0x80DB2268]
-data/field/bg/acre/grd_s_r6_2/grd_s_r6_2.c:
- .data: [0x80DB2268, 0x80DB2FE8]
-data/field/bg/acre/grd_s_r6_3/grd_s_r6_3_evw_anime.c:
- .data: [0x80DB2FE8, 0x80DB2FF8]
-data/field/bg/acre/grd_s_r6_3/grd_s_r6_3.c:
- .data: [0x80DB2FF8, 0x80DB3D60]
-data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1_evw_anime.c:
- .data: [0x80DB3D60, 0x80DB3D70]
-data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1.c:
- .data: [0x80DB3D70, 0x80DB4BD8]
-data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2_evw_anime.c:
- .data: [0x80DB4BD8, 0x80DB4BE8]
-data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2.c:
- .data: [0x80DB4BE8, 0x80DB6128]
-data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1_evw_anime.c:
- .data: [0x80DB6128, 0x80DB6138]
-data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1.c:
- .data: [0x80DB6138, 0x80DB77A8]
-data/field/bg/acre/grd_s_r7_1/grd_s_r7_1_evw_anime.c:
- .data: [0x80DB77A8, 0x80DB77B8]
-data/field/bg/acre/grd_s_r7_1/grd_s_r7_1.c:
- .data: [0x80DB77B8, 0x80DB86A0]
-data/field/bg/acre/grd_s_r7_2/grd_s_r7_2_evw_anime.c:
- .data: [0x80DB86A0, 0x80DB86B0]
-data/field/bg/acre/grd_s_r7_2/grd_s_r7_2.c:
- .data: [0x80DB86B0, 0x80DB94B0]
-data/field/bg/acre/grd_s_r7_3/grd_s_r7_3_evw_anime.c:
- .data: [0x80DB94B0, 0x80DB94C0]
-data/field/bg/acre/grd_s_r7_3/grd_s_r7_3.c:
- .data: [0x80DB94C0, 0x80DBA258]
-data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1_evw_anime.c:
- .data: [0x80DBA258, 0x80DBA268]
-data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1.c:
- .data: [0x80DBA268, 0x80DBB218]
-data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2_evw_anime.c:
- .data: [0x80DBB218, 0x80DBB228]
-data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2.c:
- .data: [0x80DBB228, 0x80DBC7C0]
-data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1_evw_anime.c:
- .data: [0x80DBC7C0, 0x80DBC7D0]
-data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1.c:
- .data: [0x80DBC7D0, 0x80DBDBE8]
-data/field/bg/acre/grd_s_t_1/grd_s_t_1_evw_anime.c:
- .data: [0x80DBDBE8, 0x80DBDBF8]
-data/field/bg/acre/grd_s_t_1/grd_s_t_1.c:
- .data: [0x80DBDBF8, 0x80DBE858]
-data/field/bg/acre/grd_s_t_10/grd_s_t_10.c:
- .data: [0x80DBE858, 0x80DBF8F8]
-data/field/bg/acre/grd_s_t_2/grd_s_t_2.c:
- .data: [0x80DBF8F8, 0x80DC0808]
-data/field/bg/acre/grd_s_t_3/grd_s_t_3.c:
- .data: [0x80DC0808, 0x80DC1368]
-data/field/bg/acre/grd_s_t_4/grd_s_t_4_evw_anime.c:
- .data: [0x80DC1368, 0x80DC1378]
-data/field/bg/acre/grd_s_t_4/grd_s_t_4.c:
- .data: [0x80DC1378, 0x80DC24F0]
-data/field/bg/acre/grd_s_t_5/grd_s_t_5_evw_anime.c:
- .data: [0x80DC24F0, 0x80DC2500]
-data/field/bg/acre/grd_s_t_5/grd_s_t_5.c:
- .data: [0x80DC2500, 0x80DC3770]
-data/field/bg/acre/grd_s_t_6/grd_s_t_6.c:
- .data: [0x80DC3770, 0x80DC4B78]
-data/field/bg/acre/grd_s_t_7/grd_s_t_7.c:
- .data: [0x80DC4B78, 0x80DC5F48]
-data/field/bg/acre/grd_s_t_8/grd_s_t_8.c:
- .data: [0x80DC5F48, 0x80DC6DA8]
-data/field/bg/acre/grd_s_t_9/grd_s_t_9.c:
- .data: [0x80DC6DA8, 0x80DC7C88]
-data/field/bg/acre/grd_s_t_po_1/grd_s_t_po_1.c:
- .data: [0x80DC7C88, 0x80DC8918]
-data/field/bg/acre/grd_s_t_po_2/grd_s_t_po_2.c:
- .data: [0x80DC8918, 0x80DC9568]
-data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3_evw_anime.c:
- .data: [0x80DC9568, 0x80DC9578]
-data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3.c:
- .data: [0x80DC9578, 0x80DCA6D0]
-data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1_evw_anime.c:
- .data: [0x80DCA6D0, 0x80DCA6E0]
-data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1.c:
- .data: [0x80DCA6E0, 0x80DCB8D8]
-data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2_evw_anime.c:
- .data: [0x80DCB8D8, 0x80DCB8E8]
-data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2.c:
- .data: [0x80DCB8E8, 0x80DCCD68]
-data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3_evw_anime.c:
- .data: [0x80DCCD68, 0x80DCCD78]
-data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3.c:
- .data: [0x80DCCD78, 0x80DCE220]
-data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4_evw_anime.c:
- .data: [0x80DCE220, 0x80DCE230]
-data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4.c:
- .data: [0x80DCE230, 0x80DCF578]
-data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5_evw_anime.c:
- .data: [0x80DCF578, 0x80DCF588]
-data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5.c:
- .data: [0x80DCF588, 0x80DD0A38]
-data/field/bg/acre/grd_s_t_sh_1/grd_s_t_sh_1.c:
- .data: [0x80DD0A38, 0x80DD1668]
-data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2_evw_anime.c:
- .data: [0x80DD1668, 0x80DD1678]
-data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2.c:
- .data: [0x80DD1678, 0x80DD2610]
-data/field/bg/acre/grd_s_t_sh_3/grd_s_t_sh_3.c:
- .data: [0x80DD2610, 0x80DD3270]
-data/field/bg/acre/grd_s_t_st1_1/grd_s_t_st1_1.c:
- .data: [0x80DD3270, 0x80DD40F0]
-data/field/bg/acre/grd_s_t_st1_2/grd_s_t_st1_2.c:
- .data: [0x80DD40F0, 0x80DD5280]
-data/field/bg/acre/grd_s_t_st1_3/grd_s_t_st1_3.c:
- .data: [0x80DD5280, 0x80DD61A0]
-data/field/bg/acre/rom_toudai/rom_toudai.c:
- .data: [0x80F08520, 0x80F0B020]
-
-# map submenu
-data/submenu/map/kan_tizu.c:
- .data: [0x80F0B020, 0x80F11C20]
-data/submenu/map/kan_tizu2.c:
- .data: [0x80F11C20, 0x80F13A20]
-data/field/bg/acre/rom_museum1/rom_museum1.c:
- .data: [0x80F13AA0, 0x80F19D68]
-data/field/bg/acre/rom_museum5/rom_museum5.c:
- .data: [0x80F19DC0, 0x80F1CCA0]
-data/field/bg/acre/rom_museum2/rom_museum2.c:
- .data: [0x80F1D5C0, 0x80F20B58]
-data/field/bg/acre/rom_museum3/rom_museum3.c:
- .data: [0x80F23E40, 0x80F27E18]
-data/field/bg/acre/rom_tailor/rom_tailor.c:
- .data: [0x80F29260, 0x80F31FB0]
-data/field/bg/acre/myr_etc/myr_etc.c:
- .data: [0x80F84780, 0x80F85720]
-data/field/bg/acre/grd_player_select/grd_player_select_evw_anime.c:
- .data: [0x80F85720, 0x80F85740]
-data/field/bg/acre/grd_player_select/grd_player_select.c:
- .data: [0x80F85740, 0x80F86FA0]
-data/field/bg/acre/police_indoor/police_indoor.c:
- .data: [0x80F86FA0, 0x80F8C2C8]
-data/field/bg/rail_pal.c:
- .data: [0x80F8C2C8, 0x80F8C460]
-data/field/bg/acre/rom_shop4_1/rom_shop4_1.c:
- .data: [0x80F9FF80, 0x80FA6400]
-data/field/bg/acre/rom_shop4_fuku/rom_shop4_fuku.c:
- .data: [0x80FA6400, 0x80FACE20]
-data/field/bg/acre/rom_tent/rom_tent.c:
- .data: [0x811007A0, 0x81104FE0]
-data/field/bg/acre/room01/room01.c:
- .data: [0x81104FE0, 0x81106C68]
-data/field/bg/acre/rom_train_in/rom_train_in.c:
- .data: [0x81106D40, 0x8110CE00]
-data/field/bg/acre/rom_uranai/rom_uranai_evw_anime.c:
- .data: [0x8110F600, 0x8110F620]
-data/field/bg/acre/rom_uranai/rom_uranai.c:
- .data: [0x8110F620, 0x81115868]
-m_bg_tex.c:
- .bss: [0x8125AC80, 0x81263080]
-sys_stacks.c:
- .bss: [0x812F5670, 0x812F9670]
-sys_dynamic.c:
- .bss: [0x813413F8, 0x81361820]
diff --git a/config/symbols.yml b/config/symbols.yml
deleted file mode 100644
index 1099f0f5..00000000
--- a/config/symbols.yml
+++ /dev/null
@@ -1,58203 +0,0 @@
-global:
- 0x80003100: __check_pad3
- 0x80003140: __start
- 0x80003278: __init_registers
- 0x80003294: __init_data
- 0x80003354: __init_hardware
- 0x80003374: __flush_cache
- 0x800033a8: memset
- 0x800033d8: __fill_mem
- 0x80003490: memcpy
- 0x800034e0: TRK_memset
- 0x80003510: TRK_memcpy
- 0x80003534: gTRKInterruptVectorTable
- 0x80005468: __TRK_reset
- 0x800056c0: soundArenaAlloc
- 0x800056c8: search_partial_address
- 0x80005788: convert_partial_address
- 0x800057e8: LoadStringTable
- 0x80005870: UnLink
- 0x80005904: LoadLink
- 0x80005aa8: audioFatalCallback
- 0x80005ad8: sound_initial
- 0x80005b64: sound_initial2
- 0x80005bac: HotResetIplMenu
- 0x80005bfc: fault_callback_keyCheck
- 0x80005c90: fault_callback_OK
- 0x80005cc4: fault_callback_Setumei
- 0x80005cf0: fault_callback_vimode
- 0x80005dc0: fault_callback_scroll
- 0x80006004: adjustOSArena
- 0x800060f8: main
- 0x8000663c: ReportDiskID__Fv
- 0x8000665c: JW_UpdateVideoMode
- 0x800067b4: JW_SetProgressiveMode
- 0x800067e8: JW_SetLowResoMode
- 0x8000681c: JW_SetFamicomMode
- 0x80006850: JW_SetVideoPan
- 0x800068b4: JW_SetLogoMode
- 0x800068e8: JW_JUTGamePad_read
- 0x80006988: JW_getPadStatus
- 0x80006a08: JW_JUTGamepad_getErrorStatus
- 0x80006a1c: JW_JUTGamepad_getButton
- 0x80006a2c: JW_JUTGamepad_getTrigger
- 0x80006a3c: JW_JUTGamepad_getSubStickValue
- 0x80006a4c: JW_JUTGamepad_getSubStickAngle
- 0x80006a5c: JW_BeginFrame
- 0x80006b08: JW_EndFrame
- 0x80006b38: JW_setClearColor
- 0x80006bd4: JW_GetAramAddress
- 0x80006c74: _JW_GetResourceAram
- 0x80006ca8: JW_GetResSizeFileNo
- 0x80006d60: JW_Init
- 0x80006f30: JW_Init2
- 0x80006fe8: JW_Init3
- 0x80007040: JW_Cleanup
- 0x800070f8: __sinit_jsyswrap_cpp
- 0x80007188: step0_make_dl
- 0x80007348: make_dl_nintendo_logo
- 0x80007438: step1_make_dl
- 0x80007534: step2_make_dl
- 0x80007598: make_dl
- 0x80007628: exec_dl
- 0x80007660: keycheck
- 0x80007a20: proc
- 0x80007c6c: my_alloc
- 0x80007c90: my_free
- 0x80007cb0: initial_menu_init
- 0x80007da8: initial_menu_cleanup
- 0x80007e58: dvderr_exec_dl
- 0x80007e90: dvderr_check_drive
- 0x80007f2c: dvderr_draw_CoverOpen
- 0x80007f78: dvderr_draw_NoDisk
- 0x80007fc4: dvderr_draw_WrongDisk
- 0x80008010: dvderr_draw_Retry
- 0x8000805c: dvderr_draw_Fatal
- 0x800080a8: dvderr_mtx_set
- 0x800080e8: dvderr_move_up
- 0x8000814c: dvderr_move_down
- 0x800081a0: dvderr_move_wait
- 0x800081c8: dvderr_move
- 0x800081fc: dvderr_draw
- 0x80008304: dvderr_init
- 0x800083f8: Probe_Start
- 0x800083fc: Probe_Finish
- 0x80008400: Jac_Start__FPvUlUl
- 0x8000844c: Jac_PlayInit__Fv
- 0x80008480: __GetWave_Pulse__Fll
- 0x80008600: __PitchTo32_VRC_C__FUs
- 0x80008660: __PitchTo32_VRC_PULSE__FUs
- 0x800086c0: __PitchTo32_HVC__FUs
- 0x80008720: __Sound_Write_VRC__FUsUc
- 0x800089c0: __Sound_Write_MMC5__FUsUc
- 0x80008c80: __Sound_Write_A__FUsUc
- 0x80008ec0: __ProcessSoundA__Fv
- 0x80009340: __Sound_Write_B__FUsUc
- 0x80009580: __ProcessSoundB__Fv
- 0x800099e0: __PitchTo32_HVC_D__FUs
- 0x80009a00: __Sound_Write_D__FUsUc
- 0x80009c60: __GetNoise__FUl
- 0x80009d00: __ProcessSoundD__Fv
- 0x80009ec0: MoveDeltaCounter__FUc
- 0x80009f00: MoveBias__Fv
- 0x80009f60: WriteBias__FUs
- 0x80009f80: MoveVoltage__Fv
- 0x8000a020: __PitchTo32_HVC_E__FUs
- 0x8000a040: __Sound_Write_E__FUsUc
- 0x8000a120: StartE__Fv
- 0x8000a160: __ProcessSoundE__Fv
- 0x8000a2c0: __GetWave_Triangle__Fl
- 0x8000a2e0: __PitchTo32_HVC_C__FUs
- 0x8000a360: __Sound_Write_C__FUsUc
- 0x8000a620: __ProcessSoundC__Fv
- 0x8000a820: __CreateDiskSubWave__Fv
- 0x8000a880: __PitchTo32_DISKFM__FUs
- 0x8000a8e0: __Sound_Write_Disk__FUsUc
- 0x8000ac60: HS_Event_Reset__Fv
- 0x8000aca0: HS_Event_Update__Fv
- 0x8000ad00: HS_Event_Write__FUsUc
- 0x8000af40: ProcessPhaseCounter__Fv
- 0x8000afc0: ForceProcessPhaseCounter__Fv
- 0x8000b000: Sound_Make_HVC__FlPs
- 0x8000b120: Buffer_Reset__Fv
- 0x8000b160: Sample_Copy__FUsPs
- 0x8000b240: Sound_Write
- 0x8000b420: Sound_Reset
- 0x8000b580: __FrameCallback__Fl
- 0x8000b6c0: EmuSound_Start
- 0x8000b720: EmuSound_Exit
- 0x8000b740: Sound_Read
- 0x8000b8c0: Sound_SetC000
- 0x8000b8e0: Sound_SetE000
- 0x8000b900: Sound_SetMMC
- 0x8000b940: Sound_PlayMENUPCM
- 0x8000b960: __Sound_Write_HVC__FUsUc
- 0x8000baf0: OSAttention
- 0x8000bb84: __OK__FUl
- 0x8000bbd4: dummy_callback__FPcUlUlPUlP7jaheap_
- 0x8000bc6c: BootSound__FUlUl
- 0x8000bd0c: Sou_lev_ongen_data_struct_clear__Fv
- 0x8000c114: Sou_BgmFadeoutEndCheck__Fv
- 0x8000c16c: Sou_BgmTenkiConv__FUc
- 0x8000c2d0: Sou_GroupControl__FUcUcf
- 0x8000c3a8: Sou_GroupControl_MD__FUcUcf
- 0x8000c480: pan_kochou__FUcf
- 0x8000c538: angle2pan__FUsf
- 0x8000c5f0: distance2vol__Ff
- 0x8000c66c: distance2vol4KITEKI
- 0x8000c6c8: distance2vol4MD
- 0x8000c744: Sou_VoiceStart__FUcUc
- 0x8000c784: Sou_TrgStart__FUsfffUcUcf
- 0x8000cdf0: Sou_SpecialRoutine00__Fv
- 0x8000ce98: Sou_SpecialRoutine02__Fv
- 0x8000cec8: Sou_SpecialRoutine03__Fv
- 0x8000cef8: Sou_TrgEndCheck__Fv
- 0x8000d020: Sou_LevStart__FUcUc
- 0x8000d234: Sou_LevStop__FUcUc
- 0x8000dd20: Sou_TrgMake__FUc
- 0x8000de8c: Sou_VoiceMake__FUc
- 0x8000e004: Sou_LevMake__FUc
- 0x8000e228: Sou_ChimeMake__Fv
- 0x8000e294: Sou_LevSet__FUc
- 0x8000eb10: Sou_Insect_Lev_Cont__Fv
- 0x8000ec3c: Sou_Ongen_Lev_Cont__Fv
- 0x8000f2b4: Sou_Ongen_Lev_Prog__FUc
- 0x8000f8e0: Sou_BgmStart__FUcUs
- 0x8000fa94: Sou_BGMVolMove__Fv
- 0x8000fd3c: Sou_Na_BgmStart__FUc
- 0x8000fdb4: Sou_Na_BgmStop__FUs
- 0x8000fe14: Sou_SpecialRoutine06__Fv
- 0x8000ff1c: Sou_SpecialRoutine07__Fv
- 0x8000ff38: Sou_SeFadeoutRoutine__Fv
- 0x80010178: Sou_SeFadeinRoutine__Fv
- 0x800103b8: Sou_SeVolumeReset__Fv
- 0x80010460: Sou_SeTrFadeout__FUcUs
- 0x80010498: Sou_SeFadeout__FUs
- 0x800104f4: Sou_SpecialRoutine08__Fv
- 0x8001051c: Sou_SpecialRoutine10__Fv
- 0x80010580: Sou_InitAudio__Fv
- 0x800109f8: __as__11SOU_SE_FADEFRC11SOU_SE_FADE
- 0x80010a24: __as__12SOU_ROOM_INSFRC12SOU_ROOM_INS
- 0x80010a50: __as__11SOU_SYS_LEVFRC11SOU_SYS_LEV
- 0x80010a6c: __as__15SOU_ONGEN_ENTRYFRC15SOU_ONGEN_ENTRY
- 0x80010aa8: __as__18SOU_LEV_ONGEN_DATAFRC18SOU_LEV_ONGEN_DATA
- 0x80010af4: __as__12SOU_LS_STACKFRC12SOU_LS_STACK
- 0x80010b38: __as__10SOU_LEV_SEFRC10SOU_LEV_SE
- 0x80010bac: __as__12SOU_VOICE_SEFRC12SOU_VOICE_SE
- 0x80010c00: __as__10SOU_TRG_SEFRC10SOU_TRG_SE
- 0x80010c64: Sou_DVD_Error__FPcPUc
- 0x80010c8c: Na_InitAudio
- 0x80010d1c: Na_GameFrame
- 0x80010e70: Na_Reset
- 0x80010e94: Na_SoftReset
- 0x80011158: Na_Tenki
- 0x80011170: Na_BgmStart
- 0x80011190: Na_BgmCrossfadeStart
- 0x800111a0: Na_BgmStop
- 0x800111b0: Na_SysTrgStart
- 0x80011330: Sou_WalkSe__FUsUsfUcf
- 0x800114dc: Na_PlyWalkSe
- 0x80011584: Na_PlyWalkSeRoom
- 0x8001169c: Na_NpcWalkSe
- 0x80011718: Na_NpcWalkSeRoom
- 0x800117f0: Na_PlayerStatusLevel
- 0x800117fc: Sou_TanboinHenkan__FUcUc
- 0x8001196c: Sou_ChouboinHenkan__FUcUc
- 0x80011adc: Sou_ConnectCheck__FUcUcUc
- 0x80011ee0: Sou_BoinShiinCheck__FUc
- 0x80011f20: Na_VoiceSe
- 0x80012e04: Na_MessageStatus
- 0x80012e1c: Na_MessageSpeed
- 0x80012e24: Na_MessageSpeedGet
- 0x80012e2c: Na_OngenPos
- 0x800134f4: Sou_PosTrgStart__FUsUsfUcf
- 0x80013728: Na_OngenTrgStartSpeed
- 0x8001383c: Na_OngenTrgStart
- 0x80013a00: Na_SetOutMode
- 0x80013a80: Na_SetVoiceMode
- 0x80013a88: Na_FloorTrgStart
- 0x80013b1c: Na_SysLevStart
- 0x80013d3c: Na_SysLevStop
- 0x80013e00: Na_Pause
- 0x80013ebc: Na_RhythmPos
- 0x80013f90: Na_SpecChange
- 0x8001405c: Na_MDPlayerPos
- 0x8001419c: Na_BGMVolume
- 0x80014254: Na_RestartPrepare
- 0x80014290: Na_CheckRestartReady
- 0x800142b4: Na_Restart
- 0x800142e8: Na_SubGameOK
- 0x80014364: Na_KishaStatusTrg
- 0x80014480: Na_KishaStatusLevel
- 0x80014624: Na_TTKK_ARM
- 0x80014700: Na_BgmMuteClear
- 0x80014774: Na_BgmFadeoutCheck
- 0x800147d4: Na_SeFadeoutCheck
- 0x80014860: Na_BgmTrOn
- 0x800148a8: Na_BgmTrOff
- 0x800148f0: Na_SubGameStart
- 0x80014924: Na_SubGameEnd
- 0x80014950: Na_SceneMode
- 0x80014d18: Na_RoomIncectPos
- 0x800151e4: Na_FurnitureInstPos
- 0x800152e4: Na_TrgSeEcho
- 0x80015334: Na_LevSeEcho
- 0x8001537c: Na_BGMFilter
- 0x800154bc: Na_RoomType
- 0x80015548: Na_CheckNeosBoot
- 0x80015578: Na_Museum
- 0x80015604: Na_GetSoundFrameCounter
- 0x80015614: Na_kazagurumaLevel
- 0x8001561c: Na_MelodyInit
- 0x8001563c: Na_Inst
- 0x800156b8: Na_MelodyStart__FUssPCUc
- 0x8001585c: Na_InstCountGet
- 0x8001589c: Na_MelodyGetSubTrackNum
- 0x800158d8: Na_FurnitureInst
- 0x80015a04: Na_MelodyVoice
- 0x80015a4c: Na_RhythmInit
- 0x80015ad8: rhythm_buffer_alloc__Fv
- 0x80015b38: get_rhythm_buffer__FUl
- 0x80015b9c: Na_GetRhythmSubTrack
- 0x80015be4: rhythm_start__FP16NA_RHYTHM_BUFFER
- 0x80015c78: rhythm_stop__FP16NA_RHYTHM_BUFFER
- 0x80015cd8: Na_RhythmStart
- 0x80015d50: Na_RhythmStop
- 0x80015d94: Na_RhythmAllStop
- 0x80015df8: Na_GetRhythmBeatType__Fv
- 0x80015e54: Na_GetRhythmAnimCounter
- 0x80016004: Na_GetRhythmDelay
- 0x80016070: Na_GetRhythmSeNum__FScP4sub_
- 0x800161f8: Na_GetRhythmInfo
- 0x80016250: Na_SetRhythmInfo
- 0x800162c4: tempo_adjust__FP6group_
- 0x80016364: Na_RhythmGrpProcess__FScP6group_
- 0x800165ec: Na_GetRadioCounter
- 0x8001676c: Na_GetKappaCounter
- 0x80016838: Na_SetKappaSeqHandle
- 0x80016840: Na_StaffRollInit
- 0x8001685c: Na_StaffRollStart
- 0x800168dc: Na_GetStaffRollInfo
- 0x80016d20: RspStart2__FPUlll
- 0x80016d80: RspStart__FPUll
- 0x80017c60: Jac_Resample16__FPsPsPsllPsPUsl
- 0x80017e80: Jac_HeapSetup
- 0x80017ee0: OSAlloc2
- 0x80017f80: Jac_Init
- 0x80018020: MixMonoTrack__FPslPFl_Ps
- 0x80018100: MixMonoTrackWide__FPslPFl_Ps
- 0x800181e0: MixExtraTrack__FPslPFl_Ps
- 0x800182e0: MixInterleaveTrack__FPslPFl_Ps
- 0x80018380: Jac_GetMixcallback
- 0x800183a0: Jac_RegisterMixcallback
- 0x800183c0: Jac_VframeWork
- 0x80018580: Jac_UpdateDAC
- 0x80018640: Jac_imixcopy__FPsPsPsl
- 0x80018680: Jac_bcopyfast__FPUlPUlUl
- 0x800186c0: Jac_bcopy__FPvPvl
- 0x800187e0: Jac_bzerofast__FPUlUl
- 0x80018820: Jac_bzero__FPvl
- 0x80018920: GetNeos_FileTop__Fv
- 0x80018940: GetNeosRomTop__Fv
- 0x80018960: GetNeosRom_PreLoaded__Fv
- 0x800189a0: SetPreCopy_NeosRom__FPUcUli
- 0x800189c0: mesg_finishcall__FUl
- 0x80018a00: ARAMStartDMAmesg__FUlUlUlUllP13OSMesgQueue_s
- 0x80018a60: Jac_SetAudioARAMSize__FUl
- 0x80018a80: ARAllocFull__FPUl
- 0x80018ae0: Jac_InitARAM__FUl
- 0x80018bc0: DspSyncCountClear
- 0x80018be0: DspSyncCountCheck
- 0x80018c00: DspSync__Fv
- 0x80018c60: AudioSync__Fv
- 0x80018ce0: NeosSync__Fv
- 0x80018d20: __DspSync__FsP9OSContext
- 0x80018da0: __DspReg__Fv
- 0x80018e00: audioproc__FPv
- 0x80018f40: OSInitFastCast
- 0x80018f80: StartAudioThread
- 0x800190e0: Neos_Update__FPs
- 0x80019140: ImageLoaded__FUl
- 0x80019180: Neos_CheckBoot__Fv
- 0x800191a0: neosproc__FPv
- 0x80019380: StreamMain__Fv
- 0x80019760: DspbufProcess__F13DSPBUF_EVENTS
- 0x80019a00: UpdateDSP__Fv
- 0x80019a60: MixDsp__Fl
- 0x80019aa0: DspFrameEnd__Fv
- 0x80019ae0: CpubufProcess__F13DSPBUF_EVENTS
- 0x80019d40: MixCpu__Fl
- 0x80019d80: CpuFrameEnd__Fv
- 0x80019dc0: ResetPlayerCallback
- 0x80019e00: Jac_CheckPlayerCallback__FPFPv_lPv
- 0x80019e60: Jac_RegisterDspPlayerCallback
- 0x80019ec0: Jac_RegisterPlayerCallback
- 0x80019f80: PlayerCallback__Fv
- 0x8001a020: DspPlayerCallback__Fv
- 0x8001a0c0: GetCallStack__Fv
- 0x8001a120: DVDReadMutex__FP11DVDFileInfoPvllPc
- 0x8001a1c0: DVDT_ExtendPath__FPcPc
- 0x8001a240: DVDT_AddTaskHigh__FPFPv_lPvUl
- 0x8001a2e0: DVDT_AddTask__FPFPv_lPvUl
- 0x8001a380: jac_dvdproc_init__Fv
- 0x8001a3c0: jac_dvdproc__FPv
- 0x8001a460: __DoError__FP8DVDCall_Ul
- 0x8001a4c0: __DoFinish__FP8DVDCall_Ul
- 0x8001a520: __DVDT_CheckBack__FPv
- 0x8001a560: __Alloc_DVDBuffer__Fv
- 0x8001a5a0: __WriteBufferSize__FPUcUlUl
- 0x8001a5e0: __UpdateBuffer__Fv
- 0x8001a620: ARAM_DMAfinish__FUl
- 0x8001a640: DVDT_LoadtoARAM_Main__FPv
- 0x8001a880: DVDT_LoadtoARAM__FUlPcUlUlUlPUlPFUl_v
- 0x8001a920: ARAM_DMAfinish2__FUl
- 0x8001a940: DVDT_ARAMtoDRAM_Main__FPv
- 0x8001a9c0: DVDT_DRAMtoARAM_Main__FPv
- 0x8001aa40: DVDT_ARAMtoDRAM__FUlUlUlUlPUlPFUl_v
- 0x8001aaa0: DVDT_DRAMtoARAM__FUlUlUlUlPUlPFUl_v
- 0x8001ab00: DVDT_CheckFile__FPc
- 0x8001ab80: DVDT_CheckPass__FUlPUlPFUl_v
- 0x8001abc0: Jac_CheckFile__FPc
- 0x8001ac20: Jac_RegisterDVDErrorCallback__FPFPcPUc_v
- 0x8001ac40: Jac_RegisterFastOpen__FPc
- 0x8001ad40: Jac_DVDOpen__FPcP11DVDFileInfo
- 0x8001ada0: Nas_CpuFX__Flll
- 0x8001b040: __Nas_PushDrvReg__Fl
- 0x8001b100: Nas_smzAudioFrame__FP4AcmdPlPsl
- 0x8001b280: __Nas_WaveTerminateProcess__Fll
- 0x8001b2e0: Nas_LoadAux2nd__FP4AcmdPC6delay_s
- 0x8001b380: Nas_SaveAux2nd__FP4AcmdPC6delay_s
- 0x8001b420: Nas_ClearBuffer__FP4Acmdll
- 0x8001b440: Nas_Mix__FP4Acmdllll
- 0x8001b460: Nas_SetBuffer__FP4Acmdllll
- 0x8001b480: Nas_DMEMMove__FP4Acmdlll
- 0x8001b4a0: Nas_HalfCut__FP4Acmdlll
- 0x8001b4c0: Nas_SetEnvParam__FP4Acmdllll
- 0x8001b4e0: Nas_LoadBuffer2__FP4Acmdlll
- 0x8001b500: Nas_SaveBuffer2__FP4Acmdlll
- 0x8001b520: Nas_SetEnvParam2__FP4Acmdll
- 0x8001b540: Nas_PCM8dec__FP4Acmdll
- 0x8001b560: Nas_DistFilter__FP4Acmdllll
- 0x8001b580: Nas_NoiseFilter__FP4Acmdllll
- 0x8001b5a0: Nas_FirFilter__FP4AcmdllPs
- 0x8001b5c0: Nas_FirLoadTable__FP4AcmdlPs
- 0x8001b5e0: Nas_CrossMix__FP4AcmdP6delay_
- 0x8001b640: Nas_LoadAuxBufferC__FP4AcmdlP6delay_s
- 0x8001b780: Nas_SaveAuxBufferCH__FP4AcmdP6delay_s
- 0x8001b920: Nas_LoadAuxBufferCH__FP4AcmdlP6delay_s
- 0x8001ba60: Nas_DelayFilter__FP4AcmdlP6delay_
- 0x8001bb00: Nas_SendLine__FP4AcmdP6delay_l
- 0x8001bbc0: Nas_LoadAuxBuffer1__FP4AcmdlP6delay_s
- 0x8001bc60: Nas_LoadAuxBuffer1_B__FP4AcmdlP6delay_s
- 0x8001bd00: Nas_SaveBufferAuto__FP4AcmdUsUsl
- 0x8001bde0: __LoadAuxBuf__FP4AcmdUsUslP6delay_
- 0x8001be40: __SaveAuxBuf__FP4AcmdUsUslP6delay_
- 0x8001bea0: Nas_LoadAuxBuffer_B__FP4AcmdlP6delay_s
- 0x8001bee0: Nas_LoadAuxBuffer__FP4AcmdlP6delay_s
- 0x8001bf40: Nas_SaveAuxBuffer__FP4AcmdP6delay_s
- 0x8001c100: Nas_SaveAuxBuffer_B__FP4AcmdP6delay_s
- 0x8001c1a0: Nas_DriveRsp__FPslP4Acmdl
- 0x8001c640: Nas_SynthMain__FlP9commonch_P9driverch_PslP4Acmdl
- 0x8001d2e0: Nas_DolbySurround__FP4AcmdP9commonch_P9driverch_lll
- 0x8001d4e0: Nas_Synth_Resample__FP4AcmdPC9driverch_lUsUsl
- 0x8001d560: Nas_Synth_Envelope__FP4AcmdP9commonch_P9driverch_lUsll
- 0x8001d800: Nas_Synth_Delay__FP4AcmdP9commonch_P9driverch_lll
- 0x8001da40: __CalcRelf__Ff
- 0x8001da60: MakeReleaseTable__Fv
- 0x8001dbe0: Nas_ResetIDtable__Fv
- 0x8001dca0: Nas_ForceStopChannel__Fl
- 0x8001dd80: Nas_ForceStopSeq__Fl
- 0x8001de20: Nas_CacheOff__FPUcl
- 0x8001de60: Nas_2ndHeapAlloc_CL__FP6ALHeapl
- 0x8001dee0: Nas_2ndHeapAlloc__FP6ALHeapl
- 0x8001df60: Nas_NcHeapAlloc__FP6ALHeapl
- 0x8001dfc0: Nas_NcHeapAlloc_CL__FP6ALHeapl
- 0x8001e020: Nas_HeapAlloc_CL__FP6ALHeapl
- 0x8001e080: Nas_HeapAlloc__FP6ALHeapl
- 0x8001e120: Nas_HeapInit__FP6ALHeapPUcl
- 0x8001e1a0: Nas_SzStayClear__FP7SZStay_
- 0x8001e1c0: Nas_SzAutoClear__FP7SZAuto_
- 0x8001e200: Nas_SzStayDelete__Fl
- 0x8001e320: Nas_SzHeapReset__FUl
- 0x8001e3c0: Nas_SzHeapDivide__FP14AudioHeapstrc_
- 0x8001e460: Nas_SzDataDivide__FP13DataHeapstrc_
- 0x8001e500: Nas_SzStayDivide__FP13StayHeapstrc_
- 0x8001e600: Nas_SzAutoDivide__FP13AutoHeapstrc_
- 0x8001e700: Nas_SzHeapAlloc__Fllll
- 0x8001edc0: Nas_SzCacheCheck__Flll
- 0x8001ee40: __Nas_SzCacheCheck_Inner__Flll
- 0x8001ef60: Nas_SetLPFilter__FPsl
- 0x8001efa0: Nas_SetHPFilter__FPsl
- 0x8001efe0: Nas_SetBPFilter__FPsll
- 0x8001f120: __DownDelay__FP6delay_
- 0x8001f140: __Nas_DelayDown__Fv
- 0x8001f1e0: __Nas_DacClear__Fv
- 0x8001f240: Nas_SpecChange__Fv
- 0x8001f4a0: __Nas_MemoryReconfig__Fv
- 0x8001fa60: EmemOnCheck__Fll
- 0x8001fac0: EmemAlloc__Flll
- 0x8001fb40: Nas_Alloc_Single__FllPUcScl
- 0x8001fbc0: Nas_Init_Single__Fll
- 0x8001fca0: __Nas_Alloc_Single_Auto_Inner__Fl
- 0x8001fec0: __SearchBank__FP9SwMember_l
- 0x80020000: __KillSwMember__FP9SwMember_
- 0x800200e0: __RomAddrSet__FP9SwMember_P13smzwavetable_
- 0x80020120: __Nas_Alloc_Single_Stay_Inner__Fl
- 0x800201c0: __Do_EmemKill__FP9SwMember_lll
- 0x80020200: Emem_KillSwMember__Fv
- 0x80020340: __RestoreAddr__FP16Wavelookuptable_P13smzwavetable_
- 0x800203e0: DirtyWave__Fl
- 0x80020420: EntryWave__Fl
- 0x80020460: __ExchangeWave__Fll
- 0x80020680: Dirty_AllWave__Fv
- 0x80020720: __Nas_GetCompressBuffer__FP6delay_
- 0x800207e0: Nas_SetDelayLineParam__Fllll
- 0x80020a60: Nas_SetDelayLine__FlP9fxconfig_l
- 0x80020c60: Nas_WaveDmaFrameWork__Fv
- 0x80020d80: Nas_WaveDmaCallBack__FUlUllPUcl
- 0x80021080: Nas_WaveDmaNew__Fl
- 0x80021320: Nas_CheckIDbank__Fl
- 0x800213a0: Nas_CheckIDseq__Fl
- 0x80021420: Nas_WriteIDbank__Fll
- 0x80021460: Nas_WriteIDseq__Fll
- 0x800214a0: Nas_WriteIDwave__Fll
- 0x80021500: Nas_WriteIDwaveOnly__Fll
- 0x80021540: Nas_BankHeaderInit__FP10ArcHeader_PUcUs
- 0x800215a0: Nas_PreLoadBank__FlPl
- 0x80021620: Nas_PreLoadSeq__FlllP13OSMesgQueue_s
- 0x800216a0: __Nas_LoadVoice_Inner__FP13smzwavetable_l
- 0x80021780: Nas_LoadVoice__Flll
- 0x80021840: Nas_PreLoad_BG__FllllP13OSMesgQueue_s
- 0x800218a0: Nas_PreLoadSeq_BG__FlllP13OSMesgQueue_s
- 0x800218e0: Nas_PreLoadWave_BG__FlllP13OSMesgQueue_s
- 0x80021920: Nas_PreLoadBank_BG__FlllP13OSMesgQueue_s
- 0x80021960: Nas_FlushBank__Fl
- 0x80021a00: __Kill_Bank__Fl
- 0x80021aa0: Nas_SetExtPointer__Fllll
- 0x80021b20: Nas_StartMySeq__Flll
- 0x80021b80: Nas_StartSeq_Skip__Flll
- 0x80021be0: __Nas_StartSeq__Flll
- 0x80021d00: __Load_Seq__Fl
- 0x80021d80: __Load_Wave_Check__FlPUl
- 0x80021dc0: __Load_Wave__FlPUll
- 0x80021ee0: __Load_Ctrl__Fl
- 0x80022000: __Load_Bank__FllPl
- 0x80022260: __Link_BankNum__Fll
- 0x800222c0: __Check_Cache__Fll
- 0x80022340: __Get_ArcHeader__Fl
- 0x800223a0: Nas_BankOfsToAddr_Inner__FlPUcP10WaveMedia_
- 0x800225c0: Nas_FastCopy__FPUcPUcUll
- 0x80022800: Nas_FastDiskCopy__FPUcPUcUll
- 0x80022820: Nas_StartDma__FP8OSIoMesgllUlPvUlP13OSMesgQueue_slPSc
- 0x80022900: __Load_Bank_BG__FllllP13OSMesgQueue_s
- 0x80022c20: Nas_BgDmaFrameWork__Fl
- 0x80022c60: Nas_GetSyncDummy__FPUcl
- 0x80022c80: __SetVlute__Fl
- 0x80022ce0: Nas_InitAudio__FPUxl
- 0x800230a0: LpsInit__Fv
- 0x800230c0: VoiceLoad__FlUlPSc
- 0x80023260: __as__13smzwavetable_FRC13smzwavetable_
- 0x800232a0: __GetWaveTable__Fll
- 0x80023340: __SwapLoadLps__FP9lpscache_
- 0x800233c0: LpsDma__Fl
- 0x80023540: __Nas_SlowCopy__FP9lpscache_l
- 0x800235c0: __Nas_SlowDiskCopy__FPUcPUcUll
- 0x800235e0: SeqLoad__FlPUcPSc
- 0x800236e0: Nas_BgCopyInit__Fv
- 0x80023720: Nas_BgCopyDisk__FlPUcPUcUlllP13OSMesgQueue_sl
- 0x800237a0: Nas_BgCopyReq__FPUcPUcUlllP13OSMesgQueue_sl
- 0x800238c0: Nas_BgCopyMain__Fl
- 0x800239e0: __BgCopyDisk__FP7Bgload_l
- 0x80023a00: __BgCopyFinishProcess__FP7Bgload_
- 0x80023b40: __BgCopySub__FP7Bgload_l
- 0x80023ce0: __Nas_BgCopy__FP7Bgload_l
- 0x80023d80: __Nas_ExCopy__FP7Bgload_l
- 0x80023e00: __Nas_BgDiskCopy__FPUcPUcUll
- 0x80023e20: __WaveTouch__FP6wtstr_UlP10WaveMedia_
- 0x80023f40: Nas_BankOfsToAddr__FlPUcP10WaveMedia_l
- 0x800242c0: Nas_CheckBgWave__Fl
- 0x80024460: __Reload__FP6wtstr_
- 0x800244c0: WaveReload__FllP10WaveMedia_
- 0x800248a0: EmemReload__Fv
- 0x800249c0: MK_load__FllPUc
- 0x80024a40: MK_FrameWork__Fv
- 0x80024aa0: MK_Init__Fv
- 0x80024ae0: Nap_AudioSysProcess__FP10AudioPort_
- 0x80025040: __Nas_GroupFadeOut__Fll
- 0x800250c0: __Nas_GroupFadeIn__Fll
- 0x80025100: Nap_AudioPortInit__Fv
- 0x800251c0: Nap_PortSet__FUlPl
- 0x80025220: Nap_SetF32__FUlf
- 0x80025260: Nap_SetS32__FUll
- 0x800252a0: Nap_SetS8__FUlSc
- 0x800252e0: Nap_SetU16__FUlUs
- 0x80025320: Nap_SendStart__Fv
- 0x800253e0: Nap_FlushPort__Fv
- 0x80025400: Nap_Process1Command__FP10AudioPort_
- 0x80025520: Nap_AudioPortProcess__FUl
- 0x80025600: Nap_CheckSpecChange__Fv
- 0x80025680: __ClearSpecChangeQ__Fv
- 0x800256e0: Nap_StartSpecChange__Fl
- 0x800257a0: Nap_StartReset__Fv
- 0x80025800: Nap_ReadSubPort__Flll
- 0x80025860: Nap_ReadGrpPort__Fll
- 0x800258a0: __SetGrpParam__FP6group_P10AudioPort_
- 0x80025ac0: __SetSubParam__FP4sub_P10AudioPort_
- 0x80025d00: Nap_WaitVsync__Fv
- 0x80025d60: Nap_SilenceCheck_Inner__Fl
- 0x80025e20: Nap_GetRandom__Fv
- 0x80025ee0: Nas_InitGAudio__Fv
- 0x80025f00: CreateAudioTask__FP4AcmdPsUll
- 0x80026120: Z_osWritebackDCacheAll__Fv
- 0x80026140: osInvalDCache2__FPvl
- 0x80026160: osWritebackDCache2__FPvl
- 0x80026180: Z_osCreateMesgQueue__FP13OSMesgQueue_sPPvl
- 0x800261a0: Z_osSendMesg__FP13OSMesgQueue_sPvl
- 0x80026200: Z_osRecvMesg__FP13OSMesgQueue_sPPvl
- 0x800262a0: Z_osEPiStartDma__FP10OSPiHandleP8OSIoMesgl
- 0x800262e0: Z_bcopy__FPvPvUl
- 0x80026300: CopyStc__FP9commonch_P9commonch_
- 0x80026320: __as__9commonch_FRC9commonch_
- 0x80026400: Nas_smzSetParam__FP8channel_P9drvparam_
- 0x80026780: __as__6phase_FRC6phase_
- 0x800267a0: Nas_smzSetPitch__FP8channel_f
- 0x80026840: Nas_StartVoice__FP8channel_
- 0x800268e0: Nas_StopVoice__FP8channel_
- 0x80026960: Nas_UpdateChannel__Fv
- 0x80026e00: NoteToVoice__FP11voicetable_l
- 0x80026e40: ProgToVp__Fll
- 0x80026f20: PercToPp__Fll
- 0x80027000: VpercToVep__Fll
- 0x80027100: OverwriteBank__Fllll
- 0x80027240: __as__15percvoicetable_FRC15percvoicetable_
- 0x80027260: __Nas_Release_Channel_Main__FP5note_i
- 0x800275a0: Nas_Release_Channel__FP5note_
- 0x800275e0: Nas_Release_Channel_Force__FP5note_
- 0x80027620: __Nas_InitList__FP5link_
- 0x80027640: Nas_InitChNode__FP7chnode_
- 0x800276a0: Nas_InitChannelList__Fv
- 0x80027740: Nas_DeAllocAllVoices__FP7chnode_
- 0x80027840: Nas_AllocVoices__FP7chnode_l
- 0x80027940: Nas_AddListHead__FP5link_P5link_
- 0x80027980: Nas_CutList__FP5link_
- 0x800279c0: __Nas_GetLowerPrio__FP5link_l
- 0x80027a40: Nas_EntryTrack__FP8channel_P5note_
- 0x80027bc0: __Nas_InterTrack__FP8channel_P5note_
- 0x80027c00: __Nas_InterReleaseTrack__FP8channel_P5note_
- 0x80027c40: __Nas_ChLookFree__FP7chnode_P5note_
- 0x80027ca0: __Nas_ChLookRelease__FP7chnode_P5note_
- 0x80027d20: __Nas_ChLookRelWait__FP7chnode_P5note_
- 0x80027e00: Nas_AllocationOnRequest__FP5note_
- 0x800280e0: Nas_ChannelInit__Fv
- 0x800281e0: __Nas_CallWaveProcess_Sub__FP4sub_ll
- 0x800283c0: Nas_MainCtrl__FP6group_
- 0x80028500: Nas_SweepCalculator__FP6sweep_
- 0x80028560: Nas_ModTableRead__FP8tmtable_
- 0x800285a0: Nas_Modulator__FP8tmtable_
- 0x80028840: Nas_ChannelModulation__FP8channel_
- 0x800288a0: Nas_ChannelModInit__FP8channel_
- 0x800289e0: Nas_SweepInit__FP8channel_
- 0x80028a20: __as__6sweep_FRC6sweep_
- 0x80028a60: Nas_EnvInit__FP5envp_P7envdat_Ps
- 0x80028aa0: Nas_EnvProcess__FP5envp_
- 0x80028e60: Convert_Com__FP6macro_Uc
- 0x80028ec0: Common_Com__FP6group_P6macro_ll
- 0x800290a0: Nas_InitSubTrack__FP4sub_
- 0x80029240: Nas_EntryNoteTrack__FP4sub_i
- 0x800293e0: __as__4env_FRC4env_
- 0x80029400: Nas_ReleaseNoteTrack__FP5note_
- 0x800294a0: Nas_CloseNoteTrack__FP4sub_l
- 0x80029520: Nas_ReleaseSubTrack__FP4sub_
- 0x800295a0: Nas_AllocSub__FP6group_Us
- 0x80029600: Nas_DeAllocSub__FP6group_Us
- 0x80029680: Nas_OpenSub__FP6group_UcPUc
- 0x80029720: Nas_ReleaseGroup_Force__FP6group_
- 0x80029760: Nas_ReleaseGroup__FP6group_
- 0x80029840: Nas_AddList__FP5link_P5link_
- 0x80029980: Nas_GetList__FP5link_
- 0x800299c0: Nas_InitNoteList__Fv
- 0x80029a60: Nas_ReadByteData__FP6macro_
- 0x80029a80: Nas_ReadWordData__FP6macro_
- 0x80029ac0: Nas_ReadLengthData__FP6macro_
- 0x80029b00: Nas_NoteSeq__FP5note_
- 0x80029c20: __Stop_Note__FP5note_
- 0x80029cc0: __SetChannel__FP5note_l
- 0x80029da0: __Command_Seq__FP5note_
- 0x8002a180: __SetVoice__FP5note_l
- 0x8002a760: __SetNote__FP5note_l
- 0x8002aae0: Nas_PriorityChanger__FP4sub_Uc
- 0x8002ab40: Nas_ProgramChanger__FP4sub_UcPP11voicetable_P4env_
- 0x8002abc0: Nas_SubVoiceSet__FP4sub_Uc
- 0x8002ac80: Nas_SubVolumeSet__FP4sub_Uc
- 0x8002acc0: Nas_SubSeq__FP4sub_
- 0x8002bac0: Nas_GroupSeq__FP6group_
- 0x8002c400: Nas_MySeqMain__FUl
- 0x8002c4c0: Nas_SeqSkip__FP6group_
- 0x8002c520: Nas_InitMySeq__FP6group_
- 0x8002c600: Nas_AssignSubTrack__Fl
- 0x8002c6e0: __InitGroup__FP6group_
- 0x8002c7c0: Nas_InitPlayer__Fv
- 0x8002c920: __DSPCheckMXICBoot2__FP16STRUCT_DSP_TASK2
- 0x8002cbe0: DSPInit
- 0x8002cc00: DSPInit2__FP16STRUCT_DSP_TASK2
- 0x8002cca0: DspBoot__Fv
- 0x8002cd20: DSPSendCommands__FPUlUl
- 0x8002cdc0: DSPReleaseHalt__Fv
- 0x8002ce20: DSPWaitFinish__Fv
- 0x8002ce60: DsetupTable__FUlUlUlUlUl
- 0x8002cec0: DsyncFrame__FUlUlUl
- 0x8002cf20: DwaitFrame__Fv
- 0x8002cf60: DiplSec__FUl
- 0x8002cfa0: DagbSec__FUl
- 0x8002cfe0: WriteTask__FUcUlPvPFPv_v
- 0x8002d060: DoTask__Fv
- 0x8002d140: DspExtraTaskCheck__Fv
- 0x8002d180: Jac_DSPcardDecodeAsync__FPvPvPFPv_v
- 0x8002d1e0: Jac_DSPagbDecodeAsync__FPvPvPFPv_v
- 0x8002d240: exnor_1st__FUlUl
- 0x8002d280: exnor__FUlUl
- 0x8002d2c0: bitrev__FUl
- 0x8002d340: ReadArrayUnlock__FlUlPvli
- 0x8002d4c0: GetInitVal__Fv
- 0x8002d500: DummyLen__Fv
- 0x8002d5a0: __CARDUnlock
- 0x8002d860: DoneCallback__FPv
- 0x8002da60: F152__FP15STRUCT_DSP_TASK
- 0x8002db20: F25__FPv
- 0x8002db60: __GBAX02
- 0x8002dc00: List_CountChannel__FPP3jc_
- 0x8002dc20: List_CutChannel__FP3jc_
- 0x8002dca0: List_GetChannel__FPP3jc_
- 0x8002dce0: List_AddChannelTail__FPP3jc_P3jc_
- 0x8002dd40: List_AddChannel__FPP3jc_P3jc_
- 0x8002dd60: FixAllocChannel__FP4jcs_Ul
- 0x8002de00: FixReleaseChannel__FP3jc_
- 0x8002de80: FixReleaseChannelAll__FP4jcs_
- 0x8002dfa0: FixMoveChannelAll__FP4jcs_P4jcs_
- 0x8002e0c0: PanCalc__FPC10PanMatrix_PC10PanMatrix_Uc
- 0x8002e140: InitJcs__FP4jcs_
- 0x8002e260: Channel_Init__FP3jc_
- 0x8002e3a0: Channel_FirstInit__FP3jc_
- 0x8002e3e0: InitGlobalChannel__Fv
- 0x8002e480: __UpdateJcToDSPInit__FP3jc_
- 0x8002e580: __UpdateJcToDSP__FP3jc_
- 0x8002e680: UpdateJcToDSP__FP3jc_
- 0x8002e6c0: UpdateEffecterParam__FP3jc_
- 0x8002eaa0: DoEffectOsc__FP3jc_Ucf
- 0x8002eb20: KillBrokenLogicalChannels__FP6dspch_
- 0x8002ebc0: CommonCallbackLogicalChannel__FP6dspch_Ul
- 0x8002ef20: StopLogicalChannel__FP3jc_
- 0x8002efa0: CheckLogicalChannel__FP3jc_
- 0x8002efe0: PlayLogicalChannel__FP3jc_
- 0x8002f140: ResetInitialVolume__FP3jc_
- 0x8002f1c0: Add_WaitDSPChannel__FP3jc_
- 0x8002f260: Del_WaitDSPChannel__FP3jc_
- 0x8002f2c0: __Entry_WaitChannel__FUc
- 0x8002f3c0: EntryCheck_WaitDSPChannel__Fv
- 0x8002f4a0: Cancel_WaitDSPChannel__FP3jc_
- 0x8002f500: ForceStopLogicalChannel__FP3jc_
- 0x8002f540: InitDSPchannel__Fv
- 0x8002f5a0: AllocDSPchannel__FUlUl
- 0x8002f6e0: DeAllocDSPchannel__FP6dspch_Ul
- 0x8002f7c0: GetLowerDSPchannel__Fv
- 0x8002f8e0: GetLowerActiveDSPchannel__Fv
- 0x8002f9c0: ForceStopDSPchannel__FP6dspch_
- 0x8002fa40: BreakLowerDSPchannel__FUc
- 0x8002fb00: BreakLowerActiveDSPchannel__FUc
- 0x8002fbc0: UpdateDSPchannelAll__Fv
- 0x8002fdc0: GetDspHandle__FUc
- 0x8002fde0: GetFxHandle__FUc
- 0x8002fe00: DSP_SetPitch__FUcUs
- 0x8002fe40: DSP_SetMixerInitDelayMax__FUcUc
- 0x8002fe60: DSP_SetMixerInitVolume__FUcUcsUc
- 0x8002fea0: DSP_SetMixerVolume__FUcUcsUc
- 0x8002ff00: DSP_SetOscInfo__FUcUl
- 0x8002ff40: DSP_SetPauseFlag__FUcUc
- 0x8002ff60: DSP_SetWaveInfo__FUcP5Wave_Ul
- 0x80030020: DSP_SetBusConnect__FUcUcUc
- 0x80030060: DSP_PlayStop__FUc
- 0x80030080: DSP_AllocInit__FUc
- 0x800300e0: DSP_PlayStart__FUc
- 0x80030180: DSP_SetDistFilter__FUcs
- 0x800301a0: DSP_SetFilterTable__FPsPsUl
- 0x800301e0: DSP_SetIIRFilterParam__FUcPs
- 0x80030220: DSP_SetFIR8FilterParam__FUcPs
- 0x80030260: DSP_SetFilterMode__FUcUs
- 0x800302c0: DSP_FlushBuffer__Fv
- 0x80030300: DSP_FlushChannel__FUc
- 0x80030340: DSP_InvalChannelAll__Fv
- 0x80030380: DSP_ClearBuffer__Fv
- 0x800303e0: DSP_SetupBuffer__Fv
- 0x80030440: DSP_InitBuffer__Fv
- 0x800304a0: DFX_SetFxLine__FUcPsP13FxlineConfig_
- 0x80030620: Bank_Test__FPUc
- 0x800308a0: __Bank_Regist_Inner__FPUcUlUl
- 0x80030900: Bank_Regist__FPvUl
- 0x80030940: Bank_Init__Fv
- 0x80030980: Bank_Get__FUl
- 0x80030a00: Wave_Test__FPUc
- 0x80030cc0: Wavegroup_Regist__FPvUl
- 0x80030d60: Wavegroup_Init__Fv
- 0x80030da0: WaveidToWavegroup__FUlUl
- 0x80030e00: __WaveScene_Set__FUlUli
- 0x80030e80: WaveScene_Set__FUlUl
- 0x80030ec0: UpdateWave__FP12WaveArchive_P5Ctrl_Ul
- 0x80030f80: UpdateWave_Extern__FP16WaveArchiveBank_P10CtrlGroup_P5Ctrl_
- 0x80031100: Jac_SceneSet__FP16WaveArchiveBank_P10CtrlGroup_Uli
- 0x80031260: SearchWave__FP5Ctrl_Ul
- 0x800312c0: __GetSoundHandle__FP10CtrlGroup_UlUl
- 0x800313e0: GetSoundHandle__FP10CtrlGroup_Ul
- 0x80031460: Jac_WsVirtualToPhysical__FUs
- 0x80031480: Jac_BnkVirtualToPhysical__FUs
- 0x800314a0: Jac_WsConnectTableSet__FUlUl
- 0x800314e0: Jac_BnkConnectTableSet__FUlUl
- 0x80031520: Jac_ConnectTableInit__Fv
- 0x80031560: Bank_InstChange__FP5Bank_Ul
- 0x80031580: Bank_PercChange__FP5Bank_Ul
- 0x800315a0: Bank_GetInstKeymap__FP5Inst_Uc
- 0x80031620: Bank_GetInstVmap__FP5Inst_UcUc
- 0x800316c0: Bank_GetPercVmap__FP5Perc_UcUc
- 0x80031740: Bank_SenseToOfs__FP6Sense_Uc
- 0x80031860: Bank_RandToOfs__FP5Rand_
- 0x800318c0: Bank_OscToOfs__FP4Osc_P7Oscbuf_
- 0x80031ce0: GetRandom_s32
- 0x80031d20: GetRandom_sf32
- 0x80031d80: Jac_RegisterARAMCallback__FPFPcUlUlPUlP7jaheap__Ul
- 0x80031da0: LoadAram__FPcPUlUl
- 0x80031e00: LoadAramSingle__FPcUlUlPUlUl
- 0x80031e60: Jac_WaveDirectorySet__FPc
- 0x80031ea0: Get_AramMotherHeap__Fv
- 0x80031ec0: Init_AramMotherHeap__Fv
- 0x80031f40: LoadAram_Default__FPcUlUlPUlP7jaheap_
- 0x80032040: LoadAram_All__FPcPUlP7jaheap_
- 0x80032080: LoadAram_One__FPcUlUlPUlP7jaheap_
- 0x800320c0: sqrtf2__Ff
- 0x800320e0: sqrtf__3stdFf
- 0x80032160: sinf__3stdFf
- 0x800321a0: Jac_InitSinTable__Fv
- 0x80032260: sinf3__Ff
- 0x800322a0: FAT_AllocateMemory__FUl
- 0x80032380: FAT_FreeMemory__FUs
- 0x80032540: __as__4FAT_FRC4FAT_
- 0x80032560: FAT_GetPointer__FUsUl
- 0x800325c0: FAT_ReadByte__FUsUl
- 0x80032600: FAT_StoreBlock__FPUcUsUlUl
- 0x80032700: Get_Portcmd__FP10JPorthead_
- 0x80032740: Jac_Portcmd_Proc_Once
- 0x800327a0: Jac_Portcmd_Proc_Stay
- 0x80032800: Portcmd_Main__FPv
- 0x80032840: Jac_Porthead_Init
- 0x80032860: Jac_Portcmd_Init
- 0x800328a0: Jac_InitHeap__FP7jaheap_
- 0x80032900: Jac_SelfInitHeap__FP7jaheap_UlUlUl
- 0x80032940: Jac_SelfAllocHeap__FP7jaheap_P7jaheap_UlUl
- 0x80032a60: Jac_SetGroupHeap__FP7jaheap_P7jaheap_
- 0x80032aa0: Jac_InitMotherHeap__FP7jaheap_UlUlUc
- 0x80032b00: Jac_AllocHeap__FP7jaheap_P7jaheap_Ul
- 0x80032cc0: Jam_OfsToAddr
- 0x80032d20: __ByteReadOfs__FP5seqp_Ul
- 0x80032d80: __WordReadOfs__FP5seqp_Ul
- 0x80032de0: __24ReadOfs__FP5seqp_Ul
- 0x80032e60: __LongReadOfs__FP5seqp_Ul
- 0x80032ec0: __ByteRead__FP5seqp_
- 0x80032f40: __WordRead__FP5seqp_
- 0x80032fa0: __24Read__FP5seqp_
- 0x80033000: __ConditionCheck__FP5seqp_Uc
- 0x800330e0: Jam_SEQtimeToDSPtime__FP5seqp_lUc
- 0x80033180: Extend8to16__FUc
- 0x800331a0: Jam_WriteTimeParam__FP5seqp_Uc
- 0x80033360: Jam_WriteRegDirect
- 0x80033420: LoadTbl__FP5seqp_UlUlUl
- 0x800334c0: Jam_WriteRegParam
- 0x80033960: Jam_ReadRegDirect
- 0x80033b00: Jam_ReadRegXY__FP5seqp_
- 0x80033b60: Jam_ReadReg32
- 0x80033bc0: Jam_WriteRegXY
- 0x80033c20: __ExchangeRegisterValue__FP5seqp_Uc
- 0x80033c60: Jam_WritePortAppDirect
- 0x80033ce0: Jam_InitRegistTrack
- 0x80033d20: Jam_RegistTrack__FP5seqp_Ul
- 0x80033de0: Jam_UnRegistTrack
- 0x80033e80: Jam_InitExtBuffer
- 0x80033ea0: Jam_AssignExtBuffer
- 0x80033ee0: Jam_SetExtFirFilterD
- 0x80033f40: __PanCalc__FfffUc
- 0x80033fa0: Jam_UpdateTrackAll
- 0x80034340: OSf32tos8
- 0x80034380: __OSf32tos8
- 0x800343a0: Jam_UpdateTrack
- 0x800348c0: Jam_UpdateTempo
- 0x800349c0: Jam_SetInterrupt
- 0x80034a00: Jam_TryInterrupt
- 0x80034aa0: Cmd_OpenTrack__Fv
- 0x80034ae0: Cmd_OpenTrackBros__Fv
- 0x80034b40: Cmd_Call__Fv
- 0x80034b80: Cmd_CallF__Fv
- 0x80034ca0: Cmd_Ret__Fv
- 0x80034ce0: Cmd_RetF__Fv
- 0x80034d40: Cmd_Jmp__Fv
- 0x80034d60: Cmd_JmpF__Fv
- 0x80034d80: Cmd_LoopS__Fv
- 0x80034de0: Cmd_LoopE__Fv
- 0x80034e60: Cmd_ReadPort__Fv
- 0x80034ec0: Cmd_WritePort__Fv
- 0x80034f00: Cmd_CheckPortImport__Fv
- 0x80034f60: Cmd_CheckPortExport__Fv
- 0x80034fc0: Cmd_WaitReg__Fv
- 0x80034fe0: Cmd_ConnectName__Fv
- 0x80035020: Cmd_ParentWritePort__Fv
- 0x80035060: Cmd_ChildWritePort__Fv
- 0x800350c0: Cmd_SetLastNote__Fv
- 0x80035100: Cmd_TimeRelate__Fv
- 0x80035120: Cmd_SimpleOsc__Fv
- 0x80035160: Cmd_SimpleEnv__Fv
- 0x800351a0: Cmd_SimpleADSR__Fv
- 0x80035200: Cmd_Transpose__Fv
- 0x80035260: Cmd_CloseTrack__Fv
- 0x800352e0: Cmd_OutSwitch__Fv
- 0x80035320: Cmd_UpdateSync__Fv
- 0x80035360: Cmd_BusConnect__Fv
- 0x800353a0: Cmd_PauseStatus__Fv
- 0x800353c0: Cmd_SetInterrupt__Fv
- 0x80035420: Cmd_DisInterrupt__Fv
- 0x80035460: Cmd_ClrI__Fv
- 0x80035480: Cmd_SetI__Fv
- 0x800354a0: Cmd_RetI__Fv
- 0x800354e0: Cmd_IntTimer__Fv
- 0x80035520: Cmd_ConnectOpen__Fv
- 0x80035560: Cmd_ConnectClose__Fv
- 0x800355a0: Cmd_SyncCPU__Fv
- 0x80035600: Cmd_FlushAll__Fv
- 0x80035640: Cmd_FlushRelease__Fv
- 0x80035680: Cmd_Wait3__Fv
- 0x800356a0: Cmd_TimeBase__Fv
- 0x80035700: Cmd_Tempo__Fv
- 0x80035760: Cmd_Finish__Fv
- 0x80035840: Cmd_Nop__Fv
- 0x80035860: Cmd_PanPowSet__Fv
- 0x80035920: Cmd_IIRSet__Fv
- 0x800359c0: Cmd_FIRSet__Fv
- 0x80035a20: Cmd_EXTSet__Fv
- 0x80035a80: Cmd_PanSwSet__Fv
- 0x80035b40: Cmd_OscRoute__Fv
- 0x80035ba0: Cmd_IIRCutOff__Fv
- 0x80035c40: Cmd_OscFull__Fv
- 0x80035c80: Cmd_CheckWave__Fv
- 0x80035ce0: Cmd_Printf__Fv
- 0x80035ee0: Cmd_Process__FP5seqp_UcUs
- 0x80036060: __as__8Arghead_FRC8Arghead_
- 0x80036080: RegCmd_Process__FP5seqp_iUl
- 0x80036140: Jam_SeqmainNote
- 0x80036a80: SeqUpdate
- 0x80036b40: NoteON__FP5seqp_llll
- 0x80036ea0: __as__4Osc_FRC4Osc_
- 0x80036ee0: NoteOFF_R__FP5seqp_UcUs
- 0x80036f80: NoteOFF__FP5seqp_Uc
- 0x80036fc0: GateON__FP5seqp_llll
- 0x80037020: CheckNoteStop__FP5seqp_l
- 0x80037080: Jaq_Reset
- 0x80037120: BackTrack__FP5seqp_
- 0x800371a0: GetNewTrack__Fv
- 0x80037200: AllocNewRoot__FP5seqp_
- 0x80037260: DeAllocRoot__FP5seqp_
- 0x800372c0: Init_Track__FP5seqp_UlP5seqp_
- 0x80037640: __StopSeq__FP5seqp_
- 0x800376a0: Jaq_SetSeqData
- 0x800376e0: Jaq_SetSeqData_Limit
- 0x80037860: Jaq_StartSeq
- 0x80037920: Jaq_OpenTrack
- 0x80037a80: __AllNoteOff__FP5seqp_
- 0x80037b60: Jaq_CloseTrack
- 0x80037c80: Jaq_RootCallback__FPv
- 0x80037d80: Jam_PitchToCent
- 0x80037e40: Osc_Update_Param
- 0x80037ec0: Osc_Setup_Vibrato__FP5seqp_Uc
- 0x80037f00: Osc_Setup_Tremolo__FP5seqp_Uc
- 0x80037f40: Osc_Setup_Simple
- 0x80037fc0: Osc_Clear_Overwrite
- 0x80037fe0: Osc_Init_Env
- 0x80038020: Osc_Setup_SimpleEnv
- 0x800380a0: Osc_Setup_ADSR
- 0x80038180: Osc_Setup_Full
- 0x80038280: __GetTrigger__FP3jc_Uc
- 0x800382c0: __Clamp01__Ff
- 0x80038300: __Clamp01InitPan__FP3jc_
- 0x80038360: __DoEffect__FP3jc_Ucf
- 0x800383e0: EffecterInit__FP3jc_P5Inst_
- 0x80038520: EffecterInit_Perc__FP3jc_P5Pmap_Us
- 0x80038600: EffecterInit_Osc__FP3jc_
- 0x80038680: Effecter_Overwrite_1ShotD__FP3jc_P4Osc_Ul
- 0x80038700: __Oneshot_Play_Start__FP4jcs_P3jc_Ul
- 0x80038820: __Oneshot_GetLogicalChannel__FP4jcs_P9CtrlWave_
- 0x80038980: PercRead__FUlUl
- 0x800389e0: InstRead__FUlUl
- 0x80038a40: VmapRead__FP5Inst_UcUc
- 0x80038a80: __Oneshot_WavePause__FP3jc_Uc
- 0x80038aa0: __Oneshot_StartMonoPolyCheck__FP3jc_Ul
- 0x80038c00: __Oneshot_StopMonoPolyCheck__FP3jc_Ul
- 0x80038d00: Init_1shot__FP4jcs_Ul
- 0x80038d80: Stop_1Shot__FP3jc_
- 0x80038dc0: Stop_1Shot_R__FP3jc_Us
- 0x80038e00: AllStop_1Shot__FP4jcs_
- 0x80038e80: Extra_Update__FP3jc_8JCSTATUS
- 0x80038f00: SetPitchTarget_1Shot__FP3jc_fUl
- 0x80038f40: SetKeyTarget_1Shot__FP3jc_UcUl
- 0x80038fe0: Gate_1Shot__FP3jc_UcUcl
- 0x800390c0: UpdatePanPower_1Shot__FP3jc_ffff
- 0x80039100: FlushRelease_1Shot__FP4jcs_
- 0x800391c0: Jesus1Shot_Update__FP3jc_8JCSTATUS
- 0x80039380: One_CheckInstWave__F8SOUNDID_
- 0x80039420: Play_1shot__FP4jcs_8SOUNDID_Ul
- 0x800396a0: Play_1shot_Perc__FP4jcs_8SOUNDID_Ul
- 0x800398c0: Play_1shot_Osc__FP4jcs_8SOUNDID_Ul
- 0x800399ec: ksNesDrawMakeOBJIndTex__FP18ksNesCommonWorkObj
- 0x80039a80: ksNesDrawMakeOBJIndTexMMC5__FP18ksNesCommonWorkObj
- 0x80039b14: ksNesConvertChrToI8__FP18ksNesCommonWorkObjPCUcUl
- 0x80039c54: ksNesConvertChrToI8MMC5__FP18ksNesCommonWorkObjPCUcUl
- 0x80039d58: ksNesQDSoundSync__Fv
- 0x80039dec: ksNesQDFastLoad__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x80039f9c: ksNesQDFastSave__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8003a13c: ksNesPushResetButton__FP13ksNesStateObj
- 0x8003a1c8: ksNesReset__FP18ksNesCommonWorkObjP13ksNesStateObjUlPUcPUc
- 0x8003a9b0: ksNesEmuFrame__FP18ksNesCommonWorkObjP13ksNesStateObjUl
- 0x8003aab0: ksNesResetAsm__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8003ad08: ksNesEmuFrameAsm__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8003deb4: ksNesDrawInit__FP18ksNesCommonWorkObj
- 0x8003e030: ksNesDrawEnd__Fv
- 0x8003e114: ksNesDrawClearEFBFirst__FP18ksNesCommonWorkObj
- 0x8003e2a4: ksNesDrawMakeBGIndTex__FP18ksNesCommonWorkObjUl
- 0x8003e454: ksNesDrawMakeBGIndTexMMC5__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8003e610: ksNesDrawMakeBGIndTexMMC2__FP18ksNesCommonWorkObjUl
- 0x8003e8cc: ksNesDrawOBJSetupMMC2__FP18ksNesCommonWorkObj
- 0x8003ea0c: ksNesDrawBG__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8003f224: ksNesDrawMakeOBJBlankVtxList__FP18ksNesCommonWorkObj
- 0x8003f2e4: ksNesDrawMakeOBJAppearVtxList__FP18ksNesCommonWorkObj
- 0x8003f39c: ksNesDrawOBJ__FP18ksNesCommonWorkObjP13ksNesStateObjUl
- 0x8003fec4: ksNesDrawOBJMMC5__FP18ksNesCommonWorkObjP13ksNesStateObjUl
- 0x8004087c: ksNesDrawFlushEFBToRed8__FPUc
- 0x80040900: ksNesDrawOBJI8ToEFB__FP18ksNesCommonWorkObjPUc
- 0x80040bac: ksNesDrawEmuResult__FP18ksNesCommonWorkObj
- 0x800414dc: ksNesDraw__FP18ksNesCommonWorkObjP13ksNesStateObj
- 0x8004163c: famicom_getErrorChan
- 0x80041650: famicom_save_data_setup__FP21FamicomSaveDataHeaderUlPUc
- 0x80041804: famicom_save_data_init__FP21FamicomSaveDataHeaderUlPUc
- 0x80041860: famicom_save_data_check__FPC21FamicomSaveDataHeaderiPCUc
- 0x80041990: process_filer_mode__Fv
- 0x80041ef8: famicom_setCallback_getSaveChan
- 0x80041f04: famicom_getSaveChan__FiPl
- 0x8004217c: memcard_mount__FiPv
- 0x800422f0: memcard_getFreeBlocks__FlPlPl
- 0x800423dc: getBannerSizeFromFormat__FUc
- 0x80042410: getIconSizeFromFormat__FUs
- 0x80042470: SetupExternCommentImage__FPUcPUcPUc
- 0x80042764: SetupInternalCommentImage__FPUc
- 0x80042898: memcard_data_save__FiPCcPCcPC21FamicomSaveDataHeaderUlPCUcUcUlUsUsUli
- 0x80042e1c: memcard_data_load__FiPCcPCcP21FamicomSaveDataHeaderUlPCUc
- 0x800431c4: memcard_game_load__FPUciPPUcPcPcP19MemcardGameHeader_tPUcUlPUcUl
- 0x80043618: memcard_game_list__FPiPci
- 0x800438dc: entrylist__FPCcPc
- 0x80043a7c: select_game__Fv
- 0x80043b48: famicom_mount_archive_end_check
- 0x80043b64: famicom_mount_archive
- 0x80043bf8: famicom_mount_archive_wait__Fv
- 0x80043c54: famicom_init
- 0x800449d0: SetupResBanner__FPC7ResTIMGPUcUlPUlPUc
- 0x80044ab4: SetupResIcon__FPC7ResTIMGPUcUlPUlPUsPUs
- 0x80044be8: famicom_cleanup
- 0x80044e10: famicom_rom_load__Fv
- 0x800452c8: famicom_key_convert__Fv
- 0x8004547c: famicom_draw__Fv
- 0x800456dc: ksnes_proc__FPv
- 0x80045710: ksnes_thread_kill__FP7OSAlarmP9OSContext
- 0x80045748: ksnes_thread_exec__FUl
- 0x800458e4: nogbaInput__Fv
- 0x80045ac4: famicom_1frame
- 0x80046044: famicom_rom_load_check
- 0x80046120: famicom_cardResultToMiyake__Fl
- 0x8004618c: famicom_internal_data_load
- 0x800462d0: famicom_internal_data_save
- 0x800464ac: famicom_external_data_save
- 0x80046668: famicom_external_data_save_check
- 0x80046670: famicom_common_save_initial__Fv
- 0x8004671c: famicom_get_disksystem_titles
- 0x80046770: my_malloc__FUli
- 0x800467a4: my_free__FPv
- 0x800467d8: my_getmemblocksize__FPv
- 0x8004680c: my_gettotalfreesize__Fv
- 0x80046840: __dt__13JKRFileFinderFv
- 0x80046888: getPortStatus__10JUTGamePadFQ210JUTGamePad8EPadPort
- 0x800468a0: __dt__13J2DOrthoGraphFv
- 0x800468fc: update_highscore_raw__FUiUiPUcPUcPUc
- 0x80046a24: nesinfo_get_u16__FPUc
- 0x80046a3c: nesinfo_get_u8__FPUc
- 0x80046a44: nesinfo_set_u16__FPUcUs
- 0x80046a54: nesinfo_next_tag_raw__FPUc
- 0x80046ac8: nesinfo_next_tag__FPUc
- 0x80046b80: calc_check_sum2__FPvUl
- 0x80046c1c: print_stringn_lf__FPUcUl
- 0x80046c8c: print_hex_lf__FPUcUl
- 0x80046cfc: nesinfo_tags_set
- 0x80046db0: special_zelda__Fv
- 0x80046f38: nesinfo_tag_process1
- 0x80047620: nesinfo_tag_process2
- 0x80047918: nesinfo_tag_process3
- 0x80047bb4: nesinfo_update_highscore
- 0x80047db4: nesinfo_get_highscore_num
- 0x80047dc4: nesinfo_get_moriName
- 0x80047dd4: nesinfo_init
- 0x80047e0c: highscore_setup_flags
- 0x80047e40: ShortCommandProc
- 0x80047e94: GBAInit
- 0x80047f38: GBAGetStatusAsync
- 0x80047f9c: GBAGetStatus
- 0x8004802c: GBAResetAsync
- 0x80048090: GBAReset
- 0x80048130: GBAGetProcessStatus
- 0x800482a4: GBAJoyBootAsync
- 0x800483e0: F23
- 0x80048488: F25
- 0x80048558: F27
- 0x80048628: F29
- 0x800486a8: __GBAX01
- 0x80048884: F31
- 0x80048d1c: F33
- 0x80048e90: F35
- 0x80048fec: F37
- 0x800490e8: F39
- 0x80049168: ReadProc
- 0x800491c8: GBAReadAsync
- 0x80049234: GBARead
- 0x800492c8: WriteProc
- 0x800492f8: GBAWriteAsync
- 0x8004938c: GBAWrite
- 0x80049450: __GBAHandler
- 0x8004952c: __GBASyncCallback
- 0x80049560: __GBASync
- 0x800495cc: TypeAndStatusCallback
- 0x800496f0: __GBATransfer
- 0x80049764: __GBASetDelay
- 0x80049788: mJOYSIO_ConvData
- 0x800497b8: mGcgba_Init
- 0x800497bc: mGcgba_InitVar
- 0x800497ec: mGcgba_EndComm
- 0x800497fc: mGcgba_ConnectEnabled
- 0x800498a0: CallBack
- 0x800498b4: mGcgba_Boot
- 0x800499f4: mJOYSIO_OpenConnection
- 0x80049b24: mGcgba_StartScan
- 0x80049d4c: mGcgba_IsTypes
- 0x80049e74: mGcgba_IsEditor
- 0x80049f5c: mGcgba_IsIsland
- 0x8004a044: mGcgba_Recv_sub
- 0x8004a2bc: mGcgba_Recv
- 0x8004a3b0: mGcgba_Read
- 0x8004a5b0: mGcgba_CheckRecv
- 0x8004a6a4: mGcgba_Send_sub
- 0x8004a93c: mGcgba_Send
- 0x8004aa28: changeEndian
- 0x8004aa40: mGcgba_send_eAppri
- 0x8004ae00: emu64_texture_cache_data_entry_set
- 0x8004ae28: texture_cache_alloc__FP15texture_cache_tUl
- 0x8004ae90: texture_cache_data_search__FPv
- 0x8004aee4: texture_cache_data_entry__FPvPv
- 0x8004af40: texture_cache_bss_search__FPv
- 0x8004af48: texture_cache_bss_entry__FPvPv
- 0x8004af50: emu64_refresh
- 0x8004af70: emu64_init2__FP16_GXRenderModeObj
- 0x8004b59c: emu64_init__5emu64Fv
- 0x8004b9f4: panic__5emu64FPcPci
- 0x8004bba8: texconv_tile__5emu64FPUcPUcUiUiUiUiUiUiUiUi
- 0x8004bec0: replace_combine_to_tev__5emu64FP3Gfx
- 0x8004c31c: combine_auto__5emu64Fv
- 0x8004c9a0: combine_tev__5emu64Fv
- 0x8004ccc4: combine_manual__5emu64Fv
- 0x8004ef98: combine__5emu64Fv
- 0x8004f160: setup_texture_tile__5emu64Fi
- 0x8004fad0: zmode__5emu64Fv
- 0x8004fca0: texture_gen__5emu64Fi
- 0x80050058: texture_matrix__5emu64Fv
- 0x80050498: set_position__5emu64FUi
- 0x80050890: draw_1tri_2tri_1quad__5emu64FUie
- 0x80050ae0: fill_rectangle__5emu64Fffff
- 0x80050d38: draw_rectangle__5emu64FP9Gtexrect2
- 0x80051250: dirty_check__5emu64Fiii
- 0x80051adc: dl_G_SPNOOP__5emu64Fv
- 0x80051ae0: dl_G_DL__5emu64Fv
- 0x80051f80: dl_G_RDPHALF_1__5emu64Fv
- 0x80051f8c: dl_G_TEXRECT__5emu64Fv
- 0x80051ff8: dl_G_LOAD_UCODE__5emu64Fv
- 0x80052400: dl_G_ENDDL__5emu64Fv
- 0x8005243c: dl_G_SETTILE__5emu64Fv
- 0x800524d0: dl_G_SETTILE_DOLPHIN__5emu64Fv
- 0x80052698: dl_G_LOADTILE__5emu64Fv
- 0x8005272c: dl_G_LOADBLOCK__5emu64Fv
- 0x800527bc: dl_G_SETTILESIZE__5emu64Fv
- 0x800528e0: dl_G_LOADTLUT__5emu64Fv
- 0x80052ef4: dl_G_SETCOMBINE_NOTEV__5emu64Fv
- 0x800533ac: dl_G_SETCOMBINE__5emu64Fv
- 0x80053874: dl_G_SETCOMBINE_TEV__5emu64Fv
- 0x80053d04: dl_G_SETOTHERMODE_H__5emu64Fv
- 0x80053db8: dl_G_SETOTHERMODE_L__5emu64Fv
- 0x80053f78: dl_G_RDPSETOTHERMODE__5emu64Fv
- 0x800540a8: dl_G_SETSCISSOR__5emu64Fv
- 0x800540f8: dl_G_FILLRECT__5emu64Fv
- 0x800541b8: dl_G_SETCIMG__5emu64Fv
- 0x800541bc: dl_G_SETZIMG__5emu64Fv
- 0x800541c0: dl_G_SETTIMG__5emu64Fv
- 0x80054554: dl_G_SETENVCOLOR__5emu64Fv
- 0x80054574: dl_G_SETBLENDCOLOR__5emu64Fv
- 0x80054594: dl_G_SETFOGCOLOR__5emu64Fv
- 0x800545b4: dl_G_SETFILLCOLOR__5emu64Fv
- 0x800545fc: dl_G_SETTEXEDGEALPHA__5emu64Fv
- 0x80054610: dl_G_SETPRIMDEPTH__5emu64Fv
- 0x8005461c: dl_G_SETPRIMCOLOR__5emu64Fv
- 0x80054658: dl_G_RDPFULLSYNC__5emu64Fv
- 0x8005465c: dl_G_RDPPIPESYNC__5emu64Fv
- 0x80054674: dl_G_RDPTILESYNC__5emu64Fv
- 0x80054678: dl_G_RDPLOADSYNC__5emu64Fv
- 0x8005467c: dl_G_NOOP__5emu64Fv
- 0x800546b4: dl_G_MTX__5emu64Fv
- 0x800552bc: dl_G_VTX__5emu64Fv
- 0x80055c0c: dl_G_MODIFYVTX__5emu64Fv
- 0x80055c54: dl_G_LINE3D__5emu64Fv
- 0x80055c8c: dl_G_TRI1__5emu64Fv
- 0x80055e58: dl_G_TRIN_INDEPEND__5emu64Fv
- 0x80055e78: dl_G_TRIN__5emu64Fv
- 0x80056268: dl_G_QUADN__5emu64Fv
- 0x80056628: dl_G_TRI2__5emu64Fv
- 0x80056a78: dl_G_QUAD__5emu64Fv
- 0x80056c2c: dl_G_CULLDL__5emu64Fv
- 0x80056efc: dl_G_BRANCH_Z__5emu64Fv
- 0x80057298: dl_G_TEXTURE__5emu64Fv
- 0x80057324: dl_G_POPMTX__5emu64Fv
- 0x80057348: dl_G_GEOMETRYMODE__5emu64Fv
- 0x800576c0: dl_G_MOVEWORD__5emu64Fv
- 0x800578e4: dl_G_MOVEMEM__5emu64Fv
- 0x800588e8: dl_G_SPECIAL_1__5emu64Fv
- 0x80058900: emu64_taskstart_r__5emu64FP3Gfx
- 0x80058af0: emu64_taskstart__5emu64FP3Gfx
- 0x80058bc4: emu64_init
- 0x80058bec: emu64_cleanup
- 0x80058c18: emu64_taskstart
- 0x80058c44: emu64_set_ucode_info
- 0x80058c58: emu64_set_first_ucode
- 0x80058d10: emu64_set_aflags
- 0x80058d14: emu64_get_aflags
- 0x80058d34: __sinit_emu64_c
- 0x800595cc: Printf0__11emu64_printFPCce
- 0x8005965c: Printf__11emu64_printFPCce
- 0x800596f0: segchk__5emu64FUl
- 0x80059ad0: combine_name__5emu64FUlUl
- 0x80059c04: combine_alpha__5emu64Fii
- 0x80059c8c: combine_tev_color_name__5emu64FUl
- 0x80059d34: combine_tev_alpha_name__5emu64FUl
- 0x80059d9c: print_combine__5emu64FUx
- 0x8005a208: print_combine_tev__5emu64FUx
- 0x8005a654: OSReportDisable
- 0x8005a660: OSReportEnable
- 0x8005a66c: OSVReport
- 0x8005a750: OSReport
- 0x8005a7dc: OSPanic
- 0x8005a8b8: OSChangeBootMode
- 0x8005a8f8: OSDVDFatalError
- 0x8005a92c: fault_AddClientEx
- 0x8005aa38: fault_AddClient
- 0x8005aa60: fault_Printf
- 0x8005aafc: fault_DrawUpdate
- 0x8005ab2c: fault_WaitTime
- 0x8005ab60: fault_ReadPad
- 0x8005abbc: fault_CallBackFunc
- 0x8005ac98: my_PreExceptionCallback
- 0x8005ace0: my_PostExceptionCallback
- 0x8005ad28: fault_Init
- 0x8005ae84: ReconfigBATs
- 0x8005aed4: _dbg_hungup
- 0x8005af30: gfxprint_setup
- 0x8005b1a0: gfxprint_color
- 0x8005b1ec: gfxprint_locate
- 0x8005b210: gfxprint_locate8x8
- 0x8005b238: gfxprint_putc1
- 0x8005b5c0: gfxprint_putc
- 0x8005b754: gfxprint_write
- 0x8005b7ac: gfxprint_prout
- 0x8005b7e4: gfxprint_init
- 0x8005b874: gfxprint_cleanup
- 0x8005b878: gfxprint_open
- 0x8005b8c4: gfxprint_close
- 0x8005b8fc: gfxprint_vprintf
- 0x8005b91c: gfxprint_printf
- 0x8005b9a8: pad_physical_stick_x
- 0x8005b9b4: pad_physical_stick_y
- 0x8005b9c0: pad_set_logical_stick
- 0x8005b9cc: pad_correct_stick
- 0x8005ba2c: setDebugInfo
- 0x8005ba84: arena_lock_init
- 0x8005bab0: arena_lock
- 0x8005badc: arena_unlock
- 0x8005bb08: get_block_next
- 0x8005bb80: get_block_prev
- 0x8005bbf8: search_last_block
- 0x8005bc58: __osMallocInit
- 0x8005bcb8: __osMallocAddBlock
- 0x8005bd74: destroy_all_block
- 0x8005bde4: __osMallocCleanup
- 0x8005be1c: __osMallocIsInitalized
- 0x8005be24: __osMalloc_FreeBlockTest
- 0x8005bedc: __osMallocAlign_NoLock
- 0x8005c0f4: __osMalloc_NoLock
- 0x8005c118: __osMallocAlign
- 0x8005c178: __osMalloc
- 0x8005c19c: __osMallocR
- 0x8005c2e0: __osFree_NoLock
- 0x8005c4f0: __osFree
- 0x8005c53c: __osRealloc
- 0x8005c768: __osAnalyzeArena
- 0x8005c830: __osGetFreeArena
- 0x8005c8a8: __osGetTotalFreeSize
- 0x8005c8d8: __osGetFreeSize
- 0x8005c908: __osGetMemBlockSize
- 0x8005c93c: __osDisplayArena
- 0x8005cb34: __osCheckArena
- 0x8005cbdc: vaprintf
- 0x8005cc14: fatan2
- 0x8005cc38: fsqrt
- 0x8005cca8: facos
- 0x8005cccc: qrand
- 0x8005ccec: sqrand
- 0x8005ccf4: fqrand
- 0x8005cd2c: fqrand2
- 0x8005cd64: csleep
- 0x8005cdd8: msleep
- 0x8005ce18: proutPrintf
- 0x8005ce48: sprintf
- 0x8005cf08: malloc
- 0x8005cf34: free
- 0x8005cf60: DisplayArena
- 0x8005cf88: GetFreeArena
- 0x8005cfc0: MallocInit
- 0x8005cff4: MallocCleanup
- 0x8005d01c: bcopy
- 0x8005d048: bcmp
- 0x8005d068: bzero
- 0x8005d090: osSyncPrintf
- 0x8005d11c: osWritebackDCache
- 0x8005d13c: osGetCount
- 0x8005d15c: coss
- 0x8005d184: guLookAtF
- 0x8005d4e8: guLookAt
- 0x8005d52c: guLookAtHiliteF
- 0x8005de84: guLookAtHilite
- 0x8005def8: guMtxF2L
- 0x8005dfa4: guMtxIdentF
- 0x8005e028: guMtxIdent
- 0x8005e15c: guNormalize
- 0x8005e218: guOrtho
- 0x8005e414: guPerspective
- 0x8005e654: guRotate
- 0x8005e7d4: guScale
- 0x8005e860: sins
- 0x8005e8ac: guTranslate
- 0x8005e918: _Ldtob
- 0x8005ecc8: _Ldunscale
- 0x8005ed74: _Genld
- 0x8005f2a0: _Litob
- 0x8005f4cc: _Printf
- 0x8005faac: _Putfld
- 0x8005ff74: osCreateMesgQueue
- 0x8005ff94: osCreateThread2
- 0x80060008: osDestroyThread
- 0x80060034: osGetThreadId
- 0x80060060: osGetTime
- 0x80060090: __osInitialize_common
- 0x800600ec: osIsDisableShutdown
- 0x80060100: osIsEnableShutdown
- 0x80060110: osGetDisableShutdownTime
- 0x8006011c: osRecvMesg
- 0x8006013c: osSendMesg
- 0x8006015c: osSetThreadPri
- 0x80060198: timer_handler
- 0x80060258: osSetTimer
- 0x8006034c: osShutdownStart
- 0x800604dc: osStartThread
- 0x80060508: osStopTimerAll
- 0x80060594: __osTimerServicesInit
- 0x800605d4: osContStartQuery
- 0x80060600: osContGetQuery
- 0x80060628: osContStartReadData
- 0x80060668: osContGetReadData
- 0x800606d8: osContGetReadDataEx
- 0x80060c28: osContInit
- 0x80060c78: __osContGetInitData
- 0x80060d7c: osContSetCh
- 0x80060d9c: JC_JUTConsole_print_f_va
- 0x80060de4: JW_JUTReport
- 0x80060ec0: JW_Alloc
- 0x80060f04: JW_Resize
- 0x80060f48: JW_Free
- 0x80060f7c: JW_GetMemBlockSize
- 0x80060fb0: JW_JUTXfb_clearIndex
- 0x80060fd4: JC_JUTFader_delete
- 0x8006100c: JC_JUTFader_new
- 0x800610ac: JC_JUTDbPrint_getManager
- 0x800610b4: JC_JUTDbPrint_setVisible
- 0x800610c4: JC_J2DOrthoGraph_delete
- 0x800610fc: JC_J2DOrthoGraph_new
- 0x80061134: JC_J2DOrthoGraph_setPort
- 0x80061160: JC_J2DOrthoGraph_setOrtho
- 0x8006121c: JC_JUTVideo_getManager
- 0x80061224: JC_JUTVideo_setRenderMode
- 0x80061244: JC_JUTVideo_getFbWidth
- 0x80061250: JC_JUTVideo_getEfbHeight
- 0x8006125c: JC_JKRHeap_alloc
- 0x8006127c: JC_JKRHeap_resize
- 0x8006129c: JC_JKRHeap_free
- 0x800612bc: JC_JKRHeap_dump
- 0x800612ec: JC_JKRHeap_getFreeSize
- 0x8006130c: JC_JKRHeap_getTotalFreeSize
- 0x8006132c: JC_JKRHeap_getSize
- 0x8006134c: JC__JKRGetSystemHeap
- 0x80061354: JC__JKRGetMemBlockSize
- 0x80061380: JC_JKRExpHeap_changeGroupID
- 0x800613a8: JC_JUTGamePad_read
- 0x800613c8: JC_JUTGamePad_getPadStatus
- 0x800613f4: JC_JUTGamePad_recalibrate
- 0x80061418: JC_JUTConsole_setOutput
- 0x80061420: JC_JUTConsole_getOutput
- 0x80061428: JC_JUTConsole_setVisible
- 0x80061438: JC_JUTConsole_isVisible
- 0x80061440: JC_JUTConsole_getHeight
- 0x80061448: JC_JUTConsole_setPosition
- 0x80061454: JC_JUTConsole_getPositionX
- 0x8006145c: JC_JUTConsole_clear
- 0x8006147c: JC_JUTConsole_scroll
- 0x8006149c: JC_JUTConsole_scrollToLastLine
- 0x800614c0: JC_JUTConsole_scrollToFirstLine
- 0x800614e8: JC_JUTConsole_getUsedLine
- 0x80061508: JC_JUTConsole_getLineOffset
- 0x80061528: JC_JUTConsole_dumpToTerminal
- 0x80061548: JC_JUTConsoleManager_getManager
- 0x80061550: JC_JUTConsoleManager_drawDirect
- 0x8006157c: JC_JUTException_getManager
- 0x80061584: JC_JUTException_enterAllPad
- 0x80061594: JC_JUTException_setPreUserCallback
- 0x800615b4: JC_JUTException_setPostUserCallback
- 0x800615d4: JC_JUTException_setMapFile
- 0x800615f4: JC_JUTException_getConsole
- 0x800615fc: JC_JUTException_isEnablePad
- 0x80061620: JC_JUTException_readPad
- 0x80061644: JC_JUTException_waitTime
- 0x80061664: JC_JFWDisplay_createManager_0
- 0x80061690: JC_JFWDisplay_destroyManager
- 0x800616b0: JC_JFWDisplay_getManager
- 0x800616b8: JC_JFWDisplay_setGamma
- 0x800616c0: JC_JFWDisplay_setFrameRate
- 0x800616d0: JC_JFWDisplay_setFader
- 0x800616d8: JC_JFWDisplay_setClearColor
- 0x80061734: JC_JFWDisplay_beginRender
- 0x80061760: JC_JFWDisplay_endRender
- 0x8006178c: JC_JFWDisplay_endFrame
- 0x800617b8: JC_JFWDisplay_startFadeIn
- 0x800617fc: JC_JFWDisplay_startFadeOut
- 0x80061840: JC_JFWDisplay_getEfbWidth
- 0x8006184c: JC_JFWDisplay_getEfbHeight
- 0x80061858: JC_JFWDisplay_changeToSingleXfb
- 0x80061878: JC_JFWDisplay_changeToDoubleXfb
- 0x80061898: JC_JFWDisplay_clearEfb
- 0x800618c4: JC_JFWDisplay_getRenderMode
- 0x800618cc: JC_JFWSystem_setMaxStdHeap
- 0x800618d4: JC_JFWSystem_setSysHeapSize
- 0x800618dc: JC_JFWSystem_setFifoBufSize
- 0x800618e4: JC_JFWSystem_setAramAudioBufSize
- 0x800618ec: JC_JFWSystem_setAramGraphBufSize
- 0x800618f4: JC_JFWSystem_init
- 0x80061914: JC_JFWSystem_getSystemHeap
- 0x8006191c: JC_JFWSystem_getRootHeap
- 0x80061924: JC_JFWSystem_getSystemConsole
- 0x8006192c: JC_JUTProcBar_getManager
- 0x80061934: JC_JUTProcBar_setVisible
- 0x80061944: JC_JUTProcBar_setVisibleHeapBar
- 0x80061954: JC_JKRDecomp_checkCompressed
- 0x80061974: JC_JKRDecomp_decode
- 0x80061994: JC__JKRGetResource
- 0x800619b4: JC__JKRRemoveResource
- 0x800619d8: JC__JKRDetachResource
- 0x800619fc: JC__JKRMountArchive
- 0x80061a1c: JC__JKRGetResourceEntry_byName
- 0x80061a50: JC_JKRAramHeap_dump
- 0x80061a70: JC_JKRAram_getAramHeap
- 0x80061a7c: JC_JKRAramArchive_delete
- 0x80061ab4: JC_JKRAramArchive_new
- 0x80061aec: JC__JKRMountFixedAramArchive
- 0x80061b14: JC__JKRUnmountFixedAramArchive
- 0x80061b34: JC_JKRAramArchive_getAramAddress_byName
- 0x80061b54: JC__JKRAllocFromAram
- 0x80061b84: JC_JKRAramBlock_getAddress
- 0x80061b8c: JC__JKRAramToMainRam_block
- 0x80061bc8: JC__JKRMainRamToAram_block
- 0x80061bf8: JC__JKRDvdToMainRam_byName
- 0x80061c2c: JC_JUTAssertion_changeDevice
- 0x80061c4c: JC_JUTAssertion_changeDisplayTime
- 0x80061c6c: JC_JUTXfb_getManager
- 0x80061c74: JC_JUTXfb_clearIndex
- 0x80061c94: __dt__8JUTFaderFv
- 0x80061cdc: dump_sort__7JKRHeapFv
- 0x80061ce4: getResFont__10JUTResFontCFv
- 0x80061cec: getFontType__10JUTResFontCFv
- 0x80061cf8: getLeading__10JUTResFontCFv
- 0x80061d04: getWidth__10JUTResFontCFv
- 0x80061d10: getAscent__10JUTResFontCFv
- 0x80061d1c: getDescent__10JUTResFontCFv
- 0x80061d28: getHeight__10JUTResFontCFv
- 0x80061d84: firstInit__9JFWSystemFv
- 0x80061dcc: init__9JFWSystemFv
- 0x800620fc: ctor_subroutine__10JFWDisplayFPC16_GXRenderModeObjb
- 0x800621b8: __ct__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb
- 0x80062228: __dt__10JFWDisplayFv
- 0x80062290: createManager__10JFWDisplayFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumberb
- 0x80062308: destroyManager__10JFWDisplayFv
- 0x8006234c: callDirectDraw__Fv
- 0x800623a4: prepareCopyDisp__10JFWDisplayFv
- 0x800624a0: drawendXfb_single__10JFWDisplayFv
- 0x80062518: exchangeXfb_double__10JFWDisplayFv
- 0x80062618: exchangeXfb_triple__10JFWDisplayFv
- 0x80062690: copyXfb_triple__10JFWDisplayFv
- 0x800626f0: preGX__10JFWDisplayFv
- 0x80062780: endGX__10JFWDisplayFv
- 0x80062878: beginRender__10JFWDisplayFv
- 0x80062a7c: endRender__10JFWDisplayFv
- 0x80062b1c: endFrame__10JFWDisplayFv
- 0x80062d08: waitBlanking__10JFWDisplayFi
- 0x80062d58: waitForTick__FUlUs
- 0x80062e78: JFWThreadAlarmHandler__FP7OSAlarmP9OSContext
- 0x80062e9c: threadSleep__10JFWDisplayFx
- 0x80062f10: changeToSingleXfb__10JFWDisplayFi
- 0x80063070: changeToDoubleXfb__10JFWDisplayFv
- 0x80063100: clearEfb_init__10JFWDisplayFv
- 0x80063174: clearEfb__10JFWDisplayF8_GXColor
- 0x800634d8: calcCombinationRatio__10JFWDisplayFv
- 0x80063564: JFWGXAbortAlarmHandler__FP7OSAlarmP9OSContext
- 0x8006358c: diagnoseGpHang__Fv
- 0x80063748: __ct__7JKRHeapFPvUlP7JKRHeapb
- 0x8006386c: __dt__7JKRHeapFv
- 0x80063980: initArena__7JKRHeapFPPcPUli
- 0x80063a30: becomeSystemHeap__7JKRHeapFv
- 0x80063a40: becomeCurrentHeap__7JKRHeapFv
- 0x80063a50: alloc__7JKRHeapFUliP7JKRHeap
- 0x80063ac8: alloc__7JKRHeapFUli
- 0x80063af4: free__7JKRHeapFPvP7JKRHeap
- 0x80063b3c: free__7JKRHeapFPv
- 0x80063b68: callAllDisposer__7JKRHeapFv
- 0x80063bb8: resize__7JKRHeapFPvUl
- 0x80063be4: getSize__7JKRHeapFPvP7JKRHeap
- 0x80063c34: getSize__7JKRHeapFPv
- 0x80063c60: getFreeSize__7JKRHeapFv
- 0x80063c8c: getTotalFreeSize__7JKRHeapFv
- 0x80063cb8: changeGroupID__7JKRHeapFUc
- 0x80063ce4: findFromRoot__7JKRHeapFPv
- 0x80063d20: find__7JKRHeapCFPv
- 0x80063dc8: dispose_subroutine__7JKRHeapFUlUl
- 0x80063e5c: dispose__7JKRHeapFPvUl
- 0x80063e84: dispose__7JKRHeapFv
- 0x80063ed4: copyMemory__7JKRHeapFPvPvUl
- 0x80063efc: JKRDefaultMemoryErrorRoutine__FPvUli
- 0x80063f30: __nw__FUl
- 0x80063f58: __nw__FUlP7JKRHeapi
- 0x80063f84: __nwa__FUlP7JKRHeapi
- 0x80063fb0: __dl__FPv
- 0x80063fd4: __dla__FPv
- 0x80063ff8: state_register__7JKRHeapCFPQ27JKRHeap6TStateUl
- 0x80063ffc: state_compare__7JKRHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState
- 0x80064014: state_dump__7JKRHeapCFRCQ27JKRHeap6TState
- 0x80064018: do_changeGroupID__7JKRHeapFUc
- 0x80064020: do_getCurrentGroupId__7JKRHeapFv
- 0x80064028: createRoot__10JKRExpHeapFib
- 0x800640a8: create__10JKRExpHeapFUlP7JKRHeapb
- 0x8006417c: __ct__10JKRExpHeapFPvUlP7JKRHeapb
- 0x8006420c: __dt__10JKRExpHeapFv
- 0x80064274: do_changeGroupID__10JKRExpHeapFUc
- 0x800642c4: do_alloc__10JKRExpHeapFUli
- 0x800643f8: allocFromHead__10JKRExpHeapFUli
- 0x800646d8: allocFromHead__10JKRExpHeapFUl
- 0x800647f8: allocFromTail__10JKRExpHeapFUli
- 0x80064958: allocFromTail__10JKRExpHeapFUl
- 0x80064a30: do_free__10JKRExpHeapFPv
- 0x80064aa4: do_freeAll__10JKRExpHeapFv
- 0x80064b20: do_freeTail__10JKRExpHeapFv
- 0x80064ba8: do_resize__10JKRExpHeapFPvUl
- 0x80064d54: do_getSize__10JKRExpHeapFPv
- 0x80064dd4: do_getFreeSize__10JKRExpHeapFv
- 0x80064e40: do_getTotalFreeSize__10JKRExpHeapFv
- 0x80064ea4: getUsedSize__10JKRExpHeapCFUc
- 0x80064f20: check__10JKRExpHeapFv
- 0x80065108: appendUsedList__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock
- 0x800651a0: setFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlock
- 0x800651ec: removeFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock
- 0x80065220: removeUsedBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock
- 0x80065254: recycleFreeBlock__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock
- 0x800653ec: joinTwoBlocks__10JKRExpHeapFPQ210JKRExpHeap9CMemBlock
- 0x800654bc: dump__10JKRExpHeapFv
- 0x8006568c: dump_sort__10JKRExpHeapFv
- 0x8006588c: initiate__Q210JKRExpHeap9CMemBlockFPQ210JKRExpHeap9CMemBlockPQ210JKRExpHeap9CMemBlockUlUcUc
- 0x800658ac: allocFore__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc
- 0x800658f0: allocBack__Q210JKRExpHeap9CMemBlockFUlUcUcUcUc
- 0x80065948: free__Q210JKRExpHeap9CMemBlockFP10JKRExpHeap
- 0x80065998: getHeapBlock__Q210JKRExpHeap9CMemBlockFPv
- 0x800659b4: state_register__10JKRExpHeapCFPQ27JKRHeap6TStateUl
- 0x80065a5c: state_compare__10JKRExpHeapCFRCQ27JKRHeap6TStateRCQ27JKRHeap6TState
- 0x80065a8c: do_getCurrentGroupId__10JKRExpHeapFv
- 0x80065a94: getHeapType__10JKRExpHeapFv
- 0x80065aa0: __ct__11JKRDisposerFv
- 0x80065b08: __dt__11JKRDisposerFv
- 0x80065b8c: __ct__9JKRThreadFUlii
- 0x80065c9c: __ct__9JKRThreadFP8OSThreadi
- 0x80065d54: __dt__9JKRThreadFv
- 0x80065e2c: start__9JKRThreadFPv
- 0x80065e58: __sinit_JKRThread_cpp
- 0x80065e9c: __dt__19JSUList<9JKRThread>Fv
- 0x80065ef0: run__9JKRThreadFv
- 0x80065ef8: create__7JKRAramFUlUllll
- 0x80065f94: __ct__7JKRAramFUlUll
- 0x800660a0: __dt__7JKRAramFv
- 0x80066130: run__7JKRAramFv
- 0x8006619c: checkOkAddress__7JKRAramFPUcUlP12JKRAramBlockUl
- 0x8006622c: changeGroupIdIfNeed__7JKRAramFPUci
- 0x8006628c: mainRamToAram__7JKRAramFPUcUlUl15JKRExpandSwitchUlP7JKRHeapi
- 0x800664d8: mainRamToAram__7JKRAramFPUcP12JKRAramBlockUl15JKRExpandSwitchUlP7JKRHeapi
- 0x800665a8: aramToMainRam__7JKRAramFUlPUcUl15JKRExpandSwitchUlP7JKRHeapiPUl
- 0x80066820: aramToMainRam__7JKRAramFP12JKRAramBlockPUcUlUl15JKRExpandSwitchUlP7JKRHeapiPUl
- 0x80066918: JKRDecompressFromAramToMainRam__FUlPvUlUlUl
- 0x80066dec: __sinit_JKRAram_cpp
- 0x80066e30: __dt__23JSUList<12JKRAMCommand>Fv
- 0x80066e84: __ct__11JKRAramHeapFUlUl
- 0x80066f54: __dt__11JKRAramHeapFv
- 0x80066ff4: alloc__11JKRAramHeapFUlQ211JKRAramHeap10EAllocMode
- 0x8006706c: allocFromHead__11JKRAramHeapFUl
- 0x800670f4: allocFromTail__11JKRAramHeapFUl
- 0x8006716c: dump__11JKRAramHeapFv
- 0x800671c0: __sinit_JKRAramHeap_cpp
- 0x80067204: __dt__23JSUList<12JKRAramBlock>Fv
- 0x80067258: __ct__12JKRAramBlockFUlUlUlUcb
- 0x800672cc: __dt__12JKRAramBlockFv
- 0x80067388: allocHead__12JKRAramBlockFUlUcP11JKRAramHeap
- 0x80067424: allocTail__12JKRAramBlockFUlUcP11JKRAramHeap
- 0x800674c8: prepareCommand__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v
- 0x80067548: sendCommand__12JKRAramPieceFP12JKRAMCommand
- 0x80067568: orderAsync__12JKRAramPieceFiUlUlUlP12JKRAramBlockPFUl_v
- 0x800676ac: sync__12JKRAramPieceFP12JKRAMCommandi
- 0x80067774: orderSync__12JKRAramPieceFiUlUlUlP12JKRAramBlock
- 0x8006780c: startDMA__12JKRAramPieceFP12JKRAMCommand
- 0x80067884: doneDMA__12JKRAramPieceFUl
- 0x8006792c: __ct__12JKRAMCommandFv
- 0x8006799c: __dt__12JKRAMCommandFv
- 0x80067a44: __sinit_JKRAramPiece_cpp
- 0x80067a88: create__13JKRAramStreamFl
- 0x80067af8: __ct__13JKRAramStreamFl
- 0x80067b48: __dt__13JKRAramStreamFv
- 0x80067ba8: run__13JKRAramStreamFv
- 0x80067c18: readFromAram__13JKRAramStreamFv
- 0x80067c20: writeToAram__13JKRAramStreamFP20JKRAramStreamCommand
- 0x80067de8: write_StreamToAram_Async__13JKRAramStreamFP18JSUFileInputStreamUlUlUl
- 0x80067ea4: sync__13JKRAramStreamFP20JKRAramStreamCommandi
- 0x80067f38: setTransBuffer__13JKRAramStreamFPUcUlP7JKRHeap
- 0x80067f8c: __ct__20JKRAramStreamCommandFv
- 0x80067f98: getAvailable__20JSURandomInputStreamCFv
- 0x80067ff4: __ct__13JKRFileLoaderFv
- 0x8006804c: __dt__13JKRFileLoaderFv
- 0x800680d8: unmount__13JKRFileLoaderFv
- 0x80068128: changeDirectory__13JKRFileLoaderFPCc
- 0x8006816c: getGlbResource__13JKRFileLoaderFPCc
- 0x800681b8: readGlbResource__13JKRFileLoaderFPvUlPCc15JKRExpandSwitch
- 0x8006822c: removeResource__13JKRFileLoaderFPvP13JKRFileLoader
- 0x800682c4: detachResource__13JKRFileLoaderFPvP13JKRFileLoader
- 0x8006835c: findVolume__13JKRFileLoaderFPPCc
- 0x800683e8: findFirstFile__13JKRFileLoaderFPCc
- 0x80068440: fetchVolumeName__13JKRFileLoaderFPclPCc
- 0x80068518: __sinit_JKRFileLoader_cpp
- 0x8006855c: __dt__24JSUList<13JKRFileLoader>Fv
- 0x800685b0: __ct__12JKRArcFinderFP10JKRArchivell
- 0x8006863c: findNextFile__12JKRArcFinderFv
- 0x800686e8: __dt__12JKRArcFinderFv
- 0x80068744: check_mount_already__10JKRArchiveFl
- 0x80068798: mount__10JKRArchiveFPCcQ210JKRArchive10EMountModeP7JKRHeapQ210JKRArchive15EMountDirection
- 0x80068924: becomeCurrent__10JKRArchiveFPCc
- 0x800689ac: getDirEntry__10JKRArchiveCFPQ210JKRArchive9SDirEntryUl
- 0x80068a24: getResource__10JKRArchiveFPCc
- 0x80068aa0: getResource__10JKRArchiveFUlPCc
- 0x80068b20: readResource__10JKRArchiveFPvUlUlPCc
- 0x80068bc8: readResource__10JKRArchiveFPvUlPCc15JKRExpandSwitch
- 0x80068c6c: removeResourceAll__10JKRArchiveFv
- 0x80068cf4: removeResource__10JKRArchiveFPv
- 0x80068d54: detachResource__10JKRArchiveFPv
- 0x80068d90: getResSize__10JKRArchiveCFPCv
- 0x80068dc4: countFile__10JKRArchiveCFPCc
- 0x80068e24: getFirstFile__10JKRArchiveCFPCc
- 0x80068ed0: __ct__10JKRArchiveFv
- 0x80068f1c: __ct__10JKRArchiveFlQ210JKRArchive10EMountMode
- 0x80068fbc: __dt__10JKRArchiveFv
- 0x8006901c: isSameName__10JKRArchiveCFRQ210JKRArchive8CArcNameUlUs
- 0x80069068: findResType__10JKRArchiveCFUl
- 0x8006909c: findDirectory__10JKRArchiveCFPCcUl
- 0x80069174: findTypeResource__10JKRArchiveCFUlPCc
- 0x80069224: findFsResource__10JKRArchiveCFPCcUl
- 0x80069304: findIdxResource__10JKRArchiveCFUl
- 0x8006932c: findNameResource__10JKRArchiveCFPCc
- 0x800693b4: findPtrResource__10JKRArchiveCFPCv
- 0x800693e8: store__Q210JKRArchive8CArcNameFPCc
- 0x80069478: store__Q210JKRArchive8CArcNameFPCcc
- 0x80069530: __ct__13JKRMemArchiveFlQ210JKRArchive15EMountDirection
- 0x800695e4: __dt__13JKRMemArchiveFv
- 0x8006968c: open__13JKRMemArchiveFlQ210JKRArchive15EMountDirection
- 0x800697b8: fetchResource__13JKRMemArchiveFPQ210JKRArchive12SDIFileEntryPUl
- 0x800697ec: fetchResource__13JKRMemArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch
- 0x800698c4: removeResourceAll__13JKRMemArchiveFv
- 0x80069914: removeResource__13JKRMemArchiveFPv
- 0x80069950: fetchResource_subroutine__13JKRMemArchiveFPUcUlPUcUli
- 0x80069a28: __ct__14JKRAramArchiveFv
- 0x80069a64: __ct__14JKRAramArchiveFlQ210JKRArchive15EMountDirection
- 0x80069b0c: __dt__14JKRAramArchiveFv
- 0x80069c30: fixedInit__14JKRAramArchiveFlQ210JKRArchive15EMountDirection
- 0x80069c74: mountFixed__14JKRAramArchiveFlQ210JKRArchive15EMountDirection
- 0x80069d38: mountFixed__14JKRAramArchiveFPCcQ210JKRArchive15EMountDirection
- 0x80069d88: unmountFixed__14JKRAramArchiveFv
- 0x80069e80: open__14JKRAramArchiveFl
- 0x8006a084: fetchResource__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntryPUl
- 0x8006a13c: fetchResource__14JKRAramArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch
- 0x8006a210: getAramAddress_Entry__14JKRAramArchiveFPQ210JKRArchive12SDIFileEntry
- 0x8006a234: getAramAddress__14JKRAramArchiveFUlPCc
- 0x8006a270: fetchResource_subroutine__14JKRAramArchiveFUlUlPUcUli
- 0x8006a32c: fetchResource_subroutine__14JKRAramArchiveFUlUlP7JKRHeapiPPUc
- 0x8006a49c: __dt__7JKRFileFv
- 0x8006a4fc: __ct__13JKRDvdArchiveFlQ210JKRArchive15EMountDirection
- 0x8006a5a4: __dt__13JKRDvdArchiveFv
- 0x8006a69c: open__13JKRDvdArchiveFl
- 0x8006a860: fetchResource__13JKRDvdArchiveFPQ210JKRArchive12SDIFileEntryPUl
- 0x8006a920: fetchResource__13JKRDvdArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch
- 0x8006aa04: fetchResource_subroutine__13JKRDvdArchiveFlUlUlPUcUlii
- 0x8006abd8: fetchResource_subroutine__13JKRDvdArchiveFlUlUlP7JKRHeapiiPPUc
- 0x8006add0: __ct__14JKRCompArchiveFlQ210JKRArchive15EMountDirection
- 0x8006ae78: __dt__14JKRCompArchiveFv
- 0x8006af9c: open__14JKRCompArchiveFl
- 0x8006b424: fetchResource__14JKRCompArchiveFPQ210JKRArchive12SDIFileEntryPUl
- 0x8006b584: fetchResource__14JKRCompArchiveFPvUlPQ210JKRArchive12SDIFileEntryPUl15JKRExpandSwitch
- 0x8006b7a4: removeResourceAll__14JKRCompArchiveFv
- 0x8006b838: removeResource__14JKRCompArchiveFPv
- 0x8006b8a4: __ct__10JKRDvdFileFv
- 0x8006b918: __ct__10JKRDvdFileFl
- 0x8006b9c0: __dt__10JKRDvdFileFv
- 0x8006ba5c: initiate__10JKRDvdFileFv
- 0x8006bac8: open__10JKRDvdFileFPCc
- 0x8006bb3c: open__10JKRDvdFileFl
- 0x8006bbb0: close__10JKRDvdFileFv
- 0x8006bc2c: readData__10JKRDvdFileFPvll
- 0x8006bce0: writeData__10JKRDvdFileFPCvll
- 0x8006bce8: sync__10JKRDvdFileFv
- 0x8006bd3c: doneProcess__10JKRDvdFileFlP11DVDFileInfo
- 0x8006bd6c: getFileSize__10JKRDvdFileCFv
- 0x8006bd74: __sinit_JKRDvdFile_cpp
- 0x8006bdb8: __dt__21JSUList<10JKRDvdFile>Fv
- 0x8006be0c: loadToMainRAM__12JKRDvdRipperFPCcPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi
- 0x8006bec0: loadToMainRAM__12JKRDvdRipperFlPUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi
- 0x8006bf74: loadToMainRAM__12JKRDvdRipperFP10JKRDvdFilePUc15JKRExpandSwitchUlP7JKRHeapQ212JKRDvdRipper15EAllocDirectionUlPi
- 0x8006c338: JKRDecompressFromDVD__FP10JKRDvdFilePvUlUlUlUl
- 0x8006c85c: isErrorRetry__12JKRDvdRipperFv
- 0x8006c864: __sinit_JKRDvdRipper_cpp
- 0x8006c8a8: __dt__23JSUList<12JKRDMCommand>Fv
- 0x8006c8fc: loadToAram__16JKRDvdAramRipperFlUl15JKRExpandSwitchUlUl
- 0x8006c998: loadToAram__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchUlUl
- 0x8006ca18: loadToAram_Async__16JKRDvdAramRipperFP10JKRDvdFileUl15JKRExpandSwitchPFUl_vUlUl
- 0x8006cac4: callCommand_Async__16JKRDvdAramRipperFP12JKRADCommand
- 0x8006cdf0: __dt__18JSUFileInputStreamFv
- 0x8006ce60: syncAram__16JKRDvdAramRipperFP12JKRADCommandi
- 0x8006cf28: __ct__12JKRADCommandFv
- 0x8006cf64: __dt__12JKRADCommandFv
- 0x8006cff0: JKRDecompressFromDVDToAram__FP10JKRDvdFileUlUlUlUlUl
- 0x8006d0fc: decompSZS_subroutine__FPUcUl
- 0x8006d508: dmaBufferFlush__FUl
- 0x8006d570: __sinit_JKRDvdAramRipper_cpp
- 0x8006d5b4: __dt__23JSUList<12JKRADCommand>Fv
- 0x8006d608: create__9JKRDecompFl
- 0x8006d668: __ct__9JKRDecompFl
- 0x8006d6b8: __dt__9JKRDecompFv
- 0x8006d718: run__9JKRDecompFv
- 0x8006d7e0: prepareCommand__9JKRDecompFPUcPUcUlUlPFUl_v
- 0x8006d858: sendCommand__9JKRDecompFP16JKRDecompCommand
- 0x8006d888: orderAsync__9JKRDecompFPUcPUcUlUlPFUl_v
- 0x8006d8bc: sync__9JKRDecompFP16JKRDecompCommandi
- 0x8006d910: orderSync__9JKRDecompFPUcPUcUlUl
- 0x8006d960: decode__9JKRDecompFPUcPUcUlUl
- 0x8006d9dc: decodeSZP__9JKRDecompFPUcPUcUlUl
- 0x8006db98: decodeSZS__9JKRDecompFPUcPUcUlUl
- 0x8006dc7c: checkCompressed__9JKRDecompFPUc
- 0x8006dccc: __ct__16JKRDecompCommandFv
- 0x8006dd1c: __dt__16JKRDecompCommandFv
- 0x8006dd58: __ct__10JSUPtrLinkFPv
- 0x8006dd70: __dt__10JSUPtrLinkFv
- 0x8006ddd0: __ct__10JSUPtrListFb
- 0x8006de08: __dt__10JSUPtrListFv
- 0x8006de70: initiate__10JSUPtrListFv
- 0x8006de84: setFirst__10JSUPtrListFP10JSUPtrLink
- 0x8006dea8: append__10JSUPtrListFP10JSUPtrLink
- 0x8006df4c: prepend__10JSUPtrListFP10JSUPtrLink
- 0x8006dff0: insert__10JSUPtrListFP10JSUPtrLinkP10JSUPtrLink
- 0x8006e0b8: remove__10JSUPtrListFP10JSUPtrLink
- 0x8006e168: __dt__14JSUInputStreamFv
- 0x8006e1c4: read__14JSUInputStreamFPvl
- 0x8006e21c: skip__14JSUInputStreamFl
- 0x8006e29c: skip__20JSURandomInputStreamFl
- 0x8006e2f8: seek__20JSURandomInputStreamFl17JSUStreamSeekFrom
- 0x8006e33c: __dt__20JSURandomInputStreamFv
- 0x8006e39c: __dt__10JSUIosBaseFv
- 0x8006e3e4: __ct__18JSUFileInputStreamFP7JKRFile
- 0x8006e428: readData__18JSUFileInputStreamFPvl
- 0x8006e4ec: seekPos__18JSUFileInputStreamFl17JSUStreamSeekFrom
- 0x8006e5cc: getLength__18JSUFileInputStreamCFv
- 0x8006e5fc: getPosition__18JSUFileInputStreamCFv
- 0x8006e604: __dt__Q27JGadget13TNodeLinkListFv
- 0x8006e640: splice__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorRQ27JGadget13TNodeLinkListQ37JGadget13TNodeLinkList8iterator
- 0x8006e6e0: Insert__Q27JGadget13TNodeLinkListFQ37JGadget13TNodeLinkList8iteratorPQ27JGadget13TLinkListNode
- 0x8006e70c: Erase__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode
- 0x8006e730: Remove__Q27JGadget13TNodeLinkListFPQ27JGadget13TLinkListNode
- 0x8006e800: __ct__12JUTGraphFifoFUl
- 0x8006e8dc: __dt__12JUTGraphFifoFv
- 0x8006e9a0: __ct__7JUTFontFv
- 0x8006e9cc: initialize_state__7JUTFontFv
- 0x8006ea18: setCharColor__7JUTFontFQ28JUtility6TColor
- 0x8006ea9c: drawString_size_scale__7JUTFontFffffPCcUlb
- 0x8006ebbc: __dt__7JUTFontFv
- 0x8006ec04: setGX__7JUTFontFQ28JUtility6TColorQ28JUtility6TColor
- 0x8006ec30: getCellWidth__7JUTFontCFv
- 0x8006ec5c: getCellHeight__7JUTFontCFv
- 0x8006ec88: __ct__10JUTResFontFPC7ResFONTP7JKRHeap
- 0x8006ecec: __dt__10JUTResFontFv
- 0x8006ed78: deleteMemBlocks_ResFont__10JUTResFontFv
- 0x8006ed9c: initialize_state__10JUTResFontFv
- 0x8006edc8: initiate__10JUTResFontFPC7ResFONTP7JKRHeap
- 0x8006ee28: protected_initiate__10JUTResFontFPC7ResFONTP7JKRHeap
- 0x8006ef34: countBlock__10JUTResFontFv
- 0x8006f030: setBlock__10JUTResFontFv
- 0x8006f174: setGX__10JUTResFontFv
- 0x8006f26c: setGX__10JUTResFontFQ28JUtility6TColorQ28JUtility6TColor
- 0x8006f4ac: drawChar_scale__10JUTResFontFffffib
- 0x8006f8d0: loadFont__10JUTResFontFi11_GXTexMapIDPQ27JUTFont6TWidth
- 0x8006f950: getWidthEntry__10JUTResFontCFiPQ27JUTFont6TWidth
- 0x8006f9f8: getCellWidth__10JUTResFontCFv
- 0x8006fa44: getCellHeight__10JUTResFontCFv
- 0x8006fa90: isLeadByte__10JUTResFontCFi
- 0x8006fac0: getFontCode__10JUTResFontCFi
- 0x8006fc48: loadImage__10JUTResFontFi11_GXTexMapID
- 0x8006fdac: convertSjis__10JUTResFontCFiPUs
- 0x8006fdf0: isLeadByte_1Byte__7JUTFontFi
- 0x8006fdf8: isLeadByte_2Byte__7JUTFontFi
- 0x8006fe00: isLeadByte_ShiftJIS__7JUTFontFi
- 0x8006fe30: __ct__10JUTDbPrintFP7JUTFontP7JKRHeap
- 0x8006fe78: start__10JUTDbPrintFP7JUTFontP7JKRHeap
- 0x8006feec: changeFont__10JUTDbPrintFP7JUTFont
- 0x8006ff04: enter__10JUTDbPrintFiiiPCci
- 0x8006ff8c: flush__10JUTDbPrintFv
- 0x800700a8: drawString__10JUTDbPrintFiiiPCUc
- 0x80070198: JUTReport__FiiiPCce
- 0x80070274: __ct__10JUTGamePadFQ210JUTGamePad8EPadPort
- 0x80070334: __ct__10JUTGamePadFv
- 0x800703dc: __dt__10JUTGamePadFv
- 0x80070488: initList__10JUTGamePadFv
- 0x800704c4: init__10JUTGamePadFv
- 0x800704fc: clear__10JUTGamePadFv
- 0x80070508: read__10JUTGamePadFv
- 0x8007077c: assign__10JUTGamePadFv
- 0x8007082c: checkResetCallback__10JUTGamePadFx
- 0x800708a4: update__10JUTGamePadFv
- 0x80070a54: checkResetSwitch__10JUTGamePadFv
- 0x80070ad4: clear__Q210JUTGamePad7CButtonFv
- 0x80070b10: update__Q210JUTGamePad7CButtonFPC9PADStatusUl
- 0x80070ca0: clear__Q210JUTGamePad6CStickFv
- 0x80070cbc: update__Q210JUTGamePad6CStickFScScQ210JUTGamePad10EStickModeQ210JUTGamePad11EWhichStick
- 0x80070e88: getButton__Q210JUTGamePad6CStickFv
- 0x80070f34: clear__Q210JUTGamePad7CRumbleFv
- 0x80070f54: clear__Q210JUTGamePad7CRumbleFP10JUTGamePad
- 0x80070fac: startMotor__Q210JUTGamePad7CRumbleFi
- 0x80071004: stopMotorHard__Q210JUTGamePad7CRumbleFi
- 0x8007105c: update__Q210JUTGamePad7CRumbleFs
- 0x80071184: setRepeat__Q210JUTGamePad7CButtonFUlUlUl
- 0x800711a0: recalibrate__10JUTGamePadFUl
- 0x80071228: __sinit_JUTGamePad_cpp
- 0x800712fc: __ct__Q210JUTGamePad6CStickFv
- 0x8007132c: __ct__Q210JUTGamePad7CButtonFv
- 0x8007135c: __dt__21JSUList<10JUTGamePad>Fv
- 0x800713b0: create__12JUTExceptionFP14JUTDirectPrint
- 0x80071418: run__12JUTExceptionFv
- 0x800714f0: __ct__12JUTExceptionFP14JUTDirectPrint
- 0x800715cc: errorHandler__12JUTExceptionFUsP9OSContextUlUl
- 0x800716c0: showFloatSub__12JUTExceptionFif
- 0x80071844: showFloat__12JUTExceptionFP9OSContext
- 0x80071950: searchPartialModule__12JUTExceptionFUlPUlPUlPUlPUl
- 0x80071a10: search_name_part__FPUcPUci
- 0x80071a88: showStack__12JUTExceptionFP9OSContext
- 0x80071b78: showMainInfo__12JUTExceptionFUsP9OSContextUlUl
- 0x80071c0c: showGPR__12JUTExceptionFP9OSContext
- 0x80071cbc: showMapInfo_subroutine__12JUTExceptionFUlb
- 0x80071e0c: showGPRMap__12JUTExceptionFP9OSContext
- 0x80071f04: printDebugInfo__12JUTExceptionFQ212JUTException9EInfoPageUsP9OSContextUlUl
- 0x80071f98: isEnablePad__12JUTExceptionCFv
- 0x80071fd4: readPad__12JUTExceptionFPUlPUl
- 0x80072544: printContext__12JUTExceptionFUsP9OSContextUlUl
- 0x80072980: waitTime__12JUTExceptionFl
- 0x80072a08: createFB__12JUTExceptionFv
- 0x80072ac4: getFpscr__12JUTExceptionFv
- 0x80072aec: setPreUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v
- 0x80072afc: setPostUserCallback__12JUTExceptionFPFUsP9OSContextUlUl_v
- 0x80072b0c: appendMapFile__12JUTExceptionFPCc
- 0x80072ba0: queryMapAddress__12JUTExceptionFPcUllPUlPUlPcUlbb
- 0x80072c88: queryMapAddress_single__12JUTExceptionFPcUllPUlPUlPcUlbb
- 0x80072fc8: createConsole__12JUTExceptionFPvUl
- 0x800730a8: __ct__13JUTExternalFBFP16_GXRenderModeObj8_GXGammaPvUl
- 0x800730c8: __dt__12JUTExceptionFv
- 0x80073128: __sinit_JUTException_cpp
- 0x80073170: __dt__39JSUListFv
- 0x800731c4: __ct__14JUTDirectPrintFv
- 0x80073200: start__14JUTDirectPrintFv
- 0x80073248: erase__14JUTDirectPrintFiiii
- 0x800732dc: drawChar__14JUTDirectPrintFiii
- 0x8007344c: changeFrameBuffer__14JUTDirectPrintFPvUsUs
- 0x80073484: printSub__14JUTDirectPrintFUsUsPCcPQ23std13__tag_va_Listb
- 0x800735b8: drawString__14JUTDirectPrintFUsUsPc
- 0x800735e4: drawString_f__14JUTDirectPrintFUsUsPCce
- 0x80073674: create__12JUTAssertionFv
- 0x80073678: flush_subroutine__12JUTAssertionFv
- 0x800736b4: flushMessage__12JUTAssertionFv
- 0x80073718: flushMessage_dbPrint__12JUTAssertionFv
- 0x800738f8: changeDisplayTime__12JUTAssertionFUl
- 0x80073900: changeDevice__12JUTAssertionFUl
- 0x80073908: createManager__8JUTVideoFPC16_GXRenderModeObj
- 0x80073960: __ct__8JUTVideoFPC16_GXRenderModeObj
- 0x80073a54: __dt__8JUTVideoFv
- 0x80073abc: preRetraceProc__8JUTVideoFUl
- 0x80073ce0: drawDoneStart__8JUTVideoFv
- 0x80073d08: dummyNoDrawWait__8JUTVideoFv
- 0x80073d14: drawDoneCallback__8JUTVideoFv
- 0x80073d9c: postRetraceProc__8JUTVideoFUl
- 0x80073de8: setRenderMode__8JUTVideoFPC16_GXRenderModeObj
- 0x80073e60: waitRetraceIfNeed__8JUTVideoFv
- 0x80073e64: clearIndex__6JUTXfbFv
- 0x80073e78: common_init__6JUTXfbFi
- 0x80073eb0: __ct__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber
- 0x80073f3c: __dt__6JUTXfbFv
- 0x80073fac: delXfb__6JUTXfbFi
- 0x80073fec: createManager__6JUTXfbFPC16_GXRenderModeObjP7JKRHeapQ26JUTXfb10EXfbNumber
- 0x8007405c: destroyManager__6JUTXfbFv
- 0x8007408c: initiate__6JUTXfbFUsUsP7JKRHeapQ26JUTXfb10EXfbNumber
- 0x80074168: accumeXfbSize__6JUTXfbFv
- 0x8007418c: __ct__8JUTFaderFiiiiQ28JUtility6TColor
- 0x80074238: control__8JUTFaderFv
- 0x80074338: draw__8JUTFaderFv
- 0x800743c8: startFadeIn__8JUTFaderFi
- 0x800743f8: startFadeOut__8JUTFaderFi
- 0x8007442c: __ct__10JUTProcBarFv
- 0x80074544: __dt__10JUTProcBarFv
- 0x80074588: create__10JUTProcBarFv
- 0x800745d0: destroy__10JUTProcBarFv
- 0x80074608: clear__10JUTProcBarFv
- 0x800746d8: bar_subroutine__10JUTProcBarFiiiiiiiQ28JUtility6TColorQ28JUtility6TColor
- 0x8007486c: adjustMeterLength__10JUTProcBarFUlPfffPi
- 0x800749b0: draw__10JUTProcBarFv
- 0x800749e4: drawProcessBar__10JUTProcBarFv
- 0x800758e4: addrToXPos__FPvi
- 0x8007594c: byteToXLen__Fii
- 0x800759b4: heapBar__FP7JKRHeapiiiii
- 0x80075b48: drawHeapBar__10JUTProcBarFv
- 0x80075ee8: __ct__Q210JUTProcBar5CTimeFv
- 0x80075efc: create__10JUTConsoleFUiUiP7JKRHeap
- 0x80075f8c: create__10JUTConsoleFUiPvUl
- 0x80076014: __ct__10JUTConsoleFUiUib
- 0x800760f8: __dt__10JUTConsoleFv
- 0x80076168: getObjectSizeFromBufferSize__10JUTConsoleFUiUi
- 0x80076178: getLineFromObjectSize__10JUTConsoleFUlUi
- 0x80076188: clear__10JUTConsoleFv
- 0x800761e4: doDraw__10JUTConsoleCFQ210JUTConsole12EConsoleType
- 0x8007672c: print_f__10JUTConsoleFPCce
- 0x800767b8: print__10JUTConsoleFPCc
- 0x80076aa8: JUTConsole_print_f_va_
- 0x80076af0: dumpToTerminal__10JUTConsoleFUi
- 0x80076c14: scroll__10JUTConsoleFi
- 0x80076cf0: getUsedLine__10JUTConsoleCFv
- 0x80076d14: getLineOffset__10JUTConsoleCFv
- 0x80076d38: __ct__17JUTConsoleManagerFv
- 0x80076d60: createManager__17JUTConsoleManagerFP7JKRHeap
- 0x80076db0: appendConsole__17JUTConsoleManagerFP10JUTConsole
- 0x80076e20: removeConsole__17JUTConsoleManagerFP10JUTConsole
- 0x80076ee8: draw__17JUTConsoleManagerCFv
- 0x80076fac: drawDirect__17JUTConsoleManagerCFb
- 0x80077020: setDirectConsole__17JUTConsoleManagerFP10JUTConsole
- 0x8007707c: JUTSetReportConsole
- 0x80077084: JUTGetReportConsole
- 0x8007708c: JUTSetWarningConsole
- 0x80077094: JUTGetWarningConsole
- 0x8007709c: JUTReportConsole_f_va
- 0x80077124: JUTReportConsole_f
- 0x800771b0: JUTReportConsole
- 0x800771dc: JUTWarningConsole_f
- 0x80077268: JUTWarningConsole
- 0x80077294: fetch32byte__13JUTDirectFileFv
- 0x8007735c: __ct__13JUTDirectFileFv
- 0x80077380: __dt__13JUTDirectFileFv
- 0x800773c4: fopen__13JUTDirectFileFPCc
- 0x80077464: fclose__13JUTDirectFileFv
- 0x800774c4: fgets__13JUTDirectFileFPvi
- 0x80077674: __ct__14J2DGrafContextFffff
- 0x80077720: setPort__14J2DGrafContextFv
- 0x80077790: setup2D__14J2DGrafContextFv
- 0x80077964: setScissor__14J2DGrafContextFv
- 0x80077bb4: place__14J2DGrafContextFRCQ29JGeometry8TBox2
- 0x80077bf8: setColor__14J2DGrafContextFQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColorQ28JUtility6TColor
- 0x80077d14: setLineWidth__14J2DGrafContextFUc
- 0x80077d40: fillBox__14J2DGrafContextFRCQ29JGeometry8TBox2
- 0x80077e58: drawFrame__14J2DGrafContextFRCQ29JGeometry8TBox2
- 0x80077f90: line__14J2DGrafContextFQ29JGeometry8TVec2Q29JGeometry8TVec2
- 0x8007806c: lineTo__14J2DGrafContextFQ29JGeometry8TVec2
- 0x800780dc: __dt__14J2DGrafContextFv
- 0x80078124: place__14J2DGrafContextFffff
- 0x8007816c: getGrafType__14J2DGrafContextCFv
- 0x80078174: setLookat__14J2DGrafContextFv
- 0x80078178: __ct__13J2DOrthoGraphFv
- 0x800781d8: __ct__13J2DOrthoGraphFffffff
- 0x800782b4: setPort__13J2DOrthoGraphFv
- 0x80078314: setOrtho__13J2DOrthoGraphFRCQ29JGeometry8TBox2ff
- 0x80078348: setLookat__13J2DOrthoGraphFv
- 0x80078384: J2DDrawLine__FffffQ28JUtility6TColori
- 0x800784b0: J2DFillBox__FffffQ28JUtility6TColor
- 0x800784f8: J2DFillBox__FRCQ29JGeometry8TBox2Q28JUtility6TColor
- 0x80078588: J2DDrawFrame__FffffQ28JUtility6TColorUc
- 0x800785d4: J2DDrawFrame__FRCQ29JGeometry8TBox2Q28JUtility6TColorUc
- 0x80078674: getGrafType__13J2DOrthoGraphCFv
- 0x8007867c: PPCMfmsr
- 0x80078684: PPCMtmsr
- 0x8007868c: PPCMfhid0
- 0x80078694: PPCMthid0
- 0x8007869c: PPCMfl2cr
- 0x800786a4: PPCMtl2cr
- 0x800786ac: PPCMtdec
- 0x800786b4: PPCSync
- 0x800786bc: PPCHalt
- 0x800786d0: PPCMfhid2
- 0x800786d8: PPCMthid2
- 0x800786e0: PPCMtwpar
- 0x800786e8: PPCDisableSpeculation
- 0x80078710: PPCSetFpNonIEEEMode
- 0x80078718: OSGetConsoleType
- 0x80078740: ClearArena
- 0x80078868: InquiryCallback
- 0x800788a4: OSInit
- 0x80078c5c: OSExceptionInit
- 0x80078edc: __OSDBIntegrator
- 0x80078f00: __OSDBJump
- 0x80078f04: __OSSetExceptionHandler
- 0x80078f20: __OSGetExceptionHandler
- 0x80078f34: OSExceptionVector
- 0x80078fd0: OSDefaultExceptionHandler
- 0x80079028: __OSPSInit
- 0x80079060: __OSGetDIConfig
- 0x80079074: OSInitAlarm
- 0x800790c0: OSCreateAlarm
- 0x800790cc: InsertAlarm
- 0x8007931c: OSSetAlarm
- 0x80079384: OSCancelAlarm
- 0x800794a0: DecrementerExceptionCallback
- 0x800796d0: DecrementerExceptionHandler
- 0x80079720: OSAllocFromHeap
- 0x8007981c: OSInitAlloc
- 0x8007988c: OSGetArenaHi
- 0x80079894: OSGetArenaLo
- 0x8007989c: OSSetArenaHi
- 0x800798a4: OSSetArenaLo
- 0x800798ac: __OSInitAudioSystem
- 0x80079a68: __OSStopAudioSystem
- 0x80079b40: DCEnable
- 0x80079b54: DCInvalidateRange
- 0x80079b84: DCFlushRange
- 0x80079bb8: DCStoreRange
- 0x80079bec: DCFlushRangeNoSync
- 0x80079c1c: DCStoreRangeNoSync
- 0x80079c4c: DCZeroRange
- 0x80079c7c: DCTouchRange
- 0x80079cac: ICInvalidateRange
- 0x80079ce4: ICFlashInvalidate
- 0x80079cf4: ICEnable
- 0x80079d08: LCDisable
- 0x80079d30: L2GlobalInvalidate
- 0x80079dc8: DMAErrorHandler
- 0x80079f28: __OSCacheInit
- 0x8007a01c: __OSLoadFPUContext
- 0x8007a140: __OSSaveFPUContext
- 0x8007a268: OSSetCurrentContext
- 0x8007a2c4: OSGetCurrentContext
- 0x8007a2d0: OSSaveContext
- 0x8007a350: OSLoadContext
- 0x8007a428: OSGetStackPointer
- 0x8007a430: OSClearContext
- 0x8007a454: OSInitContext
- 0x8007a510: OSDumpContext
- 0x8007a7b8: OSSwitchFPUContext
- 0x8007a83c: __OSContextInit
- 0x8007a884: OSFillFPUContext
- 0x8007a9b0: OSSetErrorHandler
- 0x8007a9cc: __OSUnhandledException
- 0x8007abcc: OSGetFontEncode
- 0x8007ac24: OSDisableInterrupts
- 0x8007ac38: OSEnableInterrupts
- 0x8007ac4c: OSRestoreInterrupts
- 0x8007ac70: __OSSetInterruptHandler
- 0x8007ac8c: __OSGetInterruptHandler
- 0x8007aca0: __OSInterruptInit
- 0x8007ad14: SetInterruptMask
- 0x8007afec: __OSMaskInterrupts
- 0x8007b074: __OSUnmaskInterrupts
- 0x8007b0fc: __OSDispatchInterrupt
- 0x8007b440: ExternalInterruptHandler
- 0x8007b490: OSNotifyLink
- 0x8007b494: OSNotifyUnlink
- 0x8007b498: OSSetStringTable
- 0x8007b4a4: Relocate
- 0x8007b718: OSLink
- 0x8007b968: Undo
- 0x8007bb74: OSUnlink
- 0x8007bc08: __OSModuleInit
- 0x8007bc20: OSInitMessageQueue
- 0x8007bc80: OSSendMessage
- 0x8007bd48: OSReceiveMessage
- 0x8007be24: OSJamMessage
- 0x8007bef8: OSGetConsoleSimulatedMemSize
- 0x8007bf40: MEMIntrruptHandler
- 0x8007bfac: OSProtectRange
- 0x8007c170: RealMode
- 0x8007c188: __OSInitMemoryProtection
- 0x8007c2a8: OSInitMutex
- 0x8007c2e0: OSLockMutex
- 0x8007c3bc: OSUnlockMutex
- 0x8007c484: __OSUnlockAllMutex
- 0x8007c4f4: __OSCheckMutex
- 0x8007c5f4: __OSCheckDeadLock
- 0x8007c62c: __OSCheckMutexes
- 0x8007c6a0: Run
- 0x8007c6ec: __OSReboot
- 0x8007c8ac: OSGetSaveRegion
- 0x8007c8c0: OSRegisterResetFunction
- 0x8007c944: Reset
- 0x8007c9b4: __OSDoHotReset
- 0x8007c9fc: OSResetSystem
- 0x8007cc74: OSGetResetCode
- 0x8007cca4: __OSResetSWInterruptHandler
- 0x8007cd98: OSGetResetButtonState
- 0x8007d030: OSGetResetSwitchState
- 0x8007d050: WriteSramCallback
- 0x8007d0b0: WriteSram
- 0x8007d1c8: __OSInitSram
- 0x8007d2fc: __OSLockSram
- 0x8007d358: __OSLockSramEx
- 0x8007d3b4: UnlockSram
- 0x8007d6bc: __OSUnlockSram
- 0x8007d6e0: __OSUnlockSramEx
- 0x8007d704: __OSSyncSram
- 0x8007d714: OSGetSoundMode
- 0x8007d794: OSSetSoundMode
- 0x8007d838: OSGetProgressiveMode
- 0x8007d8a8: OSSetProgressiveMode
- 0x8007d94c: __OSSetBootMode
- 0x8007d9f0: OSGetWirelessID
- 0x8007da74: OSSetWirelessID
- 0x8007db20: SystemCallVector
- 0x8007db40: __OSInitSystemCall
- 0x8007dba4: __OSThreadInit
- 0x8007dccc: OSInitThreadQueue
- 0x8007dcdc: OSGetCurrentThread
- 0x8007dce8: OSIsThreadTerminated
- 0x8007dd1c: OSDisableScheduler
- 0x8007dd5c: OSEnableScheduler
- 0x8007dd9c: UnsetRun
- 0x8007de04: __OSGetEffectivePriority
- 0x8007de40: SetEffectivePriority
- 0x8007e000: __OSPromoteThread
- 0x8007e050: SelectThread
- 0x8007e250: __OSReschedule
- 0x8007e280: OSYieldThread
- 0x8007e2bc: OSCreateThread
- 0x8007e3dc: OSExitThread
- 0x8007e4c0: OSCancelThread
- 0x8007e67c: OSJoinThread
- 0x8007e7bc: OSDetachThread
- 0x8007e85c: OSResumeThread
- 0x8007eae4: OSSuspendThread
- 0x8007ec54: OSSleepThread
- 0x8007ed40: OSWakeupThread
- 0x8007ee44: OSSetThreadPriority
- 0x8007ef04: OSGetThreadPriority
- 0x8007ef0c: CheckThreadQueue
- 0x8007efa8: OSCheckActiveThreads
- 0x8007f6f8: OSGetTime
- 0x8007f710: OSGetTick
- 0x8007f718: __OSGetSystemTime
- 0x8007f77c: GetDates
- 0x8007f918: OSTicksToCalendarTime
- 0x8007fb1c: OSCalendarTimeToTicks
- 0x8007fdfc: __init_user
- 0x8007fe1c: __init_cpp
- 0x8007fe70: _ExitProcess
- 0x8007fe90: SetExiInterruptMask
- 0x8007ff84: EXIImm
- 0x800801e0: EXIImmEx
- 0x80080280: EXIDma
- 0x8008036c: EXISync
- 0x800805a4: EXIClearInterrupts
- 0x800805ec: EXISetExiCallback
- 0x80080668: __EXIProbe
- 0x800807dc: EXIProbe
- 0x8008085c: EXIProbeEx
- 0x80080910: EXIAttach
- 0x80080a1c: EXIDetach
- 0x80080ad8: EXISelect
- 0x80080c04: EXIDeselect
- 0x80080d14: EXIIntrruptHandler
- 0x80080ddc: TCIntrruptHandler
- 0x80080ff4: EXTIntrruptHandler
- 0x800810c4: EXIInit
- 0x800811d8: EXILock
- 0x800812cc: EXIUnlock
- 0x800813a8: EXIGetState
- 0x800813c0: UnlockedHandler
- 0x800813e8: EXIGetID
- 0x80081764: InitializeUART
- 0x800817d4: WriteUARTN
- 0x800819d4: SIBusy
- 0x800819f4: SIIsChanBusy
- 0x80081a30: CompleteTransfer
- 0x80081d2c: SIInterruptHandler
- 0x80082070: SIEnablePollingInterrupt
- 0x80082108: SIRegisterPollingHandler
- 0x800821d4: SIUnregisterPollingHandler
- 0x800822c8: SIInit
- 0x8008236c: __SITransfer
- 0x80082578: SIGetStatus
- 0x800825f4: SISetCommand
- 0x80082608: SITransferCommands
- 0x80082618: SISetXY
- 0x80082684: SIEnablePolling
- 0x80082720: SIDisablePolling
- 0x8008278c: SIGetResponseRaw
- 0x80082860: SIGetResponse
- 0x800829b0: SITransfer
- 0x80082b1c: GetTypeCallback
- 0x80082db4: SIGetType
- 0x80082f78: SIGetTypeAsync
- 0x800830b4: SISetSamplingRate
- 0x80083198: SIRefreshSamplingRate
- 0x800831bc: DBInit
- 0x800831e4: __DBExceptionDestinationAux
- 0x8008322c: __DBExceptionDestination
- 0x8008323c: __DBIsExceptionMarked
- 0x80083258: DBPrintf
- 0x800832a8: PSMTXIdentity
- 0x800832d4: PSMTXCopy
- 0x80083308: PSMTXConcat
- 0x800833d4: PSMTXInverse
- 0x800834cc: PSMTXTrans
- 0x80083500: PSMTXScale
- 0x80083528: C_MTXLookAt
- 0x800836b4: C_MTXLightOrtho
- 0x8008373c: PSMTXMultVec
- 0x80083790: C_MTXOrtho
- 0x80083828: PSVECNormalize
- 0x8008386c: PSVECCrossProduct
- 0x800838a8: __DVDInitWA
- 0x800838e8: __DVDInterruptHandler
- 0x80083c60: AlarmHandlerForTimeout
- 0x80083cd0: Read
- 0x80083de0: SeekTwiceBeforeRead
- 0x80083e60: DVDLowRead
- 0x800840f8: DVDLowSeek
- 0x8008418c: DVDLowWaitCoverClose
- 0x800841b8: DVDLowReadDiskID
- 0x8008425c: DVDLowStopMotor
- 0x800842e8: DVDLowRequestError
- 0x80084374: DVDLowInquiry
- 0x80084410: DVDLowAudioStream
- 0x800844a8: DVDLowRequestAudioStatus
- 0x80084534: DVDLowAudioBufferConfig
- 0x800845d0: DVDLowReset
- 0x8008468c: DVDLowBreak
- 0x800846a0: DVDLowClearCallback
- 0x800846b8: __DVDLowSetWAType
- 0x800846fc: __DVDFSInit
- 0x80084734: DVDConvertPathToEntrynum
- 0x80084a28: DVDFastOpen
- 0x80084a9c: DVDOpen
- 0x80084b64: DVDClose
- 0x80084b88: entryToPath
- 0x80084ce8: DVDGetCurrentDir
- 0x80084dac: DVDReadAsyncPrio
- 0x80084e6c: cbForReadAsync
- 0x80084e9c: DVDReadPrio
- 0x80084fb4: cbForReadSync
- 0x80084fd8: DVDPrepareStreamAsync
- 0x800850c4: cbForPrepareStreamAsync
- 0x800850f4: DVDInit
- 0x800851f0: stateReadingFST
- 0x80085244: cbForStateReadingFST
- 0x800852c4: cbForStateError
- 0x8008536c: stateTimeout
- 0x80085408: stateGettingError
- 0x80085430: CategorizeError
- 0x800854e4: cbForStateGettingError
- 0x80085778: cbForUnrecoveredError
- 0x800857e0: cbForUnrecoveredErrorRetry
- 0x80085878: stateGoToRetry
- 0x800858a0: cbForStateGoToRetry
- 0x800859f8: stateCheckID
- 0x80085adc: stateCheckID3
- 0x80085b10: stateCheckID2
- 0x80085b48: cbForStateCheckID1
- 0x80085c5c: cbForStateCheckID2
- 0x80085d00: cbForStateCheckID3
- 0x80085e40: stateCoverClosed
- 0x80085f0c: stateCoverClosed_CMD
- 0x80085f3c: cbForStateCoverClosed
- 0x80085fac: stateMotorStopped
- 0x80085fd4: cbForStateMotorStopped
- 0x800860b8: stateReady
- 0x80086300: stateBusy
- 0x800865c0: cbForStateBusy
- 0x80086b94: issueCommand
- 0x80086c50: DVDReadAbsAsyncPrio
- 0x80086d2c: DVDReadAbsAsyncForBS
- 0x80086dfc: DVDReadDiskID
- 0x80086ed0: DVDPrepareStreamAbsAsync
- 0x80086f94: DVDCancelStream
- 0x80087034: cbForCancelStreamSync
- 0x8008705c: DVDInquiryAsync
- 0x8008712c: DVDReset
- 0x80087170: DVDGetCommandBlockStatus
- 0x800871bc: DVDGetDriveStatus
- 0x80087268: DVDSetAutoInvalidation
- 0x80087278: DVDCancelAsync
- 0x800874e8: DVDCancel
- 0x80087594: cbForCancelSync
- 0x800875b8: DVDGetCurrentDiskID
- 0x800875c0: DVDCheckDisk
- 0x800876a4: __DVDPrepareResetAsync
- 0x800877c0: __DVDClearWaitingQueue
- 0x800877f8: __DVDPushWaitingQueue
- 0x80087860: __DVDPopWaitingQueue
- 0x80087900: __DVDCheckWaitingQueue
- 0x80087958: __DVDDequeueWaitingQueue
- 0x800879b8: ErrorCode2Num
- 0x80087ad4: __DVDStoreErrorCode
- 0x80087b50: cb
- 0x80087c28: __fstLoad
- 0x80087d90: __VIRetraceHandler
- 0x80087fb8: VISetPreRetraceCallback
- 0x80087ffc: VISetPostRetraceCallback
- 0x80088040: getTiming
- 0x800880d0: __VIInit
- 0x800882c8: VIInit
- 0x80088740: VIWaitForRetrace
- 0x80088794: setFbbRegs
- 0x80088a68: setVerticalRegs
- 0x80088c08: VIConfigure
- 0x800893a4: VIConfigurePan
- 0x80089738: VIFlush
- 0x80089854: VISetNextFrameBuffer
- 0x800898c0: VISetBlack
- 0x8008993c: VIGetRetraceCount
- 0x80089944: getCurrentFieldEvenOdd
- 0x800899ac: VIGetCurrentLine
- 0x80089a44: VIGetTvFormat
- 0x80089ac0: VIGetDTVStatus
- 0x80089afc: ClampStick
- 0x80089c2c: PADClamp
- 0x80089d34: UpdateOrigin
- 0x80089ed8: PADOriginCallback
- 0x80089f9c: PADOriginUpdateCallback
- 0x8008a05c: PADProbeCallback
- 0x8008a134: PADTypeAndStatusCallback
- 0x8008a460: PADReceiveCheckCallback
- 0x8008a594: PADReset
- 0x8008a694: PADRecalibrate
- 0x8008a798: PADInit
- 0x8008a9a8: PADRead
- 0x8008ad54: PADControlAllMotors
- 0x8008ae0c: PADControlMotor
- 0x8008aeb0: PADSetSpec
- 0x8008af10: SPEC0_MakeStatus
- 0x8008b084: SPEC1_MakeStatus
- 0x8008b1f8: SPEC2_MakeStatus
- 0x8008b5f0: PADSetAnalogMode
- 0x8008b7f8: SamplingHandler
- 0x8008b858: PADSetSamplingCallback
- 0x8008b8ac: __PADDisableRecalibration
- 0x8008b928: AIRegisterDMACallback
- 0x8008b96c: AIInitDMA
- 0x8008b9f4: AIStartDMA
- 0x8008ba0c: AIGetStreamSampleCount
- 0x8008ba1c: AIResetStreamSampleCount
- 0x8008ba34: AIGetStreamTrigger
- 0x8008ba44: AISetStreamPlayState
- 0x8008bb1c: AIGetStreamPlayState
- 0x8008bb2c: AISetDSPSampleRate
- 0x8008bc0c: AIGetDSPSampleRate
- 0x8008bc20: AISetStreamSampleRate
- 0x8008bc48: __AI_set_stream_sample_rate
- 0x8008bd1c: AIGetStreamSampleRate
- 0x8008bd2c: AISetStreamVolLeft
- 0x8008bd48: AIGetStreamVolLeft
- 0x8008bd58: AISetStreamVolRight
- 0x8008bd74: AIGetStreamVolRight
- 0x8008bd84: AIInit
- 0x8008bee8: __AISHandler
- 0x8008bf64: __AIDHandler
- 0x8008bff4: __AICallbackStackSwitch
- 0x8008c04c: __AI_SRC_INIT
- 0x8008c230: ARRegisterDMACallback
- 0x8008c274: ARStartDMA
- 0x8008c364: ARAlloc
- 0x8008c3cc: ARInit
- 0x8008c488: ARGetBaseAddress
- 0x8008c490: ARGetSize
- 0x8008c498: __ARHandler
- 0x8008c510: __ARChecksize
- 0x8008ce24: __ARQServiceQueueLo
- 0x8008cf24: __ARQCallbackHack
- 0x8008cf28: __ARQInterruptServiceRoutine
- 0x8008cff4: ARQInit
- 0x8008d05c: ARQPostRequest
- 0x8008d1b8: DSPCheckMailToDSP
- 0x8008d1c8: DSPCheckMailFromDSP
- 0x8008d1d8: DSPReadMailFromDSP
- 0x8008d1f0: DSPSendMailToDSP
- 0x8008d204: __CARDDefaultApiCallback
- 0x8008d208: __CARDSyncCallback
- 0x8008d23c: __CARDExtHandler
- 0x8008d314: __CARDExiHandler
- 0x8008d42c: __CARDTxHandler
- 0x8008d4d4: __CARDUnlockedHandler
- 0x8008d558: __CARDEnableInterrupt
- 0x8008d618: __CARDReadStatus
- 0x8008d708: __CARDClearStatus
- 0x8008d7b4: TimeoutHandler
- 0x8008d858: Retry
- 0x8008da84: UnlockedCallback
- 0x8008db94: __CARDStart
- 0x8008dd48: __CARDReadSegment
- 0x8008de7c: __CARDWritePage
- 0x8008df98: __CARDEraseSector
- 0x8008e078: CARDInit
- 0x8008e114: __CARDSetDiskID
- 0x8008e14c: __CARDGetControlBlock
- 0x8008e204: __CARDPutControlBlock
- 0x8008e268: CARDGetResultCode
- 0x8008e298: CARDFreeBlocks
- 0x8008e3e8: CARDGetSectorSize
- 0x8008e46c: __CARDSync
- 0x8008e554: BlockReadCallback
- 0x8008e630: __CARDRead
- 0x8008e694: BlockWriteCallback
- 0x8008e770: __CARDWrite
- 0x8008e7d4: __CARDGetFatBlock
- 0x8008e978: __CARDAllocBlock
- 0x8008ea90: __CARDFreeBlock
- 0x8008eb2c: __CARDUpdateFatBlock
- 0x8008ebd8: __CARDGetDirBlock
- 0x8008ed78: __CARDUpdateDir
- 0x8008ee3c: __CARDCheckSum
- 0x8008efec: VerifyID
- 0x8008f270: VerifyDir
- 0x8008f4b0: VerifyFAT
- 0x8008f734: __CARDVerify
- 0x8008f7c0: CARDCheckExAsync
- 0x8008fd50: CARDCheckAsync
- 0x8008fd78: CARDCheck
- 0x8008fdcc: IsCard
- 0x8008fe98: CARDProbeEx
- 0x80090014: DoMount
- 0x80090424: __CARDMountCallback
- 0x8009055c: CARDMountAsync
- 0x800906fc: CARDMount
- 0x80090744: DoUnmount
- 0x800907e0: CARDUnmount
- 0x8009088c: FormatCallback
- 0x800909d0: __CARDFormatRegionAsync
- 0x80091028: CARDFormatAsync
- 0x80091070: CARDFormat
- 0x800910c4: __CARDCompareFileName
- 0x8009112c: __CARDAccess
- 0x800911c4: __CARDIsPublic
- 0x800911f4: __CARDGetFileNo
- 0x80091344: CARDFastOpen
- 0x800914a4: CARDOpen
- 0x8009161c: CARDClose
- 0x80091670: __CARDIsOpened
- 0x80091678: CreateCallbackFat
- 0x800917a8: CARDCreateAsync
- 0x800919c8: CARDCreate
- 0x80091a10: __CARDSeek
- 0x80091bc8: ReadCallback
- 0x80091cf8: CARDReadAsync
- 0x80091e40: CARDRead
- 0x800920a8: CARDWriteAsync
- 0x800921bc: CARDWrite
- 0x80092204: DeleteCallback
- 0x800922a8: CARDDeleteAsync
- 0x800923b8: CARDDelete
- 0x80092400: UpdateIconOffsets
- 0x800925f8: CARDGetStatus
- 0x80092724: CARDSetStatusAsync
- 0x80092898: CARDSetStatus
- 0x800928e0: CARDRenameAsync
- 0x80092adc: CARDRename
- 0x80092b24: __CARDGetStatusEx
- 0x80092be0: __CARDSetStatusExAsync
- 0x80092e34: __CARDSetStatusEx
- 0x80092e7c: CARDGetAttributes
- 0x80092ebc: CARDSetAttributes
- 0x80092f40: __GXDefaultTexRegionCallback
- 0x80092fbc: __GXDefaultTlutRegionCallback
- 0x80092fe0: GXInit
- 0x800937ac: __GXInitGX
- 0x80094030: GXCPInterruptHandler
- 0x8009416c: GXInitFifoBase
- 0x800941d8: GXInitFifoPtrs
- 0x80094248: GXInitFifoLimits
- 0x80094254: GXSetCPUFifo
- 0x80094364: GXSetGPFifo
- 0x800944dc: GXSaveCPUFifo
- 0x800944fc: __GXSaveCPUFifoAux
- 0x800945d8: GXGetGPStatus
- 0x8009463c: __GXFifoInit
- 0x80094688: __GXFifoReadEnable
- 0x800946b0: __GXFifoReadDisable
- 0x800946d4: __GXFifoLink
- 0x80094718: __GXWriteFifoIntEnable
- 0x80094764: __GXWriteFifoIntReset
- 0x800947b0: __GXCleanGPFifo
- 0x800948ac: GXSetCurrentGXThread
- 0x800948f8: GXGetCurrentGXThread
- 0x80094900: GXGetCPUFifo
- 0x80094908: GXGetGPFifo
- 0x80094910: __GXXfVtxSpecs
- 0x80094a68: GXSetVtxDesc
- 0x80094dc8: __GXSetVCD
- 0x80094e1c: __GXCalculateVLim
- 0x80094f40: GXClearVtxDesc
- 0x80094f8c: GXSetVtxAttrFmt
- 0x800952e8: __GXSetVAT
- 0x80095384: GXSetArray
- 0x80095410: GXInvalidateVtxCache
- 0x80095420: GXSetTexCoordGen2
- 0x800956f0: GXSetNumTexGens
- 0x80095738: GXSetMisc
- 0x800957b0: GXFlush
- 0x8009580c: GXAbortFrame
- 0x800958d8: GXSetDrawDone
- 0x80095970: GXDrawDone
- 0x800959f0: GXPixModeSync
- 0x80095a14: GXPokeAlphaMode
- 0x80095a28: GXPokeAlphaRead
- 0x80095a3c: GXPokeAlphaUpdate
- 0x80095a58: GXPokeBlendMode
- 0x80095ae0: GXPokeColorUpdate
- 0x80095afc: GXPokeDstAlpha
- 0x80095b10: GXPokeDither
- 0x80095b2c: GXPokeZMode
- 0x80095b54: GXTokenInterruptHandler
- 0x80095bdc: GXSetDrawDoneCallback
- 0x80095c20: GXFinishInterruptHandler
- 0x80095ca4: __GXPEInit
- 0x80095d24: __GXSetDirtyState
- 0x80095dc4: GXBegin
- 0x80095eb4: __GXSendFlushPrim
- 0x80095f3c: GXSetLineWidth
- 0x80095f94: GXSetPointSize
- 0x80095fe8: GXEnableTexOffsets
- 0x8009604c: GXSetCullMode
- 0x8009609c: GXSetCoPlanar
- 0x800960e0: __GXSetGenMode
- 0x80096104: GXSetDispCopySrc
- 0x800961c4: GXSetTexCopySrc
- 0x80096284: GXSetDispCopyDst
- 0x800962c8: GXSetTexCopyDst
- 0x80096438: GXSetDispCopyFrame2Field
- 0x80096464: GXSetCopyClamp
- 0x800964e0: GXSetDispCopyYScale
- 0x800965b4: GXSetCopyClear
- 0x8009661c: GXSetCopyFilter
- 0x80096844: GXSetDispCopyGamma
- 0x80096860: GXCopyDisp
- 0x800969d0: GXCopyTex
- 0x80096b60: GXClearBoundingBox
- 0x80096b98: GXInitLightAttn
- 0x80096bb4: GXInitLightPos
- 0x80096bc4: GXInitLightDir
- 0x80096be0: GXInitLightColor
- 0x80096c08: GXLoadLightObjImm
- 0x80096d50: GXSetChanAmbColor
- 0x80096eb8: GXSetChanMatColor
- 0x80097020: GXSetNumChans
- 0x8009706c: GXSetChanCtrl
- 0x80097250: __GetImageTileCount
- 0x80097318: GXInitTexObj
- 0x8009758c: GXInitTexObjCI
- 0x800975d4: GXInitTexObjLOD
- 0x80097768: GXGetTexObjFmt
- 0x80097770: GXLoadTexObjPreLoaded
- 0x80097918: GXLoadTexObj
- 0x8009796c: GXInitTlutObj
- 0x800979b4: GXLoadTlut
- 0x80097a50: GXInitTexCacheRegion
- 0x80097b70: GXInitTlutRegion
- 0x80097bb8: GXInvalidateTexAll
- 0x80097c00: GXSetTexRegionCallback
- 0x80097c14: GXSetTlutRegionCallback
- 0x80097c28: GXSetTexCoordScaleManually
- 0x80097cc4: GXSetTexCoordBias
- 0x80097d48: __SetSURegs
- 0x80097e14: __GXSetSUTexRegs
- 0x80097f90: __GXSetTmemConfig
- 0x800981d0: GXSetTevIndirect
- 0x8009826c: GXSetIndTexMtx
- 0x800983cc: GXSetIndTexCoordScale
- 0x800985a0: GXSetIndTexOrder
- 0x800986d8: GXSetNumIndStages
- 0x80098704: GXSetTevDirect
- 0x8009874c: __GXUpdateBPMask
- 0x80098818: __GXFlushTextureState
- 0x8009883c: GXSetTevOp
- 0x800989e0: GXSetTevColorIn
- 0x80098a60: GXSetTevAlphaIn
- 0x80098ae4: GXSetTevColorOp
- 0x80098ba4: GXSetTevAlphaOp
- 0x80098c64: GXSetTevColor
- 0x80098cd8: GXSetTevKColorSel
- 0x80098d44: GXSetTevKAlphaSel
- 0x80098db0: GXSetTevSwapMode
- 0x80098e08: GXSetTevSwapModeTable
- 0x80098ea8: GXSetAlphaCompare
- 0x80098ef8: GXSetZTexture
- 0x80098f7c: GXSetTevOrder
- 0x80099158: GXSetNumTevStages
- 0x8009918c: GXSetFog
- 0x8009933c: GXSetFogRangeAdj
- 0x8009943c: GXSetBlendMode
- 0x80099540: GXSetColorUpdate
- 0x80099580: GXSetAlphaUpdate
- 0x800995c0: GXSetZMode
- 0x80099638: GXSetZCompLoc
- 0x80099678: GXSetPixelFmt
- 0x80099788: GXSetDither
- 0x800997c8: GXSetDstAlpha
- 0x8009981c: GXSetFieldMask
- 0x80099854: GXSetFieldMode
- 0x800998d4: __GXSetRange
- 0x800998d8: GXBeginDisplayList
- 0x800999a0: GXEndDisplayList
- 0x80099a74: GXCallDisplayList
- 0x80099ae4: GXSetProjection
- 0x80099bb8: WriteMTXPS4x3
- 0x80099bec: WriteMTXPS3x3from3x4
- 0x80099c20: WriteMTXPS4x2
- 0x80099c44: GXLoadPosMtxImm
- 0x80099c80: GXLoadNrmMtxImm
- 0x80099cc0: GXSetCurrentMtx
- 0x80099cfc: GXLoadTexMtxImm
- 0x80099d80: GXSetViewportJitter
- 0x80099e9c: GXSetViewport
- 0x80099ec0: GXSetScissor
- 0x80099f70: GXSetScissorBoxOffset
- 0x80099fb4: GXSetClipMode
- 0x80099fdc: __GXSetMatrixIndex
- 0x8009a060: GXSetGPMetric
- 0x8009a8f8: GXClearGPMetric
- 0x8009a908: GXReadXfRasMetric
- 0x8009a9cc: __va_arg
- 0x8009aa94: __destroy_global_chain
- 0x8009aadc: __register_global_object
- 0x8009aaf4: __copy
- 0x8009ab24: __destroy_arr
- 0x8009ab9c: __construct_array
- 0x8009ac94: __dt__26__partial_array_destructorFv
- 0x8009ad4c: __ptmf_test
- 0x8009ad7c: __ptmf_scall
- 0x8009ada4: __cvt_fp2unsigned
- 0x8009ae00: __save_fpr
- 0x8009ae2c: _savefpr_25
- 0x8009ae34: _savefpr_27
- 0x8009ae38: _savefpr_28
- 0x8009ae3c: _savefpr_29
- 0x8009ae4c: __restore_fpr
- 0x8009ae78: _restfpr_25
- 0x8009ae80: _restfpr_27
- 0x8009ae84: _restfpr_28
- 0x8009ae88: _restfpr_29
- # 0x8009ae98: __save_gpr
- 0x8009ae98: _savegpr_14
- 0x8009ae9c: _savegpr_15
- 0x8009aea0: _savegpr_16
- 0x8009aea4: _savegpr_17
- 0x8009aea8: _savegpr_18
- 0x8009aeac: _savegpr_19
- 0x8009aeb0: _savegpr_20
- 0x8009aeb4: _savegpr_21
- 0x8009aeb8: _savegpr_22
- 0x8009aebc: _savegpr_23
- 0x8009aec0: _savegpr_24
- 0x8009aec4: _savegpr_25
- 0x8009aec8: _savegpr_26
- 0x8009aecc: _savegpr_27
- 0x8009aed0: _savegpr_28
- 0x8009aed4: _savegpr_29
- # 0x8009aee4: __restore_gpr
- 0x8009aee4: _restgpr_14
- 0x8009aee8: _restgpr_15
- 0x8009aeec: _restgpr_16
- 0x8009aef0: _restgpr_17
- 0x8009aef4: _restgpr_18
- 0x8009aef8: _restgpr_19
- 0x8009aefc: _restgpr_20
- 0x8009af00: _restgpr_21
- 0x8009af04: _restgpr_22
- 0x8009af08: _restgpr_23
- 0x8009af0c: _restgpr_24
- 0x8009af10: _restgpr_25
- 0x8009af14: _restgpr_26
- 0x8009af18: _restgpr_27
- 0x8009af1c: _restgpr_28
- 0x8009af20: _restgpr_29
- 0x8009af30: __div2u
- 0x8009b01c: __div2i
- 0x8009b154: __mod2u
- 0x8009b238: __mod2i
- 0x8009b344: __shl2i
- 0x8009b368: __shr2u
- 0x8009b38c: __shr2i
- 0x8009b3b4: __cvt_ull_flt
- 0x8009b454: __cvt_dbl_usll
- 0x8009b520: GetR2__Fv
- 0x8009b528: __fini_cpp_exceptions
- 0x8009b55c: __init_cpp_exceptions
- 0x8009b59c: __unregister_fragment
- 0x8009b5d0: __register_fragment
- 0x8009b604: exit
- 0x8009b6d0: __flush_all
- 0x8009b740: __close_all
- 0x8009b7d8: __num2dec
- 0x8009b97c: __num2dec_internal
- 0x8009bbb8: __two_exp
- 0x8009bef8: __str2dec
- 0x8009bfe4: __timesdec
- 0x8009c270: __ull2dec
- 0x8009c380: __count_trailing_zerol
- 0x8009c3f0: lldiv
- 0x8009c54c: ldiv
- 0x8009c5a4: __flush_buffer
- 0x8009c668: __prep_buffer
- 0x8009c69c: tolower
- 0x8009c6c0: __fwrite
- 0x8009c9cc: fwrite
- 0x8009c9ec: fflush
- 0x8009cb24: fclose
- 0x8009cbe4: fseek
- 0x8009cc04: _fseek
- 0x8009ce40: ftell
- 0x8009ceb0: wcstombs
- 0x8009cf50: unicode_to_UTF8
- 0x8009cff4: memcmp
- 0x8009d040: __memrchr
- 0x8009d06c: memchr
- 0x8009d098: memmove
- 0x8009d164: __copy_longs_rev_unaligned
- 0x8009d214: __copy_longs_unaligned
- 0x8009d2d8: __copy_longs_rev_aligned
- 0x8009d384: __copy_longs_aligned
- 0x8009d444: __stdio_atexit
- 0x8009d454: snprintf
- 0x8009d528: vsnprintf
- 0x8009d59c: vprintf
- 0x8009d618: printf
- 0x8009d6e4: __StringWrite
- 0x8009d750: __FileWrite
- 0x8009d7a8: __pformatter
- 0x8009df1c: float2str
- 0x8009e608: round_decimal
- 0x8009e734: double2hex
- 0x8009ea6c: longlong2str
- 0x8009ed48: long2str
- 0x8009ef68: parse_format
- 0x8009f46c: srand
- 0x8009f474: rand
- 0x8009f494: __StringRead
- 0x8009f524: strstr
- 0x8009f58c: strchr
- 0x8009f5bc: strncmp
- 0x8009f5fc: strcmp
- 0x8009f724: strcat
- 0x8009f750: strncpy
- 0x8009f794: strcpy
- 0x8009f84c: strlen
- 0x8009f868: strtol
- 0x8009f958: __strtoul
- 0x8009fcd0: __close_console
- 0x8009fcd8: __write_console
- 0x8009fd9c: fwide
- 0x8009fe24: __ieee754_acos
- 0x800a0134: __ieee754_atan2
- 0x800a03c4: __ieee754_rem_pio2
- 0x800a0764: __kernel_cos
- 0x800a0858: __kernel_rem_pio2
- 0x800a16ac: __kernel_sin
- 0x800a174c: atan
- 0x800a194c: copysign
- 0x800a1974: cos
- 0x800a1a48: floor
- 0x800a1b90: frexp
- 0x800a1c1c: ldexp
- 0x800a1de0: modf
- 0x800a1edc: sin
- 0x800a1fb4: acos
- 0x800a1fd4: atan2
- 0x800a1ff4: TRKNubMainLoop
- 0x800a20ec: TRKDestructEvent
- 0x800a2110: TRKConstructEvent
- 0x800a2128: TRKPostEvent
- 0x800a2208: TRKGetNextEvent
- 0x800a22bc: TRKInitializeEventQueue
- 0x800a2314: TRKNubWelcome
- 0x800a233c: TRKTerminateNub
- 0x800a2360: TRKInitializeNub
- 0x800a2494: TRKMessageSend
- 0x800a2670: TRKReadBuffer_ui32
- 0x800a2760: TRKReadBuffer_ui8
- 0x800a27f8: TRKReadBuffer1_ui64
- 0x800a28e0: TRKReadBuffer1_ui32
- 0x800a29a8: TRKReadBuffer1_ui16
- 0x800a2a60: TRKReadBuffer1_ui8
- 0x800a2ae0: TRKAppendBuffer_ui32
- 0x800a2b88: TRKAppendBuffer_ui8
- 0x800a2bf0: TRKAppendBuffer1_ui64
- 0x800a2c78: TRKAppendBuffer1_ui32
- 0x800a2cdc: TRKAppendBuffer1_ui16
- 0x800a2d30: TRKReadBuffer
- 0x800a2dbc: TRKAppendBuffer
- 0x800a2e60: TRKSetBufferPosition
- 0x800a2e90: TRKResetBuffer
- 0x800a2ed0: TRKReleaseBuffer
- 0x800a2f34: TRKGetBuffer
- 0x800a2f60: TRKGetFreeBuffer
- 0x800a3028: TRKInitializeMessageBuffers
- 0x800a309c: TRKTerminateSerialHandler
- 0x800a30a4: TRKInitializeSerialHandler
- 0x800a30c8: TRKProcessInput
- 0x800a3118: TRKGetInput
- 0x800a31b0: TRKTestForPacket
- 0x800a3468: usr_put_initialize
- 0x800a346c: usr_puts_serial
- 0x800a34f4: TRKDispatchMessage
- 0x800a3578: TRKInitializeDispatcher
- 0x800a3590: TRKDoSetOption
- 0x800a3734: TRKDoStop
- 0x800a3834: TRKDoStep
- 0x800a3d64: TRKDoContinue
- 0x800a3eb8: TRKDoFlushCache
- 0x800a41b0: TRKDoWriteRegisters
- 0x800a4578: TRKDoReadRegisters
- 0x800a4944: TRKDoWriteMemory
- 0x800a4d64: TRKDoReadMemory
- 0x800a5174: TRKDoCPUType
- 0x800a550c: TRKDoSupportMask
- 0x800a573c: TRKDoVersions
- 0x800a5a14: TRKDoReset
- 0x800a5acc: TRKDoDisconnect
- 0x800a5bb0: TRKDoConnect
- 0x800a5c6c: TRKDoUnsupported
- 0x800a5d1c: TRKStandardACK
- 0x800a5dd4: SetTRKConnected
- 0x800a5de0: GetTRKConnected
- 0x800a5df0: HandlePositionFileSupportRequest
- 0x800a5f80: HandleCloseFileSupportRequest
- 0x800a60a0: HandleOpenFileSupportRequest
- 0x800a6248: TRKRequestSend
- 0x800a63ec: TRKSuppAccessFile
- 0x800a66b0: TRKReleaseMutex
- 0x800a66b8: TRKAcquireMutex
- 0x800a66c0: TRKInitializeMutex
- 0x800a66c8: TRKDoNotifyStopped
- 0x800a67a0: TRK_flush_cache
- 0x800a67d8: TRK_fill_mem
- 0x800a6894: __TRK_get_MSR
- 0x800a689c: __TRK_set_MSR
- 0x800a68a4: TRK_ppc_memcpy
- 0x800a68e0: TRKInterruptHandler
- 0x800a6a74: TRKExceptionHandler
- 0x800a6b10: TRKSwapAndGo
- 0x800a6bd4: TRKInterruptHandlerEnableInterrupts
- 0x800a6c28: TRKTargetSetInputPendingPtr
- 0x800a6c38: TRKPPCAccessFPRegister
- 0x800a6e54: TRKTargetStop
- 0x800a6e6c: TRKTargetSetStopped
- 0x800a6e7c: TRKTargetStopped
- 0x800a6e8c: TRKTargetFlushCache
- 0x800a6ec8: TRKTargetSupportRequest
- 0x800a70d0: TRKTargetGetPC
- 0x800a70e0: TRKTargetStepOutOfRange
- 0x800a715c: TRKTargetSingleStep
- 0x800a71c8: TRKTargetAddExceptionInfo
- 0x800a7274: TRKTargetAddStopInfo
- 0x800a7398: TRKTargetInterrupt
- 0x800a74f4: TRKPostInterruptEvent
- 0x800a75b4: TRKTargetCPUType
- 0x800a7614: TRKTargetSupportMask
- 0x800a76b8: TRKTargetVersions
- 0x800a76dc: TRKTargetAccessExtended2
- 0x800a7b14: TRKTargetAccessExtended1
- 0x800a7c84: TRKTargetAccessFP
- 0x800a7dc0: TRKTargetAccessDefault
- 0x800a7eb4: TRKTargetAccessMemory
- 0x800a8000: TRKValidMemory32
- 0x800a8150: InitMetroTRK
- 0x800a81e4: TRKInitializeTarget
- 0x800a8230: TRKTargetTranslate
- 0x800a8270: EnableMetroTRKInterrupts
- 0x800a8290: TRKSaveExtended1Block
- 0x800a8448: TRKRestoreExtended1Block
- 0x800a8600: TRKTargetCPUMinorType
- 0x800a8608: TRK_main
- 0x800a864c: TRKLoadContext
- 0x800a86d4: TRKUARTInterruptHandler
- 0x800a86d8: TRK_board_display
- 0x800a86fc: UnreserveEXI2Port
- 0x800a872c: ReserveEXI2Port
- 0x800a875c: TRKReadUARTPoll
- 0x800a884c: WriteUART1
- 0x800a8874: WriteUARTFlush
- 0x800a8954: EnableEXI2Interrupts
- 0x800a8984: TRKInitializeIntDrivenUART
- 0x800a89c0: InitMetroTRKCommTable
- 0x800a8ac0: TRKEXICallBack
- 0x800a8af8: TRKTargetContinue
- 0x800a8b2c: GetUseSerialIO
- 0x800a8b3c: SetUseSerialIO
- 0x800a8b48: __TRK_write_console
- 0x800a8c04: __read_console
- 0x800a8cc0: EXI2_Init
- 0x800a8cc4: EXI2_EnableInterrupts
- 0x800a8cc8: EXI2_Poll
- 0x800a8cd0: EXI2_ReadN
- 0x800a8cd8: EXI2_WriteN
- 0x800a8ce0: EXI2_Reserve
- 0x800a8ce4: EXI2_Unreserve
- 0x800a8ce8: AMC_IsStub
- 0x800a8cf0: DBClose
- 0x800a8cf4: DBOpen
- 0x800a8cf8: DBWrite
- 0x800a8f58: DBRead
- 0x800a8fe4: DBQueryData
- 0x800a9080: DBInitInterrupts
- 0x800a90d4: DBInitComm
- 0x800a914c: DBGHandler
- 0x800a918c: MWCallback
- 0x800a91c8: DBGReadStatus
- 0x800a9274: DBGWrite
- 0x800a9350: DBGRead
- 0x800a942c: DBGReadMailbox
- 0x800a94d8: DBGEXIImm
- 0x800a9770: Hu_IsStub
- 0x800a9780: __init_cpp_exceptions_reference
- 0x800a97c4: __fini_cpp_exceptions_reference
- 0x800a9938: SE_FLOOR_DATA
- 0x800a99f6: SE_ROOM_INS_DATA
- 0x800a9a18: SE_ROOM_INS_RANDOM_OFFSET
- 0x800a9b10: sou_trg_se_init
- 0x800a9b30: sou_voice_se_init
- 0x800a9b54: sou_lev_se_init
- 0x800a9b68: sou_lev_ongen_data_init
- 0x800a9b7c: sou_ongen_entry_init
- 0x800a9b8c: sou_se_fade_init
- 0x800a9b98: melody_seq_size
- 0x800aa044: melody_seq_offset
- 0x800aa9dc: checkTableNG
- 0x800aaa30: tags_table_table
- 0x800aab60: geomtbl
- 0x800aac20: gmtxtbl
- 0x800aac44: h_tbl
- 0x800aae28: l_tbl
- 0x800aafc0: fmtxtbl__5emu64
- 0x800ab000: tbla
- 0x800ab010: tblc
- 0x800ab110: pows
- 0x800ab170: saoAboutEncoding___10JUTResFont
- 0x800ab260: JUTResFONT_Ascfont_fix12
- 0x800af3c0: __constants
- 0x800af4e0: two_over_pi
- 0x800af5e8: npio2_hw
- 0x800af668: init_jk
- 0x800af678: PIo2
- 0x800af6b8: atanhi
- 0x800af6d8: atanlo
- 0x800af6f8: aT
- 0x800af790: gTRKMemMap
- 0x800afe50: SystemHeapSize
- 0x800afe54: gameheap_len
- 0x800afe58: customized_GXNtsc240Ds
- 0x800afe94: customized_GXNtsc240Prog
- 0x800afed0: customized_GXNtsc240IntDf
- 0x800aff0c: customized_GXNtsc480Ds
- 0x800aff48: customized_GXNtsc480IntDf
- 0x800aff84: customized_GXNtsc480Prog
- 0x800b045c: aram_resName
- 0x800b05e8: __Creator__
- 0x800b05f4: __DateTime__
- 0x800b0608: gam_win1_cursor_setup
- 0x800b0630: gam_win1_moji_setup
- 0x800b0658: viewport
- 0x800b0668: projection
- 0x800b06a8: lookat
- 0x800b06e8: default_model_scale
- 0x800b0728: logo_projection
- 0x800b0768: logo_model_scale
- 0x800b07a8: initial_dl
- 0x800b0800: logo_initial_dl
- 0x800b0858: logo_draw_dl
- 0x800b0890: step1_draw_dl
- 0x800b08f8: step2_draw_dl
- 0x800b0930: pad_good_frame_count
- 0x800b0a60: dvd_keikoku_moji1_1_tex
- 0x800b0f60: dvd_keikoku_moji1_2_tex
- 0x800b1460: dvd_keikoku_moji1_3_tex
- 0x800b1660: dvd_keikoku_moji1_4_tex
- 0x800b30e0: dvd_keikoku1_v
- 0x800b34a0: keikoku1_dvd_att_moji_model
- 0x800b3538: keikoku1_dvd_att_winT_model
- 0x800b3640: dvd_keikoku_moji2_tex
- 0x800b38c0: dvd_keikoku_moji2_2_tex
- 0x800b3ec0: dvd_keikoku_moji2_3_tex
- 0x800b3f40: dvd_keikoku2_v
- 0x800b42c0: keikoku2_dvd_att_moji_model
- 0x800b4340: keikoku2_dvd_att_winT_model
- 0x800b4440: dvd_keikoku_moji4_tex
- 0x800b46c0: dvd_keikoku_moji3_1_tex
- 0x800b4cc0: dvd_keikoku_moji3_2_tex
- 0x800b4f40: dvd_keikoku_moji3_3_tex
- 0x800b4fc0: dvd_keikoku3_v
- 0x800b5400: keikoku3_dvd_att_moji_model
- 0x800b54a8: keikoku3_dvd_att_winT_model
- 0x800b55a0: dvd_keikoku_moji5_tex
- 0x800b58a0: dvd_keikoku_moji6_2_tex
- 0x800b5d20: dvd_keikoku_moji6_3_tex
- 0x800b5fa0: dvd_keikoku_moji6_tex
- 0x800b63a0: dvd_keikoku_moji6_1_tex
- 0x800b6920: dvd_keikoku_moji6_new1_tex
- 0x800b6b20: dvd_keikoku_moji6_new2_tex
- 0x800b6d20: dvd_keikoku4_v
- 0x800b71a0: keikoku4_dvd_att_moji_model
- 0x800b7280: keikoku4_dvd_att_winT_model
- 0x800b7380: dvd_keikoku_moji7_tex
- 0x800b7880: dvd_keikoku_moji8_tex
- 0x800b7c80: dvd_keikoku_moji10_tex
- 0x800b7e80: dvd_keikoku_moji11_tex
- 0x800b8300: dvd_keikoku_moji12_tex
- 0x800b8580: dvd_keikoku_moji9_tex
- 0x800b8a80: dvd_keikoku5_v
- 0x800b8ec0: keikoku5_dvd_att_moji_model
- 0x800b8f88: keikoku5_dvd_att_winT_model
- 0x800b9080: Dvderr_viewport
- 0x800b9090: Dvderr_initial_dl
- 0x800b9140: gam_win_moji1_tex
- 0x800b93c0: gam_win_moji2_tex
- 0x800b98c0: "yes"
- 0x800b99c0: "no"
- 0x800baec0: gam_win1_v
- 0x800bb2b0: gam_win1_cursor_model
- 0x800bb2f0: gam_win1_moji_model
- 0x800bb358: gam_win1_moji2_model
- 0x800bb3a8: gam_win1_moji3_model
- 0x800bb3f8: gam_win1_winT_model
- 0x800bba00: gam_win_moji4_tex
- 0x800bd380: gam_win2_v
- 0x800bd6c0: gam_win2_moji_model
- 0x800bd728: gam_win2_winT_model
- 0x800bdd20: gam_win_moji5_tex
- 0x800be0a0: gam_win3_v
- 0x800be3e0: gam_win3_moji_model
- 0x800be460: nintendo_376x104
- 0x800c30c0: logo_nin_v
- 0x800c3100: logo_ninT_model
- 0x800c3140: nintendo_hi_0
- 0x800cca40: AudioseqHeaderStart
- 0x800cd9e0: AudiobankHeaderStart
- 0x800ce3e0: AudiowaveHeaderStart
- 0x800ce450: AudiodataHeaderStart
- 0x800ce490: AudiomapHeaderStart
- 0x800ce880: LEN_TABLE
- 0x800ce8a0: NOISE_FREQ_TABLE
- 0x800ce8e0: sbuffer
- 0x800ce9e0: LEN_TABLE_HVC
- 0x800cea00: TRIANGLE_TABLE
- 0x800cea60: NOISE_PULSE_TABLE
- 0x800cea70: DMOD_TABLE
- 0x800ceab0: VOLTABLE_DELTAMOD
- 0x800cebb0: VOLTABLE_DISKFM
- 0x800cebd4: VOLTABLE_DISKFM_SUB
- 0x800cebf8: DISKFM_GAINTABLE
- 0x800cec08: DEB1
- 0x800cec18: VOLTABLE_HVCPULSE
- 0x800cec5c: VOLTABLE_VRCPULSE
- 0x800cecf8: PCM
- 0x800ced1c: PCMSIZE
- 0x800ced40: OCTAVETABLE
- 0x800ced70: BGM_MUTE_TABLE_FINE
- 0x800ceda0: BGM_MUTE_TABLE_SNOW
- 0x800cedd0: BGM_MUTE_TABLE_SAKURA
- 0x800cee00: BGM_MUTE_TABLE_MUSEUM
- 0x800cee20: NIN_SEQ
- 0x800cee80: NIN_BANK
- 0x800cf700: NIN_WAVE
- 0x800cff20: RES_FILTER
- 0x800d0120: AD4
- 0x800d01a8: J_STREAMNAME
- 0x800d0228: J_STREAM
- 0x800d0278: audio_root_path
- 0x800d0390: VELOCONV_TABLE
- 0x800d1390: LSF_TABLE
- 0x800d1490: HSF_TABLE
- 0x800d1580: EL_FILTER
- 0x800d1c10: BP_FILTER
- 0x800d22a0: wm_sin
- 0x800d24a0: WAVEMEM_TABLE
- 0x800d24c4: PCENTTABLE
- 0x800d28c4: PCENTTABLE2
- 0x800d2cc4: PITCHTABLE
- 0x800d2ec4: DEFAULT_VTABLE
- 0x800d2ed4: DEFAULT_GTABLE
- 0x800d2ee4: DEFAULT_ENV
- 0x800d2ef4: NA_CHINIT_TABLE
- 0x800d2f14: NA_SVCINIT_TABLE
- 0x800d2f34: CDELAYTABLE
- 0x800d2fb4: PhoneLeft
- 0x800d31b4: WideLeft
- 0x800d33b4: StereoLeft
- 0x800d35b4: BDB_SEQDATA
- 0x800d3668: NA_HALL_DELAY
- 0x800d3680: NA_SPEC_CONFIG
- 0x800d36b8: AGC
- 0x800d36f0: SCOM_TABLE
- 0x800d3b00: jdsp
- 0x800d5500: calc_sw_table
- 0x800d5598: history
- 0x800d55e0: DSPADPCM_FILTER
- 0x800d5620: DSPRES_FILTER
- 0x800d5a20: SEND_TABLE
- 0x800d5a38: C5BASE_PITCHTABLE
- 0x800d5c38: FORCE_RELEASE_TABLE
- 0x800d5c48: extdir
- 0x800d5d44: Arglist
- 0x800d5e44: CMDP_LIST
- 0x800d5f48: CUTOFF_TO_IIR_TABLE
- 0x800d6348: KEY_TABLE
- 0x800d6448: VIB_TABLE
- 0x800d646c: TRE_TABLE
- 0x800d6490: REL_TABLE
- 0x800d649c: VIBRATO_DEF
- 0x800d64b4: TREMOLO_DEF
- 0x800d64cc: ENVELOPE_DEF
- 0x800d64e4: ADS_TABLE
- 0x800d64fc: ADSR_DEF
- 0x800d6514: OSC_DEF
- 0x800d6530: PERC_ENV
- 0x800d6548: OSC_ENV
- 0x800d6560: polys_table
- 0x800d6570: ksNesStoreFuncTblDefault
- 0x800d6590: ksNesStorePPUFuncTblDefault
- 0x800d65b0: ksNesStoreIOFuncTblDefault
- 0x800d6650: ksNesStoreQDFuncTbl
- 0x800d6670: ksNesInitQDDataTbl
- 0x800d667c: ksNesStore05FuncTbl
- 0x800d6740: ksNesLoadFuncTblDefault
- 0x800d6760: ksNesLoadIOFuncTblDefault
- 0x800d67c0: ksNesVoiceIdTable_12
- 0x800d67d0: ksNesMapperInitFuncTbl
- 0x800d7644: ksNesInstJumpTbl
- 0x800d8690: ksNesPaletteNormal
- 0x800d998c: __vt__13JKRFileFinder
- 0x800d99a0: tags_table_default
- 0x800d99a4: tags_table_cluclu_land
- 0x800d99d4: tags_table_balloon_fight
- 0x800d9a1c: tags_table_donkey_kong
- 0x800d9a50: tags_table_sansu_asobi
- 0x800d9ac0: tags_table_pinball
- 0x800d9af8: tags_table_tennis
- 0x800d9b14: tags_table_golf
- 0x800d9b38: tags_table_punchout
- 0x800d9b6c: tags_table_baseball
- 0x800d9b88: tags_table_cluclu_land_disk
- 0x800d9bbc: tags_table_donkey_kong_3
- 0x800d9bf4: tags_table_donkey_kong_jr
- 0x800d9c2c: tags_table_gomoku_narabe
- 0x800d9c4c: tags_table_mahjong
- 0x800d9c68: tags_table_wario_no_mori
- 0x800d9ccc: tags_table_ice_climber
- 0x800d9cfc: tags_table_mario_bros
- 0x800d9d2c: tags_table_super_mario_bros
- 0x800d9d70: tags_table_legend_of_zelda_disk
- 0x800d9da4: tags_table_legend_of_zelda_rom
- 0x800d9ddc: tags_table_soccer
- 0x800d9df8: tags_table_excite_bike
- 0x800d9ee4: tags_table_excite_bike_design
- 0x800da0c4: tags_table_nazo_no_murasamejo
- 0x800da0f8: tags_table_super_mario_bros_2
- 0x800da148: tags_table_marioopen_golf
- 0x800da184: tags_table_external_default
- 0x800da19c: tags_table_balloon_fight_jpn
- 0x800da2f0: moriNameTable
- 0x800da9d8: D54
- 0x800daaa0: texture_cache_data_func
- 0x800daaac: texture_cache_bss_func
- 0x800daab8: texture_cache_data
- 0x800daad8: texture_cache_bss
- 0x800dab78: doltexwrapmode
- 0x800dab94: dolfmttbl2
- 0x800dabe4: dolfmttbl
- 0x800dc390: dl_func_tbl
- 0x800dc810: gfxprint_moji_tlut
- 0x800dc890: gfxprint_font
- 0x800dd360: sintable
- 0x800ddb60: ldigs
- 0x800ddb74: udigs
- 0x800ddb88: spaces
- 0x800ddbac: zeroes
- 0x800ddda0: e_mtx
- 0x800ddde0: clear_z_TX
- 0x800ddf04: __vt__10JFWDisplay
- 0x800ddf44: __vt__7JKRHeap
- 0x800de350: __vt__10JKRExpHeap
- 0x800de3b4: __vt__11JKRDisposer
- 0x800de3e4: __vt__9JKRThread
- 0x800de3f8: sMessageBuffer__7JKRAram
- 0x800de408: sMessageQueue__7JKRAram
- 0x800de4ac: __vt__7JKRAram
- 0x800de4e4: __vt__11JKRAramHeap
- 0x800de500: __vt__12JKRAramBlock
- 0x800de568: sMessageBuffer__13JKRAramStream
- 0x800de578: sMessageQueue__13JKRAramStream
- 0x800de5f4: __vt__13JKRAramStream
- 0x800de630: __vt__13JKRFileLoader
- 0x800de69c: __vt__12JKRArcFinder
- 0x800de6f8: __vt__10JKRArchive
- 0x800de7e0: __vt__13JKRMemArchive
- 0x800de86c: __vt__7JKRFile
- 0x800de8f4: __vt__14JKRAramArchive
- 0x800dea2c: __vt__13JKRDvdArchive
- 0x800deb60: __vt__14JKRCompArchive
- 0x800dec08: __vt__10JKRDvdFile
- 0x800dec90: sMessageBuffer__9JKRDecomp
- 0x800deca0: sMessageQueue__9JKRDecomp
- 0x800ded04: __vt__9JKRDecomp
- 0x800ded6c: __vt__20JSURandomInputStream
- 0x800ded90: __vt__10JSUIosBase
- 0x800ded9c: __vt__14JSUInputStream
- 0x800dee3c: __vt__18JSUFileInputStream
- 0x800dee70: __vt__12JUTGraphFifo
- 0x800dee80: __vt__7JUTFont
- 0x800def14: __vt__10JUTResFont
- 0x800def60: channel_mask
- 0x800def94: __vt__10JUTGamePad
- 0x800defa0: sMessageQueue__12JUTException
- 0x800defc0: c3bcnt
- 0x800df09c: sCpuExpName__12JUTException
- 0x800df400: __vt__12JUTException
- 0x800df410: sAsciiTable__14JUTDirectPrint
- 0x800df490: sFontData__14JUTDirectPrint
- 0x800df590: sFontData2__14JUTDirectPrint
- 0x800df6d4: __vt__8JUTVideo
- 0x800df6ec: __vt__8JUTFader
- 0x800df720: __vt__10JUTConsole
- 0x800df740: __vt__14J2DGrafContext
- 0x800df794: __vt__13J2DOrthoGraph
- 0x800df8a8: __OSExceptionLocations
- 0x800df980: DSPInitCode
- 0x800e0128: InterruptPrioTable
- 0x800e09c8: YearDays
- 0x800e09f8: LeapYearDays
- 0x800e0a28: Si
- 0x800e0af8: XYNTSC
- 0x800e0b28: XYPAL
- 0x800e10b0: ErrorTable
- 0x800e1168: timing
- 0x800e1298: taps
- 0x800e1450: SectorSizeTable
- 0x800e1470: LatencyTable
- 0x800e15b0: GXNtsc480IntDf
- 0x800e15ec: GXNtsc480Int
- 0x800e1628: GXMpal480IntDf
- 0x800e1664: GXPal528IntDf
- 0x800e16a0: GXEurgb60Hz480IntDf
- 0x800e1948: __files
- 0x800e1bb0: __ctype_map
- 0x800e1cb0: __lower_map
- 0x800e1db0: __upper_map
- 0x800e2128: gTRKDispatchTable
- 0x800e21e8: gTRKRestoreFlags
- 0x800e21f4: gTRKExceptionStatus
- 0x800e2204: gTRKStepStatus
- 0x800e2218: TRK_ISR_OFFSETS
- 0x800e2258: gDBCommTable
- 0x800e2280: StringTable
- 0x800e2284: fakemain_check
- 0x800e2288: InitialStartTime
- 0x800e2308: boot_copyDate
- 0x800e230c: moduleA
- 0x800e2310: HotStartEntry
- 0x800e2368: gamePad
- 0x800e2608: jc_fader
- 0x800e260c: forest_arc_aram_p
- 0x800e2610: forest_arc_aram2_p
- 0x800e2614: gameheap_base
- 0x800e2618: jc_gport
- 0x800e261c: jc_sysConsole
- 0x800e2626: video_pan_xorg
- 0x800e2628: video_pan_yorg
- 0x800e262a: video_pan_width
- 0x800e262c: video_pan_height
- 0x800e2640: model_cursor
- 0x800e2688: start_time
- 0x800e2690: button
- 0x800e2694: trigger
- 0x800e2698: frame_count
- 0x800e26a0: limit_time
- 0x800e26a8: select_done
- 0x800e26b0: commandQ
- 0x800e26d0: fadeout_step
- 0x800e26d4: load_game_done
- 0x800e26d8: gfxbuf
- 0x800e2758: statusQ
- 0x800e2778: Thread_p
- 0x800e277c: initialMenuStack
- 0x800e2780: commandMsgBuf
- 0x800e2788: statusMsgBuf
- 0x800e2790: Dvderr_work
- 0x800e2b88: PCMH2
- 0x800e2b98: SoundA
- 0x800e2be4: SoundB
- 0x800e2c30: SoundC
- 0x800e2c7c: SoundD
- 0x800e2cc8: SoundE
- 0x800e2cec: SoundX
- 0x800e2d38: SoundY
- 0x800e2d84: SoundZ
- 0x800e2dd0: SoundM
- 0x800e2e1c: SoundN
- 0x800e2e68: SoundF
- 0x800e2eb4: SoundP
- 0x800e2ecc: DUMMY_ACTIVE
- 0x800e2ed8: DISKFM_TABLE
- 0x800e2f18: DISKSUB_TABLE
- 0x800e2f38: disksubwave
- 0x800e2fb8: SoundQ
- 0x800e2fd8: SoundQbuf
- 0x800e6fd8: sound_loop_buffer
- 0x800eb670: sou_trg_se
- 0x800eb730: sou_voice_se
- 0x800eb778: sou_lev_se
- 0x800eb7f0: sou_lev_ongen_data
- 0x800eb840: sou_ongen_entry
- 0x800ebb60: sou_room_ins
- 0x800ebcf0: sou_se_fade
- 0x800ebdc0: audiomemory
- 0x8017bdc0: SOU_FIR_STATE_COPY
- 0x8017bdd8: rhythm_buffer
- 0x8017be80: DMEM
- 0x8017ce80: ADPCM_BOOKBUF
- 0x8017cf80: FINALR_STATE_BUF
- 0x8017cfa0: dac
- 0x8017cfac: audio_hp
- 0x8017cfc0: audioStack
- 0x8017dfc0: neosStack
- 0x8017efc0: dvdStack
- 0x8017ffc0: audioproc_mq
- 0x80180020: neosproc_mq
- 0x801864d0: PLAYER_CALLLIST
- 0x80186590: mq
- 0x801867b0: CALLSTACK
- 0x8018e924: dvd_file
- 0x8018f124: dvd_entrynum
- 0x8018f1c0: GLOBAL_CHANNEL
- 0x8018f240: CHANNEL
- 0x801a3240: waitp
- 0x801a32c0: waittime
- 0x801a3340: DSPCH
- 0x801a3740: CH_BUF
- 0x801a9740: FX_BUF
- 0x801a97c0: bankp
- 0x801a9bc0: wavearc
- 0x801a9fc0: wavegroup
- 0x801aa3c0: WS_V2P_TABLE
- 0x801aa5c0: BNK_V2P_TABLE
- 0x801aa7c0: SINTABLE
- 0x801aabc8: FH_TO_FAT
- 0x801aafc8: FAT
- 0x801ab7c8: TRACK_LIST
- 0x801ab8c8: SEQ_ARG
- 0x801ab8e8: seq
- 0x801eece8: ROOT_OUTER
- 0x801ef0e8: rootseq
- 0x801ef128: FREE_SEQP_QUEUE
- 0x801ef580: commentImageBuffer
- 0x801f4dc4: famicomCommon
- 0x801f4dc0: save_game_image
- 0x801f4e7c: famicomCommonSave
- 0x801f683c: nesrom_filename_ptrs
- 0x801f6840: nesrom_filename_strbuf
- 0x801f6844: InputValid
- 0x801f6848: InputData
- 0x801f6858: InputButton
- 0x801f6868: InputTrigger
- 0x801f6878: InputRepeat
- 0x801f6888: InputRepeatCount
- 0x801f689c: filer_demo_count
- 0x801f68a0: nesrom_idx_loaded
- 0x801f68a4: nesrom_idx
- 0x801f68a8: nesrom_count
- 0x801f68ac: rapid_count
- 0x801f68b8: famicom_getSaveChanCallback
- 0x801f68bc: my_malloc_current
- 0x801f68c0: famicom_arc
- 0x801f68c8: ksnes_thread
- 0x801f6c18: highscore_flags
- 0x801f6c20: nesinfo_mcrd_game_name
- 0x801f6c44: nesinfo_ptr
- 0x801f6c48: nesinfo_tags_size
- 0x801f6c4c: nesinfo_tags_start
- 0x801f6c50: nesinfo_tags_end
- 0x801f6c54: nesinfo_tags_gameName
- 0x801f6c58: nesinfo_tags_kanjiName
- 0x801f6c5c: nesinfo_tags_moriName
- 0x801f6c60: nesinfo_data_size
- 0x801f6c64: nesinfo_data_start
- 0x801f6c68: nesinfo_data_end
- 0x801f6c6c: nesinfo_rom_size
- 0x801f6c70: nesinfo_rom_start
- 0x801f6c74: nesinfo_rom_end
- 0x801f6c78: nesinfo_expand_rom_size
- 0x801f6c80: SecParams
- 0x801f6d80: __GBA
- 0x801f7180: g_Joy_wrk
- 0x801f71b0: Port
- 0x801f71c0: texture_buffer_data
- 0x802031c0: texture_buffer_bss
- 0x802035c0: tmem_map
- 0x802043c0: texture_cache_list
- 0x80204c00: texture_cache_data_entry_tbl
- 0x80204da0: emu64_class
- 0x80206e20: warningString__5emu64
- 0x80206e48: warningTime__5emu64
- 0x80206f08: print_mutex
- 0x80206f20: fault_class
- 0x80206f30: malloc_arena
- 0x80206f60: osAppNMIBuffer
- 0x80206fa0: __osBaseTimer
- 0x80206fe8: clear_z_tobj
- 0x80207014: sThreadList__9JKRThread
- 0x8020702c: sAramCommandList__7JKRAram
- 0x80207044: sAramList__11JKRAramHeap
- 0x8020705c: sAramPieceCommandList__12JKRAramPiece
- 0x80207068: mMutex__12JKRAramPiece
- 0x8020708c: sVolumeList__13JKRFileLoader
- 0x802070a4: sDvdList__10JKRDvdFile
- 0x802070bc: sDvdAsyncList__12JKRDvdRipper
- 0x802070d4: sDvdAramAsyncList__16JKRDvdAramRipper
- 0x802070ec: mPadList__10JUTGamePad
- 0x802070f8: mPadStatus__10JUTGamePad
- 0x80207128: mPadButton__10JUTGamePad
- 0x802071e8: mPadMStick__10JUTGamePad
- 0x80207228: mPadSStick__10JUTGamePad
- 0x80207268: exCallbackObject
- 0x80207288: sMapFileList__12JUTException
- 0x80207340: DriveInfo
- 0x80207360: DriveBlock
- 0x80207390: __OSErrorTable
- 0x802073e0: Header
- 0x80207400: Scb
- 0x80207458: RunQueue
- 0x80207558: IdleThread
- 0x80207868: DefaultThread
- 0x80207b78: IdleContext
- 0x80207e40: Ecb
- 0x80207f00: Packet
- 0x80207f80: Alarm
- 0x80208020: TypeTime
- 0x80208040: XferTime
- 0x80208060: TypeCallback
- 0x802080a0: RDSTHandler
- 0x802080b0: InputBufferValid
- 0x802080c0: InputBuffer
- 0x802080e0: InputBufferVcount
- 0x80208100: CommandList
- 0x80208140: AlarmForWA
- 0x80208168: AlarmForTimeout
- 0x80208190: AlarmForBreak
- 0x802081b8: Prev
- 0x802081c4: Curr
- 0x802081e0: tmpBuffer
- 0x80208260: DummyCommandBlock
- 0x80208290: ResetAlarm
- 0x802082b8: WaitingQueue
- 0x802082d8: bb2Buf
- 0x80208348: regs
- 0x802083c0: shdwRegs
- 0x80208438: HorVer
- 0x802084a0: Origin
- 0x802084d0: CmdProbeDevice
- 0x802084e0: __CARDBlock
- 0x80208700: __CARDDiskNone
- 0x80208720: gxData
- 0x80208c18: FifoObj
- 0x80208c98: DisplayListFifo
- 0x80208cbc: __savedGXdata
- 0x802091b8: fragmentinfo
- 0x802091c8: __atexit_funcs
- 0x802092c8: stderr_buff
- 0x802093c8: stdout_buff
- 0x802094c8: stdin_buff
- 0x802095c8: gTRKEventQueue
- 0x802095f0: gTRKBigEndian
- 0x802095f8: gTRKMsgBufs
- 0x8020afa8: gTRKInputPendingPtr
- 0x8020afac: gTRKFramingState
- 0x8020afc0: gTRKDispatchTableSize
- 0x8020afc8: IsTRKConnected
- 0x8020afd0: TRK_saved_exceptionID
- 0x8020afd4: gTRKState
- 0x8020b078: gTRKCPUState
- 0x8020b4a8: gTRKSaveState
- 0x8020b53c: TRKvalue128_temp
- 0x8020b550: lc_base
- 0x8020b558: TRK_mainError
- 0x8020b560: gWritePos
- 0x8020b564: gReadPos
- 0x8020b568: gReadCount
- 0x8020b56c: _MetroTRK_Has_Framing
- 0x8020b570: gReadBuf
- 0x8020c67c: gWriteBuf
- 0x8020d78c: aram_hp
- 0x8020d7a0: jac_audioThread
- 0x8020e0d0: jac_neosThread
- 0x8020e3e0: jac_dvdThread
- 0x8020e6f0: MK_QUEUE
- 0x8020e788: MK_QBUF
- 0x8020e7c8: MK_RMES
- 0x8020e808: AG
- 0x80217ab8: EX_DSPTASK
- 0x80217af8: CGRP_ARRAY
- 0x80217b38: aram_mother
- 0x80217b88: DISK_SUB_GAIN
- 0x80217b90: ROM_TOP_C000
- 0x80217b94: ROM_TOP_E000
- 0x80217b98: DISK_FRAME_SAMPLE
- 0x80217b9c: FRAME_SAMPLE
- 0x80217ba0: PHASE_SAMPLE
- 0x80217ba4: NOISE_MASTER
- 0x80217ba8: NOISE_SHIFT
- 0x80217bac: write_pointer
- 0x80217bb0: buffer_remain
- 0x80217bb4: _STOP
- 0x80217bc0: sou_now_bgm_handle
- 0x80217bc4: SOU_ONGEN_AREA1
- 0x80217bc8: SOU_ONGEN_AREA2
- 0x80217bcc: sou_md_bgm_boost_pasent
- 0x80217bd0: rhythm_beat_type
- 0x80217bd8: AD2
- 0x80217be8: JAC_DAC_RATE
- 0x80217bec: JAC_SUBFRAMES
- 0x80217bf0: JAC_FRAMESAMPLES
- 0x80217bf4: DAC_SIZE
- 0x80217bf8: Env_DataH
- 0x80217bfc: Env_Data_L1
- 0x80217c00: Env_Data_L2
- 0x80217c04: Env_Data_L3
- 0x80217c08: NA_DMA_PROC
- 0x80217c0c: NA_SYNC_PROC
- 0x80217c18: DSP_MIXERLEVEL
- 0x80217c20: MAX_MIXERLEVEL
- 0x80217c24: JAC_SYSTEM_OUTPUT_MODE
- 0x80217c38: v0
- 0x80217c3c: v1
- 0x80217c40: ARCALL
- 0x80217c44: first
- 0x80217c48: osc_table
- 0x80217c50: OSC_REL
- 0x80217c58: black_color
- 0x80217c5c: white_color
- 0x80217de8: __qrand_idum
- 0x80217e10: __osFinalrom
- 0x80217e18: __osTimerList
- 0x80217e20: maxStdHeaps__Q29JFWSystem11CSetUpParam
- 0x80217e24: sysHeapSize__Q29JFWSystem11CSetUpParam
- 0x80217e28: fifoBufSize__Q29JFWSystem11CSetUpParam
- 0x80217e2c: aramAudioBufSize__Q29JFWSystem11CSetUpParam
- 0x80217e30: aramGraphBufSize__Q29JFWSystem11CSetUpParam
- 0x80217e34: streamPriority__Q29JFWSystem11CSetUpParam
- 0x80217e38: decompPriority__Q29JFWSystem11CSetUpParam
- 0x80217e3c: aPiecePriority__Q29JFWSystem11CSetUpParam
- 0x80217e40: systemFontRes__Q29JFWSystem11CSetUpParam
- 0x80217e44: renderMode__Q29JFWSystem11CSetUpParam
- 0x80217e48: exConsoleBufferSize__Q29JFWSystem11CSetUpParam
- 0x80217e50: __RTTI__10JFWDisplay
- 0x80217eb8: __RTTI__10JKRExpHeap
- 0x80217ef0: __RTTI__7JKRAram
- 0x80217f00: __RTTI__11JKRAramHeap
- 0x80217f08: __RTTI__12JKRAramBlock
- 0x80217f30: __RTTI__13JKRAramStream
- 0x80217f58: __RTTI__12JKRArcFinder
- 0x80217f90: __RTTI__13JKRMemArchive
- 0x80217fc0: __RTTI__14JKRAramArchive
- 0x80217fe0: __RTTI__13JKRDvdArchive
- 0x80218000: __RTTI__14JKRCompArchive
- 0x80218020: __RTTI__10JKRDvdFile
- 0x80218048: __RTTI__9JKRDecomp
- 0x80218080: __RTTI__18JSUFileInputStream
- 0x80218088: __RTTI__12JUTGraphFifo
- 0x802180b0: __RTTI__10JUTResFont
- 0x802180b8: mStickMode__10JUTGamePad
- 0x802180bc: sResetPattern__Q210JUTGamePad13C3ButtonReset
- 0x802180c8: __RTTI__10JUTGamePad
- 0x802180d0: sMessageBuffer__12JUTException
- 0x80218110: __RTTI__12JUTException
- 0x80218130: __RTTI__8JUTVideo
- 0x80218138: __RTTI__8JUTFader
- 0x80218140: oneFrameRate
- 0x80218144: oneFrameRateUser
- 0x80218150: __RTTI__10JUTConsole
- 0x80218168: __RTTI__13J2DOrthoGraph
- 0x80218170: __OSCurrHeap
- 0x80218178: __OSArenaLo
- 0x80218198: Unit01
- 0x802181a0: FirstRead
- 0x802181b0: autoInvalidation
- 0x802181c8: ClampRegion
- 0x802181d0: ResettingChan
- 0x802181d4: XPatchBits
- 0x802181d8: AnalogMode
- 0x802181dc: Spec
- 0x802181e0: MakeStatus
- 0x802181e4: CmdReadOrigin
- 0x802181e8: CmdCalibrate
- 0x802181f0: __CARDVendorID
- 0x802181f8: gx
- 0x80218210: GXTexMode0Ids
- 0x80218218: GXTexMode1Ids
- 0x80218220: GXTexImage0Ids
- 0x80218228: GXTexImage1Ids
- 0x80218230: GXTexImage2Ids
- 0x80218238: GXTexImage3Ids
- 0x80218240: GXTexTlutIds
- 0x80218248: GX2HWFiltConv
- 0x80218250: fragmentID
- 0x80218260: next
- 0x80218268: __float_nan
- 0x8021826c: __float_huge
- 0x80218284: NOISE_DTABLE
- 0x80218288: PHASE_SYNC_FLAG
- 0x8021828c: FRAME_SYNC_FLAG
- 0x80218290: PHASE_SYNC_COUNTER
- 0x80218294: FRAME_SYNC_COUNTER
- 0x8021829c: delta_counter
- 0x802182a4: bias_move
- 0x802182a8: bias
- 0x802182ac: voltage
- 0x802182b0: voltage_out
- 0x802182b4: sample_timer
- 0x802182b8: abs_timer
- 0x802182cc: read_pointer
- 0x802182dc: exitflag
- 0x802182e0: old_mixcall
- 0x802182e8: bootsound_ptr
- 0x802182ec: bootsound_size
- 0x802182f0: sou_now_spec
- 0x802182f4: sou_scene_mode
- 0x802182f5: sou_chime_status
- 0x802182f8: fatalErrorCallback
- 0x80218300: sou_last_sys_trg_num
- 0x80218304: sou_kazaguruma_speed
- 0x80218310: sou_player_speed
- 0x8021831c: sou_last_perio
- 0x8021831e: sou_last_uchiwa
- 0x80218322: sou_kiteki_random
- 0x80218324: sou_kiteki_counter
- 0x80218328: sou_camera2ground
- 0x80218330: sou_bgm_vol_move_target
- 0x80218334: sou_bgm_vol_move_delta
- 0x80218338: sou_bgm1_vol_now
- 0x8021833c: sou_bgm2_vol_now
- 0x80218340: sou_bgm_vol_move_time
- 0x80218342: sou_bgm_vol_move_counter
- 0x80218344: sou_kisha_angle
- 0x80218348: sou_kisha_distance
- 0x8021834c: sou_kisha_angle2
- 0x80218350: sou_kisha_distance2
- 0x80218354: sou_kisha_status
- 0x80218356: sou_shu_count
- 0x80218358: sou_tonton_count
- 0x80218364: sou_bgm_call_buffer_u16
- 0x80218366: sou_ongenpos_kill_countdown
- 0x80218368: sou_chime_volume
- 0x80218376: sou_num2_animal_id
- 0x80218384: SOU_FIR_STATE
- 0x80218390: current_sub_track
- 0x80218394: na_melody_id_hist
- 0x802183b0: kappa_seq_handle
- 0x802183b8: start_flag
- 0x802183bc: mouth_num
- 0x802183c0: seq_num
- 0x802183c8: ADPCM_BOOKBUF_SIZE
- 0x802183f0: UNIVERSAL_DACCOUNTER
- 0x802183f4: audio_hp_exist
- 0x802183f8: last_rsp_madep
- 0x802183fc: use_rsp_madep
- 0x80218400: vframe_work_running
- 0x80218404: DAC_CALLBACK_FUNC
- 0x80218408: JAC_VFRAME_COUNTER
- 0x8021840c: ext_mixcallback
- 0x80218420: JAC_ARAM_DMA_BUFFER_TOP
- 0x80218424: AUDIO_ARAM_TOP
- 0x80218428: CARD_SECURITY_BUFFER
- 0x8021842c: init_load_size
- 0x80218430: init_load_addr
- 0x80218434: init_cut_flag
- 0x80218438: SELECTED_ARAM_SIZE
- 0x80218440: audioproc_mq_init
- 0x80218444: intcount
- 0x80218450: priority_set
- 0x80218454: pri
- 0x80218458: pri2
- 0x8021845c: pri3
- 0x80218460: neosproc_mq_init
- 0x80218464: tmp_buf
- 0x80218468: neos_ready
- 0x8021847c: dac_sync_counter
- 0x80218498: mq_init
- 0x8021849c: buffersize
- 0x802184a0: buffers
- 0x802184a4: next_buffersize
- 0x802184a8: next_buffertop
- 0x802184ac: next_buffers
- 0x802184b0: cur_q
- 0x802184b4: dvdt_sleep
- 0x802184bc: DVDT_PAUSE_FLAG
- 0x802184c0: error_callback
- 0x802184c4: ADVD_BUFFER
- 0x802184cc: buffer_load
- 0x802184d0: buffer_full
- 0x802184dc: buffer_full2
- 0x802184e0: dvdfile_dics
- 0x802184e8: JAC_AI_SETTING
- 0x802184f0: STOP_VELOCONV
- 0x802184f8: EXGTYPE
- 0x80218500: AUDIO_SYSTEM_READY
- 0x80218504: FASTDMA_BUFFER
- 0x80218528: NA_VFRAME_CALLBACK
- 0x8021852c: NA_CALLBACK
- 0x80218530: NA_GRP_CALLBACK
- 0x80218534: NA_SOUND_CALLBACK
- 0x80218538: NA_DACOUT_CALLBACK
- 0x80218550: cur_waits
- 0x80218554: cur_top
- 0x80218558: cur_tail
- 0x80218560: old_time
- 0x80218570: ACTIVE_FATS
- 0x80218574: USEFAT_TAIL
- 0x80218578: cmd_once
- 0x80218580: cmd_stay
- 0x80218588: global_id
- 0x80218590: JAM_CALLBACK_FUNC
- 0x80218594: T_LISTS
- 0x80218598: SEQ_P
- 0x802185a0: BACK_P
- 0x802185a4: GET_P
- 0x802185a8: SEQ_REMAIN
- 0x802185b0: __GBAReset
- 0x802185b8: texture_cache_num
- 0x802185bc: texture_cache_data_entry_num
- 0x8021860a: FrameCansel
- 0x8021861c: __OSReport_MonopolyThread
- 0x80218620: __OSReport_disable
- 0x80218628: this
- 0x80218630: __gfxprint_default_flags
- 0x80218638: __osMalloc_FreeBlockTest_Enable
- 0x80218640: __qrand_itemp
- 0x80218648: __osTimeOffset
- 0x80218654: osShutdown
- 0x80218658: __osShutdownDisable
- 0x8021865c: __osShutdown
- 0x80218660: __osDisableShutdownTime
- 0x80218668: __osDisableShutdownLevel
- 0x80218670: __osShutdownTime
- 0x80218680: __osResetSwitchPressed
- 0x80218681: __osResetKeyStep
- 0x80218688: __osContinitialized
- 0x80218690: rootHeap__9JFWSystem
- 0x80218694: systemHeap__9JFWSystem
- 0x80218698: mainThread__9JFWSystem
- 0x8021869c: debugPrint__9JFWSystem
- 0x802186a0: systemFont__9JFWSystem
- 0x802186a4: systemConsoleManager__9JFWSystem
- 0x802186a8: systemConsole__9JFWSystem
- 0x802186b0: sManager__10JFWDisplay
- 0x802186d8: sSystemHeap__7JKRHeap
- 0x802186dc: sCurrentHeap__7JKRHeap
- 0x802186e0: sRootHeap__7JKRHeap
- 0x802186e4: mErrorHandler__7JKRHeap
- 0x802186e8: mCodeStart__7JKRHeap
- 0x802186ec: mCodeEnd__7JKRHeap
- 0x802186f0: mUserRamStart__7JKRHeap
- 0x802186f4: mUserRamEnd__7JKRHeap
- 0x802186f8: mMemorySize__7JKRHeap
- 0x80218700: whatdo
- 0x80218704: whatdo2
- 0x80218708: DBfoundSize
- 0x8021870c: DBfoundOffset
- 0x80218710: DBfoundBlock
- 0x80218714: DBnewFreeBlock
- 0x80218718: DBnewUsedBlock
- 0x80218720: sAramObject__7JKRAram
- 0x80218744: srcAddress
- 0x80218758: sAramStreamObject__13JKRAramStream
- 0x8021875c: transBuffer__13JKRAramStream
- 0x80218760: transSize__13JKRAramStream
- 0x80218764: transHeap__13JKRAramStream
- 0x80218768: sCurrentVolume__13JKRFileLoader
- 0x80218770: sCurrentDirID__10JKRArchive
- 0x802187bc: dmaBuf
- 0x802187c0: dmaEnd
- 0x802187c4: dmaCurrent
- 0x802187e8: sDecompObject__9JKRDecomp
- 0x802187f4: sCurrentFifo__12JUTGraphFifo
- 0x802187f8: mGpStatus__12JUTGraphFifo
- 0x80218800: sDebugPrint__10JUTDbPrint
- 0x8021880c: mPadAssign__10JUTGamePad
- 0x80218810: mSuppressPadReset__10JUTGamePad
- 0x80218814: sAnalogMode__10JUTGamePad
- 0x80218818: mStatus__Q210JUTGamePad7CRumble
- 0x8021881c: mEnabled__Q210JUTGamePad7CRumble
- 0x80218820: sCallback__Q210JUTGamePad13C3ButtonReset
- 0x80218824: sCallbackArg__Q210JUTGamePad13C3ButtonReset
- 0x80218828: sThreshold__Q210JUTGamePad13C3ButtonReset
- 0x80218834: sResetOccurredPort__Q210JUTGamePad13C3ButtonReset
- 0x80218838: sErrorManager__12JUTException
- 0x8021883c: sPreUserCallback__12JUTException
- 0x80218840: sPostUserCallback__12JUTException
- 0x80218844: sConsoleBuffer__12JUTException
- 0x80218848: sConsoleBufferSize__12JUTException
- 0x8021884c: sConsole__12JUTException
- 0x80218850: msr__12JUTException
- 0x80218854: fpscr__12JUTException
- 0x80218858: sDirectPrint__14JUTDirectPrint
- 0x80218868: sManager__8JUTVideo
- 0x8021886c: sVideoLastTick__8JUTVideo
- 0x80218870: sVideoInterval__8JUTVideo
- 0x80218880: sManager__6JUTXfb
- 0x80218888: sManager__10JUTProcBar
- 0x802188a0: sManager__17JUTConsoleManager
- 0x802188a4: sReportConsole
- 0x802188a8: sWarningConsole
- 0x802188b4: BI2DebugFlag
- 0x802188b8: BI2DebugFlagHolder
- 0x802188bc: __OSIsGcam
- 0x802188c0: AreWeInitialized
- 0x802188c4: OSExceptionTable
- 0x802188c8: __OSSavedRegionEnd
- 0x802188cc: __OSSavedRegionStart
- 0x802188d0: __OSInIPL
- 0x802188d8: __OSStartTime
- 0x802188e0: AlarmQueue
- 0x802188e8: HeapArray
- 0x802188ec: NumHeaps
- 0x802188f0: ArenaStart
- 0x802188f4: ArenaEnd
- 0x802188f8: __OSArenaHi
- 0x80218900: InterruptHandlerTable
- 0x80218904: __OSLastInterruptSrr0
- 0x80218908: __OSLastInterrupt
- 0x80218910: __OSLastInterruptTime
- 0x80218918: SaveStart
- 0x8021891c: SaveEnd
- 0x80218920: Prepared
- 0x80218928: ResetFunctionQueue
- 0x80218930: ResetCallback
- 0x80218934: Down
- 0x80218940: HoldUp
- 0x80218948: HoldDown
- 0x80218950: RunQueueBits
- 0x80218954: RunQueueHint
- 0x80218958: Reschedule
- 0x80218960: Chan
- 0x80218964: Dev
- 0x80218968: Enabled
- 0x8021896c: BarnacleEnabled
- 0x80218978: __PADFixBits
- 0x80218980: SamplingRate
- 0x80218988: __DBInterface
- 0x8021898c: DBVerbose
- 0x80218990: StopAtNextInt
- 0x80218994: LastLength
- 0x8021899c: ResetCoverCallback
- 0x802189a0: LastResetEnd
- 0x802189a8: ResetOccurred
- 0x802189ac: WaitingCoverClose
- 0x802189b0: Breaking
- 0x802189b4: WorkAroundType
- 0x802189b8: WorkAroundSeekLocation
- 0x802189c0: LastReadFinished
- 0x802189c8: LastReadIssued
- 0x802189d0: LastCommandWasRead
- 0x802189d4: NextCommandNumber
- 0x802189dc: FstStart
- 0x802189e0: FstStringStart
- 0x802189e4: MaxEntryNum
- 0x802189e8: currentDirectory
- 0x802189ec: __DVDLongFileNameFlag
- 0x802189f0: __DVDThreadQueue
- 0x802189f8: executing
- 0x802189fc: currID
- 0x80218a00: bootInfo
- 0x80218a04: PauseFlag
- 0x80218a08: PausingFlag
- 0x80218a0c: AutoFinishing
- 0x80218a10: FatalErrorFlag
- 0x80218a14: CurrCommand
- 0x80218a18: Canceling
- 0x80218a1c: CancelCallback
- 0x80218a20: ResumeFromHere
- 0x80218a24: CancelLastError
- 0x80218a28: LastError
- 0x80218a2c: NumInternalRetry
- 0x80218a30: ResetRequired
- 0x80218a34: FirstTimeInBootrom
- 0x80218a38: DVDInitialized
- 0x80218a40: status
- 0x80218a44: bb2
- 0x80218a48: idTmp
- 0x80218a50: retraceCount
- 0x80218a54: flushFlag
- 0x80218a58: retraceQueue
- 0x80218a60: PreCB
- 0x80218a64: PostCB
- 0x80218a68: encoderType
- 0x80218a6c: displayOffsetH
- 0x80218a6e: displayOffsetV
- 0x80218a70: changeMode
- 0x80218a78: changed
- 0x80218a80: shdwChangeMode
- 0x80218a88: shdwChanged
- 0x80218a90: CurrTiming
- 0x80218a94: CurrTvMode
- 0x80218a98: FBSet
- 0x80218aa0: Initialized
- 0x80218aa4: EnabledBits
- 0x80218aa8: ResettingBits
- 0x80218aac: RecalibrateBits
- 0x80218ab0: WaitingBits
- 0x80218ab4: CheckingBits
- 0x80218ab8: PendingBits
- 0x80218abc: SamplingCallback
- 0x80218ac4: __PADSpec
- 0x80218ac8: __AIS_Callback
- 0x80218acc: __AID_Callback
- 0x80218ad0: __CallbackStack
- 0x80218ad4: __OldStack
- 0x80218ad8: __AI_init_flag
- 0x80218ae0: bound_32KHz
- 0x80218ae8: bound_48KHz
- 0x80218af0: min_wait
- 0x80218af8: max_wait
- 0x80218b00: buffer
- 0x80218b08: __AR_Callback
- 0x80218b0c: __AR_Size
- 0x80218b10: __AR_InternalSize
- 0x80218b14: __AR_ExpansionSize
- 0x80218b18: __AR_StackPointer
- 0x80218b1c: __AR_FreeBlocks
- 0x80218b20: __AR_BlockLength
- 0x80218b24: __AR_init_flag
- 0x80218b28: __ARQRequestQueueHi
- 0x80218b2c: __ARQRequestTailHi
- 0x80218b30: __ARQRequestQueueLo
- 0x80218b34: __ARQRequestTailLo
- 0x80218b38: __ARQRequestPendingHi
- 0x80218b3c: __ARQRequestPendingLo
- 0x80218b40: __ARQCallbackHi
- 0x80218b44: __ARQCallbackLo
- 0x80218b48: __ARQChunkSize
- 0x80218b4c: __ARQ_init_flag
- 0x80218b50: __piReg
- 0x80218b54: __cpReg
- 0x80218b58: __peReg
- 0x80218b5c: __memReg
- 0x80218b60: CPUFifo
- 0x80218b64: GPFifo
- 0x80218b68: __GXCurrentThread
- 0x80218b70: GXOverflowSuspendInProgress
- 0x80218b74: BreakPointCB
- 0x80218b78: __GXOverflowCount
- 0x80218b80: TokenCB
- 0x80218b84: DrawDoneCB
- 0x80218b8c: FinishQueue
- 0x80218b98: OldCPUFifo
- 0x80218ba0: __global_destructor_chain
- 0x80218ba8: __aborting
- 0x80218bac: __atexit_curr_func
- 0x80218bb0: __stdio_exit
- 0x80218bb4: __console_exit
- 0x80218bb8: errno
- 0x80218bc8: MTRCallback
- 0x80218bcc: DBGCallback
- 0x80218bd0: SendMailData
- 0x80218bd4: RecvDataLeng
- 0x80218bd8: pEXIInputFlag
- 0x80218c6c: sou_room_ins_init
- 0x803702A8: _prolog
- 0x80370308: _epilog
- 0x80370354: _unresolved
- 0x803703F8: viBlack
- 0x80370418: cKF_FrameControl_zeroClera
- 0x8037046C: cKF_FrameControl_ct
- 0x8037048C: cKF_FrameControl_setFrame
- 0x803704C0: cKF_FrameControl_passCheck
- 0x80370570: cKF_FrameControl_passCheck_now
- 0x80370608: cKF_FrameControl_stop_proc
- 0x80370694: cKF_FrameControl_repeat_proc
- 0x8037071C: cKF_FrameControl_play
- 0x803707D0: cKF_HermitCalc
- 0x8037083C: cKF_KeyCalc
- 0x80370A0C: cKF_SkeletonInfo_subRotInterpolation
- 0x80370AD8: cKF_SkeletonInfo_morphST
- 0x80370B58: cKF_SkeletonInfo_R_zeroClear
- 0x80370B7C: cKF_SkeletonInfo_R_ct
- 0x80370BD8: cKF_SkeletonInfo_R_dt
- 0x80370BDC: cKF_SkeletonInfo_R_init_standard_stop
- 0x80370C58: cKF_SkeletonInfo_R_init_standard_stop_morph
- 0x80370CCC: cKF_SkeletonInfo_R_init_standard_repeat
- 0x80370D48: cKF_SkeletonInfo_R_init_standard_repeat_morph
- 0x80370DBC: cKF_SkeletonInfo_R_init
- 0x80370E38: cKF_SkeletonInfo_R_morphJoint
- 0x803710FC: cKF_SkeletonInfo_R_play
- 0x803714A4: cKF_Si3_draw_SV_R_child
- 0x80371820: cKF_Si3_draw_R_SV
- 0x803718A0: cKF_SkeletonInfo_R_init_standard_repeat_speedsetandmorph
- 0x8037190C: cKF_SkeletonInfo_R_init_standard_repeat_setframeandspeedandmorph
- 0x8037197C: cKF_SkeletonInfo_R_init_standard_setframeandspeedandmorphandmode
- 0x803719E8: cKF_SkeletonInfo_R_init_reverse_setspeedandmorphandmode
- 0x80371A60: cKF_SkeletonInfo_R_combine_work_set
- 0x80371AA8: cKF_SkeletonInfo_R_combine_translation
- 0x80371D44: cKF_SkeletonInfo_R_combine_rotation
- 0x803720E8: cKF_SkeletonInfo_R_combine_play
- 0x80372338: cKF_SkeletonInfo_R_T_combine_play
- 0x803725D8: cKF_SkeletonInfo_R_Animation_Set_base_shape_trs
- 0x80372600: cKF_SkeletonInfo_R_AnimationMove_ct_base
- 0x8037271C: cKF_SkeletonInfo_R_AnimationMove_dt
- 0x803727A8: cKF_SkeletonInfo_R_AnimationMove_base
- 0x80372B1C: cKF_SkeletonInfo_R_AnimationMove_CulcTransToWorld
- 0x80372C8C: evw_tex_scroll_set
- 0x80372CD8: evw_anime_scroll1
- 0x80372D5C: evw_two_tex_scroll_set
- 0x80372DE4: evw_anime_scroll2
- 0x80372E68: evw_color_set
- 0x80372F30: evw_anime_colreg_manual
- 0x80372F80: morf_calc
- 0x80372FC4: evw_anime_colreg_linear
- 0x80373180: RagrangeInt
- 0x803732C4: RagrangeInt_Color
- 0x803732F4: evw_anime_colreg_nonlinear
- 0x803735C4: evw_anime_texanime
- 0x80373644: Evw_Anime_Set
- 0x803736D0: mAGrw_ClearDebugData
- 0x80373720: mAGrw_CheckRegistedData_debug
- 0x8037375C: mAGrw_SetBlockData_debug
- 0x803737DC: mAGrw_SetDebugDataBlock
- 0x803738CC: mAGrw_SetDebugData
- 0x80373978: mAGrw_PrintFossilHaniwa_debug
- 0x80373A78: mAGrw_CheckKabuPeddler
- 0x80373B1C: mAGrw_OrderSetHaniwa
- 0x80373B34: mAGrw_ChangeItemBlock
- 0x80373CA8: mAGrw_CheckPutXmasTree
- 0x80373CD8: mAGrw_SetXmasTreeBlock
- 0x80373DA8: mAGrw_ClearXmasTreeBlock
- 0x80373DE4: mAGrw_XmasTreeField
- 0x80373E50: mAGrw_SetXmasTree
- 0x80373E90: mAGrw_RenewalFgItem
- 0x80373EF8: mAGrw_ChangeTree2OtherBlock
- 0x80373F74: mAGrw_ChangeTree2FruitTreeBlock
- 0x80373F9C: mAGrw_ChangeTree2FruitTreeLine
- 0x80374034: mAGrw_ChangeTree2FruitTree
- 0x803740C8: mAGrw_ChangeTree2Cedar
- 0x8037414C: mAGrw_ChangeCedar2Tree
- 0x803742B8: Actor_world_to_eye
- 0x803742F0: Actor_position_move
- 0x8037438C: Actor_position_speed_set
- 0x803743FC: Actor_position_moveF
- 0x80374430: Actor_player_look_direction_check
- 0x803744AC: Actor_data_bank_dma_end_check
- 0x803744D8: Shape_Info_init
- 0x80374528: Actor_delete
- 0x80374540: Actor_ct
- 0x80374728: Actor_dt
- 0x80374830: Actor_draw_ta_set
- 0x803748D0: Actor_draw_ta_clr
- 0x8037496C: Actor_draw
- 0x80374A6C: Actor_draw_actor_no_culling_check
- 0x80374A94: Actor_draw_actor_no_culling_check2
- 0x80374B3C: Actor_cull_check
- 0x80374B8C: Actor_delete_check
- 0x80374C04: Actor_info_ct
- 0x80375004: Actor_info_dt
- 0x80375074: Actor_info_call_actor
- 0x803752E8: Actor_info_draw_actor
- 0x803753F8: Actor_info_part_new
- 0x80375438: Actor_info_part_delete
- 0x803754AC: Actor_free_overlay_area
- 0x80375504: actor_free_check
- 0x8037559C: Actor_get_overlay_area
- 0x803755EC: Actor_data_bank_regist_check_npc
- 0x803755F4: Actor_data_bank_regist_check
- 0x80375640: Actor_malloc_actor_class
- 0x80375734: Actor_init_actor_class
- 0x80375830: Actor_info_make_actor
- 0x803759A4: Actor_info_make_child_actor
- 0x80375A20: restore_fgdata
- 0x80375AF4: restore_fgdata_one
- 0x80375B44: restore_fgdata_all
- 0x80375C04: Actor_info_save_actor
- 0x80375C94: Actor_info_delete
- 0x80375DA4: Actor_info_name_search_sub
- 0x80375DC8: Actor_info_name_search
- 0x80375E04: Actor_info_fgName_search_sub
- 0x80375E28: Actor_info_fgName_search
- 0x80375E64: HiliteReflect_new
- 0x80375FEC: HiliteReflect_init
- 0x80376028: HiliteReflect_xlu_init
- 0x80376064: Setpos_HiliteReflect_init
- 0x80376100: Setpos_HiliteReflect_xlu_init
- 0x8037619C: actor_dlftbls_init
- 0x803761AC: actor_dlftbls_cleanup
- 0x803761BC: mActorShadow_OperateScrollLimit
- 0x803761F4: mActorShadow_TileScroll2
- 0x803762E0: mActorShadow_AdjustRate
- 0x80376314: mActorShadow_GetTimeAngleY_TimeAlpha
- 0x80376440: mActorShadow_GetGroundAverageAngle
- 0x80376560: mActorShadow_GetDistanceRate
- 0x803765E4: mActorShadow_GetAbsBigger
- 0x8037662C: mActorShadow_RadiusScaleRate
- 0x8037667C: mActorShadow_GetShadowTopPos_GetSlideS
- 0x80376790: mActorShadow_SetTexScroll
- 0x80376848: mActorShadow_GetLastAlphaScale
- 0x803768B4: mActorShadow_DrawActorShadow
- 0x80376BFC: mActorShadow_GetShadowPosition
- 0x80376C40: mActorShadow_GetShadowKind
- 0x80376C6C: mAc_GetShadowGroundY_NoneForce
- 0x80376CB8: mAc_GetShadowGroundY_Force
- 0x80376CFC: mAc_DecideShadowRadius_IamNotFish
- 0x80376D40: mAc_DecideShadowRadius_IamFish
- 0x80376D74: mAc_ActorShadowDraw_ShadowDrawFlagOff
- 0x80376D78: mAc_ActorShadowDraw_ShadowDrawFlagOn
- 0x80376EB0: mAc_ActorShadowDraw
- 0x80376F60: mActorShadow_SetForceShadowPos
- 0x80376F70: mActorShadow_UnSetForceShadowPos
- 0x80376F84: mAc_NormalActorShadow
- 0x80376FCC: mAc_UnagiActorShadow
- 0x80377018: mAc_ActorShadowCircle
- 0x80377070: mAc_ActorShadowEllipse
- 0x80377114: banti_ct
- 0x8037732C: banti_dt
- 0x803773A8: banti_chk_disp_left
- 0x80377540: banti_calc_disp_alpha_rate
- 0x803777BC: banti_animation_init_hiduke
- 0x8037781C: banti_animation_init_jikan
- 0x8037787C: banti_anime_proc
- 0x80377A30: banti_chk_anime_start
- 0x80377C6C: banti_time_check
- 0x80377D4C: banti_move
- 0x80377E1C: banti_draw_before
- 0x80377EF8: banti_draw_hiduke_sub
- 0x8037800C: banti_draw_hiduke
- 0x803780D4: banti_draw_jikan_sub
- 0x8037820C: banti_draw_jikan
- 0x803783C4: banti_draw
- 0x80378858: mBI_search_bg_item
- 0x803788C0: mBI_make_bg_item
- 0x80378960: mBI_change_bg_item
- 0x803789B4: mBI_ct
- 0x803789C4: mBI_move
- 0x803789F8: mBGM_check_MD
- 0x80378A30: mBGM_check_ignore_talk_volume
- 0x80378A68: mBGM_check_ignore_collect_insects_volume
- 0x80378A7C: mBGMElem_default_set
- 0x80378AAC: mBGMClock_after_time_check
- 0x80378AC8: mBGMClock_over_time_check
- 0x80378B1C: mBGMClock_range_time_check
- 0x80378B6C: mBGMClock_now_set
- 0x80378BB0: mBGMClock_move
- 0x80378BD0: mBGMClock_ct
- 0x80378C10: mBGMDemo_make_scene_bgm
- 0x80378CE0: mBGMDemo_delete_scene_bgm
- 0x80378D24: mBGMDemo_move
- 0x80378D7C: mBGMDemo_scene_bgm_make_req
- 0x80378D90: mBGMDemo_scene_bgm_delete_req
- 0x80378DA4: mBGMDemo_ct
- 0x80378DDC: mBGMRoom_shop_close_time_set
- 0x80378E9C: mBGMRoom_make_scene_bgm_shop_get
- 0x80378F70: mBGMRoom_make_scene_bgm
- 0x80379088: mBGMRoom_delete_scene_bgm
- 0x803790CC: mBGMRoom_shop_close_check
- 0x803791F4: mBGMRoom_move
- 0x80379268: mBGMRoom_scene_bgm_make_req
- 0x8037927C: mBGMRoom_scene_bgm_delete_req
- 0x80379290: mBGMRoom_ct
- 0x803792C8: mBGMTime_signal_melody
- 0x803793D8: mBGMTime_silent_check
- 0x80379420: mBGMTime_new_year_ev_flag_set
- 0x80379434: mBGMTime_new_year_ev_flag_clr
- 0x80379448: mBGMTime_move_wait
- 0x8037948C: mBGMTime_move_change
- 0x8037950C: mBGMTime_move
- 0x80379534: mBGMTime_ct
- 0x80379570: mBGMFieldSuddenEv_flag_check_island
- 0x80379590: mBGMFieldSuddenEv_flag_check_arbeit
- 0x803795B0: mBGMFieldSuddenEv_flag_set
- 0x80379664: mBGMFieldSuddenEv_ps_compose
- 0x80379714: mBGMFieldSuddenEv_move
- 0x80379758: mBGMFieldSuddenEv_ct
- 0x8037977C: mBGMFieldSchedEv_bl_attr_get
- 0x8037984C: mBGMFieldSchedEv_bl_attr_evdata_get
- 0x80379980: mBGMFieldSchedEv_Info_old_copy
- 0x803799CC: mBGMFieldSchedEv_Info_ev_now_set_standard
- 0x80379A38: mBGMFieldSchedEv_Info_ev_now_set_Silence_0
- 0x80379B4C: mBGMFieldSchedEv_Info_ev_now_set_CountDown_1
- 0x80379BCC: mBGMFieldSchedEv_Info_ev_now_set_CountDown_2
- 0x80379C4C: mBGMFieldSchedEv_Info_ev_now_set_CountDown_3
- 0x80379CCC: mBGMFieldSchedEv_Info_ev_now_set_CountDown_4
- 0x80379D4C: mBGMFieldSchedEv_Info_ev_now_set_CountDown_5
- 0x80379E90: mBGMFieldSchedEv_Info_ev_now_set_CountDown_6
- 0x80379FD4: mBGMFieldSchedEv_Info_ev_now_set_Hotaru
- 0x8037A040: mBGMFieldSchedEv_Info_ev_now_set_NewYear01
- 0x8037A0B4: mBGMFieldSchedEv_Info_ev_now_set_NewYear02
- 0x8037A120: mBGMFieldSchedEv_Info_attr_now_set
- 0x8037A174: mBGMFieldSchedEv_info_set
- 0x8037A264: mBGMFieldSchedEv_Info_ps_delete
- 0x8037A2C8: mBGMFieldSchedEv_Info_ps_make
- 0x8037A374: mBGMFieldSchedEv_Info_ps_volume_change
- 0x8037A3C8: mBGMFieldSchedEv_ps_compose
- 0x8037A524: mBGMFieldSchedEv_sp_flag
- 0x8037A5AC: mBGMFieldSchedEv_move
- 0x8037A5F8: mBGMFieldSchedEv_ct
- 0x8037A650: mBGMFieldNorm_bgm_num_get
- 0x8037A660: mBGMFieldNorm_elem_set
- 0x8037A6C0: mBGMFieldNorm_make_bgm
- 0x8037A704: mBGMFieldNorm_delete_bgm
- 0x8037A748: mBGMFieldNorm_move
- 0x8037A7F8: mBGMFieldNorm_make_req
- 0x8037A80C: mBGMFieldNorm_delete_req
- 0x8037A820: mBGMFieldNorm_ct
- 0x8037A858: mBGMPs_counter_dec
- 0x8037A888: mBGMPsComp_ps_remove
- 0x8037A93C: mBGMPsComp_search_insert_pos_kategorie
- 0x8037A9A4: mBGMPsComp_search_pos_kategorie_bgm_num
- 0x8037AA6C: mBGMPsComp_shift_behind
- 0x8037AAFC: mBGMPsComp_all_ps_bitclr
- 0x8037AB2C: mBGMPsComp_execute_ps_pos_get
- 0x8037AB6C: mBGMPsComp_high_ps_not_delete
- 0x8037ABA0: mBGMPsComp_main_req_stop
- 0x8037AC40: mBGMPsComp_main_remove
- 0x8037ACB4: mBGMPsComp_main_req_start
- 0x8037AD58: mBGMPsComp_main_req_pause
- 0x8037ADB4: mBGMPsComp_main_req_md
- 0x8037ADCC: mBGMPsComp_main_md_move
- 0x8037AE04: mBGMPsComp_main_req_volume_ps
- 0x8037AEB4: mBGMPsComp_main_req_volume_fishing
- 0x8037AF58: mBGMPsComp_main_req_volume_collect_insects
- 0x8037AFFC: mBGMPsComp_main_req_volume_talk
- 0x8037B090: mBGMPsComp_main_req_volume_boat
- 0x8037B124: mBGMPsComp_main_req_volume_pause
- 0x8037B228: mBGMPsComp_main_req_volume
- 0x8037B5D0: mBGMPsComp_MDPlayerPos_main_inform_sound
- 0x8037B620: mBGMPsComp_Arm_main_inform_sound
- 0x8037B680: mBGMPsComp_Stop_main_inform_sound
- 0x8037B6C4: mBGMPsComp_Start_main_inform_sound
- 0x8037B754: mBGMPsComp_Volume_main_inform_sound
- 0x8037B79C: mBGMPsComp_Pause_main_inform_sound
- 0x8037B7E0: mBGMPsComp_Museum_main_inform_sound
- 0x8037B824: mBGMPsComp_main_inform_sound
- 0x8037B884: mBGMPsComp_main_counter_dec
- 0x8037B8D8: mBGMPsComp_main_fo_check
- 0x8037B990: mBGMPsComp_main_lost
- 0x8037B9C0: mBGMPsComp_make_ps
- 0x8037BA50: _mBGMPsComp_make_ps_fanfare
- 0x8037BAB8: mBGMPsComp_make_ps_fanfare
- 0x8037BAD8: _mBGMPsComp_make_ps_lost_fanfare
- 0x8037BB40: mBGMPsComp_make_ps_lost_fanfare
- 0x8037BB60: _mBGMPsComp_make_ps_wipe
- 0x8037BBF4: mBGMPsComp_make_ps_wipe
- 0x8037BC14: _mBGMPsComp_make_ps_quiet
- 0x8037BC6C: mBGMPsComp_make_ps_quiet
- 0x8037BC8C: _mBGMPsComp_make_ps_co_quiet
- 0x8037BCF0: mBGMPsComp_make_ps_co_quiet
- 0x8037BD10: _mBGMPsComp_make_ps_fc_quiet
- 0x8037BD68: mBGMPsComp_make_ps_fc_quiet
- 0x8037BD88: _mBGMPsComp_make_ps_demo
- 0x8037BDF0: mBGMPsComp_make_ps_demo
- 0x8037BE10: _mBGMPsComp_make_ps_happening
- 0x8037BE78: mBGMPsComp_make_ps_happening
- 0x8037BE98: mBGMPsComp_make_ps_quietRoom
- 0x8037BEF0: _mBGMPsComp_make_ps_room
- 0x8037BF58: mBGMPsComp_make_ps_room
- 0x8037BF78: mBGMPsComp_make_ps_time
- 0x8037BFC8: _mBGMPsComp_make_ps_quietField
- 0x8037C020: mBGMPsComp_make_ps_quietField
- 0x8037C040: _mBGMPsComp_make_ps_fc_quietField
- 0x8037C098: mBGMPsComp_make_ps_fc_quietField
- 0x8037C0B8: _mBGMPsComp_make_ps_fieldSuddenEv
- 0x8037C124: mBGMPsComp_make_ps_fieldSuddenEv
- 0x8037C144: mBGMPsComp_make_ps_fieldSchedEv
- 0x8037C204: mBGMPsComp_make_ps_fieldNorm
- 0x8037C26C: mBGMPsComp_delete_ps
- 0x8037C2DC: _mBGMPsComp_delete_ps_fanfare
- 0x8037C318: mBGMPsComp_delete_ps_fanfare
- 0x8037C338: mBGMPsComp_delete_ps_wipe
- 0x8037C374: _mBGMPsComp_delete_ps_quiet
- 0x8037C3B0: mBGMPsComp_delete_ps_quiet
- 0x8037C3D0: _mBGMPsComp_delete_ps_demo
- 0x8037C40C: mBGMPsComp_delete_ps_demo
- 0x8037C42C: _mBGMPsComp_delete_ps_happening
- 0x8037C468: mBGMPsComp_delete_ps_happening
- 0x8037C488: mBGMPsComp_delete_ps_quietRoom
- 0x8037C4C4: _mBGMPsComp_delete_ps_room
- 0x8037C500: mBGMPsComp_delete_ps_room
- 0x8037C520: mBGMPsComp_delete_ps_time
- 0x8037C55C: _mBGMPsComp_delete_ps_quietField
- 0x8037C598: mBGMPsComp_delete_ps_quietField
- 0x8037C5B8: _mBGMPsComp_delete_ps_fieldSuddenEv
- 0x8037C5F4: mBGMPsComp_delete_ps_fieldSuddenEv
- 0x8037C614: mBGMPsComp_delete_ps_fieldSchedEv
- 0x8037C650: mBGMPsComp_delete_ps_fieldNorm
- 0x8037C68C: mBGMPsComp_volume_change_fieldSchedEv
- 0x8037C73C: mBGMPsComp_search_cf_set_field
- 0x8037C7D4: mBGMPsComp_volume_fishing_start
- 0x8037C7E8: mBGMPsComp_volume_fishing_end
- 0x8037C7FC: mBGMPsComp_volume_collect_insects_start
- 0x8037C810: mBGMPsComp_volume_collect_insects_end
- 0x8037C824: mBGMPsComp_volume_talk_start
- 0x8037C838: mBGMPsComp_volume_talk_end
- 0x8037C858: mBGMPsComp_volume_boat_end
- 0x8037C878: mBGMPsComp_pause
- 0x8037C888: mBGMPsComp_MDPlayerPos_make
- 0x8037C89C: mBGMPsComp_MDPlayerPos_delete
- 0x8037C8B0: mBGMPsComp_MDPlayerPos_param_set
- 0x8037C908: mBGMPsComp_scene_mode
- 0x8037C928: mBGMPsComp_arm_make
- 0x8037C940: mBGMPsComp_arm_delete
- 0x8037C958: mBGMPsComp_museum_status
- 0x8037C984: mBGMPsComp_execute_bgm_num_get
- 0x8037C9EC: mBGMPsComp_ct
- 0x8037CA64: mBGMForce_wipe_ps_make_permit
- 0x8037CA74: mBGMForce_move_inform
- 0x8037CB30: mBGMForce_move_room_nonstop
- 0x8037CB5C: mBGMForce_move
- 0x8037CB90: mBGMForce_ct
- 0x8037CBB4: mBGMForce_inform_cleanup
- 0x8037CBE0: mBGMForce_room_nonstop_cleanup
- 0x8037CBF8: mBGMForce_cleanup
- 0x8037CC2C: mBGMForce_inform_start
- 0x8037CC40: mBGMForce_inform_end
- 0x8037CC54: _mBGMForce_room_nonstop_start
- 0x8037CC68: mBGMForce_room_nonstop_start
- 0x8037CC88: mBGM_main_control
- 0x8037CD08: mBGM_weather_set
- 0x8037CD58: mBGM_main
- 0x8037CE28: mBGM_ct
- 0x8037CED0: mBGM_init
- 0x8037CFBC: mBGM_cleanup
- 0x8037D09C: mBGM_reset
- 0x8037D190: mCD_calendar_clear_interval
- 0x8037D300: mCD_calendar_clear_day
- 0x8037D510: mCD_GetIntervalMonths
- 0x8037D534: mCD_calendar_clear
- 0x8037D58C: mCD_calendar_check_harvest_moon_viewing
- 0x8037D5D8: mCD_calendar_check_delete
- 0x8037D6B0: mCD_calendar_wellcome_on
- 0x8037D748: mCD_calendar_event_on
- 0x8037D8CC: mCD_calendar_event_check
- 0x8037DA54: Camera2_DirectionCalc
- 0x8037DB4C: Camera2_InDoorCheck
- 0x8037DB90: Camera2_CheckInDoorNearFar
- 0x8037DBCC: Camera2_GetUnderBorderAdjust
- 0x8037DC08: Camera2_PolaPosCalc
- 0x8037DD2C: Camera2_SetEyePos_fromCenterPosCalc
- 0x8037DD7C: Camera2_SetEyePos_fromCenterPos
- 0x8037DDA4: Camera2_MoveDirectionAngleXYZ_morph
- 0x8037DEBC: Camera2_MoveDirectionAngleXYZ
- 0x8037DFB8: Camera2_SetDirectionAngleXYZ
- 0x8037E024: Camera2_SetView
- 0x8037E1C0: Camera2_BorderSize
- 0x8037E208: Camera2_GetBorderScale
- 0x8037E388: Camera2_GetLongBorderScale
- 0x8037E3B4: Camera2_GetBorder
- 0x8037E418: Camera2_MoveCenterPosAndSpeed_fromEndCenterPos
- 0x8037E530: Camera2_SetCenterPosAndSpeed
- 0x8037E59C: Camera2_SetDistancePosAndSpeed
- 0x8037E5D0: Camera2_MoveDistancePosAndSpeed
- 0x8037E674: Camera2_Get_PosBlockRatio
- 0x8037E7D4: Camera2_Normal_Swing
- 0x8037E890: Camera2_Get_GoalDistanceAndDirection
- 0x8037E9F4: Camera2_SetPos_fromStartEnd
- 0x8037EB7C: Camera2_setup_main_Base
- 0x8037EB98: getCamera2AngleY
- 0x8037EBA0: Camera2_check_request_main_priority
- 0x8037EBAC: Camera2_change_priority
- 0x8037EBB8: Camera2_request_main_index
- 0x8037EBCC: Camera2_ChangeCameraPos_inBlock
- 0x8037EEA0: Camera2_getEyePos_p
- 0x8037EEB4: Camera2_getCenterPos_p
- 0x8037EEC8: Camera2_SetCameraParameter
- 0x8037EF3C: Camera2_CheckCullingMode
- 0x8037F01C: pos_cull_check
- 0x8037F098: Camera2_CheckEnterCullingArea
- 0x8037F238: Camera2_ClearActorTalking_Cull
- 0x8037F26C: Camera2_AddCullTimer
- 0x8037F294: Camera2_Check_main_index
- 0x8037F2A8: Camera2_getMicPos_p
- 0x8037F2B0: Camera2_Check_MicPosFix
- 0x8037F2E8: Camera2_SetMicPos
- 0x8037F4E0: Camera2NormalState_get
- 0x8037F58C: Camera2_sound_Set_Ground
- 0x8037F590: Camera2_process_other_func2
- 0x8037F594: Camera2_setup_main_Stop
- 0x8037F598: Camera2_main_Stop
- 0x8037F59C: Camera2_request_main_wade
- 0x8037F638: Camera2_setup_main_Wade
- 0x8037F6B0: Camera2_SetPos_Wade
- 0x8037F6E0: Camera2_request_proc_index_fromWade
- 0x8037F734: Camera2_main_Wade
- 0x8037F780: Camera2_request_main_talk
- 0x8037F820: Camera2_request_main_talk_pos
- 0x8037F8F4: Camera2_setup_main_Talk
- 0x8037F974: Camera2_Talk_ChangeCameraCenterPos_BetweenSpeakerToListener
- 0x8037FA84: Camera2_TalkCheckCliffLRRange
- 0x8037FB64: Camera2_Talk_CheckCliffLR
- 0x8037FC48: Camera2_Talk_NoLowAngleCheck
- 0x8037FCD4: Camera2_Talk_GetAngleY
- 0x8037FE00: Camera2_Talk_GetGoalDirectionAngleXYZAndSetDistance_BetweenSpeakerToListener
- 0x8037FF44: Camera2_SetPos_Talk
- 0x80380034: Camera2_Talk_AddCullTimer
- 0x80380060: Camera2_Talk_SetTalking_Cull
- 0x803801BC: Camera2_main_Talk
- 0x80380210: Camera2_main_Normal_SetEndCenterPos_fromPlayer
- 0x803804DC: Camera2_MoveVparamCenter
- 0x8038056C: Camera2_MoveDistancePosAndSpeedVParam
- 0x8038059C: Camera2_MoveDirectionAngleXYZVParam
- 0x80380660: Camera2_main_Normal_SetPos_fromPlayer
- 0x80380790: Camera2_main_Normal_AdjustDistanceAndDirection
- 0x803807C0: Camera2_request_main_normal
- 0x80380828: Camera2_setup_main_Normal
- 0x803808AC: Camera2_main_Normal
- 0x803808F4: Camera2_request_main_demo
- 0x803809EC: Camera2_request_main_demo_fromNowPos
- 0x80380A40: Camera2_request_main_demo_fromNowPos2
- 0x80380A94: Camera2_CalcPos_Demo
- 0x80380C60: Camera2_SetPos_Demo
- 0x80380CB8: Camera2_main_Demo
- 0x80380CEC: Camera2_setup_main_Demo
- 0x80380DC4: Camera2_request_main_item
- 0x80380E2C: Camera2_SetPos_Item
- 0x80380F30: Camera2_Item_AddCullTimer
- 0x80380F5C: Camera2_Item_SetTalking_Cull
- 0x80380F7C: Camera2_main_Item
- 0x80380FD0: Camera2_setup_main_Item
- 0x80381018: Camera2_request_main_lock
- 0x803810E0: Camera2_setup_main_Lock
- 0x80381150: Camera2_Lock_SetCenterPos
- 0x80381204: Camera2_Lock_SetEyePos
- 0x8038126C: Camera2_Lock_SetFovy
- 0x80381290: Camera2_Lock_SetNearFar
- 0x803812E8: Camera2_Lock_MorphCounterProc
- 0x8038130C: Camera2_SetPos_Lock
- 0x803813D4: Camera2_main_Lock
- 0x80381418: Camera2_request_main_door
- 0x80381494: Camera2_setup_main_Door
- 0x80381500: Camera2_Door_SetCenterPos
- 0x803815C4: Camera2_Door_SetEyePos
- 0x80381700: Camera2_Door_MorphCounterProc
- 0x80381724: Camera2_SetPos_Door
- 0x8038177C: Camera2_Door_SetTalking_Cull
- 0x8038179C: Camera2_main_Door
- 0x803817E8: Camera2_request_main_simple2
- 0x80381898: Camera2_request_main_simple_kirin
- 0x8038195C: Camera2_request_main_simple_fishing
- 0x80381AA4: Camera2_request_main_simple_fishing_return
- 0x80381B0C: Camera2_request_main_simple
- 0x80381BBC: Camera2_setup_main_Simple
- 0x80381C28: Camera2_main_Simple_AngleDistStd
- 0x80381CAC: Camera2_Simple_MorphDistance
- 0x80381D24: Camera2_Simple_AngleCalc
- 0x80381E4C: Camera2_SetPos_Simple
- 0x80381ED0: Camera2_Simple_AddCullTimer
- 0x80381EFC: Camera2_main_Simple
- 0x80381F5C: Camera2_request_main_listen_front_low_talk
- 0x80381FE8: Camera2_request_main_needlework_talk
- 0x80382078: Camera2_request_main_cust_talk
- 0x80382118: Camera2_setup_main_Cust_talk
- 0x80382188: Camera2_Cust_Talk_ChangeCameraCenterPos_BetweenSpeakerToListener
- 0x80382238: Camera2_Cust_Talk_SetAngleDist
- 0x803822D0: Camera2_SetPos_Cust_Talk
- 0x803823B8: Camera2_Cust_Talk_AddCullTimer
- 0x803823E4: Camera2_main_Cust_talk
- 0x80382438: Camera2_request_BuySikimono_WallPaper
- 0x80382484: Camera2_Inter_set_reverse_mode
- 0x803824D0: Camera2_request_main_inter
- 0x803825D0: Camera2_setup_main_Inter
- 0x803826D8: Camera2_Inter_SetPosCenter
- 0x80382744: Camera2_Inter_SetPosEye
- 0x80382770: Camera2_Inter_CounterProc
- 0x803828B4: Camera2_SetPos_Inter
- 0x80382994: Camera2_main_Inter
- 0x803829D8: Camera2_request_main_staff_roll
- 0x80382A48: Camera2_setup_main_Staff_roll
- 0x80382B00: Camera2_Staff_Roll_Center
- 0x80382E14: Camera2_Staff_Roll_DistAngle
- 0x80382FC0: Camera2_main_Staff_Roll_SetPos
- 0x8038330C: Camera2_main_Staff_roll
- 0x80383350: Init_Camera2
- 0x80383380: Camera2_change_main_index
- 0x803833E0: Camera2_process
- 0x80383448: Camera2_draw
- 0x8038344C: mChoice_MainSetup
- 0x803834A4: mChoice_Main
- 0x803834F8: mChoice_Draw
- 0x803835A4: mChoice_aram_init
- 0x803835E0: mChoice_ct
- 0x80383624: mChoice_dt
- 0x80383628: mChoice_Get_base_window_p
- 0x8038364C: mChoice_init
- 0x80383754: mChoice_Change_request_main_index
- 0x8038375C: mChoice_check_main_index
- 0x80383764: mChoice_check_main_normal
- 0x80383790: mChoice_Init_choice_data
- 0x8038379C: mChoice_Add_choice_data
- 0x8038384C: mChoice_Set_choice_data
- 0x803839A0: mChoice_Get_MaxStringDotWidth
- 0x80383A24: mChoice_Get_MaxStringDotHeight
- 0x80383A30: mChoice_Set_DisplayScaleAndDisplayPos
- 0x80383C54: mChoice_Get_ChoseNum
- 0x80383C5C: mChoice_Clear_ChoseNum
- 0x80383C68: mChoice_check_ct
- 0x80383C6C: mChoice_Get_StringDataAddressAndSize
- 0x80383CB4: mChoice_Put_String_PLAYER_NAME
- 0x80383CD8: mChoice_Put_String_TALK_NAME
- 0x80383D18: mChoice_Put_String_TAIL
- 0x80383D58: mChoice_Put_String_YEAR
- 0x80383D78: mChoice_Put_String_MONTH
- 0x80383D98: mChoice_Put_String_WEEK
- 0x80383DB8: mChoice_Put_String_DAY
- 0x80383DD8: mChoice_Put_String_HOUR
- 0x80383E58: mChoice_Put_String_MIN
- 0x80383E78: mChoice_Put_String_SEC
- 0x80383E98: mChoice_Put_String_FREE
- 0x80383EF4: mChoice_Put_String_FREE0
- 0x80383F18: mChoice_Put_String_FREE1
- 0x80383F3C: mChoice_Put_String_FREE2
- 0x80383F60: mChoice_Put_String_FREE3
- 0x80383F84: mChoice_Put_String_FREE4
- 0x80383FA8: mChoice_Put_String_FREE5
- 0x80383FCC: mChoice_Put_String_FREE6
- 0x80383FF0: mChoice_Put_String_FREE7
- 0x80384014: mChoice_Put_String_FREE8
- 0x80384038: mChoice_Put_String_FREE9
- 0x8038405C: mChoice_Put_String_FREE10
- 0x80384080: mChoice_Put_String_FREE11
- 0x803840A4: mChoice_Put_String_FREE12
- 0x803840C8: mChoice_Put_String_FREE13
- 0x803840EC: mChoice_Put_String_FREE14
- 0x80384110: mChoice_Put_String_FREE15
- 0x80384134: mChoice_Put_String_FREE16
- 0x80384158: mChoice_Put_String_FREE17
- 0x8038417C: mChoice_Put_String_FREE18
- 0x803841A0: mChoice_Put_String_FREE19
- 0x803841C4: mChoice_Put_String_DETERMINATION
- 0x80384210: mChoice_Put_String_COUNTRY_NAME
- 0x80384234: mChoice_Put_String_RAMDOM_NUMBER2
- 0x80384254: mChoice_Put_String_ITEM
- 0x803842B0: mChoice_Put_String_ITEM0
- 0x803842D4: mChoice_Put_String_ITEM1
- 0x803842F8: mChoice_Put_String_ITEM2
- 0x8038431C: mChoice_Put_String_ITEM3
- 0x80384340: mChoice_Put_String_ITEM4
- 0x80384364: mChoice_Put_String_ISLAND_NAME
- 0x80384388: mChoice_Put_String_AMPM
- 0x803843D4: mChoice_Put_String
- 0x80384430: mChoice_Change_ControlCode
- 0x803844A8: mChoice_Load_ChoseStringFromRom
- 0x803845C4: mChoice_no_b_set
- 0x803845D0: mChoice_no_b_close_set
- 0x803845E0: mChoice_sound_SENTAKU_KETTEI
- 0x80384604: mChoice_sound_SENTAKU_OPEN
- 0x80384628: mChoice_sound_CURSOL
- 0x8038464C: mChoice_sound_ZOOMDOWN_SHORT
- 0x80384674: mChoice_sound_ZOOMDOWN_LONG
- 0x8038469C: mChoice_Main_Hide
- 0x803846BC: mChoice_MainSetup_Hide
- 0x803846DC: mChoice_Main_Appear_SetScale
- 0x803847AC: mChoice_request_main_index_fromAppear
- 0x803847D8: mChoice_Main_Appear
- 0x80384830: mChoice_MainSetup_Appear
- 0x80384890: mChoice_determimation_set
- 0x803848EC: mChoice_Main_Normal_SetChoice
- 0x80384CB8: mChoice_request_main_index_fromNormal
- 0x80384CE4: mChoice_Main_Normal
- 0x80384D3C: mChoice_MainSetup_Normal
- 0x80384D74: mChoice_Main_Disappear_SetScale
- 0x80384E44: mChoice_request_main_index_fromDisappear
- 0x80384E70: mChoice_Main_Disappear
- 0x80384EC8: mChoice_MainSetup_Disappear
- 0x80384F78: mChoice_SetMatrix
- 0x80385098: mChoice_SetMatrixDisplay
- 0x80385164: mChoice_UnSetMatrix
- 0x80385184: mChoice_UnSetMatrixDisplay
- 0x80385210: mChoice_DrawWindowBody
- 0x8038529C: mChoice_DrawFont
- 0x80385404: clip_clear
- 0x80385430: mCkRh_GokiFamilyCount2Good
- 0x80385458: mCkRh_InitGokiSaveData_InitNewPlayer
- 0x803854A4: mCkRh_InitGokiSaveData_1Room
- 0x803854DC: mCkRh_InitGokiSaveData_1Room_ByHomeData
- 0x80385508: mCkRh_InitGokiSaveData_IslandPlayerRoom
- 0x8038553C: mCkRh_InitGokiSaveData_AllRoom
- 0x80385578: mCkRh_SetGoingOutCottageTime
- 0x803855A8: mCkRh_SavePlayTime
- 0x803855FC: mCkRh_DaysGapCompareWithSaveTime
- 0x8038568C: mCkRh_DaysGapCompareWithCottageSaveTime
- 0x803856FC: mCkRh_DecideNowGokiFamilyCount
- 0x803857C0: mCkRh_PlussGokiN_NowRoom
- 0x803858A0: mCkRh_MinusGokiN_NowRoom
- 0x80385980: mCkRh_NowSceneGokiFamilyCount
- 0x80385A08: mCkRh_InitCanLookGokiCount
- 0x80385A20: mCkRh_CalcCanLookGokiCount
- 0x80385A6C: mCkRh_GetCanLookGokiCount
- 0x80385A80: mCoBG_PlussDirectOffset
- 0x80385ADC: mCoBG_SetXyz_t
- 0x80385AEC: mCoBG_SetXZ
- 0x80385AF8: mCoBG_Wpos2Upos
- 0x80385B80: mCoBG_Unit2UnitInfo_OutOfUnitPos
- 0x80385CF0: mCoBG_Wpos2UnitInfo
- 0x80385DB8: mCoBG_GetUnitArea
- 0x80385E10: mCoBG_GetGroundAngleFromVtx3
- 0x80385FB8: mCoBG_GetArea3Point
- 0x8038626C: mCoBG_GetNormTriangle
- 0x80386344: mCoBG_AdjustActorY
- 0x80386510: mCoBG_GroundPolygonInfo2BgHeight
- 0x80386584: mCoBG_GetSpeedByWpos
- 0x803865A8: mCoBG_CarryOutReverse
- 0x80386694: mCoBG_InitRevpos
- 0x803866AC: mCoBG_MakeSizeUnitInfo
- 0x80386730: mCoBG_MakeTab2MoveTail
- 0x80386840: mCoBG_SearchAttribute
- 0x803868C0: mCoBG_RegistCollisionWallInfo
- 0x80386940: mCoBG_JudgeWallFromVector
- 0x8038699C: mCoBG_RoughCheckWallHeight
- 0x803869D8: mCoBG_GetWallHeight
- 0x80386AA4: mCoBG_CheckHeightExactly
- 0x80386CB4: mCoBG_SearchWallFront
- 0x80386CE4: mCoBG_Check45Angle
- 0x80386D30: mCoBG_RegistWallCount
- 0x80386EB4: mCoBG_MakeHitWallFalg
- 0x80386F18: mCoBG_SearchColOwnPart
- 0x803870B8: mCoBG_MakePartDirectHitWallFlag
- 0x803871A8: mCoBG_GetWallKind
- 0x803871D0: mCoBG_Cross2Reverse_NormalWall
- 0x803872F0: mCoBG_Cross2Reverse_AttributeWall
- 0x8038739C: mCoBG_Cross2Reverse
- 0x80387468: mCoBG_Distance2Reverse_NormalWall
- 0x80387640: mCoBG_GetSpecialDistanceReverse
- 0x803876F4: mCoBG_CheckDistSPCheck
- 0x80387824: mCoBG_Distance2Reverse_NormalWall_Special
- 0x80387A88: mCoBG_Distance2Reverse_AttributeWall
- 0x80387B88: mCoBG_Distance2Reverse_AttributeWall_Special
- 0x80387D48: mCoBG_Distance2Reverse
- 0x80387E48: mCoBG_MergeSortFloat
- 0x80388030: mCoBG_GetWallPriority
- 0x803881D0: mCoBG_GetWallReverse
- 0x80388610: mCoBG_WallCheck
- 0x80388980: mCoBG_GetAreaYSlatingUnit
- 0x80388AD0: mCoBG_GetCurrentCenterPosition
- 0x80388AEC: mCoBG_GetOldCenterPosition
- 0x80388B08: mCoBG_GetBGHeight_Normal_NormalGround
- 0x80388C38: mCoBG_GetBGHeight_Normal_SlateGround
- 0x80388D14: mCoBG_GetBGHeight_Normal
- 0x80388D50: mCoBG_MakeJumpFlag_NotOldOnGround
- 0x80388D54: mCoBG_MakeJumpFlag_OldOnGround
- 0x80388D88: mCoBG_MakeJumpFlag
- 0x80388DC0: mCoBG_Pos2UnitPos
- 0x80388E80: mCoBG_CheckWaveAtrDetail
- 0x803890F4: mCoBG_GetWaveDynamicAttr
- 0x80389194: mCoBG_Wpos2Attribute
- 0x8038944C: mCoBG_SearchWaterAttributeFrom4Area
- 0x803894A4: mCoBG_GetBGHeight_NormalColumn
- 0x80389580: mCoBG_GroundCheck
- 0x8038987C: mCoBG_InitBgCheckResult
- 0x80389914: mCoBG_InitBgCheckClass
- 0x80389944: mCoBG_ActorFearture2CheckRange
- 0x80389988: mCoBG_MakeActorInf
- 0x80389ADC: mCoBG_GiveRevposToActor
- 0x80389B00: mCoBG_MoveActorWithMoveBg_NotOnMoveBg
- 0x80389B04: mCoBG_MoveActorWithMoveBg_OnMoveBg
- 0x80389B9C: mCoBG_MoveActorWithMoveBg
- 0x80389BD4: mCoBG_RoomScopeCheck
- 0x80389CB0: mCoBG_BgCheckControll_RemoveDirectedUnitColumn
- 0x80389E88: mCoBG_BgCheckControll
- 0x80389EB0: mCoBG_WallCheckOnly
- 0x8038A014: mCoBG_GroundCheckOnly
- 0x8038A168: mCoBG_VirtualBGCheck
- 0x8038A290: mCoBG_RotateY
- 0x8038A318: mCoBG_GetVectorProductin2D
- 0x8038A338: mCoBG_JudgeCrossTriangleAndLine2D_XY
- 0x8038A3AC: mCoBG_JudgeCrossTriangleAndLine2D_XZ
- 0x8038A420: mCoBG_JudgeCrossTriangleAndLine2D_YZ
- 0x8038A494: mCoBG_JudgeCrossTriangleAndLine2D
- 0x8038A6B8: mCoBG_GetDimension2Idx
- 0x8038A750: mCoBG_GetCrossTriangleAndLine3D
- 0x8038A904: mCoBG_GetVectorScalar2D
- 0x8038A924: mCoBG_GetCrossJudge_2Vector
- 0x8038AA84: mCoBG_GetCross2Line
- 0x8038AAF8: mCoBG_Get2VectorAngleF
- 0x8038AC00: mCoBG_GetCrossLineAndPerpendicular
- 0x8038AC90: mCoBG_GetPointInfoFrontLine
- 0x8038ACE4: mCoBG_GetDistPointAndLine2D_Norm
- 0x8038AD48: mCoBG_GetCrossCircleAndLine2Dvector
- 0x8038AFE4: mCoBG_GetCrossCircleAndLine2DvectorPlaneXZ_Xyz
- 0x8038B0CC: mCoBG_JudgePointInCircle_Xyz
- 0x8038B108: mCoBG_JudgePointInCircle
- 0x8038B144: mCoBG_GetDeffVec
- 0x8038B1A8: mCoBG_GetNorm_By2Vector
- 0x8038B214: mCoBG_GetNorm_By3Point
- 0x8038B27C: mCoBG_SelectBiggerUnint
- 0x8038B290: mCoBG_SelectSmallerUnint
- 0x8038B2A4: mCoBG_GetMaxOffset
- 0x8038B308: mCoBG_GetMinOffset
- 0x8038B36C: mCoBG_RangeCheckLinePoint
- 0x8038B41C: mCoBG_SetLinePos
- 0x8038B428: mCoBG_PlusLinePos
- 0x8038B444: mCoBG_PlusEqualPos
- 0x8038B478: mCoBG_UnitNoName2StartEnd
- 0x8038B694: mCoBG_SearchSlateDetail
- 0x8038B6D8: mCoBG_SearchWallFlag
- 0x8038B974: mCoBG_SetTopBtm
- 0x8038B988: mCoBG_GetUnitVecInf_SlatingWall
- 0x8038BB40: mCoBG_JudgeTopAndSet
- 0x8038BB64: mCoBG_UtInf2NormalWallVector
- 0x8038BE30: mCoBG_UtInf2NormalSlateWallVector
- 0x8038C098: mCoBG_RegistNormalWallVector_AttributeOn
- 0x8038C0E4: mCoBG_UnitInf2NormalVector
- 0x8038C124: mCoBG_RegistNormalWallVector_AttributeOff
- 0x8038C31C: mCoBG_RegistSlatingWallVector_AttributeOn_NoSlate
- 0x8038C320: mCoBG_RegistSlatingWallVector_AttributeOn_Slate
- 0x8038C3B0: mCoBG_RegistSlatingWallVector_AttributeOn
- 0x8038C3E8: mCoBG_RegistSlatingWallVector_AttributeOff_Slate_NoOldInWater
- 0x8038C458: mCoBG_RegistSlatingWallVector_AttributeOff_Slate_OldInWater
- 0x8038C4DC: mCoBG_RegistSlatingWallVector_AttributeOff_Slate
- 0x8038C538: mCoBG_RegistSlatingWallVector_AttributeOff_NoSlate
- 0x8038C53C: mCoBG_RegistSlatingWallVector_AttributeOff
- 0x8038C574: mCoBG_GetUnitInfSearchData
- 0x8038C5C0: mCoBG_MakeForbidVectorData
- 0x8038C708: mCoBG_MakeForbidAttrVector_DUMMY
- 0x8038C70C: mCoBG_MakeForbidAttrVector
- 0x8038C740: mCoBG_MakeUnitVector
- 0x8038C95C: mCoBG_CircleDefenceWallIdx
- 0x8038C9E4: mCoBG_MakeCircleDefenceWall
- 0x8038CB94: mCoBG_JudgeMoveBgGroundCheck
- 0x8038CC04: mCoBG_GetMoveBgHeight
- 0x8038CE8C: mCoBG_RegistMoveBg
- 0x8038CFA4: mCoBG_Idx2RegistPointer
- 0x8038CFDC: mCoBG_CrossOffMoveBg
- 0x8038D060: mCoBG_InitMoveBgData
- 0x8038D08C: mCoBG_SetBaseOffset
- 0x8038D0E0: mCoBG_MakeCommonData
- 0x8038D0F0: mCoBG_GetNorm
- 0x8038D114: mCoBG_SetMoveBgHeightInf
- 0x8038D13C: mCoBG_SetMoveBgContactSide
- 0x8038D180: mCoBG_SetMoveBgContactOn
- 0x8038D1B8: mCoBG_MoveBgGroundCheck
- 0x8038D308: mCoBG_RotateMoveBgCollisionData
- 0x8038D3B4: mCoBG_SizeData2CollisionData
- 0x8038D868: mCoBG_MakeMoveBgVector
- 0x8038D91C: mCoBG_InitBoatCollision
- 0x8038D990: mCoBG_MakeBoatCollision
- 0x8038DA4C: mCoBG_DeleteBoatCollision
- 0x8038DAB8: mCoBG_CalcAdjust
- 0x8038DB44: mCoBG_CalcTimerDecalCircleOne
- 0x8038DC4C: mCoBG_CalcTimerDecalCircle
- 0x8038DCB8: mCoBG_RegistDecalCircle
- 0x8038DDAC: mCoBG_InitDecalCircle
- 0x8038DDF8: mCoBG_MakeOneColumnCollisionData
- 0x8038EAFC: mCoBG_MakeColumnCollisionData
- 0x8038EBA0: mCoBG_ColumnCheck_NormalWall
- 0x8038EDDC: mCoBG_ColumnCheckOldOnGround_AttrWall
- 0x8038EFD4: mCoBG_ColumnCheckNotOldOnGround_AttrWall
- 0x8038EFD8: mCoBG_ColumnCheck_AttrWall
- 0x8038F018: mCoBG_ColumnWallCheck
- 0x8038F158: mCoBG_GetBGHeight_Column
- 0x8038F1C8: mCoBG_LineWallCheck_Column
- 0x8038F688: mCoBG_LineGroundCheck_Column
- 0x8038F7A0: mCoBG_GetBgY_AngleS_FromWpos
- 0x8038F908: mCoBG_GetBgY_OnlyCenter_FromWpos
- 0x8038F9C0: mCoBG_Wpos2BgUtCenterHeight_AddColumn
- 0x8038FA80: mCoBG_GetBgY_OnlyCenter_FromWpos2
- 0x8038FB3C: mCoBG_GetBgNorm_FromWpos
- 0x8038FCBC: mCoBG_ScrollCheck
- 0x8038FFAC: mCoBG_CheckPlace_OrgAttr
- 0x8038FFC0: mCoBG_CheckPlace
- 0x80390008: mCoBG_Attribute2CheckPlant
- 0x803900D4: mCoBG_CheckPlant
- 0x8039012C: mCoBG_Wpos2CheckNpc
- 0x80390174: mCoBG_Attr2CheckPlaceNpc
- 0x8039018C: mCoBG_UtNum2BgAttr
- 0x803901C4: mCoBG_UtNum2UtCenterY
- 0x8039027C: mCoBG_UtNum2UtCenterY_Keep
- 0x8039032C: mCoBG_Wpos2BgAttribute_Original
- 0x80390370: mCoBG_GetHoleNumber_ClData
- 0x8039047C: mCoBG_GetHoleNumber
- 0x803904BC: mCoBG_BnumUnum2HoleNumber
- 0x80390500: mCoBG_CheckHole_OrgAttr
- 0x80390590: mCoBG_CheckSandUt_ForFish
- 0x8039061C: mCoBG_CheckSandHole_ClData
- 0x80390668: mCoBG_CheckHole
- 0x80390808: mCoBG_CheckSkySwing
- 0x803908B8: mCoBG_CheckGrassX_ClData
- 0x803908EC: mCoBG_CheckGrassX
- 0x8039092C: mCoBG_CheckWave_ClData
- 0x80390978: mCoBG_CheckWave
- 0x803909B8: mCoBG_CheckAcceptDesignSign
- 0x80390B60: mCoBG_GetBgHeightGapBetweenNowDefault
- 0x80390BD0: mCoBG_ExistHeightGap_KeepAndNow
- 0x80390C20: mCoBG_SearchWaterLimitDistN
- 0x80390EA4: mCoBG_GetBalloonGroundY
- 0x80390FDC: mCoBG_CheckAttribute_BallRolling
- 0x803910B4: mCoBG_CheckBallRollingAreaRate
- 0x803912BC: mCoBG_CheckBallRollingArea
- 0x8039144C: mCoBG_Wpos2GroundCheckOnly
- 0x803914B4: mCoBG_ExistHeightGap_KeepAndNow_Detail
- 0x8039162C: mCoBG_Wpos2CheckSlateCol
- 0x803916E8: mCoBG_WoodSoundEffect
- 0x8039174C: mCoBG_CheckCliffAttr
- 0x80391788: mCoBG_GetShadowBgY_AngleS_FromWpos
- 0x803918DC: mCoBG_CheckUtFlat
- 0x8039196C: mCoBG_Height2GetLayer
- 0x803919E4: mCoBG_GetLayer
- 0x80391A2C: mCoBG_OffsetInRule
- 0x80391A48: mCoBG_SetBestBgY
- 0x80391AC8: mCoBG_TidyChangeOffset
- 0x80391B84: mCoBG_SetPlussOffset
- 0x80391D28: mCoBG_SetAttribute
- 0x80391DA8: mCoBG_Ut2SetPluss5PointOffset_file
- 0x80391E60: mCoBG_SetPluss5PointOffset_file
- 0x803920CC: mCoBG_Change2PoorAttr
- 0x80392128: mCoBG_Ut2SetDefaultOffset
- 0x80392178: mCoBG_InitBlockBgCheckMode
- 0x80392188: mCoBG_ChangeBlockBgCheckMode
- 0x80392198: mCoBG_GetBlockBgCheckMode
- 0x803921A8: mCoBG_UniqueWallCheck
- 0x803923A0: mCoBG_ScopeWallCheck
- 0x803925F8: mCoBG_GetSpeedXZ
- 0x8039261C: mCoBG_TransCenter
- 0x803926B4: mCoBG_UvecInf2PolygonVtx
- 0x80392798: mCoBG_GetRevWallPlaneAndVector
- 0x80392920: mCoBG_LineWallCheck
- 0x80392A38: mCoBG_GetAreaPolygon
- 0x80392E40: mCoBG_GetFlatGroundPolygon
- 0x80392EAC: mCoBG_GetRevGroundAndLine
- 0x80393304: mCoBG_LineGroundCheck_Move
- 0x8039387C: mCoBG_LineGroundCheck
- 0x803939BC: mCoBG_MakeLineCheckCollisionData
- 0x80393A70: mCoBG_JudgeStartLineCheck
- 0x80393B18: mCoBG_SetWallGroundReverse
- 0x80393B84: mCoBG_LineCheck_RemoveFg
- 0x80393F58: mCoBG_GetBgY_AngleS_FromWpos2
- 0x803940A0: mCoBG_GetWaterHeight_File
- 0x803943B4: mCoBG_CheckWaterAttribute
- 0x803943E4: mCoBG_CheckWaterAttribute_OutOfSea
- 0x80394404: mCoBG_WaveCos2BgCheck
- 0x80394410: mCoBG_WaveCos
- 0x8039441C: mCoBG_GetWaterFlow
- 0x803944E8: mCoBG_CheckWaveAttr
- 0x80394518: CollisionCheck_workTrisElemCenter
- 0x80394578: ClObj_ct
- 0x803945A0: ClObj_dt
- 0x803945A8: ClObj_set4
- 0x803945CC: ClObj_OCClear
- 0x803945F0: ClObjElem_ct
- 0x80394600: ClObjElem_set
- 0x80394610: ClObjElem_OCClear
- 0x80394620: ClObjJntSphElem_OCClear
- 0x80394644: ClObjJntSph_OCClear
- 0x803946B0: ClObjPipeAttr_ct
- 0x803946D8: ClObjPipeAttr_dt
- 0x803946E0: ClObjPipeAttr_set
- 0x80394700: ClObjPipe_ct
- 0x80394750: ClObjPipe_dt
- 0x80394798: ClObjPipe_set5
- 0x803947F4: ClObjPipe_OCClear
- 0x8039483C: ClObjTrisElemAttr_ct
- 0x80394870: ClObjTrisElemAttr_dt
- 0x80394878: ClObjTrisElemAttr_set
- 0x80394930: ClObjTrisElem_ct
- 0x8039497C: ClObjTrisElem_dt
- 0x803949A4: ClObjTrisElem_set
- 0x803949FC: ClObjTrisElem_OCClear
- 0x80394A20: ClObjTris_ct
- 0x80394A5C: ClObjTris_dt_nzf
- 0x80394AD4: ClObjTris_set5_nzm
- 0x80394B6C: ClObjTris_OCClear
- 0x80394BD8: CollisionCheck_ct
- 0x80394C00: CollisionCheck_dt
- 0x80394C04: CollisionCheck_clear
- 0x80394C84: CollisionCheck_setOC
- 0x80394D54: get_type
- 0x80394D7C: CollisionCheck_setOC_HitInfo
- 0x80395128: CollisionCheck_OC_JntSph_Vs_JntSph
- 0x80395240: CollisionCheck_OC_JntSph_Vs_Pipe
- 0x80395334: CollisionCheck_OC_Pipe_Vs_JntSph
- 0x80395360: CollisionCheck_OC_Pipe_Vs_Pipe
- 0x80395418: CollisionCheck_Check1ClObjNoOC
- 0x80395428: CollisionCheck_Check2ClObjNoOC
- 0x80395470: CollisionCheck_OC
- 0x8039557C: CollisionCheck_setOCC_HitInfo
- 0x803955AC: CollisionCheck_OCC_Tris_Vs_JntSph
- 0x803956C0: CollisionCheck_OCC_Tris_Vs_Pipe
- 0x803957B4: CollisionCheck_Check1ClObjNoOCC
- 0x803957C4: CollisionCheck_OCC
- 0x803958C4: ClObjTrisElem_OCCClear
- 0x803958E0: ClObj_OCCClear
- 0x803958F8: ClObjTris_OCCClear
- 0x80395964: CollisionCheck_setOCC
- 0x80395A54: CollisionCheck_Status_ct
- 0x80395A84: CollisionCheck_Status_Clear
- 0x80395AB0: CollisionCheck_Status_set3
- 0x80395ADC: CollisionCheck_Uty_ActorWorldPosSetPipeC
- 0x80395B24: common_data_reinit
- 0x80395BA8: common_data_init
- 0x80395BC8: common_data_clear
- 0x80395BE8: mCon_ct
- 0x80395BEC: mCon_dt
- 0x80395BF0: mCon_calc
- 0x80395ECC: mCon_main
- 0x80395F58: chkButton
- 0x80395FB8: getButton
- 0x80395FF8: chkTrigger
- 0x80396058: getTrigger
- 0x80396098: getJoystick_X
- 0x803960DC: getJoystick_Y
- 0x80396120: new_Debug_mode
- 0x80396198: Debug_Display_init
- 0x803961A8: Debug_Display_new
- 0x80396254: Debug_Display_output
- 0x803962DC: debug_display_output_sprite_16x16_I8
- 0x803964A8: debug_display_output_polygon
- 0x803965E4: debug_hayakawa_bitset
- 0x803966C8: debug_hayakawa_move
- 0x80396E24: pad_disp
- 0x80396F54: debug_hayakawa_draw_safetyframe
- 0x80397050: debug_hayakawa_draw
- 0x8039738C: hreg_init_check
- 0x803973E8: Debug_Print_output
- 0x8039748C: Debug_Print2_output
- 0x80397548: Debug_console
- 0x80397844: Debug_mode_input
- 0x80397E20: Debug_mode_output_sub
- 0x80397F90: Debug_mode_zelda_malloc_info_output
- 0x80398088: DebugHaniwaTempo
- 0x8039816C: Debug_mode_output
- 0x803984B4: mDemo_Check_talk_type
- 0x803984E0: mDemo_Get_talk_actor
- 0x80398520: mDemo_Set_OrderValue
- 0x80398564: mDemo_Get_OrderValue
- 0x803985B0: mDemo_Init_OrderValue
- 0x803985FC: mDemo_Set_msg_num
- 0x80398640: mDemo_Get_Talk_Actors
- 0x803986B4: mDemo_Set_change_player_destiny
- 0x803986C8: mDemo_Get_change_player_destiny
- 0x803986E0: mDemo_Clear_change_player_destiny
- 0x80398704: mDemo_Copy_change_player_destiny
- 0x80398788: mDemo_Set_use_zoom_sound
- 0x803987D0: mDemo_Get_use_zoom_sound
- 0x80398810: mDemo_Set_talk_display_name
- 0x80398858: mDemo_Set_talk_change_player
- 0x803988A0: mDemo_Set_talk_return_demo_wait
- 0x803988E8: mDemo_Set_talk_return_get_golden_axe_demo
- 0x80398930: mDemo_Set_talk_turn
- 0x80398978: mDemo_Get_talk_turn
- 0x803989B8: mDemo_Set_talk_window_color
- 0x80398A08: mDemo_Set_camera
- 0x80398A20: mDemo_Get_camera
- 0x80398A34: mDemo_CheckDemoType
- 0x80398A74: change_camera
- 0x80398D8C: set_speak_default
- 0x80398E28: set_report_default
- 0x80398EC0: set_talk_default
- 0x80398F5C: wait_talk_start
- 0x80399118: wait_talk_end
- 0x803991C4: set_speech_default
- 0x80399260: wait_scroll_start
- 0x80399268: set_door_default
- 0x8039929C: wait_door_start
- 0x803993D8: mDemo_Set_house_info
- 0x80399418: wait_door2_start
- 0x80399554: get_title_no_for_event
- 0x80399608: set_emsg_default
- 0x80399718: wait_emsg_start
- 0x80399794: wait_emsg_end
- 0x80399860: set_emsg2_default
- 0x803998D4: wait_emsg2_start
- 0x803998F0: wait_emsg2_end
- 0x803999A8: weight_of_talk_position
- 0x80399AF8: allways_true
- 0x80399B00: allways_false
- 0x80399B08: scroll_check
- 0x80399B34: scroll2_check
- 0x80399B60: scroll3_check
- 0x80399B8C: door_check
- 0x80399BB8: door2_check
- 0x80399BE4: outdoor_check
- 0x80399C10: talk_check
- 0x80399C44: speak_check
- 0x80399C78: choice_demo_sub
- 0x80399DB8: choice_demo
- 0x80399E70: check_speech_request
- 0x80399EC4: emsg_set
- 0x80399EEC: init_demo
- 0x80399FB8: run_demo
- 0x8039A07C: main_proc
- 0x8039A228: mDemo_stock_clear
- 0x8039A244: mDemo_Request
- 0x8039A34C: mDemo_Check
- 0x8039A380: mDemo_Start
- 0x8039A388: mDemo_End
- 0x8039A3B8: mDemo_Main
- 0x8039A3D8: mDemo_Init
- 0x8039A420: mDemo_CheckDemo
- 0x8039A43C: mDemo_CheckDemo4Event
- 0x8039A484: mDemo_Set_SpeakerAble
- 0x8039A49C: mDemo_Set_ListenAble
- 0x8039A4B4: mDemo_Unset_SpeakerAble
- 0x8039A4CC: mDemo_Unset_ListenAble
- 0x8039A4E4: mDemo_Check_SpeakerAble
- 0x8039A4F8: mDemo_Check_ListenAble
- 0x8039A50C: mDemo_Check_DiffAngle_forTalk
- 0x8039A52C: mDemo_KeepCamera
- 0x8039A540: mDi_strlen
- 0x8039A580: mDi_clear_diary
- 0x8039A5C0: mDi_init_diary
- 0x8039A5E0: getcrc
- 0x8039A624: crcgen
- 0x8039A670: mEA_GetCRC
- 0x8039A6B4: putLEWord
- 0x8039A6D4: mEA_InitLetterCardE
- 0x8039A738: mEA_CheckLetterCardE
- 0x8039A7A8: mEA_SetLetterCardE
- 0x8039A814: mEA_GetCardDLProgram
- 0x8039A8E0: mEA_CleanCardDLProgram
- 0x8039A938: mEA_dl_carde_program_p
- 0x8039A94C: mEA_dl_carde_program_size
- 0x8039A960: mEv_ClearSpecialEvent
- 0x8039A9A8: mEv_ClearEventKabuPeddler
- 0x8039A9D4: mEv_ClearEventSaveInfo
- 0x8039AA10: mEv_ClearEventInfo
- 0x8039AA60: mEv_EventON
- 0x8039AAB0: mEv_EventOFF
- 0x8039AB00: mEv_CheckEvent
- 0x8039AB44: mEv_ClearPersonalEventFlag
- 0x8039ABD4: mEv_SetFirstJob
- 0x8039AC18: mEv_CheckRealArbeit
- 0x8039AC90: mEv_CheckArbeit
- 0x8039AD1C: mEv_CheckFirstJob
- 0x8039AD7C: mEv_UnSetFirstJob
- 0x8039ADD0: mEv_SetFirstIntro
- 0x8039AE14: mEv_CheckFirstIntro
- 0x8039AE74: mEv_UnSetFirstIntro
- 0x8039AEB8: mEv_SetGateway
- 0x8039AEFC: mEv_CheckGateway
- 0x8039AF5C: mEv_UnSetGateway
- 0x8039AFA0: mEv_CheckTitleDemo
- 0x8039AFB0: mEv_SetTitleDemo
- 0x8039AFBC: mEv_RenewalDataEveryDay
- 0x8039B034: mEv_GetEventWeather
- 0x8039B0C0: last_day_of_month
- 0x8039B13C: init_weekday1st
- 0x8039B288: check_date_range
- 0x8039B2D8: check_ymdh_range
- 0x8039B2F8: after_n_day
- 0x8039B3D8: mEv_get_next_weekday
- 0x8039B464: m_weekday2day
- 0x8039B5BC: mEv_weekday2day
- 0x8039B700: get_end_time
- 0x8039B738: mEv_get_end_time
- 0x8039B788: search_empty_event_today
- 0x8039B7BC: add_event_today
- 0x8039B930: check_and_clear_event_today
- 0x8039BA3C: delete_too_short_event
- 0x8039BB2C: init_today_event
- 0x8039BB9C: init_time_seat
- 0x8039BBE0: get_special_event_end_time
- 0x8039BC4C: init_special_event
- 0x8039C01C: update_special_event
- 0x8039C0C0: mEv_get_bargain_day
- 0x8039C0E4: is_special_event_valid
- 0x8039C134: mEv_get_special_event_day
- 0x8039C17C: mEv_get_special_event_type
- 0x8039C1C4: mEv_get_event_place
- 0x8039C23C: mEv_bridge_time_check
- 0x8039C290: init_weekly_event
- 0x8039C57C: update_soncho_event
- 0x8039C63C: update_soncho_event2
- 0x8039C6B0: update_sports_fair
- 0x8039C840: update_event_rumor
- 0x8039C9C8: update_weekly_event
- 0x8039CB08: update_active
- 0x8039CDE8: decode_date
- 0x8039CF38: set_one_time_active
- 0x8039CF78: first_enter_check
- 0x8039CFE4: effective_scene
- 0x8039D04C: update_schedule_today
- 0x8039D410: calc_start_block
- 0x8039D488: init_event
- 0x8039D5A0: mEv_init
- 0x8039D5FC: mEv_init_force
- 0x8039D64C: mEv_2nd_init
- 0x8039D6CC: mEv_PlayerOK
- 0x8039D714: mEv_run
- 0x8039D8F0: mEv_finish
- 0x8039D9EC: mEv_check_schedule
- 0x8039DA68: mEv_check_run_today
- 0x8039DAB8: mEv_set_status
- 0x8039DB10: set_active
- 0x8039DB68: mEv_clear_status
- 0x8039DB9C: clear_active
- 0x8039DBE8: mEv_check_status
- 0x8039DC4C: mEv_check_status_edge
- 0x8039DC6C: mEv_set_keep
- 0x8039DCA0: mEv_clear_keep
- 0x8039DCD4: mEv_check_keep
- 0x8039DD0C: mEv_reserve_save_area
- 0x8039DEB4: mEv_get_save_area
- 0x8039DF24: mEv_clear_save_area
- 0x8039DF9C: update_save_area
- 0x8039E0DC: mEv_reserve_common_area
- 0x8039E1C4: mEv_get_common_area
- 0x8039E234: mEv_clear_common_area
- 0x8039E2AC: mEv_reserve_common_place
- 0x8039E394: mEv_get_common_place
- 0x8039E404: mEv_clear_common_place
- 0x8039E47C: mEv_use_block_by_other_event
- 0x8039E4FC: mEv_erase_FG_all_in_common_place
- 0x8039E594: mEv_clear_rumor
- 0x8039E5A4: mEv_spread_rumor
- 0x8039E5D0: mEv_get_rumor
- 0x8039E61C: mEv_actor_dying_message
- 0x8039E74C: mEv_LiveSonchoPresent
- 0x8039E798: mEv_LivePlayer
- 0x8039E85C: mEv_ArbeitPlayer_kari
- 0x8039E8A0: mEv_ArbeitPlayer
- 0x8039E904: mEv_make_new_special_event
- 0x8039EA00: mEv_GetMonth
- 0x8039EA08: mEv_GetDay
- 0x8039EA10: mEv_GetHour
- 0x8039EA18: mEv_debug_print4f
- 0x8039EB80: mEv_sp_debug_print4f
- 0x8039ED00: mEv_change
- 0x8039ED08: mEv_get_special_event_state
- 0x8039EE70: mEv_snowman_born_check
- 0x8039EF74: mEv_someone_died
- 0x8039EF84: mEv_special_event_soldout
- 0x8039F03C: mEv_toland_clear_common
- 0x8039F0BC: mGH_animal_return_init
- 0x8039F108: mGH_check_birth2
- 0x8039F18C: mGH_check_birth
- 0x8039F1D8: mGH_check_delete
- 0x8039F2F4: mMC_mask_cat_init
- 0x8039F35C: mMC_check_birth
- 0x8039F3B4: mMC_check_birth_day
- 0x8039F418: mMC_check_delete
- 0x8039F4DC: mMC_set_time
- 0x8039F510: mEvMN_GetMapIdx_sub
- 0x8039F550: mEvMN_GetMapIdx
- 0x8039F594: mEvMN_GetEventTypeMap
- 0x8039F604: mEvMN_GetDataBaseIdx
- 0x8039F630: mEvMN_GetEventBlockKind
- 0x8039F654: mEvMN_GetJointAllNpcMax
- 0x8039F678: mEvMN_GetJointNpcMax
- 0x8039F69C: mEvMN_GetEventSetUtInBlockMapIdx
- 0x8039F734: mEvMN_GetEventSetUtInBlock
- 0x8039F7E0: mEvMN_CheckCanJointEvent
- 0x8039F82C: mEvMN_GetNpcIdxRandom
- 0x8039FA28: mEvMN_GetNpcIdx
- 0x8039FA5C: mEvMN_GetNpcJointEv
- 0x8039FABC: mEvMN_ClearRemoveNpcJoint
- 0x8039FB48: mEvMN_SetNpcJointEvRandom
- 0x8039FD6C: mEvMN_SetNpcJointEv
- 0x8039FDDC: mEvMN_CheckEventNpcList
- 0x8039FE24: mEvMN_GetFireWorksNpcName
- 0x8039FF4C: mEvMN_GetHalloweenNpcName
- 0x8039FFC8: mEvMN_GetEventNpcName
- 0x803A0038: mEvMN_GetNpcIdxListJointEvent
- 0x803A00C8: mEvNM_CheckJointEvent
- 0x803A0194: mEvMN_GetJointEventRandomNpc
- 0x803A0244: mEvMN_CheckLapPlayer
- 0x803A0350: fbdemo_init_gfx
- 0x803A0624: fbdemo_init_data
- 0x803A06EC: fbdemo_cleanup
- 0x803A077C: fbdemo_init
- 0x803A08D8: fbdemo_update
- 0x803A09C4: fbdemo_draw
- 0x803A0AB8: fbdemo_move
- 0x803A0ABC: fbdemo_triforce_startup
- 0x803A0B8C: fbdemo_triforce_init
- 0x803A0BC0: fbdemo_triforce_move
- 0x803A0CE0: fbdemo_triforce_draw
- 0x803A0EB8: fbdemo_triforce_is_finish
- 0x803A0EC0: fbdemo_triforce_settype
- 0x803A0EFC: fbdemo_triforce_setcolor_rgba8888
- 0x803A0F00: fbdemo_wipe1_init
- 0x803A0F34: fbdemo_wipe1_move
- 0x803A0FC8: fbdemo_wipe1_draw
- 0x803A11E4: fbdemo_wipe1_startup
- 0x803A12B8: fbdemo_wipe1_settype
- 0x803A12E8: fbdemo_wipe1_setcolor_rgba8888
- 0x803A12F0: fbdemo_wipe1_is_finish
- 0x803A12F8: fbdemo_fade_init
- 0x803A132C: fbdemo_fade_move
- 0x803A1420: fbdemo_fade_draw
- 0x803A14A4: fbdemo_fade_startup
- 0x803A14F0: fbdemo_fade_settype
- 0x803A14F8: fbdemo_fade_setcolor_rgba8888
- 0x803A1500: fbdemo_fade_is_finish
- 0x803A1508: mFAs_ClearGoodField_common
- 0x803A1544: mFAs_ClearGoodField
- 0x803A1574: mFAs_CheckGoodField
- 0x803A1598: mFAs_SetGoodField
- 0x803A1690: mFAs_GetIdx
- 0x803A16D0: mFAs_CheckDust
- 0x803A16FC: mFAs_GetBlockTreeNum2
- 0x803A19A0: mFAs_CheckDustOver
- 0x803A19A8: mFAs_CheckTreeLess
- 0x803A19C4: mFAs_CheckTreeOver
- 0x803A19E4: mFAs_CheckGrassOver
- 0x803A19FC: mFAs_CheckNoCase
- 0x803A1A04: mFAs_CheckCondition
- 0x803A1A8C: mFAs_CheckBlockNum
- 0x803A1AE8: mFAs_GetFieldGoodBlockNum_common
- 0x803A1E04: mFAs_GetFieldGoodBlockNum
- 0x803A1E40: mFAs_GetFieldRankbyFGoodBlock
- 0x803A1E70: mFAs_GetDustNum
- 0x803A2038: mFAs_GetFieldRank_Condition
- 0x803A2140: mFAs_SetFieldRank
- 0x803A21D8: mFAs_GetFieldRank
- 0x803A21E8: mFAs_PrintFieldAssessment
- 0x803A22C4: mFM_SortBGData
- 0x803A230C: mFM_SortFGData
- 0x803A235C: mFM_BgUtDataSet
- 0x803A239C: mFM_FgUtDataSet
- 0x803A23CC: mFM_SetFgUtPtoSaveData
- 0x803A24F8: mFM_SetFgUtPtoHomeInfo
- 0x803A2554: mFM_SetFgUtPtoCottageInfo
- 0x803A259C: mFM_ChangeFGName
- 0x803A2690: mFM_ChangeBGName
- 0x803A2708: mFM_SetSoundSource
- 0x803A27F8: mFM_SetBG
- 0x803A28BC: mFM_SetFG
- 0x803A2A00: mFM_SetFG2
- 0x803A2B00: mFM_BlockDataSet
- 0x803A2C44: mFM_KeepPolicePos
- 0x803A2C5C: mFM_GetPolicePos
- 0x803A2C84: mFM_SetMoveActorInfo
- 0x803A2E34: mFM_SetCombiTable
- 0x803A2E98: mFM_SetBlockInfo
- 0x803A302C: mFM_set_pal_p
- 0x803A30C4: mFM_SetFGPal
- 0x803A3200: mFM_SetFieldPal
- 0x803A32EC: mFM_SetFgDepositP
- 0x803A3480: mFM_MakeField
- 0x803A389C: mFM_LoadBGCommonMonthlyPal
- 0x803A3958: mFM_DecideBgTexIdx
- 0x803A39A0: mFM_LoadBGCommonTex
- 0x803A3ACC: set_field_type
- 0x803A3B8C: mFM_PoorTreeBlock
- 0x803A3BE0: mFM_PoorTree
- 0x803A3C88: mFM_PoorTreeUnderPlayerBlock
- 0x803A3D20: mFM_SetFruit_title_demo
- 0x803A3D64: mFM_SetFieldInitData
- 0x803A3D78: mFM_FieldInit
- 0x803A4070: mFM_Field_dt
- 0x803A41A8: mFM_SetBlockKind
- 0x803A4228: mFM_SetBlockKindLoadCombi
- 0x803A427C: mFM_SetIslandFg
- 0x803A4338: mFM_InitFgCombiSaveData
- 0x803A4578: mFM_AddIdx
- 0x803A45A4: mFM_GetNextReseve
- 0x803A45D4: mFM_RenewalReserveBlock
- 0x803A46A8: mFM_RenewalReserve
- 0x803A4754: mFM_GetReseveName
- 0x803A49C0: mFM_toSummer
- 0x803A4A20: mFM_returnSeason
- 0x803A4A7C: mFM_RestoreIslandBG
- 0x803A4BB8: mFM_SetIslandNpcRoomData
- 0x803A4D68: mFI_ClearFieldData
- 0x803A4D78: mFI_CheckFieldData
- 0x803A4D94: mFI_GetBlockTopP
- 0x803A4DB4: mFI_GetFieldId
- 0x803A4DFC: mFI_CheckShopFieldName
- 0x803A4E34: mFI_CheckShop
- 0x803A4E78: mFI_GetBlockXMax
- 0x803A4EC0: mFI_GetBlockZMax
- 0x803A4F08: mFI_GetBlockWidth
- 0x803A50D4: mFI_GetBlockHeight
- 0x803A52A0: mFI_GetBlockNum
- 0x803A52E4: mFI_GetUtNum
- 0x803A52F0: mFI_BlockCheck
- 0x803A538C: mFI_UtNumCheck
- 0x803A53C4: mFI_WposCheck
- 0x803A5408: mFI_WposX2UtNumX
- 0x803A542C: mFI_WposZ2UtNumZ
- 0x803A5450: mFI_Wpos2UtNum
- 0x803A5564: mFI_UtNum2CenterWpos
- 0x803A5624: mFI_Wpos2UtCenterWpos
- 0x803A56F4: mFI_Wpos2UtNum_inBlock
- 0x803A5848: mFI_Wpos2BlockNum
- 0x803A58A8: mFI_Wpos2BkandUtNuminBlock
- 0x803A5958: mFI_UtNum2BlockNum
- 0x803A59B0: mFI_GetUtNumInBK
- 0x803A5A34: mFI_WpostoLposInBK
- 0x803A5AFC: mFI_LposInBKtoWpos
- 0x803A5B80: mFI_ScrollCheck
- 0x803A5C60: mFI_BkNum2WposXZ
- 0x803A5CFC: mFI_UtNum2PosXZInBk
- 0x803A5D4C: mFI_BkandUtNum2Wpos
- 0x803A5DDC: mFI_BkandUtNum2CenterWpos
- 0x803A5E28: mFI_BGDisplayListTop
- 0x803A5E3C: mFI_GetFieldPal
- 0x803A5E50: mFI_GetPlayerHouseFloorNo
- 0x803A5EB4: mFI_GetNowPlayerHouseFloorNo
- 0x803A5EE0: mFI_ClearRegisterBgInfo
- 0x803A5EFC: mFI_ClearRegisterBgInfoIdx
- 0x803A5F2C: mFI_InitRegisterBgInfo
- 0x803A5F80: mFI_CheckFreeRegisterBgInfo
- 0x803A5F98: mFI_GetFreeRegisterBgInfo
- 0x803A6004: mFI_SetRegisterBgInfo
- 0x803A602C: mFI_CheckFinishBgDma
- 0x803A6060: mFI_DmaBg_sub
- 0x803A6084: mFI_DmaBg
- 0x803A610C: mFI_CheckBgDma
- 0x803A6194: mFI_UtNum2BaseHeight
- 0x803A622C: mFI_BkNum2BaseHeight
- 0x803A62CC: mFI_BkNum2BlockType
- 0x803A634C: mFI_GetPuleTypeIdx
- 0x803A6390: mFI_GetPuleIdx
- 0x803A63D0: mFI_BkNum2BlockKind
- 0x803A6454: mFI_CheckBlockKind
- 0x803A64A0: mFI_CheckBlockKind_OR
- 0x803A64E8: mFI_BlockKind2BkNum
- 0x803A655C: mFI_GetSpecialBlockNum
- 0x803A65C0: mFI_GetIslandBlockNumX
- 0x803A6654: mFI_GetBkNum2ColTop
- 0x803A66D8: mFI_UtNum2UtCol
- 0x803A67BC: mFI_ClearColKeep
- 0x803A67F4: mFI_GetUnitCol
- 0x803A6858: mFI_UtNum2UtKeepH
- 0x803A6930: mFI_GetSoundSourcePBlockNum
- 0x803A69A0: mFI_GetBGDisplayListRom
- 0x803A6A14: mFI_GetBGDisplayListRom_XLU
- 0x803A6A88: mFI_GetBGTexAnimInfo
- 0x803A6B18: mFI_BGDispMatch
- 0x803A6B80: mFI_SearchNullDisp
- 0x803A6BE4: mFI_BGDispMake
- 0x803A6CE0: mFI_InitAreaInfo
- 0x803A6D20: mFI_WhereisInBlock
- 0x803A6E34: mFI_BGDisplayListRefresh
- 0x803A714C: mFI_SetPlayerBlockKind
- 0x803A71C0: mFI_CheckInIsland
- 0x803A71F8: mFI_CheckInJustIslandOutdoor
- 0x803A722C: mFI_CheckPlayerBlockInfo
- 0x803A723C: mFI_BkNumtoUtFGTop
- 0x803A72C0: mFI_BkNum2UtFGTop_layer
- 0x803A7368: mFI_UtNum2UtFG
- 0x803A7454: mFI_UtNum2UtFG2
- 0x803A7518: mFI_GetUnitFG
- 0x803A7578: mFI_GetUnitFG2
- 0x803A75D8: mFI_GetBlockUtNum2FG
- 0x803A76A8: mFI_BlockUtNumtoFGSet
- 0x803A7734: mFI_UtNumtoFGSet_common
- 0x803A7848: mFI_UtNum2FGSet_layer
- 0x803A7918: mFI_SetFG_common
- 0x803A7998: mFI_SetFG2
- 0x803A7A18: mFI_InitItemTable
- 0x803A7A50: mFI_SetOldItemTableIdx
- 0x803A7A6C: mFI_GetOldItemTableIdx
- 0x803A7A88: mFI_MakeOldItemTableIdxTable
- 0x803A7B64: mFI_SetBlockTable
- 0x803A7C04: mFI_GetItemTable_NoReset
- 0x803A7E80: mFI_GetItemTable
- 0x803A7ED8: mFI_FGisUpDate
- 0x803A7F1C: mFI_SetFGUpData
- 0x803A7F58: mFI_BornItemON
- 0x803A7F94: mFI_ItemisBorn
- 0x803A7FAC: mFI_ActorisBorn
- 0x803A7FC4: mFI_SetBearActor
- 0x803A8070: mFI_search_unit_around
- 0x803A8140: mFI_GetItemNumOnBlock
- 0x803A81B8: mFI_GetItemNumOnBlockInField
- 0x803A8248: mFI_GetItemNumField_BCT
- 0x803A82B8: mFI_GetItemNumField
- 0x803A8350: mFI_GetItemNumInBlock
- 0x803A8388: mFI_SearchFGInBlock
- 0x803A841C: mFI_CheckFGExist
- 0x803A84F0: mFI_GetHaniwaStepBlock
- 0x803A8560: mFI_GetMoveActorBitData
- 0x803A85D0: mFI_MakeMoveActorBitData
- 0x803A8654: mFI_SetMoveActorBitData
- 0x803A86C0: mFI_SetMoveActorBitData_ON
- 0x803A875C: mFI_SetMoveActorBitData_OFF
- 0x803A87F8: mFI_MyMoveActorBitData_ON
- 0x803A8834: mFI_GetMoveActorListIdx
- 0x803A8874: mFI_RegistMoveActorList
- 0x803A8938: mFI_UnregistMoveActorList
- 0x803A89DC: mFI_AddMoveActorList
- 0x803A8A6C: mFI_MoveActorListDma
- 0x803A8AF4: mFI_InitMoveActorBitData
- 0x803A8B78: mFI_SetPlayerWade
- 0x803A8C24: mFI_CheckPlayerWade
- 0x803A8C44: mFI_GetPlayerWade
- 0x803A8C54: mFI_GetNextBlockNum
- 0x803A8D18: mFI_GetDepositP
- 0x803A8DFC: mFI_ClearDeposit
- 0x803A8E3C: mFI_LineDepositON
- 0x803A8E58: mFI_LineDepositOFF
- 0x803A8E74: mFI_GetLineDeposit
- 0x803A8E84: mFI_SetDeposit
- 0x803A8EF4: mFI_BlockDepositOFF
- 0x803A8F18: mFI_GetBlockDeposit
- 0x803A8F3C: mFI_BkUtNum2SetDeposit
- 0x803A8F9C: mFI_BkUtNum2DepositOFF
- 0x803A8FC0: mFI_UtNum2SetDeposit
- 0x803A9054: mFI_UtNum2DepositON
- 0x803A9078: mFI_UtNum2DepositOFF
- 0x803A909C: mFI_UtNum2DepositGet
- 0x803A90C0: mFI_Wpos2DepositON
- 0x803A9110: mFI_Wpos2DepositOFF
- 0x803A9160: mFI_Wpos2DepositGet
- 0x803A91B0: mFI_CheckItemNoHole
- 0x803A91E0: mFI_CheckNothing
- 0x803A91E8: mFI_CheckDigHole
- 0x803A925C: mFI_CheckDigHoleFillin
- 0x803A92D0: mFI_CheckDigNoItem
- 0x803A92E8: mFI_CheckDigRemoveItem
- 0x803A93E0: mFI_CheckDigGetItem
- 0x803A9490: mFI_CheckDigDiffPosArea
- 0x803A94E8: mFI_GetDigStatus
- 0x803A96C0: mFI_ClearHoleBlock_sub
- 0x803A9708: mFI_ClearHoleBlock
- 0x803A972C: mFI_ClearBeecomb
- 0x803A9778: mFI_SetFGStructureKeep
- 0x803A97C0: mFI_SetStructure11
- 0x803A9858: mFI_SetStructure21
- 0x803A9924: mFI_SetStructure22
- 0x803A9A04: mFI_SetStructure23
- 0x803A9AE4: mFI_SetStructure32
- 0x803A9BC4: mFI_SetStructure33
- 0x803A9CA4: mFI_SetStructure33_main_back
- 0x803A9D84: mFI_SetFGStructure_common
- 0x803A9F0C: mFI_CheckStructureArea
- 0x803A9FD0: mFI_GetOtherFruit
- 0x803AA030: mFI_CheckFGNpcOn
- 0x803AA10C: mFI_CheckLapPolice
- 0x803AA1B0: mFI_GetWaveUtinBlock
- 0x803AA2C8: mFI_ClearBlockItemRandom_common
- 0x803AA540: mFI_SetFirstSetShell
- 0x803AA550: mFI_CheckSetShell
- 0x803AA580: mFI_GetCanSetShellNum
- 0x803AA6A0: mFI_ResearchShell
- 0x803AA7D0: mFI_DivideShellSameSum
- 0x803AA870: mFI_DivideShellRandom
- 0x803AA980: mFI_DivideShell
- 0x803AA9E4: mFI_GetShell
- 0x803AAA88: mFI_SetShellBlock
- 0x803AABAC: mFI_SetShellSandyBeachBlock
- 0x803AAC60: mFI_SetShellWave
- 0x803AAD40: mFI_SetShell
- 0x803AAE20: mFI_FieldMove
- 0x803AAF44: mFI_PrintNowBGNum
- 0x803AAFB0: mFI_PrintFgAttr
- 0x803AB100: mFI_SetOyasiroPos
- 0x803AB1EC: mFI_CheckBlockSetTreasure
- 0x803AB224: mFI_SetTreasure
- 0x803AB410: mFI_GetClimate
- 0x803AB43C: mFI_SetClimate
- 0x803AB484: mFI_CheckBeforeScenePerpetual
- 0x803AB4BC: mFI_ChangeClimate_ForEventNotice
- 0x803AB538: mFI_PullTanukiPathTrees
- 0x803AB698: mFR_delete_record
- 0x803AB6C0: mFR_delete_after_record
- 0x803AB748: mFR_delete_npc_record
- 0x803AB7F4: mFR_get_record
- 0x803AB880: mFR_get_free_record
- 0x803AB8BC: mFR_recycle_record
- 0x803AB950: mFR_new_record
- 0x803AB998: mEv_fishRecord_set
- 0x803ABA30: mFR_fish_rndsize
- 0x803ABB20: mFR_make_NpcRecord
- 0x803ABBA0: mEv_fishRecord_local
- 0x803ABCCC: mEv_fishRecord_holder1
- 0x803ABD78: mEv_fishRecord_holder2
- 0x803ABDEC: mEv_fishRecord_holder
- 0x803ABE70: mEv_fishday_day
- 0x803ABEF8: mEv_fishday
- 0x803AC108: mFR_swap_record
- 0x803AC168: mFR_sort_record
- 0x803AC22C: mFR_Fishmail_send_post
- 0x803AC2B4: mFR_Fishmail_send_postoffice
- 0x803AC300: mFR_GetFishPresentMail
- 0x803AC3D0: mFR_Fishmail_send
- 0x803AC4C8: mFR_fishRecord_last_holder
- 0x803AC578: mFR_fishmail
- 0x803AC5C8: mFRm_set_msg_idx
- 0x803AC5D4: mFRm_get_msg_idx
- 0x803AC5E4: mFRm_ReturnCheckSum
- 0x803AC614: mFRm_GetFlatCheckSum
- 0x803AC658: mFRm_CheckSaveData_ID
- 0x803AC674: mFRm_CheckSaveData_common
- 0x803AC6DC: mFRm_CheckSaveData
- 0x803AC70C: mFRm_ClearSaveCheckData
- 0x803AC764: mFRm_SetSaveCheckData
- 0x803AC7B4: mFRm_PrintSavedDebug
- 0x803AC82C: mFRm_clear_err_info
- 0x803AC87C: mFRm_get_free_errInfo
- 0x803AC8B0: mFRm_set_errInfo
- 0x803AC8FC: mFRm_get_errInfoNum
- 0x803AC92C: mFRm_save_data_check
- 0x803AC9DC: mFRm_display_errInfo
- 0x803ACAF8: sChk_block_num_sub
- 0x803ACBAC: sChk_ut_num_sub
- 0x803ACC3C: sChk_ItemFG_sub
- 0x803ACC9C: sChk_cloth_sub
- 0x803ACD14: sChk_fruit_sub
- 0x803ACD68: sChk_OSRTCTime_sub
- 0x803ACEA0: sChk_lbRTC_ymd_c_sub
- 0x803ACF88: sChk_Mail_nm_c_sub
- 0x803ACFDC: sChk_Mail_hdr_c_sub
- 0x803AD030: sChk_font_sub
- 0x803AD090: sChk_header_back_start_sub
- 0x803AD0DC: sChk_paper_type_sub
- 0x803AD128: sChk_Mail_ct_c_sub
- 0x803AD1A8: sChk_Mail_c_sub
- 0x803AD208: sChk_mHm_rmsz_c_sub
- 0x803AD2B0: sChk_Haniwa_Item_c_sub
- 0x803AD30C: sChk_Haniwa_c_sub
- 0x803AD370: sChk_outlook_pal_sub
- 0x803AD3BC: sChk_mHm_goki_c_sub
- 0x803AD3DC: sChk_mHm_hs_c_sub
- 0x803AD4A0: sChk_AnmPersonalID_c_sub
- 0x803AD530: sChk_Anmplmail_c_sub
- 0x803AD59C: sChk_Anmmem_c_sub
- 0x803AD5F0: sChk_Anmhome_c_sub
- 0x803AD674: sChk_Animal_c_sub
- 0x803AD764: sChk_Kabu_price_c_sub
- 0x803AD820: sChk_PostOffice_c_sub
- 0x803AD998: sChk_PoliceBox_c_sub
- 0x803AD9F4: sChk_Config_c_sub
- 0x803ADAA4: sChk_mMsr_time_c_sub
- 0x803ADB88: sChk_MaskCat_c_sub
- 0x803ADC70: sChk_check_save_data
- 0x803ADE28: sChk_check_save_gen
- 0x803ADE30: sSC_CheckSaveData_Weather
- 0x803ADEC0: sSC_CheckSaveData_Shop
- 0x803ADFC0: sSC_CheckHouseSize
- 0x803ADFD4: sSC_CheckHappyRoom
- 0x803ADFDC: sSC_CheckDoorOriginal
- 0x803AE000: sSCCheckOneFloorData
- 0x803AE008: sSC_CheckHouseInterior
- 0x803AE070: sSC_CheckSaveData_House
- 0x803AE19C: sSC_CheckSaveData_Cattage
- 0x803AE238: sSC_CheckMuseumBitData
- 0x803AE2B4: sSC_CheckSaveData_MuseumDisplay
- 0x803AE3E4: sSC_CheckOneOriginalData
- 0x803AE434: sSC_CheckSaveData_Needlework
- 0x803AE534: sSC_BlockInfo2Count
- 0x803AE5FC: sSC_CheckSaveData_Map
- 0x803AE680: sChk_CheckSaveData_MYK
- 0x803AE6E0: sChk_lbRTC_ymd_c_NSW
- 0x803AE7CC: sCck_CheckSaveData_radiocard_NSW
- 0x803AE85C: sCck_CheckSaveData_calendar_NSW
- 0x803AE93C: sCck_CheckSaveData_deposit_NSW
- 0x803AE99C: sCck_CheckSaveData_nw_visitor_NSW
- 0x803AEA08: sCck_CheckSaveData_my_org_no_table_NSW
- 0x803AEAA4: sCck_CheckSaveData_bridge_NSW
- 0x803AEBA8: sCck_CheckSaveData_fishRecord_NSW
- 0x803AEC78: sCck_CheckSaveData_Anmret_NSW
- 0x803AED20: sCck_CheckSaveData_LightHouse_NSW
- 0x803AED80: sChk_CheckSaveData_NSW
- 0x803AEE38: sChk_board_save_check
- 0x803AEF18: sChk_weather_save_check
- 0x803AEF84: sChk_snowman_save_check
- 0x803AF05C: sChk_check_save_take
- 0x803AF0A8: sCck_CheckSaveData_diary_body_YSD
- 0x803AF0B0: sCCk_Check_ItemName
- 0x803AF14C: sCCk_Check_ItemName_Possession
- 0x803AF204: sCck_CheckSaveData_Item_YSD
- 0x803AF25C: sCck_CheckSaveData_Mail_YSD
- 0x803AF2C0: sChk_CheckSaveData_YSD
- 0x803AF340: sChk_CheckSaveData_komatu
- 0x803AF48C: mFont_ct
- 0x803AF490: mMsg_CutLeftSpace
- 0x803AF528: mFont_suji_check
- 0x803AF560: mFont_UnintToString
- 0x803AF70C: mFont_char_save_data_check
- 0x803AF730: mFont_small_to_capital
- 0x803AF764: mFont_Get_FontOffset
- 0x803AF778: mFont_Get_FontTex_p
- 0x803AF784: mFont_GetCodeWidth
- 0x803AF7B8: mFont_GetStringWidth
- 0x803AF820: mFont_GetStringWidth2
- 0x803AF898: mFont_CodeSize_get
- 0x803AF8F0: mFont_CodeSize_idx_get
- 0x803AF914: mFont_cont_attr_get
- 0x803AF930: mFont_gppSetMode
- 0x803AF954: mFont_SetMode
- 0x803AF9B8: mFont_gfxSetPrimColor
- 0x803AF9E0: mFont_gppSetPrimColor
- 0x803AFA20: mFont_SetPrimColor
- 0x803AFA6C: mFont_gfxSetCombineMode
- 0x803AFAD0: mFont_gppSetCombineMode
- 0x803AFB3C: mFont_SetCombineMode
- 0x803AFB90: mFont_gppLoadTexture
- 0x803AFC28: mFont_SetVertex_dol
- 0x803AFC5C: mFont_SetVertexRectangle
- 0x803B0014: mFont_SetLineStrings_AndSpace_new
- 0x803B0158: mFont_SetLineStrings_AndSpace
- 0x803B0190: mFont_SetLineStrings
- 0x803B01C8: mFont_CulcOrthoMatrix
- 0x803B0220: mFont_SetMatrix
- 0x803B0320: mFont_UnSetMatrix
- 0x803B0340: mFont_Main_start
- 0x803B0364: mFont_gppDrawCharRect
- 0x803B041C: mFont_gppDrawCharPoly
- 0x803B0670: mFontChar_gppDraw_sentence_restore
- 0x803B0718: mFontChar_total_scale_reset
- 0x803B0794: mFontChar_ContProc_set_color_char
- 0x803B07F8: mFontChar_ContProc_set_char_scale
- 0x803B0864: mFontChar_cont_proc_get
- 0x803B0890: mFontChar_set
- 0x803B093C: mFontChar_gppDrawRect
- 0x803B0AD4: mFontChar_gppDrawPoly
- 0x803B0C88: mFontChar_gppDraw
- 0x803B0CBC: mFontSentence_line_offset_calc
- 0x803B0CD0: mFontSentence_ContProc_set_line_offset
- 0x803B0D24: mFontSentence_ContProc_set_line_type
- 0x803B0D6C: mFontSentence_ContProc_set_line_scale
- 0x803B0DD8: mFontSentence_ContProc_space
- 0x803B0E28: mFontSentence_cont_proc_get
- 0x803B0E7C: mFontSentence_animal_voice_se
- 0x803B0FEC: mFontSentence_set
- 0x803B1128: mFontSentence_gppDraw_before
- 0x803B11B8: mFontSentence_gppDraw_main
- 0x803B1308: mFontSentence_gppDraw_after
- 0x803B130C: mFontSentence_gppDraw
- 0x803B137C: mFont_Get_MarkTex_p
- 0x803B13AC: mFont_Get_MarkTex_sizeW
- 0x803B13DC: mFont_Get_MarkTex_sizeH
- 0x803B140C: mFont_SetMarkChar
- 0x803B15BC: mFont_gppSetRectMode
- 0x803B15E0: Balloon_init
- 0x803B1608: Balloon_make_fuusen
- 0x803B16D8: Balloon_chk_make_fuusen
- 0x803B17E4: Balloon_move
- 0x803B18D8: Balloon_kill
- 0x803B18F0: Balloon_look_up
- 0x803B1908: mHsRm_GetHuusuiRoom
- 0x803B1968: mHandbill_aram_init
- 0x803B19F4: mHandbill_clr_force_art
- 0x803B1A08: mHandbill_clr_capital_flag
- 0x803B1A1C: mHandbill_load_init
- 0x803B1A40: mHandbill_Set_free_str
- 0x803B1AD8: mHandbill_Set_free_str_art
- 0x803B1B24: mHandbill_CopyString
- 0x803B1B48: mHandbill_MoveDataCut
- 0x803B1C30: mHandbill_Put_String_FREE
- 0x803B1DC4: mHandbill_Put_String_FREE0
- 0x803B1DEC: mHandbill_Put_String_FREE1
- 0x803B1E14: mHandbill_Put_String_FREE2
- 0x803B1E3C: mHandbill_Put_String_FREE3
- 0x803B1E64: mHandbill_Put_String_FREE4
- 0x803B1E8C: mHandbill_Put_String_FREE5
- 0x803B1EB4: mHandbill_Put_String_FREE6
- 0x803B1EDC: mHandbill_Put_String_FREE7
- 0x803B1F04: mHandbill_Put_String_FREE8
- 0x803B1F2C: mHandbill_Put_String_FREE9
- 0x803B1F54: mHandbill_Put_String_FREE10
- 0x803B1F7C: mHandbill_Put_String_FREE11
- 0x803B1FA4: mHandbill_Put_String_FREE12
- 0x803B1FCC: mHandbill_Put_String_FREE13
- 0x803B1FF4: mHandbill_Put_String_FREE14
- 0x803B201C: mHandbill_Put_String_FREE15
- 0x803B2044: mHandbill_Put_String_FREE16
- 0x803B206C: mHandbill_Put_String_FREE17
- 0x803B2094: mHandbill_Put_String_FREE18
- 0x803B20BC: mHandbill_Put_String_FREE19
- 0x803B20E4: mHandbill_Cut_Article
- 0x803B2158: mHandbill_Capital_Letter
- 0x803B21CC: mHandbill_Put_String
- 0x803B2228: mHandbill_Change_ControlCode
- 0x803B22B0: mHandbill_Change_ControlCode2
- 0x803B2358: mHandbill_Get_SuperStringDataAddressAndSize
- 0x803B23A0: mHandbill_Get_PsStringDataAddressAndSize
- 0x803B23E8: mHandbill_Get_MailStringDataAddressAndSize
- 0x803B2430: mHandbill_CheckSuperStringBorderAndCopy
- 0x803B2490: mHandbill_Load_SuperStringFromRom
- 0x803B25E4: mHandbill_Load_PsStringFromRom
- 0x803B2704: mHandbill_Load_MailFromRom
- 0x803B281C: mHandbill_Load_HandbillFromRom
- 0x803B2890: mHandbill_Load_HandbillFromRom2
- 0x803B290C: mHandbillz_aram_init
- 0x803B29E8: mHandbillzDMA_body_addr_set
- 0x803B2A64: mHandbillzDMA_body_load
- 0x803B2B1C: mHandbillz_super_load
- 0x803B2C14: mHandbillz_mail_load
- 0x803B2D4C: mHandbillz_ps_load
- 0x803B2E10: mHandbillz_load
- 0x803B2E88: mHm_ClearHomeInfo
- 0x803B301C: mHm_ClearAllHomeInfo
- 0x803B3058: mHm_SetNowHome
- 0x803B30BC: mHm_SetDefaultPlayerRoomData
- 0x803B314C: mHm_InitHomeInfo
- 0x803B3180: mHm_ChangeWallDoorFG
- 0x803B31E0: mHm_EraseWallDoor
- 0x803B3204: mHm_SetWallDoor
- 0x803B3228: mHm_RehouseWallDoor
- 0x803B32B4: mHm_CheckRehouseOrder
- 0x803B3488: mHm_KeepHouseSize
- 0x803B3520: mHm_CheckKeepHouseSize
- 0x803B35C0: mHm_SetBasement
- 0x803B360C: mHm_SetDefaultCottageData
- 0x803B363C: mHm_InitCottage
- 0x803B3688: mHS_house_init
- 0x803B36A0: mHS_get_arrange_idx
- 0x803B36C0: mHS_get_pl_no
- 0x803B36FC: mHS_get_pl_no_detail
- 0x803B3798: mHS_set_use
- 0x803B3880: mLd_StartFlagOn
- 0x803B3890: mLd_CheckStartFlag
- 0x803B38A0: mLd_NullCheckLandName
- 0x803B38DC: mLd_CheckId
- 0x803B38F4: mLd_CheckCmpLandName
- 0x803B3960: mLd_CheckCmpLand
- 0x803B39B0: mLd_ClearLandName
- 0x803B39D8: mLd_CopyLandName
- 0x803B39FC: mLd_AddMuraString
- 0x803B3A68: mLd_GetLandNameStringAddMura
- 0x803B3AF0: mLd_SetFreeStrLandMuraName
- 0x803B3B84: mLd_GetLandName
- 0x803B3B98: mLd_MakeLandId
- 0x803B3BD8: mLd_PlayerManKindCheckNo
- 0x803B3BF0: mLd_PlayerManKindCheck
- 0x803B3C20: mLd_CheckThisLand
- 0x803B3C54: mLd_LandInfoInit
- 0x803B3C94: mLd_LandDataInit
- 0x803B3CB8: mISL_ClearKeepIsland
- 0x803B3CE4: mISL_KeepIsland
- 0x803B3D34: mISL_KeepIslandComb
- 0x803B3D6C: mISL_RestoreIslandComb_com
- 0x803B3DA8: mISL_RestoreIslandComb
- 0x803B3E0C: mISL_ChangeBG
- 0x803B3E80: mISL_RestoreIsland
- 0x803B3F04: mISL_init
- 0x803B3F70: mISL_GetCheckP
- 0x803B3FEC: mISL_ClearNowPlayerAction
- 0x803B4044: mISL_SetPlayerAction
- 0x803B4100: mISL_SetNowPlayerAction
- 0x803B413C: mISL_CheckPlayerAction
- 0x803B4198: mISL_CheckNowPlayerAction
- 0x803B41E0: mISL_int
- 0x803B4204: mISL_short
- 0x803B4228: mISL_u64
- 0x803B42C4: mISL_get_npc_idx
- 0x803B4314: mISL_get_npc_tex
- 0x803B4390: mISL_get_npc_pal
- 0x803B440C: mISL_get_earth_tex
- 0x803B4488: mISL_gc_to_agb_iandinfo
- 0x803B44E4: mISL_agb_to_gc_iandinfo
- 0x803B4540: mISL_gc_to_agb_fg
- 0x803B4564: mISL_gc_to_agb_fg2
- 0x803B464C: mISL_agb_to_gc_fg
- 0x803B4670: mISL_gc_to_agb_fgblock
- 0x803B46C8: mISL_agb_to_gc_fgblock
- 0x803B4720: mISL_gc_to_agb_layer
- 0x803B4798: mISL_gc_to_agb_fllot_bit
- 0x803B4804: mISL_agb_to_gc_fllot_bit
- 0x803B486C: mISL_gc_to_agb_cottage_floor
- 0x803B48D0: mISL_agb_to_gc_cottage_floor
- 0x803B4934: mISL_gc_to_agb_ymd
- 0x803B4980: mISL_gc_to_agb_time
- 0x803B49E4: mISL_gc_to_agb_goki
- 0x803B4A24: mISL_agb_to_gc_goki
- 0x803B4A64: mISL_gc_to_agb_cottage
- 0x803B4AF0: mISL_agb_to_gc_cottage
- 0x803B4B7C: mISL_gc_to_agb_mail
- 0x803B4C0C: mISL_agb_to_gc_mail
- 0x803B4C9C: mIS_gc_to_agb_anmpersonal
- 0x803B4D08: mIS_agb_to_gc_anmpersonal
- 0x803B4D74: mISL_gc_to_agb_personal
- 0x803B4DE8: mISL_gc_to_agb_memuni
- 0x803B4E0C: mISL_agb_to_gc_memuni
- 0x803B4E30: mISL_gc_to_agb_memletter
- 0x803B4EC0: mISL_agb_to_gc_memletter
- 0x803B4F60: mISL_gc_to_agb_memory
- 0x803B4FD0: mISL_agb_to_gc_memory
- 0x803B5050: mISL_gc_to_agb_qclass
- 0x803B50F0: mISL_agb_to_gc_qclass
- 0x803B519C: mISL_gc_to_agb_qdata
- 0x803B51C0: mISL_agb_to_gc_qdata
- 0x803B51E4: mISL_gc_to_agb_quest
- 0x803B524C: mISL_agb_to_gc_quest
- 0x803B52B4: mISL_gc_to_agb_anmuni
- 0x803B52D8: mISL_agb_to_gc_anmuni
- 0x803B52FC: mISL_gc_to_agb_hp_mail
- 0x803B5344: mISL_agb_to_gc_hp_mail
- 0x803B538C: mISL_gc_to_agb_animal
- 0x803B54EC: mISL_agb_to_gc_animal
- 0x803B564C: mISL_ReturnCheckSum
- 0x803B5674: mISL_GetFlatCheckSum
- 0x803B56CC: mISL_gc_to_agb
- 0x803B5884: mISL_toHole
- 0x803B5948: mISL_agb_to_gc
- 0x803B5A68: mIN_dma_itemName
- 0x803B5A8C: mIN_copy_name_str
- 0x803B5C00: mIN_get_item_article
- 0x803B5CC4: Kabu_set_schedule_day
- 0x803B5D2C: Kabu_decide_trade_market
- 0x803B5DBC: Kabu_decide_price_schedule_typeA
- 0x803B5E6C: Kabu_decide_price_schedule_typeB
- 0x803B5FBC: Kabu_decide_price_schedule_typeC
- 0x803B6090: Kabu_decide_price_sunday
- 0x803B6108: Kabu_decide_price_without_sunday
- 0x803B614C: Kabu_decide_price_schedule_without_sunday
- 0x803B6174: Kabu_decide_price_schedule
- 0x803B6198: Kabu_get_price
- 0x803B61B8: Kabu_manager
- 0x803B6280: mEnv_DiffuseLightEffectRate
- 0x803B62F0: mEnv_regist_nature
- 0x803B62FC: mEnv_unregist_nature
- 0x803B6340: mEnv_GetNowRoomPointLightInfo
- 0x803B67CC: mEnv_RoomTypePointLightSet
- 0x803B6934: mEnv_RoomTypediffuseLightSet
- 0x803B69C8: mEnv_RoomTypeLightSet
- 0x803B6A0C: mEnv_rainbow_check_set
- 0x803B6B40: Global_kankyo_ct
- 0x803B6D04: mEnv_MakeShadowInfo
- 0x803B72FC: mEnv_set_time
- 0x803B74B0: mEnv_ChangeRGBLight
- 0x803B75AC: mEnv_ChangeDiffuseVctlSet
- 0x803B77B8: mEnv_ChangeDiffuseLight
- 0x803B7B28: mEnv_ChangeFogLight
- 0x803B7D5C: mEnv_CalcSetLight_train
- 0x803B7E1C: mEnv_CalcSetLight
- 0x803B7F90: mEnv_GetNowTerm
- 0x803B7FDC: mEnv_SetBaseLight
- 0x803B8490: mEnv_LimitChkRGBColor
- 0x803B84B4: mEnv_AddAndSetRGBColor
- 0x803B851C: mEnv_SetDiffuseLight
- 0x803B859C: mEnv_SetFog
- 0x803B8644: mEnv_PermitCheckDiffuseLight
- 0x803B86A0: mEnv_GetRoomPrimColor
- 0x803B8800: Global_kankyo_set_room_prim
- 0x803B891C: mEnv_check_countdown_start
- 0x803B89C0: mEnv_countdown_proc
- 0x803B8AB4: mEnv_RequestChangeLightON
- 0x803B8B48: mEnv_RequestChangeLightOFF
- 0x803B8BF8: mEnv_LightAnimeToSwitchON
- 0x803B8C54: mEnv_ManagePointLight
- 0x803B8E78: mEnv_ManageChangeWeatherEnvRate
- 0x803B8F34: mEnv_JudgeSwitchStatus
- 0x803B8FD8: mEnv_rainbow_power_calc
- 0x803B90EC: Global_kankyo_set
- 0x803B91A8: mEnv_CheckNpcRoomPointLightNiceStatus
- 0x803B9294: mEnv_TaimatuPointLightWaveMoveProc
- 0x803B9350: mEnv_CheckNpcLight_ToSwitchON
- 0x803B9354: mEnv_PointLightSet
- 0x803B9458: staffroll_light_init
- 0x803B94B0: mEnv_DecideStaffrollFadeOutRate
- 0x803B9554: mEnv_DecideStaffrollFadeInRate
- 0x803B95F4: staffroll_light_proc_start
- 0x803B9634: staffroll_light_proc_end
- 0x803B968C: staffroll_light_dt
- 0x803B96BC: mEnv_GetShadowPrimColor_Light
- 0x803B96D8: mEnv_Pointlight_on_check
- 0x803B9700: mEnv_PointLightMin
- 0x803B9720: mEnv_MakeWindowLightAlpha
- 0x803B9938: mKK_windowlight_alpha_get
- 0x803B9948: mEnv_ReqeustChangeWeatherEnviroment
- 0x803B99B4: mEnv_ReservePointLight
- 0x803B9ABC: mEnv_OperateReservedPointLight_Position
- 0x803B9B28: mEnv_OperateReservedPointLight_Color
- 0x803B9B5C: mEnv_OperateReservedPointLight_Power
- 0x803B9B84: mEnv_OperateReservedPointLight
- 0x803B9BE8: mEnv_CancelReservedPointLight
- 0x803B9C44: mEnv_DecideWindDirect
- 0x803B9DD0: mEnv_GetWeatherChangeStep
- 0x803B9E30: mEnv_RandomWeather
- 0x803B9F64: mEnv_GetWindAngleS
- 0x803B9F88: mEnv_GetWindPowerF
- 0x803B9FBC: mEnv_GetWindPowerF_Windmill
- 0x803B9FCC: mEnv_GetWindPowerTableTerm
- 0x803BA01C: mEnv_GetWindPowerPercent
- 0x803BA0AC: mEnv_DecideTodayWindPowerRange
- 0x803BA198: mEnv_ChangeWind
- 0x803BA27C: mEnv_InitWind
- 0x803BA354: mEnv_WindMove
- 0x803BA7BC: mEnv_DecideWeather_GameStart
- 0x803BA858: mEnv_DecideWeather_FirstGameStart
- 0x803BA8B4: mEnv_Rainbow_reserve
- 0x803BA8DC: mEnv_PreRainNowFine_Init
- 0x803BA900: mEnv_DecideWeather_NormalGameStart
- 0x803BAA80: mEnv_NowWeather
- 0x803BAB0C: mem_copy
- 0x803BAB30: mem_clear
- 0x803BAB4C: mem_cmp
- 0x803BAB84: cos_s
- 0x803BABD8: sin_s
- 0x803BAC2C: chase_angle
- 0x803BACE0: chase_s
- 0x803BAD50: chase_f
- 0x803BADC4: chase_xyz_t
- 0x803BAE88: chase_angle2
- 0x803BAEE0: inter_float
- 0x803BAF30: get_random_timer
- 0x803BAFA4: xyz_t_move
- 0x803BAFC0: xyz_t_move_s_xyz
- 0x803BB02C: xyz_t_add
- 0x803BB060: xyz_t_sub
- 0x803BB094: xyz_t_mult_v
- 0x803BB0BC: search_position_distance
- 0x803BB174: search_position_distanceXZ
- 0x803BB218: search_position_angleY
- 0x803BB250: search_position_angleX
- 0x803BB298: add_calc
- 0x803BB37C: add_calc2
- 0x803BB3C0: add_calc0
- 0x803BB3F8: add_calc_short_angle2
- 0x803BB524: add_calc_short_angle3
- 0x803BB610: rgba_t_move
- 0x803BB634: none_proc1
- 0x803BB63C: none_proc2
- 0x803BB640: _Game_play_isPause
- 0x803BB650: check_percent_abs
- 0x803BB6E4: get_percent_forAccelBrake
- 0x803BB80C: Game_play_Projection_Trans
- 0x803BB8CC: get_percent
- 0x803BB960: point_data_set
- 0x803BB9A8: Light_point_ct
- 0x803BB9D0: Light_point_color_set
- 0x803BB9E4: Light_diffuse_ct
- 0x803BBA08: LightsN_disp_BG
- 0x803BBAE0: LightsN_disp
- 0x803BBBBC: LightsN_new_diffuse
- 0x803BBBEC: LightsN__point_proc
- 0x803BBEA0: LightsN__P_point_proc
- 0x803BBFA8: LightsN__diffuse_proc
- 0x803BC018: LightsN_list_check
- 0x803BC0D0: Light_list_buf_new
- 0x803BC150: Light_list_buf_delete
- 0x803BC190: Global_light_ct
- 0x803BC1FC: Global_light_ambient_set
- 0x803BC20C: Global_light_fog_set
- 0x803BC224: Global_light_read
- 0x803BC258: Global_light_list_ct
- 0x803BC264: Global_light_list_new
- 0x803BC2CC: Global_light_list_delete
- 0x803BC32C: new_LightsN
- 0x803BC360: Light_list_point_draw
- 0x803BC510: zelda_malloc_align
- 0x803BC544: zelda_malloc
- 0x803BC570: zelda_malloc_r
- 0x803BC59C: zelda_free
- 0x803BC5C8: zelda_GetFreeArena
- 0x803BC600: zelda_GetTotalFreeSize
- 0x803BC628: zelda_GetMemBlockSize
- 0x803BC654: zelda_InitArena
- 0x803BC688: zelda_AddBlockArena
- 0x803BC6BC: zelda_CleanupArena
- 0x803BC6E4: zelda_MallocIsInitalized
- 0x803BC70C: mMl_strlen
- 0x803BC74C: mMl_strlen2
- 0x803BC7A4: mMl_clear_mail_header
- 0x803BC7E8: mMl_clear_mail
- 0x803BC838: mMl_clear_mail_box
- 0x803BC888: mMl_check_not_used_mail
- 0x803BC8A0: mMl_copy_header_name
- 0x803BC8C8: mMl_set_to_plname
- 0x803BC8FC: mMl_set_playername
- 0x803BC934: mMl_init_mail
- 0x803BC98C: mMl_chk_mail_free_space
- 0x803BC9F4: mMl_count_use_mail_space
- 0x803BCA5C: mMl_copy_mail
- 0x803BCA80: mMl_clear_mail_header_common
- 0x803BCAD8: mMl_set_mail_name_npcinfo
- 0x803BCB4C: mMl_get_npcinfo_from_mail_name
- 0x803BCBCC: mMl_hunt_for_send_address
- 0x803BCC58: mMl_check_send_mail
- 0x803BCC6C: mMl_check_set_present_myself
- 0x803BCC98: mMl_load_mail_data
- 0x803BCCE0: mMl_load_mail_data2
- 0x803BCD60: mMl_get_mail_to_player_com
- 0x803BCE30: mMl_send_mail_box_com
- 0x803BCF0C: mMl_send_mail_box
- 0x803BCF34: mMl_send_mail_postoffice_com
- 0x803BCFC8: mMl_send_mail_postoffice
- 0x803BD03C: mMl_send_mail_com
- 0x803BD0E0: mMl_send_mail
- 0x803BD104: mMl_send_postoffice_mail
- 0x803BD210: mMl_start_send_mail
- 0x803BD230: mMC_get_mail_hit_rate
- 0x803BD250: mMpswd_bit_shift
- 0x803BD454: mMpswd_bit_reverse
- 0x803BD484: mMpswd_bit_arrange_reverse
- 0x803BD544: mMpswd_check_opening_sentence
- 0x803BD55C: mMpswd_get_password_pointer
- 0x803BD598: mMpswd_except_return_code
- 0x803BD5C8: mMpswd_adjust_letter
- 0x803BD60C: mMpswd_make_passcode
- 0x803BD754: mMpswd_chg_6bits_code
- 0x803BD7C0: mMpswd_chg_8bits_code
- 0x803BD82C: mMpswd_get_RSA_key_code
- 0x803BD8E4: mMpswd_chg_RSA_cipher
- 0x803BD99C: mMpswd_decode_RSA_cipher
- 0x803BDA88: mMpswd_bit_mix_code
- 0x803BDB34: mMpswd_decode_bit_code
- 0x803BDBE0: mMpswd_substitution_cipher
- 0x803BDC08: mMpswd_decode_substitution_cipher
- 0x803BDC5C: mMpswd_transposition_cipher
- 0x803BDCEC: mMpswd_bit_shuffle
- 0x803BDE18: mMpswd_decode_bit_shuffle
- 0x803BDF44: mMpswd_chg_common_font_code
- 0x803BDF9C: mMpswd_chg_password_font_code_sub
- 0x803BDFDC: mMpswd_chg_password_font_code
- 0x803BE06C: mMpswd_make_password
- 0x803BE14C: mMpswd_decode_code
- 0x803BE208: mMpswd_restore_code
- 0x803BE27C: mMpswd_password
- 0x803BE388: mMpswd_password_zuru_check
- 0x803BE408: mMpswd_check_present_famicom
- 0x803BE490: mMpswd_check_present_user
- 0x803BE9DC: mMpswd_check_present_other
- 0x803BEB58: mMpswd_check_present
- 0x803BEBC4: mMpswd_get_sp_npc_num
- 0x803BEBEC: mMpswd_check_npc_code
- 0x803BEC28: mMpswd_check_name
- 0x803BEC9C: mMkRm_GetMarkOrder
- 0x803BED44: mMkRm_ReportMarkEnd
- 0x803BEDC4: mMkRm_ReportChangePlayerRoom
- 0x803BEEA8: mMkRm_NoMarkLetter
- 0x803BEF7C: mMkRm_NoMarkLetter_Hint
- 0x803BF0D4: mMkRm_MarkRoom
- 0x803BF210: mMld_SetDefaultMelody
- 0x803BF238: mMld_TransformMelodyData_u64_2_u8
- 0x803BF2A8: mMld_TransformMelodyData_u8_2_u64
- 0x803BF32C: mMld_GetMelody
- 0x803BF360: mMld_SetSaveMelody
- 0x803BF394: mMld_MakeMelody
- 0x803BF3D8: mMld_ActorMakeThisMelody
- 0x803BF420: mMld_ActorMakeMelody
- 0x803BF464: mMsg_MainSetup_Window
- 0x803BF4B8: mMsg_Main_Window
- 0x803BF50C: mMsg_Draw_Window
- 0x803BF5C0: mMsg_aram_init
- 0x803BF5E8: mMsg_aram_init2
- 0x803BF624: mMsg_ct
- 0x803BF664: mMsg_dt
- 0x803BF694: mMsg_debug_draw
- 0x803BF718: mMsg_Main
- 0x803BF764: mMsg_Draw
- 0x803BF790: mMsg_Get_base_window_p
- 0x803BF79C: mMsg_Check_request_priority
- 0x803BF7B8: mMsg_Change_request_main_index
- 0x803BF814: mMsg_Check_main_index
- 0x803BF828: mMsg_Check_main_wait
- 0x803BF84C: mMsg_Check_not_series_main_wait
- 0x803BF8C0: mMsg_Check_main_hide
- 0x803BF8E4: mMsg_Set_client_actor_p
- 0x803BF9BC: mMsg_request_main_forceoff
- 0x803BF9E8: mMsg_request_main_disappear
- 0x803BFA08: mMsg_request_main_appear
- 0x803BFA7C: mMsg_request_main_disappear_wait
- 0x803BFAD0: mMsg_request_main_disappear_wait_sub
- 0x803BFB2C: mMsg_request_main_disappear_wait_type1
- 0x803BFB50: mMsg_request_main_disappear_wait_type2
- 0x803BFB74: mMsg_request_main_wait
- 0x803BFBC8: mMsg_request_main_appear_wait
- 0x803BFC28: mMsg_request_main_appear_wait_type2
- 0x803BFC70: mMsg_request_main_appear_wait_type1
- 0x803BFC94: mMsg_request_main_normal
- 0x803BFCE8: mMsg_request_main_cursol
- 0x803BFD3C: mMsg_Set_free_str
- 0x803BFDF0: mMsg_Set_free_str_cl
- 0x803BFE14: mMsg_Set_free_str_art
- 0x803BFE3C: mMsg_Set_free_str_cl_art
- 0x803BFEBC: mMsg_Set_item_str
- 0x803BFF38: mMsg_Set_item_str_art
- 0x803BFF80: mMsg_Set_mail_str
- 0x803C00AC: mMsg_Set_continue_msg_num
- 0x803C00B4: mMsg_Get_msg_num
- 0x803C00E0: mMsg_Check_give_item
- 0x803C0110: mMsg_set_cursol_just
- 0x803C0120: mMsg_unset_cursol_just
- 0x803C0130: mMsg_Set_SizeCode
- 0x803C0158: mMsg_Count_SameCode
- 0x803C01D4: mMsg_Check_LastCode_forData
- 0x803C0200: mMsg_Check_LastCode
- 0x803C0228: mMsg_Check_ContinueCode_forData
- 0x803C0254: mMsg_Check_ContinueCode
- 0x803C027C: mMsg_Check_NextIndex_ContinueCode
- 0x803C02A8: mMsg_Check_NextIndex_LastCode
- 0x803C02D4: mMsg_Check_NextIndex_SetSelectWindowCode
- 0x803C030C: mMsg_Get_CursolSetTimeCode_forData
- 0x803C0370: mMsg_Get_CursolSetTimeCode
- 0x803C0398: mMsg_Get_ColorCode_forData
- 0x803C03DC: mMsg_Get_ColorCode
- 0x803C0404: mMsg_Get_OrderCode_forData
- 0x803C045C: mMsg_Get_OrderCode
- 0x803C0484: mMsg_Get_SoundCutCode_forData
- 0x803C04B0: mMsg_Get_SoundCutCode
- 0x803C04D8: mMsg_Get_bgm_make_forData
- 0x803C0530: mMsg_Get_bgm_make
- 0x803C0558: mMsg_Get_bgm_delete_forData
- 0x803C05B0: mMsg_Get_bgm_delete
- 0x803C05D8: mMsg_Get_MsgTimeEnd_time_forData
- 0x803C0604: mMsg_Get_MsgTimeEnd_time
- 0x803C062C: mMsg_Check_MsgTimeEndCode_forData
- 0x803C0654: mMsg_Check_MsgTimeEndCode
- 0x803C067C: mMsg_Check_NextIndex_MsgTimeEndCode
- 0x803C06A0: mMsg_Get_sound_trg_sys_forData
- 0x803C06DC: mMsg_Get_sound_trg_sys
- 0x803C0704: mMsg_Set_LineFontColor
- 0x803C0734: mMsg_init_FontColor
- 0x803C0790: mMsg_init_NowDisplayLIne
- 0x803C079C: mMsg_Clear_CursolIndex
- 0x803C07D8: mMsg_SetTimer
- 0x803C07E0: mMsg_Get_BodyParam
- 0x803C08AC: mMsg_Get_MsgDataAddressAndSize
- 0x803C08F4: mMsg_Count_MsgData
- 0x803C0998: mMsg_LoadMsgData
- 0x803C0A80: mMsg_ChangeMsgData
- 0x803C0AF8: mMsg_Unset_NowUtter
- 0x803C0B04: mMsg_Set_NowUtter
- 0x803C0B10: mMsg_Check_NowUtter
- 0x803C0B34: mMsg_init
- 0x803C0D4C: mMsg_Get_Length_String
- 0x803C0D80: mMsg_Check_MainNormalContinue
- 0x803C0DC0: mMsg_Check_MainNormal
- 0x803C0DD4: mMsg_Check_MainHide
- 0x803C0DE4: mMsg_Check_MainDisappear
- 0x803C0DF8: mMsg_Set_CancelNormalContinue
- 0x803C0E04: mMsg_Unset_CancelNormalContinue
- 0x803C0E10: mMsg_Set_ForceNext
- 0x803C0E1C: mMsg_Unset_ForceNext
- 0x803C0E28: mMsg_Set_LockContinue
- 0x803C0E34: mMsg_Unset_LockContinue
- 0x803C0E40: mMsg_Set_idling_req
- 0x803C0E50: mMsg_Check_idling_now
- 0x803C0E5C: mMsg_MoveDataCut
- 0x803C0F24: mMsg_CopyString
- 0x803C0F48: mMsg_Set_PlayerNameColor
- 0x803C102C: mMsg_CopyPlayerName
- 0x803C10DC: mMsg_CopyTalkName
- 0x803C11A0: mMsg_CopyTail
- 0x803C1270: mMsg_CopyYear
- 0x803C1300: mMsg_CopyMonth
- 0x803C1390: mMsg_CopyWeek
- 0x803C1420: mMsg_CopyDay
- 0x803C14B0: mMsg_CopyHour
- 0x803C1540: mMsg_CopyMin
- 0x803C15D0: mMsg_CopySec
- 0x803C1660: mMsg_CopyFree
- 0x803C17B4: mMsg_Set_PfColor
- 0x803C18BC: mMsg_CopyDetermination
- 0x803C193C: mMsg_CopyCountryName
- 0x803C1A34: mMsg_CopyIslandName
- 0x803C1AE4: mMsg_CopyAmPm
- 0x803C1B90: mMsg_CopyRamdomNumber2
- 0x803C1C48: mMsg_CopyItem
- 0x803C1D9C: mMsg_CopyMail
- 0x803C1E68: mMsg_sound_voice_get
- 0x803C1E90: mMsg_sound_voice_get_for_editor
- 0x803C1EE0: mMsg_sound_voice_get2
- 0x803C1F10: mMsg_check_sound_special
- 0x803C1F54: mMsg_check_sound_shasho
- 0x803C1F78: mMsg_check_sound_animal
- 0x803C1FF0: mMsg_sound_npc_id_get
- 0x803C2014: mMsg_sound_voice_entry
- 0x803C20F4: mMsg_sound_voice_endcode_set
- 0x803C215C: mMsg_sound_CodeVoice
- 0x803C223C: mMsg_sound_PAGE_OKURI
- 0x803C2260: mMsg_sound_ZOOMUP
- 0x803C2288: mMsg_sound_ZOOMDOWN_SHORT
- 0x803C22BC: mMsg_sound_ZOOMDOWN_LONG
- 0x803C22F0: mMsg_sound_MessageSpeedForce
- 0x803C2374: mMsg_sound_MessageSpeedClear
- 0x803C23D4: mMsg_sound_MessageStatus
- 0x803C23F4: mMsg_sound_bgm_make
- 0x803C2470: mMsg_sound_bgm_delete
- 0x803C24BC: mMsg_sound_sound_trg_sys
- 0x803C24FC: mMsg_sound_voice_mode_get
- 0x803C2570: mMsg_sound_voice_mode
- 0x803C2594: mMsg_sound_spec_change_voice_force
- 0x803C25FC: mMsg_sound_spec_change_voice
- 0x803C2644: mMsg_sound_spec_change_scene
- 0x803C265C: mMsg_sound_spec_change_true
- 0x803C26B0: mMsg_sound_spec_change_false
- 0x803C2704: mMsg_sound_set_voice_click
- 0x803C2714: mMsg_sound_set_voice_silent
- 0x803C2748: mMsg_sound_unset_voice_silent
- 0x803C277C: mMsg_Main_Hide
- 0x803C279C: mMsg_MainSetup_Hide
- 0x803C27C4: mMsg_Main_Appear_SetScale
- 0x803C285C: mMsg_request_main_index_fromAppear
- 0x803C28B0: mMsg_Main_Appear
- 0x803C2908: mMsg_MainSetup_Appear
- 0x803C2A7C: mMsg_Check_ScrollOrder
- 0x803C2AD0: mMsg_MsgTimeEnd_dec
- 0x803C2B04: mMsg_end_to_disappear
- 0x803C2B5C: mMsg_request_main_index_fromNormal
- 0x803C2D38: mMsg_Set_display_button_turn_color
- 0x803C2E08: mMsg_Main_Normal
- 0x803C2E70: mMsg_MainSetup_Normal
- 0x803C2EE0: mMsg_Check_CancelOrder
- 0x803C2F50: mMsg_Main_Cursol_Check_ControlCursol
- 0x803C2F6C: mMsg_Main_Cursol_Last_ControlCursol
- 0x803C2FA0: mMsg_Main_Cursol_Continue_ControlCursol
- 0x803C2FD4: mMsg_Main_Cursol_Clear_ControlCursol
- 0x803C3040: mMsg_Main_Cursol_CursolSetTime_ControlCursol
- 0x803C3110: mMsg_Main_Cursol_Button_ControlCursol
- 0x803C3190: mMsg_Main_Cursol_Color_ControlCursol
- 0x803C321C: mMsg_Main_Cursol_AbleCancel_ControlCursol
- 0x803C3270: mMsg_Main_Cursol_UnableCancel_ControlCursol
- 0x803C32C8: mMsg_Main_Cursol_SetDemoOrder_ControlCursol
- 0x803C333C: mMsg_Main_Cursol_SetDemoOrderPlayer_ControlCursol
- 0x803C3360: mMsg_Main_Cursol_SetDemoOrderNpc0_ControlCursol
- 0x803C3384: mMsg_Main_Cursol_SetDemoOrderNpc1_ControlCursol
- 0x803C33A8: mMsg_Main_Cursol_SetDemoOrderNpc2_ControlCursol
- 0x803C33CC: mMsg_Main_Cursol_SetDemoOrderQuest_ControlCursol
- 0x803C33F0: mMsg_Main_Cursol_SetSelectWindow_ControlCursol
- 0x803C3450: mMsg_Main_Cursol_SetNextMessage_ControlCursol
- 0x803C34F8: mMsg_Main_Cursol_SetNextMessageF_ControlCursol
- 0x803C351C: mMsg_Main_Cursol_SetNextMessage0_ControlCursol
- 0x803C3540: mMsg_Main_Cursol_SetNextMessage1_ControlCursol
- 0x803C3564: mMsg_Main_Cursol_SetNextMessage2_ControlCursol
- 0x803C3588: mMsg_Main_Cursol_SetNextMessage3_ControlCursol
- 0x803C35AC: mMsg_Main_Cursol_SetNextMessage4_ControlCursol
- 0x803C35D0: mMsg_Main_Cursol_SetNextMessage5_ControlCursol
- 0x803C35F4: mMsg_Main_Cursol_SetNextMessageRamdomCommon_ControlCursol
- 0x803C36CC: mMsg_Main_Cursol_SetNextMessageRamdom2_ControlCursol
- 0x803C36F0: mMsg_Main_Cursol_SetNextMessageRamdom3_ControlCursol
- 0x803C3714: mMsg_Main_Cursol_SetNextMessageRamdom4_ControlCursol
- 0x803C3738: mMsg_Main_Cursol_SetSelectString_ControlCursol
- 0x803C3944: mMsg_Main_Cursol_SetSelectString2_ControlCursol
- 0x803C3968: mMsg_Main_Cursol_SetSelectString3_ControlCursol
- 0x803C398C: mMsg_Main_Cursol_SetSelectString4_ControlCursol
- 0x803C39B0: mMsg_Main_Cursol_SetSelectString5_ControlCursol
- 0x803C39D4: mMsg_Main_Cursol_SetSelectString6_ControlCursol
- 0x803C39F8: mMsg_Main_Cursol_SetForceNext_ControlCursol
- 0x803C3A4C: mMsg_Main_Cursol_PutString_PlayerName_ControlCursol
- 0x803C3AC0: mMsg_Main_Cursol_PutString_TalkName_ControlCursol
- 0x803C3B20: mMsg_Main_Cursol_PutString_Tail_ControlCursol
- 0x803C3B80: mMsg_Main_Cursol_PutString_Year_ControlCursol
- 0x803C3BC8: mMsg_Main_Cursol_PutString_Month_ControlCursol
- 0x803C3C10: mMsg_Main_Cursol_PutString_Week_ControlCursol
- 0x803C3C58: mMsg_Main_Cursol_PutString_Day_ControlCursol
- 0x803C3CA0: mMsg_Main_Cursol_PutString_Hour_ControlCursol
- 0x803C3D1C: mMsg_Main_Cursol_PutString_Min_ControlCursol
- 0x803C3D64: mMsg_Main_Cursol_PutString_Sec_ControlCursol
- 0x803C3DAC: mMsg_Main_Cursol_PutString_Free
- 0x803C3E30: mMsg_Main_Cursol_PutString_Free_cl
- 0x803C3EC4: mMsg_Main_Cursol_PutString_Free0_ControlCursol
- 0x803C3EEC: mMsg_Main_Cursol_PutString_Free1_ControlCursol
- 0x803C3F14: mMsg_Main_Cursol_PutString_Free2_ControlCursol
- 0x803C3F3C: mMsg_Main_Cursol_PutString_Free3_ControlCursol
- 0x803C3F64: mMsg_Main_Cursol_PutString_Free4_ControlCursol
- 0x803C3F8C: mMsg_Main_Cursol_PutString_Free5_ControlCursol
- 0x803C3FB4: mMsg_Main_Cursol_PutString_Free6_ControlCursol
- 0x803C3FDC: mMsg_Main_Cursol_PutString_Free7_ControlCursol
- 0x803C4004: mMsg_Main_Cursol_PutString_Free8_ControlCursol
- 0x803C402C: mMsg_Main_Cursol_PutString_Free9_ControlCursol
- 0x803C4054: mMsg_Main_Cursol_PutString_Free10_ControlCursol
- 0x803C407C: mMsg_Main_Cursol_PutString_Free11_ControlCursol
- 0x803C40A4: mMsg_Main_Cursol_PutString_Free12_ControlCursol
- 0x803C40CC: mMsg_Main_Cursol_PutString_Free13_ControlCursol
- 0x803C40F4: mMsg_Main_Cursol_PutString_Free14_ControlCursol
- 0x803C411C: mMsg_Main_Cursol_PutString_Free15_ControlCursol
- 0x803C4144: mMsg_Main_Cursol_PutString_Free16_ControlCursol
- 0x803C416C: mMsg_Main_Cursol_PutString_Free17_ControlCursol
- 0x803C4194: mMsg_Main_Cursol_PutString_Free18_ControlCursol
- 0x803C41BC: mMsg_Main_Cursol_PutString_Free19_ControlCursol
- 0x803C41E4: mMsg_Main_Cursol_PutString_Determination_ControlCursol
- 0x803C422C: mMsg_Main_Cursol_PutString_CountryName_ControlCursol
- 0x803C4284: mMsg_Main_Cursol_PutString_RamdomNumber2_ControlCursol
- 0x803C42CC: mMsg_Main_Cursol_PutString_Item
- 0x803C4350: mMsg_Main_Cursol_PutString_Item0_ControlCursol
- 0x803C4378: mMsg_Main_Cursol_PutString_Item1_ControlCursol
- 0x803C43A0: mMsg_Main_Cursol_PutString_Item2_ControlCursol
- 0x803C43C8: mMsg_Main_Cursol_PutString_Item3_ControlCursol
- 0x803C43F0: mMsg_Main_Cursol_PutString_Item4_ControlCursol
- 0x803C4418: mMsg_Main_Cursol_PutString_Mail
- 0x803C4474: mMsg_Main_Cursol_PutString_Mail0_ControlCursol
- 0x803C449C: mMsg_Main_Cursol_SetPlayerDestiny_ControlCursol
- 0x803C44F0: mMsg_Main_Cursol_SetPlayerDestiny0_ControlCursol
- 0x803C4514: mMsg_Main_Cursol_SetPlayerDestiny1_ControlCursol
- 0x803C4538: mMsg_Main_Cursol_SetPlayerDestiny2_ControlCursol
- 0x803C455C: mMsg_Main_Cursol_SetPlayerDestiny3_ControlCursol
- 0x803C4580: mMsg_Main_Cursol_SetPlayerDestiny4_ControlCursol
- 0x803C45A4: mMsg_Main_Cursol_SetPlayerDestiny5_ControlCursol
- 0x803C45C8: mMsg_Main_Cursol_SetPlayerDestiny6_ControlCursol
- 0x803C45EC: mMsg_Main_Cursol_SetPlayerDestiny7_ControlCursol
- 0x803C4610: mMsg_Main_Cursol_SetPlayerDestiny8_ControlCursol
- 0x803C4634: mMsg_Main_Cursol_SetPlayerDestiny9_ControlCursol
- 0x803C4658: mMsg_Main_Cursol_SetMessageContents_ControlCursol
- 0x803C46AC: mMsg_Main_Cursol_SetMessageContentsNormal_ControlCursol
- 0x803C46D0: mMsg_Main_Cursol_SetMessageContentsAngry_ControlCursol
- 0x803C46F4: mMsg_Main_Cursol_SetMessageContentsSad_ControlCursol
- 0x803C4718: mMsg_Main_Cursol_SetMessageContentsFun_ControlCursol
- 0x803C473C: mMsg_Main_Cursol_SetMessageContentsSleepy_ControlCursol
- 0x803C4760: mMsg_Main_Cursol_SetColorChar_ControlCursol
- 0x803C47A0: mMsg_Main_Cursol_SoundCut_ControlCursol
- 0x803C4824: mMsg_Main_Cursol_SetLineOffset_ControlCursol
- 0x803C4864: mMsg_Main_Cursol_SetLineType_ControlCursol
- 0x803C48A4: mMsg_Main_Cursol_SetCharScale_ControlCursol
- 0x803C48E4: mMsg_Main_Cursol_Button2_ControlCursol
- 0x803C4970: mMsg_Main_Cursol_BgmMake_ControlCursol
- 0x803C49E4: mMsg_Main_Cursol_BgmDelete_ControlCursol
- 0x803C4A58: mMsg_Main_Cursol_MsgTimeEnd_ControlCursol
- 0x803C4AD4: mMsg_Main_Cursol_SoundTrgSys_ControlCursol
- 0x803C4B40: mMsg_Main_Cursol_SetLineScale_ControlCursol
- 0x803C4B80: mMsg_Main_Cursol_SoundNoPage_ControlCursol
- 0x803C4BD8: mMsg_Main_Cursol_VoiceTrue_ControlCursol
- 0x803C4C2C: mMsg_Main_Cursol_VoiceFalse_ControlCursol
- 0x803C4C80: mMsg_Main_Cursol_SelectNoB_ControlCursol
- 0x803C4CC8: mMsg_Main_Cursol_GiveOpen_ControlCursol
- 0x803C4D3C: mMsg_Main_Cursol_GiveClose_ControlCursol
- 0x803C4DB0: mMsg_Main_Cursol_SetMessageContentsGloomy_ControlCursol
- 0x803C4DD4: mMsg_Main_Cursol_SelectNoBClose_ControlCursol
- 0x803C4E1C: mMsg_Main_Cursol_SetNextMessageRamdomSection_ControlCursol
- 0x803C4EB4: mMsg_Main_Cursol_AgbDummy_ControlCursol
- 0x803C4EF4: mMsg_Main_Cursol_Space_ControlCursol
- 0x803C4F34: mMsg_Main_Cursol_MaleFemaleCheck_ControlCursol
- 0x803C4FDC: mMsg_Main_Cursol_PutString_IslandName_ControlCursol
- 0x803C502C: mMsg_Main_Cursol_SetCursolJust_ControlCursol
- 0x803C5080: mMsg_Main_Cursol_ClrCursolJust_ControlCursol
- 0x803C50D4: mMsg_Main_Cursol_CutArticle_ControlCursol
- 0x803C512C: mMsg_Main_Cursol_CapitalLetter_ControlCursol
- 0x803C5184: mMsg_Main_Cursol_PutString_AmPm_ControlCursol
- 0x803C51CC: mMsg_Main_Cursol_Proc_ControlCursol
- 0x803C5248: mMsg_Main_Cursol_ControlCursol
- 0x803C5578: mMsg_request_main_index_fromCursol
- 0x803C55A8: mMsg_Main_Cursol
- 0x803C5614: mMsg_MainSetup_Cursol
- 0x803C5684: mMsg_Main_Disappear_SetScale
- 0x803C571C: mMsg_request_main_index_fromDisappear
- 0x803C574C: mMsg_Main_Disappear
- 0x803C57A0: mMsg_MainSetup_Disappear
- 0x803C5840: mMsg_request_main_index_fromAppear_wait
- 0x803C588C: mMsg_Main_Appear_wait
- 0x803C5914: mMsg_MainSetup_Appear_wait
- 0x803C5998: mMsg_Main_Wait
- 0x803C59B8: mMsg_MainSetup_Wait
- 0x803C5A04: mMsg_request_main_index_fromDisappear_wait
- 0x803C5A34: mMsg_Main_Disappear_wait
- 0x803C5A88: mMsg_MainSetup_Disappear_wait
- 0x803C5AFC: mMsg_SetMatrix
- 0x803C5C18: mMsg_UnSetMatrix
- 0x803C5C38: mMsg_DrawNameWindow
- 0x803C5CFC: mMsg_DrawWindowClientName
- 0x803C5D88: mMsg_DrawWindowTurnButton
- 0x803C5E00: mMsg_DrawWindowBody
- 0x803C5F98: mMsg_draw_font
- 0x803C6228: mMsm_ClearRecord
- 0x803C624C: mMsm_GetMuseumMailName
- 0x803C6290: mMsm_OrderInformationMail
- 0x803C630C: mMsm_SendInformationMail
- 0x803C63CC: mMsm_GetFossil
- 0x803C6428: mMsm_GetFossilMailNo
- 0x803C6470: mMsm_GetRemailAddIdx
- 0x803C6494: mMsm_Idx2RemailKind
- 0x803C6508: mMsm_GetRemailFreeIdx
- 0x803C6578: mMsm_Idx2SetRemailInfo
- 0x803C6624: mMsm_Idx2ClearRemailInfo
- 0x803C664C: mMsm_PushRemailInfo
- 0x803C6704: mMsm_SetRemailInfo
- 0x803C67C8: mMsm_SendResultMail
- 0x803C6AB4: mMsm_SendMuseumMail
- 0x803C6BC8: mMsm_GetDepositAbleNum
- 0x803C6C4C: mMsm_GetDepositAbleNum_cancel
- 0x803C6CFC: mMsm_DepositItemBlock_cancel
- 0x803C6E08: mMsm_DepositItemBlock
- 0x803C6F28: mMsm_DepositFossilBlock
- 0x803C6F64: mMsm_DepositFossilBlockLine
- 0x803C7100: mMsm_RecordDepositFossil
- 0x803C7130: mMsm_GetDepositBlockNum
- 0x803C7170: mMsm_DepositFossil
- 0x803C729C: mMsm_SetPrivateCompMail
- 0x803C72B4: mMsm_CheckSendCompMail
- 0x803C732C: mMsm_SetSendCompMail
- 0x803C7394: mMsm_SetCompMail
- 0x803C73F0: mMsm_SendCompMail
- 0x803C74C0: mMmd_FossilInfo
- 0x803C7510: mMmd_ArtInfo
- 0x803C7560: mMmd_InsectInfo
- 0x803C75B0: mMmd_FishInfo
- 0x803C7600: mMmd_SetFossil
- 0x803C7688: mMmd_SetArt
- 0x803C7710: mMmd_SetInsect
- 0x803C7798: mMmd_SetFish
- 0x803C7820: mMmd_GetDisplayInfo
- 0x803C7A10: mMmd_RequestMuseumDisplay
- 0x803C7C10: mMmd_MuseumFossilProcess_MakeFgData
- 0x803C7CE4: mMmd_dummy_process
- 0x803C7CE8: mMmd_MakeMuseumDisplayData
- 0x803C7D54: mMmd_DeletePresentedByPlayer
- 0x803C7F10: mMmd_CountDisplayedFossil
- 0x803C7F70: mMmd_CountDisplayedArt
- 0x803C7FD0: mMmd_CountDisplayedInsect
- 0x803C8030: mMmd_CountDisplayedFish
- 0x803C8090: mMsr_Mushtime2Rtc
- 0x803C8114: mMsr_Rtc2MushTime
- 0x803C8170: mMsr_CheckMushroomDay
- 0x803C81A4: mMsr_Set15Minites
- 0x803C8200: mMsr_GetFirstClearMushroomNum
- 0x803C829C: mMsr_GetBlockClearAbleMushroomNum
- 0x803C8354: mMsr_SetShareNum
- 0x803C84D0: mMsr_ClearBlockCandidateMushroom
- 0x803C854C: mMsr_ClearCandidateMushroom
- 0x803C85B8: mMsr_ClearMushrooms
- 0x803C87A4: mMsr_FirstClearMushroom
- 0x803C8870: mMsr_GetMushroomNum
- 0x803C8908: mMsr_CheckAroundTree
- 0x803C89D8: mMsr_GetBlockSetAbleMushroomTreeNum
- 0x803C8A68: mMsr_SetMushroomAroundTree
- 0x803C8B54: mMsr_SetBlockMashroom
- 0x803C8C24: mMsr_SetLineMushroom
- 0x803C8CFC: mMsr_SetMushroomNum
- 0x803C8F0C: mMsr_SetMushroom
- 0x803C90A8: mNT_get_itemTableNo
- 0x803C9150: mNT_FishIdx2FishItemNo
- 0x803C9174: bg_item_fg_sub
- 0x803C9444: bg_item_fg_sub_tree_grow
- 0x803C955C: bg_item_fg_sub_dig2take_conv
- 0x803C9664: obj_hight_table_item0_nogrow
- 0x803C96D0: FGTreeType_check
- 0x803C97B0: mNT_ItIsStump
- 0x803C9810: mNT_ItIsStoneCoin10
- 0x803C9838: mNT_ItIsReserveDummy
- 0x803C9858: mNT_check_unknown
- 0x803C98EC: mNW_InitMyOriginalPallet
- 0x803C9938: mNW_InitMyOriginalName
- 0x803C99A4: mNW_InitMyOriginalTexture
- 0x803C9A20: mNW_InitMyOriginal
- 0x803C9A5C: mNW_InitOneMyOriginal
- 0x803C9ADC: mNW_CopyNeedleworkDefaultTexture
- 0x803C9B2C: mNW_InitNeedleworkTexture
- 0x803C9B8C: mNW_InitNeedleworkPelatteNo
- 0x803C9BD0: mNW_InitNeedleworkTextureName
- 0x803C9C34: mNW_InitNeedleworkData
- 0x803C9C5C: mNW_AGB_to_GC_texture
- 0x803C9C84: mNW_GC_to_Agb_texture
- 0x803C9CA4: mNW_PaletteIdx2Palette
- 0x803C9CB8: mNW_CopyOriginalTextureClass
- 0x803C9CFC: mNW_CopyOriginalTexture
- 0x803C9D44: mNW_CopyOriginalPalette
- 0x803C9D90: mNW_OverWriteOriginalTexture
- 0x803C9DDC: mNW_OverWriteOriginalName
- 0x803C9E14: mNW_SwapOriginalData
- 0x803C9E98: mNW_InitOriginalData
- 0x803C9EFC: mNW_InitPrivateOriginalData
- 0x803C9F7C: mNtc_copy_data_list
- 0x803C9FB0: mNtc_operate_data_list
- 0x803CA070: mNtc_sort_data_list
- 0x803CA104: mNtc_make_auto_nwrite_data_list
- 0x803CA12C: mNtc_get_auto_nwrite_data_last_idx
- 0x803CA170: mNtc_ClearPage
- 0x803CA1E0: mNtc_SetInitData
- 0x803CA2A4: mNtc_notice_write_num
- 0x803CA318: mNtc_notice_write
- 0x803CA3C0: mNtc_set_landname_string
- 0x803CA410: mNtc_set_treasure_string
- 0x803CA4DC: mNtc_check_treasure
- 0x803CA83C: mNtc_set_near_old_nwrite_data
- 0x803CA8E4: mNtc_make_auto_nwrite_day_string
- 0x803CA974: mNtc_set_auto_nwrite_common_string
- 0x803CA9D0: mNtc_set_auto_nwrite_fishing_string
- 0x803CAAC8: mNtc_set_auto_nwrite_string
- 0x803CAB4C: mNtc_auto_nwrite_time_ct
- 0x803CABEC: mNtc_get_fishing_day
- 0x803CAD6C: mNtc_set_fishing_term
- 0x803CAE4C: mNtc_decide_nwrite_data
- 0x803CAFE8: mNtc_set_auto_nwrite
- 0x803CB17C: mNtc_set_auto_nwrite_data
- 0x803CB340: mNpc_MakeRandTable
- 0x803CB418: mNpc_ClearBufSpace1
- 0x803CB43C: mNpc_AddNowNpcMax
- 0x803CB454: mNpc_SubNowNpcMax
- 0x803CB46C: mNpc_ClearAnimalPersonalID
- 0x803CB4C4: mNpc_CheckFreeAnimalPersonalID
- 0x803CB4F8: mNpc_CopyAnimalPersonalID
- 0x803CB558: mNpc_CheckCmpAnimalPersonalID
- 0x803CB5DC: mNpc_GetAnimalNum
- 0x803CB648: mNpc_CheckRemoveExp
- 0x803CB654: mNpc_GetRemoveTime
- 0x803CB660: mNpc_SetParentName
- 0x803CB6C4: mNpc_SetParentNameAllAnimal
- 0x803CB730: mNpc_ClearAnimalMail
- 0x803CB79C: mNpc_ClearAnimalMemory
- 0x803CB858: mNpc_ClearIslandAnimalMemory
- 0x803CB914: mNpc_AddFriendship
- 0x803CB958: mNpc_CheckFreeAnimalMemory
- 0x803CB994: mNpc_RenewalAnimalMemory
- 0x803CBA74: mNpc_GetFreeAnimalMemoryIdx
- 0x803CBAE0: mNpc_GetOldPlayerAnimalMemoryIdx
- 0x803CBBB0: mNpc_ForceGetFreeAnimalMemoryIdx
- 0x803CBD30: mNpc_ResetAnimalRelation
- 0x803CBD94: mNpc_SetAnimalMemory_NotSetDay
- 0x803CBE0C: mNpc_SetAnimalMemory
- 0x803CBE60: mNpc_GetAnimalMemoryIdx
- 0x803CBED4: mNpc_SetAnimalLastTalk
- 0x803CBFE4: mNpc_SetAnimalPersonalID2Memory
- 0x803CC094: mNpc_GetHighestFriendshipIdx
- 0x803CC118: mNpc_SelectBestFriend
- 0x803CC1E0: mNpc_GetAnimalMemoryBestFriend
- 0x803CC294: mNpc_GetAnimalMemoryFriend_Land_Sex
- 0x803CC354: mNpc_GetAnimalMemoryNum
- 0x803CC3BC: mNpc_GetAnimalMemoryLetterNum
- 0x803CC434: mNpc_GetAnimalMemoryLandKindNum
- 0x803CC524: mNpc_ClearAnimalInfo
- 0x803CC5C0: mNpc_ClearIslandAnimalInfo
- 0x803CC650: mNpc_ClearAnyAnimalInfo
- 0x803CC6A4: mNpc_CheckFreeAnimalInfo
- 0x803CC6DC: mNpc_GetFreeAnimalInfo
- 0x803CC748: mNpc_UseFreeAnimalInfo
- 0x803CC7A0: mNpc_CopyAnimalInfo
- 0x803CC7C4: mNpc_SearchAnimalinfo
- 0x803CC808: mNpc_GetAnimalInfoP
- 0x803CC870: mNpc_SearchAnimalPersonalID
- 0x803CC8F8: mNpc_GetOtherAnimalPersonalIDOtherBlock
- 0x803CCB84: mNpc_GetOtherAnimalPersonalID
- 0x803CCBB0: mNpc_SetAnimalThisLand
- 0x803CCC2C: mNpc_GetSameLooksNum
- 0x803CCC70: mNpc_CheckNpcExistBlock
- 0x803CCD1C: mNpc_Mail2AnimalMail
- 0x803CCDA0: mNpc_AnimalMail2Mail
- 0x803CCE5C: mNpc_CheckMailChar
- 0x803CCEBC: mNpc_CheckNormalMail_sub
- 0x803CCFB0: mNpc_CheckNormalMail_length
- 0x803CD054: mNpc_CheckNormalMail_nes
- 0x803CD0A0: mNpc_CheckNormalMail
- 0x803CD0C0: mNpc_SetMailCondThisLand
- 0x803CD140: mNpc_SetMailCondOtherLand
- 0x803CD1EC: mNpc_SetRemailCond
- 0x803CD24C: mNpc_SetPresentCloth
- 0x803CD35C: mNpc_SendMailtoNpc
- 0x803CD538: mNpc_ClearRemail
- 0x803CD59C: mNpc_GetRemailPresent
- 0x803CD614: mNpc_GetHandbillz
- 0x803CD6D8: mNpc_SetRemailFreeString
- 0x803CD838: mNpc_GetRemailGoodData
- 0x803CD99C: mNpc_GetRemailWrongData
- 0x803CDA8C: mNpc_GetRemailData
- 0x803CDB80: mNpc_SendRemailPostOffice
- 0x803CDC14: mNpc_CheckLetterTime
- 0x803CDC5C: mNpc_Remail
- 0x803CDD98: mNpc_GetPaperType
- 0x803CDDF8: mNpc_LoadMailDataCommon2
- 0x803CDEBC: mNpc_GetEventPresent
- 0x803CDF10: mNpc_GetEventMail
- 0x803CDFB4: mNpc_SendEventPresentMail
- 0x803CE0C0: mNpc_SendEventPresentMailSex
- 0x803CE178: mNpc_SendVtdayMail
- 0x803CE2E8: mNpc_GetBirthdayPresent
- 0x803CE370: mNpc_GetBirthdayCard
- 0x803CE44C: mNpc_SendBirthdayCard
- 0x803CE550: mNpc_CheckFriendship
- 0x803CE5F4: mNpc_SendEventBirthdayCard2
- 0x803CE6D0: mNpc_GetXmasCardData
- 0x803CE758: mNpc_SendEventXmasCard
- 0x803CE824: mNpc_GetPresentClothMemoryIdx
- 0x803CE868: mNpc_GetPresentClothMemoryIdx_rnd
- 0x803CE96C: mNpc_CheckTalkPresentCloth
- 0x803CE9B4: mNpc_ChangePresentCloth
- 0x803CEA94: mNpc_GetWordEnding
- 0x803CEAEC: mNpc_ResetWordEnding
- 0x803CEB50: mNpc_GetFreeEventNpcIdx
- 0x803CEB8C: mNpc_RegistEventNpc
- 0x803CEC4C: mNpc_UnRegistEventNpc
- 0x803CEC9C: mNpc_ClearEventNpc
- 0x803CECD0: mNpc_GetSameEventNpc
- 0x803CED08: mNpc_GetFreeMaskNpcIdx
- 0x803CED44: mNpc_RegistMaskNpc
- 0x803CEE88: mNpc_UnRegistMaskNpc
- 0x803CEED8: mNpc_ClearMaskNpc
- 0x803CEF0C: mNpc_GetSameMaskNpc
- 0x803CEF44: mNpc_GetLooks
- 0x803CEF6C: mNpc_SetDefAnimalInfo
- 0x803CEFF4: mNpc_SetDefAnimalCloth
- 0x803CF034: mNpc_SetDefAnimalUmbrella
- 0x803CF070: mNpc_SetDefAnimal
- 0x803CF0B8: mNpc_SetHaveAppeared
- 0x803CF108: mNpc_GetHaveAppeared_idx
- 0x803CF144: mNpc_GetDefGrowPermission
- 0x803CF160: mNpc_GetLooks2NotHaveAppearedNum
- 0x803CF210: mNpc_ResetHaveAppeared_common
- 0x803CF274: mNpc_ResetHaveAppeared
- 0x803CF30C: mNpc_DecideLivingNpcMax
- 0x803CF458: mNpc_SetAnimalTitleDemo
- 0x803CF4E8: mNpc_MakeReservedListBeforeFieldct
- 0x803CF610: mNpc_MakeReservedListAfterFieldct
- 0x803CF748: mNpc_BuildHouseBeforeFieldct
- 0x803CF878: mNpc_DestroyHouse
- 0x803CF958: mNpc_SetNpcHome
- 0x803CFAB8: mNpc_InitNpcData
- 0x803CFB10: mNpc_InitNpcList
- 0x803CFBA0: mNpc_SetNpcList
- 0x803CFD10: mNpc_SetNpcinfo
- 0x803CFE54: mNpc_AddNpc_inNpcRoom
- 0x803CFF14: mNpc_AddNpc_inNpcRoomIsland
- 0x803CFF74: mNpc_AddNpc_inKamakura
- 0x803D002C: mNpc_AddNpc_inBlock
- 0x803D011C: mNpc_RenewalNpcRoom
- 0x803D0230: mNpc_RenewalSetNpc
- 0x803D03BC: mNpc_GetFriendAnimalNum
- 0x803D0448: mNpc_CheckFriendAllAnimal
- 0x803D048C: mNpc_CheckSelectFurniture
- 0x803D0528: mNpc_DecideNpcFurniture
- 0x803D0678: mNpc_SetNpcFurnitureRandom
- 0x803D0700: mNpc_GetNpcFurniture
- 0x803D0750: mNpc_ClearInAnimal
- 0x803D0778: mNpc_GetInAnimalP
- 0x803D0784: mNpc_RenewRemoveHistory
- 0x803D07BC: mNpc_DecideRemoveAnimalNo_Friend
- 0x803D0978: mNpc_DecideRemoveAnimalNo
- 0x803D0A4C: mNpc_SetRemoveAnimalNo
- 0x803D0AF0: mNpc_CheckGoodbyAnimalMemoryNum
- 0x803D0BEC: mNpc_GetGoodbyAnimalIdx
- 0x803D0E7C: mNpc_ClearGoodbyMail
- 0x803D0EB0: mNpc_FirstClearGoodbyMail
- 0x803D0ED8: mNpc_SetGoodbyAnimalMail
- 0x803D0F78: mNpc_SetGoodbyMailData
- 0x803D104C: mNpc_SendGoodbyAnimalMailOne
- 0x803D1150: mNpc_SendGoodbyAnimalMail
- 0x803D1214: mNpc_SendRegisteredGoodbyMail
- 0x803D123C: mNpc_GetRemoveAnimal
- 0x803D14A4: mNpc_CheckBuildHouse
- 0x803D152C: mNpc_SetReturnAnimal
- 0x803D17A4: mNpc_AddActor_inBlock
- 0x803D17C4: mNpc_SetNpcNameID
- 0x803D17F8: mNpc_LoadNpcNameString
- 0x803D18A0: mNpc_GetNpcWorldNamePTableNo
- 0x803D18F4: mNpc_GetNpcWorldNameTableNo
- 0x803D1940: mNpc_ClearCacheName
- 0x803D1984: mNpc_GetCacheName
- 0x803D19E0: mNpc_SetCacheName
- 0x803D1A38: mNpc_GetNpcWorldNameAnm
- 0x803D1ADC: mNpc_GetActorWorldNameP
- 0x803D1BE0: mNpc_GetActorWorldName
- 0x803D1C2C: mNpc_GetNpcWorldNameP
- 0x803D1C78: mNpc_GetNpcWorldName
- 0x803D1DAC: mNpc_GetRandomAnimalName
- 0x803D1EB8: mNpc_GetAnimalPlateName
- 0x803D1FE8: mNpc_GetNpcLooks
- 0x803D2018: mNpc_GetActorSex
- 0x803D2050: mNpc_GetLooks2Sex
- 0x803D208C: mNpc_GetAnimalSex
- 0x803D20C4: mNpc_GetNpcSex
- 0x803D2108: mNpc_GetNpcSoundSpecNotAnimal
- 0x803D2140: mNpc_GetNpcSoundSpec
- 0x803D21C4: mNpc_InitRemoveHistory
- 0x803D21EC: mNpc_InitNpcAllInfo
- 0x803D227C: mNpc_CheckGrowFieldRank
- 0x803D22FC: mNpc_CheckGrow
- 0x803D23F0: mNpc_GetMinLooks
- 0x803D254C: mNpc_GetMinSex
- 0x803D25F0: mNpc_GrowLooksNpcIdx
- 0x803D27E8: mNpc_SetAnimalInfoNpcIdx
- 0x803D283C: mNpc_SetGrowNpc
- 0x803D28D4: mNpc_Grow
- 0x803D2AA4: mNpc_ForceRemove
- 0x803D2BE4: mNpc_DecideMaskNpc_summercamp
- 0x803D2CA0: mNpc_RegistMaskNpc_summercamp
- 0x803D2DD4: mNpc_CheckNpcSet_fgcol
- 0x803D2E24: mNpc_CheckNpcSet_fgcol_hard
- 0x803D2E8C: mNpc_CheckNpcSet
- 0x803D2F1C: mNpc_GetMakeUtNuminBlock_hard_area
- 0x803D309C: mNpc_GetMakeUtNuminBlock_area
- 0x803D327C: mNpc_GetMakeUtNuminBlock
- 0x803D32A0: mNpc_CheckNpcSet_height
- 0x803D3348: mNpc_GetMakeUtNuminBlock33
- 0x803D3460: mNpc_GetMakeUtNuminBlock_hide_hard_area
- 0x803D3624: mNpc_ClearTalkInfo
- 0x803D3674: mNpc_TimerCountDown
- 0x803D368C: mNpc_SetUnlockTimer
- 0x803D36AC: mNpc_CountTalkNum
- 0x803D3710: mNpc_CheckOverImpatient
- 0x803D3760: mNpc_GetOverImpatient
- 0x803D37C4: mNpc_CheckQuestRequest
- 0x803D3800: mNpc_SetQuestRequestOFF
- 0x803D3868: mNpc_UnlockTimerCountDown
- 0x803D3898: mNpc_TalkInfoMove
- 0x803D3954: mNpc_TalkEndMove
- 0x803D39EC: mNpc_GetNpcFloorNo
- 0x803D3A64: mNpc_GetNpcWallNo
- 0x803D3ADC: mNpc_SetTalkBee
- 0x803D3BA0: mNpc_GetFishCompleteTalk
- 0x803D3BBC: mNpc_GetInsectCompleteTalk
- 0x803D3BD8: mNpc_SetFishCompleteTalk
- 0x803D3BF4: mNpc_SetInsectCompleteTalk
- 0x803D3C10: mNpc_SetNpcHomeYpos
- 0x803D3CAC: mNpc_SetIslandAnimalHouse
- 0x803D3D7C: mNpc_DecideIslandNpc
- 0x803D3E94: mNpc_ClearIslandItemList
- 0x803D3EB8: mNpc_GetFreeIslandItemListIdx
- 0x803D3EF4: mNpc_SetIslandItemList
- 0x803D3F48: mNpc_SetIslandRoomFtr
- 0x803D3FE0: mNpc_GetIslandFtrIdx
- 0x803D4198: mNpc_SetIslandGetFtr
- 0x803D43E0: mNpc_SetIslandGetFtrtoRoom
- 0x803D4484: mNpc_SetIslandGetLetter
- 0x803D4490: mNpc_GetIslandGetLetter
- 0x803D44A0: mNpc_SetIslandCheckFtrMsg
- 0x803D44AC: mNpc_GetIslandCheckFtrMsg
- 0x803D44BC: mNpc_ClearIslandNpcRoomData
- 0x803D44E8: mNpc_IslandNpcRoomDataSet
- 0x803D45CC: mNpc_GetIslandRoomInfoP
- 0x803D461C: mNpc_GetIslandRoomP
- 0x803D4658: mNpc_GetIslandWallFloorIdx
- 0x803D46C8: mNpc_getNormalFtr
- 0x803D4724: mNpc_CheckIslandNpcRoomFtrIdx
- 0x803D47D0: mNpc_CheckIslandNpcRoomFtrItemNo_keep
- 0x803D49D4: mNpc_ChangeIslandRoom
- 0x803D4AB8: mNpc_CheckFtrIsIslandBestFtr
- 0x803D4B50: mNpc_CheckFtrIsIslandNormalFtr
- 0x803D4BA0: mNpc_SetIslandFtr
- 0x803D4E44: mNpc_EraseIslandFtr
- 0x803D506C: mNpc_EraseIslandFtr_keep
- 0x803D5280: mNpc_ClearIslandPresentFtrInfo_common
- 0x803D52B4: mNpc_ClearIslandPresentFtrInfo
- 0x803D52DC: mNpc_SetIslandPresentFtr
- 0x803D54B0: mNpc_RestoreIslandPresentFtr
- 0x803D5520: mNpc_GetIslandRoomFtrNum
- 0x803D5578: mNpc_CheckIslandPresentFtrIs
- 0x803D55C8: mNpc_GetIslandPresentFtr
- 0x803D55D8: mNpc_GetIslandPresentFtrPersonalID
- 0x803D561C: mNpc_GetRandomBestFtr
- 0x803D57EC: mNpc_GetOtherBestFtr
- 0x803D59D8: mNpc_GetPlayerBestFtr
- 0x803D5BA0: mNpc_GetPlayerFtr
- 0x803D5D50: mNpc_CheckIslandAnimalTableNo
- 0x803D5D90: mNpc_CheckIslandAnimalID
- 0x803D5DE4: mNpc_CheckIslandAnimal
- 0x803D5E18: mNpc_GetMDIdx
- 0x803D5E6C: mNpc_GetIslandMDIdx
- 0x803D5E9C: mNpc_ClearHPMail
- 0x803D5EC0: mNpc_AllClearHPMailPlayerIdx
- 0x803D5F34: mNpc_ReceiveHPMail
- 0x803D602C: mNpc_SendHPMailNum_famicom
- 0x803D61E8: mNpc_SendHPMailNum_popular
- 0x803D64C4: mNpc_CheckHit_Rate
- 0x803D6510: mNpc_GetHit
- 0x803D6590: mNPC_get_gobi_str_from_name
- 0x803D65F4: mNpc_GetHit_cardE
- 0x803D6674: mNpc_SendHPMailNum_cardE
- 0x803D6A98: mNpc_SendHPMailNum_NG
- 0x803D6B74: mNpc_SendHPMailNum_cardE_mini_user_password_common
- 0x803D6C40: mNpc_SendHPMailNum_user_password
- 0x803D6CC4: mNpc_SendHPMailNum_cardE_mini
- 0x803D6D24: mNpc_SendHPMailNum_magazine
- 0x803D6F00: mNpc_SendHPMail_analysis
- 0x803D6F80: mNpc_SendHPMail
- 0x803D7090: mNpc_PrintRemoveInfo
- 0x803D71AC: mNpc_PrintFriendship_fdebug_1
- 0x803D73A0: mNpc_SetTalkAnimalIdx_fdebug
- 0x803D73D0: mNpc_PrintFriendship_fdebug_0
- 0x803D7534: mNpc_PrintFriendship_fdebug
- 0x803D7570: mNPS_get_schedule_area
- 0x803D75AC: mNPS_set_schedule_area
- 0x803D7608: mNPS_set_island_schedule_area
- 0x803D7648: mNPS_reset_schedule_area
- 0x803D7678: mNPS_schedule_manager_sub
- 0x803D76EC: mNPS_schedule_manager_sub0
- 0x803D7724: mNPS_schedule_manager_sub1
- 0x803D7788: mNPS_island_schedule_manager
- 0x803D77C0: mNPS_schedule_manager
- 0x803D7824: mNPS_set_all_schedule_area
- 0x803D7890: mNpcW_GetGoalDataInfo
- 0x803D78EC: mNpcW_ClearNpcWalkAppear
- 0x803D7900: mNpcW_ClearNpcWalkInfo
- 0x803D7984: mNpcW_ClearNpcWalk
- 0x803D79C0: mNpcW_CheckFreeNpcWalkInfo
- 0x803D79F4: mNpcW_GetFreeNpcWalkInfoIdx
- 0x803D7A60: mNpcW_GetNpcWalkInfoIdx
- 0x803D7AE8: mNpcW_DecideNpc
- 0x803D7C20: mNpcW_SetNpcWalkInfo
- 0x803D7CE8: mNpcW_ChangeNpcWalk
- 0x803D7E18: mNpcW_GetAloneBlock
- 0x803D7F9C: mNpcW_GetBlockXZNumExceptHome
- 0x803D8190: mNpcW_CheckDiffBlockWalkNpcHome
- 0x803D81FC: mNpcW_SetHomeBlockSource
- 0x803D83A4: mNpcW_InitGoalBlockSource
- 0x803D8424: mNpcW_SetGoalBlock
- 0x803D853C: mNpcW_InitNpcWalk
- 0x803D861C: mNpcW_GetAppearStatusWay
- 0x803D86B4: mNpcW_GetArriveStayCountP
- 0x803D86E0: mNpcW_GetWalkInfoStatusGoalAnimalIdx
- 0x803D878C: mNpcW_GetNearGate
- 0x803D88E8: radianxy_by_2pos
- 0x803D8984: sanglexy_by_2pos
- 0x803D8A34: Pause_ct
- 0x803D8A44: Pause_proc
- 0x803D8AEC: initfunc
- 0x803D8B84: Player_actor_ct_call
- 0x803D8BE4: Player_actor_dt_call
- 0x803D8C3C: Player_actor_move_call
- 0x803D8C94: Player_actor_draw_call
- 0x803D8CEC: mPlib_Get_Pointer_Animation
- 0x803D8D1C: mPlib_Get_BasicPlayerAnimeIndex_fromItemKind
- 0x803D8D44: mPlib_Get_BasicPartTableIndex_fromAnimeIndex
- 0x803D8D70: mPlib_Get_Item_DataPointer
- 0x803D8D9C: mPlib_Get_BasicItemShapeIndex_fromItemKind
- 0x803D8DC8: mPlib_Get_BasicItemAnimeIndex_fromItemKind
- 0x803D8DF4: mPlib_Get_Item_DataPointerType
- 0x803D8E1C: mPlib_Get_UseFaceRom_index
- 0x803D8E6C: mPlib_Get_UseFaceTexRom_p_common
- 0x803D8EAC: mPlib_Get_UseFaceTexRom_p
- 0x803D8F00: mPlib_Get_UseFacePalletRom_p
- 0x803D8FB4: mPlib_Object_Exchange_keep_new_PlayerMdl
- 0x803D8FFC: mPlib_Object_Exchange_keep_new
- 0x803D90D0: Change_Player_bank_ID_Index
- 0x803D90E8: Change_Player_face_bank_ID_Index
- 0x803D9100: mPlib_Get_PlayerTexRom_p
- 0x803D917C: mPlib_Get_UseTexRom_p
- 0x803D91B0: mPlib_Object_Exchange_keep_new_PlayerTex
- 0x803D9234: mPlib_Get_PlayerPalletRom_p
- 0x803D92B4: mPlib_Get_UsePalletRom_p
- 0x803D92E8: mPlib_Object_Exchange_keep_new_PlayerPallet
- 0x803D936C: mPlib_Check_PlayerClothInAram
- 0x803D9388: mPlib_Object_Exchange_keep_new_PlayerFaceTex
- 0x803D93C0: mPlib_Object_Exchange_keep_new_PlayerFacePallet
- 0x803D941C: mPlib_Object_Exchange_keep_Player_dt
- 0x803D946C: mPlib_get_player_tex_p
- 0x803D94B4: mPlib_get_player_pallet_p
- 0x803D94E0: mPlib_get_player_face_p
- 0x803D9518: mPlib_get_player_face_pallet_p
- 0x803D9560: mPlib_change_player_cloth
- 0x803D9658: mPlib_change_player_face_pallet
- 0x803D96BC: mPlib_change_player_face
- 0x803D9728: get_player_actor_withoutCheck
- 0x803D9730: mPlib_check_DynamicLinkFile_m_player
- 0x803D9758: mPlib_get_player_actor_main_index
- 0x803D977C: mPlib_get_player_actor_request_main_index
- 0x803D97B4: mPlib_get_player_mdl_p
- 0x803D97E4: mPlib_get_player_Object_Bank
- 0x803D980C: mPlib_DMA_player_Part_Table
- 0x803D9854: mPlib_change_player_cloth_info
- 0x803D9890: mPlib_change_player_cloth_info_lv2
- 0x803D98B4: mPlib_Load_PlayerTexAndPallet
- 0x803D9994: mPlib_Get_change_data_from_submenu_p
- 0x803D99A0: mPlib_Clear_change_data_from_submenu
- 0x803D99CC: mPlib_request_main_give_from_submenu
- 0x803D9A2C: mPlib_request_main_putin_scoop_from_submenu
- 0x803D9A98: mPlib_request_main_release_creature_gyoei_from_submenu
- 0x803D9AF4: mPlib_request_main_release_creature_insect_from_submenu
- 0x803D9BBC: mPlib_Get_ItemNoToItemKind
- 0x803D9E64: mPlib_Get_ItemKindTOBalloonShapeType
- 0x803D9E90: mPlib_Get_itemNOTOBalloonShapeType
- 0x803D9EB8: mPlib_request_main_release_creature_balloon_from_submenu
- 0x803D9F2C: mPlib_request_main_wait_from_submenu
- 0x803D9F5C: mPlib_request_main_demo_get_golden_item_from_submenu
- 0x803D9F8C: mPlib_request_main_mail_land_from_submenu
- 0x803D9FBC: mPlib_request_main_demo_wait_from_submenu
- 0x803DA014: mPlib_Set_unable_wade
- 0x803DA028: mPlib_Get_unable_wade
- 0x803DA040: mPlib_Check_able_force_speak_label
- 0x803DA0AC: mPlib_Set_able_force_speak_label
- 0x803DA100: mPlib_Reset_able_force_speak_label
- 0x803DA124: mPlib_Get_PlayerEyeTexAnimation_p
- 0x803DA150: mPlib_Get_PlayerMouthTexAnimation_p
- 0x803DA17C: mPlib_Get_eye_tex_p
- 0x803DA1D8: mPlib_Get_mouth_tex_p
- 0x803DA238: mPlib_request_main_invade_type1
- 0x803DA278: mPlib_request_main_refuse_type1
- 0x803DA2B8: mPlib_request_main_wait_type3
- 0x803DA308: mPlib_request_main_demo_get_golden_item2_type1
- 0x803DA358: mPlib_request_main_talk_end_type1
- 0x803DA3E4: mPlib_request_main_talk_type1
- 0x803DA450: mPlib_request_main_hold_type1
- 0x803DA4C0: mPlib_request_main_recieve_wait_type1
- 0x803DA548: mPlib_request_main_give_type1
- 0x803DA5E8: mPlib_request_main_sitdown_type1
- 0x803DA648: mPlib_request_main_close_furniture_type1
- 0x803DA688: mPlib_request_main_lie_bed_type1
- 0x803DA6F0: mPlib_request_main_hide_type1
- 0x803DA730: mPlib_request_main_groundhog_type1
- 0x803DA770: mPlib_request_main_door_type1
- 0x803DA7E0: mPlib_request_main_door_type2
- 0x803DA848: mPlib_request_main_outdoor_type1
- 0x803DA8A0: mPlib_request_main_wash_car_type1
- 0x803DA908: mPlib_request_main_rotate_octagon_type1
- 0x803DA9E0: mPlib_request_main_throw_money_type1
- 0x803DAA38: mPlib_request_main_pray_type1
- 0x803DAA90: mPlib_request_main_mail_jump_type1
- 0x803DAAE8: mPlib_request_main_stung_bee_type1
- 0x803DAB28: mPlib_request_main_stung_mosquito_type1
- 0x803DAB80: mPlib_request_main_switch_on_lighthouse_type1
- 0x803DABE4: mPlib_request_main_demo_geton_boat_type1
- 0x803DAC84: mPlib_request_main_demo_getoff_boat_standup_type1
- 0x803DACE4: mPlib_request_main_shock_type1
- 0x803DAD50: mPlib_request_main_change_cloth_forNPC_type1
- 0x803DADAC: mPlib_request_main_push_snowball_type1
- 0x803DAE00: mPlib_request_main_push_snowball_end_type1
- 0x803DAE6C: mPlib_request_main_demo_wait_type1
- 0x803DAEC4: mPlib_request_main_demo_walk_type1
- 0x803DAF3C: mPlib_request_main_demo_geton_train_type1
- 0x803DAF90: mPlib_request_main_demo_getoff_train_type1
- 0x803DAFF8: mPlib_request_main_demo_standing_train_type1
- 0x803DB038: mPlib_check_request_main_talk_type1_priority
- 0x803DB114: mPlib_check_request_main_speak_type1_priority
- 0x803DB190: mPlib_check_request_main_door_type1_priority
- 0x803DB20C: mPlib_check_request_main_door_type2_priority
- 0x803DB288: mPlib_check_request_main_wade_priority
- 0x803DB364: mPlib_check_request_main_demo_wade_priority
- 0x803DB3E0: mPlib_check_request_main_demo_geton_boat_wade_priority
- 0x803DB45C: mPlib_strength_request_main_index_priority
- 0x803DB4A4: mPlib_strength_request_main_wade_priority
- 0x803DB508: mPlib_strength_request_main_demo_wade_priority
- 0x803DB56C: mPlib_strength_request_main_wade_snowball_priority
- 0x803DB5D0: mPlib_strength_request_main_demo_geton_boat_wade_priority
- 0x803DB634: mPlib_strength_request_main_door_priority
- 0x803DB698: mPlib_check_request_main_outdoor_priority
- 0x803DB6A0: mPlib_Check_SetOrderSubmenu
- 0x803DB6CC: mPlib_check_request_change_item
- 0x803DB760: mPlib_CheckScene_AbleSubmenu
- 0x803DB7CC: mPlib_able_submenu_type1
- 0x803DB878: mPlib_check_priority_event_type1
- 0x803DB8C4: mPlib_check_player_open_umbrella
- 0x803DB908: mPlib_check_player_outdoor_start
- 0x803DB95C: mPlib_check_label_player_demo_wait
- 0x803DB9BC: mPlib_Set_goal_player_demo_walk
- 0x803DBA64: mPlib_Get_goal_player_demo_walk
- 0x803DBB44: mPlib_Set_continue_player_after_demo_walk
- 0x803DBB74: mPlib_Get_continue_player_after_demo_walk
- 0x803DBBA0: mPlib_Set_end_player_demo_walk
- 0x803DBBD0: mPlib_Get_end_player_demo_walk
- 0x803DBBFC: mPlib_Get_space_putin_item
- 0x803DBC34: mPlib_Get_space_putin_item_forTICKET
- 0x803DBD78: mPlib_Get_space_putin_item_forHITODAMA
- 0x803DBE34: mPlib_able_player_warp_forEvent
- 0x803DC018: mPlib_request_player_warp_forEvent
- 0x803DC034: mPlib_cancel_player_warp_forEvent
- 0x803DC050: mPlib_check_player_warp_forEvent
- 0x803DC068: mPlib_Check_HitAxe
- 0x803DC0D0: mPlib_Check_VibUnit_OneFrame
- 0x803DC138: mPlib_Check_StopNet
- 0x803DC1A0: mPlib_Get_item_net_catch_label
- 0x803DC1F8: mPlib_Change_item_net_catch_label
- 0x803DC268: mPlib_Check_HitScoop
- 0x803DC2D0: mPlib_Check_DigScoop
- 0x803DC338: mPlib_Get_address_able_display
- 0x803DC36C: mPlib_Search_exist_npc_inCircle_forScoop
- 0x803DC414: mPlib_Search_exist_psnowman_inCircle_forScoop
- 0x803DC4BC: mPlib_Search_exist_snowball_forScoop
- 0x803DC5F8: mPlib_Search_exist_ball_forScoop
- 0x803DC6E0: mPlib_Check_scoop_after
- 0x803DD920: mPlib_Check_scene_able_change_camera_pos
- 0x803DD99C: mPlib_Check_RotateOctagon
- 0x803DD9E0: mPlib_Set_EndWashCar
- 0x803DDA38: mPlib_Set_AnimeSpeedWashCar
- 0x803DDA9C: mPlib_Check_now_handin_item_kind
- 0x803DDAD0: mPlib_Check_now_handin_item
- 0x803DDB0C: mPlib_Set_able_hand_all_item_in_demo
- 0x803DDB48: mPlib_Get_status_for_bee
- 0x803DDBA0: mPlib_Check_end_stung_bee
- 0x803DDBF8: mPlib_Check_Label_main_push_snowball
- 0x803DDC4C: mPlib_Check_Label_main_wade_snowball
- 0x803DDCA0: mPlib_Set_ScrollDemo_forWade_snowball
- 0x803DDD10: mPlib_GetSnowballPos_forWadeSnowball
- 0x803DDD78: mPlib_CheckCondition_forWadeSnowball
- 0x803DDDD4: mPlib_SetParam_for_push_snowball
- 0x803DDE40: mPlib_Set_crash_snowball_for_wade
- 0x803DDE7C: mPlib_Get_controller_data_for_title_demo_p
- 0x803DDE88: mPlib_Clear_controller_data_for_title_demo
- 0x803DDEC4: mPlib_SetData1_controller_data_for_title_demo
- 0x803DDF74: mPlib_SetData2_controller_data_for_title_demo
- 0x803DDF84: mPlib_Check_CorrectPlayerPos_forEvent
- 0x803DE004: mPlib_Check_UKI_COMEBACK_STATUS
- 0x803DE06C: mPlib_Check_tree_shaken
- 0x803DE0D4: mPlib_Check_tree_shaken_little
- 0x803DE13C: mPlib_Check_tree_shaken_big
- 0x803DE1A4: mPlib_Get_itemNo_forWindow
- 0x803DE230: mPlib_able_birth_bee
- 0x803DE294: mPlib_check_able_change_camera_normal_index
- 0x803DE320: mPlib_check_player_actor_main_index_Furniture_Move
- 0x803DE378: mPlib_check_player_actor_main_index_RecieveMove
- 0x803DE3F0: mPlib_check_player_actor_main_index_Pitfall
- 0x803DE468: mPlib_check_player_actor_main_index_OutDoorMove
- 0x803DE508: mPlib_check_player_actor_main_index_OutDoorMove2
- 0x803DE598: mPlib_check_player_actor_main_index_AllWade
- 0x803DE608: mPlib_check_player_actor_main_index_catch_insect
- 0x803DE690: mPlib_check_player_actor_main_index_catch_fish
- 0x803DE6F8: mPlib_check_player_actor_start_switch_on_lighthouse
- 0x803DE754: mPlib_Check_stung_mosquito
- 0x803DE7A8: mPlib_Set_boat_angleZ
- 0x803DE7E4: mPlib_CheckButtonOnly_forDush
- 0x803DE844: mPlib_Check_golden_item_get_demo_end
- 0x803DE86C: mPlib_Set_change_color_request
- 0x803DE8A0: mPB_copy_itemBuf
- 0x803DE900: mPB_get_keep_item_sum
- 0x803DE938: mPB_keep_item
- 0x803DE9CC: mPB_keep_all_item_in_block
- 0x803DEB5C: mPB_get_force_set_item_goods
- 0x803DEC14: mPB_get_force_set_item_item
- 0x803DEC5C: mPB_get_force_set_item_flower
- 0x803DEC9C: mPB_get_force_set_item_umbrella
- 0x803DECC8: mPB_get_force_set_item
- 0x803DED5C: mPB_force_set_keep_item
- 0x803DED98: mPB_police_box_init
- 0x803DEE38: mPO_keep_contents
- 0x803DEEBC: mPO_count_mail
- 0x803DEF4C: mPO_get_keep_mail_sum
- 0x803DEF68: mPO_adjust_keep_mail
- 0x803DF01C: mPO_receipt_check_mail
- 0x803DF148: mPO_receipt_proc
- 0x803DF200: mPO_copy_contents
- 0x803DF27C: mPO_delivery_mail_with_item
- 0x803DF2FC: mPO_delivery_mail_with_order_ftr_sub
- 0x803DF37C: mPO_delivery_mail_with_order_ftr
- 0x803DF410: mPO_delivery_mail_with_ticket_set_free_str
- 0x803DF494: mPO_delivery_mail_with_ticket_sub
- 0x803DF4F4: mPO_delivery_mail_with_ticket
- 0x803DF5B0: mPO_delivery_mail_sub
- 0x803DF6A8: mPO_delivery_one_address_mail
- 0x803DF704: mPO_delivery_one_address_special_mail
- 0x803DF758: mPO_delivery_one_address_leaflet
- 0x803DF828: mPO_delivery_one_address_event_leaflet
- 0x803DF8C4: mPO_delivery_one_address
- 0x803DF918: mPO_delivery_mail
- 0x803DF940: mPO_delivery_leaflet
- 0x803DF9A8: mPO_delivery_all_address_proc
- 0x803DF9CC: mPO_make_post_man
- 0x803DFBD4: mPO_set_next_delivery_time
- 0x803DFC5C: mPO_delivery_proc
- 0x803DFD00: mPO_first_delivery_proc
- 0x803DFDD4: mPO_business_proc
- 0x803DFE68: mPO_first_work
- 0x803DFEE0: mPO_post_office_init
- 0x803DFF7C: mPr_ClearPlayerName
- 0x803DFFA4: mPr_CopyPlayerName
- 0x803DFFC8: mPr_NullCheckPlayerName
- 0x803E0004: mPr_CheckCmpPlayerName
- 0x803E0070: mPr_GetPlayerName
- 0x803E012C: mPr_NullCheckPersonalID
- 0x803E0174: mPr_ClearPersonalID
- 0x803E01B8: mPr_ClearAnyPersonalID
- 0x803E0208: mPr_CopyPersonalID
- 0x803E022C: mPr_CheckCmpPersonalID
- 0x803E02B4: mPr_ClearPrivateBirthday
- 0x803E02D0: mPr_ClearAnimalMemory
- 0x803E0300: mPr_ClearPrivateInfo
- 0x803E03BC: mPr_GetRandomFace
- 0x803E03F4: mPr_GetRandomOriginalFace
- 0x803E0504: mPr_GetRandomCloth
- 0x803E0598: mPr_SetNowPrivateCloth
- 0x803E05E8: mPr_InitPrivateInfo
- 0x803E0708: mPr_CopyPrivateInfo
- 0x803E0738: mPr_CheckPrivate
- 0x803E0754: mPr_CheckCmpPrivate
- 0x803E0790: mPr_GetPrivateIdx
- 0x803E0810: mPr_GetPossessionItemIdx
- 0x803E0858: mPr_GetPossessionItemIdxWithCond
- 0x803E08BC: mPr_GetPossessionItemIdxFGTypeWithCond_cancel
- 0x803E0930: mPr_GetPossessionItemIdxItem1Category
- 0x803E0988: mPr_GetPossessionItemIdxItem1CategoryWithCond_cancel
- 0x803E0A08: mPr_GetPossessionItemIdxKindWithCond
- 0x803E0A78: mPr_GetPossessionItemSum
- 0x803E0AB4: mPr_GetPossessionItemSumWithCond
- 0x803E0B0C: mPr_GetPossessionItemSumFGTypeWithCond_cancel
- 0x803E0B74: mPr_GetPossessionItemSumItemCategoryWithCond_cancel
- 0x803E0BE8: mPr_GetPossessionItemSumItemCategoryWithCond
- 0x803E0C50: mPr_GetPossessionItemSumKindWithCond
- 0x803E0CB4: mPr_SetItemCollectBit
- 0x803E0E8C: mPr_DummyPresentToTruePresent
- 0x803E0F10: mPr_SetPossessionItem
- 0x803E0FF0: mPr_SetFreePossessionItem
- 0x803E1058: mPr_AddFirstJobHint
- 0x803E1078: mPr_GetFirstJobHintTime
- 0x803E1084: mPr_CheckFirstJobHint
- 0x803E1090: mPr_GetMoneyPower
- 0x803E10EC: mPr_GetGoodsPower
- 0x803E1160: mPr_CheckMuseumAddress
- 0x803E1184: mPr_CheckMuseumInfoMail
- 0x803E11A8: mPr_GetForeignerP
- 0x803E11B4: mPr_LoadPak_and_SetPrivateInfo2
- 0x803E138C: mPr_ClearMotherMailInfo
- 0x803E13C8: mPr_GetMotherMailPaperType
- 0x803E1458: mPr_GetMotherMail
- 0x803E14E0: mPr_SendMotherMailPost
- 0x803E15E4: mPr_SendMotherMailDate
- 0x803E17F4: mPr_CheckMotherMailMonthly
- 0x803E183C: mPr_GetMotherMailMonthlyNotSendNum
- 0x803E18BC: mPr_SetMotherMailMonthly
- 0x803E1914: mPr_GetMotherMailMonthlyData
- 0x803E1AF8: mPr_GetMotherMailNormalNotSendNum
- 0x803E1B40: mPr_SetMotherMailNormal
- 0x803E1B68: mPr_CheckMotherMailNormal
- 0x803E1B88: mPr_GetMotherMailNormalData
- 0x803E1CDC: mPr_SendMotherMailNormal
- 0x803E1E4C: mPr_SendMotherMail
- 0x803E1E98: mPr_SendMailFromMother
- 0x803E1F88: mPr_GetForeingerAnimalMail
- 0x803E20F0: mPr_SendForeingerAnimalMail
- 0x803E218C: mPr_StartSetCompleteTalkInfo
- 0x803E21F8: mPr_SetCompleteTalk
- 0x803E2218: mPr_GetCompleteTalk
- 0x803E2230: mPr_SetFishCompleteTalk
- 0x803E2268: mPr_CheckFishCompleteTalk
- 0x803E22C8: mPr_SetInsectCompleteTalk
- 0x803E2300: mPr_CheckInsectCompleteTalk
- 0x803E2360: mPr_GetTalkPermission
- 0x803E2390: mPr_GetFishCompTalkPermission
- 0x803E23E8: mPr_GetInsectCompTalkPermission
- 0x803E2440: mPr_ClearMapInfo
- 0x803E2498: mPr_CopyMapInfo
- 0x803E24BC: mPr_SetMapThisLand
- 0x803E2510: mPr_GetMapFreeIdx
- 0x803E258C: mPr_GetLandMapIdx
- 0x803E2614: mPr_GetThisLandMapIdx
- 0x803E2644: mPr_PushMapInfo
- 0x803E26AC: mPr_SetNewMap
- 0x803E2738: mPr_RenewalMapInfo
- 0x803E27C0: mPr_RandomSetPlayerData_title_demo
- 0x803E2868: mPr_PrintMapInfo_debug
- 0x803E2990: mQst_ClearQuestInfo
- 0x803E29D0: mQst_ClearDelivery
- 0x803E2A34: mQst_ClearErrand
- 0x803E2AC8: mQst_ClearContest
- 0x803E2B18: mQst_ClearNotSaveQuest
- 0x803E2B3C: mQst_CopyQuestInfo
- 0x803E2BBC: mQst_CopyDelivery
- 0x803E2C0C: mQst_CopyErrand
- 0x803E2CB8: mQst_CheckFreeQuest
- 0x803E2CD4: mQst_CheckLimitOver
- 0x803E2DF8: mQst_GetOccuredDeliveryIdx
- 0x803E2E88: mQst_GetDeliveryIdxbyItemIdx
- 0x803E2EF8: mQst_GetErrandIdxbyItemIdx
- 0x803E2FBC: mQst_ClearQuestbyPossessionIdx
- 0x803E3070: mQst_CheckLimitbyPossessionIdx
- 0x803E3170: mQst_ClearGrabItemInfo_common
- 0x803E31B8: mQst_ClearGrabItemInfo
- 0x803E31E0: mQst_CheckGrabItem
- 0x803E3320: mQst_CheckPutItem
- 0x803E342C: mQst_CheckNpcExistbyItemIdx
- 0x803E3534: mQst_GetToFromName
- 0x803E364C: mQst_GetOccuredContestIdx
- 0x803E36A4: mQst_GetFlowerSeedNum
- 0x803E36CC: mQst_GetFlowerNum
- 0x803E36F4: mQst_GetNullNoNum
- 0x803E371C: mQst_SetItemNameStr
- 0x803E3788: mQst_SetItemNameFreeStr
- 0x803E37F4: mQst_GetPresent
- 0x803E3924: mQst_GetRemailData
- 0x803E3A38: mQst_SendRemail
- 0x803E3B10: mQst_GetMailRank
- 0x803E3BA0: mQst_SetReceiveLetter
- 0x803E3C50: mQst_GetFirstJobData
- 0x803E3D10: mQst_CheckFirstJobQuest
- 0x803E3D50: mQst_CheckFirstJobQuestbyItemIdx
- 0x803E3DBC: mQst_CheckFirstJobFin
- 0x803E3DD4: mQst_CheckRemoveTarget
- 0x803E3E30: mQst_SetFirstJobStart
- 0x803E3ECC: mQst_SetFirstJobChangeCloth
- 0x803E3F34: mQst_SetFirstJobSeed
- 0x803E3F98: mQst_SetFirstJobHello
- 0x803E3FFC: mQst_SetFirstJobFurniture
- 0x803E40D0: mQst_SetFirstJobLetter_common
- 0x803E4188: mQst_SetFirstJobLetter
- 0x803E41AC: mQst_SetFirstJobLetter2
- 0x803E41D0: mQst_SetFirstJobOpenQuest
- 0x803E427C: mQst_SetFirstJobCarpet
- 0x803E4330: mQst_SetFirstJobAxe_common
- 0x803E43E0: mQst_SetFirstJobAxe
- 0x803E4404: mQst_SetFirstJobAxe2
- 0x803E4428: mQst_SetFirstJobNotice
- 0x803E44B8: mQst_GetRandom
- 0x803E4514: mQst_GetGoods_common
- 0x803E45E8: mQst_CheckSoccerTarget
- 0x803E4674: mQst_NextSoccer
- 0x803E474C: mQst_NextSnowman
- 0x803E4820: mQst_BackSnowman
- 0x803E48E4: mQst_PrintQuestInfo
- 0x803E4B20: mRF_MakeRandomField
- 0x803E4B40: mRF_Type2BlockInfo
- 0x803E4B68: mRF_GateType2GateCount
- 0x803E4B88: mRF_SearchPond
- 0x803E4C2C: mRF_Attr2BeastRoadAttr
- 0x803E4C64: mRF_BlockTypeDirect2GateType
- 0x803E4C7C: mRF_BlockTypeDirect2GateData
- 0x803E4CE0: mRF_BlockInf2CheckBeastRoad
- 0x803E4E28: mRF_CheckBeastRoad
- 0x803E4ED0: mRF_RiverIdx2NextDirect
- 0x803E4EF8: mRF_BlockType2RiverNextDirect
- 0x803E4F88: mRF_FindBgNameTypeCombiNum
- 0x803E4FE4: mRF_IslandBgData_To_VillageData
- 0x803E50C0: mRF_CheckFieldStep3
- 0x803E50E4: gfx_set_fog_position
- 0x803E5148: gfx_set_fog_nosync
- 0x803E51A0: texture_z_light_prim_xlu_disp
- 0x803E51C8: _texture_z_light_fog_prim_bg
- 0x803E51F0: _texture_z_light_fog_prim
- 0x803E5218: _texture_z_light_fog_prim_shadow
- 0x803E5240: _texture_z_light_fog_prim_xlu
- 0x803E5268: _texture_z_light_fog_prim_light
- 0x803E5290: _texture_z_light_fog_prim_npc
- 0x803E52F4: texture_z_light_fog_prim_bb_pal_opa
- 0x803E532C: texture_z_light_fog_prim_bb_pal_xlu
- 0x803E5364: texture_z_fog_lod_alpha_shadow
- 0x803E5388: gfx_rect_moji
- 0x803E53AC: rect_moji
- 0x803E53D4: polygon_z_light_prim
- 0x803E53F8: softsprite_prim
- 0x803E5420: gfx_softsprite_prim_xlu
- 0x803E5458: gfx_tex_scroll2
- 0x803E54F0: tex_scroll2
- 0x803E5560: tex_scroll2_dolphin
- 0x803E55B8: two_tex_scroll
- 0x803E56A8: two_tex_scroll_dolphin
- 0x803E5774: DisplayList_initialize
- 0x803E59EC: fade_rgba8888_draw
- 0x803E5A80: fade_black_draw
- 0x803E5AA0: gfx_gDPFillRectangle1
- 0x803E5ACC: gfx_gDPFillRectangleF
- 0x803E5B08: gfx_gSPTextureRectangle1
- 0x803E5B68: gfx_gSPScisTextureRectangle1
- 0x803E5D04: mRmTp_InitFtrPlaceInfo
- 0x803E5D28: mRmTp_ItemNo2FtrSize
- 0x803E5D58: mRmTp_GetFtrUnitPlaceData
- 0x803E5DAC: mRmTp_GetFurnitureData
- 0x803E5E74: mRmTp_MakeFtrNoTable
- 0x803E5F60: mRmTp_GetFtrActionSE
- 0x803E6064: mRmTp_CheckFtrBirthInfoTop
- 0x803E6070: mRmTp_PrintFloorIndex
- 0x803E6074: mRmTp_GetFloorIdx
- 0x803E62C8: mRmTp_GetWallIdx
- 0x803E638C: mRmTp_Item1ItemNo2FtrItemNo_AtPlayerRoom
- 0x803E660C: mRmTp_FtrItemNo2Item1ItemNo
- 0x803E68A4: mRmTp_MakeMelodyData
- 0x803E68E0: mRmTp_GetMelodyData
- 0x803E68EC: mRmTp_DrawFamicomInfo
- 0x803E69BC: mRmTp_MakeFamicom_Fdebug
- 0x803E6AA4: mRmTp_GetPlayerRoomCollisionIdx
- 0x803E6B70: mRmTp_FurnitureIdx2FurnitureKind
- 0x803E6B98: mRmTp_GetPlayerRoomIdx
- 0x803E6BD8: mRmTp_CopyWallData
- 0x803E6D40: mRmTp_CopyFloorData
- 0x803E6EC0: mRmTp_CheckTalkAble
- 0x803E7008: mRmTp_CheckWallIsMyOriginalInThisScene
- 0x803E70A8: mRmTp_CheckFloorIsMyOriginalInThisScene
- 0x803E7148: mRmTp_GetEntranceBasePosition
- 0x803E7194: mRmTp_GetNowSceneLightSwitchIndex
- 0x803E7248: mRmTp_PleaseDrawLightSwitch
- 0x803E728C: mRmTp_NowSceneLightSwitchON
- 0x803E72E4: mRmTp_IndexLightSwitchON
- 0x803E7320: mRmTp_NowSceneLightSwitchOFF
- 0x803E7378: mRmTp_IndexLightSwitchOFF
- 0x803E73B4: mRmTp_Index2LightSwitchStatus
- 0x803E73F0: mRmTp_CheckExistMyRoomOwner
- 0x803E7438: mRmTp_CheckMyRoomLightON
- 0x803E74C4: mRmTp_SetDefaultLightSwitchData
- 0x803E7698: mRmTp_DecideCottageDefaultLightSwitch
- 0x803E76F0: mRmTp_GetNowSceneFloorBitInfoP
- 0x803E7788: mRmTp_GetNowSceneOriginalWallStatus
- 0x803E77C0: mRmTp_GetNowSceneOriginalFloorStatus
- 0x803E77F8: mRmTp_SetNowSceneOriginalWallStatus
- 0x803E7838: mRmTp_SetNowSceneOriginalFloorStatus
- 0x803E7878: mRmTp_FtrItemNo2FtrIdx
- 0x803E78BC: mRmTp_FtrIdx2FtrItemNo
- 0x803E7904: mRmTp_SoundStepWalkSE
- 0x803E7998: mScn_KeepMyRoomBankNew
- 0x803E79EC: mScn_ObtainCarpetBank
- 0x803E7A5C: mScn_ObtainMyRoomBank
- 0x803E7A7C: mSP_InitItemTable
- 0x803E7AA4: mSP_SelectListFromPriority
- 0x803E7BDC: mSP_SetSeasonFTR_local_december
- 0x803E7C48: mSP_SetSeasonFTR
- 0x803E7CC4: mSP_GetItemList
- 0x803E7D8C: mSP_GoodsExistAlready
- 0x803E7DCC: mSP_CollectCheck
- 0x803E7F3C: mSP_CountElementInCommonList
- 0x803E7F60: mSP_CountElementInCommonList_collect
- 0x803E80A0: mSP_get_cloth_season
- 0x803E8180: mSP_CountElementInClothList
- 0x803E824C: mSP_CountElementInClothList_collect
- 0x803E843C: mSP_NoList
- 0x803E8470: mSP_SetDummyItem
- 0x803E84C4: mSP_SelectRandomItem_New
- 0x803E86B0: mSP_CountPriceTableElement
- 0x803E86D4: mSP_ShopSaleReport
- 0x803E8788: mSP_ItemNo2ItemPrice
- 0x803E89A8: mSP_SearchItemCategoryPriority
- 0x803E8A48: mSP_ItemNo2GoodsListCategory
- 0x803E8AF8: mSP_MakeRandomGoodsList
- 0x803E8D5C: mSP_CountElementInGoodsList
- 0x803E8D98: mSP_SelectTool
- 0x803E8F50: mSP_SelectPlant
- 0x803E909C: mSP_MakeGoodsList
- 0x803E91CC: mSP_MakeLotteryList
- 0x803E928C: mSP_CheckExchangeDay2
- 0x803E92DC: mSP_CheckExchangeMonth
- 0x803E932C: mSP_NewExchangeDay
- 0x803E934C: mSP_ShopItsumoChirashi
- 0x803E94B8: mSP_SetShopRareFurnitureChirashi
- 0x803E975C: mSP_SetRenewalChiraswhi_AppoDay
- 0x803E98C0: mSP_ExchangeLineUp_InGame
- 0x803E9944: mSP_PlusSales
- 0x803E99F0: mSP_SetNewVisitor
- 0x803E9A38: mSP_GetSalesSum
- 0x803E9A4C: mSP_GetShopLevel
- 0x803E9A64: mSP_RenewShopLevel
- 0x803E9AC8: mSP_GetRealShopLevel
- 0x803E9B40: mSP_GetGoodsPercent
- 0x803E9BE0: mSP_PrintNowShopSalesSum
- 0x803EA000: mSP_GetGoodsPriority
- 0x803EA044: mSP_SetExchangeDay
- 0x803EA064: mSP_InitGoods
- 0x803EA090: mSP_ExchangeLineUp_ZeldaMalloc
- 0x803EA0BC: mSP_LotteryLineUp_ZeldaMalloc
- 0x803EA0E0: mSP_ExchangeLineUp_GameAlloc
- 0x803EA118: mSP_LotteryLineUp_GameAlloc
- 0x803EA138: mSP_InitShopSaveData
- 0x803EA21C: mSP_DecideUniqueCommonList
- 0x803EA270: mSP_DecideGoodsCommonList
- 0x803EA2CC: mSP_ShopGameStartCt
- 0x803EA304: mSP_GetNowShopBgNum
- 0x803EA3B4: mSP_WhatSpecialSale
- 0x803EA3C4: mSP_GetNowShopFgNum
- 0x803EA694: mSP_GetShopOpenTime
- 0x803EA708: mSP_GetShopCloseTime
- 0x803EA734: mSP_GetShopCloseTime_Bgm
- 0x803EA760: mSP_InRenewal
- 0x803EA7F8: mSP_ShopOpen
- 0x803EA9DC: mSP_RandomHaniwaSelect
- 0x803EAAC4: mSP_RandomMDSelect
- 0x803EABA8: mSP_RandomUmbSelect
- 0x803EAC8C: mSP_CountBirth
- 0x803EACEC: mSP_FtrBirthIdx2ItemNo
- 0x803EAD70: mSP_RandomOneFossilSelect
- 0x803EADF8: mSP_Chk_HukubukuroSail
- 0x803EAE74: mSP_CheckFukubikiDay
- 0x803EAECC: mSP_SetGoods2ReservedPoint
- 0x803EAF68: mSP_CheckHallowinDay
- 0x803EAFB8: mSP_SetTanukiShopStatus
- 0x803EB078: mSP_money_check
- 0x803EB130: mSP_get_sell_price_sub
- 0x803EB208: mSP_get_sell_price
- 0x803EB260: mSP_GetNonePossessionItemCount_InList
- 0x803EB308: mSP_GetNonePossessionItem_InList
- 0x803EB3FC: mSP_GetNonePossessionItem_InLotteryFurniture
- 0x803EB478: mSP_GetNonePossessionItem_InEventFurniture
- 0x803EB4F4: mSP_CarryOutAlternativeRandomSelect
- 0x803EB5C4: mSP_CarryOutAlternativeRandomSelect_NoneNULL
- 0x803EB678: mSP_SelectFishginPresent
- 0x803EB6CC: mSP_AGBRandomFamicomSelect
- 0x803EB718: mSP_GetRandomTrash
- 0x803EB760: mSP_SelectRandomItemToAGB_Unit
- 0x803EBB44: mSP_SelectRandomItemToAGB
- 0x803EBDB8: mSP_ShopStatus2String
- 0x803EBDE8: mSP_GetRandomStationToyItemNo
- 0x803EBE2C: mItemDebug_FurnitureCanUse
- 0x803EBE8C: mItemDebug_ItemDebugMain
- 0x803EC124: mItemDebug_ItemDebugDraw
- 0x803EC240: mSC_get_soncho_event
- 0x803EC31C: mSC_get_soncho_field_event
- 0x803EC388: mSC_delete_soncho
- 0x803EC4DC: mSC_trophy_get
- 0x803EC558: mSC_trophy_set
- 0x803EC5C4: mSC_trophy_item
- 0x803EC6B8: mSC_item_string_set
- 0x803EC720: mSC_get_event_name_str
- 0x803EC754: mSC_event_name_set
- 0x803EC7E8: mSC_set_free_str_number
- 0x803EC870: mSC_Radio_many_taisou_card
- 0x803EC8DC: mSC_Radio_have_taisou_card
- 0x803EC954: mSC_Radio_time_check
- 0x803EC9EC: mSC_Radio_limit_check
- 0x803ECA20: mSC_Radio_delete_taisou_card
- 0x803ECAB8: mSC_Radio_change_taisou_card
- 0x803ECB20: mSC_Radio_stamp_card
- 0x803ECB50: mSC_Radio_msg
- 0x803ECB64: mSC_Radio_Set_Talk_Proc
- 0x803ED1A4: mSCR_talk_pickup_all
- 0x803ED280: mSCR_talk_inspection
- 0x803ED460: mSCR_talk_newcard
- 0x803ED51C: mSCR_talk_before_give
- 0x803ED5C8: mSCR_talk_give
- 0x803ED680: mSCR_talk_next
- 0x803ED6EC: mSC_Radio_Talk_Proc
- 0x803ED724: mSC_LightHouse_get_period
- 0x803ED83C: mSC_LightHouse_day
- 0x803ED8D8: mSC_LightHouse_Event_Check
- 0x803ED9F0: mSC_LightHouse_Event_Clear
- 0x803EDA68: mSC_LightHouse_Event_Present_Item
- 0x803EDA8C: mSC_LightHouse_clear_data
- 0x803EDAC4: mSC_LightHouse_Event_Start
- 0x803EDB20: mSC_LightHouse_Talk_After_Check
- 0x803EDB7C: mSC_LightHouse_Quest_Start
- 0x803EDBF4: mSC_LightHouse_Switch_Check
- 0x803EDC8C: mSC_LightHouse_In_Check
- 0x803EDD64: mSC_LightHouse_Switch_On
- 0x803EDDE4: mSC_LightHouse_Delete_Player
- 0x803EDE10: mSC_LightHouse_travel_check
- 0x803EDE58: mSC_change_player_freeze
- 0x803EDE9C: mSC_check_ArbeitPlayer
- 0x803EDEC0: famicom_emu_initial_common_data
- 0x803EDEC4: decide_fruit
- 0x803EDF10: decide_fish_location
- 0x803EDF58: title_game_haniwa_data_init
- 0x803EE050: mSDI_ClearMoneyPlayerHomeStationBlock
- 0x803EE140: mSDI_PullTreeUT
- 0x803EE190: mSDI_PullTreeBlock
- 0x803EE1E4: mSDI_PullTree
- 0x803EE254: mSDI_PullTreeUnderPlayerBlock
- 0x803EE2AC: mSDI_StartInitNew
- 0x803EE600: mSDI_StartInitFrom
- 0x803EE7D8: mSDI_StartInitNewPlayer
- 0x803EE928: mSDI_StartInitPak
- 0x803EEA14: mSDI_StartInitErr
- 0x803EEA1C: mSDI_StartInitAfter
- 0x803EEC4C: mSDI_StartInitBefore
- 0x803EECB0: mSDI_StartDataInit
- 0x803EED30: mString_aram_init
- 0x803EED6C: mString_Get_StringDataAddressAndSize
- 0x803EEDB4: mString_Load_StringFromRom
- 0x803EEEC0: mString_Load_YearStringFromRom
- 0x803EEF10: mString_Load_MonthStringFromRom
- 0x803EEF70: mString_Load_WeekStringFromRom
- 0x803EEFC8: mString_Load_DayStringFromRom
- 0x803EF028: mString_Load_HourStringFromRom
- 0x803EF104: mString_Load_HourStringFromRom2
- 0x803EF17C: mString_Load_MinStringFromRom
- 0x803EF1C4: mString_Load_SecStringFromRom
- 0x803EF20C: mString_Load_NumberStringAddUnitFromRom
- 0x803EF290: mSM_COLLECT_INSECT_GET
- 0x803EF2D0: mSM_COLLECT_INSECT_SET
- 0x803EF30C: mSM_CHECK_ALL_INSECT_GET_SUB
- 0x803EF364: mSM_CHECK_ALL_INSECT_GET
- 0x803EF390: mSM_CHECK_LAST_INSECT_GET
- 0x803EF3E8: mSM_COLLECT_FISH_GET
- 0x803EF428: mSM_COLLECT_FISH_SET
- 0x803EF464: mSM_CHECK_ALL_FISH_GET_SUB
- 0x803EF4BC: mSM_CHECK_ALL_FISH_GET
- 0x803EF4E8: mSM_CHECK_LAST_FISH_GET
- 0x803EF540: SubmenuArea_IsPlayer
- 0x803EF568: mSM_load_player_anime
- 0x803EF56C: SubmenuArea_DoLink
- 0x803EF5A0: SubmenuArea_DoUnlink
- 0x803EF5D0: mSM_ovlptr_dllcnv_sub
- 0x803EF618: mSM_ovlptr_dllcnv
- 0x803EF678: mSM_submenu_ovlptr_init
- 0x803EF694: mSM_submenu_ovlptr_cleanup
- 0x803EF6E4: load_player
- 0x803EF750: mSM_submenu_ct
- 0x803EF7C0: mSM_submenu_dt
- 0x803EF7C4: mSM_open_submenu
- 0x803EF7EC: mSM_open_submenu_new
- 0x803EF810: mSM_open_submenu_new2
- 0x803EF828: mSM_Reset_player_btn_type1
- 0x803EF860: mSM_Reset_player_btn_type2
- 0x803EF890: mSM_check_open_map_new
- 0x803EF978: mSM_submenu_ctrl
- 0x803EFBBC: mSM_move_Wait
- 0x803EFBE8: mSM_move_PREWait
- 0x803EFC00: mSM_move_LINKWait
- 0x803EFD50: mSM_move_Play
- 0x803EFE70: mSM_submenu_move
- 0x803EFEA8: mSM_submenu_draw
- 0x803EFF04: mSM_check_item_for_furniture
- 0x803EFF84: mSM_check_item_for_quest
- 0x803EFFDC: mSM_check_item_for_sell
- 0x803F005C: mSM_check_item_for_give
- 0x803F00C4: mSM_check_item_for_take
- 0x803F0164: mSM_check_item_for_minidisk
- 0x803F01B8: mSM_check_item_for_shrine
- 0x803F0214: mSM_check_item_for_entrust
- 0x803F0294: mSM_check_item_for_exchange
- 0x803F03B0: mSM_check_item_for_curator
- 0x803F0408: mSM_check_open_inventory_itemlist
- 0x803F049C: mSM_Object_Exchange_keep_new
- 0x803F04F8: mSM_Object_Exchange_keep_new_MenuTexAndPallet
- 0x803F0584: mSM_Object_Exchange_keep_new_Menu
- 0x803F05C8: mSM_Get_ground_tex_p
- 0x803F05EC: mSM_Get_ground_pallet_p
- 0x803F0610: mSc_set_bank_status_after
- 0x803F063C: mSc_clear_bank_status
- 0x803F0654: Object_Exchange_keep_new_Player
- 0x803F06E8: mSc_secure_exchange_keep_bank
- 0x803F0768: mSc_background_dmacopy_controller
- 0x803F0810: mSc_dmacopy_data_bank
- 0x803F0814: mSc_bank_regist_check
- 0x803F0864: mSc_regist_initial_exchange_bank
- 0x803F08FC: mSc_dmacopy_all_exchange_bank_sub
- 0x803F09E0: mSc_dmacopy_all_exchange_bank
- 0x803F0BF8: mSc_data_bank_ct
- 0x803F0C78: mSc_decide_exchange_bank
- 0x803F0C8C: Scene_player_select
- 0x803F0E9C: Scene_ct
- 0x803F1064: Scene_Proc_Player_Ptr
- 0x803F110C: Scene_Proc_Ctrl_Actor_Ptr
- 0x803F1120: Scene_Proc_Actor_Ptr
- 0x803F1134: Scene_Proc_Object_Exchange_Bank_Ptr
- 0x803F1148: Scene_Proc_Door_Data_Ptr
- 0x803F115C: Door_info_ct
- 0x803F1168: Scene_Proc_Sound
- 0x803F116C: set_item_info
- 0x803F11C4: Scene_Proc_Field_ct
- 0x803F1238: Scene_Proc_MyRoom_ct
- 0x803F1258: Scene_Proc_ArrangeRoom_ct
- 0x803F1278: Scene_Proc_ArrangeFurniture_ct
- 0x803F1290: goto_other_scene
- 0x803F13A0: goto_next_scene
- 0x803F13E4: goto_emu_game
- 0x803F14A4: return_emu_game
- 0x803F1528: Skin_Matrix_PrjMulVector
- 0x803F160C: Skin_Matrix_MulMatrix
- 0x803F1950: Skin_Matrix_SetScale
- 0x803F19A4: Skin_Matrix_SetRotateXyz_s
- 0x803F1B60: Skin_Matrix_SetTranslate
- 0x803F1BB4: mSN_check_life
- 0x803F1C04: mSN_ClearSnowmanData
- 0x803F1C54: mSN_ClearSnowman
- 0x803F1CA4: mSN_MeltSnowman
- 0x803F1DEC: mSN_get_free_space
- 0x803F1E28: mSN_regist_snowman_society
- 0x803F1F14: mSN_decide_msg
- 0x803F1F5C: mSN_snowman_init
- 0x803F1F94: get_demo_header
- 0x803F1FB0: mTD_demono_get
- 0x803F1FF8: mTD_player_keydata_init
- 0x803F2098: get_tdemo_keydata
- 0x803F210C: set_player_demo_keydata
- 0x803F22B8: mTD_game_end_init
- 0x803F22F0: title_demo_move
- 0x803F2358: mTD_rtc_set
- 0x803F23DC: mTD_rtc_reserve
- 0x803F23EC: mTD_get_titledemo_no
- 0x803F240C: mTD_tdemo_button_ok_check
- 0x803F2428: mTRC_SetMicPos
- 0x803F2538: mTRC_KishaStatusLevel
- 0x803F2778: mTRC_KishaStatusTrg
- 0x803F27B8: aTRC_area_check
- 0x803F284C: mTRC_go_process
- 0x803F28B8: mTRC_get_depart_time
- 0x803F2920: mTRC_time_check
- 0x803F2960: mTRC_mati_init
- 0x803F29D4: mTRC_demo_init
- 0x803F2A80: mTRC_call_init
- 0x803F2AFC: mTRC_norm_init
- 0x803F2B78: mTRC_schedule
- 0x803F2CFC: mTRC_trainControl
- 0x803F3088: mTRC_trainSet
- 0x803F32D0: mTRC_init
- 0x803F3358: mTRC_move
- 0x803F33DC: mTM_get_termIdx
- 0x803F3478: mTM_set_season_com
- 0x803F34B4: mTM_set_season
- 0x803F34D8: mTM_clear_renew_is
- 0x803F34E8: mTM_check_renew_time
- 0x803F3514: mTM_off_renew_time
- 0x803F3538: mTM_set_renew_is
- 0x803F3548: mTM_set_renew_time
- 0x803F3564: mTM_ymd_2_time
- 0x803F35CC: mTM_renewal_renew_time
- 0x803F3638: mTM_disp_time
- 0x803F3898: mTM_TimestepControl
- 0x803F39AC: mTM_time_init
- 0x803F3B74: mTM_time
- 0x803F3DFC: mTM_rtcTime_limit_check
- 0x803F3E58: set_viewport
- 0x803F3EBC: initView
- 0x803F3F98: setLookAtView
- 0x803F4020: setScaleView
- 0x803F4034: setPerspectiveView
- 0x803F4050: setScissorView
- 0x803F4080: setScissorX
- 0x803F4188: setScissor
- 0x803F4268: stretchViewInit
- 0x803F42CC: do_stretch_view
- 0x803F44D4: showView
- 0x803F4514: showPerspectiveView
- 0x803F48A0: showOrthoView
- 0x803F4AE8: showView1
- 0x803F4E08: watch_my_step_ct
- 0x803F4E4C: watch_my_step_move
- 0x803F5404: watch_my_step_draw
- 0x803F58FC: navigate_camera_ct
- 0x803F5928: navigate_camera_move
- 0x803F5BB8: navigate_camera_draw
- 0x803F5DAC: mWt_set_coin_se
- 0x803F5E4C: mWt_mybell_confirmation_ct
- 0x803F5E90: mWt_mybell_confirmation_move
- 0x803F6270: mWt_mybell_confirmation_draw
- 0x803F64E0: get_all_money
- 0x803F6570: mRlib_spdXZ_to_spdF_Angle
- 0x803F662C: mRlib_spdF_Angle_to_spdXZ
- 0x803F668C: mRlib_position_move_for_sloop
- 0x803F67E4: mRlib_Get_norm_Clif
- 0x803F694C: mRlib_Roll_Matrix_to_s_xyz
- 0x803F69EC: mRlib_Get_HitWallAngleY
- 0x803F6A4C: mRlib_Station_step_modify_to_wall
- 0x803F6B28: mRlib_Set_Position_Check
- 0x803F6C60: mRlib_HeightGapCheck_And_ReversePos
- 0x803F6D80: mRlib_Hole_check
- 0x803F6DEC: mRlib_Get_ground_norm_inHole
- 0x803F6F7C: mRlib_PSnowmanTouchCheck
- 0x803F701C: mRlib_PSnowmanBreakCheck
- 0x803F7304: mRlib_PSnowmanBreakNeckSwing
- 0x803F7434: mRlib_PSnowman_NormalTalk
- 0x803F7594: mRlib_snowman_ball_unit_check_from_pos
- 0x803F76F0: mCD_ClearErrInfo
- 0x803F7728: mCD_OnErrInfo
- 0x803F7750: mCD_OffErrInfo
- 0x803F7778: mCD_SetErrResult
- 0x803F7784: mCD_PrintErrInfo
- 0x803F78DC: mCD_malloc_32
- 0x803F7900: mCD_check_card_common
- 0x803F7988: mCD_check_card
- 0x803F7A14: mCD_check_sector_size
- 0x803F7AC0: mCD_get_file_num_com
- 0x803F7B2C: mCD_get_file_num
- 0x803F7BE0: mCD_init_card
- 0x803F7C00: mCD_ClearCardBgInfo
- 0x803F7C24: mCD_StartSetCardBgInfo
- 0x803F7C4C: mCD_get_space_bg_get_slot
- 0x803F7D50: mCD_get_space_bg_main
- 0x803F7E24: mCD_get_space_bg
- 0x803F7EFC: mCD_close_and_unmount
- 0x803F7F30: mCD_bg_check_slot
- 0x803F7FC8: mCD_bg_init_com
- 0x803F8100: mCD_bg_init
- 0x803F812C: mCD_bg_check_filesystem
- 0x803F81D0: mCD_write_bg_open_file
- 0x803F8310: mCD_write_bg_write
- 0x803F83D0: mCD_write_bg_cleanup
- 0x803F8444: mCD_bg_init_write_comp
- 0x803F84BC: mCD_write_comp_bg_open_file
- 0x803F8600: mCD_write_comp_bg_read
- 0x803F879C: mCD_write_comp_bg_write
- 0x803F88D0: mCD_write_comp_bg
- 0x803F8A84: mCD_read_bg_open_file
- 0x803F8B8C: mCD_read_bg_cleanup
- 0x803F8C00: mCD_read_fg
- 0x803F8D64: mCD_find_fg
- 0x803F8E60: mCD_format_bg_mount
- 0x803F8F08: mCD_format_bg_open_file
- 0x803F8FBC: mCD_format_bg_cleanup
- 0x803F903C: mCD_format_bg
- 0x803F9170: mCD_set_file_status_bg_open_file
- 0x803F9260: mCD_set_file_status_bg_cleanup
- 0x803F92E4: mCD_set_file_status_bg
- 0x803F9418: mCD_get_file_status_bg_open_file
- 0x803F9504: mCD_get_file_status_bg
- 0x803F9638: mCD_create_file_bg_create
- 0x803F96F0: mCD_create_file_bg_set_not_copy
- 0x803F97E0: mCD_create_file_bg
- 0x803F9970: mCD_set_file_permission_bg_set
- 0x803F9A94: mCD_set_file_permission_bg
- 0x803F9C30: mCD_erase_file_bg_erase
- 0x803F9CDC: mCD_erase_file_bg
- 0x803F9E04: mCD_erase_file_fg
- 0x803F9EEC: mCD_rename_file_fg
- 0x803F9FD8: mCD_clear_aram_access_bit
- 0x803F9FE8: mCD_save_data_aram_malloc
- 0x803FA048: mCD_save_data_aram_to_main
- 0x803FA0C4: mCD_save_data_main_to_aram
- 0x803FA140: mCD_get_aram_save_data_max_size
- 0x803FA174: mCD_set_init_mail_data
- 0x803FA1F0: mCD_set_init_original_data
- 0x803FA27C: mCD_set_init_diary_data
- 0x803FA2E8: mCD_set_aram_save_data
- 0x803FA39C: mCD_TransErrorCode
- 0x803FA440: mCD_TransErrorCode_nes
- 0x803FA4F8: mCD_get_offset
- 0x803FA540: mCD_get_size
- 0x803FA570: mCD_ClearMemMgr_com
- 0x803FA5B4: mCD_ClearMemMgr_com2
- 0x803FA614: mCD_ClearKeepLand
- 0x803FA650: mCD_ClearMemMgr
- 0x803FA678: mCD_ClearCardPrivateTable_com
- 0x803FA6D8: mCD_ClearCardPrivateTable
- 0x803FA704: mCD_SetCardPrivateTable
- 0x803FA74C: mCD_ClearForeignerFile
- 0x803FA7A0: mCD_ClearNoLandProtectCode
- 0x803FA7C4: mCD_CheckInitProtectCode
- 0x803FA800: mCD_CheckProtectCode
- 0x803FA84C: mCD_MakeProtectCode
- 0x803FA8D4: mCD_CompNoLandCode
- 0x803FA954: mCD_SetForeignerFile
- 0x803FA9B4: mCD_InitAll
- 0x803FAA20: mCD_save_file
- 0x803FAAA8: mCD_load_file
- 0x803FAB2C: mCD_clear_write_control_common
- 0x803FAB8C: mCD_clear_all_control
- 0x803FABB4: mCD_GetHighPriority_common
- 0x803FABD8: mCD_check_Land_exist_com
- 0x803FAC30: mCD_check_Land_exist
- 0x803FACF8: mCD_CheckFilename
- 0x803FAD54: mCD_CheckPresentFilename
- 0x803FAD80: mCD_CheckPresentFileStatus
- 0x803FADC4: mCD_CheckPassportFilename
- 0x803FADF0: mCD_CheckPassportFileStatus
- 0x803FAE34: mCD_set_to_num
- 0x803FAEB4: mCD_GetPassportFileIdx
- 0x803FAED8: mCD_CheckPassportFile_slot
- 0x803FAFD8: mCD_GetSpaceSlot_bg2
- 0x803FB1C4: mCD_check_noLand_file
- 0x803FB248: mCD_GetNoLandSlot_bg
- 0x803FB368: mCD_CheckThisLandSlot
- 0x803FB480: mCD_set_1byte
- 0x803FB494: mCD_set_number_str
- 0x803FB550: mCD_get_land_comment1
- 0x803FB620: mCD_get_passport_comment1
- 0x803FB6F0: mCD_get_present_comment1
- 0x803FB77C: mCD_card_format_bg
- 0x803FB7A0: mCD_get_this_land_slot_no
- 0x803FB874: mCD_get_this_land_slot_no_game_start
- 0x803FB950: mCD_get_this_land_slot_no_nes
- 0x803FBA5C: mCD_check_copyProtect
- 0x803FBB10: mCD_bg_get_area_common
- 0x803FBC3C: mCD_SaveHome_bg_get_area
- 0x803FBC74: mCD_SaveHome_bg_erase_dummy
- 0x803FBCE8: mCD_send_present
- 0x803FBE28: mCD_SaveHome_bg_check_slot
- 0x803FC048: mCD_CheckPresentFile
- 0x803FC174: mCD_SaveHome_bg_read_send_present
- 0x803FC3D8: mCD_write_common
- 0x803FC458: mCD_SaveHome_bg_write_present
- 0x803FC5B8: mCD_SaveHome_bg_get_slot
- 0x803FC7C8: mCD_SaveHome_bg_create_file
- 0x803FC86C: mCD_check_broken_land
- 0x803FC950: mCD_repair_load_land
- 0x803FCA04: mCD_repair_land
- 0x803FCA5C: mCD_SaveHome_bg_check_repair_land
- 0x803FCAD4: mCD_SaveHome_bg_repair_land
- 0x803FCB28: mCD_get_status_common
- 0x803FCC34: mCD_SaveHome_bg_set_file_permission
- 0x803FCCE4: mCD_ClearResetCode
- 0x803FCD1C: mCD_CheckResetCode
- 0x803FCD4C: mCD_SetResetCode
- 0x803FCD98: mCD_SetResetInfo
- 0x803FCE0C: mCD_get_land_copyProtect
- 0x803FCE4C: mCD_SaveHome_bg_set_data
- 0x803FCFDC: mCD_SaveHome_bg_write_main_2
- 0x803FD0DC: mCD_SaveHome_bg_write_bk
- 0x803FD238: mCD_SaveHome_bg_set_others
- 0x803FD3EC: mCD_SaveHome_bg_write_others
- 0x803FD4C8: mCD_SaveHome_bg_get_status_2
- 0x803FD528: mCD_SaveHome_bg_set_status_2
- 0x803FD5B4: mCD_SaveHome_bg_rename
- 0x803FD660: mCD_SaveHome_ChangeErrCode
- 0x803FD69C: mCD_create_famicom_file
- 0x803FD6C8: mCD_load_famicom_file
- 0x803FD6F4: mCD_SaveHome_bg
- 0x803FD910: mCD_TransErrCodeToCond
- 0x803FD968: mCD_load_set_others_common
- 0x803FDA84: mCD_LoadLand
- 0x803FDEB8: mCD_ReCheckLoadLand
- 0x803FDFAC: mCD_EraseLand_ChangeErrCode
- 0x803FDFE0: mCD_EraseLand_bg_get_area
- 0x803FE008: mCD_EraseLand_bg_get_slot
- 0x803FE0D0: mCD_EraseLand_bg_set_data
- 0x803FE18C: mCD_EraseLand_bg_write_main
- 0x803FE250: mCD_EraseLand_bg_write_bk
- 0x803FE32C: mCD_EraseLand_bg_load_icon
- 0x803FE3CC: mCD_EraseLand_bg_write_icon
- 0x803FE40C: mCD_EraseLand_bg
- 0x803FE590: mCD_EraseBrokenLand_bg_get_slot
- 0x803FE72C: mCD_EraseBrokenLand_bg
- 0x803FE8B0: mCD_CheckPassportFile
- 0x803FE934: mCD_CheckBrokenPassportFile
- 0x803FEAF0: mCD_ErasePassport_bg_get_area
- 0x803FEB18: mCD_ErasePassport_bg_mount_card
- 0x803FEC0C: mCD_ErasePassportFile_bg_get_broken_Passport
- 0x803FEDB8: mCD_ErasePassportFile_bg_erase
- 0x803FEEA0: mCD_ErasePassportFile_bg
- 0x803FEFD4: mCD_GameStart_ChangeErrCode
- 0x803FF008: mCD_SetCopyProtect
- 0x803FF074: mCD_GetSaveFilePrivateP
- 0x803FF084: mCD_InitGameStart_bg_get_area
- 0x803FF0E0: mCD_InitGameStart_bg_get_slot
- 0x803FF1D8: mCD_InitGameStart_bg_check_repair_land
- 0x803FF250: mCD_LoadPrivate_idx
- 0x803FF374: mCD_InitGameStart_bg_make_data
- 0x803FF6D8: mCD_InitGameStart_bg_set_data
- 0x803FF7A8: mCD_set_passport_icon
- 0x803FF880: mCD_InitGameStart_bg_write_main
- 0x803FF9A0: mCD_InitGameStart_erase_passport
- 0x803FFB84: mCD_InitGameStart_write_passport
- 0x803FFD8C: mCD_InitGameStart_bg_write_bk
- 0x803FFE88: mCD_InitGameStart_bg
- 0x80400110: mCD_SaveHome_bg_write_main
- 0x80400164: mCD_SaveErasePlayer_bg_write_bk
- 0x804001A4: mCD_SaveErasePlayer_bg
- 0x80400328: mCD_GetPlayerNum
- 0x80400568: mCD_GetCardPrivateNameCopy
- 0x804005C4: mCD_CheckCardPlayerNative
- 0x80400670: mCD_GetThisLandSlotNo
- 0x804006E4: mCD_GetSaveHomeSlotNo
- 0x80400818: mCD_GetLandSlotNo_code_com
- 0x804009D8: mCD_GetThisLandSlotNo_code
- 0x80400A58: mCD_CheckStation_get_area
- 0x80400A9C: mCD_CheckStation_check_this_land
- 0x80400B7C: mCD_CheckStation_check_next_land
- 0x80400DB8: mCD_CheckStation_check_foreigner
- 0x80400EE0: mCD_CheckStation_check_passport
- 0x804011F0: mCD_CheckStation_bg
- 0x804012D0: mCD_SaveStation_NextLand_get_area
- 0x804013B4: mCD_SaveStation_NextLand_check_repair_land
- 0x80401474: mCD_SaveStatoin_NextLand_repair_land
- 0x804014F0: mCD_SaveStation_NextLand_get_next_land_data
- 0x8040170C: mCD_SaveStation_NextLand_load_others
- 0x80401884: mCD_CopyKeep
- 0x804019D4: mCD_ClearPrivateItem
- 0x80401B14: mCD_ReplaceKeep
- 0x80401BE8: mCD_SaveStation_NextLand_set_data
- 0x80401DFC: mCD_SaveStation_NextLand_write_main
- 0x80401ECC: mCD_SaveStation_NextLand_write_bk
- 0x80401F94: mCD_SaveStation_NextLand_write_others
- 0x804020F0: mCD_SaveStation_NextLand_bg
- 0x8040230C: mCD_SaveStation_Passport_check_slot
- 0x804023E4: mCD_SaveStation_Passport_set_data
- 0x804025D0: mCD_SaveStation_Passport_write_main
- 0x804027A0: mCD_SaveStation_Passport_rewrite_main
- 0x80402924: mCD_SaveStation_Passport_make_file_name
- 0x80402AE8: mCD_SaveStation_Passport_create_file
- 0x80402BAC: mCD_SaveStation_Passport_set_icon_data
- 0x80402CE8: mCD_SaveStation_Passport_write_passport
- 0x80402EAC: mCD_SaveStation_Passport_get_status
- 0x80402F18: mCD_SaveStation_Passport_set_status
- 0x80403004: mCD_SaveStation_Passport_write_bk
- 0x804030B0: mCD_SaveStation_Passport_bg
- 0x804032E8: mCD_toNextLand
- 0x80403704: mCD_set_bti_data
- 0x80403830: mCPk_PakOpen
- 0x80403854: mCPk_InitPak
- 0x8040385C: mCPk_SavePak
- 0x80403864: mCPk_get_pkinfo
- 0x80403874: sCPk_PakOpen
- 0x8040387C: mVibElem_move
- 0x80403A00: mVibInfo_elem_entry
- 0x80403C38: mVibInfo_elem_delete
- 0x80403CCC: mVibInfo_set_force_stop
- 0x80403CDC: mVibInfo_clr_force_stop
- 0x80403CEC: mVibInfo_set_target_elem
- 0x80403D30: mVibInfo_force
- 0x80403DC4: mVibInfo_set_motor
- 0x80403E08: mVibInfo_move
- 0x80403EBC: mVibctl_check_title_demo
- 0x80403F10: mVibctl_callback
- 0x80403F3C: mVibctl_ct
- 0x80403F68: mVibctl_init0
- 0x80403F88: mVibctl_init
- 0x80403FA8: mVibctl_cleanup
- 0x80403FE0: mVibctl_reset
- 0x8040400C: mVibctl_entry
- 0x80404054: mVibctl_simple_entry
- 0x80404098: mVibctl_set_force_stop
- 0x804040C4: mVibctl_clr_force_stop
- 0x804040F0: wallpaper_draw1
- 0x8040448C: wallpaper_draw
- 0x804044F0: gfx_SetUpCFB
- 0x80404598: PreRender_setup_savebuf
- 0x804045CC: PreRender_init
- 0x804045F0: PreRender_setup_renderbuf
- 0x80404620: PreRender_cleanup
- 0x80404624: PreRender_ShowCoveredge
- 0x804046C4: PreRender_CopyRGBC
- 0x80404AE0: THA_GA_ct
- 0x80404B00: THA_GA_isCrash
- 0x80404B20: THA_GA_getFreeBytes
- 0x80404B40: THA_alloc16
- 0x80404B5C: THA_allocAlign
- 0x80404B78: THA_getFreeBytesAlign
- 0x80404B94: THA_getFreeBytes16
- 0x80404BB8: THA_getFreeBytes
- 0x80404BDC: THA_isCrash
- 0x80404C00: THA_init
- 0x80404C1C: THA_ct
- 0x80404C44: THA_dt
- 0x80404C68: game_move_first
- 0x80404CDC: game_debug_draw_last
- 0x80404E40: game_draw_first
- 0x80404E60: game_draw_last
- 0x80404EDC: game_get_controller
- 0x80404F1C: SetGameFrame
- 0x80404FDC: game_main
- 0x804050A8: game_init_hyral
- 0x80405120: game_resize_hyral
- 0x804051F4: game_ct
- 0x804052B4: game_dt
- 0x8040531C: game_get_next_game_init
- 0x80405324: game_is_doing
- 0x8040532C: game_getFreeBytes
- 0x80405350: game_goto_next_game_play
- 0x80405370: gamealloc_malloc
- 0x804053E8: gamealloc_free
- 0x80405438: gamealloc_cleanup
- 0x80405498: gamealloc_init
- 0x804054B0: gfxopen
- 0x804054B8: gfxclose
- 0x804054EC: gfxalloc
- 0x80405518: graph_setup_double_buffer
- 0x804056BC: game_get_next_game_dlftbl
- 0x804057FC: graph_ct
- 0x8040586C: graph_dt
- 0x80405894: graph_task_set00
- 0x8040596C: graph_draw_finish
- 0x80405B9C: do_soft_reset
- 0x80405BF0: reset_check
- 0x80405C34: graph_main
- 0x80405DBC: graph_proc
- 0x80405EC8: irqmgr_AddClient
- 0x80405F6C: irqmgr_SendMesgForClient
- 0x80405FDC: irqmgr_JamMesgForClient
- 0x8040604C: irqmgr_HandlePreNMI
- 0x80406108: irqmgr_HandlePreNMI450
- 0x804061B0: irqmgr_HandlePreNMI480
- 0x8040622C: irqmgr_HandlePreNMI500
- 0x80406230: irqmgr_HandleRetrace
- 0x804062DC: irqmgr_Main
- 0x80406364: CreateIRQManager
- 0x80406468: osViSetEvent
- 0x80406480: lbRTC_GetHardTime
- 0x804064A0: lbRTC_HardTime
- 0x804064C0: lbRTC_CalenderTimeToRTCTime
- 0x80406500: lbRTC_RTCTimeToTicks
- 0x804065CC: lbRTC_GetGameTime
- 0x80406628: lbRTC_Initial
- 0x80406648: lbRTC_IsOki
- 0x80406690: lbRTC_IsAbnormal
- 0x80406704: lbRTC_Sampling
- 0x80406764: lbRTC_SetTime
- 0x80406804: lbRTC_GetTime
- 0x80406860: lbRTC_GetDaysByMonth
- 0x804068D4: lbRTC_IsEqualDate
- 0x80406920: lbRTC_IsEqualTime
- 0x804069FC: lbRTC_IsOverTime
- 0x80406AA8: lbRTC_IsOverRTC
- 0x80406AF0: lbRTC_IntervalTime_sub
- 0x80406B64: lbRTC_IntervalTime
- 0x80406B84: lbRTC_GetIntervalDays
- 0x80406D08: lbRTC_GetIntervalDays2
- 0x80406D98: lbRTC_Add_YY
- 0x80406DAC: lbRTC_Add_MM
- 0x80406E0C: lbRTC_Add_DD
- 0x80406E74: lbRTC_Add_hh
- 0x80406ED4: lbRTC_Add_mm
- 0x80406F34: lbRTC_Add_ss
- 0x80406F94: lbRTC_Add_Date
- 0x8040700C: lbRTC_Sub_YY
- 0x80407020: lbRTC_Sub_MM
- 0x804070A4: lbRTC_Sub_DD
- 0x8040713C: lbRTC_Sub_hh
- 0x804071B8: lbRTC_Sub_mm
- 0x80407234: lbRTC_Sub_ss
- 0x804072B0: lbRTC_Week
- 0x8040731C: lbRTC_TimeCopy
- 0x80407330: lbRTC_IsValidTime
- 0x80407414: lbRTC_time_c_save_data_check
- 0x80407494: lbRTC_Weekly_day
- 0x8040752C: lbRk_SeirekiDays
- 0x80407564: lbRk_ToSeiyoMonthAndDay
- 0x80407588: lbRk_KyuurekiLeapDays
- 0x804075A0: lbRk_IsKyuurekiLeapYear
- 0x804075C0: lbRk_IsLeapMonth
- 0x804075D0: lbRk_IsLeapOnNextMonth
- 0x80407628: lbRk_KyuurekiDays
- 0x80407740: lbRk_ToSeiyouReki
- 0x80407858: lbRk_ToKyuuReki
- 0x804079B0: lbRk_VernalEquinoxDay
- 0x80407A14: lbRk_AutumnalEquinoxDay
- 0x80407A78: lbRk_HarvestMoonDay
- 0x80407AE8: mainproc
- 0x80407C70: entry
- 0x80407CB8: foresta_main
- 0x80407CF4: padmgr_LockSerialMesgQ
- 0x80407D30: padmgr_UnlockSerialMesgQ
- 0x80407D64: padmgr_LockContData
- 0x80407D9C: padmgr_UnlockContData
- 0x80407DD4: padmgr_RumbleControl
- 0x80407EB4: padmgr_RumbleStop
- 0x80407F28: padmgr_force_stop_ON
- 0x80407F40: padmgr_force_stop_OFF
- 0x80407F58: padmgr_RumbleReset
- 0x80407F70: padmgr_RumbleSet
- 0x80407F9C: padmgr_PakConnectCheck
- 0x8040806C: padmgr_HandleDoneReadPadMsg
- 0x80408258: padmgr_ConnectCheck
- 0x80408394: padmgr_HandleRetraceMsg
- 0x8040853C: padmgr_HandlePreNMIMsg
- 0x80408570: padmgr_RequestPadData_NonLock
- 0x8040869C: padmgr_RequestPadData
- 0x804086E4: padmgr_ClearPadData
- 0x80408750: padmgr_MainProc
- 0x804087D8: padmgr_Init
- 0x80408888: padmgr_Create
- 0x80408920: padmgr_isConnectedController
- 0x80408940: init_rnd
- 0x80408964: sinf_table
- 0x804089D4: cosf_table
- 0x80408A44: Math3d_normalizeXyz_t
- 0x80408AC4: Math3DInDivPos1
- 0x80408B04: Math3DInDivPos2
- 0x80408B68: Math3DCheck3PointMinMaxAreaInside2D
- 0x80408C30: Math3DCheck3PointMinMaxAreaInside3D
- 0x80408D80: Math3DVecLengthSquare2D
- 0x80408D90: Math3DVecLength2D
- 0x80408E24: Math3DLengthSquare2D
- 0x80408E4C: Math3DLength2D
- 0x80408EE0: Math3DVecLengthSquare
- 0x80408F04: Math3DVecLength
- 0x80408FD0: Math3DLengthSquare
- 0x80408FFC: Math3DLength
- 0x8040901C: Math3DLength_s_f
- 0x804090B8: Math3DVectorProduct2Vec
- 0x8040911C: Math3DVectorProductXYZ
- 0x80409194: Math3DPlane
- 0x8040931C: Math3DPlaneFunc
- 0x80409344: Math3DLengthPlaneAndPos
- 0x8040936C: Math3DSignedLengthPlaneAndPos
- 0x8040944C: Math3DTriangleCrossYCheck_general
- 0x804096E0: Math3DTriangleCrossYCheck_chparam
- 0x8040970C: Math3DTriangleCrossYLine_scope
- 0x804098CC: Math3DTriangleCrossXCheck_general
- 0x80409B60: Math3DTriangleCrossXCheck_chparam
- 0x80409B8C: Math3DTriangleCrossZCheck_general
- 0x80409E38: Math3DTriangleCrossZCheck_chparam
- 0x80409E64: Math3D_sphereCollisionPoint
- 0x80409EC0: Math3D_pointVsLineSegmentLengthSquare2D
- 0x80409F84: Math3D_sphereCrossLineSegment
- 0x8040A190: Math3D_sphereCrossTriangleCalc_cp
- 0x8040A2FC: Math3D_sphereCrossTriangle3_cp
- 0x8040A6EC: Math3D_pipeVsPos
- 0x8040A7F4: Math3D_pipeCrossLine
- 0x8040B2D4: Math3D_pipeCrossTriangle_cp
- 0x8040B784: Math3D_sphereCrossSphere_cl
- 0x8040B7A8: Math3D_sphereCrossSphere_cl_cc
- 0x8040B9A8: Math3D_sphereVsPipe_cl
- 0x8040B9CC: Math3D_sphereVsPipe_cl_cc
- 0x8040BC18: Math3D_pipeVsPipe_cl
- 0x8040BC3C: Math3D_pipeVsPipe_cl_cc
- 0x8040BE94: sMath_RotateY
- 0x8040BF34: sMath_RotateX
- 0x8040BFD0: sMath_RotateZ
- 0x8040C06C: U_GetAtanTable
- 0x8040C0E8: atans_table
- 0x8040C230: atanf_table
- 0x8040C284: new_Matrix
- 0x8040C2BC: Matrix_push
- 0x8040C2FC: Matrix_pull
- 0x8040C314: Matrix_get
- 0x8040C340: Matrix_put
- 0x8040C370: get_Matrix_now
- 0x8040C380: Matrix_mult
- 0x8040C3E8: Matrix_translate
- 0x8040C4D4: Matrix_scale
- 0x8040C5A0: Matrix_RotateX
- 0x8040C744: Matrix_RotateY
- 0x8040C8D8: Matrix_RotateZ
- 0x8040CA7C: Matrix_rotateXYZ
- 0x8040CD38: Matrix_softcv3_mult
- 0x8040D090: Matrix_softcv3_load
- 0x8040D274: _MtxF_to_Mtx
- 0x8040D48C: _Matrix_to_Mtx
- 0x8040D4BC: _Matrix_to_Mtx_new
- 0x8040D4EC: Matrix_Position
- 0x8040D5A4: Matrix_Position_Zero
- 0x8040D5CC: Matrix_Position_VecX
- 0x8040D618: Matrix_Position_VecZ
- 0x8040D664: Matrix_copy_MtxF
- 0x8040D6E8: Matrix_MtxtoMtxF
- 0x8040D9D0: Matrix_reverse
- 0x8040DA04: Matrix_to_rotate_new
- 0x8040DCEC: Matrix_to_rotate2_new
- 0x8040DFD4: Matrix_RotateVector
- 0x8040E3CC: suMtxMakeTS
- 0x8040E4C0: suMtxMakeSRT
- 0x8040E7F8: suMtxMakeSRT_ZXY
- 0x8040EB38: zerucheck_init
- 0x8040EB50: zerucheck_key_check
- 0x8040EDA8: zurumode_update
- 0x8040EE74: zurumode_callback
- 0x8040EF58: zurumode_init
- 0x8040EFC4: zurumode_cleanup
- 0x8040F008: ucode_GetPolyTextStart
- 0x8040F018: ucode_GetPolyDataStart
- 0x8040F028: ucode_GetSpriteTextStart
- 0x8040F038: ucode_GetSpriteDataStart
- 0x8040F048: Ac_Sample_ct_forCorect
- 0x8040F0A0: Ac_Sample_Excute_Corect
- 0x8040F0EC: Ac_Sample_Actor_dt
- 0x8040F148: Ac_Sample_Animation_Base
- 0x8040F16C: Ac_Sample_Actor_wait_demo_ct
- 0x8040F208: Ac_Sample_Actor_main_wait
- 0x8040F290: Ac_Sample_Actor_main_talk
- 0x8040F350: Ac_Sample_Actor_main
- 0x8040F3A4: Ac_Sample_Actor_ct
- 0x8040F438: Ac_Sample_Actor_draw_normal
- 0x8040F5C0: Ac_Sample_Actor_draw
- 0x8040F614: Airplane_Actor_ct
- 0x8040F734: Airplane_Actor_dt
- 0x8040F738: Airplane_Actor_draw
- 0x8040F848: aAp_RubberMove
- 0x8040F860: aAp_FallByWall
- 0x8040F878: aAp_GroundFriction
- 0x8040F970: aAp_FreeFlyMove
- 0x8040FA08: aAp_SomerFlyMove
- 0x8040FB44: aAp_SelectFly
- 0x8040FBD4: aAp_StartFlyMove
- 0x8040FDE4: aAp_PlayerCatch
- 0x8040FDE8: aAp_StopFlyMove
- 0x8040FE50: aAp_FallFlyMove
- 0x8040FF34: aAp_FallFlyMove2
- 0x80410018: aAp_LeanAirplane
- 0x804100AC: aAp_WindSystem
- 0x804101FC: aAp_CommonHandle
- 0x8041035C: aAp_ZbuttonChangeStatus
- 0x804103DC: aAp_GetBgCheckOffsetY
- 0x80410408: Airplane_Actor_move
- 0x804104AC: aAL_actor_ct
- 0x804105A4: aAL_actor_dt
- 0x80410634: aAL_title_game_data_init_start_select
- 0x80410678: aAL_title_decide_p_sel_npc
- 0x80410744: aAL_wipe_end_check
- 0x8041078C: aAL_chk_start_key
- 0x804107F8: aAL_chk_start_key2
- 0x80410854: aAL_logo_in
- 0x804108DC: aAL_back_fadein
- 0x80410948: aAL_start_key_chk_start_wait
- 0x804109B4: aAL_game_start_wait
- 0x80410AF4: aAL_fade_out_start_wait
- 0x80410B48: aAL_logo_in_init
- 0x80410C98: aAL_back_fadein_init
- 0x80410CA4: aAL_start_key_chk_start_wait_init
- 0x80410D14: aAL_fade_out_start_wait_init
- 0x80410D58: aAL_setupAction
- 0x80410DB8: aAL_actor_move
- 0x80410E18: aAL_copyright_draw
- 0x80411144: aAL_tm_draw
- 0x80411204: aAL_back_draw
- 0x80411314: aAL_press_start_draw
- 0x804115A8: aAL_skl_draw
- 0x804115F4: aAL_title_draw
- 0x804116EC: aAL_actor_draw
- 0x804117D4: flash_rom_and_player_info_clear
- 0x8041185C: decide_next_scene_no
- 0x804119A4: title_action_data_init_start_select
- 0x80411A60: Arrange_Furniture_Actor_ct
- 0x80411A64: Arrange_Furniture_Actor_dt
- 0x80411A68: Arrange_Furniture_Actor_draw
- 0x80411A6C: Arrange_Furniture_Actor_move
- 0x80411A70: aAR_SecureDmaRam
- 0x80411A98: aAR_SetClip
- 0x80411AE0: Arrange_Room_Actor_ct
- 0x80411BF8: Arrange_Room_Actor_dt
- 0x80411C48: aAR_DrawFloor
- 0x80411D8C: aAR_DrawWall
- 0x80411EB4: Arrange_Room_Actor_draw
- 0x80411F08: Arrange_Room_Actor_move
- 0x80411F0C: aAR_Redma
- 0x80411F64: aBALL_Random_pos_set
- 0x804120C4: aBALL_actor_ct
- 0x80412324: aBALL_actor_dt
- 0x804123EC: aBALL_position_move
- 0x804124BC: aBALL_BGcheck
- 0x8041283C: aBALL_OBJcheck
- 0x80412DB0: aBALL_House_Tree_Rev_Check
- 0x80412DF8: aBALL_process_air_init
- 0x80412E98: aBALL_process_air
- 0x80412F64: aBALL_process_ground_init
- 0x80412FA0: aBALL_process_ground
- 0x80413380: aBALL_set_spd_relations_in_water
- 0x8041354C: aBALL_process_air_water_init
- 0x80413564: aBALL_process_air_water
- 0x80413678: aBALL_process_ground_water_init
- 0x80413694: aBALL_process_ground_water
- 0x804137E4: aBALL_calc_axis
- 0x804138F0: aBALL_player_angle_distance_check
- 0x80413990: aBALL_status_check
- 0x80413C14: aBALL_actor_move
- 0x80413D10: aBALL_actor_draw
- 0x80413DD4: Ac_Balloon_dt
- 0x80413DD8: Ac_Balloon_request_hide
- 0x80413DE4: Ac_Balloon_setup_hide
- 0x80413DF8: Ac_Balloon_Movement_hide
- 0x80413E48: Ac_Balloon_main_hide
- 0x80413E68: Ac_Balloon_request_fly
- 0x80413EAC: Ac_Balloon_setup_fly
- 0x80414040: Ac_Balloon_CulcAnimation_fly
- 0x80414064: Ac_Balloon_Movement_fly
- 0x8041422C: Ac_Balloon_request_change_mode_fromFly
- 0x80414298: Ac_Balloon_main_fly
- 0x804142E4: Ac_Balloon_main
- 0x80414388: Ac_Balloon_ct
- 0x804143A8: Ac_Balloon_draw_Before
- 0x804143FC: Ac_Balloon_draw_After
- 0x80414450: Ac_Balloon_draw_normal
- 0x8041456C: Ac_Balloon_draw
- 0x80414598: aBC_deleteActor_part
- 0x80414648: aBC_setupOtherActor
- 0x80414750: aBC_setupActor
- 0x80414914: aBC_setupCommonMvActor
- 0x804149F4: aBC_setupMvActor
- 0x80414BE8: aBC_chk_near_boat_block
- 0x80414C80: aBC_set_boat
- 0x80414D2C: aBC_actor_move
- 0x80414EC4: aBTD_actor_ct
- 0x80414F84: aBTD_actor_dt
- 0x80414FA8: aBTD_check_sendo_and_boat
- 0x80415014: aBTD_regist_island_npc_info
- 0x804150A0: aBTD_unregist_island_npc_info
- 0x8041511C: aBTD_chg_regist_island_npc_info
- 0x80415194: aBTD_setup_castaway
- 0x804152B0: aBTD_change_season
- 0x8041535C: aBTD_sendo_birth_wait
- 0x8041543C: aBTD_pl_ride_on_start_wait
- 0x804154A4: aBTD_pl_ride_on_end_wait
- 0x804154D4: aBTD_start_call_end_wait
- 0x80415504: aBTD_song_bgm_start_wait
- 0x80415540: aBTD_sing_sendo_start_wait
- 0x8041557C: aBTD_sing_sendo_msg_set_wait
- 0x804155D4: aBTD_sendo_dialogue_start_wait
- 0x8041562C: aBTD_sing_sendo_start_wait2
- 0x8041568C: aBTD_move_boat_end_wait
- 0x804156BC: aBTD_touch_wharf_end_wait
- 0x80415748: aBTD_pl_ride_off_start_wait
- 0x80415778: aBTD_pl_ride_off_end_wait
- 0x804157A8: aBTD_anchor
- 0x804157E4: aBTD_start_call_end_wait_init
- 0x80415808: aBTD_song_bgm_start_wait_init
- 0x80415814: aBTD_sing_sendo_start_wait_init
- 0x80415954: aBTD_sendo_dialogue_start_wait_init
- 0x804159CC: aBTD_sing_sendo_start_wait2_init
- 0x80415A54: aBTD_move_boat_end_wait_init
- 0x80415A7C: aBTD_touch_wharf_end_wait_init
- 0x80415A90: aBTD_pl_ride_off_start_wait_init
- 0x80415AB8: aBTD_anchor_init
- 0x80415AF4: aBTD_init_proc
- 0x80415B28: aBTD_setupAction
- 0x80415B60: aBTD_actor_move
- 0x80415BD8: BoxManager_Actor_ct
- 0x80415BDC: BoxManager_Actor_dt
- 0x80415BE0: BoxManager_Actor_move
- 0x80415BE4: BoxManager_Actor_draw
- 0x80415BE8: BoxMove_Actor_ct
- 0x80415BEC: BoxMove_Actor_dt
- 0x80415BF0: BoxMove_Actor_move
- 0x80415BF4: BoxMove_Actor_draw
- 0x80415BF8: BoxTrick01_Actor_ct
- 0x80415BFC: BoxTrick01_Actor_dt
- 0x80415C00: BoxTrick01_Actor_move
- 0x80415C04: aBD_SetFurnitureFg
- 0x80415CC4: Broker_Design_Actor_ct
- 0x80415D30: Broker_Design_Actor_dt
- 0x80415D48: Broker_Design_Actor_draw
- 0x80415D4C: Broker_Design_Actor_move
- 0x80415D50: aBD_UnitNo2FtrNo
- 0x80415DE8: aBD_ReportFtrSales
- 0x80415F04: Cottage_data_get
- 0x80415F1C: Cottage_my_light_aim
- 0x80415F5C: Cottage_npc_light_aim
- 0x8041600C: Cottage_my_ctrl_light
- 0x8041603C: Cottage_npc_ctrl_light
- 0x80416078: Cottage_set_doorSE
- 0x8041612C: Cottage_my_check_door_pl_in
- 0x804161F0: Cottage_npc_check_door_pl_in
- 0x8041626C: Cottage_my_check_go_out
- 0x80416274: Cottage_npc_check_go_out
- 0x804162DC: Cottage_check_door_action
- 0x804163BC: Cottage_reset_door_action
- 0x804163CC: Cottage_my_set_bgOffset
- 0x8041651C: Cottage_npc_set_bgOffset
- 0x80416688: Cottage_change_FGUnit
- 0x80416708: Cottage_my_rewrite_door
- 0x80416824: Cottage_npc_rewrite_door
- 0x80416938: Cottage_my_demo_door_open
- 0x8041696C: Cottage_npc_demo_door_open
- 0x804169A0: Cottage_demo_speak_go_out
- 0x80416A04: Cottage_actor_ct
- 0x80416AD0: Cottage_my_actor_ct
- 0x80416B50: Cottage_npc_actor_ct
- 0x80416BC0: Cottage_actor_dt
- 0x80416BE4: Cottage_my_actor_dt
- 0x80416C04: Cottage_npc_actor_dt
- 0x80416C4C: Cottage_move_closed_init
- 0x80416C84: Cottage_move_closed
- 0x80416D9C: Cottage_move_wait_pl_in_init
- 0x80416DAC: Cottage_move_wait_pl_in
- 0x80416E14: Cottage_move_wait_pl_out_init
- 0x80416E24: Cottage_move_wait_pl_out
- 0x80416E64: Cottage_move_open_in_init
- 0x80416EF0: Cottage_move_open_in
- 0x80416F98: Cottage_move_open_pl_out_init
- 0x80417024: Cottage_move_open_npc_out_init
- 0x804170B0: Cottage_move_open_out
- 0x804170F4: Cottage_move_next_init
- 0x80417104: Cottage_move_next
- 0x80417108: Cottage_actor_move
- 0x80417168: Cottage_actor_init
- 0x804171E0: Cottage_actor_draw_before
- 0x8041727C: Cottage_actor_draw_after
- 0x804173C8: Cottage_actor_draw
- 0x804174C4: Effectbg_actor_ct
- 0x8041756C: Effectbg_actor_dt
- 0x80417570: EfbgBgitemTreeCheck
- 0x80417900: EffectBG_Make_Leafs
- 0x80417D38: EffectBG_object_ct
- 0x804181B8: EffectBG_object_dt
- 0x804181C4: EffectBG_object_move
- 0x804186B0: Effectbg_actor_move
- 0x80418714: EffectBG_object_before_display
- 0x8041893C: EffectBG_object_before_display_xlu
- 0x80418BD4: EffectBG_object_after_display
- 0x80418C98: EffectBG_object_draw
- 0x80418EE8: Effectbg_actor_draw
- 0x8041912C: Make_EffectBG
- 0x804195A0: get_forward_block
- 0x8041965C: aEvMgr_actor_renewal_player_pos
- 0x804196B8: aEvMgr_actor_regist_handbill
- 0x80419740: aEvMgr_actor_set_shop_handbill_str
- 0x80419870: aEvMgr_actor_set_broker_handbill_str
- 0x8041991C: aEvMgr_actor_regist_broker_handbill
- 0x80419984: aEvMgr_actor_init_field_info
- 0x80419A20: aEvMgr_move
- 0x80419A60: aEvMgr_draw
- 0x80419A64: aEvMgr_actor_player_pos_init
- 0x80419A7C: aEvMgr_ct
- 0x80419AFC: aEvMgr_dt
- 0x80419B14: aEvMgr_save
- 0x80419B78: w_guide_arrow
- 0x80419D34: sp_guide_arrow
- 0x80419EF0: day_guide_arrow
- 0x8041A0AC: turkey_guide_arrow
- 0x8041A268: init_sp_bargain
- 0x8041A578: init_sp_broker
- 0x8041A7E4: init_sp_artist
- 0x8041A858: init_sp_arabian
- 0x8041A878: init_sp_gypsy
- 0x8041A894: init_sp_designer
- 0x8041A89C: special_type2kind
- 0x8041A8F0: set_special_event_save
- 0x8041A9EC: neighbor_check
- 0x8041ABF4: search_select_unit_cancel_check
- 0x8041ACE8: search_free_unit_cancel_check
- 0x8041AE14: search_free_unit
- 0x8041AF54: search_select_unit
- 0x8041B024: search_empty_unit
- 0x8041B288: be_flat_unit
- 0x8041B3BC: search_seaside_unit
- 0x8041B5A8: get_unit_lot4sale
- 0x8041B754: search_empty_hide_unit
- 0x8041B988: search_empty_hide_unit_sub
- 0x8041BB3C: search_empty_hide_unit_player
- 0x8041BB64: search_empty_hide_unit_toudai
- 0x8041BBDC: delete_FG
- 0x8041BC84: delete_FG2
- 0x8041BD10: clean_FG
- 0x8041BDC4: make_FG_somewhere_lot4sale
- 0x8041BFA8: make_actor_in_seaside_block
- 0x8041C094: make_actor_in_free_block
- 0x8041C18C: make_actor_in_select_block
- 0x8041C280: make_move_actor_in_free_block
- 0x8041C3A8: make_actor_in_free_block_hide
- 0x8041C4D4: make_actor_in_fixed_block
- 0x8041C5E8: make_actor_in_fixed_block_checkless
- 0x8041C6B8: make_control_actor
- 0x8041C73C: make_control_actor_without_indoor
- 0x8041C780: make_actor_in_reserved_block
- 0x8041C914: make_FG_in_reserved_block
- 0x8041CA98: show_actor_at_wade
- 0x8041CC98: show_actor_at_wade_checkless
- 0x8041CDCC: show_actor_at_wade_checkfgcol
- 0x8041CF80: walk_actor_at_wade
- 0x8041D0C0: walk_actor_at_wade_hide
- 0x8041D234: walk_FG_somewhere_lot4sale
- 0x8041D3A4: make_effect
- 0x8041D454: delete_effect
- 0x8041D494: set_escape_unit
- 0x8041D500: lap_fixed_actor
- 0x8041D57C: is_need2escape_unit
- 0x8041D614: player_lap_check
- 0x8041DB64: title_fade
- 0x8041DF00: wait_culling
- 0x8041DF30: artist_start
- 0x8041DFBC: artist_stop
- 0x8041E02C: artist_in
- 0x8041E06C: artist_behind
- 0x8041E0E4: broker_start
- 0x8041E1A8: broker_stop
- 0x8041E224: broker_in
- 0x8041E264: prebroker_start
- 0x8041E26C: designer_start
- 0x8041E330: designer_stop
- 0x8041E3AC: designer_in
- 0x8041E3EC: designer_behind
- 0x8041E4A4: arabian_start
- 0x8041E530: arabian_stop
- 0x8041E5A0: arabian_in
- 0x8041E5E0: arabian_behind
- 0x8041E658: gypsy_start
- 0x8041E6C4: gypsy_stop
- 0x8041E740: gypsy_in
- 0x8041E748: gypsy_out
- 0x8041E750: prebargain_start
- 0x8041E758: bargain_start
- 0x8041E7B0: bargain_stop
- 0x8041E810: bargain_out
- 0x8041E818: staffroll_start
- 0x8041E8A8: staffroll_stop
- 0x8041E90C: staffroll_in
- 0x8041E96C: turnipbuyer_start
- 0x8041E9FC: turnipbuyer_stop
- 0x8041EA60: turnipbuyer_in
- 0x8041EAA0: turnipbuyer_behind
- 0x8041EB18: downing_start
- 0x8041EB98: downing_stop
- 0x8041EBFC: downing_in
- 0x8041EC3C: aprilfool_start
- 0x8041ECC4: aprilfool_stop
- 0x8041ED18: christmas_start
- 0x8041EDC4: christmas_stop
- 0x8041EE4C: christmas_in
- 0x8041EE8C: christmas_behind
- 0x8041EF04: halloween_start
- 0x8041EFB0: halloween_stop
- 0x8041F03C: halloween_in
- 0x8041F07C: halloween_behind
- 0x8041F0F4: anglingtournament_start
- 0x8041F1F0: anglingtournament_stop
- 0x8041F280: anglingtournament_in
- 0x8041F2C0: countdown_start
- 0x8041F3D8: countdown_stop
- 0x8041F474: countdown_in
- 0x8041F4B4: firework_start
- 0x8041F5B8: firework_stop
- 0x8041F650: firework_in
- 0x8041F690: flowerviewing_start
- 0x8041F794: flowerviewing_stop
- 0x8041F830: flowerviewing_in
- 0x8041F870: radiogymnastic_start
- 0x8041F974: radiogymnastic_stop
- 0x8041FA04: radiogymnastic_in
- 0x8041FA90: field_day_ct
- 0x8041FBE0: field_day_delete
- 0x8041FCD0: fdgymnastic_start
- 0x8041FD98: fdgymnastic_stop
- 0x8041FDEC: fdgymnastic_in
- 0x8041FE78: fdrace_start
- 0x8041FF40: fdrace_stop
- 0x8041FF94: fdrace_in
- 0x8041FFD4: fdbasket_start
- 0x804200A0: fdbasket_stop
- 0x804200F4: fdbasket_in
- 0x80420134: fdtug_start
- 0x804201FC: fdtug_stop
- 0x804202A4: fdtug_in
- 0x804202E4: fdwp_start
- 0x804203A4: fdwp_stop
- 0x80420400: harvestmoon_start
- 0x804204E8: harvestmoon_stop
- 0x80420574: harvestmoon_in
- 0x804205B4: meteor_shower_viewing_start
- 0x8042069C: meteor_shower_viewing_stop
- 0x80420728: meteor_shower_viewing_in
- 0x80420768: snowman_start
- 0x80420808: kamakura_start
- 0x80420880: kamakura_stop
- 0x804208E0: kamakura_in
- 0x804208E8: kamakura_out
- 0x804208F0: newyear_start
- 0x804209FC: newyear_stop
- 0x80420A8C: newyear_in
- 0x80420B18: ghost_start
- 0x80420D38: ghost_delete_hitodama
- 0x80420DD0: ghost_stop
- 0x80420E38: ghost_in
- 0x80420E78: river_start_block
- 0x80420ED8: river_stream
- 0x80420FEC: bridge_stand_river
- 0x804210B8: bridge_man_start
- 0x804211DC: bridge_man_stop
- 0x80421240: bridge_man_in
- 0x80421280: bridge_make_start
- 0x804212D4: bridge_make_stop
- 0x80421328: bridge_make_in
- 0x80421440: groundhog_start
- 0x80421534: groundhog_stop
- 0x804215C4: groundhog_in
- 0x8042167C: harvestfestival_start
- 0x80421798: harvestfestival_stop
- 0x80421814: harvestfestival_in
- 0x80421854: harvestfestival_turkey_start
- 0x80421900: harvestfestival_turkey_stop
- 0x80421960: harvestfestival_turkey_in
- 0x804219A0: turkey_behind
- 0x80421A18: summercamp_start
- 0x80421B10: summercamp_stop
- 0x80421B70: summercamp_in
- 0x80421B78: summercamp_out
- 0x80421B80: check_masknpc_reregist
- 0x80421BC0: regist_mask_gohome
- 0x80421C38: regist_mask_maskcat
- 0x80421CB0: gohome_mask_start
- 0x80421DC8: gohome_mask_stop
- 0x80421E2C: gohome_mask_in
- 0x80421ECC: gohome_mask_behind
- 0x80421F44: soncho_start
- 0x80421FC8: soncho_stop
- 0x8042201C: soncho_in
- 0x8042205C: sonchohalloween_start
- 0x804220E0: sonchowandar_start
- 0x80422164: sonchowandar_stop
- 0x804221C8: sonchowandar_in
- 0x80422208: event_at_oclock
- 0x8042231C: event_at_wade
- 0x804224A4: check_past_day
- 0x804224D0: set_today_event
- 0x80422574: mail_event_check
- 0x8042283C: vt_wt_mail_check
- 0x804228E8: schedule_init
- 0x80422A50: schedule_main
- 0x80422DA8: aFD_MakeEnvSetDisplayList
- 0x80422DFC: aFD_OperateWaterSound
- 0x80423174: aFD_SetActorPosition
- 0x804231D0: aFD_PrepareFieldDraw
- 0x804232CC: aFD_SetPositionOffset
- 0x804232D8: aFD_SetDefaultPositionOffset
- 0x80423300: Bg_Draw_Actor_ct
- 0x80423324: Bg_Draw_Actor_dt
- 0x80423328: Bg_Draw_Actor_move
- 0x804235F4: aFD_SetRiverFlow
- 0x8042361C: aFD_SetViewerData
- 0x80423658: aFD_SetBeachColorOpaSegment
- 0x804236EC: aFD_SetMarinScrollXluSegment
- 0x80423810: aFD_DrawBg
- 0x8042385C: aFD_DrawXluBg
- 0x804238D0: aFD_DrawBlock
- 0x80423AF8: aFD_MakeMarinScrollInfo
- 0x80423D28: Bg_Draw_Actor_draw
- 0x80423E20: Fieldm_Actor_ct
- 0x80423E24: Fieldm_Actor_dt
- 0x80423E28: Fieldm_Actor_move
- 0x80423E2C: Fieldm_Actor_draw
- 0x80423E30: aFLAG_actor_ct
- 0x80423EE0: aFLAG_actor_dt
- 0x80423F04: aFLAG_set_talk_info
- 0x80423F6C: aFLAG_talk_end
- 0x80423FB4: aFLAG_talk
- 0x804240E4: aFLAG_wait
- 0x80424160: aFLAG_menu_open_wait
- 0x804241B4: aFLAG_menu_end_wait
- 0x8042429C: aFLAG_up
- 0x80424690: aFLAG_down
- 0x80424900: aFLAG_setup_action
- 0x80424918: aFLAG_actor_move
- 0x804249B4: aFLAG_actor_init
- 0x80424A2C: aFLAG_before_draw
- 0x80424A50: aFLAG_actor_draw
- 0x80424B88: aGRGR_AnimeCt
- 0x80424BF8: aGaragara_RequestStatus
- 0x80424C30: aGaragara_GaragaraAnimeStart
- 0x80424CA4: aGaragara_DeleteBall
- 0x80424CD8: aGRGR_DecideGaragaraMode
- 0x80424D08: aGRGR_CommonCt
- 0x80424D3C: aGRGR_FukubikiDayCt
- 0x80424DA8: aGRGR_DummyCt
- 0x80424DAC: Garagara_Actor_ct
- 0x80424E14: Garagara_Actor_dt
- 0x80424E54: Garagara_Actor_draw_dummy
- 0x80424E58: Garagara_Actor_draw
- 0x80424F24: aGaragara_WaitInit
- 0x80424F70: aGaragara_RotateInit
- 0x80424FD0: aGaragara_WaitMove
- 0x80424FF4: aGaragara_RotateMove
- 0x80425090: Garagara_Actor_move_dummy
- 0x80425094: Garagara_Actor_move
- 0x80425160: aGRBL_make
- 0x804252A0: aGRBL_bgCheck
- 0x80425390: aGRBL_move_position
- 0x80425424: aGRBL_NoneMove
- 0x80425428: aGRBL_StartMove
- 0x80425464: aGRBL_KorokoroMove
- 0x80425524: aGRBL_DeleteMove
- 0x80425528: aGRBL_move
- 0x80425584: aGRBL_draw
- 0x80425690: aGYO_KAGE_Get_flow_angle
- 0x804256CC: aGYO_KAGE_effect_hamon
- 0x804257B8: aGYO_KAGE_Wall_Check
- 0x8042584C: aGYO_KAGE_actor_ct
- 0x80425974: aGYO_KAGE_actor_dt
- 0x804259A8: aGYO_KAGE_BGcheck
- 0x804259EC: aGYO_KAGE_Cullcheck
- 0x80425A3C: aGYO_KAGE_position_move
- 0x80425AD4: aGYO_KAGE_actor_move
- 0x80425C40: aGYO_KAGE_actor_draw
- 0x80425E34: aGYR_actor_ct
- 0x804260E0: aGYR_actor_dt
- 0x8042612C: aGYR_anime_frame
- 0x804261A8: aGYR_empty_area
- 0x804261E8: aGYR_Get_flow_angle
- 0x8042623C: aGYR_effect_hamon
- 0x80426328: aGYR_cull_check
- 0x80426378: aGYR_Shadow_size
- 0x80426498: aGYR_position_move
- 0x80426580: aGYR_check_timer
- 0x8042661C: aGYR_in_water_move
- 0x804266C0: aGYR_move_sub
- 0x80426830: aGYR_actor_move
- 0x804268C4: aGYR_actor_draw
- 0x80426A50: aHOI_actor_ct
- 0x80426A70: aHOI_actor_dt
- 0x80426A90: aHOI_birth_proc
- 0x80426B90: aHOI_chg_master_proc
- 0x80426C04: aHOI_chg_request_mode_proc
- 0x80426C34: aHOI_init_clip_area
- 0x80426CE4: aHOI_free_clip_area
- 0x80426D08: aHOI_set_se
- 0x80426D90: aHOI_calc_trans
- 0x80426EC4: aHOI_calc_scale
- 0x80426F68: aHOI_anime_proc
- 0x80427060: aHOI_get_item_type
- 0x804270AC: aHOI_actor_move
- 0x804271F8: aHOI_chase_pos
- 0x804273C8: aHOI_actor_draw
- 0x80427624: aHNW_actor_ct
- 0x804276E8: aHNW_actor_dt
- 0x80427748: aHNW_actor_draw
- 0x80427880: aHNW_set_save_permission
- 0x80427930: aHNW_search_player
- 0x8042795C: aHNW_search_front
- 0x804279A8: aHNW_check_keep_item
- 0x804279F0: aHNW_set_proceeds_str
- 0x80427A44: aHNW_check_handOver_proceeds
- 0x80427B40: aHNW_check_house_door
- 0x80427C40: aHNW_wait
- 0x80427C78: aHNW_decide_msg_idx_dance
- 0x80427D78: aHNW_set_talk_info_dance
- 0x80427E20: aHNW_dance
- 0x80427EF0: aHNW_check_proceeds
- 0x80427FB8: aHNW_talk_with_master
- 0x8042809C: aHNW_talk_with_master2
- 0x80428180: aHNW_talk_end_wait
- 0x804281D8: aHNW_menu_open_wait
- 0x804282A0: aHNW_menu_end_wait
- 0x8042835C: aHNW_talk_with_guest
- 0x80428440: aHNW_menu_open_wait_for_guest
- 0x804284B8: aHNW_menu_end_wait_for_guest
- 0x80428518: aHNW_save_check
- 0x804285EC: aHNW_roof_check
- 0x804286EC: aHNW_save_end_wait
- 0x80428778: aHNW_pl_approach_door
- 0x804288E4: aHNW_door_open_wait
- 0x80428994: aHNW_door_open_timer
- 0x80428A54: aHNW_menu_open_wait_init
- 0x80428A78: aHNW_menu_end_wait_init
- 0x80428A9C: aHNW_talk_with_guest_init
- 0x80428AF0: aHNW_pl_approach_door_init
- 0x80428B08: aHNW_init_proc
- 0x80428B3C: aHNW_setupAction
- 0x80428D00: aHNW_common_process
- 0x80428E2C: aHNW_actor_move
- 0x80428EB8: aHNW_actor_init
- 0x80428F64: aHTC_actor_ct
- 0x80428FD8: aHTC_actor_dt
- 0x80429014: aHTC_actor_move
- 0x8042903C: aHTC_ready
- 0x804290F8: aHTC_wait
- 0x80429144: aHTC_set_talk_info_local
- 0x80429198: aHTC_request
- 0x80429234: aHTC_select
- 0x804292B0: aHTC_nomoney
- 0x804292F8: aHTC_inori
- 0x804293D0: aHTC_inori_end
- 0x8042943C: aHTC_pay
- 0x8042948C: aHTC_saisen
- 0x80429564: aHTC_setup_move_proc
- 0x80429614: aHN0_make_msg
- 0x80429730: aHN0_talk_stop_player
- 0x8042978C: aHN0_talk_saisen_suru
- 0x80429828: aHN0_change_talk_proc
- 0x80429844: aHTC_clip_talk_info
- 0x80429934: aHTMD_clip_set_start
- 0x804299BC: aHTMD_next_position
- 0x80429A6C: aHTMD_clip_player_move
- 0x80429B48: aHTMD_clip_look_player
- 0x80429BC4: aHN0_aisatu_local
- 0x80429CD0: aHN0_normal_wait_init
- 0x80429D08: aHN0_move_init
- 0x80429D5C: aHN0_turn_f_init
- 0x80429DB8: aHN0_saisen_init
- 0x80429E74: aHN0_omairi_af_init
- 0x80429ED0: aHN0_turn_move_init
- 0x80429F08: aHN0_next_pos_init
- 0x8042A00C: aHN0_move_bf_init
- 0x8042A060: aHN0_turn_aisatu_init
- 0x8042A110: aHN0_aisatu_init
- 0x8042A164: aHN0_aisatu2_init
- 0x8042A1B8: aHN0_haigo_init
- 0x8042A21C: aHTMD_clip_think_init
- 0x8042A2B8: House_Clock_Actor_no_draw
- 0x8042A2BC: aHC_dummy
- 0x8042A2C0: aHC_SetClockNum
- 0x8042A354: aHC_InitClockAnimation
- 0x8042A3D8: House_Clock_Actor_ct
- 0x8042A470: House_Clock_Actor_dt
- 0x8042A49C: aHC_SetEnvMapping
- 0x8042A52C: aHC_DrawClockBefore
- 0x8042A568: aHC_DrawClockAfter
- 0x8042A75C: aHC_DrawClock
- 0x8042A824: House_Clock_Actor_draw
- 0x8042A868: aHC_OperateAnime
- 0x8042A920: House_Clock_Actor_move
- 0x8042A97C: aID_actor_ct
- 0x8042AA88: aID_actor_dt
- 0x8042AADC: aID_change_player_demo_standing_train
- 0x8042AB18: aID_set_first_field_bgm
- 0x8042AB60: aID_check_set_first_field_bgm
- 0x8042ABAC: aID_first_set
- 0x8042AC0C: aID_train_birth_wait
- 0x8042AC80: aID_ride_train
- 0x8042ACDC: aID_ride_off_player
- 0x8042AD5C: aID_walk_one_unit
- 0x8042ADE0: aID_go_out_of_station
- 0x8042AE64: aID_birth_rcn_guide
- 0x8042AFE4: aID_first_talk_end_wait
- 0x8042B01C: aID_walk_after_rcn_guide
- 0x8042B0B4: aID_decide_house
- 0x8042B0E4: aID_retire_rcn_guide_wait
- 0x8042B1F8: aID_first_job
- 0x8042B27C: aID_first_set_init
- 0x8042B2C8: aID_train_birth_wait_init
- 0x8042B35C: aID_ride_off_player_init
- 0x8042B3F0: aID_walk_one_unit_init
- 0x8042B43C: aID_go_out_of_station_init
- 0x8042B47C: aID_walk_after_rcn_guide_init
- 0x8042B4C0: aID_decide_house_init
- 0x8042B4EC: aID_retire_rcn_guide_wait_init
- 0x8042B540: aID_first_job_init
- 0x8042B5C8: aID_init_proc
- 0x8042B5FC: aID_setupAction
- 0x8042B634: aID_actor_move
- 0x8042B65C: Kamakura_Indoor_Actor_ct
- 0x8042B720: Kamakura_Indoor_Actor_dt
- 0x8042B744: aKI_DrawKamakuraIndoorCandleRing
- 0x8042B8BC: aKI_MakePrimEnvColorXluDisp
- 0x8042B958: aKI_DrawKamakuraIndoorBG
- 0x8042BBDC: Kamakura_Indoor_Actor_draw
- 0x8042BC20: aKI_MakeSinPointHalf
- 0x8042BD84: Kamakura_Indoor_Actor_move
- 0x8042C018: aLS_CheckLightHousePeriod
- 0x8042C060: aLS_NiceSwitchOnTime
- 0x8042C090: aLS_GetNiceStatus
- 0x8042C0D0: aLS_RequestPoleToStop
- 0x8042C11C: aLS_RequestPoleToMove
- 0x8042C180: aLS_RequestSwitchON
- 0x8042C1D8: aLS_RequestSwitchOFF
- 0x8042C230: aLS_PoleCt
- 0x8042C320: aLS_SwitchCt
- 0x8042C3F4: Lighthouse_Switch_Actor_ct
- 0x8042C4EC: Lighthouse_Switch_Actor_dt
- 0x8042C51C: aLS_PoleDrawBefore
- 0x8042C534: aLS_PoleDrawAfter
- 0x8042C5B4: aLS_MakePrimcolorDisplayList
- 0x8042C608: aLS_MakeRoomPrimcolorDisplayList
- 0x8042C660: aLS_PoleDraw
- 0x8042C774: aLS_SwitchDraw
- 0x8042C868: Lighthouse_Switch_Actor_draw
- 0x8042C8B0: aLS_GetNowPoleAnimeSpeed
- 0x8042CDB8: aLS_PolePlayKeyAnime
- 0x8042CE04: aLS_PoleMove
- 0x8042CE48: aLS_SwitchMove
- 0x8042CF30: aLS_CheckPlayerSwitchPositionAngle
- 0x8042D028: aLS_CheckPlayerAction
- 0x8042D118: aLS_AutoSwitch
- 0x8042D19C: Lighthouse_Switch_Actor_move
- 0x8042D200: aMBX_actor_ct
- 0x8042D2E0: aMBX_actor_dt
- 0x8042D304: aMBX_actor_draw_before
- 0x8042D350: aMBX_actor_draw
- 0x8042D4A0: aMBX_anime_proc
- 0x8042D4E0: aMBX_setup_flag_anime
- 0x8042D570: aMBX_check_take_mail
- 0x8042D6B4: aMBX_check_flag
- 0x8042D74C: aMBX_setup_flag_se_sub
- 0x8042D79C: aMBX_setup_flag_se
- 0x8042D80C: aMBX_wait
- 0x8042D8AC: aMBX_pl_wait
- 0x8042D950: aMBX_open_and_close
- 0x8042DA14: aMBX_pl_open
- 0x8042DA98: aMBX_pl_close
- 0x8042DB0C: aMBX_setupAction
- 0x8042DBA4: aMBX_actor_move
- 0x8042DBF8: aMBX_actor_init
- 0x8042DCA0: Mbg_Actor_ct
- 0x8042DD4C: Mbg_Actor_dt
- 0x8042DD70: Mbg_Actor_draw
- 0x8042DE2C: Mbg_Actor_move
- 0x8042DEC8: aMSN_SetDustclothSwitch
- 0x8042DEEC: aMSN_RequestDustclothMove
- 0x8042DF10: aMSN_RequestDustclothStop
- 0x8042DF34: aMSN_DustclothCT
- 0x8042E0B8: aMSN_SetMisinStatus
- 0x8042E0DC: aMSN_RequestMisinStop
- 0x8042E100: aMSN_ReqeustMisinMove
- 0x8042E124: aMSN_MisinCT
- 0x8042E1C4: aMSN_SetClipInfo
- 0x8042E210: Misin_Actor_ct
- 0x8042E264: Misin_Actor_dt
- 0x8042E2C0: aMSN_DrawDustcloth
- 0x8042E420: aMSN_DrawMisinBefore
- 0x8042E438: aMSN_DrawMisinAfter
- 0x8042E51C: aMSN_MakeBeltGFX
- 0x8042E570: aMSN_DrawMisin
- 0x8042E670: Misin_Actor_draw
- 0x8042E6B8: aMSN_MoveDustcloth
- 0x8042E8AC: aMSN_SetNeedleOffsetPosition
- 0x8042E98C: aMSN_MoveMisin
- 0x8042EA90: Misin_Actor_move
- 0x8042EAE0: Mural_Actor_ct
- 0x8042EB74: Mural_Actor_dt
- 0x8042EB78: Mural_Actor_move
- 0x8042EC28: Mural_Actor_draw
- 0x8042EDC0: Museum_Fossil_Actor_ct
- 0x8042EDC4: Museum_Fossil_Actor_dt
- 0x8042EDC8: Museum_Fossil_Actor_draw
- 0x8042EDCC: aMF_SetTalkInfo
- 0x8042EE24: Museum_Fossil_Actor_move
- 0x8042F170: Museum_Picture_Actor_ct
- 0x8042F174: Museum_Picture_Actor_dt
- 0x8042F178: aMP_DrawOneArt
- 0x8042F29C: Museum_Picture_Actor_draw
- 0x8042F328: aMP_CheckTalkAble
- 0x8042F450: aMP_CheckTalkAbleDist
- 0x8042F524: aMP_SetTalkInfo
- 0x8042F57C: Museum_Picture_Actor_move
- 0x8042F7FC: Museum_Fish_Prv_data_init
- 0x8042F96C: Museum_Fish_Actor_ct
- 0x8042FBE0: Museum_Fish_Actor_dt
- 0x8042FC00: Museum_Fish_GetMsgNo
- 0x8042FD14: Museum_Fish_Check_Talk_Distance
- 0x8042FDEC: Museum_Fish_Set_MsgFishInfo
- 0x8042FEB0: Museum_Fish_set_talk_info
- 0x8042FF30: Museum_Fish_Talk_process
- 0x804300B4: Museum_Fish_Actor_move
- 0x8043087C: Museum_Fish_Suisou_draw
- 0x80430B40: kusa_before_disp
- 0x80430C74: Museum_Fish_Kusa_Draw
- 0x80430DA8: Museum_Fish_Actor_draw
- 0x80431038: mfish_cull_check
- 0x804310EC: mfish_point_ligh_pos_get
- 0x80431430: mfish_point_light_ct
- 0x804314D8: mfish_point_light_dt
- 0x80431538: mfish_point_light_mv
- 0x80431650: mfish_normal_light_set
- 0x804316D0: Rnd_EX_f
- 0x80431840: Rnd_EX_fx
- 0x804319A4: mfish_base_FishMove
- 0x80431BE0: mfish_PosWallCheck
- 0x80431CD4: mfish_WallCheck
- 0x80431DF0: mfish_get_hide_camera_angle
- 0x80431F1C: mfish_dummy_process_init
- 0x80431FDC: mfish_dummy_process
- 0x80432378: mfish_normal_process_init
- 0x804325F8: mfish_normal_process
- 0x80432BD8: mfish_turn_process_init
- 0x80432DF4: mfish_turn_process
- 0x804332D4: mfish_peck_process_init
- 0x80433520: mfish_peck_process
- 0x80433BA4: mfish_ground_peck_process_init
- 0x80433D70: mfish_ground_peck_process
- 0x80434068: mfish_base_ct
- 0x80434184: mfish_base_mv
- 0x804345F0: mfish_onefish_ct
- 0x804346E4: mfish_onefish_mv
- 0x80434708: mfish_before_disp
- 0x804347EC: mfish_onefish_dw
- 0x8043497C: mfish_ani_base_ct
- 0x804349D4: mfish_ani_base_mv
- 0x80434BD4: mfish_ani_base_dw
- 0x80434BF4: Museum_Fish_BigFishObjCheck
- 0x804351D4: Museum_Fish_ObjBGCheck
- 0x8043566C: Museum_Fish_DonkoBGCheck
- 0x80435D00: Museum_Fish_objchk_pos_set
- 0x80435D78: Museum_Fish_BGCheck
- 0x80436528: Museum_Fish_Kusa_Check
- 0x804369D8: Museum_Fish_Object_Check
- 0x80437178: mfish_body_wind_anime_play
- 0x804372A4: mfish_get_player_angle
- 0x80437404: mfish_peck_check
- 0x804374DC: mfish_peck_wall_check
- 0x80437580: mfish_ground_peck_before_check
- 0x80437748: mfish_get_player_area
- 0x8043788C: mfish_get_flow_vec
- 0x8043818C: mfish_get_escape_angle
- 0x80438300: mfish_move_smooth
- 0x80438850: mfish_hamon_make
- 0x80438944: mfish_afish_ct
- 0x804389B0: mfish_afish_dummy_process_init
- 0x80438B0C: mfish_afish_dummy_process
- 0x80438E48: mfish_afish_normal_process_init
- 0x804390D4: mfish_afish_normal_process
- 0x80439654: mfish_afish_turn_process_init
- 0x8043986C: mfish_afish_turn_process
- 0x80439D44: mfish_afish_base_FishMove
- 0x80439FFC: mfish_afish_base_mv
- 0x8043A3B4: mfish_afish_mv
- 0x8043A494: mfish_afish_dw
- 0x8043A4B4: mfish_aroana_ct
- 0x8043A50C: mfish_aroana_dummy_process_init
- 0x8043A534: mfish_aroana_dummy_process
- 0x8043A7C4: mfish_aroana_normal_process_init
- 0x8043AA14: mfish_aroana_normal_process
- 0x8043B088: mfish_aroana_turn_process_init
- 0x8043B2A0: mfish_aroana_turn_process
- 0x8043B774: mfish_aroana_long_move_process_init
- 0x8043B7B0: mfish_aroana_long_move_process
- 0x8043BA58: mfish_aroana_base_FishMove
- 0x8043BD50: mfish_aroana_base_mv
- 0x8043C0F0: mfish_aroana_mv
- 0x8043C170: mfish_aroana_before_disp
- 0x8043C310: mfish_aroana_dw
- 0x8043C408: mfish_koi_tail_anim_set
- 0x8043C520: mfish_koi_move_smooth
- 0x8043CA34: mfish_koi_ct
- 0x8043CAA0: mfish_koi_dummy_process_init
- 0x8043CBFC: mfish_koi_dummy_process
- 0x8043CF94: mfish_koi_normal_process_init
- 0x8043D23C: mfish_koi_normal_process
- 0x8043D7F8: mfish_koi_turn_process_init
- 0x8043DA04: mfish_koi_turn_process
- 0x8043DF00: mfish_koi_peck_process_init
- 0x8043E15C: mfish_koi_peck_process
- 0x8043E710: mfish_koi_long_move_process_init
- 0x8043E778: mfish_koi_long_move_process
- 0x8043E9EC: mfish_koi_base_FishMove
- 0x8043ED34: mfish_koi_base_mv
- 0x8043F12C: mfish_koi_mv
- 0x8043F3CC: mfish_koi_before_disp
- 0x8043F570: mfish_koi_dw
- 0x8043F6F8: mfish_kaseki_ct
- 0x8043F834: mfish_kaseki_normal_init
- 0x8043F8C4: mfish_kaseki_normal
- 0x804402F4: mfish_kaseki_move_wall_smooth
- 0x8044042C: mfish_kaseki_mv
- 0x80440924: mfish_kaseki_before_disp
- 0x80440EDC: mfish_kaseki_dw
- 0x80440FCC: mfish_bass_tail_anim_set
- 0x80441018: mfish_bass_base_FishMove
- 0x80441360: mfish_bass_dummy_process_init
- 0x80441468: mfish_bass_dummy_process
- 0x804417AC: mfish_bass_normal_process_init
- 0x80441B8C: mfish_bass_normal_process
- 0x80442448: mfish_bass_turn_process_init
- 0x804426EC: mfish_bass_turn_process
- 0x80442C04: mfish_bass_ct
- 0x80442C9C: mfish_bass_mv
- 0x80443230: mfish_bass_dw
- 0x804433B8: mfish_seafish_ct
- 0x80443504: mfish_seafish_normal_init
- 0x804435B8: mfish_seafish_normal
- 0x80443E90: mfish_seafish_turn_init
- 0x80443F5C: mfish_seafish_turn
- 0x80444238: mfish_seafish_mv
- 0x804445DC: mfish_seafish_before_disp
- 0x80444880: mfish_seafish_dw
- 0x80444970: mfish_tai_ct
- 0x80444AAC: mfish_tai_normal_init
- 0x80444B58: mfish_tai_normal
- 0x80445590: mfish_tai_turn_init
- 0x80445644: mfish_tai_turn
- 0x80445A74: mfish_tai_mv
- 0x804461C4: mfish_tai_before_disp
- 0x804462E0: mfish_tai_dw
- 0x804463D0: mfish_small_fish_ct
- 0x80446550: mfish_sfish_normal_init
- 0x804465CC: mfish_sfish_normal
- 0x80446C8C: mfish_sfish_turn_init
- 0x80446D54: mfish_sfish_turn
- 0x804470C8: mfish_small_fish_mv
- 0x80447674: mfish_sfish_before_disp
- 0x80447798: mfish_small_fish_dw
- 0x804478F8: mfish_gupi_ct
- 0x80447A78: mfish_gupi_normal_init
- 0x80447AC4: mfish_gupi_normal
- 0x80448168: mfish_gupi_turn_init
- 0x804481B0: mfish_gupi_turn
- 0x80448524: mfish_gupi_mv
- 0x80448CD8: mfish_gupi_before_disp
- 0x80448FF4: mfish_gupi_dw
- 0x80449154: mfish_medaka_ct
- 0x804492D4: mfish_medaka_normal_init
- 0x80449350: mfish_medaka_normal
- 0x804499BC: mfish_medaka_turn_init
- 0x80449A04: mfish_medaka_turn
- 0x80449D78: mfish_medaka_mv
- 0x8044A220: mfish_medaka_before_disp
- 0x8044A344: mfish_medaka_dw
- 0x8044A4E0: mfish_kingyo_ct
- 0x8044A688: mfish_kingyo_normal_init
- 0x8044A6D4: mfish_kingyo_normal
- 0x8044AD6C: mfish_kingyo_turn_init
- 0x8044ADB4: mfish_kingyo_turn
- 0x8044B0F0: mfish_kingyo_peck_init
- 0x8044B17C: mfish_kingyo_peck
- 0x8044B758: mfish_kingyo_mv
- 0x8044BF24: mfish_kingyo_before_disp
- 0x8044C2C4: mfish_kingyo_dw
- 0x8044C460: mfish_dojou_ct
- 0x8044C5F4: mfish_dojou_normal_init
- 0x8044C640: mfish_dojou_normal
- 0x8044CB7C: mfish_dojou_turn_init
- 0x8044CBC4: mfish_dojou_turn
- 0x8044CFC0: mfish_dojou_mv
- 0x8044D7A0: mfish_dojou_before_disp
- 0x8044D970: mfish_dojou_dw
- 0x8044DB08: mfish_donko_ct
- 0x8044DCBC: mfish_donko_mv
- 0x8044E448: mfish_donko_before_disp
- 0x8044E530: mfish_donko_dw
- 0x8044E654: mfish_big_fish_ct
- 0x8044E7F0: mfish_big_fish_mv
- 0x8044FA68: mfish_bfish_before_disp
- 0x8044FFBC: mfish_big_fish_dw
- 0x804500AC: mfish_ito_ct
- 0x804501D0: mfish_ito_mv
- 0x80450BBC: mfish_ito_before_disp
- 0x80450FA4: mfish_ito_dw
- 0x8045109C: mfish_unagi_ct
- 0x80451214: mfish_unagi_get_next_rail_type
- 0x80451278: mfish_unagi_aim_wind_angle_calc
- 0x804515EC: mfish_unagi_rail_move_init
- 0x804517A0: mfish_unagi_rail_move
- 0x80451B88: mfish_unagi_normal_to_reverse_init
- 0x80451D30: mfish_unagi_normal_to_reverse
- 0x804520C8: mfish_unagi_rail_move_reverse_init
- 0x80452294: mfish_unagi_rail_move_reverse
- 0x80452684: mfish_unagi_reverse_to_normal_init
- 0x80452830: mfish_unagi_reverse_to_normal
- 0x80452BD4: mfish_unagi_mv
- 0x80453580: mfish_unagi_before_disp
- 0x80453B8C: mfish_unagi_dw
- 0x80453C8C: mfish_namazu_ct
- 0x80453D90: mfish_namazu_body_wind_anime_play
- 0x80453E38: mfish_namazu_normal_process_init
- 0x80454040: mfish_namazu_normal_process
- 0x8045454C: mfish_namazu_dummy_process_init
- 0x80454614: mfish_namazu_dummy_process
- 0x8045496C: mfish_namazu_turn_process_init
- 0x80454B04: mfish_namazu_turn_process
- 0x80454EAC: mfish_namazu_ground_sweep_process_init
- 0x80454FC4: mfish_namazu_ground_sweep_process
- 0x804554C8: mfish_namazu_base_FishMove
- 0x804556AC: mfish_namazu_mv
- 0x80455C68: mfish_namazu_before_disp
- 0x80455F90: mfish_namazu_dw
- 0x80456080: mfish_zarigani_ct
- 0x804561D8: mfish_zarigani_normal_process_init
- 0x804561E8: mfish_zarigani_normal_process
- 0x8045683C: mfish_zarigani_wait_process_init
- 0x8045684C: mfish_zarigani_wait_process
- 0x80456A5C: mfish_zarigani_stand_process_init
- 0x80456B18: mfish_zarigani_stand_process
- 0x80456F4C: mfish_zarigani_jump_process_init
- 0x80457008: mfish_zarigani_jump_process
- 0x80457400: mfish_zarigani_mv
- 0x804575C0: mfish_zarigani_before_disp
- 0x80457914: mfish_zarigani_dw
- 0x80457A30: mfish_kurage_ct
- 0x80457BB4: mfish_kurage_normal_init
- 0x80457C4C: mfish_kurage_normal
- 0x80457F58: mfish_kurage_turn_init
- 0x8045801C: mfish_kurage_turn
- 0x804580DC: mfish_kurage_mv
- 0x80458EA4: mfish_kurage_dw
- 0x80459244: mfish_hasu_ct
- 0x804592AC: mfish_hasu_mv
- 0x804592CC: mfish_hasu_dw
- 0x804593FC: mfish_kaeru_ct
- 0x80459598: mfish_kaeru_mv
- 0x80459EF4: hasu_before_disp
- 0x80459FA0: hasu_after_disp
- 0x8045A010: mfish_kaeru_dw
- 0x8045A200: aMI_AlphaToON
- 0x8045A248: aMI_AlphaToOFF
- 0x8045A290: aMI_GetThisSceneCullIndex
- 0x8045A2D4: Museum_Indoor_Actor_ct
- 0x8045A310: Museum_Indoor_Actor_dt
- 0x8045A314: Museum_Indoor_Actor_draw
- 0x8045A440: aMI_SetAlpha
- 0x8045A500: Museum_Indoor_Actor_move
- 0x8045A520: Museum_Insect_GetMsgNo
- 0x8045A62C: Museum_Insect_Check_Talk_Distance
- 0x8045A704: Museum_Insect_Set_MsgInsectInfo
- 0x8045A7B8: Museum_Insect_set_talk_info
- 0x8045A840: Museum_Insect_Talk_process
- 0x8045A9C0: Museum_Insect_Actor_ct
- 0x8045AA9C: Museum_Insect_Actor_dt
- 0x8045AAA0: Museum_Insect_Actor_move
- 0x8045AB30: Museum_Insect_Actor_draw
- 0x8045ACCC: mID_insect_moveF
- 0x8045AD2C: minsect_amenbo_ct
- 0x8045ADFC: minsect_amenbo_mv
- 0x8045B1B0: minsect_amenbo_dw
- 0x8045B2A8: ari_alone_ct
- 0x8045B3A4: ari_alone_make
- 0x8045B3E4: ari_alone_dt
- 0x8045B3F4: ari_alone_move
- 0x8045B7A0: ari_alone_draw
- 0x8045B868: minsect_ari_ct
- 0x8045B8F0: minsect_ari_mv
- 0x8045B9AC: minsect_ari_dw
- 0x8045BA18: minsect_draw_shadow
- 0x8045BC80: minsect_fly_BGCheck
- 0x8045BD10: minsect_garden_BGCheck
- 0x8045BDD8: minsect_flower_BGCheck
- 0x8045BF44: minsect_goki_BGCheck
- 0x8045C17C: minsect_kanban_BGCheck
- 0x8045C23C: minsect_tree_ObjCheck
- 0x8045C3BC: minsect_rock_ObjCheck
- 0x8045C53C: minsect_batta_ObjCheck
- 0x8045C760: get_now_mind_flag
- 0x8045C7EC: set_relax_active_time
- 0x8045C974: minsect_chou_ct
- 0x8045CBDC: minsect_chou_normal_process_init
- 0x8045CBEC: minsect_chou_normal_process
- 0x8045CE30: minsect_chou_aim_flower_process_init
- 0x8045CF48: minsect_chou_aim_flower_process
- 0x8045D2FC: minsect_chou_flower_process_init
- 0x8045D360: minsect_chou_flower_process
- 0x8045D9FC: minsect_chou_fly_process_init
- 0x8045DADC: minsect_chou_fly_process
- 0x8045DD84: minsect_chou_mv
- 0x8045DF7C: minsect_chou_dw
- 0x8045E128: minsect_semi_ct
- 0x8045E1DC: mi_semi_hane_anime
- 0x8045E2C0: mi_semi_check_player
- 0x8045E390: minsect_semi_mv
- 0x8045E654: minsect_semi_dw
- 0x8045E86C: minsect_tonbo_ct
- 0x8045EA48: mi_tonbo_check_player
- 0x8045EB18: minsect_tonbo_bg_check
- 0x8045ED88: minsect_tonbo_near_target_set
- 0x8045EE5C: minsect_tonbo_rock_target_set
- 0x8045F0B0: minsect_tonbo_suprised_rest_player
- 0x8045F0F0: minsect_tonbo_acc_change
- 0x8045F1BC: minsect_tonbo_max_speed_set
- 0x8045F2A8: minsect_tonbo_aim_distance_set
- 0x8045F3FC: minsect_tonbo_aim_angle_check
- 0x8045F5BC: minsect_tonbo_normal_process_init
- 0x8045F640: minsect_tonbo_normal_process
- 0x8045FBE4: minsect_tonbo_aim_rock_process_init
- 0x8045FD08: minsect_tonbo_aim_rock_process
- 0x804602C8: minsect_tonbo_rock_process_init
- 0x80460338: minsect_tonbo_rock_process
- 0x804608E8: minsect_tonbo_rock_wait_process_init
- 0x8046094C: minsect_tonbo_rock_wait_process
- 0x80460B90: minsect_tonbo_fly_process_init
- 0x80460D18: minsect_tonbo_fly_process
- 0x80460F14: minsect_tonbo_mv
- 0x80461078: minsect_tonbo_dw
- 0x804613A8: minsect_tonbo_MoveF
- 0x8046148C: mi_batta_check_player
- 0x8046155C: mi_batta_suzumushi_hane_anime
- 0x80461640: mi_batta_hane_anime
- 0x80461724: minsect_batta_ct
- 0x80461840: minsect_batta_normal_process_init
- 0x80461A00: minsect_batta_normal_process
- 0x80461C70: minsect_batta_silent_process_init
- 0x80461D08: minsect_batta_silent_process
- 0x80461D80: minsect_batta_jump_wait_process_init
- 0x80461E00: minsect_batta_jump_wait_process
- 0x80461E34: minsect_batta_jump_process_init
- 0x80461EC8: minsect_batta_jump_process
- 0x80461F64: minsect_batta_mv
- 0x8046230C: minsect_batta_dw
- 0x804624A0: mi_tentou_check_player
- 0x80462570: mi_tentou_kama_anime
- 0x8046267C: mi_tentou_wait_init
- 0x80462788: mi_tentou_wait
- 0x80462BB8: mi_tentou_move_init
- 0x80462C40: mi_tentou_move
- 0x8046331C: mi_tentou_menace_init
- 0x8046343C: mi_tentou_menace
- 0x80463C8C: mi_tentou_setupAction
- 0x80463CD4: minsect_tentou_ct
- 0x80463F14: minsect_tentou_mv
- 0x80463FBC: minsect_tentou_dw
- 0x804640F0: mi_hachi_hane_anime
- 0x804641FC: mi_hachi_mitu_init
- 0x8046420C: mi_hachi_mitu
- 0x80464438: mi_hachi_wait_init
- 0x8046449C: mi_hachi_wait
- 0x80464748: mi_hachi_move_init
- 0x80464794: mi_hachi_move
- 0x80464B34: mi_hachi_setupAction
- 0x80464B7C: minsect_hachi_ct
- 0x80464C54: minsect_hachi_mv
- 0x804651CC: minsect_hachi_dw
- 0x804654EC: minsect_kabuto_ct
- 0x80465640: minsect_kabuto_mv
- 0x80465DAC: minsect_kabuto_dw
- 0x80465F38: mi_kuwagata_rensa_init
- 0x80465F44: mi_kuwagata_rensa
- 0x80466064: mi_kuwagata_wait_init
- 0x804660D4: mi_kuwagata_wait
- 0x804663AC: mi_kuwagata_move_init
- 0x804663B0: mi_kuwagata_move
- 0x804663B4: mi_kuwagata_battle_init
- 0x80466438: mi_kuwagata_battle
- 0x804669E0: mi_kuwagata_menace_init
- 0x80466ABC: mi_kuwagata_menace
- 0x80466FB8: mi_kuwagata_attack_init
- 0x80466FBC: mi_kuwagata_attack
- 0x80466FC0: mi_kuwagata_setupAction
- 0x80467008: minsect_kuwagata_ct
- 0x80467328: minsect_kuwagata_mv
- 0x80467350: minsect_kuwagata_dw
- 0x804674C8: minsect_mino_up_init
- 0x80467534: minsect_mino_up
- 0x8046765C: minsect_mino_down_init
- 0x80467720: minsect_mino_down
- 0x80467B40: minsect_mino_move_init
- 0x80467B44: minsect_mino_move
- 0x80467E98: minsect_mino_check_dush_player
- 0x80467F4C: minsect_mino_furiko
- 0x80468370: minsect_mino_wait_init
- 0x804683BC: minsect_mino_wait
- 0x804684BC: minsect_mino_hineri
- 0x8046871C: minsect_mino_setupAction
- 0x80468764: minsect_mino_ct
- 0x80468880: minsect_mino_mv
- 0x80468AB4: minsect_mino_dw
- 0x80468F9C: minsect_kumo_hide_init
- 0x80468FAC: minsect_kumo_hide
- 0x80468FE8: minsect_kumo_up_init
- 0x80469054: minsect_kumo_up
- 0x80469114: minsect_kumo_down_init
- 0x804691E4: minsect_kumo_down
- 0x80469574: minsect_kumo_move_init
- 0x80469578: minsect_kumo_move
- 0x804698CC: minsect_kumo_check_player
- 0x80469970: minsect_kumo_furiko
- 0x80469D94: minsect_kumo_wait_init
- 0x80469DE0: minsect_kumo_wait
- 0x80469EE0: minsect_kumo_hineri
- 0x80469FB0: minsect_kumo_setupAction
- 0x80469FF8: minsect_kumo_ct
- 0x8046A114: minsect_kumo_mv
- 0x8046A338: minsect_kumo_dw
- 0x8046A8A4: minsect_goki_ct
- 0x8046A9C4: goki_player_check
- 0x8046AA90: goki_wall_hit_angle_corect_sub
- 0x8046AC0C: goki_wall_hit_angle_corect
- 0x8046AC78: goki_set_talk_info_init
- 0x8046AD28: goki_talk_process
- 0x8046AD98: goki_talk_process_init
- 0x8046ADE8: minsect_goki_mv
- 0x8046B2D0: minsect_goki_dw
- 0x8046B430: mi_genji_check_player
- 0x8046B56C: genji_light_ct
- 0x8046B6BC: genji_light_make
- 0x8046B844: genji_light_anime
- 0x8046BBA8: genji_light_move
- 0x8046C080: genji_light_draw
- 0x8046C2B4: minsect_genji_ct
- 0x8046C330: minsect_genji_mv
- 0x8046C908: minsect_genji_dw
- 0x8046CAC4: mi_dango_defence_anime
- 0x8046CB58: mi_dango_check_player
- 0x8046CC28: mi_dango_move_init
- 0x8046CC74: mi_dango_move
- 0x8046CFEC: mi_dango_defence_init
- 0x8046D054: mi_dango_defence
- 0x8046D104: mi_dango_setupAction
- 0x8046D14C: minsect_dango_ct
- 0x8046D310: minsect_dango_mv
- 0x8046D410: minsect_dango_dw
- 0x8046D6C0: mi_okera_check_player
- 0x8046D790: minsect_okera_ct
- 0x8046D7B0: okera_dig_up_process_init
- 0x8046D954: okera_dig_up_process
- 0x8046D9D8: okera_normal_process_init
- 0x8046DA6C: okera_normal_process
- 0x8046DFC4: okera_dig_down_process_init
- 0x8046DFE4: okera_dig_down_process
- 0x8046E224: okera_dig_wait_process_init
- 0x8046E298: okera_dig_wait_process
- 0x8046E374: minsect_okera_mv
- 0x8046E4B4: minsect_okera_dw
- 0x8046E67C: minsect_ka_ct
- 0x8046E7D0: minsect_ka_mv
- 0x8046ECE8: minsect_ka_dw
- 0x8046EE38: aMI_GetPlayerRoomIdx
- 0x8046EE78: aMI_SucureBank
- 0x8046EE9C: aMI_GetMyIndoorBank
- 0x8046EF28: aMI_CopyFloorTexture
- 0x8046F02C: aMI_CopyWallTexture
- 0x8046F12C: aNI_SetFloorSE
- 0x8046F17C: aMI_MyIndoorDma
- 0x8046F208: aMI_SetClipProc
- 0x8046F28C: aMR_GetSceneRoomKind
- 0x8046F2D0: aMI_CheckFloorWallIndex
- 0x8046F32C: aMI_MakeStepData
- 0x8046F3E0: aMI_InitActorMember
- 0x8046F4E8: My_Indoor_Actor_ct
- 0x8046F544: My_Indoor_Actor_dt
- 0x8046F5B8: aMI_DrawMyStep
- 0x8046F6E0: aMI_DrawMyFloor
- 0x8046F84C: aMI_DrawMyOriginalFloor
- 0x8046F9E8: aMI_DrawMyWall
- 0x8046FB20: aMI_DrawMyOriginalWall
- 0x8046FC84: My_Indoor_Actor_draw
- 0x8046FD04: aMI_Change2ReservedWall
- 0x8046FE00: aMI_Change2ReservedFloor
- 0x8046FF00: My_Indoor_Actor_move
- 0x8046FF44: aMI_ChangeCarpet
- 0x8046FFF0: aMI_FloorIdx2ChangeFloor
- 0x8047009C: aMI_ChangeWall
- 0x80470148: aMI_WallIdx2ChangeWall
- 0x804701F4: aMI_Change2Default
- 0x80470220: aMI_IndoorDmaAgain
- 0x80470288: aMR_GetFurnitureProfile
- 0x804702C4: aMR_GetItemCountInFurniture
- 0x804702F8: aMR_TidyItemInFurniture
- 0x80470360: aMR_ItemPutInFurniture
- 0x8047039C: aMR_ItemNo2IconNo
- 0x80470474: aMR_IconNo2Gfx1
- 0x804704A4: aMR_IconNo2Gfx2
- 0x804704D8: aMR_GetLayerTopFg
- 0x80470508: aMR_GetBitSwitchTable
- 0x804705E8: aMR_GetHaniwaStepSaveData
- 0x804706AC: aMR_ClearBitSwitch
- 0x804706C0: aMR_GetSwitchBit
- 0x8047085C: aMR_GetHaniwaStep
- 0x80470998: aMR_OperateSwitchBit
- 0x804709BC: aMR_SaveHaniwaStepData
- 0x80470AFC: aMR_SaveOneFtrSwitchData
- 0x80470BE8: aMR_SaveSwitchData
- 0x80470CC0: aMR_CountFriendFurniture
- 0x80470D7C: aMR_GetWeight
- 0x80470D84: aMR_PlussWeight
- 0x80470DC0: aMR_MinusWeight
- 0x80470DFC: aMR_WeightPossible
- 0x80470E50: aMR_CheckFurnitureBankExist
- 0x80470E70: aMR_GetFtrBankID
- 0x80470E94: aMR_BankNo2BankAddress
- 0x80470EB8: aMR_FtrNo2BankAddress
- 0x80470EDC: aMR_SearchFurnitureBankVacancy
- 0x80470F50: aMR_SearchFreeFurnitureBankIdx
- 0x80470FB8: aMR_SearchFreeFurnitureActorNumber
- 0x80470FF8: aMR_CountAppointFurniture
- 0x80471050: aMR_CountFurniture
- 0x8047109C: aMR_UnitNumber2Position
- 0x80471138: aMR_Wpos2PlaceNumber
- 0x804711CC: aMR_GetLayerPlaceTable
- 0x80471208: aMR_Direct2PlussUnit
- 0x80471288: aMR_GetTypeBPlaceInfo
- 0x8047136C: aMR_SetInfoFurnitureTable
- 0x8047143C: aMR_SetFurnitureType
- 0x804714AC: aMR_SetFirstScale
- 0x8047154C: aMR_DeleteFurnitureBank
- 0x80471594: aMR_InitHaniwaOnTable
- 0x804715B4: aMR_GetHaniwaSwitchVac
- 0x804715E4: aMR_TidyHaniwaOnTable
- 0x8047164C: aMR_HaniwaOffReport
- 0x804716A4: aMR_ClearHaniwaSwitch
- 0x804716D4: aMR_HaniwaSwitchOn
- 0x80471780: aMR_SetSwitchStepData
- 0x804718BC: aMR_SystemAnimeCt_UniqueCt
- 0x8047197C: aMR_RegistMoveBg
- 0x80471A68: aMR_MiniDiskCommonCt
- 0x80471C08: aMR_MiniDiskCommonDt
- 0x80471C90: aMR_RadioCommonCt
- 0x80471CD8: aMR_RadioCommonDt
- 0x80471D44: aMR_ChangeMDBgm
- 0x80471E6C: aMR_ReserveBgm
- 0x80471E84: aMR_ReserveDefaultBgm
- 0x80471EA4: aMR_AllMDSwitchOff
- 0x80471F38: aMR_OneMDSwitchOn_TheOtherSwitchOff
- 0x80471F70: aMR_Status2MoveBgCollisionScale
- 0x80471F9C: aMR_FurnitureCt
- 0x804721F0: aMR_DmaFurniture_Common
- 0x8047229C: aMR_GetFurnitureBank
- 0x80472310: aMR_GetFurnitureBank2
- 0x80472374: aMR_MakeOneFurniture
- 0x80472470: aMR_MakeFurnitureActor
- 0x804724F8: aMR_InitFurnitureActorExistTable
- 0x80472528: aMR_InitFurnitureBankTable
- 0x8047254C: aMR_InitDummyKeyAnime
- 0x8047258C: aMR_GetBankSitu
- 0x804725E0: aMR_SecureFurnitureBank
- 0x804726E4: aMR_GetSceneFurnitureMax
- 0x80472730: aMR_SecureFurnitureRam
- 0x8047279C: aMR_InitFurnitureTable
- 0x804727FC: aMR_SetClip
- 0x80472974: aMR_MakeItemDataInFurniture
- 0x80472ADC: aMR_ClearSwitchSaveData
- 0x80472B54: aMR_NowSceneWaltzTempo
- 0x80472BF4: aMR_GetSavedWaltzTempo
- 0x80472C18: aMR_SaveWaltzTempo
- 0x80472C6C: aMR_SaveWaltzTempo2
- 0x80472CC4: aMR_CheckRoomOwner
- 0x80472CF8: aMR_MakeRoomInfo
- 0x80472D84: aMR_OneMDFurnitureSwitchOn
- 0x80472E2C: aMR_InitFurnitureWork
- 0x80472E7C: aMR_DeleteMusicWhichMusicBoxDontHave
- 0x80472FBC: aMR_SetMDIslandNPC
- 0x8047308C: My_Room_Actor_ct
- 0x80473200: aMR_FreeMallocBank
- 0x80473270: aMR_FreeHeapArea
- 0x804732F0: aMR_KeepItem2Fg
- 0x804733B8: aMR_AllFurnitureDestruct
- 0x804734C8: aMR_LeafPickuped
- 0x804734F8: aMR_PickupFtrLayer
- 0x8047352C: aMR_LeafStartPos
- 0x8047358C: aMR_Ftr2Leaf
- 0x804735C0: aMR_SetLeaf
- 0x8047362C: My_Room_Actor_dt
- 0x80473740: aMR_RedmaFtrBank
- 0x804737C0: aMR_RequestStartEmu
- 0x80473844: aMR_RequestStartEmu_MemoryC
- 0x804739B4: aMR_FamicomEmuCommonMove
- 0x80473A10: aMR_CallSitDownOngenPosSE
- 0x80473AFC: aMR_CheckDannaKill
- 0x80473C34: aMR_GetFurnitureUnit
- 0x80473CB0: aMR_CorrespondFurniture
- 0x80473D2C: aMR_FurnitureFg_to_FurnitureFgWithDirect
- 0x80473D74: aMR_RadioCommonMove
- 0x80473E40: aMR_RadioBgmNow
- 0x80473E6C: aMR_GetContactInfoLayer1
- 0x80473EA0: aMR_GetParentFactor
- 0x80473F08: aMR_GetParentAngleOffset
- 0x80473F80: aMR_GetAlphaEdge
- 0x80474014: aMR_DrawDolphinMode
- 0x80474054: aMR_ThrowItem_FurnitureLock
- 0x80474084: aMR_ThrowItem_FurnitureUnlock
- 0x804740B4: aMR_SameFurnitureSwitchOFF
- 0x80474114: aMR_SetSlotString
- 0x80474160: aMR_GetCardFamicomCount
- 0x804741A8: aMR_GetNameString
- 0x804741D8: aMR_SetMemoryCardGameIndex
- 0x804741EC: aMR_ReportDisplayMemoryGameSelectCount
- 0x80474214: aMR_GetNowDemoFtr
- 0x80474230: aMR_ChangeDemoFtrStatus
- 0x80474260: aMR_GetMusicCountInMusicBox
- 0x80474314: aMR_MemoryMusicBoxStatus
- 0x804743A0: aMR_SetEmulatorMessage_CanSave
- 0x804743D8: aMR_SetEmulatorStartMessage
- 0x804745D0: aMR_NoMsgInit
- 0x804745D4: aMR_NoMsgControl
- 0x804745D8: aMR_MsgControlOwnerNoItem
- 0x80474684: aMR_MsgInitOwnerWhichPutOut
- 0x804748A8: aMR_MsgControlOwnerWhichPutOut
- 0x804749B8: aMR_MsgInitOwnerWaitWhichPutOut
- 0x80474A00: aMR_MsgControlOwnerWaitWhichPutOut
- 0x80474A20: aMR_MsgInitOwnerExistItem
- 0x80474AB8: aMR_MsgControlOwnerExistItem
- 0x80474C0C: aMR_MsgControlOwnerExistItem_ItemCount2
- 0x80474D38: aMR_MsgControlOtherNoItem
- 0x80474D78: aMR_MsgControlOtherExistItem
- 0x80474DB8: aMR_MsgInitFullPlayerItem
- 0x80474DBC: aMR_MsgControlFullPlayerItem
- 0x80474E00: aMR_MsgControlOpenSubmenu
- 0x80474E64: aMR_MsgControlItemPutIn
- 0x80474EEC: aMR_MsgControlCanNotClean
- 0x80474EF8: aMR_MsgControlWaitCloseFtr
- 0x80474F48: aMR_MsgInitRequestCloseFtr
- 0x80474F4C: aMR_MsgControlRequestCloseFtr
- 0x80474FC4: aMR_MsgControlOpenSetItemSubmenu
- 0x80475028: aMR_MsgControlItemSetSubmenu
- 0x804750B0: aMR_MsgControlOwnerNoMD
- 0x804751B0: aMR_MsgInitOwnerExistMD
- 0x80475220: aMR_MsgControlOwnerExistMD
- 0x8047535C: aMR_MsgControlOtherNoMD
- 0x8047539C: aMR_MsgControlOtherExistMD
- 0x804753E8: aMR_MsgControlFullPlayerMD
- 0x804753F4: aMR_MsgControlOpenMusicBox
- 0x8047549C: aMR_DeleteDirectedMD
- 0x8047560C: aMR_MsgControlMusicBoxMDPutIn
- 0x804756B8: aMR_MsgControlOpenMDSubmenu
- 0x80475724: aMR_MsgControlOpenExchangeMDSubmenu
- 0x80475788: aMR_MsgControlMDPutIn
- 0x80475828: aMR_MsgControlMDExchangeSubmenu
- 0x804758E8: aMR_MsgControlWaitCloseMD
- 0x8047593C: aMR_MsgInitRequestCloseMD
- 0x80475940: aMR_MsgControlRequestCloseMD
- 0x8047599C: aMR_MsgControlCanNotMDClean
- 0x804759A8: aMR_MsgInitPrepareCommunication
- 0x804759D0: aMR_MsgControlPrepareCommunication
- 0x80475A84: aMR_MsgInitNotConnectAgb
- 0x80475A88: aMR_MsgControlNotConnectAgb
- 0x80475ADC: aMR_MsgInitCheckAgbProgram
- 0x80475AE0: aMR_MsgControlCheckAgbProgram
- 0x80475B48: aMR_MsgInitDeleteAgbProgramQ
- 0x80475B4C: aMR_MsgControlDeleteAgbProgramQ
- 0x80475BCC: aMR_MsgInitStartEmuDownLoad
- 0x80475C18: aMR_MsgControlStartEmuDownLoad
- 0x80475CE0: aMR_MsgInitRecheckAgbConnect
- 0x80475D14: aMR_MsgControlRecheckAgbConnect
- 0x80475DC4: aMR_MsgInitQqqEmulator
- 0x80475E50: aMR_MsgControlQqqEmulator
- 0x80475F3C: aMR_MsgInitWarningCannotMakeSaveFile
- 0x80475F40: aMR_MsgControlWarningCannotMakeSaveFile
- 0x80475F94: aMR_MsgInitExplainEmulator
- 0x80475F98: aMR_MsgControlExplainEmulator
- 0x80475FE0: aMR_MsgInitQqqEmulatorMemory1
- 0x80476028: aMR_MsgControlQqqEmulatorMemory1
- 0x804760F0: aMR_MsgInitQqqEmulatorMemory2
- 0x80476194: aMR_MsgControlQqqEmulatorMemory2
- 0x8047625C: aMR_MsgInitQqqEmulatorMemoryOver3
- 0x80476324: aMR_MsgControlQqqEmulatorMemoryOver3
- 0x80476454: aMR_MsgInitQqqRepeatDisplay1
- 0x80476520: aMR_MsgControlQqqRepeatDisplay1
- 0x80476650: aMR_MsgInitQqqRepeatDisplay2
- 0x80476730: aMR_MsgControlQqqRepeatDisplay2
- 0x80476884: aMR_MsgInitExplainEmulatorMemory
- 0x80476888: aMR_MsgControlExplainEmulatorMemory
- 0x804768D0: aMR_MsgInitNoPackNoData
- 0x804768F0: aMR_MsgControlNoPackNoData
- 0x80476948: aMR_MsgInitWaitFamicomBatu
- 0x8047694C: aMR_MsgControlWaitFamicomBatu
- 0x804769A0: aMR_MsgInitSaveFamicom
- 0x80476A04: aMR_MsgControlSaveFamicom
- 0x80476C5C: aMR_MsgInitHitokoto
- 0x80476C60: aMR_MsgControlHitokoto
- 0x80476CA4: aMR_GetMessageNum
- 0x80476D08: aMR_speak_set
- 0x80476D60: aMR_report_set
- 0x80476DD0: aMR_MessageControl
- 0x8047709C: aMR_SetSurprise
- 0x804770B4: aMR_MakeIndoorGoki
- 0x80477128: aMR_RandomMakeIndoorGoki
- 0x80477360: aMR_RequestPlayerBikkuri
- 0x804773DC: aMR_GokiInfoCt_Dummy
- 0x804773E0: aMR_GokiInfoCt
- 0x80477648: aMR_MakeGokiburi
- 0x804776EC: aMR_GokiInfoDt
- 0x80477740: aMR_CheckFtrAndGoki2
- 0x804777BC: aMR_CheckFtrAndGoki
- 0x80477838: aMR_SetMelodyData
- 0x80477858: aMR_GetMelodyData
- 0x80477878: aMR_SoundMelody
- 0x804778E4: aMR_GetFurniturePoccessUnitNo
- 0x80477960: aMR_PosType2FurniturePoccessUnitNo
- 0x80477A1C: aMR_RegistItemToFitFurniture
- 0x80477AB0: aMR_RequestItemToFitFurniture
- 0x80477E2C: aMR_RequestItemToUnFitFurniture
- 0x8047804C: aMR_GetPlayerLookAtUnit
- 0x804780A8: aMR_GetFtrShape4Position
- 0x8047810C: aMR_GetFtrShapeCenter
- 0x804781B0: aMR_GetDust4Position
- 0x8047830C: aMR_GetDustAngle
- 0x80478358: aMR_CheckReserveFlag
- 0x8047838C: aMR_SetCleanUpFtrSE
- 0x804783B4: aMR_GetPlayerDirect
- 0x80478414: aMR_MoveShapeCenter
- 0x80478490: aMR_Norm2DirectName
- 0x804784F8: aMR_RotateY
- 0x80478580: aMR_Get3dDirectStatus
- 0x80478774: aMR_3DStickNuetral
- 0x8047879C: aMR_JudgeStickFull
- 0x80478850: aMR_JudgeFurnitureMove
- 0x80478908: aMR_ContactRange
- 0x80478A2C: aMR_SearchContactPartName
- 0x80478AC0: aMR_ContactCheck
- 0x80478CD0: aMR_MakeContactData
- 0x80478DC4: aMR_GroundFlat
- 0x80478E54: aMR_AllContactCheck
- 0x80478F5C: aMR_SetPullMoveAnime
- 0x80479044: aMR_SetPushMoveAnime
- 0x80479120: aMR_SelectNicePoint
- 0x804791AC: aMR_SetNicePos
- 0x80479404: aMR_FtrIdx2ChangeFtrSwitch
- 0x804795C8: aMR_RequestForceOpenDemo
- 0x804795DC: aMR_GetPlayerRoomIdx
- 0x8047961C: aMR_CheckDiaryOnMe
- 0x804797DC: aMR_ManageMoveBottun
- 0x80479F24: aMR_PullDirect2PushDirect
- 0x80479F38: aMR_MngPullDirectTimer
- 0x8047A0E0: aMR_MngPushDirectTimer
- 0x8047A2A4: aMR_MngFtrContactAction
- 0x8047A4A8: aMR_GetDistXZ
- 0x8047A54C: aMR_SetFurnitureBaseNorm
- 0x8047A58C: aMR_MakeBaseFurnitureCollisionData
- 0x8047A71C: aMR_PlussPosition
- 0x8047A778: aMR_RotateFurnitureCollisionData
- 0x8047A7F4: aMR_MakeFurnitureCollisionData
- 0x8047A8F8: aMR_RewriteFactorInfo
- 0x8047A988: aMR_GetBirthFurniture
- 0x8047A9C0: aMR_CheckPlaceSituation
- 0x8047AAA0: aMR_ReserveFurniture
- 0x8047ABA0: aMR_PreparePickingUpFurniture
- 0x8047AC14: aMR_JudgePickUpCommon
- 0x8047AE30: aMR_SearchPickupFurniture
- 0x8047B33C: aMR_Furniture2ItemBag
- 0x8047B580: aMR_SearchReserveRam
- 0x8047B588: aMR_JudgeBreedNewFurniture
- 0x8047BCCC: aMR_InitFactorCollisionDirect
- 0x8047BD14: aMR_GetSaveAngle
- 0x8047BDDC: aMR_SetFurniture2FG
- 0x8047C088: aMR_CheckControllerNeutral
- 0x8047C10C: aMR_FtrPull
- 0x8047C208: aMR_FtrPush
- 0x8047C314: aMR_FtrStop
- 0x8047C318: aMR_FtrWaitPush
- 0x8047C324: aMR_FtrWaitPush2
- 0x8047C330: aMR_FtrWaitPush3
- 0x8047C33C: aMR_FtrWaitPull
- 0x8047C348: aMR_FtrWaitPull2
- 0x8047C354: aMR_GetEllipseSpeed
- 0x8047C460: aMR_FtrRotate
- 0x8047C590: aMR_BirthWait
- 0x8047C674: aMR_FtrBirth
- 0x8047CACC: aMR_FtrBye
- 0x8047CCC0: aMR_FtrDeath
- 0x8047CDB4: aMR_FtrWaitRrotate
- 0x8047CDD8: aMR_FtrWaitLrotate
- 0x8047CDFC: aMR_GetItemPosOnMovingFurniture
- 0x8047CF08: aMR_FurnitureMoveFunction
- 0x8047D0B0: aMR_ClearChangeSwitchFlag
- 0x8047D100: aMR_SetReserveFurniture
- 0x8047D2F0: aMR_PreparePlayerAction
- 0x8047D354: aMR_SetFtrDemoMsg
- 0x8047D5B0: aMR_HouseOwnerMove
- 0x8047D604: aMR_HouseOtherMove
- 0x8047D658: aMR_MakeClockInfo
- 0x8047D6CC: aMR_Fname2ConpoIndex
- 0x8047D7F8: My_Room_Actor_move
- 0x8047D9E8: aMR_SetNowPosition
- 0x8047DA0C: aMR_JudgePlayerAction
- 0x8047DF78: aMR_PlayerMoveFurniture
- 0x8047DFB8: aMR_ftrID2Wpos
- 0x8047E028: aMR_UnitNum2FtrItemNoFtrID
- 0x8047E15C: aMR_FtrID2ExtinguishFurniture
- 0x8047E284: aMR_JudgePlace2ndLayer
- 0x8047E3B0: aMR_OpenCloseCommonMove
- 0x8047E608: aMR_MiniDiskCommonMove
- 0x8047E808: aMR_PointDist2
- 0x8047E830: aMR_GokiburiPos_Common
- 0x8047EB38: aMR_GokiburiPos_Rotate
- 0x8047EB78: aMR_GokiburiPos_Pull
- 0x8047EB9C: aMR_GokiburiPos_Push
- 0x8047EBC0: aMR_FtrColCheck
- 0x8047ED78: aMR_SetBubu
- 0x8047EE28: aMR_ConvertDirectLevel
- 0x8047EE54: aMR_SetMoveSE
- 0x8047EFA4: aMR_SetRotateSE
- 0x8047EFE8: aMR_GetPullSlip
- 0x8047F0B0: aMR_CheckSlidePullJudgeType
- 0x8047F0F0: aMR_CheckPullPlayerObstacle2
- 0x8047F304: aMR_CheckPullPlayerObstacle
- 0x8047F4B0: aMR_PlacePullFurniture
- 0x8047F84C: aMR_PlacePushFurniture
- 0x8047FB28: aMR_DecideKurukuruDirect
- 0x8047FBE0: aMR_SetTargetAngle
- 0x8047FC1C: aMR_GetRotateForbidData
- 0x8047FC58: aMR_SearchCompleteObstacle
- 0x8047FD24: aMR_SearchFrictionObstacle
- 0x8047FE24: aMR_RotatePermission
- 0x8047FF0C: aMR_ResetFurnitureType
- 0x80480008: aMR_TypeChangeByRotate
- 0x80480044: aMR_SearchNextSituation
- 0x8048016C: aMR_SitDownFurniture
- 0x804804AC: aMR_GetBedHeadDirect
- 0x80480504: aMR_Wpos2FtrInfo
- 0x80480608: aMR_GetUnderfootSidePos
- 0x80480920: aMR_GetPillowSidePos
- 0x80480C3C: aMR_CheckBedUnderfoot
- 0x80480EF4: aMR_JudgeGoToBed
- 0x80481244: aMR_CheckHikidashi
- 0x80481368: aMR_SetOpenFtrDemoData
- 0x80481390: aMR_SetMDFtrDemoData
- 0x804813BC: aMR_JudgeDemoStart
- 0x80481584: aMR_PlaceKurukuruFurniture
- 0x804818CC: aMR_GetBedTurnPos
- 0x80481910: aMR_GetBedAction
- 0x80481C5C: aMR_SetKankyoMapping
- 0x80481CD0: aMR_LoadPallet
- 0x80481ED0: aMR_LoadTexture
- 0x80482128: aMR_SetLoopTextureAnime
- 0x8048217C: aMR_DrawRegistModel
- 0x804822CC: aMR_DrawSkelShape
- 0x80482388: aMR_DrawUniqueShape
- 0x80482454: aMR_DrawItemOnMovingFurniture
- 0x80482558: aMR_GetFitNo
- 0x80482594: aMR_FurnitureLightSet
- 0x804825F8: aMR_DrawOneFurniture
- 0x804829CC: aMR_DrawFurniture
- 0x80482C48: aMR_DrawLeaf
- 0x80482D3C: My_Room_Actor_draw
- 0x80482D9C: aNI_CopyAllData
- 0x80482E3C: aNI_MallocRam
- 0x80482EFC: aNI_SetMoveBg
- 0x8048305C: aNI_SetClip
- 0x804830A8: Needlework_Indoor_Actor_ct
- 0x804830FC: aNI_FreeRam
- 0x80483174: Needlework_Indoor_Actor_dt
- 0x804831F4: aNI_DrawManekin
- 0x80483328: aNI_DrawUmbrella
- 0x8048345C: Needlework_Indoor_Actor_draw
- 0x804834A0: Needlework_Indoor_Actor_move
- 0x80483564: aNI_RequestCopyClothData
- 0x804835D0: aNI_CopyClothData
- 0x804836AC: aNI_RequestExchangeCloth
- 0x80483718: aNI_ExchangeCloth
- 0x804837F8: aNI_RequestCopyUmbData
- 0x80483864: aNI_CopyUmbData
- 0x80483944: aNI_RequestExchangeUmb
- 0x804839B0: aNI_ExchangeUmb
- 0x80483A90: aPRD_actor_ct
- 0x80483B0C: aPRD_actor_dt
- 0x80483B30: aPRD_setup_present
- 0x80483C9C: aPRD_setup_present_normal_npc_info
- 0x80483D18: aPRD_setup_present_soncho_info
- 0x80483D48: aPRD_setup_present_npc_info
- 0x80483D7C: aPRD_first_set
- 0x80483E58: aPRD_pl_come_out_wait
- 0x80483EAC: aPRD_present_wait
- 0x80483EDC: aPRD_retire_npc_wait
- 0x80483FAC: aPRD_first_set_init
- 0x80483FCC: aPRD_pl_come_out_wait_init
- 0x80483FD8: aPRD_present_wait_init
- 0x80484004: aPRD_init_proc
- 0x80484038: aPRD_setupAction
- 0x80484070: aPRD_actor_move
- 0x80484098: aPSM_actor_ct
- 0x804842B8: aPSM_actor_dt
- 0x804842FC: aPSM_set_talk_info
- 0x80484334: aPSMAN_MakeBreakEffect
- 0x804844B8: aPSM_actor_move
- 0x80484568: aPSM_actor_draw
- 0x80484694: aPT_CheckMailBoxVac
- 0x804846E8: aPT_SendMail
- 0x804849C4: Pterminal_Actor_ct
- 0x804849C8: Pterminal_Actor_dt
- 0x804849CC: Pterminal_Actor_draw
- 0x804849D0: aPT_CheckTalkAble
- 0x80484AF8: aPT_CheckTalkAbleDist
- 0x80484B68: aPT_SetTalkInfo
- 0x80484BE4: aPT_SetTransSE
- 0x80484BF0: aPT_SetTransSE_move
- 0x80484C60: aPT_Wait_Init
- 0x80484C64: aPT_Wait
- 0x80484C84: aPT_First_Question_Init
- 0x80484CA8: aPT_First_Question
- 0x80484DA0: aPT_Connect_AGB_to_Rcv_Init
- 0x80484DCC: aPT_Connect_AGB_to_Rcv
- 0x80484EA0: aPT_Connect_AGB_to_Snd_Init
- 0x80484ECC: aPT_Connect_AGB_to_Snd
- 0x80484FA0: aPT_Send_Init
- 0x80484FC0: aPT_Send
- 0x80485094: aPT_Read_Question_Init
- 0x804850B8: aPT_Read_Question
- 0x80485160: aPT_Receive_Init
- 0x80485164: aPT_Receive
- 0x80485290: aPT_Setup
- 0x804852F8: Pterminal_Actor_move
- 0x80485508: aQMgr_actor_set_memory
- 0x8048559C: aQMgr_actor_set_hello_free_str
- 0x80485640: aQMgr_take_hello_msg_no
- 0x804856E4: aQMgr_set_talk_info
- 0x8048578C: aQMgr_actor_talk_request
- 0x80485814: aQMgr_actor_talk_start
- 0x8048592C: aQMgr_actor_talk_check
- 0x804859AC: aQMgr_get_time_kind
- 0x804859FC: aQMgr_clear_talk_init_ovl
- 0x80485A08: aQMgr_talk_common_talk_init_ovl
- 0x80485A3C: aQMgr_actor_change_talk_init_ovl
- 0x80485A9C: aQMgr_actor_clear_regist
- 0x80485B18: aQMgr_actor_check_fin_item
- 0x80485B68: aQMgr_actor_free_regist
- 0x80485BBC: aQMgr_actor_regist_quest
- 0x80485D5C: aQMgr_talk_clear_talk_order
- 0x80485D6C: aQMgr_talk_common_clear_talk_info
- 0x80485E5C: aQMgr_talk_common_get_item_idx
- 0x80485F28: aQMgr_talk_common_set_choice_str
- 0x80486010: aQMgr_talk_common_get_set_data_p
- 0x80486048: aQMgr_actor_init_quest
- 0x8048613C: aQMgr_actor_regist_quest_move
- 0x804861A8: aQMgr_actor_move_wait
- 0x80486204: aQMgr_actor_move_talk_fin
- 0x8048625C: aQMgr_actor_get_my_msg
- 0x80486298: aQMgr_actor_decide_quest_message_no
- 0x804862AC: aQMgr_talk_common_set_msg_no
- 0x80486344: aQMgr_talk_common_regist_set_target
- 0x804863D4: aQMgr_talk_common_change_talk_normal
- 0x80486418: aQMgr_talk_common_change_talk_island
- 0x8048645C: aQMgr_set_npc_putaway
- 0x804864AC: aQMgr_talk_common_set_npc_takeout
- 0x80486518: aQMgr_talk_common_set_npc_takeout_item
- 0x80486540: aQMgr_talk_common_set_npc_takeout_reward
- 0x80486568: aQMgr_check_npc_hand_item
- 0x80486608: aQMgr_talk_common_proc
- 0x8048663C: aQMgr_clear_talk_wait_info
- 0x80486660: aQMgr_actor_move_talk_sub_no_wait
- 0x80486668: aQMgr_actor_move_talk_sub_wait
- 0x804866D4: aQMgr_actor_move_talk_sub_msg_disappear_wait
- 0x80486714: aQMgr_actor_move_talk_sub_msg_appear_wait
- 0x80486754: aQMgr_actor_move_talk_sub_check_button
- 0x80486794: aQMgr_actor_move_talk_sub_hand_item_wait
- 0x80486818: aQMgr_actor_move_talk_sub_npc_hand_wait
- 0x80486838: aQMgr_actor_move_talk_sub_item_wait
- 0x80486858: aQMgr_actor_move_talk_sub_demo_order_wait
- 0x804868D4: aQMgr_actor_move_talk_sub_npc_hand_wait_msg_wait
- 0x80486974: aQMgr_actor_move_talk_sub_item_wait_end
- 0x804869FC: aQMgr_actor_move_talk_sub_item_player_wait
- 0x80486A88: aQMgr_select_talk
- 0x80486B68: aQMgr_talk_init
- 0x80486BA4: aQMgr_talk_sub
- 0x80486BF8: aQMgr_move_talk
- 0x80486DE4: aQMgr_talk_start_kamakura_common
- 0x80486E50: aQMgr_talk_start_kamakura_hello
- 0x80486E74: aQMgr_talk_start_kamakura
- 0x80486E98: aQMgr_talk_start_summercamp_hello
- 0x80486EBC: aQMgr_talk_start_summercamp
- 0x80486EE0: aQMgr_actor_move_main
- 0x80487098: aQMgr_actor_ct
- 0x8048720C: aQMgr_actor_dt
- 0x80487270: aQMgr_actor_save
- 0x804872F4: aQMgr_move_own_errand_cloth
- 0x80487368: aQMgr_move_own_errand_seed
- 0x804873E0: aQMgr_move_own_errand_letter
- 0x804874B4: aQMgr_move_own_errand_hello
- 0x80487524: aQMgr_actor_check_limit_and_clear_quest
- 0x80487560: aQMgr_actor_contest_check_limit
- 0x80487584: aQMgr_actor_check_fin_fruit
- 0x804875D0: aQMgr_actor_check_fin_soccer
- 0x804875EC: aQMgr_actor_contest_snowman_clear
- 0x80487684: aQMgr_actor_check_fin_snowman
- 0x80487710: aQMgr_actor_contest_flower_clear
- 0x80487794: aQMgr_actor_check_flower
- 0x80487834: aQMgr_actor_check_fin_flower
- 0x80487860: aQMgr_actor_check_fin_quest_have_item1
- 0x804878DC: aQMgr_actor_check_fin_fish
- 0x80487900: aQMgr_actor_contest_insect_clear
- 0x80487984: aQMgr_actor_check_fin_insect
- 0x804879A8: aQMgr_actor_check_fin_contest_letter
- 0x804879C4: aQMgr_save_contest_flower
- 0x80487A3C: aQMgr_save_contest
- 0x80487A78: aQMgr_fj_get_my_msg
- 0x80487A84: aQMgr_actor_decide_fj_message_no
- 0x80487A98: aQMgr_fj_set_msg_no
- 0x80487B2C: aQMgr_actor_check_to
- 0x80487BB4: aQMgr_fj_check_own_quest
- 0x80487C74: aQMgr_get_select_hellow_no
- 0x80487CB0: aQMgr_talk_fj_select_talk
- 0x80487E40: aQMgr_talk_fj_hint_or_hint
- 0x80487ED8: aQMgr_talk_fj_hint_or_fj
- 0x80487FA8: aQMgr_talk_fj_hand_reward
- 0x80487FF8: aQMgr_talk_fj_get_item
- 0x804880C0: aQMgr_talk_fj_get_item_wait
- 0x80488128: aQMgr_talk_fj_wait_button
- 0x8048816C: aQMgr_talk_fj_reward_to
- 0x80488224: aQMgr_talk_fj_letter_before
- 0x80488278: aQMgr_talk_fj_show_letter
- 0x80488318: aQMgr_talk_fj_thanks_letter_open_msg
- 0x804883BC: aQMgr_talk_fj_wait_nothing
- 0x804883C0: aQMgr_talk_fj_finish
- 0x80488404: aQMgr_talk_first_job_init
- 0x80488474: aQMgr_actor_set_day_str
- 0x804884D8: aQMgr_actor_get_my_hello_msg_com
- 0x8048853C: aQMgr_get_random_msg_no
- 0x80488588: aQMgr_get_hello_msg_npc_feel
- 0x80488604: aQMgr_get_hello_msg_npc_feel_island
- 0x80488680: aQMgr_get_meet_time
- 0x80488824: aQMgr_set_memory
- 0x804888B0: aQMgr_clear_memory
- 0x8048893C: aQMgr_get_hello_msg_npc_feel_normal
- 0x80488A90: aQMgr_get_hello_msg_npc_feel_normal_island
- 0x80488B70: aQMgr_get_thanks_cloth_msg
- 0x80488C58: aQMgr_get_hello_msg_npc_feel_grad
- 0x80488D30: aQMgr_set_feel_normal
- 0x80488D6C: aQMgr_get_hello_msg_how_do_you_do
- 0x80488EA8: aQMgr_check_possession_item
- 0x80488F74: aQMgr_get_harvestfestival_msg
- 0x804890EC: aQMgr_get_harvestfestival_island_msg
- 0x80489204: aQMgr_get_hello_msg_no_normal
- 0x8048958C: aQMgr_get_hello_msg_no_kamakura
- 0x80489674: aQMgr_get_hello_msg_no_summercamp
- 0x80489784: aQMgr_get_hello_msg_no_island
- 0x80489920: aQMgr_get_hello_msg_no
- 0x80489A34: aQMgr_actor_check_own_quest
- 0x80489AD0: aQMgr_actor_check_still_reward
- 0x80489B8C: aQMgr_actor_check_fin_step
- 0x80489BA4: aQMgr_actor_check_finish
- 0x80489C00: aQMgr_actor_check_limit
- 0x80489C38: aQMgr_actor_check_errand_from
- 0x80489D00: aQMgr_actor_check_client_quest_info
- 0x80489D28: aQMgr_actor_get_errand_next_idx
- 0x80489D70: aQMgr_actor_set_errand_next
- 0x80489DC0: aQMgr_actor_get_errand_next
- 0x80489E10: aQMgr_actor_check_free_quest
- 0x80489E38: aQMgr_actor_get_free_quest_p
- 0x80489FA0: aQMgr_actor_set_client_quest_info
- 0x80489FD4: aQMgr_actor_client_quest_set_new
- 0x8048A008: aQMgr_actor_decide_quest_type_kind
- 0x8048A0C4: aQMgr_get_before_quest_idx
- 0x8048A158: aQMgr_actor_check_occur
- 0x8048A3E4: aQMgr_actor_decide_quest
- 0x8048A50C: aQMgr_actor_decide_item
- 0x8048A564: aQMgr_actor_decide_cloth
- 0x8048A5A8: aQMgr_actor_set_contest_work_data
- 0x8048A600: aQMgr_actor_set_work_data
- 0x8048A650: aQMgr_actor_set_quest_data
- 0x8048A998: aQMgr_actor_new_quest
- 0x8048ABF8: aQMgr_actor_set_delivery
- 0x8048AC64: aQMgr_actor_set_errand
- 0x8048AD84: aQMgr_actor_set_contest
- 0x8048AE28: aQMgr_actor_set_quest_info
- 0x8048AEDC: aQMgr_actor_clear_client_quest_info
- 0x8048AF0C: aQMgr_actor_set_free_str
- 0x8048B054: aQMgr_actor_set_free_str_reward
- 0x8048B0C0: aQMgr_actor_get_rate
- 0x8048B14C: aQMgr_actor_get_pay
- 0x8048B240: aQMgr_actor_hand_reward
- 0x8048B3DC: aQMgr_actor_get_errand_reward
- 0x8048B464: aQMgr_actor_get_other_pl_cloth
- 0x8048B4B0: aQMgr_actor_set_reward
- 0x8048B648: aQMgr_talk_quest_clear_quest
- 0x8048B6C4: aQMgr_actor_talk_finish
- 0x8048B748: aQMgr_talk_quest_start_choice_random
- 0x8048B78C: aQMgr_talk_quest_select_get_choice
- 0x8048B9D8: aQMgr_talk_quest_select_get_choice_island
- 0x8048BA30: aQMgr_talk_quest_start_choice
- 0x8048BA88: aQMgr_talk_quest_finish_firstjob_open_quest
- 0x8048BB48: aQMgr_talk_quest_set_cancel_msg_com
- 0x8048BBA8: aQMgr_talk_quest_change_normal_or_hint
- 0x8048BC20: aQMgr_talk_quest_get_contest_hoka_msg_no
- 0x8048BC9C: aQMgr_talk_quest_set_work
- 0x8048BCA0: aQMgr_actor_talk_select_talk
- 0x8048C2D0: aQMgr_actor_talk_select_talk_island
- 0x8048C348: aQMgr_actor_talk_select_talk_2
- 0x8048C3A4: aQMgr_actor_talk_reconf_or_normal
- 0x8048C428: aQMgr_actor_talk_root_reconf_or_normal
- 0x8048C4A4: aQMgr_actor_talk_no_or_normal
- 0x8048C52C: aQMgr_actor_talk_no_or_island
- 0x8048C5AC: aQMgr_actor_talk_full_item_or_normal
- 0x8048C640: aQMgr_actor_talk_renew_errand_or_normal
- 0x8048C720: aQMgr_actor_talk_renew_errand_irai_end_give_item
- 0x8048C798: aQMgr_actor_talk_renew_errand_irai_end
- 0x8048C7F4: aQMgr_actor_talk_new_quest_or_normal
- 0x8048C8A4: aQMgr_actor_talk_occur_quest
- 0x8048CA40: aQMgr_talk_quest_wait_talk
- 0x8048CAC0: aQMgr_actor_talk_giveup
- 0x8048CB24: aQMgr_talk_quest_giveup_wait_button
- 0x8048CB94: aQMgr_talk_quest_giveup_open_menu
- 0x8048CC08: aQMgr_talk_quest_giveup_item
- 0x8048CD08: aQMgr_talk_quest_giveup_npc_item
- 0x8048CD44: aQMgr_actor_talk_fin_quest_start
- 0x8048CDE0: aQMgr_talk_quest_talk_fin_quest_start_not_hand
- 0x8048CE64: aQMgr_talk_quest_open_menu
- 0x8048CF68: aQMgr_talk_quest_get_item
- 0x8048D050: aQMgr_talk_quest_npc_get_item_wait
- 0x8048D064: aQMgr_actor_talk_fin_quest_reward
- 0x8048D258: aQMgr_actor_talk_fin_quest_thanks
- 0x8048D2C0: aQMgr_actor_talk_after_reward
- 0x8048D414: aQMgr_actor_talk_after_reward_thanks
- 0x8048D484: aQMgr_talk_quest_contest_hoka_or_normal
- 0x8048D5C0: aQMgr_talk_quest_change_wait
- 0x8048D60C: aQMgr_actor_talk_finish_letter
- 0x8048D6D8: aQMgr_actor_move_talk_init
- 0x8048DB18: aQMgr_GetPossessionItemSumFGTypeWithCond_cancelSPFamicom
- 0x8048DE3C: aQMgr_check_item_cond
- 0x8048DE60: aQMgr_get_best_ftr_idx
- 0x8048DFD0: aQMgr_get_normal_ftr_idx
- 0x8048E13C: aQMgr_get_cloth
- 0x8048F010: aQMgr_order_decide_trade_18
- 0x8048F148: aQMgr_order_decide_trade_19
- 0x8048F298: aQMgr_order_decide_trade_20
- 0x8048F398: aQMgr_order_decide_trade_21
- 0x8048F944: aQMgr_order_move_trade_23
- 0x8048F9D4: aQMgr_order_move_trade_24
- 0x8048FB28: aQMgr_order_write_letter
- 0x8048FCE0: aQMgr_order_input_data
- 0x80490284: aQMgr_decide_normal_msg_no_island
- 0x80490328: aQMgr_check_trade_0
- 0x804903F0: aQMgr_check_trade_1
- 0x804904D0: aQMgr_check_trade_2
- 0x80490594: aQMgr_check_trade_3
- 0x8049064C: aQMgr_check_trade_4
- 0x80490704: aQMgr_check_trade_5
- 0x80490778: aQMgr_check_trade_6
- 0x804907DC: aQMgr_check_trade_7
- 0x80490878: aQMgr_check_trade_8
- 0x80490920: aQMgr_decide_ftr_msg_no
- 0x80490A78: aQMgr_decide_player_msg_no
- 0x80490B18: aQMgr_get_other_memory
- 0x80490C6C: aQMgr_decide_other_player_msg_no
- 0x80490D70: aQMgr_decide_mail_msg_no
- 0x80490F24: aQMgr_talk_island_select_talk
- 0x804910B0: aQMgr_talk_island_demo_order
- 0x804911BC: aQMgr_talk_normal_open_letter_to_write
- 0x80491464: aQMgr_talk_island_init
- 0x804914B0: aQMgr_decide_idx_prob_table
- 0x804916FC: aQMgr_set_number_free_str_add_nen
- 0x8049188C: aQMgr_get_possession_ftr_cpt_wl
- 0x80491930: aQMgr_get_free_possession_idx
- 0x80491964: aQMgr_get_free_possession_idx_check_money
- 0x804919AC: aQMgr_get_possession_item
- 0x80491A10: aQMgr_decide_msg_check_possession
- 0x80491A84: aQMgr_check_client_remove
- 0x80491B14: aQMgr_check_not_player_memory
- 0x80491B78: aQMgr_check_other_land_memory
- 0x80491C20: aQMgr_get_other_land_memory
- 0x80491D18: aQMgr_check_this_land_memory_talk_other_land_player
- 0x80491DF0: aQMgr_get_this_land_memory_talk_other_land_player
- 0x80491EF0: aQMgr_check_this_land_memory_talk_this_land_player
- 0x80491FC8: aQMgr_get_this_land_memory_talk_this_land_player
- 0x804920C0: aQMgr_get_memory_rnd
- 0x80492200: aQMgr_get_memory_mail_rnd
- 0x80492340: aQMgr_get_memory_mail_best_friend
- 0x804923C8: aQMgr_get_memory_mail_more_friend
- 0x80492514: aQMgr_get_memory_mail_over_friendship
- 0x80492674: aQMgr_get_memory_mail_less_friendship
- 0x8049280C: aQMgr_get_memory_mail_secret
- 0x804928A8: aQMgr_get_msg_weather_time
- 0x804929E8: aQMgr_set_free_str_memory
- 0x8049353C: aQMgr_decide_msg_ki_weather_time
- 0x80493578: aQMgr_decide_msg_ki_normal
- 0x804935B8: aQMgr_decide_msg_ki_free_item
- 0x80493608: aQMgr_decide_msg_ki_ftr
- 0x80493658: aQMgr_decide_msg_ki_free_item_money
- 0x804936A8: aQMgr_decide_ki_msg_no
- 0x80493750: aQMgr_decide_msg_memory
- 0x80493904: aQMgr_decide_msg_letter
- 0x804939FC: aQMgr_decide_msg_normal_3_normal
- 0x80493A3C: aQMgr_decide_msg_normal_3_weather_time
- 0x80493A78: aQMgr_decide_msg_normal_3_weather
- 0x80493B08: aQMgr_decide_msg_normal_3_season
- 0x80493B54: aQMgr_decide_msg_normal_3_msg_no
- 0x80493BD4: aQMgr_decide_msg_trade_free_item
- 0x80493C24: aQMgr_decide_msg_trade_ftr
- 0x80493C74: aQMgr_decide_msg_trade_free_item_money
- 0x80493CC4: aQMgr_decide_msg_trade_item
- 0x80493D14: aQMgr_decide_msg_trade
- 0x80493D94: aQMgr_decide_normal_2_msg_no
- 0x80493E2C: aQMgr_decide_msg_game_hint
- 0x80493E6C: aQMgr_decide_msg_remove
- 0x80493EAC: aQMgr_decide_msg_calendar_ev
- 0x80494000: aQMgr_decide_msg_special_ev
- 0x804941EC: aQMgr_decide_msg_ev
- 0x804942A0: aQMgr_decide_msg_game_ev
- 0x8049430C: aQMgr_decide_game_msg_no
- 0x80494374: aQMgr_decide_normal_msg_no
- 0x804943F4: aQMgr_get_fj_hint_msg
- 0x80494408: aQMgr_decide_fj_hint_msg_no
- 0x804956D8: aQMgr_change_NG_msg
- 0x804957E0: aQMgr_talk_normal_select_talk
- 0x80495928: aQMgr_talk_normal_demo_order
- 0x80495BCC: aQMgr_talk_normal_kamakura_hello
- 0x80495C18: aQMgr_talk_normal_kamakura
- 0x80495C60: aQMgr_talk_normal_summercamp_hello
- 0x80495CAC: aQMgr_talk_normal_summercamp
- 0x80495CF4: aQMgr_talk_normal_init
- 0x80495D58: aRSD_actor_ct
- 0x80495DD4: aRSD_actor_dt
- 0x80495E28: aRSD_set_point_light
- 0x80495FE8: aRSD_first_set
- 0x804960A8: aRSD_retire_npc_wait
- 0x80496100: aRSD_first_set_init
- 0x80496160: aRSD_retire_npc_wait_init
- 0x80496184: aRSD_init_proc
- 0x804961B8: aRSD_setupAction
- 0x804961F0: aRSD_actor_move
- 0x80496218: aROD_actor_ct
- 0x80496294: aROD_actor_dt
- 0x804962B8: aROD_change_player_demo_standing_train
- 0x804962F4: aROD_first_set
- 0x80496354: aROD_train_birth_wait
- 0x804963C8: aROD_ride_train
- 0x80496424: aROD_ride_off_player
- 0x804964A4: aROD_walk_one_unit
- 0x80496558: aROD_first_set_init
- 0x8049659C: aROD_train_birth_wait_init
- 0x80496630: aROD_ride_off_player_init
- 0x804966C4: aROD_walk_one_unit_init
- 0x80496710: aROD_init_proc
- 0x80496744: aROD_setupAction
- 0x8049677C: aROD_actor_move
- 0x804967A4: aRP_actor_ct
- 0x80496854: aRP_actor_dt
- 0x80496904: aRP_make_vtx
- 0x804969BC: aRP_actor_draw
- 0x80496AB8: aSetMgr_get_player_block
- 0x80496B30: aSetMgr_renewal_player_next_pos
- 0x80496BDC: aSetMgr_renewal_player_pos
- 0x80496C3C: aSetMgr_check_player_wade_start
- 0x80496C60: aSetMgr_check_player_wade_end
- 0x80496C84: aSetMgr_clear_set_ovl
- 0x80496CBC: aSetMgr_ovl
- 0x80496CEC: aSetMgr_clear_keep
- 0x80496D10: aSetMgr_move_check_set
- 0x80496D74: aSetMgr_move_check_wait
- 0x80496DC4: aSetMgr_move_set
- 0x80496E84: aSetMgr_move
- 0x80496EE0: aSetMgr_ct
- 0x80496F4C: aSetMgr_dt
- 0x80496F50: aSNMgr_actor_ct
- 0x804970C4: aSNMgr_actor_dt
- 0x804970E4: aSNMgr_init_winfo_p
- 0x80497164: aSNMgr_set_npc_exist
- 0x804971D4: aSNMgr_clear_event_info
- 0x804971F4: aSNMgr_get_event_npc_idx
- 0x80497230: aSNMgr_reset_event_npc_pos
- 0x804972D0: aSNMgr_chk_exist_and_appear
- 0x80497320: aSNMgr_chk_exist_and_appear_and_event
- 0x8049737C: aSNMgr_chk_arbeit_and_demo_and_halloween
- 0x804973FC: aSNMgr_get_player_pos
- 0x80497458: aSNMgr_renewal_player_now_block
- 0x804974A0: aSNMgr_renewal_player_next_block
- 0x804974CC: aSNMgr_renewal_set_scope
- 0x804975A8: aSNMgr_check_in
- 0x804975D4: aSNMgr_check_in_scope
- 0x8049763C: aSNMgr_set_in_block_npc_num
- 0x804976EC: aSNMgr_check_move_npc_schedule
- 0x80497718: aSNMgr_get_block_ut_num_set_npc
- 0x804977A0: aSNMgr_set_appear_info_regular
- 0x80497828: aSNMgr_set_appear_info_guest
- 0x804978E4: aSNMgr_check_safe_ut
- 0x8049798C: aSNMgr_get_safe_sp_event_structure_4x4
- 0x80497A04: aSNMgr_get_safe_sp_event_structure
- 0x80497AA0: aSNMgr_get_safe_utnum_3x3
- 0x80497BB8: aSNMgr_get_safe_utnum_in_block
- 0x80497D80: aSNMgr_get_safe_utnum_regular
- 0x80497E08: aSNMgr_get_safe_utnum_guest
- 0x80497ED0: aSNMgr_get_safe_utnum
- 0x80497F20: aSNMgr_set_event_info
- 0x80497FF4: aSNMgr_set_npc_event
- 0x8049806C: aSNMgr_move_event_arrange
- 0x8049815C: aSNMgr_move_event_set
- 0x804981E0: aSNMgr_get_event_name
- 0x8049825C: aSNMgr_clear_make_npc
- 0x80498298: aSNMgr_get_make_npc_idx
- 0x804982DC: aSNMgr_set_make_npc
- 0x8049837C: aSNMgr_make_npc
- 0x80498488: aSNMgr_set_to_block
- 0x804985B0: aSNMgr_walk_to_next_block
- 0x80498734: aSNMgr_check_set_arrive
- 0x804987C4: aSNMgr_go_back_home_sub
- 0x80498850: aSNMgr_go_back_home
- 0x804988C8: aSNMgr_check_into_block_npc_sum
- 0x80498940: aSNMgr_check_in_block_max
- 0x8049898C: aSNMgr_walk_to_goal_npc
- 0x80498A44: aSNMgr_walk_npc
- 0x80498BE0: aSNMgr_set_go_home_status_sub
- 0x80498CB0: aSNMgr_set_go_home_status
- 0x80498DA8: aSNMgr_set_stay_home_status
- 0x80498E40: aSNMgr_force_go_home_event_start
- 0x80498F94: aSNMgr_force_go_home
- 0x804990E4: aSNMgr_reset_npc
- 0x80499188: aSNMgr_set_npc_regular
- 0x80499338: aSNMgr_set_npc_guest
- 0x80499494: aSNMgr_setup_set_proc
- 0x804994C4: aSNMgr_actor_move
- 0x804995D4: aSOG_gyoei_clear_set_data
- 0x804995F8: aSOG_get_water_attribute_position
- 0x80499704: aSOG_get_fall_attribute_position
- 0x804997B4: aSOG_gyoei_place_check
- 0x8049981C: aSOG_gyoei_get_idx_sub
- 0x80499950: aSOG_gyoei_get_idx
- 0x80499A28: aSOG_gyoei_set_gyoei_data
- 0x80499DF4: aSOG_gyoei_decide_gyoei
- 0x80499E74: aSOG_gyoei_make
- 0x80499F58: aSOG_gyoei_check_water_unit_in_block
- 0x80499FE0: aSOG_gyo_chk_live_gyoei
- 0x8049A034: aSOG_gyoei_block_check
- 0x8049A0B0: aSOG_gyoei_set_with_list
- 0x8049A16C: aSOG_gyoei_get_time_no
- 0x8049A1C0: aSOG_gyoei_renew_term_info
- 0x8049A218: aSOG_gyoei_chk_term_info
- 0x8049A3F8: aSOG_gyoei_check_fishing_event
- 0x8049A4A0: aSOG_gyoei_copy_range_data
- 0x8049A518: aSOG_add_kaseki_range_data
- 0x8049A598: aSOG_gyoei_make_river_range_data
- 0x8049A5E0: aSOG_gyoei_make_fishing_event_range_data
- 0x8049A61C: aSOG_gyoei_make_sea_range_data
- 0x8049A690: aSOG_gyoei_make_offing_range_data_sub
- 0x8049A6C0: aSOG_gyoei_make_offing_range_data
- 0x8049A738: aSOG_gyoei_make_pool_range_data
- 0x8049A784: aSOG_gyoei_make_island_range_data
- 0x8049A7EC: aSOG_gyoei_make_range_data
- 0x8049A948: aSOG_gyoei_set
- 0x8049A9E4: aSOI_ins_clear_set_data
- 0x8049AA40: aSOI_set_live_ut
- 0x8049AAA4: aSOI_get_live_ut_sub
- 0x8049AACC: aSOI_get_live_ut
- 0x8049ABBC: aSOI_hour_to_term
- 0x8049AC1C: aSOI_ins_chk_live_insect
- 0x8049AC70: aSOI_ins_block_check
- 0x8049ACDC: aSOI_ins_renewal_time
- 0x8049AD30: aSOI_ins_not_cmp_time
- 0x8049AD9C: aSOI_ins_renew_term_info
- 0x8049ADF4: aSOI_ins_chk_term_info
- 0x8049AFA8: aSOI_ins_add_range_info
- 0x8049B01C: aSOI_ins_make_insect_normal_range_data
- 0x8049B0AC: aSOI_ins_make_insect_island_range_data
- 0x8049B130: aSOI_ins_make_hitodama_range_data
- 0x8049B18C: aSOI_check_hitodama_block_data
- 0x8049B1D0: aSOI_check_countdown_event
- 0x8049B338: aSOI_check_hitodama_set_block
- 0x8049B3C8: aSOI_ins_renew_check_range_table
- 0x8049B4B4: aSOI_ins_make_range_data
- 0x8049B620: aSOI_ins_field_fg_check_get
- 0x8049B6F0: aSOI_ins_field_attr_check_get_sub
- 0x8049B79C: aSOI_ins_field_attr_check_get
- 0x8049B838: aSOI_ins_field_tree_check_get
- 0x8049B950: aSOI_ins_field_attr_and_fg_check_get_sub
- 0x8049B9B8: aSOI_ins_field_attr_and_fg_check_get
- 0x8049BA68: aSOI_ins_change_how_to_make
- 0x8049BA9C: aSOI_ins_clear_prob
- 0x8049BACC: aSOI_ins_limit_insect_data
- 0x8049BB3C: aSOI_ins_get_idx
- 0x8049BC98: aSOI_ins_set_insect_data
- 0x8049BE0C: aSOI_ins_chk_live_area_type_free
- 0x8049BE3C: aSOI_ins_chk_live_area_type_tree
- 0x8049BE60: aSOI_ins_chk_live_area_type_free_without_rain_and_snow
- 0x8049BEB4: aSOI_ins_chk_live_area_type_flower
- 0x8049BF00: aSOI_ins_chk_live_area_type_flower_or_free
- 0x8049BF88: aSOI_ins_chk_live_area_type_flower_rain
- 0x8049BFD4: aSOI_ins_chk_live_area_type_pond
- 0x8049C05C: aSOI_ins_chk_live_area_type_other
- 0x8049C084: aSOI_ins_chk_live_area_type_dig_hole
- 0x8049C0B4: aSOI_ins_chk_live_area_type_nothing
- 0x8049C0BC: aSOI_make_live_ut
- 0x8049C2CC: aSOI_ins_decide_insect
- 0x8049C450: aSOI_ins_make_sub
- 0x8049C578: aSOI_ins_make
- 0x8049C678: aSOI_insect_set
- 0x8049C748: aSD_ItemName2ReservePointName
- 0x8049C9CC: aSD_MakeHukubukuroFg
- 0x8049CA88: aSD_MakePlantFg_normal
- 0x8049CADC: aSD_MakePlantFg_hal
- 0x8049CB5C: aSD_MakePlantFg
- 0x8049CB9C: aSD_MakeGoodsFg
- 0x8049CC10: aSD_MakeReaGoodsFg
- 0x8049CC40: aSD_MakeLotteryGoodsFg
- 0x8049CC98: aSD_SetClipProc
- 0x8049CCEC: aSD_GetGoodsInfo
- 0x8049CD94: aSD_SetReservedPointFill000
- 0x8049CDF0: Shop_Design_Actor_ct
- 0x8049CF98: Shop_Design_Actor_dt
- 0x8049CFBC: Shop_Design_Actor_draw
- 0x8049CFC0: Shop_Design_Actor_move
- 0x8049CFC4: aSD_UnitNum2ItemNo
- 0x8049D164: aSD_ReportGoodsSales
- 0x8049D51C: Shop_Goods_Actor_single_get_angle_y
- 0x8049D548: Shop_Goods_Actor_single_set_angle_y
- 0x8049D56C: Shop_Goods_draw_ta_set
- 0x8049D5A8: Shop_Goods_draw_ta_clr
- 0x8049D5E0: Shop_Goods_Actor_player_drop_entry
- 0x8049D804: Shop_Goods_Actor_drop_entry
- 0x8049D960: Shop_Goods_Actor_drop_destruct
- 0x8049DA0C: Shop_Goods_Actor_drop_move
- 0x8049DCF8: Shop_Goods_Actor_single_drawR
- 0x8049DF54: Shop_Goods_Actor_single_draw
- 0x8049DFD4: Shop_Goods_Actor_drop_draw
- 0x8049E0A4: aSG_CountPictureKind
- 0x8049E0DC: Shop_Goods_Actor_ct
- 0x8049E234: Shop_Goods_Actor_dt
- 0x8049E270: Shop_Goods_Actor_move
- 0x8049E290: aSG_DrawGoods
- 0x8049E4E0: aSG_DrawGoodsPicture
- 0x8049E690: Shop_Goods_Actor_draw
- 0x8049E6F4: aSI_GetShopIndoorBank
- 0x8049E778: aSI_CopyFloorTexture
- 0x8049E800: aSI_CopyWallTexture
- 0x8049E888: aSI_ShopIndoorCopy
- 0x8049E8EC: aSI_SetClipProc
- 0x8049E958: Shop_Indoor_Actor_ct
- 0x8049EA6C: Shop_Indoor_Actor_dt
- 0x8049EAE0: aSI_DrawShopFloor
- 0x8049ED6C: aSI_DrawShopFukubiki
- 0x8049EF10: aSI_DrawShopWall
- 0x8049F160: aSI_DrawShopIndoor
- 0x8049F1B8: Shop_Indoor_Actor_draw
- 0x8049F1D8: Shop_Indoor_Actor_move
- 0x8049F1DC: aSI_ChangeCarpet
- 0x8049F27C: aSI_ChangeWall
- 0x8049F30C: aSI_Change2Default
- 0x8049F3A4: aSI_IndoorDmaAgain
- 0x8049F40C: aSL_SetShopRenewalChirashi_Notice
- 0x8049F5A8: aSL_SetRenewalChiraswhi_Notice
- 0x8049F6B4: aSL_GroundClean
- 0x8049F784: aSL_RewriteShopFg
- 0x8049F830: aSL_RenewShop
- 0x8049F964: Shop_Level_Actor_ct
- 0x8049FA48: Shop_Level_Actor_dt
- 0x8049FA4C: Shop_Level_Actor_draw
- 0x8049FA50: aSL_JudgeRenewShop
- 0x8049FD44: aSL_ExchangeShopGoodsInGame
- 0x8049FDE8: aSL_ReportShopOpen2Event
- 0x8049FE3C: Shop_Level_Actor_move
- 0x8049FEC4: aSM_CountCurrentBlockManekin
- 0x8049FF50: aSM_SucureBank
- 0x8049FF74: aSM_SecureManakinBank
- 0x804A0060: aSM_SearchManekinPlace
- 0x804A0128: aSM_ManekinCt
- 0x804A036C: aSM_SecureManekinSubActor
- 0x804A03C0: aSM_GetNowBlockNumber
- 0x804A0434: aSM_DmaManekinTexPal
- 0x804A04DC: aSM_SetClipProc
- 0x804A053C: Shop_Manekin_Actor_ct
- 0x804A05CC: Shop_Manekin_Actor_dt
- 0x804A0648: Shop_Manekin_Actor_draw
- 0x804A07F4: Shop_Manekin_Actor_move
- 0x804A07F8: aSM_ManekinDmaAgain
- 0x804A08B8: aSM_Change2NakedManekin
- 0x804A0948: aSM_Naked2Cloth
- 0x804A09D8: aShopUmbrella_CountCurrentBlockUmbrella
- 0x804A0A5C: aShopUmbrella_SearchUmbrellaPlace
- 0x804A0B1C: aShopUmbrella_UmbrellaCt
- 0x804A0D8C: aShopUmbrella_SecureUmbrellaSubActor
- 0x804A0DE0: aShopUmbrella_GetNowBlockNumber
- 0x804A0E54: aShopUmbrella_SetClipProc
- 0x804A0EA8: Shop_Umbrella_Actor_ct
- 0x804A0F0C: Shop_Umbrella_Actor_dt
- 0x804A0F88: Shop_Umbrella_Actor_draw
- 0x804A1104: aShopUmbrella_ProcWait
- 0x804A1114: aShopUmbrella_ProcDelete
- 0x804A1170: aShopUmbrella_ProcNone
- 0x804A1180: Shop_Umbrella_Actor_move
- 0x804A1204: aShopUmbrella_UmbrellaDmaAgain
- 0x804A1208: aShopUmbrella_DeleteUmbrella
- 0x804A127C: aSIGN_actor_ct
- 0x804A12C4: aSIGN_actor_dt
- 0x804A12DC: aSIGN_no_cull_check
- 0x804A143C: aSIGN_no_cull_talk_area
- 0x804A1494: aSIGN_draw_anime_check
- 0x804A14E0: aSIGN_draw_set
- 0x804A1684: aSIGN_actor_set_draw
- 0x804A18A4: aSIGN_actor_BkandUtNum_formal
- 0x804A19A0: aSIGN_actor_set_target
- 0x804A1C14: aSIGN_search_exist_npc_inCircle_forSign
- 0x804A1D0C: aSIGN_single_anime_check
- 0x804A1DB0: aSIGN_set_white_sign
- 0x804A1E90: aSIGN_erase_white_sign
- 0x804A1FCC: aSIGN_set_talk_info
- 0x804A207C: aSIGN_talk
- 0x804A21AC: aSIGN_talk_end
- 0x804A21F4: aSIGN_wait
- 0x804A2288: aSIGN_menu_open_wait
- 0x804A2300: aSIGN_menu_end_wait
- 0x804A23B8: aSIGN_setup_action
- 0x804A23D0: aSIGN_change_my_original
- 0x804A2470: aSIGN_single_birth
- 0x804A2638: aSIGN_single_erase
- 0x804A2778: aSIGN_single_all_check
- 0x804A2A40: aSIGN_actor_move
- 0x804A2B08: aSIGN_random_set
- 0x804A2C50: aSIGN_all_clear
- 0x804A2D24: aSIGN_single_all_draw
- 0x804A2F2C: aSIGN_actor_draw
- 0x804A31C8: aSIGN_copy_vtx
- 0x804A321C: aSIGN_draw_shadow
- 0x804A3328: aSMAN_actor_ct
- 0x804A34D0: aSNOWMAN_Set_PSnowman_info
- 0x804A3588: aSMAN_actor_dt
- 0x804A3790: aSMAN_GetSnowmanPresentMail
- 0x804A38A4: aSMAN_SendPresentMail
- 0x804A3918: aSNOWMAN_player_block_check
- 0x804A39C4: aSMAN_FG_Position_Get
- 0x804A3C38: aSMAN_House_Tree_Rev_Check
- 0x804A3C80: aSMAN_Make_Effect_Ground
- 0x804A3E88: aSMAN_get_hole_offset
- 0x804A3FFC: aSMAN_get_ground_norm
- 0x804A436C: aSMAN_player_push_free
- 0x804A43AC: aSMAN_player_push_HitWallCheck
- 0x804A4440: aSMAN_get_norm_push_angle_distance
- 0x804A44AC: aSMAN_player_push_scroll_request
- 0x804A4580: aSMAN_set_speed_relations_norm_player_push
- 0x804A46E8: aSMAN_get_oc_actor
- 0x804A4708: aSMAN_MakeBreakEffect
- 0x804A47EC: aSMAN_status_check_in_move
- 0x804A48A4: aSMAN_position_move
- 0x804A495C: aSMAN_BGcheck
- 0x804A4CB4: aSMAN_snowman_hit_check
- 0x804A4F30: aSMAN_OBJcheck
- 0x804A50E4: aSMAN_set_speed_relations_norm
- 0x804A5220: aSMAN_set_speed_relations_swim
- 0x804A53C4: aSMAN_calc_axis
- 0x804A54D0: aSMAN_calc_scale
- 0x804A5600: aSMAN_calc_objChkRange
- 0x804A5718: aSMAN_Player_push_Request
- 0x804A591C: aSMAN_process_normal_init
- 0x804A5944: aSMAN_process_normal
- 0x804A59D0: aSMAN_process_player_push_init
- 0x804A5A8C: aSMAN_process_player_push
- 0x804A60FC: aSMAN_process_player_push_scroll_init
- 0x804A610C: aSMAN_process_player_push_scroll
- 0x804A627C: aSMAN_process_swim_init
- 0x804A62A4: aSMAN_process_swim
- 0x804A648C: aSMAN_process_air_init
- 0x804A6584: aSMAN_process_air
- 0x804A698C: aSMAN_process_hole_init
- 0x804A69C4: aSMAN_process_hole
- 0x804A69CC: aSMAN_decide_scale_result
- 0x804A6A58: aSMAN_get_snowman_indx
- 0x804A6A94: aSMAN_process_combine_head_jump_init
- 0x804A6CB0: aSMAN_process_combine_head_jump
- 0x804A7030: aSMAN_set_talk_info_combine_head_init
- 0x804A70B4: aSMAN_set_talk_info_normal_init
- 0x804A70EC: aSMAN_process_combine_head_init
- 0x804A7234: aSMAN_process_combine_head
- 0x804A733C: aSMAN_process_combine_body_init
- 0x804A746C: aSMAN_process_combine_body
- 0x804A751C: aSMAN_actor_move
- 0x804A7648: aSMAN_actor_draw
- 0x804A7750: aTA1_actor_ct
- 0x804A7774: aTA1_destruct
- 0x804A7794: aTA1_setupAction
- 0x804A77B4: aTA1_actor_move
- 0x804A7800: aTA1_actor_draw
- 0x804A78A4: aTBG1_actor_ct
- 0x804A78C8: aTBG1_destruct
- 0x804A78E8: aTBG1_setupAction
- 0x804A7908: aTBG1_actor_move
- 0x804A7954: aTBG1_actor_draw
- 0x804A79F8: aTBG2_actor_ct
- 0x804A7A1C: aTBG2_destruct
- 0x804A7A3C: aTBG2_setupAction
- 0x804A7A5C: aTBG2_actor_move
- 0x804A7AA8: aTBG2_actor_draw
- 0x804A7B4C: aTB1_actor_ct
- 0x804A7B70: aTB1_destruct
- 0x804A7B90: aTB1_setupAction
- 0x804A7BB0: aTB1_actor_move
- 0x804A7BFC: aTB1_actor_draw
- 0x804A7CA0: aTB2_actor_ct
- 0x804A7CC4: aTB2_destruct
- 0x804A7CE4: aTB2_setupAction
- 0x804A7D04: aTB2_actor_move
- 0x804A7D50: aTB2_actor_draw
- 0x804A7DF4: aTB3_actor_ct
- 0x804A7E18: aTB3_destruct
- 0x804A7E38: aTB3_setupAction
- 0x804A7E58: aTB3_actor_move
- 0x804A7EA4: aTB3_actor_draw
- 0x804A7F48: aTB4_actor_ct
- 0x804A7F6C: aTB4_destruct
- 0x804A7F8C: aTB4_setupAction
- 0x804A7FAC: aTB4_actor_move
- 0x804A7FF8: aTB4_actor_draw
- 0x804A809C: aTCB1_actor_ct
- 0x804A80C0: aTCB1_destruct
- 0x804A80E0: aTCB1_setupAction
- 0x804A8100: aTCB1_actor_move
- 0x804A814C: aTCB1_actor_draw
- 0x804A81F0: aTCR_actor_ct
- 0x804A8214: aTCR_calc_scale
- 0x804A8280: aTCR_takeout
- 0x804A82A4: aTCR_putaway
- 0x804A82C8: aTCR_destruct
- 0x804A82E8: aTCR_setupAction
- 0x804A8320: aTCR_actor_move
- 0x804A836C: aTCR_actor_draw
- 0x804A8454: aTFL_calc_angl
- 0x804A84C0: aTFL_make_vtx
- 0x804A86C4: aTFL_actor_draw
- 0x804A8834: aTHB_actor_ct
- 0x804A8858: aTHB_actor_dt
- 0x804A885C: aTHB_calc_scale
- 0x804A88C8: aTHB_takeout
- 0x804A88EC: aTHB_putaway
- 0x804A8910: aTHB_destruct
- 0x804A8930: aTHB_setupAction
- 0x804A8968: aTHB_actor_move
- 0x804A89B4: aTHB_actor_draw
- 0x804A8A9C: aTHS1_actor_ct
- 0x804A8AC0: aTHS1_destruct
- 0x804A8AE0: aTHS1_setupAction
- 0x804A8B00: aTHS1_actor_move
- 0x804A8B4C: aTHS1_actor_draw
- 0x804A8BF0: aTHT1_actor_ct
- 0x804A8C14: aTHT1_destruct
- 0x804A8C34: aTHT1_setupAction
- 0x804A8C54: aTHT1_actor_move
- 0x804A8CA0: aTHT1_actor_draw
- 0x804A8D44: aTHT2_actor_ct
- 0x804A8D68: aTHT2_destruct
- 0x804A8D88: aTHT2_setupAction
- 0x804A8DA8: aTHT2_actor_move
- 0x804A8DF4: aTHT2_actor_draw
- 0x804A8E98: aTHT3_actor_ct
- 0x804A8EBC: aTHT3_destruct
- 0x804A8EDC: aTHT3_setupAction
- 0x804A8EFC: aTHT3_actor_move
- 0x804A8F48: aTHT3_actor_draw
- 0x804A8FEC: aTKT_actor_ct
- 0x804A905C: aTKT_calc_scale
- 0x804A90D4: aTKT_takeout
- 0x804A90F8: aTKT_putaway
- 0x804A911C: aTKT_destruct
- 0x804A913C: aTKT_s_takeout
- 0x804A915C: aTKT_setupAction
- 0x804A91E4: aTKT_actor_move
- 0x804A9238: aTKT_actor_draw
- 0x804A9348: aTNS_actor_ct
- 0x804A936C: aTNS_destruct
- 0x804A938C: aTNS_setupAction
- 0x804A93B0: aTNS_actor_move
- 0x804A94C4: aTNS_actor_draw
- 0x804A95F4: aTPT_actor_ct
- 0x804A9618: aTPT_calc_scale
- 0x804A9684: aTPT_takeout
- 0x804A96A8: aTPT_putaway
- 0x804A96CC: aTPT_destruct
- 0x804A96EC: aTPT_setupAction
- 0x804A9724: aTPT_actor_move
- 0x804A9770: aTPT_actor_draw
- 0x804A9858: aTRI1_actor_ct
- 0x804A987C: aTRI1_destruct
- 0x804A989C: aTRI1_setupAction
- 0x804A98BC: aTRI1_actor_move
- 0x804A9908: aTRI1_actor_draw
- 0x804A99AC: aTRI2_actor_ct
- 0x804A99D0: aTRI2_destruct
- 0x804A99F0: aTRI2_setupAction
- 0x804A9A10: aTRI2_actor_move
- 0x804A9A5C: aTRI2_actor_draw
- 0x804A9B00: aTTM_actor_draw
- 0x804A9CC4: aTTB_actor_ct
- 0x804A9CE8: aTTB_calc_scale
- 0x804A9D54: aTTB_takeout
- 0x804A9D78: aTTB_putaway
- 0x804A9D9C: aTTB_destruct
- 0x804A9DBC: aTTB_setupAction
- 0x804A9DF0: aTTB_actor_move
- 0x804A9E3C: aTTB_actor_draw
- 0x804A9F24: aTUMB_actor_ct
- 0x804A9F48: aTUMB_OngenTrgStart_sub
- 0x804A9F74: aTUMB_OngenTrgStart
- 0x804A9FBC: aTUMB_calc_model_scale_sub
- 0x804AA0C0: aTUMB_calc_model_scale
- 0x804AA108: aTUMB_anime_proc
- 0x804AA178: aTUMB_takeout_before
- 0x804AA1A8: aTUMB_destruct
- 0x804AA1C8: aTUMB_setupAction
- 0x804AA244: aTUMB_actor_move
- 0x804AA2A4: aTUMB_actor_draw
- 0x804AA4C8: aTUT_actor_ct
- 0x804AA4EC: aTUT_calc_scale
- 0x804AA558: aTUT_takeout
- 0x804AA57C: aTUT_putaway
- 0x804AA5A0: aTUT_destruct
- 0x804AA5C0: aTUT_setupAction
- 0x804AA5F8: aTUT_actor_move
- 0x804AA644: aTUT_actor_draw
- 0x804AA72C: aTZN1_actor_ct
- 0x804AA750: aTZN1_destruct
- 0x804AA770: aTZN1_setupAction
- 0x804AA790: aTZN1_actor_move
- 0x804AA7DC: aTZN1_actor_draw
- 0x804AA880: aTZN2_actor_ct
- 0x804AA8A4: aTZN2_destruct
- 0x804AA8C4: aTZN2_setupAction
- 0x804AA8E4: aTZN2_actor_move
- 0x804AA930: aTZN2_actor_draw
- 0x804AA9D4: aTKC_actor_ct
- 0x804AAAC4: aTKC_actor_dt
- 0x804AAB00: aTKC_actor_move
- 0x804AAB7C: aTKC_irekae_2
- 0x804AABD0: aTKC_irekae_1
- 0x804AAC40: aTKC_goal
- 0x804AACE4: aTKC_go
- 0x804AADD8: aTKC_set
- 0x804AAE5C: aTKC_ready
- 0x804AAED8: aTKC_strech
- 0x804AAF5C: aTKC_wait2
- 0x804AAFB8: aTKC_wait
- 0x804AB024: aTKC_setupAction
- 0x804AB0D4: aTKN1_normal_wait_init
- 0x804AB10C: aTKN1_wait_init
- 0x804AB134: aTKN1_run_init
- 0x804AB190: aTKN1_turn_d_init
- 0x804AB1EC: aTKN1_turn_f_init
- 0x804AB248: aTKN1_turn_l_init
- 0x804AB2A4: aTKN1_turn_init
- 0x804AB2F8: aTKN1_run_turn_init
- 0x804AB34C: aTKN1_warmup_init
- 0x804AB3E0: aTKN1_ready_init
- 0x804AB444: aTKN1_kokeru_init
- 0x804AB4CC: aTKN1_getup_init
- 0x804AB53C: aTKN1_goal_init
- 0x804AB5CC: aTKN1_goal1_init
- 0x804AB628: aTKN1_goal2_init
- 0x804AB684: aTKN1_kansen_init
- 0x804AB6BC: aTKN1_omedeto_init
- 0x804AB724: aTKN1_omedeto_af_init
- 0x804AB764: aTKN1_move_init
- 0x804AB79C: aTKN1_lookl_init
- 0x804AB810: aTKC_clip_npc1_think_init
- 0x804AB844: aTKC_clip_next_run
- 0x804ABB3C: aTKC_clip_get_angle
- 0x804ABBCC: aTKC_clip_run_proc
- 0x804ABC60: aTKC_clip_run_check
- 0x804ABD34: aTKC_clip_top_check
- 0x804ABDE8: aTKC_clip_goal_check
- 0x804ABE50: aTKC_clip_next_pos
- 0x804ABEC4: aTKC_clip_next_warmup
- 0x804ABFAC: aTKC_clip_set_talk_request
- 0x804AC034: aTOL_actor_ct
- 0x804AC058: aTOL_actor_dt
- 0x804AC078: aTOL_check_data_bank
- 0x804AC0E0: aTOL_birth_proc
- 0x804AC1A0: aTOL_chg_request_mode_proc
- 0x804AC1C0: aTOL_secure_pl_umbrella_bank_area
- 0x804AC230: aTOL_init_clip_area
- 0x804AC2B4: aTOL_free_clip_area
- 0x804AC2D8: aTRD_actor_ct
- 0x804AC374: aTRD_actor_dt
- 0x804AC398: aTRD_set_door_SE
- 0x804AC418: aTRD_actor_move
- 0x804AC48C: aTRD_actor_draw
- 0x804AC510: aTrainWindow_GetTreePalletIdx
- 0x804AC570: Train_Window_Actor_ct
- 0x804AC680: Train_Window_Actor_dt
- 0x804AC684: aTW_GetNowAlpha
- 0x804AC828: Train_Window_Actor_move
- 0x804AC998: aTrainWindow_OperateScrollLimit
- 0x804AC9D4: aTrainWindow_TileScroll
- 0x804ACA5C: aTrainWindow_TileScroll2
- 0x804ACB48: aTrainWindow_DrawGoneOutTunnel
- 0x804ACC7C: aTrainWindow_DrawGoingOutTunnel
- 0x804ACDF4: aTrainWindow_NoDraw
- 0x804ACE08: aTrainWindow_DrawInTunnel
- 0x804ACF80: aTrainWindow_SetLightPrimColorDetail
- 0x804AD0C4: aTrainWindow_SetTreeTextureScroll
- 0x804AD13C: Train_Window_Actor_draw
- 0x804AD428: aTNC_actor_ct
- 0x804AD4B0: aTNC_actor_dt
- 0x804AD4D8: aTNC_actor_move
- 0x804AD500: aTNC_wait
- 0x804AD628: aTNC_setupAction
- 0x804AD644: aUKI_actor_ct
- 0x804AD7BC: aUKI_actor_dt
- 0x804AD7E8: set_collision
- 0x804AD834: aUKI_set_value
- 0x804AD870: aUKI_get_fish_type
- 0x804AD89C: aUKI_chase_color
- 0x804AD938: aUKI_BGcheck
- 0x804ADB60: aUKI_touch_vib_proc
- 0x804ADBC8: aUKI_bite_vib_proc
- 0x804ADC30: aUKI_clear_spd
- 0x804ADC48: aUKI_parabola_init
- 0x804ADDC0: aUKI_parabola_move
- 0x804ADE68: aUKI_Get_flow_angle
- 0x804ADEA4: aUKI_effect_sibuki
- 0x804ADF84: aUKI_effect_hamon
- 0x804AE064: aUKI_movement
- 0x804AE1DC: aUKI_coast_wave
- 0x804AE280: aUKI_vib_calc
- 0x804AE2A4: aUKI_set_spd_relations_in_water
- 0x804AE6BC: aUKI_color
- 0x804AE78C: aUKI_force_command
- 0x804AE858: aUKI_carry
- 0x804AE8E4: aUKI_ready
- 0x804AE96C: aUKI_air
- 0x804AE9EC: aUKI_cast
- 0x804AEA98: aUKI_wait
- 0x804AEBBC: aUKI_hit
- 0x804AEC64: aUKI_touch
- 0x804AED50: aUKI_bite
- 0x804AEF58: aUKI_catch
- 0x804AEFEC: aUKI_get
- 0x804AF05C: aUKI_force
- 0x804AF0CC: aUKI_set_proc_carry
- 0x804AF0EC: aUKI_set_proc_ready
- 0x804AF1AC: aUKI_set_proc_air
- 0x804AF1F8: aUKI_set_proc_cast
- 0x804AF24C: aUKI_set_proc_wait
- 0x804AF270: aUKI_set_proc_hit
- 0x804AF310: aUKI_set_proc_touch
- 0x804AF36C: aUKI_set_proc_bite
- 0x804AF43C: aUKI_set_proc_catch
- 0x804AF458: aUKI_set_proc_get
- 0x804AF464: aUKI_set_proc
- 0x804AF4B8: aUKI_actor_move
- 0x804AF5E8: aUKI_rotate_calc
- 0x804AF6B4: aUKI_actor_draw
- 0x804AFC14: bCI_actor_ct
- 0x804AFE40: bCI_actor_dt
- 0x804B6E80: bg_cherry_item_talking_display_limit_check
- 0x804B6EE8: bCI_actor_move
- 0x804B6F80: bCI_actor_draw
- 0x804B6FB4: bIT_actor_ct
- 0x804B71C4: bIT_actor_dt
- 0x804BE204: bg_item_talking_display_limit_check
- 0x804BE26C: bIT_actor_move
- 0x804BE304: bIT_actor_draw
- 0x804BE338: bPI_outPutData
- 0x804BE44C: bPI_classifyitemDataTable
- 0x804BE504: bPI_set_draw_tbl
- 0x804BE5B0: bPI_chg_draw_tbl
- 0x804BE624: bPI_renew_draw_and_crs_data
- 0x804BE694: bPI_actor_move
- 0x804BE6EC: bPI_draw_item_loop
- 0x804BE7B0: bPI_draw_item
- 0x804BE84C: bPI_actor_draw
- 0x804BE890: bPTI_actor_ct
- 0x804BE8E0: bPTI_actor_draw
- 0x804BE9FC: bWI_actor_ct
- 0x804BECBC: bWI_actor_dt
- 0x804C5CFC: bg_winter_item_talking_display_limit_check
- 0x804C5D64: bWI_actor_move
- 0x804C5DFC: bWI_actor_draw
- 0x804C5E30: bXI_actor_ct
- 0x804C60D4: bXI_actor_dt
- 0x804CD114: bg_xmas_item_talking_display_limit_check
- 0x804CD17C: bXI_actor_move
- 0x804CD264: bXI_actor_draw
- 0x804CD298: bXI_draw_loop_type1_xtree
- 0x804CD474: eEC_Name2EffectMake
- 0x804CD5BC: eEC_Name2EffectKill
- 0x804CD6B0: eEC_Name2EffectKillAll
- 0x804CD754: eEC_InitEffectControlWork
- 0x804CD798: eEC_EffectLib2Clip
- 0x804CD87C: eEC_MakeEffectLight
- 0x804CD8F4: eEC_DeleteEffectLight
- 0x804CD924: eEC_actor_ct
- 0x804CD9DC: eEC_actor_dt
- 0x804CDA14: eEC_actor_draw
- 0x804CDAB0: eEC_DistDeath
- 0x804CDBC8: eEC_AllEffectMove
- 0x804CDC98: eEC_actor_move
- 0x804CDD00: eEC_GetEffectBuff
- 0x804CDDE8: eEC_SetFirstOffset
- 0x804CDE2C: eEC_MakeEffect
- 0x804CDF74: eEL_InitUnchar
- 0x804CDF90: eEL_VectorRoteteY
- 0x804CE030: eEL_RandomFirstSpeed
- 0x804CE174: eEL_SetContiniousEnv
- 0x804CE1C0: eEL_CalcAdjust
- 0x804CE24C: eEL_AutoMatrixXlu
- 0x804CE350: eEL_AutoMatrixXlu_Offset
- 0x804CE4C8: eEC_MorphCombine
- 0x804CE57C: eEL_SpecialBlockCenterPos
- 0x804CE628: eEL_EffectLightStatus
- 0x804CE668: eEL_InitEffectLight
- 0x804CE6B0: eEL_CalcEffectLight_Set
- 0x804CE9E4: eEL_RegistEffectLight
- 0x804CEA2C: eEL_DecideLightPower
- 0x804CEB98: mEL_CheckLookAtBlock
- 0x804CEC5C: Ef_Lamp_Light_actor_ct
- 0x804CECC8: Ef_Lamp_Light_actor_dt
- 0x804CECFC: eLL_get_light_sw_other_room
- 0x804CED30: eLL_get_light_sw_player_room
- 0x804CED6C: eLL_get_light_sw_start_demo
- 0x804CED90: eLL_ctrl_light_sw
- 0x804CEE40: Ef_Lamp_Light_actor_move
- 0x804CEF2C: Ef_Room_Sunshine_actor_ct
- 0x804CF0D8: calc_scale_Ef_Room_Sunshine
- 0x804CF198: calc_alpha_Ef_Room_Sunshine
- 0x804CF334: Ef_Room_SunshineL_actor_move
- 0x804CF3C4: Ef_Room_SunshineR_actor_move
- 0x804CF45C: setup_mode_Ef_Room_Sunshine
- 0x804CF5BC: Ef_Room_SunshineL_actor_draw
- 0x804CF6A0: Ef_Room_SunshineR_actor_draw
- 0x804CF784: Ef_Room_Sunshine_Police_actor_ct
- 0x804CF950: calc_scale_Ef_Room_Sunshine_Police
- 0x804CFA28: calc_alpha_Ef_Room_SunshinePolice
- 0x804CFB74: Ef_Room_Sunshine_PoliceL_actor_move
- 0x804CFC04: Ef_Room_Sunshine_PoliceR_actor_move
- 0x804CFCA4: cull_check_from_camera
- 0x804CFCE4: setup_mode_Ef_Room_Sunshine_Police
- 0x804CFE3C: Ef_Room_Sunshine_PoliceL_actor_draw
- 0x804CFEE4: Ef_Room_Sunshine_PoliceR_actor_draw
- 0x804CFF8C: Ef_Room_Sunshine_Posthouse_actor_ct
- 0x804D0138: calc_scale_Ef_Room_Sunshine_Posthouse
- 0x804D0210: calc_alpha_Ef_Room_Sunshine_Posthouse
- 0x804D035C: Ef_Room_Sunshine_PosthouseL_actor_move
- 0x804D03EC: Ef_Room_Sunshine_PosthouseR_actor_move
- 0x804D048C: setup_mode_Ef_Room_Sunshine_Posthouse
- 0x804D05E4: Ef_Room_Sunshine_PosthouseL_actor_draw
- 0x804D0674: Ef_Room_Sunshine_PosthouseR_actor_draw
- 0x804D0704: Ef_Room_Sunshine_Museum_actor_ct
- 0x804D08D0: calc_scale_Ef_Room_Sunshine_Museum
- 0x804D09A8: calc_alpha_Ef_Room_SunshineMuseum
- 0x804D0AF4: Ef_Room_Sunshine_MuseumL_actor_move
- 0x804D0B84: Ef_Room_Sunshine_MuseumR_actor_move
- 0x804D0C24: setup_mode_Ef_Room_Sunshine_Museum
- 0x804D0DEC: Ef_Room_Sunshine_MuseumL_actor_draw
- 0x804D0E94: Ef_Room_Sunshine_MuseumR_actor_draw
- 0x804D0F3C: Ef_Room_Sunshine_Minsect_actor_ct
- 0x804D1088: calc_scale_Ef_Room_Sunshine_Minsect
- 0x804D1160: calc_alpha_Ef_Room_SunshineMinsect
- 0x804D12AC: Ef_Room_Sunshine_MinsectL_actor_move
- 0x804D138C: Ef_Room_Sunshine_MinsectR_actor_move
- 0x804D147C: setup_mode_Ef_Room_Sunshine_Minsect
- 0x804D15D4: setup_mode_Ef_Room_Sunshine_Minsect_decal
- 0x804D172C: BG_draw_Minsect
- 0x804D1804: BG_draw_Minsect_niwa
- 0x804D189C: Ef_Room_Sunshine_MinsectL_actor_draw
- 0x804D1A2C: Ef_Room_Sunshine_MinsectR_actor_draw
- 0x804D1BBC: mHsRm_EvaluateHuusuiPoint_Single
- 0x804D1EE8: mHsRm_EvaluateHuusuiPoint
- 0x804D1FDC: mHsRm_HuusuiRoomOvl
- 0x804D2164: mMkRm_GetSeriesName
- 0x804D21A4: mMkRm_GetRemainOneFtr
- 0x804D2218: mMkRm_ProcAfterSending
- 0x804D2250: mMkRm_DecideLetterNo
- 0x804D2408: mMkRm_GetSetItemNo
- 0x804D2424: mMkRm_CountCharactor
- 0x804D2498: mMkRm_SendMarkLetter
- 0x804D26E0: mMkRm_ForbidMinusPoint
- 0x804D26F8: mMkRm_EvaluateLetsClean
- 0x804D28D8: mMkRm_EvaluateCompleteObstacle
- 0x804D29F8: mMkRm_CheckEdgeZone
- 0x804D2AF8: mMkRm_EvaluateDirect
- 0x804D2C74: mMkRm_EvaluateLuckyFurniture
- 0x804D2D58: mMkRm_EvaluateSetSeriesComplete
- 0x804D2E1C: mMkRm_EvaluateThemeSeriesComplete
- 0x804D309C: mMkRm_EvaluateBaseSeriesComplete
- 0x804D328C: mMkRm_EvaluateNessBounos
- 0x804D3330: mMkRm_EvaluateBasePoint
- 0x804D34F8: mMkRm_InitSearchTable
- 0x804D3520: mMkRm_AssignIdxInGroup_BaseSeries
- 0x804D358C: mMkRm_AssignIdxInGroup_ThemeSeries
- 0x804D35EC: mMkRm_AssignIdxInGroup_SetSeries
- 0x804D364C: mMkRm_AssignIdxInGroup_OneSeries
- 0x804D36AC: mMkRm_AssignIdxInGroup
- 0x804D3728: mMkRm_MakeFtrTable
- 0x804D3818: mMkRm_InitData
- 0x804D3860: mMkRm_MarkRoomOneFloor
- 0x804D39F8: mMkRm_MarkRoomOvl
- 0x804D3B24: Player_actor_init_value
- 0x804D3FB8: Player_actor_ct
- 0x804D40AC: Player_actor_dt
- 0x804D4140: Player_actor_request_main_change_from_submenu
- 0x804D41D8: Player_actor_request_change_item
- 0x804D42B0: Player_actor_settle_main
- 0x804D433C: Player_actor_change_main_index
- 0x804D4460: Player_actor_change_proc_index
- 0x804D4490: Player_actor_move
- 0x804D4524: Player_actor_draw
- 0x804D45CC: Player_actor_CheckController_forPickup
- 0x804D4664: Player_actor_CheckController_forAxe
- 0x804D46E0: Player_actor_CheckController_forNet
- 0x804D475C: Player_actor_CheckController_forRod
- 0x804D47D8: Player_actor_CheckController_forScoop
- 0x804D4854: Player_actor_CheckController_forUmbrella
- 0x804D48D0: Player_actor_CheckController_forFan
- 0x804D4984: Player_actor_CheckController_forShake_tree
- 0x804D4A68: Player_actor_CheckController_forStruggle_pitfall
- 0x804D4AAC: Player_actor_CheckController_forDush
- 0x804D4AE8: Player_actor_GetController_move_percentX
- 0x804D4B2C: Player_actor_GetController_move_percentY
- 0x804D4B70: Player_actor_GetController_move_percentR
- 0x804D4BB4: Player_actor_GetController_move_angle
- 0x804D4BF8: Player_actor_GetController_old_move_angle
- 0x804D4C3C: Player_actor_GetController_recognize_percentR
- 0x804D4C80: Player_actor_GetController_old_recognize_percentR
- 0x804D4CC4: Player_actor_CheckController_forRadio_exercise
- 0x804D4E08: Player_actor_set_viblation_common1
- 0x804D4E30: Player_actor_set_viblation_Dig_scoop
- 0x804D4E6C: Player_actor_set_viblation_Dig_scoop_stump
- 0x804D4EA8: Player_actor_set_viblation_Fill_scoop
- 0x804D4EE4: Player_actor_set_viblation_Reflect_scoop_hard
- 0x804D4F20: Player_actor_set_viblation_Reflect_scoop_soft
- 0x804D4F5C: Player_actor_set_viblation_Swing_net
- 0x804D4F98: Player_actor_set_viblation_Shake_tree
- 0x804D4FD4: Player_actor_set_viblation_Axe_hard
- 0x804D4FF4: Player_actor_set_viblation_Axe_soft
- 0x804D5014: Player_actor_set_viblation_Axe_cut
- 0x804D5050: Player_actor_set_viblation_Tumble
- 0x804D508C: Player_actor_set_viblation_Remove_grass
- 0x804D50C8: Player_actor_check_request_main_priority
- 0x804D50FC: Player_actor_request_main_index
- 0x804D5144: Player_actor_Set_start_refuse
- 0x804D5194: Player_actor_Set_address_able_display
- 0x804D51CC: Player_actor_Get_DemoMoveSpeedF
- 0x804D5224: Player_actor_Set_force_shadow_position
- 0x804D5244: Player_actor_Set_force_shadow_position_fromAnimePosition
- 0x804D52B4: Player_actor_Set_force_shadow_position_fromWorldPosition
- 0x804D52D8: Player_actor_SetupShadow
- 0x804D5384: Player_actor_SetupSpeedF
- 0x804D53CC: Player_actor_Get_SetupRequestMainIndexPriority
- 0x804D5410: Player_actor_SetupRequestMainIndexPriority
- 0x804D5454: Player_actor_SettleRequestMainIndexPriority
- 0x804D54F8: Player_actor_set_eye_pattern
- 0x804D5500: Player_actor_set_eye_pattern_normal
- 0x804D55DC: Player_actor_Get_eye_tex_p
- 0x804D5600: Player_actor_set_mouth_pattern
- 0x804D5608: Player_actor_Get_mouth_tex_p
- 0x804D562C: Player_actor_set_tex_anime_pattern
- 0x804D56E8: Player_actor_SetupTextureAnimation
- 0x804D5774: Player_actor_Set_now_item_main_index
- 0x804D57AC: Player_actor_SetupItem_common
- 0x804D5840: Player_actor_SetupItemScale
- 0x804D5884: Player_actor_SetupWeight
- 0x804D58F8: Player_actor_Get_status_for_bee
- 0x804D5904: Player_actor_Set_status_for_bee
- 0x804D590C: Player_actor_Setup_status_for_bee
- 0x804D5944: Player_actor_setup_main_Base2
- 0x804D59E0: Player_actor_setup_main_Base
- 0x804D5A04: Player_actor_Movement_Base
- 0x804D5A24: Player_actor_Movement_Base_Braking_common
- 0x804D5A88: Player_actor_Movement_Base_Braking
- 0x804D5AB0: Player_actor_SetPlayerAngle_forUki
- 0x804D5BA4: Player_actor_Movement_Base_Stop
- 0x804D5C04: Player_actor_Search_exist_npc_inCircle_forWade
- 0x804D5CAC: Player_actor_CheckAbleMoveWadeBG
- 0x804D5E94: Player_actor_CheckAbleMoveWadeBlock
- 0x804D6248: Player_actor_CheckAbleMoveDemoWadeBlock
- 0x804D6460: Player_actor_CheckAbleMoveDemoWadeBoatBlock
- 0x804D6594: Player_actor_CorrectWadeBlockBorder
- 0x804D65CC: Player_actor_DMA_Animation
- 0x804D6600: Player_actor_DMA_PartTable
- 0x804D6634: Player_actor_CulcAnimation_Base
- 0x804D6670: Player_actor_CulcAnimation_Base2
- 0x804D66D4: Player_actor_CulcAnimation_Base3
- 0x804D6708: Player_actor_CheckContinueAnimation
- 0x804D67E0: Player_actor_InitAnimation_Base1
- 0x804D68F8: Player_actor_InitAnimation_Base2
- 0x804D6A1C: Player_actor_InitAnimation_Base3
- 0x804D6AF4: Player_actor_Get_player_move_position
- 0x804D6B10: Player_actor_ct_forCorect
- 0x804D6BC4: Player_actor_dt_forCorect
- 0x804D6C1C: Player_actor_Excute_Corect_forStand
- 0x804D6C68: Player_actor_Excute_Corect_forBrake
- 0x804D6CB0: Player_actor_Excute_Corect_forOutdoor
- 0x804D6D64: Player_actor_Check_OBJtoLine_forItem_axe
- 0x804D6D70: Player_actor_Check_OBJtoLine_forItem_net
- 0x804D6D9C: Player_actor_SetPosition_OBJtoLine_forItem
- 0x804D6FBC: Player_actor_Culc_over_speed_normalize_NoneZero
- 0x804D70C8: Player_actor_set_eye_PositionAndAngle
- 0x804D70F0: Player_actor_set_lean_angle
- 0x804D71DC: Player_actor_recover_lean_angle
- 0x804D7280: Player_actor_Get_Angle_fromIndex
- 0x804D72AC: Player_actor_Get_Angle_fromDirection
- 0x804D72DC: Player_actor_Get_Direction_fromAngle
- 0x804D7334: Player_actor_Get_Index_fromAngle
- 0x804D7370: Player_actor_RecieveDemoOrder_EffectOrder
- 0x804D73BC: Player_actor_Get_ControllerAngle
- 0x804D7400: Player_actor_Get_DiffWorldAngleToControllerAngle
- 0x804D7448: Player_actor_putin
- 0x804D748C: Player_actor_putin_item
- 0x804D74E8: Player_actor_putin_item_layer2
- 0x804D7540: Player_actor_putin_furniture
- 0x804D75C4: Player_actor_Check_AnimationFrame_PerfectEquel
- 0x804D75D8: Player_actor_Check_AnimationFrame_Common
- 0x804D76E8: Player_actor_Check_AnimationFrame
- 0x804D7718: Player_actor_Check_TradingItemMode
- 0x804D7740: Player_actor_CHange_TradingItemMode
- 0x804D777C: Player_actor_Set_item_matrix_set
- 0x804D7788: Player_actor_Unset_item_matrix_set
- 0x804D7794: Player_actor_Change_ItemParent
- 0x804D7800: Player_actor_Check_ItemParent
- 0x804D7824: Player_actor_Birth_TradingItem
- 0x804D7894: Player_actor_ItemBank_ct
- 0x804D7898: Player_actor_Change_ItemBank
- 0x804D793C: Player_actor_Set_OldAngle
- 0x804D7A64: Player_actor_Reset_Item_net_catch_request_table
- 0x804D7A74: Player_actor_Set_Item_net_catch_request_table
- 0x804D7B64: Player_actor_Set_Item_net_catch_request_force
- 0x804D7BCC: Player_actor_Get_Item_net_catch_swing_timer
- 0x804D7C14: Player_actor_DisappearShadow_fromAnimationFrame
- 0x804D7C94: Player_actor_AppearShadow_fromAnimationFrame
- 0x804D7D38: Player_actor_get_door_label
- 0x804D7D80: Player_actor_BGcheck_common_type1
- 0x804D7DD8: Player_actor_BGcheck_common_type2
- 0x804D7E1C: Player_actor_BGcheck_common_type3
- 0x804D7E58: Player_actor_Set_force_position_angle
- 0x804D7F20: Player_actor_Reset_force_position_angle
- 0x804D7F2C: Player_actor_Get_force_position_angle
- 0x804D7FE4: Player_actor_Reinput_force_position_angle
- 0x804D8040: Player_actor_Get_DemoOrder
- 0x804D806C: Player_actor_Set_DemoOrder
- 0x804D8098: Player_actor_Get_DemoPosition
- 0x804D817C: Player_actor_Get_DemoChangeAngleY
- 0x804D81A8: Player_actor_Set_DemoChangeAngleY
- 0x804D81D4: Player_actor_Get_DemoAngleY
- 0x804D8200: Player_actor_CheckScene_AbleOutItem
- 0x804D822C: Player_actor_CheckPlayer_AbleOutItem
- 0x804D8268: Player_actor_CheckPlayer_AbleLoadItem
- 0x804D82A4: Player_actor_Check_is_demo_mode
- 0x804D82E0: Player_actor_Check_axe_after
- 0x804D9430: Player_actor_GetitemNo_forDamageAxe
- 0x804D95D0: Player_actor_CheckAndRequest_main_axe_all
- 0x804D972C: Player_actor_CheckAbleSpeed_forItem
- 0x804D9788: Player_actor_CheckAndRequest_main_umbrella_all
- 0x804D97EC: Player_actor_CheckAndRequest_main_fan_all
- 0x804D9858: Player_actor_SetEffectStart_axe_common
- 0x804D9904: Player_actor_Get_WadeEndPos
- 0x804D9A64: Player_actor_Init_ScrollDemo_forWade
- 0x804D9AA8: Player_actor_Init_ScrollDemo_forDemo_wade
- 0x804D9AEC: Player_actor_Init_ScrollDemo_forDemo_geton_boat_wade
- 0x804D9B38: Player_actor_Init_ScrollDemo_forWade_snowball
- 0x804D9B84: Player_actor_Set_ScrollDemo_forWade
- 0x804D9C1C: Player_actor_Set_ScrollDemo_forDemo_wade
- 0x804D9C74: Player_actor_Set_ScrollDemo_forDemo_geton_boat_wade
- 0x804D9CDC: Player_actor_Set_ScrollDemo_forWade_snowball
- 0x804D9D6C: Player_actor_SetFootMark_for_settle_main
- 0x804D9E8C: Player_actor_SetupItem_Base0
- 0x804D9F70: Player_actor_SetupItem_Base_windmill
- 0x804DA048: Player_actor_SetupItem_Base1
- 0x804DA104: Player_actor_SetupItem_Base2
- 0x804DA1C8: Player_actor_SetupItem_Base3
- 0x804DA2D4: Player_actor_Get_ItemRodTopInitPos
- 0x804DA3D0: Player_actor_Get_ItemRodVirtualTopPos
- 0x804DA418: Player_actor_check_cancel_request_change_proc_index
- 0x804DA484: Player_actor_able_request_main_index_for_reset
- 0x804DA4C0: Player_actor_check_able_request_main_index_for_reset
- 0x804DA540: Player_actor_check_request_main_able
- 0x804DA5B8: Player_actor_cancel_request_change_proc_index
- 0x804DA618: Player_actor_Check_scoop_after
- 0x804DA638: Player_actor_Search_STONE_TC
- 0x804DA700: Player_actor_CheckAndRequest_main_scoop_all
- 0x804DA84C: Player_actor_cancel_request_change_proc_index_by_A_btn
- 0x804DA8AC: Player_actor_Get_item_net_catch_label
- 0x804DA8E0: Player_actor_Change_item_net_catch_label
- 0x804DA978: Player_actor_Check_StopNet
- 0x804DA9CC: Player_actor_Check_HitAxe
- 0x804DAAC4: Player_actor_Check_VibUnit_OneFrame
- 0x804DAB98: Player_actor_Check_HitScoop
- 0x804DAC8C: Player_actor_Check_DigScoop
- 0x804DAD14: Player_actor_request_camera2_main_simple_fishing
- 0x804DAD74: Player_actor_request_camera2_main_simple_return
- 0x804DADC4: Player_actor_request_camera2_main_normal
- 0x804DAE04: Player_actor_request_camera2_change_priority
- 0x804DAE28: Player_actor_SearchPosition_npc_forStand
- 0x804DAEDC: Player_actor_SetEffect_forTakeout_item
- 0x804DAFFC: Player_actor_check_request_change_item
- 0x804DB06C: Player_actor_check_item_is_fish
- 0x804DB098: Player_actor_Check_CommonFootMark_AnimeFrame_fromAnimeIndex
- 0x804DB1BC: Player_actor_Check_RightFootMark_AnimeFrame_fromAnimeIndex
- 0x804DB1EC: Player_actor_Check_LeftFootMark_AnimeFrame_fromAnimeIndex
- 0x804DB21C: Player_actor_Set_FootMark_MarkOnly
- 0x804DB3AC: Player_actor_CheckAble_FootMark_Sound
- 0x804DB3D8: Player_actor_Set_FootMark_Base1
- 0x804DB43C: Player_actor_Set_FootMark_Base2
- 0x804DB498: Player_actor_Check_RotateOctagon
- 0x804DB4F8: Player_actor_Reset_unable_hand_item_in_demo
- 0x804DB538: Player_actor_Reset_able_hand_all_item_in_demo
- 0x804DB578: Player_actor_Set_EffectBgTree
- 0x804DB948: Player_actor_Get_shake_tree_position_and_itemNo
- 0x804DBF68: Player_actor_check_fg_little_shake_tree
- 0x804DBFFC: Player_actor_Check_able_shake_tree_table
- 0x804DC07C: Player_actor_Set_shake_tree_table
- 0x804DC214: Player_actor_check_little_shake_tree
- 0x804DC5A8: Player_actor_check_shake_tree_timer
- 0x804DC5F4: Player_actor_CheckAndRequest_main_shake_tree_all
- 0x804DC6C8: Player_actor_Get_tree_shaken_table_index
- 0x804DC78C: Player_actor_Check_tree_shaken_little
- 0x804DC85C: Player_actor_Check_tree_shaken_big
- 0x804DC92C: Player_actor_Check_tree_shaken
- 0x804DC98C: Player_actor_reset_pitfall
- 0x804DCA80: Player_actor_check_pitfall
- 0x804DCC5C: Player_actor_Check_end_stung_bee
- 0x804DCC90: Player_actor_Check_BirthBee_common
- 0x804DCD9C: Player_actor_set_ripple
- 0x804DCED0: Player_actor_Check_NecessaryDoorKnock
- 0x804DCF90: Player_actor_CheckAndRequest_KnockDoor
- 0x804DD010: Player_actor_CheckAndRequest_ItemInOut
- 0x804DD2A4: Player_actor_Set_bgm_volume
- 0x804DD360: Player_actor_Check_Label_main_push_snowball
- 0x804DD3B0: Player_actor_Check_Label_main_wade_snowball
- 0x804DD400: Player_actor_SetParam_for_push_snowball
- 0x804DD498: Player_actor_GetSnowballPos_forWadeSnowball
- 0x804DD4DC: Player_actor_CheckCondition_forWadeSnowball
- 0x804DD544: Player_actor_Culc_player_frame_counter
- 0x804DD554: Player_actor_Reset_excute_cancel_wade
- 0x804DD5CC: Player_actor_Culc_wade_end_pos
- 0x804DD794: Player_actor_Get_PickupHandPosition
- 0x804DD838: Player_actor_Get_ItemDisplayPos
- 0x804DD8B8: Player_actor_CheckItemPosition_forPickup
- 0x804DDA4C: Player_actor_CheckItem_fromPosition
- 0x804DDBE8: Player_actor_Search_putin_item
- 0x804DDD08: Player_actor_check_putin_item
- 0x804DDD60: Player_actor_Get_itemNo_forWindow
- 0x804DDDD4: Player_actor_able_submenu_request_main_index
- 0x804DDE44: Player_actor_Request_main_refuse_pickup_all
- 0x804DDE88: Player_actor_CheckAndRequest_main_pickup_all
- 0x804DE2E4: Player_actor_CheckScene_AbleSubmenu
- 0x804DE31C: Player_actor_check_cancel_event_without_priority
- 0x804DE378: Player_actor_Check_able_force_speak_label
- 0x804DE3C4: Player_actor_Reset_able_force_speak_label
- 0x804DE404: Player_actor_CheckAndSet_UZAI_forNpc
- 0x804DE4A8: Player_actor_Check_stung_mosquito
- 0x804DE538: Player_actor_Reset_bee_chase
- 0x804DE584: Player_actor_Check_player_sunburn_ChangeDay
- 0x804DE608: Player_actor_Check_player_sunburn_rankdown_interval
- 0x804DE700: Player_actor_Check_player_sunburn_rankdown
- 0x804DE7A4: Player_actor_Check_player_sunburn_rankup
- 0x804DE914: Player_actor_Set_player_sunburn_rankdown
- 0x804DE9DC: Player_actor_Set_player_sunburn_rankup
- 0x804DEA8C: Player_actor_Check_player_sunburn_for_dt
- 0x804DEAD8: Player_actor_Check_player_sunburn_for_main
- 0x804DEB1C: Player_actor_Check_player_sunburn_for_ct
- 0x804DEB60: Player_actor_Check_player_change_color_for_main
- 0x804DEBEC: Player_actor_Check_InBlockRadioExercise
- 0x804DECDC: Player_actor_Check_AbleRadioExercise
- 0x804DED18: Player_actor_Get_RadioExerciseCommandRingBufferIndex
- 0x804DED2C: Player_actor_Get_RadioExerciseCommand
- 0x804DED74: Player_actor_Set_RadioExerciseCommandRingBuffer
- 0x804DEE4C: Player_actor_Set_RadioExerciseCommand
- 0x804DEEB0: Player_actor_Check_radio_exercise_command
- 0x804DEFD4: Player_actor_CheckAndRequest_main_radio_exercise_all
- 0x804DF0F0: Player_actor_Set_old_sound_frame_counter
- 0x804DF120: Player_actor_check_able_change_camera_normal_index
- 0x804DF1B0: Player_actor_Set_Indoor_Camera_Index
- 0x804DF28C: Player_actor_sound_SetStatus
- 0x804DF344: Player_actor_set_sound_common1
- 0x804DF370: Player_actor_set_sound_common2
- 0x804DF394: Player_actor_sound_FootStep1
- 0x804DF414: Player_actor_sound_FootStep2
- 0x804DF4B0: Player_actor_sound_Tumble
- 0x804DF4F4: Player_actor_sound_AMI_FURI
- 0x804DF51C: Player_actor_sound_AMI_HIT
- 0x804DF544: Player_actor_sound_AMI_GET
- 0x804DF56C: Player_actor_sound_GASAGOSO
- 0x804DF590: Player_actor_sound_AXE_FURI
- 0x804DF5B4: Player_actor_sound_AXE_HIT
- 0x804DF600: Player_actor_sound_AXE_CUT
- 0x804DF64C: Player_actor_sound_SIT
- 0x804DF6A4: Player_actor_sound_STANDUP
- 0x804DF6FC: Player_actor_sound_JUMP
- 0x804DF720: Player_actor_sound_LANDING
- 0x804DF744: Player_actor_sound_ITEM_GET
- 0x804DF768: Player_actor_sound_BED_IN
- 0x804DF78C: Player_actor_sound_BED_NEGAERI
- 0x804DF7B0: Player_actor_sound_BED_OUT
- 0x804DF7D4: Player_actor_sound_ROD_STROKE
- 0x804DF7F8: Player_actor_sound_ROD_STROKE_small
- 0x804DF81C: Player_actor_sound_ROD_BACK
- 0x804DF840: Player_actor_sound_scoop1
- 0x804DF864: Player_actor_sound_scoop_umeru
- 0x804DF888: Player_actor_sound_scoop_hit
- 0x804DF8AC: Player_actor_sound_scoop_shigemi
- 0x804DF8D0: Player_actor_sound_ITEM_HORIDASHI
- 0x804DF8F4: Player_actor_sound_slip
- 0x804DF918: Player_actor_sound_tree_touch
- 0x804DF940: Player_actor_sound_tree_yurasu
- 0x804DF968: Player_actor_sound_kirikabu_scoop
- 0x804DF98C: Player_actor_sound_kirikabu_out
- 0x804DF9B0: Player_actor_sound_knock
- 0x804DF9D4: Player_actor_sound_coin_gasagoso
- 0x804DF9F8: Player_actor_sound_araiiki
- 0x804DFA3C: Player_actor_sound_zassou_nuku
- 0x804DFA64: Player_actor_sound_hachi_sasareru
- 0x804DFA88: Player_actor_sound_wear
- 0x804DFAAC: Player_actor_sound_dai_ue_kakunou
- 0x804DFAD0: Player_actor_sound_umbrella_rotate
- 0x804DFAF4: Player_actor_sound_Get_bgm_num_forCompletePayment
- 0x804DFB20: Player_actor_sound_Get_bgm_num_forDemoGetGoldenItem
- 0x804DFB64: Player_actor_sound_camera_move1
- 0x804DFB88: Player_actor_sound_camera_move2
- 0x804DFBAC: Player_actor_sound_karaburi
- 0x804DFBD0: Player_actor_sound_scoop_tree_hit
- 0x804DFBF4: Player_actor_sound_scoop_item_hit
- 0x804DFC18: Player_actor_sound_axe_ball_hit
- 0x804DFC3C: Player_actor_sound_axe_broken1
- 0x804DFC60: Player_actor_sound_axe_broken2
- 0x804DFC84: Player_actor_sound_axe_broken3
- 0x804DFCA8: Player_actor_sound_uchiwa
- 0x804DFCCC: Player_actor_sound_move_temochi_kazaguruma
- 0x804DFD70: Player_actor_ct_other_func1
- 0x804DFDE4: Player_actor_setup_main_Wade_other_func1
- 0x804DFDF0: Player_actor_setup_main_Wade_snowball_other_func1
- 0x804DFE10: Player_actor_setup_main_Wade_other_func2
- 0x804DFE6C: Player_actor_setup_main_Wade_snowball_other_func2
- 0x804DFE8C: Player_actor_setup_main_Demo_wade_other_func2
- 0x804DFEE8: Player_actor_setup_main_Demo_geton_boat_wade_other_func2
- 0x804DFF44: Player_actor_ChangeFace_for_Wade
- 0x804DFFBC: Player_actor_main_Wade_other_func1
- 0x804DFFE0: Player_actor_main_Demo_wade_other_func1
- 0x804E0004: Player_actor_main_Wade_snowball_other_func1
- 0x804E0028: Player_actor_main_Demo_geton_boat_wade_other_func1
- 0x804E004C: Player_actor_main_Sitdown_wait_other_func2
- 0x804E0090: Player_actor_main_Relax_rod_other_func2
- 0x804E00B0: Player_actor_main_Vib_rod_other_func2
- 0x804E00D0: Player_actor_main_Collect_rod_other_func2
- 0x804E00F0: Player_actor_main_Fly_rod_other_func2
- 0x804E0110: Player_actor_settle_main_Collect_rod_other_func2
- 0x804E0134: Player_actor_settle_main_Fly_rod_other_func2
- 0x804E0158: Player_actor_set_nextgoto_info_type0
- 0x804E01E0: Player_actor_set_nextgoto_info_type1
- 0x804E0288: Player_actor_check_bg_for_next_goto
- 0x804E0364: Player_actor_check_nextgoto
- 0x804E0584: Player_actor_check_forward
- 0x804E070C: Player_actor_move_other_func1
- 0x804E0798: Player_actor_move_other_func2
- 0x804E08AC: Player_actor_draw_other_func2
- 0x804E08CC: Player_actor_change_main_index_other_func1
- 0x804E08D0: Player_actor_change_main_index_other_func2
- 0x804E08D4: Player_actor_settle_main_other_func2
- 0x804E08F4: Player_actor_SetActorUki
- 0x804E0960: Player_actor_Item_main_other_func1
- 0x804E0980: Player_actor_setup_main_Demo_geton_boat_other_func2
- 0x804E0998: Player_actor_Set_ItemNoSubmenu
- 0x804E09E0: Player_actor_Get_ItemNoSubmenu
- 0x804E0A28: Player_actor_Get_ItemKind_from_submenu
- 0x804E0A4C: Player_actor_Get_ItemKind_fromScene
- 0x804E0A8C: Player_actor_Get_ItemKind
- 0x804E0B74: Player_actor_Get_BasicItemMainIndex_fromItemKind
- 0x804E0BA0: Player_actor_birth_umbrella
- 0x804E0C88: Player_actor_Get_umbrella_p
- 0x804E0CD0: Player_actor_Item_CulcAnimation_Base
- 0x804E0CF4: Player_actor_Item_CulcAnimation_Base2
- 0x804E0D20: Player_actor_Item_SetAnimation_Base
- 0x804E0D64: Player_actor_Item_DMA_Data
- 0x804E0E9C: Player_actor_Item_Set_Command_forUki
- 0x804E0EB0: Player_actor_Item_Set_RightHandPos_forUki
- 0x804E0FC8: Player_actor_Item_Set_LeftHandPos_forUki
- 0x804E10E0: Player_actor_Item_Set_PosSpeed_forUki
- 0x804E1108: Player_actor_Item_Set_AngleSpeedY_forUki
- 0x804E1164: Player_actor_Item_Set_RodTopPos_forUki
- 0x804E1194: Player_actor_LoadOrDestruct_Item
- 0x804E1308: Player_actor_CorrectSomething_net
- 0x804E137C: Player_actor_Check_ItemAnimationToItemKind
- 0x804E14DC: Player_actor_Item_main_axe_normal
- 0x804E14E4: Player_actor_Item_draw_axe
- 0x804E1580: Player_actor_Item_net_CulcJointAngle_dummy_net_base
- 0x804E17B4: Player_actor_Item_net_CulcJointAngle_dummy_net_reset
- 0x804E17F4: Player_actor_Item_net_CulcJointAngle_dummy_net_ready
- 0x804E1834: Player_actor_Item_net_CulcJointAngle_dummy_net_common
- 0x804E1ADC: Player_actor_Item_net_CulcJointAngle_dummy_net_walk
- 0x804E1B1C: Player_actor_Item_net_CulcJointAngle_dummy_net_zero
- 0x804E1B5C: Player_actor_Item_net_CulcJointAngle_dummy_net_ready_walk
- 0x804E1B9C: Player_actor_Item_net_CulcJointAngle_dummy_net_turn
- 0x804E1BD0: Player_actor_Item_net_CulcJointAngle_dummy_net_slip
- 0x804E1C04: Player_actor_Item_net_CulcJointAngle_dummy_net_swing
- 0x804E1C44: Player_actor_Item_net_CulcJointAngle_dummy_net
- 0x804E1CA8: Player_actor_Item_main_net_normal
- 0x804E1CE0: Player_actor_Item_main_net_stop
- 0x804E1D20: Player_actor_Item_draw_net_After_dummy_net
- 0x804E1D54: Player_actor_Item_draw_net_After
- 0x804E1DC8: Player_actor_Item_draw_net
- 0x804E1EA0: Player_actor_Item_main_umbrella_normal
- 0x804E1EC4: Player_actor_Item_draw_umbrella
- 0x804E1F1C: Player_actor_Item_Set_Scale_forUki_normal
- 0x804E1FA8: Player_actor_Item_Set_Value_forUki_normal
- 0x804E2014: Player_actor_Item_main_rod_normal
- 0x804E205C: Player_actor_Item_Set_Value_forUki_ready
- 0x804E20B0: Player_actor_Item_main_rod_ready
- 0x804E20E8: Player_actor_Item_Set_CastGoalPoint_forUki_cast
- 0x804E2118: Player_actor_Item_Set_Value_forUki_cast
- 0x804E216C: Player_actor_Item_Check_Status_forUki_cast
- 0x804E21A0: Player_actor_Item_main_rod_cast
- 0x804E21F8: Player_actor_Item_Set_Value_forUki_air
- 0x804E224C: Player_actor_Item_main_rod_air
- 0x804E2284: Player_actor_Item_SetFrame_forUki_relax
- 0x804E23C8: Player_actor_Item_Set_Value_forUki_relax
- 0x804E2410: Player_actor_Item_Check_Status_forUki_relax
- 0x804E242C: Player_actor_Item_main_rod_relax
- 0x804E2468: Player_actor_Item_Set_Value_forUki_collect
- 0x804E24BC: Player_actor_Item_Check_Status_forUki_collect
- 0x804E24E8: Player_actor_Item_main_rod_collect
- 0x804E2524: Player_actor_Item_SetFrame_forUki_vib
- 0x804E26A0: Player_actor_Item_Set_Value_forUki_vib
- 0x804E2700: Player_actor_Item_Check_Status_forUki_vib
- 0x804E272C: Player_actor_Item_main_rod_vib
- 0x804E2768: Player_actor_Item_Set_Value_forUki_fly
- 0x804E27C8: Player_actor_Item_Check_Status_forUki_fly
- 0x804E27F4: Player_actor_Item_main_rod_fly
- 0x804E2830: Player_actor_Item_Set_GyoeiScale_forUki_putaway
- 0x804E288C: Player_actor_Item_Set_Value_forUki_putaway
- 0x804E28EC: Player_actor_Item_main_rod_putaway
- 0x804E2930: Player_actor_Item_draw_net_After_main4_sao
- 0x804E295C: Player_actor_Item_draw_rod_After
- 0x804E29D0: Player_actor_Item_draw_rod
- 0x804E2AA4: Player_actor_Item_main_scoop_normal
- 0x804E2AAC: Player_actor_Item_draw_scoop
- 0x804E2B38: Player_actor_Item_Get_goal_balloon_lean_angle
- 0x804E2B48: Player_actor_Item_Setup_main_balloon_normal
- 0x804E2C00: Player_actor_Item_set_balloon_lean_angle
- 0x804E2CBC: Player_actor_Item_CulcAnimation_balloon_normal
- 0x804E2D04: Player_actor_Item_Movement_balloon_normal
- 0x804E3238: Player_actor_Item_PlayAnimation_balloon_normal
- 0x804E32EC: Player_actor_Item_main_balloon_normal
- 0x804E3324: Player_actor_Item_draw_balloon_Before
- 0x804E3378: Player_actor_Item_draw_balloon_After
- 0x804E33CC: Player_actor_Item_draw_balloon
- 0x804E3574: Player_actor_Item_windmill_CulcParam
- 0x804E376C: Player_actor_Item_windmill_CulcRotationSpeed
- 0x804E3AC4: Player_actor_Item_main_windmill_normal
- 0x804E3B1C: Player_actor_Item_draw_windmill_After_kaza1_fan
- 0x804E3B94: Player_actor_Item_draw_windmill_After
- 0x804E3C08: Player_actor_Item_draw_windmill
- 0x804E3D24: Player_actor_Item_main_fan_normal
- 0x804E3D2C: Player_actor_Item_draw_fan
- 0x804E3D9C: Player_actor_Item_Setup_main
- 0x804E3DE0: Player_actor_Item_main
- 0x804E3E74: Player_actor_Item_draw
- 0x804E3FF4: Player_actor_draw_Before_head
- 0x804E409C: Player_actor_draw_Before
- 0x804E4110: Player_actor_draw_After_Culc_FootMarkPos
- 0x804E414C: Player_actor_draw_After_head
- 0x804E4170: Player_actor_draw_After_Lfoot3
- 0x804E419C: Player_actor_draw_After_Larm2
- 0x804E4224: Player_actor_draw_After_Rfoot3
- 0x804E4250: Player_actor_draw_After_feel
- 0x804E4378: Player_actor_draw_After_hand
- 0x804E43F8: Player_actor_draw_After
- 0x804E446C: Player_actor_draw_Normal
- 0x804E4A10: Player_actor_request_main_dma
- 0x804E4A74: Player_actor_setup_main_Dma
- 0x804E4A94: Player_actor_request_proc_index_fromDma
- 0x804E4C64: Player_actor_main_Dma
- 0x804E4CA8: Player_actor_request_main_intro_all
- 0x804E4D0C: Player_actor_setup_main_Intro
- 0x804E4DA0: Player_actor_CulcAnimation_Intro
- 0x804E4DC4: Player_actor_Movement_Intro
- 0x804E4DE4: Player_actor_ObjCheck_Intro
- 0x804E4E04: Player_actor_BGcheck_Intro
- 0x804E4E24: Player_actor_ResetCameraPos_Intro
- 0x804E4E6C: Player_actor_request_proc_index_fromIntro
- 0x804E4ED0: Player_actor_main_Intro
- 0x804E4F60: Player_actor_request_main_refuse
- 0x804E4FC4: Player_actor_setup_main_Refuse
- 0x804E5054: Player_actor_Movement_Refuse
- 0x804E5074: Player_actor_CulcAnimation_Refuse
- 0x804E5098: Player_actor_ObjCheck_Refuse
- 0x804E50B8: Player_actor_BGcheck_Refuse
- 0x804E50D8: Player_actor_main_Refuse
- 0x804E5154: Player_actor_request_main_refuse_pickup_all
- 0x804E51B8: Player_actor_Refuse_pickup_demo_ct
- 0x804E5254: Player_actor_setup_main_Refuse_pickup
- 0x804E52E4: Player_actor_Movement_Refuse_pickup
- 0x804E530C: Player_actor_CulcAnimation_Refuse_pickup
- 0x804E5330: Player_actor_ObjCheck_Refuse_pickup
- 0x804E5350: Player_actor_BGcheck_Refuse_pickup
- 0x804E5370: Player_actor_request_proc_index_fromRefuse_pickup
- 0x804E53E4: Player_actor_main_Refuse_pickup
- 0x804E546C: Player_actor_request_main_return_demo_all
- 0x804E54EC: Player_actor_setup_main_Return_demo
- 0x804E559C: Player_actor_CulcAnimation_Return_demo
- 0x804E55C0: Player_actor_Movement_Return_demo
- 0x804E55E0: Player_actor_ObjCheck_Return_demo
- 0x804E5600: Player_actor_BGcheck_Return_demo
- 0x804E5620: Player_actor_request_proc_index_fromReturn_demo
- 0x804E56AC: Player_actor_main_Return_demo
- 0x804E5734: Player_actor_request_main_return_outdoor_all
- 0x804E57C4: Player_actor_setup_main_Return_outdoor
- 0x804E5884: Player_actor_CulcAnimation_Return_outdoor
- 0x804E58A8: Player_actor_Movement_Return_outdoor
- 0x804E58C8: Player_actor_ObjCheck_Return_outdoor
- 0x804E58E8: Player_actor_BGcheck_Return_outdoor
- 0x804E5908: Player_actor_request_proc_index_fromReturn_outdoor
- 0x804E5974: Player_actor_main_Return_outdoor
- 0x804E59FC: Player_actor_request_main_return_outdoor2_all
- 0x804E5A8C: Player_actor_setup_main_Return_outdoor2
- 0x804E5B4C: Player_actor_CulcAnimation_Return_outdoor2
- 0x804E5B70: Player_actor_Movement_Return_outdoor2
- 0x804E5B90: Player_actor_ObjCheck_Return_outdoor2
- 0x804E5BB0: Player_actor_BGcheck_Return_outdoor2
- 0x804E5BD0: Player_actor_request_proc_index_fromReturn_outdoor2
- 0x804E5C5C: Player_actor_main_Return_outdoor2
- 0x804E5CE4: Player_actor_request_main_wait_all
- 0x804E5D78: Player_actor_request_main_wait_from_submenu
- 0x804E5DB4: Player_actor_setup_main_Wait
- 0x804E5EC0: Player_actor_Set_RadioExerciseCommand_Wait
- 0x804E5EF8: Player_actor_Movement_Wait
- 0x804E5F20: Player_actor_CulcAnimation_Wait
- 0x804E5F44: Player_actor_ObjCheck_Wait
- 0x804E5F64: Player_actor_BGcheck_Wait
- 0x804E5F84: Player_actor_request_proc_index_fromWait
- 0x804E60A8: Player_actor_main_Wait
- 0x804E6138: Player_actor_request_main_walk_all
- 0x804E6208: Player_actor_setup_main_Walk_common
- 0x804E6334: Player_actor_setup_main_Walk
- 0x804E6354: Player_actor_settle_main_Walk
- 0x804E63B8: Player_actor_CulcAnimation_Walk
- 0x804E65A8: Player_actor_SetEffect_Walk
- 0x804E66D4: Player_actor_SearchAnimation_Walk
- 0x804E6748: Player_actor_Movement_Walk
- 0x804E6A60: Player_actor_ObjCheck_Walk
- 0x804E6A80: Player_actor_BGcheck_Walk
- 0x804E6AA0: Player_actor_request_proc_index_fromWalk
- 0x804E6C4C: Player_actor_main_Walk
- 0x804E6CF0: Player_actor_request_main_run_all
- 0x804E6D74: Player_actor_setup_main_Run_common
- 0x804E6E60: Player_actor_setup_main_Run
- 0x804E6E80: Player_actor_CulcAnimation_Run
- 0x804E6EA0: Player_actor_SetEffect_Run
- 0x804E6EC0: Player_actor_SearchAnimation_Run
- 0x804E6F34: Player_actor_Movement_Run
- 0x804E6F54: Player_actor_ObjCheck_Run
- 0x804E6F74: Player_actor_BGcheck_Run
- 0x804E6F94: Player_actor_request_proc_index_fromRun_common
- 0x804E7114: Player_actor_request_proc_index_fromRun
- 0x804E7134: Player_actor_main_Run
- 0x804E71D8: Player_actor_request_main_dash_all
- 0x804E725C: Player_actor_setup_main_Dash
- 0x804E7348: Player_actor_CulcAnimation_Dash
- 0x804E7368: Player_actor_SetEffectRemoveFlower_Dash
- 0x804E7518: Player_actor_SetEffect_Dash
- 0x804E7674: Player_actor_SearchAnimation_Dash
- 0x804E76E8: Player_actor_Movement_Dash
- 0x804E7708: Player_actor_ObjCheck_Dash
- 0x804E7728: Player_actor_BGcheck_Dash
- 0x804E7748: Player_actor_Check_FlatPlace
- 0x804E7888: Player_actor_request_proc_index_fromDash_common
- 0x804E7AA4: Player_actor_request_proc_index_fromDash
- 0x804E7AC4: Player_actor_main_Dash
- 0x804E7B68: Player_actor_request_main_tumble
- 0x804E7BCC: Player_actor_setup_Item_Tumble
- 0x804E7CBC: Player_actor_Get_PlayerAnimeIndex_fromItemKind_Tumble
- 0x804E7CE4: Player_actor_effect_Tumble
- 0x804E7D64: Player_actor_setup_main_Tumble
- 0x804E7E34: Player_actor_Movement_Tumble
- 0x804E7E5C: Player_actor_recover_lean_angle_Tumble
- 0x804E7F48: Player_actor_CulcAnimation_Tumble
- 0x804E7F68: Player_actor_SetEffect_Tumble
- 0x804E8064: Player_actor_SearchAnimation_Tumble
- 0x804E80B8: Player_actor_ObjCheck_Tumble
- 0x804E80D8: Player_actor_BGcheck_Tumble
- 0x804E80F8: Player_actor_request_proc_index_fromTumble
- 0x804E812C: Player_actor_main_Tumble
- 0x804E81DC: Player_actor_request_main_tumble_getup
- 0x804E8240: Player_actor_setup_Item_Tumble_getup
- 0x804E83EC: Player_actor_Get_PlayerAnimeIndex_fromItemKind_Tumble_getup
- 0x804E8414: Player_actor_setup_main_Tumble_getup
- 0x804E84CC: Player_actor_request_proc_index_fromTumble_getup
- 0x804E8558: Player_actor_main_Tumble_getup
- 0x804E85E8: Player_actor_request_main_turn_dash
- 0x804E8658: Player_actor_request_main_turn_dash_all
- 0x804E8680: Player_actor_setup_main_Turn_dash_common
- 0x804E8780: Player_actor_setup_main_Turn_dash
- 0x804E87A0: Player_actor_settle_main_Turn_dash
- 0x804E8830: Player_actor_Movement_Turn_dash
- 0x804E8858: Player_actor_ChangeDirection_Turn_dash
- 0x804E890C: Player_actor_CulcAnimation_Turn_dash
- 0x804E892C: Player_actor_ObjCheck_Turn_dash
- 0x804E894C: Player_actor_BGcheck_Turn_dash
- 0x804E896C: Player_actor_request_proc_index_fromTurn_dash_common
- 0x804E89CC: Player_actor_request_proc_index_fromTurn_dash
- 0x804E89EC: Player_actor_main_Turn_dash
- 0x804E8A94: Player_actor_request_main_fall_all
- 0x804E8B18: Player_actor_setup_main_Fall
- 0x804E8BD4: Player_actor_CulcAnimation_Fall
- 0x804E8BF8: Player_actor_Movement_Fall
- 0x804E8C18: Player_actor_ObjCheck_Fall
- 0x804E8C38: Player_actor_BGcheck_Fall
- 0x804E8C58: Player_actor_request_proc_index_fromFall_common
- 0x804E8CF4: Player_actor_request_proc_index_fromFall
- 0x804E8D14: Player_actor_main_Fall
- 0x804E8D9C: Player_actor_request_main_wade
- 0x804E8E0C: Player_actor_request_main_wade_all
- 0x804E8E34: Player_actor_setup_main_Wade_common
- 0x804E8F74: Player_actor_setup_main_Wade
- 0x804E8F94: Player_actor_settle_main_Wade
- 0x804E8FB4: Player_actor_CulcAnimation_Wade
- 0x804E8FD8: Player_actor_Movement_Wade
- 0x804E908C: Player_actor_ObjCheck_Wade
- 0x804E90AC: Player_actor_BGcheck_Wade
- 0x804E90CC: Player_actor_able_request_proc_index_fromWade_common
- 0x804E9100: Player_actor_request_proc_index_fromWade
- 0x804E9168: Player_actor_Request_Wade
- 0x804E9170: Player_actor_main_Wade
- 0x804E9214: Player_actor_request_main_wade_snowball_all
- 0x804E92C4: Player_actor_setup_main_Wade_snowball
- 0x804E93DC: Player_actor_settle_main_Wade_snowball
- 0x804E93FC: Player_actor_ChangeAnimation_Wade_snowball
- 0x804E9498: Player_actor_CulcAnimation_Wade_snowball
- 0x804E94D0: Player_actor_Movement_Wade_snowball
- 0x804E9584: Player_actor_BGcheck_Wade_snowball
- 0x804E95A4: Player_actor_able_request_proc_index_fromWade_snowball_common
- 0x804E95D8: Player_actor_request_proc_index_fromWade_snowball
- 0x804E9670: Player_actor_main_Wade_snowball
- 0x804E9714: Player_actor_request_main_door
- 0x804E97BC: Player_actor_setup_main_Door
- 0x804E98BC: Player_actor_CulcAnimation_Door
- 0x804E98DC: Player_actor_Movement_Door
- 0x804E9930: Player_actor_ObjCheck_Door
- 0x804E9950: Player_actor_main_Door
- 0x804E99C8: Player_actor_request_main_outdoor
- 0x804E9A44: Player_actor_setup_main_Outdoor
- 0x804E9B00: Player_actor_settle_main_Outdoor
- 0x804E9B20: Player_actor_CulcAnimation_Outdoor
- 0x804E9B40: Player_actor_Movement_Outdoor
- 0x804E9B88: Player_actor_ObjCheck_Outdoor
- 0x804E9BA8: Player_actor_request_proc_index_fromOutdoor
- 0x804E9C10: Player_actor_Demo_Outdoor_Demo_ct
- 0x804E9C14: Player_actor_Request_Demo_Outdoor
- 0x804E9C8C: Player_actor_main_Outdoor
- 0x804E9D30: Player_actor_request_main_invade
- 0x804E9D94: Player_actor_request_main_invade_all
- 0x804E9DBC: Player_actor_setup_main_Invade
- 0x804E9E4C: Player_actor_Movement_Invade
- 0x804E9E6C: Player_actor_CulcAnimation_Invade
- 0x804E9E90: Player_actor_ObjCheck_Invade
- 0x804E9EB0: Player_actor_BGcheck_Invade
- 0x804E9ED0: Player_actor_main_Invade
- 0x804E9F4C: Player_actor_Check_able_request_main_hold
- 0x804E9FA0: Player_actor_request_main_hold
- 0x804EA06C: Player_actor_setup_main_Hold
- 0x804EA108: Player_actor_CulcAnimation_Hold
- 0x804EA12C: Player_actor_Movement_Hold
- 0x804EA35C: Player_actor_ObjCheck_Hold
- 0x804EA37C: Player_actor_BGcheck_Hold
- 0x804EA39C: Player_actor_request_proc_index_fromHold
- 0x804EA5E4: Player_actor_main_Hold
- 0x804EA66C: Player_actor_request_main_push
- 0x804EA714: Player_actor_settle_main_Push
- 0x804EA738: Player_actor_setup_main_Push
- 0x804EA834: Player_actor_CulcAnimation_Push
- 0x804EA854: Player_actor_Movement_Push
- 0x804EA89C: Player_actor_SearchAnimation_Push
- 0x804EA8F0: Player_actor_ObjCheck_Push
- 0x804EA910: Player_actor_BGcheck_Push
- 0x804EA930: Player_actor_request_proc_index_fromPush
- 0x804EA9A0: Player_actor_main_Push
- 0x804EAA48: Player_actor_request_main_pull
- 0x804EAB28: Player_actor_settle_main_Pull
- 0x804EAB68: Player_actor_setup_main_Pull
- 0x804EAC98: Player_actor_CulcAnimation_Pull
- 0x804EACB8: Player_actor_Movement_Pull
- 0x804EADDC: Player_actor_SearchAnimation_Pull
- 0x804EAE30: Player_actor_ObjCheck_Pull
- 0x804EAE50: Player_actor_BGcheck_Pull
- 0x804EAE70: Player_actor_request_proc_index_fromPull
- 0x804EAEE0: Player_actor_main_Pull
- 0x804EAF88: Player_actor_request_main_rotate_furniture
- 0x804EB038: Player_actor_setup_main_Rotate_furniture
- 0x804EB144: Player_actor_Movement_Rotate_furniture
- 0x804EB168: Player_actor_CulcAnimation_rotate_furniture
- 0x804EB18C: Player_actor_ChangeAnimationHold_rotate_furniture
- 0x804EB200: Player_actor_ObjCheck_rotate_furniture
- 0x804EB220: Player_actor_BGcheck_rotate_furniture
- 0x804EB240: Player_actor_request_proc_index_fromRotate_furniture
- 0x804EB2F4: Player_actor_main_Rotate_furniture
- 0x804EB390: Player_actor_request_main_open_furniture
- 0x804EB438: Player_actor_settle_main_Open_furniture
- 0x804EB45C: Player_actor_setup_main_Open_furniture
- 0x804EB550: Player_actor_CulcAnimation_Open_furniture
- 0x804EB570: Player_actor_Movement_Open_furniture
- 0x804EB5BC: Player_actor_SearchAnimation_Open_furniture
- 0x804EB610: Player_actor_ObjCheck_Open_furniture
- 0x804EB630: Player_actor_BGcheck_Open_furniture
- 0x804EB650: Player_actor_request_proc_index_fromOpen_furniture
- 0x804EB6A0: Player_actor_main_Open_furniture
- 0x804EB748: Player_actor_request_main_wait_open_furniture
- 0x804EB7E8: Player_actor_setup_main_Wait_open_furniture
- 0x804EB8C4: Player_actor_settle_main_Wait_open_furniture
- 0x804EB8E8: Player_actor_Movement_Wait_open_furniture
- 0x804EB90C: Player_actor_CulcAnimation_Wait_open_furniture
- 0x804EB930: Player_actor_ObjCheck_Wait_open_furniture
- 0x804EB950: Player_actor_main_Wait_open_furniture
- 0x804EB9C4: Player_actor_request_main_close_furniture
- 0x804EBA74: Player_actor_settle_main_Close_furniture
- 0x804EBA98: Player_actor_setup_main_Close_furniture
- 0x804EBB78: Player_actor_CulcAnimation_Close_furniture
- 0x804EBB98: Player_actor_Movement_Close_furniture
- 0x804EBBE0: Player_actor_SearchAnimation_Close_furniture
- 0x804EBC34: Player_actor_ObjCheck_Close_furniture
- 0x804EBC54: Player_actor_BGcheck_Close_furniture
- 0x804EBC74: Player_actor_request_proc_index_fromClose_furniture
- 0x804EBCEC: Player_actor_main_Close_furniture
- 0x804EBD94: Player_actor_Check_able_request_main_lie_bed
- 0x804EBDD8: Player_actor_request_main_lie_bed
- 0x804EBE9C: Player_actor_Get_BasicPlayerAnimeIndex_Lie_bed
- 0x804EBF48: Player_actor_setup_main_Lie_bed
- 0x804EC03C: Player_actor_settle_main_Lie_bed
- 0x804EC08C: Player_actor_CulcAnimation_Lie_bed
- 0x804EC0AC: Player_actor_SetSound_Lie_bed
- 0x804EC0F4: Player_actor_SearchAnimation_Lie_bed
- 0x804EC414: Player_actor_Movement_Lie_bed
- 0x804EC460: Player_actor_request_proc_index_fromLie_bed
- 0x804EC48C: Player_actor_main_Lie_bed
- 0x804EC50C: Player_actor_Check_able_request_main_wait_bed
- 0x804EC55C: Player_actor_request_main_wait_bed
- 0x804EC5D0: Player_actor_setup_main_Wait_bed
- 0x804EC664: Player_actor_Movement_Wait_bed
- 0x804EC688: Player_actor_CulcAnimation_Wait_bed
- 0x804EC6AC: Player_actor_request_proc_index_fromWait_bed
- 0x804EC8CC: Player_actor_main_Wait_bed
- 0x804EC930: Player_actor_Check_able_request_main_roll_bed
- 0x804EC96C: Player_actor_request_main_roll_bed
- 0x804EC9EC: Player_actor_settle_main_Roll_bed
- 0x804ECA10: Player_actor_Get_BasicPlayerAnimeIndex_Roll_bed
- 0x804ECABC: Player_actor_setup_main_Roll_bed
- 0x804ECBA4: Player_actor_CulcAnimation_Roll_bed
- 0x804ECBC8: Player_actor_Movement_Roll_bed
- 0x804ECC14: Player_actor_request_proc_index_fromRoll_bed
- 0x804ECC40: Player_actor_main_Roll_bed
- 0x804ECCB4: Player_actor_Check_able_request_main_standup_bed
- 0x804ECCF0: Player_actor_request_main_standup_bed
- 0x804ECE94: Player_actor_settle_main_Standup_bed
- 0x804ECEF0: Player_actor_Get_BasicPlayerAnimeIndex_Standup_bed
- 0x804ECF9C: Player_actor_setup_main_Standup_bed
- 0x804ED088: Player_actor_CulcAnimation_Standup_bed
- 0x804ED0A8: Player_actor_SetSound_Standup_bed
- 0x804ED0F0: Player_actor_SearchAnimation_Standup_bed
- 0x804ED324: Player_actor_Movement_Standup_bed
- 0x804ED370: Player_actor_ObjCheck_Standup_bed
- 0x804ED390: Player_actor_request_proc_index_fromStandup_bed
- 0x804ED3E8: Player_actor_main_Standup_bed
- 0x804ED478: Player_actor_request_main_pickup
- 0x804ED52C: Player_actor_setup_main_Pickup
- 0x804ED690: Player_actor_Movement_Pickup
- 0x804ED6B4: Player_actor_CulcAnimation_Pickup
- 0x804ED6D4: Player_actor_ObjCheck_Pickup
- 0x804ED6F4: Player_actor_BGcheck_Pickup
- 0x804ED714: Player_actor_SetSound_Pickup
- 0x804ED788: Player_actor_SearchAnimation_Pickup
- 0x804ED7E4: Player_actor_Set_Item_Pickup
- 0x804ED910: Player_actor_request_proc_index_fromPickup
- 0x804ED9C8: Player_actor_main_Pickup
- 0x804EDA74: Player_actor_request_main_pickup_jump
- 0x804EDB14: Player_actor_setup_main_Pickup_jump
- 0x804EDCAC: Player_actor_settle_main_Pickup_jump
- 0x804EDCEC: Player_actor_Movement_Pickup_jump_common
- 0x804EDDE4: Player_actor_Movement_Pickup_jump
- 0x804EDE1C: Player_actor_CulcAnimation_Pickup_jump
- 0x804EDE3C: Player_actor_ObjCheck_Pickup_jump
- 0x804EDE5C: Player_actor_BGcheck_Pickup_jump
- 0x804EDE7C: Player_actor_Set_Item_Pickup_jump
- 0x804EE138: Player_actor_SearchAnimation_Pickup_jump
- 0x804EE174: Player_actor_request_proc_index_fromPickup_jump
- 0x804EE230: Player_actor_main_Pickup_jump
- 0x804EE2D0: Player_actor_request_main_pickup_furniture
- 0x804EE360: Player_actor_setup_main_Pickup_furniture
- 0x804EE490: Player_actor_settle_main_Pickup_furniture
- 0x804EE4D0: Player_actor_Movement_Pickup_furniture_common
- 0x804EE5C8: Player_actor_Movement_Pickup_furniture
- 0x804EE600: Player_actor_CulcAnimation_Pickup_furniture
- 0x804EE620: Player_actor_ObjCheck_Pickup_furniture
- 0x804EE640: Player_actor_BGcheck_Pickup_furniture
- 0x804EE660: Player_actor_Set_Item_Pickup_furniture
- 0x804EE898: Player_actor_SetSound_Pickup_furniture
- 0x804EE90C: Player_actor_SearchAnimation_Pickup_furniture
- 0x804EE974: Player_actor_request_proc_index_fromPickup_furniture
- 0x804EEA30: Player_actor_main_Pickup_furniture
- 0x804EEAD4: Player_actor_request_main_pickup_exchange
- 0x804EEB68: Player_actor_setup_main_Pickup_exchange
- 0x804EEC34: Player_actor_settle_main_Pickup_exchange
- 0x804EED08: Player_actor_Movement_Pickup_exchange
- 0x804EED30: Player_actor_CulcAnimation_Pickup_exchange
- 0x804EED54: Player_actor_ObjCheck_Pickup_exchange
- 0x804EED74: Player_actor_BGcheck_Pickup_exchange
- 0x804EED94: Player_actor_Pickup_exchange_demo_ct
- 0x804EEE04: Player_actor_MessageControl_Pickup_exchange
- 0x804EEF44: Player_actor_request_proc_index_fromPickup_exchange
- 0x804EEF88: Player_actor_main_Pickup_exchange
- 0x804EF024: Player_actor_Check_able_request_main_sitdown
- 0x804EF068: Player_actor_request_main_sitdown
- 0x804EF124: Player_actor_settle_main_Sitdown
- 0x804EF16C: Player_actor_setup_main_Sitdown
- 0x804EF250: Player_actor_CulcAnimation_Sitdown
- 0x804EF270: Player_actor_SetSound_Sitdown
- 0x804EF2BC: Player_actor_SearchAnimation_Sitdown
- 0x804EF314: Player_actor_Movement_Sitdown
- 0x804EF360: Player_actor_ObjCheck_Sitdown
- 0x804EF380: Player_actor_request_proc_index_fromSitdown
- 0x804EF3B8: Player_actor_main_Sitdown
- 0x804EF450: Player_actor_request_main_sitdown_wait
- 0x804EF4C0: Player_actor_setup_main_Sitdown_wait
- 0x804EF534: Player_actor_Movement_Sitdown_wait
- 0x804EF558: Player_actor_CulcAnimation_Sitdown_wait
- 0x804EF57C: Player_actor_request_proc_index_fromSitdown_wait
- 0x804EF5E8: Player_actor_main_Sitdown_wait
- 0x804EF668: Player_actor_request_main_standup
- 0x804EF754: Player_actor_setup_main_Standup
- 0x804EF830: Player_actor_settle_main_Standup
- 0x804EF870: Player_actor_CulcAnimation_Standup
- 0x804EF890: Player_actor_ControlShadow_Standup
- 0x804EF8C0: Player_actor_SetSound_Standup
- 0x804EF908: Player_actor_SearchAnimation_Standup
- 0x804EF94C: Player_actor_Movement_Standup
- 0x804EF998: Player_actor_ObjCheck_Standup
- 0x804EF9B8: Player_actor_request_proc_index_fromStandup
- 0x804EFA10: Player_actor_main_Standup
- 0x804EFAA8: Player_actor_request_main_swing_axe_common
- 0x804EFAD4: Player_actor_request_main_swing_axe_all
- 0x804EFB70: Player_actor_setup_main_Swing_axe_common
- 0x804EFBBC: Player_actor_setup_main_Swing_axe
- 0x804EFC44: Player_actor_Movement_axe_common
- 0x804EFD3C: Player_actor_Movement_Swing_axe
- 0x804EFD70: Player_actor_CulcAnimation_Swing_axe
- 0x804EFD90: Player_actor_SetEffectHit_axe_common
- 0x804EFED0: Player_actor_SetEffectHit_Swing_axe
- 0x804EFEF0: Player_actor_SetEffectStart_Swing_axe
- 0x804EFF10: Player_actor_SetEffect_Swing_axe
- 0x804EFF64: Player_actor_Get_TreeNoToStumpNo
- 0x804F008C: Player_actor_CutTree_Swing_axe
- 0x804F023C: Player_actor_SetSound_AXE_FURI_axe_common
- 0x804F0284: Player_actor_SetSound_AXE_FURI_Swing_axe
- 0x804F02A4: Player_actor_SetSound_Swing_axe
- 0x804F0304: Player_actor_ChangeItemNo_axe_common
- 0x804F03E8: Player_actor_ChangeItemNo_Swing_axe
- 0x804F040C: Player_actor_SearchAnimation_Swing_axe
- 0x804F04AC: Player_actor_Check_BirthBee_Swing_axe
- 0x804F0524: Player_actor_ObjCheck_Swing_axe
- 0x804F0544: Player_actor_BGcheck_Swing_axe
- 0x804F0564: Player_actor_request_proc_index_fromSwing_axe
- 0x804F06D0: Player_actor_main_Swing_axe
- 0x804F07A8: Player_actor_request_main_air_axe_all
- 0x804F080C: Player_actor_setup_main_Air_axe
- 0x804F088C: Player_actor_Movement_Air_axe
- 0x804F08B4: Player_actor_CulcAnimation_Air_axe
- 0x804F08D4: Player_actor_SetEffect_Air_axe
- 0x804F08F4: Player_actor_SetSound_Air_axe
- 0x804F0918: Player_actor_SearchAnimation_Air_axe
- 0x804F0980: Player_actor_ObjCheck_Air_axe
- 0x804F09A0: Player_actor_BGcheck_Air_axe
- 0x804F09C0: Player_actor_request_proc_index_fromAir_axe
- 0x804F0AD0: Player_actor_main_Air_axe
- 0x804F0B74: Player_actor_request_main_reflect_axe_common
- 0x804F0B9C: Player_actor_request_main_reflect_axe_all
- 0x804F0C30: Player_actor_setup_main_Reflect_axe_common
- 0x804F0C64: Player_actor_setup_main_Reflect_axe
- 0x804F0CEC: Player_actor_settle_main_Reflect_axe
- 0x804F0D04: Player_actor_Movement_Reflect_axe_common
- 0x804F0D5C: Player_actor_Movement_Reflect_axe
- 0x804F0D7C: Player_actor_CulcAnimation_Reflect_axe
- 0x804F0D9C: Player_actor_SetEffectHit_Reflect_axe
- 0x804F0DBC: Player_actor_SetEffect_Reflect_axe
- 0x804F0E08: Player_actor_SetAngleSpeedF_Reflect_axe
- 0x804F0E64: Player_actor_SetOrderNPC_Reflect_axe
- 0x804F0F40: Player_actor_SetSound_Reflect_axe
- 0x804F0FD0: Player_actor_ChangeItemNo_Reflect_axe
- 0x804F0FF4: Player_actor_informed_insects_Reflect_axe
- 0x804F10A4: Player_actor_SearchAnimation_Reflect_axe
- 0x804F115C: Player_actor_ObjCheck_Reflect_axe
- 0x804F117C: Player_actor_BGcheck_Reflect_axe
- 0x804F119C: Player_actor_request_proc_index_fromReflect_axe
- 0x804F12B4: Player_actor_main_Reflect_axe
- 0x804F137C: Player_actor_request_main_broken_axe_type_reflect
- 0x804F1414: Player_actor_request_main_broken_axe_type_swing
- 0x804F14B4: Player_actor_setup_main_Broken_axe
- 0x804F1570: Player_actor_settle_main_Broken_axe
- 0x804F15B0: Player_actor_Movement_Broken_axe
- 0x804F16B4: Player_actor_CulcAnimation_Broken_axe
- 0x804F16D4: Player_actor_SetEffect_Broken_axe
- 0x804F1780: Player_actor_SearchAnimation_Broken_axe
- 0x804F1878: Player_actor_ObjCheck_Broken_axe
- 0x804F1898: Player_actor_BGcheck_Broken_axe
- 0x804F18B8: Player_actor_Broken_axe_demo_ct
- 0x804F1920: Player_actor_MessageControl_Broken_axe
- 0x804F1A18: Player_actor_request_proc_index_fromBroken_axe
- 0x804F1A70: Player_actor_main_Broken_axe
- 0x804F1B20: Player_actor_request_main_slip_net
- 0x804F1BB8: Player_actor_setup_main_Slip_net
- 0x804F1CC0: Player_actor_Set_FootMark
- 0x804F1D40: Player_actor_settle_main_Slip_net
- 0x804F1D60: Player_actor_Movement_Slip_net
- 0x804F1D88: Player_actor_CulcAnimation_Slip_net
- 0x804F1DAC: Player_actor_ObjCheck_Slip_net
- 0x804F1DCC: Player_actor_BGcheck_Slip_net
- 0x804F1DEC: Player_actor_SearchAnimation_Slip_net
- 0x804F1EB0: Player_actor_request_proc_index_fromSlip_net
- 0x804F1F6C: Player_actor_main_Slip_net
- 0x804F200C: Player_actor_request_main_ready_net
- 0x804F2070: Player_actor_setup_main_Ready_net
- 0x804F2100: Player_actor_Movement_Ready_net
- 0x804F2128: Player_actor_CulcAnimation_Ready_net
- 0x804F214C: Player_actor_ObjCheck_Ready_net
- 0x804F216C: Player_actor_BGcheck_Ready_net
- 0x804F218C: Player_actor_request_proc_index_fromReady_net
- 0x804F228C: Player_actor_main_Ready_net
- 0x804F2314: Player_actor_request_main_ready_walk_net
- 0x804F2378: Player_actor_setup_main_Ready_walk_net
- 0x804F2408: Player_actor_CulcAnimation_Ready_walk_net
- 0x804F25E0: Player_actor_SearchAnimation_Ready_walk_net
- 0x804F2654: Player_actor_Movement_Ready_walk_net
- 0x804F28A8: Player_actor_ObjCheck_Ready_walk_net
- 0x804F28C8: Player_actor_BGcheck_Ready_walk_net
- 0x804F28E8: Player_actor_request_proc_index_fromReady_walk_net
- 0x804F2A2C: Player_actor_main_Ready_walk_net
- 0x804F2AD0: Player_actor_request_main_swing_net
- 0x804F2B68: Player_actor_setup_main_Swing_net
- 0x804F2C40: Player_actor_SetEffect_Swing_net
- 0x804F2D74: Player_actor_settle_main_Swing_net
- 0x804F2D94: Player_actor_HitBGCheck_Swing_net
- 0x804F2F50: Player_actor_Item_CheckLocalCapture_forNet
- 0x804F31EC: Player_actor_CheckCaptureForce_forNet
- 0x804F3214: Player_actor_CheckCapture_forNet
- 0x804F3378: Player_actor_CatchSomethingCheck_common
- 0x804F3478: Player_actor_CatchSomethingCheck_Swing_net
- 0x804F34A0: Player_actor_CorrectSomething_Swing_net
- 0x804F34E4: Player_actor_Movement_Swing_net
- 0x804F350C: Player_actor_CulcAnimation_Swing_net
- 0x804F3558: Player_actor_SearchAnimation_Swing_net
- 0x804F35AC: Player_actor_ObjCheck_Swing_net
- 0x804F35CC: Player_actor_BGcheck_Swing_net
- 0x804F35EC: Player_actor_request_proc_index_fromSwing_net
- 0x804F36A4: Player_actor_main_Swing_net
- 0x804F3784: Player_actor_request_main_pull_net
- 0x804F381C: Player_actor_setup_main_Pull_net
- 0x804F390C: Player_actor_Movement_Pull_net
- 0x804F39E8: Player_actor_CorrectSomething_Pull_net
- 0x804F3A48: Player_actor_CulcAnimation_Pull_net
- 0x804F3A68: Player_actor_ObjCheck_Pull_net
- 0x804F3A88: Player_actor_BGcheck_Pull_net
- 0x804F3AA8: Player_actor_SearchAnimation_Pull_net
- 0x804F3AFC: Player_actor_Get_mushi_msg_num
- 0x804F3B14: Player_actor_Pull_net_demo_ct
- 0x804F3CC8: Player_actor_MessageControl_Pull_net
- 0x804F3D6C: Player_actor_request_proc_index_fromPull_net
- 0x804F3DAC: Player_actor_main_Pull_net
- 0x804F3E6C: Player_actor_request_main_stop_net
- 0x804F3ED0: Player_actor_setup_main_Stop_net
- 0x804F3F58: Player_actor_Movement_Stop_net
- 0x804F3F80: Player_actor_CulcAnimation_Stop_net
- 0x804F3FA4: Player_actor_ObjCheck_Stop_net
- 0x804F3FC4: Player_actor_BGcheck_Stop_net
- 0x804F3FE4: Player_actor_request_proc_index_fromStop_net
- 0x804F4028: Player_actor_main_Stop_net
- 0x804F40B4: Player_actor_request_main_notice_net
- 0x804F4124: Player_actor_setup_main_Notice_net
- 0x804F42C4: Player_actor_settle_main_Notice_net
- 0x804F43A0: Player_actor_Movement_Notice_net
- 0x804F43C8: Player_actor_CorrectSomething_Notice_net
- 0x804F43EC: Player_actor_CulcAnimation_Notice_net
- 0x804F4410: Player_actor_set_eye_pattern_Notice_net
- 0x804F4454: Player_actor_ObjCheck_Notice_net
- 0x804F4474: Player_actor_BGcheck_Notice_net
- 0x804F4494: Player_actor_DeleteMark_Notice_net
- 0x804F44F8: Player_actor_MessageControl_Notice_net
- 0x804F473C: Player_actor_request_proc_index_fromNotice_net
- 0x804F47F0: Player_actor_main_Notice_net
- 0x804F48A8: Player_actor_request_main_putaway_net
- 0x804F4918: Player_actor_setup_main_Putaway_net
- 0x804F49D0: Player_actor_Movement_Putaway_net
- 0x804F49F8: Player_actor_CulcAnimation_Putaway_net
- 0x804F4A18: Player_actor_CorrectSomething_Putaway_net
- 0x804F4B00: Player_actor_SearchAnimation_Putaway_net
- 0x804F4B4C: Player_actor_ObjCheck_Putaway_net
- 0x804F4B6C: Player_actor_BGcheck_Putaway_net
- 0x804F4B8C: Player_actor_request_proc_index_fromPutaway_net
- 0x804F4C2C: Player_actor_main_Putaway_net
- 0x804F4CD0: Player_actor_request_main_ready_rod
- 0x804F4D34: Player_actor_setup_main_Ready_rod
- 0x804F4DE8: Player_actor_Movement_Ready_rod
- 0x804F4E10: Player_actor_CulcAnimation_Ready_rod
- 0x804F4E30: Player_actor_ObjCheck_Ready_rod
- 0x804F4E50: Player_actor_BGcheck_Ready_rod
- 0x804F4E70: Player_actor_SearchAnimation_Ready_rod
- 0x804F4EC4: Player_actor_request_proc_index_fromReady_rod
- 0x804F5128: Player_actor_main_Ready_rod
- 0x804F51C4: Player_actor_request_main_cast_rod
- 0x804F5248: Player_actor_setup_main_Cast_rod
- 0x804F534C: Player_actor_Movement_Cast_rod
- 0x804F5374: Player_actor_CulcAnimation_Cast_rod
- 0x804F5394: Player_actor_SetSound_Cast_rod
- 0x804F53DC: Player_actor_SearchAnimation_Cast_rod
- 0x804F5438: Player_actor_ObjCheck_Cast_rod
- 0x804F5458: Player_actor_BGcheck_Cast_rod
- 0x804F5478: Player_actor_request_proc_index_fromCast_rod
- 0x804F54A4: Player_actor_main_Cast_rod
- 0x804F5544: Player_actor_request_main_air_rod
- 0x804F55A8: Player_actor_setup_main_Air_rod
- 0x804F56D4: Player_actor_Movement_Air_rod
- 0x804F56FC: Player_actor_CulcAnimation_Air_rod
- 0x804F571C: Player_actor_SetSound_Air_rod
- 0x804F5764: Player_actor_SearchAnimation_Air_rod
- 0x804F57C0: Player_actor_ObjCheck_Air_rod
- 0x804F57E0: Player_actor_BGcheck_Air_rod
- 0x804F5800: Player_actor_request_proc_index_fromAir_rod
- 0x804F5858: Player_actor_main_Air_rod
- 0x804F58FC: Player_actor_request_main_relax_rod
- 0x804F5960: Player_actor_setup_main_Relax_rod
- 0x804F5A14: Player_actor_Movement_Relax_rod
- 0x804F5A50: Player_actor_CulcAnimation_Relax_rod
- 0x804F5A74: Player_actor_ObjCheck_Relax_rod
- 0x804F5A94: Player_actor_BGcheck_Relax_rod
- 0x804F5AB4: Player_actor_request_proc_index_fromRelax_rod
- 0x804F5BE8: Player_actor_main_Relax_rod
- 0x804F5C84: Player_actor_request_main_collect_rod
- 0x804F5CE8: Player_actor_setup_main_Collect_rod
- 0x804F5DFC: Player_actor_settle_main_Collect_rod
- 0x804F5E1C: Player_actor_Movement_Collect_rod
- 0x804F5E44: Player_actor_CulcAnimation_Collect_rod
- 0x804F5E64: Player_actor_SearchAnimation_Collect_rod
- 0x804F5EB8: Player_actor_ObjCheck_Collect_rod
- 0x804F5ED8: Player_actor_BGcheck_Collect_rod
- 0x804F5EF8: Player_actor_request_proc_index_fromCollect_rod
- 0x804F5F58: Player_actor_main_Collect_rod
- 0x804F6010: Player_actor_request_main_vib_rod
- 0x804F6074: Player_actor_setup_main_Vib_rod
- 0x804F612C: Player_actor_Movement_Vib_rod
- 0x804F6168: Player_actor_CulcAnimation_Vib_rod
- 0x804F618C: Player_actor_ObjCheck_Vib_rod
- 0x804F61AC: Player_actor_BGcheck_Vib_rod
- 0x804F61CC: Player_actor_request_proc_index_fromVib_rod
- 0x804F61F8: Player_actor_main_Vib_rod
- 0x804F6290: Player_actor_request_main_fly_rod
- 0x804F62F4: Player_actor_setup_main_Fly_rod
- 0x804F63A8: Player_actor_settle_main_Fly_rod
- 0x804F63C8: Player_actor_Movement_Fly_rod
- 0x804F63F0: Player_actor_CulcAnimation_Fly_rod
- 0x804F6410: Player_actor_SearchAnimation_Fly_rod
- 0x804F6464: Player_actor_ObjCheck_Fly_rod
- 0x804F6484: Player_actor_BGcheck_Fly_rod
- 0x804F64A4: Player_actor_request_proc_index_fromFly_rod
- 0x804F64E4: Player_actor_main_Fly_rod
- 0x804F659C: Player_actor_request_main_notice_rod
- 0x804F6610: Player_actor_setup_main_Notice_rod
- 0x804F6744: Player_actor_settle_main_Notice_rod
- 0x804F6788: Player_actor_Movement_Notice_rod
- 0x804F6854: Player_actor_CulcAnimation_Notice_rod
- 0x804F6874: Player_actor_set_eye_pattern_Notice_rod
- 0x804F68A4: Player_actor_ObjCheck_Notice_rod
- 0x804F68C4: Player_actor_BGcheck_Notice_rod
- 0x804F68E4: Player_actor_SearchAnimation_Notice_rod
- 0x804F6938: Player_actor_AppearMark_Notice_rod
- 0x804F6A0C: Player_actor_DeleteMark_Notice_rod
- 0x804F6A70: Player_actor_Get_sakana_msg_num
- 0x804F6A88: Player_actor_Notice_rod_demo_ct
- 0x804F6BC8: Player_actor_MessageControl_Notice_rod
- 0x804F6E80: Player_actor_request_proc_index_fromNotice_rod
- 0x804F6F1C: Player_actor_main_Notice_rod
- 0x804F6FE0: Player_actor_request_main_putaway_rod
- 0x804F7060: Player_actor_setup_main_Putaway_rod
- 0x804F7134: Player_actor_Movement_Putaway_rod
- 0x804F715C: Player_actor_CulcAnimation_Putaway_rod
- 0x804F717C: Player_actor_ObjCheck_Putaway_rod
- 0x804F719C: Player_actor_BGcheck_Putaway_rod
- 0x804F71BC: Player_actor_SearchAnimation_Putaway_rod
- 0x804F7210: Player_actor_SetTimer_Putaway_rod
- 0x804F7228: Player_actor_request_proc_index_fromPutaway_rod
- 0x804F72CC: Player_actor_main_Putaway_rod
- 0x804F7378: Player_actor_request_main_dig_scoop_all
- 0x804F7408: Player_actor_setup_main_Dig_scoop
- 0x804F7504: Player_actor_Movement_Dig_scoop
- 0x804F753C: Player_actor_CulcAnimation_Dig_scoop
- 0x804F755C: Player_actor_SetEffectHit_Dig_scoop
- 0x804F76F4: Player_actor_SetEffect_Dig_scoop
- 0x804F771C: Player_actor_Put_Hole_Dig_scoop
- 0x804F7830: Player_actor_SetSound_Dig_scoop
- 0x804F7924: Player_actor_informed_insects_Dig_scoop
- 0x804F79D4: Player_actor_SearchAnimation_Dig_scoop
- 0x804F7A4C: Player_actor_ObjCheck_Dig_scoop
- 0x804F7A6C: Player_actor_BGcheck_Dig_scoop
- 0x804F7A8C: Player_actor_lean_angle_scoop_common
- 0x804F7BA4: Player_actor_lean_angle_Dig_scoop
- 0x804F7BD0: Player_actor_request_proc_index_fromDig_scoop
- 0x804F7D18: Player_actor_main_Dig_scoop
- 0x804F7DBC: Player_actor_request_main_fill_scoop_all
- 0x804F7E40: Player_actor_setup_main_Fill_scoop
- 0x804F7ED0: Player_actor_Movement_Fill_scoop
- 0x804F7F08: Player_actor_CulcAnimation_Fill_scoop
- 0x804F7F28: Player_actor_Reset_Hole_Fill_scoop
- 0x804F7FC0: Player_actor_SetEffectHit_Fill_scoop
- 0x804F81D8: Player_actor_SetEffect_Fill_scoop
- 0x804F81FC: Player_actor_SetSound_Fill_scoop
- 0x804F827C: Player_actor_SearchAnimation_Fill_scoop
- 0x804F82EC: Player_actor_ObjCheck_Fill_scoop
- 0x804F830C: Player_actor_BGcheck_Fill_scoop
- 0x804F832C: Player_actor_lean_angle_Fill_scoop
- 0x804F8380: Player_actor_request_proc_index_fromFill_scoop
- 0x804F84C8: Player_actor_main_Fill_scoop
- 0x804F8574: Player_actor_request_main_reflect_scoop_all
- 0x804F860C: Player_actor_setup_main_Reflect_scoop
- 0x804F86AC: Player_actor_settle_main_Reflect_scoop
- 0x804F86C4: Player_actor_Movement_Reflect_scoop
- 0x804F8720: Player_actor_CulcAnimation_Reflect_scoop
- 0x804F8740: Player_actor_SetEffectHit_Reflect_scoop
- 0x804F8C7C: Player_actor_SetEffect_Reflect_scoop
- 0x804F8C9C: Player_actor_SetAngleSpeedF_Reflect_scoop
- 0x804F8CF8: Player_actor_SetOrderNPC_Reflect_scoop
- 0x804F8D40: Player_actor_SetSound_Reflect_scoop
- 0x804F9158: Player_actor_informed_insects_Reflect_scoop
- 0x804F9208: Player_actor_SearchAnimation_Reflect_scoop
- 0x804F9288: Player_actor_ObjCheck_Reflect_scoop
- 0x804F92A8: Player_actor_BGcheck_Reflect_scoop
- 0x804F92C8: Player_actor_request_proc_index_fromReflect_scoop
- 0x804F93D8: Player_actor_main_Reflect_scoop
- 0x804F947C: Player_actor_request_main_air_scoop_all
- 0x804F94E0: Player_actor_setup_main_Air_scoop
- 0x804F9554: Player_actor_Movement_Air_scoop
- 0x804F957C: Player_actor_CulcAnimation_Air_scoop
- 0x804F959C: Player_actor_SetSound_Air_scoop
- 0x804F95E4: Player_actor_SearchAnimation_Air_scoop
- 0x804F9640: Player_actor_ObjCheck_Air_scoop
- 0x804F9660: Player_actor_BGcheck_Air_scoop
- 0x804F9680: Player_actor_request_proc_index_fromAir_scoop
- 0x804F96D8: Player_actor_main_Air_scoop
- 0x804F977C: Player_actor_request_main_putin_scoop_all
- 0x804F9814: Player_actor_request_main_putin_scoop_from_submenu
- 0x804F9858: Player_actor_setup_main_Putin_scoop
- 0x804F9984: Player_actor_Movement_Putin_scoop
- 0x804F99BC: Player_actor_CulcAnimation_Putin_scoop
- 0x804F99DC: Player_actor_SetEffect_Putin_scoop
- 0x804F9A00: Player_actor_SearchAnimation_Putin_scoop
- 0x804F9A68: Player_actor_ObjCheck_Putin_scoop
- 0x804F9A88: Player_actor_BGcheck_Putin_scoop
- 0x804F9AA8: Player_actor_lean_angle_Putin_scoop
- 0x804F9AD4: Player_actor_request_proc_index_fromPutin_scoop
- 0x804F9B2C: Player_actor_main_Putin_scoop
- 0x804F9BD8: Player_actor_request_main_putaway_scoop_all
- 0x804F9C70: Player_actor_setup_main_Putaway_scoop
- 0x804F9D2C: Player_actor_Movement_Putaway_scoop
- 0x804F9D54: Player_actor_CulcAnimation_Putaway_scoop
- 0x804F9D74: Player_actor_ObjCheck_Putaway_scoop
- 0x804F9D94: Player_actor_BGcheck_Putaway_scoop
- 0x804F9DB4: Player_actor_SearchAnimation_Putaway_scoop
- 0x804F9E08: Player_actor_Set_Item_Putaway_scoop
- 0x804F9E20: Player_actor_request_proc_index_fromPutaway_scoop
- 0x804F9EE0: Player_actor_main_Putaway_scoop
- 0x804F9F8C: Player_actor_request_main_get_scoop_all
- 0x804FA01C: Player_actor_setup_main_Get_scoop
- 0x804FA188: Player_actor_settle_main_Get_scoop
- 0x804FA200: Player_actor_Movement_Get_scoop
- 0x804FA2D8: Player_actor_CulcAnimation_Get_scoop
- 0x804FA2F8: Player_actor_SetEffect_Get_scoop
- 0x804FA320: Player_actor_Put_Hole_Get_scoop
- 0x804FA398: Player_actor_SearchAnimation_Get_scoop
- 0x804FA408: Player_actor_set_eye_pattern_Get_scoop
- 0x804FA438: Player_actor_ObjCheck_Get_scoop
- 0x804FA458: Player_actor_BGcheck_Get_scoop
- 0x804FA478: Player_actor_lean_angle_Get_scoop
- 0x804FA598: Player_actor_Get_scoop_demo_ct
- 0x804FA660: Player_actor_MessageControl_Get_scoop
- 0x804FA7F4: Player_actor_Set_Item_Get_scoop
- 0x804FA854: Player_actor_request_proc_index_fromGet_scoop
- 0x804FA8C0: Player_actor_main_Get_scoop
- 0x804FA984: Player_actor_request_main_talk_all
- 0x804FAA18: Player_actor_setup_main_Talk
- 0x804FAB08: Player_actor_settle_main_Talk
- 0x804FAB58: Player_actor_Movement_Talk
- 0x804FAC68: Player_actor_CulcAnimation_Talk
- 0x804FAC88: Player_actor_Set_FeelEffect_common
- 0x804FACDC: Player_actor_SearchAnimation_Talk
- 0x804FAD1C: Player_actor_ChangeAnimation_FromDemoOrder_common
- 0x804FAE74: Player_actor_ChangeAnimation_FromDemoOrder_Talk
- 0x804FAE98: Player_actor_SetEffect_FromDemoOrder_common
- 0x804FAF24: Player_actor_SetEffect_FromDemoOrder_Talk
- 0x804FAF44: Player_actor_set_eye_pattern_Talk
- 0x804FAFBC: Player_actor_ObjCheck_Talk
- 0x804FAFDC: Player_actor_BGcheck_Talk
- 0x804FAFFC: Player_actor_main_Talk
- 0x804FB0C0: Player_actor_request_main_recieve_wait
- 0x804FB158: Player_actor_setup_main_Recieve_wait
- 0x804FB218: Player_actor_Movement_Recieve_wait
- 0x804FB23C: Player_actor_CulcAnimation_Recieve_wait
- 0x804FB260: Player_actor_ObjCheck_Recieve_wait
- 0x804FB280: Player_actor_request_proc_index_fromRecieve_wait
- 0x804FB30C: Player_actor_main_Recieve_wait
- 0x804FB394: Player_actor_request_main_recieve_stretch
- 0x804FB42C: Player_actor_setup_main_Recieve_stretch
- 0x804FB51C: Player_actor_Movement_Recieve_stretch
- 0x804FB540: Player_actor_CulcAnimation_Recieve_stretch
- 0x804FB564: Player_actor_ObjCheck_Recieve_stretch
- 0x804FB584: Player_actor_request_proc_index_fromRecieve_stretch
- 0x804FB5F4: Player_actor_main_Recieve_stretch
- 0x804FB688: Player_actor_request_main_recieve
- 0x804FB720: Player_actor_setup_main_Recieve
- 0x804FB820: Player_actor_Movement_Recieve
- 0x804FB844: Player_actor_CulcAnimation_Recieve
- 0x804FB868: Player_actor_ObjCheck_Recieve
- 0x804FB888: Player_actor_request_proc_index_fromRecieve
- 0x804FB918: Player_actor_main_Recieve
- 0x804FB9B4: Player_actor_request_main_recieve_putaway
- 0x804FBA4C: Player_actor_setup_main_Recieve_putaway
- 0x804FBB54: Player_actor_settle_main_Recieve_putaway
- 0x804FBB74: Player_actor_Movement_Recieve_putaway
- 0x804FBB98: Player_actor_CulcAnimation_Recieve_putaway
- 0x804FBBBC: Player_actor_ObjCheck_Recieve_putaway
- 0x804FBBDC: Player_actor_request_proc_index_fromRecieve_putaway
- 0x804FBC60: Player_actor_main_Recieve_putaway
- 0x804FBCFC: Player_actor_request_main_give_all
- 0x804FBDA4: Player_actor_request_main_give_from_submenu
- 0x804FBE24: Player_actor_setup_main_Give
- 0x804FBF48: Player_actor_Movement_Give
- 0x804FBF6C: Player_actor_CulcAnimation_Give
- 0x804FBF90: Player_actor_ObjCheck_Give
- 0x804FBFB0: Player_actor_request_proc_index_fromGive
- 0x804FC01C: Player_actor_main_Give
- 0x804FC0B8: Player_actor_request_main_give_wait_all
- 0x804FC150: Player_actor_setup_main_Give_wait
- 0x804FC258: Player_actor_settle_main_Give_wait
- 0x804FC284: Player_actor_Movement_Give_wait
- 0x804FC2A8: Player_actor_CulcAnimation_Give_wait
- 0x804FC2CC: Player_actor_ObjCheck_Give_wait
- 0x804FC2EC: Player_actor_Set_item_matrix_set_Give_wait
- 0x804FC318: Player_actor_request_proc_index_fromGive_wait
- 0x804FC3A4: Player_actor_main_Give_wait
- 0x804FC434: Player_actor_request_main_takeout_item
- 0x804FC4A8: Player_actor_setup_main_Takeout_item
- 0x804FC634: Player_actor_settle_main_Takeout_item
- 0x804FC654: Player_actor_Movement_Takeout_item
- 0x804FC67C: Player_actor_CulcAnimation_Takeout_item
- 0x804FC69C: Player_actor_ObjCheck_Takeout_item
- 0x804FC6BC: Player_actor_SearchAnimation_Takeout_item
- 0x804FC710: Player_actor_BGcheck_Takeout_item
- 0x804FC730: Player_actor_SearchTimer_Takeout_item
- 0x804FC828: Player_actor_request_proc_index_fromTakeout_item
- 0x804FC8D4: Player_actor_main_Takeout_item
- 0x804FC988: Player_actor_request_main_putin_item
- 0x804FC9FC: Player_actor_setup_main_Putin_item
- 0x804FCB9C: Player_actor_Movement_Putin_item
- 0x804FCBC4: Player_actor_CulcAnimation_Putin_item
- 0x804FCBE4: Player_actor_ObjCheck_Putin_item
- 0x804FCC04: Player_actor_BGcheck_Putin_item
- 0x804FCC24: Player_actor_SetItemScale_Putin_item
- 0x804FCCC0: Player_actor_SearchAnimation_Putin_item
- 0x804FCD14: Player_actor_request_proc_index_fromPutin_item
- 0x804FCD78: Player_actor_main_Putin_item
- 0x804FCE28: Player_actor_request_main_demo_wait_all
- 0x804FCEA4: Player_actor_request_main_demo_wait_from_submenu
- 0x804FCEE8: Player_actor_setup_main_Demo_wait
- 0x804FCFA0: Player_actor_settle_main_Demo_wait
- 0x804FCFF0: Player_actor_Movement_Demo_wait
- 0x804FD0EC: Player_actor_CulcAnimation_Demo_wait
- 0x804FD10C: Player_actor_SearchAnimation_Demo_wait
- 0x804FD14C: Player_actor_ChangeAnimation_FromDemoOrder_Demo_wait
- 0x804FD170: Player_actor_SetEffect_FromDemoOrder_Demo_wait
- 0x804FD190: Player_actor_ObjCheck_Demo_wait
- 0x804FD1B0: Player_actor_request_proc_index_fromDemo_wait
- 0x804FD214: Player_actor_main_Demo_wait
- 0x804FD2E0: Player_actor_request_main_demo_walk_all
- 0x804FD378: Player_actor_setup_main_Demo_walk
- 0x804FD470: Player_actor_CulcAnimation_Demo_walk
- 0x804FD4A8: Player_actor_SearchAnimation_Demo_walk
- 0x804FD4D4: Player_actor_Movement_Demo_walk
- 0x804FD994: Player_actor_ObjCheck_Demo_walk
- 0x804FD9B4: Player_actor_BGcheck_Demo_walk
- 0x804FD9D4: Player_actor_request_proc_index_fromDemo_walk
- 0x804FDA50: Player_actor_main_Demo_walk
- 0x804FDB00: Player_actor_request_main_demo_geton_train
- 0x804FDB90: Player_actor_setup_main_Demo_geton_train
- 0x804FDC68: Player_actor_settle_main_Demo_geton_train
- 0x804FDCA0: Player_actor_CulcAnimation_Demo_geton_train
- 0x804FDCC0: Player_actor_SearchAnimation_Demo_geton_train
- 0x804FDD14: Player_actor_Movement_Demo_geton_train
- 0x804FDD60: Player_actor_request_proc_index_fromDemo_geton_train
- 0x804FDDA0: Player_actor_main_Demo_geton_train
- 0x804FDE34: Player_actor_request_main_demo_geton_train_wait_all
- 0x804FDE98: Player_actor_setup_main_Demo_geton_train_wait
- 0x804FDF08: Player_actor_Movement_Demo_geton_train_wait
- 0x804FDF2C: Player_actor_CulcAnimation_Demo_geton_train_wait
- 0x804FDF50: Player_actor_main_Demo_geton_train_wait
- 0x804FDFAC: Player_actor_request_main_demo_getoff_train
- 0x804FE03C: Player_actor_setup_main_Demo_getoff_train
- 0x804FE114: Player_actor_settle_main_Demo_getoff_train
- 0x804FE14C: Player_actor_CulcAnimation_Demo_getoff_train
- 0x804FE16C: Player_actor_SearchAnimation_Demo_getoff_train
- 0x804FE1C0: Player_actor_Movement_Demo_getoff_train
- 0x804FE20C: Player_actor_request_proc_index_fromDemo_getoff_train
- 0x804FE270: Player_actor_main_Demo_getoff_train
- 0x804FE304: Player_actor_request_main_demo_standing_train_all
- 0x804FE368: Player_actor_setup_main_Demo_standing_train
- 0x804FE3F8: Player_actor_CulcAnimation_Demo_standing_train
- 0x804FE41C: Player_actor_Movement_Demo_standing_train
- 0x804FE518: Player_actor_main_Demo_standing_train
- 0x804FE580: Player_actor_request_main_demo_wade_all
- 0x804FE5F0: Player_actor_setup_main_Demo_wade
- 0x804FE724: Player_actor_settle_main_Demo_wade
- 0x804FE744: Player_actor_CulcAnimation_Demo_wade
- 0x804FE768: Player_actor_Movement_Demo_wade
- 0x804FE81C: Player_actor_ObjCheck_Demo_wade
- 0x804FE83C: Player_actor_BGcheck_Demo_wade
- 0x804FE85C: Player_actor_able_request_proc_index_fromDemo_wade_common
- 0x804FE890: Player_actor_request_proc_index_fromDemo_wade
- 0x804FE908: Player_actor_main_Demo_wade
- 0x804FE998: Player_actor_request_main_hide
- 0x804FE9FC: Player_actor_setup_main_Hide
- 0x804FEA1C: Player_actor_main_Hide
- 0x804FEA50: Player_actor_request_main_groundhog
- 0x804FEAB4: Player_actor_setup_main_Groundhog
- 0x804FEB44: Player_actor_CulcAnimation_Groundhog
- 0x804FEB64: Player_actor_ObjCheck_Groundhog
- 0x804FEB84: Player_actor_BGcheck_Groundhog
- 0x804FEBA4: Player_actor_main_Groundhog
- 0x804FEC14: Player_actor_request_main_release_creature_all
- 0x804FECC0: Player_actor_request_main_release_creature_from_submenu
- 0x804FED0C: Player_actor_setup_main_Release_creature
- 0x804FEF58: Player_actor_settle_main_Release_creature
- 0x804FEF70: Player_actor_Movement_Release_creature
- 0x804FEF98: Player_actor_CulcAnimation_Release_creature
- 0x804FEFBC: Player_actor_ObjCheck_Release_creature
- 0x804FEFDC: Player_actor_BGcheck_Release_creature
- 0x804FEFFC: Player_actor_add_calc_head_angle
- 0x804FF3A4: Player_actor_Look_Release_creature
- 0x804FF6D8: Player_actor_request_proc_index_fromRelease_creature
- 0x804FF798: Player_actor_main_Release_creature
- 0x804FF834: Player_actor_request_main_wash_car_all
- 0x804FF8EC: Player_actor_setup_main_Wash_car
- 0x804FF9B8: Player_actor_settle_main_Wash_car
- 0x804FFA20: Player_actor_CulcAnimation_Wash_car
- 0x804FFB54: Player_actor_SetEffect_Wash_car
- 0x804FFBC8: Player_actor_SearchAnimation_Wash_car
- 0x804FFC0C: Player_actor_request_proc_index_fromWash_car
- 0x804FFC50: Player_actor_main_Wash_car
- 0x804FFCA4: Player_actor_request_main_tired_all
- 0x804FFD08: Player_actor_setup_main_Tired
- 0x804FFD90: Player_actor_Movement_Tired
- 0x804FFDB8: Player_actor_CulcAnimation_Tired
- 0x804FFDD8: Player_actor_SetEffect_Tired
- 0x804FFE84: Player_actor_SearchAnimation_Tired
- 0x804FFED0: Player_actor_ObjCheck_Tired
- 0x804FFEF0: Player_actor_BGcheck_Tired
- 0x804FFF10: Player_actor_main_Tired
- 0x804FFF98: Player_actor_request_main_rotate_octagon_all
- 0x80500044: Player_actor_setup_main_Rotate_octagon
- 0x80500128: Player_actor_settle_main_Rotate_octagon
- 0x80500160: Player_actor_Movement_Rotate_octagon
- 0x805001AC: Player_actor_CulcAnimation_Rotate_octagon
- 0x805001CC: Player_actor_ObjCheck_Rotate_octagon
- 0x805001EC: Player_actor_BGcheck_Rotate_octagon
- 0x8050020C: Player_actor_request_proc_index_fromRotate_octagon
- 0x80500290: Player_actor_main_Rotate_octagon
- 0x80500328: Player_actor_request_main_throw_money_all
- 0x805003BC: Player_actor_setup_main_Throw_money
- 0x805004BC: Player_actor_settle_main_Throw_money
- 0x805004F4: Player_actor_CulcAnimation_Throw_money
- 0x80500514: Player_actor_Movement_Throw_money
- 0x80500560: Player_actor_ObjCheck_Throw_money
- 0x80500580: Player_actor_BGcheck_Throw_money
- 0x805005A0: Player_actor_SetSound_Throw_money
- 0x805005E8: Player_actor_SetEffect_Throw_money
- 0x8050068C: Player_actor_SearchAnimation_Throw_money
- 0x805006E0: Player_actor_request_proc_index_fromThrow_money
- 0x80500734: Player_actor_main_Throw_money
- 0x805007DC: Player_actor_request_main_pray_all
- 0x80500870: Player_actor_setup_main_Pray
- 0x80500970: Player_actor_settle_main_Pray
- 0x805009E4: Player_actor_CulcAnimation_Pray
- 0x80500A04: Player_actor_Movement_Pray
- 0x80500A50: Player_actor_ObjCheck_Pray
- 0x80500A70: Player_actor_BGcheck_Pray
- 0x80500A90: Player_actor_request_proc_index_fromPray
- 0x80500AD8: Player_actor_main_Pray
- 0x80500B70: Player_actor_request_main_shake_tree_all
- 0x80500C10: Player_actor_setup_main_Shake_tree
- 0x80500CEC: Player_actor_Movement_Shake_tree
- 0x80500D24: Player_actor_CulcAnimation_Shake_tree
- 0x80500D44: Player_actor_SetEffect_Shake_tree
- 0x8050113C: Player_actor_SetSound_Shake_tree
- 0x80501184: Player_actor_SearchAnimation_Shake_tree
- 0x805011D8: Player_actor_Check_BirthBee_Shake_tree
- 0x80501254: Player_actor_ObjCheck_Shake_tree
- 0x80501274: Player_actor_BGcheck_Shake_tree
- 0x80501294: Player_actor_request_proc_index_fromShake_tree
- 0x805013E4: Player_actor_main_Shake_tree
- 0x80501490: Player_actor_request_main_mail_jump_all
- 0x80501524: Player_actor_setup_main_Mail_jump
- 0x80501624: Player_actor_settle_main_Mail_jump
- 0x8050165C: Player_actor_CulcAnimation_Mail_jump
- 0x80501680: Player_actor_Movement_Mail_jump
- 0x805016CC: Player_actor_ObjCheck_Mail_jump
- 0x805016EC: Player_actor_BGcheck_Mail_jump
- 0x8050170C: Player_actor_main_Mail_jump
- 0x80501788: Player_actor_request_main_mail_land_all
- 0x805017EC: Player_actor_request_main_mail_land_from_submenu
- 0x80501814: Player_actor_setup_main_Mail_land
- 0x80501898: Player_actor_Movement_Mail_land
- 0x805018C0: Player_actor_CulcAnimation_Mail_land
- 0x805018E4: Player_actor_ObjCheck_Mail_land
- 0x80501904: Player_actor_BGcheck_Mail_land
- 0x80501924: Player_actor_request_proc_index_fromMail_land
- 0x80501A20: Player_actor_main_Mail_land
- 0x80501AB4: Player_actor_request_main_ready_pitfall_all
- 0x80501B38: Player_actor_setup_main_Ready_pitfall
- 0x80501C28: Player_actor_settle_main_Ready_pitfall
- 0x80501C74: Player_actor_CulcAnimation_Ready_pitfall
- 0x80501C94: Player_actor_Movement_Ready_pitfall
- 0x80501CE0: Player_actor_SetEffect_Ready_pitfall
- 0x80501D28: Player_actor_SearchAnimation_Ready_pitfall
- 0x80501D64: Player_actor_set_eye_pattern_Ready_pitfall
- 0x80501D84: Player_actor_ObjCheck_Ready_pitfall
- 0x80501DA4: Player_actor_request_proc_index_fromReady_pitfall
- 0x80501DD0: Player_actor_main_Ready_pitfall
- 0x80501E68: Player_actor_request_main_fall_pitfall_all
- 0x80501ECC: Player_actor_Get_PlayerAnimeIndex_fromItemKind_Fall_pitfall
- 0x80501EF8: Player_actor_setup_main_Fall_pitfall
- 0x80502008: Player_actor_settle_main_Fall_pitfall
- 0x8050202C: Player_actor_CulcAnimation_Fall_pitfall
- 0x8050204C: Player_actor_Movement_Fall_pitfall
- 0x80502098: Player_actor_set_eye_pattern_Fall_pitfall
- 0x805020B8: Player_actor_ObjCheck_Fall_pitfall
- 0x805020D8: Player_actor_request_proc_index_fromFall_pitfall
- 0x80502104: Player_actor_main_Fall_pitfall
- 0x80502190: Player_actor_request_main_struggle_pitfall_all
- 0x805021F4: Player_actor_setup_main_Struggle_pitfall
- 0x805022B0: Player_actor_settle_main_Struggle_pitfall
- 0x805022F4: Player_actor_Movement_Struggle_pitfall
- 0x80502318: Player_actor_ControlAnimationSpeed_Struggle_pitfall
- 0x805024DC: Player_actor_CulcAnimation_Struggle_pitfall
- 0x80502500: Player_actor_set_eye_pattern_Struggle_pitfall
- 0x80502538: Player_actor_ObjCheck_Struggle_pitfall
- 0x80502558: Player_actor_request_proc_index_fromStruggle_pitfall
- 0x80502584: Player_actor_main_Struggle_pitfall
- 0x80502614: Player_actor_request_main_climbup_pitfall_all
- 0x80502678: Player_actor_Get_PlayerAnimeIndex_fromItemKind_Climbup_pitfall
- 0x805026A4: Player_actor_setup_main_Climbup_pitfall
- 0x80502844: Player_actor_settle_main_Climbup_pitfall
- 0x80502868: Player_actor_CulcAnimation_Climbup_pitfall
- 0x80502888: Player_actor_Movement_Climbup_pitfall
- 0x805028D4: Player_actor_SearchAnimation_Climbup_pitfall
- 0x80502904: Player_actor_set_eye_pattern_Climbup_pitfall
- 0x80502924: Player_actor_ObjCheck_Climbup_pitfall
- 0x80502944: Player_actor_request_proc_index_fromClimbup_pitfall
- 0x8050299C: Player_actor_main_Climbup_pitfall
- 0x80502A34: Player_actor_request_main_stung_bee_all
- 0x80502AD4: Player_actor_setup_main_Stung_bee
- 0x80502BA8: Player_actor_Movement_Stung_bee
- 0x80502C78: Player_actor_CulcAnimation_Stung_bee
- 0x80502C98: Player_actor_ChangeAnimation_Stung_bee
- 0x80502D34: Player_actor_SearchAnimation_Stung_bee
- 0x80502DC0: Player_actor_set_tex_anime_Stung_bee
- 0x80502DE0: Player_actor_ObjCheck_Stung_bee
- 0x80502E00: Player_actor_BGcheck_Stung_bee
- 0x80502E20: Player_actor_request_proc_index_fromStung_bee
- 0x80502E70: Player_actor_main_Stung_bee
- 0x80502F20: Player_actor_request_main_notice_bee_all
- 0x80502F84: Player_actor_setup_main_Notice_bee
- 0x80503088: Player_actor_settle_main_Notice_bee
- 0x805030CC: Player_actor_CulcAnimation_Notice_bee
- 0x805030EC: Player_actor_Movement_Notice_bee
- 0x80503138: Player_actor_set_eye_pattern_Notice_bee
- 0x80503180: Player_actor_ObjCheck_Notice_bee
- 0x805031A0: Player_actor_BGcheck_Notice_bee
- 0x805031C0: Player_actor_Notice_bee_demo_ct
- 0x8050322C: Player_actor_MessageControl_Notice_bee
- 0x80503320: Player_actor_request_proc_index_fromNotice_bee
- 0x80503380: Player_actor_main_Notice_bee
- 0x8050342C: Player_actor_request_main_remove_grass
- 0x805034C8: Player_actor_setup_main_Remove_grass
- 0x8050358C: Player_actor_Movement_Remove_grass
- 0x805035B0: Player_actor_CulcAnimation_Remove_grass
- 0x805035D0: Player_actor_ChangeFGNumber_Remove_grass
- 0x8050372C: Player_actor_SearchAnimation_Remove_grass
- 0x80503778: Player_actor_ObjCheck_Remove_grass
- 0x80503798: Player_actor_BGcheck_Remove_grass
- 0x805037B8: Player_actor_request_proc_index_fromRemove_grass
- 0x80503810: Player_actor_main_Remove_grass
- 0x805038B4: Player_actor_request_main_shock_all
- 0x80503948: Player_actor_setup_main_Shock
- 0x80503A2C: Player_actor_settle_main_Shock
- 0x80503A6C: Player_actor_Movement_Shock
- 0x80503B28: Player_actor_CulcAnimation_Shock
- 0x80503B48: Player_actor_Set_FeelEffect_Shock
- 0x80503B9C: Player_actor_SearchAnimation_Shock
- 0x80503BD8: Player_actor_ChangeAnimation_Shock
- 0x80503CBC: Player_actor_set_eye_pattern_Shock
- 0x80503D28: Player_actor_ObjCheck_Shock
- 0x80503D48: Player_actor_BGcheck_Shock
- 0x80503D68: Player_actor_request_proc_index_fromShock
- 0x80503E38: Player_actor_main_Shock
- 0x80503EE4: Player_actor_request_main_knock_door
- 0x80503F7C: Player_actor_setup_main_Knock_door
- 0x8050408C: Player_actor_settle_main_Knock_door
- 0x805040C4: Player_actor_CulcAnimation_Knock_door
- 0x805040E4: Player_actor_Movement_Knock_door
- 0x80504130: Player_actor_SetSound_Knock_door
- 0x8050419C: Player_actor_SearchAnimation_Knock_door
- 0x805041D8: Player_actor_ObjCheck_Knock_door
- 0x805041F8: Player_actor_BGcheck_Knock_door
- 0x80504218: Player_actor_request_proc_index_fromKnock_door
- 0x80504274: Player_actor_main_Knock_door
- 0x80504318: Player_actor_request_main_change_cloth_all
- 0x805043B4: Player_actor_request_main_change_cloth_forNPC
- 0x8050442C: Player_actor_setup_main_Change_cloth
- 0x80504590: Player_actor_Movement_Change_cloth
- 0x80504678: Player_actor_CulcAnimation_Change_cloth
- 0x80504698: Player_actor_SetEffect_Change_cloth
- 0x80504750: Player_actor_SetTexPallet_Change_cloth
- 0x805047FC: Player_actor_SearchAnimation_Change_cloth
- 0x80504854: Player_actor_set_eye_pattern_Change_cloth
- 0x80504874: Player_actor_ObjCheck_Change_cloth
- 0x80504894: Player_actor_request_proc_index_fromChange_cloth
- 0x80504918: Player_actor_main_Change_cloth
- 0x805049B8: Player_actor_request_main_push_snowball_all
- 0x80504A68: Player_actor_setup_main_Push_snowball
- 0x80504B28: Player_actor_CulcAnimation_Push_snowball
- 0x80504B48: Player_actor_SetEffect_Push_snowball
- 0x80504B68: Player_actor_SearchAnimation_Push_snowball
- 0x80504BDC: Player_actor_request_proc_index_fromPush_snowball
- 0x80504C38: Player_actor_main_Push_snowball
- 0x80504CB4: Player_actor_request_main_rotate_umbrella_all
- 0x80504D18: Player_actor_setup_main_Rotate_umbrella
- 0x80504DE4: Player_actor_Movement_Rotate_umbrella
- 0x80504E0C: Player_actor_CulcAnimation_Rotate_umbrella
- 0x80504E2C: Player_actor_ObjCheck_Rotate_umbrella
- 0x80504E4C: Player_actor_BGcheck_Rotate_umbrella
- 0x80504E6C: Player_actor_request_proc_index_fromRotate_umbrella
- 0x80504F7C: Player_actor_main_Rotate_umbrella
- 0x80505014: Player_actor_request_main_complete_payment
- 0x80505078: Player_actor_setup_main_Complete_payment
- 0x80505104: Player_actor_settle_main_Complete_payment
- 0x80505140: Player_actor_CulcAnimation_Complete_payment
- 0x80505160: Player_actor_Movement_Complete_payment
- 0x8050522C: Player_actor_set_eye_pattern_Complete_payment
- 0x8050525C: Player_actor_ObjCheck_Complete_payment
- 0x8050527C: Player_actor_BGcheck_Complete_payment
- 0x8050529C: Player_actor_Complete_payment_demo_ct
- 0x80505340: Player_actor_MessageControl_Complete_payment
- 0x80505450: Player_actor_request_proc_index_fromComplete_payment
- 0x80505494: Player_actor_main_Complete_payment
- 0x80505530: Player_actor_request_main_fail_emu
- 0x80505594: Player_actor_setup_main_Fail_emu
- 0x80505614: Player_actor_settle_main_Fail_emu
- 0x8050562C: Player_actor_Movement_Fail_emu
- 0x80505654: Player_actor_CulcAnimation_Fail_emu
- 0x80505678: Player_actor_ObjCheck_Fail_emu
- 0x80505698: Player_actor_BGcheck_Fail_emu
- 0x805056B8: Player_actor_Fail_emu_demo_ct
- 0x80505710: Player_actor_MessageControl_Fail_emu
- 0x805057F0: Player_actor_request_proc_index_fromFail_emu
- 0x80505848: Player_actor_main_Fail_emu
- 0x805058D4: Player_actor_request_main_stung_mosquito_all
- 0x805059C8: Player_actor_setup_main_Stung_mosquito
- 0x80505A64: Player_actor_Movement_Stung_mosquito
- 0x80505A8C: Player_actor_CulcAnimation_Stung_mosquito
- 0x80505AB0: Player_actor_ObjCheck_Stung_mosquito
- 0x80505AD0: Player_actor_BGcheck_Stung_mosquito
- 0x80505AF0: Player_actor_request_proc_index_fromStung_mosquito
- 0x80505B28: Player_actor_main_Stung_mosquito
- 0x80505BBC: Player_actor_request_main_notice_mosquito
- 0x80505C2C: Player_actor_setup_main_Notice_mosquito
- 0x80505CF4: Player_actor_settle_main_Notice_mosquito
- 0x80505D38: Player_actor_Movement_Notice_mosquito
- 0x80505E04: Player_actor_CulcAnimation_Notice_mosquito
- 0x80505E28: Player_actor_ObjCheck_Notice_mosquito
- 0x80505E48: Player_actor_BGcheck_Notice_mosquito
- 0x80505E68: Player_actor_Notice_mosquito_demo_ct
- 0x80505EEC: Player_actor_MessageControl_Notice_mosquito
- 0x80505FE4: Player_actor_request_proc_index_fromNotice_mosquito
- 0x8050603C: Player_actor_main_Notice_mosquito
- 0x805060D0: Player_actor_request_main_demo_geton_boat_all
- 0x80506160: Player_actor_setup_main_Demo_geton_boat
- 0x80506264: Player_actor_settle_main_Demo_geton_boat
- 0x805062C8: Player_actor_CulcAnimation_Demo_geton_boat
- 0x805062E8: Player_actor_SetSound_Demo_geton_boat
- 0x80506330: Player_actor_ControlShadow_Demo_geton_boat
- 0x80506360: Player_actor_SearchAnimation_Demo_geton_boat
- 0x805063A4: Player_actor_Movement_Demo_geton_boat
- 0x805063F0: Player_actor_ObjCheck_Demo_geton_boat
- 0x80506410: Player_actor_request_proc_index_fromDemo_geton_boat
- 0x80506450: Player_actor_main_Demo_geton_boat
- 0x805064E4: Player_actor_request_main_swing_fan_all
- 0x80506558: Player_actor_setup_main_Swing_fan
- 0x80506604: Player_actor_Movement_Swing_fan
- 0x8050662C: Player_actor_CulcAnimation_Swing_fan
- 0x8050664C: Player_actor_SetSound_Swing_fan
- 0x80506694: Player_actor_SearchAnimation_Swing_fan
- 0x805066D0: Player_actor_ObjCheck_Swing_fan
- 0x805066F0: Player_actor_BGcheck_Swing_fan
- 0x80506710: Player_actor_request_proc_index_fromSwing_fan
- 0x8050684C: Player_actor_main_Swing_fan
- 0x805068DC: Player_actor_request_main_switch_on_lighthouse_all
- 0x80506974: Player_actor_settle_main_Switch_on_lighthouse
- 0x805069AC: Player_actor_setup_main_Switch_on_lighthouse
- 0x80506A84: Player_actor_CulcAnimation_Switch_on_lighthouse
- 0x80506AA8: Player_actor_Movement_Switch_on_lighthouse
- 0x80506AF4: Player_actor_ObjCheck_Switch_on_lighthouse
- 0x80506B14: Player_actor_request_proc_index_fromSwitch_on_lighthouse
- 0x80506B6C: Player_actor_main_Switch_on_lighthouse
- 0x80506BF8: Player_actor_request_main_radio_exercise_all
- 0x80506C78: Player_actor_setup_main_Radio_exercise
- 0x80506D48: Player_actor_settle_main_Radio_exercise
- 0x80506D4C: Player_actor_Set_RadioExerciseCommand_Radio_exercise
- 0x80506D84: Player_actor_Movement_Radio_exercise
- 0x80506DAC: Player_actor_CulcAnimation_Radio_exercise
- 0x80506EF4: Player_actor_ObjCheck_Radio_exercise
- 0x80506F14: Player_actor_BGcheck_Radio_exercise
- 0x80506F34: Player_actor_request_proc_index_fromRadio_exercise
- 0x80507074: Player_actor_main_Radio_exercise
- 0x80507110: Player_actor_request_main_demo_geton_boat_sitdown_all
- 0x80507174: Player_actor_setup_main_Demo_geton_boat_sitdown
- 0x8050720C: Player_actor_Movement_Demo_geton_boat_sitdown
- 0x805074F0: Player_actor_CulcAnimation_Demo_geton_boat_sitdown
- 0x80507510: Player_actor_SetSound_Demo_geton_boat_sitdown
- 0x8050758C: Player_actor_SearchAnimation_Demo_geton_boat_sitdown
- 0x805075C8: Player_actor_request_proc_index_fromDemo_geton_boat_sitdown
- 0x80507608: Player_actor_main_Demo_geton_boat_sitdown
- 0x80507690: Player_actor_request_main_demo_geton_boat_wait_all
- 0x805076F4: Player_actor_setup_main_Demo_geton_boat_wait
- 0x80507784: Player_actor_Movement_Demo_geton_boat_wait
- 0x80507788: Player_actor_CulcAnimation_Demo_geton_boat_wait
- 0x805077AC: Player_actor_request_proc_index_fromDemo_geton_boat_wait
- 0x80507834: Player_actor_main_Demo_geton_boat_wait
- 0x805078A4: Player_actor_request_main_demo_geton_boat_wade_all
- 0x80507924: Player_actor_setup_main_Demo_geton_boat_wade
- 0x80507A68: Player_actor_settle_main_Demo_geton_boat_wade
- 0x80507A88: Player_actor_Movement_Demo_geton_boat_wade
- 0x80507AA8: Player_actor_CulcAnimation_Demo_geton_boat_wade
- 0x80507AC8: Player_actor_able_request_proc_index_fromDemo_geton_boat_wade_common
- 0x80507AFC: Player_actor_request_proc_index_fromDemo_geton_boat_wade
- 0x80507B50: Player_actor_main_Demo_geton_boat_wade
- 0x80507BCC: Player_actor_request_main_demo_getoff_boat_standup_all
- 0x80507C5C: Player_actor_setup_main_Demo_getoff_boat_standup
- 0x80507D8C: Player_actor_settle_main_Demo_getoff_boat_standup
- 0x80507DC4: Player_actor_CulcAnimation_Demo_getoff_boat_standup
- 0x80507DE4: Player_actor_SetSound_Demo_getoff_boat_standup
- 0x80507E60: Player_actor_SearchAnimation_Demo_getoff_boat_standup
- 0x80507E9C: Player_actor_Movement_Demo_getoff_boat_standup
- 0x80507F7C: Player_actor_ObjCheck_Demo_getoff_boat_standup
- 0x80507F9C: Player_actor_request_proc_index_fromDemo_getoff_boat_standup
- 0x80507FF0: Player_actor_main_Demo_getoff_boat_standup
- 0x80508084: Player_actor_request_main_demo_getoff_boat_all
- 0x80508114: Player_actor_setup_main_Demo_getoff_boat
- 0x805082A0: Player_actor_settle_main_Demo_getoff_boat
- 0x805082E8: Player_actor_CulcAnimation_Demo_getoff_boat
- 0x80508308: Player_actor_SetSound_Demo_getoff_boat
- 0x80508350: Player_actor_ControlShadow_Demo_getoff_boat
- 0x80508380: Player_actor_SearchAnimation_Demo_getoff_boat
- 0x805083C4: Player_actor_Movement_Demo_getoff_boat
- 0x80508410: Player_actor_ObjCheck_Demo_getoff_boat
- 0x80508430: Player_actor_request_proc_index_fromDemo_getoff_boat
- 0x80508478: Player_actor_main_Demo_getoff_boat
- 0x8050850C: Player_actor_request_main_demo_get_golden_item_common
- 0x80508584: Player_actor_request_main_demo_get_golden_item_all
- 0x805085B0: Player_actor_request_main_demo_get_golden_item_from_submenu
- 0x805085DC: Player_actor_setup_main_Demo_get_golden_item
- 0x805086F4: Player_actor_settle_main_Demo_get_golden_item
- 0x80508764: Player_actor_CulcAnimation_Demo_get_golden_item
- 0x80508788: Player_actor_Movement_Demo_get_golden_item
- 0x80508854: Player_actor_set_eye_pattern_Demo_get_golden_item
- 0x80508884: Player_actor_ObjCheck_Demo_get_golden_item
- 0x805088A4: Player_actor_BGcheck_Demo_get_golden_item
- 0x805088C4: Player_actor_Demo_get_golden_item_demo_ct
- 0x8050898C: Player_actor_MessageControl_Demo_get_golden_item
- 0x80508A9C: Player_actor_request_proc_index_fromDemo_get_golden_item
- 0x80508AF4: Player_actor_main_Demo_get_golden_item
- 0x80508B9C: Player_actor_request_main_demo_get_golden_item2_all
- 0x80508BC8: Player_actor_setup_main_Demo_get_golden_item2
- 0x80508BE8: Player_actor_settle_main_Demo_get_golden_item2
- 0x80508C08: Player_actor_main_Demo_get_golden_item2
- 0x80508C28: Player_actor_request_main_demo_get_golden_axe_wait_all
- 0x80508C8C: Player_actor_setup_main_Demo_get_golden_axe_wait
- 0x80508D2C: Player_actor_CulcAnimation_Demo_get_golden_axe_wait
- 0x80508D4C: Player_actor_ObjCheck_Demo_get_golden_axe_wait
- 0x80508D6C: Player_actor_BGcheck_Demo_get_golden_axe_wait
- 0x80508D8C: Player_actor_request_proc_index_fromDemo_get_golden_axe_wait
- 0x80508DDC: Player_actor_main_Demo_get_golden_axe_wait
- 0x80508E58: mRF_GetSystemBlockInfo
- 0x80508E6C: mRF_BlockType2CliffIndex
- 0x80508EC8: mRF_GetRandom
- 0x80508F24: mRF_D2ToD1
- 0x80508F30: mRF_Direct2BlockNo
- 0x80508F60: mRF_CheckCorrectBlockNo
- 0x80508FA4: mRF_CheckBlockGroup
- 0x8050906C: mRF_CpyBlockData
- 0x8050908C: mRF_TraceCliffBlock
- 0x80509240: mRF_SetEndCliffBlock
- 0x80509374: mRF_LastCheckCliff
- 0x80509434: mRF_DecideBaseCliff
- 0x805094E8: mRF_RiverAlbuminCliff
- 0x80509588: mRF_DecideRiverAlbuminCliff
- 0x80509640: mRF_GetCenterCrossZoneRiverCount
- 0x805096AC: mRF_TraceRiverPart2
- 0x805098FC: mRF_TraceRiverPart1
- 0x80509AD0: mRF_InitFlag
- 0x80509AF0: mRF_LastCheckRiver
- 0x80509BA4: mRF_DecideBaseRiver
- 0x80509C74: mRF_SetRandomBlockData
- 0x80509CCC: mRF_GetRiverCrossCliffInfo
- 0x80509D5C: mRF_SetBridgeBlock
- 0x80509F18: mRF_GetBlockBase
- 0x80509FD4: mRF_InitBlockBase
- 0x80509FF0: mRF_SetShortData
- 0x8050A00C: mRF_SearchAlreadyUse
- 0x8050A048: mRF_TypeCombCount
- 0x8050A0E8: mRF_IndexInType2BlockNo
- 0x8050A1AC: mRF_GetExceptionalSeaBgDownBgName
- 0x8050A1E4: mRF_BgName2RandomConbiNo
- 0x8050A2BC: mRF_SelectBlock
- 0x8050A534: mRF_CopyBlockBaseHeightData
- 0x8050A55C: mRF_MakeBaseLandformStep2
- 0x8050A5F4: mRF_CountDirectedInfoCliff
- 0x8050A6D4: mRF_SetSlopeDirectedInfoCliff
- 0x8050A7D8: mRF_SetSlopeBlock
- 0x8050A8C4: mRF_SetBridgeAndSlopeBlock
- 0x8050A90C: mRF_MakeBaseHeightTable
- 0x8050A950: mRF_MakeFlatPlaceInfomation
- 0x8050AA90: mRF_JudgeFlatBlock
- 0x8050ABA4: mRF_CountFlatBlock
- 0x8050AC14: mRF_RewriteFlatType
- 0x8050ACA0: mRF_FlatBlock2Unique
- 0x8050AD24: mRF_SetNeedleworkAndWharfBlock
- 0x8050ADE4: mRF_SetUniqueFlatBlock
- 0x8050AED8: mRF_SetUniqueRailBlock
- 0x8050AF9C: mRF_CountPureRiver
- 0x8050AFE0: mRF_SetPoolDirectedRiverBlock
- 0x8050B048: mRF_SetPoolBlock
- 0x8050B0A4: mRF_SetMarinBlock
- 0x8050B140: mRF_InitCombTable
- 0x8050B164: mRF_SetSeaBlockWithBridgeRiver
- 0x8050B1AC: mRF_MakePerfectBit
- 0x8050B1D4: mRF_MakeBaseLandformStep3
- 0x8050B250: mRF_MakeBaseLandform
- 0x8050B280: mRF_ReportRandomFieldBitResult
- 0x8050B284: mRF_GetRandomStepMode
- 0x8050B2C0: mRF_MakeRandomField_ovl
- 0x8050B3D0: eChryMgr_move
- 0x8050B3D4: eChryMgr_draw
- 0x8050B3D8: eChryMgr_ct
- 0x8050B3DC: eChryMgr_dt
- 0x8050B404: aHG_actor_ct
- 0x8050B4E8: aHG_anime_proc
- 0x8050B520: aHG_calc_timer
- 0x8050B57C: aHG_away_bg_hitangle_check_proc
- 0x8050B6BC: aHG_decide_next_act_idx_wait_move
- 0x8050B76C: aHG_position_move
- 0x8050B7E0: aHG_BGcheck
- 0x8050B840: aHG_calc_add_alpha
- 0x8050B87C: aHG_check_dead
- 0x8050B958: aHG_player_check
- 0x8050B9CC: aHG_check_threshold
- 0x8050BA38: aHG_away
- 0x8050BBE4: aHG_jump_away
- 0x8050BC54: aHG_wait
- 0x8050BCDC: aHG_move
- 0x8050BE08: aHG_dead
- 0x8050BEAC: aHG_away_init
- 0x8050BF14: aHG_jump_away_init
- 0x8050BFAC: aHG_wait_init
- 0x8050BFD8: aHG_move_init
- 0x8050C0A4: aHG_dead_init
- 0x8050C15C: aHG_setupAction
- 0x8050C1A4: aHG_actor_move
- 0x8050C240: aHG_actor_draw
- 0x8050C354: aANT_actor_ct
- 0x8050C3FC: aANT_calc_scale
- 0x8050C460: aANT_wait
- 0x8050C5DC: aANT_caught
- 0x8050C6A8: aANT_disappear
- 0x8050C700: aANT_caught_init
- 0x8050C70C: aANT_disappear_init
- 0x8050C71C: aANT_setupAction
- 0x8050C764: aANT_actor_move
- 0x8050C810: aANT_actor_draw
- 0x8050C8E8: aBEE_actor_ct
- 0x8050C9B4: aBEE_calc_scale_sub
- 0x8050CA78: aBEE_calc_scale
- 0x8050CB04: aBEE_anime_proc
- 0x8050CB6C: aBEE_fly_move_common
- 0x8050D060: aBEE_calc_fly_angle
- 0x8050D1B0: aBEE_appear
- 0x8050D26C: aBEE_fly
- 0x8050D4A0: aBEE_caught
- 0x8050D590: aBEE_attack_wait
- 0x8050D63C: aBEE_attack
- 0x8050D6C4: aBEE_disappear
- 0x8050D734: aBEE_appear_init
- 0x8050D774: aBEE_fly_init
- 0x8050D780: aBEE_caught_init
- 0x8050D78C: aBEE_disappear_init
- 0x8050D7A8: aBEE_setupAction
- 0x8050D7F4: aBEE_actor_move
- 0x8050D92C: aBEE_actor_draw
- 0x8050DAC4: aFSN_actor_ct
- 0x8050DBEC: aFSN_actor_dt
- 0x8050DC20: aFSN_birth
- 0x8050DC44: aFSN_moving
- 0x8050E2F4: aFSN_wood_stop
- 0x8050E768: aFSN_escape
- 0x8050E890: aFSN_birth_init
- 0x8050EAA0: aFSN_moving_init
- 0x8050EAAC: aFSN_wood_stop_init
- 0x8050EAEC: aFSN_escape_init
- 0x8050EC08: aFSN_setupAction
- 0x8050EC50: aFSN_actor_move
- 0x8050EDA8: aFSN_actor_draw_before
- 0x8050EE90: aFSN_actor_draw
- 0x8050F06C: mMck_strlen
- 0x8050F0A0: mMck_cmp_sep
- 0x8050F104: mMck_search_sep
- 0x8050F170: mMck_next_key
- 0x8050F178: mMck_cmp_key
- 0x8050F224: mMck_check_key_hit
- 0x8050F2DC: mMck_cmp_sep_nes
- 0x8050F314: mMck_strlen_new
- 0x8050F34C: mMck_check_alpha
- 0x8050F388: mMck_check_eof
- 0x8050F3D4: mMck_check_key_get_hit_count
- 0x8050F468: mMck_check_key_type_A
- 0x8050F52C: mMck_check_key_type_B
- 0x8050F550: mMck_check_key_type_C
- 0x8050F5B8: mMck_check_key_type_D
- 0x8050F654: mMck_check_key_type_E
- 0x8050F6AC: mMck_check_key_type_F
- 0x8050F750: mMck_check_key_type_G
- 0x8050F7B8: mMck_check_key_hit_nes
- 0x8050F838: Dummy_Actor_ct
- 0x8050F83C: Dummy_Actor_dt
- 0x8050F840: Dummy_Actor_draw
- 0x8050F844: Dummy_Actor_move
- 0x8050F848: mAGrw_ClearSSPosInfo_com
- 0x8050F86C: mAGrw_ClearStonePosInfo
- 0x8050F8AC: mAGrw_ClearShinePosInfo
- 0x8050F8E4: mAGrw_CheckFreeSSPosInfo_com
- 0x8050F90C: mAGrw_ToMoneyStone
- 0x8050F920: mAGrw_ToStone
- 0x8050F934: mAGrw_ClearMoneyStoneShineGround
- 0x8050FA34: mAGrw_ClearAllShine_Stone
- 0x8050FAD4: mAGrw_SetShineGround_player
- 0x8050FBC0: mAGrw_SetMoneyStone_player
- 0x8050FD24: mAGrw_RestoreStoneShine
- 0x8050FD88: mAGrw_CheckMoneyStonePos
- 0x8050FE60: mAGrw_ClearGrowInfo
- 0x8050FE84: mAGrw_GetTreeGrowCond
- 0x8050FE90: mAGrw_ClearAroundBlockInfo
- 0x8050FEAC: mAGrw_SetAroundBlockInfo
- 0x8050FFA8: mAGrw_SetAroundBlockInfoIsland
- 0x8051001C: mAGrw_get_pastDays
- 0x80510088: mAGrw_CheckSpoilKabuTime
- 0x8051010C: mAGrw_CheckFlowerTime
- 0x80510154: aAGrw_GrowFlower
- 0x80510188: mAGrw_GetUpUt
- 0x805101B8: mAGrw_GetDownUt
- 0x805101E4: mAGrw_GetLeftUt
- 0x80510214: mAGrw_GetRightUt
- 0x80510240: mAGrw_KillTree
- 0x80510298: mAGrw_CheckNearTree
- 0x80510648: mAGrw_CheckAppleTree
- 0x80510668: mAGrw_CheckChestnutTree
- 0x80510688: mAGrw_CheckPearTree
- 0x805106A8: mAGrw_CheckPeachTree
- 0x805106C8: mAGrw_CheckOrangeTree
- 0x805106E8: mAGrw_CheckNormalTree
- 0x80510708: mAGrw_CheckMoney
- 0x80510740: mAGrw_CheckPalmTree
- 0x8051076C: mAGrw_CheckCedarTree
- 0x80510798: mAGrw_CheckGoldTree
- 0x805107B8: mAGrw_CheckKillPalmTree
- 0x805107E4: mAGrw_CheckKillCedarTree
- 0x80510810: mAGrw_GrowTree_sub
- 0x80510850: mAGrw_GrowTree
- 0x80510994: mAGrw_GrowPlant_First
- 0x805109E4: mAGrw_GrowPlant
- 0x80510B90: mAGrw_MeltSnowman
- 0x80510BB4: mAGrw_MakeGrassTable
- 0x80510C70: mAGrw_SpoilKabu
- 0x80510CC4: mAGrw_ClearSpoiledKabu
- 0x80510CE8: mAGrw_ClearShineGround
- 0x80510D0C: mAGrw_RecordCheckItem
- 0x80510D58: mAGrw_RecordHoneycombTree
- 0x80510D94: mAGrw_RecordFtrTree
- 0x80510DD0: mAGrw_RecordDepositFossil
- 0x80510E34: mAGrw_CheckChangeTree
- 0x80510E70: mAGrw_CheckMoneyTree
- 0x80510EAC: mAGrw_CountMoneyTree
- 0x80510F04: mAGrw_CheckMoneyStone
- 0x80510F34: mAGrw_GetChangeAbleTreeNum2
- 0x80511070: mAGrw_SetTreeBlockLine
- 0x8051119C: mAGrw_SetHoneycombTree
- 0x80511214: mAGrw_SetFtrTree
- 0x80511314: mAGrw_SetMoneyTreeRandom
- 0x805113F0: mAGrw_SetMoneyTree
- 0x805114DC: mAGrw_CountNormalStone
- 0x80511518: mAGrw_SetMoneyStoneBlock
- 0x805115E4: mAGrw_SetMoneyStone_com
- 0x80511720: mAGrw_SetMoneyStone
- 0x805117AC: mAGrw_SetTree0Info
- 0x80511894: mAGrw_ResetTree0Info
- 0x80511958: mAGrw_KillTree0
- 0x80511A98: mAGrw_ThinTree
- 0x80511BC4: mAGrw_CheckCarpTime
- 0x80511C18: mAGrw_SetCarpBlockInfo
- 0x80511CA4: mAGrw_SetCarpInfo
- 0x80511D64: mAGrw_SetCarpBlock
- 0x80511E14: mAGrw_ClearCarpBlock
- 0x80511E7C: mAGrw_KeepReserve
- 0x80512174: mAGrw_SetCarpOnHomeBlock
- 0x80512344: mAGrw_SetEnoughCarp
- 0x805123BC: mAGrw_ClearAllCarp
- 0x80512420: mAGrw_SetCarp
- 0x805124A0: mAGrw_GrowBlockFgItem
- 0x80512660: mAGrw_GrowFieldFgItem
- 0x8051284C: mAGrw_CheckTree000
- 0x805128C4: mAGrw_CheckTree001
- 0x80512954: mAGrw_CheckTree002
- 0x805129E4: mAGrw_CheckTree003
- 0x80512A74: mAGrw_CheckTree004
- 0x80512BE4: mAGrw_LimitTreeLineIsland
- 0x80512E74: mAGr_GrowIslandFgItem
- 0x8051301C: mAGrw_CancelOn
- 0x805130A0: mAGrw_CheckCancel12
- 0x80513184: mAGrw_CheckCancel32
- 0x805132B0: mAGrw_CheckCancel22
- 0x805132E8: mAGrw_CheckCancel36
- 0x80513348: mAGrw_CheckHide36
- 0x80513394: mAGrw_CheckCancelLeft45
- 0x805133C4: mAGrw_CheckCancelRight45
- 0x805133F4: mAGrw_CheckCancel46
- 0x8051342C: mAGrw_CheckCancel23
- 0x80513440: mAGrw_CheckCancel57
- 0x80513454: mAGrw_CheckCancel68
- 0x80513478: mAGrw_CheckCancel77
- 0x8051348C: mAGrw_SetCancelOn
- 0x8051350C: mAGrw_SetblockCancelUtInfo
- 0x8051360C: mAGrw_HideOn
- 0x80513648: mAGrw_SetHideOn
- 0x805136C8: mAGrw_SetHideUtInfo
- 0x80513788: mAGrw_SetCancelUtInfo
- 0x80513810: mAGrw_GetDepositAbleFlatNum
- 0x80513938: mAGrw_SetShineGroundBlock
- 0x80513A98: mAGrw_SetShineGround_com
- 0x80513BF0: mAGrw_SetShineGround
- 0x80513C6C: mAGrw_SetHaniwaBlock
- 0x80513C8C: mAGrw_SetHaniwa
- 0x80513E00: mAGrw_SetDigItem
- 0x80513F78: mAGrw_SpoilPossession
- 0x80513FCC: mAGrw_SpoilAllPossession
- 0x805140E8: mAGrw_CheckClearDumpDay
- 0x805141D8: mAGrw_SearchDump
- 0x8051427C: mAGrw_ClearDumpArea
- 0x80514340: mAGrw_ClearDump
- 0x80514390: mAGrw_GetSetItemDump
- 0x8051441C: mAGrw_SetItemDumpBlock
- 0x8051451C: mAGrw_SetItemDump
- 0x805145CC: mAGrw_GetGrassMax
- 0x80514650: mAGrw_GetChangeAbleGrass
- 0x805147C0: mAGrw_PutGrassBlock
- 0x8051497C: mAGrw_SetGrass
- 0x80514B98: mAGrw_ClearGrass
- 0x80514BF0: mAGrw_AllMeltSnowman
- 0x80514C60: mAgrw_ZuruSpoilKabuBlockFgItem
- 0x80514D74: mAGrw_ZuruSpoilKabuFieldFgItem
- 0x80514E10: mAGrw_ZuruSpoilKabuIslandFgItem
- 0x80514EA4: mAGrw_ZuruSpoilKabu
- 0x80514F20: mAGrw_SpoilKabuIslandCottage
- 0x80514F78: mAGrw_SpoilKabuIsland
- 0x80514FAC: mAGrw_RenewalFgItem_ovl
- 0x80515340: aAPC_actor_ct
- 0x805153F0: aAPC_actor_dt
- 0x8051542C: aAPC_get_data_idx
- 0x80515464: aAPC_talk_chk_proc
- 0x805154EC: aAPC_talk_set_proc
- 0x80515544: aAPC_get_msg_num_proc
- 0x805155C8: aGHC_actor_ct
- 0x80515690: aGHC_actor_dt
- 0x805156CC: aGHC_get_now_term
- 0x80515734: aGHC_search_soncho
- 0x80515790: aGHC_set_attention_request
- 0x80515828: aGHC_before_800
- 0x805158C8: aGHC_birth_reset_wait
- 0x80515904: aGHC_birth_reset
- 0x80515A14: aGHC_reset_speech_bgm_start_wait
- 0x80515A6C: aGHC_retire_reset_wait
- 0x80515AD0: aGHC_soncho_speech_start_wait
- 0x80515B0C: aGHC_soncho_speech_end_wait
- 0x80515B44: aGHC_fade_out_start_wait
- 0x80515BB4: aGHC_setupAction
- 0x80515BD0: aGHC_actor_move
- 0x80515C48: aMSC_actor_ct
- 0x80515C6C: aMSC_menu_open_wait
- 0x80515D80: aMSC_menu_close_wait
- 0x80515DC0: aMSC_set_force_talk_info_talk_request
- 0x80515DFC: aMSC_request_force_talk
- 0x80515E6C: aMSC_select_read_prg_or_data
- 0x80515F34: aMSC_check_connect_agb_start_wait
- 0x80515FC8: aMSC_check_connect_agb_end_wait
- 0x8051609C: aMSC_read_data
- 0x80516178: aMSC_send_prg
- 0x8051623C: aMSC_select_read_data_or_not
- 0x805162F8: aMSC_force_menu_open_wait
- 0x80516388: aMSC_talk_end_wait
- 0x805163D0: aMSC_setupAction
- 0x805163EC: aMSC_actor_move
- 0x80516414: aCD0_actor_ct
- 0x80516498: aCD0_actor_save
- 0x805164D0: aCD0_actor_dt
- 0x80516508: aCD0_actor_init
- 0x80516540: aCD0_actor_move
- 0x80516578: aCD0_actor_draw
- 0x805165B0: aCD0_set_animation
- 0x805165FC: aCD0_set_request_act
- 0x80516618: aCD0_before_wait
- 0x80516648: aCD0_freeze_pl_wait
- 0x80516680: aCD0_talk_after_turn
- 0x80516700: aCD0_setupAction
- 0x80516740: aCD0_act_chg_data_proc
- 0x8051674C: aCD0_act_init_proc
- 0x805167C4: aCD0_act_main_proc
- 0x805167EC: aCD0_act_proc
- 0x80516820: aCD0_get_now_term
- 0x805168B0: aCD0_set_term
- 0x80516A1C: aCD0_think_main_proc
- 0x80516A50: aCD0_think_init_proc
- 0x80516A84: aCD0_think_proc
- 0x80516AB8: aCD0_schedule_init_proc
- 0x80516BF4: aCD0_schedule_main_proc
- 0x80516C74: aCD0_schedule_proc
- 0x80516CA8: aCD0_set_free_str_year
- 0x80516CF8: aCD0_set_free_str_min
- 0x80516D60: aCD0_set_free_str
- 0x80516DAC: aCD0_set_force_talk_info
- 0x80516E24: aCD0_force_talk_request
- 0x80516E54: aCD0_set_norm_talk_info
- 0x80516EF0: aCD0_norm_talk_request
- 0x80516F20: aCD0_talk_init
- 0x80516FB8: aCD0_talk_end_chk
- 0x8051704C: aCD1_actor_ct
- 0x805170D0: aCD1_actor_save
- 0x80517108: aCD1_actor_dt
- 0x80517140: aCD1_actor_init
- 0x80517178: aCD1_actor_move
- 0x805171B0: aCD1_actor_draw
- 0x805171E8: aCD1_set_animation
- 0x80517234: aCD1_set_request_act
- 0x80517250: aCD1_make_cracker
- 0x805172C4: aCD1_check_moveRange
- 0x80517304: aCD1_check_inBlock
- 0x80517398: aCD1_revise_moveRange
- 0x805174FC: aCD1_before_wait
- 0x8051752C: aCD1_before_run
- 0x8051759C: aCD1_before_turn
- 0x805175F8: aCD1_front_turn
- 0x8051764C: aCD1_front_wait
- 0x805176CC: aCD1_count_wait
- 0x80517704: aCD1_fire
- 0x805177E8: aCD1_clap
- 0x80517840: aCD1_set_spd_info
- 0x805178B4: aCD1_setupAction
- 0x80517918: aCD1_act_chg_data_proc
- 0x80517924: aCD1_act_main_proc
- 0x8051794C: aCD1_act_proc
- 0x80517980: aCD1_get_now_term
- 0x80517A00: aCD1_get_next_move_act
- 0x80517B20: aCD1_decide_demo_flg
- 0x80517BAC: aCD1_think_main_proc
- 0x80517D28: aCD1_think_init_proc
- 0x80517D74: aCD1_think_proc
- 0x80517DA8: aCD1_schedule_init_proc
- 0x80517E9C: aCD1_schedule_main_proc
- 0x80517F28: aCD1_schedule_proc
- 0x80517F5C: aCD1_set_free_str_year
- 0x80517FAC: aCD1_set_free_str_min
- 0x80518014: aCD1_set_free_str
- 0x80518060: aCD1_set_talk_info
- 0x805180EC: aCD1_talk_request
- 0x8051811C: aCD1_talk_init
- 0x80518158: aCD1_talk_end_chk
- 0x8051819C: aEANG_actor_ct
- 0x80518258: aEANG_actor_save
- 0x80518290: aEANG_actor_dt
- 0x805182DC: aEANG_actor_init
- 0x80518314: aEANG_actor_draw
- 0x8051834C: time_over_check
- 0x805183F4: get_fish_common_area
- 0x80518454: fish_save_area_ct
- 0x80518584: fish_save_area_dt
- 0x80518628: entry_check
- 0x8051868C: entry_on
- 0x80518774: set_top_of_angler_size
- 0x805187A4: now_top_check
- 0x805187DC: aEANG_item_check
- 0x80518824: aEANG_SelectRandomItem
- 0x805188A4: get_message_number_fish_zannen
- 0x80518924: get_message_number_fish_omedeto
- 0x8051896C: aEANG_demo_measure
- 0x80518AE0: aEANG_demo_houbi
- 0x80518B74: aEANG_demo_henkyaku
- 0x80518C14: aEANG_demo_give_me
- 0x80518CC4: aEANG_say_tureta
- 0x80518D9C: aEANG_menu_open_wait
- 0x80518DF8: aEANG_menu_close_wait
- 0x80518E30: aEANG_msg_win_open_wait
- 0x80518F80: aEANG_msg_to_menu
- 0x80518FF4: aEANG_menu_open_wait_init
- 0x80519018: aEANG_menu_close_wait_init
- 0x80519050: aEANG_msg_win_open_wait_init
- 0x80519088: aEANG_demo_measure_init
- 0x8051912C: aEANG_init_proc
- 0x80519160: aEANG_setupAction
- 0x80519194: aEANG_set_talk_info
- 0x805191E0: aEANG_talk_request
- 0x80519210: aEANG_talk_init
- 0x80519294: aEANG_talk_end_chk
- 0x8051938C: aEANG_actor_move
- 0x805193C4: aEART_actor_ct
- 0x80519448: aEART_actor_save
- 0x80519480: aEART_actor_dt
- 0x805194F0: aEART_actor_init
- 0x80519528: aEART_actor_draw
- 0x80519560: aEART_check_present
- 0x805195F4: aEART_item_check
- 0x8051964C: aEART_say_hungry
- 0x805196F4: aEART_menu_open_wait
- 0x80519750: aEART_menu_close_wait
- 0x80519788: aEART_msg_win_open_wait
- 0x8051988C: aEART_demo_start_wait
- 0x8051992C: aEART_refuse_demo_start_wait
- 0x805199DC: aEART_refuse_demo_end_wait
- 0x80519A24: aEART_menu_open_wait_init
- 0x80519A48: aEART_menu_close_wait_init
- 0x80519A78: aEART_msg_win_open_wait_init
- 0x80519AB0: aEART_demo_start_wait_init
- 0x80519B88: aEART_init_proc
- 0x80519BBC: aEART_setupAction
- 0x80519BF0: aEART_set_talk_info_talk_request
- 0x80519C24: aEART_talk_request
- 0x80519C54: aEART_talk_init
- 0x80519CB4: aEART_talk_end_chk
- 0x80519D14: aEART_actor_move
- 0x80519D4C: aEBRK_actor_ct
- 0x80519E4C: aEBRK_actor_save
- 0x80519E84: aEBRK_actor_dt
- 0x80519EE8: aEBRK_actor_init
- 0x80519F20: aEBRK_set_animation
- 0x80519F6C: aEBRK_actor_draw
- 0x80519FA4: aEBRK_set_request_act
- 0x80519FC0: aEBRK_set_pl_talk_lock
- 0x8051A01C: aEBRK_check_start_around_sub
- 0x8051A074: aEBRK_check_start_around
- 0x8051A128: aEBRK_check_tent
- 0x8051A1A0: aEBRK_get_sell_item_sum
- 0x8051A1D8: aEBRK_check_pl_list
- 0x8051A250: aEBRK_talk_wait
- 0x8051A2DC: aEBRK_turn
- 0x8051A2F8: aEBRK_enter
- 0x8051A320: aEBRK_set_spd_info
- 0x8051A364: aEBRK_setupAction
- 0x8051A3C8: aEBRK_act_chg_data_proc
- 0x8051A3D4: aEBRK_act_init_proc
- 0x8051A400: aEBRK_act_main_proc
- 0x8051A428: aEBRK_act_proc
- 0x8051A45C: aEBRK_think_main_proc
- 0x8051A53C: aEBRK_think_init_proc
- 0x8051A570: aEBRK_think_proc
- 0x8051A5A4: aEBRK_schedule_init_proc
- 0x8051A5F0: aEBRK_schedule_main_proc
- 0x8051A670: aEBRK_schedule_proc
- 0x8051A6A4: aEBRK_set_talk_info_talk_request
- 0x8051A780: aEBRK_talk_request
- 0x8051A7B0: aEBRK_talk_init
- 0x8051A7E0: aEBRK_talk_end_chk
- 0x8051A824: aEBRK_actor_move
- 0x8051A880: aEBR2_actor_ct
- 0x8051A95C: aEBR2_actor_save
- 0x8051A994: aEBR2_actor_dt
- 0x8051A9E0: aEBR2_actor_init
- 0x8051AA18: aEBR2_actor_draw
- 0x8051AA50: aEBR2_BGcheck
- 0x8051AA94: aEBR2_set_animation
- 0x8051AAE0: aEBR2_Set_ListenAble
- 0x8051AB04: aEBR2_talk_demo_proc
- 0x8051AB74: aEBR2_set_msg_data_price
- 0x8051ABC8: aEBR2_set_msg_data_item_name
- 0x8051AC2C: aEBR2_set_msg_data_sub
- 0x8051AC7C: aEBR2_set_msg_data
- 0x8051AD38: aEBR2_get_item_idx
- 0x8051AD78: aEBR2_set_stop_spd
- 0x8051AD94: aEBR2_set_walk_spd
- 0x8051ADC0: aEBR2_set_run_spd
- 0x8051ADEC: aEBR2_get_zone
- 0x8051ADF4: aEBR2_get_next_zone
- 0x8051ADFC: aEBR2_decide_next_move_act
- 0x8051AEE8: aEBR2_search_player
- 0x8051AF68: aEBR2_search_player2
- 0x8051B040: aEBR2_set_zone_data
- 0x8051B0C4: aEBR2_set_player_angl
- 0x8051B0D0: aEBR2_set_talk_info_sell_item
- 0x8051B180: aEBR2_set_talk_info_message_ctrl
- 0x8051B23C: aEBR2_message_ctrl
- 0x8051B3F8: aEBR2_wait
- 0x8051B46C: aEBR2_walk_pl_same_zone
- 0x8051B4E0: aEBR2_walk_pl_other_zone
- 0x8051B554: aEBR2_run_pl_same_zone
- 0x8051B5C8: aEBR2_run_pl_other_zone
- 0x8051B63C: aEBR2_turn
- 0x8051B6D0: aEBR2_talk_end_wait
- 0x8051B72C: aEBR2_set_talk_info_say_hello
- 0x8051B750: aEBR2_say_hello
- 0x8051B7CC: aEBR2_sell_check
- 0x8051B880: aEBR2_sell_after
- 0x8051BA14: aEBR2_set_talk_info_goodbye_wait
- 0x8051BA50: aEBR2_goodbye_wait
- 0x8051BAC4: aEBR2_say_goodbye
- 0x8051BB1C: aEBR2_exit_wait
- 0x8051BB90: aEBR2_say_hello_init
- 0x8051BBE0: aEBR2_say_goodbye_init
- 0x8051BC18: aEBR2_init_proc
- 0x8051BC4C: aEBR2_setupAction
- 0x8051BCA8: aEBR2_actor_move
- 0x8051BD60: aECPD_actor_ct
- 0x8051BDE4: aECPD_actor_save
- 0x8051BE1C: aECPD_actor_dt
- 0x8051BE6C: aECPD_actor_init
- 0x8051BEA4: aECPD_actor_draw
- 0x8051BEDC: aECPD_check_possession
- 0x8051BF2C: aECPD_msg_win_open_wait
- 0x8051BF88: aECPD_demo_start_wait
- 0x8051C000: aECPD_1st_check
- 0x8051C094: aECPD_2nd_check
- 0x8051C180: aECPD_grad_message
- 0x8051C200: aECPD_menu_open_wait
- 0x8051C25C: aECPD_menu_close_wait
- 0x8051C308: aECPD_demo0_end_wait
- 0x8051C3F4: aECPD_demo1_end_wait
- 0x8051C444: aECPD_demo2_start_wait
- 0x8051C4D8: aECPD_demo2_start_check
- 0x8051C520: aECPD_demo2_end_wait
- 0x8051C59C: aECPD_refuse_trade_in
- 0x8051C64C: aECPD_refuse_trade_in_end_wait
- 0x8051C6C4: aECPD_msg_win_open_wait_init
- 0x8051C6E8: aECPD_1st_check_init
- 0x8051C7D4: aECPD_grad_message_init
- 0x8051C7F8: aECPD_menu_open_wait_init
- 0x8051C81C: aECPD_menu_close_wait_init
- 0x8051C854: aECPD_demo0_end_wait_init
- 0x8051C8E8: aECPD_demo2_start_check_init
- 0x8051C90C: aECPD_refuse_trade_in_init
- 0x8051C934: aECPD_init_proc
- 0x8051C968: aECPD_setupAction
- 0x8051C99C: aECPD_set_talk_info
- 0x8051C9C0: aECPD_talk_request
- 0x8051C9F0: aECPD_talk_init
- 0x8051CA24: aECPD_talk_end_chk
- 0x8051CA8C: aECPD_actor_move
- 0x8051CAC4: aECST_actor_ct
- 0x8051CBDC: aECST_actor_save
- 0x8051CC14: aECST_actor_dt
- 0x8051CC4C: aECST_actor_init
- 0x8051CC84: aECST_schedule_main_proc
- 0x8051CCD0: aECST_schedule_proc
- 0x8051CD04: aECST_actor_move
- 0x8051CD94: aECST_actor_draw
- 0x8051CDCC: aEDSN_actor_ct
- 0x8051CE58: aEDSN_actor_save
- 0x8051CE90: aEDSN_actor_dt
- 0x8051CF1C: aEDSN_actor_init
- 0x8051CF54: aEDSN_actor_draw
- 0x8051CF8C: aEDSN_set_request_act
- 0x8051D020: aEDSN_check_s_car
- 0x8051D098: aEDSN_actor_move
- 0x8051D0F4: aEDSN_set_pl_talk_lock
- 0x8051D150: aEDSN_check_present
- 0x8051D1C4: aEDSN_get_msg_no
- 0x8051D1E4: aEDSN_inventory_check_talk_proc
- 0x8051D2F4: aEDSN_close_umb_end_wait_talk_proc
- 0x8051D3A0: aEDSN_check_result_talk_proc
- 0x8051D4EC: aEDSN_demo_start_wait_talk_proc
- 0x8051D58C: aEDSN_demo_end_wait_talk_proc
- 0x8051D654: aEDSN_talk_end_wait_talk_proc
- 0x8051D680: aEDSN_change_talk_proc
- 0x8051D698: aEDSN_set_force_talk_info
- 0x8051D728: aEDSN_force_talk_request
- 0x8051D758: aEDSN_set_norm_talk_info
- 0x8051D8F8: aEDSN_norm_talk_request
- 0x8051D928: aEDSN_talk_init
- 0x8051D958: aEDSN_talk_end_chk
- 0x8051D9DC: aEDSN_talk_start_wait
- 0x8051DA84: aEDSN_game_start_call_wait
- 0x8051DB18: aEDSN_game_end_wait
- 0x8051DC74: aEDSN_think_main_proc
- 0x8051DC9C: aEDSN_think_init_proc
- 0x8051DD30: aEDSN_talk_start_wait_init
- 0x8051DD64: aEDSN_game_start_call_wait_init
- 0x8051DDA4: aEDSN_game_end_wait_init
- 0x8051DDCC: aEDSN_game_end_call_init
- 0x8051DE2C: aEDSN_setup_think_proc
- 0x8051DE88: aEDSN_think_proc
- 0x8051DEBC: aEDSN_schedule_init_proc
- 0x8051DF40: aEDSN_schedule_main_proc
- 0x8051DFC0: aEDSN_schedule_proc
- 0x8051DFF4: aEVD_actor_ct
- 0x8051E06C: aEVD_actor_save
- 0x8051E08C: aEVD_actor_dt
- 0x8051E0C4: aEVD_actor_init
- 0x8051E0FC: aEVD_actor_move
- 0x8051E134: aEVD_actor_draw
- 0x8051E16C: aEVD_set_talk_info
- 0x8051E190: aEVD_talk_request
- 0x8051E1C0: aEVD_talk_init
- 0x8051E1E4: aEVD_talk_end_chk
- 0x8051E228: aEDZ_actor_ct
- 0x8051E3C4: aEDZ_actor_save
- 0x8051E3E4: aEDZ_actor_dt
- 0x8051E45C: aEDZ_actor_init
- 0x8051E494: aEDZ_set_request_act
- 0x8051E528: aEDZ_actor_move
- 0x8051E560: aEDZ_actor_draw
- 0x8051E598: aEDZ_to_ageru
- 0x8051E644: aEDZ_to_ageru2
- 0x8051E6E8: aEDZ_ageru
- 0x8051E784: aEDZ_talk_stop_player
- 0x8051E810: aEDZ_talk_okiagaru
- 0x8051E850: aEDZ_talk_give
- 0x8051E920: aEDZ_change_talk_proc
- 0x8051E93C: aEDZ_set_force_talk_info
- 0x8051E9E0: aEDZ_force_talk_request
- 0x8051EA28: aEDZ_set_norm_talk_info
- 0x8051EAD4: aEDZ_norm_talk_request
- 0x8051EB1C: aEDZ_set_wander_talk_info
- 0x8051EBB8: aEDZ_wander_talk_request
- 0x8051EBE8: aEDZ_talk_init
- 0x8051EC2C: aEDZ_talk_end_chk
- 0x8051ECC8: aEDZ_anime_next
- 0x8051ED28: aEDZ_think_main_proc
- 0x8051ED50: aEDZ_think_init_proc
- 0x8051ED84: aEDZ_normal_wait_init
- 0x8051EDBC: aEDZ_taoreru_init
- 0x8051EE40: aEDZ_okiagaru_init
- 0x8051EED0: aEDZ_wander_init
- 0x8051EF24: aEDZ_setup_think_proc
- 0x8051EFC0: aEDZ_think_proc
- 0x8051F000: aEDZ_schedule_init_proc
- 0x8051F04C: aEDZ_schedule_main_proc
- 0x8051F0CC: aEDZ_schedule_proc
- 0x8051F10C: aEGH_actor_ct
- 0x8051F31C: aEGH_actor_save
- 0x8051F33C: aEGH_actor_dt
- 0x8051F3A0: aEGH_actor_init
- 0x8051F3D8: aEGH_set_request_act
- 0x8051F46C: aEGH_actor_move
- 0x8051F620: aEGH_actor_draw
- 0x8051F698: aEGH_hitodama_num
- 0x8051F70C: aEGH_okoruhito
- 0x8051F764: aEGH_delete_hitodama
- 0x8051F7FC: aEGH_get_collect
- 0x8051F86C: aEGH_check_collect_num
- 0x8051F8EC: aEGH_not_collect_get
- 0x8051FAA8: aEGH_give_me_wait
- 0x8051FB8C: aEGH_select_wait
- 0x8051FD30: aEGH_select_roof
- 0x8051FE40: aEGH_give_you_wait
- 0x8051FEE4: aEGH_set_force_talk_info
- 0x80520008: aEGH_force_talk_request
- 0x805200B0: aEGH_set_norm_talk_info
- 0x80520164: aEGH_norm_talk_request
- 0x805201AC: aEGH_talk_init
- 0x805201F0: aEGH_talk_end_chk
- 0x805202BC: aEGH_look_player
- 0x80520328: aEGH_bitset_func
- 0x805203D4: aEGH_bitclr_func
- 0x80520480: aEGH_bitcheck_func
- 0x80520524: aEGH_equal_block
- 0x805205AC: aEGH_time_over
- 0x805205D8: aEGH_byebye_check
- 0x805206D0: aEGH_irai
- 0x80520708: aEGH_bye
- 0x80520740: aEGH_byebye
- 0x80520818: aEGH_speak_byebye
- 0x80520898: aEGH_think_main_proc
- 0x805208E4: aEGH_think_init_proc
- 0x80520980: aEGH_normal_wait_init
- 0x805209FC: aEGH_irai_init
- 0x80520A3C: aEGH_irai_af_init
- 0x80520AA0: aEGH_bye_init
- 0x80520AE0: aEGH_welcom_init
- 0x80520B20: aEGH_byebye_init
- 0x80520B90: aEGH_setup_think_proc
- 0x80520C2C: aEGH_think_proc
- 0x80520C6C: aEGH_schedule_init_proc
- 0x80520CB8: aEGH_schedule_main_proc
- 0x80520D38: aEGH_schedule_proc
- 0x80520D78: aEGPS_actor_ct
- 0x80520E28: aEGPS_actor_save
- 0x80520E60: aEGPS_actor_dt
- 0x80520EB0: aEGPS_actor_init
- 0x80520EE8: aEGPS_actor_draw
- 0x80520F20: aEGPS_set_string
- 0x80520F98: aEGPS_call_in
- 0x80521074: aEGPS_decide_result
- 0x80521190: aEGPS_decide_result_init
- 0x805211FC: aEGPS_init_proc
- 0x80521230: aEGPS_setupAction
- 0x80521268: aEGPS_set_talk_info
- 0x805212C4: aEGPS_talk_request
- 0x805212F4: aEGPS_talk_init
- 0x80521348: aEGPS_talk_end_chk
- 0x805213A4: aEGPS_actor_move
- 0x80521414: aEKPD_actor_ct
- 0x80521498: aEKPD_actor_save
- 0x805214D0: aEKPD_actor_dt
- 0x80521520: aEKPD_actor_init
- 0x80521558: aEKPD_actor_draw
- 0x80521590: aEKPD_check_look
- 0x805215EC: aEKPD_set_price_str_sub
- 0x80521648: aEKPD_set_price_str
- 0x805216B4: aEKPD_get_trans_space_idx
- 0x805216E8: aEKPD_hand_over_kabu
- 0x80521730: aEKPD_sell_check
- 0x80521814: aEKPD_sell_check_after
- 0x80521924: aEKPD_money_get_demo_start_wait
- 0x8052199C: aEKPD_money_get_demo_end_wait
- 0x80521A0C: aEKPD_kabu_trans_demo_start_wait
- 0x80521A70: aEKPD_sell_check_init
- 0x80521AA0: aEKPD_sell_check2_init
- 0x80521AF8: aEKPD_money_get_demo_start_wait_init
- 0x80521B40: aEKPD_init_proc
- 0x80521B74: aEKPD_setupAction
- 0x80521BAC: aEKPD_set_talk_info
- 0x80521BE0: aEKPD_talk_request
- 0x80521C10: aEKPD_talk_init
- 0x80521C94: aEKPD_talk_end_chk
- 0x80521CFC: aEKPD_actor_move
- 0x80521D34: aEMK_actor_ct
- 0x80521E50: aEMK_actor_save
- 0x80521E88: aEMK_actor_dt
- 0x80521ED8: aEMK_actor_init
- 0x80521F10: aEMK_actor_draw
- 0x80521F48: aEMK_set_request_act
- 0x80521FDC: aEMK_mail_free_space
- 0x80522030: aEMK_get_omikuji
- 0x80522180: aEMK_talk_select
- 0x80522264: aEMK_talk_omikuji
- 0x8052231C: aEMK_talk_give
- 0x80522428: aEMK_talk_omikuji_init
- 0x80522470: aEMK_init_proc
- 0x805224A4: aEMK_setupAction
- 0x805224DC: aEMK_set_talk_info
- 0x80522510: aEMK_talk_request
- 0x8052254C: aEMK_talk_init
- 0x80522578: aEMK_talk_end_chk
- 0x80522658: aEMK_actor_move
- 0x805226CC: aEPK_actor_ct
- 0x80522770: aEPK_actor_save
- 0x805227A8: aEPK_actor_dt
- 0x805227F8: aEPK_actor_init
- 0x80522830: aEPK_actor_move
- 0x80522868: aEPK_actor_draw
- 0x805228A0: aEPK_get_trick_type
- 0x80522A48: aEPK_restart_msg_win
- 0x80522AA0: aEPK_decide_present
- 0x80522B40: aEPK_first_call_talk_proc
- 0x80522B80: aEPK_trick_or_treat_talk_proc
- 0x80522C1C: aEPK_menu_open_wait_talk_proc
- 0x80522C8C: aEPK_menu_close_wait_talk_proc
- 0x80522D7C: aEPK_get_other_item_wait_talk_proc
- 0x80522E1C: aEPK_receive_tool_item_start_wait_talk_proc
- 0x80522EA0: aEPK_receive_tool_item_end_wait_talk_proc
- 0x80522F0C: aEPK_trick_timing_wait_talk_proc
- 0x80522F90: aEPK_trick_chg_cloth_talk_proc
- 0x80522FF8: aEPK_trick_chg_cloth_end_wait_talk_proc
- 0x80523064: aEPK_get_ame_wait_talk_proc
- 0x805230D4: aEPK_get_ame_talk_proc
- 0x8052312C: aEPK_give_a_present_demo_start_wait_talk_proc
- 0x805231E8: aEPK_give_a_present_demo_end_wait_talk_proc
- 0x80523258: aEPK_pl_demo_code_end_wait_talk_proc
- 0x805232C8: aEPK_change_talk_proc
- 0x805232E0: aEPK_set_talk_info
- 0x805233A8: aEPK_talk_request
- 0x805233D8: aEPK_talk_init
- 0x805233FC: aEPK_talk_end_chk
- 0x80523498: aESNT_actor_ct
- 0x80523578: aESNT_actor_save
- 0x805235B0: aESNT_actor_dt
- 0x80523600: aESNT_actor_init
- 0x80523638: aESNT_actor_draw
- 0x80523670: aESNT_chk_wish_1st
- 0x8052370C: aESNT_chk_wish_final
- 0x8052379C: aESNT_chk_wish_more
- 0x80523864: aESNT_motion_start_wait
- 0x805238C8: aESNT_chk_wish_more_init
- 0x805238F4: aESNT_motion_end_wait_init
- 0x80523940: aESNT_init_proc
- 0x80523974: aESNT_setupAction
- 0x805239AC: aESNT_check_pl_cloth
- 0x805239F8: aESNT_before_talk_present_decide_talk_data_idx
- 0x80523B18: aESNT_before_talk_more_check_decide_talk_data_idx
- 0x80523B7C: aESNT_before_talk_decide_talk_data_idx
- 0x80523C44: aESNT_after_talk_restart_Q_decide_talk_data_idx
- 0x80523C70: aESNT_after_talk_same_pl_decide_talk_data_idx
- 0x80523D70: aESNT_after_talk_other_pl_decide_talk_data_idx
- 0x80523DCC: aESNT_after_talk_decide_talk_data_idx
- 0x80523E40: aESNT_getP_talk_data
- 0x80523ECC: aESNT_set_talk_info
- 0x80523F10: aESNT_talk_request
- 0x80523F40: aESNT_talk_init
- 0x80523F78: aESNT_talk_end_chk
- 0x80523FD4: aESNT_actor_move
- 0x8052400C: aESC_actor_ct
- 0x8052410C: aESC_actor_save
- 0x80524144: aESC_actor_dt
- 0x805241A8: aESC_actor_init
- 0x805241E0: aESC_actor_draw
- 0x80524218: aESC_bitset_func
- 0x80524250: aESC_bitcheck_func
- 0x80524280: aESC_owari_message
- 0x80524324: aESC_set_day
- 0x80524398: aESC_talk_select
- 0x805244C4: aESC_talk_secand
- 0x80524534: aESC_time_talk
- 0x80524598: aESC_set_talk_info_talk_request
- 0x80524660: aESC_talk_request
- 0x80524690: aESC_talk_init
- 0x805246B8: aESC_talk_end_chk
- 0x80524724: aESC_actor_move
- 0x8052475C: aES2_actor_ct
- 0x8052486C: aES2_actor_save
- 0x8052488C: aES2_actor_dt
- 0x805248E8: aES2_actor_init
- 0x80524920: aES2_set_request_act
- 0x805249B4: aES2_actor_move
- 0x805249EC: aES2_actor_draw
- 0x80524A24: aES2_kinenhin_msg
- 0x80524A48: aES2_LightHouse_set_free_str
- 0x80524AEC: aES2_talk_before_give
- 0x80524BA0: aES2_talk_give
- 0x80524C4C: aES2_change_talk_proc
- 0x80524C58: aES2_set_norm_talk_info
- 0x80524E68: aES2_norm_talk_request
- 0x80524EB0: aES2_talk_init
- 0x80524F54: aES2_talk_end_chk
- 0x80525000: aES2_set_move_pos
- 0x80525098: aES2_wait
- 0x805251D8: aES2_look_runner
- 0x80525240: aES2_bskt_birth
- 0x805252A4: aES2_bskt_turn_next
- 0x805252E8: aES2_bskt_move_next
- 0x80525380: aES2_bskt_timer_next
- 0x805253D8: aES2_tug_of_war
- 0x8052543C: aES2_think_main_proc
- 0x80525470: aES2_think_init_proc
- 0x805254A4: aES2_normal_wait_init
- 0x805254DC: aES2_wander_init
- 0x8052552C: aES2_bskt_turn_init
- 0x80525578: aES2_bskt_move_init
- 0x805255B8: aES2_force_wait_init
- 0x805255E0: aES2_tug_of_war_init
- 0x805256BC: aES2_setup_think_proc
- 0x80525758: aES2_think_proc
- 0x80525798: aES2_schedule_init_proc
- 0x805257E4: aES2_schedule_main_proc
- 0x80525864: aES2_schedule_proc
- 0x805258A4: aESS_actor_ct
- 0x80525944: aESS_actor_save
- 0x8052597C: aESS_actor_dt
- 0x805259B4: aESS_actor_init
- 0x805259EC: aESS_actor_move
- 0x80525A64: aESS_actor_draw
- 0x80525A9C: aESS_set_request_act
- 0x80525AB8: aESS_act_init_proc
- 0x80525AC4: aESS_act_proc
- 0x80525AF8: aESS_speech_start_wait
- 0x80525B34: aESS_think_main_proc
- 0x80525BE8: aESS_think_init_proc
- 0x80525C98: aESS_setup_think_proc
- 0x80525CD0: aESS_think_proc
- 0x80525D04: aESS_schedule_init_proc
- 0x80525DDC: aESS_schedule_main_proc
- 0x80525E5C: aESS_schedule_proc
- 0x80525E90: aESS_set_norm_talk_info
- 0x80525F78: aESS_norm_talk_request
- 0x80525FA8: aESS_set_force_talk_info
- 0x80525FD4: aESS_force_talk_request
- 0x80526004: aESS_talk_init
- 0x80526034: aESS_norm_talk_end_chk
- 0x805260D0: aESS_force_talk_end_chk
- 0x80526140: aEYMS_actor_ct
- 0x805262F0: aEYMS_actor_save
- 0x80526328: aEYMS_actor_dt
- 0x805263A0: aEYMS_actor_init
- 0x805263D8: aEYMS_actor_draw
- 0x80526410: get_yomise_save_area
- 0x80526438: aYMS_check_goods_cnt
- 0x80526498: setUp_yomise_goods
- 0x80526540: yomise_save_area_ct
- 0x8052657C: aEYMS_set_choise_data
- 0x80526720: aNSM_set_item_value_str
- 0x8052677C: aYMS_make_utiwa
- 0x805267F0: aEYMS_to_talk_buy
- 0x80526860: get_now_select_goods_idx
- 0x805268F0: aEYMS_talk_give
- 0x805269A4: aEYMS_talk_add_action
- 0x805269EC: aEYMS_talk_fruit
- 0x80526B8C: aEYMS_talk_select2
- 0x80526C30: aEYMS_talk_select
- 0x80526CD0: aEYMS_set_talk_info
- 0x80526D70: aEYMS_talk_request
- 0x80526DE8: aEYMS_talk_init
- 0x80526E14: aEYMS_talk_end_chk
- 0x80526ED0: aEYMS_actor_move
- 0x80526F2C: aEYMS_setupAction
- 0x80526F48: aGHN_actor_ct
- 0x80526FE0: aGHN_actor_dt
- 0x80527030: aGHN_actor_save
- 0x80527068: aGHN_actor_init
- 0x805270A0: aGHN_actor_draw
- 0x805270D8: aGHN_set_free_str
- 0x8052715C: aGHN_set_talk_info
- 0x805271D0: aGHN_talk_request
- 0x80527200: aGHN_talk_init
- 0x8052725C: aGHN_talk_end_chk
- 0x805272A0: aGHN_actor_move
- 0x805272D8: aHWN_actor_ct
- 0x80527364: aHWN_actor_dt
- 0x8052739C: aHWN_actor_save
- 0x805273D4: aHWN_actor_init
- 0x8052740C: aHWN_actor_draw
- 0x80527444: aHWN_set_request_act
- 0x805274E0: aHWN_actor_move
- 0x80527518: aHWN_get_trick_type
- 0x805276C0: aHWN_restart_msg_win
- 0x80527734: aHWN_first_call_talk_proc
- 0x80527790: aHWN_trick_or_treat_talk_proc
- 0x8052782C: aHWN_menu_open_wait_talk_proc
- 0x8052789C: aHWN_menu_close_wait_talk_proc
- 0x80527988: aHWN_get_other_item_wait_talk_proc
- 0x80527A2C: aHWN_receive_tool_item_start_wait_talk_proc
- 0x80527AB0: aHWN_receive_tool_item_end_wait_talk_proc
- 0x80527B1C: aHWN_trick_timing_wait_talk_proc
- 0x80527BA0: aHWN_trick_chg_cloth_talk_proc
- 0x80527C08: aHWN_trick_chg_cloth_end_wait_talk_proc
- 0x80527C8C: aHWN_get_ame_wait_talk_proc
- 0x80527CFC: aHWN_get_ame_talk_proc
- 0x80527D54: aHWN_pl_demo_code_end_wait_talk_proc
- 0x80527DDC: aHWN_change_talk_proc
- 0x80527DF4: aHWN_set_force_talk_info
- 0x80527E38: aHWN_force_talk_request
- 0x80527F3C: aHWN_set_norm_talk_info
- 0x80527F88: aHWN_norm_talk_request
- 0x80527FB8: aHWN_talk_init
- 0x80527FDC: aHWN_talk_end_chk
- 0x8052806C: aHWN_approach
- 0x80528114: aHWN_approach_wait
- 0x805281B4: aHWN_think_main_proc
- 0x805281DC: aHWN_think_init_proc
- 0x80528224: aHWN_approach_init
- 0x8052825C: aHWN_approach_wait_init
- 0x80528294: aHWN_setup_think_proc
- 0x805282E8: aHWN_think_proc
- 0x8052831C: aHWN_schedule_think_init
- 0x8052836C: aHWN_schedule_init_proc
- 0x805283B4: aHWN_schedule_main_proc
- 0x805284E0: aHWN_schedule_proc
- 0x805286B0: aHN0_set_animation
- 0x80528724: aHN0_make_utiwa
- 0x80528798: aHN0_check_moveRange
- 0x805287D8: aHN0_check_inBlock
- 0x8052886C: aHN0_revise_moveRange
- 0x805289D0: aHN0_turn
- 0x80528A28: aHN0_walk
- 0x80528A98: aHN0_hurrahs
- 0x80528AC8: aHN0_set_spd_info
- 0x80528B0C: aHN0_setupAction
- 0x80528B9C: aHN0_act_chg_data_proc
- 0x80528BA8: aHN0_act_init_proc
- 0x80528BCC: aHN0_act_main_proc
- 0x80528BF4: aHN0_act_proc
- 0x80528F3C: aHN0_set_talk_info
- 0x80528F9C: aHN0_talk_request
- 0x80529034: aHN1_actor_ct
- 0x805290C0: aHN1_actor_save
- 0x805290F8: aHN1_actor_dt
- 0x80529130: aHN1_actor_init
- 0x80529168: aHN1_actor_move
- 0x805291A0: aHN1_actor_draw
- 0x805291D8: aHN1_set_animation
- 0x80529230: aHN1_set_request_act
- 0x8052924C: aHN1_make_utiwa
- 0x805292C0: aHN1_turn
- 0x805292DC: aHN1_fan
- 0x8052930C: aHN1_hurrahs
- 0x80529364: aHN1_clapping
- 0x805293A0: aHN1_setupAction
- 0x80529490: aHN1_act_chg_data_proc
- 0x8052949C: aHN1_act_init_proc
- 0x80529530: aHN1_act_main_proc
- 0x80529558: aHN1_act_proc
- 0x8052958C: aHN1_think_main_proc
- 0x8052962C: aHN1_think_init_proc
- 0x80529660: aHN1_think_proc
- 0x80529694: aHN1_schedule_init_proc
- 0x805297A8: aHN1_schedule_main_proc
- 0x80529834: aHN1_schedule_proc
- 0x80529868: aHN1_set_talk_info
- 0x805298E4: aHN1_talk_request
- 0x80529914: aHN1_talk_init
- 0x80529938: aHN1_talk_end_chk
- 0x8052997C: aHM0_actor_ct
- 0x80529A00: aHM0_actor_save
- 0x80529A38: aHM0_actor_dt
- 0x80529A70: aHM0_actor_init
- 0x80529AA8: aHM0_actor_move
- 0x80529AE0: aHM0_actor_draw
- 0x80529B18: aHM0_set_animation
- 0x80529B64: aHM0_set_request_act
- 0x80529B80: aHM0_make_tumbler
- 0x80529C04: aHM0_wait
- 0x80529C34: aHM0_merry
- 0x80529C88: aHM0_drink
- 0x80529CA0: aHM0_setupAction
- 0x80529D60: aHM0_act_chg_data_proc
- 0x80529D6C: aHM0_act_init_proc
- 0x80529D90: aHM0_act_main_proc
- 0x80529DB8: aHM0_act_proc
- 0x80529DEC: aHM0_think_main_proc
- 0x80529E88: aHM0_think_init_proc
- 0x80529EBC: aHM0_think_proc
- 0x80529EF0: aHM0_schedule_init_proc
- 0x80529F9C: aHM0_schedule_main_proc
- 0x8052A028: aHM0_schedule_proc
- 0x8052A05C: aHM0_set_talk_info
- 0x8052A0D8: aHM0_talk_request
- 0x8052A108: aHM0_talk_init
- 0x8052A12C: aHM0_talk_end_chk
- 0x8052A170: aHM1_actor_ct
- 0x8052A1F4: aHM1_actor_save
- 0x8052A22C: aHM1_actor_dt
- 0x8052A264: aHM1_actor_init
- 0x8052A29C: aHM1_actor_move
- 0x8052A2D4: aHM1_actor_draw
- 0x8052A30C: aHM1_set_animation
- 0x8052A358: aHM1_set_request_act
- 0x8052A374: aHM1_check_moveRange
- 0x8052A3B4: aHM1_check_inBlock
- 0x8052A448: aHM1_revise_moveRange
- 0x8052A5AC: aHM1_turn
- 0x8052A604: aHM1_walk
- 0x8052A674: aHM1_set_spd_info
- 0x8052A6B8: aHM1_setupAction
- 0x8052A71C: aHM1_act_chg_data_proc
- 0x8052A728: aHM1_act_init_proc
- 0x8052A74C: aHM1_act_main_proc
- 0x8052A774: aHM1_act_proc
- 0x8052A7A8: aHM1_think_main_proc
- 0x8052A890: aHM1_think_init_proc
- 0x8052A8C4: aHM1_think_proc
- 0x8052A8F8: aHM1_schedule_init_proc
- 0x8052A9A8: aHM1_schedule_main_proc
- 0x8052AA28: aHM1_schedule_proc
- 0x8052AA5C: aHM1_set_talk_info
- 0x8052AABC: aHM1_talk_request
- 0x8052AAEC: aHM1_talk_init
- 0x8052AB10: aHM1_talk_end_chk
- 0x8052AE40: aEv_init_hatumode_save_area
- 0x8052AE9C: aHN0_set_start_position
- 0x8052AF0C: aHN0_set_force_talk_info
- 0x8052AF50: aHN0_force_talk_request
- 0x8052AF98: aHN0_set_norm_talk_info
- 0x8052AFDC: aHN0_norm_talk_request
- 0x8052B0EC: aHN0_flag2_wait_check
- 0x8052B1D4: aHN0_birth
- 0x8052B264: aHN0_ready1
- 0x8052B2EC: aHN0_ready2
- 0x8052B380: aHN0_turn_next
- 0x8052B3B8: aHN0_flag2_wait
- 0x8052B458: aHN0_anime_wait
- 0x8052B4B4: aHN0_anime_wait_saisen
- 0x8052B580: aHN0_timer_wait
- 0x8052B5C4: aHN0_move_bf
- 0x8052B660: aHN0_move_wait
- 0x8052B708: aHN0_aisatu_wait
- 0x8052B76C: aHN0_aisatu2_wait
- 0x8052B7D0: aHN0_to_omairi
- 0x8052B830: aHN0_player_move
- 0x8052B8B4: aHN0_player_wait
- 0x8052B92C: aHN0_kasasimai
- 0x8052B9C4: aHN0_sanpai_wait
- 0x8052BB30: aHN0_setup_think_proc
- 0x8052BD38: aKM0_actor_ct
- 0x8052BDC4: aKM0_actor_save
- 0x8052BDFC: aKM0_actor_dt
- 0x8052BE34: aKM0_actor_init
- 0x8052BE6C: aKM0_actor_move
- 0x8052BEA4: aKM0_actor_draw
- 0x8052BEDC: aKM0_talk_request
- 0x8052BF14: aKM0_talk_init
- 0x8052BF4C: aKM0_talk_end_chk
- 0x8052BFA0: aNOR_actor_ct
- 0x8052C018: aNOR_actor_dt
- 0x8052C050: aNOR_actor_save
- 0x8052C088: aNOR_actor_init
- 0x8052C0C0: aNOR_actor_move
- 0x8052C0F8: aNOR_actor_draw
- 0x8052D8D8: aNPC_WalkSe
- 0x8052D960: aNPC_TumbleSe
- 0x8052D9B8: aNPC_change_umbrella
- 0x8052EF38: aNPC_blockRangeCheck
- 0x8052F06C: aNPC_circleRangeCheck
- 0x8052F168: aNPC_circleRangeRevice
- 0x8052F244: aNPC_moveRangeCheck2
- 0x8052F30C: aNPC_moveRangeCheck
- 0x8052F36C: aNPC_entranceCheck_sub
- 0x8052F438: aNPC_entranceCheck
- 0x8052F47C: aNPC_check_entrance_pl
- 0x8052F524: aNPC_check_entrance_npc
- 0x8052F5E4: aNPC_check_entrance_humanoid
- 0x8052F708: aNPC_forward_check_sub
- 0x8052F810: aNPC_forward_check
- 0x8052F9B8: aNPC_calc_move_timer
- 0x8052FA1C: aNPC_calc_act_timer
- 0x8052FBA0: aNPC_around_obj_check
- 0x8052FC60: aNPC_chk_avoid_and_search
- 0x8052FDA0: aNPC_set_condition_info
- 0x80530BA0: aNPC_setup_stay_my_house
- 0x80530BDC: aNPC_request_house
- 0x80530CFC: aNPC_get_animal_idx
- 0x80530D40: aNPC_set_relation
- 0x80531CD8: aNPC_act_chase_insect_check_end
- 0x80531D70: aNPC_act_chase_insect_chg_step
- 0x80531EEC: aNPC_act_chase_insect_main_proc
- 0x80531F90: aNPC_act_chase_insect_chg_data_proc
- 0x80531FA4: aNPC_act_chase_insect_init_proc
- 0x80531FD4: aNPC_act_chase_insect_proc
- 0x80532008: aNPC_setup_turn_round_palActor
- 0x8053204C: aNPC_get_animal_friendship
- 0x805320BC: aNPC_setup_greeting_end_sub
- 0x8053210C: aNPC_setup_greeting_end
- 0x805321A0: aNPC_sort_aroundNpcInfoList
- 0x80532280: aNPC_make_aroundNpcInfoList
- 0x80532428: aNPC_decide_AB_Actor
- 0x805324CC: aNPC_chk_same_cloth
- 0x80532508: aNPC_set_feel_sub
- 0x80532594: aNPC_set_feel
- 0x805325D8: aNPC_copy_cloth
- 0x80532718: aNPC_copy_end_words
- 0x8053284C: aNPC_set_cloth
- 0x805328F4: aNPC_reset_end_words
- 0x80532950: aNPC_chg_sp_cloth
- 0x80532A20: aNPC_chg_sp_umb
- 0x80532AE4: aNPC_reset_cloth_and_umb
- 0x80532B90: aNPC_act_greeting_reaction
- 0x80532D8C: aNPC_get_greeting_step
- 0x80532DB8: aNPC_act_greeting_chg_step
- 0x80532E00: aNPC_act_greeting_turn
- 0x80532E7C: aNPC_act_greeting_approach
- 0x80532EEC: aNPC_act_greeting_wait
- 0x80532F54: aNPC_act_greeting
- 0x8053301C: aNPC_act_greeting_chg_cloth
- 0x8053305C: aNPC_act_greeting_chg_umb
- 0x8053309C: aNPC_act_greeting_chg_cloth_and_umb
- 0x805330DC: aNPC_act_greeting_main_proc
- 0x80533144: aNPC_act_greeting_init_proc
- 0x8053318C: aNPC_act_greeting_proc
- 0x805335A0: aNPC_act_into_house_chg_step
- 0x805335D4: aNPC_act_into_house_chg_into_step
- 0x8053362C: aNPC_act_into_house_turn
- 0x8053366C: aNPC_act_into_house_approach
- 0x80533734: aNPC_act_into_house_umb_close
- 0x805337A4: aNPC_act_into_house_request_permit_wait
- 0x805337C4: aNPC_act_into_house_into
- 0x805338A4: aNPC_act_into_house_main_proc
- 0x805338E4: aNPC_act_into_house_init_proc
- 0x80533950: aNPC_act_into_house_proc
- 0x80533984: aNPC_act_leave_house_chg_step
- 0x805339B8: aNPC_act_leave_house_wait
- 0x80533A70: aNPC_act_leave_house_out_of_door
- 0x80533AB0: aNPC_act_leave_house_turn
- 0x80533B18: aNPC_act_leave_house_main_proc
- 0x80533B50: aNPC_act_leave_house_init_proc
- 0x80533B98: aNPC_act_leave_house_proc
- 0x80533BCC: aNPC_act_umb_open_main_proc
- 0x80533C48: aNPC_act_umb_open_init_proc
- 0x80533CD4: aNPC_act_umb_open_proc
- 0x80533D08: aNPC_act_umb_close_main_proc
- 0x80533D88: aNPC_act_umb_close_init_proc
- 0x80533DB8: aNPC_act_umb_close_proc
- 0x80534700: aNPC_act_get_chg_umb
- 0x805347C8: aNPC_act_get_chg_cloth_and_umb
- 0x80534BBC: aNPC_act_pitfall_chg_step
- 0x80534BF0: aNPC_act_pitfall_totter
- 0x80534CAC: aNPC_act_pitfall_fall
- 0x80534D08: aNPC_act_pitfall_main_proc
- 0x80534D40: aNPC_act_pitfall_init_proc
- 0x80534DB4: aNPC_act_pitfall_proc
- 0x80534DE8: aNPC_act_revive_main_proc
- 0x80534E24: aNPC_act_revive_init_proc
- 0x80534EB8: aNPC_act_revive_proc
- 0x80534EEC: aNPC_setup_react_tool_end
- 0x80534F14: aNPC_act_react_tool_surprise
- 0x80534F50: aNPC_act_react_tool_surprise2
- 0x80534F98: aNPC_act_react_tool_look_player
- 0x80535004: aNPC_act_react_tool_chg_step
- 0x80535038: aNPC_act_react_tool_main_proc
- 0x80535070: aNPC_act_react_tool_chg_data_proc
- 0x805350A0: aNPC_act_react_tool_init_proc
- 0x8053515C: aNPC_act_react_tool_proc
- 0x80535190: aNPC_act_clap_main_proc
- 0x805351EC: aNPC_act_clap_init_proc
- 0x80535220: aNPC_act_clap_proc
- 0x80535588: aNPC_ctrl_umbrella
- 0x80535660: aNPC_check_obj_crs_player
- 0x8053568C: aNPC_check_entrance
- 0x80535798: aNPC_turn_to_backward
- 0x805358FC: aNPC_avoid_wall
- 0x80535D9C: aNPC_check_clap
- 0x80535E50: aNPC_check_ball
- 0x80535F14: aNPC_check_insect_and_gyoei
- 0x805360F4: aNPC_think_demo_allways
- 0x80536114: aNPC_chk_pitfall
- 0x80536A24: aNPC_think_wander_check_ones_way
- 0x80536AD4: aNPC_think_wander_move_next
- 0x80537138: aNPC_set_request_go_home_act
- 0x805371F8: aNPC_think_go_home_check_entrance
- 0x8053725C: aNPC_think_go_home_next_act
- 0x805372E8: aNPC_think_go_home_main_proc
- 0x8053735C: aNPC_think_go_home_init_proc
- 0x8053738C: aNPC_think_go_home_proc
- 0x805373C0: aNPC_think_into_house_init_proc
- 0x80537424: aNPC_think_into_house_proc
- 0x80537458: aNPC_think_leave_house_init_proc
- 0x8053754C: aNPC_think_leave_house_proc
- 0x80537580: aNPC_think_in_block_chg_native_info
- 0x805375E8: aNPC_think_in_block_setup_end
- 0x805376AC: aNPC_think_in_block_chk_interrupt_proc
- 0x80537780: aNPC_think_in_block_check_humanoid
- 0x805377B8: aNPC_think_in_block_next_act
- 0x8053782C: aNPC_think_in_block_main_proc
- 0x80537928: aNPC_think_in_block_init_proc
- 0x80537A18: aNPC_think_in_block_proc
- 0x80537A4C: aNPC_think_pitfall_main_proc
- 0x80537B10: aNPC_think_pitfall_init_proc
- 0x80537BB4: aNPC_think_pitfall_proc
- 0x80537BE8: aNPC_think_sleep_set_force_schedule
- 0x80537C38: aNPC_think_sleep_main_proc
- 0x80537CE4: aNPC_think_sleep_init_proc
- 0x80537D44: aNPC_think_sleep_proc
- 0x80537E14: aNPC_check_chg_schedule
- 0x80537E50: aNPC_check_home_block
- 0x80538068: aNPC_walk_wander_schedule_init_proc
- 0x805380B4: aNPC_walk_wander_schedule_proc
- 0x8053870C: aNPC_sleep_schedule_think_init
- 0x80538740: aNPC_sleep_schedule_chg_schedule
- 0x80538C78: aNPC_check_force_use_umbrella
- 0x80539D40: aNPC_get_overlay_free_area_idx
- 0x80539D78: aNPC_get_overlay_area_proc_sub
- 0x80539DE4: aNPC_get_overlay_area_proc
- 0x8053A000: aNPC_free_overlay_area_proc
- 0x8053A0D0: aNPC_get_actor_area_proc
- 0x8053A1D0: aNPC_keep_actor_class
- 0x8053A228: aNPC_free_actor_class
- 0x8053A264: aNPC_keep_n_overlay_area
- 0x8053A280: aNPC_keep_s_overlay_area
- 0x8053A2B8: aNPC_keep_k_overlay_area
- 0x8053A2F0: aNPC_keep_e_overlay_area
- 0x8053A328: aNPC_free_overlay_area
- 0x8053A9AC: aNPC_force_reset_out_of_door_flg
- 0x8053AA04: aNPC_reset_out_of_door_flg
- 0x8053AA30: aNPC_force_reset_umb_open_flg
- 0x8053AA84: aNPC_reset_umb_open_flg
- 0x8053AB6C: aNPC_set_talk_area_info
- 0x8053AC68: aNPC_talk_area_check
- 0x8053C4D0: aNPC_WalkSeRoom
- 0x8053D978: aNPC_get_rev_val
- 0x8053EB7C: aNPC_set_be_out_home
- 0x8053EBF8: aNPC_trace_route
- 0x8053EFE8: aNPC_act_demo_move
- 0x8053F2B0: aNPC_act_anm_seq_allways_proc
- 0x8053FE24: aNPC_act_takeout_init_proc
- 0x8053FE50: aNPC_act_takeout_proc
- 0x8053FE84: aNPC_act_putaway_main_proc
- 0x8053FF04: aNPC_act_putaway_init_proc
- 0x8053FF34: aNPC_act_putaway_proc
- 0x80540A98: aNPC_act_contract_chg_step
- 0x80540ACC: aNPC_act_contract_return_contract
- 0x80540B5C: aNPC_act_contract1
- 0x80540C08: aNPC_act_contract2
- 0x80540C98: aNPC_act_contract3
- 0x80540CD8: aNPC_act_contract_main_proc
- 0x80540D58: aNPC_act_contract_chg_data_proc
- 0x80540D64: aNPC_act_contract_init_proc
- 0x80540D90: aNPC_act_contract_proc
- 0x80540DC4: aNPC_act_not_contract_chg_step
- 0x80540DF8: aNPC_act_not_contract1
- 0x80540E88: aNPC_act_not_contract_main_proc
- 0x80540F08: aNPC_act_not_contract_chg_data_proc
- 0x80540F14: aNPC_act_not_contract_init_proc
- 0x80540F70: aNPC_act_not_contract_proc
- 0x80541020: aNPC_chg_entrance_fg
- 0x805413A8: aNPC_think_turn_this_unit
- 0x80541518: aNPC_decide_turn_this_unit
- 0x80541578: aNPC_forward_search_turn_point
- 0x80541840: aNPC_back_search_turn_point
- 0x80541A14: aNPC_copy_route
- 0x80541ADC: aNPC_route_check
- 0x80541E3C: aNPC_turn_to_another_route
- 0x80542608: aNPC_think_hide_main_proc
- 0x8054266C: aNPC_think_hide_proc
- 0x80542A70: aNPC_think_out_of_room_route_check
- 0x80542B40: aNPC_think_out_of_room_chk_interrupt
- 0x80542BEC: aNPC_think_out_of_room_main_proc
- 0x80542C9C: aNPC_think_out_of_room_init_proc
- 0x80542CEC: aNPC_think_out_of_room_proc
- 0x80542D20: aNPC_think_exit_wait_decide_next_act_idx
- 0x80542DDC: aNPC_think_exit_wait_setup_exit_info
- 0x80542E44: aNPC_think_exit_wait_chk_interrupt
- 0x80542EBC: aNPC_think_exit_wait_main_proc
- 0x80542F48: aNPC_think_exit_wait_init_proc
- 0x80542FAC: aNPC_think_exit_wait_proc
- 0x80542FE0: aNPC_think_into_room_main_proc
- 0x8054302C: aNPC_think_into_room_init_proc
- 0x80543108: aNPC_think_into_room_proc
- 0x80543BE4: aNPC_set_start_pos_sub
- 0x805447A4: aNPC_set_safe_ut
- 0x80544848: aNPC_make_unitInfo_sub
- 0x805448EC: aNPC_make_unitInfo
- 0x805456A0: aNCM_actor_ct
- 0x80545754: aNCM_actor_save
- 0x8054578C: aNCM_actor_dt
- 0x805457C4: aNCM_actor_init
- 0x805457FC: aNCM_actor_draw
- 0x80545834: aNCM_get_zone_sub
- 0x80545878: aNCM_get_zone
- 0x805458F8: aNCM_get_next_zone
- 0x80545918: aNCM_search_player
- 0x805459A8: aNCM_search_player2
- 0x80545A84: aNCM_check_safe_zone
- 0x80545AB8: aNCM_actor_move
- 0x8054B06C: aCR_actor_ct
- 0x8054B154: aCR_actor_save
- 0x8054B18C: aCR_actor_dt
- 0x8054B1C4: aCR_actor_init
- 0x8054B1FC: aCR_actor_draw
- 0x8054B234: aCR_set_animation
- 0x8054B280: aCR_set_request_act
- 0x8054B29C: aCR_check_sleep_time
- 0x8054B2D0: aCR_sleep_wait
- 0x8054B30C: aCR_wait_init
- 0x8054B328: aCR_sleep_wait_init
- 0x8054B35C: aCR_sleep_init
- 0x8054B374: aCR_setupAction
- 0x8054B3E0: aCR_act_chg_data_proc
- 0x8054B3EC: aCR_act_init_proc
- 0x8054B474: aCR_act_main_proc
- 0x8054B49C: aCR_act_proc
- 0x8054B4D0: aCR_think_main_proc
- 0x8054B56C: aCR_think_init_proc
- 0x8054B5C4: aCR_think_proc
- 0x8054B5F8: aCR_schedule_init_proc
- 0x8054B64C: aCR_schedule_main_proc
- 0x8054B6CC: aCR_schedule_proc
- 0x8054B700: aCR_get_fossil_type
- 0x8054B758: aCR_chk_fossil_parts_complete_sub
- 0x8054B848: aCR_chk_fossil_parts_complete
- 0x8054B8DC: aCR_chk_fossil_complete
- 0x8054B96C: aCR_chk_art_complete
- 0x8054B9F4: aCR_chk_fish_complete
- 0x8054BA7C: aCR_chk_insect_complete
- 0x8054BB04: aCR_set_after_explain_insect
- 0x8054BB88: aCR_set_item_name_str
- 0x8054BBE0: aCR_set_other_player_name_str
- 0x8054BC2C: aCR_countDisplayed
- 0x8054BC7C: aCR_get_msg_no_after_talk
- 0x8054BCE0: aCR_get_idx_to_donate_fossil
- 0x8054BDE8: aCR_get_idx_to_donate_art
- 0x8054BEE0: aCR_get_idx_to_donate_insect
- 0x8054BFA8: aCR_get_idx_to_donate_fish
- 0x8054C050: aCR_after_talk_start_wait
- 0x8054C0C4: aCR_chk_request
- 0x8054C178: aCR_chk_decide_to_donate
- 0x8054C218: aCR_chk_decide_to_donate2
- 0x8054C2B8: aCR_menu_open_wait
- 0x8054C314: aCR_msg_win_close_wait
- 0x8054C370: aCR_menu_close_wait
- 0x8054C3BC: aCR_get_demo_start_wait
- 0x8054C404: aCR_get_demo_end_wait
- 0x8054C454: aCR_msg_win_open_wait
- 0x8054C5CC: aCR_return_demo_start_wait
- 0x8054C640: aCR_return_demo_end_wait
- 0x8054C6CC: aCR_chk_continue_to_donate
- 0x8054C790: aCR_putaway_demo_start_wait
- 0x8054C7F8: aCR_putaway_demo_start_wait5_2
- 0x8054C888: aCR_putaway_demo_end_wait
- 0x8054C97C: aCR_after_explain_insect
- 0x8054C9E4: aCR_thanks_fossil_msg_end_wait
- 0x8054CA4C: aCR_chk_all_complete
- 0x8054CAF0: aCR_msg_win_close_wait_init
- 0x8054CB14: aCR_menu_close_wait_init
- 0x8054CB44: aCR_get_demo_end_wait_init
- 0x8054CB88: aCR_msg_win_open_wait_init
- 0x8054CBC0: aCR_return_demo_end_wait_init
- 0x8054CBE4: aCR_putaway_demo_end_wait_init
- 0x8054CC44: aCR_talk_init_proc
- 0x8054CC78: aCR_setupTalkAction
- 0x8054CCB0: aCR_set_talk_info
- 0x8054CDFC: aCR_talk_request
- 0x8054CE2C: aCR_talk_init
- 0x8054CE94: aCR_talk_end_chk
- 0x8054CEF0: aCR_actor_move
- 0x8054CF28: aNDM_actor_ct
- 0x8054D038: aNDM_actor_save
- 0x8054D070: aNDM_actor_dt
- 0x8054D0A8: aNDM_actor_init
- 0x8054D0E0: aNDM_actor_draw
- 0x8054D118: aNDM_get_zone_sub
- 0x8054D148: aNDM_get_zone
- 0x8054D1DC: aNDM_get_next_zone
- 0x8054D1FC: aNDM_search_player
- 0x8054D28C: aNDM_search_player2
- 0x8054D368: aNDM_check_safe_zone
- 0x8054D3B8: aNDM_actor_move
- 0x80552984: aNEG_actor_ct
- 0x80552A44: aNEG_actor_save
- 0x80552A7C: aNEG_actor_dt
- 0x80552AB4: aNEG_actor_init
- 0x80552AEC: aNEG_actor_move
- 0x80552B24: aNEG_actor_draw
- 0x80552B5C: aNGD_actor_ct
- 0x80552C84: aNGD_actor_save
- 0x80552CBC: aNGD_actor_dt
- 0x80552D34: aNGD_actor_init
- 0x80552D6C: aNGD_actor_draw
- 0x80552DA4: aNGD_set_animation
- 0x80552E2C: aNGD_set_camera
- 0x805531E4: aNGD_set_camera_eyes
- 0x80553228: aNGD_set_walk_spd
- 0x80553254: aNGD_set_walk_spd2
- 0x80553280: aNGD_set_stop_spd
- 0x8055329C: aNGD_make_keitai
- 0x80553334: aNGD_chg_cond_keitai
- 0x80553398: aNGD_talk_demo_proc
- 0x805533F4: aNGD_check_talk_msg_no
- 0x8055348C: aNGD_set_pl_face_type
- 0x8055351C: aNGD_calc_body_angl
- 0x80553578: aNGD_set_default_talk_info
- 0x805535AC: aNGD_enter
- 0x80553618: aNGD_approach
- 0x80553658: aNGD_set_talk_info_talk_start_wait
- 0x80553694: aNGD_talk_start_wait
- 0x80553734: aNGD_time_check
- 0x805537C4: aNGD_sdon_and_pb_wait
- 0x8055383C: aNGD_time_menu_open_wait
- 0x80553894: aNGD_time_menu_close_wait
- 0x805538C4: aNGD_msg_win_open_wait
- 0x80553994: aNGD_confirm_input_data
- 0x80553A7C: aNGD_wait_permission
- 0x80553AD0: aNGD_sitdown
- 0x80553B74: aNGD_sex_select_wait
- 0x80553C04: aNGD_sex_select_wait2
- 0x80553D50: aNGD_sex_select_after
- 0x80553DF0: aNGD_standup_start_wait
- 0x80553E50: aNGD_standup
- 0x80553E80: aNGD_move_ready
- 0x80553EC0: aNGD_move_to_aisle
- 0x80553F2C: aNGD_move_to_door
- 0x80553FBC: aNGD_move_to_deck
- 0x80554020: aNGD_set_talk_info_keitai_on
- 0x80554048: aNGD_keitai_on
- 0x805540F4: aNGD_keitai_talk
- 0x80554184: aNGD_open_door
- 0x8055421C: aNGD_return_approach
- 0x8055426C: aNGD_set_talk_info_last_talk_start_wait
- 0x805542A8: aNGD_last_talk_start_wait
- 0x80554348: aNGD_sitdown2_start_wait
- 0x805543B0: aNGD_sitdown2
- 0x805543F0: aNGD_last_talk_end_wait
- 0x80554448: aNGD_time_menu_open_wait_init
- 0x80554494: aNGD_time_menu_close_wait_init
- 0x80554514: aNGD_msg_win_open_wait_init
- 0x80554538: aNGD_sitdown_init
- 0x8055455C: aNGD_pname_menu_open_wait_init
- 0x805545A8: aNGD_cname_menu_open_wait_init
- 0x805545F4: aNGD_standup_init
- 0x80554600: aNGD_move_ready_init
- 0x80554610: aNGD_move_to_aisle_init
- 0x80554630: aNGD_move_to_deck_init
- 0x8055467C: aNGD_keitai_off_init
- 0x805546B4: aNGD_open_door_init
- 0x805546C0: aNGD_return_approach_init
- 0x80554700: aNGD_sitdown2_start_wait_init
- 0x8055472C: aNGD_sitdown2_init
- 0x80554744: aNGD_last_talk_end_wait_init
- 0x8055477C: aNGD_scene_change_wait_init
- 0x805549BC: aNGD_init_proc
- 0x805549F0: aNGD_setupAction
- 0x80554A58: aNGD_actor_move
- 0x80554B00: aNG2_actor_ct
- 0x80554C04: aNG2_actor_save
- 0x80554C3C: aNG2_actor_dt
- 0x80554C7C: aNG2_actor_init
- 0x80554CB4: aNG2_actor_draw
- 0x80554CEC: aNG2_set_animation
- 0x80554D3C: aNG2_set_camera
- 0x805550F4: aNG2_set_camera_eyes
- 0x80555138: aNG2_set_walk_spd
- 0x80555164: aNG2_set_walk_spd2
- 0x80555190: aNG2_set_stop_spd
- 0x805551AC: aNG2_make_keitai
- 0x80555244: aNG2_chg_cond_keitai
- 0x805552A8: aNG2_talk_demo_proc
- 0x80555304: aNG2_getP_other_pl_name
- 0x805553B4: aNG2_check_pname
- 0x8055543C: aNG2_check_talk_msg_no
- 0x805554D4: aNG2_set_pl_face_type
- 0x80555564: aNG2_calc_body_angl
- 0x805555C0: aNG2_set_default_talk_info
- 0x805555F4: aNG2_enter
- 0x80555660: aNG2_approach
- 0x805556A0: aNG2_set_talk_info_talk_start_wait
- 0x80555700: aNG2_talk_start_wait
- 0x805557A0: aNG2_wait_permission
- 0x805557F4: aNG2_sitdown
- 0x80555874: aNG2_sdon_and_pb_wait
- 0x805558EC: aNG2_pname_menu_open_wait
- 0x80555940: aNG2_pname_menu_close_wait
- 0x80555970: aNG2_msg_win_open_wait
- 0x80555A0C: aNG2_sex_select_wait
- 0x80555A9C: aNG2_sex_select_wait2
- 0x80555C08: aNG2_sex_select_after
- 0x80555C98: aNG2_standup_start_wait
- 0x80555CF8: aNG2_standup
- 0x80555D28: aNG2_move_ready
- 0x80555D68: aNG2_move_to_aisle
- 0x80555DD4: aNG2_move_to_door
- 0x80555E64: aNG2_move_to_deck
- 0x80555EC8: aNG2_set_talk_info_keitai_on
- 0x80555EF0: aNG2_keitai_on
- 0x80555F9C: aNG2_keitai_talk
- 0x8055602C: aNG2_open_door
- 0x805560C4: aNG2_return_approach
- 0x80556114: aNG2_set_talk_info_last_talk_start_wait
- 0x80556150: aNG2_last_talk_start_wait
- 0x805561F0: aNG2_sitdown2_start_wait
- 0x80556258: aNG2_sitdown2
- 0x80556298: aNG2_last_talk_end_wait
- 0x805562F0: aNG2_sitdown_init
- 0x80556314: aNG2_pname_menu_open_wait_init
- 0x8055634C: aNG2_pname_menu_close_wait_init
- 0x8055637C: aNG2_msg_win_open_wait_init
- 0x805563A0: aNG2_pname_ng_init
- 0x805563AC: aNG2_standup_init
- 0x805563B8: aNG2_move_ready_init
- 0x805563C8: aNG2_move_to_aisle_init
- 0x805563E8: aNG2_move_to_deck_init
- 0x80556434: aNG2_keitai_off_init
- 0x8055646C: aNG2_open_door_init
- 0x80556478: aNG2_return_approach_init
- 0x805564B8: aNG2_sitdown2_start_wait_init
- 0x805564E4: aNG2_sitdown2_init
- 0x805564FC: aNG2_last_talk_end_wait_init
- 0x80556534: aNG2_scene_change_wait_init
- 0x805565D0: aNG2_init_proc
- 0x80556604: aNG2_setupAction
- 0x8055666C: aNG2_actor_move
- 0x80556714: aMJN_actor_ct
- 0x80556798: aMJN_actor_save
- 0x805567D0: aMJN_actor_dt
- 0x8055686C: aMJN_actor_init
- 0x805568A4: aMJN_actor_move
- 0x805568F0: aMJN_set_animation
- 0x8055693C: aMJN_actor_draw
- 0x80556974: aMJN_set_zoomup_camera
- 0x80556A28: aMJN_set_default_camera
- 0x80556A88: aMJN_chk_talk_demo_code
- 0x80556C34: aMJN_set_force_talk_info
- 0x80556C80: aMJN_force_talk_request
- 0x80556CB0: aMJN_talk_init
- 0x80556D0C: aMJN_talk_end_chk
- 0x80556D74: aMJN_set_request_act
- 0x80556D90: aMJN_act_init_proc
- 0x80556D9C: aMJN_act_proc
- 0x80556DD0: aMJN_setup_start_think
- 0x80556F2C: aMJN_start_wait
- 0x80556F7C: aMJN_start_wait_st
- 0x80556FE0: aMJN_exit
- 0x8055700C: aMJN_think_main_proc
- 0x80557054: aMJN_think_init_proc
- 0x80557148: aMJN_call_init
- 0x80557160: aMJN_setup_think_proc
- 0x805571E4: aMJN_think_proc
- 0x80557218: aMJN_schedule_init_proc
- 0x80557264: aMJN_schedule_main_proc
- 0x805572E4: aMJN_schedule_proc
- 0x80557318: aMJN2_actor_ct
- 0x8055739C: aMJN2_actor_save
- 0x805573D4: aMJN2_actor_dt
- 0x80557470: aMJN2_actor_init
- 0x805574A8: aMJN2_actor_move
- 0x805574F4: aMJN2_set_animation
- 0x80557540: aMJN2_actor_draw
- 0x80557578: aMJN2_wait_talk_proc
- 0x805575EC: aMJN2_change_talk_proc
- 0x80557604: aMJN2_set_force_talk_info
- 0x80557694: aMJN2_force_talk_request
- 0x805576C4: aMJN2_set_norm_talk_info
- 0x80557738: aMJN2_norm_talk_request
- 0x80557768: aMJN2_talk_init
- 0x80557798: aMJN2_talk_end_chk
- 0x80557844: aMJN2_set_request_act
- 0x80557860: aMJN2_act_init_proc
- 0x8055786C: aMJN2_act_proc
- 0x805578A0: aMJN2_check_submenu
- 0x80557990: aMJN2_start_wait
- 0x805579E4: aMJN2_start_wait_st
- 0x80557A4C: aMJN2_wait
- 0x80557B1C: aMJN2_exit
- 0x80557B48: aMJN2_think_main_proc
- 0x80557B90: aMJN2_think_init_proc
- 0x80557C84: aMJN2_start_wait_init
- 0x80557D48: aMJN2_setup_think_proc
- 0x80557DF0: aMJN2_think_proc
- 0x80557E24: aMJN2_schedule_init_proc
- 0x80557E70: aMJN2_schedule_main_proc
- 0x80557EF0: aMJN2_schedule_proc
- 0x80557F24: aMJN3_actor_ct
- 0x80557FA8: aMJN3_actor_save
- 0x80557FE0: aMJN3_actor_dt
- 0x8055807C: aMJN3_actor_init
- 0x805580B4: aMJN3_actor_move
- 0x80558100: aMJN3_set_animation
- 0x8055814C: aMJN3_actor_draw
- 0x80558184: aMJN3_check_good_word
- 0x805581EC: aMJN3_check_ng_word
- 0x805582A8: aMJN3_check_word
- 0x80558308: aMJN3_msg_win_close_wait_talk_proc
- 0x80558358: aMJN3_menu_open_wait_talk_proc
- 0x805583D8: aMJN3_menu_close_wait_talk_proc
- 0x80558434: aMJN3_msg_win_open_wait_talk_proc
- 0x805584AC: aMJN3_change_talk_proc
- 0x805584C4: aMJN3_set_force_talk_info
- 0x80558530: aMJN3_force_talk_request
- 0x80558560: aMJN3_talk_init
- 0x80558610: aMJN3_talk_end_chk
- 0x80558680: aMJN3_set_request_act
- 0x8055869C: aMJN3_act_init_proc
- 0x805586A8: aMJN3_act_proc
- 0x805586DC: aMJN3_start_wait
- 0x80558754: aMJN3_start_wait_st
- 0x805587BC: aMJN3_start_wait_st2
- 0x8055889C: aMJN3_exit
- 0x805588C8: aMJN3_think_main_proc
- 0x80558910: aMJN3_think_init_proc
- 0x80558A04: aMJN3_call_init
- 0x80558AC8: aMJN3_setup_think_proc
- 0x80558B4C: aMJN3_think_proc
- 0x80558B80: aMJN3_schedule_init_proc
- 0x80558BCC: aMJN3_schedule_main_proc
- 0x80558C4C: aMJN3_schedule_proc
- 0x80558C80: aMJN4_actor_ct
- 0x80558D20: aMJN4_actor_save
- 0x80558D58: aMJN4_actor_dt
- 0x80558DF4: aMJN4_actor_init
- 0x80558E2C: aMJN4_actor_move
- 0x80558E78: aMJN4_set_animation
- 0x80558EC4: aMJN4_prenmi_draw
- 0x805590C8: aMJN4_actor_draw
- 0x80559124: aMJN4_set_force_talk_info
- 0x8055919C: aMJN4_force_talk_request
- 0x805591CC: aMJN4_talk_init2
- 0x805591FC: aMJN4_talk_init
- 0x80559258: aMJN4_talk_end_chk
- 0x805592E4: aMJN4_set_request_act
- 0x80559300: aMJN4_act_init_proc
- 0x8055930C: aMJN4_act_proc
- 0x80559340: aMJN4_start_wait
- 0x80559394: aMJN4_start_wait_st
- 0x805593FC: aMJN4_force_reset_end_wait
- 0x805594AC: aMJN4_color_filter_end_wait
- 0x805594F4: aMJN4_exit
- 0x80559520: aMJN4_think_main_proc
- 0x80559568: aMJN4_think_init_proc
- 0x8055965C: aMJN4_call_init
- 0x80559720: aMJN4_force_reset_end_wait_init
- 0x805597A0: aMJN4_color_filter_end_wait_init
- 0x805597E8: aMJN4_setup_think_proc
- 0x8055986C: aMJN4_think_proc
- 0x805598A0: aMJN4_schedule_init_proc
- 0x805598EC: aMJN4_schedule_main_proc
- 0x8055996C: aMJN4_schedule_proc
- 0x805599A0: aNMJ5_actor_ct
- 0x80559AC8: aNMJ5_actor_save
- 0x80559AE8: aNMJ5_actor_dt
- 0x80559B48: aNMJ5_actor_init
- 0x80559B80: aNMJ5_set_request_act
- 0x80559C14: aNMJ5_actor_move
- 0x80559CB0: aNMJ5_actor_draw
- 0x80559CE8: aNMJ5_think_main_proc
- 0x80559CEC: aNMJ5_think_init_proc
- 0x80559D74: aNMJ5_think_proc
- 0x80559DB4: aNMJ5_schedule_init_proc
- 0x80559E00: aNMJ5_schedule_main_proc
- 0x80559E80: aNMJ5_schedule_proc
- 0x80559EC0: aNMD_actor_ct
- 0x8055A024: aNMD_actor_save
- 0x8055A05C: aNMD_actor_dt
- 0x8055A094: aNMD_actor_init
- 0x8055A0CC: aNMD_actor_draw
- 0x8055A104: aNMD_get_zone
- 0x8055A1D8: aNMD_get_next_zone
- 0x8055A210: aNMD_search_player
- 0x8055A2A0: aNMD_search_player2
- 0x8055A398: aNMD_weight_ctrl
- 0x8055A408: aNMD_actor_move
- 0x8055B9DC: aNSC_set_talk_info_fukubiki
- 0x8055BA08: aNSC_message_ctrl_force_talk_start_normal_day
- 0x8055BAB4: aNSC_message_ctrl_force_talk_start_fukubiki_day
- 0x8055BAD8: aNSC_message_ctrl_norm_talk_start_normal_day
- 0x8055BAFC: aNSC_message_ctrl_norm_talk_start_fukubiki_day
- 0x8055BB20: aNSC_message_ctrl_talk_request_normal_day
- 0x8055BC70: aNSC_message_ctrl_talk_request_fukubiki_day
- 0x8055BD1C: aNSC_message_ctrl_sub
- 0x8055E528: aNSC_goodbye_wait2
- 0x8055EF20: aNMC_actor_ct
- 0x8055EFD0: aNMC_actor_save
- 0x8055F008: aNMC_actor_dt
- 0x8055F058: aNMC_actor_init
- 0x8055F090: aNMC_actor_draw
- 0x8055F0C8: aNMC_set_painter_name_str
- 0x8055F104: aNMC_set_talk_info
- 0x8055F19C: aNMC_talk_request
- 0x8055F1CC: aNMC_talk_init
- 0x8055F208: aNMC_talk_end_chk
- 0x8055F24C: aNMC_actor_move
- 0x8055F284: aNM2_actor_ct
- 0x8055F440: aNM2_actor_save
- 0x8055F478: aNM2_actor_dt
- 0x8055F4F0: aNM2_actor_init
- 0x8055F528: aNM2_actor_draw
- 0x8055F560: aNM2_set_animation
- 0x8055F5B0: aNM2_set_camera
- 0x8055F92C: aNM2_set_camera_eyes
- 0x8055F970: aNM2_set_walk_spd
- 0x8055F99C: aNM2_set_stop_spd
- 0x8055F9B8: aNM2_talk_demo_proc
- 0x8055FA14: aNM2_count_player_num_nextland
- 0x8055FA94: aNM2_count_player_num_beforeland
- 0x8055FB18: aNM2_set_free_str
- 0x8055FC6C: aNM2_GetBeforePrivateIdx
- 0x8055FCF0: aNM2_get_msg_no_mishiranuneko_talk_start
- 0x8055FD60: aNM2_chg_cond_keitai
- 0x8055FDD0: aNM2_make_shasho
- 0x8055FED8: aNM2_chk_mask_texture
- 0x8055FF14: aNM2_set_next_village_map
- 0x80560018: aNM2_set_talk_info_announce_start_wait
- 0x805600AC: aNM2_announce_start_wait
- 0x8056016C: aNM2_save_start_wait
- 0x805601FC: aNM2_save_end_wait
- 0x805602E4: aNM2_announce_end_wait
- 0x8056034C: aNM2_walk_deck
- 0x80560384: aNM2_turn_deck
- 0x805603F4: aNM2_keitai_off_start_wait
- 0x80560444: aNM2_keitai_off_end_wait
- 0x80560474: aNM2_enter
- 0x80560554: aNM2_approach
- 0x805605D8: aNM2_set_talk_info_talk_start_wait
- 0x80560674: aNM2_talk_start_wait
- 0x8056070C: aNM2_set_talk_info_talk_start_wait2
- 0x80560760: aNM2_talk_start_wait2
- 0x805607F8: aNM2_sitdown_start_wait
- 0x8056084C: aNM2_sitdown
- 0x805608E4: aNM2_sdon_and_pb_wait
- 0x8056095C: aNM2_draw_menu_open_wait
- 0x805609B0: aNM2_draw_menu_close_wait
- 0x805609E0: aNM2_msg_win_open_wait
- 0x80560A8C: aNM2_talk_end_wait
- 0x80560AE4: aNM2_announce_start_wait_init
- 0x80560B00: aNM2_announce_start_wait2_init
- 0x80560B80: aNM2_walk_deck_init
- 0x80560BB4: aNM2_turn_deck_init
- 0x80560BEC: aNM2_keitai_off_start_wait_init
- 0x80560C08: aNM2_keitai_off_end_wait_init
- 0x80560C2C: aNM2_approach_init
- 0x80560C64: aNM2_talk_start_wait_init
- 0x80560CAC: aNM2_talk_start_wait2_init
- 0x80560CF0: aNM2_sitdown_start_wait_init
- 0x80560CFC: aNM2_sitdown_init
- 0x80560D40: aNM2_draw_menu_open_wait_init
- 0x80560D78: aNM2_draw_menu_close_wait_init
- 0x80560DA8: aNM2_msg_win_open_wait_init
- 0x80560DE4: aNM2_talk_end_wait_init
- 0x80560E24: aNM2_scene_change_wait_init
- 0x80560EA4: aNM2_init_proc
- 0x80560ED8: aNM2_setupAction
- 0x80560F40: aNM2_actor_move
- 0x80560FEC: aNNW_actor_ct
- 0x80561090: aNNW_actor_save
- 0x805610B0: aNNW_actor_dt
- 0x805610E8: aNNW_actor_init
- 0x80561120: aNNW_set_request_act
- 0x805611B4: aNNW_actor_move
- 0x805611EC: aNNW_actor_draw
- 0x80561224: aNNW_gba_init
- 0x80561244: aNNW_gba_trance_data_init
- 0x805612E0: aNNW_gba_trance_data_clear
- 0x80561310: aNNW_gba_open_submenu
- 0x80561344: aNNW_gba_trance_data_end
- 0x805613AC: aNNW_check_GBA
- 0x80561424: aNNW_mGcgba_boot
- 0x805614A8: aNNW_SendPrg
- 0x80561528: aNNW_SendData
- 0x805615A4: aNNW_RecvData
- 0x80561620: aNNW_IsEditor
- 0x805616B8: aNNW_gba_open_submenu_card_e
- 0x805616EC: aNNW_Send_card_e
- 0x80561740: aNNW_RecvData_card_e
- 0x805617C0: aNNW_get_sister_message
- 0x805617FC: aNNW_day_day
- 0x80561874: aNNW_get_make_sister_message
- 0x805619D4: aNNW_get_next_sister_message
- 0x80561A1C: aNNW_get_sister_name
- 0x80561A40: aNNW_search_sister
- 0x80561A6C: aNNW_turn_player
- 0x80561AD0: aNNW_trend_check_cloth
- 0x80561B64: aNNW_trend_delete_cloth
- 0x80561BF4: aNNW_trend_check_umbrella
- 0x80561C88: aNNW_trend_delete_umbrella
- 0x80561D18: aNNW_first_talk_check
- 0x80561D34: aNNW_first_talk_end
- 0x80561D80: aNNW_set_trend_set_string
- 0x80561E1C: aNNW_set_trend_cloth_message
- 0x80561EF8: aNNW_set_trend_umbrella_message
- 0x80561FD8: aNNW_change_camera_priority_demo
- 0x80562068: aNNW_change_camera_return_demo
- 0x805620CC: aNNW_set_6_ways
- 0x805621B8: aNNW_set_5_ways
- 0x80562244: aNNW_talk_what_happen_first
- 0x805622C8: aNNW_talk_what_happen
- 0x8056234C: aNNW_talk_other_happen
- 0x805623C8: aNNW_talk_other_happen2
- 0x805624C0: aNNW_talk_check_listen
- 0x80562564: aNNW_talk_listen_sister
- 0x805625D0: aNNW_talk_listen_sister2
- 0x80562630: aNNW_talk_listen_sister3
- 0x80562690: aNNW_talk_listen_sister4
- 0x80562700: aNNW_talk_design_check
- 0x805627D4: aNNW_talk_design_which
- 0x8056284C: aNNW_talk_design_open
- 0x805628F4: aNNW_talk_design_close
- 0x805629A8: aNNW_talk_design_close2
- 0x80562A4C: aNNW_talk_design_close2_end
- 0x80562A98: aNNW_talk_design_open3
- 0x80562B00: aNNW_talk_design_close3
- 0x80562BD0: aNNW_talk_trade_check
- 0x80562CA4: aNNW_talk_trade_which
- 0x80562CF8: aNNW_talk_trade_close
- 0x80562F60: aNNW_talk_give_admission
- 0x80563028: aNNW_talk_gba_which
- 0x805630FC: aNNW_talk_gba_tool_bf
- 0x80563190: aNNW_talk_gba_tool
- 0x80563260: aNNW_talk_gba_tool_0
- 0x80563300: aNNW_talk_gba_tool_af
- 0x805633A0: aNNW_talk_gba_tool_af2
- 0x80563440: aNNW_talk_gba_tool_af3
- 0x80563500: aNNW_talk_gba_load_bf
- 0x8056358C: aNNW_talk_gba_load_check
- 0x80563660: aNNW_talk_gba_load_af
- 0x80563728: aNNW_talk_trend_cloth
- 0x805637AC: aNNW_talk_byebye
- 0x80563804: aNNW_talk_exit
- 0x80563878: aNNW_talk_cloth_change
- 0x805638EC: aNNW_talk_cloth_wait
- 0x805639D4: aNNW_talk_card_e_load_prg_bf_0
- 0x80563A5C: aNNW_talk_card_e_load_prg_bf_1
- 0x80563B10: aNNW_talk_card_e_load_prg_0
- 0x80563BC8: aNNW_talk_card_e_load_prg_af
- 0x80563C88: aNNW_talk_card_e_load_bf_0_0
- 0x80563D1C: aNNW_talk_card_e_load_bf_0
- 0x80563DA4: aNNW_talk_card_e_load_bf_1
- 0x80563E58: aNNW_talk_card_e_load
- 0x80563F0C: aNNW_talk_cporiginal0
- 0x80563F90: aNNW_talk_cporiginal1
- 0x80564000: aNNW_talk_cporiginal2
- 0x8056408C: aNNW_talk_gba_menu0
- 0x805640F0: aNNW_talk_gba_menu1
- 0x8056417C: aNNW_talk_card_e_menu0
- 0x805641D4: aNNW_talk_card_e_menu1
- 0x80564234: aNNW_talk_card_e_menu2
- 0x80564294: aNNW_talk_ane_0
- 0x8056431C: aNNW_talk_ane_1
- 0x805643D0: aNNW_talk_ane_2
- 0x80564444: aNNW_talk_ane_3
- 0x805644D0: aNNW_talk_gba_over_save
- 0x80564570: aNNW_change_talk_proc
- 0x80564584: aNNW_change_talk_proc_next
- 0x805645B4: aNNW_set_force_talk_info
- 0x805647B8: aNNW_force_talk_request
- 0x80564800: aNNW_set_ane_msg
- 0x805648C0: aNNW_set_norm_talk_info
- 0x805649C4: aNNW_norm_talk_request
- 0x80564A0C: aNNW_talk_init
- 0x80564BC4: aNNW_talk_end_chk
- 0x80564DCC: aNNW_get_area
- 0x80564E2C: aNNW_next_target
- 0x80564F60: aNNW_next_target2_aNNW_04
- 0x80565074: aNNW_next_target2_aNNW_06
- 0x80565108: aNNW_next_target2
- 0x8056529C: aNNW_FrameControl_passCheck_now
- 0x80565314: aNNW_my_proc_wait_init
- 0x80565354: aNNW_my_proc_player_init
- 0x805653D0: aNNW_my_proc_turn_p_init
- 0x805654B8: aNNW_my_proc_run_init
- 0x80565508: aNNW_my_proc_turn_init
- 0x80565658: aNNW_my_proc_init
- 0x80565690: aNNW_my_proc_wait
- 0x8056574C: aNNW_my_proc_player
- 0x805657F0: aNNW_my_proc_turn_p
- 0x8056582C: aNNW_my_proc_run
- 0x805658D0: aNNW_my_proc_turn
- 0x8056590C: aNNW_my_proc_main
- 0x80565944: aNNW_omatikudasai2
- 0x805659E0: aNNW_omatikudasai
- 0x80565A78: aNNW_ikagadesyou
- 0x80565B20: aNNW_ainote
- 0x80565BA0: aNNW_ainote3
- 0x80565C00: aNNW_misin_wait
- 0x80565CA4: aNNW_turn
- 0x80565CE8: aNNW_think_main_proc
- 0x80565D30: aNNW_think_init_proc
- 0x80565F04: aNNW_normal_wait_init
- 0x80565F3C: aNNW_misin_wait_init
- 0x80565FD0: aNNW_ainote_init
- 0x80566050: aNNW_next_init
- 0x80566078: aNNW_turn_init
- 0x805660D4: aNNW_setup_think_proc
- 0x80566174: aNNW_think_proc
- 0x805661B4: aNNW_schedule_init_proc
- 0x80566200: aNNW_schedule_main_proc
- 0x80566280: aNNW_schedule_proc
- 0x805662C0: aNPS_actor_ct
- 0x80566490: aNPS_actor_save
- 0x805664C8: aNPS_actor_dt
- 0x80566500: aNPS_actor_init
- 0x80566538: aNPS_actor_move
- 0x80566614: aNPS_actor_draw
- 0x8056664C: aNPS_setup_game_start
- 0x805666D4: aNPS_think_main_proc
- 0x805667FC: aNPS_think_init_proc
- 0x80566818: aNPS_think_proc
- 0x8056684C: aNPS_schedule_init_proc
- 0x805668B8: aNPS_schedule_main_proc
- 0x80566938: aNPS_schedule_proc
- 0x8056696C: aNPS_setup_sound_option
- 0x80566A48: aNPS_setup_voice_option
- 0x80566B10: aNPS_setup_yure_option
- 0x80566BCC: aNPS_chk_setup_sound
- 0x80566C58: aNPS_setup_sound
- 0x80566C98: aNPS_setup_yure
- 0x80566CD8: aNPS_setup_voice
- 0x80566D18: aNPS_confirm_input_data
- 0x80566D80: aNPS_confirm_input_data2
- 0x80566DE8: aNPS_change_talk_proc
- 0x80566E04: aNPS_set_talk_info_talk_request
- 0x80566E40: aNPS_talk_request
- 0x80566E70: aNPS_talk_init
- 0x80566EC0: aNPS_talk_end_chk
- 0x80567000: aNPS2_actor_ct
- 0x805671E0: aNPS2_actor_save
- 0x80567218: aNPS2_actor_dt
- 0x80567250: aNPS2_actor_init
- 0x80567288: aNPS2_actor_move
- 0x80567308: aNPS2_actor_draw
- 0x80567340: aNPS2_think_main_proc
- 0x80567368: aNPS2_think_init_proc
- 0x80567380: aNPS2_think_proc
- 0x805673B4: aNPS2_schedule_init_proc
- 0x80567400: aNPS2_schedule_main_proc
- 0x80567480: aNPS2_schedule_proc
- 0x805674B4: aNPS2_set_str_ct_player_name
- 0x805674D8: aNPS2_GetCardPrivateNameCopy
- 0x805674F8: aNPS2_set_slot_name
- 0x80567548: aNPS2_set_str_cpak_name
- 0x80567588: aNPS2_card_player_idx
- 0x80567630: aNPS2_make_msg
- 0x80567654: aNPS2_Sub_Date
- 0x805676B8: mPO_clear_delivery_mail
- 0x80567750: aNPS2_get_pl_no
- 0x805677C0: aNPS2_set_str_byebye_name
- 0x80567810: aNPS2_player_no_set
- 0x80567884: aNPS2_time_check
- 0x8056794C: aNPS2_setup_yure_option
- 0x80567A08: aNPS2_setup_sound_option
- 0x80567AE4: aNPS2_setup_voice_option
- 0x80567BAC: aNPS2_count_player_sum
- 0x80567C14: aNPS2_copy_player_name
- 0x80567CA4: aNPS2_copy_player_name2
- 0x80567D34: aNPS2_copy_hokanohito
- 0x80567D94: aNPS2_set_choice_str
- 0x80567EDC: aNPS2_set_choice_str2
- 0x80567FD4: aNPS2_get_free_pl_no
- 0x80568034: aNPS2_get_only_one_pl_no
- 0x80568094: aNPS2_chk_friendship_npc
- 0x80568110: aNPS2_decide_birthday_npc
- 0x8056821C: aNPS2_chk_setup_birthday_demo
- 0x8056868C: aNPS2_setup_load_data
- 0x805686D8: aNPS2_setup_yure
- 0x80568728: aNPS2_setup_sound
- 0x80568778: aNPS2_setup_voice
- 0x805687C8: aNPS2_setup_voice_ok
- 0x80568850: aNPS2_whats_happen
- 0x805689B8: aNPS2_chk_option
- 0x80568A8C: aNPS2_chk_option2
- 0x80568C04: aNPS2_chk_clr_village_data_cartridge
- 0x80568CB8: aNPS2_clr_village_data_cartridge
- 0x80568E00: aNPS2_chk_clr_pl_data
- 0x80568EE8: aNPS2_chk_clr_pl_data2
- 0x80568F9C: aNPS2_chk_clr_pl_data3
- 0x805690D4: aNPS2_chk_clr_passport_file
- 0x80569170: aNPS2_clr_passport_file
- 0x805692A4: aNPS2_clr_pl_data
- 0x80569424: aNPS2_ti_menu_open_msg_wait
- 0x8056947C: aNPS2_ti_menu_open_wait
- 0x805694D4: aNPS2_ti_menu_close_wait
- 0x8056954C: aNPS2_select_player
- 0x80569690: aNPS2_select_card_player
- 0x805697A8: aNPS2_chk_fuzai_player
- 0x80569858: aNPS2_chk_kitaku_player
- 0x80569908: aNPS2_game_start_wait
- 0x80569AFC: aNPS2_return_title
- 0x80569B6C: aNPS2_clr_pl_data_init
- 0x80569BF0: aNPS2_ti_menu_open_wait_init
- 0x80569C14: aNPS2_ti_menu_close_wait_init
- 0x80569C5C: aNPS2_select_player_init
- 0x80569C80: aNPS2_select_card_player_init
- 0x80569E7C: aNPS2_talk_init_proc
- 0x80569EB0: aNPS2_change_talk_proc
- 0x80569EE8: aNPS2_set_talk_info_talk_request
- 0x80569F18: aNPS2_talk_request
- 0x80569F48: aNPS2_talk_init
- 0x80569FF4: aNPS2_talk_end_chk
- 0x8056A068: aPOL_actor_ct
- 0x8056A1AC: aPOL_actor_save
- 0x8056A22C: aPOL_actor_dt
- 0x8056A264: aPOL_actor_init
- 0x8056A29C: aPOL_actor_draw
- 0x8056A2D4: aPOL_set_request_act
- 0x8056A36C: aPOL_set_animation
- 0x8056A3E8: aPOL_taisou_act_init_proc
- 0x8056A490: aPOL_nemu_act_init_proc
- 0x8056A4C0: aPOL_taisou_act_main_proc
- 0x8056A51C: aPOL_nemu_act_main_proc
- 0x8056A5C0: aPOL_taisou_act_proc
- 0x8056A5F4: aPOL_nemu_act_proc
- 0x8056A628: aPOL_think_main_proc
- 0x8056A7BC: aPOL_think_init_proc
- 0x8056A7F4: aPOL_think_proc
- 0x8056A828: aPOL_schedule_init_proc
- 0x8056A874: aPOL_schedule_main_proc
- 0x8056A8F4: aPOL_schedule_proc
- 0x8056A928: aPOL_check_player
- 0x8056A98C: aPOL_set_force_talk_info_talk_request
- 0x8056A9B8: aPOL_set_norm_talk_info_talk_request
- 0x8056AAA4: aPOL_talk_request
- 0x8056AB28: aPOL_talk_init
- 0x8056ABD0: aPOL_talk_end_chk
- 0x8056AC40: aPOL_set_npc_block_no_str
- 0x8056ACDC: aPOL_set_event_day_str
- 0x8056AD5C: aPOL_get_hint_msg_no
- 0x8056AE54: aPOL_set_select_after_msg
- 0x8056AF1C: aPOL_check_select
- 0x8056AF84: aPOL_check_select2
- 0x8056B038: aPOL_setupAction
- 0x8056B050: aPOL_actor_move
- 0x8056B088: aPOL2_actor_ct
- 0x8056B134: aPOL2_actor_save
- 0x8056B16C: aPOL2_actor_dt
- 0x8056B1A4: aPOL2_actor_init
- 0x8056B1DC: aPOL2_actor_draw
- 0x8056B214: aPOL2_BGcheck
- 0x8056B258: aPOL2_set_animation
- 0x8056B2A4: aPOL2_set_stop_spd
- 0x8056B2C0: aPOL2_set_walk_spd
- 0x8056B2EC: aPOL2_set_run_spd
- 0x8056B318: aPOL2_get_zone
- 0x8056B3C4: aPOL2_get_next_zone_move_z
- 0x8056B468: aPOL2_get_next_zone_sub0
- 0x8056B520: aPOL2_get_next_zone_sub1
- 0x8056B5D0: aPOL2_get_next_zone
- 0x8056B60C: aPOL2_decide_next_move_act
- 0x8056B718: aPOL2_search_player
- 0x8056B798: aPOL2_search_player2
- 0x8056B894: aPOL2_set_zone_data
- 0x8056B918: aPOL2_set_player_angl
- 0x8056B924: aPOL2_set_force_talk_info_message_ctrl
- 0x8056B99C: aPOL2_set_force_talk_info_message_ctrl2
- 0x8056B9E8: aPOL2_set_norm_talk_info_message_ctrl
- 0x8056BA9C: aPOL2_message_ctrl
- 0x8056BBC8: aPOL2_player_getout_check
- 0x8056BC44: aPOL2_wait
- 0x8056BD88: aPOL2_walk_pl_same_zone
- 0x8056BDFC: aPOL2_walk_pl_other_zone
- 0x8056BE70: aPOL2_run_pl_same_zone
- 0x8056BEE4: aPOL2_run_pl_other_zone
- 0x8056BF58: aPOL2_turn
- 0x8056BFF0: aPOL2_check_answer
- 0x8056C158: aPOL2_talk_end_wait
- 0x8056C1B4: aPOL2_init_proc
- 0x8056C1E8: aPOL2_setupAction
- 0x8056C244: aPOL2_actor_move
- 0x8056C300: aPG_actor_ct
- 0x8056C44C: aPG_actor_save
- 0x8056C484: aPG_actor_dt
- 0x8056C4DC: aPG_actor_init
- 0x8056C514: aPG_actor_draw
- 0x8056C54C: aPG_Set_continue_msg_num
- 0x8056C590: aPG_ChangeMsgData
- 0x8056C5E0: aPG_set_mail_address
- 0x8056C61C: aPG_set_loan_balance
- 0x8056C710: aPG_set_post_status
- 0x8056C79C: aPG_office_space_check
- 0x8056C828: aPG_check_destination_mailbox
- 0x8056C880: aPG_check_destination
- 0x8056C940: aPG_ask_for_business
- 0x8056CA78: aPG_msg_win_open_wait
- 0x8056CAE0: aPG_receive_demo_start_wait
- 0x8056CB58: aPG_receive_demo_end_wait
- 0x8056CB9C: aPG_receive_after_msg_end_wait
- 0x8056CBEC: aPG_refuse_demo_start_wait
- 0x8056CC34: aPG_refuse_demo_stop_wait
- 0x8056CC74: aPG_refuse_msg_end_wait
- 0x8056CCD8: aPG_refuse_demo_after
- 0x8056CD80: aPG_refuse_after_msg_end_wait
- 0x8056CDE4: aPG_msg_win_close_wait
- 0x8056CE44: aPG_repay_before
- 0x8056CEBC: aPG_repay_menu_close_wait
- 0x8056CFA0: aPG_repay_after
- 0x8056CFFC: aPG_card_err_otherland
- 0x8056D064: aPG_card_check_condition
- 0x8056D0E0: aPG_card_save_menu_close_wait
- 0x8056D158: aPG_receive_menu_close_wait
- 0x8056D27C: aPG_check_receive_after
- 0x8056D310: aPG_deposit_before
- 0x8056D388: aPG_deposit_menu_close_wait
- 0x8056D43C: aPG_deposit_after
- 0x8056D498: aPG_loop_check
- 0x8056D55C: aPG_ask_for_business_init
- 0x8056D588: aPG_msg_win_open_wait_init
- 0x8056D5B0: aPG_refuse_demo_stop_wait_init
- 0x8056D5E4: aPG_refuse_msg_end_wait_init
- 0x8056D658: aPG_refuse_demo_after_init
- 0x8056D67C: aPG_refuse_after_msg_end_wait_init
- 0x8056D6A8: aPG_msg_win_close_wait_init
- 0x8056D6CC: aPG_repay_menu_close_wait_init
- 0x8056D720: aPG_repay_after_recover_init
- 0x8056D748: aPG_repay_after_init
- 0x8056D790: aPG_card_err_otherland_init
- 0x8056D7C8: aPG_card_check_condition_init
- 0x8056D800: aPG_card_save_menu_close_wait_init
- 0x8056D844: aPG_receive_menu_close_wait_init
- 0x8056D888: aPG_deposit_menu_close_wait_init
- 0x8056D8B8: aPG_deposit_after_recover_init
- 0x8056D8E0: aPG_loop_check_init
- 0x8056D91C: aPG_init_proc
- 0x8056D950: aPG_setupAction
- 0x8056D988: aPG_set_talk_info
- 0x8056DA2C: aPG_talk_request
- 0x8056DA5C: aPG_talk_init
- 0x8056DA90: aPG_talk_end_chk
- 0x8056DAE4: aPG_actor_move
- 0x8056DB1C: aPMAN_actor_ct
- 0x8056DC98: aPMAN_actor_save
- 0x8056DCF4: aPMAN_actor_dt
- 0x8056DD2C: aPMAN_actor_init
- 0x8056DD64: aPMAN_actor_draw
- 0x8056DD9C: aPMAN_set_animation
- 0x8056DDEC: aPMAN_BGcheck
- 0x8056DE6C: aPMAN_check_culling
- 0x8056DF50: aPMAN_talk_check
- 0x8056DFC0: aPMAN_set_talk_info_talk_check
- 0x8056E080: aPMAN_talk_request
- 0x8056E0DC: aPMAN_check_delivery
- 0x8056E180: aPMAN_set_delivery_idx
- 0x8056E218: aPMAN_set_move_idx
- 0x8056E240: aPMAN_search_angle
- 0x8056E2B0: aPMAN_order_open_mailbox
- 0x8056E300: aPMAN_eff_wings
- 0x8056E3E0: aPMAN_enter
- 0x8056E4B0: aPMAN_break
- 0x8056E4F0: aPMAN_hover
- 0x8056E530: aPMAN_landing
- 0x8056E5BC: aPMAN_kyoro
- 0x8056E5EC: aPMAN_turn
- 0x8056E644: aPMAN_walk
- 0x8056E708: aPMAN_delivery_turn
- 0x8056E794: aPMAN_delivery
- 0x8056E808: aPMAN_talk_turn
- 0x8056E870: aPMAN_talk_end_wait
- 0x8056E8DC: aPMAN_fly_up
- 0x8056E9B8: aPMAN_exit
- 0x8056EACC: aPMAN_clear_xz_spd
- 0x8056EAE8: aPMAN_enter_init
- 0x8056EB20: aPMAN_break_init
- 0x8056EB84: aPMAN_hover_init
- 0x8056EBD4: aPMAN_landing_init
- 0x8056EBF0: aPMAN_kyoro_init
- 0x8056EC0C: aPMAN_walk_init
- 0x8056EC2C: aPMAN_delivery_init
- 0x8056ECAC: aPMAN_talk_end_wait_init
- 0x8056ECD8: aPMAN_fly_up_init
- 0x8056ED20: aPMAN_exit_init
- 0x8056ED6C: aPMAN_init_proc
- 0x8056EDA0: aPMAN_set_talk_permit
- 0x8056EDB8: aPMAN_setupAction
- 0x8056EE2C: aPMAN_actor_move
- 0x8056EED0: aNRG_actor_ct
- 0x8056EFB8: aNRG_actor_save
- 0x8056EFF0: aNRG_actor_dt
- 0x8056F060: aNRG_actor_init
- 0x8056F098: aNRG_actor_draw
- 0x8056F0D0: aNRG_set_request_act
- 0x8056F164: aNRG_set_house_master_name
- 0x8056F1B0: aNRG_set_shop_address
- 0x8056F22C: aNRG_actor_move
- 0x8056F264: aNRG_demand_payment_talk_proc
- 0x8056F2C4: aNRG_menu_open_wait_talk_proc
- 0x8056F350: aNRG_menu_close_wait_talk_proc
- 0x8056F3DC: aNRG_demo_start_wait_talk_proc
- 0x8056F43C: aNRG_demo_end_wait_talk_proc
- 0x8056F4C0: aNRG_demand_payment_change_talk_proc
- 0x8056F4D8: aNRG_set_force_talk_info
- 0x8056F570: aNRG_force_talk_request
- 0x8056F5A0: aNRG_set_norm_talk_info
- 0x8056F628: aNRG_norm_talk_request
- 0x8056F658: aNRG_talk_init
- 0x8056F688: aNRG_talk_end_chk
- 0x8056F70C: aNRG_approach
- 0x8056F748: aNRG_turn
- 0x8056F784: aNRG_take_with
- 0x8056F808: aNRG_decide_house_wait
- 0x8056F8D4: aNRG_enter_wait
- 0x8056F930: aNRG_exit
- 0x8056FA74: aNRG_restart_wait
- 0x8056FAE0: aNRG_think_main_proc
- 0x8056FB08: aNRG_think_init_proc
- 0x8056FB64: aNRG_call_init
- 0x8056FBB8: aNRG_approach_init
- 0x8056FC70: aNRG_introduce_init
- 0x8056FCA8: aNRG_turn_init
- 0x8056FD00: aNRG_take_with_init
- 0x8056FD70: aNRG_before_open_door_talk2_init
- 0x8056FDA8: aNRG_exit_turn_init
- 0x8056FE60: aNRG_setup_think_proc
- 0x8056FEBC: aNRG_think_proc
- 0x8056FEF0: aNRG_schedule_init_proc
- 0x8056FF3C: aNRG_schedule_main_proc
- 0x8056FFBC: aNRG_schedule_proc
- 0x8056FFF0: aNRG2_actor_ct
- 0x805700D4: aNRG2_actor_save
- 0x8057010C: aNRG2_actor_dt
- 0x80570144: aNRG2_actor_init
- 0x8057017C: aNRG2_actor_draw
- 0x805701B4: aNRG2_set_exit_info
- 0x80570224: aNRG2_exit_check
- 0x80570294: aNRG2_actor_move
- 0x80570308: aNRG2_set_str_j3
- 0x805703F8: aNRG2_set_str_j4
- 0x8057045C: aNRG2_set_str_proc
- 0x805704A0: aNRG2_set_possession
- 0x805705F8: aNRG2_check_job_start
- 0x805706A4: aNRG2_stepup_j1
- 0x805706CC: aNRG2_stepup_j2
- 0x805706F0: aNRG2_stepup_j3
- 0x80570790: aNRG2_stepup_j4
- 0x80570810: aNRG2_stepup_j5
- 0x805708AC: aNRG2_stepup_j6
- 0x8057092C: aNRG2_stepup_j7
- 0x80570950: aNRG2_stepup_j10
- 0x80570974: aNRG2_stepup_j11
- 0x80570998: aNRG2_stepup_job
- 0x80570A04: aNRG2_setup_job
- 0x80570A5C: aNRG2_say_hello_talk_proc
- 0x80570B48: aNRG2_say_hello_sp_talk_proc
- 0x80570B88: aNRG2_say_hello_sp2_talk_proc
- 0x80570BC8: aNRG2_cloth_chk_talk_proc
- 0x80570C24: aNRG2_demo_start_wait_talk_proc
- 0x80570CC4: aNRG2_demo_end_wait_talk_proc
- 0x80570D10: aNRG2_demo_end_wait2_talk_proc
- 0x80570D68: aNRG2_job_start_talk_proc
- 0x80570DEC: aNRG2_job_end_talk_proc
- 0x80570E8C: aNRG2_3rd_job_end_talk_proc
- 0x80570F34: aNRG2_demo2_start_wait_talk_proc
- 0x80571010: aNRG2_demo2_start_wait2_talk_proc
- 0x80571070: aNRG2_demo2_end_wait_talk_proc
- 0x805710C4: aNRG2_give_new_paper_talk_proc
- 0x80571148: aNRG2_check_more_paper_talk_proc
- 0x805711F4: aNRG2_decide_new_target_talk_proc
- 0x80571280: aNRG2_demo3_start_wait_talk_proc
- 0x80571370: aNRG2_all_job_end_talk_proc
- 0x8057139C: aNRG2_change_talk_proc
- 0x805713B4: aNRG2_set_goods_talk_info
- 0x80571414: aNRG2_goods_talk_request
- 0x80571500: aNRG2_cloth_check
- 0x80571564: aNRG2_check_upstair
- 0x805715C0: aNRG2_set_force_talk_info
- 0x80571670: aNRG2_force_talk_request
- 0x805716B4: aNRG2_set_norm_talk_info
- 0x80571734: aNRG2_norm_talk_request
- 0x805717C8: aNRG2_talk_init
- 0x805717F8: aNRG2_talk_end_chk
- 0x8057187C: aNRG2_setup_j1_cont
- 0x805718F4: aNRG2_setup_j2_cont
- 0x8057190C: aNRG2_setup_j3_cont
- 0x8057196C: aNRG2_setup_j4_cont
- 0x805719E8: aNRG2_setup_j5_cont
- 0x80571A28: aNRG2_setup_j6_cont
- 0x80571A88: aNRG2_setup_j7_cont
- 0x80571AA0: aNRG2_setup_j10_cont
- 0x80571AA8: aNRG2_setup_j11_cont
- 0x80571AB0: aNRG2_setup_job_cont
- 0x80571B08: aNRG2_talk_start_wait
- 0x80571B7C: aNRG2_job_start_wait
- 0x80571BF4: aNRG2_all_job_end
- 0x80571C3C: aNRG2_think_main_proc
- 0x80571C70: aNRG2_think_init_proc
- 0x80571DA4: aNRG2_send_away_init
- 0x80571DE4: aNRG2_talk_start_wait_init
- 0x80571E04: aNRG2_job_start_wait_init
- 0x80571E24: aNRG2_all_job_end_init
- 0x80571E74: aNRG2_setup_think_proc
- 0x80571F1C: aNRG2_think_proc
- 0x80571F50: aNRG2_schedule_init_proc
- 0x80571F9C: aNRG2_schedule_main_proc
- 0x8057201C: aNRG2_schedule_proc
- 0x80572050: aNRST_actor_ct
- 0x80572210: aNRST_actor_save
- 0x80572248: aNRST_actor_dt
- 0x80572280: aNRST_actor_init
- 0x805722B8: aNRST_actor_move
- 0x80572304: aNRST_actor_draw
- 0x8057233C: aNRST_think_start
- 0x8057234C: aNRST_think_title
- 0x805723A8: aNRST_think_door
- 0x8057248C: aNRST_think_main_proc
- 0x805724D0: aNRST_think_init_proc
- 0x805724E8: aNRST_think_proc
- 0x8057251C: aNRST_schedule_init_proc
- 0x80572570: aNRST_schedule_main_proc
- 0x805725F0: aNRST_schedule_proc
- 0x80572624: aNRST_get_message
- 0x805726D4: aNRST_set_slot_name
- 0x80572720: aNRST_set_slot_before_save
- 0x80572768: aNRST_select2
- 0x805728AC: aNRST_select
- 0x80572990: aNRST_select3
- 0x80572A28: aNRST_before_save
- 0x80572AC4: aNRST_before_init
- 0x80572B24: aNRST_init
- 0x80572BF4: aNRST_unset_lock_select2
- 0x80572C6C: aNRST_save
- 0x80572F08: aNRST_change_talk_proc
- 0x80572F24: aNRST_set_talk_info_talk_request
- 0x80572F58: aNRST_talk_request
- 0x80572F88: aNRST_talk_init
- 0x80572FD0: aNRST_talk_end_chk
- 0x80573044: aNRTC_actor_ct
- 0x805731E0: aNRTC_actor_save
- 0x80573218: aNRTC_actor_dt
- 0x80573250: aNRTC_actor_init
- 0x80573288: aNRTC_actor_move
- 0x80573364: aNRTC_actor_draw
- 0x8057339C: aNRTC_think_start
- 0x805733D4: aNRTC_think_title
- 0x80573430: aNRTC_think_door
- 0x8057348C: aNRTC_think_check
- 0x80573504: aNRTC_think_ipmenu
- 0x80573544: aNRTC_think_main_proc
- 0x80573668: aNRTC_think_init_proc
- 0x80573684: aNRTC_think_proc
- 0x805736B8: aNRTC_schedule_init_proc
- 0x80573730: aNRTC_schedule_main_proc
- 0x805737B0: aNRTC_schedule_proc
- 0x805737E4: aNRTC_set_slot_name
- 0x80573834: aNRTC_rtc_err
- 0x805738B0: aNRTC_timer_open_msg_wait
- 0x80573924: aNRTC_timer_open_wait
- 0x80573990: aNRTC_timer_close_wait
- 0x805739F0: aNRTC_delete_bf
- 0x80573A5C: aNRTC_delete
- 0x80573B40: aNRTC_format_chk
- 0x80573BEC: aNRTC_format
- 0x80573D14: aNRTC_break_data
- 0x80573D90: aNRTC_break_data_2
- 0x80573E30: aNRTC_change_talk_proc
- 0x80573E4C: aNRTC_set_talk_info_talk_request
- 0x80573EF8: aNRTC_talk_request
- 0x80573F28: aNRTC_talk_init
- 0x80573FF4: aNRTC_talk_end_chk
- 0x80574134: aSEN_actor_ct
- 0x805741B8: aSEN_actor_save
- 0x805741F0: aSEN_actor_dt
- 0x80574254: aSEN_actor_init
- 0x8057428C: aSEN_actor_draw
- 0x805742F0: aSEN_set_anime_current
- 0x8057432C: aSEN_set_request_act
- 0x80574348: aSEN_pl_ride_on_end_wait
- 0x805743C8: aSEN_sing_start_wait
- 0x80574408: aSEN_touch_wharf_start_wait
- 0x8057443C: aSEN_touch_wharf_end_wait
- 0x805744AC: aSEN_pl_ride_off_end_wait
- 0x8057456C: aSEN_think_main_proc
- 0x805745D0: aSEN_think_init_proc
- 0x80574658: aSEN_talk_start_wait_init
- 0x80574664: aSEN_pl_ride_on_end_wait_init
- 0x80574674: aSEN_start_call_v_init
- 0x80574688: aSEN_sing_start_wait_init
- 0x805746A8: aSEN_touch_wharf_end_wait_init
- 0x805746BC: aSEN_arrive_call_init
- 0x805746E0: aSEN_pl_ride_off_end_wait_init
- 0x805746F0: aSEN_out_of_service_init
- 0x805746FC: aSEN_out_of_service2_init
- 0x80574750: aSEN_setup_think_proc
- 0x805747F4: aSEN_think_proc
- 0x80574828: aSEN_schedule_init_proc
- 0x805748C8: aSEN_schedule_main_proc
- 0x80574948: aSEN_schedule_proc
- 0x8057497C: aSEN_get_msg_no
- 0x80574A08: aSEN_agb_trans_se_proc
- 0x80574A74: aSEN_compare_ram_island_and_village
- 0x80574AD0: aSEN_compare_ram_island_and_agb_island
- 0x80574B50: aSEN_chk_exist_island_data_in_ram
- 0x80574BA0: aSEN_set_island_info_for_agb
- 0x80574BF8: aSEN_setup_pl_ride_on
- 0x80574C24: aSEN_sing_end_wait_talk_proc
- 0x80574C88: aSEN_pl_ride_on_check_talk_proc
- 0x80574D54: aSEN_chk_exist_island_data_in_ram_talk_proc
- 0x80574E38: aSEN_msg_win_close_wait_talk_proc
- 0x80574E88: aSEN_get_island_name_menu_start_wait_talk_proc
- 0x80574F0C: aSEN_get_island_name_menu_end_wait_talk_proc
- 0x80574F68: aSEN_msg_win_open_wait_talk_proc
- 0x80574FF0: aSEN_pl_ride_on_check2_talk_proc
- 0x80575104: aSEN_chk_write_for_agb_talk_proc
- 0x805751F4: aSEN_chk_rewrite_for_agb_talk_proc
- 0x805752B4: aSEN_trans_data_for_agb_start_wait_talk_proc
- 0x80575354: aSEN_trans_data_for_agb_end_wait_talk_proc
- 0x805754AC: aSEN_trans_prg_for_agb_end_wait_talk_proc
- 0x80575590: aSEN_trans_prg2_for_agb_end_wait_talk_proc
- 0x80575690: aSEN_chk_power_agb_talk_proc
- 0x80575748: aSEN_chk_exist_island_data_in_agb_talk_proc
- 0x805757C4: aSEN_chk_read_agb_talk_proc
- 0x805758F4: aSEN_chk_retry_read_agb_talk_proc
- 0x805759C0: aSEN_chk_use_island_data_in_ram_talk_proc
- 0x80575A8C: aSEN_chk_power_agb2_talk_proc
- 0x80575B64: aSEN_chk_trans_island_data_from_agb2_talk_proc
- 0x80575C14: aSEN_chk_exist_island_data_in_agb2_talk_proc
- 0x80575CAC: aSEN_chk_read_agb2_talk_proc
- 0x80575DC8: aSEN_chk_power_agb3_talk_proc
- 0x80575EA0: aSEN_chk_exist_island_data_in_agb3_talk_proc
- 0x80575F38: aSEN_chk_read_agb3_talk_proc
- 0x80576054: aSEN_change_talk_proc
- 0x80576074: aSEN_set_force_talk_info
- 0x80576110: aSEN_force_talk_request
- 0x80576140: aSEN_set_norm_talk_info
- 0x80576254: aSEN_norm_talk_request
- 0x80576284: aSEN_talk_init
- 0x805762A8: aSEN_talk_end_chk
- 0x8057632C: aSEN_set_matrix
- 0x805763F0: aSEN_actor_move
- 0x80576468: aNSS_actor_ct
- 0x8057654C: aNSS_actor_save
- 0x80576584: aNSS_actor_dt
- 0x805765D4: aNSS_actor_init
- 0x8057660C: aNSS_actor_draw
- 0x80576644: aNSS_set_animation
- 0x80576690: aNSS_set_walk_spd
- 0x805766BC: aNSS_set_stop_spd
- 0x805766D8: aNSS_set_door_SE
- 0x80576758: aNSS_enter_walk_back_deck
- 0x80576790: aNSS_enter_turn_back_deck
- 0x80576800: aNSS_enter_back_door
- 0x805768B0: aNSS_walk_to_front_door
- 0x805768EC: aNSS_exit_front_door
- 0x80576938: aNSS_walk_to_back_door
- 0x80576974: aNSS_exit_turn_back_deck
- 0x80576A08: aNSS_exit_walk_back_deck
- 0x80576A28: aNSS_enter_walk_back_deck_init
- 0x80576A48: aNSS_enter_turn_back_deck_init
- 0x80576A68: aNSS_enter_back_door_init
- 0x80576A9C: aNSS_walk_to_front_door_init
- 0x80576ABC: aNSS_exit_front_door_init
- 0x80576AF0: aNSS_enter_front_door_init
- 0x80576B24: aNSS_exit_back_door_init
- 0x80576B58: aNSS_exit_walk_back_deck_init
- 0x80576B78: aNSS_init_proc
- 0x80576BAC: aNSS_setupAction
- 0x80576C14: aNSS_actor_move
- 0x80576CA4: aNSM_actor_ct
- 0x80576D58: aNSM_actor_save
- 0x80576D90: aNSM_actor_dt
- 0x80576DC8: aNSM_actor_init
- 0x80576E00: aNSM_actor_draw
- 0x80576E38: aNSM_get_zone
- 0x80576E94: aNSM_get_next_zone
- 0x80576EB0: aNSM_search_player
- 0x80576F40: aNSM_search_player2
- 0x8057701C: aNSM_check_safe_zone
- 0x80577050: aNSM_actor_move
- 0x8057C604: aSHM_actor_ct
- 0x8057C69C: aSHM_actor_save
- 0x8057C6BC: aSHM_actor_dt
- 0x8057C6F4: aSHM_actor_init
- 0x8057C72C: aSHM_actor_draw
- 0x8057C764: aSHM_ftr_revise_x
- 0x8057C794: aSHM_ftr_revise_z
- 0x8057C7C8: aSHM_set_base_position
- 0x8057C9EC: aSHM_set_avoid_pos
- 0x8057CA10: aSHM_set_start_avoid_pos
- 0x8057CA3C: aSHM_set_next_avoid_pos
- 0x8057CA94: aSHM_set_request_act
- 0x8057CB28: aSHM_actor_move
- 0x8057CC94: check_null_lottery
- 0x8057CCDC: search_lottery_ticket
- 0x8057CD48: check_lottery_ticket
- 0x8057CDBC: uketori_lottery_ticket_amari
- 0x8057CE24: uketori_lottery_ticket
- 0x8057CEC8: aSHM_get_Fgitem_pos
- 0x8057CF5C: aSHM_remove_gift
- 0x8057D000: to_atari
- 0x8057D0DC: fukubiki_before_process
- 0x8057D1AC: aSHM_talk_try
- 0x8057D25C: aSHM_talk_hazure
- 0x8057D2F0: aSHM_talk_retry
- 0x8057D3A4: aSHM_stop_player
- 0x8057D464: aSHM_give_player
- 0x8057D550: aSHM_talk_tamakesi
- 0x8057D5C8: aSHM_say_goodbye
- 0x8057D620: aSHM_exit_wait
- 0x8057D694: aSHM_change_talk_proc
- 0x8057D6F4: aSHM_set_force_talk_info
- 0x8057D788: aSHM_force_talk_request
- 0x8057D7B8: aSHM_set_norm_talk_info
- 0x8057D820: aSHM_norm_talk_request
- 0x8057D850: aSHM_talk_init
- 0x8057D894: aSHM_talk_end_chk
- 0x8057D928: aSHM_set_start_think
- 0x8057D9F4: aSHM_normal_wait_common
- 0x8057DA70: aSHM_normal_wait
- 0x8057DAE8: aSHM_normal_wait2
- 0x8057DB40: aSHM_normal_wait3
- 0x8057DBB8: aSHM_normal_turn
- 0x8057DBE4: aSHM_move
- 0x8057DC60: aSHM_move_turn
- 0x8057DC90: aSHM_move_player
- 0x8057DD40: aSHM_wait_player
- 0x8057DD94: aSHM_wait_player2
- 0x8057DE4C: aSHM_wait_player3
- 0x8057DEC4: aSHM_wait_player4
- 0x8057DF18: aSHM_hirou
- 0x8057DFD4: aSHM_happy_academy3
- 0x8057E034: aSHM_think_main_proc
- 0x8057E0C4: aSHM_think_init_proc
- 0x8057E124: aSHM_normal_wait_init
- 0x8057E15C: aSHM_normal_turn_init
- 0x8057E1B8: aSHM_move_init
- 0x8057E1FC: aSHM_move_turn_init
- 0x8057E240: aSHM_fade_out_init
- 0x8057E244: aSHM_hirou_init
- 0x8057E2A4: aSHM_happy_academy_init
- 0x8057E2D0: aSHM_happy_academy2_init
- 0x8057E328: aSHM_setup_think_proc
- 0x8057E384: aSHM_think_proc
- 0x8057E3B8: aSHM_schedule_init_proc
- 0x8057E404: aSHM_schedule_main_proc
- 0x8057E484: aSHM_schedule_proc
- 0x8057E4B8: aNSO_actor_ct
- 0x8057E564: aNSO_actor_save
- 0x8057E59C: aNSO_actor_dt
- 0x8057E5D4: aNSO_actor_init
- 0x8057E60C: aNSO_actor_move
- 0x8057E64C: aNSO_actor_draw
- 0x8057E684: aNSO_set_animation
- 0x8057E6D0: aNSO_set_request_act
- 0x8057E6EC: aNSO_sleep
- 0x8057E71C: aNSO_cramp
- 0x8057E734: aNSO_setupAction
- 0x8057E7BC: aNSO_act_chg_data_proc
- 0x8057E7C8: aNSO_act_init_proc
- 0x8057E7EC: aNSO_act_main_proc
- 0x8057E814: aNSO_act_proc
- 0x8057E848: aNSO_think_main_proc
- 0x8057E8C8: aNSO_think_init_proc
- 0x8057E8FC: aNSO_think_proc
- 0x8057E930: aNSO_schedule_init_proc
- 0x8057E984: aNSO_schedule_main_proc
- 0x8057EA04: aNSO_schedule_proc
- 0x8057EA38: aNS_actor_ct
- 0x8057EAD8: aNS_actor_save
- 0x8057EAF8: aNS_actor_dt
- 0x8057EB30: aNS_actor_init
- 0x8057EB68: aNS_set_request_act
- 0x8057EBFC: aNS_actor_move
- 0x8057EC5C: aNS_actor_draw
- 0x8057EC94: aNS_change_talk_proc
- 0x8057ECA0: aNS_set_norm_talk_info
- 0x8057ED38: aNS_norm_talk_request
- 0x8057ED80: aNS_talk_init
- 0x8057EDCC: aNS_talk_end_chk
- 0x8057EE60: aNS_think_main_proc
- 0x8057EE88: aNS_think_init_proc
- 0x8057EEBC: aNS_normal_wait_init
- 0x8057EEF4: aNS_wander_init
- 0x8057EF44: aNS_setup_think_proc
- 0x8057EFE0: aNS_think_proc
- 0x8057F020: aNS_schedule_init_proc
- 0x8057F06C: aNS_schedule_main_proc
- 0x8057F0EC: aNS_schedule_proc
- 0x8057F12C: aSTM_actor_ct
- 0x8057F1C8: aSTM_actor_save
- 0x8057F1E8: aSTM_actor_dt
- 0x8057F278: aSTM_actor_init
- 0x8057F2B0: aSTM_actor_draw
- 0x8057F2E8: aSTM_set_request_act
- 0x8057F37C: aSTM_actor_move
- 0x8057F3B4: aSTM_train_go_ok
- 0x8057F3D0: aSTM_set_force_talk_info
- 0x8057F490: aSTM_force_talk_request
- 0x8057F4C0: aSTM_set_norm_talk_info
- 0x8057F610: aSTM_norm_talk_request
- 0x8057F640: aSTM_talk_init
- 0x8057F6A4: aSTM_talk_end_chk
- 0x8057F75C: aSTM_Change_sound
- 0x8057F880: aSTM_look_player
- 0x8057F8FC: aSTM_talk_wait
- 0x8057F9B4: player_x_drt
- 0x8057F9D8: aSTM_get_off_wait
- 0x8057FB00: aSTM_turn
- 0x8057FB24: aSTM_interrupt_turn
- 0x8057FB50: aSTM_interrupt_move
- 0x8057FBD8: aSTM_make_train_bf
- 0x8057FC98: aSTM_make_train
- 0x8057FD28: aSTM_train_arrive_wait
- 0x8057FD94: aSTM_move_turn_bf
- 0x8057FDB8: aSTM_move
- 0x8057FE48: aSTM_in_train
- 0x8057FEFC: aSTM_in_train2
- 0x8057FF54: aSTM_see_off
- 0x8057FFD0: aSTM_think_main_proc
- 0x80580020: aSTM_think_init_proc
- 0x8058010C: aSTM_get_off_wait_init
- 0x80580150: aSTM_intro_demo_wait_init
- 0x8058019C: aSTM_interrupt_turn_init
- 0x80580208: aSTM_interrupt_move_init
- 0x80580288: aSTM_make_train_bf_init
- 0x8058029C: aSTM_make_train_init
- 0x805802BC: aSTM_move_turn_init
- 0x80580368: aSTM_move_init
- 0x805803D0: aSTM_see_off_init
- 0x80580428: aSTM_game_end_init
- 0x8058048C: aSTM_setup_think_proc
- 0x80580510: aSTM_think_proc
- 0x80580544: aSTM_schedule_init_proc
- 0x80580590: aSTM_schedule_main_proc
- 0x80580610: aSTM_schedule_proc
- 0x80580644: aNSPM_actor_ct
- 0x805806F8: aNSPM_actor_save
- 0x80580730: aNSPM_actor_dt
- 0x80580768: aNSPM_actor_init
- 0x805807A0: aNSPM_actor_draw
- 0x805807D8: aNSPM_get_zone_sub
- 0x80580808: aNSPM_get_zone
- 0x80580994: aNSPM_get_next_zone
- 0x805809B4: aNSPM_search_player
- 0x80580A44: aNSPM_search_player2
- 0x80580B20: aNSPM_check_safe_zone
- 0x80580B5C: aNSPM_actor_move
- 0x80586110: aNTT_actor_ct
- 0x80586334: aNTT_actor_save
- 0x80586354: aNTT_actor_dt
- 0x805863E0: aNTT_actor_init
- 0x80586418: aNTT_actor_move
- 0x80586470: aNTT_actor_draw
- 0x80586520: aNTT_bitset_func
- 0x8058659C: aNTT_bitcheck_func
- 0x80586614: aNTT_enso_init
- 0x80586630: aTTN_give_merody
- 0x805866F0: aNTT_talk_select0
- 0x805867F0: aNTT_talk_select1
- 0x80586948: aNTT_talk_stop_player
- 0x80586A24: aNTT_talk_submenu
- 0x80586AA4: aNTT_talk_submenu2
- 0x80586BC8: aNTT_talk_give
- 0x80586C4C: aNTT_change_talk_proc
- 0x80586CAC: aNTT_set_force_talk_info
- 0x80586D3C: aNTT_force_talk_request
- 0x80586D84: aNTT_set_norm_talk_info
- 0x80586E38: aNTT_norm_talk_request
- 0x80586E80: aNTT_talk_init
- 0x80586EE4: aNTT_talk_end_chk
- 0x80586F88: aNTT_wait
- 0x80587090: aNTT_roll
- 0x80587120: aNTT_roll1
- 0x805871F4: aNTT_roll2
- 0x80587438: aNTT_roll4
- 0x805875D8: aNTT_roll_end
- 0x80587680: aNTT_think_main_proc
- 0x805876B8: aNTT_think_init_proc
- 0x805876EC: aNTT_setup_think_proc
- 0x8058778C: aNTT_think_proc
- 0x805877CC: aNTT_schedule_init_proc
- 0x80587818: aNTT_schedule_main_proc
- 0x80587898: aNTT_schedule_proc
- 0x805878D8: aPST_actor_ct
- 0x8058795C: aPST_actor_dt
- 0x805879CC: aPST_actor_save
- 0x80587A04: aPST_actor_init
- 0x80587A3C: aPST_actor_draw
- 0x80587A74: aPST_set_request_act
- 0x80587B08: aPST_make_umbrella
- 0x80587BAC: aPST_actor_move
- 0x80587C14: aPST_check_first_present
- 0x80587C48: aPST_present_send_start_wait_talk_proc
- 0x80587DA4: aPST_present_send_end_wait_talk_proc
- 0x80587DFC: aPST_change_talk_proc
- 0x80587E14: aPST_set_talk_info
- 0x80587FD4: aPST_talk_request
- 0x80588004: aPST_talk_init
- 0x80588034: aPST_talk_end_chk
- 0x805880A4: aPST_wait
- 0x80588104: aPST_exit_turn
- 0x80588140: aPST_exit
- 0x80588288: aPST_think_main_proc
- 0x805882B0: aPST_think_init_proc
- 0x805882D4: aPST_exit_turn_init
- 0x80588378: aPST_setup_think_proc
- 0x805883D4: aPST_think_proc
- 0x80588408: aPST_schedule_init_proc
- 0x80588500: aPST_schedule_main_proc
- 0x80588580: aPST_schedule_proc
- 0x805885B4: aTS0_actor_ct
- 0x8058866C: aTS0_actor_save
- 0x805886A4: aTS0_actor_dt
- 0x80588788: aTS0_actor_init
- 0x805887C0: aTS0_actor_move
- 0x80588894: aTS0_actor_draw
- 0x805888CC: aTS0_set_current
- 0x80588938: aTS0_set_animation
- 0x80588990: aTS0_set_animation2
- 0x805889D4: aTS0_set_request_act
- 0x805889F0: aTS0_act_chg_data_proc
- 0x805889FC: aTS0_act_init_proc
- 0x80588A3C: aTS0_act_proc
- 0x80588A70: aTS0_setup_delay_cnt
- 0x80588AC4: aTS0_check_over_bgm_block_part
- 0x80588B4C: aTS0_setup_morph
- 0x80588B9C: aTS0_ctrl_gymnastic_force
- 0x80588C24: aTS0_ctrl_gymnastic_sub0
- 0x80588DB0: aTS0_ctrl_gymnastic_sub1
- 0x80588E24: aTS0_ctrl_gymnastic_restart
- 0x80588E98: aTS0_ctrl_gymnastic_failure_step1
- 0x80588EC0: aTS0_ctrl_gymnastic_failure_step2
- 0x80588FC4: aTS0_setup_anm_data
- 0x805890B0: aTS0_ctrl_gymnastic
- 0x805891FC: aTS0_think_main_proc
- 0x8058924C: aTS0_think_init_proc
- 0x80589280: aTS0_think_proc
- 0x805892B4: aTS0_schedule_init_proc
- 0x805893C4: aTS0_schedule_main_proc
- 0x80589444: aTS0_schedule_proc
- 0x80589478: aTS0_set_talk_info
- 0x805895B4: aTS0_talk_request
- 0x805895E4: aTS0_talk_init
- 0x8058969C: aTS0_talk_end_chk
- 0x80589710: aTMN0_actor_ct
- 0x805897EC: aTMN0_actor_save
- 0x8058980C: aTMN0_actor_dt
- 0x80589844: aTMN0_actor_init
- 0x8058987C: aTMN0_set_request_act
- 0x80589910: aTMN0_actor_move
- 0x80589948: aTMN0_actor_draw
- 0x80589980: aTMN0_change_talk_proc
- 0x8058999C: aTMN0_set_nsg
- 0x805899F8: aTMN0_set_norm_talk_info
- 0x80589A40: aTMN0_norm_talk_request
- 0x80589A88: aTMN0_talk_init
- 0x80589ACC: aTMN0_talk_end_chk
- 0x80589B50: aTMN0_set_move_pos
- 0x80589BE8: aTMN0_birth
- 0x80589C4C: aTMN0_turn_next
- 0x80589C90: aTMN0_move_next
- 0x80589D28: aTMN0_timer_next
- 0x80589D94: aTMN0_think_main_proc
- 0x80589E08: aTMN0_think_init_proc
- 0x80589E58: aTMN0_normal_wait_init
- 0x80589E90: aTMN0_turn_init
- 0x80589EDC: aTMN0_move_init
- 0x80589F1C: aTMN0_kansen_init
- 0x80589FC0: aTMN0_setup_think_proc
- 0x8058A070: aTMN0_think_proc
- 0x8058A0B0: aTMN0_schedule_init_proc
- 0x8058A0FC: aTMN0_schedule_main_proc
- 0x8058A17C: aTMN0_schedule_proc
- 0x8058A1BC: aTMN1_actor_ct
- 0x8058A2E0: aTMN1_actor_save
- 0x8058A300: aTMN1_actor_dt
- 0x8058A368: aTMN1_actor_init
- 0x8058A3A0: aTMN1_set_request_act
- 0x8058A434: aTMN1_tama_process
- 0x8058A544: aTMN1_actor_move
- 0x8058A5A0: aTMN1_actor_draw
- 0x8058A5D8: aTMN1_set_norm_talk_info
- 0x8058A668: aTMN1_norm_talk_request
- 0x8058A6B0: aTMN1_talk_init
- 0x8058A6F4: aTMN1_talk_end_chk
- 0x8058A778: aTMN1_nageru_bitcheck
- 0x8058A7A0: aTMN1_nageru_bitset
- 0x8058A7DC: aTMN1_nageru_bitclr
- 0x8058A814: aTMN1_Tamakago_angle
- 0x8058A884: aTMN1_Next_move
- 0x8058A9DC: aTMN1_timer_next
- 0x8058AA20: aTMN1_birth
- 0x8058AAB8: aTMN1_walk
- 0x8058AB70: aTMN1_turn_next
- 0x8058ABA8: aTMN1_hirou
- 0x8058AC40: aTMN1_hirou_sp
- 0x8058AC70: aTMN1_anime_next
- 0x8058ACCC: aTMN1_nageru
- 0x8058ADFC: aTMN1_nageru_end
- 0x8058AEC4: aTMN1_think_main_proc
- 0x8058AF74: aTMN1_think_init_proc
- 0x8058AFC4: aTMN1_normal_wait_init
- 0x8058AFFC: aTMN1_hirou_mae_init
- 0x8058B080: aTMN1_move_init
- 0x8058B0CC: aTMN1_kyoro_mae_init
- 0x8058B100: aTMN1_kyoro_init
- 0x8058B15C: aTMN1_walk_turn_init
- 0x8058B1B0: aTMN1_hirou_init
- 0x8058B1F0: aTMN1_hirou_sp_init
- 0x8058B240: aTMN1_hirou_end_init
- 0x8058B278: aTMN1_nageru_init
- 0x8058B2D8: aTMN1_nageru_end_init
- 0x8058B334: aTMN1_setup_think_proc
- 0x8058B3D8: aTMN1_think_proc
- 0x8058B418: aTMN1_schedule_init_proc
- 0x8058B464: aTMN1_schedule_main_proc
- 0x8058B4E4: aTMN1_schedule_proc
- 0x8058B524: aTKN0_actor_ct
- 0x8058B660: aTKN0_actor_save
- 0x8058B680: aTKN0_actor_dt
- 0x8058B6FC: aTKN0_actor_init
- 0x8058B734: aTKN0_set_request_act
- 0x8058B7C8: aTKN0_make_pistoru
- 0x8058B83C: aTKN0_actor_move
- 0x8058B898: aTKN0_actor_draw
- 0x8058B8D0: aTKN0_set_norm_talk_info
- 0x8058B960: aTKN0_norm_talk_request
- 0x8058B9A8: aTKN0_talk_init
- 0x8058B9EC: aTKN0_talk_end_chk
- 0x8058BA70: aTKN0_turn_next
- 0x8058BAAC: aTKN0_birth
- 0x8058BB18: aTKN0_wait
- 0x8058BB80: aTKN0_anime_next
- 0x8058BBE0: aTKN0_timer_next
- 0x8058BC28: aTKN0_lathe
- 0x8058BCCC: aTKN0_think_main_proc
- 0x8058BD58: aTKN0_think_init_proc
- 0x8058BDA0: aTKN0_normal_wait_init
- 0x8058BDD8: aTKN0_turn_f_init
- 0x8058BE34: aTKN0_ready_init
- 0x8058BE68: aTKN0_set_init
- 0x8058BEBC: aTKN0_set_af_init
- 0x8058BF5C: aTKN0_start_init
- 0x8058C060: aTKN0_lathe_init
- 0x8058C088: aTKN0_setup_think_proc
- 0x8058C124: aTKN0_think_proc
- 0x8058C164: aTKN0_schedule_init_proc
- 0x8058C1B0: aTKN0_schedule_main_proc
- 0x8058C230: aTKN0_schedule_proc
- 0x8058C270: aTKN1_actor_ct
- 0x8058C32C: aTKN1_actor_save
- 0x8058C34C: aTKN1_actor_dt
- 0x8058C384: aTKN1_actor_init
- 0x8058C450: aTKN1_actor_move
- 0x8058C4FC: aTKN1_actor_draw
- 0x8058C534: aTKN1_set_norm_talk_info
- 0x8058C56C: aTKN1_norm_talk_request
- 0x8058C5B4: aTKN1_talk_init
- 0x8058C5F8: aTKN1_talk_end_chk
- 0x8058C70C: aTKN1_local_to_goal
- 0x8058C7A4: aTKN1_local_redy_check
- 0x8058C8AC: aTKN1_birth
- 0x8058C944: aTKN1_warmup
- 0x8058CA04: aTKN1_warmup3
- 0x8058CA94: aTKN1_turn_next
- 0x8058CAD0: aTKN1_ready
- 0x8058CBA0: aTKN1_run
- 0x8058CD20: aTKN1_kokeru
- 0x8058CDFC: aTKN1_getup
- 0x8058CE8C: aTKN1_kansen_bf
- 0x8058CF10: aTKN1_kansen
- 0x8058CFF8: aTKN1_goal1
- 0x8058D028: aTKN1_omedeto
- 0x8058D128: aTKN1_omedeto_af
- 0x8058D1D4: aTKN1_move
- 0x8058D250: aTKN1_move_wm
- 0x8058D300: aTKN1_goal_af
- 0x8058D420: aTKN1_think_main_proc
- 0x8058D5AC: aTKN1_think_init_proc
- 0x8058D604: aTKN1_setup_think_proc
- 0x8058D6B0: aTKN1_think_proc
- 0x8058D6F0: aTKN1_schedule_init_proc
- 0x8058D73C: aTKN1_schedule_main_proc
- 0x8058D808: aTKN1_schedule_proc
- 0x8058D848: aTM0_actor_ct
- 0x8058D8CC: aTM0_actor_save
- 0x8058D904: aTM0_actor_dt
- 0x8058D93C: aTM0_actor_init
- 0x8058D974: aTM0_actor_move
- 0x8058D9AC: aTM0_actor_draw
- 0x8058D9E4: aTM0_set_animation
- 0x8058DA24: aTM0_set_request_act
- 0x8058DA40: aTM0_act_chg_data_proc
- 0x8058DA4C: aTM0_act_init_proc
- 0x8058DA74: aTM0_act_proc
- 0x8058DAA8: aTM0_think_main_proc
- 0x8058DB04: aTM0_think_init_proc
- 0x8058DB38: aTM0_think_proc
- 0x8058DB6C: aTM0_schedule_init_proc
- 0x8058DC5C: aTM0_schedule_main_proc
- 0x8058DD54: aTM0_schedule_proc
- 0x8058DD88: aTM0_set_talk_info
- 0x8058DE90: aTM0_talk_request
- 0x8058DEC0: aTM0_talk_init
- 0x8058DEE4: aTM0_talk_end_chk
- 0x8058DF28: aTM1_actor_ct
- 0x8058DFAC: aTM1_actor_save
- 0x8058DFE4: aTM1_actor_dt
- 0x8058E01C: aTM1_actor_init
- 0x8058E054: aTM1_actor_move
- 0x8058E08C: aTM1_actor_draw
- 0x8058E0C4: aTM1_set_animation
- 0x8058E110: aTM1_set_request_act
- 0x8058E12C: aTM1_act_chg_data_proc
- 0x8058E138: aTM1_act_init_proc
- 0x8058E170: aTM1_act_proc
- 0x8058E1A4: aTM1_think_main_proc
- 0x8058E210: aTM1_think_init_proc
- 0x8058E244: aTM1_think_proc
- 0x8058E278: aTM1_schedule_init_proc
- 0x8058E370: aTM1_schedule_main_proc
- 0x8058E474: aTM1_schedule_proc
- 0x8058E4A8: aTM1_set_talk_info
- 0x8058E5C0: aTM1_set_talk_info2
- 0x8058E64C: aTM1_talk_request
- 0x8058E690: aTM1_talk_init
- 0x8058E6B4: aTM1_talk_end_chk
- 0x8058E6F8: aTNN0_actor_ct
- 0x8058E818: aTNN0_actor_save
- 0x8058E838: aTNN0_actor_dt
- 0x8058E8C4: aTNN0_actor_init
- 0x8058E8FC: aTNN0_set_request_act
- 0x8058E990: aTNN0_make_hata
- 0x8058EA04: aTNN0_actor_move
- 0x8058EA60: aTNN0_actor_draw
- 0x8058EA98: aTNN0_set_norm_talk_info
- 0x8058EB2C: aTNN0_norm_talk_request
- 0x8058EB74: aTNN0_talk_init
- 0x8058EBB8: aTNN0_talk_end_chk
- 0x8058EC3C: aTNN0_birth
- 0x8058ED80: aTNN0_think_main_proc
- 0x8058EDBC: aTNN0_think_init_proc
- 0x8058EE04: aTNN0_wait_init
- 0x8058EE78: aTNN0_setup_think_proc
- 0x8058EF14: aTNN0_think_proc
- 0x8058EF54: aTNN0_schedule_init_proc
- 0x8058EFA0: aTNN0_schedule_main_proc
- 0x8058F020: aTNN0_schedule_proc
- 0x8058F060: aTNN1_actor_ct
- 0x8058F168: aTNN1_actor_save
- 0x8058F188: aTNN1_actor_dt
- 0x8058F210: aTNN1_actor_init
- 0x8058F248: aTNN1_set_request_act
- 0x8058F2DC: aTNN1_actor_move
- 0x8058F3AC: aTNN1_actor_draw
- 0x8058F3E4: aTNN1_set_norm_talk_info
- 0x8058F478: aTNN1_norm_talk_request
- 0x8058F4C0: aTNN1_talk_init
- 0x8058F574: aTNN1_talk_end_chk
- 0x8058F668: aTNN1_make_ase
- 0x8058F72C: aTNN1_aiko
- 0x8058FA9C: aTNN1_birth
- 0x8058FB18: aTNN1_think_main_proc
- 0x8058FB8C: aTNN1_think_init_proc
- 0x8058FD64: aTNN1_normal_wait_init
- 0x8058FD9C: aTNN1_common_init
- 0x8058FE5C: aTNN1_aiko_init
- 0x8058FE80: aTNN1_yuri_init
- 0x8058FEA4: aTNN1_furi_init
- 0x8058FEC8: aTNN1_setup_think_proc
- 0x8058FF64: aTNN1_think_proc
- 0x8058FFA4: aTNN1_schedule_init_proc
- 0x8058FFF0: aTNN1_schedule_main_proc
- 0x80590070: aTNN1_schedule_proc
- 0x805901A0: aTR0_actor_save
- 0x8059024C: aTR0_actor_init
- 0x805902F4: aTR0_set_animation
- 0x80590370: aTR0_set_request_act
- 0x8059038C: aTR0_make_npc_sao
- 0x80590400: aTR0_wait
- 0x80590430: aTR0_setupAction
- 0x805904C0: aTR0_act_chg_data_proc
- 0x805904CC: aTR0_act_init_proc
- 0x805904F0: aTR0_act_main_proc
- 0x80590518: aTR0_act_proc
- 0x8059054C: aTR0_think_main_proc
- 0x805905A4: aTR0_think_init_proc
- 0x805905D8: aTR0_think_proc
- 0x8059060C: aTR0_schedule_init_proc
- 0x8059070C: aTR0_schedule_main_proc
- 0x80590798: aTR0_schedule_proc
- 0x805907CC: aTR0_set_talk_info
- 0x805908A8: aTR0_talk_request
- 0x805908D8: aTR0_talk_init
- 0x805908FC: aTR0_talk_end_chk
- 0x80590940: aGH0_actor_ct
- 0x80590A30: aGH0_actor_save
- 0x80590A68: aGH0_actor_dt
- 0x80590AA0: aGH0_actor_init
- 0x80590AD8: aGH0_actor_move
- 0x80590B10: aGH0_actor_draw
- 0x80590B48: aGH0_set_animation
- 0x80590C34: aGH0_set_request_act
- 0x80590C50: aGH0_turn
- 0x80590C74: aGH0_setupAction
- 0x80590CB4: aGH0_act_chg_data_proc
- 0x80590CC0: aGH0_act_init_proc
- 0x80590D38: aGH0_act_main_proc
- 0x80590D60: aGH0_act_proc
- 0x80590D94: aGH0_get_now_term
- 0x80590DB8: aGH0_set_term
- 0x80590DE8: aGH0_think_main_proc
- 0x80590EB8: aGH0_think_init_proc
- 0x80590EEC: aGH0_think_proc
- 0x80590F20: aGH0_schedule_init_proc
- 0x805910B4: aGH0_schedule_main_proc
- 0x80591134: aGH0_schedule_proc
- 0x80591168: aGH0_set_norm_talk_info
- 0x805911F0: aGH0_norm_talk_request
- 0x80591220: aGH0_talk_init
- 0x8059126C: aGH0_talk_end_chk
- 0x805912B0: aHT0_GetMyIdx
- 0x805912C4: aHT0_GetDefaultAngle
- 0x805912F4: aHT0_actor_ct
- 0x80591378: aHT0_actor_save
- 0x805913B0: aHT0_actor_dt
- 0x805913E8: aHT0_actor_init
- 0x80591420: aHT0_set_animation
- 0x8059146C: aHT0_actor_move
- 0x805914A4: aHT0_actor_draw
- 0x805914DC: aHT0_set_request_act
- 0x805914F8: aHT0_make_tumbler
- 0x8059157C: aHT0_wait
- 0x805915AC: aHT0_merry
- 0x80591600: aHT0_drink
- 0x80591618: aHT0_to_default
- 0x8059166C: aHT0_setupAction
- 0x8059172C: aHT0_act_chg_data_proc
- 0x80591738: aHT0_act_init_proc
- 0x8059175C: aHT0_act_main_proc
- 0x80591784: aHT0_act_proc
- 0x805917B8: aHT0_think_main_proc
- 0x805918AC: aHT0_think_init_proc
- 0x805918E0: aHT0_think_proc
- 0x80591914: aHT0_schedule_init_proc
- 0x805919D8: aHT0_schedule_main_proc
- 0x80591A64: aHT0_schedule_proc
- 0x80591A98: aHT0_set_talk_info
- 0x80591B04: aHT0_talk_request
- 0x80591B34: aHT0_talk_init
- 0x80591B58: aHT0_talk_end_chk
- 0x80591BB0: aHT1_actor_ct
- 0x80591C4C: aHT1_actor_save
- 0x80591C84: aHT1_actor_dt
- 0x80591CBC: aHT1_actor_init
- 0x80591CF4: aHT1_set_animation
- 0x80591D40: aHT1_actor_move
- 0x80591D78: aHT1_GetDefaultAngle
- 0x80591D80: aHT1_actor_draw
- 0x80591DB8: aHT1_set_request_act
- 0x80591DD4: aHT1_wait
- 0x80591E04: aHT1_to_default
- 0x80591E58: aHT1_setupAction
- 0x80591E98: aHT1_act_chg_data_proc
- 0x80591EA4: aHT1_act_init_proc
- 0x80591EC8: aHT1_act_main_proc
- 0x80591EF0: aHT1_act_proc
- 0x80591F24: aHT1_think_main_proc
- 0x80591FC0: aHT1_think_init_proc
- 0x80591FF4: aHT1_think_proc
- 0x80592028: aHT1_schedule_init_proc
- 0x805920D0: aHT1_schedule_main_proc
- 0x80592150: aHT1_schedule_proc
- 0x80592184: aHT1_set_talk_info
- 0x805921E4: aHT1_talk_request
- 0x80592214: aHT1_talk_init
- 0x80592238: aHT1_talk_end_chk
- 0x8059227C: aNHM_actor_ct
- 0x80592300: aNHM_actor_save
- 0x80592338: aNHM_actor_dt
- 0x80592370: aNHM_actor_init
- 0x805923A8: aNHM_actor_draw
- 0x805923E0: aNHM_set_request_act
- 0x805923FC: aNHM_appear_wait
- 0x8059242C: aNHM_disappear_wait
- 0x80592450: aNHM_setupAction
- 0x805924B0: aNHM_act_chg_data_proc
- 0x805924BC: aNHM_act_init_proc
- 0x8059255C: aNHM_act_main_proc
- 0x80592584: aNHM_act_proc
- 0x805925B8: aNHM_think_main_proc
- 0x805925F4: aNHM_think_init_proc
- 0x80592620: aNHM_think_proc
- 0x80592654: aNHM_schedule_init_proc
- 0x805926E8: aNHM_schedule_main_proc
- 0x80592768: aNHM_schedule_proc
- 0x8059279C: aNHM_trans_demo_start_wait_talk_proc
- 0x80592828: aNHM_trans_demo_end_wait_talk_proc
- 0x80592880: aNHM_change_talk_proc
- 0x80592898: aNHM_set_force_talk_info_talk_request
- 0x805928EC: aNHM_talk_request
- 0x8059291C: aNHM_talk_init
- 0x80592974: aNHM_talk_end_chk
- 0x805929D0: aNHM_actor_move
- 0x80592A40: aEMJ_actor_ct
- 0x80592AE0: aEMJ_actor_save
- 0x80592B18: aEMJ_actor_dt
- 0x80592B98: aEMJ_actor_init
- 0x80592BD0: aEMJ_set_animation
- 0x80592C1C: aEMJ_actor_move
- 0x80592C68: aEMJ_actor_draw
- 0x80592CA0: aEMJ_set_request_act
- 0x80592CBC: aEMJ_act_init_proc
- 0x80592CC8: aEMJ_act_proc
- 0x80592CFC: aEMJ_appear
- 0x80592D2C: aEMJ_retire
- 0x80592D64: aEMJ_think_main_proc
- 0x80592DAC: aEMJ_think_init_proc
- 0x80592E54: aEMJ_setup_think_proc
- 0x80592E98: aEMJ_think_proc
- 0x80592ECC: aEMJ_schedule_init_proc
- 0x80592F48: aEMJ_schedule_main_proc
- 0x80592FC8: aEMJ_schedule_proc
- 0x80592FFC: aEMJ_set_force_talk_info
- 0x8059309C: aEMJ_force_talk_request
- 0x805930CC: aEMJ_talk_init
- 0x805930FC: aEMJ_talk_end_chk
- 0x80593158: aETKY_DecidePresent
- 0x8059323C: aETKY_ReportPresent
- 0x80593260: aETKY_ActionWait
- 0x80593290: aETKY_ActionKyoro
- 0x805932C0: aETKY_setupAction
- 0x8059338C: aETKY_act_chg_data_proc
- 0x80593398: aETKY_act_init_proc
- 0x805933D4: aETKY_act_main_proc
- 0x805933FC: aETKY_act_proc
- 0x80593430: aETKY_set_request_act
- 0x8059344C: aETKY_think_init_proc
- 0x80593480: aETKY_think_main_proc
- 0x8059373C: aETKY_think_proc
- 0x80593770: aETKY_schedule_init_proc
- 0x805937D8: aETKY_schedule_main_proc
- 0x80593858: aETKY_schedule_proc
- 0x8059388C: aETKY_SetupSaveData
- 0x805938FC: aETKY_SetupCommonData
- 0x80593960: aETKY_actor_ct
- 0x80593A30: aETKY_Give_Me_Fork_Init
- 0x80593A34: aETKY_Give_You_Present_Init
- 0x80593A38: aETKY_init_proc
- 0x80593A6C: aETKY_DeleteKnifeInPlayerBag
- 0x80593AC8: aETKY_SetKnifeForkSequence
- 0x80593BBC: aETKY_Explain_Env0123
- 0x80593C58: aETKY_Find_Reac
- 0x80593CA8: aETKY_Give_Me_Fork
- 0x80593DA0: aETKY_Give_You_Present
- 0x80593E6C: aETKY_SetupTalkStat
- 0x80593EA4: aETKY_actor_save
- 0x80593EDC: aETKY_actor_dt
- 0x80593F2C: aETKY_actor_init
- 0x80593F64: aETKY_GetTalkStartStatus
- 0x80593FE4: aETKY_SetTalkInfo
- 0x80594058: aETKY_TalkRequest
- 0x80594164: aETKY_TalkInit
- 0x80594198: aETKY_TalkEndCheck
- 0x8059429C: aETKY_actor_move
- 0x8059430C: aETKY_actor_draw
- 0x80594344: aINS_actor_ct
- 0x805943C8: aINS_actor_dt
- 0x805943E8: aINS_make_actor
- 0x8059445C: aINS_get_free_idx_set_block_table
- 0x805944A8: aINS_regist_set_block_table
- 0x805945E4: aINS_destruct
- 0x8059467C: aINS_chk_live_ant
- 0x805946E0: aINS_chk_live_insect
- 0x80594784: aINS_search_near_ant
- 0x805947F0: aINS_search_near_insect
- 0x805948B0: aINS_searchRegistSpace
- 0x8059490C: aINS_setupActor
- 0x80594B5C: aINS_make_insect
- 0x80594BD4: aINS_make_ant
- 0x80594C40: aINS_set_pl_act_tim
- 0x80594C68: aINS_init_dma_and_clip_area
- 0x80594D2C: aINS_free_clip_area
- 0x80594D44: aINS_position_move
- 0x80594E20: aINS_set_player_info
- 0x80594EB8: aINS_BGcheck
- 0x80594FD8: aINS_get_stress_sub
- 0x80595170: aINS_get_stress
- 0x805951F8: aINS_calc_patience
- 0x8059529C: aINS_calc_life_time
- 0x805952D0: aINS_calc_alpha_time
- 0x8059536C: aINS_cull_check
- 0x80595494: aINS_get_catch_range_sub
- 0x805954D4: aINS_get_catch_range
- 0x80595574: aINS_set_catch_range
- 0x80595628: aINS_check_birth_ant
- 0x805956C8: aINS_actor_move
- 0x805957E0: aINS_actor_draw_sub
- 0x80595AB4: aINS_actor_draw
- 0x80595C74: aIAB_actor_init
- 0x80595D3C: aIAB_anime_proc
- 0x80595D74: aIAB_BGcheck
- 0x80595D98: aIAB_make_hamon
- 0x80595E78: aIAB_let_escape
- 0x80595EF0: aIAB_move
- 0x80595FCC: aIAB_rest
- 0x8059602C: aIAB_let_escape_init
- 0x80596100: aIAB_move_init
- 0x80596218: aIAB_rest_init
- 0x805962A0: aIAB_setupAction
- 0x805962EC: aIAB_actor_move
- 0x80596388: aIBT_actor_init
- 0x80596550: aIBT_check_live_condition
- 0x8059666C: aIBT_anime_proc
- 0x805966CC: aIBT_check_ball
- 0x8059671C: aIBT_set_fly_se
- 0x80596770: aIBT_check_player_net_sub
- 0x805967C4: aIBT_check_player_net
- 0x8059683C: aIBT_check_player_net2
- 0x805968D4: aIBT_check_player_scoop
- 0x80596954: aIBT_check_patience
- 0x80596A00: aIBT_chk_avoid_jump_angle
- 0x80596A7C: aIBT_set_avoid_jump_spd
- 0x80596B7C: aIBT_chk_active_range
- 0x80596BF4: aIBT_avoid
- 0x80596D54: aIBT_let_escape
- 0x80596E04: aIBT_chg_direction
- 0x80597008: aIBT_wait
- 0x8059720C: aIBT_jump
- 0x80597240: aIBT_avoid_init
- 0x805972EC: aIBT_let_escape_init
- 0x805973C0: aIBT_chg_direction_init
- 0x805973DC: aIBT_wait_init
- 0x80597488: aIBT_jump_init
- 0x805974B4: aIBT_drown_init
- 0x805975AC: aIBT_setupAction
- 0x805975F8: aIBT_actor_move
- 0x8059768C: aIBT_actor_first_move
- 0x80597708: aIDG_actor_init
- 0x80597844: aIDG_check_strike_stone
- 0x805978EC: aIDG_check_ball
- 0x8059793C: aIDG_check_player_net
- 0x805979BC: aIDG_check_player_scoop
- 0x80597A3C: aIDG_check_player_axe
- 0x80597ABC: aIDG_check_patience
- 0x80597B9C: aIDG_chk_active_range
- 0x80597BE4: aIDG_chk_water_attr
- 0x80597CD4: aIDG_calc_direction_angl
- 0x80597D50: aIDG_avoid
- 0x80597E48: aIDG_let_escape
- 0x80597E84: aIDG_stop
- 0x80597EE8: aIDG_hide
- 0x80597F38: aIDG_appear
- 0x80597F6C: aIDG_dive
- 0x80597FF0: aIDG_avoid_init
- 0x80598094: aIDG_let_escape_init
- 0x80598110: aIDG_stop_init
- 0x80598130: aIDG_hide_init
- 0x80598160: aIDG_appear_init
- 0x805981B0: aIDG_dive_init
- 0x80598208: aIDG_drown_init
- 0x80598300: aIDG_retire_init
- 0x8059833C: aIDG_setupAction
- 0x80598388: aIDG_actor_move
- 0x805983F8: aICH_actor_init
- 0x80598568: aICH_check_live_condition
- 0x80598608: aICH_anime_proc
- 0x80598640: aICH_jump_ctrl
- 0x80598724: aICH_flower_search_sub
- 0x80598934: aICH_flower_search
- 0x805989E4: aICH_loop_move_ctrl
- 0x80598BBC: aICH_avoid_player
- 0x80598C48: aICH_avoid_move_ctrl
- 0x80598D54: aICH_rest_check
- 0x80598E14: aICH_chou_fuwafuwa
- 0x80598E98: aICH_check_ball
- 0x80598EE8: aICH_check_player_net
- 0x80598F74: aICH_check_player_scoop
- 0x80598FF4: aICH_check_patience
- 0x805990A0: aICH_BGcheck
- 0x80599170: aICH_check_block_edge
- 0x80599230: aICH_avoid
- 0x80599304: aICH_let_escape
- 0x80599350: aICH_fly
- 0x80599464: aICH_landing
- 0x80599608: aICH_hover
- 0x805996C8: aICH_avoid_init
- 0x80599708: aICH_let_escape_init
- 0x805997DC: aICH_fly_init
- 0x80599878: aICH_landing_init
- 0x805998A0: aICH_hover_init
- 0x805998C0: aICH_rest_init
- 0x80599930: aICH_setupAction
- 0x8059997C: aICH_actor_move
- 0x80599A2C: aIGK_actor_init
- 0x80599C9C: aIGK_anime_proc
- 0x80599CD4: aIGK_check_tree_shaken
- 0x80599D58: aIGK_check_ball
- 0x80599DA8: aIGK_check_player_net
- 0x80599E34: aIGK_check_player_scoop
- 0x80599EB4: aIGK_check_patience
- 0x80599FAC: aIGK_avoid
- 0x8059A098: aIGK_wait_on_flower
- 0x8059A134: aIGK_move_on_flower
- 0x8059A39C: aIGK_wait_on_tree
- 0x8059A41C: aIGK_move_on_tree
- 0x8059A4E0: aIGK_avoid_init
- 0x8059A5C4: aIGK_let_escape_init
- 0x8059A6B4: aIGK_wait_on_flower_init
- 0x8059A6CC: aIGK_move_on_flower_init
- 0x8059A754: aIGK_wait_on_tree_init
- 0x8059A7AC: aIGK_move_on_tree_init
- 0x8059A808: aIGK_setupAction
- 0x8059A854: aIGK_actor_move
- 0x8059A8E8: aIHD_actor_init
- 0x8059AAC8: aIHD_anime_proc
- 0x8059AB00: aIHD_unregist_set_block_table
- 0x8059AB84: aIHD_fuwafuwa
- 0x8059AC58: aIHD_set_move_info
- 0x8059AC94: aIHD_calc_move_drt
- 0x8059AD60: aIHD_light_proc
- 0x8059B020: aIHD_avoid
- 0x8059B064: aIHD_fly
- 0x8059B0E0: aIHD_avoid_init_sub
- 0x8059B1A0: aIHD_avoid_init
- 0x8059B1E8: aIHD_let_escape_init
- 0x8059B224: aIHD_fly_init
- 0x8059B234: aIHD_setupAction
- 0x8059B280: aIHD_actor_move
- 0x8059B354: aIHT_actor_init
- 0x8059B6A8: aIHT_anime_proc
- 0x8059B768: aIHT_BGcheck
- 0x8059B894: aIHT_fuwafuwa
- 0x8059B950: aIHT_light_proc
- 0x8059BC10: aIHT_avoid
- 0x8059BC64: aIHT_fly
- 0x8059BF24: aIHT_avoid_init_sub
- 0x8059BFD8: aIHT_avoid_init
- 0x8059C02C: aIHT_let_escape_init
- 0x8059C068: aIHT_fly_init
- 0x8059C078: aIHT_setupAction
- 0x8059C0C4: aIHT_actor_move
- 0x8059C174: aIKA_actor_init
- 0x8059C23C: aIKA_fuwafuwa
- 0x8059C314: aIKA_anime_proc
- 0x8059C34C: aIKA_BGcheck
- 0x8059C384: aIKA_check_condition
- 0x8059C3F4: aIKA_calc_angle_search_player
- 0x8059C444: aIKA_avoid
- 0x8059C470: aIKA_fly
- 0x8059C530: aIKA_search
- 0x8059C610: aIKA_attack_wait
- 0x8059C71C: aIKA_attack
- 0x8059C76C: aIKA_avoid_init
- 0x8059C848: aIKA_fly_init
- 0x8059C858: aIKA_attack_wait_init
- 0x8059C864: aIKA_attack_init
- 0x8059C8A8: aIKA_setupAction
- 0x8059C8F4: aIKA_actor_move
- 0x8059C9EC: aIKB_actor_init
- 0x8059CB7C: aIKB_anime_proc
- 0x8059CBB4: aIKB_check_ball
- 0x8059CC04: aIKB_check_player_net
- 0x8059CC90: aIKB_check_player_scoop
- 0x8059CD10: aIKB_check_patience
- 0x8059CE10: aIKB_avoid
- 0x8059CEF8: aIKB_wait
- 0x8059D030: aIKB_avoid_init
- 0x8059D108: aIKB_wait_init
- 0x8059D114: aIKB_setupAction
- 0x8059D160: aIKB_actor_move
- 0x8059D1F4: aIKR_actor_init
- 0x8059D304: aIKR_set_avoid_player_angl
- 0x8059D37C: aIKR_calc_move_scale
- 0x8059D3F8: aIKR_check_dig_hole_scoop
- 0x8059D498: aIKR_chk_active_range
- 0x8059D4E0: aIKR_chk_water_attr
- 0x8059D5B8: aIKR_calc_direction_angl
- 0x8059D634: aIKR_avoid
- 0x8059D7C0: aIKR_let_escape
- 0x8059D834: aIKR_hide
- 0x8059D910: aIKR_appear
- 0x8059D974: aIKR_dive
- 0x8059DA20: aIKR_dug
- 0x8059DB2C: aIKR_avoid_init
- 0x8059DB50: aIKR_let_escape_init
- 0x8059DBD4: aIKR_hide_init
- 0x8059DC2C: aIKR_appear_init
- 0x8059DC90: aIKR_dive_init
- 0x8059DCDC: aIKR_drown_init
- 0x8059DDD4: aIKR_dug_init
- 0x8059DE5C: aIKR_setupAction
- 0x8059DEA8: aIKR_actor_move
- 0x8059DF18: aIMN_actor_init
- 0x8059E084: aIMN_check_shake_tree
- 0x8059E0D0: aIMN_position_move
- 0x8059E18C: aIMN_calc_shake_angl
- 0x8059E2F0: aIMN_calc_twist_angl
- 0x8059E34C: aIMN_check_cut_tree
- 0x8059E3F8: aIMN_chk_water_attr
- 0x8059E4E8: aIMN_calc_direction_angl
- 0x8059E5E8: aIMN_let_escape
- 0x8059E624: aIMN_hide
- 0x8059E698: aIMN_appear
- 0x8059E7A4: aIMN_appear_stop
- 0x8059E82C: aIMN_wait
- 0x8059E9C4: aIMN_disappear
- 0x8059EA40: aIMN_dive
- 0x8059EAC4: aIMN_fall
- 0x8059EB44: aIMN_let_escape_init
- 0x8059ECA4: aIMN_hide_init
- 0x8059ECE8: aIMN_appear_init
- 0x8059EE0C: aIMN_appear_stop_init
- 0x8059EE28: aIMN_wait_init
- 0x8059EEAC: aIMN_disappear_init
- 0x8059EED0: aIMN_dive_init
- 0x8059EF58: aIMN_drown_init
- 0x8059F050: aIMN_fall_init
- 0x8059F0D4: aIMN_setupAction
- 0x8059F120: aIMN_actor_move
- 0x8059F198: aISM_actor_init
- 0x8059F328: aISM_anime_proc
- 0x8059F360: aISM_check_ball
- 0x8059F3B0: aISM_check_player_net
- 0x8059F448: aISM_check_player_scoop
- 0x8059F4C8: aISM_check_patience
- 0x8059F5C8: aISM_avoid
- 0x8059F6BC: aISM_wait
- 0x8059F7D4: aISM_avoid_init
- 0x8059F914: aISM_let_escape_init
- 0x8059F950: aISM_wait_init
- 0x8059F95C: aISM_setupAction
- 0x8059F9A8: aISM_actor_move
- 0x8059FA3C: aITT_actor_init
- 0x8059FB9C: aITT_anime_proc
- 0x8059FBD4: aITT_check_ball
- 0x8059FC24: aITT_check_player_net
- 0x8059FCB0: aITT_check_player_scoop
- 0x8059FD30: aITT_check_flower
- 0x8059FD94: aITT_check_patience
- 0x8059FE9C: aITT_calc_direction_angl
- 0x8059FF18: aITT_avoid
- 0x8059FF94: aITT_avoid_maimai
- 0x8059FFB4: aITT_move
- 0x805A0234: aITT_wait
- 0x805A029C: aITT_avoid_init
- 0x805A0374: aITT_avoid_maimai_init
- 0x805A03F4: aITT_move_init
- 0x805A04A0: aITT_wait_init
- 0x805A050C: aITT_setupAction
- 0x805A0558: aITT_actor_move
- 0x805A05EC: aITB_actor_init
- 0x805A0814: aITB_check_live_condition
- 0x805A08F8: aITB_BGcheck
- 0x805A0A44: aITB_height_ctrl
- 0x805A0AC4: aITB_check_water_touch
- 0x805A0B8C: aITB_fly_ctrl
- 0x805A0C48: aITB_move_spd_set
- 0x805A0D08: aITB_anime_proc
- 0x805A0D40: aITB_check_reserve_dummy
- 0x805A0DF0: aITB_check_wall_and_ground
- 0x805A0E28: aITB_check_stop
- 0x805A0E9C: aITB_avoid
- 0x805A0F80: aITB_let_escape
- 0x805A0FAC: aITB_fly
- 0x805A10B4: aITB_oniyanma_fly
- 0x805A11D0: aITB_wait
- 0x805A12D8: aITB_touch_water
- 0x805A13B4: aITB_touch_water_reverse
- 0x805A14A8: aITB_hover_wait_on_water
- 0x805A150C: aITB_fly_on_notice
- 0x805A1740: aITB_rest_on_notice
- 0x805A1880: aITB_avoid_init
- 0x805A18F8: aITB_let_escape_init
- 0x805A1970: aITB_fly_init
- 0x805A1998: aITB_wait_init
- 0x805A1B00: aITB_touch_water_init
- 0x805A1B38: aITB_touch_water_reverse_init
- 0x805A1BCC: aITB_hover_wait_on_water_init
- 0x805A1BE8: aITB_fly_on_notice_init
- 0x805A1C54: aITB_rest_on_notice_init
- 0x805A1C74: aITB_setupAction
- 0x805A1CC0: aITB_actor_move
- 0x805A1D70: aGYO_actor_ct
- 0x805A1E00: aGYO_actor_dt
- 0x805A1E48: aGYO_searchCastFishNum
- 0x805A1E8C: aGYO_change_data_area
- 0x805A1EC8: aGYO_destruct
- 0x805A1F00: aGYO_searchRegistSpace
- 0x805A1F44: aGYO_setupActor
- 0x805A21B0: aGYO_make_gyoei
- 0x805A21F8: aGYO_escape_distance
- 0x805A2218: aGYO_ballcheck
- 0x805A22B4: aGYO_hitcheck
- 0x805A2378: aGYO_chk_live_gyoei
- 0x805A23D8: aGYO_search_near_gyoei
- 0x805A2440: aGYO_init_dma_and_clip_area
- 0x805A24EC: aGYO_free_clip_area
- 0x805A252C: aGYO_position_move
- 0x805A25D8: aGYO_BGcheck
- 0x805A2628: aGYO_cull_check
- 0x805A2700: bite_check
- 0x805A2748: aGYO_actor_move
- 0x805A2864: aGYO_anime_frame
- 0x805A2918: aGYO_actor_draw_fish
- 0x805A2C54: aGYO_actor_draw_gyoei
- 0x805A2DEC: aGYO_actor_draw
- 0x805A2EA8: aGTT_actor_init
- 0x805A2FB8: aGYO_get_uki_type
- 0x805A2FE0: aGTT_speed_reset
- 0x805A2FF4: aGTT_set_scale
- 0x805A3004: aGTT_set_angle
- 0x805A3010: aGTT_pos_calc
- 0x805A3108: aGTT_effect_sibuki
- 0x805A3254: aGTT_kage_make_actor
- 0x805A3310: aGTT_fish_make_actor
- 0x805A3398: aGTT_effect_hamon
- 0x805A3484: aGTT_random_check
- 0x805A34E0: aGTT_chase_s_angle
- 0x805A3568: aGTT_warp_event
- 0x805A35C8: aGTT_speed_calc
- 0x805A3600: aGTT_position_calc
- 0x805A3680: aGTT_swim_speed_check
- 0x805A370C: aGTT_swim_speed_change
- 0x805A3820: aGTT_Get_flow_angle
- 0x805A385C: aGTT_Get_flow_angle_rv
- 0x805A3888: aGTT_flow_direction
- 0x805A3910: aGTT_Get_water_surface_position_y
- 0x805A3964: aGTT_search_Uki
- 0x805A3B24: aGTT_player_near
- 0x805A3C78: aGYO_check_wall
- 0x805A3D38: aGYO_check_bridge
- 0x805A3DEC: aGYO_check_fall
- 0x805A3E64: aGTT_wait
- 0x805A3F54: aGTT_swim
- 0x805A40C0: aGTT_near
- 0x805A41F4: aGTT_touch
- 0x805A4440: aGTT_bite
- 0x805A4704: aGTT_comeback
- 0x805A4914: aGTT_escape
- 0x805A49F0: aGTT_swim_init
- 0x805A4AFC: aGTT_near_init
- 0x805A4B30: aGTT_touch_init
- 0x805A4B6C: aGTT_bite_init
- 0x805A4BF4: aGTT_comeback_init
- 0x805A4C6C: aGTT_wait_init
- 0x805A4D0C: aGTT_escape_init
- 0x805A4D2C: aGTT_setupAction
- 0x805A4D74: aGTT_actor_move
- 0x805A4E58: aGKK_actor_init
- 0x805A4FA8: aGKK_get_uki_type
- 0x805A4FD0: aGKK_speed_reset
- 0x805A4FE4: aGKK_set_scale
- 0x805A4FF4: aGKK_set_angle
- 0x805A5000: aGKK_pos_calc
- 0x805A50F8: aGKK_effect_sibuki
- 0x805A5244: aGKK_kage_make_actor
- 0x805A5300: aGKK_fish_make_actor
- 0x805A5388: aGKK_effect_hamon
- 0x805A5474: aGKK_random_check
- 0x805A54D0: aGKK_warp_event
- 0x805A5530: aGKK_speed_calc
- 0x805A5568: aGKK_position_calc
- 0x805A55E8: aGKK_swim_speed_check
- 0x805A5674: aGKK_Get_flow_angle
- 0x805A56B0: aGKK_Get_flow_angle_rv
- 0x805A56DC: aGKK_Get_water_surface_position_y
- 0x805A5730: aGKK_search_Uki
- 0x805A58F0: aGKK_player_near
- 0x805A5A44: aGKK_check_offing
- 0x805A5B40: aGKK_check_wall
- 0x805A5D38: aGKK_check_uki
- 0x805A5DA4: aGKK_swim
- 0x805A5E38: aGKK_swim2
- 0x805A5ED4: aGKK_swim3
- 0x805A5F68: aGKK_swim4
- 0x805A6020: aGKK_wait
- 0x805A60E8: aGKK_near
- 0x805A621C: aGKK_touch
- 0x805A6458: aGKK_bite
- 0x805A664C: aGKK_comeback
- 0x805A6850: aGKK_escape
- 0x805A68FC: aGKK_swim_init
- 0x805A690C: aGKK_swim2_init
- 0x805A6968: aGKK_swim3_init
- 0x805A69C0: aGKK_swim4_init
- 0x805A69FC: aGKK_near_init
- 0x805A6A30: aGKK_touch_init
- 0x805A6A6C: aGKK_bite_init
- 0x805A6AF4: aGKK_comeback_init
- 0x805A6B6C: aGKK_wait_init
- 0x805A6C0C: aGKK_wait_monster_init
- 0x805A6C20: aGKK_escape_init
- 0x805A6C40: aGKK_setupAction
- 0x805A6C88: aGKK_actor_move
- 0x805A6CF4: aBT_actor_ct
- 0x805A6E70: aBT_actor_dt
- 0x805A6EF0: aBT_calc_furrow_alpha
- 0x805A6F40: aBT_actor_draw_before
- 0x805A700C: aBT_actor_draw
- 0x805A71D8: aBT_passenger_ctrl
- 0x805A726C: aBT_check_other_boat
- 0x805A72D4: aBT_anime_proc
- 0x805A7378: aBT_roll_ctrl
- 0x805A740C: aBT_check_alive
- 0x805A74A0: aBT_up_down_proc
- 0x805A755C: aBT_position_move
- 0x805A75C4: aBT_calc_wave_angl
- 0x805A7868: aBT_ctrl_rudder
- 0x805A7984: aBT_ctrl_direction
- 0x805A7B50: aBT_calc_speed
- 0x805A7BB8: aBT_demo_ctrl_birth_wait
- 0x805A7C50: aBT_wait
- 0x805A7CC4: aBT_pl_ride_move_start_wait
- 0x805A7D88: aBT_pl_ride_move_end_wait
- 0x805A7DD8: aBT_pl_ride_on_start_wait
- 0x805A7E90: aBT_pl_ride_on_end_wait
- 0x805A7EE4: aBT_sitdown_end_wait
- 0x805A7F38: aBT_move_wait
- 0x805A7F74: aBT_move
- 0x805A8054: aBT_draw_up
- 0x805A817C: aBT_arrive_call_end_wait
- 0x805A81B0: aBT_pl_ride_off_start_wait
- 0x805A828C: aBT_pl_ride_off_end_wait
- 0x805A82E0: aBT_anchor
- 0x805A831C: aBT_wait_init
- 0x805A832C: aBT_sitdown_end_wait_init
- 0x805A838C: aBT_move_wait_init
- 0x805A839C: aBT_move_init
- 0x805A83B8: aBT_moment_init
- 0x805A83C8: aBT_draw_up_init
- 0x805A83D8: aBT_arrive_call_end_wait_init
- 0x805A83E8: aBT_pl_ride_off_start_wait_init
- 0x805A83F4: aBT_pl_ride_off_end_wait_init
- 0x805A8404: aBT_anchor_init
- 0x805A8434: aBT_setupAction
- 0x805A847C: aBT_actor_move
- 0x805A84F4: aBT_actor_init
- 0x805A856C: aBRS_actor_ct
- 0x805A8710: aBRS_actor_dt
- 0x805A8924: aBRS_set_bgOffset
- 0x805A8A90: aBRS_rewrite_out_data
- 0x805A8B40: aBRS_check_player
- 0x805A8BE4: aBRS_open_check
- 0x805A8C70: aBRS_set_talk_info_close_wait
- 0x805A8CD8: aBRS_close_wait
- 0x805A8D78: aBRS_open_wait
- 0x805A8E84: aBRS_close_door
- 0x805A8EB4: aBRS_open_door
- 0x805A8EE4: aBRS_setup_action
- 0x805A8F88: aBRS_ctrl_light
- 0x805A8FCC: aBRS_actor_move
- 0x805A9148: aBRS_actor_init
- 0x805A91C0: aBRS_actor_draw_before
- 0x805A9260: aBRS_actor_draw_after
- 0x805A937C: aBRS_actor_draw
- 0x805A9474: aBridgeA_set_BgOffset
- 0x805A96CC: aBridgeA_actor_ct
- 0x805A97B0: aBridgeA_actor_dt
- 0x805A97D0: aBridge_player_check
- 0x805A9AB4: aBridgeA_actor_move
- 0x805A9B20: aBridgeA_actor_init
- 0x805A9B98: aBridgeA_before_disp
- 0x805A9C24: aBridgeA_actor_draw
- 0x805A9CA0: aBGY_actor_ct
- 0x805A9DE0: aBGY_actor_dt
- 0x805A9FD4: aBGY_set_bgOffset
- 0x805AA140: aBGY_rewrite_out_data
- 0x805AA1F0: aBGY_check_player2
- 0x805AA248: aBGY_check_player
- 0x805AA304: aBGY_open_check
- 0x805AA334: aBGY_set_talk_info_close_wait
- 0x805AA38C: aBGY_close_wait
- 0x805AA434: aBGY_open_wait
- 0x805AA560: aBGY_close_door
- 0x805AA590: aBGY_open_door
- 0x805AA5C0: aBGY_setup_action
- 0x805AA664: aBGY_ctrl_light
- 0x805AA698: aBGY_actor_move
- 0x805AA7E8: aBGY_actor_init
- 0x805AA860: aBGY_actor_draw_before
- 0x805AA900: aBGY_actor_draw_after
- 0x805AAA1C: aBGY_actor_draw
- 0x805AAB3C: aCNV_actor_ct
- 0x805AACA0: aCNV_actor_dt
- 0x805AACE4: aCNV_set_door_SE
- 0x805AAD10: aCNV_rewrite_out_data
- 0x805AAE14: aCNV_check_player2
- 0x805AAE6C: aCNV_check_player
- 0x805AAF34: aCNV_set_talk_info_close_wait
- 0x805AB03C: aCNV_ctrl_light
- 0x805AB0D0: aCNV_set_bgOffset
- 0x805AB19C: aCNV_close_wait
- 0x805AB248: aCNV_open_wait
- 0x805AB368: aCNV_close_door
- 0x805AB398: aCNV_open_door
- 0x805AB3C8: aCNV_pl_into_wait
- 0x805AB444: aCNV_setup_action
- 0x805AB524: aCNV_actor_move
- 0x805AB5A4: aCNV_actor_init
- 0x805AB61C: aCNV_actor_draw_before
- 0x805AB69C: aCNV_actor_draw_after
- 0x805AB7B8: aCNV_actor_draw
- 0x805AB9AC: aCOU_setNowTime
- 0x805ABA0C: aCOU_getTime
- 0x805ABA98: aCOU_init
- 0x805AC148: aCOU_anime_play
- 0x805AC164: aCOU_init_clip_area
- 0x805AC1A4: aCOU_free_clip_area
- 0x805AC1C8: aCOU_set_bgOffset
- 0x805AC3A8: aCOU_move
- 0x805AC3D8: aCOU_happy_new_year
- 0x805AC90C: aDPT_actor_ct
- 0x805ACA7C: aDPT_actor_dt
- 0x805ACAC0: aDPT_set_door_SE
- 0x805ACAEC: aDPT_rewrite_out_data
- 0x805ACBF0: aDPT_check_player2
- 0x805ACC48: aDPT_check_player
- 0x805ACD10: aDPT_set_talk_info_close_wait
- 0x805ACE18: aDPT_ctrl_light
- 0x805ACEAC: aDPT_set_bgOffset
- 0x805ACF78: aDPT_close_wait
- 0x805AD024: aDPT_open_wait
- 0x805AD144: aDPT_close_door
- 0x805AD174: aDPT_open_door
- 0x805AD1A4: aDPT_pl_into_wait
- 0x805AD220: aDPT_setup_action
- 0x805AD300: aDPT_actor_move
- 0x805AD380: aDPT_actor_init
- 0x805AD3F8: aDPT_actor_draw_before
- 0x805AD4B4: aDPT_actor_draw_after
- 0x805AD5D0: aDPT_actor_draw
- 0x805AD6D8: aDOU_actor_ct
- 0x805AD7E4: aDOU_actor_dt
- 0x805AD808: aDOU_set_check
- 0x805AD8E4: aDOU_get_color
- 0x805AD904: aDOU_get_douzou_type
- 0x805AD988: KeepItem
- 0x805ADA30: aDOU_keep_item
- 0x805ADAE4: aDOU_setEffect_sub
- 0x805ADC6C: aDOU_setEffect
- 0x805ADE08: aDOU_set_bgOffset
- 0x805ADED0: aDOU_set_talk_info
- 0x805ADFA4: aDOU_wait
- 0x805AE1F0: aDOU_setup_action
- 0x805AE294: aDOU_actor_move
- 0x805AE308: aDOU_actor_init
- 0x805AE380: aDOU_actor_draw_before
- 0x805AE4F8: aDOU_actor_draw
- 0x805AE704: aDUM_actor_ct
- 0x805AE768: aDUM_actor_dt
- 0x805AE780: aDUM_set_bgOffset_sub
- 0x805AE840: aDUM_set_bgOffset
- 0x805AE904: aDUM_set_talk_info
- 0x805AE96C: aDUM_wait
- 0x805AEA20: aDUM_setup_action
- 0x805AEA3C: aDUM_actor_move
- 0x805AEB48: aDUM_actor_init
- 0x805AEBC0: aDUM_actor_draw
- 0x805AECE8: aFLS_actor_move
- 0x805AED44: aFLS_actor_draw
- 0x805AEF84: aFLEW_actor_move
- 0x805AEFE0: aFLEW_actor_draw
- 0x805AF278: aGhog_actor_ct
- 0x805AF298: aGhog_set_bgOffset
- 0x805AF378: aGhog_actor_move
- 0x805AF37C: aGhog_actor_init
- 0x805AF3F4: aGhog_actor_draw
- 0x805AF4C4: aGOZ_actor_ct
- 0x805AF510: aGOZ_set_bgOffset
- 0x805AF664: aGOZ_setup_action
- 0x805AF67C: aGOZ_actor_move
- 0x805AF788: aGOZ_actor_init
- 0x805AF800: aGOZ_actor_draw
- 0x805AF924: aHUS_actor_ct
- 0x805AFAC8: aHUS_actor_dt
- 0x805AFB00: aHUS_set_door_SE_sub
- 0x805AFCE8: aHUS_set_doorSE
- 0x805AFD90: aHUS_odekake_check
- 0x805AFF14: aHUS_setup_animation
- 0x805AFFE8: aHUS_rewrite_out_data
- 0x805B012C: aHUS_set_talk_info_check_player
- 0x805B01B4: aHUS_check_player
- 0x805B02B4: aHUS_open_door_demo_ct
- 0x805B02E8: aHUS_check_open
- 0x805B03B0: aHUS_set_bgOffset
- 0x805B051C: aHUS_ctrl_light
- 0x805B060C: aHUS_wait
- 0x805B06E0: aHUS_open_door_wait
- 0x805B0764: aHUS_open_door
- 0x805B082C: aHUS_setup_action
- 0x805B0844: aHUS_actor_move
- 0x805B08A8: aHUS_actor_init
- 0x805B0928: aHUS_actor_draw_before
- 0x805B09CC: aHUS_actor_draw_after
- 0x805B0E60: aHUS_actor_draw_ta_set
- 0x805B0F20: aHUS_actor_draw_ta_clr
- 0x805B0F88: aHUS_actor_draw
- 0x805B10A0: aHTBL_GetPlayerLookAtUnit
- 0x805B10FC: aHTBL_SearchPickUpItemLayer2
- 0x805B1230: aHTBL_SetFork
- 0x805B12C8: aHTBL_SetClip
- 0x805B13C4: aHTBL_actor_ct
- 0x805B142C: aHTBL_actor_dt
- 0x805B1480: aHTBL_set_bgOffset
- 0x805B17DC: aHTBL_actor_move
- 0x805B1884: aHTBL_actor_init
- 0x805B18FC: aHTBL_actor_draw
- 0x805B1A08: aKAG_actor_ct
- 0x805B1A68: aKAG_set_bgOffset
- 0x805B1AB4: aKAG_wait
- 0x805B1AB8: aKAG_setup_action
- 0x805B1AD4: aKAG_actor_move
- 0x805B1BE0: aKAG_actor_init
- 0x805B1C58: aKAG_actor_draw
- 0x805B1D50: aKKR_actor_ct
- 0x805B1DC0: aKKR_actor_dt
- 0x805B1FA0: aKKR_set_bgOffset
- 0x805B210C: aKKR_rewrite_out_data
- 0x805B2204: aKKR_check_player
- 0x805B22A8: aKKR_wait
- 0x805B2384: aKKR_setup_action
- 0x805B23A0: aKKR_ctrl_light
- 0x805B23D4: aKKR_actor_move
- 0x805B2518: aKKR_actor_init
- 0x805B2590: aKKR_actor_draw
- 0x805B27B8: aKOI_actor_ct
- 0x805B2830: aKOI_actor_dt
- 0x805B2854: aKOI_wait
- 0x805B2858: aKOI_setup_action
- 0x805B28E8: aKOI_actor_move
- 0x805B2950: aKOI_actor_init
- 0x805B29C8: aKOI_actor_draw
- 0x805B2AE0: aLOT_actor_ct
- 0x805B2BC0: aLOT_actor_dt
- 0x805B2BE4: aLOT_getPalNo
- 0x805B2C08: aLOT_wait
- 0x805B2CC0: aLOT_shake
- 0x805B2D3C: aLOT_setup_action
- 0x805B2DD8: aLOT_actor_move
- 0x805B2E4C: aLOT_actor_init
- 0x805B2EC4: aLOT_actor_draw_before
- 0x805B2F4C: aLOT_actor_draw
- 0x805B30E0: aMIK_actor_dt
- 0x805B30F8: aMIK_actor_save
- 0x805B30FC: aMKBC_clip_set_string
- 0x805B3190: aMKBC_clip_roll_draw
- 0x805B3464: aNTT_draw_chk_proc
- 0x805B34B8: aNTT_set_string
- 0x805B3514: aNTT_roll_init
- 0x805B35D8: aNTT_roll1_init
- 0x805B3664: aNTT_roll2_init
- 0x805B36A0: aNTT_roll3_init
- 0x805B36C0: aNTT_roll_end_init
- 0x805B3770: aNTT_call_init
- 0x805B37C0: aMKBC_clip_think_init
- 0x805B37F4: aMKBC_anime_stop
- 0x805B3844: aMKBC_clip_head_up
- 0x805B38C4: aMKBC_clip_sound_proc
- 0x805B3A4C: aMKBC_clip_section_chk
- 0x805B3A64: aMKBC_clip_bgm_no
- 0x805B3A74: aMKBC_clip_roll_proc
- 0x805B3BD0: aMKBC_clip_set_itemstr
- 0x805B3C44: aMKBC_clip_set_itemstr3
- 0x805B3C8C: aMKBC_count_merody
- 0x805B3CF8: aMKBC_clip_search_merody
- 0x805B3E04: aMKBC_clip_check_merody
- 0x805B3EB8: aMIK_copyright_draw
- 0x805B4170: aMIK_set_bgOffset
- 0x805B428C: aMIK_actor_move
- 0x805B44C4: aMsm_actor_ct
- 0x805B4540: aMsm_set_bgOffset
- 0x805B468C: aMsm_rewrite_out_data
- 0x805B4784: aMsm_ctrl_light
- 0x805B47B8: aMsm_check_player
- 0x805B485C: aMsm_actor_move
- 0x805B496C: aMsm_actor_init
- 0x805B49E4: aMsm_actor_draw
- 0x805B4CF4: aMHS_actor_ct
- 0x805B4F20: aMHS_actor_dt
- 0x805B4F90: aMHS_set_door_SE_sub
- 0x805B4FBC: aMHS_set_door_SE
- 0x805B5068: aMHS_goto_next_pl_scene
- 0x805B5100: aMHS_setup_animation
- 0x805B51B8: aMHS_rewrite_pl_out_data
- 0x805B52F8: aMHS_check_player_sub
- 0x805B5420: aMHS_check_player_in_intro_demo
- 0x805B5550: aMHS_set_demo_info
- 0x805B5594: aMHS_set_demo_info_save
- 0x805B55BC: aMHS_check_player
- 0x805B56E8: aMHS_make_bgOffset
- 0x805B57AC: aMHS_set_bgOffset
- 0x805B5914: aMHS_light_ctrl
- 0x805B5944: aMHS_wait
- 0x805B59D0: aMHS_open_door_wait
- 0x805B5A4C: aMHS_open_door
- 0x805B5B6C: aMHS_setup_action
- 0x805B5B9C: aMHS_actor_move
- 0x805B5CBC: aMHS_actor_init
- 0x805B5D3C: aMHS_actor_draw_before
- 0x805B5F98: aMHS_actor_draw_after
- 0x805B6108: aMHS_actor_draw_ta_set
- 0x805B6188: aMHS_actor_draw_ta_clr
- 0x805B61F0: aMHS_actor_draw
- 0x805B63FC: aNP_set_talk_info
- 0x805B649C: aNP_actor_move
- 0x805B654C: aNP_actor_init
- 0x805B65C4: aNW_actor_ct
- 0x805B6700: aNW_actor_dt
- 0x805B6758: aNW_set_door_SE_sub
- 0x805B6784: aNW_set_doorSE
- 0x805B682C: aNW_rewrite_out_data
- 0x805B6924: aNW_check_player
- 0x805B69F0: aNW_check_open
- 0x805B6A4C: aNW_set_bgOffset
- 0x805B6B50: aNW_setup_animation
- 0x805B6C18: aNW_open_door_demo_ct
- 0x805B6C4C: aNW_talk_door_demo_ct
- 0x805B6C98: aNW_check_opend
- 0x805B6CC4: aNW_ctrl_light
- 0x805B6D28: aNW_wait
- 0x805B6E2C: aNW_open_door_wait
- 0x805B6EB0: aNW_open_door
- 0x805B6F4C: aNW_setup_action
- 0x805B6F64: aNW_actor_move
- 0x805B6FE8: aNW_actor_init
- 0x805B7060: aNW_actor_draw_before
- 0x805B70FC: aNW_actor_draw_after
- 0x805B7218: aNW_actor_draw
- 0x805B7338: aPBOX_actor_ct
- 0x805B73A0: aPBOX_set_bgOffset
- 0x805B750C: aPBOX_rewrite_out_data
- 0x805B760C: aPBOX_check_player
- 0x805B76BC: aPBOX_ctrl_light
- 0x805B76F0: aPBOX_actor_move
- 0x805B781C: aPBOX_actor_init
- 0x805B7894: aPBOX_actor_draw
- 0x805B7B0C: aPOFF_actor_ct
- 0x805B7C24: aPOFF_actor_dt
- 0x805B7C7C: aPOFF_set_door_SE_sub
- 0x805B7CA8: aPOFF_set_doorSE
- 0x805B7D50: aPOFF_rewrite_out_data
- 0x805B7E48: aPOFF_check_player
- 0x805B7F14: aPOFF_check_open
- 0x805B7F70: aPOFF_set_bgOffset
- 0x805B8074: aPOFF_setup_animation
- 0x805B813C: aPOFF_open_door_demo_ct
- 0x805B8170: aPOFF_ctrl_light
- 0x805B81A4: aPOFF_wait
- 0x805B8270: aPOFF_open_door_wait
- 0x805B82F4: aPOFF_open_door
- 0x805B8390: aPOFF_setup_action
- 0x805B83A8: aPOFF_actor_move
- 0x805B8438: aPOFF_actor_init
- 0x805B84B0: aPOFF_actor_draw_before
- 0x805B85A8: aPOFF_actor_draw_after
- 0x805B86FC: aPOFF_actor_draw_ta_set
- 0x805B8734: aPOFF_actor_draw_ta_clr
- 0x805B876C: aPOFF_actor_draw
- 0x805B887C: aRAD_actor_ct
- 0x805B88C0: aRAD_set_bgOffset
- 0x805B890C: aRAD_wait
- 0x805B89F8: aRAD_setup_action
- 0x805B8A14: aRAD_actor_move
- 0x805B8B20: aRAD_actor_init
- 0x805B8B98: aRAD_actor_draw
- 0x805B8C7C: aRSV_actor_ct
- 0x805B8CD8: aRSV_set_bgOffset
- 0x805B8CDC: aRSV_set_talk_info
- 0x805B8DE4: aRSV_wait
- 0x805B8E80: aRSV_setup_action
- 0x805B8E9C: aRSV_actor_move
- 0x805B8EC4: aRSV_actor_init
- 0x805B8F3C: aRSV_actor_draw
- 0x805B9098: aSCR_actor_ct
- 0x805B90BC: aSCR_actor_dt
- 0x805B9120: aSCR_set_bgOffset
- 0x805B9220: aSCR_actor_move
- 0x805B93D8: aSCR_actor_init
- 0x805B9450: aSCR_set_prim_col
- 0x805B9564: aSCR_actor_draw
- 0x805B9644: aSHOP_actor_ct
- 0x805B97DC: aSHOP_actor_dt
- 0x805B9834: aSHOP_set_bgOffset
- 0x805B9938: aSHOP_rewrite_out_data
- 0x805B9A38: aSHOP_check_player2
- 0x805B9A90: aSHOP_check_player
- 0x805B9B40: aSHOP_set_talk_info_close_wait
- 0x805B9C48: aSHOP_ctrl_light
- 0x805B9D1C: aSHOP_close_wait
- 0x805B9DB4: aSHOP_open_wait
- 0x805B9EBC: aSHOP_close_door
- 0x805B9F08: aSHOP_open_door
- 0x805B9F38: aSHOP_pl_into_wait
- 0x805B9FB4: aSHOP_setup_action
- 0x805BA060: aSHOP_actor_move
- 0x805BA10C: aSHOP_actor_init
- 0x805BA184: aSHOP_actor_draw_before
- 0x805BA27C: aSHOP_actor_draw_after
- 0x805BA3E0: aSHOP_actor_draw
- 0x805BA4D8: aSHR_getLeaftype
- 0x805BA520: aSHR_actor_ct
- 0x805BA638: aSHR_actor_dt
- 0x805BA66C: aSHR_anime_play
- 0x805BA688: aSHR_init_clip_area
- 0x805BA6D0: aSHR_free_clip_area
- 0x805BA6F4: aSHR_set_bgOffset
- 0x805BA810: aSHR_talk_check
- 0x805BA8C8: aSHR_set_talk_info
- 0x805BA928: aSHR_ctrl_light
- 0x805BA95C: aSHR_Present_ct
- 0x805BA994: aSHR_Present_move
- 0x805BAA6C: aSHR_Present_move_wait_init
- 0x805BAA7C: aSHR_Present_move_wait
- 0x805BAA80: aSHR_Present_move_walk
- 0x805BAB2C: aSHR_wait
- 0x805BABB4: aSHR_talk
- 0x805BADC0: aSHR_talk_gomen
- 0x805BAF80: aSHR_make_hem_init
- 0x805BAFB8: aSHR_make_hem
- 0x805BB160: aSHR_talk_end
- 0x805BB1B8: aSHR_setup_action
- 0x805BB220: aSHR_actor_move
- 0x805BB284: aSHR_actor_init
- 0x805BB2FC: aSHR_actor_draw_ta_set
- 0x805BB368: aSHR_actor_draw_ta_clr
- 0x805BB3D0: aSHR_GetTwoTileGfx
- 0x805BB424: aSHR_GetTwoTileGfx2
- 0x805BB478: aSHR_actor_draw
- 0x805BB8D0: aSTA_actor_ct
- 0x805BB9C0: aSTA_actor_dt
- 0x805BBA08: aSTA_wait
- 0x805BBA0C: aSTA_setup_action
- 0x805BBAB4: aSTA_actor_move
- 0x805BBADC: aSTA_actor_init
- 0x805BBB54: aSTA_actor_draw_before
- 0x805BBBD8: aSTA_actor_draw
- 0x805BBD5C: aSTC_clip_ct
- 0x805BBD80: aSTC_clip_dt
- 0x805BBD98: aSTC_clip_change_sound
- 0x805BBE1C: aSTM_set_slot_name
- 0x805BBE6C: aSTM_chk_train_local
- 0x805BBF14: aSTM_cardproc
- 0x805BC0B0: aSTM_chk_leave_talk
- 0x805BC124: aSTM_chk_leave_talk2
- 0x805BC170: aSTM_repairid_after
- 0x805BC1EC: aSTM_chk_train_talk
- 0x805BC270: aSTM_chk_train2_talk
- 0x805BC2F4: aSTM_before_save_talk
- 0x805BC374: aSTM_save_talk
- 0x805BC5C4: aSTM_save_error
- 0x805BC648: aSTM_chk_over_save_talk
- 0x805BC6D0: aSTM_save_talk_end
- 0x805BC794: aSTM_sayonara
- 0x805BC7E0: aSTM_chk_repairid
- 0x805BC884: aSTM_repairid_bf
- 0x805BC904: aSTM_repairid
- 0x805BC9E4: aSTC_clip_change_talk_proc
- 0x805BCA00: aSTR_actor_ct
- 0x805BCA48: aSTR_actor_dt
- 0x805BCA68: aSTR_check_door_data
- 0x805BCAF8: aSTR_actor_move
- 0x805BCB48: aSTR_get_pal_segment
- 0x805BCB80: aSTR_setupActor_proc
- 0x805BCD30: aSTR_get_overlay_free_area_idx
- 0x805BCD78: aSTR_get_overlay_area_proc
- 0x805BCDE8: aSTR_free_overlay_area_proc
- 0x805BCE30: aSTR_get_actor_area_proc
- 0x805BCE8C: aSTR_free_actor_area_proc
- 0x805BCED4: aSTR_init_clip_area
- 0x805BCFE0: aSTR_free_clip_area
- 0x805BD06C: aSPR_actor_ct
- 0x805BD1DC: aSPR_actor_dt
- 0x805BD220: aSPR_set_door_SE
- 0x805BD24C: aSPR_rewrite_out_data
- 0x805BD350: aSPR_check_player2
- 0x805BD3A8: aSPR_check_player
- 0x805BD470: aSPR_set_talk_info_close_wait
- 0x805BD578: aSPR_ctrl_light
- 0x805BD60C: aSPR_set_bgOffset
- 0x805BD6D8: aSPR_close_wait
- 0x805BD784: aSPR_open_wait
- 0x805BD8A4: aSPR_close_door
- 0x805BD8D4: aSPR_open_door
- 0x805BD904: aSPR_pl_into_wait
- 0x805BD980: aSPR_setup_action
- 0x805BDA60: aSPR_actor_move
- 0x805BDAE0: aSPR_actor_init
- 0x805BDB58: aSPR_actor_draw_before
- 0x805BDBD8: aSPR_actor_draw_after
- 0x805BDCF4: aSPR_actor_draw
- 0x805BDDF4: aTAM_actor_ct
- 0x805BDE1C: aTAM_actor_move
- 0x805BDF0C: aTAM_actor_init
- 0x805BDF84: aTAM_actor_draw
- 0x805BE06C: aTnt_actor_ct
- 0x805BE0DC: aTnt_actor_dt
- 0x805BE100: aTnt_ChangeFg
- 0x805BE2B0: aTnt_SetBgOffset
- 0x805BE400: aTnt_rewrite_out_data
- 0x805BE4F8: aTnt_check_player
- 0x805BE594: aTnt_wait
- 0x805BE670: aTnt_SetupAction
- 0x805BE68C: aTnt_ControlLight
- 0x805BE6C4: aTnt_actor_move
- 0x805BE818: aTnt_actor_init
- 0x805BE890: aTnt_MakeWindowPrimDisplayList
- 0x805BE914: aTnt_actor_draw
- 0x805BEA00: aTOU_fgunit_on
- 0x805BEBBC: aTOU_fgunit_off
- 0x805BEC6C: aTOU_actor_ct
- 0x805BED20: aTOU_actor_dt
- 0x805BED74: aTOU_rewrite_door
- 0x805BEE80: aTOU_check_door_pos
- 0x805BEF28: aTOU_set_bgOffset
- 0x805BF044: aTOU_color_ctrl
- 0x805BF584: aTOU_init
- 0x805BF5A8: aTOU_wait
- 0x805BF630: aTOU_lighting
- 0x805BF6A0: aTOU_lightout
- 0x805BF6E8: aTOU_setup_action
- 0x805BF798: aTOU_actor_move
- 0x805BF8B4: aTOU_actor_init
- 0x805BF92C: aTOU_actor_draw_before
- 0x805BF944: aTOU_actor_draw_after
- 0x805BFAEC: aTOU_actor_draw
- 0x805BFD60: aTR0_ctrl_engineer
- 0x805BFE4C: aTR0_set_effect
- 0x805BFF6C: aTR0_steam_work_sub
- 0x805C0074: aTR0_steam_work
- 0x805C017C: aTR0_ctrl_back_car
- 0x805C025C: aTR0_animation
- 0x805C02C0: aTR0_move
- 0x805C0328: aTR0_delcheck
- 0x805C0614: aTR1_actor_ct
- 0x805C0684: aTR1_actor_dt
- 0x805C06DC: aTR1_OngenTrgStart
- 0x805C0790: aTR1_position_move
- 0x805C0880: aTR1_chg_station_attr
- 0x805C0920: aTR1_passenger_ctrl
- 0x805C0A58: aTR1_setupAction
- 0x805C0B84: aTR1_actor_move
- 0x805C0C04: aTR1_actor_draw
- 0x805C0CC8: aTUK_actor_ct
- 0x805C0D5C: aTUK_actor_dt
- 0x805C0D80: aTUK_set_bgOffset
- 0x805C0DCC: aTUK_setup_action
- 0x805C0E40: aTUK_actor_move
- 0x805C0F3C: aTUK_actor_init
- 0x805C0FB4: aTUK_actor_draw_before
- 0x805C0FCC: aTUK_actor_draw_after
- 0x805C10A0: aTUK_actor_draw
- 0x805C11A8: aTUR_actor_ct
- 0x805C1210: aTUR_actor_dt
- 0x805C1230: aTRC_clip_ct
- 0x805C1278: aTRC_clip_dt
- 0x805C1370: aTRC_clip_fish_rndsize
- 0x805C1390: aTRC_clip_get_msgno
- 0x805C1500: aTRC_clip_random_topsize
- 0x805C1624: aTRC_clip_set_topname
- 0x805C1698: aTUR_set_bgOffset
- 0x805C1810: aTUR_wait
- 0x805C1814: aTUR_setup_action
- 0x805C1830: aTUR_actor_move
- 0x805C193C: aTUR_actor_init
- 0x805C19B4: aTUR_actor_draw
- 0x805C1AB8: aWIN_actor_dt
- 0x805C1AF0: aWIN_set_bgOffset
- 0x805C1C5C: aWIN_actor_move
- 0x805C1CB0: aWIN_actor_init
- 0x805C1D30: aWIN_actor_draw
- 0x805C1D34: aYAT_actor_ct
- 0x805C1D68: aYAT_set_bgOffset
- 0x805C1EFC: aYAT_actor_move
- 0x805C1FEC: aYAT_actor_init
- 0x805C2064: aYAT_actor_draw
- 0x805C217C: mAD_cancel_edit
- 0x805C21F8: mAD_get_nextIdx
- 0x805C2250: mAD_pile_init
- 0x805C2328: mAD_move_between
- 0x805C23C0: mAD_move_cursol
- 0x805C2484: mAD_make_player_address
- 0x805C256C: mAD_make_npc_address
- 0x805C2634: mAD_refuse_proc
- 0x805C2664: mAD_start_proc
- 0x805C26D4: mAD_select_proc
- 0x805C28A4: mAD_turn_page_proc
- 0x805C2AC8: mAD_turn_page2_proc
- 0x805C2C30: mAD_move_Play
- 0x805C2C70: mAD_move_Wait
- 0x805C2CF4: mAD_move_End
- 0x805C2D20: mAD_address_ovl_move
- 0x805C2D88: mAD_address_draw_init
- 0x805C2E90: mAD_set_first_tag
- 0x805C3024: mAD_set_addressSel_tag_field
- 0x805C3184: mAD_set_addressSel_tag_character
- 0x805C33E8: mAD_set_addressSel_tag
- 0x805C35BC: mAD_set_dl
- 0x805C3620: mAD_address_ovl_draw
- 0x805C3700: mAD_address_ovl_set_proc
- 0x805C3720: mAD_address_ovl_init
- 0x805C384C: mAD_address_ovl_construct
- 0x805C38D4: mAD_address_ovl_destruct
- 0x805C38E4: mBN_now_bell_2_bell
- 0x805C3904: mBN_cursol_2_keta
- 0x805C3928: mBN_total_item_bell
- 0x805C39B4: mBN_bank_ok
- 0x805C3BE4: mBN_move_Move
- 0x805C3C10: mBN_move_Play
- 0x805C3E1C: mBN_move_End
- 0x805C3E48: mBN_bank_ovl_move
- 0x805C3EB0: mBN_set_frame_dl
- 0x805C40F0: mBN_set_num_str
- 0x805C41FC: mBN_set_character_dl
- 0x805C44F4: mBN_bank_ovl_draw
- 0x805C455C: mBN_bank_ovl_set_proc
- 0x805C457C: mBN_bank_ovl_init
- 0x805C4694: mBN_bank_ovl_construct
- 0x805C4704: mBN_bank_ovl_destruct
- 0x805C4714: mBR_window_close
- 0x805C4780: mBR_move_Move
- 0x805C47AC: mBR_move_Play
- 0x805C4958: mBR_move_End
- 0x805C4984: mBR_birthday_ovl_move
- 0x805C49EC: mBR_set_dl
- 0x805C4D30: mBR_birthday_ovl_draw
- 0x805C4D88: mBR_birthday_ovl_set_proc
- 0x805C4DA8: mBR_birthday_ovl_init
- 0x805C4E14: mBR_birthday_ovl_construct
- 0x805C4E84: mBR_birthday_ovl_destruct
- 0x805C4E94: mBD_strLineCheck
- 0x805C4F50: mBD_roll_control
- 0x805C50CC: mBD_roll_control2
- 0x805C518C: mBD_move_Move
- 0x805C51B8: mBD_move_Wait
- 0x805C521C: mBD_end_board
- 0x805C5280: mBD_move_Play
- 0x805C52DC: mBD_move_Obey
- 0x805C5530: mBD_move_End
- 0x805C555C: mBD_board_ovl_move
- 0x805C55C4: mBD_set_frame_dl
- 0x805C56D8: mBD_set_point
- 0x805C585C: mBD_set_cursol
- 0x805C5A84: mBD_set_writing_footer
- 0x805C5BA4: mBD_set_writing_body
- 0x805C5E94: mBD_set_writing_header
- 0x805C61D0: mBD_set_character
- 0x805C635C: mBD_set_dl
- 0x805C6430: mBD_board_ovl_draw
- 0x805C6488: mBD_board_ovl_set_proc
- 0x805C64A8: mBD_board_ovl_init
- 0x805C6778: mBD_board_ovl_construct
- 0x805C67CC: mBD_board_ovl_destruct
- 0x805C67DC: mCD_visiter_chk
- 0x805C683C: mCD_sp_soncho_chk
- 0x805C6988: mCD_soncho_chk
- 0x805C6A38: mCD_make_icon
- 0x805C6ADC: mDC_set_string
- 0x805C6BB4: mDC_set_disp_table
- 0x805C6C88: mDC_weekly_to_day_data
- 0x805C6CD4: mDC_day_to_day_data
- 0x805C6D0C: mDC_set_disp_event_day
- 0x805C6D3C: mDC_get_calendar_day_position
- 0x805C6D7C: mCD_make_calendar_event_sanka_check
- 0x805C6E44: mDC_set_event_day_data
- 0x805C6F00: mCD_make_calendar_data_init
- 0x805C6F28: mCD_make_calendar_data_holiday_and_icon
- 0x805C7000: mCD_make_calendar_data_month
- 0x805C7074: mCD_make_calendar_data_fixed_day_event
- 0x805C70E4: mCD_make_calendar_data_unfixed_day_event
- 0x805C7298: mCD_make_calendar_data_year
- 0x805C7354: mCD_make_calendar_data
- 0x805C7408: mCD_stick_area_check
- 0x805C7554: mCD_move_Move
- 0x805C7580: mCD_MVPL_select
- 0x805C773C: mCD_MVPL_mv
- 0x805C78E0: mCD_MVPL_chg
- 0x805C7A7C: mCD_MVPL_day
- 0x805C7DB8: mCD_MVPL_escape
- 0x805C7E5C: mCD_MVPL_entrance
- 0x805C7EF8: mCD_move_Play
- 0x805C7F38: mCD_move_Obey
- 0x805C7F88: mCD_move_Wait
- 0x805C7FC0: mCD_move_End
- 0x805C7FEC: mCD_calendar_ovl_move
- 0x805C805C: mCD_calendar_ovl_draw
- 0x805C81A0: mCD_calendar_ovl_set_proc
- 0x805C81C0: mCD_calendar_ovl_init
- 0x805C8288: mCD_calendar_ovl_construct
- 0x805C82F4: mCD_calendar_ovl_destruct
- 0x805C833C: mCD_set_base_dl
- 0x805C8E2C: mCD_set_hyoji_dl
- 0x805C9088: mCD_set_hyoji2_dl
- 0x805C9194: mCD_disp_event_dl
- 0x805C9254: mCL_dma_furniture_program
- 0x805C9270: mCL_dma_furniture_bank
- 0x805C92BC: mCL_furniture_init
- 0x805C98AC: mCL_paper_init
- 0x805C999C: mCL_wall_init
- 0x805C9A84: mCL_carpet_init
- 0x805C9B6C: mCL_music_init
- 0x805C9BB0: mCL_item_data_set
- 0x805C9D28: mCL_item_move
- 0x805C9EB8: mCL_move_Move
- 0x805C9EE4: mCL_move_Play
- 0x805CA0D4: mCL_move_End
- 0x805CA100: mCL_catalog_ovl_move
- 0x805CA230: mCL_LoadTexturePal
- 0x805CA5D0: mCL_SetKankyoMapping
- 0x805CA6A0: mCL_SetLoopTextureAnime
- 0x805CA6F4: mCL_DrawRegistModel
- 0x805CA79C: mCL_DrawSkelShape
- 0x805CA7F4: mCL_DrawUniqueShape
- 0x805CA8B0: mCL_furniture_draw
- 0x805CABEC: mCL_paper_draw
- 0x805CAC60: mCL_wall_draw
- 0x805CACC0: mCL_carpet_draw
- 0x805CAD58: mCL_music_draw
- 0x805CADFC: mCL_item_draw
- 0x805CB024: mCL_price_draw
- 0x805CB218: mCL_set_page_dl
- 0x805CBA14: mCL_set_wchange_dl
- 0x805CBCA8: mCL_set_dl
- 0x805CBD8C: mCL_catalog_ovl_draw
- 0x805CBDE4: mCL_catalog_ovl_set_proc
- 0x805CBE04: mCL_check_item_collect_bit
- 0x805CBE2C: mCL_catalog_ovl_init
- 0x805CC0F0: mCL_catalog_ovl_construct
- 0x805CC1AC: mCL_catalog_ovl_destruct
- 0x805CC1F4: mCE_move_Move
- 0x805CC220: mCE_move_Play
- 0x805CC224: mCE_move_Wait
- 0x805CC228: mCE_move_Obey
- 0x805CC22C: mCE_move_End
- 0x805CC258: mCE_cpedit_ovl_move
- 0x805CC2E0: mCE_cpedit_ovl_draw
- 0x805CC30C: mCE_cpedit_ovl_set_proc
- 0x805CC32C: mCE_cpedit_ovl_init
- 0x805CC360: mCE_cpedit_ovl_construct
- 0x805CC3D8: mCE_cpedit_ovl_destruct
- 0x805CC3E8: mCM_move_Move
- 0x805CC414: mCM_move_Play
- 0x805CC5A0: mCM_move_Wait
- 0x805CC6BC: mCM_move_End
- 0x805CC6E8: mCM_cpmail_ovl_move
- 0x805CC770: mCM_set_mail
- 0x805CC988: mCM_get_page_posY
- 0x805CC9BC: mCM_set_page_dl
- 0x805CCE70: mCM_set_dl
- 0x805CCF40: mCM_cpmail_ovl_draw
- 0x805CCFA4: mCM_cpmail_draw_init
- 0x805CCFC0: mCM_cpmail_ovl_set_proc
- 0x805CD024: mCM_cpmail_load_memory
- 0x805CD05C: mCM_cpmail_ovl_init
- 0x805CD17C: mCM_cpmail_ovl_construct
- 0x805CD228: mCM_cpmail_ovl_destruct
- 0x805CD2D8: mCO_check_pat_idx
- 0x805CD2F8: mCO_get_change_flg
- 0x805CD308: mCO_pat_idx_to_folder
- 0x805CD318: mCO_pat_idx_to_idx
- 0x805CD330: mCO_top_folder
- 0x805CD340: mCO_check_mark_flg
- 0x805CD37C: mCO_clear_mark_flg
- 0x805CD390: mCO_check_hide_flg
- 0x805CD3C4: mCO_on_hide_flg
- 0x805CD3F0: mCO_clear_hide_flg
- 0x805CD41C: mCO_change_up_folder
- 0x805CD450: mCO_get_texture
- 0x805CD474: mCO_get_texture_pat_idx
- 0x805CD4F8: mCO_get_pallet_no
- 0x805CD51C: mCO_get_pallet_no_pat_idx
- 0x805CD598: mCO_draw_cporiginal
- 0x805CD744: mCO_get_folder_name
- 0x805CD760: mCO_get_image_name
- 0x805CD784: mCO_itemNo_to_data
- 0x805CD7F0: mCO_swap_image_2
- 0x805CD850: mCO_swap_image
- 0x805CD9C0: mCO_move_Move
- 0x805CD9EC: mCO_move_Play
- 0x805CDB78: mCO_move_Wait
- 0x805CDCE4: mCO_move_End
- 0x805CDD10: mCO_cporiginal_ovl_move
- 0x805CDD78: mCO_set_frame_tagS_dl
- 0x805CDF04: mCO_set_frame_tagT_dl
- 0x805CE03C: mCO_set_frame_ueT_dl
- 0x805CE188: mCO_set_frame_main_dl
- 0x805CE478: mCO_set_frame_string_dl
- 0x805CE73C: mCO_set_frame_change_dl
- 0x805CE7F8: mCO_set_frame_dl
- 0x805CE9A0: mCO_cporiginal_ovl_draw
- 0x805CEA24: mCO_cporiginal_ovl_set_proc
- 0x805CEA88: mCO_cporiginal_ovl_init
- 0x805CEB80: mCO_cporiginal_ovl_construct
- 0x805CEC10: mCO_cporiginal_ovl_destruct
- 0x805CEC68: mCW_move_Move
- 0x805CED08: mCW_move_Play
- 0x805CEE90: mCW_move_End
- 0x805CEEBC: mCW_cpwarning_ovl_move
- 0x805CEF24: mCW_set_frame_dl
- 0x805CF078: mCW_set_character_dl
- 0x805CF2CC: mCW_cpwarning_ovl_draw
- 0x805CF334: mCW_cpwarning_ovl_set_proc
- 0x805CF354: mCW_cpwarning_ovl_init
- 0x805CF3D0: mCW_cpwarning_ovl_construct
- 0x805CF448: mCW_cpwarning_ovl_destruct
- 0x805CF458: mDI_get_col_line_width
- 0x805CF58C: mDI_move_cursol_upper
- 0x805CF5AC: mDI_move_cursol_lower
- 0x805CF610: mDI_move_cursol_upper10
- 0x805CF644: mDI_move_cursol_lower10
- 0x805CF6B8: mDI_make_trigger_data
- 0x805CF76C: mDI_Set_command_read
- 0x805CF948: mDI_control_diary_read
- 0x805CFA28: mDI_roll_control_read
- 0x805CFC40: mDI_roll_control_read_to_write
- 0x805CFD80: mDI_roll_control
- 0x805CFF88: mDI_move_Move
- 0x805CFFB4: mDI_Play_editor_in
- 0x805CFFD4: mDI_Play_read
- 0x805D0094: mDI_Play_read_to_write_scroll
- 0x805D01E4: mDI_Play_write
- 0x805D0290: mDI_roll_control_write_to_endchk
- 0x805D03E4: mDI_Play_write_to_endchk_scroll
- 0x805D0480: mDI_Play_endchk_in
- 0x805D0484: mDI_end_diary
- 0x805D04B8: mDI_move_Play
- 0x805D04F8: mDI_move_Obey
- 0x805D05D0: mDI_move_Wait
- 0x805D0634: mDI_move_End
- 0x805D0660: mDI_diary_ovl_move
- 0x805D06C8: mDI_set_button_dl
- 0x805D07D8: mDI_set_frame_dl
- 0x805D0A28: mDI_strLineCheck
- 0x805D0AE4: mDI_set_writing_body
- 0x805D0DCC: mDI_set_character
- 0x805D0F68: mDI_set_dl
- 0x805D1088: mDI_diary_ovl_draw
- 0x805D10E0: mDI_diary_ovl_set_proc
- 0x805D1100: mDI_diary_ovl_init
- 0x805D1200: mDI_diary_ovl_construct
- 0x805D12C4: mDI_diary_ovl_destruct
- 0x805D131C: mDE_pallet_RGB5A3_to_RGB24
- 0x805D13B0: mDE_judge_stick
- 0x805D1464: mDE_judge_stick_full
- 0x805D14AC: mDE_judge_stick_nuetral
- 0x805D14E8: mDE_cursor_move_check
- 0x805D1604: mDE_cursor_move
- 0x805D169C: mDE_cursor_analog_move_hosei
- 0x805D1714: mDE_cursor_analog_move
- 0x805D1D10: mDE_cursor_waku_genten_rotate
- 0x805D1DD0: mDE_cursor_waku_rotate
- 0x805D1F88: mDE_get_pal_on_cursor
- 0x805D2008: mDE_set_pal_on_cursor
- 0x805D20A8: mDE_farbado
- 0x805D2610: mDE_set_texture_template
- 0x805D26B0: mDE_mask_cat_mask
- 0x805D2730: mDE_paint
- 0x805D299C: mDE_print_texture
- 0x805D29A0: mDE_save_maskcat_texture
- 0x805D2A1C: mDE_set_undo_texture
- 0x805D2A4C: mDE_undo
- 0x805D2AD4: mDE_main_pen_move
- 0x805D2E14: mDE_main_nuri_move
- 0x805D2E74: mDE_waku_set_start
- 0x805D2EC0: mDE_waku_set_main_start_end
- 0x805D2F1C: mDE_waku_line
- 0x805D3028: mDE_waku_circle_write
- 0x805D3258: mDE_waku_square_write
- 0x805D3390: mDE_main_waku_move
- 0x805D35C0: mDE_main_mark_move
- 0x805D38F0: mDE_main_undo_move
- 0x805D393C: mDE_mode_tool_check
- 0x805D3C4C: mDE_main_mode_setup_action
- 0x805D3C94: mde_main_move_sound
- 0x805D3D24: mDE_mode_main_shortcut_tool
- 0x805D3DF0: mDE_cursor_waku
- 0x805D3E44: mDE_cursor_waku_naname
- 0x805D3EEC: mDE_mode_stick_control_waku
- 0x805D409C: mDE_mode_stick_control
- 0x805D429C: mDE_mode_stick_control_analog
- 0x805D43C8: mDE_mode_main_move
- 0x805D4C78: mDE_mode_pallet_move
- 0x805D4E8C: mDE_mode_grid_move
- 0x805D4EF8: mDE_mode_tool_move
- 0x805D524C: mDE_setup_action
- 0x805D52A0: mDE_move_Move
- 0x805D52CC: mDE_move_tool_decide
- 0x805D5370: mDE_move_Play
- 0x805D54EC: mDE_move_Wait
- 0x805D5654: mDE_move_End
- 0x805D5680: mDE_design_ovl_move
- 0x805D56E8: mDE_set_frame_tool_dl
- 0x805D59EC: mDE_set_frame_suuji_dl
- 0x805D5C04: mDE_set_frame_mark_dl
- 0x805D5FF8: mDE_waku_right_top
- 0x805D6008: mDE_waku_right_bottom
- 0x805D600C: mDE_waku_left_top
- 0x805D602C: mDE_waku_left_bottom
- 0x805D6048: mDE_set_cursor_waku_rotate
- 0x805D60F4: mDE_set_frame_cursor_dl
- 0x805D73CC: mDE_set_frame_main_dl
- 0x805D76A0: mDE_set_frame_dl
- 0x805D771C: mDE_design_ovl_draw
- 0x805D7774: mDE_design_ovl_set_proc
- 0x805D7794: mDE_design_ovl_init
- 0x805D79B8: mDE_maskcat_init
- 0x805D79E4: mDE_design_ovl_construct
- 0x805D7A54: mDE_design_ovl_destruct
- 0x805D7A64: mEE_move_Move
- 0x805D7A90: mEE_move_Play
- 0x805D7CDC: mEE_move_End
- 0x805D7D08: mEE_editEndChk_ovl_move
- 0x805D7D70: mEE_set_question_field
- 0x805D7E90: mEE_set_answer_field
- 0x805D8048: mEE_set_question_character
- 0x805D8108: mEE_set_answer_character
- 0x805D826C: mEE_set_dl
- 0x805D837C: mEE_editEndChk_ovl_draw
- 0x805D83D4: mEE_editEndChk_ovl_set_proc
- 0x805D83F4: mEE_editEndChk_ovl_init
- 0x805D8418: mEE_editEndChk_ovl_construct
- 0x805D8488: mEE_editEndChk_ovl_destruct
- 0x805D8498: mED_open_warning_window
- 0x805D84E0: mED_get_code
- 0x805D851C: mED_set_stick_area
- 0x805D8610: mED_check_pw_usable_letter_sub
- 0x805D8674: mED_check_pw_usable_letter
- 0x805D870C: mED_move_keyboard_cursor
- 0x805D880C: mED_check_move_cursol
- 0x805D8968: mED_check_shift
- 0x805D89D4: mED_check_arrange
- 0x805D8A40: mED_check_input_mode
- 0x805D8AB0: mED_check_now_code
- 0x805D8B3C: mED_check_output_code
- 0x805D8BE4: mED_set_command
- 0x805D8C68: mED_get_col_line_width
- 0x805D8DD0: mED_check_line_over
- 0x805D8E60: mED_set_idxcol_inLineWidth
- 0x805D8F98: mED_init
- 0x805D916C: mED_set_se
- 0x805D9250: mED_output_code
- 0x805D92A8: mED_get_single_line_width
- 0x805D9314: mED_input_single_line
- 0x805D93AC: mED_input_multi_line_R
- 0x805D9508: mED_input_multi_line
- 0x805D952C: mED_input_pw_make_line
- 0x805D95C4: mED_input_pw_chk_line
- 0x805D96BC: mED_move_cursol_right
- 0x805D9778: mED_move_cursol_left
- 0x805D9798: mED_move_cursol_upper
- 0x805D97E0: mED_move_cursol_lower
- 0x805D9894: mED_end_edit_func
- 0x805D98E4: mED_backspace_func
- 0x805D9944: mED_backspace_func_pw_chk
- 0x805D9A00: mED_get_exchange_code
- 0x805D9A3C: mED_exchange_code_func
- 0x805D9A6C: mED_clear_input_data
- 0x805D9AAC: mED_all_space_check
- 0x805D9B74: mED_ng_word_check
- 0x805D9C3C: mED_edit_func_multi_line
- 0x805D9CE0: mED_edit_func_single_line
- 0x805D9DCC: mED_edit_func_letter_header_kill_space
- 0x805D9E8C: mED_edit_func_letter_header
- 0x805D9F84: mED_break_space_code
- 0x805D9FD4: mED_input_footer_line_sub
- 0x805DA118: mED_input_footer_line
- 0x805DA168: mED_move_footer_cursol_right
- 0x805DA248: mED_move_footer_cursol_left
- 0x805DA2C8: mED_edit_func_letter_footer
- 0x805DA3B0: mED_move_letter_table
- 0x805DA4CC: mED_edit_func_letter
- 0x805DA54C: mED_edit_func_diary
- 0x805DA618: mED_move_pw_make_table
- 0x805DA7A4: mED_edit_func_pw_make
- 0x805DA8C0: mED_move_pw_chk_table
- 0x805DA948: mED_edit_func_pw_chk
- 0x805DAA84: mED_move_Move
- 0x805DAAB0: mED_move_Play
- 0x805DAC6C: mED_move_Wait
- 0x805DAC88: mED_move_End
- 0x805DACC4: mED_editor_ovl_move
- 0x805DAD2C: mED_KeyDraw_A_button
- 0x805DADC0: mED_KeyDraw_B_button
- 0x805DAE60: mED_KeyDraw_X_button
- 0x805DAF28: mED_KeyDraw_Y_button
- 0x805DB050: mED_KeyDraw_START_button
- 0x805DB08C: mED_KeyDraw_L_button
- 0x805DB1DC: mED_KeyDraw_R_button
- 0x805DB27C: mED_KeyDraw_keyboard
- 0x805DB45C: mED_KeyDraw_J_key
- 0x805DB544: mED_KeyDraw_3D_stick
- 0x805DB654: mED_KeyDraw
- 0x805DB7E8: mED_InkPotDraw
- 0x805DBA58: mED_StringsDraw_spaceCode
- 0x805DBBC8: mED_StringsDraw_keyboard
- 0x805DBD30: mED_StringsDraw_select
- 0x805DBE5C: mED_StringsDraw_ornament
- 0x805DBF8C: mED_StringsDraw
- 0x805DC028: mED_set_dl
- 0x805DC0B0: mED_endCode_draw
- 0x805DC180: mED_cursol_draw
- 0x805DC1F0: mED_editor_ovl_draw
- 0x805DC290: mED_editor_ovl_set_proc
- 0x805DC2B0: mED_editor_ovl_init
- 0x805DC314: mED_editor_ovl_construct
- 0x805DC3BC: mED_editor_ovl_destruct
- 0x805DC3CC: mGB_get_change_flg
- 0x805DC3DC: mGB_check_hide_flg
- 0x805DC41C: mGB_check_mark_flg
- 0x805DC45C: mGB_copy_image
- 0x805DC528: mGB_get_image_name
- 0x805DC540: mGB_get_image_pal
- 0x805DC590: mGB_get_image_texture
- 0x805DC5DC: mGB_draw_gba
- 0x805DC784: mGB_move_Move
- 0x805DC7B0: mGB_move_Play
- 0x805DC874: mGB_move_Wait
- 0x805DC940: mGB_move_End
- 0x805DC96C: mGB_gba_ovl_move
- 0x805DC9D4: mGB_set_frame_dl
- 0x805DCD2C: mGB_set_card_frame_dl
- 0x805DCEB4: mGB_gba_ovl_draw
- 0x805DCF58: mGB_gba_ovl_set_proc
- 0x805DCFBC: mGB_gba_ovl_init
- 0x805DD040: mGB_gba_ovl_construct
- 0x805DD0BC: mGB_gba_ovl_destruct
- 0x805DD104: mHD_set_anime
- 0x805DD17C: mHD_hand_shape_init
- 0x805DD1EC: mHD_hand_shape_move
- 0x805DD224: mHD_calc_hand_offset
- 0x805DD298: mHD_hand_pos_get
- 0x805DD460: mHD_hand_position_move
- 0x805DD850: mHD_drop_item
- 0x805DDD18: mHD_prepare_drop_ticket
- 0x805DDE1C: mHD_prepare_drop_wisp
- 0x805DDF18: mHD_prepare_drop_paper
- 0x805DE02C: mHD_drop_item2
- 0x805DE124: mHD_open_sack
- 0x805DE1CC: mHD_drop_mail
- 0x805DE2B8: mHD_change_iv_back_segment
- 0x805DE340: mHD_open_end_proc_item_type0
- 0x805DE3B8: mHD_open_end_proc_item_type1
- 0x805DE404: mHD_open_end_proc_item_type2
- 0x805DE424: mHD_open_end_proc_item_type3
- 0x805DE5C8: mHD_open_end_proc_item_type4
- 0x805DE638: mHD_open_end_proc_item_type6
- 0x805DE708: mHD_open_end_proc_item_type17
- 0x805DE8E0: mHD_open_end_proc_item
- 0x805DEA20: mHD_open_end_proc_mail
- 0x805DEA94: mHD_open_end_proc
- 0x805DEB00: mHD_close_move
- 0x805DEB28: mHD_open_move
- 0x805DEBC0: mHD_sasu2_move
- 0x805DED48: mHD_hand_ovl_move
- 0x805DEDE0: mHD_draw_item
- 0x805DEF5C: mHD_draw_mail
- 0x805DF074: mHD_draw_original
- 0x805DF188: mHD_hand_shape_draw
- 0x805DF3CC: mHD_hand_ovl_draw
- 0x805DF7A4: mHD_nop_hand_func
- 0x805DF7C0: mHD_set_hand_func
- 0x805DF7E4: mHD_hand_ovl_construct
- 0x805DF9B4: mHD_hand_ovl_destruct
- 0x805DFA00: mHP_haniwaPortrait_shape_init
- 0x805DFA94: mHP_haniwaPortrait_shape_move
- 0x805DFABC: mHP_haniwaPortrait_shape_draw
- 0x805DFC38: mHP_set_haniwaPortrait
- 0x805DFD70: mHP_haniwaPortrait_ovl_construct
- 0x805DFE08: mHP_haniwaPortrait_ovl_destruct
- 0x805DFE48: mHW_set_interrupt_message
- 0x805DFE70: mHW_set_price
- 0x805DFF48: mHW_make_cond_message
- 0x805DFFF4: mHW_make_message_interrupt
- 0x805E00C0: mHW_make_message_normal
- 0x805E01E0: mHW_make_message
- 0x805E02C0: mHW_move_Move
- 0x805E02EC: mHW_move_Play
- 0x805E037C: mHW_move_End
- 0x805E03A8: mHW_haniwa_ovl_move
- 0x805E046C: mHW_set_frame_dl
- 0x805E05C0: mHW_set_item
- 0x805E06E4: mHW_set_message
- 0x805E07D4: mHW_set_dl
- 0x805E08D0: mHW_haniwa_ovl_draw
- 0x805E0928: mHW_haniwa_ovl_set_proc
- 0x805E097C: mHW_haniwa_ovl_init
- 0x805E0A20: mHW_haniwa_ovl_construct
- 0x805E0AB8: mHW_haniwa_ovl_destruct
- 0x805E0AC8: mHB_strLineCheck
- 0x805E0B84: mHB_move_Move
- 0x805E0BB0: mHB_move_Wait
- 0x805E0BF0: mHB_move_End
- 0x805E0C1C: mHB_hboard_ovl_move
- 0x805E0CD4: mHB_set_frame_dl
- 0x805E0DA4: mHB_set_character
- 0x805E0FEC: mHB_set_dl_sub
- 0x805E116C: mHB_set_dl
- 0x805E124C: mHB_hboard_ovl_draw
- 0x805E12AC: mHB_hboard_ovl_set_proc
- 0x805E12CC: mHB_hboard_ovl_init
- 0x805E1338: mHB_hboard_ovl_construct
- 0x805E1388: mHB_hboard_ovl_destruct
- 0x805E1398: mIV_Get_pl_main_anime_index
- 0x805E13C4: mIV_set_collect_itemNo
- 0x805E14AC: mIV_get_player_item_anime_id
- 0x805E177C: mIV_ChangeIndex_mIV_to_mPlib
- 0x805E17AC: mIV_Get_player_item_shape_index
- 0x805E1804: mIV_Get_pl_item_skeleton
- 0x805E186C: mIV_Get_player_com_animation_index
- 0x805E1890: mIV_Get_pl_com_anime
- 0x805E18B4: mIV_Get_player_com_part_table_index
- 0x805E18DC: mIV_Get_player_item_anime_index
- 0x805E192C: mIV_Get_pl_item_anime
- 0x805E1968: mIV_Get_pl_main_anime
- 0x805E19A4: mIV_pl_load_player_anime
- 0x805E1CCC: mIV_pl_shape_init
- 0x805E1D6C: mIV_pl_eff_move
- 0x805E1F3C: mIV_pl_check_anm_change
- 0x805E2004: mIV_pl_shape_move
- 0x805E2118: mIV_pl_shape_item_draw_net
- 0x805E2178: mIV_pl_shape_item_draw_axe
- 0x805E21D4: mIV_pl_shape_item_draw_umbrella
- 0x805E2360: mIV_pl_shape_item_draw_rod
- 0x805E24DC: mIV_pl_shape_item_draw_scoop
- 0x805E2538: mIV_pl_shape_item_draw_balloon_Before
- 0x805E2590: mIV_pl_shape_item_draw_balloon_After
- 0x805E25E8: mIV_pl_shape_item_draw_balloon
- 0x805E269C: mIV_pl_shape_item_draw_windmill
- 0x805E26FC: mIV_pl_shape_item_draw_fan
- 0x805E2758: mIV_pl_shape_after_draw
- 0x805E27CC: mIV_pl_equip_item_draw
- 0x805E2868: mIV_pl_food_item_draw
- 0x805E2B20: mIV_pl_shape_draw
- 0x805E2D78: mIV_pl_eff_draw
- 0x805E2E6C: mIV_pl_shadow_draw
- 0x805E2F3C: mIV_set_player
- 0x805E3110: mIV_move_Move
- 0x805E313C: mIV_move_Play
- 0x805E3444: mIV_move_Wait
- 0x805E35C0: mIV_move_Obey
- 0x805E366C: mIV_move_End
- 0x805E36C0: mIV_inventory_ovl_move
- 0x805E38A8: mIV_set_base_frame_dl
- 0x805E3AA8: mIV_set_normal_frame_dl
- 0x805E3C54: mIV_is_mark_check
- 0x805E3C70: mIV_set_item
- 0x805E3FBC: mIV_set_mail
- 0x805E4214: mIV_set_money
- 0x805E4350: mIV_SetLineStrings_centering
- 0x805E44B4: mIV_up_page_draw_check
- 0x805E4520: mIV_set_collect_dl
- 0x805E46C4: mIV_set_normal_dl
- 0x805E4840: mIV_set_dl
- 0x805E48E0: mIV_inventory_ovl_draw
- 0x805E4938: mIV_inventory_ovl_set_proc
- 0x805E499C: mIV_inventory_ovl_init
- 0x805E4CF4: mIV_inventory_ovl_construct
- 0x805E4DA0: mIV_inventory_ovl_destruct
- 0x805E4DFC: mLE_move_Move
- 0x805E4E28: mLE_move_Wait
- 0x805E4F20: mLE_move_End
- 0x805E4F4C: mLE_ledit_ovl_move
- 0x805E4FB4: mLE_set_dl
- 0x805E5414: mLE_ledit_ovl_draw
- 0x805E546C: mLE_ledit_ovl_set_proc
- 0x805E548C: mLE_ledit_ovl_init
- 0x805E55B0: mLE_ledit_ovl_construct
- 0x805E5600: mLE_ledit_ovl_destruct
- 0x805E5610: mMB_get_last_mail_idx
- 0x805E5678: mMB_move_Move
- 0x805E56A4: mMB_move_Play
- 0x805E5738: mMB_move_Wait
- 0x805E57EC: mMB_move_End
- 0x805E583C: mMB_mailbox_ovl_move
- 0x805E58D4: mMB_set_frame_dl
- 0x805E5A84: mMB_set_mail
- 0x805E5C88: mMB_set_dl
- 0x805E5D34: mMB_mailbox_ovl_draw
- 0x805E5D94: mMB_mailbox_ovl_set_proc
- 0x805E5DF8: mMB_mailbox_ovl_init
- 0x805E5E30: mMB_mailbox_ovl_data_init
- 0x805E5E60: mMB_mailbox_ovl_construct
- 0x805E5EEC: mMB_mailbox_ovl_destruct
- 0x805E5EFC: mMP_check_layer
- 0x805E5F84: mMP_check_bg_kind
- 0x805E5FC0: mMP_make_max_no_table
- 0x805E60BC: mMP_dma_texture
- 0x805E60D4: mMP_set_map_texture_pal
- 0x805E6154: mMP_GetFgBlockName
- 0x805E618C: mMP_set_house_data
- 0x805E6464: mMP_set_field_data
- 0x805E65A8: mMP_set_init_data
- 0x805E675C: mMP_move_Move
- 0x805E6788: mMP_move_Play
- 0x805E6938: mMP_move_Wait
- 0x805E6A14: mMP_move_End
- 0x805E6A40: mMP_map_ovl_move
- 0x805E6AA8: mMP_map_draw_init
- 0x805E6B08: mMP_get_label_cnt
- 0x805E6B2C: mMP_set_house_dl
- 0x805E6E04: mMP_set_map_dl
- 0x805E6F8C: mMP_set_cursol_dl
- 0x805E70C4: mMP_set_label_dl
- 0x805E7344: mMP_set_base_dl
- 0x805E7400: mMP_set_win_dl
- 0x805E7558: mMP_set_label_top_dl
- 0x805E76B4: mMP_set_dl
- 0x805E78A4: mMP_map_ovl_draw
- 0x805E78FC: mMP_map_ovl_set_proc
- 0x805E791C: mMP_map_ovl_init
- 0x805E798C: mMP_map_ovl_construct
- 0x805E7A0C: mMP_map_ovl_destruct
- 0x805E7A54: mMS_move_Move
- 0x805E7A80: mMS_move_Play
- 0x805E7D60: mMS_move_Wait
- 0x805E7E20: mMS_move_Obey
- 0x805E7FAC: mMS_move_End
- 0x805E7FD8: mMS_mscore_ovl_move
- 0x805E8040: mMS_MScore_draw_init
- 0x805E8044: mMS_set_dl
- 0x805E8B5C: mMS_mscore_ovl_draw
- 0x805E8BB4: mMS_mscore_ovl_set_proc
- 0x805E8BD4: mMS_mscore_ovl_init
- 0x805E8C48: mMS_mscore_ovl_construct
- 0x805E8CC8: mMS_mscore_ovl_destruct
- 0x805E8CF8: mMU_move_Move
- 0x805E8D24: mMU_move_Play
- 0x805E8E08: mMU_move_Wait
- 0x805E8E74: mMU_move_End
- 0x805E8EA0: mMU_music_ovl_move
- 0x805E8F28: mMU_check_music_collect_bit
- 0x805E8FC8: mMU_check_mark_flg
- 0x805E9000: mMU_get_md_no
- 0x805E904C: mMU_set_dl
- 0x805E9440: mMU_set_title_dl
- 0x805E95B0: mMU_music_ovl_draw
- 0x805E9634: mMU_music_draw_init
- 0x805E9640: mMU_music_ovl_set_proc
- 0x805E96A4: mMU_music_ovl_init
- 0x805E96D8: mMU_music_ovl_construct
- 0x805E9758: mMU_music_ovl_destruct
- 0x805E9768: mNW_with_cporiginal_check
- 0x805E9794: mNW_check_hide_flg
- 0x805E97D4: mNW_on_hide_flg
- 0x805E980C: mNW_clear_hide_flg
- 0x805E9820: mNW_check_mark_flg
- 0x805E9860: mNW_clear_mark_flg
- 0x805E9874: mNW_swap_image_no
- 0x805E9908: mNW_get_image_no
- 0x805E998C: mNW_get_image_pal
- 0x805E9A14: mNW_get_image_texture
- 0x805E9A94: mNW_get_image_name
- 0x805E9B14: mNW_get_image_data
- 0x805E9B94: mNW_draw_original
- 0x805E9D5C: mNW_next_data
- 0x805E9DE0: mNW_move_Move
- 0x805E9E0C: mNW_move_Play
- 0x805E9F08: mNW_move_Wait
- 0x805E9FC8: mNW_move_End
- 0x805E9FF4: mNW_needlework_ovl_move
- 0x805EA05C: mNW_set_frame_dl
- 0x805EA32C: mNW_draw_sav_mark_before
- 0x805EA3CC: mNW_draw_sav_mark
- 0x805EA484: mNW_set_frame_dl_cpo
- 0x805EA798: mNW_needlework_ovl_draw
- 0x805EA838: mNW_needlework_ovl_set_proc
- 0x805EA8A8: mNW_needlework_ovl_init
- 0x805EAA18: mNW_needlework_ovl_construct
- 0x805EAA78: mNW_needlework_ovl_destruct
- 0x805EAAC0: mNT_strLineCheck
- 0x805EAB7C: mNT_set_init_data
- 0x805EABE8: mNT_finish_notice_first_job
- 0x805EAC50: mNT_roll_control
- 0x805EAD98: mNT_roll_control2
- 0x805EAE58: mNT_Play_page_read
- 0x805EB0A0: mNT_Play_page_move
- 0x805EB274: mNT_Play_page_to_write
- 0x805EB398: mNT_Play_page_to_read
- 0x805EB4BC: mNT_move_Move
- 0x805EB514: mNT_move_Play
- 0x805EB554: mNT_move_Wait
- 0x805EB5A0: mNT_move_Obey
- 0x805EB688: mNT_move_End
- 0x805EB6BC: mNT_stick_area_check
- 0x805EB7A4: mNT_notice_ovl_move
- 0x805EB814: mNT_notice_draw_init
- 0x805EB830: mNT_set_frame_dl
- 0x805EB900: mNT_set_key_dl
- 0x805EBAE0: mNT_set_num_strings_dl
- 0x805EBBB4: mNT_set_day_strings_dl
- 0x805EBE48: mNT_set_strings_dl
- 0x805EC0DC: mNT_set_page_dl
- 0x805EC2EC: mNT_set_dl
- 0x805EC3E4: mNT_notice_ovl_draw
- 0x805EC43C: mNT_notice_ovl_set_proc
- 0x805EC45C: mNT_notice_ovl_init
- 0x805EC4E4: mNT_notice_ovl_construct
- 0x805EC540: mNT_notice_ovl_destruct
- 0x805EC550: mRP_money_repay
- 0x805EC654: mRP_move_Move
- 0x805EC680: mRP_move_Play
- 0x805EC898: mRP_move_End
- 0x805EC8C4: mRP_repay_ovl_move
- 0x805EC92C: mRP_set_frame_dl
- 0x805ECA70: mRP_set_num_str
- 0x805ECB7C: mRP_set_character_dl
- 0x805ECE78: mRP_set_dl
- 0x805ECEF8: mRP_repay_ovl_draw
- 0x805ECF50: mRP_repay_ovl_set_proc
- 0x805ECF70: mRP_repay_ovl_init
- 0x805ED07C: mRP_repay_ovl_construct
- 0x805ED0EC: mRP_repay_ovl_destruct
- 0x805ED0FC: mSM_setup_view
- 0x805ED2D0: mSM_change_view
- 0x805ED668: mSM_set_char_matrix
- 0x805ED694: mSM_cbuf_copy
- 0x805EDA98: mSM_set_drawMode
- 0x805EE06C: mSM_get_groupNo
- 0x805EE074: mSM_set_dl_item
- 0x805EE5C8: mSM_draw_item
- 0x805EE868: mSM_draw_mail
- 0x805EEC00: mSM_draw_original
- 0x805EECE8: mSM_ovl_prog_seg
- 0x805EED94: mSM_set_other_seg
- 0x805EEE10: mSM_set_before_menu_proc
- 0x805EEE78: mSM_set_new_seg
- 0x805EEEC4: mSM_set_new_start_data
- 0x805EEF78: mSM_move_chg_base
- 0x805EEFA4: mSM_make_trigger_data
- 0x805EF068: mSM_save_before_func
- 0x805EF0AC: mSM_set_proc
- 0x805EF0F0: mSM_tex_move
- 0x805EF16C: mSM_return_func
- 0x805EF290: mSM_move_menu
- 0x805EF368: mSM_move_Move
- 0x805EF468: mSM_menu_ovl_move
- 0x805EF4D0: mSM_menu_ovl_draw
- 0x805EF528: mSM_menu_ovl_init
- 0x805EF6CC: mTG_check_hand_condition
- 0x805EF720: mTG_set_hand_pos_offset
- 0x805EF798: mTG_set_hand_pos
- 0x805EF854: mTG_get_tag_idx
- 0x805EF89C: mTG_return_tag_init
- 0x805EF954: mTG_get_item_name_wait_time
- 0x805EF97C: mTG_return_tag_func
- 0x805EFA80: mTG_quest_disp_up_check
- 0x805EFABC: mTG_quest_disp_low_check
- 0x805EFAE4: mTG_set_tag_win_scale_p
- 0x805EFC48: mTG_get_table_idx
- 0x805EFC7C: mTG_check_edge_right_item
- 0x805EFCD8: mTG_calc_right_edge_select
- 0x805EFD0C: mTG_check_edge_right_select
- 0x805EFD74: mTG_check_edge_foot_select
- 0x805EFDF0: mTG_get_max_col_width_data
- 0x805EFE7C: mTG_get_col_width_and_line_select
- 0x805F00A8: mTG_get_mail_pointer
- 0x805F0188: mTG_strcat
- 0x805F0220: mTG_strcpy
- 0x805F0298: mTG_strcat_color
- 0x805F0374: mTG_init_tag_data_item_win_sub_mail_item_mail
- 0x805F0428: mTG_init_tag_data_item_win_sub_mail_item_xmas
- 0x805F0498: mTG_init_tag_data_item_win_sub_mail_item_tanukiti
- 0x805F0508: mTG_init_tag_data_item_win_sub_mail_item_tunekiti
- 0x805F0578: mTG_init_tag_data_item_win_sub_mail_item_mother
- 0x805F05DC: mTG_init_tag_data_item_win_sub_mail_item_omikuji
- 0x805F064C: mTG_init_tag_data_item_win_sub_mail_item_happy
- 0x805F06B4: mTG_init_tag_data_item_win_sub_mail_item_snowman
- 0x805F0724: mTG_init_tag_data_item_win_sub_mail_item_angler
- 0x805F0790: mTG_init_tag_data_item_win_sub_mail_item_postoffice
- 0x805F07F8: mTG_init_tag_data_item_win_sub_mail_item_sp_npc
- 0x805F085C: mTG_init_tag_data_item_win_sub_mail_item_set_string
- 0x805F0AB8: mTG_init_tag_data_item_win_sub_mail_item
- 0x805F0F4C: mTG_init_tag_data_set_base_pos
- 0x805F0FFC: mTG_init_tag_data_set_itemNo
- 0x805F1118: mTG_init_tag_data_catalog_win
- 0x805F120C: mTG_init_tag_data_cpmail_wc_win
- 0x805F1330: mTG_init_tag_data_cporiginal_wc_win
- 0x805F1450: mTG_init_tag_data_needlework_win
- 0x805F1684: mTG_init_tag_data_item_win
- 0x805F1814: mTG_init_tag_data_select_win_only
- 0x805F1984: mTG_init_tag_data_select_win_after_item
- 0x805F1F38: mTG_init_tag_data_select_win_after_select
- 0x805F212C: mTG_init_tag_data
- 0x805F2254: mTG_chg_tag_func
- 0x805F22B4: mTG_chg_tag_func2
- 0x805F2384: mTG_check_item_on_mail
- 0x805F23EC: mTG_check_put_unit
- 0x805F24A8: mTG_put_place_check
- 0x805F2558: mTG_check_direction_put_pos
- 0x805F2584: mTG_check_wall_put_pos
- 0x805F262C: mTG_check_pos_slope
- 0x805F271C: mTG_search_put_pos2
- 0x805F2ED0: mTG_search_put_pos
- 0x805F2F08: mTG_open_warning_window
- 0x805F2F6C: mTG_common_throw_put_field
- 0x805F3040: mTG_common_throw_put_room
- 0x805F30FC: mTG_close_window
- 0x805F314C: mTG_open_board_init
- 0x805F3214: mTG_set_catch_se
- 0x805F3258: mTG_catch_item_from_table
- 0x805F33FC: mTG_itemNo_to_amount
- 0x805F3450: mTG_make_money_sack
- 0x805F352C: mTG_drop_furniture
- 0x805F35EC: mTG_nw_drop_furniture
- 0x805F3774: mTG_get_unit_front_player
- 0x805F3830: mTG_check_free_2nd_layer
- 0x805F3904: mTG_set_trade_cond
- 0x805F39B8: mTG_present_open_proc
- 0x805F3A58: mTG_nw_select_this_proc
- 0x805F3AC8: mTG_give_proc
- 0x805F3BD8: mTG_sell_proc
- 0x805F3C84: mTG_sell_all_proc
- 0x805F3D90: mTG_get_proc
- 0x805F40D0: mTG_dump_mail_mark_exe_proc
- 0x805F432C: mTG_mailbox_change_mail_proc
- 0x805F43C4: mTG_cpmail_change_mail_proc
- 0x805F4600: mTG_dump_mail_proc
- 0x805F4640: mTG_dump_item_proc
- 0x805F46AC: mTG_send_proc
- 0x805F4770: mTG_rewrite_proc
- 0x805F479C: mTG_stick_select_proc
- 0x805F47E0: mTG_nw_carpet_proc
- 0x805F49C0: mTG_carpet_proc
- 0x805F4A8C: mTG_nw_cover_proc
- 0x805F4C6C: mTG_cover_proc
- 0x805F4D38: mTG_putin_proc
- 0x805F4EF0: mTG_music_listen_proc
- 0x805F4F5C: mTG_music_takeout_proc
- 0x805F5214: mTG_island_check_plant_plant
- 0x805F5268: mTG_island_check_fruit_plant
- 0x805F5324: mTG_island_check_fruit_eat
- 0x805F5354: mTG_plant_proc
- 0x805F556C: mTG_check_island_famicom
- 0x805F55EC: mTG_field_put_proc
- 0x805F5960: mTG_room_put_proc
- 0x805F5D78: mTG_put_all_proc
- 0x805F5DCC: mTG_dump_mail_mark_conf_proc
- 0x805F5E10: mTG_next_open_proc
- 0x805F5E80: mTG_next_open_needlework_sel_stick_proc
- 0x805F5F28: mTG_next_open_needlework_sel_put_proc
- 0x805F5F6C: mTG_free_proc
- 0x805F5F94: mTG_catch_proc
- 0x805F62BC: mTG_mail_check
- 0x805F6308: mTG_password_item_proc
- 0x805F63B4: mTG_mark_enable_check
- 0x805F64AC: mTG_mark_main_sub
- 0x805F6AAC: mTG_bit_chk
- 0x805F6AE0: mTG_bit_on
- 0x805F6B0C: mTG_bit_off
- 0x805F6B38: mTG_bit_rvs
- 0x805F6B64: mTG_bit_clr
- 0x805F6B84: mTG_bit_chk_all0
- 0x805F6BB4: mTG_mark_mainX
- 0x805F6D44: mTG_mark_main_CLR
- 0x805F6E68: mTG_mark_main
- 0x805F6ED4: mTG_write_proc
- 0x805F6F68: mTG_priceset_proc
- 0x805F6FF8: mTG_present_proc
- 0x805F70B4: mTG_show_proc
- 0x805F70DC: mTG_cancel_proc
- 0x805F7160: mTG_read_proc
- 0x805F71DC: mTG_take_proc
- 0x805F7350: mTG_m100_proc
- 0x805F7374: mTG_m1000_proc
- 0x805F7398: mTG_m10000_proc
- 0x805F73BC: mTG_m30000_proc
- 0x805F73E0: mTG_1catch_proc
- 0x805F75A0: mTG_order_proc
- 0x805F765C: mTG_bury_proc
- 0x805F7770: mTG_insect_release_sub
- 0x805F77E0: mTG_insect_release_demo_gold_scoop
- 0x805F7804: mTG_insect_release
- 0x805F7828: mTG_release_proc
- 0x805F79D4: mTG_fly_proc
- 0x805F7AC4: mTG_exchange_proc
- 0x805F7E30: mTG_hukubukuro_open_proc
- 0x805F8140: mTG_cp_data_delete_proc
- 0x805F8144: mTG_nw_room_put_proc
- 0x805F8230: mTG_nw_room_put_manekin_proc
- 0x805F8254: mTG_nw_stk_pat_proc
- 0x805F82A0: mTG_tag_remove_proc
- 0x805F82D4: mTG_nw_room_put_umbrella_proc
- 0x805F82F8: mTG_nw_st_umbrella_proc
- 0x805F83EC: mTG_nw_st_wear_proc
- 0x805F84B4: mTG_change_original_proc
- 0x805F869C: mTG_mv_priceSet
- 0x805F8814: mTG_change_mail
- 0x805F886C: mTG_change_mail2
- 0x805F88AC: mTG_change_mail3
- 0x805F89D8: mTG_cpack_change_mail_mark_move
- 0x805F8CEC: mTG_cpack_change_mail_mark_decide
- 0x805F9198: mTG_cpack_change_mail_mark_main
- 0x805F9214: mTG_trans_mail_mark
- 0x805F938C: mTG_trans_mail
- 0x805F9504: mTG_check_trans_mail
- 0x805F9590: mTG_check_trans_mail_mark
- 0x805F95E4: mTG_cpack_change_mail_mark
- 0x805F9650: mTG_move_cursol_in_cpedit
- 0x805F9658: mTG_move_cursol_in_catalog
- 0x805F98CC: mTG_move_cursol_base_left
- 0x805F98F4: mTG_move_cursol_base_right
- 0x805F9934: mTG_move_cursol_base_upper
- 0x805F995C: mTG_move_cursol_base_lower
- 0x805F99A0: mTG_move_check_hand_item_on_player
- 0x805F99E8: mTG_move_check_hand_item
- 0x805F9ABC: mTG_move_cursol_between_table_inventory_left
- 0x805F9D34: mTG_move_cursol_between_table_inventory_right
- 0x805F9F0C: mTG_move_cursol_between_table_inventory_upper
- 0x805FA080: mTG_move_cursol_between_table_inventory_lower
- 0x805FA128: mTG_move_cursol_between_table_cpmail
- 0x805FA364: mTG_move_cursol_between_table_music
- 0x805FA36C: mTG_move_cursol_between_table_haniwa
- 0x805FA404: mTG_move_cursol_between_table_mailbox
- 0x805FA49C: mTG_move_cursol_between_table_catalog
- 0x805FA57C: mTG_move_cursol_between_table_cporiginal
- 0x805FA78C: mTG_move_cursol_between_table_gba
- 0x805FA838: mTG_move_cursol_between_table_card
- 0x805FA8A0: mTG_move_cursol_between_table_inventory
- 0x805FA93C: mTG_move_cursol_base
- 0x805FAB2C: mTG_select_tag_decide_item_normal
- 0x805FAEEC: mTG_select_tag_decide_item
- 0x805FAFF8: mTG_select_tag_decide_mail
- 0x805FB27C: mTG_select_tag_decide_money
- 0x805FB318: mTG_select_tag_decide_player
- 0x805FB358: mTG_select_tag_decide_bg
- 0x805FB360: mTG_select_tag_decide_haniwa
- 0x805FB3BC: mTG_select_tag_decide_collect
- 0x805FB3D4: mTG_select_tag_decide_wchange
- 0x805FB458: mTG_select_tag_decide_cpmail_wchange
- 0x805FB4C8: mTG_select_tag_decide_cpmail_title
- 0x805FB550: mTG_select_tag_decide_catalog
- 0x805FB59C: mTG_select_tag_decide_catalog_wchange
- 0x805FB64C: mTG_select_tag_decide_music_main
- 0x805FB764: mTG_select_tag_decide_needlework
- 0x805FB834: mTG_select_tag_decide_inv_wc_org
- 0x805FB8CC: mTG_select_tag_decide_cporiginal
- 0x805FB920: mTG_select_tag_decide_cporiginal_nw
- 0x805FB974: mTG_select_tag_decide_cporiginal_wc
- 0x805FB9EC: mTG_select_tag_decide_cporiginal_ti
- 0x805FBA5C: mTG_select_tag_decide_gba_nw
- 0x805FBAE4: mTG_hand_drop_item
- 0x805FBBEC: mTG_drop_item
- 0x805FBE88: mTG_drop_proc
- 0x805FBEF0: mTG_hand_return_item
- 0x805FC2A0: mTG_check_move_proc
- 0x805FC390: mTG_mark_proc
- 0x805FC4D4: mTG_move_cancel
- 0x805FC620: mTG_move_decide
- 0x805FC7C8: mTG_move_catch
- 0x805FC8EC: mTG_move_change
- 0x805FCAC0: mTG_move_move
- 0x805FCB30: mTG_move_base
- 0x805FCBA8: mTG_move_base_mailbox
- 0x805FCC40: mTG_move_cpmail
- 0x805FCC7C: mTG_change_original_mark_move
- 0x805FCE9C: mTG_change_original_mark_decide
- 0x805FD0AC: mTG_change_cporiginal_mark_main
- 0x805FD104: mTG_change_cporiginal_mark
- 0x805FD130: mTG_move_base_cporiginal
- 0x805FD16C: mTG_move_delete
- 0x805FD44C: mTG_select_tag_base
- 0x805FD568: mTG_normal_move
- 0x805FD7FC: mTG_move_func
- 0x805FDB98: mTG_get_special_color
- 0x805FDBC0: mTG_set_win_field
- 0x805FE2A0: mTG_price_draw
- 0x805FE504: mTG_set_questItemInfo_sub
- 0x805FE5A8: mTG_set_questItemInfo
- 0x805FE6C8: mTG_set_select
- 0x805FE7F4: mTG_set_character
- 0x805FEB50: mTG_set_character_item
- 0x805FECE4: mTG_set_character_q_item
- 0x805FEE10: mTG_set_dl
- 0x805FEF3C: mTG_draw_mail
- 0x805FF05C: mTG_single_draw_mail
- 0x805FF104: mTG_single_draw_original
- 0x805FF180: mTG_draw_func
- 0x805FF29C: mTG_tag_ovl_construct
- 0x805FF3B4: mTG_tag_ovl_destruct
- 0x805FF3C4: mTI_change_rtctime
- 0x805FF440: mTI_copy_time
- 0x805FF460: mTI_get_now_min
- 0x805FF498: mTI_set_time
- 0x805FF554: mTI_window_close
- 0x805FF678: mTI_move_Move
- 0x805FF6A4: mTI_move_Play
- 0x805FF954: mTI_move_End
- 0x805FF9B0: mTI_timeIn_ovl_move
- 0x805FFA18: mTI_set_frame_dl
- 0x805FFC38: mTI_set_clock
- 0x805FFE30: mTI_set_character
- 0x8060002C: mTI_set_dl
- 0x806000D8: mTI_timeIn_ovl_draw
- 0x80600130: mTI_timeIn_ovl_set_proc
- 0x80600150: mTI_timeIn_ovl_init
- 0x806002F0: mTI_timeIn_ovl_construct
- 0x80600360: mTI_timeIn_ovl_destruct
- 0x80600370: mWR_move_Move
- 0x806003D8: mWR_move_Play
- 0x806004C8: mWR_move_End
- 0x806004F4: mWR_warning_ovl_move
- 0x80600594: mWR_set_frame_dl
- 0x806007E4: mWR_set_strings
- 0x80600968: mWR_set_dl
- 0x806009D4: mWR_warning_ovl_draw
- 0x80600A2C: mWR_warning_ovl_set_proc
- 0x80600A4C: mWR_warning_ovl_init
- 0x80600A80: mWR_warning_ovl_construct
- 0x80600AF0: mWR_warning_ovl_destruct
- 0x80600B00: mPM_move_Move
- 0x80600B2C: mPM_move_Obey
- 0x80600BB8: mPM_move_End
- 0x80600BE4: mPM_passwordMake_ovl_move
- 0x80600C4C: mPM_set_frame_dl
- 0x80600E58: mPM_set_character
- 0x80601070: mPM_set_dl
- 0x8060111C: mPM_passwordMake_ovl_draw
- 0x80601174: mPM_passwordMake_ovl_set_proc
- 0x80601194: mPM_passwordMake_ovl_init
- 0x806011EC: mPM_passwordMake_ovl_construct
- 0x80601280: mPM_passwordMake_ovl_destruct
- 0x80601290: mPC_move_Move
- 0x806012BC: mPC_move_Obey
- 0x80601348: mPC_move_End
- 0x80601374: mPC_passwordChk_ovl_move
- 0x806013DC: mPC_set_frame_dl
- 0x80601520: mPC_set_character
- 0x8060172C: mPC_set_dl
- 0x806017C4: mPC_passwordChk_ovl_draw
- 0x8060181C: mPC_passwordChk_ovl_set_proc
- 0x8060183C: mPC_passwordChk_ovl_init
- 0x80601894: mPC_passwordChk_ovl_construct
- 0x8060192C: mPC_passwordChk_ovl_destruct
- 0x8060193C: aWeather_SysLevCall_MoveEnd
- 0x806019B4: aWeather_SysLevStart
- 0x806019D4: aWeather_SysLevStop
- 0x80601A0C: aWeather_weatherinfo_CommonSet
- 0x80601A34: aWeather_RequestChangeWeather
- 0x80601AAC: aWeather_RequestChangeWeatherToIsland
- 0x80601AEC: aWeather_RequestChangeWeatherFromIsland
- 0x80601B30: aWeather_GetWeatherPrvNum
- 0x80601B60: aWeather_AbolishPrivate
- 0x80601B8C: aWeather_GetWeatherPrv
- 0x80601C24: aWeather_StopSysLevSE
- 0x80601CB0: aWeather_StartSysLevSE
- 0x80601D70: aWeather_ChangeWeatherInstance
- 0x80601E00: aWeather_IsLand_Event_Check
- 0x80601E68: aWeather_Basement_Event_Check
- 0x80601E8C: aWeather_ChangeEnvSE
- 0x80602034: aWeather_EndEnvSE
- 0x80602114: aWeather_SetNowProfile
- 0x80602178: aWeather_SecureWeatherPrivateWork
- 0x806021E8: aWeather_SetClip
- 0x80602278: aWeather_RenewWindInfo
- 0x80602334: aWeather_SnowInAdvance
- 0x8060238C: Weather_Actor_ct
- 0x8060262C: Weather_Actor_dt
- 0x80602670: aWeather_DrawWeatherPrv
- 0x80602724: Weather_Actor_draw
- 0x80602744: aWeather_MakeWeatherPrv
- 0x8060278C: aWeather_MoveWeatherPrv
- 0x80602848: aWeather_CountWeatherPrivate
- 0x80602874: aWeather_ChangeWeather
- 0x8060296C: aWeather_CheckWeatherTimer
- 0x80602998: aWeather_RenewWeatherLevel
- 0x80602A14: aWeather_ChangeWeatherTime0
- 0x80602B94: aWeather_MakeKaminari
- 0x80602D1C: Weather_Actor_move
- 0x80602E30: aWeather_ChangingWeather
- 0x80602E70: aWeatherRain_DecideMakeRainCount
- 0x80602E98: aWeatherRain_make
- 0x806030CC: aWeatherRain_ct
- 0x806030D0: aWeatherRain_MoveRain
- 0x80603104: aWeatherRain_MakePicha
- 0x806031F4: aWeatherRain_set
- 0x80603248: aWeatherRain_move
- 0x80603300: aWeatherRain_draw
- 0x80603494: aWeatherSnow_DecideMakeSnowCount
- 0x806034DC: aWeatherSnow_make
- 0x806036BC: aWeatherSnow_ct
- 0x806036C0: aWeatherSnow_CheckSnowBorder
- 0x80603758: aWeatherSnow_CheckSnowScroll
- 0x80603878: aWeatherSnow_SetWind2Snow
- 0x806038D0: aWeatherSnow_move
- 0x80603934: aWeatherSnow_set
- 0x80603988: aWeatherSnow_draw
- 0x80603B44: aWeatherSakura_DecideMakeSakuraCount
- 0x80603B78: aWeatherSakura_make
- 0x80603D58: aWeatherSakura_ct
- 0x80603DE0: aWeatherSakura_CheckSakuraBorder
- 0x80603E9C: aWeatherSakura_CheckSakuraScroll
- 0x80603F94: aWeatherSakura_SetWind2Sakura
- 0x80603FAC: aWeatherSakura_move
- 0x80604044: aWeatherSakura_set
- 0x80604098: aWeatherSakura_draw
- 0x8060420C: aWeatherLeaf_DecideMakeLeafCount
- 0x80604240: aWeatherLeaf_make
- 0x80604420: aWeatherLeaf_ct
- 0x806044A8: aWeatherLeaf_CheckLeafBorder
- 0x80604564: aWeatherLeaf_CheckLeafScroll
- 0x8060465C: aWeatherLeaf_SetWind2Leaf
- 0x80604674: aWeatherLeaf_move
- 0x80604700: aWeatherLeaf_set
- 0x80604754: aWeatherLeaf_draw
- 0x806048B8: eAmi_Mizu_init
- 0x80604A18: eAmi_Mizu_ct
- 0x80604A8C: eAmi_Mizu_mv
- 0x80604B68: eAmi_Mizu_dw
- 0x80604C9C: eAnahikari_init
- 0x80604D34: eAnahikari_ct
- 0x80604D78: eAnahikari_mv
- 0x80604DB8: eAnahikari_dw
- 0x80604F78: eAS_init
- 0x80605018: eAS_ct
- 0x80605024: eAS_mv
- 0x806050E0: eAS_dw
- 0x806050E4: eAS2_init
- 0x80605184: eAS2_ct
- 0x806051AC: eAS2_mv
- 0x80605214: eAS2_dw
- 0x806052A8: eASC_DecideASCeDirect
- 0x806052F8: eASC_SetAseGravity
- 0x80605318: eASC_init
- 0x8060538C: eASC_ct
- 0x806053E0: eASC_mv
- 0x80605428: eASC_dw
- 0x806054F0: eBreak_Axe_init
- 0x80605578: eBreak_Axe_ct
- 0x80606058: eBreak_Axe_mv
- 0x806064AC: eBreak_Axe_dw
- 0x8060672C: eBubu_init
- 0x806067C8: eBubu_ct
- 0x80606800: eBubu_mv
- 0x80606804: eBubu_dw
- 0x80606878: eBR_init
- 0x80606918: eBR_ct
- 0x80606938: eBR_mv
- 0x80606994: eBR_dw
- 0x80606A68: eBushHappa_init
- 0x80606B08: eBushHappa_ct
- 0x80606E64: eBushHappa_mv
- 0x80607024: eBushHappa_dw
- 0x806072DC: eBushYuki_init
- 0x80607364: eBushYuki_ct
- 0x80607484: eBushYuki_mv
- 0x806074CC: eBushYuki_dw
- 0x806075BC: eCar_Blight_init
- 0x80607638: eCar_Blight_ct
- 0x80607660: eCar_Blight_light_control
- 0x806076F4: eCar_Blight_mv
- 0x806077F4: eCar_Blight_dw
- 0x806079CC: eCar_Light_init
- 0x80607A48: eCar_Light_ct
- 0x80607A54: eCar_Light_mv
- 0x80607B08: eCar_Light_dw
- 0x80607B9C: eClacker_Make_Effect
- 0x80607CD4: eClacker_init
- 0x80607DBC: eClacker_ct
- 0x80607E98: eClacker_mv
- 0x8060805C: eClacker_dw
- 0x80608060: eCoin_init
- 0x806080DC: eCoin_GetFountainHeight
- 0x80608134: eCoin_ct
- 0x80608354: eCoin_mv
- 0x80608574: eCoin_dw
- 0x806087EC: eDahsAsimoto_GetMakeOffset
- 0x806088A0: eDashAsimoto_Hanabira_Make
- 0x8060897C: eDashAsimoto_RainDay
- 0x80608B20: eDashAsimoto_FineDay
- 0x80608F24: eDashAsimoto_init
- 0x80608FAC: eDashAsimoto_ct
- 0x80609028: eDashAsimoto_mv
- 0x8060902C: eDashAsimoto_dw
- 0x80609030: eDig_Hole_init
- 0x80609150: eDig_Hole_ct
- 0x806094F0: eDig_Hole_mv
- 0x80609700: eDig_Hole_dw
- 0x80609910: eDig_Mud_init
- 0x80609998: eDig_Mud_ct
- 0x80609D04: eDig_Mud_mv
- 0x80609DD0: eDig_Mud_dw
- 0x80609F6C: eDig_Scoop_init
- 0x8060A7F4: eDig_Scoop_ct
- 0x8060A800: eDig_Scoop_mv
- 0x8060A804: eDig_Scoop_dw
- 0x8060A808: eDouzou_Light_init
- 0x8060A884: eDouzou_Light_ct
- 0x8060A8F4: eDouzou_Light_mv
- 0x8060A9A4: eDouzou_Light_dw
- 0x8060AAD4: eDoyon_init
- 0x8060AB5C: eDoyon_ct
- 0x8060ACB0: eDoyon_mv
- 0x8060AF64: eDoyon_dw
- 0x8060B068: eDT_init
- 0x8060B3C0: eDT_ct
- 0x8060B414: eDT_mv
- 0x8060B608: eDT_dw
- 0x8060B7B4: eFlash_init
- 0x8060B824: eFlash_ct
- 0x8060B8E4: eFlash_mv
- 0x8060B9B0: eFlash_dw
- 0x8060BAAC: eFlashC_init
- 0x8060BB1C: eFlashC_ct
- 0x8060BB30: eFlashC_mv
- 0x8060BCAC: eFlashC_dw
- 0x8060BCB0: eFootPrint_init
- 0x8060BD3C: eFootPrint_GetAreaPos
- 0x8060BD80: eFootPrint_ct
- 0x8060BFA0: eFootPrint_mv
- 0x8060C02C: eFootPrint_dw
- 0x8060C21C: eFuro_Yuge_init
- 0x8060C298: eFuro_Yuge_ct
- 0x8060C438: eFuro_Yuge_mv
- 0x8060C4D4: eFuro_Yuge_dw
- 0x8060C7D0: eGM_init
- 0x8060C8E0: eGM_ct
- 0x8060C900: eGM_mv
- 0x8060C938: eGM_dw
- 0x8060CACC: eGoki_init
- 0x8060CB48: eGoki_ct
- 0x8060CBE4: eGoki_mv
- 0x8060CEE8: eGoki_dw
- 0x8060D08C: eHA_init
- 0x8060D104: eHA_ct
- 0x8060D1D0: eHA_mv
- 0x8060D204: eHA_dw
- 0x8060D44C: eHalloween_init
- 0x8060D4D4: eHalloween_ct
- 0x8060D510: eHalloween_mv
- 0x8060D650: eHalloween_dw
- 0x8060D654: eHalloween_Smoke_init
- 0x8060D6DC: eHalloween_Smoke_ct
- 0x8060D778: eHalloween_Smoke_mv
- 0x8060D7C0: eHalloween_Smoke_dw
- 0x8060D8D8: eHanabiBotan1_init
- 0x8060D954: eHanabiBotan1_ct
- 0x8060D9E0: eHanabiBotan1_mv
- 0x8060DCB8: eHanabiBotan1_dw
- 0x8060DF58: eHanabiBotan2_init
- 0x8060DFD4: eHanabiBotan2_ct
- 0x8060E060: eHanabiBotan2_mv
- 0x8060E330: eHanabiBotan2_dw
- 0x8060E6D8: eHanabiDummy_init
- 0x8060E754: eHanabiDummy_ct
- 0x8060E7A4: eHanabiDummy_mv
- 0x8060E9B4: eHanabiDummy_dw
- 0x8060E9B8: eHanabiHoshi_init
- 0x8060EA34: eHanabiHoshi_ct
- 0x8060EAC0: eHanabiHoshi_mv
- 0x8060ED98: eHanabiHoshi_dw
- 0x8060F038: eHanabiSet_SearchNicePos
- 0x8060F190: eHanabiSet_init
- 0x8060F230: eHanabiSet_ct
- 0x8060F2EC: eHanabiSet_mv
- 0x8060F4C4: eHanabiSet_dw
- 0x8060F4C8: eHanabiSwitch_SearchLakePos
- 0x8060F5B4: eHanabiSwitch_init
- 0x8060F628: eHanabiSwitch_ct
- 0x8060F678: eHanabiSwitch_mv
- 0x8060F844: eHanabiSwitch_dw
- 0x8060F848: eHanabiYanagi_init
- 0x8060F8C4: eHanabiYanagi_ct
- 0x8060F90C: eHanabiYanagi_mv
- 0x8060FBCC: eHanabiYanagi_dw
- 0x8060FF70: eHanabira_init
- 0x8060FFEC: eHanabira_ct
- 0x80610134: eHanabira_mv
- 0x8061022C: eHanabira_dw
- 0x80610478: eHanatiri_init
- 0x806104F4: eHanatiri_ct
- 0x80610614: eHanatiri_mv
- 0x80610618: eHanatiri_dw
- 0x8061061C: eHiramekiD_init
- 0x80610720: eHiramekiD_ct
- 0x80610758: eHiramekiD_mv
- 0x80610790: eHiramekiD_dw
- 0x8061091C: eHiramekiH_init
- 0x806109B8: eHiramekiH_ct
- 0x806109D8: eHiramekiH_mv
- 0x806109DC: eHiramekiH_dw
- 0x80610B30: eIkigire_init
- 0x80610C98: eIkigire_ct
- 0x80610CA4: eIkigire_mv
- 0x80610CA8: eIkigire_dw
- 0x80610CAC: eImpact_Star_init
- 0x80610D34: eImpact_Star_ct
- 0x80610F94: eImpact_Star_mv
- 0x8061110C: eImpact_Star_dw
- 0x80611270: eKagu_Happa_init
- 0x806112EC: eKagu_Happa_ct
- 0x806113F4: eKagu_Happa_mv
- 0x80611648: eKagu_Happa_dw
- 0x806117AC: eKamifubuki_init
- 0x80611834: eKamifubuki_ct
- 0x80611A5C: eKamifubuki_mv
- 0x80611C6C: eKamifubuki_one_draw
- 0x80611D7C: eKamifubuki_dw
- 0x80611EB0: eKG_init
- 0x80611FF0: eKG_ct
- 0x80612020: eKG_mv
- 0x8061214C: eKG_dw
- 0x806124FC: eKT_init
- 0x8061261C: eKT_ct
- 0x8061264C: eKT_mv
- 0x80612650: eKT_dw
- 0x806127BC: eKasamizu_init
- 0x80612844: eKasamizu_ct
- 0x806128B0: eKasamizu_mv
- 0x8061295C: eKasamizu_dw
- 0x80612960: eKasamizutama_init
- 0x806129E8: eKasamizutama_ct
- 0x80612B0C: eKasamizutama_mv
- 0x80612B54: eKasamizutama_dw
- 0x80612C3C: eKZ_init
- 0x80612CB4: eKZ_ct
- 0x80612D94: eKZ_mv
- 0x80612E68: eKZ_dw
- 0x806130C8: eKZH_init
- 0x8061314C: eKZH_ct
- 0x80613248: eKZH_mv
- 0x80613404: eKZH_dw
- 0x80613618: eKigae_init
- 0x806136A0: eKigae_ct
- 0x806136B8: eKigae_mv
- 0x8061383C: eKigae_dw
- 0x80613840: eKigae_Light_init
- 0x80613A10: eKigae_Light_ct
- 0x80613A84: eKigae_Light_mv
- 0x80613B5C: eKigae_Light_dw
- 0x80613C14: eKikuzu_init
- 0x80613C9C: eKikuzu_ct
- 0x80613EA8: eKikuzu_mv
- 0x80614048: eKikuzu_dw
- 0x80614178: eKL_init
- 0x806141EC: eKL_ct
- 0x806144F8: eKL_mv
- 0x80614758: eKL_dw
- 0x8061481C: eKishaK_init
- 0x8061488C: eKishaK_ct
- 0x80614970: eKishaK_mv
- 0x80614A10: eKishaK_dw
- 0x80614B40: eKONP_init
- 0x80614BC8: eKONP_ct
- 0x80614F5C: eKONP_mv
- 0x80615030: eKONP_dw
- 0x80615328: eKPun_init
- 0x806154B8: eKPun_ct
- 0x8061553C: eKPun_mv
- 0x80615568: eKPun_dw
- 0x80615868: eKyousou_Onpu_init
- 0x80615958: eKyousou_Onpu_ct
- 0x80615964: eKyousou_Onpu_mv
- 0x80615968: eKyousou_Onpu_dw
- 0x8061596C: eLove_init
- 0x80615A08: eLove_ct
- 0x80615A14: eLove_mv
- 0x80615AD8: eLove_dw
- 0x80615ADC: eLL2_init
- 0x80615B7C: eLL2_ct
- 0x80615C10: eLL2_mv
- 0x80615C94: eLL2_dw
- 0x80615ECC: eLoveH_init
- 0x80615F40: eLoveH_ct
- 0x80615FD0: eLoveH_mv
- 0x8061607C: eLoveH_dw
- 0x806162B0: eMH_init
- 0x8061632C: eMH_ct
- 0x806164D0: eMH_mv
- 0x806168F4: eMH_dw
- 0x806169F4: eMHK_init
- 0x80616A70: eMHK_ct
- 0x80616B34: eMHK_mv
- 0x80616C70: eMHK_dw
- 0x80616D6C: eMHL_init
- 0x80616DE8: eMHL_ct
- 0x80616E4C: eMHL_mv
- 0x80617010: eMHL_dw
- 0x8061710C: eMizutama_init
- 0x80617194: eMizutama_ct
- 0x806173B8: eMizutama_mv
- 0x806175F8: eMizutama_dw
- 0x80617718: eMotiyuge_init
- 0x80617794: eMotiyuge_ct
- 0x80617810: eMotiyuge_mv
- 0x80617960: eMotiyuge_dw
- 0x80617AC8: eMK_init
- 0x80617B40: eMK_ct
- 0x80617BFC: eMK_mv
- 0x80617C00: eMK_dw
- 0x80617DA4: eNaku_init
- 0x80617EC8: eNaku_ct
- 0x80617EE4: eNaku_mv
- 0x80617FC4: eNaku_dw
- 0x80617FC8: eNamida_init
- 0x806180CC: eNamida_ct
- 0x806181A4: eNamida_mv
- 0x8061829C: eNamida_dw
- 0x806183BC: eNebo_init
- 0x80618434: eNebo_ct
- 0x80618448: eNebo_mv
- 0x806185D4: eNebo_dw
- 0x806185D8: eNeboke_Akubi_init
- 0x80618660: eNeboke_Akubi_ct
- 0x80618840: eNeboke_Akubi_mv
- 0x80618894: eNeboke_Akubi_dw
- 0x80618A1C: eSleep_init
- 0x80618AA4: eSleep_ct
- 0x80618C00: eSleep_mv
- 0x80618D4C: eSleep_dw
- 0x80618EBC: eNight13Moon_GetPoolBlockCenter
- 0x80618F9C: eNight13Moon_GetNowMoonPos
- 0x806190E8: eNight13Moon_init
- 0x8061915C: eNight13Moon_ct
- 0x80619250: eNight13Moon_mv
- 0x80619384: eNight13Moon_dw
- 0x80619554: eNight15Moon_GetPoolBlockCenter
- 0x80619634: eNight15Moon_GetNowMoonPos
- 0x8061975C: eNight15Moon_init
- 0x806197D0: eNight15Moon_ct
- 0x806198C4: eNight15Moon_mv
- 0x806199F8: eNight15Moon_dw
- 0x80619BC8: eOngen_init
- 0x80619C44: eOngen_ct
- 0x80619C60: eOngen_mv
- 0x80619C64: eOngen_TidyArgData
- 0x80619C90: eOngen_dw
- 0x80619DA0: eOMN_init
- 0x80619E18: eOMN_ct
- 0x80619E74: eOMN_mv
- 0x80619F84: eOMN_dw
- 0x8061A4E0: eOtosiana_init
- 0x8061A55C: eOtosiana_ct
- 0x8061A568: eOtosiana_mv
- 0x8061A64C: eOtosiana_dw
- 0x8061A650: ePun_init
- 0x8061A6C8: ePun_ct
- 0x8061A6DC: ePun_mv
- 0x8061A820: ePun_dw
- 0x8061A824: ePunRed_init
- 0x8061A8CC: ePunRed_ct
- 0x8061A8EC: ePunRed_mv
- 0x8061A8F0: ePunRed_dw
- 0x8061AA20: ePunYuge_init
- 0x8061AAC0: ePunYuge_ct
- 0x8061AB4C: ePunYuge_mv
- 0x8061AB78: ePunYuge_dw
- 0x8061AE9C: eReset_Hole_init
- 0x8061AF38: eReset_Hole_ct
- 0x8061B000: eReset_Hole_mv
- 0x8061B36C: eReset_Hole_dw
- 0x8061B46C: eSandsplash_init
- 0x8061B524: eSandsplash_ct
- 0x8061B708: eSandsplash_mv
- 0x8061B790: eSandsplash_dw
- 0x8061B93C: eSK_init
- 0x8061BA1C: eSK_ct
- 0x8061BA70: eSK_mv
- 0x8061BAA8: eSK_dw
- 0x8061BBC4: eShooting_init
- 0x8061BC34: eShooting_ct
- 0x8061BC98: eShooting_mv
- 0x8061BD40: eShooting_GetTwoTileGfx
- 0x8061BD9C: eShooting_dw
- 0x8061BF20: eShootingKira_init
- 0x8061BF90: eShootingKira_ct
- 0x8061C0C8: eShootingKira_mv
- 0x8061C2F0: eShootingKira_dw
- 0x8061C560: eShootingSet_SearchNicePos
- 0x8061C644: eShootingSet_init
- 0x8061C6E8: eShooting_AdjustValue
- 0x8061C768: eShootingSet_GetFrame_MakeNextShooting
- 0x8061C868: eShootingSet_ct
- 0x8061C8A8: eShootingSet_mv
- 0x8061CB8C: eShootingSet_dw
- 0x8061CB90: eSSHN_init
- 0x8061CC2C: eSSHN_ct
- 0x8061CD10: eSSHN_mv
- 0x8061CDE8: eSSHN_dw
- 0x8061CDEC: eSSHNC_init
- 0x8061CE68: eSSHNC_ct
- 0x8061CFAC: eSSHNC_mv
- 0x8061D0BC: eSSHNC_dw
- 0x8061D26C: eSSHKR_init
- 0x8061D37C: eSSHKR_ct
- 0x8061D3A4: eSSHKR_mv
- 0x8061D4D4: eSSHKR_dw
- 0x8061D594: eSibuki_init
- 0x8061D648: eSibuki_ct
- 0x8061D690: eSibuki_mv
- 0x8061D694: eSibuki_dw
- 0x8061D8C8: eSN_init
- 0x8061D9E8: eSN_ct
- 0x8061DA5C: eSN_mv
- 0x8061DA94: eSN_dw
- 0x8061DD54: eSlip_init
- 0x8061E32C: eSlip_ct
- 0x8061E338: eSlip_mv
- 0x8061E33C: eSlip_dw
- 0x8061E340: eSlipFootPrint_init
- 0x8061E428: eSlipFootPrint_GetAreaPos
- 0x8061E46C: eSlipFootPrint_ct
- 0x8061E628: eSlipFootPrint_mv
- 0x8061E62C: eSlipFootPrint_dw
- 0x8061E7EC: eSoba_Yuge_init
- 0x8061E868: eSoba_Yuge_ct
- 0x8061EA1C: eSoba_Yuge_mv
- 0x8061EAB8: eSoba_Yuge_dw
- 0x8061EEB8: eSteam_init
- 0x8061EF40: eSteam_ct
- 0x8061F008: eSteam_mv
- 0x8061F180: eSteam_dw
- 0x8061F2F0: eString_init
- 0x8061F368: eString_ct
- 0x8061F37C: eString_mv
- 0x8061F380: eString_dw
- 0x8061F480: eSuisou_Awa_init
- 0x8061F4FC: eSuisou_Awa_ct
- 0x8061F640: suisou_awa_BGCheck
- 0x8061F6E8: eSuisou_Awa_mv
- 0x8061FA74: eSuisou_Awa_dw
- 0x8061FC04: eSwing_Axe_Hanabira_Make
- 0x8061FCE0: eSwing_Axe_init
- 0x8061FFB4: eSwing_Axe_ct
- 0x8061FFE8: eSwing_Axe_mv
- 0x8061FFEC: eSwing_Axe_dw
- 0x8061FFF0: eSwing_Net_Hanabira_Make
- 0x806200CC: eSwing_Net_call_effect
- 0x8062023C: eSwing_Net_call_stick_effect
- 0x80620368: eSwing_Net_init
- 0x80620644: eSwing_Net_ct
- 0x8062068C: eSwing_Net_mv
- 0x80620690: eSwing_Net_dw
- 0x80620694: eSwing_Rod_init
- 0x80620818: eSwing_Rod_ct
- 0x80620824: eSwing_Rod_mv
- 0x80620828: eSwing_Rod_dw
- 0x8062082C: eTaberu_init
- 0x806208C8: eTaberu_ct
- 0x806209D8: eTaberu_mv
- 0x806209E8: eTaberu_dw
- 0x80620EE0: eTMK_init
- 0x806210B0: eTMK_ct
- 0x806210D0: eTMK_mv
- 0x80621190: eTMK_dw
- 0x80621250: eTamaire_init
- 0x806212D8: eTamaire_ct
- 0x80621488: eTamaire_mv
- 0x80621AD4: eTamaire_dw
- 0x80621D60: eTape_init
- 0x80621DE8: eTape_ct
- 0x80621ED4: eTape_mv
- 0x80622058: eTape_dw
- 0x80622304: eTL_init
- 0x80622380: eTL_GetNiceSwitchStat
- 0x806223B8: eTL_ct
- 0x80622448: eTL_mv
- 0x80622510: eTL_dw
- 0x8062260C: eTumble_Hanabira_Make
- 0x806226E8: eTumble_CallEffect
- 0x80622DDC: eTumble_init
- 0x80622EA4: eTumble_ct
- 0x80622ED8: eTumble_mv
- 0x80622EDC: eTumble_dw
- 0x80622EE0: eTumbleBodyPrint_init
- 0x80622F68: eTumbleBodyPrint_ct
- 0x80623194: eTumbleBodyPrint_mv
- 0x80623260: eTumbleBodyPrint_dw
- 0x80623434: eTumbleDust_init
- 0x80623620: eTumbleDust_ct
- 0x80623724: eTumbleDust_mv
- 0x80623928: eTumbleDust_dw
- 0x80623AE4: eTH_init
- 0x80623B6C: eTH_ct
- 0x80623DD8: eTH_mv
- 0x80623F58: eTH_dw
- 0x8062441C: eTM_CallEffect
- 0x80624B14: eTS_init
- 0x80624B90: eTS_ct
- 0x80624C48: eTS_mv
- 0x80624D5C: eTS_dw
- 0x80624F74: eTurn_Hanabira_Make
- 0x806250AC: eTurnAsimoto_init
- 0x80625738: eTurnAsimoto_ct
- 0x80625774: eTurnAsimoto_mv
- 0x80625778: eTurnAsimoto_dw
- 0x8062577C: eTurnFootPrint_init
- 0x80625800: eTurnFootPrint_GetAreaPos
- 0x80625844: eTurnFootPrint_ct
- 0x80625A00: eTurnFootPrint_mv
- 0x80625A04: eTurnFootPrint_dw
- 0x80625BE0: eUranai_init
- 0x80625C5C: eUranai_ct
- 0x80625CC4: eUranai_mv
- 0x80625D94: eUranai_dw
- 0x80625F4C: eWait_Asimoto_init
- 0x80626050: eWait_Asimoto_ct
- 0x8062605C: eWait_Asimoto_mv
- 0x80626060: eWait_Asimoto_dw
- 0x80626064: eWalkAsimoto_GetMakeOffset
- 0x80626138: eWalkAsimoto_RainDay
- 0x80626224: eWalkAsimoto_FineDay
- 0x806263F0: eWalk_Asimoto_init
- 0x806264F4: eWalk_Asimoto_ct
- 0x80626500: eWalk_Asimoto_mv
- 0x80626504: eWalk_Asimoto_dw
- 0x80626508: eWU_init
- 0x8062657C: eWU_ct
- 0x806265B0: eWU_mv
- 0x8062660C: eWU_dw
- 0x80626710: eYajirushi_init
- 0x80626784: eYajirushi_ct
- 0x80626798: eYajirushi_mv
- 0x806268A0: eYajirushi_dw
- 0x80626954: eYoung_Tree_init
- 0x806269D0: eYoung_Tree_ct
- 0x80626B80: eYoung_Tree_mv
- 0x80626E34: eYoung_Tree_dw
- 0x806272EC: eYukidama_init
- 0x80627374: eYukidama_ct
- 0x806275B4: eYukidama_mv
- 0x806277F4: eYukidama_dw
- 0x80627914: eYukidaruma_init
- 0x80627A90: eYukidaruma_ct
- 0x80627B14: eYukidaruma_mv
- 0x80627B18: eYukidaruma_dw
- 0x80627CB8: eYukihane_init
- 0x80627D2C: eYukihane_ct
- 0x80627D94: eYukihane_mv
- 0x80627DDC: eYukihane_dw
- 0x80627F88: game_next_play
- 0x80627FFC: data2fcode
- 0x80628018: fcode2data
- 0x80628038: select_pass
- 0x806280BC: select_start_proc
- 0x806281AC: select_check_start
- 0x80628230: select_check_A_button_rtc
- 0x80628238: select_check_A_button_time
- 0x80628240: select_check_A_button_step
- 0x80628248: select_check_A_button_weather
- 0x8062829C: select_check_A_button_sex
- 0x806282D4: select_check_A_button_face_type
- 0x80628310: select_check_A_button_swell
- 0x80628338: select_check_A_button_sunburn
- 0x806283D8: select_check_A_button_decoy
- 0x80628400: select_check_A_button_cloth
- 0x80628408: select_check_A_button_event
- 0x80628410: select_check_A_button
- 0x80628474: select_move_cursol
- 0x80628520: select_course_step_sub
- 0x80628540: select_adjust_top_no
- 0x806285C0: select_course_step
- 0x80628674: select_course
- 0x8062880C: select_move_main
- 0x80628864: select_move_setup
- 0x806288B4: select_move_time_year_set
- 0x806288F0: select_move_time_month_set
- 0x80628990: select_move_time_day_set
- 0x80628A14: select_move_time_hour_set
- 0x80628A58: select_move_time_min_set
- 0x80628A9C: select_move_time_week_set
- 0x80628B08: select_move_time_set
- 0x80628D10: select_move_cloth_sel
- 0x80628E88: select_move
- 0x80628EE0: select_print_wait
- 0x80628F70: select_print_course_name
- 0x806290C8: select_print_rtc
- 0x80629110: select_print_time_sub
- 0x80629338: select_print_time
- 0x80629384: select_print_step_sub2
- 0x806293CC: select_print_step
- 0x806293EC: select_print_weather
- 0x80629454: select_print_sex
- 0x806294C4: select_print_cloth
- 0x80629554: select_print_swell
- 0x806295D8: select_print_decoy
- 0x8062965C: select_print_face_type
- 0x806296CC: select_print_sunburn
- 0x80629740: select_print_event
- 0x80629794: select_draw_main
- 0x80629970: select_draw_wait
- 0x80629A70: select_draw
- 0x80629B34: select_main
- 0x80629B8C: select_cleanup
- 0x80629B90: select_init
- 0x80629CA8: exit_game
- 0x80629D04: first_game_cleanup
- 0x80629D08: first_game_init
- 0x80629D4C: sys_romcheck
- 0x80629D8C: Game_play_Reset_destiny
- 0x80629DE4: event_title_flag_on
- 0x80629E08: event_title_flag_off
- 0x80629E30: Game_play_camera_proc
- 0x80629E64: Game_play_fbdemo_wipe_destroy
- 0x80629EAC: Game_play_fbdemo_wipe_create_sub
- 0x80629F4C: Game_play_fbdemo_wipe_create
- 0x80629F80: Game_play_fbdemo_wipe_init
- 0x8062A060: Game_play_fbdemo_fade_in_move_end
- 0x8062A0B4: Game_play_fbdemo_fade_out_start_emu_move_end
- 0x8062A0D4: Game_play_fbdemo_fade_out_game_end_move_end
- 0x8062A0F8: Game_play_change_scene_move_end
- 0x8062A140: Game_play_fbdemo_wipe_move
- 0x8062A44C: Game_play_fbdemo_wipe_proc
- 0x8062A4A4: game_play_set_fog
- 0x8062A4E4: Game_play_fbdemo_proc
- 0x8062A570: play_cleanup
- 0x8062A688: VR_Box_ct
- 0x8062A6AC: play_init
- 0x8062A928: Game_play_move_fbdemo_not_move
- 0x8062AA7C: Game_play_move
- 0x8062AC28: setupFog
- 0x8062AC78: setupViewer
- 0x8062ACA0: setupViewMatrix
- 0x8062AD78: copy_efb_to_texture
- 0x8062AE30: makeBumpTexture
- 0x8062B1B4: draw_version
- 0x8062B244: Game_play_draw
- 0x8062B370: play_main
- 0x8062B50C: Gameplay_Scene_Init
- 0x8062B57C: mPl_SceneNo2SoundRoomType
- 0x8062B5C0: Gameplay_Scene_Read
- 0x8062B630: second_game_main
- 0x8062B710: second_game_cleanup
- 0x8062B72C: second_game_init
- 0x8062B848: set_npc_4_title_demo
- 0x8062B8C8: mTM_demotime_set
- 0x8062B924: trademark_goto_demo_scene
- 0x8062BABC: nintendo_logo_move
- 0x8062BB3C: nintendo_logo_draw
- 0x8062BB9C: trademark_cancel
- 0x8062BBF8: trademark_move
- 0x8062BD1C: trademark_draw
- 0x8062BDD0: trademark_main
- 0x8062BE60: trademark_cleanup
- 0x8062BED8: trademark_init
- 0x8062C048: player_select_game_data_init
- 0x8062C0A4: player_select_game_data_init_save
- 0x8062C0F8: player_select_game_data_init_new_player
- 0x8062C14C: player_select_game_data_init_pak
- 0x8062C1A0: player_select_game_data_init_err
- 0x8062C1AC: player_select_init_after
- 0x8062C1D4: player_select_next_mode
- 0x8062C1F8: player_select_back_mode
- 0x8062C21C: player_select_move_main
- 0x8062C380: str_add_word
- 0x8062C3C4: player_select_draw_title
- 0x8062C464: player_select_draw_player_no
- 0x8062C5F0: player_select_draw_yosokara
- 0x8062C6AC: player_select_draw_main
- 0x8062C768: player_select_main
- 0x8062C7C0: player_select_cleanup
- 0x8062C7C4: player_select_init
- 0x8062CA5C: save_menu_set_cursor_col
- 0x8062CAD4: save_menu_reset_cursor_col
- 0x8062CB20: save_menu_data_save_from
- 0x8062CB5C: save_menu_data_save_pak
- 0x8062CC28: save_menu_move_do_save
- 0x8062CD0C: save_menu_move_finish
- 0x8062CD30: save_menu_move_err
- 0x8062CD3C: save_menu_move_main
- 0x8062CDB8: save_menu_draw_title
- 0x8062CE64: save_menu_draw_push_a
- 0x8062CF20: save_menu_draw_select_r
- 0x8062CFE4: save_menu_draw_push_b
- 0x8062D0B4: save_menu_draw_select_mode
- 0x8062D1E8: save_menu_draw_main
- 0x8062D2A0: save_menu_main
- 0x8062D2F8: save_menu_cleanup
- 0x8062D2FC: save_menu_init
- 0x8062D39C: my_alloc_init
- 0x8062D420: my_alloc_cleanup
- 0x8062D440: my_zelda_getmemblocksize
- 0x8062D460: my_zelda_gettotalfreesize
- 0x8062D480: my_zelda_malloc_align
- 0x8062D4CC: my_zelda_free
- 0x8062D4EC: famicom_emu_main
- 0x8062D64C: famicom_emu_init
- 0x8062D7AC: famicom_emu_cleanup
- 0x8062D82C: famicom_gba_getImage
- 0x8062D8DC: famicom_gba_removeImage
- 0x8062D8FC: prenmi_move
- 0x8062D990: prenmi_draw
- 0x8062DB50: prenmi_main
- 0x8062DBB0: prenmi_cleanup
- 0x8062DBC0: prenmi_init
- 0x8062DC04: sAdo_Calc_MicPosition_common
- 0x8062DD4C: sAdo_Calc_MicPosition_forTrig
- 0x8062DD6C: sAdo_Calc_MicPosition_forLevel
- 0x8062DD8C: sAdo_GameFrame
- 0x8062DDAC: sAdo_BgmStart
- 0x8062DDCC: sAdo_BgmStop
- 0x8062DDEC: sAdo_SysTrgStart
- 0x8062DE0C: sAdo_PlyWalkSe
- 0x8062DE54: sAdo_PlyWalkSeRoom
- 0x8062DE9C: sAdo_NpcWalkSe
- 0x8062DEE4: sAdo_NpcWalkSeRoom
- 0x8062DF2C: sAdo_PlayerStatusLevel
- 0x8062DF4C: sAdo_VoiceSe
- 0x8062DF6C: sAdo_Inst
- 0x8062DF8C: sAdo_MessageStatus
- 0x8062DFAC: sAdo_MessageSpeed
- 0x8062DFCC: sAdo_MessageSpeedGet
- 0x8062DFEC: sAdo_SysLevStart
- 0x8062E00C: sAdo_SysLevStop
- 0x8062E02C: sAdo_OngenPos
- 0x8062E090: sAdo_OngenTrgStart
- 0x8062E0D8: sAdo_SetOutMode
- 0x8062E138: sAdo_SetVoiceMode
- 0x8062E158: sAdo_FloorTrgStart
- 0x8062E1A0: sAdo_RhythmStart
- 0x8062E1C0: sAdo_RhythmStop
- 0x8062E1E0: sAdo_RhythmAllStop
- 0x8062E200: sAdo_FurnitureInst
- 0x8062E260: sAdo_Pause
- 0x8062E280: sAdo_GetRhythmAnimCounter
- 0x8062E2A0: sAdo_GetRhythmDelay
- 0x8062E2C0: sAdo_GetRhythmInfo
- 0x8062E2E0: sAdo_SetRhythmInfo
- 0x8062E300: sAdo_InstCountGet
- 0x8062E320: sAdo_RhythmPos
- 0x8062E374: sAdo_SpecChange
- 0x8062E394: sAdo_MDPlayerPos
- 0x8062E3F4: sAdo_BGMVolume
- 0x8062E414: sAdo_BgmCrossfadeStart
- 0x8062E434: sAdo_SubGameStart
- 0x8062E454: sAdo_SubGameEnd
- 0x8062E474: sAdo_SubGameOK
- 0x8062E498: sAdo_Tenki
- 0x8062E4B8: sAdos_KishaStatusTrg
- 0x8062E4D8: sAdos_KishaStatusLevel
- 0x8062E4F8: sAdos_GetRadioCounter
- 0x8062E518: sAdos_GetKappaCounter
- 0x8062E538: sAdos_GetStaffRollInfo
- 0x8062E558: sAdos_TTKK_ARM
- 0x8062E578: sAdo_OngenTrgStartSpeed
- 0x8062E5D8: sAdo_TrgSeEcho
- 0x8062E5F8: sAdo_LevSeEcho
- 0x8062E618: sAdo_BgmFadeoutCheck
- 0x8062E638: sAdo_SeFadeoutCheck
- 0x8062E658: sAdo_RoomType
- 0x8062E678: sAdo_Museum
- 0x8062E698: sAdo_SoftReset
- 0x8062E6B8: sAdo_Get_WalkLabel
- 0x8062E738: sAdo_Get_KokeruLabel
- 0x8062E7C4: sAdo_SceneMode
- 0x8062E7E4: sAdo_RoomIncectPos
- 0x8062E838: sAdo_FurnitureInstPos
- 0x8062E880: sAdo_Set_ongenpos_refuse_fg
- 0x8062E88C: sAdo_GameframeEnd_Check
- 0x8062E89C: sAdo_GetSoundFrameCounter
- 0x8062E8BC: sAdo_CheckOnPlussBridge
- 0x8062E920: sAdo_RegistPlussBridge
- 0x8062E934: sAdo_DeletePlussBridge
- 0x8062E94C: sAdo_kazagurumaLevel
- 0x8062E96C: fFTR_MorphHousePalette
- 0x8062EBA4: fFTR_MorphHousepaletteCt
- 0x8062EBEC: fFTR_GetTwoTileGfx
- 0x8062EC8C: fFC_ct
- 0x8062EC90: fFC_mv
- 0x8062ED0C: fFC_dw
- 0x8062EE34: aFmanekin_ct
- 0x8062EE38: aFmanekin_dw
- 0x8062EE98: aFmanekin_mv
- 0x8062EE9C: aFmanekin_dt
- 0x8062EEA0: aFmanekin_dma
- 0x8062EF00: aFU_ct
- 0x8062EF04: aFU_dw
- 0x8062EF60: aFU_mv
- 0x8062EF64: aFU_dt
- 0x8062EF68: aFU_dma
- 0x8062EF6C: aHnwCommon_RhythmStart
- 0x8062EFB4: aHnwCommon_ct
- 0x8062F108: aHnwCommon_mv
- 0x8062F584: aHnwCommon_dw
- 0x8062F610: aHnwCommon_dt
- 0x8062F630: aHnwCommon_dma
- 0x8062F634: fIIH_ct
- 0x8062F7E8: fIIH_mv
- 0x8062F9E4: fIIH_dw
- 0x8062FBD0: fIIH_dt
- 0x8062FBF4: fIIUKRR_mv
- 0x8062FC38: fIJH_ct
- 0x8062FCAC: fIJH_mv
- 0x8062FD7C: fIJH_dw
- 0x8062FE08: fIJHOUI_ct
- 0x8062FE8C: fIJHOUI_Status2SetMode
- 0x8062FF94: fIJHOUI_mv
- 0x8063015C: fIJHOUI_DrawBefore
- 0x80630224: fIJHOUI_DrawAfter
- 0x8063022C: fIJHOUI_dw
- 0x806302C0: aIkeJnyRosia01_ct
- 0x806303B8: aIkeJnyRosia01_mv
- 0x806304F4: aIkeJnyRosia01_dw
- 0x80630580: aIkeJnyRosia01_dt
- 0x806305A4: fIJS_ct
- 0x806305EC: fIJS_mv
- 0x806306F4: fIJS_GetTwoTileGfx
- 0x80630744: fIJS_dw
- 0x806308A8: fIJT_ct
- 0x806308B8: fIJT_mv
- 0x80630988: fIJT_dw
- 0x80630A30: fIJT_dt
- 0x80630A34: fIKD_mv
- 0x80630A80: fIKD_GetTwoTileGfx
- 0x80630AD4: fIKD_dw
- 0x80630BE4: fIKC_mv
- 0x80630D4C: fITN_dw
- 0x80630DC0: fIPP_mv
- 0x80630E28: aKobDisksystem8_ct
- 0x80630E2C: aKobDisksystem8_mv
- 0x80630E74: aKobDisksystem8_dw
- 0x80630F64: aKobDisksystem8_dt
- 0x80630F68: aKobLocker1_ct
- 0x80630FDC: aKobLocker1_mv
- 0x8063102C: aKobLocker1_dw
- 0x80631078: aKobLocker1_dt
- 0x8063107C: aKobMasterSword_mv
- 0x80631080: aKobMasterSword01_dw
- 0x80631194: aKobNcube_ct
- 0x80631198: aKobNcube_mv
- 0x8063119C: aKobNcube_dw
- 0x806311A0: aKobNcube_dt
- 0x806311A4: aKonAmeclock_DwAfter
- 0x806311AC: aKonAmeclock_DwBefore
- 0x80631200: aKonAmeclock_dw
- 0x80631250: aKonAmeclock_ct
- 0x806312C4: aKonAmeclock_mv
- 0x806312E8: aKonAmeclock_dt
- 0x806312EC: aKonAtqclock_DwAfter
- 0x806312F4: aKonAtqclock_DwBefore
- 0x80631348: aKonAtqclock_dw
- 0x80631398: aKonAtqclock_ct
- 0x8063140C: aKonAtqclock_mv
- 0x806314E4: aKonAtqclock_dt
- 0x806314E8: aKonBlueclock_DwAfter
- 0x806314F0: aKonBlueclock_DwBefore
- 0x80631544: aKonBlueclock_dw
- 0x806315C0: aKonBlueclock_ct
- 0x80631634: aKonBlueclock_mv
- 0x80631658: aKonBlueclock_dt
- 0x8063165C: aKonCracker_ct
- 0x80631660: aKonCracker_mv
- 0x806316D4: aKonCracker_dw
- 0x806316D8: aKonCracker_dt
- 0x806316DC: aKonGomi04_ct
- 0x80631760: aKonGomi04_mv
- 0x806318BC: aKonGomi04_dw
- 0x80631948: aKonGomi04_dt
- 0x8063194C: aKonGrclock_DwAfter
- 0x80631954: aKonGrclock_DwBefore
- 0x806319A8: aKonGrclock_dw
- 0x806319F8: aKonGrclock_ct
- 0x80631A6C: aKonGrclock_mv
- 0x80631A90: aKonGrclock_dt
- 0x80631A94: aKonJihanki02_ct
- 0x80631A98: aKonJihanki02_mv
- 0x80631A9C: aKonJihanki02_dw
- 0x80631B64: aKonJihanki02_dt
- 0x80631B68: aKonMimiclock_DwAfter
- 0x80631B70: aKonMimiclock_DwBefore
- 0x80631BC4: aKonMimiclock_dw
- 0x80631C40: aKonMimiclock_ct
- 0x80631CB4: aKonMimiclock_mv
- 0x80631CD8: aKonMimiclock_dt
- 0x80631CDC: aKonMusya_ct
- 0x80631CE0: aKonMusya_mv
- 0x80631CE4: aKonMusya_dw
- 0x80631DC8: aKonMusya_dt
- 0x80631DCC: aKonRedclock_DwAfter
- 0x80631DD4: aKonRedclock_DwBefore
- 0x80631E28: aKonRedclock_dw
- 0x80631E78: aKonRedclock_ct
- 0x80631EEC: aKonRedclock_mv
- 0x80631F10: aKonRedclock_dt
- 0x80631F14: aKonSisiodosi_ct
- 0x80631F8C: aKonSisiodosi_mv
- 0x80631FEC: aKonSnowbox_ct
- 0x80632060: aKonSnowbox_mv
- 0x806320B0: aKonSnowbox_dw
- 0x8063213C: aKonSnowbox_dt
- 0x80632140: aKonSnowclock_DwAfter
- 0x80632214: aKonSnowclock_DwBefore
- 0x80632268: aKonSnowclock_dw
- 0x806322B8: aKonSnowclock_ct
- 0x8063232C: aKonSnowclock_mv
- 0x80632350: aKonSnowclock_dt
- 0x80632354: aKonSnowtansu_ct
- 0x806323C8: aKonSnowtansu_mv
- 0x80632418: aKonSnowtansu_dw
- 0x806324A4: aKonSnowtansu_dt
- 0x806324A8: aKonsnowtv_ct
- 0x806324AC: aKonsnowtv_mv
- 0x8063256C: aKonsnowtv_dw
- 0x8063266C: aKonsnowtv_dt
- 0x80632670: aKonWaclock_DwAfter
- 0x80632678: aKonWaclock_DwBefore
- 0x806326A4: aKonWaclock_dw
- 0x806326F4: aKonWaclock_ct
- 0x80632768: aKonWaclock_mv
- 0x8063278C: aKonWaclock_dt
- 0x80632790: aMyfmanekin_ct
- 0x80632794: aMyfmanekin_dw
- 0x806327F4: aMyfmanekin_mv
- 0x806327F8: aMyfmanekin_dt
- 0x806327FC: aMyfmanekin_dma
- 0x8063288C: aMFU_ct
- 0x80632890: aMFU_dw
- 0x806328F0: aMFU_mv
- 0x806328F4: aMFU_dt
- 0x806328F8: aMFU_dma
- 0x80632988: fNBC_ct
- 0x80632A2C: fNBC_mv
- 0x80632AFC: fNBC_DrawBalloonBefore
- 0x80632B04: fNBC_DrawBalloonAfter
- 0x80632B0C: fNBC_dw
- 0x80632BA0: fNBC_dt
- 0x80632BA4: fNBT_dw
- 0x80632CD0: aNogFan_ControlSwitchSE
- 0x80632D14: aNogFan_ChangeSwitch
- 0x80632D40: aNogFan_ct
- 0x80632DE4: aNogFan_mv
- 0x80633058: aNogFan_dw
- 0x80633148: aNogFan_dt
- 0x8063314C: fNKA_mv
- 0x80633198: fNKR_mv
- 0x806331E4: fNogKamakura_ct
- 0x80633238: fNogKamakura_mv
- 0x80633270: fNogKamakura_dt
- 0x8063329C: fNogKamakura_dw
- 0x80633368: fNgKr_mv
- 0x806333B4: fNKN_ct
- 0x80633408: fNKN_mv
- 0x80633440: fNKN_dt
- 0x8063346C: fNKN_dw
- 0x80633538: fNMM_ct
- 0x8063358C: fNMM_mv
- 0x806335C4: fNMM_dt
- 0x806335F0: fNMM_dw
- 0x806336BC: fNM2_GetPalletIndex
- 0x80633780: fNM2_ct
- 0x806337F0: fNM2_mv
- 0x80633844: fNM2_dt
- 0x80633870: fNM2_dw
- 0x8063393C: fNM4_dw
- 0x80633A08: fNNB_ct
- 0x80633B08: fNNB_mv
- 0x80633D90: fNNB_dt
- 0x80633DB4: fNNB_DrawBefore
- 0x80633DCC: fNNB_DrawAfter
- 0x80633E4C: fNNB_dw
- 0x80633FEC: aNogPawnB_ct
- 0x80634060: aNogPawnB_mv
- 0x8063409C: aNogPawnB_DwAfter
- 0x806341E4: aNogPawnB_DwBefore
- 0x806341FC: aNogPawnB_dw
- 0x80634290: aNogPawnB_dt
- 0x80634294: aNogpawnW_ct
- 0x80634308: aNogpawnW_mv
- 0x80634344: aNogpawnW_DwAfter
- 0x8063448C: aNogpawnW_DwBefore
- 0x806344A4: aNogpawnW_dw
- 0x80634538: aNogpawnW_dt
- 0x8063453C: fNSH_ct
- 0x80634540: fNSH_mv
- 0x80634544: fNSH_dt
- 0x80634548: fNSH_GetTileGfx
- 0x8063459C: fNSH_dw
- 0x806346D4: fNSN_ct
- 0x80634760: fNSN_mv
- 0x80634784: fNSN_dt
- 0x80634788: fNSN_DrawBefore
- 0x806347DC: fNSN_DrawAfter
- 0x806347E4: fNSN_dw
- 0x806348AC: fNS1_ct
- 0x80634900: fNS1_mv
- 0x80634938: fNS1_dt
- 0x80634964: fNS1_dw
- 0x80634A30: aNogTriAudio01_ct
- 0x80634A34: aNogTriAudio01_mv
- 0x80634A78: aNogTriAudio01_dw
- 0x80634A7C: aNogTriAudio01_dt
- 0x80634A80: aNogTriChest01_ct
- 0x80634AF4: aNogTriChest01_mv
- 0x80634B44: aNogTriChest01_dw
- 0x80634BD0: aNogTriChest01_dt
- 0x80634BD4: aNogTriChest02_ct
- 0x80634C48: aNogTriChest02_mv
- 0x80634C98: aNogTriChest02_dw
- 0x80634D24: aNogTriChest02_dt
- 0x80634D28: aNogTriChest03_ct
- 0x80634D9C: aNogTriChest03_mv
- 0x80634DEC: aNogTriChest03_dw
- 0x80634E78: aNogTriChest03_dt
- 0x80634E7C: aNogTriClock01_DwAfter
- 0x80634E84: aNogTriClock01_DwBefore
- 0x80634ED8: aNogTriClock01_dw
- 0x80634F28: aNogTriClock01_ct
- 0x80634F9C: aNogTriClock01_mv
- 0x80634FC0: aNogTriClock01_dt
- 0x80634FC4: fNU_ct
- 0x80635018: fNU_mv
- 0x80635050: fNU_dt
- 0x8063507C: fNU_dw
- 0x80635148: fNYS_ct
- 0x8063519C: fNYS_mv
- 0x806351D4: fNYS_dt
- 0x80635200: fNYS_dw
- 0x806352CC: fNYB_ct
- 0x80635320: fNYB_mv
- 0x80635358: fNYB_dt
- 0x80635384: fNYB_dw
- 0x80635450: aSumAbura_ct
- 0x806354C4: aSumAbura_mv
- 0x8063554C: aSumAbura_dw
- 0x80635594: aSumAsiChest02_ct
- 0x80635608: aSumAsiChest02_mv
- 0x80635658: aSumAsiChest02_dw
- 0x806356E4: aSumAsiChest02_dt
- 0x806356E8: aSumAsiChest03_ct
- 0x8063575C: aSumAsiChest03_mv
- 0x806357AC: aSumAsiChest03_dw
- 0x80635838: aSumAsiChest03_dt
- 0x8063583C: aSumasitaiko_ct
- 0x80635840: aSumasitaiko_mv
- 0x80635884: aSumasitaiko_dw
- 0x80635888: aSumasitaiko_dt
- 0x8063588C: aSumBass01_ct
- 0x80635890: aSumBass01_mv
- 0x806358D4: aSumBass01_dw
- 0x806358D8: aSumBass01_dt
- 0x806358DC: aSB_SumBdcake01Draw
- 0x80635A24: aSB_SumBdcake01Move
- 0x80635A34: aSB_SumBdcake01Ct
- 0x80635A40: aSumBiwa01_ct
- 0x80635A44: aSumBiwa01_mv
- 0x80635A88: aSumBiwa01_dw
- 0x80635A8C: aSumBiwa01_dt
- 0x80635A90: aSumBlaChest01_ct
- 0x80635B04: aSumBlaChest01_mv
- 0x80635B54: aSumBlaChest01_dw
- 0x80635BE0: aSumBlaChest01_dt
- 0x80635BE4: aSumBlaChest03_ct
- 0x80635C58: aSumBlaChest03_mv
- 0x80635CA8: aSumBlaChest03_dw
- 0x80635D34: aSumBlaChest03_dt
- 0x80635D38: aSumBlaLanp_dw
- 0x80635DD4: aSumBlueBureau01_ct
- 0x80635E48: aSumBlueBureau01_mv
- 0x80635E98: aSumBlueBureau01_dw
- 0x80635F24: aSumBlueBureau01_dt
- 0x80635F28: aSumBlueCab01_ct
- 0x80635F9C: aSumBlueCab01_mv
- 0x80635FEC: aSumBlueCab01_dw
- 0x80636078: aSumBlueCab01_dt
- 0x8063607C: aSumBlueClk_DwAfter
- 0x806363BC: aSumBlueClk_DwBefore
- 0x806363E4: aSumBlueClk_dw
- 0x80636434: aSumBlueClk_ct
- 0x806364A8: aSumBlueClk_mv
- 0x80636580: aSumBlueClk_dt
- 0x80636584: aSumBlueLowChest01_ct
- 0x806365F8: aSumBlueLowChest01_mv
- 0x80636648: aSumBlueLowChest01_dw
- 0x806366D4: aSumBlueLowChest01_dt
- 0x806366D8: aSumCasse01_ct
- 0x806366DC: aSumCasse01_mv
- 0x80636728: aSumCasse01_dw
- 0x8063672C: aSumCasse01_dt
- 0x80636730: aSumCello01_ct
- 0x80636734: aSumCello01_mv
- 0x80636778: aSumCello01_dw
- 0x8063677C: aSumCello01_dt
- 0x80636780: aSumChikuon01_ct
- 0x80636784: aSumChikuon01_mv
- 0x806367C8: aSumChikuon01_dw
- 0x806367CC: aSumChikuon01_dt
- 0x806367D0: aSumChikuon02_ct
- 0x806367D4: aSumChikuon02_mv
- 0x80636818: aSumChikuon02_dw
- 0x8063681C: aSumChikuon02_dt
- 0x80636820: aSumClchest01_ct
- 0x80636894: aSumClchest01_mv
- 0x806368E4: aSumClchest01_dw
- 0x80636970: aSumClchest01_dt
- 0x80636974: aSumClChest03_ct
- 0x806369E8: aSumClChest03_mv
- 0x80636A38: aSumClChest03_dw
- 0x80636AC4: aSumClChest03_dt
- 0x80636AC8: asumconga01_ct
- 0x80636ACC: asumconga01_mv
- 0x80636B10: asumconga01_dw
- 0x80636B14: asumconga01_dt
- 0x80636B18: aSumConpo01_ct
- 0x80636B1C: aSumConpo01_mv
- 0x80636B68: aSumConpo01_dw
- 0x80636B6C: aSumConpo01_dt
- 0x80636B70: aSumConpo02_ct
- 0x80636B74: aSumConpo02_mv
- 0x80636BB8: aSumConpo02_dw
- 0x80636BBC: aSumConpo02_dt
- 0x80636BC0: aSumContChest02_ct
- 0x80636C34: aSumContChest02_mv
- 0x80636C84: aSumContChest02_dw
- 0x80636D10: aSumContChest02_dt
- 0x80636D14: aSumContChest03_ct
- 0x80636D88: aSumContChest03_mv
- 0x80636DD8: aSumContChest03_dw
- 0x80636E64: aSumContChest03_dt
- 0x80636E68: aSumDoll01_dw
- 0x80636EE8: aSumFruitchest01_ct
- 0x80636F5C: aSumFruitchest01_mv
- 0x80636FAC: aSumFruitchest01_dw
- 0x80637038: aSumFruitchest01_dt
- 0x8063703C: aSumFruitchest03_ct
- 0x806370B0: aSumFruitchest03_mv
- 0x80637100: aSumFruitchest03_dw
- 0x8063718C: aSumFruitchest03_dt
- 0x80637190: aSumfruitclk_DwAfter
- 0x80637198: aSumfruitclk_DwBefore
- 0x806371EC: aSumfruitclk_dw
- 0x8063723C: aSumfruitclk_ct
- 0x806372B0: aSumfruitclk_mv
- 0x806372D4: aSumfruitclk_dt
- 0x806372D8: aSumFruittv01_ct
- 0x806372DC: aSumFruittv01_mv
- 0x8063739C: aSumFruittv01_dw
- 0x8063749C: aSumFruittv01_dt
- 0x806374A0: aSumgenji_ct
- 0x80637514: aSumgenji_GetPrimDisp
- 0x806375B0: aSumgenji_dw
- 0x806376A4: aSumgenji_mv
- 0x806376F8: aSumgenji_dt
- 0x806376FC: aSumGreChest02_ct
- 0x80637770: aSumGreChest02_mv
- 0x806377C0: aSumGreChest02_dw
- 0x8063784C: aSumGreChest02_dt
- 0x80637850: aSumGreChest03_ct
- 0x806378C4: aSumGreChest03_mv
- 0x80637914: aSumGreChest03_dw
- 0x806379A0: aSumGreChest03_dt
- 0x806379A4: aSumGreLanp01_dw
- 0x80637A24: aSumGuitar01_ct
- 0x80637A28: aSumGuitar01_mv
- 0x80637A6C: aSumGuitar01_dw
- 0x80637A70: aSumGuitar01_dt
- 0x80637A74: aSumGuitar02_ct
- 0x80637A78: aSumGuitar02_mv
- 0x80637ABC: aSumGuitar02_dw
- 0x80637AC0: aSumGuitar02_dt
- 0x80637AC4: aSumGuitar03_ct
- 0x80637AC8: aSumGuitar03_mv
- 0x80637B0C: aSumGuitar03_dw
- 0x80637B10: aSumGuitar03_dt
- 0x80637B14: aSumHalBox01_ct
- 0x80637B98: aSumHalBox01_mv
- 0x80637C68: aSumHalBox01_dw
- 0x80637CF4: aSumHalBox01_dt
- 0x80637CF8: aSumHalChest02_ct
- 0x80637D6C: aSumHalChest02_mv
- 0x80637DBC: aSumHalChest02_dw
- 0x80637E48: aSumHalChest02_dt
- 0x80637E4C: aSumHalChest03_ct
- 0x80637EC0: aSumHalChest03_mv
- 0x80637F10: aSumHalChest03_dw
- 0x80637F9C: aSumHalChest03_dt
- 0x80637FA0: aSumHalClk01_DwAfter
- 0x80638220: aSumHalClk01_DwBefore
- 0x8063824C: aSumHalClk01_dw
- 0x8063829C: aSumHalClk01_ct
- 0x80638310: aSumHalClk01_mv
- 0x80638334: aSumHalClk01_dt
- 0x80638338: aSumHalLanp01_dw
- 0x806383B8: aSumHalMirror01_dw
- 0x80638438: aSumHarp_ct
- 0x8063843C: aSumHarp_mv
- 0x80638480: aSumHarp_dw
- 0x80638484: aSumHarp_dt
- 0x80638488: aSumHigurashi_ct
- 0x806384FC: aSumHigurashi_mv
- 0x80638584: aSumHigurashi_dw
- 0x806385CC: aSumJukebox_ct
- 0x806385D0: aSumJukebox_mv
- 0x80638614: aSumJukebox_dw
- 0x80638618: aSumJukebox_dt
- 0x8063861C: aSumKirigirisu_ct
- 0x80638690: aSumKirigirisu_mv
- 0x80638718: aSumKirigirisu_dw
- 0x80638760: aSumKisha_ControlSwitchSE
- 0x806387A4: aSumKisha_ChangeSwitch
- 0x806387D0: aSumKisha_ct
- 0x8063886C: aSumKisha_mv
- 0x80638A50: aSumKisha_dw
- 0x80638ADC: aSumKisha_dt
- 0x80638AE0: aSumKoorogi_ct
- 0x80638B54: aSumKoorogi_mv
- 0x80638BDC: aSumKoorogi_dw
- 0x80638C24: aSumLiccachest_ct
- 0x80638C98: aSumLiccachest_mv
- 0x80638CE8: aSumLiccachest_dw
- 0x80638D74: aSumLiccachest_dt
- 0x80638D78: aSumLiccaLowChest_ct
- 0x80638DEC: aSumLiccaLowChest_mv
- 0x80638E3C: aSumLiccaLowChest_dw
- 0x80638EC8: aSumLiccaLowChest_dt
- 0x80638ECC: aSumLiccaMirror_dw
- 0x80638F4C: aSumLiccapiano_ct
- 0x80638F50: aSumLiccapiano_mv
- 0x80638F94: aSumLiccapiano_dw
- 0x80638F98: aSumLiccapiano_dt
- 0x80638F9C: aSumLogChest01_ct
- 0x80639010: aSumLogChest01_mv
- 0x80639060: aSumLogChest01_dw
- 0x806390EC: aSumLogChest01_dt
- 0x806390F0: aSumBlaChest02_ct
- 0x80639164: aSumBlaChest02_mv
- 0x806391B4: aSumBlaChest02_dw
- 0x80639240: aSumBlaChest02_dt
- 0x80639244: aSumLogHatoclk_StopAnimeInitNormal
- 0x8063928C: aSumLogHatoclk_ct
- 0x80639304: aSumLogHatoclk_DwAfter
- 0x80639584: aSumLogHatoclk_DwBefore
- 0x806395A4: aSumLogHatoclk_dw
- 0x806395F4: aSumLogHatoclk_mv
- 0x80639804: aSumLogHatoclk_dt
- 0x80639808: aSumLv_Stereo_ct
- 0x8063980C: aSumLv_Stereo_mv
- 0x80639850: aSumLv_Stereo_dw
- 0x80639854: aSumLv_Stereo_dt
- 0x80639858: aSumMatumushi_ct
- 0x806398CC: aSumMatumushi_mv
- 0x80639954: aSumMatumushi_dw
- 0x8063999C: aSumMd01_ct
- 0x806399A0: aSumMd01_mv
- 0x806399EC: aSumMd01_dw
- 0x806399F0: aSumMd01_dt
- 0x806399F4: aSumMezaClock_DwAfter
- 0x80639AC8: aSumMezaClock_DwBefore
- 0x80639B1C: aSumMezaClock_Dw
- 0x80639B6C: aSumMinmin_ct
- 0x80639BE0: aSumMinmin_mv
- 0x80639C68: aSumMinmin_dw
- 0x80639CB0: aSumMizunomi_ct
- 0x80639CB4: aSumMizunomi_mv
- 0x80639D14: aSumMizunomi_dw
- 0x80639D18: aSumMizunomi_dt
- 0x80639D1C: aSumOkiagari01_ct
- 0x80639D90: aSumOkiagari01_mv
- 0x80639E48: aSumOkiagari01_dw
- 0x80639ED4: aSumOldClk01_ct
- 0x80639F48: aSumOldClk01_dwAfter
- 0x80639F50: aSumOldClk01_dwBefore
- 0x80639FA4: aSumOldClk01_dw
- 0x80639FF4: aSumOldClk01_mv
- 0x8063A0CC: aSumOldClk01_dt
- 0x8063A0D0: aSumPet01_ct
- 0x8063A144: aSumPet01_mv
- 0x8063A1CC: aSumPet01_dw
- 0x8063A214: aSumPiano01_ct
- 0x8063A218: aSumPiano01_mv
- 0x8063A25C: aSumPiano01_dw
- 0x8063A260: aSumPiano01_dt
- 0x8063A264: aSumRadio01_ct
- 0x8063A268: aSumRadio01_mv
- 0x8063A2B4: aSumRadio01_dw
- 0x8063A2B8: aSumRadio01_dt
- 0x8063A2BC: aSumRadio02_ct
- 0x8063A2C0: aSumRadio02_mv
- 0x8063A30C: aSumRadio02_dw
- 0x8063A310: aSumRadio02_dt
- 0x8063A314: aSumRatanChest01_ct
- 0x8063A388: aSumRatanChest01_mv
- 0x8063A3D8: aSumRatanChest01_dw
- 0x8063A464: aSumRatanChest01_dt
- 0x8063A468: aSumRatanChest02_ct
- 0x8063A4DC: aSumRatanChest02_mv
- 0x8063A52C: aSumRatanChest02_dw
- 0x8063A5B8: aSumRatanChest02_dt
- 0x8063A5BC: aSumRatanMirror_dw
- 0x8063A63C: aSumReco_ct
- 0x8063A6B0: aSumReco_mv
- 0x8063A734: aSumReco_dw
- 0x8063A7C0: aSumReco_dt
- 0x8063A7C4: aSumroboclk_DwAfter
- 0x8063A7CC: aSumroboclk_DwBefore
- 0x8063A820: aSumroboclk_dw
- 0x8063A8AC: aSumroboclk_ct
- 0x8063A920: aSumroboclk_mv
- 0x8063A944: aSumroboclk_dt
- 0x8063A948: aSumRoboconpo_ct
- 0x8063A9BC: aSumRoboconpo_mv
- 0x8063AA28: aSumRoboconpo_dw
- 0x8063AB1C: aSumRoboconpo_dt
- 0x8063AB20: aSumSaiconpo_ct
- 0x8063AB24: aSumSaiconpo_mv
- 0x8063AB70: aSumSaiconpo_dw
- 0x8063AB74: aSumSaiconpo_dt
- 0x8063AB78: aSumSlot_ct
- 0x8063AC08: aSumSlot_mv
- 0x8063AD04: aSumSlot_dw
- 0x8063ADD0: aSumSlot_dt
- 0x8063ADD4: aSumStereo01_ct
- 0x8063ADD8: aSumStereo01_mv
- 0x8063AE24: aSumStereo01_dw
- 0x8063AE28: aSumStereo01_dt
- 0x8063AE2C: aSumStereo02_ct
- 0x8063AE30: aSumStereo02_mv
- 0x8063AE7C: aSumStereo02_dw
- 0x8063AE80: aSumStereo02_dt
- 0x8063AE84: aSumStove01_dw
- 0x8063AF04: aSumSuzumushi_ct
- 0x8063AF78: aSumSuzumushi_mv
- 0x8063B000: aSumSuzumushi_dw
- 0x8063B048: aSumSyouryou_ct
- 0x8063B0BC: aSumSyouryou_mv
- 0x8063B144: aSumSyouryou_dw
- 0x8063B18C: asumtaiko01_ct
- 0x8063B190: asumtaiko01_mv
- 0x8063B1D4: asumtaiko01_dw
- 0x8063B1D8: asumtaiko01_dt
- 0x8063B1DC: aSumTekin01_ct
- 0x8063B1E0: aSumTekin01_mv
- 0x8063B224: aSumTekin01_dw
- 0x8063B228: aSumTekin01_dt
- 0x8063B22C: aSumTimpani01_ct
- 0x8063B230: aSumTimpani01_mv
- 0x8063B274: aSumTimpani01_dw
- 0x8063B278: aSumTimpani01_dt
- 0x8063B27C: aSumTonosama_ct
- 0x8063B2F0: aSumTonosama_mv
- 0x8063B378: aSumTonosama_dw
- 0x8063B3C0: aSumTukutuku_ct
- 0x8063B434: aSumTukutuku_mv
- 0x8063B4BC: aSumTukutuku_dw
- 0x8063B504: aSumTv01_ct
- 0x8063B508: aSumTv01_mv
- 0x8063B5C8: aSumTv01_dw
- 0x8063B6C8: aSumTv01_dt
- 0x8063B6CC: aSumTv02_ct
- 0x8063B6D0: aSumTv02_mv
- 0x8063B790: aSumTv02_dw
- 0x8063B890: aSumTv02_dt
- 0x8063B894: aSumViola01_ct
- 0x8063B898: aSumViola01_mv
- 0x8063B8DC: aSumViola01_dw
- 0x8063B8E0: aSumViola01_dt
- 0x8063B8E4: aSumWhiChest01_ct
- 0x8063B958: aSumWhiChest01_mv
- 0x8063B9A8: aSumWhiChest01_dw
- 0x8063BA34: aSumWhiChest01_dt
- 0x8063BA38: aSumWhiChest02_ct
- 0x8063BAAC: aSumWhiChest02_mv
- 0x8063BAFC: aSumWhiChest02_dw
- 0x8063BB88: aSumWhiChest02_dt
- 0x8063BB8C: aSumWhiLanp_dw
- 0x8063BC0C: aSumWhiMirror_dw
- 0x8063BC8C: aSumXChest01_ct
- 0x8063BD00: aSumXChest01_mv
- 0x8063BD50: aSumXChest01_dw
- 0x8063BDDC: aSumXChest01_dt
- 0x8063BDE0: aSumXChest02_ct
- 0x8063BE54: aSumXChest02_mv
- 0x8063BEA4: aSumXChest02_dw
- 0x8063BF30: aSumXChest02_dt
- 0x8063BF34: aSumXClk_DwAfter
- 0x8063C274: aSumXClk_DwBefore
- 0x8063C29C: aSumXClk_dw
- 0x8063C2EC: aSumXClk_ct
- 0x8063C360: aSumXClk_mv
- 0x8063C438: aSumXClk_dt
- 0x8063C43C: aSumX_Piano_ct
- 0x8063C440: aSumX_Piano_mv
- 0x8063C47C: aSumX_Piano_dw
- 0x8063C480: aSumX_Piano_dt
- 0x8063C484: fTIC_ct
- 0x8063C52C: fTIC_mv
- 0x8063C670: fTIC_DrawBefore
- 0x8063C690: fTIC_GetTwoTileGfx
- 0x8063C6E4: fTIC_DrawAfter
- 0x8063C864: fTIC_dw
- 0x8063C8F8: fTL_ct
- 0x8063C940: fTL_mv
- 0x8063CA48: fTL_GetTwoTileGfx
- 0x8063CA98: fTL_dw
- 0x8063CC0C: fTL_dt
- 0x8063CC18: fTM_dw
- 0x8063CCC4: aTakMetro_ct
- 0x8063CD70: aTakMetro_mv
- 0x8063CF20: aTakMetro_dw
- 0x8063CFAC: aTakMetro_dt
- 0x8063CFB0: fTMny_ct
- 0x8063D024: fTMny_GetSpeed
- 0x8063D108: fTMny_mv
- 0x8063D36C: fTMny_dw
- 0x8063D3F8: fTMN_ct
- 0x8063D4E4: fTMN_mv
- 0x8063D5B4: fTMN_DrawBefore
- 0x8063D5E8: fTMN_DrawAfter
- 0x8063D5F0: fTMN_dw
- 0x8063D684: fTTR_ct
- 0x8063D6D8: fTTR_mv
- 0x8063D710: fTTR_dt
- 0x8063D73C: fTTR_dw
- 0x8063D808: fTTD_ct
- 0x8063D8A8: fTTD_mv
- 0x8063D940: fTTD_DrawBefore
- 0x8063D960: fTTD_DrawAfter
- 0x8063DA70: fTTD_dw
- 0x8063DB04: fHF_ct
- 0x8063DB08: fHF_mv
- 0x8063DB48: fHF_dw
- 0x8063DC38: fHF_dt
- 0x8063DC3C: fHF_dma
- 0x8063DC40: fRT_ct
- 0x8063DC44: fRT_mv
- 0x8063DD30: fRT_dw
- 0x8063DDD8: fRT_dt
- 0x8063DDDC: fGI_ct
- 0x8063DDE0: fGI_mv
- 0x8063DDE4: fGI_dt
- 0x8063DDE8: fGI_dw
- 0x8063DF04: fUW_ct
- 0x8063DF08: fUW_mv
- 0x8063DF0C: fUW_dt
- 0x8063DF10: fUW_dw
- 0x8063DFB8: fKZ_ct
- 0x8063DFBC: fKZ_mv
- 0x8063DFC0: fKZ_dt
- 0x8063DFC4: fKZ_dw
- 0x8063E04C: fTOOL_ct
- 0x8063E050: fTOOL_mv
- 0x8063E054: fTOOL_dt
- 0x8063E058: fTOOL_dw
- 0x8063E174: fHMD_mv
- 0x8063E1CC: fIMK_mv
- 0x8063E228: fIMC_mv
- 0x8063E280: fIMC_dw
- 0x8063E34C: fIMD_mv
- 0x8063E3A4: fIMH_dw
- 0x8063E48C: fIMH_mv
- 0x8063E4E4: fIMKoura_mv
- 0x8063E53C: fIMT_mv
- 0x8063E68C: fIMS_ct
- 0x8063E698: fIMS_mv
- 0x8063E728: fIMS_dw
- 0x8063E818: fITT_ct
- 0x8063E81C: fITT_mv
- 0x8063E8B4: fITT_dw
- 0x8063E9CC: fITT_dt
- 0x8063E9D0: gSBBQ_mv
- 0x8063EAC0: fSKP_mv
- 0x8063EAC4: fSKP_GetTwoTileGfx
- 0x8063EB14: fSKP_dw
- 0x8063ECE8: fSGT_ct
- 0x8063ED5C: fSGT_mv
- 0x8063EDB4: fSGT_DwAfter
- 0x8063EEFC: fSGT_DwBefore
- 0x8063EF14: fSGT_GetTwoTileGfx
- 0x8063EF68: fSGT_dw
- 0x8063F074: fYC_ct
- 0x8063F080: fYC_mv
- 0x8063F084: fYC_dw
- 0x8063F158: fYC_dt
- 0x8063F15C: fYFT_dw
- 0x8063F210: fYMF_mv
- 0x8063F268: fYMF_dw
- 0x8063F344: fYTCST_ct
- 0x8063F3B8: fYTCST_mv
- 0x8063F408: fYTCST_dw
- 0x8063F494: fYTCST_dt
- 0x8063F498: fYTC_ct
- 0x8063F50C: fYTC_mv
- 0x8063F55C: fYTC_dw
- 0x8063F5E8: fYTC_dt
- 0x8063F5EC: fYTW_DwAfter
- 0x8063F5F4: fYTW_DwBefore
- 0x8063F648: fYTW_dw
- 0x8063F698: fYTW_ct
- 0x8063F70C: fYTW_mv
- 0x8063F730: fYTW_dt
- 0x8063F734: fTHM1_ct
- 0x8063F79C: fTHM1_mv
- 0x8063F7E8: fTHM1_dw
- 0x8063F8AC: fTakNes_dw
- 0x8063F99C: fTNM_mv
- 0x8063F9F4: fTSW_ct
- 0x8063F9F8: fTSW_mv
- 0x8063FAE8: fTSW_dt
- 0x8063FAEC: fTSW_dw
- 0x8063FBE4: fTTnt_ct
- 0x8063FC38: fTTnt_mv
- 0x8063FC70: fTTnt_dt
- 0x8063FC9C: fTTnt_dw
- 0x8063FD84: fIFT2_dw
- 0x8063FE38: fIPPnch_ct
- 0x8063FEBC: fIPPnch_mv
- 0x8063FFE4: fIPPnch_dw
- 0x80640070: aIPS_ct
- 0x806400F4: aIPS_mv
- 0x8064021C: aIPS_dw
- 0x806402A8: fITF_ct
- 0x8064031C: fITF_mv
- 0x80640398: fITF_DwAfter
- 0x806404E0: fITF_DwBefore
- 0x806404F8: fITF_GetTwoTileGfx
- 0x80640548: fITF_dw
- 0x80640654: fITF02_ct
- 0x806406C8: fITF02_mv
- 0x80640744: fITF02_DwAfter
- 0x8064088C: fITF02_DwBefore
- 0x806408A4: fITF02_GetTwoTileGfx
- 0x806408F8: fITF02_dw
- 0x80640A04: fNFL_ct
- 0x80640A08: fNFL_mv
- 0x80640A0C: fNFL_dt
- 0x80640A10: fNFL_dw
- 0x80640AD0: aNogG_ct
- 0x80640B44: aNogG_mv
- 0x80640C70: aNogG_dw
- 0x80640CFC: fNLM_ct
- 0x80640D0C: fNLM_mv
- 0x80640DC4: fNLM_dw
- 0x80640F1C: fNS_ct
- 0x80640F64: fNS_mv
- 0x80641094: fNS_GetTwoTileGfx
- 0x806410E4: fNS_dw
- 0x80641248: fNS_dt
- 0x806414A0: add_distance_array
- 0x806414AC: add_directionY_array
- 0x806414B4: add_directionX_array
- 0x80641DA8: demo
- 0x80641E78: wait_start
- 0x80641EBC: wait_end
- 0x80642080: mFont_cont_info_tbl
- 0x806433B0: mTM_rtcTime_clear_code
- 0x806433B8: mTM_rtcTime_ymd_clear_code
- 0x806433BC: mTM_rtcTime_default_code
- 0x80643550: mVW_Non
- 0x80643554: mVW_FFF
- 0x80643558: mVW_F
- 0x8064355C: mVW_MF
- 0x80643560: mVW_MP
- 0x80643564: mVW_P
- 0x8064356C: mVW_funbari
- 0x80643574: mVW_anahori
- 0x8064357C: mVW_anaume
- 0x806435B8: mVW_impact
- 0x806435C4: mVW_ki_ga_taoreru
- 0x806435E8: mVW_ki_wo_yusuru
- 0x806435F8: mVW_koronda
- 0x80643608: mVW_suprise
- 0x80643610: mVW_dummy_b
- 0x80643614: mVW_sample
- 0x80643624: mVW_data
- 0x80643BA0: Cottage_data
- 0x80644680: aim_angle_tbl
- 0x8064468C: base_high_tbl
- 0x806448F8: mino_base_pos
- 0x80644904: mino_top_pos
- 0x80644910: mino_bottom_pos
- 0x80644954: kumo_base_pos
- 0x80644960: kumo_top_pos
- 0x8064496C: kumo_bottom_pos
- 0x80644998: base_genji_pos
- 0x806449A4: genji_mizu_pos
- 0x80644A00: okera_base_pos
- 0x80644A98: l_cntInf_default
- 0x80644AC4: aMR_angle_table
- 0x80644AD4: l_typeB0_table
- 0x80644E28: l_shop_goods_dsp_table
- 0x8064639C: eEC_light_default
- 0x80646558: money_power_tbl
- 0x80646588: goods_power_tbl
- 0x806465D0: tol_sponge_1_model
- 0x80646B2C: Player_actor_wall_angle
- 0x80649DA0: aETKY_present_table
- 0x8064ABF0: aSHR_present_init_pos
- 0x8064ABFC: aSHR_present_aim_pos
- 0x8064D598: l_tree_max_table
- 0x8064D604: restore_flag
- 0x8064D628: actor_dlftbls
- 0x8064F530: mActorShadow_offset0
- 0x8064F6B8: mbgm_pattern_data
- 0x8064F6DC: mbgm_event_data
- 0x8064F880: con_waku_swaku3_tex
- 0x80650880: con_sentaku2_v
- 0x806508C0: con_sentaku2_modelT
- 0x806508F8: mChoice_init_disp
- 0x80650960: mCoBG_tab_data
- 0x80650970: mCoBG_bridge_search_water
- 0x80650980: mCoBG_grass3_search_water
- 0x80650984: mCoBG_make_vector_table
- 0x80650A04: mCoBG_forbid_vector_idx
- 0x80650A94: mCoBG_pro_dimension_proc
- 0x80650AB0: mCoBG_unit_offset
- 0x80650B24: l_make33_coldata
- 0x80650B30: l_make55_coldata
- 0x80650B4C: l_make77_coldata
- 0x80650CE0: mCoBG_mBgDataA
- 0x80650CF0: mCoBG_mBgDataB_0
- 0x80650D00: mCoBG_mBgDataB_180
- 0x80650D10: mCoBG_mBgDataB_270
- 0x80650D20: mCoBG_mBgDataB_90
- 0x80650D30: mCoBG_mBgDataC
- 0x80650D40: mCoBG_mBg_data
- 0x80650D58: norm_up
- 0x80650D60: norm_lt
- 0x80650D68: norm_dn
- 0x80650D70: norm_rt
- 0x80650D88: l_mCoBG_boat_size
- 0x80650E6C: mCoBG_woodb_water_info
- 0x80650E84: mCoBG_grass3_water_info
- 0x80650E94: mCoBG_unit_attribute_water_info
- 0x80650EE8: l_attribute_action_info
- 0x80650F28: mCoBG_hole_data
- 0x80651260: OCClearFunctionTable
- 0x8065126C: oc_collision_function
- 0x80651290: occ_collision_function
- 0x806512B4: OCCClearFunctionTable
- 0x80651358: debug_print_buffer
- 0x80651748: tempo_data
- 0x80651788: direct_vector
- 0x806517C8: direct_back_angle
- 0x80651918: title_demo_number
- 0x8065191C: event_schedule_data
- 0x80651F64: event_rumor_table
- 0x80651FC8: n_event_rumors
- 0x80651FCC: special_event_types
- 0x80651FD8: n_special_event_type
- 0x80652298: l_ev_structure_table
- 0x806522C4: num_of_l_ev_structure
- 0x806522F8: l_event_map_type_table
- 0x8065233C: l_hny_set_actor0
- 0x8065234C: l_hny_map
- 0x8065235C: l_hny_set_dt
- 0x80652364: l_hny_set_dt_table
- 0x80652368: l_hny_set_npc
- 0x8065236C: l_hny_set_data
- 0x8065237C: l_fsh_set_actor0
- 0x8065238C: l_fsh_set_actor1
- 0x8065239C: l_fsh_pule1_map
- 0x806523AC: l_fsh_pule1_set_dt
- 0x806523B4: l_fsh_pule2_map
- 0x806523C4: l_fsh_pule2_set_dt
- 0x806523CC: l_fsh_pule3_map
- 0x806523DC: l_fsh_pule3_set_dt
- 0x806523E4: l_fsh_pule4_map
- 0x806523F4: l_fsh_pule4_set_dt
- 0x806523FC: l_fsh_pule5_map
- 0x8065240C: l_fsh_pule5_set_dt
- 0x80652414: l_fsh_pule6_map
- 0x80652424: l_fsh_pule6_set_dt
- 0x8065242C: l_fsh_pule7_map
- 0x8065243C: l_fsh_pule7_set_dt
- 0x80652444: l_fsh_set_dt_table
- 0x80652460: l_fsh_set_npc
- 0x80652464: l_fsh_set_data
- 0x80652474: l_rc_set_actor0
- 0x80652484: l_rc_map
- 0x80652494: l_rc_set_dt
- 0x8065249C: l_rc_set_dt_table
- 0x806524A0: l_rc_set_npc
- 0x806524A4: l_rc_set_data
- 0x806524B4: l_fws_set_actor0
- 0x806524C4: l_fws_set_actor1
- 0x806524D4: l_fws_pule1_map
- 0x806524E4: l_fws_pule1_set_dt
- 0x806524EC: l_fws_pule2_map
- 0x806524FC: l_fws_pule2_set_dt
- 0x80652504: l_fws_pule3_map
- 0x80652514: l_fws_pule3_set_dt
- 0x8065251C: l_fws_pule4_map
- 0x8065252C: l_fws_pule4_set_dt
- 0x80652534: l_fws_pule5_map
- 0x80652544: l_fws_pule5_set_dt
- 0x8065254C: l_fws_pule6_map
- 0x8065255C: l_fws_pule6_set_dt
- 0x80652564: l_fws_pule7_map
- 0x80652574: l_fws_pule7_set_dt
- 0x8065257C: l_fws_set_dt_table
- 0x80652598: l_fws_set_npc
- 0x8065259C: l_fws_set_data
- 0x806525AC: l_fv_set_actor0
- 0x806525BC: l_fv_map
- 0x806525CC: l_fv_set_dt
- 0x806525D4: l_fv_set_dt_table
- 0x806525D8: l_fv_set_npc
- 0x806525DC: l_fv_set_data
- 0x806525EC: l_fdd_radio_set_actor0
- 0x806525FC: l_fdd_radio_map
- 0x8065260C: l_fdd_radio_set_dt
- 0x80652614: l_fdd_radio_set_dt_table
- 0x80652618: l_fdd_radio_set_npc
- 0x8065261C: l_fdd_radio_set_data
- 0x8065262C: l_fdd_tokyoso_set_actor0
- 0x80652638: l_fdd_tokyoso_map
- 0x80652644: l_fdd_tokyoso_set_dt
- 0x8065264C: l_fdd_tokyoso_set_dt_table
- 0x80652650: l_fdd_tokyoso_set_npc
- 0x80652654: l_fdd_tokyoso_set_data
- 0x80652664: l_fdd_tama_set_actor0
- 0x80652678: l_fdd_tama_map
- 0x8065268C: l_fdd_tama_set_dt
- 0x80652694: l_fdd_tama_set_dt_table
- 0x80652698: l_fdd_tama_set_npc
- 0x8065269C: l_fdd_tama_set_data
- 0x806526AC: l_fdd_tuna_set_actor0
- 0x806526B8: l_fdd_tuna_map
- 0x806526C4: l_fdd_tuna_set_dt
- 0x806526CC: l_fdd_tuna_set_dt_table
- 0x806526D0: l_fdd_tuna_set_npc
- 0x806526D4: l_fdd_tuna_set_data
- 0x806526E4: l_cdn_set_actor0
- 0x806526F4: l_cdn_pule1_map
- 0x80652704: l_cdn_pule1_set_dt
- 0x8065270C: l_cdn_pule2_map
- 0x8065271C: l_cdn_pule2_set_dt
- 0x80652724: l_cdn_pule3_map
- 0x80652734: l_cdn_pule3_set_dt
- 0x8065273C: l_cdn_pule4_map
- 0x8065274C: l_cdn_pule4_set_dt
- 0x80652754: l_cdn_pule5_map
- 0x80652764: l_cdn_pule5_set_dt
- 0x8065276C: l_cdn_pule6_map
- 0x8065277C: l_cdn_pule6_set_dt
- 0x80652784: l_cdn_pule7_map
- 0x80652794: l_cdn_pule7_set_dt
- 0x8065279C: l_cdn_set_dt_table
- 0x806527B8: l_cdn_set_npc
- 0x806527BC: l_cdn_set_data
- 0x806527CC: l_kk_set_actor0
- 0x806527D0: l_kk_map
- 0x806527D4: l_kk_set_dt
- 0x806527DC: l_kk_set_dt_table
- 0x806527E0: l_kk_set_npc
- 0x806527E4: l_kk_set_data
- 0x806527F4: l_gh_set_actor0
- 0x80652800: l_gh_map
- 0x8065280C: l_gh_set_dt
- 0x80652814: l_gh_set_dt_table
- 0x80652818: l_gh_set_npc
- 0x8065281C: l_gh_set_data
- 0x8065282C: l_hm_set_actor
- 0x80652838: l_hm_pule1_map
- 0x80652844: l_hm_pule1_set_dt
- 0x8065284C: l_hm_pule2_map
- 0x80652858: l_hm_pule2_set_dt
- 0x80652860: l_hm_pule3_map
- 0x8065286C: l_hm_pule3_set_dt
- 0x80652874: l_hm_pule4_map
- 0x80652880: l_hm_pule4_set_dt
- 0x80652888: l_hm_pule5_map
- 0x80652894: l_hm_pule5_set_dt
- 0x8065289C: l_hm_pule6_map
- 0x806528A8: l_hm_pule6_set_dt
- 0x806528B0: l_hm_pule7_map
- 0x806528BC: l_hm_pule7_set_dt
- 0x806528C4: l_hm_set_dt_table
- 0x806528E0: l_hm_set_npc
- 0x806528E4: l_hm_set_data
- 0x806528F4: l_hf_set_actor0
- 0x80652908: l_hf_map
- 0x8065291C: l_hf_set_dt
- 0x80652924: l_hf_set_dt_table
- 0x80652928: l_hf_set_npc
- 0x8065292C: l_hf_set_data
- 0x8065293C: l_ms_set_actor0
- 0x80652948: l_ms_set_actor1
- 0x80652954: l_ms_pule1_map
- 0x80652960: l_ms_pule1_set_dt
- 0x80652968: l_ms_pule2_map
- 0x80652974: l_ms_pule2_set_dt
- 0x8065297C: l_ms_pule3_map
- 0x80652988: l_ms_pule3_set_dt
- 0x80652990: l_ms_pule4_map
- 0x8065299C: l_ms_pule4_set_dt
- 0x806529A4: l_ms_pule5_map
- 0x806529B0: l_ms_pule5_set_dt
- 0x806529B8: l_ms_pule6_map
- 0x806529C4: l_ms_pule6_set_dt
- 0x806529CC: l_ms_pule7_map
- 0x806529D8: l_ms_pule7_set_dt
- 0x806529E0: l_ms_set_dt_table
- 0x806529FC: l_ms_set_npc
- 0x80652A00: l_ms_set_data
- 0x80652A10: l_event_set_table
- 0x80652AA0: fbdemo_gfx_init
- 0x80652AD0: wipe1_v
- 0x80652C60: g_wipe1_txt
- 0x80653460: wipe1_modelT
- 0x806535A0: l_block_rank_tree_num
- 0x806535A8: l_block_rank_table
- 0x806535B0: l_block_max_by_rank
- 0x806535B8: l_mfas_romf_check
- 0x80653620: l_fg_outer_fill
- 0x80653820: l_title_demo_fg
- 0x80653890: l_mfm_police_pos
- 0x80653978: l_bg_tex_common_dummy
- 0x80653A50: l_bg_pal_common_dummy
- 0x80653A78: l_bg_tex_segment_rom_start_s_0
- 0x80653AE4: l_bg_tex_segment_rom_start_s_1
- 0x80653B50: l_bg_tex_segment_rom_start_s_2
- 0x80653BBC: l_bg_tex_segment_table
- 0x80653BC8: l_bg_tex_segment_rom_start_w_0
- 0x80653C34: l_bg_tex_segment_rom_start_w_1
- 0x80653CA0: l_bg_tex_segment_rom_start_w_2
- 0x80653D0C: l_bg_w_tex_segment_table
- 0x80653D18: l_bg_pal_segment_rom_start
- 0x80653D2C: l_water_permission
- 0x80653D90: l_combiID
- 0x80653E1C: g_block_type_p
- 0x80653E20: g_block_kind_p
- 0x80653E28: l_edge_ut
- 0x80653E2C: l_keepcld
- 0x80654038: l_structure_set_type
- 0x806540F8: l_sandy_beach_bx
- 0x80654100: l_sandy_beach_bz
- 0x80654188: l_mfrm_err_debug
- 0x806541BC: l_mfrm_color_table
- 0x80654210: sSC_map_perfect_table
- 0x806544C0: mFont_suji_data
- 0x806544D0: game_dlftbls
- 0x806546B0: mHandbillz_dummy_size_tbl
- 0x806546C8: l_player_room_2_utinfo
- 0x806548C8: l_player_room_bm_utinfo
- 0x80654AC8: l_proom_s_tmp
- 0x80654CC8: l_proom_m_tmp
- 0x80654EC8: l_proom_l_tmp
- 0x806550C8: l_proom_cottage_tmp
- 0x806552D8: l_mHm_player_room_default_data
- 0x80655340: l_misl_count_max_table
- 0x80655360: l_misl_agb_npc_table
- 0x80655388: itemArt_Paper
- 0x80655488: itemArt_Money
- 0x8065548C: itemArt_Tool
- 0x806554E8: itemArt_Fish
- 0x80655510: itemArt_Cloth
- 0x80655610: itemArt_Etc
- 0x80655644: itemArt_Carpet
- 0x80655688: itemArt_Wall
- 0x806556CC: itemArt_Fruit
- 0x806556D4: itemArt_Plant
- 0x806556E0: itemArt_MiniDisk
- 0x80655718: itemArt_Diary
- 0x80655728: itemArt_Ticket
- 0x80655788: itemArt_Insect
- 0x806557B8: itemArt_Hukubukuro
- 0x806557BC: itemArt_Kabu
- 0x806557C0: ftrArt
- 0x80655D78: klight_chg_tim
- 0x80655D9C: l_mEnv_kcolor_fine_data
- 0x80655ECC: l_mEnv_kcolor_insect_fine_data
- 0x80655FFC: l_mEnv_kcolor_rain_data
- 0x8065612C: l_mEnv_kcolor_insect_rain_data
- 0x8065625C: l_mEnv_kcolor_data_p_sel
- 0x80656284: l_mEnv_kcolor_shop
- 0x806562AC: l_mEnv_kcolor_buggy
- 0x806562D4: l_mEnv_kcolor_broker
- 0x806562FC: l_mEnv_kcolor_kamakura
- 0x80656324: l_mEnv_kcolor_museum_fossil
- 0x8065634C: l_mEnv_kcolor_museum_fish
- 0x80656374: l_mEnv_kcolor_museum_picture
- 0x8065639C: l_mEnv_kcolor_basement
- 0x806563C4: l_mEnv_kcolor_lighthouse
- 0x806563EC: l_mEnv_normal_kcolor_data
- 0x806563FC: l_mEnv_normal_kcolor_insect_data
- 0x80656434: mEnv_wind_info
- 0x8065646C: wind_term
- 0x80656678: l_mml_postoffice_info
- 0x806566C0: usable_to_fontnum
- 0x80656700: mMpswd_prime_number
- 0x80656B00: mMpswd_transposition_cipher_char0_0
- 0x80656B0C: mMpswd_transposition_cipher_char0_1
- 0x80656B1C: mMpswd_transposition_cipher_char0_2
- 0x80656B2C: mMpswd_transposition_cipher_char0_3
- 0x80656B3C: mMpswd_transposition_cipher_char0_4
- 0x80656B4C: mMpswd_transposition_cipher_char0_5
- 0x80656B60: mMpswd_transposition_cipher_char0_6
- 0x80656B74: mMpswd_transposition_cipher_char0_7
- 0x80656B80: mMpswd_transposition_cipher_char0_8
- 0x80656B90: mMpswd_transposition_cipher_char0_9
- 0x80656BA0: mMpswd_transposition_cipher_char0_10
- 0x80656BA8: mMpswd_transposition_cipher_char0_11
- 0x80656BB8: mMpswd_transposition_cipher_char0_12
- 0x80656BC8: mMpswd_transposition_cipher_char0_13
- 0x80656BD4: mMpswd_transposition_cipher_char0_14
- 0x80656BE0: mMpswd_transposition_cipher_char0_15
- 0x80656BF0: mMpswd_transposition_cipher_char1_0
- 0x80656BFC: mMpswd_transposition_cipher_char1_1
- 0x80656C08: mMpswd_transposition_cipher_char1_2
- 0x80656C18: mMpswd_transposition_cipher_char1_3
- 0x80656C28: mMpswd_transposition_cipher_char1_4
- 0x80656C34: mMpswd_transposition_cipher_char1_5
- 0x80656C44: mMpswd_transposition_cipher_char1_6
- 0x80656C50: mMpswd_transposition_cipher_char1_7
- 0x80656C5C: mMpswd_transposition_cipher_char1_8
- 0x80656C68: mMpswd_transposition_cipher_char1_9
- 0x80656C7C: mMpswd_transposition_cipher_char1_10
- 0x80656C90: mMpswd_transposition_cipher_char1_11
- 0x80656CA4: mMpswd_transposition_cipher_char1_12
- 0x80656CB4: mMpswd_transposition_cipher_char1_13
- 0x80656CC8: mMpswd_transposition_cipher_char1_14
- 0x80656CD4: mMpswd_transposition_cipher_char1_15
- 0x80656CE4: mMpswd_transposition_cipher_char0_table
- 0x80656D64: mMpswd_transposition_cipher_char1_table
- 0x80656DE4: mMpswd_transposition_cipher_char_table
- 0x80656DEC: mMpswd_chg_code_table
- 0x80656EEC: mMpswd_select_idx0
- 0x80656F0C: mMpswd_select_idx1
- 0x80656F2C: mMpswd_select_idx2
- 0x80656F4C: mMpswd_select_idx3
- 0x80656F6C: mMpswd_select_idx4
- 0x80656F8C: mMpswd_select_idx5
- 0x80656FAC: mMpswd_select_idx6
- 0x80656FCC: mMpswd_select_idx7
- 0x80656FEC: mMpswd_select_idx8
- 0x8065700C: mMpswd_select_idx9
- 0x8065702C: mMpswd_select_idx10
- 0x8065704C: mMpswd_select_idx11
- 0x8065706C: mMpswd_select_idx12
- 0x8065708C: mMpswd_select_idx13
- 0x806570AC: mMpswd_select_idx14
- 0x806570CC: mMpswd_select_idx15
- 0x806570EC: mMpswd_select_idx_table
- 0x80657208: MMSG_pf_cl
- 0x80657328: mMsg_bgm_num
- 0x80657334: mMsg_bgm_stop
- 0x80657360: con_kaiwa2_w1_tex
- 0x80657B60: con_kaiwa2_w2_tex
- 0x80658B60: con_kaiwa2_w3_tex
- 0x80659B60: con_kaiwa2_v
- 0x80659CE0: con_kaiwa2_modelT
- 0x80659D60: con_namefuti_TXT
- 0x8065A160: con_kaiwaname_v
- 0x8065A1A0: con_kaiwaname_modelT
- 0x8065A1D0: mMsg_init_disp
- 0x8065A280: l_museum_name_str
- 0x8065A308: mMmd_museum_fossil_data
- 0x8065A3D0: mMmd_scene_process_data
- 0x8065A3F8: l_mmsr_zeto_time
- 0x8065A430: move_obj_profile_table
- 0x8065A45C: actor_profile_table
- 0x8065A460: props_profile_table
- 0x8065A488: npc_looks_table
- 0x8065A578: item1_0_tableNo
- 0x8065A678: item1_1_tableNo
- 0x8065A67C: item1_2_tableNo
- 0x8065A6D8: item1_3_tableNo
- 0x8065A700: item1_4_tableNo
- 0x8065A800: item1_5_tableNo
- 0x8065A834: item1_6_tableNo
- 0x8065A878: item1_7_tableNo
- 0x8065A8BC: item1_8_tableNo
- 0x8065A8C4: item1_9_tableNo
- 0x8065A8D0: item1_A_tableNo
- 0x8065A908: item1_B_tableNo
- 0x8065A918: item1_C_tableNo
- 0x8065A978: item1_D_tableNo
- 0x8065A9A8: item1_E_tableNo
- 0x8065A9AC: item1_F_tableNo
- 0x8065AB60: height_table
- 0x8065ABE0: needlework0_pal
- 0x8065AC00: needlework1_pal
- 0x8065AC20: needlework2_pal
- 0x8065AC40: needlework3_pal
- 0x8065AC60: needlework4_pal
- 0x8065AC80: needlework5_pal
- 0x8065ACA0: needlework6_pal
- 0x8065ACC0: needlework7_pal
- 0x8065ACE0: needlework8_pal
- 0x8065AD00: needlework9_pal
- 0x8065AD20: needlework10_pal
- 0x8065AD40: needlework11_pal
- 0x8065AD60: needlework12_pal
- 0x8065AD80: needlework13_pal
- 0x8065ADA0: needlework14_pal
- 0x8065ADC0: needlework15_pal
- 0x8065ADE0: mNW_needlework_pallet_table
- 0x8065AEE8: l_sp_actor_name
- 0x8065B2D8: l_no_name_npc_name
- 0x8065B2E0: l_no_ending_npc_ending
- 0x8065B48C: l_npc_temper
- 0x8065B4A4: l_island_npc_best_fg_id
- 0x8065B4EC: l_mnpc_island_md_table
- 0x8065B600: l_mnpc_animal_idx
- 0x8065B638: girl_schedule_dt
- 0x8065B670: girl_schedule
- 0x8065B678: ko_girl_schedule_dt
- 0x8065B6B0: ko_girl_schedule
- 0x8065B6B8: boy_schedule_dt
- 0x8065B6F0: boy_schedule
- 0x8065B6F8: sport_man_schedule_dt
- 0x8065B730: sport_man_schedule
- 0x8065B738: grim_man_schedule_dt
- 0x8065B780: grim_man_schedule
- 0x8065B788: naniwa_lady_schedule_dt
- 0x8065B7D0: naniwa_lady_schedule
- 0x8065B7D8: mNPS_schedule
- 0x8065B7F0: l_girl_time_12
- 0x8065B7F4: l_girl_time_18_30
- 0x8065B7F8: l_girl_goal_data
- 0x8065B834: l_girl_goal_table
- 0x8065B83C: l_kogirl_time_ed
- 0x8065B840: l_kogirl_goal_data
- 0x8065B84C: l_kogirl_goal_table
- 0x8065B854: l_boy_time_12
- 0x8065B858: l_boy_time_19_30
- 0x8065B85C: l_boy_goal_data
- 0x8065B898: l_boy_goal_table
- 0x8065B8A0: l_sport_man_time_12
- 0x8065B8A4: l_sport_man_time_23
- 0x8065B8AC: l_sport_man_data
- 0x8065B8E8: l_sport_man_goal_table
- 0x8065B8F0: l_grim_man_time_ed
- 0x8065B8FC: l_grim_man_goal_data
- 0x8065B908: l_grim_man_goal_table
- 0x8065B910: l_naniwa_lady_time_1_30
- 0x8065B91C: l_naniwa_lady_time_13
- 0x8065B920: l_naniwa_lady_time_21
- 0x8065B928: l_naniwa_lady_goal_data
- 0x8065B97C: l_naniwa_lady_goal_table
- 0x8065B984: l_looks_goal_table
- 0x8065B9A0: Player_Profile
- 0x8065BD04: Player_Tex_bank_ID
- 0x8065BD0C: Player_Pallet_bank_ID
- 0x8065BD14: Player_face_tex_bank_ID
- 0x8065BD18: Player_face_pallet_bank_ID
- 0x8065BF00: mPr_boy_cloth_table
- 0x8065BF10: mPr_girl_cloth_table
- 0x8065C030: l_delivery_limit
- 0x8065C034: l_errand_limit
- 0x8065C044: l_contest_limit
- 0x8065C04C: l_contest_fin_limit
- 0x8065C054: l_limit_table
- 0x8065C060: l_limit_table_max
- 0x8065C098: mRF_block_info
- 0x8065C250: gate1_type0_up
- 0x8065C258: gate1_type0_lt
- 0x8065C260: gate1_type0_dn
- 0x8065C268: gate1_type0_rt
- 0x8065C270: gate1_type1_up
- 0x8065C278: gate1_type1_lt
- 0x8065C280: gate1_type1_dn
- 0x8065C288: gate1_type1_rt
- 0x8065C290: gate2_type0_up
- 0x8065C2A0: gate2_type0_lt
- 0x8065C2B0: gate2_type0_dn
- 0x8065C2C0: gate2_type0_rt
- 0x8065C2D0: gate2_type1_up
- 0x8065C2E0: gate2_type1_lt
- 0x8065C2F0: gate2_type1_dn
- 0x8065C300: gate2_type1_rt
- 0x8065C310: gate3_type0_up
- 0x8065C328: gate3_type0_lt
- 0x8065C340: gate3_type0_dn
- 0x8065C358: gate3_type0_rt
- 0x8065C370: mRF_gate_correct_info
- 0x8065C3D0: mRF_gate_info2
- 0x8065C580: l_river_next_direct
- 0x8065C588: z_gsCPModeSet_Data
- 0x8065C858: RSP_RDP_clear_data
- 0x8065C910: mRmTp_size_s_data
- 0x8065C928: mRmTp_size_m_data_south
- 0x8065C940: mRmTp_size_m_data_east
- 0x8065C958: mRmTp_size_m_data_north
- 0x8065C970: mRmTp_size_m_data_west
- 0x8065C988: mRmTp_size_m_data_table
- 0x8065C998: mRmTp_size_l_data
- 0x8065C9B0: mRmTp_ftr_se_type
- 0x8065CEC4: mRmTp_birth_type
- 0x8065D690: diary_listA
- 0x8065D69C: diary_listB
- 0x8065D6A8: diary_listC
- 0x8065D6B8: mSP_diary_list
- 0x8065D714: mSP_goods_seg_inf
- 0x8065D7B4: l_binsen_price_info
- 0x8065D7B8: l_cloth_price_info
- 0x8065D7BC: l_carpet_price_info
- 0x8065D7C0: l_wall_price_info
- 0x8065D7C4: l_tool_price_info
- 0x8065D7C8: l_plant_price_info
- 0x8065D7CC: l_food_price_info
- 0x8065D7D0: l_fish_price_info
- 0x8065D7D4: l_md_price_info
- 0x8065D7D8: l_diary_price_info
- 0x8065D7DC: l_insect_price_info
- 0x8065D7E0: l_price_info
- 0x8065D820: mSP_item1_start_idx_table
- 0x8065D860: l_zakka_goods
- 0x8065D86C: l_conbini_goods
- 0x8065D878: l_super_goods
- 0x8065D884: l_dsuper_goods
- 0x8065D890: l_goods_count_table
- 0x8065DA1C: mSP_sack_amount
- 0x8065DA2C: mSP_itemNo
- 0x8065DA7C: mSP_gc_famicom_table
- 0x8065DB2C: mItemDebug_category_name_table
- 0x8065DB74: mItemDebug_category_start_no_table
- 0x8065DB98: mItemDebug_category_max_table
- 0x8065DBF8: event_table
- 0x8065DDEC: SubmenuArea_dlftbl
- 0x8065DEC8: scene_data_status
- 0x8065E2D8: S_now_demono
- 0x8065E378: mTM_calender
- 0x8065E470: mCD_file_name
- 0x8065E490: l_mcd_err_debug
- 0x8065E584: l_mcd_copy_protect
- 0x8065E588: l_mcd_font_1
- 0x8065E688: l_comment_0_str
- 0x8065E6A8: l_comment_1_str
- 0x8065E6C8: l_comment_erase_land
- 0x8065E6E8: l_comment_player_0_str
- 0x8065E708: l_comment_player_1_str
- 0x8065E728: l_comment_present_0_str
- 0x8065E748: l_comment_present_1_str
- 0x8065E768: l_comment_gift_1_str
- 0x8065E788: l_mCD_land_file_name
- 0x8065E7A8: l_mCD_land_file_name_dummy
- 0x8065E7C8: l_mCD_player_file_name
- 0x8065E7E8: l_mCD_present_file_name
- 0x8065E808: l_mcd_file_table
- 0x8065E868: l_aram_alloc_size_table
- 0x8065E874: l_aram_real_size_32_table
- 0x8065EC98: g_paks_info_p
- 0x8065ECD0: l_lbRTC_isInitial
- 0x8065ECF4: l_lbRk_ConvertTable
- 0x8065F050: l_lbRk_leapdays
- 0x8065F110: ScreenWidth
- 0x8065F114: ScreenHeight
- 0x8065F150: ZeroVec
- 0x8065F15C: ZeroSVec
- 0x8065F168: atntable
- 0x8065F970: Mtx_clear
- 0x8065F9B0: MtxF_clear
- 0x8065FA30: poly_tbl
- 0x8065FA38: sprite_tbl
- 0x8065FA40: Ac_Sample_OcInfoData_forStand
- 0x8065FA78: Sample_Profile
- 0x8065FAA0: Airplane_Profile
- 0x8065FAE4: wind1
- 0x8065FAF0: wind2
- 0x8065FAFC: wind3
- 0x8065FB08: wind4
- 0x8065FB14: wind_table
- 0x8065FB24: wind_change_frame_table
- 0x8065FB68: Animal_Logo_Profile
- 0x8065FBA8: Arrange_Furniture_Profile
- 0x8065FBD0: Arrange_Room_Profile
- 0x8065FBF8: ball_model_tbl
- 0x8065FC04: Ball_Profile
- 0x8065FC28: aBALL_CoInfoData
- 0x8065FC38: aBALL_StatusData
- 0x8065FC88: Balloon_Profile
- 0x8065FCB0: Birth_Control_Profile
- 0x8065FCD4: aBC_pos_table
- 0x8065FD28: Boat_Demo_Profile
- 0x8065FD4C: aBTD_island_prg
- 0x80674F90: aBTD_island_ldr
- 0x806818A0: BoxManager_Profile
- 0x806818C8: BoxMove_Profile
- 0x806818F0: BoxTrick01_Profile
- 0x80681918: Broker_Design_Profile
- 0x80681958: Cottage_My_Profile
- 0x8068197C: Cottage_Npc_Profile
- 0x806819A0: Shadow_vtx_fix_flg_cottage_my
- 0x806819B8: bIT_DR_SHADOW_c_cottage_my
- 0x806819CC: Shadow_vtx_fix_flg_cottage_npc
- 0x806819E8: bIT_DR_SHADOW_c_cottage_npc
- 0x806819FC: Door_data_cottage_my
- 0x80681A10: Door_data_cottage_npc
- 0x80681A98: cherry_tree_model_tbl
- 0x80681AD4: cherry_tree_anime_tbl
- 0x80681B10: summer_tree_model_tbl
- 0x80681B4C: summer_tree_anime_tbl
- 0x80681B88: winter_tree_model_tbl
- 0x80681BC4: winter_tree_anime_tbl
- 0x80681C00: summer_palm_model_tbl
- 0x80681C3C: summer_palm_anime_tbl
- 0x80681C78: winter_palm_model_tbl
- 0x80681CB4: winter_palm_anime_tbl
- 0x80681CF0: summer_cedar_model_tbl
- 0x80681D2C: summer_cedar_anime_tbl
- 0x80681D68: winter_cedar_model_tbl
- 0x80681DA4: winter_cedar_anime_tbl
- 0x80681DE0: Effectbg_Profile
- 0x80681E34: neighbor_adjust
- 0x806820E4: schedule_event
- 0x806829A4: n_schedule_event
- 0x806829A8: Event_Manager_Profile
- 0x806829E0: Field_Draw_Profile
- 0x80682A04: aFD_block_offset_table
- 0x80682A60: aFD_culling_vtx
- 0x80682AE0: aFD_cull_set_gfx
- 0x80682B20: aFD_cull_set_model
- 0x80682B38: aFD_texture_scroll2_data
- 0x80682B40: aFD_evw_data
- 0x80682B68: Fieldm_Draw_Profile
- 0x80682B90: Flag_Profile
- 0x80682BB4: aFLAG_shadow_vtx_fix_flg_table
- 0x80682BBC: aFLAG_shadow_data
- 0x80682C00: Garagara_Profile
- 0x80682C24: aGaragara_init_proc_table
- 0x80682C2C: aGaragara_move_proc_table
- 0x80682C44: aGRBL_texture_table
- 0x80682C58: Gyo_Kage_Profile
- 0x80682CC8: aGYO_KAGE_shadow_scale
- 0x80682CF8: Gyo_Release_Profile
- 0x806832C0: HandOverItem_Profile
- 0x80683D08: Haniwa_Profile
- 0x80683D2C: AcHaniwaCoInfoData
- 0x80683D3C: AcHaniwaStatusData
- 0x80683E98: Hatumode_Control_Profile
- 0x80684078: aHC_draw_data
- 0x80684150: aHC_position_data
- 0x806841E0: House_Clock_Profile
- 0x80684208: Intro_Demo_Profile
- 0x806842E0: Kamakura_Indoor_Profile
- 0x80684304: aKI_mochi_collision_info
- 0x80684338: rom_kamakura_evw_anime_4_tex_table
- 0x80684340: aKI_candle_ring_anime_data
- 0x80684780: aKI_mochi_anime_data
- 0x80684938: aKI_candle_fire_rgba_data
- 0x80684998: aKI_candle_fire_anime_data
- 0x80684A08: Lighthouse_Switch_Profile
- 0x80684A50: MailBox_Profile
- 0x80684A74: aMBX_animeTable
- 0x80684AC8: aMBX_animeSeqNoTable
- 0x80684ADC: aMBX_skeleton
- 0x80684B18: post_flag_saki_common_DL
- 0x80684B40: post_flag_saki_model_type0
- 0x80684B70: post_flag_saki_model_type1
- 0x80684BB0: mbg_v
- 0x80684C30: mbg_model
- 0x80684C90: Mbg_Profile
- 0x80684CB8: Misin_Profile
- 0x80684CDC: aMSN_dustcloth_target_table
- 0x80684D20: Mural_Profile
- 0x80684D48: Museum_Fossil_Profile
- 0x80684D6C: aMF_fossil_data_table
- 0x80684E38: Museum_Picture_Profile
- 0x80684E5C: aMP_art_data_table
- 0x80684F58: Museum_Fish_Profile
- 0x80684FB8: kusa_group_tbl
- 0x80684FF0: kusa_pos
- 0x80685098: hasu_pos
- 0x806850A4: suisou_awa_pos
- 0x80685194: suisou_awa_group
- 0x806851BC: mfish_model_tbl
- 0x8068525C: mfish_anime_init_tbl
- 0x806852FC: mfish_init_data
- 0x80685B1C: mfish_group_tbl
- 0x80685B6C: mfish_ct
- 0x80685C0C: mfish_mv
- 0x80685CAC: mfish_dw
- 0x80685D4C: unagi_rail_pos
- 0x80685E78: unagi_rail_pos2
- 0x80685F68: unagi_rail_pos3
- 0x80686094: unagi_normal_to_reverse_rail_pos
- 0x80686124: unagi_reverse_to_normal_rail_pos
- 0x80686208: unagi_rail_tbl
- 0x80686214: unagi_rail_num_tbl
- 0x80686258: kusa_model
- 0x80686290: kusa_anime
- 0x806862C8: kusa_start_frame
- 0x80686408: Museum_Indoor_Profile
- 0x8068642C: aMI_museum_indoor_cull_info
- 0x80686448: Museum_Insect_Profile
- 0x8068646C: window_color
- 0x80686470: m_monshiro_disp_tbl
- 0x8068647C: m_monki_disp_tbl
- 0x80686488: m_ageha_disp_tbl
- 0x80686494: m_ohmurasaki_disp_tbl
- 0x806864A0: m_minmin_disp_tbl
- 0x806864AC: m_tukutuku_disp_tbl
- 0x806864B8: m_higurashi_disp_tbl
- 0x806864C4: m_abura_disp_tbl
- 0x806864D0: m_shiokara_disp_tbl
- 0x806864E0: m_akiakane_disp_tbl
- 0x806864F0: m_ginyanma_disp_tbl
- 0x80686500: m_oniyanma_disp_tbl
- 0x80686510: m_syouryou_disp_tbl
- 0x8068651C: m_tonosama_disp_tbl
- 0x80686528: m_koorogi_disp_tbl
- 0x80686534: m_kirigirisu_disp_tbl
- 0x80686540: m_suzumushi_disp_tbl
- 0x8068654C: m_matumushi_disp_tbl
- 0x80686558: m_tentou_disp_tbl
- 0x80686564: m_nanahoshi_disp_tbl
- 0x80686570: m_kamakiri_disp_tbl
- 0x8068657C: m_maimai_disp_tbl
- 0x80686584: m_hachi_disp_tbl
- 0x80686594: m_kanabun_disp_tbl
- 0x8068659C: m_kabuto_disp_tbl
- 0x806865A4: m_hirata_disp_tbl
- 0x806865AC: m_tamamushi_disp_tbl
- 0x806865B4: m_gomadara_disp_tbl
- 0x806865BC: m_nokogiri_disp_tbl
- 0x806865C4: m_miyama_disp_tbl
- 0x806865CC: m_okuwa_disp_tbl
- 0x806865D4: m_amenbo_disp_tbl
- 0x806865E0: m_mino_disp_tbl
- 0x806865F0: m_kumo_disp_tbl
- 0x80686600: m_goki_disp_tbl
- 0x8068660C: m_genji_disp_tbl
- 0x80686620: m_dango_disp_tbl
- 0x8068662C: m_ari_disp_tbl
- 0x80686634: m_okera_disp_tbl
- 0x8068663C: m_ka_disp_tbl
- 0x8068664C: minsect_mdl
- 0x806866EC: minsect_ct
- 0x8068678C: minsect_mv
- 0x8068682C: minsect_dw
- 0x806868CC: minsect_shadow_scale_tbl
- 0x8068696C: active_time_tbl
- 0x80686A0C: relax_time_tbl
- 0x80686AAC: flower_pos
- 0x80686B0C: ohmurasaki_tree_pos
- 0x80686B18: tree_pos
- 0x80686B78: rock_pos
- 0x80686BAC: tonbo_rock_pos
- 0x80686C30: tentou_flower_pos
- 0x80686C94: hachi_base_pos
- 0x80686CD4: kabuto_base_pos
- 0x80686D40: kuwagata_model_tbl
- 0x80686D50: kuwagata_anim_tbl
- 0x80686D60: kuwagata_base_pos
- 0x80686DC0: amenbo_center_pos
- 0x80686E68: rail_pos
- 0x80686EDC: ari_rail_pos
- 0x80686F38: minsect_scale_tbl
- 0x806870F0: aMI_size_dsp_table
- 0x80687198: aMI_step_data
- 0x806871B8: aMI_scale_x_table
- 0x806871C8: My_Indoor_Profile
- 0x80687268: wrapmirror_floor_shift_s
- 0x80687288: wrapmirror_floor_shift_m
- 0x806872A8: wrapmirror_floor_shift_l
- 0x806872C8: wrapmirror_floor_shift_table
- 0x806872E0: scale_floor_shift_s
- 0x80687300: scale_floor_shift_m
- 0x80687320: scale_floor_shift_l
- 0x80687340: scale_floor_shift_table
- 0x80687358: wrapmirror_wall_shift_s
- 0x80687368: wrapmirror_wall_shift_m
- 0x80687378: wrapmirror_wall_shift_l
- 0x80687388: wrapmirror_wall_shift_table
- 0x806873A0: scale_wall_shift_s
- 0x806873B0: scale_wall_shift_m
- 0x806873C0: scale_wall_shift_l
- 0x806873D0: scale_wall_shift_table
- 0x806873E8: My_Room_Profile
- 0x8068740C: l_size_typeA
- 0x80687424: l_size_typeB_90
- 0x8068743C: l_size_typeB_180
- 0x80687454: l_size_typeB_270
- 0x8068746C: l_size_typeB_0
- 0x80687484: l_size_typeC
- 0x8068749C: aMR_furniture_size_table
- 0x8068887C: l_place_table
- 0x8068897C: l_place_table2
- 0x80688A7C: aMR_place_table
- 0x80688A84: aMR_layer_set_info
- 0x80688FA8: rotateDt
- 0x80688FC8: type_target_table
- 0x806891C8: rotate_forbid_table
- 0x80689228: rotate_forbid_friction_table
- 0x80689288: l_next_typea
- 0x806892A0: l_next_place_typeA
- 0x806892A8: l_next_typec
- 0x806892D8: l_next_place_typeC
- 0x806892E0: next_table
- 0x806892F8: l_typeB_90_pattarn
- 0x80689310: l_typeB_180_pattarn
- 0x80689328: l_typeB_270_pattarn
- 0x80689340: l_typeB_0_pattarn
- 0x80689358: pattarn_table
- 0x80689368: aMR_calender_info_table
- 0x8068985C: aMR_icon_display_data
- 0x806899C0: msg_init_table
- 0x80689AC4: msg_ctrl_table
- 0x80689BC8: aMR_msg_no_table
- 0x80689CCC: aMR_none_talk_proc
- 0x80689DD0: aMR_force_talk_flag
- 0x80689ED4: aMR_window_se_flag
- 0x80689FD8: aMR_window_color
- 0x8068A040: aMR_poccess_typeB90
- 0x8068A04C: aMR_poccess_typeB180
- 0x8068A058: aMR_poccess_typeB270
- 0x8068A064: aMR_poccess_typeB0
- 0x8068A070: aMR_poccess_typeA
- 0x8068A07C: aMR_poccess_typeC
- 0x8068A088: aMR_poccess_table
- 0x8068A224: aMR_sit_small_chair1
- 0x8068A228: aMR_sit_small_chair1_data
- 0x8068A230: aMR_sit_small_chair4
- 0x8068A234: aMR_sit_small_chair4_data
- 0x8068A23C: aMR_sit_middle_sofa
- 0x8068A240: aMR_sit_middle_sofa_data
- 0x8068A248: aME_sit_data
- 0x8068A2AC: square_offset_data
- 0x8068A378: Needlework_Indoor_Profile
- 0x8068A410: Present_Demo_Profile
- 0x8068A458: Psnowman_Profile
- 0x8068A480: Pterminal_Profile
- 0x8068A4E8: aPT_stat_init_proc_table
- 0x8068A504: aPT_stat_main_proc_table
- 0x8068A520: l_set_delivery_data
- 0x8068A640: l_set_errand_data
- 0x8068AA78: l_set_contest_data
- 0x8068AC70: l_set_data
- 0x8068AC7C: l_errand_proc
- 0x8068ACB8: l_contest_proc
- 0x8068ACD4: l_contest_check
- 0x8068ACF0: l_proc_max
- 0x8068ADD0: Quest_Manager_Profile
- 0x8068AE40: l_hello_fine_msg_tbl
- 0x8068AE60: l_hello_fine_island_msg_tbl
- 0x8068AE80: l_hello_rain_msg_tbl
- 0x8068AEA0: l_hello_snow_msg_tbl
- 0x8068AEC0: l_grad_hello_msg_tbl
- 0x8068AEE0: l_indoor_hello_msg_tbl
- 0x8068AF00: l_hello_rage_msg
- 0x8068AF18: l_hello_rage_island_msg
- 0x8068AF30: l_hello_sad_msg
- 0x8068AF48: l_hello_sad_island_msg
- 0x8068AF60: l_hello_sleep_msg
- 0x8068AF78: l_hello_uzai_msg
- 0x8068AF90: l_hello_uzai_island_msg
- 0x8068B048: l_quest_item_list
- 0x8068B05C: l_reward_msg
- 0x8068B07C: l_fruit_reward_msg
- 0x8068B09C: l_soccer_reward_msg
- 0x8068B0BC: l_snowman_reward_msg
- 0x8068B0DC: l_flower_reward_msg
- 0x8068B0FC: l_fish_reward_msg
- 0x8068B11C: l_insect_reward_msg
- 0x8068B13C: l_after_reward_msg
- 0x8068B15C: l_quest_type_table_fj
- 0x8068B164: l_quest_type_table_qst
- 0x8068B170: l_quest_kind_table_fj_delivery
- 0x8068B178: l_quest_kind_table_fj_errand
- 0x8068B17C: l_quest_kind_table_qst_delivery
- 0x8068B18C: l_quest_kind_table_qst_errand
- 0x8068B190: l_quest_kind_table_qst_contest
- 0x8068B1AC: l_new_fj_quest_info
- 0x8068B1CC: l_new_quest_quest_info
- 0x8068B270: l_contest_hoka_msg_no
- 0x8068B538: l_aqmgr_sakubunn
- 0x8068B560: l_ki_prob
- 0x8068B568: l_normal_1_prob
- 0x8068B56C: l_game_prob
- 0x8068B570: l_ev_prob
- 0x8068B574: l_normal_2_prob
- 0x8068B578: l_trade_prob
- 0x8068B57C: l_normal_3_prob
- 0x8068B580: l_ki_normal
- 0x8068B598: l_ki_weather_time
- 0x8068B5B0: l_ki_free_item
- 0x8068B5C8: l_ki_ftr
- 0x8068B5E0: l_ki_free_item_money
- 0x8068B5F8: l_ev_special
- 0x8068B610: l_ev_cal
- 0x8068B628: l_game_hint
- 0x8068B640: l_remove_yes
- 0x8068B658: l_normal2_letter
- 0x8068B670: l_normal2_memory
- 0x8068B688: l_trade_free_item
- 0x8068B6A0: l_trade_ftr
- 0x8068B6B8: l_trade_item
- 0x8068B6D0: l_trade_free_item_money
- 0x8068B6E8: l_normal3_normal
- 0x8068B700: l_normal3_weather_time
- 0x8068B718: l_normal3_weather
- 0x8068B730: l_normal3_season
- 0x8068BA24: l_aqmgr_hint_ng_msg
- 0x8068BA44: l_aqmgr_hint_ng_base_msg
- 0x8068BA64: l_aqmgr_hint_ng_rnd_max
- 0x8068BAE0: Reset_Demo_Profile
- 0x8068BB28: Ride_Off_Demo_Profile
- 0x8068BB80: Rope_Profile
- 0x8068BBF4: Set_Manager_Profile
- 0x8068BC18: Set_Npc_Manager_Profile
- 0x8068BCF0: r_m1_t0
- 0x8068BD28: s_m1_t0
- 0x8068BD30: r_m1_t1
- 0x8068BD68: r_m1_t2
- 0x8068BDA0: r_begining_january
- 0x8068BDC0: s_begining_january
- 0x8068BDE0: r_m2_t0
- 0x8068BE18: s_m2_t0
- 0x8068BE20: r_m2_t1
- 0x8068BE58: r_m2_t2
- 0x8068BE90: r_begining_february
- 0x8068BEB0: s_begining_february
- 0x8068BED0: r_m3_t0
- 0x8068BF0C: s_m3_t0
- 0x8068BF18: r_m3_t1
- 0x8068BF4C: r_m3_t2
- 0x8068BF7C: r_begining_march
- 0x8068BF9C: s_begining_march
- 0x8068BFBC: r_m4_t0
- 0x8068BFFC: s_m4_t0
- 0x8068C008: p_m4_t0
- 0x8068C010: r_m4_t1
- 0x8068C04C: r_m4_t2
- 0x8068C080: r_begining_april
- 0x8068C0A0: s_begining_april
- 0x8068C0C0: p_begining_april
- 0x8068C0E0: r_m5_t0
- 0x8068C128: s_m5_t0
- 0x8068C134: p_m5_t0
- 0x8068C140: r_m5_t1
- 0x8068C17C: r_m5_t2
- 0x8068C1B8: r_begining_may
- 0x8068C1D8: s_begining_may
- 0x8068C1F8: p_begining_may
- 0x8068C218: r_m6_t0
- 0x8068C268: s_m6_t0
- 0x8068C274: p_m6_t0
- 0x8068C280: r_m6_t1
- 0x8068C2C0: r_m6_t2
- 0x8068C304: r_begining_june
- 0x8068C324: s_begining_june
- 0x8068C344: p_begining_june
- 0x8068C364: r_m7_t0
- 0x8068C3B0: s_m7_t0
- 0x8068C3BC: p_m7_t0
- 0x8068C3C8: r_m7_t1
- 0x8068C40C: r_m7_t2
- 0x8068C458: r_begining_july
- 0x8068C478: s_begining_july
- 0x8068C498: p_begining_july
- 0x8068C4B8: r_m8_t0
- 0x8068C504: s_m8_t0
- 0x8068C510: s_m8_t0_2
- 0x8068C51C: p_m8_t0
- 0x8068C528: r_m8_t1
- 0x8068C56C: s_m8_t1_2
- 0x8068C578: r_m8_t2
- 0x8068C5C4: r_begining_august
- 0x8068C5E4: s_begining_august
- 0x8068C604: s_latter_august
- 0x8068C624: p_begining_august
- 0x8068C644: r_m9_t0
- 0x8068C694: r_m9_t0_2
- 0x8068C6DC: s_m9_t0
- 0x8068C6E8: s_m9_t0_2
- 0x8068C6F4: p_m9_t0
- 0x8068C6F8: r_m9_t1
- 0x8068C734: r_m9_t1_2
- 0x8068C76C: s_m9_t1
- 0x8068C778: r_m9_t2
- 0x8068C7BC: r_m9_t2_2
- 0x8068C7F8: r_begining_september
- 0x8068C818: r_latter_september
- 0x8068C838: s_begining_september
- 0x8068C858: s_latter_september
- 0x8068C878: p_begining_september
- 0x8068C898: r_m10_t0
- 0x8068C8D8: s_m10_t0
- 0x8068C8E4: r_m10_t1
- 0x8068C918: r_m10_t2
- 0x8068C94C: r_begining_october
- 0x8068C96C: s_begining_october
- 0x8068C98C: r_m11_t0
- 0x8068C9C4: s_m11_t0
- 0x8068C9D0: r_m11_t1
- 0x8068CA04: r_m11_t2
- 0x8068CA30: r_begining_november
- 0x8068CA50: s_begining_november
- 0x8068CA70: r_m12_t0
- 0x8068CAA8: s_m12_t0
- 0x8068CAB0: r_m12_t1
- 0x8068CAE8: r_m12_t2
- 0x8068CB20: r_begining_december
- 0x8068CB40: s_begining_december
- 0x8068CB60: f_bs_t0
- 0x8068CB6C: f_bs_t1
- 0x8068CB78: f_bs_t2
- 0x8068CB84: f_il_t0
- 0x8068CB90: f_il_t1
- 0x8068CB9C: f_il_t2
- 0x8068CBA8: r_month
- 0x8068CC08: s_month
- 0x8068CC68: p_month
- 0x8068CCC8: f_event
- 0x8068CCE8: f_island
- 0x8068CDE8: l_insect_birth_sum
- 0x8068CE3C: l_insect_m3_t1
- 0x8068CE64: l_insect_m3_t2
- 0x8068CE8C: l_insect_m3_t3
- 0x8068CED4: l_insect_m3_t4
- 0x8068CF0C: l_insect_m3_t5
- 0x8068CF34: l_insect_m3_t6
- 0x8068CF5C: l_insect_m4_t1
- 0x8068CF8C: l_insect_m4_t2
- 0x8068CFBC: l_insect_m4_t3
- 0x8068D014: l_insect_m4_t4
- 0x8068D064: l_insect_m4_t5
- 0x8068D094: l_insect_m4_t6
- 0x8068D0C4: l_insect_m5_t1
- 0x8068D0F4: l_insect_m5_t2
- 0x8068D124: l_insect_m5_t3
- 0x8068D184: l_insect_m5_t4
- 0x8068D1E4: l_insect_m5_t5
- 0x8068D21C: l_insect_m5_t6
- 0x8068D254: l_insect_m6_t1
- 0x8068D28C: l_insect_m6_t2
- 0x8068D2BC: l_insect_m6_t3
- 0x8068D334: l_insect_m6_t4
- 0x8068D3AC: l_insect_m6_t5
- 0x8068D3E4: l_insect_m6_t6
- 0x8068D424: l_insect_m7_t1
- 0x8068D47C: l_insect_m7_t2
- 0x8068D4DC: l_insect_m7_t3
- 0x8068D584: l_insect_m7_t4
- 0x8068D61C: l_insect_m7_t5
- 0x8068D664: l_insect_m7_t6
- 0x8068D6BC: l_insect_m8_t1
- 0x8068D714: l_insect_m8_t2
- 0x8068D774: l_insect_m8_t3
- 0x8068D81C: l_insect_m8_t4
- 0x8068D8B4: l_insect_m8_t5
- 0x8068D904: l_insect_m8_t6
- 0x8068D95C: l_insect_m9_t1
- 0x8068D99C: l_insect_m9_t2
- 0x8068D9DC: l_insect_m9_t3
- 0x8068DA54: l_insect_m9_t4
- 0x8068DAAC: l_insect_m9_t5
- 0x8068DB14: l_insect_m9_t6
- 0x8068DB5C: l_insect_m10_t1
- 0x8068DB94: l_insect_m10_t2
- 0x8068DBCC: l_insect_m10_t3
- 0x8068DC2C: l_insect_m10_t4
- 0x8068DC7C: l_insect_m10_t5
- 0x8068DCCC: l_insect_m10_t6
- 0x8068DD04: l_insect_m11_t1
- 0x8068DD34: l_insect_m11_t2
- 0x8068DD64: l_insect_m11_t3
- 0x8068DD9C: l_insect_m11_t4
- 0x8068DDD4: l_insect_m11_t5
- 0x8068DE04: l_insect_m11_t6
- 0x8068DE34: l_insect_m_other_t
- 0x8068DE4C: l_insect_isl_t1
- 0x8068DE8C: l_insect_isl_t2
- 0x8068DED4: l_insect_isl_t3
- 0x8068DF5C: l_insect_isl_t4
- 0x8068DFD4: l_insect_isl_t5
- 0x8068DFFC: l_insect_isl_t6
- 0x8068E03C: l_hitodama_time_table
- 0x8068E044: l_insect_month
- 0x8068E284: l_insect_island
- 0x8068E318: aSOI_chk_live_area_data
- 0x8068E3C0: Shop_Design_Profile
- 0x8068E430: Shop_Goods_Profile
- 0x8068E458: aSI_disp_data_table
- 0x8068E4D0: aSI_wall_default_table
- 0x8068E4DC: aSI_floor_default_table
- 0x8068E4E8: Shop_Indoor_Profile
- 0x8068E520: Shop_Level_Profile
- 0x8068E554: aSL_zakka_rw
- 0x8068E5AC: aSL_conveni_rw
- 0x8068E62C: aSL_super_rw
- 0x8068E708: Shop_Manekin_Profile
- 0x8068E72C: l_manekin_mBgData
- 0x8068E740: aShopUmbrella_disp_table
- 0x8068E7C0: aShopUmbrella_xlu_disp_table
- 0x8068E840: Shop_Umbrella_Profile
- 0x8068E864: l_umbrella_mBgData
- 0x8068E880: aSIGN_shadow_vtx_fix_flg_table
- 0x8068E884: aSIGN_shadow_data
- 0x8068E898: Ac_Sign_Profile
- 0x8068E8E8: Snowman_Profile
- 0x8068E90C: aSMAN_CoInfoData
- 0x8068E91C: aSMAN_StatusData
- 0x8068E9C8: T_Anrium1_Profile
- 0x8068EA08: T_Bag1_Profile
- 0x8068EA48: T_Bag2_Profile
- 0x8068EA88: T_Biscus1_Profile
- 0x8068EAC8: T_Biscus2_Profile
- 0x8068EB08: T_Biscus3_Profile
- 0x8068EB48: T_Biscus4_Profile
- 0x8068EB88: T_Cobra1_Profile
- 0x8068EBC8: T_Cracker_Profile
- 0x8068EC28: T_Flag_Profile
- 0x8068EC50: T_Hanabi_Profile
- 0x8068ECB0: T_Hasu1_Profile
- 0x8068ECF0: T_Hat1_Profile
- 0x8068ED30: T_Hat2_Profile
- 0x8068ED70: T_Hat3_Profile
- 0x8068EDB0: aTKT_anm_dt
- 0x8068EDF8: T_Keitai_Profile
- 0x8068EE58: T_NpcSao_Profile
- 0x8068EE98: T_Pistol_Profile
- 0x8068EEF8: T_Rei1_Profile
- 0x8068EF38: T_Rei2_Profile
- 0x8068EF78: T_Tama_Profile
- 0x8068EFE0: T_Tumbler_Profile
- 0x8068F040: T_Umbrella_Profile
- 0x8068F310: T_Utiwa_Profile
- 0x8068F370: T_Zinnia1_Profile
- 0x8068F3B0: T_Zinnia2_Profile
- 0x8068F3F0: Tokyoso_Control_Profile
- 0x8068F510: Tools_Profile
- 0x8068F5C0: TrainDoor_Profile
- 0x8068F600: aTrainWindow_tree_pal_table
- 0x8068F7E0: aTrainWindow_out_cloud
- 0x8068F7E4: aTrainWindow_evw_anime_data
- 0x8068F7EC: Train_Window_Profile
- 0x8068F830: Tunahiki_Control_Profile
- 0x8068F858: Uki_Profile
- 0x8068F87C: aUKI_CoInfoData
- 0x8068F88C: aUKI_StatusData
- 0x8068FC68: BgCherryItem_Profile
- 0x8068FD0C: typeData_table_bgCherryItem
- 0x80690330: typeData_table_bgCherryItem2
- 0x80690834: c_tree_DL_table
- 0x806908B0: c_tree0_list
- 0x806908B8: c_tree0_list2
- 0x806908C0: c_tree0_shadow_list
- 0x806908C8: c_tree1_list
- 0x806908D0: c_tree1_list2
- 0x806908D8: c_tree1_shadow_list
- 0x806908E0: c_tree2_list
- 0x806908E8: c_tree2_list2
- 0x806908F0: c_tree2_shadow_list
- 0x806908F8: c_tree3_list
- 0x80690900: c_tree4_list
- 0x80690938: c_tree0_dead_list
- 0x80690940: c_tree0_list_table
- 0x80690948: c_tree1_list_table
- 0x80690950: c_tree2_list_table
- 0x80690958: c_tree3_list_table
- 0x8069095C: c_tree4_list_table
- 0x806909A8: c_tree0_dead_list_table
- 0x806909AC: c_tree_shadow_v_fix
- 0x806909B0: c_tree4_part
- 0x806909D0: c_tree3_part
- 0x806909F0: c_tree2_part
- 0x80690A10: c_tree1_part
- 0x80690A30: c_tree0_part
- 0x80690B10: c_tree0_dead_part
- 0x80691068: c_stump_DL_table
- 0x806910A0: c_stump_list0
- 0x806910A8: c_stump_shadow_list0
- 0x806910B0: c_stump_list1
- 0x806910B8: c_stump_shadow_list1
- 0x806910C0: c_stump_list2
- 0x806910C8: c_stump_shadow_list2
- 0x806910D0: c_stump_list3
- 0x806910D8: c_stump_list_table0
- 0x806910DC: c_stump_list_table1
- 0x806910E0: c_stump_list_table2
- 0x806910E4: c_stump_list_table3
- 0x806910E8: c_stump_shadow_v_fix
- 0x806910EC: c_stump_part4
- 0x8069110C: c_stump_part3
- 0x8069112C: c_stump_part2
- 0x8069114C: c_stump_part1
- 0x8069147C: c_fence_DL_table
- 0x8069148C: c_fence_list
- 0x80691494: c_fence_list_table
- 0x80691498: c_fence_shadow_list
- 0x806914A0: c_fence_shadow_v_fix
- 0x806914A4: c_fence_part
- 0x806914C4: c_notice_DL_table
- 0x806914D4: c_notice_list
- 0x806914DC: c_notice_list_table
- 0x806914E0: c_notice_shadow_list
- 0x806914E8: c_notice_shadow_v_fix
- 0x806914EC: c_notice_part
- 0x8069150C: c_melody_DL_table
- 0x8069151C: c_melody_list
- 0x80691524: c_melody_list_table
- 0x80691528: c_melody_shadow_list
- 0x80691530: c_melody_shadow_v_fix
- 0x80691534: c_melody_part
- 0x80691554: c_fences_DL_table
- 0x80691564: c_fences_list
- 0x8069156C: c_fences_list_table
- 0x80691570: c_fences_shadow_list
- 0x80691578: c_fences_shadow_v_fix
- 0x8069157C: c_fences_part
- 0x8069159C: c_mapboard_DL_table
- 0x806915AC: c_mapboard_list
- 0x806915B4: c_mapboard_list_table
- 0x806915B8: c_mapboard_shadow_list
- 0x806915C0: c_mapboard_shadow_v_fix
- 0x806915C4: c_mapboard_part
- 0x8069176C: c_flower_DL_table
- 0x8069178C: c_flower_list00
- 0x80691794: c_flower_list01
- 0x8069179C: c_flower_list02
- 0x806917A4: c_flower_leaf_list
- 0x806917AC: c_flower_list_table00
- 0x806917B0: c_flower_list_table01
- 0x806917B4: c_flower_list_table02
- 0x806917B8: c_flower_leaf_list_table
- 0x806917BC: c_flower_leaf_part
- 0x806917DC: c_flower_part00
- 0x806917FC: c_flower_part01
- 0x8069181C: c_flower_part02
- 0x8069183C: c_grass_DL_table
- 0x8069184C: c_grass0_list
- 0x80691854: c_grass0_list_table
- 0x80691858: c_grass0_part
- 0x80692BE0: BgItem_Profile
- 0x80692C84: typeData_table_bgItem
- 0x806932A8: typeData_table_bgItem2
- 0x806937AC: tree_DL_table
- 0x80693810: tree0_list
- 0x80693818: tree1_list
- 0x80693820: tree2_list
- 0x80693828: tree2_list2
- 0x80693830: tree2_shadow_list
- 0x80693838: tree3_list
- 0x80693840: tree3_list2
- 0x80693848: tree3_shadow_list
- 0x80693850: tree4_list
- 0x80693858: tree4_list2
- 0x80693860: tree4_shadow_list
- 0x80693898: tree0_dead_list
- 0x806938A0: tree0_list_table
- 0x806938A4: tree1_list_table
- 0x806938A8: tree2_list_table
- 0x806938B0: tree3_list_table
- 0x806938B8: tree4_list_table
- 0x80693908: tree0_dead_list_table
- 0x8069390C: tree_shadow_v_fix
- 0x80693910: tree0_part
- 0x80693930: tree1_part
- 0x80693950: tree2_part
- 0x80693970: tree3_part
- 0x80693990: tree4_part
- 0x80693A70: tree0_dead_part
- 0x80693FC8: stump_DL_table
- 0x80694000: stump_list0
- 0x80694008: stump_shadow_list0
- 0x80694010: stump_list1
- 0x80694018: stump_shadow_list1
- 0x80694020: stump_list2
- 0x80694028: stump_shadow_list2
- 0x80694030: stump_list3
- 0x80694038: stump_list_table0
- 0x8069403C: stump_list_table1
- 0x80694040: stump_list_table2
- 0x80694044: stump_list_table3
- 0x80694048: stump_shadow_v_fix
- 0x8069404C: stump_part4
- 0x8069406C: stump_part3
- 0x8069408C: stump_part2
- 0x806940AC: stump_part1
- 0x806943DC: fence_DL_table
- 0x806943EC: fence_list
- 0x806943F4: fence_list_table
- 0x806943F8: fence_shadow_list
- 0x80694400: fence_shadow_v_fix
- 0x80694404: fence_part
- 0x80694424: notice_DL_table
- 0x80694434: notice_list
- 0x8069443C: notice_list_table
- 0x80694440: notice_shadow_list
- 0x80694448: notice_shadow_v_fix
- 0x8069444C: notice_part
- 0x8069446C: melody_DL_table
- 0x8069447C: melody_list
- 0x80694484: melody_list_table
- 0x80694488: melody_shadow_list
- 0x80694490: melody_shadow_v_fix
- 0x80694494: melody_part
- 0x806944B4: mapboard_DL_table
- 0x806944C4: mapboard_list
- 0x806944CC: mapboard_list_table
- 0x806944D0: mapboard_shadow_list
- 0x806944D8: mapboard_shadow_v_fix
- 0x806944DC: mapboard_part
- 0x8069451C: flower_list00
- 0x80694524: flower_list01
- 0x8069452C: flower_list02
- 0x80694534: flower_leaf_list
- 0x8069453C: flower_list_table00
- 0x80694540: flower_list_table01
- 0x80694544: flower_list_table02
- 0x80694548: flower_leaf_list_table
- 0x8069454C: flower_leaf_part
- 0x8069456C: flower_part00
- 0x8069458C: flower_part01
- 0x806945AC: flower_part02
- 0x806945E8: grass_part
- 0x80694608: fences_DL_table
- 0x80694618: fences_list
- 0x80694620: fences_list_table
- 0x80694624: fences_shadow_list
- 0x8069462C: fences_shadow_v_fix
- 0x80694630: fences_part
- 0x80695B38: BgPoliceItem_Profile
- 0x80695D60: BgPostItem_Profile
- 0x80695D98: BgWinterItem_Profile
- 0x80695E3C: typeData_table_bgWinterItem
- 0x80696460: typeData_table_bgWinterItem2
- 0x80696964: w_tree_DL_table
- 0x806969E0: w_tree0_list
- 0x806969E8: w_tree0_list2
- 0x806969F0: w_tree0_shadow_list
- 0x806969F8: w_tree1_list
- 0x80696A00: w_tree1_list2
- 0x80696A08: w_tree1_shadow_list
- 0x80696A10: w_tree2_list
- 0x80696A18: w_tree2_list2
- 0x80696A20: w_tree2_shadow_list
- 0x80696A28: w_tree3_list
- 0x80696A30: w_tree4_list
- 0x80696A68: w_tree0_dead_list
- 0x80696A70: w_tree4_list_table
- 0x80696A74: w_tree3_list_table
- 0x80696A78: w_tree2_list_table
- 0x80696A80: w_tree1_list_table
- 0x80696A88: w_tree0_list_table
- 0x80696AD8: w_tree0_dead_list_table
- 0x80696ADC: w_tree_shadow_v_fix
- 0x80696AE0: w_tree0_part
- 0x80696B00: w_tree1_part
- 0x80696B20: w_tree2_part
- 0x80696B40: w_tree3_part
- 0x80696B60: w_tree4_part
- 0x80696C40: w_tree0_dead_part
- 0x80697198: w_stump_DL_table
- 0x806971D0: w_stump_list0
- 0x806971D8: w_stump_shadow_list0
- 0x806971E0: w_stump_list1
- 0x806971E8: w_stump_shadow_list1
- 0x806971F0: w_stump_list2
- 0x806971F8: w_stump_shadow_list2
- 0x80697200: w_stump_list3
- 0x80697208: w_stump_list_table0
- 0x8069720C: w_stump_list_table1
- 0x80697210: w_stump_list_table2
- 0x80697214: w_stump_list_table3
- 0x80697218: w_stump_shadow_v_fix
- 0x8069721C: w_stump_part1
- 0x8069723C: w_stump_part2
- 0x8069725C: w_stump_part3
- 0x8069727C: w_stump_part4
- 0x806975AC: w_fence_DL_table
- 0x806975BC: w_fence_list
- 0x806975C4: w_fence_list_table
- 0x806975C8: w_fence_shadow_list
- 0x806975D0: w_fence_shadow_v_fix
- 0x806975D4: w_fence_part
- 0x806975F4: w_notice_DL_table
- 0x80697604: w_notice_list
- 0x8069760C: w_notice_list_table
- 0x80697610: w_notice_shadow_list
- 0x80697618: w_notice_shadow_v_fix
- 0x8069761C: w_notice_part
- 0x80697658: w_grass_part
- 0x80697678: w_melody_DL_table
- 0x80697688: w_melody_list
- 0x80697690: w_melody_list_table
- 0x80697694: w_melody_shadow_list
- 0x8069769C: w_melody_shadow_v_fix
- 0x806976A0: w_melody_part
- 0x806976C0: w_fences_DL_table
- 0x806976D0: w_fences_list
- 0x806976D8: w_fences_list_table
- 0x806976DC: w_fences_shadow_list
- 0x806976E4: w_fences_shadow_v_fix
- 0x806976E8: w_fences_part
- 0x80697708: w_mapboard_DL_table
- 0x80697718: w_mapboard_list
- 0x80697720: w_mapboard_list_table
- 0x80697724: w_mapboard_shadow_list
- 0x8069772C: w_mapboard_shadow_v_fix
- 0x80697730: w_mapboard_part
- 0x80697750: w_flower_DL_table
- 0x80697758: w_flower_leaf_list
- 0x80697760: w_flower_leaf_list_table
- 0x80697764: w_flower_part
- 0x8069779C: w_flower_list00
- 0x806977A4: w_flower_list01
- 0x806977AC: w_flower_list02
- 0x806977B4: w_flower_list_table00
- 0x806977B8: w_flower_list_table01
- 0x806977BC: w_flower_list_table02
- 0x806977C0: w_flower_part00
- 0x806977E0: w_flower_part01
- 0x80697800: w_flower_part02
- 0x80698D10: BgXmasItem_Profile
- 0x80698DB4: typeData_table_bgXmasItem
- 0x806993D8: typeData_table_bgXmasItem2
- 0x806998DC: x_tree_DL_table
- 0x80699960: x_tree0_list
- 0x80699968: x_tree0_list2
- 0x80699970: x_tree0_shadow_list
- 0x80699978: x_tree1_list
- 0x80699980: x_tree1_list2
- 0x80699988: x_tree1_shadow_list
- 0x80699990: x_tree2_list
- 0x80699998: x_tree2_list2
- 0x806999A0: x_tree2_shadow_list
- 0x806999A8: x_tree3_list
- 0x806999B0: x_tree4_list
- 0x806999E8: x_tree0_dead_list
- 0x806999F0: tree4_light_list
- 0x806999F8: x_tree0_list_table
- 0x80699A00: x_tree1_list_table
- 0x80699A08: x_tree2_list_table
- 0x80699A10: x_tree3_list_table
- 0x80699A14: x_tree4_list_table
- 0x80699A60: x_tree0_dead_list_table
- 0x80699A64: tree4_light_list_table
- 0x80699A70: x_tree_shadow_v_fix
- 0x80699A74: x_tree4_part
- 0x80699A94: x_tree3_part
- 0x80699AB4: x_tree2_part
- 0x80699AD4: x_tree1_part
- 0x80699AF4: x_tree0_part
- 0x80699BD4: x_tree0_dead_part
- 0x80699BF4: tree4_light_part
- 0x80699EC4: cedar5_light_list
- 0x80699EF0: cedar5_light_list_table
- 0x80699FA0: cedar004_light_part
- 0x8069A188: x_stump_DL_table
- 0x8069A1C0: x_stump_list0
- 0x8069A1C8: x_stump_shadow_list0
- 0x8069A1D0: x_stump_list1
- 0x8069A1D8: x_stump_shadow_list1
- 0x8069A1E0: x_stump_list2
- 0x8069A1E8: x_stump_shadow_list2
- 0x8069A1F0: x_stump_list3
- 0x8069A1F8: x_stump_list_table0
- 0x8069A1FC: x_stump_list_table1
- 0x8069A200: x_stump_list_table2
- 0x8069A204: x_stump_list_table3
- 0x8069A208: x_stump_shadow_v_fix
- 0x8069A20C: x_stump_part1
- 0x8069A22C: x_stump_part2
- 0x8069A24C: x_stump_part3
- 0x8069A26C: x_stump_part4
- 0x8069A59C: x_fence_DL_table
- 0x8069A5AC: x_fence_list
- 0x8069A5B4: x_fence_list_table
- 0x8069A5B8: x_fence_shadow_list
- 0x8069A5C0: x_fence_shadow_v_fix
- 0x8069A5C4: x_fence_part
- 0x8069A5E4: x_notice_DL_table
- 0x8069A5F4: x_notice_list
- 0x8069A5FC: x_notice_list_table
- 0x8069A600: x_notice_shadow_list
- 0x8069A608: x_notice_shadow_v_fix
- 0x8069A60C: x_notice_part
- 0x8069A648: x_grass_part
- 0x8069A668: x_melody_DL_table
- 0x8069A678: x_melody_list
- 0x8069A680: x_melody_list_table
- 0x8069A684: x_melody_shadow_list
- 0x8069A68C: x_melody_shadow_v_fix
- 0x8069A690: x_melody_part
- 0x8069A6B0: x_fences_DL_table
- 0x8069A6C0: x_fences_list
- 0x8069A6C8: x_fences_list_table
- 0x8069A6CC: x_fences_shadow_list
- 0x8069A6D4: x_fences_shadow_v_fix
- 0x8069A6D8: x_fences_part
- 0x8069A880: x_mapboard_DL_table
- 0x8069A890: x_mapboard_list
- 0x8069A898: x_mapboard_list_table
- 0x8069A89C: x_mapboard_shadow_list
- 0x8069A8A4: x_mapboard_shadow_v_fix
- 0x8069A8A8: x_mapboard_part
- 0x8069A8C8: x_flower_DL_table
- 0x8069A8D0: x_flower_leaf_list
- 0x8069A8D8: x_flower_leaf_list_table
- 0x8069A8DC: x_flower_part
- 0x8069A914: x_flower_list00
- 0x8069A91C: x_flower_list01
- 0x8069A924: x_flower_list02
- 0x8069A92C: x_flower_list_table00
- 0x8069A930: x_flower_list_table01
- 0x8069A934: x_flower_list_table02
- 0x8069A938: x_flower_part00
- 0x8069A958: x_flower_part01
- 0x8069A978: x_flower_part02
- 0x8069BF08: eEC_effect_feature
- 0x8069BF88: Effect_Control_Profile
- 0x8069BFD0: Lamp_Light_Profile
- 0x8069C028: Room_Sunshine_Profile
- 0x8069C050: Room_Sunshine_Police_Profile
- 0x8069C078: Room_Sunshine_Posthouse_Profile
- 0x8069C0A0: Room_Sunshine_Museum_Profile
- 0x8069C0C8: Room_Sunshine_Minsect_Profile
- 0x8069C0F0: mMkRm_ftr_info # this one lives in m_huusui_room_ovl.c
- 0x8069CAD4: mHsRm_unit_max
- 0x8069CAE4: mHsRm_unit_value
- 0x8069CAF0: mMkRm_series_info
- 0x8069CBA4: mMkRm_series_name
- 0x8069CF64: mMkRm_birth_point_table
- 0x8069E3C4: mMkRm_wall_from
- 0x8069E408: mMkRm_floor_from
- 0x8069E44C: mMkRm_unit_max_table
- 0x8069E45C: mMkRm_letter_no_table
- 0x8069E580: tol_sponge_1_v
- 0x8069E620: tol_sponge_1_pal
- 0x8069E640: tol_sponge_1_main1_tex_txt
- 0x8069E6C0: Player_actor_OcInfoData_forStand
- 0x8069E6D0: Player_actor_pclobj_tris_base_forItem
- 0x8069E6F8: Player_actor_pclobj_tris_data_forItem
- 0x8069E74C: Player_actor_radio_exercise_command_key_data_type1
- 0x8069E750: Player_actor_radio_exercise_command_key_data_type2_1
- 0x8069E758: Player_actor_radio_exercise_command_key_data_type2_2
- 0x8069E760: Player_actor_radio_exercise_command_key_data_type3
- 0x8069E764: Player_actor_radio_exercise_command_key_data_type4_1_1
- 0x8069E768: Player_actor_radio_exercise_command_key_data_type4_1_2
- 0x8069E76C: Player_actor_radio_exercise_command_key_data_type4_2_1
- 0x8069E770: Player_actor_radio_exercise_command_key_data_type4_2_2
- 0x8069E774: Player_actor_radio_exercise_command_key_data_type5_1_1
- 0x8069E778: Player_actor_radio_exercise_command_key_data_type5_1_2
- 0x8069E77C: Player_actor_radio_exercise_command_key_data_type5_2_1
- 0x8069E780: Player_actor_radio_exercise_command_key_data_type5_2_2
- 0x8069E784: Player_actor_radio_exercise_command_key_data_type6_1_1
- 0x8069E788: Player_actor_radio_exercise_command_key_data_type6_1_2
- 0x8069E78C: Player_actor_radio_exercise_command_key_data_type6_2_1
- 0x8069E790: Player_actor_radio_exercise_command_key_data_type6_2_2
- 0x8069E794: Player_actor_radio_exercise_command_key_data_type7_1
- 0x8069E79C: Player_actor_radio_exercise_command_key_data_type7_2
- 0x8069E918: l_base_blocks
- 0x8069E960: l_cliff_startA_factor
- 0x8069E964: l_cliff_startA
- 0x8069E96C: l_cliff_startB_factor
- 0x8069E970: l_cliff_startB
- 0x8069E978: l_cliff_startC_factor
- 0x8069E97C: l_cliff_startC
- 0x8069E984: l_cliff_start_table
- 0x8069E994: l_cliff_next_direct
- 0x8069E99C: l_cliff1_next
- 0x8069E9A0: l_cliff1_next_class
- 0x8069E9A8: l_cliff2_next
- 0x8069E9AC: l_cliff2_next_class
- 0x8069E9B4: l_cliff3_next
- 0x8069E9B8: l_cliff3_next_class
- 0x8069E9C0: l_cliff4_next
- 0x8069E9C4: l_cliff4_next_class
- 0x8069E9CC: l_cliff5_next
- 0x8069E9D0: l_cliff5_next_class
- 0x8069E9D8: l_cliff6_next
- 0x8069E9DC: l_cliff6_next_class
- 0x8069E9E4: l_cliff7_next
- 0x8069E9E8: l_cliff7_next_class
- 0x8069E9F0: l_cliff_next_data
- 0x8069EA0C: l_river1_next
- 0x8069EA10: l_river1_next_class
- 0x8069EA18: l_river2_next
- 0x8069EA1C: l_river2_next_class
- 0x8069EA24: l_river3_next
- 0x8069EA28: l_river3_next_class
- 0x8069EA30: l_river4_next
- 0x8069EA34: l_river4_next_class
- 0x8069EA3C: l_river5_next
- 0x8069EA40: l_river5_next_class
- 0x8069EA48: l_river6_next
- 0x8069EA4C: l_river6_next_class
- 0x8069EA54: l_river7_next
- 0x8069EA58: l_river7_next_class
- 0x8069EA60: l_river_next_data
- 0x8069EA7C: l_mRF_step3_blocks3
- 0x8069EAC4: l_mRF_step3_blocks7
- 0x8069EB0C: l_mRF_step3_blocks7R
- 0x8069EB54: l_mRF_step3_blocks8
- 0x8069EB9C: l_mRF_step3_blocksB
- 0x8069EBE4: l_mRF_step3_blocksBR
- 0x8069EC2C: l_mRF_step3_blocksE
- 0x8069EC74: l_mRF_step3_blocksER
- 0x8069ECBC: l_mRF_step3_blocksF
- 0x8069ED04: l_mRF_step3_blocksFR
- 0x8069ED4C: l_mRF_step3_blockss
- 0x8069F070: Ev_Cherry_Manager_Profile
- 0x8069F098: House_Goki_Profile
- 0x8069F0F0: Ant_Profile
- 0x8069F130: Bee_Profile
- 0x8069F190: Fuusen_Profile
- 0x8069F320: str_a_table
- 0x8069F394: str_b_table
- 0x8069F3F8: str_c_table
- 0x8069F450: str_d_table
- 0x8069F4B4: str_e_table
- 0x8069F4EC: str_f_table
- 0x8069F53C: str_g_table
- 0x8069F570: str_h_table
- 0x8069F5B8: str_i_table
- 0x8069F5E0: str_j_table
- 0x8069F5F4: str_k_table
- 0x8069F608: str_l_table
- 0x8069F658: str_m_table
- 0x8069F6A4: str_n_table
- 0x8069F6D4: str_o_table
- 0x8069F708: str_p_table
- 0x8069F754: str_q_table
- 0x8069F75C: str_r_table
- 0x8069F7A0: str_s_table
- 0x8069F850: str_t_table
- 0x8069F8B8: str_u_table
- 0x8069F8D0: str_v_table
- 0x8069F8E4: str_w_table
- 0x8069F934: str_x_table
- 0x8069F938: str_y_table
- 0x8069F948: str_z_table
- 0x8069F94C: cmp_str_table_c
- 0x8069FA40: Dummy_Profile
- 0x8069FA68: l_non_area
- 0x8069FA94: hide_3_2
- 0x8069FA9C: hide_2_2
- 0x8069FAAC: hide_3_6
- 0x8069FABC: hide_4_6
- 0x8069FACC: hide_2_3
- 0x8069FADC: hide_5_7
- 0x8069FAEC: hide_6_8
- 0x8069FAFC: hide_7_7
- 0x8069FB0C: l_hide_area_table
- 0x8069FB64: l_magrw_change_tree
- 0x8069FB6C: l_magrw_bee_table
- 0x8069FB74: l_magrw_ftr_table
- 0x8069FB7C: l_magrw_smn_table
- 0x8069FC6C: check_fg #check_fg$2016
- 0x8069FD08: Aprilfool_Control_Profile
- 0x8069FD88: Groundhog_Control_Profile
- 0x8069FDD0: Mscore_Control_Profile
- 0x8069FE38: Countdown_Npc0_Profile
- 0x8069FE5C: aCD0_demo_flg
- 0x8069FEF8: Countdown_Npc1_Profile
- 0x8069FFF0: Ev_Angler_Profile
- 0x806A0030: init_proc
- 0x806A0058: process
- 0x806A0080: Ev_Artist_Profile
- 0x806A0128: Ev_Broker_Profile
- 0x806A01B0: Ev_Broker2_Profile
- 0x806A02B0: Ev_CarpetPeddler_Profile
- 0x806A03A0: Ev_Castaway_Profile
- 0x806A03F8: Ev_Designer_Profile
- 0x806A05C8: Ev_Dokutu_Profile
- 0x806A0608: Ev_Dozaemon_Profile
- 0x806A06A0: Ev_Ghost_Profile
- 0x806A06E0: list_haniwa
- 0x806A0938: Ev_Gypsy_Profile
- 0x806A09F8: Ev_KabuPeddler_Profile
- 0x806A0AD8: Ev_Miko_Profile
- 0x806A0B60: Ev_Pumpkin_Profile
- 0x806A0BE0: Ev_Santa_Profile
- 0x806A0D38: Ev_Soncho_Profile
- 0x806A0D88: Ev_Soncho2_Profile
- 0x806A0E78: Ev_Speech_Soncho_Profile
- 0x806A0F28: Ev_Yomise_Profile
- 0x806A0FB8: Go_Home_Npc_Profile
- 0x806A0FF8: Halloween_Npc_Profile
- 0x806A10B0: Hanabi_Npc0_Profile
- 0x806A1158: Hanabi_Npc1_Profile
- 0x806A1268: Hanami_Npc0_Profile
- 0x806A1328: Hanami_Npc1_Profile
- 0x806A13C8: Hatumode_Npc0_Profile
- 0x806A1480: Kamakura_Npc0_Profile
- 0x806A14C0: Normal_Npc_Profile
- 0x806A150C: Npc_Profile
- 0x806A2574: aNPC_walk_action
- 0x806A2580: aNPC_run_action
- 0x806A2AFC: aNPC_island_sche_proc
- 0x806A2C84: Npc2_Profile
- 0x806A3E90: aNPC_drt_table
- 0x806A3EA0: aNPC_back_drt_table
- 0x806A3EB4: aNPC_left_drt_table
- 0x806A3EC8: aNPC_right_drt_table
- 0x806A3EDC: aNPC_pl_chk_drt_table
- 0x806A3EEC: aNPC_add_numX
- 0x806A3F00: aNPC_add_numZ
- 0x806A42D0: Npc_Conv_Master_Profile
- 0x806A4FB0: Npc_Curator_Profile
- 0x806A5530: Npc_Depart_Master_Profile
- 0x806A61C8: Npc_Engineer_Profile
- 0x806A6208: Npc_Guide_Profile
- 0x806A6508: Npc_Guide2_Profile
- 0x806A67E0: Npc_Majin_Profile
- 0x806A6928: Npc_Majin2_Profile
- 0x806A6A90: Npc_Majin3_Profile
- 0x806A6BE8: Npc_Majin4_Profile
- 0x806A6D20: Npc_Majin5_Profile
- 0x806A6D60: Npc_Mamedanuki_Profile
- 0x806AA370: Npc_Mask_Cat_Profile
- 0x806AA3B0: Npc_Mask_Cat2_Profile
- 0x806AA610: Npc_Needlework_Profile
- 0x806AA650: aNNW_client_prg
- 0x806B5310: aNNW_client_ldr
- 0x806BE030: aNNW_message_table
- 0x806BE078: aNNW_story_first_table
- 0x806BE07C: aNNW_story_other_table
- 0x806BE080: aNNW_string_table
- 0x806BE1E0: target_pos_table_x
- 0x806BE1FC: target_pos_table_z
- 0x806BE218: near_area_table
- 0x806BE248: area_table
- 0x806BE334: meg_my_init_proc_table
- 0x806BE348: meg_my_proc_table
- 0x806BE3F0: Npc_P_Sel_Profile
- 0x806BE414: aNPS_sound_mode
- 0x806BE418: aNPS_voice_mode
- 0x806BE480: Npc_P_Sel2_Profile
- 0x806BE4A4: aNPS2_sound_mode
- 0x806BE4A8: aNPS2_voice_mode
- 0x806BE848: Npc_Police_Profile
- 0x806BE960: Npc_Police2_Profile
- 0x806BEA40: Npc_Post_Girl_Profile
- 0x806BEC08: Npc_Post_Man_Profile
- 0x806BECC4: aPMAN_move_pos
- 0x806BED18: aPMAN_mailbox_pos
- 0x806BEE20: Npc_Rcn_Guide_Profile
- 0x806BF028: Npc_Rcn_Guide2_Profile
- 0x806BF4F8: Npc_Restart_Profile
- 0x806BF51C: aNRST_sound_mode
- 0x806BF520: aNRST_voice_mode
- 0x806BF554: aNRST_proc_table
- 0x806BF648: Npc_Rtc_Profile
- 0x806BF66C: aNRTC_sound_mode
- 0x806BF670: aNRTC_voice_mode
- 0x806BF690: door_data
- 0x806BF6A4: aNRTC_proc_table
- 0x806BF788: Npc_Sendo_Profile
- 0x806BFA80: Npc_Shasho_Profile
- 0x806BFB78: Npc_Shop_Master_Profile
- 0x806C0788: Npc_Shop_Mastersp_Profile
- 0x806C0AA8: Npc_Sleep_Obaba_Profile
- 0x806C0B20: Npc_Soncho_Profile
- 0x806C0B90: Npc_Station_Master_Profile
- 0x806C0D18: Npc_Super_Master_Profile
- 0x806C1CD0: Npc_Totakeke_Profile
- 0x806C1DA0: Present_Npc_Profile
- 0x806C1EA0: aTS0_leader_no
- 0x806C1EA4: aTS0_intro_startRatio
- 0x806C1EB0: aTS0_taisou1_startRatio
- 0x806C1EC4: aTS0_taisou2_startRatio
- 0x806C1ED0: aTS0_taisou3_startRatio
- 0x806C1EE4: aTS0_taisou4_startRatio
- 0x806C1EF0: aTS0_taisou5_startRatio
- 0x806C1F04: aTS0_taisou6_startRatio
- 0x806C1F18: aTS0_taisou7_startRatio
- 0x806C1F2C: aTS0_taisou8_startRatio
- 0x806C1F40: aTS0_trailing_note_startRatio
- 0x806C1F48: aTS0_startRatio
- 0x806C1F70: aTS0_endRatio
- 0x806C1F98: aTS0_morphRatio
- 0x806C1FC0: aTS0_ratioLength
- 0x806C2010: Taisou_Npc0_Profile
- 0x806C20F8: Tamaire_Npc0_Profile
- 0x806C21B8: Tamaire_Npc1_Profile
- 0x806C22C8: Tokyoso_Npc0_Profile
- 0x806C23A8: Tokyoso_Npc1_Profile
- 0x806C24C8: Tukimi_Npc0_Profile
- 0x806C25A0: Tukimi_Npc1_Profile
- 0x806C26B0: Tunahiki_Npc0_Profile
- 0x806C2738: Tunahiki_Npc1_Profile
- 0x806C27E8: Turi_Npc0_Profile
- 0x806C28D0: Groundhog_Npc0_Profile
- 0x806C2980: Harvest_Npc0_Profile
- 0x806C2A58: Harvest_Npc1_Profile
- 0x806C2AE0: Npc_Hem_Profile
- 0x806C2B50: Ev_Majin_Profile
- 0x806C2BD0: Ev_Turkey_Profile
- 0x806C2C80: Insect_Profile
- 0x806C2CA4: aINS_abura_dl
- 0x806C2CB4: aINS_akiakane_dl
- 0x806C2CC4: aINS_danna_dl
- 0x806C2CD4: aINS_genji_dl
- 0x806C2CE4: aINS_ginyanma_dl
- 0x806C2CF4: aINS_higurashi_dl
- 0x806C2D04: aINS_hirata_dl
- 0x806C2D14: aINS_kabuto_dl
- 0x806C2D24: aINS_kamakiri_dl
- 0x806C2D34: aINS_kanabun_dl
- 0x806C2D44: aINS_kiageha_dl
- 0x806C2D54: aINS_kirigirisu_dl
- 0x806C2D64: aINS_koorogi_dl
- 0x806C2D74: aINS_kuma_dl
- 0x806C2D84: aINS_matumushi_dl
- 0x806C2D94: aINS_minmin_dl
- 0x806C2DA4: aINS_monki_dl
- 0x806C2DB4: aINS_monshiro_dl
- 0x806C2DC4: aINS_nanahoshi_dl
- 0x806C2DD4: aINS_ohmurasaki_dl
- 0x806C2DE4: aINS_oniyanma_dl
- 0x806C2DF4: aINS_shiokara_dl
- 0x806C2E04: aINS_suzumushi_dl
- 0x806C2E14: aINS_syouryou_dl
- 0x806C2E24: aINS_tamamushi_dl
- 0x806C2E34: aINS_gomadara_dl
- 0x806C2E44: aINS_tentou_dl
- 0x806C2E54: aINS_tonosama_dl
- 0x806C2E64: aINS_tukutuku_dl
- 0x806C2E74: aINS_nokogiri_dl
- 0x806C2E84: aINS_miyama_dl
- 0x806C2E94: aINS_okuwa_dl
- 0x806C2EA4: aINS_amenbo_dl
- 0x806C2EB4: aINS_ari_dl
- 0x806C2EC4: aINS_dango_dl
- 0x806C2ED4: aINS_ka_dl
- 0x806C2EE4: aINS_kera_dl
- 0x806C2EEC: aINS_kumo_dl
- 0x806C2EFC: aINS_maimai_dl
- 0x806C2F0C: aINS_mino_dl
- 0x806C2F24: aINS_hitodama_dl
- 0x806C2F34: aINS_displayList
- 0x806C2FD8: aINS_program_dlftbl
- 0x806C3010: aINS_program_type
- 0x806C30D8: catch_ME_data
- 0x806C37D8: Gyoei_Profile
- 0x806C3AB4: aGYO_program_dlftbl
- 0x806C3B84: aGYO_anime_ptn
- 0x806C3EC0: aGTT_speed
- 0x806C3EE0: aGTT_back_speed
- 0x806C3F00: aGTT_touch_count
- 0x806C3F10: aGTT_touch_distance
- 0x806C3F50: aGYO_search_area
- 0x806C3F78: aGYO_search_angle
- 0x806C3FA0: aGYO_bite_time
- 0x806C4210: aGKK_speed
- 0x806C4230: aGKK_back_speed
- 0x806C4250: aGKK_touch_count
- 0x806C4260: aGKK_touch_distance
- 0x806C4280: aGKK_shadow_scale
- 0x806C42A0: aGKK_search_area
- 0x806C42C8: aGKK_search_angle
- 0x806C42F0: aGKK_bite_time
- 0x806C4440: Boat_Profile
- 0x806C4464: aBT_chk_point
- 0x806C44C4: aBT_last_point_idx
- 0x806C44CC: aBT_init_angleY
- 0x806C4560: BrShop_Profile
- 0x806C4584: aBRS_shadow_vtx_fix_flg_table
- 0x806C458C: aBRS_shadow_data
- 0x806C45A8: aBRS_br_shop_door_data
- 0x806C4688: Bridge_A_Profile
- 0x806C4730: Buggy_Profile
- 0x806C4754: aBGY_shadow_vtx_fix_flg_table
- 0x806C4764: aBGY_shadow_data
- 0x806C4780: aBGY_buggy_door_data
- 0x806C4858: Conveni_Profile
- 0x806C487C: aCNV_shadow_vtx_fix_flg_table
- 0x806C4888: aCNV_shadow_data
- 0x806C48A4: aCNV_conveni_door_data
- 0x806C4A38: Count02_Profile
- 0x806C4AA8: Count_Profile
- 0x806C4ACC: aCOU_shadow_vtx_fix_flg_table
- 0x806C4AD0: aCOU_shadow_data
- 0x806C4BA8: Depart_Profile
- 0x806C4BCC: aDPT_shadow_vtx_fix_flg_table
- 0x806C4BD8: aDPT_shadow_data
- 0x806C4BF4: aDPT_depart_door_data
- 0x806C4DF0: Douzou_Profile
- 0x806C4E14: eye_tbl
- 0x806C4E94: mouth_tbl
- 0x806C4F14: zpostbl
- 0x806C4F24: xpostbl
- 0x806C4F34: aDOU_shadow_vtx_fix_flg_table
- 0x806C4F3C: aDOU_shadow_data
- 0x806C5018: Dump_Profile
- 0x806C503C: aDUM_shadow_vtx_fix_flg_table
- 0x806C506C: aDUM_shadow_data
- 0x806C5120: FallS_Profile
- 0x806C5148: FallSESW_Profile
- 0x806C51B0: aGhog_shadow_vtx_fix_flg_table
- 0x806C51BC: aGhog_shadow_data
- 0x806C51D0: Ghog_Profile
- 0x806C5200: Goza_Profile
- 0x806C5224: aGOZ_shadow_vtx_fix_flg_tableA
- 0x806C5240: aGOZ_shadow_vtx_fix_flg_tableB
- 0x806C525C: aGOZ_shadow_dataA
- 0x806C5270: aGOZ_shadow_dataB
- 0x806C5284: aGOZ_shadow_data_table
- 0x806C5340: House_Profile
- 0x806C5364: aHUS_shadow_vtx_fix_flg_table0
- 0x806C5378: aHUS_shadow_vtx_fix_flg_table1
- 0x806C5394: aHUS_shadow_vtx_fix_flg_table2
- 0x806C53AC: aHUS_shadow_data0
- 0x806C53C0: aHUS_shadow_data1
- 0x806C53D4: aHUS_shadow_data2
- 0x806C53E8: aHUS_shadow_data3
- 0x806C53FC: aHUS_shadow_data4
- 0x806C5410: aHUS_house_model_normal
- 0x806C5424: aHUS_house_model_winter
- 0x806C5438: aHUS_house_model
- 0x806C5440: aHUS_shadow_data
- 0x806C547C: aHUS_npc_house_door_data
- 0x806C5620: aHTBL_shadow_vtx_fix_flg_tableA
- 0x806C563C: aHTBL_shadow_vtx_fix_flg_tableB
- 0x806C5658: aHTBL_shadow_vtx_fix_flg_tableC
- 0x806C5674: aHTBL_shadow_dataA
- 0x806C5688: aHTBL_shadow_dataB
- 0x806C569C: aHTBL_shadow_dataC
- 0x806C56B0: aHTBL_shadow_data_table
- 0x806C56BC: Htable_Profile
- 0x806C5738: aHTBL_displaylist_table_opa
- 0x806C5744: aHTBL_displaylist_table_xlu
- 0x806C5750: Kago_Profile
- 0x806C5774: aKAG_shadow_vtx_fix_flg_table
- 0x806C5784: aKAG_shadow_data
- 0x806C57A8: Kamakura_Profile
- 0x806C57CC: aKKR_shadow_vtx_fix_flg_table
- 0x806C57E0: aKKR_shadow_data
- 0x806C57F4: aKKR_kamakura_enter_data
- 0x806C58A0: Koinobori_Profile
- 0x806C58C4: aKOI_shadow_vtx_fix_flg_table
- 0x806C58CC: aKOI_shadow_data
- 0x806C5900: aKOI_obj_e_koinobori_a_pal
- 0x806C5920: obj_e_koinobori_b_pal
- 0x806C5940: Lotus_Profile
- 0x806C5964: lotus_StatusData
- 0x806C5970: lotus_CoInfoData
- 0x806C59E0: aLOT_obj_01_lotus_pal
- 0x806C5A00: obj_02_lotus_pal
- 0x806C5A20: obj_03_lotus_pal
- 0x806C5A40: obj_04_lotus_pal
- 0x806C5A60: obj_05_lotus_pal
- 0x806C5A80: obj_06_lotus_pal
- 0x806C5AA0: obj_07_lotus_pal
- 0x806C5AC0: obj_08_lotus_pal
- 0x806C5AE0: obj_09_lotus_pal
- 0x806C5B58: Mikanbox_Profile
- 0x806C5B7C: page_table
- 0x806C5B90: index_line_table
- 0x806C5C10: Mikuji_Profile
- 0x806C5C34: aMIK_shadow_vtx_fix_flg_table
- 0x806C5C3C: aMIK_shadow_data
- 0x806C5CA0: Museum_Profile
- 0x806C5CC4: aMsm_shadow_vtx_fix_flg_table
- 0x806C5CCC: aMsm_shadow_data
- 0x806C5CE0: aMsm_museum_enter_data
- 0x806C5D8C: aMsm_summer_disp_table
- 0x806C5DA0: aMsm_winter_disp_table
- 0x806C5DC0: MyHouse_Profile
- 0x806C5DE4: aMHS_lv1_shadowE_vtx_fix_flg_table
- 0x806C5DF8: aMHS_lv1_shadowW_vtx_fix_flg_table
- 0x806C5E0C: aMHS_lv1_shadowE_data
- 0x806C5E20: aMHS_lv1_shadowW_data
- 0x806C5E34: aMHS_lv1_shadow_data
- 0x806C5E3C: aMHS_lv2_shadowE_data
- 0x806C5E50: aMHS_lv2_shadowW_data
- 0x806C5E64: aMHS_lv2_shadow_data
- 0x806C5E6C: aMHS_lv3_shadowE_data
- 0x806C5E80: aMHS_lv3_shadowW_data
- 0x806C5E94: aMHS_lv3_shadow_data
- 0x806C5E9C: aMHS_lv4_shadowE_data
- 0x806C5EB0: aMHS_lv4_shadowW_data
- 0x806C5EC4: aMHS_lv4_shadow_data
- 0x806C5ECC: aMHS_posX_table
- 0x806C5FAC: aMHS_player_chk_f
- 0x806C5FB4: aMHS_player_chk_angl0
- 0x806C5FB8: aMHS_player_chk_angl1
- 0x806C6110: Nameplate_Profile
- 0x806C6138: Needlework_Shop_Profile
- 0x806C615C: aNW_shadow_vtx_fix_flg_table
- 0x806C6164: aNW_shadow_data
- 0x806C6180: aNW_needlework_shop_door_data
- 0x806C62D0: Police_Box_Profile
- 0x806C62F4: aPBOX_shadow_vtx_fix_flg_table0
- 0x806C6308: aPBOX_shadow_data
- 0x806C631C: aPBOX_police_box_enter_data
- 0x806C63C0: Post_Office_Profile
- 0x806C63E4: aPOFF_shadow_vtx_fix_flg_table
- 0x806C63F4: aPOFF_shadow_data
- 0x806C6410: aPOFF_post_office_door_data
- 0x806C6558: Radio_Profile
- 0x806C657C: aRAD_shadow_vtx_fix_flg_table
- 0x806C6584: aRAD_shadow_data
- 0x806C65A0: Reserve_Profile
- 0x806C65C4: aRSV_shadow_vtx_fix_flg_table
- 0x806C65C8: aRSV_shadow_data
- 0x806C65DC: aRSV_kappa_shadow_data
- 0x806C6608: S_Car_Profile
- 0x806C662C: aSCR_shadow_vtx_fix_flg_table0
- 0x806C6644: aSCR_shadow_data
- 0x806C66D0: Shop_Profile
- 0x806C66F4: aSHOP_shadow_vtx_fix_flg_table
- 0x806C66FC: aSHOP_shadow_data
- 0x806C6718: aSHOP_shop_door_data
- 0x806C6838: Shrine_Profile
- 0x806C685C: aSHR_shadow_vtx_fix_flg_table
- 0x806C686C: aSHR_shadow_data
- 0x806C6920: leaf_texture_table
- 0x806C6930: Station_Profile
- 0x806C6954: aSTA_shadow_vtx_fix_flg_table0
- 0x806C6974: aSTA_shadow_vtx_fix_flg_table1
- 0x806C69B4: aSTA_shadow_vtx_fix_flg_table2
- 0x806C69F4: aSTA_shadow_low_data0
- 0x806C6A08: aSTA_shadow_hi_data0
- 0x806C6A1C: aSTA_shadow_low_data1
- 0x806C6A30: aSTA_shadow_hi_data1
- 0x806C6A44: aSTA_shadow_low_data2
- 0x806C6A58: aSTA_shadow_hi_data2
- 0x806C6C00: Structure_Profile
- 0x806C6ED0: Super_Profile
- 0x806C6EF4: aSPR_shadow_vtx_fix_flg_table
- 0x806C6EFC: aSPR_shadow_data
- 0x806C6F18: aSPR_super_door_data
- 0x806C7110: Tama_Profile
- 0x806C7140: Tent_Profile
- 0x806C7164: aTnt_shadow_vtx_fix_flg_table
- 0x806C7180: aTnt_shadow_data
- 0x806C7194: aTnt_tent_enter_data
- 0x806C7200: Toudai_Profile
- 0x806C7224: aTOU_shadow_vtx_fix_flg_table
- 0x806C7230: aTOU_shadow_data
- 0x806C724C: aTOU_door_data
- 0x806C72D0: Train0_Profile
- 0x806C7300: Train1_Profile
- 0x806C7388: Tukimi_Profile
- 0x806C73AC: aTUK_shadow_vtx_fix_flg_table
- 0x806C73B4: aTUK_shadow_data_l
- 0x806C73C8: aTUK_shadow_data_r
- 0x806C7400: Turi_Profile
- 0x806C7424: aTUR_shadow_vtx_fix_flg_table
- 0x806C742C: aTUR_shadow_data_l
- 0x806C7440: aTUR_shadow_data_r
- 0x806C75D0: Windmill_Profile
- 0x806C75F4: aWIN_shadow_vtx_fix_flg_table
- 0x806C76B8: Yatai_Profile
- 0x806C76DC: aYAT_shadow_vtx_fix_flg_table
- 0x806C76E4: aYAT_shadow_data_l
- 0x806C76F8: aYAT_shadow_data_r
- 0x806C77E0: lat_atena_v
- 0x806C7AE0: l_shop_name_str
- 0x806C7AE8: mAD_title_str
- 0x806C7AFC: mAD_title_str2
- 0x806C7B90: aNSM_sack_amount
- 0x806C7BA0: aNSM_itemNo
- 0x806C890C: back_pal_table
- 0x806C893C: back_tex_table
- 0x806C896C: month_tex_table
- 0x806C899C: event_tex_table
- 0x806C89A4: box_prim_table
- 0x806C89B4: box_env_table
- 0x806C89C4: number_prim_table
- 0x806C89D4: number2_prim_table
- 0x806C89E4: suuji_tex_table
- 0x806C8A60: cal_hyoji_txt_table
- 0x806C8A68: cal_win_nen_table
- 0x806C8A78: cal_win_nen_txt_table
- 0x806C8AA0: icon_mark_prim_table
- 0x806CA678: mCL_furniture_list
- 0x806CAFDC: mCL_wall_idx_list
- 0x806CB064: mCL_carpet_idx_list
- 0x806CB0EC: mCL_cloth_idx_list
- 0x806CB2DC: mCL_umbrella_idx_list
- 0x806CB35C: mCL_paper_idx_list
- 0x806CB3DC: mCL_haniwa_idx_list
- 0x806CB4DC: mCL_fossil_idx_list
- 0x806CB510: mCL_music_idx_list
- 0x806CB580: mCL_item_idx_data
- 0x806CB5C8: mCL_win_data
- 0x806CB658: not_sell
- 0x806CB850: mCM_disp_data
- 0x806CB908: env_table
- 0x806CBA18: mCW_mes0
- 0x806CBA2C: mCW_mes1
- 0x806CBA48: mCW_yes_mes
- 0x806CBA4C: mCW_no_mes
- 0x806CBB10: mDE_SinCosTBL
- 0x806CBD90: mDE_pen_2
- 0x806CBD94: mDE_pen_3
- 0x806CBDA0: mDE_heart
- 0x806CBE30: mDE_star
- 0x806CBEC0: mDE_circle
- 0x806CBF50: mDE_square
- 0x806CBFE0: mDE_kao1
- 0x806CC070: mDE_kao2
- 0x806CC100: mDE_kao3
- 0x806CC190: mDE_kao4
- 0x806CC220: mDE_kao5
- 0x806CC2B0: mDE_paint_mizutama
- 0x806CC3B0: mDE_paint_mask_cat_mask
- 0x806CC8B8: win_data
- 0x806CC96C: mEE_str_table
- 0x806CC978: mEE_str_data0
- 0x806CC97C: mEE_str_data1
- 0x806CC984: mEE_str_data2
- 0x806CC9D8: mED_ornament_table
- 0x806CD0A0: mHD_animeTable
- 0x806CD148: mHD_animeSpdTable
- 0x806CD164: mHD_hand_offsetX_table
- 0x806CD180: mHD_hand_offsetY_table
- 0x806CD3C8: mIV_fish_collect_list
- 0x806CD3F0: mIV_insect_collect_list
- 0x806CD7B8: mLE_player_title
- 0x806CD7C8: mLE_country_title
- 0x806CD7DC: mLE_ephrase_title
- 0x806CD7EC: mLE_reset_title
- 0x806CD7F4: mLE_request_title
- 0x806CD804: mLE_myoriginal_title
- 0x806CD814: mLE_island_title
- 0x806CD828: mLE_win_data
- 0x806CD9C0: l_map_texture
- 0x806CDB70: l_map_pal
- 0x806CDBDC: pluss_bridge
- 0x806CDC60: kan_tizu1_pal
- 0x806CDC80: kan_tizu2_pal
- 0x806CDCA0: l_kan_tizu_pal
- 0x806CDCA8: kan_win_evw_anime_1_tex_table
- 0x806CDCBC: kan_win_evw_anime_2_tex_table
- 0x806CDCD4: kan_win_npcT_table
- 0x806CDCE0: kan_win_npc2T_table
- 0x806CDCEC: mMP_label_word_npc
- 0x806CDCFC: mMP_label_npc
- 0x806CDD10: mMP_label_word_player
- 0x806CDD20: mMP_label_player
- 0x806CDD34: mMP_label_str_shop
- 0x806CDD38: mMP_label_word_shop
- 0x806CDD48: mMP_label_shop
- 0x806CDD5C: mMP_label_str_police
- 0x806CDD64: mMP_label_word_police
- 0x806CDD74: mMP_label_str_police2
- 0x806CDD7C: mMP_label_word_police2
- 0x806CDD8C: mMP_label_police
- 0x806CDDA0: mMP_label_str_post
- 0x806CDDA4: mMP_label_word_post
- 0x806CDDB4: mMP_label_str_post2
- 0x806CDDBC: mMP_label_word_post2
- 0x806CDDCC: mMP_label_post
- 0x806CDDE0: mMP_label_str_shrine
- 0x806CDDE8: mMP_label_word_shrine
- 0x806CDDF8: mMP_label_str_shrine2
- 0x806CDDFC: mMP_label_word_shrine2
- 0x806CDE0C: mMP_label_shrine
- 0x806CDE20: mMP_label_str_station
- 0x806CDE28: mMP_label_word_station
- 0x806CDE38: mMP_label_str_station2
- 0x806CDE40: mMP_label_word_station2
- 0x806CDE50: mMP_label_station
- 0x806CDE64: mMP_label_str_junk
- 0x806CDE68: mMP_label_word_junk
- 0x806CDE78: mMP_label_junk
- 0x806CDE8C: mMP_label_str_museum
- 0x806CDE94: mMP_label_word_museum
- 0x806CDEA4: mMP_label_museum
- 0x806CDEB8: mMP_label_str_needle
- 0x806CDEC0: mMP_label_word_needle
- 0x806CDED0: mMP_label_needle
- 0x806CDEE4: mMP_label_str_port
- 0x806CDEE8: mMP_label_word_port
- 0x806CDEF8: mMP_label_port
- 0x806CDF0C: mMP_label_data
- 0x806CE008: note_frame
- 0x806CE058: note_moji
- 0x806CE298: mMS_str_title
- 0x806CE2A8: mMS_str_ok
- 0x806CE2AC: mMS_str_cancel
- 0x806CE3C8: kei_win_st_tex_tbl
- 0x806CE4E0: mRP_money_name
- 0x806CE4E8: mRP_money_amount
- 0x806CF2A4: mSM_program_dlftbl
- 0x806CF684: tag_program_dlftbl
- 0x806CF6A4: hand_program_dlftbl
- 0x806CF6C4: haniwa_program_dlftbl
- 0x806CF928: mTG_item_col_pos
- 0x806CF934: mTG_mail_col_pos
- 0x806CF938: mTG_money_col_pos
- 0x806CF93C: mTG_player_col_pos
- 0x806CF940: mTG_bg_col_pos
- 0x806CF944: mTG_mbox_col_pos
- 0x806CF948: mTG_haniwa_col_pos
- 0x806CF950: mTG_collect_col_pos
- 0x806CF960: mTG_wchange_col_pos
- 0x806CF964: mTG_cpmail_col_pos
- 0x806CF96C: mTG_cpmail_wc_col_pos
- 0x806CF970: mTG_cpmail_ti_col_pos
- 0x806CF974: mTG_cpedit_col_pos
- 0x806CF978: mTG_cpedit_end_col_pos
- 0x806CF97C: mTG_catalog_col_pos
- 0x806CF980: mTG_catalog_wc_col_pos
- 0x806CF984: mTG_music_main_col_pos
- 0x806CF99C: mTG_needlework_col_pos
- 0x806CF9A0: mTG_cporiginal_col_pos
- 0x806CF9A8: mTG_inventory_wc_org_col_pos
- 0x806CF9AC: mTG_cporiginal_nw_col_pos
- 0x806CF9B0: mTG_cporiginal_wc_col_pos
- 0x806CF9B4: mTG_cporiginal_ti_col_pos
- 0x806CF9B8: mTG_gba_col_pos
- 0x806CF9C0: mTG_gba_nw_col_pos
- 0x806CF9C4: mTG_card_col_pos
- 0x806CF9C8: mTG_item_line_pos
- 0x806CF9D0: mTG_mail_line_pos
- 0x806CF9DC: mTG_money_line_pos
- 0x806CF9E0: mTG_player_line_pos
- 0x806CF9E4: mTG_bg_line_pos
- 0x806CF9E8: mTG_mbox_line_pos
- 0x806CF9F4: mTG_haniwa_line_pos
- 0x806CF9F8: mTG_collect_line_pos
- 0x806CFA04: mTG_wchange_line_pos
- 0x806CFA0C: mTG_cpmail_wc_line_pos
- 0x806CFA1C: mTG_cpmail_ti_line_pos
- 0x806CFA20: mTG_cpedit_line_pos
- 0x806CFA28: mTG_cpedit_end_line_pos
- 0x806CFA2C: mTG_catalog_line_pos
- 0x806CFA3C: mTG_catalog_wc_line_pos
- 0x806CFA50: mTG_music_main_line_pos
- 0x806CFA5C: mTG_needlework_line_pos
- 0x806CFA64: mTG_cporiginal_line_pos
- 0x806CFA6C: mTG_inventory_wc_org_line_pos
- 0x806CFA70: mTG_cporiginal_nw_line_pos
- 0x806CFA78: mTG_cporiginal_wc_line_pos
- 0x806CFA88: mTG_cporiginal_ti_line_pos
- 0x806CFA8C: mTG_gba_line_pos
- 0x806CFA90: mTG_gba_nw_line_pos
- 0x806CFA98: mTG_card_line_pos
- 0x806CFA9C: mTG_table_data
- 0x806CFBE0: str_omikuji
- 0x806CFBE8: str_happy_room
- 0x806CFBF0: postoffice_str
- 0x806CFC00: mother_str
- 0x806CFC04: str_otodokemono
- 0x806CFC10: str_otegami
- 0x806CFC1C: str_title0
- 0x806CFC24: str_title1
- 0x806CFC2C: str_title2
- 0x806CFC34: str_title3
- 0x806CFC3C: str_title4
- 0x806CFC44: mTG_tag_word_akeru
- 0x806CFC58: mTG_tag_word_ageru
- 0x806CFC6C: mTG_tag_word_itadaku
- 0x806CFC80: mTG_tag_word_dump_item
- 0x806CFC94: mTG_tag_word_field_sign
- 0x806CFCA8: mTG_tag_word_dump_mail
- 0x806CFCBC: mTG_tag_word_sell
- 0x806CFCD0: mTG_tag_word_sell_all
- 0x806CFCE4: mTG_tag_word_okuru
- 0x806CFCF8: mTG_tag_word_kakinaosu
- 0x806CFD0C: mTG_tag_word_kabeniharu
- 0x806CFD20: mTG_tag_word_korewoireru
- 0x806CFD34: mTG_tag_word_zimenniueru
- 0x806CFD48: mTG_tag_word_zimennioku
- 0x806CFD5C: mTG_tag_word_suteru
- 0x806CFD70: mTG_tag_word_tada
- 0x806CFD84: mTG_tag_word_tukamu
- 0x806CFD98: mTG_tag_word_tegamiwokaku
- 0x806CFDAC: mTG_tag_word_nedanwotukeru
- 0x806CFDC0: mTG_tag_word_present
- 0x806CFDD4: mTG_tag_word_miserudake
- 0x806CFDE8: mTG_tag_word_yameru
- 0x806CFDFC: mTG_tag_word_heyanioku
- 0x806CFE10: mTG_tag_word_yukanisiku
- 0x806CFE24: mTG_tag_word_yomu
- 0x806CFE38: mTG_tag_word_watasu
- 0x806CFE4C: mTG_tag_word_100
- 0x806CFE60: mTG_tag_word_1000
- 0x806CFE74: mTG_tag_word_10000
- 0x806CFE88: mTG_tag_word_30000
- 0x806CFE9C: mTG_tag_word_okane
- 0x806CFEB0: mTG_tag_word_beru
- 0x806CFEC4: mTG_tag_word_osameru
- 0x806CFED8: mTG_tag_word_zenbutukamu
- 0x806CFEEC: mTG_tag_word_1maitukamu
- 0x806CFF00: mTG_tag_word_1tamatukamu
- 0x806CFF14: mTG_tag_word_order
- 0x806CFF28: mTG_tag_word_zimenniumeru
- 0x806CFF3C: mTG_tag_word_nigasu
- 0x806CFF50: mTG_tag_word_fly
- 0x806CFF64: mTG_tag_word_akeru2
- 0x806CFF78: mTG_tag_word_kesu
- 0x806CFF8C: mTG_tag_word_hai
- 0x806CFFA0: mTG_tag_word_iie
- 0x806CFFB4: mTG_tag_word_dump_mail_mark_conf
- 0x806CFFC8: mTG_tag_word_dump_mail_mark_exe
- 0x806CFFDC: mTG_tag_word_mailbox_change_mail
- 0x806CFFF0: mTG_tag_word_cpmail_change_mail
- 0x806D0004: mTG_tag_word_music_listen
- 0x806D0018: mTG_tag_word_music_takeout
- 0x806D002C: mTG_tag_word_music_takeout_all
- 0x806D0040: mTG_tag_word_hand_over_curator
- 0x806D0054: mTG_tag_word_nw_select_this
- 0x806D0068: mTG_tag_word_nw_select_put
- 0x806D007C: mTG_tag_word_nw_select_change
- 0x806D0090: mTG_tag_word_nw_st_wear
- 0x806D00A4: mTG_tag_word_nw_st_umbrella
- 0x806D00B8: mTG_tag_word_nw_cover
- 0x806D00CC: mTG_tag_word_nw_carpet
- 0x806D00E0: mTG_tag_word_nw_catch
- 0x806D00F4: mTG_tag_word_nw_mr_sel_stick
- 0x806D0108: mTG_tag_word_nw_or_sel_stick
- 0x806D011C: mTG_tag_word_nw_sel_put
- 0x806D0130: mTG_tag_word_nw_put_umbrella
- 0x806D0144: mTG_tag_word_nw_put_wear
- 0x806D0158: mTG_tag_word_nw_stk_pat_nrml
- 0x806D016C: mTG_tag_word_nw_stk_pat_turn
- 0x806D0180: mTG_tag_word_remove
- 0x806D0194: mTG_tag_word_put_all
- 0x806D01A8: mTG_tag_word_put_chk
- 0x806D01BC: mTG_tag_word_never_mind
- 0x806D01D0: mTG_tag_word_change_original
- 0x806D01E4: mTG_tag_word_password_item
- 0x806D01F8: mTG_tag_str_suteruno
- 0x806D0208: mTG_tag_str_hontoni
- 0x806D0210: mTG_tag_str_iidesuka
- 0x806D0218: mTG_tag_str_put_chk1
- 0x806D0224: mTG_tag_str_put_chk2
- 0x806D0230: mTG_catalog_str
- 0x806D028C: mTG_field_default
- 0x806D0298: mTG_field_default_bury
- 0x806D02A8: mTG_field_letter
- 0x806D02B8: mTG_field_letter_bury
- 0x806D02CC: mTG_field_sign
- 0x806D02DC: mTG_field_balloon
- 0x806D02E8: mTG_field_hukubukuro
- 0x806D02F8: mTG_field_hukubukuro_bury
- 0x806D030C: mTG_field_release
- 0x806D0318: mTG_catch_item
- 0x806D0320: mTG_field_plant
- 0x806D0330: mTG_field_plant_job
- 0x806D033C: mTG_present_item
- 0x806D0348: mTG_room_default
- 0x806D0354: mTG_room_wall
- 0x806D0364: mTG_room_carpet
- 0x806D0374: mTG_room_letter
- 0x806D0384: mTG_room_hukubukuro
- 0x806D0394: mTG_other_letter
- 0x806D03A0: mTG_other_hukubukuro
- 0x806D03AC: mTG_def_rmail
- 0x806D03BC: mTG_room_rmail
- 0x806D03C8: mTG_def_rmail_pre
- 0x806D03D8: mTG_def_smail
- 0x806D03E8: mTG_room_smail
- 0x806D03F4: mTG_def_smail_pre
- 0x806D0404: mTG_dump_mail
- 0x806D040C: mTG_dump_item
- 0x806D0414: mTG_money_sack1
- 0x806D041C: mTG_money_sack2
- 0x806D0428: mTG_money_sack3
- 0x806D0438: mTG_money_sack4
- 0x806D044C: mTG_quest_item
- 0x806D0454: mTG_sell_item
- 0x806D045C: mTG_give_item
- 0x806D0464: mTG_send_mail
- 0x806D046C: mTG_field_ticket
- 0x806D047C: mTG_field_ticket_bury
- 0x806D0490: mTG_room_ticket
- 0x806D04A0: mTG_catch_ticket
- 0x806D04AC: mTG_putin_item
- 0x806D04B4: mTG_shrine_item
- 0x806D04BC: mTG_haniwa_item
- 0x806D04D0: mTG_haniwa_put_item
- 0x806D04DC: mTG_haniwa_get_item
- 0x806D04E4: mTG_haniwa_price
- 0x806D04EC: mTG_order_item
- 0x806D04F4: mTG_cp_delete
- 0x806D04FC: mTG_cp_delete2
- 0x806D0504: mTG_field_mail_mark
- 0x806D050C: mTG_dump_mail_mark_conf
- 0x806D0514: mTG_field_mail_mark2
- 0x806D0520: mTG_cpack_mail_mark
- 0x806D052C: mTG_sell_all_item
- 0x806D0534: mTG_music_select
- 0x806D0540: mTG_music_select_many
- 0x806D0548: mTG_field_wisp
- 0x806D0558: mTG_catch_wisp
- 0x806D0564: mTG_tag_hand_over_curator
- 0x806D056C: mTG_tag_nw_select
- 0x806D0574: mTG_tag_nw_my_room
- 0x806D0584: mTG_tag_nw_ot_room
- 0x806D0590: mTG_tag_nw_ug_room
- 0x806D05A0: mTG_tag_nw_mr_sel_stick
- 0x806D05B4: mTG_tag_nw_sel_put
- 0x806D05C0: mTG_tag_nw_or_sel_stick
- 0x806D05CC: mTG_tag_nw_sel_stk_pattern
- 0x806D05D8: mTG_tag_remove
- 0x806D05E0: mTG_tag_put_all
- 0x806D05E8: mTG_tag_put_chk
- 0x806D05F0: mTG_field_letters
- 0x806D0604: mTG_field_letters_bury
- 0x806D061C: mTG_room_letters
- 0x806D0630: mTG_other_letters
- 0x806D0640: mTG_change_original
- 0x806D0648: mTG_taisou_card
- 0x806D0654: mTG_tag_nw_select_change
- 0x806D065C: mTG_tag_nw_select_put
- 0x806D0664: mTG_tag_password_item
- 0x806D066C: mTG_label_table
- 0x806D09C4: str_color
- 0x806D1114: mTG_select_col_type_on
- 0x806D1124: mTG_select_col_type_off
- 0x806D1320: mTI_col_type0
- 0x806D132C: mTI_col_type1
- 0x806D13E8: wr_You_cant_hold
- 0x806D13F8: wr_any_more_letters_Want_to
- 0x806D1414: wr_throw_away_some_old_ones
- 0x806D1430: wr_Yes
- 0x806D1434: wr_No
- 0x806D1438: wr_You_cant_pull_out_a_present
- 0x806D1454: wr_when_your_item_screen_is_full
- 0x806D1474: wr_You_cant_carry
- 0x806D1484: wr_more_than_99999_Bells
- 0x806D149C: wr_You_cant_mail
- 0x806D14AC: wr_turnips_or_living_things
- 0x806D14C8: wr_someone_elses_belongings
- 0x806D14E4: wr_a_wrapped_present
- 0x806D14F8: wr_any_more_letters
- 0x806D150C: wr_so_you_cant_write_a_new_one
- 0x806D152C: wr_Your_item_screen_is_full
- 0x806D1548: wr_so_you_cant_use_a_pattern
- 0x806D1564: wr_an_exercise_card
- 0x806D1578: wr_You_cant_put
- 0x806D1588: wr_any_more_items_out
- 0x806D159C: wr_any_more_items_there
- 0x806D15B4: wr_This_diary_is_locked
- 0x806D15CC: wr_You_cant_pull_anything_out
- 0x806D15E8: wr_Theres_already_music_in_there
- 0x806D1608: wr_You_cant_drop
- 0x806D1618: wr_any_more_items_here
- 0x806D162C: wr_You_cant_plant
- 0x806D163C: wr_anything_else_here
- 0x806D1650: wr_You_cant_open_a_bag
- 0x806D1664: wr_unless_you_have_room
- 0x806D1678: wr_for_three_more_items
- 0x806D1690: wr_You_cant_plant_anything_here
- 0x806D16B0: wr_You_cant_put_a_sign_up_here
- 0x806D16D0: wr_You_can_put_signs_up_only
- 0x806D16EC: wr_in_your_own_village
- 0x806D1700: wr_You_cant_put_signs_on_the_island
- 0x806D1724: wr_You_cant_leave
- 0x806D1734: wr_this_NES_on_the_island
- 0x806D174C: wr_You_dont_have_room
- 0x806D1760: wr_to_write_any_more
- 0x806D1774: wr_You_entered_letters
- 0x806D1788: wr_that_have_nothing_to_do
- 0x806D17A0: wr_with_secret_codes
- 0x806D17B4: wr_this_item
- 0x806D17C0: wr_mailbox_line
- 0x806D1810: wr_pr_leave_line
- 0x806D1830: wr_money_line
- 0x806D1850: wr_pr_food_line
- 0x806D1870: wr_pr_quest_line
- 0x806D1890: wr_present_mail_line
- 0x806D18B0: wr_write_line
- 0x806D18E0: wr_original_line
- 0x806D1900: wr_pr_card_line
- 0x806D1920: wr_put_max_furniture_line
- 0x806D1940: wr_put_furniture_line
- 0x806D1960: wr_lock_diary_line
- 0x806D1970: wr_music_line
- 0x806D1990: wr_music2_line
- 0x806D19A0: wr_hukubukuro_open_line
- 0x806D19D0: wr_put_plant_line
- 0x806D19E0: wr_put_sign_line
- 0x806D19F0: wr_put_sign_other_line
- 0x806D1A10: wr_put_sign_island_line
- 0x806D1A20: wr_put_fami_line
- 0x806D1A40: wr_word_over_line
- 0x806D1A60: wr_put_item_line
- 0x806D1A80: wr_pw_chk_line
- 0x806D1AB0: wr_pr_fork_line
- 0x806D1AD0: wr_win_data
- 0x806D1D64: Weather_Profile
- 0x806D1DA0: iam_weather_fine
- 0x806D1DB8: aWeather_rain_picha_disp
- 0x806D1DC8: iam_weather_rain
- 0x806D1DF8: iam_weather_snow
- 0x806D1E10: iam_weather_sakura
- 0x806D1E28: ef_otiba_model_tbl
- 0x806D1E34: iam_weather_leaf
- 0x806D1E48: iam_ef_ami_mizu
- 0x806D1E60: ef_anahikari_model_tbl
- 0x806D1E68: ef_anahikari_anime_tbl
- 0x806D1E70: iam_ef_anahikari
- 0x806D1E88: iam_ef_ase
- 0x806D1EA0: eAS2_model_table
- 0x806D1EB0: iam_ef_ase2
- 0x806D1EC8: iam_ef_ase_ch
- 0x806D1EE0: eASC_scale_table
- 0x806D1F08: iam_ef_break_axe
- 0x806D1F20: iam_ef_bubu
- 0x806D1F38: iam_ef_buruburu
- 0x806D1F50: eBR_scale_x
- 0x806D1F58: eBR_scale_z
- 0x806D1F60: eBR_tex_anime_table
- 0x806D1F68: iam_ef_bush_happa
- 0x806D1F80: iam_ef_bush_yuki
- 0x806D1F98: light_make_pos
- 0x806D2058: iam_ef_car_blight
- 0x806D2070: iam_ef_car_light
- 0x806D2088: iam_ef_clacker
- 0x806D20C0: iam_ef_coin
- 0x806D20E0: ef_coin_gold_pal
- 0x806D2100: ef_coin_silver_pal
- 0x806D2120: eCoin_pal_table
- 0x806D2128: iam_ef_dash_asimoto
- 0x806D21B0: iam_ef_dig_hole
- 0x806D2220: eDig_Mud_tex_tbl
- 0x806D2230: eDig_Mud_Sand_tex_tbl
- 0x806D2240: eDig_Mud_Mogura_tex_tbl
- 0x806D2250: iam_ef_dig_mud
- 0x806D2268: iam_ef_dig_scoop
- 0x806D2280: iam_ef_douzou_light
- 0x806D2298: iam_ef_doyon
- 0x806D22B0: eDT_texture_table
- 0x806D22C0: iam_ef_dust
- 0x806D22D8: eDT_prim_table
- 0x806D2300: eDT_2tile_texture_idx
- 0x806D2324: eDT_AlphaPtn
- 0x806D2338: eDT_prim_f
- 0x806D2350: iam_ef_flash
- 0x806D236C: iam_ef_flashC
- 0x806D2430: iam_ef_footprint
- 0x806D2448: eFootPrint_area_offset_data
- 0x806D2470: eFuro_Yuge_texture_table
- 0x806D2480: iam_ef_furo_yuge
- 0x806D2498: eFuro_Yuge_2tile_texture_idx
- 0x806D24C4: eFuro_Yuge_prim_f
- 0x806D24E0: iam_ef_gimonhu
- 0x806D24F8: eGM_scale_data
- 0x806D25C8: iam_ef_goki
- 0x806D25E0: iam_ef_ha
- 0x806D25F8: eHA_angle_z_data
- 0x806D2600: iam_ef_halloween
- 0x806D2618: eHalloween_texture_table
- 0x806D2628: eHalloween_2tile_texture_idx
- 0x806D263C: eHalloween_prim_f
- 0x806D2648: iam_ef_halloween_smoke
- 0x806D2660: iam_ef_hanabi_botan1
- 0x806D2680: eHanabiBotan1_morph_data1
- 0x806D26EC: eHanabiBotan1_morph_data2
- 0x806D2758: eHanabiBotan1_morph_table
- 0x806D2760: iam_ef_hanabi_botan2
- 0x806D277C: eHanabiBotan2_morph_data_out
- 0x806D27E8: eHanabiBotan2_morph_data_in
- 0x806D2858: iam_ef_hanabi_dummy
- 0x806D2888: iam_ef_hanabi_hoshi
- 0x806D28A8: eHanabiHoshi_morph_data1
- 0x806D2914: eHanabiHoshi_morph_data2
- 0x806D2980: eHanabiHoshi_morph_table
- 0x806D2988: iam_ef_hanabi_set
- 0x806D29A0: eHanabiSet_sqdt1
- 0x806D29B4: eHanabiSet_set1
- 0x806D29BC: eHanabiSet_sqdt2
- 0x806D29D0: eHanabiSet_set2
- 0x806D29D8: eHanabiSet_sqdt3
- 0x806D29EC: eHanabiSet_set3
- 0x806D29F4: eHanabiSet_sqdt4
- 0x806D2A08: eHanabiSet_set4
- 0x806D2A10: eHanabiSet_sqdt5
- 0x806D2A30: eHanabiSet_set5
- 0x806D2A38: eHanabiSet_sqdt6
- 0x806D2A58: eHanabiSet_set6
- 0x806D2A60: eHanabiSet_sqdt7
- 0x806D2A80: eHanabiSet_set7
- 0x806D2A88: eHanabiSet_sqdt8
- 0x806D2AA8: eHanabiSet_set8
- 0x806D2AB0: eHanabiSet_set_table
- 0x806D2AD0: iam_ef_hanabi_switch
- 0x806D2AE8: iam_ef_hanabi_yanagi
- 0x806D2B04: eHanabiYanagi_morph_data_out
- 0x806D2B70: eHanabiYanagi_morph_data_in
- 0x806D2BE0: ef_hanabira_model_tbl
- 0x806D2BF0: iam_ef_hanabira
- 0x806D2C08: iam_ef_hanatiri
- 0x806D2C20: iam_ef_hirameki_den
- 0x806D2C38: eHiramekiD_01f_primR_envRG
- 0x806D2C3C: eHiramekiD_01f_primGB
- 0x806D2C40: iam_ef_hirameki_hikari
- 0x806D2C58: iam_ef_ikigire
- 0x806D2C70: iam_ef_impact_star
- 0x806D2C88: iam_ef_kagu_happa
- 0x806D2CA0: iam_ef_kamifubuki
- 0x806D2CE0: iam_ef_kangaeru
- 0x806D2CF8: iam_ef_kantanhu
- 0x806D2D10: eKT_scale_data
- 0x806D2DE0: iam_ef_kasamizu
- 0x806D2E08: eKasamizutama_scale_table
- 0x806D2E30: iam_ef_kasamizutama
- 0x806D2E48: iam_ef_kaze
- 0x806D2E60: iam_ef_kaze_happa
- 0x806D2E78: iam_ef_kigae
- 0x806D2E90: iam_ef_kigae_light
- 0x806D2EA8: iam_ef_kikuzu
- 0x806D2EC0: iam_ef_killer
- 0x806D2F90: iam_ef_kisha_kemuri
- 0x806D2FA8: eKONP_model_table
- 0x806D2FB4: iam_ef_konpu
- 0x806D2FD8: eKONP_prim_color_data
- 0x806D2FEC: eKONP_env_color_data
- 0x806D3000: eKPun_yuge_texture_table
- 0x806D3014: iam_ef_kpun
- 0x806D30A4: eKPun_texture_anime_idx
- 0x806D30D8: eKPun_prim_f_table
- 0x806D3100: iam_ef_kyousou_onpu
- 0x806D3118: iam_ef_lovelove
- 0x806D3130: iam_ef_lovelove2
- 0x806D3148: iam_ef_lovelove_heart
- 0x806D3160: iam_ef_make_hem
- 0x806D3178: iam_ef_make_hem_kira
- 0x806D319C: iam_ef_make_hem_light
- 0x806D31B8: iam_ef_mizutama
- 0x806D3268: eMotiyuge_tex_tbl
- 0x806D3274: iam_ef_motiyuge
- 0x806D3290: iam_ef_muka
- 0x806D32A8: iam_ef_naku
- 0x806D32C0: iam_ef_namida
- 0x806D32D8: iam_ef_neboke
- 0x806D32F0: iam_ef_neboke_akubi
- 0x806D3310: iam_ef_neboke_awa
- 0x806D3328: iam_ef_night13_moon
- 0x806D3340: iam_ef_night15_moon
- 0x806D3358: iam_ef_ongen
- 0x806D3390: iam_ef_otikomi
- 0x806D33B8: iam_ef_otosiana
- 0x806D33D8: iam_ef_pun
- 0x806D33F0: iam_ef_pun_sekimen
- 0x806D3408: ePunYuge_yuge_texture_table
- 0x806D341C: iam_ef_pun_yuge
- 0x806D3434: ePunYuge_texture_anime_idx
- 0x806D3468: ePunYuge_prim_f_table
- 0x806D3478: iam_ef_reset_hole
- 0x806D34A0: iam_ef_sandsplash
- 0x806D34B8: eSunahane_pattern_table
- 0x806D34D8: iam_ef_shock
- 0x806D34F0: eSK_prim_table
- 0x806D3528: eSK_scale_table
- 0x806D3560: iam_ef_shooting
- 0x806D3578: iam_ef_shooting_kira
- 0x806D35A0: iam_ef_shooting_set
- 0x806D35B8: iam_ef_siawase_hana
- 0x806D35D0: iam_ef_siawase_hana_ch
- 0x806D35E8: eSSHNC_pink_prim
- 0x806D35EC: eSSHNC_pink_env
- 0x806D35F0: eSSHNC_yellow_prim
- 0x806D35F4: eSSHNC_yellow_env
- 0x806D35F8: eSSHNC_color_info
- 0x806D3608: iam_ef_siawase_hikari
- 0x806D3620: iam_ef_sibuki
- 0x806D3638: eSibuki_DrawSibukiPtn
- 0x806D3650: iam_ef_situren
- 0x806D3668: iam_ef_slip
- 0x806D3680: iam_ef_slip_footprint
- 0x806D3698: eSlipFootPrint_area_offset_data
- 0x806D36C0: eSoba_Yuge_texture_table
- 0x806D36D0: iam_ef_soba_yuge
- 0x806D36E8: eSoba_Yuge_2tile_texture_idx
- 0x806D3714: eSoba_Yuge_prim_f
- 0x806D3730: Steam_tex_tbl
- 0x806D3740: Steam_tex_indx
- 0x806D3760: Steam_plod_tbl
- 0x806D3770: iam_ef_steam
- 0x806D3788: iam_ef_string
- 0x806D37A0: eString_string1
- 0x806D37AC: eString_string1_class
- 0x806D37B8: eString_string2
- 0x806D37C4: eString_string2_class
- 0x806D37D0: eString_string_table
- 0x806D37D8: iam_ef_suisou_awa
- 0x806D3830: iam_ef_swing_axe
- 0x806D3848: iam_ef_swing_net
- 0x806D3860: iam_ef_swing_rod
- 0x806D3878: eTaberu_model_table
- 0x806D3888: iam_ef_taberu
- 0x806D38A0: iam_ef_takurami
- 0x806D38B8: eTM_direct2disp
- 0x806D38C0: iam_ef_takurami_kira
- 0x806D38D8: tamaire_model
- 0x806D38E0: iam_ef_tamaire
- 0x806D38F8: iam_ef_tape
- 0x806D3910: iam_ef_tent_lamp
- 0x806D3928: iam_ef_tumble
- 0x806D39A0: iam_ef_tumble_bodyprint
- 0x806D39B8: eTDT_texture_table
- 0x806D39C8: iam_ef_tumble_dust
- 0x806D39E0: eTDT_2tile_texture_idx
- 0x806D3A00: eTDT_prim_f
- 0x806D3A10: iam_ef_turi_hamon
- 0x806D3A28: iam_ef_turi_hane0
- 0x806D3A40: eTuri_Hane0Ptn
- 0x806D3A60: iam_ef_turi_hane1
- 0x806D3A78: eTuri_Hane1Ptn
- 0x806D3A98: iam_ef_turi_mizu
- 0x806D3AB0: iam_ef_turi_suiteki
- 0x806D3AE0: iam_ef_turn_asimoto
- 0x806D3AF8: iam_ef_turn_footprint
- 0x806D3B10: eTurnFootPrint_area_offset_data
- 0x806D3B38: iam_ef_uranai
- 0x806D3B50: iam_ef_wait_asimoto
- 0x806D3B68: iam_ef_walk_asimoto
- 0x806D3B90: iam_ef_warau
- 0x806D3BA8: eWU_DispTable
- 0x806D3BD8: iam_ef_yajirushi
- 0x806D3BF0: iam_ef_young_tree
- 0x806D3C08: iam_ef_yukidama
- 0x806D3CA8: ef_yukidaruma_model_tbl
- 0x806D3CB4: iam_ef_yukidaruma
- 0x806D3CD0: iam_ef_yukihane
- 0x806D3CE8: eYukihane_pattern_table
- 0x806D4084: nf_tbl
- 0x806D4958: mTR_first_flag
- 0x806D495C: demo_1_door_data
- 0x806D4970: demo_2_door_data
- 0x806D4984: demo_3_door_data
- 0x806D4998: demo_4_door_data
- 0x806D49AC: demo_5_door_data
- 0x806D49C0: l_demo_door_data_table
- 0x806D49D4: demo_npc_list
- 0x806D4AEC: demo_npc_num
- 0x806D4B18: mitouroku_str
- 0x806D4B20: l_gaishutu_str
- 0x806D4B2C: l_zaitaku_str
- 0x806D4B38: l_yosokara_str
- 0x806D4B44: l_init_proc
- 0x806D4B58: l_ps_white_color
- 0x806D4B64: l_ps_select_color
- 0x806D4B70: _debug_player_select
- 0x806D4B98: my_malloc_func
- 0x806D4D40: fFTR_myhome_off_pal_table
- 0x806D4EC0: fFTR_myhome_on_pal_table
- 0x806D5040: iam_ari_isu01
- 0x806D5074: iam_ari_kitchen01
- 0x806D50A8: iam_ari_reizou01
- 0x806D50DC: iam_ari_table01
- 0x806D5110: iam_din_amber
- 0x806D5144: iam_din_ammonite
- 0x806D5178: iam_din_bront_body
- 0x806D51AC: iam_din_bront_dummy
- 0x806D51E0: iam_din_bront_head
- 0x806D5214: iam_din_bront_tail
- 0x806D5248: iam_din_dummy
- 0x806D527C: iam_din_egg
- 0x806D52B0: iam_din_hutaba_body
- 0x806D52E4: iam_din_hutaba_dummy
- 0x806D5318: iam_din_hutaba_head
- 0x806D534C: iam_din_hutaba_neck
- 0x806D5380: iam_din_mammoth_body
- 0x806D53B4: iam_din_mammoth_dummy
- 0x806D53E8: iam_din_mammoth_head
- 0x806D541C: iam_din_ptera_dummy
- 0x806D5450: iam_din_ptera_Lwing
- 0x806D5484: iam_din_ptera_Rwing
- 0x806D54B8: iam_din_ptera_head
- 0x806D54EC: iam_din_stego_body
- 0x806D5520: iam_din_stego_dummyA
- 0x806D5554: iam_din_stego_dummyB
- 0x806D5588: iam_din_stego_head
- 0x806D55BC: iam_din_stego_tail
- 0x806D55F0: iam_din_stump
- 0x806D5624: iam_din_trex_body
- 0x806D5658: iam_din_trex_dummy
- 0x806D568C: iam_din_trex_head
- 0x806D56C0: iam_din_trex_tail
- 0x806D56F4: iam_din_trikera_body
- 0x806D5728: iam_din_trikera_dummy
- 0x806D575C: iam_din_trikera_head
- 0x806D5790: iam_din_trikera_tail
- 0x806D57C4: iam_din_trilobite
- 0x806D57F8: fFC_texture_table
- 0x806D5848: fFC_palette_table
- 0x806D5898: fFC_game_table
- 0x806D58AC: fFC_agb_game_table
- 0x806D58C0: fFC_reference_model_idx_table
- 0x806D5910: fFC_func
- 0x806D5924: iam_famicom_common
- 0x806D5958: aFmanekin_func
- 0x806D596C: iam_fmanekin
- 0x806D59A0: aFU_data
- 0x806D5AA0: aFU_func
- 0x806D5AB4: iam_fumbrella
- 0x806D5AE8: hnw_cKF_bs_r_table
- 0x806D5CE8: hnw_cKF_ba_r_table
- 0x806D5EE8: cKF_ckcb_r_int_hnw_off_tbl
- 0x806D5EF0: cKF_c_int_hnw_off_tbl
- 0x806D5F20: cKF_ba_r_int_hnw_off
- 0x806D5F34: aHnwCommon_func
- 0x806D5F48: iam_hnw_common
- 0x806D5F7C: iam_ike_art_ang
- 0x806D5FB0: iam_ike_art_fel
- 0x806D5FE4: fIIH_func
- 0x806D5FF8: iam_ike_island_hako01
- 0x806D602C: iam_ike_island_sensui01
- 0x806D6060: fIIUKRR_func
- 0x806D6074: iam_ike_island_uku01
- 0x806D60A8: iam_ike_jny_afmen01
- 0x806D60DC: iam_ike_jny_botle01
- 0x806D6110: iam_ike_jny_gate01
- 0x806D6144: iam_ike_jny_gojyu01
- 0x806D6178: fIJH_func
- 0x806D618C: iam_ike_jny_hariko01
- 0x806D61F0: fIJHOUI_func
- 0x806D6204: iam_ike_jny_houi01
- 0x806D6238: iam_ike_jny_kibori01
- 0x806D626C: iam_ike_jny_makada01
- 0x806D62A0: iam_ike_jny_moai01
- 0x806D62D4: iam_ike_jny_ningyo01
- 0x806D6308: iam_ike_jny_pisa01
- 0x806D633C: aIkeJnyRosia01_func
- 0x806D6350: iam_ike_jny_rosia01
- 0x806D6384: iam_ike_jny_sirser01
- 0x806D63B8: iam_ike_jny_sirser201
- 0x806D63EC: fIJS_func
- 0x806D6400: iam_ike_jny_syon01
- 0x806D6434: iam_ike_jny_tower01
- 0x806D6470: fIJT_func
- 0x806D6484: iam_ike_jny_truth01
- 0x806D64B8: iam_ike_jpn_tansu01
- 0x806D64EC: fIKD_func
- 0x806D6500: iam_ike_kama_danro01
- 0x806D6534: fIKC_func
- 0x806D6548: iam_ike_k_count01
- 0x806D657C: iam_ike_k_iveboy01
- 0x806D65B0: iam_ike_k_kid01
- 0x806D65E4: iam_ike_k_kid02
- 0x806D6618: iam_ike_k_mame01
- 0x806D664C: iam_ike_k_sum01
- 0x806D6680: iam_ike_k_otome01
- 0x806D66B4: iam_ike_k_sinnen01
- 0x806D66E8: fITN_func
- 0x806D66FC: iam_ike_k_tanabata01
- 0x806D6730: iam_ike_k_turis01
- 0x806D6764: iam_ike_nikki_fan1
- 0x806D6798: iam_ike_nikki_fan2
- 0x806D67CC: iam_ike_nikki_fan3
- 0x806D6800: iam_ike_nikki_fan4
- 0x806D6834: iam_ike_nikki_fan5
- 0x806D6868: iam_ike_nikki_wafu1
- 0x806D689C: fIPP_func
- 0x806D68B0: iam_ike_pst_pig01
- 0x806D68E4: iam_ike_pst_tesyu01
- 0x806D6918: aKobDisksystem8_func
- 0x806D692C: iam_kob_disksystem8
- 0x806D6960: iam_kob_getabako1
- 0x806D6994: iam_kob_getabako2
- 0x806D69C8: iam_kob_jimudesk
- 0x806D69FC: iam_kob_jimuisu
- 0x806D6A30: aKobLocker1_func
- 0x806D6A44: iam_kob_locker1
- 0x806D6A78: aKobMasterSword01_func
- 0x806D6A8C: iam_kob_mastersword
- 0x806D6AC0: aKobNcube_func
- 0x806D6AD4: iam_kob_ncube
- 0x806D6B08: iam_kob_pipeisu
- 0x806D6B3C: iam_kob_rika_desk
- 0x806D6B70: iam_kob_tobibako
- 0x806D6BA4: aKonAmeclock_func
- 0x806D6BB8: iam_kon_ameclock
- 0x806D6BEC: aKonAtqclock_func
- 0x806D6C00: iam_kon_atqclock
- 0x806D6C34: aKonBlueclock_func
- 0x806D6C48: iam_kon_blueclock
- 0x806D6C7C: aKonCracker_sklkey
- 0x806D6C88: aKonCracker_func
- 0x806D6C9C: iam_kon_cracker
- 0x806D6CD0: iam_kon_gomi03
- 0x806D6D04: aKonGomi04_func
- 0x806D6D18: iam_kon_gomi04
- 0x806D6D4C: aKonGrclock_func
- 0x806D6D60: iam_kon_grclock
- 0x806D6D94: iam_kon_isi01
- 0x806D6DC8: iam_kon_isi02
- 0x806D6DFC: iam_kon_isi03
- 0x806D6E30: iam_kon_isi04
- 0x806D6E64: iam_kon_isi05
- 0x806D6E98: iam_kon_isi06
- 0x806D6ECC: aKonJihanki02_func
- 0x806D6EE0: iam_kon_jihanki02
- 0x806D6F14: iam_kon_jihanki03
- 0x806D6F48: aKonMimiclock_func
- 0x806D6F5C: iam_kon_mimiclock
- 0x806D6F90: aKonMusya_func
- 0x806D6FA4: iam_kon_musya
- 0x806D6FD8: iam_kon_pound
- 0x806D700C: aKonRedclock_func
- 0x806D7020: iam_kon_redclock
- 0x806D7054: aKonSisiodosi_sklkey
- 0x806D7060: aKonSisiodosi_func
- 0x806D7074: iam_kon_sisiodosi
- 0x806D70A8: iam_kon_snowbed
- 0x806D70DC: aKonSnowbox_func
- 0x806D70F0: iam_kon_snowbox
- 0x806D7124: aKonSnowclock_func
- 0x806D7138: iam_kon_snowclock
- 0x806D716C: iam_kon_snowfreezer
- 0x806D71A0: iam_kon_snowsofa
- 0x806D71D4: iam_kon_snowtable
- 0x806D7208: aKonSnowtansu_func
- 0x806D721C: iam_kon_snowtansu
- 0x806D7250: aKonsnowtv_on_anime
- 0x806D72C8: aKonsnowtv_func
- 0x806D72DC: iam_kon_snowtv
- 0x806D7310: iam_kon_taiju
- 0x806D7344: iam_kon_tubo
- 0x806D7378: iam_kon_tubo2
- 0x806D73AC: iam_kon_tubo3
- 0x806D73E0: iam_kon_tukue
- 0x806D7414: aKonWaclock_func
- 0x806D7428: iam_kon_waclock
- 0x806D745C: iam_kon_xtree02
- 0x806D7490: aMyfmanekin_func
- 0x806D74A4: iam_myfmanekin
- 0x806D74D8: aMFU_func
- 0x806D74EC: iam_myfumbrella
- 0x806D7520: aNogAmenbo_key_anime_data
- 0x806D752C: iam_nog_amenbo
- 0x806D7560: iam_nog_ari
- 0x806D7594: fNBC_balloon_skel_table
- 0x806D75B4: fNBC_balloon_anime_table
- 0x806D75D4: fNBC_func
- 0x806D75E8: iam_nog_balloon_common
- 0x806D761C: iam_nog_beachbed
- 0x806D7650: fNBT_func
- 0x806D7664: iam_nog_beachtable
- 0x806D7698: iam_nog_bishopB
- 0x806D76CC: iam_nog_bishopW
- 0x806D7700: aNogDango_key_anime_data
- 0x806D770C: iam_nog_dango
- 0x806D7740: iam_nog_collegenote
- 0x806D7774: iam_nog_dump
- 0x806D77A8: iam_nog_earth
- 0x806D77DC: aNogFan_nog_fan01_anim
- 0x806D7810: aNogFan_func
- 0x806D7824: iam_nog_fan01
- 0x806D7858: iam_nog_flat
- 0x806D788C: iam_nog_harddiary
- 0x806D78C0: aNogIsidai_key_anime_data
- 0x806D78CC: iam_nog_isidai
- 0x806D7900: aNogKa_key_anime_data
- 0x806D790C: fNKA_func
- 0x806D7920: iam_nog_ka
- 0x806D7954: aNogKaeru_key_anime_data
- 0x806D7960: fNKR_func
- 0x806D7974: iam_nog_kaeru
- 0x806D79C0: int_nog_kamakura_off_pal
- 0x806D79E0: int_nog_kamakura_on_pal
- 0x806D7A00: fNogKamakura_func
- 0x806D7A14: iam_nog_kamakura
- 0x806D7A48: aNogKera_key_anime_data
- 0x806D7A54: fNgKr_func
- 0x806D7A68: iam_nog_kera
- 0x806D7A9C: iam_nog_kingB
- 0x806D7AD0: iam_nog_kingW
- 0x806D7B04: iam_nog_knightB
- 0x806D7B38: iam_nog_knightW
- 0x806D7B80: int_nog_kouban_on_pal
- 0x806D7BA0: int_nog_kouban_off_pal
- 0x806D7BC0: fNKN_func
- 0x806D7BD4: iam_nog_koban
- 0x806D7C08: aNogKumo_key_anime_data
- 0x806D7C14: iam_nog_kumo
- 0x806D7C48: aNogKurage_key_anime_data
- 0x806D7C54: iam_nog_kurage
- 0x806D7C88: aNogMaimai_key_anime_data
- 0x806D7C94: iam_nog_maimai
- 0x806D7CC8: aNogMino_key_anime_data
- 0x806D7CD4: iam_nog_mino
- 0x806D7D08: iam_nog_mikanbox
- 0x806D7D3C: aNogMedaka_key_anime_data
- 0x806D7D48: iam_nog_medaka
- 0x806D7D80: int_nog_museum_off_pal
- 0x806D7DA0: int_nog_museum_on_pal
- 0x806D7DC0: fNMM_func
- 0x806D7DD4: iam_nog_museum
- 0x806D7E08: fNM2_func
- 0x806D7E1C: iam_nog_myhome2
- 0x806D7E50: fNM4_func
- 0x806D7E64: iam_nog_myhome4
- 0x806D7E98: fNNB_texture_table
- 0x806D7EA8: fNNB_func
- 0x806D7EBC: iam_nog_nabe
- 0x806D7EF0: aNogPawnB_func
- 0x806D7F04: iam_nog_pawnB
- 0x806D7F38: aNogpawnW_func
- 0x806D7F4C: iam_nog_pawnW
- 0x806D7F80: aNogPiraluku_key_anime_data
- 0x806D7F8C: iam_nog_piraluku
- 0x806D7FC0: iam_nog_queenB
- 0x806D7FF4: iam_nog_queenW
- 0x806D8028: iam_nog_rail
- 0x806D805C: iam_nog_rookB
- 0x806D8090: iam_nog_rookW
- 0x806D80C4: iam_nog_schoolnote
- 0x806D80F8: fNSH_func
- 0x806D810C: iam_nog_shrine
- 0x806D8140: iam_nog_snowman
- 0x806D8174: fNSN_station_skel_table
- 0x806D81B4: fNSN_station_anime_table
- 0x806D8200: int_nog_station1_a_pal
- 0x806D8220: int_nog_station1_b_pal
- 0x806D8240: int_nog_station1_c_pal
- 0x806D8260: int_nog_station1_d_pal
- 0x806D8280: int_nog_station1_e_pal
- 0x806D82A0: int_nog_station2_a_pal
- 0x806D82C0: int_nog_station2_b_pal
- 0x806D82E0: int_nog_station2_c_pal
- 0x806D8300: int_nog_station2_d_pal
- 0x806D8320: int_nog_station2_e_pal
- 0x806D8340: int_nog_station3_a_pal
- 0x806D8360: int_nog_station3_b_pal
- 0x806D8380: int_nog_station3_c_pal
- 0x806D83A0: int_nog_station3_d_pal
- 0x806D83C0: int_nog_station3_e_pal
- 0x806D83E0: fMSM_palette_table
- 0x806D8420: fNSN_func
- 0x806D8434: iam_nog_station
- 0x806D8468: iam_nog_systemnote
- 0x806D849C: iam_nog_s_tree
- 0x806D84D0: iam_nog_f_tree
- 0x806D8504: aNogSuzuki_key_anime_data
- 0x806D8510: iam_nog_suzuki
- 0x806D8560: int_nog_shop1_on_pal
- 0x806D8580: int_nog_shop1_off_pal
- 0x806D85A0: fNS1_func
- 0x806D85B4: iam_nog_shop1
- 0x806D85E8: aNogTai_key_anime_data
- 0x806D85F4: iam_nog_tai
- 0x806D8628: aNogTriAudio01_func
- 0x806D863C: iam_nog_tri_audio01
- 0x806D8670: iam_nog_tri_bed01
- 0x806D86A4: iam_nog_tri_chair01
- 0x806D86D8: aNogTriChest01_func
- 0x806D86EC: iam_nog_tri_chest01
- 0x806D8720: aNogTriChest02_func
- 0x806D8734: iam_nog_tri_chest02
- 0x806D8768: aNogTriChest03_func
- 0x806D877C: iam_nog_tri_chest03
- 0x806D87B0: aNogTriClock01_func
- 0x806D87C4: iam_nog_tri_clock01
- 0x806D87F8: iam_nog_tri_rack01
- 0x806D882C: iam_nog_tri_sofa01
- 0x806D8860: iam_nog_tri_table01
- 0x806D8894: iam_nog_tudurinote
- 0x806D88C8: iam_nog_xtree
- 0x806D8900: int_nog_uranai_off_pal
- 0x806D8920: int_nog_uranai_on_pal
- 0x806D8940: fNU_func
- 0x806D8954: iam_nog_uranai
- 0x806D89A0: int_nog_yamishop_off_pal
- 0x806D89C0: int_nog_yamishop_on_pal
- 0x806D89E0: fNYS_func
- 0x806D89F4: iam_nog_yamishop
- 0x806D8A40: int_nog_yubin_on_pal
- 0x806D8A60: int_nog_yubin_off_pal
- 0x806D8A80: fNYB_func
- 0x806D8A94: iam_nog_yubin
- 0x806D8AC8: aNogZarigani_key_anime_data
- 0x806D8AD4: iam_nog_zarigani
- 0x806D8B08: iam_nog_zassou
- 0x806D8B3C: iam_nog_w_tree
- 0x806D8B70: aSumAbura_func
- 0x806D8B84: iam_sum_abura
- 0x806D8BB8: aSumAkiakane_key_anime_data
- 0x806D8BC4: iam_sum_akiakane
- 0x806D8BF8: aSumAngel_key_anime_data
- 0x806D8C04: iam_sum_angel
- 0x806D8C38: aSumAroana_key_anime_data
- 0x806D8C44: iam_sum_aroana
- 0x806D8C78: iam_sum_art01
- 0x806D8CAC: iam_sum_art04
- 0x806D8CE0: iam_sum_art05
- 0x806D8D14: iam_sum_art06
- 0x806D8D48: iam_ike_art_sya
- 0x806D8D7C: iam_sum_art08
- 0x806D8DB0: iam_sum_art09
- 0x806D8DE4: iam_sum_art10
- 0x806D8E18: iam_sum_art11
- 0x806D8E4C: iam_sum_art12
- 0x806D8E80: iam_sum_art13
- 0x806D8EB4: iam_sum_art14
- 0x806D8EE8: iam_sum_art15
- 0x806D8F1C: iam_sum_asi_bed01
- 0x806D8F50: iam_sum_asi_chair01
- 0x806D8F84: iam_sum_asi_chair02
- 0x806D8FB8: iam_sum_asi_chest01
- 0x806D8FEC: aSumAsiChest02_func
- 0x806D9000: iam_sum_asi_chest02
- 0x806D9034: aSumAsiChest03_func
- 0x806D9048: iam_sum_asi_chest03
- 0x806D907C: iam_sum_asi_lanp01
- 0x806D90B0: iam_sum_asi_screen01
- 0x806D90E4: iam_sum_asi_table01
- 0x806D9118: iam_sum_asi_table02
- 0x806D914C: aSumasitaiko_func
- 0x806D9160: iam_sum_asi_taiko
- 0x806D9194: aSumAyu_key_anime_data
- 0x806D91A0: iam_sum_ayu
- 0x806D91D4: iam_sum_baketu
- 0x806D9208: aSumBass_key_anime_data
- 0x806D9214: iam_sum_bass
- 0x806D9248: aSumBass01_func
- 0x806D925C: iam_sum_bass01
- 0x806D9290: aSumBassl_key_anime_data
- 0x806D929C: iam_sum_bassl
- 0x806D92D0: aSumBassm_key_anime_data
- 0x806D92DC: iam_sum_bassm
- 0x806D9310: sum_bdcake01_func
- 0x806D9324: iam_sum_bdcake01
- 0x806D9358: iam_sum_billiads
- 0x806D938C: aSumBiwa01_func
- 0x806D93A0: iam_sum_biwa01
- 0x806D93D4: iam_sum_bla_bed01
- 0x806D9408: iam_sum_bla_chair02
- 0x806D943C: aSumBlaChest01_func
- 0x806D9450: iam_sum_bla_chest01
- 0x806D9484: iam_sum_bla_chest02
- 0x806D94B8: aSumBlaChest03_func
- 0x806D94CC: iam_sum_bla_chest03
- 0x806D9500: iam_sum_bla_desk01
- 0x806D9534: aSumBlaLanp_func
- 0x806D9548: iam_sum_bla_lanp
- 0x806D957C: iam_sum_bla_sofa02
- 0x806D95B0: iam_sum_bla_table01
- 0x806D95E4: iam_sum_bla_table02
- 0x806D9618: iam_sum_blue_bed01
- 0x806D964C: iam_sum_blue_bench01
- 0x806D9680: aSumBlueBureau01_func
- 0x806D9694: iam_sum_blue_bureau01
- 0x806D96C8: aSumBlueCab01_func
- 0x806D96DC: iam_sum_blue_cab01
- 0x806D9710: iam_sum_blue_chair01
- 0x806D9744: iam_sum_blue_chest01
- 0x806D9778: iam_sum_blue_chest02
- 0x806D97AC: aSumBlueClk_func
- 0x806D97C0: iam_sum_blue_clk
- 0x806D97F4: aSumBlueLowChest01_func
- 0x806D9808: iam_sum_blue_lowchest01
- 0x806D983C: iam_sum_blue_table01
- 0x806D9870: iam_sum_bon_boke
- 0x806D98A4: iam_sum_bon_matu01
- 0x806D98D8: iam_sum_bon_matu02
- 0x806D990C: iam_sum_bon_matu03
- 0x806D9940: iam_sum_bon_momiji
- 0x806D9974: iam_sum_bon_pira
- 0x806D99A8: iam_sum_bon_sanshu
- 0x806D99DC: iam_sum_bon_satuki
- 0x806D9A10: iam_sum_bon_turu
- 0x806D9A44: iam_sum_bon_ume
- 0x806D9A78: iam_sum_bookcht01
- 0x806D9AAC: aSumCasse01_func
- 0x806D9AC0: iam_sum_casse01
- 0x806D9AF4: aSumCello01_func
- 0x806D9B08: iam_sum_cello01
- 0x806D9B3C: iam_sum_chair01
- 0x806D9B70: aSumChikuon01_func
- 0x806D9B84: iam_sum_chikuon01
- 0x806D9BB8: aSumChikuon02_func
- 0x806D9BCC: iam_sum_chikuon02
- 0x806D9C00: iam_sum_classiccabinet01
- 0x806D9C34: iam_sum_classicchair01
- 0x806D9C68: aSumClchest01_func
- 0x806D9C7C: iam_sum_classicchest01
- 0x806D9CB0: iam_sum_classicchest02
- 0x806D9CE4: iam_sum_classictable01
- 0x806D9D18: iam_sum_classicwardrope01
- 0x806D9D4C: iam_sum_clbed02
- 0x806D9D80: iam_sum_clchair02
- 0x806D9DB4: aSumClChest03_func
- 0x806D9DC8: iam_sum_clchest03
- 0x806D9DFC: iam_sum_col_chair01
- 0x806D9E30: iam_sum_col_chair02
- 0x806D9E64: iam_sum_col_chair03
- 0x806D9E98: iam_sum_comp01
- 0x806D9ECC: asumconga01_func
- 0x806D9EE0: iam_sum_conga01
- 0x806D9F14: aSumConpo01_func
- 0x806D9F28: iam_sum_conpo01
- 0x806D9F5C: aSumConpo02_func
- 0x806D9F70: iam_sum_conpo02
- 0x806D9FA4: iam_sum_cont_bed01
- 0x806D9FD8: iam_sum_cont_cab01
- 0x806DA00C: iam_sum_cont_chair01
- 0x806DA040: iam_sum_cont_chest01
- 0x806DA074: aSumContChest02_func
- 0x806DA088: iam_sum_cont_chest02
- 0x806DA0BC: aSumContChest03_func
- 0x806DA0D0: iam_sum_cont_chest03
- 0x806DA104: iam_sum_cont_sofa01
- 0x806DA138: iam_sum_cont_sofa02
- 0x806DA16C: iam_sum_cont_table01
- 0x806DA1A0: iam_sum_cont_table02
- 0x806DA1D4: iam_sum_cupboard01
- 0x806DA208: aSumDanna_key_anime_data
- 0x806DA214: iam_sum_danna
- 0x806DA248: aSumDemekin_key_anime_data
- 0x806DA254: iam_sum_demekin
- 0x806DA288: iam_sum_desk01
- 0x806DA2BC: aSumDojyo_key_anime_data
- 0x806DA2C8: iam_sum_dojyo
- 0x806DA2FC: aSumDoll01_func
- 0x806DA310: iam_sum_doll01
- 0x806DA344: iam_sum_doll02
- 0x806DA378: iam_sum_doll03
- 0x806DA3AC: iam_sum_doll04
- 0x806DA3E0: iam_sum_doll05
- 0x806DA414: iam_sum_doll06
- 0x806DA448: iam_sum_doll07
- 0x806DA47C: iam_sum_doll08
- 0x806DA4B0: iam_sum_doll09
- 0x806DA4E4: iam_sum_doll10
- 0x806DA518: iam_sum_doll11
- 0x806DA54C: aSumDonko_key_anime_data
- 0x806DA558: iam_sum_donko
- 0x806DA58C: iam_sum_fruitbed01
- 0x806DA5C0: iam_sum_fruitchair01
- 0x806DA5F4: iam_sum_fruitchair02
- 0x806DA628: iam_sum_fruitchair03
- 0x806DA65C: iam_sum_fruitchair04
- 0x806DA690: aSumFruitchest01_func
- 0x806DA6A4: iam_sum_fruitchest01
- 0x806DA6D8: aSumFruitchest03_func
- 0x806DA6EC: iam_sum_fruitchest03
- 0x806DA720: aSumfruitclk_func
- 0x806DA734: iam_sum_fruitclk
- 0x806DA768: iam_sum_fruittable01
- 0x806DA79C: iam_sum_fruittable02
- 0x806DA7D0: iam_sum_fruittable03
- 0x806DA804: aSumFruittv01_on_anime
- 0x806DA838: aSumFruittv01_func
- 0x806DA84C: iam_sum_fruittv01
- 0x806DA880: aSumFuna_key_anime_data
- 0x806DA88C: iam_sum_funa
- 0x806DA904: aSumgenji_func
- 0x806DA918: iam_sum_genji
- 0x806DA94C: aSumGill_key_anime_data
- 0x806DA958: iam_sum_gill
- 0x806DA98C: aSumGinyanma_key_anime_data
- 0x806DA998: iam_sum_ginyanma
- 0x806DA9CC: iam_sum_globe01
- 0x806DAA00: iam_sum_golfbag01
- 0x806DAA34: iam_sum_golfbag02
- 0x806DAA68: iam_sum_golfbag03
- 0x806DAA9C: aSumGomadara_key_anime_data
- 0x806DAAA8: iam_sum_gomadara
- 0x806DAADC: iam_sum_gre_bed01
- 0x806DAB10: iam_sum_gre_chair01
- 0x806DAB44: iam_sum_gre_chair02
- 0x806DAB78: iam_sum_gre_chest01
- 0x806DABAC: aSumGreChest02_func
- 0x806DABC0: iam_sum_gre_chest02
- 0x806DABF4: aSumGreChest03_func
- 0x806DAC08: iam_sum_gre_chest03
- 0x806DAC3C: iam_sum_gre_counter01
- 0x806DAC70: iam_sum_gre_desk01
- 0x806DACA4: aSumGreLanp01_func
- 0x806DACB8: iam_sum_gre_lanp01
- 0x806DACEC: iam_sum_gre_table01
- 0x806DAD20: aSumGuitar01_func
- 0x806DAD34: iam_sum_guitar01
- 0x806DAD68: aSumGuitar02_func
- 0x806DAD7C: iam_sum_guitar02
- 0x806DADB0: aSumGuitar03_func
- 0x806DADC4: iam_sum_guitar03
- 0x806DADF8: aSumGupi_key_anime_data
- 0x806DAE04: iam_sum_gupi
- 0x806DAE38: aSumHachi_key_anime_data
- 0x806DAE44: iam_sum_hachi
- 0x806DAE78: iam_sum_hal_bed01
- 0x806DAEAC: aSumHalBox01_func
- 0x806DAEC0: iam_sum_hal_box01
- 0x806DAEF4: iam_sum_hal_chair01
- 0x806DAF28: iam_sum_hal_chest01
- 0x806DAF5C: aSumHalChest02_func
- 0x806DAF70: iam_sum_hal_chest02
- 0x806DAFA4: aSumHalChest03_func
- 0x806DAFB8: iam_sum_hal_chest03
- 0x806DAFEC: aSumHalClk01_func
- 0x806DB000: iam_sum_hal_clk01
- 0x806DB034: aSumHalLanp01_func
- 0x806DB048: iam_sum_hal_lanp01
- 0x806DB07C: aSumHalMirror01_func
- 0x806DB090: iam_sum_hal_mirror01
- 0x806DB0C4: iam_sum_hal_pkin
- 0x806DB0F8: iam_sum_hal_sofa01
- 0x806DB12C: iam_sum_hal_table01
- 0x806DB160: aSumHarp_func
- 0x806DB174: iam_sum_harp
- 0x806DB1A8: aSumHera_key_anime_data
- 0x806DB1B4: iam_sum_hera
- 0x806DB1E8: aSumHigurashi_func
- 0x806DB1FC: iam_sum_higurashi
- 0x806DB230: aSumHirata_key_anime_data
- 0x806DB23C: iam_sum_hirata
- 0x806DB270: aSumIto_key_anime_data
- 0x806DB27C: iam_sum_ito
- 0x806DB2B0: aSumIwana_key_anime_data
- 0x806DB2BC: iam_sum_iwana
- 0x806DB2F0: aSumJukebox_func
- 0x806DB304: iam_sum_jukebox
- 0x806DB338: aSumKabuto_key_anime_data
- 0x806DB344: iam_sum_kabuto
- 0x806DB378: aSumKamakiri_key_anime_data
- 0x806DB384: iam_sum_kamakiri
- 0x806DB3B8: aSumKanabun_key_anime_data
- 0x806DB3C4: iam_sum_kanabun
- 0x806DB3F8: aSumKaseki_key_anime_data
- 0x806DB404: iam_sum_kaseki
- 0x806DB438: aSumKiageha_key_anime_data
- 0x806DB444: iam_sum_kiageha
- 0x806DB478: aSumKingyo_key_anime_data
- 0x806DB484: iam_sum_kingyo
- 0x806DB4B8: aSumKirigirisu_func
- 0x806DB4CC: iam_sum_kirigirisu
- 0x806DB500: aSumKisha_func
- 0x806DB514: iam_sum_kisha
- 0x806DB548: iam_sum_kitchair01
- 0x806DB57C: iam_sum_kittable01
- 0x806DB5B0: aSumKoi_key_anime_data
- 0x806DB5BC: iam_sum_koi
- 0x806DB5F0: iam_sum_kokuban
- 0x806DB624: aSumKoorogi_func
- 0x806DB638: iam_sum_koorogi
- 0x806DB66C: iam_sum_liccabed
- 0x806DB6A0: iam_sum_liccachair
- 0x806DB6D4: aSumLiccachest_func
- 0x806DB6E8: iam_sum_liccachest
- 0x806DB71C: iam_sum_liccakitchen
- 0x806DB750: iam_sum_liccalanp
- 0x806DB784: aSumLiccaLowChest_func
- 0x806DB798: iam_sum_liccalowchest
- 0x806DB7CC: iam_sum_liccalowtable
- 0x806DB800: aSumLiccaMirror_func
- 0x806DB814: iam_sum_liccamirror
- 0x806DB848: aSumLiccapiano_func
- 0x806DB85C: iam_sum_liccapiano
- 0x806DB890: iam_sum_liccasofa
- 0x806DB8C4: iam_sum_liccatable
- 0x806DB8F8: iam_sum_log_bed01
- 0x806DB92C: iam_sum_log_chair01
- 0x806DB960: iam_sum_log_chair02
- 0x806DB994: iam_sum_log_chair03
- 0x806DB9C8: aSumLogChest01_func
- 0x806DB9DC: iam_sum_log_chest01
- 0x806DBA10: aSumBlaChest02_func
- 0x806DBA24: iam_sum_log_chest02
- 0x806DBA58: iam_sum_log_chest03
- 0x806DBAA4: aSumLogHatoclk_func
- 0x806DBAB8: iam_sum_log_hatoclk
- 0x806DBAEC: iam_sum_log_table01
- 0x806DBB20: iam_sum_log_table02
- 0x806DBB54: aSumLv_Stereo_func
- 0x806DBB68: iam_sum_lv_stereo
- 0x806DBB9C: aSumMatumushi_func
- 0x806DBBB0: iam_sum_matumushi
- 0x806DBBE4: aSumMd01_func
- 0x806DBBF8: iam_sum_md01
- 0x806DBC2C: aSumMezaClock_sklkey
- 0x806DBC38: aSumMezaClock_func
- 0x806DBC4C: iam_sum_mezaclock
- 0x806DBC80: aSumMinmin_func
- 0x806DBC94: iam_sum_minmin
- 0x806DBCC8: iam_sum_misin01
- 0x806DBCFC: aSumMiyama_key_anime_data
- 0x806DBD08: iam_sum_miyama
- 0x806DBD3C: aSumMizunomi_sklkey
- 0x806DBD48: aSumMizunomi_func
- 0x806DBD5C: iam_sum_mizunomi
- 0x806DBD90: aSumMonki_key_anime_data
- 0x806DBD9C: iam_sum_monki
- 0x806DBDD0: aSumMonshiro_key_anime_data
- 0x806DBDDC: iam_sum_monshiro
- 0x806DBE10: aSumNamazu_key_anime_data
- 0x806DBE1C: iam_sum_namazu
- 0x806DBE50: aSumNanahoshi_key_anime_data
- 0x806DBE5C: iam_sum_nanahoshi
- 0x806DBE90: aSumNigoi_key_anime_data
- 0x806DBE9C: iam_sum_nigoi
- 0x806DBED0: aSumNiji_key_anime_data
- 0x806DBEDC: iam_sum_niji
- 0x806DBF10: aSumNisiki_key_anime_data
- 0x806DBF1C: iam_sum_nisiki
- 0x806DBF50: aSumNokogiri_key_anime_data
- 0x806DBF5C: iam_sum_nokogiri
- 0x806DBF90: aSumOhmurasaki_key_anime_data
- 0x806DBF9C: iam_sum_ohmurasaki
- 0x806DBFD0: aSumOikawa_key_anime_data
- 0x806DBFDC: iam_sum_oikawa
- 0x806DC010: aSumOkiagari01_func
- 0x806DC024: iam_sum_okiagari01
- 0x806DC058: aSumOkuwa_key_anime_data
- 0x806DC064: iam_sum_okuwa
- 0x806DC098: aSumOldClk01_func
- 0x806DC0AC: iam_sum_oldclk01
- 0x806DC0E0: iam_sum_oldsofa01
- 0x806DC114: aSumOniyanma_key_anime_data
- 0x806DC120: iam_sum_oniyanma
- 0x806DC154: aSumOonamazu_key_anime_data
- 0x806DC160: iam_sum_oonamazu
- 0x806DC194: aSumPet01_func
- 0x806DC1A8: iam_sum_pet01
- 0x806DC1DC: aSumPiano01_func
- 0x806DC1F0: iam_sum_piano01
- 0x806DC224: aSumPirania_key_anime_data
- 0x806DC230: iam_sum_pirania
- 0x806DC264: iam_sum_pl_aloe01
- 0x806DC298: iam_sum_pl_ananas
- 0x806DC2CC: iam_sum_pl_benjyami
- 0x806DC300: iam_sum_pl_caladium01
- 0x806DC334: iam_sum_pl_cocos
- 0x806DC368: iam_sum_pl_compacta
- 0x806DC39C: iam_sum_pl_draca02
- 0x806DC3D0: iam_sum_pl_dracaena
- 0x806DC404: iam_sum_pl_gomunoki
- 0x806DC438: iam_sum_pl_hirasabo
- 0x806DC46C: iam_sum_pl_kuroton
- 0x806DC4A0: iam_sum_pl_pakila
- 0x806DC4D4: iam_sum_pl_pothos
- 0x806DC508: iam_sum_pl_shuroci
- 0x806DC53C: iam_sum_pl_yamayasi
- 0x806DC570: iam_sum_popchair01
- 0x806DC5A4: iam_sum_popchair02
- 0x806DC5D8: iam_sum_popchair03
- 0x806DC60C: iam_sum_poptable01
- 0x806DC640: iam_sum_poptable02
- 0x806DC674: iam_sum_poptable03
- 0x806DC6A8: aSumRadio01_func
- 0x806DC6BC: iam_sum_radio01
- 0x806DC6F0: aSumRadio02_func
- 0x806DC704: iam_sum_radio02
- 0x806DC738: aSumRaigyo_key_anime_data
- 0x806DC744: iam_sum_raigyo
- 0x806DC778: iam_sum_ratan_bed01
- 0x806DC7AC: aSumRatanChest01_func
- 0x806DC7C0: iam_sum_ratan_chest01
- 0x806DC7F4: aSumRatanChest02_func
- 0x806DC808: iam_sum_ratan_chest02
- 0x806DC83C: iam_sum_ratan_chest03
- 0x806DC870: iam_sum_ratan_isu01
- 0x806DC8A4: iam_sum_ratan_isu02
- 0x806DC8D8: iam_sum_ratan_lanp
- 0x806DC90C: aSumRatanMirror_func
- 0x806DC920: iam_sum_ratan_mirror
- 0x806DC954: iam_sum_ratan_screen
- 0x806DC988: iam_sum_ratan_table01
- 0x806DC9BC: aSumReco_func
- 0x806DC9D0: iam_sum_reco01
- 0x806DCA14: aSumroboclk_func
- 0x806DCA28: iam_sum_roboclk
- 0x806DCA6C: aSumRoboconpo_func
- 0x806DCA80: iam_sum_roboconpo
- 0x806DCAB4: iam_sum_sabo01
- 0x806DCAE8: iam_sum_sabo02
- 0x806DCB1C: aSumSaiconpo_func
- 0x806DCB30: iam_sum_saiconpo
- 0x806DCB64: aSumSake_key_anime_data
- 0x806DCB70: iam_sum_sake
- 0x806DCBA4: aSumShiokara_key_anime_data
- 0x806DCBB0: iam_sum_shiokara
- 0x806DCBE4: iam_sum_shoukaki
- 0x806DCC18: aSumSlot_anim
- 0x806DCC20: aSumSlot_aime_idx
- 0x806DCC9C: aSumSlot_func
- 0x806DCCB0: iam_sum_slot
- 0x806DCCE4: iam_sum_sofe01
- 0x806DCD18: iam_sum_sofe02
- 0x806DCD4C: iam_sum_sofe03
- 0x806DCD80: aSumStereo01_func
- 0x806DCD94: iam_sum_stereo01
- 0x806DCDC8: aSumStereo02_func
- 0x806DCDDC: iam_sum_stereo02
- 0x806DCE10: aSumStove01_func
- 0x806DCE24: iam_sum_stove01
- 0x806DCE58: iam_sum_suberi01
- 0x806DCE8C: aSumSuzumushi_func
- 0x806DCEA0: iam_sum_suzumushi
- 0x806DCED4: aSumSyouryou_func
- 0x806DCEE8: iam_sum_syouryou
- 0x806DCF1C: asumtaiko01_func
- 0x806DCF30: iam_sum_taiko01
- 0x806DCF64: iam_sum_takkyu
- 0x806DCF98: aSumTamamushi_key_anime_data
- 0x806DCFA4: iam_sum_tamamushi
- 0x806DCFD8: aSumTanago_key_anime_data
- 0x806DCFE4: iam_sum_tanago
- 0x806DD018: iam_sum_taru01
- 0x806DD04C: iam_sum_taru02
- 0x806DD080: aSumTekin01_func
- 0x806DD094: iam_sum_tekin01
- 0x806DD0C8: aSumTentou_key_anime_data
- 0x806DD0D4: iam_sum_tentou
- 0x806DD108: aSumTimpani01_func
- 0x806DD11C: iam_sum_timpani01
- 0x806DD150: aSumTonosama_func
- 0x806DD164: iam_sum_tonosama
- 0x806DD198: iam_sum_totemp01
- 0x806DD1CC: iam_sum_totemp02
- 0x806DD200: iam_sum_totemp03
- 0x806DD234: iam_sum_totemp04
- 0x806DD268: iam_sum_touro01
- 0x806DD29C: iam_sum_touro02
- 0x806DD2D0: iam_sum_touro03
- 0x806DD304: iam_sum_touro04
- 0x806DD338: aSumTukutuku_func
- 0x806DD34C: iam_sum_tukutuku
- 0x806DD380: aSumTv01_on_anime
- 0x806DD3EC: aSumTv01_func
- 0x806DD400: iam_sum_tv01
- 0x806DD434: aSumTv02_on_anime
- 0x806DD448: aSumTv02_func
- 0x806DD45C: iam_sum_tv02
- 0x806DD490: aSumUgui_key_anime_data
- 0x806DD49C: iam_sum_ugui
- 0x806DD4D0: aSumUnagi_key_anime_data
- 0x806DD4DC: iam_sum_unagi
- 0x806DD510: iam_sum_uwa_cup01
- 0x806DD544: iam_sum_uwa_poto01
- 0x806DD578: iam_sum_uwa_vase01
- 0x806DD5AC: iam_sum_uwa_vase02
- 0x806DD5E0: iam_sum_uwa_vase03
- 0x806DD614: aSumViola01_func
- 0x806DD628: iam_sum_viola01
- 0x806DD65C: aSumWakasagi_key_anime_data
- 0x806DD668: iam_sum_wakasagi
- 0x806DD69C: iam_sum_wc01
- 0x806DD6D0: iam_sum_wc02
- 0x806DD704: iam_sum_whi_bed01
- 0x806DD738: aSumWhiChest01_func
- 0x806DD74C: iam_sum_whi_chest01
- 0x806DD780: aSumWhiChest02_func
- 0x806DD794: iam_sum_whi_chest02
- 0x806DD7C8: aSumWhiLanp_func
- 0x806DD7DC: iam_sum_whi_lanp
- 0x806DD810: aSumWhiMirror_func
- 0x806DD824: iam_sum_whi_mirror
- 0x806DD858: iam_sum_whi_sofa01
- 0x806DD88C: iam_sum_x_bed01
- 0x806DD8C0: iam_sum_x_chair01
- 0x806DD8F4: aSumXChest01_func
- 0x806DD908: iam_sum_x_chest01
- 0x806DD93C: aSumXChest02_func
- 0x806DD950: iam_sum_x_chest02
- 0x806DD984: iam_sum_x_chest03
- 0x806DD9B8: aSumXClk_func
- 0x806DD9CC: iam_sum_x_clk
- 0x806DDA00: iam_sum_x_lanp
- 0x806DDA34: aSumX_Piano_func
- 0x806DDA48: iam_sum_x_piano
- 0x806DDA7C: iam_sum_x_sofa01
- 0x806DDAB0: iam_sum_x_table01
- 0x806DDAE4: aSumYamame_key_anime_data
- 0x806DDAF0: iam_sum_yamame
- 0x806DDB24: iam_tak_apollo1
- 0x806DDB58: iam_tak_arwing
- 0x806DDB8C: aTakAsteroid1_sklkey
- 0x806DDB98: iam_tak_asteroid1
- 0x806DDBCC: iam_tak_astro
- 0x806DDC00: aTakBarber_sklkey
- 0x806DDC0C: iam_tak_barber
- 0x806DDC40: iam_tak_cone01
- 0x806DDC74: iam_tak_cone03
- 0x806DDCA8: iam_tak_cube
- 0x806DDCDC: iam_tak_drum02
- 0x806DDD10: aTakEisei_sklkey
- 0x806DDD1C: iam_tak_eisei
- 0x806DDD50: iam_tak_hole01
- 0x806DDD84: fTIC_func
- 0x806DDD98: iam_tak_ice
- 0x806DDDCC: iam_tak_isu03
- 0x806DDE00: fTL_func
- 0x806DDE14: iam_tak_lion
- 0x806DDE48: fTM_func
- 0x806DDE5C: iam_tak_megami
- 0x806DDE90: aTakMetro_func
- 0x806DDEA4: iam_tak_metro
- 0x806DDED8: fTMny_func
- 0x806DDEEC: iam_tak_money
- 0x806DDF20: fTMN_func
- 0x806DDF34: iam_tak_moon
- 0x806DDF68: iam_tak_mooncar
- 0x806DDF9C: iam_tak_moti
- 0x806DDFD0: iam_tak_neko
- 0x806DE004: iam_tak_nikki01
- 0x806DE038: iam_tak_rocket1
- 0x806DE06C: iam_tak_sori01
- 0x806DE0A0: iam_tak_syogi
- 0x806DE0D4: iam_tak_shuttle
- 0x806DE108: iam_tak_snowisu
- 0x806DE13C: iam_tak_snowlamp
- 0x806DE170: aTakStation_sklkey
- 0x806DE17C: iam_tak_station
- 0x806DE1B0: iam_tak_table02
- 0x806DE200: int_tak_tailor_on_pal
- 0x806DE220: int_tak_tailor_off_pal
- 0x806DE240: fTTR_func
- 0x806DE254: iam_tak_tailor
- 0x806DE288: iam_tak_tekkin
- 0x806DE2BC: iam_tak_tetra
- 0x806DE2F0: fTTD_func
- 0x806DE304: iam_tak_toudai
- 0x806DE338: aTakUfo_sklkey
- 0x806DE344: iam_tak_ufo
- 0x806DE378: iam_tak_yaji
- 0x806DE3AC: iam_tak_yoroi
- 0x806DE3E0: iam_iid_benti
- 0x806DE414: iam_iid_diary
- 0x806DE448: iam_iid_funediary
- 0x806DE47C: iam_iid_mdiary
- 0x806DE4B0: iam_iid_newdiary
- 0x806DE4E4: iam_iid_ningyou
- 0x806DE518: iam_iid_snow
- 0x806DE54C: iam_iid_surf
- 0x806DE580: iam_iid_yuki
- 0x806DE5B4: fHF_func
- 0x806DE5C8: iam_hayakawa_famicom
- 0x806DE620: fRT_func
- 0x806DE634: iam_radio_test
- 0x806DE668: fGI_mat_table
- 0x806DE678: fGI_gfx_table
- 0x806DE688: fGI_func
- 0x806DE69C: iam_gold_item
- 0x806DE6D0: fUW_mat_table
- 0x806DE6F0: fUW_gfx_table
- 0x806DE710: fUW_func
- 0x806DE724: iam_utiwa
- 0x806DE758: fKZ_model_table
- 0x806DE778: fKZ_func
- 0x806DE78C: iam_kazaguruma
- 0x806DE7C0: fTOOL_mat_table
- 0x806DE7D0: fTOOL_gfx_table
- 0x806DE7E0: fTOOL_func
- 0x806DE7F4: iam_tool
- 0x806DE828: iam_hos_deskL
- 0x806DE85C: iam_hos_deskR
- 0x806DE890: iam_hos_flip
- 0x806DE8C4: fHMD_func
- 0x806DE8D8: iam_hos_mario_hata
- 0x806DE90C: fIMK_func
- 0x806DE920: iam_hos_mario_kinoko
- 0x806DE954: iam_hos_piknic
- 0x806DE988: iam_hos_Tdesk
- 0x806DE9BC: iam_iku_bugzapper
- 0x806DE9F0: iam_hos_turkey_sofa
- 0x806DEA24: iam_iku_busstop
- 0x806DEA58: iam_iku_candy
- 0x806DEA8C: iam_iku_cement
- 0x806DEAC0: iam_iku_chair
- 0x806DEAF4: iam_iku_cocoa
- 0x806DEB28: iam_iku_cow
- 0x806DEB5C: iam_iku_denko
- 0x806DEB90: iam_iku_flagman
- 0x806DEBC4: iam_iku_flip_top
- 0x806DEBF8: iam_iku_gold_green
- 0x806DEC2C: iam_iku_gold_red
- 0x806DEC60: iam_iku_ham
- 0x806DEC94: iam_iku_hazardous_top
- 0x806DECC8: iam_iku_ido
- 0x806DECFC: iam_iku_jack
- 0x806DED30: iam_iku_jersey
- 0x806DED64: fIMC_palette_table
- 0x806DED80: fIMC_func
- 0x806DED94: iam_iku_mario_coin
- 0x806DEDC8: fIMD_func
- 0x806DEDDC: iam_iku_mario_dokan
- 0x806DEE10: fIMH_palette_table
- 0x806DEE2C: fIMH_func
- 0x806DEE40: iam_iku_mario_hatena
- 0x806DEE74: fIMKoura_func
- 0x806DEE88: iam_iku_mario_koura
- 0x806DEEBC: iam_iku_mario_renga
- 0x806DEEF0: fIMT_func
- 0x806DEF04: iam_iku_mario_taihou
- 0x806DEF38: fIMS_palette_table
- 0x806DEF48: fIMS_func
- 0x806DEF5C: iam_iku_mario_star
- 0x806DEF90: iam_iku_orange
- 0x806DEFC4: iam_iku_reducespeed
- 0x806DEFF8: iam_iku_roller
- 0x806DF02C: iam_iku_saku_a
- 0x806DF060: iam_iku_saku_b
- 0x806DF094: iam_iku_sawhousev
- 0x806DF0C8: iam_iku_slip
- 0x806DF0FC: iam_iku_tumble
- 0x806DF130: iam_iku_turkey_bed
- 0x806DF164: iam_iku_turkey_lamp
- 0x806DF198: iam_iku_turkey_table
- 0x806DF1CC: fITT_switch_on_texture_table
- 0x806DF1DC: fITT_func
- 0x806DF1F0: iam_iku_turkey_TV
- 0x806DF224: iam_iku_ukai
- 0x806DF258: iam_iku_work
- 0x806DF28C: iam_sugi_alchair
- 0x806DF2C0: gSBBQ_func
- 0x806DF2D4: iam_sugi_barbecue
- 0x806DF308: iam_sugi_chesstable
- 0x806DF33C: fSKP_func
- 0x806DF350: iam_sugi_kpool
- 0x806DF384: iam_sugi_radiatorl
- 0x806DF3B8: fSGT_func
- 0x806DF3CC: iam_sugi_torch
- 0x806DF400: iam_yaz_b_bath
- 0x806DF434: iam_yaz_b_house
- 0x806DF470: fYC_func
- 0x806DF484: iam_yaz_candle
- 0x806DF4C0: int_yaz_fish_trophy_pal
- 0x806DF4E0: fYFT_func
- 0x806DF4F4: iam_yaz_fish_trophy
- 0x806DF528: fYMF_palette_table
- 0x806DF538: fYMF_func
- 0x806DF54C: iam_yaz_mario_flower
- 0x806DF580: iam_yaz_telescope
- 0x806DF5B4: iam_yaz_tub
- 0x806DF5E8: iam_yaz_turkey_chair
- 0x806DF61C: fYTCST_func
- 0x806DF630: iam_yaz_turkey_chest
- 0x806DF664: fYTC_func
- 0x806DF678: iam_yaz_turkey_closet
- 0x806DF6AC: iam_yaz_rocket
- 0x806DF6E0: iam_yaz_wagon
- 0x806DF714: iam_yos_b_feeder
- 0x806DF748: iam_yos_cactus
- 0x806DF77C: iam_yos_flamingo
- 0x806DF7B0: iam_yos_flamingo2
- 0x806DF7E4: iam_yos_gnome
- 0x806DF818: iam_yos_kflag
- 0x806DF84C: iam_yos_pbstove
- 0x806DF880: iam_yos_mailbox
- 0x806DF8B4: iam_yos_mario
- 0x806DF8E8: iam_yos_luigi
- 0x806DF91C: iam_yos_terrace
- 0x806DF950: iam_yos_turkey_mirror
- 0x806DF984: fYTW_func
- 0x806DF998: iam_yos_turkey_watch
- 0x806DF9CC: iam_yos_wheel
- 0x806DFA00: tak_ham1_texture_table
- 0x806DFA08: fTHM1_func
- 0x806DFA1C: iam_tak_ham1
- 0x806DFA50: fTakNes_func
- 0x806DFA64: iam_tak_nes01
- 0x806DFA98: fTNM_func
- 0x806DFAAC: iam_tak_noise
- 0x806DFAE0: fTSW_texture_table
- 0x806DFAE8: fTSW_func
- 0x806DFAFC: iam_tak_stew
- 0x806DFB40: int_tak_tent_on_pal
- 0x806DFB60: int_tak_tent_off_pal
- 0x806DFB80: fTTnt_func
- 0x806DFB94: iam_tak_tent
- 0x806DFBC8: iam_tak_tent_box
- 0x806DFBFC: iam_tak_tent_lamp
- 0x806DFC40: int_yaz_fish_trophy2_pal
- 0x806DFC60: fIFT2_func
- 0x806DFC74: iam_ike_fish_tro2
- 0x806DFCA8: iam_ike_prores_bench01
- 0x806DFCDC: iam_ike_prores_fense01
- 0x806DFD10: iam_ike_prores_ling01
- 0x806DFD44: iam_ike_prores_ling02
- 0x806DFD78: iam_ike_prores_ling03
- 0x806DFDAC: iam_ike_prores_mat01
- 0x806DFDE0: fIPPnch_func
- 0x806DFDF4: iam_ike_prores_punch01
- 0x806DFE28: aIPS_func
- 0x806DFE3C: iam_ike_prores_sandbag01
- 0x806DFE70: iam_ike_prores_table01
- 0x806DFEA4: iam_ike_tent_bike01
- 0x806DFED8: fITF_func
- 0x806DFEEC: iam_ike_tent_fire01
- 0x806DFF20: fITF02_func
- 0x806DFF34: iam_ike_tent_fire02
- 0x806DFF68: iam_ike_tent_kayak01
- 0x806DFF9C: iam_ike_tent_knap01
- 0x806DFFD0: iam_ike_tent_sleepbag01
- 0x806E0004: iam_nog_burner
- 0x806E0038: iam_nog_cornucopia
- 0x806E0080: int_nog_flower_a_pal
- 0x806E00A0: int_nog_flower_b_pal
- 0x806E00C0: int_nog_flower_c_pal
- 0x806E00E0: fNFL_model_data
- 0x806E014C: fNFL_func
- 0x806E0160: iam_nog_flower
- 0x806E0194: aNogG_func
- 0x806E01A8: iam_nog_gong
- 0x806E01DC: fNLM_func
- 0x806E01F0: iam_nog_lawnmower
- 0x806E0224: fNS_func
- 0x806E0238: iam_nog_sprinkler
- 0x806E026C: iam_dummy
- 0x806E02A0: glider_v
- 0x806E0350: glider_model
- 0x806E03A0: bev_1_v
- 0x806E1DF0: head_bev_model
- 0x806E2050: Rarm2_bev_model
- 0x806E20D8: Rarm1_bev_model
- 0x806E2150: Larm2_bev_model
- 0x806E21D8: Larm1_bev_model
- 0x806E2250: chest_bev_model
- 0x806E2360: tail1_bev_model
- 0x806E23D8: tail2_bev_model
- 0x806E2460: Rfoot2_bev_model
- 0x806E24E0: Rfoot1_bev_model
- 0x806E2538: Lfoot2_bev_model
- 0x806E25B8: Lfoot1_bev_model
- 0x806E2610: base_bev_model
- 0x806E2690: cKF_je_r_bev_1_tbl
- 0x806E27C8: cKF_bs_r_bev_1
- 0x806E27E0: bev_1_pal
- 0x806E2800: bev_1_eye1_TA_tex_txt
- 0x806E2900: bev_1_eye2_TA_tex_txt
- 0x806E2A00: bev_1_eye3_TA_tex_txt
- 0x806E2B00: bev_1_eye4_TA_tex_txt
- 0x806E2C00: bev_1_eye5_TA_tex_txt
- 0x806E2D00: bev_1_eye6_TA_tex_txt
- 0x806E2E00: bev_1_eye7_TA_tex_txt
- 0x806E2F00: bev_1_eye8_TA_tex_txt
- 0x806E3000: bev_1_tmem_txt
- 0x806E3500: act_ant_tex
- 0x806E3700: act_ant_v
- 0x806E37B0: act_antT_model
- 0x806E3828: act_ant_evw_anime_1
- 0x806E3830: act_ant_evw_anime
- 0x806E3838: ant_1_v
- 0x806E4F68: head_ant_model
- 0x806E5118: mouth_ant_model
- 0x806E51B0: Rarm2_ant_model
- 0x806E5238: Rarm1_ant_model
- 0x806E52B0: Larm2_ant_model
- 0x806E5338: Larm1_ant_model
- 0x806E53B0: chest_ant_model
- 0x806E5460: tail1_ant_model
- 0x806E5510: Rfoot2_ant_model
- 0x806E5590: Rfoot1_ant_model
- 0x806E5638: Lfoot2_ant_model
- 0x806E56B8: Lfoot1_ant_model
- 0x806E5760: base_ant_model
- 0x806E57D0: cKF_je_r_ant_1_tbl
- 0x806E5908: cKF_bs_r_ant_1
- 0x806E5920: ant_1_pal
- 0x806E5940: ant_1_eye1_TA_tex_txt
- 0x806E5A40: ant_1_eye2_TA_tex_txt
- 0x806E5B40: ant_1_eye3_TA_tex_txt
- 0x806E5C40: ant_1_eye4_TA_tex_txt
- 0x806E5D40: ant_1_eye5_TA_tex_txt
- 0x806E5E40: ant_1_eye6_TA_tex_txt
- 0x806E5F40: ant_1_eye7_TA_tex_txt
- 0x806E6040: ant_1_eye8_TA_tex_txt
- 0x806E6140: ant_1_tmem_txt
- 0x806E6640: ant_2_pal
- 0x806E6660: ant_2_eye1_TA_tex_txt
- 0x806E6760: ant_2_eye2_TA_tex_txt
- 0x806E6860: ant_2_eye3_TA_tex_txt
- 0x806E6960: ant_2_eye4_TA_tex_txt
- 0x806E6A60: ant_2_eye5_TA_tex_txt
- 0x806E6B60: ant_2_eye6_TA_tex_txt
- 0x806E6C60: ant_2_eye7_TA_tex_txt
- 0x806E6D60: ant_2_eye8_TA_tex_txt
- 0x806E6E60: ant_2_tmem_txt
- 0x806E7360: ant_3_pal
- 0x806E7380: ant_3_eye1_TA_tex_txt
- 0x806E7480: ant_3_eye2_TA_tex_txt
- 0x806E7580: ant_3_eye3_TA_tex_txt
- 0x806E7680: ant_3_eye4_TA_tex_txt
- 0x806E7780: ant_3_eye5_TA_tex_txt
- 0x806E7880: ant_3_eye6_TA_tex_txt
- 0x806E7980: ant_3_eye7_TA_tex_txt
- 0x806E7A80: ant_3_eye8_TA_tex_txt
- 0x806E7B80: ant_3_tmem_txt
- 0x806E8080: ant_4_pal
- 0x806E80A0: ant_4_eye1_TA_tex_txt
- 0x806E81A0: ant_4_eye2_TA_tex_txt
- 0x806E82A0: ant_4_eye3_TA_tex_txt
- 0x806E83A0: ant_4_eye4_TA_tex_txt
- 0x806E84A0: ant_4_eye5_TA_tex_txt
- 0x806E85A0: ant_4_eye6_TA_tex_txt
- 0x806E86A0: ant_4_eye7_TA_tex_txt
- 0x806E87A0: ant_4_eye8_TA_tex_txt
- 0x806E88A0: ant_4_tmem_txt
- 0x806E8DA0: ant_5_pal
- 0x806E8DC0: ant_5_eye1_TA_tex_txt
- 0x806E8EC0: ant_5_eye2_TA_tex_txt
- 0x806E8FC0: ant_5_eye3_TA_tex_txt
- 0x806E90C0: ant_5_eye4_TA_tex_txt
- 0x806E91C0: ant_5_eye5_TA_tex_txt
- 0x806E92C0: ant_5_eye6_TA_tex_txt
- 0x806E93C0: ant_5_eye7_TA_tex_txt
- 0x806E94C0: ant_5_eye8_TA_tex_txt
- 0x806E95C0: ant_5_tmem_txt
- 0x806E9AC0: wls_1_v
- 0x806EB510: head_wls_model
- 0x806EB6B0: mouth_wls_model
- 0x806EB710: Rarm2_wls_model
- 0x806EB7F8: Rarm1_wls_model
- 0x806EB870: Larm2_wls_model
- 0x806EB8F8: Larm1_wls_model
- 0x806EB970: chest_wls_model
- 0x806EBB88: Rfoot3_wls_model
- 0x806EBC10: Rfoot2_wls_model
- 0x806EBC88: Rfoot1_wls_model
- 0x806EBCE0: Lfoot3_wls_model
- 0x806EBD68: Lfoot2_wls_model
- 0x806EBDE0: Lfoot1_wls_model
- 0x806EBE38: base_wls_model
- 0x806EBEB0: cKF_je_r_wls_1_tbl
- 0x806EBFE8: cKF_bs_r_wls_1
- 0x806EC000: wls_1_pal
- 0x806EC020: wls_1_eye1_TA_tex_txt
- 0x806EC120: wls_1_eye2_TA_tex_txt
- 0x806EC220: wls_1_eye3_TA_tex_txt
- 0x806EC320: wls_1_eye4_TA_tex_txt
- 0x806EC420: wls_1_eye5_TA_tex_txt
- 0x806EC520: wls_1_eye6_TA_tex_txt
- 0x806EC620: wls_1_eye7_TA_tex_txt
- 0x806EC720: wls_1_eye8_TA_tex_txt
- 0x806EC820: wls_1_tmem_txt
- 0x806ECFA0: BG_TEST01_info
- 0x806ECFC8: BG_TEST01_player_data
- 0x806ECFD8: BG_TEST01_ctrl_actor_data
- 0x806ECFF0: BG_TEST01_XLU_info
- 0x806ED018: BG_TEST01_XLU_player_data
- 0x806ED028: BG_TEST01_XLU_ctrl_actor_data
- 0x806ED040: broker_shop_info
- 0x806ED080: BROKER_SHOP_player_data
- 0x806ED090: BROKER_SHOP_ctrl_actor_data
- 0x806ED0A8: BROKER_SHOP_door_data
- 0x806ED0C0: buggy_info
- 0x806ED0F0: BUGGY_player_data
- 0x806ED100: BUGGY_ctrl_actor_data
- 0x806ED110: BUGGY_door_data
- 0x806ED128: act_ball_b_pal
- 0x806ED148: act_ball_b_1_tex
- 0x806ED1C8: act_ball_b_v
- 0x806ED368: act_ball_b_model
- 0x806ED4D8: act_ball_d_pal
- 0x806ED4F8: act_ball_d_1_tex
- 0x806ED578: act_ball_d_2_tex
- 0x806ED5F8: act_ball_d_3_tex
- 0x806ED678: act_ball_d_v
- 0x806ED9D8: act_ball_d_model
- 0x806EDC38: act_ball_s_pal
- 0x806EDC58: act_ball_s_5_tex
- 0x806EDD58: act_ball_s_v
- 0x806EE458: act_ball_s_model
- 0x806EE620: act_balloon_wire_tex_txt
- 0x806EE6A0: act_balloon_head_tex_rgb_ia8
- 0x806EEAA0: act_balloon_v
- 0x806EEDE0: act_balloon_head_model
- 0x806EEE70: act_balloon_wireB_model
- 0x806EEF08: act_balloon_wireA_model
- 0x806EEF60: cKF_ckcb_r_act_balloon_tbl
- 0x806EEF64: cKF_kn_act_balloon_tbl
- 0x806EEF70: cKF_c_act_balloon_tbl
- 0x806EEF84: cKF_ds_act_balloon_tbl
- 0x806EF02C: cKF_ba_r_act_balloon
- 0x806EF040: cKF_je_r_act_balloon_tbl
- 0x806EF070: cKF_bs_r_act_balloon
- 0x806EF078: bea_1_v
- 0x806F0798: head_bea_model
- 0x806F08F0: Rarm2_bea_model
- 0x806F0970: Rarm1_bea_model
- 0x806F09F0: Larm2_bea_model
- 0x806F0A70: Larm1_bea_model
- 0x806F0AF0: chest_bea_model
- 0x806F0BA8: tail1_bea_model
- 0x806F0C30: Rfoot2_bea_model
- 0x806F0CB8: Rfoot1_bea_model
- 0x806F0D40: Lfoot2_bea_model
- 0x806F0DC8: Lfoot1_bea_model
- 0x806F0E50: base_bea_model
- 0x806F0EF0: cKF_je_r_bea_1_tbl
- 0x806F1028: cKF_bs_r_bea_1
- 0x806F1040: bea_1_pal
- 0x806F1060: bea_1_eye1_TA_tex_txt
- 0x806F1160: bea_1_eye2_TA_tex_txt
- 0x806F1260: bea_1_eye3_TA_tex_txt
- 0x806F1360: bea_1_eye4_TA_tex_txt
- 0x806F1460: bea_1_eye5_TA_tex_txt
- 0x806F1560: bea_1_eye6_TA_tex_txt
- 0x806F1660: bea_1_eye7_TA_tex_txt
- 0x806F1760: bea_1_eye8_TA_tex_txt
- 0x806F1860: bea_1_mouth1_TA_tex_txt
- 0x806F1960: bea_1_mouth2_TA_tex_txt
- 0x806F1A60: bea_1_mouth3_TA_tex_txt
- 0x806F1B60: bea_1_mouth4_TA_tex_txt
- 0x806F1C60: bea_1_mouth5_TA_tex_txt
- 0x806F1D60: bea_1_mouth6_TA_tex_txt
- 0x806F1E60: bea_1_tmem_txt
- 0x806F2260: bea_2_pal
- 0x806F2280: bea_2_eye1_TA_tex_txt
- 0x806F2380: bea_2_eye2_TA_tex_txt
- 0x806F2480: bea_2_eye3_TA_tex_txt
- 0x806F2580: bea_2_eye4_TA_tex_txt
- 0x806F2680: bea_2_eye5_TA_tex_txt
- 0x806F2780: bea_2_eye6_TA_tex_txt
- 0x806F2880: bea_2_eye7_TA_tex_txt
- 0x806F2980: bea_2_eye8_TA_tex_txt
- 0x806F2A80: bea_2_mouth1_TA_tex_txt
- 0x806F2B80: bea_2_mouth2_TA_tex_txt
- 0x806F2C80: bea_2_mouth3_TA_tex_txt
- 0x806F2D80: bea_2_mouth4_TA_tex_txt
- 0x806F2E80: bea_2_mouth5_TA_tex_txt
- 0x806F2F80: bea_2_mouth6_TA_tex_txt
- 0x806F3080: bea_2_tmem_txt
- 0x806F3480: bea_3_pal
- 0x806F34A0: bea_3_eye1_TA_tex_txt
- 0x806F35A0: bea_3_eye2_TA_tex_txt
- 0x806F36A0: bea_3_eye3_TA_tex_txt
- 0x806F37A0: bea_3_eye4_TA_tex_txt
- 0x806F38A0: bea_3_eye5_TA_tex_txt
- 0x806F39A0: bea_3_eye6_TA_tex_txt
- 0x806F3AA0: bea_3_eye7_TA_tex_txt
- 0x806F3BA0: bea_3_eye8_TA_tex_txt
- 0x806F3CA0: bea_3_mouth1_TA_tex_txt
- 0x806F3DA0: bea_3_mouth2_TA_tex_txt
- 0x806F3EA0: bea_3_mouth3_TA_tex_txt
- 0x806F3FA0: bea_3_mouth4_TA_tex_txt
- 0x806F40A0: bea_3_mouth5_TA_tex_txt
- 0x806F41A0: bea_3_mouth6_TA_tex_txt
- 0x806F42A0: bea_3_tmem_txt
- 0x806F46A0: bea_5_pal
- 0x806F46C0: bea_5_eye1_TA_tex_txt
- 0x806F47C0: bea_5_eye2_TA_tex_txt
- 0x806F48C0: bea_5_eye3_TA_tex_txt
- 0x806F49C0: bea_5_eye4_TA_tex_txt
- 0x806F4AC0: bea_5_eye5_TA_tex_txt
- 0x806F4BC0: bea_5_eye6_TA_tex_txt
- 0x806F4CC0: bea_5_eye7_TA_tex_txt
- 0x806F4DC0: bea_5_eye8_TA_tex_txt
- 0x806F4EC0: bea_5_mouth1_TA_tex_txt
- 0x806F4FC0: bea_5_mouth2_TA_tex_txt
- 0x806F50C0: bea_5_mouth3_TA_tex_txt
- 0x806F51C0: bea_5_mouth4_TA_tex_txt
- 0x806F52C0: bea_5_mouth5_TA_tex_txt
- 0x806F53C0: bea_5_mouth6_TA_tex_txt
- 0x806F54C0: bea_5_tmem_txt
- 0x806F58C0: bea_6_pal
- 0x806F58E0: bea_6_eye1_TA_tex_txt
- 0x806F59E0: bea_6_eye2_TA_tex_txt
- 0x806F5AE0: bea_6_eye3_TA_tex_txt
- 0x806F5BE0: bea_6_eye4_TA_tex_txt
- 0x806F5CE0: bea_6_eye5_TA_tex_txt
- 0x806F5DE0: bea_6_eye6_TA_tex_txt
- 0x806F5EE0: bea_6_eye7_TA_tex_txt
- 0x806F5FE0: bea_6_eye8_TA_tex_txt
- 0x806F60E0: bea_6_mouth1_TA_tex_txt
- 0x806F61E0: bea_6_mouth2_TA_tex_txt
- 0x806F62E0: bea_6_mouth3_TA_tex_txt
- 0x806F63E0: bea_6_mouth4_TA_tex_txt
- 0x806F64E0: bea_6_mouth5_TA_tex_txt
- 0x806F65E0: bea_6_mouth6_TA_tex_txt
- 0x806F66E0: bea_6_tmem_txt
- 0x806F6AE0: bea_7_pal
- 0x806F6B00: bea_7_eye1_TA_tex_txt
- 0x806F6C00: bea_7_eye2_TA_tex_txt
- 0x806F6D00: bea_7_eye3_TA_tex_txt
- 0x806F6E00: bea_7_eye4_TA_tex_txt
- 0x806F6F00: bea_7_eye5_TA_tex_txt
- 0x806F7000: bea_7_eye6_TA_tex_txt
- 0x806F7100: bea_7_eye7_TA_tex_txt
- 0x806F7200: bea_7_eye8_TA_tex_txt
- 0x806F7300: bea_7_mouth1_TA_tex_txt
- 0x806F7400: bea_7_mouth2_TA_tex_txt
- 0x806F7500: bea_7_mouth3_TA_tex_txt
- 0x806F7600: bea_7_mouth4_TA_tex_txt
- 0x806F7700: bea_7_mouth5_TA_tex_txt
- 0x806F7800: bea_7_mouth6_TA_tex_txt
- 0x806F7900: bea_7_tmem_txt
- 0x806F7D00: bea_8_pal
- 0x806F7D20: bea_8_eye1_TA_tex_txt
- 0x806F7E20: bea_8_eye2_TA_tex_txt
- 0x806F7F20: bea_8_eye3_TA_tex_txt
- 0x806F8020: bea_8_eye4_TA_tex_txt
- 0x806F8120: bea_8_eye5_TA_tex_txt
- 0x806F8220: bea_8_eye6_TA_tex_txt
- 0x806F8320: bea_8_eye7_TA_tex_txt
- 0x806F8420: bea_8_eye8_TA_tex_txt
- 0x806F8520: bea_8_mouth1_TA_tex_txt
- 0x806F8620: bea_8_mouth2_TA_tex_txt
- 0x806F8720: bea_8_mouth3_TA_tex_txt
- 0x806F8820: bea_8_mouth4_TA_tex_txt
- 0x806F8920: bea_8_mouth5_TA_tex_txt
- 0x806F8A20: bea_8_mouth6_TA_tex_txt
- 0x806F8B20: bea_8_tmem_txt
- 0x806F8F20: bea_9_pal
- 0x806F8F40: bea_9_eye1_TA_tex_txt
- 0x806F9040: bea_9_eye2_TA_tex_txt
- 0x806F9140: bea_9_eye3_TA_tex_txt
- 0x806F9240: bea_9_eye4_TA_tex_txt
- 0x806F9340: bea_9_eye5_TA_tex_txt
- 0x806F9440: bea_9_eye6_TA_tex_txt
- 0x806F9540: bea_9_eye7_TA_tex_txt
- 0x806F9640: bea_9_eye8_TA_tex_txt
- 0x806F9740: bea_9_mouth1_TA_tex_txt
- 0x806F9840: bea_9_mouth2_TA_tex_txt
- 0x806F9940: bea_9_mouth3_TA_tex_txt
- 0x806F9A40: bea_9_mouth4_TA_tex_txt
- 0x806F9B40: bea_9_mouth5_TA_tex_txt
- 0x806F9C40: bea_9_mouth6_TA_tex_txt
- 0x806F9D40: bea_9_tmem_txt
- 0x806FA140: bea_10_pal
- 0x806FA160: bea_10_eye1_TA_tex_txt
- 0x806FA260: bea_10_eye2_TA_tex_txt
- 0x806FA360: bea_10_eye3_TA_tex_txt
- 0x806FA460: bea_10_eye4_TA_tex_txt
- 0x806FA560: bea_10_eye5_TA_tex_txt
- 0x806FA660: bea_10_eye6_TA_tex_txt
- 0x806FA760: bea_10_eye7_TA_tex_txt
- 0x806FA860: bea_10_eye8_TA_tex_txt
- 0x806FA960: bea_10_mouth1_TA_tex_txt
- 0x806FAA60: bea_10_mouth2_TA_tex_txt
- 0x806FAB60: bea_10_mouth3_TA_tex_txt
- 0x806FAC60: bea_10_mouth4_TA_tex_txt
- 0x806FAD60: bea_10_mouth5_TA_tex_txt
- 0x806FAE60: bea_10_mouth6_TA_tex_txt
- 0x806FAF60: bea_10_tmem_txt
- 0x806FB360: act_bee_tex_txt
- 0x806FB560: act_bee_v
- 0x806FB900: act_bee_C_model
- 0x806FB998: act_bee_B_model
- 0x806FBA20: act_bee_A_model
- 0x806FBA98: cKF_ckcb_r_act_bee_tbl
- 0x806FBA9C: cKF_kn_act_bee_tbl
- 0x806FBAA0: cKF_c_act_bee_tbl
- 0x806FBABC: cKF_ds_act_bee_tbl
- 0x806FBAD4: cKF_ba_r_act_bee
- 0x806FBAE8: cKF_je_r_act_bee_tbl
- 0x806FBB18: cKF_bs_r_act_bee
- 0x806FBB20: obj_f_honeycomb_pal
- 0x806FBB40: obj_f_honeycomb_tex
- 0x806FBD40: obj_f_honeycomb_v
- 0x806FBD80: obj_f_honeycombT_mat_model
- 0x806FBDF8: obj_f_honeycombT_gfx_model
- 0x806FBE20: obj_f_tree_baby_tex
- 0x806FBFA0: obj_f_tree1_v
- 0x806FBFE0: obj_f_tree1T_mat_model
- 0x806FC000: obj_f_gold_tree1T_mat_model
- 0x806FC020: obj_f_tree1T_gfx_model
- 0x806FC040: obj_f_tree_dead_tex
- 0x806FC140: obj_f_tree1_dead_v
- 0x806FC180: obj_f_tree1_deadT_mat_model
- 0x806FC1A0: obj_f_gold_tree1_deadT_mat_model
- 0x806FC1C0: obj_f_tree1_deadT_gfx_model
- 0x806FC1E0: obj_f_tree_young_tex
- 0x806FC9E0: obj_f_tree2_v
- 0x806FCA50: obj_f_tree2T_mat_model
- 0x806FCA70: obj_f_gold_tree2T_mat_model
- 0x806FCA90: obj_f_tree2T_gfx_model
- 0x806FCAC0: obj_f_tree_leaf_tex
- 0x806FD2C0: obj_f_tree3_v
- 0x806FD380: obj_f_tree3_leafT_mat_model
- 0x806FD3A0: obj_f_gold_tree3_leafT_mat_model
- 0x806FD3C0: obj_f_tree3_leafT_gfx_model
- 0x806FD3E0: obj_f_tree3_trunkT_mat_model
- 0x806FD400: obj_f_gold_tree3_trunkT_mat_model
- 0x806FD420: obj_f_tree3_trunkT_gfx_model
- 0x806FD440: obj_f_tree_trunk_tex
- 0x806FDC40: obj_f_tree4_v
- 0x806FDD50: obj_f_tree4_leafT_mat_model
- 0x806FDD70: obj_f_gold_tree4_leafT_mat_model
- 0x806FDD90: obj_f_tree4_leafT_gfx_model
- 0x806FDDB8: obj_f_tree4_trunkT_mat_model
- 0x806FDDD8: obj_f_gold_tree4_trunkT_mat_model
- 0x806FDDF8: obj_f_tree4_trunkT_gfx_model
- 0x806FDE18: obj_f_tree5_v
- 0x806FDF78: obj_f_tree5_leafT_mat_model
- 0x806FDF98: obj_f_gold_tree5_leafT_mat_model
- 0x806FDFB8: obj_f_tree5_leafT_gfx_model
- 0x806FDFE8: obj_f_tree5_trunkT_mat_model
- 0x806FE008: obj_f_gold_tree5_trunkT_mat_model
- 0x806FE028: obj_f_tree5_trunkT_gfx_model
- 0x806FE048: data_bgd
- 0x8074B834: data_bgd_number
- 0x8074B840: mFM_obj_a_01_flower_pal
- 0x8074BBA0: mFM_obj_gold_01_pal_dol
- 0x8074BD60: mFM_obj_01_zassou_pal
- 0x8074BE80: obj_cedar3_shadow_v
- 0x8074BEC0: obj_cedar3_shadowT_mat_model
- 0x8074BEE0: obj_cedar3_shadowT_gfx_model
- 0x8074BEF0: obj_cedar4_shadow_v
- 0x8074BF30: obj_cedar4_shadowT_mat_model
- 0x8074BF50: obj_cedar4_shadowT_gfx_model
- 0x8074BF60: obj_cedar_shadow_tex
- 0x8074C160: obj_cedar5_shadow_v
- 0x8074C1A0: obj_cedar5_shadowT_mat_model
- 0x8074C1C0: obj_cedar5_shadowT_gfx_model
- 0x8074C1D0: obj_cstump3_shadow_v
- 0x8074C210: obj_cstump3_shadowT_mat_model
- 0x8074C230: obj_cstump3_shadowT_gfx_model
- 0x8074C240: obj_cstump4_shadow_v
- 0x8074C280: obj_cstump4_shadowT_mat_model
- 0x8074C2A0: obj_cstump4_shadowT_gfx_model
- 0x8074C2C0: obj_cstump_shadow_tex
- 0x8074C4C0: obj_cstump5_shadow_v
- 0x8074C500: obj_cstump5_shadowT_mat_model
- 0x8074C520: obj_cstump5_shadowT_gfx_model
- 0x8074C540: obj_s_cedar_baby_tex
- 0x8074C6C0: obj_s_cedar1_v
- 0x8074C700: obj_s_cedar1T_mat_model
- 0x8074C720: obj_s_cedar1T_gfx_model
- 0x8074C740: obj_s_cedar_dead_tex
- 0x8074C840: obj_s_cedar1_dead_v
- 0x8074C880: obj_s_cedar1_deadT_mat_model
- 0x8074C8A0: obj_s_cedar1_deadT_gfx_model
- 0x8074C8B8: obj_s_cedar2_v
- 0x8074C928: obj_s_cedar2T_mat_model
- 0x8074C948: obj_s_cedar2T_gfx_model
- 0x8074C980: obj_s_cedar_leaf_tex
- 0x8074D180: obj_s_cedar_young_tex
- 0x8074D980: obj_s_cedar3_v
- 0x8074DB60: obj_s_cedar3_leafT_mat_model
- 0x8074DB80: obj_s_cedar3_leafT_gfx_model
- 0x8074DBA8: obj_s_cedar3_trunkT_mat_model
- 0x8074DBC8: obj_s_cedar3_trunkT_gfx_model
- 0x8074DC00: obj_s_cedar_trunk_tex
- 0x8074E400: obj_s_cedar4_v
- 0x8074E760: obj_s_cedar4_trunkT_mat_model
- 0x8074E780: obj_s_cedar4_trunkT_gfx_model
- 0x8074E7A0: obj_s_cedar4_leafT_mat_model
- 0x8074E7C0: obj_s_cedar4_leafT_gfx_model
- 0x8074E808: obj_s_cedar5_v
- 0x8074ECB8: obj_s_cedar5_leafT_mat_model
- 0x8074ECD8: obj_s_cedar5_leafT_gfx_model
- 0x8074ED40: obj_s_cedar5_trunkT_mat_model
- 0x8074ED60: obj_s_cedar5_trunkT_gfx_model
- 0x8074ED80: obj_s_cstump2_v
- 0x8074EDF0: obj_s_cstump2T_mat_model
- 0x8074EE10: obj_s_cstump2T_gfx_model
- 0x8074EE30: obj_s_cstump3_v
- 0x8074EEA0: obj_s_cstump3T_mat_model
- 0x8074EEC0: obj_s_cstump3T_gfx_model
- 0x8074EEE0: obj_s_cedar_stump_tex
- 0x8074F2E0: obj_s_cstump4_v
- 0x8074F350: obj_s_cstump4T_mat_model
- 0x8074F370: obj_s_cstump4T_gfx_model
- 0x8074F390: obj_s_cstump5_v
- 0x8074F400: obj_s_cstump5T_mat_model
- 0x8074F420: obj_s_cstump5T_gfx_model
- 0x8074F440: obj_crack_tex
- 0x8074F640: obj_crack0T_g_mat_model
- 0x8074F660: obj_crack0T_s_mat_model
- 0x8074F680: obj_fence_pal
- 0x8074F6A0: obj_s_fence_tex
- 0x8074FAA0: obj_s_fenceL_v
- 0x8074FAE0: obj_s_fenceLT_mat_model
- 0x8074FB08: obj_s_fenceLT_gfx_model
- 0x8074FB20: obj_fence_shadow_tex
- 0x8074FD20: obj_fenceL_shadow_v
- 0x8074FD60: obj_fenceL_shadowT_mat_model
- 0x8074FD80: obj_fenceL_shadowT_gfx_model
- 0x8074FD90: obj_s_fenceS_v
- 0x8074FDD0: obj_s_fenceST_mat_model
- 0x8074FDF8: obj_s_fenceST_gfx_model
- 0x8074FE10: obj_fenceS_shadow_v
- 0x8074FE50: obj_fenceS_shadowT_mat_model
- 0x8074FE70: obj_fenceS_shadowT_gfx_model
- 0x80750680: obj_flower_a_v
- 0x80750700: obj_flower_b_v
- 0x80750780: obj_flower_c_v
- 0x80750800: obj_flower_aT_mat_model
- 0x80750820: obj_flower_bT_mat_model
- 0x80750840: obj_flower_cT_mat_model
- 0x80750860: obj_flower_aT_gfx_model
- 0x80750880: obj_flower_bT_gfx_model
- 0x807508A0: obj_flower_cT_gfx_model
- 0x807510C0: obj_flower_leaf_v
- 0x80751100: obj_flower_leafT_mat_model
- 0x80751120: obj_flower_leafT_gfx_model
- 0x80751140: obj_zassou_tex
- 0x80751540: obj_zassou_a_v
- 0x80751580: obj_zassou_aT_mat_model
- 0x807515A0: obj_zassou_aT_gfx_model
- 0x807515B8: obj_zassou_b_v
- 0x807515F8: obj_zassou_bT_gfx_model
- 0x80751610: obj_zassou_c_v
- 0x80751650: obj_zassou_cT_gfx_model
- 0x80751680: obj_hole_tex
- 0x80751880: obj_hole0_v
- 0x807518D0: obj_hole1_v
- 0x80751920: obj_hole2_v
- 0x80751970: obj_hole3_v
- 0x807519C0: obj_hole4_v
- 0x80751A10: obj_hole5_v
- 0x80751A60: obj_hole6_v
- 0x80751AB0: obj_hole7_v
- 0x80751B00: obj_hole8_v
- 0x80751B50: obj_hole9_v
- 0x80751BA0: obj_hole10_v
- 0x80751BF0: obj_hole11_v
- 0x80751C40: obj_hole12_v
- 0x80751C90: obj_hole13_v
- 0x80751CE0: obj_hole14_v
- 0x80751D30: obj_hole15_v
- 0x80751D80: obj_hole16_v
- 0x80751DD0: obj_hole17_v
- 0x80751E20: obj_hole18_v
- 0x80751E70: obj_hole19_v
- 0x80751EC0: obj_hole20_v
- 0x80751F10: obj_hole21_v
- 0x80751F60: obj_hole22_v
- 0x80751FB0: obj_hole23_v
- 0x80752000: obj_hole24_v
- 0x80752050: obj_hole0T_g_mat_model
- 0x80752070: obj_hole0T_s_mat_model
- 0x80752090: obj_hole0T_gfx_model
- 0x807520B0: obj_hole1T_gfx_model
- 0x807520D0: obj_hole2T_gfx_model
- 0x807520F0: obj_hole3T_gfx_model
- 0x80752110: obj_hole4T_gfx_model
- 0x80752130: obj_hole5T_gfx_model
- 0x80752150: obj_hole6T_gfx_model
- 0x80752170: obj_hole7T_gfx_model
- 0x80752190: obj_hole8T_gfx_model
- 0x807521B0: obj_hole9T_gfx_model
- 0x807521D0: obj_hole10T_gfx_model
- 0x807521F0: obj_hole11T_gfx_model
- 0x80752210: obj_hole12T_gfx_model
- 0x80752230: obj_hole13T_gfx_model
- 0x80752250: obj_hole14T_gfx_model
- 0x80752270: obj_hole15T_gfx_model
- 0x80752290: obj_hole16T_gfx_model
- 0x807522B0: obj_hole17T_gfx_model
- 0x807522D0: obj_hole18T_gfx_model
- 0x807522F0: obj_hole19T_gfx_model
- 0x80752310: obj_hole20T_gfx_model
- 0x80752330: obj_hole21T_gfx_model
- 0x80752350: obj_hole22T_gfx_model
- 0x80752370: obj_hole23T_gfx_model
- 0x80752390: obj_hole24T_gfx_model
- 0x807523C0: obj_b_hole_pal
- 0x807523E0: obj_g_hole_pal
- 0x80752400: obj_s_honeycomb_pal
- 0x80752420: obj_s_honeycomb_tex
- 0x80752620: obj_s_honeycomb_v
- 0x80752660: obj_s_honeycombT_mat_model
- 0x807526D8: obj_s_honeycombT_gfx_model
- 0x80752720: obj_s_melody_tex
- 0x80752F20: obj_s_melody_v
- 0x80752FA0: obj_s_melodyT_mat_model
- 0x80752FC8: obj_s_melodyT_gfx_model
- 0x80753000: obj_melody_shadow_tex
- 0x80753200: obj_melody_shadow_v
- 0x80753240: obj_melody_shadowT_mat_model
- 0x80753260: obj_melody_shadowT_gfx_model
- 0x807532A0: obj_s_notice_tex
- 0x80753AA0: obj_s_notice_v
- 0x80753B20: obj_s_noticeT_mat_model
- 0x80753B48: obj_s_noticeT_gfx_model
- 0x80753B80: obj_notice_shadow_tex
- 0x80753D80: obj_notice_shadow_v
- 0x80753DC0: obj_notice_shadowT_mat_model
- 0x80753DE0: obj_notice_shadowT_gfx_model
- 0x80753E00: obj_palm_shadow_tex
- 0x80754000: obj_palm3_shadow_v
- 0x80754040: obj_palm3_shadowT_mat_model
- 0x80754060: obj_palm3_shadowT_gfx_model
- 0x80754070: obj_palm4_shadow_v
- 0x807540B0: obj_palm4_shadowT_mat_model
- 0x807540D0: obj_palm4_shadowT_gfx_model
- 0x807540E0: obj_palm5_shadow_v
- 0x80754120: obj_palm5_shadowT_mat_model
- 0x80754140: obj_palm5_shadowT_gfx_model
- 0x80754360: obj_pstump3_shadow_v
- 0x807543A0: obj_pstump3_shadowT_mat_model
- 0x807543C0: obj_pstump3_shadowT_gfx_model
- 0x807545E0: obj_pstump4_shadow_v
- 0x80754620: obj_pstump4_shadowT_mat_model
- 0x80754640: obj_pstump4_shadowT_gfx_model
- 0x80754860: obj_pstump5_shadow_v
- 0x807548A0: obj_pstump5_shadowT_mat_model
- 0x807548C0: obj_pstump5_shadowT_gfx_model
- 0x807548E0: obj_w_palm_baby_tex
- 0x80754A60: obj_s_palm1_v
- 0x80754AA0: obj_w_palm1T_mat_model
- 0x80754AC0: obj_w_palm1T_gfx_model
- 0x80754AE0: obj_s_palm_dead_tex
- 0x80754BE0: obj_s_palm1_dead_v
- 0x80754C20: obj_s_palm1_deadT_mat_model
- 0x80754C40: obj_s_palm1_deadT_gfx_model
- 0x80755460: obj_s_palm2_v
- 0x807554D0: obj_s_palm2T_mat_model
- 0x807554F0: obj_s_palm2T_gfx_model
- 0x80756520: obj_s_palm3_v
- 0x80756690: obj_s_palm3_leafT_mat_model
- 0x807566A8: obj_s_palm3_leafT_gfx_model
- 0x807566D0: obj_s_palm3_trunkT_mat_model
- 0x807566F0: obj_s_palm3_trunkT_gfx_model
- 0x80757720: obj_s_palm4_v
- 0x80757990: obj_s_palm4_leafT_mat_model
- 0x807579A8: obj_s_palm4_leafT_gfx_model
- 0x807579E0: obj_s_palm4_trunkT_mat_model
- 0x80757A00: obj_s_palm4_trunkT_gfx_model
- 0x80758A20: obj_s_palm5_v
- 0x80758D90: obj_s_palm5_trunkT_mat_model
- 0x80758DB0: obj_s_palm5_trunkT_gfx_model
- 0x80758DD0: obj_s_palm5_leafT_mat_model
- 0x80758DF0: obj_s_palm5_leafT_gfx_model
- 0x80758E60: obj_s_palm5_coco_v
- 0x80758EE0: obj_s_palm5_cocoT_gfx_model
- 0x80759700: obj_s_pstump2_v
- 0x80759770: obj_s_pstump2T_mat_model
- 0x80759790: obj_s_pstump2T_gfx_model
- 0x80759FC0: obj_s_pstump3_v
- 0x8075A030: obj_s_pstump3T_mat_model
- 0x8075A050: obj_s_pstump3T_gfx_model
- 0x8075A480: obj_s_pstump4_v
- 0x8075A4F0: obj_s_pstump4T_mat_model
- 0x8075A510: obj_s_pstump4T_gfx_model
- 0x8075A940: obj_s_pstump5_v
- 0x8075A9B0: obj_s_spstump5T_mat_model
- 0x8075A9D0: obj_s_spstump5T_gfx_model
- 0x8075AA20: obj_s_sightmap_tex
- 0x8075B220: obj_s_sightmap_v
- 0x8075B2A0: obj_s_sightmapT_mat_model
- 0x8075B2C8: obj_s_sightmapT_gfx_model
- 0x8075B300: obj_sightmap_shadow_tex
- 0x8075B500: obj_sightmap_shadow_v
- 0x8075B540: obj_sightmap_shadowT_mat_model
- 0x8075B560: obj_sightmap_shadowT_gfx_model
- 0x8075B580: obj_s_stoneA_pal
- 0x8075B5A0: obj_s_stoneA_tex
- 0x8075B7A0: obj_s_stoneA_v
- 0x8075B840: obj_s_stoneA_mat_model
- 0x8075B868: obj_s_stoneA_gfx_model
- 0x8075B8A0: obj_stone_shadow_tex
- 0x8075B920: obj_stoneA_shadow_v
- 0x8075B9C0: obj_stoneA_shadowT_mat_model
- 0x8075B9E0: obj_stoneA_shadowT_gfx_model
- 0x8075BA00: obj_s_stoneB_v
- 0x8075BAC0: obj_s_stoneB_gfx_model
- 0x8075BAF0: obj_stoneB_shadow_v
- 0x8075BBB0: obj_stoneB_shadowT_gfx_model
- 0x8075BBD0: obj_s_stoneC_v
- 0x8075BC90: obj_s_stoneC_gfx_model
- 0x8075BCC0: obj_stoneC_shadow_v
- 0x8075BD80: obj_stoneC_shadowT_gfx_model
- 0x8075BDA0: obj_s_stoneD_v
- 0x8075BE90: obj_s_stoneD_gfx_model
- 0x8075BEC8: obj_stoneD_shadow_v
- 0x8075BF48: obj_stoneD_shadowT_gfx_model
- 0x8075BF60: obj_s_stoneE_v
- 0x8075C050: obj_s_stoneE_gfx_model
- 0x8075C088: obj_stoneE_shadow_v
- 0x8075C128: obj_stoneE_shadowT_gfx_model
- 0x8075C148: obj_s_stump2_v
- 0x8075C1B8: obj_stump2T_mat_model
- 0x8075C1D8: obj_gold_stump2T_mat_model
- 0x8075C1F8: obj_stump2T_gfx_model
- 0x8075C218: obj_s_stump3_v
- 0x8075C288: obj_stump3T_mat_model
- 0x8075C2A8: obj_gold_stump3T_mat_model
- 0x8075C2C8: obj_stump3T_gfx_model
- 0x8075C300: obj_stump_shadow_tex
- 0x8075C500: obj_stump3_shadow_v
- 0x8075C540: obj_stump3_shadowT_mat_model
- 0x8075C560: obj_stump3_shadowT_gfx_model
- 0x8075C580: obj_s_tree_stump_tex
- 0x8075C980: obj_s_stump4_v
- 0x8075C9F0: obj_stump4T_mat_model
- 0x8075CA10: obj_gold_stump4T_mat_model
- 0x8075CA30: obj_stump4T_gfx_model
- 0x8075CA50: obj_stump4_shadow_v
- 0x8075CA90: obj_stump4_shadowT_mat_model
- 0x8075CAB0: obj_stump4_shadowT_gfx_model
- 0x8075CAC0: obj_s_stump5_v
- 0x8075CB30: obj_stump5T_mat_model
- 0x8075CB50: obj_gold_stump5T_mat_model
- 0x8075CB70: obj_stump5T_gfx_model
- 0x8075CB90: obj_stump5_shadow_v
- 0x8075CBD0: obj_stump5_shadowT_mat_model
- 0x8075CBF0: obj_stump5_shadowT_gfx_model
- 0x8075CCE0: obj_taneT_mat_model
- 0x8075CD08: obj_taneT_gfx_model
- 0x8075CD20: obj_s_tree_baby_tex
- 0x8075CEA0: obj_s_tree1_v
- 0x8075CEE0: obj_s_tree1T_mat_model
- 0x8075CF00: obj_s_gold_tree1T_mat_model
- 0x8075CF20: obj_s_tree1T_gfx_model
- 0x8075CF40: obj_s_tree_dead_tex
- 0x8075D040: obj_s_tree1_dead_v
- 0x8075D080: obj_s_tree1_deadT_mat_model
- 0x8075D0A0: obj_s_gold_tree1_deadT_mat_model
- 0x8075D0C0: obj_s_tree1_deadT_gfx_model
- 0x8075D0E0: obj_s_tree_young_tex
- 0x8075D8E0: obj_s_tree2_v
- 0x8075D950: obj_s_gold_tree2T_mat_model
- 0x8075D970: obj_s_tree2T_gfx_model
- 0x8075D9A0: obj_s_tree3_leaf_tex
- 0x8075E1A0: obj_s_tree3_v
- 0x8075E260: obj_s_gold_tree3_leafT_mat_model
- 0x8075E280: obj_s_tree3_leafT_gfx_model
- 0x8075E2A0: obj_s_tree3_trunkT_mat_model
- 0x8075E2C0: obj_s_gold_tree3_trunkT_mat_model
- 0x8075E2E0: obj_s_tree3_trunkT_gfx_model
- 0x8075E300: obj_tree_shadow_tex
- 0x8075E500: obj_tree3_shadow_v
- 0x8075E540: obj_tree3_shadowT_mat_model
- 0x8075E560: obj_tree3_shadowT_gfx_model
- 0x8075E580: obj_s_tree4_trunk_tex
- 0x8075ED80: obj_s_tree4_v
- 0x8075EE90: obj_s_gold_tree4_leafT_mat_model
- 0x8075EEB0: obj_s_tree4_leafT_gfx_model
- 0x8075EED8: obj_s_gold_tree4_trunkT_mat_model
- 0x8075EEF8: obj_s_tree4_trunkT_gfx_model
- 0x8075EF18: obj_tree4_shadow_v
- 0x8075EF58: obj_tree4_shadowT_mat_model
- 0x8075EF78: obj_tree4_shadowT_gfx_model
- 0x8075EFA0: obj_s_tree5_v
- 0x8075F100: obj_s_tree5_leafT_mat_model
- 0x8075F120: obj_s_gold_tree5_leafT_mat_model
- 0x8075F140: obj_s_tree5_leafT_gfx_model
- 0x8075F170: obj_s_tree5_trunkT_mat_model
- 0x8075F190: obj_s_gold_tree5_trunkT_mat_model
- 0x8075F1B0: obj_s_tree5_trunkT_gfx_model
- 0x8075F1D0: obj_s_tree5_apple_v
- 0x8075F290: obj_s_tree5_apple_appleT_gfx_model
- 0x8075F2B0: obj_tree5_shadow_v
- 0x8075F2F0: obj_tree5_shadowT_mat_model
- 0x8075F310: obj_tree5_shadowT_gfx_model
- 0x8075F320: mFM_obj_palm_01_pal
- 0x8075F4E0: mFM_obj_tree_01_pal
- 0x8075F6A0: mFM_obj_tree_01_pal_dol
- 0x8075F860: obj_w_cedar_baby_tex
- 0x8075F9E0: obj_w_cedar1_v
- 0x8075FA20: obj_w_cedar1T_mat_model
- 0x8075FA40: obj_w_cedar1T_gfx_model
- 0x8075FA60: obj_w_cedar_dead_tex
- 0x8075FB60: obj_w_cedar1_dead_v
- 0x8075FBA0: obj_w_cedar1_deadT_mat_model
- 0x8075FBC0: obj_w_cedar1_deadT_gfx_model
- 0x8075FBD8: obj_w_cedar2_v
- 0x8075FC48: obj_w_cedar2T_mat_model
- 0x8075FC68: obj_w_cedar2T_gfx_model
- 0x8075FCA0: obj_w_cedar_leaf_tex
- 0x807604A0: obj_w_cedar_young_tex
- 0x80760CA0: obj_w_cedar3_v
- 0x80760E80: obj_w_cedar3_leafT_mat_model
- 0x80760EA0: obj_w_cedar3_leafT_gfx_model
- 0x80760EC8: obj_w_cedar3_trunkT_mat_model
- 0x80760EE8: obj_w_cedar3_trunkT_gfx_model
- 0x80760F20: obj_w_cedar_trunk_tex
- 0x80761720: obj_w_cedar4_v
- 0x80761A80: obj_w_cedar4_trunkT_mat_model
- 0x80761AA0: obj_w_cedar4_trunkT_gfx_model
- 0x80761AC0: obj_w_cedar4_leafT_mat_model
- 0x80761AE0: obj_w_cedar4_leafT_gfx_model
- 0x80761B28: obj_w_cedar5_v
- 0x80761FD8: obj_w_cedar5_leafT_mat_model
- 0x80761FF8: obj_w_cedar5_leafT_gfx_model
- 0x80762060: obj_w_cedar5_trunkT_mat_model
- 0x80762080: obj_w_cedar5_trunkT_gfx_model
- 0x807620A0: obj_w_cstump2_v
- 0x80762110: obj_w_cstump2T_mat_model
- 0x80762130: obj_w_cstump2T_gfx_model
- 0x80762150: obj_w_cstump3_v
- 0x807621C0: obj_w_cstump3T_mat_model
- 0x807621E0: obj_w_cstump3T_gfx_model
- 0x80762200: obj_w_cedar_stump_tex
- 0x80762600: obj_w_cstump4_v
- 0x80762670: obj_w_cstump4T_mat_model
- 0x80762690: obj_w_cstump4T_gfx_model
- 0x807626B0: obj_w_cstump5_v
- 0x80762720: obj_w_cstump5T_mat_model
- 0x80762740: obj_w_cstump5T_gfx_model
- 0x80762760: obj_w_fence_tex
- 0x80762B60: obj_w_fenceL_v
- 0x80762BA0: obj_w_fenceLT_mat_model
- 0x80762BC8: obj_w_fenceLT_gfx_model
- 0x80762BE0: obj_w_fenceS_v
- 0x80762C20: obj_w_fenceST_mat_model
- 0x80762C48: obj_w_fenceST_gfx_model
- 0x80762C60: obj_w_honeycomb_pal
- 0x80762C80: obj_w_honeycomb_tex
- 0x80762E80: obj_w_honeycomb_v
- 0x80762EC0: obj_w_honeycombT_mat_model
- 0x80762F38: obj_w_honeycombT_gfx_model
- 0x80762F80: obj_w_melody_tex
- 0x80763780: obj_w_melody_v
- 0x80763800: obj_w_melodyT_mat_model
- 0x80763828: obj_w_melodyT_gfx_model
- 0x80763880: obj_w_notice_tex
- 0x80764080: obj_w_notice_v
- 0x80764100: obj_w_noticeT_mat_model
- 0x80764128: obj_w_noticeT_gfx_model
- 0x80764160: obj_s_palm_baby_tex
- 0x807642E0: obj_w_palm1_v
- 0x80764320: obj_s_palm1T_mat_model
- 0x80764340: obj_s_palm1T_gfx_model
- 0x80764360: obj_w_palm_dead_tex
- 0x80764460: obj_w_palm1_dead_v
- 0x807644A0: obj_w_palm1_deadT_mat_model
- 0x807644C0: obj_w_palm1_deadT_gfx_model
- 0x80764CE0: obj_w_palm2_v
- 0x80764D50: obj_w_palm2T_mat_model
- 0x80764D70: obj_w_palm2T_gfx_model
- 0x80765DA0: obj_w_palm3_v
- 0x80765F10: obj_w_palm3_leafT_mat_model
- 0x80765F30: obj_w_palm3_leafT_gfx_model
- 0x80765F58: obj_w_palm3_trunkT_mat_model
- 0x80765F78: obj_w_palm3_trunkT_gfx_model
- 0x80766FA0: obj_w_palm4_v
- 0x80767210: obj_w_palm4_leafT_mat_model
- 0x80767230: obj_w_palm4_leafT_gfx_model
- 0x80767268: obj_w_palm4_trunkT_mat_model
- 0x80767288: obj_w_palm4_trunkT_gfx_model
- 0x807682C0: obj_w_palm5_v
- 0x80768630: obj_w_palm5_trunkT_mat_model
- 0x80768650: obj_w_palm5_trunkT_gfx_model
- 0x80768670: obj_w_palm5_leafT_mat_model
- 0x80768690: obj_w_palm5_leafT_gfx_model
- 0x80768700: obj_w_palm5_coco_v
- 0x80768780: obj_w_palm5_cocoT_gfx_model
- 0x80768FA0: obj_w_pstump2_v
- 0x80769010: obj_w_pstump2T_mat_model
- 0x80769030: obj_w_pstump2T_gfx_model
- 0x80769860: obj_w_pstump3_v
- 0x807698D0: obj_w_pstump3T_mat_model
- 0x807698F0: obj_w_pstump3T_gfx_model
- 0x80769D20: obj_w_pstump4_v
- 0x80769D90: obj_w_pstump4T_mat_model
- 0x80769DB0: obj_w_pstump4T_gfx_model
- 0x8076A1E0: obj_w_pstump5_v
- 0x8076A250: obj_w_spstump5T_mat_model
- 0x8076A270: obj_w_spstump5T_gfx_model
- 0x8076A2C0: obj_w_sightmap_tex
- 0x8076AAC0: obj_w_sightmap_v
- 0x8076AB40: obj_w_sightmapT_mat_model
- 0x8076AB68: obj_w_sightmapT_gfx_model
- 0x8076ABA0: obj_w_stone_pal
- 0x8076ABC0: obj_w_stone_tex
- 0x8076ADC0: obj_w_stoneA_v
- 0x8076AE60: obj_w_stoneA_mat_model
- 0x8076AE88: obj_w_stoneA_gfx_model
- 0x8076AEB0: obj_w_stoneB_v
- 0x8076AF70: obj_w_stoneB_gfx_model
- 0x8076AFA0: obj_w_stoneC_v
- 0x8076B060: obj_w_stoneC_gfx_model
- 0x8076B090: obj_w_stoneD_v
- 0x8076B180: obj_w_stoneD_gfx_model
- 0x8076B1B8: obj_w_stoneE_v
- 0x8076B2A8: obj_w_stoneE_gfx_model
- 0x8076B2E0: obj_w_tree_baby_tex
- 0x8076B460: obj_w_tree1_v
- 0x8076B4A0: obj_w_tree1T_mat_model
- 0x8076B4C0: obj_w_gold_tree1T_mat_model
- 0x8076B4E0: obj_w_tree1T_gfx_model
- 0x8076B500: obj_w_tree_dead_tex
- 0x8076B600: obj_w_tree1_dead_v
- 0x8076B640: obj_w_tree1_deadT_mat_model
- 0x8076B660: obj_w_gold_tree1_deadT_mat_model
- 0x8076B680: obj_w_tree1_deadT_gfx_model
- 0x8076B6A0: obj_w_tree_young_tex
- 0x8076BEA0: obj_w_tree2_v
- 0x8076BF10: obj_w_tree2T_mat_model
- 0x8076BF30: obj_w_gold_tree2T_mat_model
- 0x8076BF50: obj_w_tree2T_gfx_model
- 0x8076BF80: obj_w_tree_leaf_tex
- 0x8076C780: obj_w_tree3_v
- 0x8076C840: obj_w_tree3_leafT_mat_model
- 0x8076C860: obj_w_gold_tree3_leafT_mat_model
- 0x8076C880: obj_w_tree3_leafT_gfx_model
- 0x8076C8A0: obj_w_tree3_trunkT_mat_model
- 0x8076C8C0: obj_w_gold_tree3_trunkT_mat_model
- 0x8076C8E0: obj_w_tree3_trunkT_gfx_model
- 0x8076C900: obj_w_tree_trunk_tex
- 0x8076D100: obj_w_tree4_v
- 0x8076D210: obj_w_tree4_leafT_mat_model
- 0x8076D230: obj_w_gold_tree4_leafT_mat_model
- 0x8076D250: obj_w_tree4_leafT_gfx_model
- 0x8076D278: obj_w_tree4_trunkT_mat_model
- 0x8076D298: obj_w_gold_tree4_trunkT_mat_model
- 0x8076D2B8: obj_w_tree4_trunkT_gfx_model
- 0x8076D2D8: obj_w_tree5_v
- 0x8076D438: obj_w_tree5_leafT_mat_model
- 0x8076D458: obj_w_gold_tree5_leafT_mat_model
- 0x8076D478: obj_w_tree5_leafT_gfx_model
- 0x8076D4A8: obj_w_tree5_trunkT_mat_model
- 0x8076D4C8: obj_w_gold_tree5_trunkT_mat_model
- 0x8076D4E8: obj_w_tree5_trunkT_gfx_model
- 0x8076D540: obj_x_cedar_light_tex
- 0x8076D740: obj_x_cedar5_light_v
- 0x8076D900: obj_x_ceder5_lightT_mat_model
- 0x8076D948: obj_x_ceder5_lightT_gfx_model
- 0x8076D988: obj_x_honeycomb_pal
- 0x8076D9A8: obj_x_honeycomb_tex
- 0x8076DBA8: obj_x_honeycomb_v
- 0x8076DBE8: obj_x_honeycombT_mat_model
- 0x8076DC60: obj_x_honeycombT_gfx_model
- 0x8076DC80: obj_x_tree_light_tex
- 0x8076DE80: obj_x_tree5_light_v
- 0x8076DF40: obj_x_tree5_lightT_mat_model
- 0x8076DF88: obj_x_tree5_lightT_gfx_model
- 0x8076DFA8: pbr_1_v
- 0x8076F6E8: head_pbr_model
- 0x8076F8B0: mouth_pbr_model
- 0x8076F930: Rarm2_pbr_model
- 0x8076F9B0: Rarm1_pbr_model
- 0x8076FA28: Larm2_pbr_model
- 0x8076FAA8: Larm1_pbr_model
- 0x8076FB20: chest_pbr_model
- 0x8076FBF8: tail1_pbr_model
- 0x8076FCA8: Rfoot3_pbr_model
- 0x8076FD58: Rfoot2_pbr_model
- 0x8076FDD8: Rfoot1_pbr_model
- 0x8076FE30: Lfoot3_pbr_model
- 0x8076FEE0: Lfoot2_pbr_model
- 0x8076FF60: Lfoot1_pbr_model
- 0x8076FFB8: base_pbr_model
- 0x80770038: cKF_je_r_pbr_1_tbl
- 0x80770170: cKF_bs_r_pbr_1
- 0x80770180: pbr_1_pal
- 0x807701A0: pbr_1_eye1_TA_tex_txt
- 0x807702A0: pbr_1_eye2_TA_tex_txt
- 0x807703A0: pbr_1_eye3_TA_tex_txt
- 0x807704A0: pbr_1_eye4_TA_tex_txt
- 0x807705A0: pbr_1_eye5_TA_tex_txt
- 0x807706A0: pbr_1_eye6_TA_tex_txt
- 0x807707A0: pbr_1_eye7_TA_tex_txt
- 0x807708A0: pbr_1_eye8_TA_tex_txt
- 0x807709A0: pbr_1_tmem_txt
- 0x80770EA0: pbr_2_pal
- 0x80770EC0: pbr_2_eye1_TA_tex_txt
- 0x80770FC0: pbr_2_eye2_TA_tex_txt
- 0x807710C0: pbr_2_eye3_TA_tex_txt
- 0x807711C0: pbr_2_eye4_TA_tex_txt
- 0x807712C0: pbr_2_eye5_TA_tex_txt
- 0x807713C0: pbr_2_eye6_TA_tex_txt
- 0x807714C0: pbr_2_eye7_TA_tex_txt
- 0x807715C0: pbr_2_eye8_TA_tex_txt
- 0x807716C0: pbr_2_tmem_txt
- 0x80771BC0: pbr_3_pal
- 0x80771BE0: pbr_3_eye1_TA_tex_txt
- 0x80771CE0: pbr_3_eye2_TA_tex_txt
- 0x80771DE0: pbr_3_eye3_TA_tex_txt
- 0x80771EE0: pbr_3_eye4_TA_tex_txt
- 0x80771FE0: pbr_3_eye5_TA_tex_txt
- 0x807720E0: pbr_3_eye6_TA_tex_txt
- 0x807721E0: pbr_3_eye7_TA_tex_txt
- 0x807722E0: pbr_3_eye8_TA_tex_txt
- 0x807723E0: pbr_3_tmem_txt
- 0x807728E0: pbr_4_pal
- 0x80772900: pbr_4_eye1_TA_tex_txt
- 0x80772A00: pbr_4_eye2_TA_tex_txt
- 0x80772B00: pbr_4_eye3_TA_tex_txt
- 0x80772C00: pbr_4_eye4_TA_tex_txt
- 0x80772D00: pbr_4_eye5_TA_tex_txt
- 0x80772E00: pbr_4_eye6_TA_tex_txt
- 0x80772F00: pbr_4_eye7_TA_tex_txt
- 0x80773000: pbr_4_eye8_TA_tex_txt
- 0x80773100: pbr_4_tmem_txt
- 0x80773600: pbr_5_pal
- 0x80773620: pbr_5_eye1_TA_tex_txt
- 0x80773720: pbr_5_eye2_TA_tex_txt
- 0x80773820: pbr_5_eye3_TA_tex_txt
- 0x80773920: pbr_5_eye4_TA_tex_txt
- 0x80773A20: pbr_5_eye5_TA_tex_txt
- 0x80773B20: pbr_5_eye6_TA_tex_txt
- 0x80773C20: pbr_5_eye7_TA_tex_txt
- 0x80773D20: pbr_5_eye8_TA_tex_txt
- 0x80773E20: pbr_5_tmem_txt
- 0x80774320: brd_1_v
- 0x80775920: head_brd_model
- 0x80775AA0: mouth_brd_model
- 0x80775B18: Rarm2_brd_model
- 0x80775B98: Rarm1_brd_model
- 0x80775C10: Larm2_brd_model
- 0x80775C90: Larm1_brd_model
- 0x80775D08: chest_brd_model
- 0x80775DD0: tail1_brd_model
- 0x80775EA0: Rfoot3_brd_model
- 0x80775F40: Rfoot2_brd_model
- 0x80775FC0: Rfoot1_brd_model
- 0x80776018: Lfoot3_brd_model
- 0x807760B8: Lfoot2_brd_model
- 0x80776138: Lfoot1_brd_model
- 0x80776190: base_brd_model
- 0x80776218: cKF_je_r_brd_1_tbl
- 0x80776350: cKF_bs_r_brd_1
- 0x80776360: brd_1_pal
- 0x80776380: brd_1_eye1_TA_tex_txt
- 0x80776480: brd_1_eye2_TA_tex_txt
- 0x80776580: brd_1_eye3_TA_tex_txt
- 0x80776680: brd_1_eye4_TA_tex_txt
- 0x80776780: brd_1_eye5_TA_tex_txt
- 0x80776880: brd_1_eye6_TA_tex_txt
- 0x80776980: brd_1_eye7_TA_tex_txt
- 0x80776A80: brd_1_eye8_TA_tex_txt
- 0x80776B80: brd_1_tmem_txt
- 0x80777080: brd_2_pal
- 0x807770A0: brd_2_eye1_TA_tex_txt
- 0x807771A0: brd_2_eye2_TA_tex_txt
- 0x807772A0: brd_2_eye3_TA_tex_txt
- 0x807773A0: brd_2_eye4_TA_tex_txt
- 0x807774A0: brd_2_eye5_TA_tex_txt
- 0x807775A0: brd_2_eye6_TA_tex_txt
- 0x807776A0: brd_2_eye7_TA_tex_txt
- 0x807777A0: brd_2_eye8_TA_tex_txt
- 0x807778A0: brd_2_tmem_txt
- 0x80777DA0: brd_11_pal
- 0x80777DC0: brd_11_eye1_TA_tex_txt
- 0x80777EC0: brd_11_eye2_TA_tex_txt
- 0x80777FC0: brd_11_eye3_TA_tex_txt
- 0x807780C0: brd_11_eye4_TA_tex_txt
- 0x807781C0: brd_11_eye5_TA_tex_txt
- 0x807782C0: brd_11_eye6_TA_tex_txt
- 0x807783C0: brd_11_eye7_TA_tex_txt
- 0x807784C0: brd_11_eye8_TA_tex_txt
- 0x807785C0: brd_11_tmem_txt
- 0x80778AC0: brd_3_pal
- 0x80778AE0: brd_3_eye1_TA_tex_txt
- 0x80778BE0: brd_3_eye2_TA_tex_txt
- 0x80778CE0: brd_3_eye3_TA_tex_txt
- 0x80778DE0: brd_3_eye4_TA_tex_txt
- 0x80778EE0: brd_3_eye5_TA_tex_txt
- 0x80778FE0: brd_3_eye6_TA_tex_txt
- 0x807790E0: brd_3_eye7_TA_tex_txt
- 0x807791E0: brd_3_eye8_TA_tex_txt
- 0x807792E0: brd_3_tmem_txt
- 0x807797E0: brd_4_pal
- 0x80779800: brd_4_eye1_TA_tex_txt
- 0x80779900: brd_4_eye2_TA_tex_txt
- 0x80779A00: brd_4_eye3_TA_tex_txt
- 0x80779B00: brd_4_eye4_TA_tex_txt
- 0x80779C00: brd_4_eye5_TA_tex_txt
- 0x80779D00: brd_4_eye6_TA_tex_txt
- 0x80779E00: brd_4_eye7_TA_tex_txt
- 0x80779F00: brd_4_eye8_TA_tex_txt
- 0x8077A000: brd_4_tmem_txt
- 0x8077A500: brd_5_pal
- 0x8077A520: brd_5_eye1_TA_tex_txt
- 0x8077A620: brd_5_eye2_TA_tex_txt
- 0x8077A720: brd_5_eye3_TA_tex_txt
- 0x8077A820: brd_5_eye4_TA_tex_txt
- 0x8077A920: brd_5_eye5_TA_tex_txt
- 0x8077AA20: brd_5_eye6_TA_tex_txt
- 0x8077AB20: brd_5_eye7_TA_tex_txt
- 0x8077AC20: brd_5_eye8_TA_tex_txt
- 0x8077AD20: brd_5_tmem_txt
- 0x8077B220: brd_6_pal
- 0x8077B240: brd_6_eye1_TA_tex_txt
- 0x8077B340: brd_6_eye2_TA_tex_txt
- 0x8077B440: brd_6_eye3_TA_tex_txt
- 0x8077B540: brd_6_eye4_TA_tex_txt
- 0x8077B640: brd_6_eye5_TA_tex_txt
- 0x8077B740: brd_6_eye6_TA_tex_txt
- 0x8077B840: brd_6_eye7_TA_tex_txt
- 0x8077B940: brd_6_eye8_TA_tex_txt
- 0x8077BA40: brd_6_tmem_txt
- 0x8077BF40: brd_7_pal
- 0x8077BF60: brd_7_eye1_TA_tex_txt
- 0x8077C060: brd_7_eye2_TA_tex_txt
- 0x8077C160: brd_7_eye3_TA_tex_txt
- 0x8077C260: brd_7_eye4_TA_tex_txt
- 0x8077C360: brd_7_eye5_TA_tex_txt
- 0x8077C460: brd_7_eye6_TA_tex_txt
- 0x8077C560: brd_7_eye7_TA_tex_txt
- 0x8077C660: brd_7_eye8_TA_tex_txt
- 0x8077C760: brd_7_tmem_txt
- 0x8077CC60: brd_8_pal
- 0x8077CC80: brd_8_eye1_TA_tex_txt
- 0x8077CD80: brd_8_eye2_TA_tex_txt
- 0x8077CE80: brd_8_eye3_TA_tex_txt
- 0x8077CF80: brd_8_eye4_TA_tex_txt
- 0x8077D080: brd_8_eye5_TA_tex_txt
- 0x8077D180: brd_8_eye6_TA_tex_txt
- 0x8077D280: brd_8_eye7_TA_tex_txt
- 0x8077D380: brd_8_eye8_TA_tex_txt
- 0x8077D480: brd_8_tmem_txt
- 0x8077D980: brd_9_pal
- 0x8077D9A0: brd_9_eye1_TA_tex_txt
- 0x8077DAA0: brd_9_eye2_TA_tex_txt
- 0x8077DBA0: brd_9_eye3_TA_tex_txt
- 0x8077DCA0: brd_9_eye4_TA_tex_txt
- 0x8077DDA0: brd_9_eye5_TA_tex_txt
- 0x8077DEA0: brd_9_eye6_TA_tex_txt
- 0x8077DFA0: brd_9_eye7_TA_tex_txt
- 0x8077E0A0: brd_9_eye8_TA_tex_txt
- 0x8077E1A0: brd_9_tmem_txt
- 0x8077E6A0: brd_10_pal
- 0x8077E6C0: brd_10_eye1_TA_tex_txt
- 0x8077E7C0: brd_10_eye2_TA_tex_txt
- 0x8077E8C0: brd_10_eye3_TA_tex_txt
- 0x8077E9C0: brd_10_eye4_TA_tex_txt
- 0x8077EAC0: brd_10_eye5_TA_tex_txt
- 0x8077EBC0: brd_10_eye6_TA_tex_txt
- 0x8077ECC0: brd_10_eye7_TA_tex_txt
- 0x8077EDC0: brd_10_eye8_TA_tex_txt
- 0x8077EEC0: brd_10_tmem_txt
- 0x8077F3C0: boy_1_horn_tex_txt
- 0x8077F440: boy_1_skin_tex_txt
- 0x8077F4C0: boy_1_hole_tex_txt
- 0x8077F540: boy_1_shoe_tex_txt
- 0x8077F5C0: boy_1_bottom_tex_txt
- 0x8077F640: boy_1_foot_tex_txt
- 0x8077F6C0: boy_1_pants_tex_txt
- 0x8077F740: boy_1_v
- 0x807810C0: head_boy_model
- 0x807812D8: Rarm2_boy_model
- 0x80781380: Rarm1_boy_model
- 0x80781460: Larm2_boy_model
- 0x80781508: Larm1_boy_model
- 0x807815E8: chest_boy_model
- 0x80781680: Rfoot3_boy_model
- 0x80781728: Rffot2_boy_model
- 0x807817A8: Rfoot1_boy_model
- 0x80781808: Lfoot3_boy_model
- 0x807818B0: Lfoot2_boy_model
- 0x80781930: Lfoot1_boy_model
- 0x80781990: base_boy_model
- 0x80781AB8: cKF_je_r_boy_1_tbl
- 0x80781BF0: cKF_bs_r_boy_1
- 0x80781BF8: cKF_ckcb_r_ply_1_wait1_tbl
- 0x80781C14: cKF_kn_ply_1_wait1_tbl
- 0x80781C78: cKF_c_ply_1_wait1_tbl
- 0x80781CB8: cKF_ds_ply_1_wait1_tbl
- 0x80782030: cKF_ba_r_ply_1_wait1
- 0x80782044: cKF_ckcb_r_ply_1_walk1_tbl
- 0x80782060: cKF_kn_ply_1_walk1_tbl
- 0x807820CC: cKF_c_ply_1_walk1_tbl
- 0x80782104: cKF_ds_ply_1_walk1_tbl
- 0x807824AC: cKF_ba_r_ply_1_walk1
- 0x807824C0: cKF_ckcb_r_ply_1_axe1_tbl
- 0x807824DC: cKF_c_ply_1_axe1_tbl
- 0x80782580: cKF_ba_r_ply_1_axe1
- 0x80782594: cKF_ckcb_r_ply_1_run1_tbl
- 0x807825B0: cKF_kn_ply_1_run1_tbl
- 0x8078261C: cKF_c_ply_1_run1_tbl
- 0x80782654: cKF_ds_ply_1_run1_tbl
- 0x80782A94: cKF_ba_r_ply_1_run1
- 0x80782AA8: cKF_ckcb_r_ply_1_push1_tbl
- 0x80782AC4: cKF_kn_ply_1_push1_tbl
- 0x80782B30: cKF_c_ply_1_push1_tbl
- 0x80782B68: cKF_ds_ply_1_push1_tbl
- 0x80782F4C: cKF_ba_r_ply_1_push1
- 0x80782F60: cKF_ckcb_r_ply_1_pull1_tbl
- 0x80782F7C: cKF_kn_ply_1_pull1_tbl
- 0x80782FE8: cKF_c_ply_1_pull1_tbl
- 0x80783020: cKF_ds_ply_1_pull1_tbl
- 0x8078346C: cKF_ba_r_ply_1_pull1
- 0x80783480: cKF_ckcb_r_ply_1_hold_wait1_tbl
- 0x8078349C: cKF_kn_ply_1_hold_wait1_tbl
- 0x80783508: cKF_c_ply_1_hold_wait1_tbl
- 0x80783540: cKF_ds_ply_1_hold_wait1_tbl
- 0x80783884: cKF_ba_r_ply_1_hold_wait1
- 0x80783898: cKF_ckcb_r_ply_1_pickup1_tbl
- 0x807838B4: cKF_kn_ply_1_pickup1_tbl
- 0x80783920: cKF_c_ply_1_pickup1_tbl
- 0x80783958: cKF_ds_ply_1_pickup1_tbl
- 0x80783E98: cKF_ba_r_ply_1_pickup1
- 0x80783EAC: cKF_ckcb_r_ply_1_Lturn1_tbl
- 0x80783EC8: cKF_kn_ply_1_Lturn1_tbl
- 0x80783F30: cKF_c_ply_1_Lturn1_tbl
- 0x80783F6C: cKF_ds_ply_1_Lturn1_tbl
- 0x80784230: cKF_ba_r_ply_1_Lturn1
- 0x80784244: cKF_ckcb_r_ply_1_Rturn1_tbl
- 0x80784260: cKF_kn_ply_1_Rturn1_tbl
- 0x807842C8: cKF_c_ply_1_Rturn1_tbl
- 0x80784304: cKF_ds_ply_1_Rturn1_tbl
- 0x807845A0: cKF_ba_r_ply_1_Rturn1
- 0x807845B4: cKF_ckcb_r_ply_1_get1_tbl
- 0x807845D0: cKF_kn_ply_1_get1_tbl
- 0x8078463C: cKF_c_ply_1_get1_tbl
- 0x80784674: cKF_ds_ply_1_get1_tbl
- 0x80784914: cKF_ba_r_ply_1_get1
- 0x80784928: cKF_ckcb_r_ply_1_get_change1_tbl
- 0x80784944: cKF_kn_ply_1_get_change1_tbl
- 0x807849B0: cKF_c_ply_1_get_change1_tbl
- 0x807849E8: cKF_ds_ply_1_get_change1_tbl
- 0x807850CC: cKF_ba_r_ply_1_get_change1
- 0x807850E0: ply_1_get_change11_tex_index
- 0x80785140: ply_1_get_change12_tex_index
- 0x807851A0: cKF_ckcb_r_ply_1_get_putaway1_tbl
- 0x807851BC: cKF_kn_ply_1_get_putaway1_tbl
- 0x80785228: cKF_c_ply_1_get_putaway1_tbl
- 0x80785260: cKF_ds_ply_1_get_putaway1_tbl
- 0x80785760: cKF_ba_r_ply_1_get_putaway1
- 0x80785774: cKF_ckcb_r_ply_1_open1_tbl
- 0x80785790: cKF_kn_ply_1_open1_tbl
- 0x807857FC: cKF_c_ply_1_open1_tbl
- 0x80785834: cKF_ds_ply_1_open1_tbl
- 0x80786100: cKF_ba_r_ply_1_open1
- 0x80786114: cKF_ckcb_r_ply_1_putaway1_tbl
- 0x80786130: cKF_kn_ply_1_putaway1_tbl
- 0x8078619C: cKF_c_ply_1_putaway1_tbl
- 0x807861D4: cKF_ds_ply_1_putaway1_tbl
- 0x80786500: cKF_ba_r_ply_1_putaway1
- 0x80786514: cKF_ckcb_r_ply_1_trans_wait1_tbl
- 0x80786530: cKF_kn_ply_1_trans_wait1_tbl
- 0x80786598: cKF_c_ply_1_trans_wait1_tbl
- 0x807865D4: cKF_ds_ply_1_trans_wait1_tbl
- 0x807868B8: cKF_ba_r_ply_1_trans_wait1
- 0x807868CC: cKF_ckcb_r_ply_1_transfer1_tbl
- 0x807868E8: cKF_kn_ply_1_transfer1_tbl
- 0x80786954: cKF_c_ply_1_transfer1_tbl
- 0x8078698C: cKF_ds_ply_1_transfer1_tbl
- 0x8078713C: cKF_ba_r_ply_1_transfer1
- 0x80787150: cKF_ckcb_r_ply_1_umb_open1_tbl
- 0x8078716C: cKF_kn_ply_1_umb_open1_tbl
- 0x807871D8: cKF_c_ply_1_umb_open1_tbl
- 0x80787210: cKF_ds_ply_1_umb_open1_tbl
- 0x807876F0: cKF_ba_r_ply_1_umb_open1
- 0x80787704: cKF_ckcb_r_ply_1_umbrella1_tbl
- 0x80787720: cKF_c_ply_1_umbrella1_tbl
- 0x807877C4: cKF_ba_r_ply_1_umbrella1
- 0x807877D8: cKF_ckcb_r_ply_1_dash1_tbl
- 0x807877F4: cKF_kn_ply_1_dash1_tbl
- 0x80787860: cKF_c_ply_1_dash1_tbl
- 0x80787898: cKF_ds_ply_1_dash1_tbl
- 0x80787CA0: cKF_ba_r_ply_1_dash1
- 0x80787CB4: cKF_ckcb_r_ply_1_run_slip1_tbl
- 0x80787CD0: cKF_c_ply_1_run_slip1_tbl
- 0x80787D74: cKF_ba_r_ply_1_run_slip1
- 0x80787D88: cKF_ckcb_r_ply_1_get_pull1_tbl
- 0x80787DA4: cKF_kn_ply_1_get_pull1_tbl
- 0x80787E10: cKF_c_ply_1_get_pull1_tbl
- 0x80787E48: cKF_ds_ply_1_get_pull1_tbl
- 0x8078815C: cKF_ba_r_ply_1_get_pull1
- 0x80788170: cKF_ckcb_r_ply_1_get_m1_tbl
- 0x8078818C: cKF_kn_ply_1_get_m1_tbl
- 0x807881F8: cKF_c_ply_1_get_m1_tbl
- 0x80788230: cKF_ds_ply_1_get_m1_tbl
- 0x8078894C: cKF_ba_r_ply_1_get_m1
- 0x80788960: cKF_ckcb_r_ply_1_kamae_move_m1_tbl
- 0x8078897C: cKF_kn_ply_1_kamae_move_m1_tbl
- 0x807889E8: cKF_c_ply_1_kamae_move_m1_tbl
- 0x80788A20: cKF_ds_ply_1_kamae_move_m1_tbl
- 0x80788E6C: cKF_ba_r_ply_1_kamae_move_m1
- 0x80788E80: cKF_ckcb_r_ply_1_kamae_wait_m1_tbl
- 0x80788E9C: cKF_kn_ply_1_kamae_wait_m1_tbl
- 0x80788F08: cKF_c_ply_1_kamae_wait_m1_tbl
- 0x80788F40: cKF_ds_ply_1_kamae_wait_m1_tbl
- 0x807892C0: cKF_ba_r_ply_1_kamae_wait_m1
- 0x807892D4: cKF_ckcb_r_ply_1_kokeru_a1_tbl
- 0x807892F0: cKF_kn_ply_1_kokeru_a1_tbl
- 0x8078935C: cKF_c_ply_1_kokeru_a1_tbl
- 0x80789394: cKF_ds_ply_1_kokeru_a1_tbl
- 0x807897D4: cKF_ba_r_ply_1_kokeru_a1
- 0x807897E8: ply_1_kokeru_a11_tex_index
- 0x807897FC: ply_1_kokeru_a12_tex_index
- 0x80789810: cKF_ckcb_r_ply_1_kokeru_getup_a1_tbl
- 0x8078982C: cKF_kn_ply_1_kokeru_getup_a1_tbl
- 0x80789898: cKF_c_ply_1_kokeru_getup_a1_tbl
- 0x807898D0: cKF_ds_ply_1_kokeru_getup_a1_tbl
- 0x80789E4C: cKF_ba_r_ply_1_kokeru_getup_a1
- 0x80789E60: ply_1_kokeru_getup_a11_tex_index
- 0x80789E80: ply_1_kokeru_getup_a12_tex_index
- 0x80789EA0: cKF_ckcb_r_ply_1_kokeru_getup_n1_tbl
- 0x80789EBC: cKF_kn_ply_1_kokeru_getup_n1_tbl
- 0x80789F28: cKF_c_ply_1_kokeru_getup_n1_tbl
- 0x80789F60: cKF_ds_ply_1_kokeru_getup_n1_tbl
- 0x8078A47C: cKF_ba_r_ply_1_kokeru_getup_n1
- 0x8078A490: ply_1_kokeru_getup_n11_tex_index
- 0x8078A4B0: ply_1_kokeru_getup_n12_tex_index
- 0x8078A4D0: cKF_ckcb_r_ply_1_kokeru_n1_tbl
- 0x8078A4EC: cKF_kn_ply_1_kokeru_n1_tbl
- 0x8078A558: cKF_c_ply_1_kokeru_n1_tbl
- 0x8078A590: cKF_ds_ply_1_kokeru_n1_tbl
- 0x8078A9C4: cKF_ba_r_ply_1_kokeru_n1
- 0x8078A9D8: ply_1_kokeru_n11_tex_index
- 0x8078A9EC: ply_1_kokeru_n12_tex_index
- 0x8078AA00: cKF_ckcb_r_ply_1_net1_tbl
- 0x8078AA1C: cKF_c_ply_1_net1_tbl
- 0x8078AAC0: cKF_ba_r_ply_1_net1
- 0x8078AAD4: cKF_ckcb_r_ply_1_net_swing1_tbl
- 0x8078AAF0: cKF_kn_ply_1_net_swing1_tbl
- 0x8078AB5C: cKF_c_ply_1_net_swing1_tbl
- 0x8078AB94: cKF_ds_ply_1_net_swing1_tbl
- 0x8078B058: cKF_ba_r_ply_1_net_swing1
- 0x8078B06C: cKF_ckcb_r_ply_1_axe_swing1_tbl
- 0x8078B088: cKF_kn_ply_1_axe_swing1_tbl
- 0x8078B0F4: cKF_c_ply_1_axe_swing1_tbl
- 0x8078B12C: cKF_ds_ply_1_axe_swing1_tbl
- 0x8078B824: cKF_ba_r_ply_1_axe_swing1
- 0x8078B838: ply_1_axe_swing11_tex_index
- 0x8078B858: ply_1_axe_swing12_tex_index
- 0x8078B878: cKF_ckcb_r_ply_1_kamae_slip_m1_tbl
- 0x8078B894: cKF_c_ply_1_kamae_slip_m1_tbl
- 0x8078B938: cKF_ba_r_ply_1_kamae_slip_m1
- 0x8078B94C: cKF_ckcb_r_ply_1_kokeru1_tbl
- 0x8078B968: cKF_kn_ply_1_kokeru1_tbl
- 0x8078B9D4: cKF_c_ply_1_kokeru1_tbl
- 0x8078BA0C: cKF_ds_ply_1_kokeru1_tbl
- 0x8078BE08: cKF_ba_r_ply_1_kokeru1
- 0x8078BE1C: ply_1_kokeru11_tex_index
- 0x8078BE30: ply_1_kokeru12_tex_index
- 0x8078BE44: cKF_ckcb_r_ply_1_kokeru_getup1_tbl
- 0x8078BE60: cKF_kn_ply_1_kokeru_getup1_tbl
- 0x8078BECC: cKF_c_ply_1_kokeru_getup1_tbl
- 0x8078BF04: cKF_ds_ply_1_kokeru_getup1_tbl
- 0x8078C3EC: cKF_ba_r_ply_1_kokeru_getup1
- 0x8078C400: ply_1_kokeru_getup11_tex_index
- 0x8078C420: ply_1_kokeru_getup12_tex_index
- 0x8078C440: cKF_ckcb_r_ply_1_sitdown1_tbl
- 0x8078C45C: cKF_kn_ply_1_sitdown1_tbl
- 0x8078C4D0: cKF_c_ply_1_sitdown1_tbl
- 0x8078C500: cKF_ds_ply_1_sitdown1_tbl
- 0x8078CBC0: cKF_ba_r_ply_1_sitdown1
- 0x8078CBD4: cKF_ckcb_r_ply_1_sitdown_wait1_tbl
- 0x8078CBF0: cKF_kn_ply_1_sitdown_wait1_tbl
- 0x8078CC5C: cKF_c_ply_1_sitdown_wait1_tbl
- 0x8078CC94: cKF_ds_ply_1_sitdown_wait1_tbl
- 0x8078CFF0: cKF_ba_r_ply_1_sitdown_wait1
- 0x8078D004: cKF_ckcb_r_ply_1_standup1_tbl
- 0x8078D020: cKF_kn_ply_1_standup1_tbl
- 0x8078D08C: cKF_c_ply_1_standup1_tbl
- 0x8078D0C4: cKF_ds_ply_1_standup1_tbl
- 0x8078D69C: cKF_ba_r_ply_1_standup1
- 0x8078D6B0: cKF_ckcb_r_ply_1_putaway_m1_tbl
- 0x8078D6CC: cKF_kn_ply_1_putaway_m1_tbl
- 0x8078D738: cKF_c_ply_1_putaway_m1_tbl
- 0x8078D770: cKF_ds_ply_1_putaway_m1_tbl
- 0x8078DBA4: cKF_ba_r_ply_1_putaway_m1
- 0x8078DBB8: cKF_ckcb_r_ply_1_bed_wait1_tbl
- 0x8078DBD4: cKF_kn_ply_1_bed_wait1_tbl
- 0x8078DC48: cKF_c_ply_1_bed_wait1_tbl
- 0x8078DC78: cKF_ds_ply_1_bed_wait1_tbl
- 0x8078DF80: cKF_ba_r_ply_1_bed_wait1
- 0x8078DF94: cKF_ckcb_r_ply_1_inbed_L1_tbl
- 0x8078DFB0: cKF_kn_ply_1_inbed_L1_tbl
- 0x8078E024: cKF_c_ply_1_inbed_L1_tbl
- 0x8078E054: cKF_ds_ply_1_inbed_L1_tbl
- 0x8078E6C8: cKF_ba_r_ply_1_inbed_L1
- 0x8078E6DC: cKF_ckcb_r_ply_1_inbed_R1_tbl
- 0x8078E6F8: cKF_kn_ply_1_inbed_R1_tbl
- 0x8078E76C: cKF_c_ply_1_inbed_R1_tbl
- 0x8078E79C: cKF_ds_ply_1_inbed_R1_tbl
- 0x8078EE1C: cKF_ba_r_ply_1_inbed_R1
- 0x8078EE30: cKF_ckcb_r_ply_1_intrain1_tbl
- 0x8078EE4C: cKF_kn_ply_1_intrain1_tbl
- 0x8078EEB8: cKF_c_ply_1_intrain1_tbl
- 0x8078EEF0: cKF_ds_ply_1_intrain1_tbl
- 0x8078F910: cKF_ba_r_ply_1_intrain1
- 0x8078F924: cKF_ckcb_r_ply_1_kagu_open_d1_tbl
- 0x8078F940: cKF_kn_ply_1_kagu_open_d1_tbl
- 0x8078F9AC: cKF_c_ply_1_kagu_open_d1_tbl
- 0x8078F9E4: cKF_ds_ply_1_kagu_open_d1_tbl
- 0x8078FF50: cKF_ba_r_ply_1_kagu_open_d1
- 0x8078FF64: cKF_ckcb_r_ply_1_kagu_open_h1_tbl
- 0x8078FF80: cKF_kn_ply_1_kagu_open_h1_tbl
- 0x8078FFEC: cKF_c_ply_1_kagu_open_h1_tbl
- 0x80790024: cKF_ds_ply_1_kagu_open_h1_tbl
- 0x80790314: cKF_ba_r_ply_1_kagu_open_h1
- 0x80790328: cKF_ckcb_r_ply_1_kagu_open_k1_tbl
- 0x80790344: cKF_kn_ply_1_kagu_open_k1_tbl
- 0x807903B0: cKF_c_ply_1_kagu_open_k1_tbl
- 0x807903E8: cKF_ds_ply_1_kagu_open_k1_tbl
- 0x80790708: cKF_ba_r_ply_1_kagu_open_k1
- 0x8079071C: cKF_ckcb_r_ply_1_negaeri_L1_tbl
- 0x80790738: cKF_kn_ply_1_negaeri_L1_tbl
- 0x807907AC: cKF_c_ply_1_negaeri_L1_tbl
- 0x807907DC: cKF_ds_ply_1_negaeri_L1_tbl
- 0x80790D9C: cKF_ba_r_ply_1_negaeri_L1
- 0x80790DB0: cKF_ckcb_r_ply_1_negaeri_R1_tbl
- 0x80790DCC: cKF_kn_ply_1_negaeri_R1_tbl
- 0x80790E40: cKF_c_ply_1_negaeri_R1_tbl
- 0x80790E70: cKF_ds_ply_1_negaeri_R1_tbl
- 0x80791430: cKF_ba_r_ply_1_negaeri_R1
- 0x80791444: cKF_ckcb_r_ply_1_outbed_L1_tbl
- 0x80791460: cKF_kn_ply_1_outbed_L1_tbl
- 0x807914D4: cKF_c_ply_1_outbed_L1_tbl
- 0x80791504: cKF_ds_ply_1_outbed_L1_tbl
- 0x80791BB4: cKF_ba_r_ply_1_outbed_L1
- 0x80791BC8: cKF_ckcb_r_ply_1_outbed_R1_tbl
- 0x80791BE4: cKF_kn_ply_1_outbed_R1_tbl
- 0x80791C58: cKF_c_ply_1_outbed_R1_tbl
- 0x80791C88: cKF_ds_ply_1_outbed_R1_tbl
- 0x80792338: cKF_ba_r_ply_1_outbed_R1
- 0x8079234C: cKF_ckcb_r_ply_1_outtrain1_tbl
- 0x80792368: cKF_kn_ply_1_outtrain1_tbl
- 0x807923D4: cKF_c_ply_1_outtrain1_tbl
- 0x8079240C: cKF_ds_ply_1_outtrain1_tbl
- 0x80792A48: cKF_ba_r_ply_1_outtrain1
- 0x80792A5C: cKF_ckcb_r_ply_1_kagu_close_d1_tbl
- 0x80792A78: cKF_kn_ply_1_kagu_close_d1_tbl
- 0x80792AE4: cKF_c_ply_1_kagu_close_d1_tbl
- 0x80792B1C: cKF_ds_ply_1_kagu_close_d1_tbl
- 0x80792FC8: cKF_ba_r_ply_1_kagu_close_d1
- 0x80792FDC: cKF_ckcb_r_ply_1_kagu_close_h1_tbl
- 0x80792FF8: cKF_kn_ply_1_kagu_close_h1_tbl
- 0x80793064: cKF_c_ply_1_kagu_close_h1_tbl
- 0x8079309C: cKF_ds_ply_1_kagu_close_h1_tbl
- 0x8079336C: cKF_ba_r_ply_1_kagu_close_h1
- 0x80793380: cKF_ckcb_r_ply_1_kagu_close_k1_tbl
- 0x8079339C: cKF_kn_ply_1_kagu_close_k1_tbl
- 0x80793408: cKF_c_ply_1_kagu_close_k1_tbl
- 0x80793440: cKF_ds_ply_1_kagu_close_k1_tbl
- 0x80793764: cKF_ba_r_ply_1_kagu_close_k1
- 0x80793778: cKF_ckcb_r_ply_1_kagu_wait_d1_tbl
- 0x80793794: cKF_kn_ply_1_kagu_wait_d1_tbl
- 0x80793800: cKF_c_ply_1_kagu_wait_d1_tbl
- 0x80793838: cKF_ds_ply_1_kagu_wait_d1_tbl
- 0x80793BF4: cKF_ba_r_ply_1_kagu_wait_d1
- 0x80793C08: cKF_ckcb_r_ply_1_kagu_wait_h1_tbl
- 0x80793C24: cKF_kn_ply_1_kagu_wait_h1_tbl
- 0x80793C90: cKF_c_ply_1_kagu_wait_h1_tbl
- 0x80793CC8: cKF_ds_ply_1_kagu_wait_h1_tbl
- 0x80794030: cKF_ba_r_ply_1_kagu_wait_h1
- 0x80794044: cKF_ckcb_r_ply_1_kagu_wait_k1_tbl
- 0x80794060: cKF_kn_ply_1_kagu_wait_k1_tbl
- 0x807940CC: cKF_c_ply_1_kagu_wait_k1_tbl
- 0x80794104: cKF_ds_ply_1_kagu_wait_k1_tbl
- 0x80794478: cKF_ba_r_ply_1_kagu_wait_k1
- 0x8079448C: cKF_ckcb_r_ply_1_go_out_o1_tbl
- 0x807944A8: cKF_kn_ply_1_go_out_o1_tbl
- 0x80794514: cKF_c_ply_1_go_out_o1_tbl
- 0x8079454C: cKF_ds_ply_1_go_out_o1_tbl
- 0x80794D8C: cKF_ba_r_ply_1_go_out_o1
- 0x80794DA0: cKF_ckcb_r_ply_1_go_out_s1_tbl
- 0x80794DBC: cKF_kn_ply_1_go_out_s1_tbl
- 0x80794E28: cKF_c_ply_1_go_out_s1_tbl
- 0x80794E60: cKF_ds_ply_1_go_out_s1_tbl
- 0x80795378: cKF_ba_r_ply_1_go_out_s1
- 0x8079538C: cKF_ckcb_r_ply_1_into_s1_tbl
- 0x807953A8: cKF_kn_ply_1_into_s1_tbl
- 0x80795414: cKF_c_ply_1_into_s1_tbl
- 0x8079544C: cKF_ds_ply_1_into_s1_tbl
- 0x80795910: cKF_ba_r_ply_1_into_s1
- 0x80795924: cKF_ckcb_r_ply_1_axe_hane1_tbl
- 0x80795940: cKF_kn_ply_1_axe_hane1_tbl
- 0x807959AC: cKF_c_ply_1_axe_hane1_tbl
- 0x807959E4: cKF_ds_ply_1_axe_hane1_tbl
- 0x807961F4: cKF_ba_r_ply_1_axe_hane1
- 0x80796208: ply_1_axe_hane11_tex_index
- 0x80796230: ply_1_axe_hane12_tex_index
- 0x80796258: cKF_ckcb_r_ply_1_axe_suka1_tbl
- 0x80796274: cKF_kn_ply_1_axe_suka1_tbl
- 0x807962E0: cKF_c_ply_1_axe_suka1_tbl
- 0x80796318: cKF_ds_ply_1_axe_suka1_tbl
- 0x80796AEC: cKF_ba_r_ply_1_axe_suka1
- 0x80796B00: ply_1_axe_suka11_tex_index
- 0x80796B2C: ply_1_axe_suka12_tex_index
- 0x80796B58: cKF_ckcb_r_ply_1_hold_wait_h1_tbl
- 0x80796B74: cKF_c_ply_1_hold_wait_h1_tbl
- 0x80796C18: cKF_ba_r_ply_1_hold_wait_h1
- 0x80796C2C: cKF_ckcb_r_ply_1_hold_wait_o1_tbl
- 0x80796C48: cKF_c_ply_1_hold_wait_o1_tbl
- 0x80796CEC: cKF_ba_r_ply_1_hold_wait_o1
- 0x80796D00: cKF_ckcb_r_ply_1_get_t1_tbl
- 0x80796D1C: cKF_kn_ply_1_get_t1_tbl
- 0x80796D88: cKF_c_ply_1_get_t1_tbl
- 0x80796DC0: cKF_ds_ply_1_get_t1_tbl
- 0x80797188: cKF_ba_r_ply_1_get_t1
- 0x8079719C: ply_1_get_t11_tex_index
- 0x807971B4: ply_1_get_t12_tex_index
- 0x807971CC: cKF_ckcb_r_ply_1_get_t2_tbl
- 0x807971E8: cKF_kn_ply_1_get_t2_tbl
- 0x80797254: cKF_c_ply_1_get_t2_tbl
- 0x8079728C: cKF_ds_ply_1_get_t2_tbl
- 0x80797810: cKF_ba_r_ply_1_get_t2
- 0x80797824: ply_1_get_t21_tex_index
- 0x80797848: cKF_ckcb_r_ply_1_putaway_t1_tbl
- 0x80797864: cKF_kn_ply_1_putaway_t1_tbl
- 0x807978D0: cKF_c_ply_1_putaway_t1_tbl
- 0x80797908: cKF_ds_ply_1_putaway_t1_tbl
- 0x80797D3C: cKF_ba_r_ply_1_putaway_t1
- 0x80797D50: cKF_ckcb_r_ply_1_sao1_tbl
- 0x80797D6C: cKF_c_ply_1_sao1_tbl
- 0x80797E10: cKF_ba_r_ply_1_sao1
- 0x80797E24: cKF_ckcb_r_ply_1_sao_swing1_tbl
- 0x80797E40: cKF_kn_ply_1_sao_swing1_tbl
- 0x80797EAC: cKF_c_ply_1_sao_swing1_tbl
- 0x80797EE4: cKF_ds_ply_1_sao_swing1_tbl
- 0x807984B4: cKF_ba_r_ply_1_sao_swing1
- 0x807984C8: cKF_ckcb_r_ply_1_turi_hiki1_tbl
- 0x807984E4: cKF_kn_ply_1_turi_hiki1_tbl
- 0x80798550: cKF_c_ply_1_turi_hiki1_tbl
- 0x80798588: cKF_ds_ply_1_turi_hiki1_tbl
- 0x80798A08: cKF_ba_r_ply_1_turi_hiki1
- 0x80798A1C: cKF_ckcb_r_ply_1_turi_wait1_tbl
- 0x80798A38: cKF_kn_ply_1_turi_wait1_tbl
- 0x80798AA4: cKF_c_ply_1_turi_wait1_tbl
- 0x80798ADC: cKF_ds_ply_1_turi_wait1_tbl
- 0x80798E24: cKF_ba_r_ply_1_turi_wait1
- 0x80798E38: cKF_ckcb_r_ply_1_not_get_t1_tbl
- 0x80798E54: cKF_kn_ply_1_not_get_t1_tbl
- 0x80798EC0: cKF_c_ply_1_not_get_t1_tbl
- 0x80798EF8: cKF_ds_ply_1_not_get_t1_tbl
- 0x8079933C: cKF_ba_r_ply_1_not_get_t1
- 0x80799350: ply_1_not_get_t11_tex_index
- 0x8079936C: cKF_ckcb_r_ply_1_menu_catch1_tbl
- 0x80799388: cKF_kn_ply_1_menu_catch1_tbl
- 0x807993F4: cKF_c_ply_1_menu_catch1_tbl
- 0x8079942C: cKF_ds_ply_1_menu_catch1_tbl
- 0x807996E4: cKF_ba_r_ply_1_menu_catch1
- 0x807996F8: cKF_ckcb_r_ply_1_menu_change1_tbl
- 0x80799714: cKF_kn_ply_1_menu_change1_tbl
- 0x80799780: cKF_c_ply_1_menu_change1_tbl
- 0x807997B8: cKF_ds_ply_1_menu_change1_tbl
- 0x80799F40: cKF_ba_r_ply_1_menu_change1
- 0x80799F54: ply_1_menu_change11_tex_index
- 0x80799FB4: ply_1_menu_change12_tex_index
- 0x8079A014: cKF_ckcb_r_ply_1_umb_close1_tbl
- 0x8079A030: cKF_kn_ply_1_umb_close1_tbl
- 0x8079A09C: cKF_c_ply_1_umb_close1_tbl
- 0x8079A0D4: cKF_ds_ply_1_umb_close1_tbl
- 0x8079A794: cKF_ba_r_ply_1_umb_close1
- 0x8079A7A8: cKF_ckcb_r_ply_1_not_sao_swing1_tbl
- 0x8079A7C4: cKF_kn_ply_1_not_sao_swing1_tbl
- 0x8079A820: cKF_c_ply_1_not_sao_swing1_tbl
- 0x8079A868: cKF_ds_ply_1_not_sao_swing1_tbl
- 0x8079AC54: cKF_ba_r_ply_1_not_sao_swing1
- 0x8079AC68: ply_1_not_sao_swing11_tex_index
- 0x8079AC84: ply_1_not_sao_swing12_tex_index
- 0x8079ACA0: cKF_ckcb_r_ply_1_intrain_wait1_tbl
- 0x8079ACBC: cKF_kn_ply_1_intrain_wait1_tbl
- 0x8079AD28: cKF_c_ply_1_intrain_wait1_tbl
- 0x8079AD60: cKF_ds_ply_1_intrain_wait1_tbl
- 0x8079B054: cKF_ba_r_ply_1_intrain_wait1
- 0x8079B068: cKF_ckcb_r_ply_1_clear_table1_tbl
- 0x8079B084: cKF_kn_ply_1_clear_table1_tbl
- 0x8079B0F0: cKF_c_ply_1_clear_table1_tbl
- 0x8079B128: cKF_ds_ply_1_clear_table1_tbl
- 0x8079B958: cKF_ba_r_ply_1_clear_table1
- 0x8079B96C: cKF_ckcb_r_ply_1_dig1_tbl
- 0x8079B988: cKF_kn_ply_1_dig1_tbl
- 0x8079B9F4: cKF_c_ply_1_dig1_tbl
- 0x8079BA2C: cKF_ds_ply_1_dig1_tbl
- 0x8079C32C: cKF_ba_r_ply_1_dig1
- 0x8079C340: cKF_ckcb_r_ply_1_fill_up1_tbl
- 0x8079C35C: cKF_kn_ply_1_fill_up1_tbl
- 0x8079C3C8: cKF_c_ply_1_fill_up1_tbl
- 0x8079C400: cKF_ds_ply_1_fill_up1_tbl
- 0x8079CF94: cKF_ba_r_ply_1_fill_up1
- 0x8079CFA8: cKF_ckcb_r_ply_1_not_dig1_tbl
- 0x8079CFC4: cKF_kn_ply_1_not_dig1_tbl
- 0x8079D030: cKF_c_ply_1_not_dig1_tbl
- 0x8079D068: cKF_ds_ply_1_not_dig1_tbl
- 0x8079D8B0: cKF_ba_r_ply_1_not_dig1
- 0x8079D8C4: ply_1_not_dig11_tex_index
- 0x8079D8E8: ply_1_not_dig12_tex_index
- 0x8079D90C: cKF_ckcb_r_ply_1_clear_table_l1_tbl
- 0x8079D928: cKF_kn_ply_1_clear_table_l1_tbl
- 0x8079D994: cKF_c_ply_1_clear_table_l1_tbl
- 0x8079D9CC: cKF_ds_ply_1_clear_table_l1_tbl
- 0x8079E220: cKF_ba_r_ply_1_clear_table_l1
- 0x8079E234: cKF_ckcb_r_ply_1_pickup_l1_tbl
- 0x8079E250: cKF_kn_ply_1_pickup_l1_tbl
- 0x8079E2BC: cKF_c_ply_1_pickup_l1_tbl
- 0x8079E2F4: cKF_ds_ply_1_pickup_l1_tbl
- 0x8079E8D8: cKF_ba_r_ply_1_pickup_l1
- 0x8079E8EC: cKF_ckcb_r_ply_1_scoop1_tbl
- 0x8079E908: cKF_c_ply_1_scoop1_tbl
- 0x8079E9AC: cKF_ba_r_ply_1_scoop1
- 0x8079E9C0: cKF_ckcb_r_ply_1_confirm1_tbl
- 0x8079E9DC: cKF_kn_ply_1_confirm1_tbl
- 0x8079EA48: cKF_c_ply_1_confirm1_tbl
- 0x8079EA80: cKF_ds_ply_1_confirm1_tbl
- 0x8079F0D4: cKF_ba_r_ply_1_confirm1
- 0x8079F0E8: cKF_ckcb_r_ply_1_dig_suka1_tbl
- 0x8079F104: cKF_kn_ply_1_dig_suka1_tbl
- 0x8079F170: cKF_c_ply_1_dig_suka1_tbl
- 0x8079F1A8: cKF_ds_ply_1_dig_suka1_tbl
- 0x8079F9B8: cKF_ba_r_ply_1_dig_suka1
- 0x8079F9CC: ply_1_dig_suka11_tex_index
- 0x8079F9F8: ply_1_dig_suka12_tex_index
- 0x8079FA24: cKF_ckcb_r_ply_1_get_d1_tbl
- 0x8079FA40: cKF_kn_ply_1_get_d1_tbl
- 0x8079FAAC: cKF_c_ply_1_get_d1_tbl
- 0x8079FAE4: cKF_ds_ply_1_get_d1_tbl
- 0x807A08D0: cKF_ba_r_ply_1_get_d1
- 0x807A08E4: cKF_ckcb_r_ply_1_putaway_d1_tbl
- 0x807A0900: cKF_kn_ply_1_putaway_d1_tbl
- 0x807A096C: cKF_c_ply_1_putaway_d1_tbl
- 0x807A09A4: cKF_ds_ply_1_putaway_d1_tbl
- 0x807A0DD8: cKF_ba_r_ply_1_putaway_d1
- 0x807A0DEC: cKF_ckcb_r_ply_1_dig_kabu1_tbl
- 0x807A0E08: cKF_kn_ply_1_dig_kabu1_tbl
- 0x807A0E74: cKF_c_ply_1_dig_kabu1_tbl
- 0x807A0EAC: cKF_ds_ply_1_dig_kabu1_tbl
- 0x807A1B0C: cKF_ba_r_ply_1_dig_kabu1
- 0x807A1B20: cKF_ckcb_r_ply_1_fill_up_i1_tbl
- 0x807A1B3C: cKF_kn_ply_1_fill_up_i1_tbl
- 0x807A1BA8: cKF_c_ply_1_fill_up_i1_tbl
- 0x807A1BE0: cKF_ds_ply_1_fill_up_i1_tbl
- 0x807A29FC: cKF_ba_r_ply_1_fill_up_i1
- 0x807A2A10: cKF_ckcb_r_ply_1_send_mail1_tbl
- 0x807A2A2C: cKF_kn_ply_1_send_mail1_tbl
- 0x807A2A98: cKF_c_ply_1_send_mail1_tbl
- 0x807A2AD0: cKF_ds_ply_1_send_mail1_tbl
- 0x807A31A4: cKF_ba_r_ply_1_send_mail1
- 0x807A31B8: cKF_ckcb_r_ply_1_get_f1_tbl
- 0x807A31D4: cKF_kn_ply_1_get_f1_tbl
- 0x807A3240: cKF_c_ply_1_get_f1_tbl
- 0x807A3278: cKF_ds_ply_1_get_f1_tbl
- 0x807A3518: cKF_ba_r_ply_1_get_f1
- 0x807A352C: cKF_ckcb_r_ply_1_get_pull_f1_tbl
- 0x807A3548: cKF_kn_ply_1_get_pull_f1_tbl
- 0x807A35B4: cKF_c_ply_1_get_pull_f1_tbl
- 0x807A35EC: cKF_ds_ply_1_get_pull_f1_tbl
- 0x807A38AC: cKF_ba_r_ply_1_get_pull_f1
- 0x807A38C0: cKF_ckcb_r_ply_1_get_putaway_f1_tbl
- 0x807A38DC: cKF_kn_ply_1_get_putaway_f1_tbl
- 0x807A3948: cKF_c_ply_1_get_putaway_f1_tbl
- 0x807A3980: cKF_ds_ply_1_get_putaway_f1_tbl
- 0x807A3E6C: cKF_ba_r_ply_1_get_putaway_f1
- 0x807A3E80: cKF_ckcb_r_ply_1_trans_wait_f1_tbl
- 0x807A3E9C: cKF_kn_ply_1_trans_wait_f1_tbl
- 0x807A3F08: cKF_c_ply_1_trans_wait_f1_tbl
- 0x807A3F40: cKF_ds_ply_1_trans_wait_f1_tbl
- 0x807A423C: cKF_ba_r_ply_1_trans_wait_f1
- 0x807A4250: cKF_ckcb_r_ply_1_transfer_f1_tbl
- 0x807A426C: cKF_kn_ply_1_transfer_f1_tbl
- 0x807A42D8: cKF_c_ply_1_transfer_f1_tbl
- 0x807A4310: cKF_ds_ply_1_transfer_f1_tbl
- 0x807A4ACC: cKF_ba_r_ply_1_transfer_f1
- 0x807A4AE0: cKF_ckcb_r_ply_1_shake1_tbl
- 0x807A4AFC: cKF_kn_ply_1_shake1_tbl
- 0x807A4B68: cKF_c_ply_1_shake1_tbl
- 0x807A4BA0: cKF_ds_ply_1_shake1_tbl
- 0x807A5364: cKF_ba_r_ply_1_shake1
- 0x807A5378: ply_1_shake12_tex_index
- 0x807A53A0: cKF_ckcb_r_ply_1_tired1_tbl
- 0x807A53BC: cKF_kn_ply_1_tired1_tbl
- 0x807A5428: cKF_c_ply_1_tired1_tbl
- 0x807A5460: cKF_ds_ply_1_tired1_tbl
- 0x807A5804: cKF_ba_r_ply_1_tired1
- 0x807A5818: cKF_ckcb_r_ply_1_wash1_tbl
- 0x807A5834: cKF_kn_ply_1_wash1_tbl
- 0x807A58A0: cKF_c_ply_1_wash1_tbl
- 0x807A58D8: cKF_ds_ply_1_wash1_tbl
- 0x807A5D78: cKF_ba_r_ply_1_wash1
- 0x807A5D8C: cKF_ckcb_r_ply_1_wash2_tbl
- 0x807A5DA8: cKF_kn_ply_1_wash2_tbl
- 0x807A5E14: cKF_c_ply_1_wash2_tbl
- 0x807A5E4C: cKF_ds_ply_1_wash2_tbl
- 0x807A6290: cKF_ba_r_ply_1_wash2
- 0x807A62A4: cKF_ckcb_r_ply_1_wash3_tbl
- 0x807A62C0: cKF_kn_ply_1_wash3_tbl
- 0x807A632C: cKF_c_ply_1_wash3_tbl
- 0x807A6364: cKF_ds_ply_1_wash3_tbl
- 0x807A6724: cKF_ba_r_ply_1_wash3
- 0x807A6738: cKF_ckcb_r_ply_1_wash4_tbl
- 0x807A6754: cKF_kn_ply_1_wash4_tbl
- 0x807A67C0: cKF_c_ply_1_wash4_tbl
- 0x807A67F8: cKF_ds_ply_1_wash4_tbl
- 0x807A6B60: cKF_ba_r_ply_1_wash4
- 0x807A6B74: cKF_ckcb_r_ply_1_wash5_tbl
- 0x807A6B90: cKF_kn_ply_1_wash5_tbl
- 0x807A6BFC: cKF_c_ply_1_wash5_tbl
- 0x807A6C34: cKF_ds_ply_1_wash5_tbl
- 0x807A6FC0: cKF_ba_r_ply_1_wash5
- 0x807A6FD4: cKF_ckcb_r_ply_1_fukubiki1_tbl
- 0x807A6FF0: cKF_kn_ply_1_fukubiki1_tbl
- 0x807A705C: cKF_c_ply_1_fukubiki1_tbl
- 0x807A7094: cKF_ds_ply_1_fukubiki1_tbl
- 0x807A7708: cKF_ba_r_ply_1_fukubiki1
- 0x807A771C: cKF_ckcb_r_ply_1_omairi1_tbl
- 0x807A7738: cKF_kn_ply_1_omairi1_tbl
- 0x807A77A4: cKF_c_ply_1_omairi1_tbl
- 0x807A77DC: cKF_ds_ply_1_omairi1_tbl
- 0x807A80E8: cKF_ba_r_ply_1_omairi1
- 0x807A80FC: cKF_ckcb_r_ply_1_saisen1_tbl
- 0x807A8118: cKF_kn_ply_1_saisen1_tbl
- 0x807A8184: cKF_c_ply_1_saisen1_tbl
- 0x807A81BC: cKF_ds_ply_1_saisen1_tbl
- 0x807A8840: cKF_ba_r_ply_1_saisen1
- 0x807A8854: cKF_ckcb_r_ply_1_return_mail1_tbl
- 0x807A8870: cKF_kn_ply_1_return_mail1_tbl
- 0x807A88DC: cKF_c_ply_1_return_mail1_tbl
- 0x807A8914: cKF_ds_ply_1_return_mail1_tbl
- 0x807A8C08: cKF_ba_r_ply_1_return_mail1
- 0x807A8C1C: cKF_ckcb_r_ply_1_return_mail2_tbl
- 0x807A8C38: cKF_kn_ply_1_return_mail2_tbl
- 0x807A8CA4: cKF_c_ply_1_return_mail2_tbl
- 0x807A8CDC: cKF_ds_ply_1_return_mail2_tbl
- 0x807A9144: cKF_ba_r_ply_1_return_mail2
- 0x807A9158: cKF_ckcb_r_ply_1_return_mail3_tbl
- 0x807A9174: cKF_kn_ply_1_return_mail3_tbl
- 0x807A91E0: cKF_c_ply_1_return_mail3_tbl
- 0x807A9218: cKF_ds_ply_1_return_mail3_tbl
- 0x807A964C: cKF_ba_r_ply_1_return_mail3
- 0x807A9660: cKF_ckcb_r_ply_1_eat1_tbl
- 0x807A967C: cKF_kn_ply_1_eat1_tbl
- 0x807A96E4: cKF_c_ply_1_eat1_tbl
- 0x807A9720: cKF_ds_ply_1_eat1_tbl
- 0x807A9E0C: cKF_ba_r_ply_1_eat1
- 0x807A9E20: ply_1_eat11_tex_index
- 0x807A9E74: ply_1_eat12_tex_index
- 0x807A9EC8: cKF_ckcb_r_ply_1_gaaan1_tbl
- 0x807A9EE4: cKF_kn_ply_1_gaaan1_tbl
- 0x807A9F40: cKF_c_ply_1_gaaan1_tbl
- 0x807A9F88: cKF_ds_ply_1_gaaan1_tbl
- 0x807AA2A0: cKF_ba_r_ply_1_gaaan1
- 0x807AA2B4: ply_1_gaaan11_tex_index
- 0x807AA2C0: ply_1_gaaan12_tex_index
- 0x807AA2CC: cKF_ckcb_r_ply_1_gaaan2_tbl
- 0x807AA2E8: cKF_kn_ply_1_gaaan2_tbl
- 0x807AA344: cKF_c_ply_1_gaaan2_tbl
- 0x807AA38C: cKF_ds_ply_1_gaaan2_tbl
- 0x807AA658: cKF_ba_r_ply_1_gaaan2
- 0x807AA66C: cKF_ckcb_r_ply_1_deru1_tbl
- 0x807AA688: cKF_kn_ply_1_deru1_tbl
- 0x807AA6F4: cKF_c_ply_1_deru1_tbl
- 0x807AA72C: cKF_ds_ply_1_deru1_tbl
- 0x807AAD2C: cKF_ba_r_ply_1_deru1
- 0x807AAD40: ply_1_deru11_tex_index
- 0x807AAD7C: ply_1_deru12_tex_index
- 0x807AADB8: cKF_ckcb_r_ply_1_guratuku1_tbl
- 0x807AADD4: cKF_kn_ply_1_guratuku1_tbl
- 0x807AAE40: cKF_c_ply_1_guratuku1_tbl
- 0x807AAE78: cKF_ds_ply_1_guratuku1_tbl
- 0x807AB414: cKF_ba_r_ply_1_guratuku1
- 0x807AB428: ply_1_guratuku11_tex_index
- 0x807AB444: ply_1_guratuku12_tex_index
- 0x807AB460: cKF_ckcb_r_ply_1_mogaku1_tbl
- 0x807AB47C: cKF_kn_ply_1_mogaku1_tbl
- 0x807AB4E8: cKF_c_ply_1_mogaku1_tbl
- 0x807AB520: cKF_ds_ply_1_mogaku1_tbl
- 0x807ABB88: cKF_ba_r_ply_1_mogaku1
- 0x807ABB9C: ply_1_mogaku11_tex_index
- 0x807ABBC8: cKF_ckcb_r_ply_1_otiru1_tbl
- 0x807ABBE4: cKF_kn_ply_1_otiru1_tbl
- 0x807ABC50: cKF_c_ply_1_otiru1_tbl
- 0x807ABC88: cKF_ds_ply_1_otiru1_tbl
- 0x807ABFDC: cKF_ba_r_ply_1_otiru1
- 0x807ABFF0: ply_1_otiru11_tex_index
- 0x807ABFFC: ply_1_otiru12_tex_index
- 0x807AC008: cKF_ckcb_r_ply_1_zassou1_tbl
- 0x807AC024: cKF_kn_ply_1_zassou1_tbl
- 0x807AC090: cKF_c_ply_1_zassou1_tbl
- 0x807AC0C8: cKF_ds_ply_1_zassou1_tbl
- 0x807AC604: cKF_ba_r_ply_1_zassou1
- 0x807AC618: cKF_ckcb_r_ply_1_knock1_tbl
- 0x807AC634: cKF_kn_ply_1_knock1_tbl
- 0x807AC6A0: cKF_c_ply_1_knock1_tbl
- 0x807AC6D8: cKF_ds_ply_1_knock1_tbl
- 0x807ACC8C: cKF_ba_r_ply_1_knock1
- 0x807ACCA0: cKF_ckcb_r_ply_1_biku1_tbl
- 0x807ACCBC: cKF_kn_ply_1_biku1_tbl
- 0x807ACD28: cKF_c_ply_1_biku1_tbl
- 0x807ACD60: cKF_ds_ply_1_biku1_tbl
- 0x807AD3CC: cKF_ba_r_ply_1_biku1
- 0x807AD3E0: ply_1_biku11_tex_index
- 0x807AD3FC: ply_1_biku12_tex_index
- 0x807AD418: cKF_ckcb_r_ply_1_hati1_tbl
- 0x807AD434: cKF_kn_ply_1_hati1_tbl
- 0x807AD4A0: cKF_c_ply_1_hati1_tbl
- 0x807AD4D8: cKF_ds_ply_1_hati1_tbl
- 0x807AE284: cKF_ba_r_ply_1_hati1
- 0x807AE298: ply_1_hati11_tex_index
- 0x807AE2DC: ply_1_hati12_tex_index
- 0x807AE320: cKF_ckcb_r_ply_1_hati2_tbl
- 0x807AE33C: cKF_kn_ply_1_hati2_tbl
- 0x807AE3A8: cKF_c_ply_1_hati2_tbl
- 0x807AE3E0: cKF_ds_ply_1_hati2_tbl
- 0x807AEAC4: cKF_ba_r_ply_1_hati2
- 0x807AEAD8: ply_1_hati21_tex_index
- 0x807AEB18: ply_1_hati22_tex_index
- 0x807AEB58: cKF_ckcb_r_ply_1_hati3_tbl
- 0x807AEB74: cKF_kn_ply_1_hati3_tbl
- 0x807AEBE8: cKF_c_ply_1_hati3_tbl
- 0x807AEC18: cKF_ds_ply_1_hati3_tbl
- 0x807AF368: cKF_ba_r_ply_1_hati3
- 0x807AF37C: ply_1_hati31_tex_index
- 0x807AF39C: ply_1_hati32_tex_index
- 0x807AF3BC: cKF_ckcb_r_ply_1_push_yuki1_tbl
- 0x807AF3D8: cKF_kn_ply_1_push_yuki1_tbl
- 0x807AF444: cKF_c_ply_1_push_yuki1_tbl
- 0x807AF47C: cKF_ds_ply_1_push_yuki1_tbl
- 0x807AF88C: cKF_ba_r_ply_1_push_yuki1
- 0x807AF8A0: cKF_ckcb_r_ply_1_deru2_tbl
- 0x807AF8BC: cKF_kn_ply_1_deru2_tbl
- 0x807AF928: cKF_c_ply_1_deru2_tbl
- 0x807AF960: cKF_ds_ply_1_deru2_tbl
- 0x807B0038: cKF_ba_r_ply_1_deru2
- 0x807B004C: ply_1_deru21_tex_index
- 0x807B0088: ply_1_deru22_tex_index
- 0x807B00C4: cKF_ckcb_r_ply_1_otiru2_tbl
- 0x807B00E0: cKF_kn_ply_1_otiru2_tbl
- 0x807B014C: cKF_c_ply_1_otiru2_tbl
- 0x807B0184: cKF_ds_ply_1_otiru2_tbl
- 0x807B04E4: cKF_ba_r_ply_1_otiru2
- 0x807B04F8: ply_1_otiru21_tex_index
- 0x807B0504: ply_1_otiru22_tex_index
- 0x807B0510: cKF_ckcb_r_ply_1_itazura1_tbl
- 0x807B052C: cKF_kn_ply_1_itazura1_tbl
- 0x807B0598: cKF_c_ply_1_itazura1_tbl
- 0x807B05D0: cKF_ds_ply_1_itazura1_tbl
- 0x807B0EE8: cKF_ba_r_ply_1_itazura1
- 0x807B0EFC: ply_1_itazura11_tex_index
- 0x807B0F30: ply_1_itazura12_tex_index
- 0x807B0F64: cKF_ckcb_r_ply_1_umb_rot1_tbl
- 0x807B0F80: cKF_kn_ply_1_umb_rot1_tbl
- 0x807B0FEC: cKF_c_ply_1_umb_rot1_tbl
- 0x807B1024: cKF_ds_ply_1_umb_rot1_tbl
- 0x807B1540: cKF_ba_r_ply_1_umb_rot1
- 0x807B1554: cKF_ckcb_r_ply_1_pickup_wait1_tbl
- 0x807B1570: cKF_kn_ply_1_pickup_wait1_tbl
- 0x807B15DC: cKF_c_ply_1_pickup_wait1_tbl
- 0x807B1614: cKF_ds_ply_1_pickup_wait1_tbl
- 0x807B1B74: cKF_ba_r_ply_1_pickup_wait1
- 0x807B1B88: cKF_ckcb_r_ply_1_yatta1_tbl
- 0x807B1BA4: cKF_kn_ply_1_yatta1_tbl
- 0x807B1C10: cKF_c_ply_1_yatta1_tbl
- 0x807B1C48: cKF_ds_ply_1_yatta1_tbl
- 0x807B27AC: cKF_ba_r_ply_1_yatta1
- 0x807B27C0: ply_1_yatta11_tex_index
- 0x807B27F8: ply_1_yatta12_tex_index
- 0x807B2830: cKF_ckcb_r_ply_1_yatta2_tbl
- 0x807B284C: cKF_kn_ply_1_yatta2_tbl
- 0x807B28B8: cKF_c_ply_1_yatta2_tbl
- 0x807B28F0: cKF_ds_ply_1_yatta2_tbl
- 0x807B34BC: cKF_ba_r_ply_1_yatta2
- 0x807B34D0: ply_1_yatta21_tex_index
- 0x807B3508: ply_1_yatta22_tex_index
- 0x807B3540: cKF_ckcb_r_ply_1_yatta3_tbl
- 0x807B355C: cKF_kn_ply_1_yatta3_tbl
- 0x807B35C0: cKF_c_ply_1_yatta3_tbl
- 0x807B3600: cKF_ds_ply_1_yatta3_tbl
- 0x807B4124: cKF_ba_r_ply_1_yatta3
- 0x807B4138: ply_1_yatta31_tex_index
- 0x807B4170: ply_1_yatta32_tex_index
- 0x807B41A8: cKF_ckcb_r_ply_1_kaza1_tbl
- 0x807B41C4: cKF_c_ply_1_kaza1_tbl
- 0x807B4268: cKF_ba_r_ply_1_kaza1
- 0x807B427C: cKF_ckcb_r_ply_1_mosquito1_tbl
- 0x807B4298: cKF_kn_ply_1_mosquito1_tbl
- 0x807B4304: cKF_c_ply_1_mosquito1_tbl
- 0x807B433C: cKF_ds_ply_1_mosquito1_tbl
- 0x807B48DC: cKF_ba_r_ply_1_mosquito1
- 0x807B48F0: ply_1_mosquito11_tex_index
- 0x807B4910: ply_1_mosquito12_tex_index
- 0x807B4930: cKF_ckcb_r_ply_1_mosquito2_tbl
- 0x807B494C: cKF_kn_ply_1_mosquito2_tbl
- 0x807B49B4: cKF_c_ply_1_mosquito2_tbl
- 0x807B49F0: cKF_ds_ply_1_mosquito2_tbl
- 0x807B4CEC: cKF_ba_r_ply_1_mosquito2
- 0x807B4D00: cKF_ckcb_r_ply_1_ride1_tbl
- 0x807B4D1C: cKF_kn_ply_1_ride1_tbl
- 0x807B4D8C: cKF_c_ply_1_ride1_tbl
- 0x807B4DC0: cKF_ds_ply_1_ride1_tbl
- 0x807B559C: cKF_ba_r_ply_1_ride1
- 0x807B55B0: cKF_ckcb_r_ply_1_ride2_tbl
- 0x807B55CC: cKF_kn_ply_1_ride2_tbl
- 0x807B5640: cKF_c_ply_1_ride2_tbl
- 0x807B5670: cKF_ds_ply_1_ride2_tbl
- 0x807B5DD4: cKF_ba_r_ply_1_ride2
- 0x807B5DE8: cKF_ckcb_r_ply_1_ridewait_tbl
- 0x807B5E04: cKF_kn_ply_1_ridewait_tbl
- 0x807B5E78: cKF_c_ply_1_ridewait_tbl
- 0x807B5EA8: cKF_ds_ply_1_ridewait_tbl
- 0x807B6228: cKF_ba_r_ply_1_ridewait
- 0x807B623C: cKF_ckcb_r_ply_1_getoff1_tbl
- 0x807B6258: cKF_kn_ply_1_getoff1_tbl
- 0x807B62CC: cKF_c_ply_1_getoff1_tbl
- 0x807B62FC: cKF_ds_ply_1_getoff1_tbl
- 0x807B6D88: cKF_ba_r_ply_1_getoff1
- 0x807B6D9C: cKF_ckcb_r_ply_1_getoff2_tbl
- 0x807B6DB8: cKF_kn_ply_1_getoff2_tbl
- 0x807B6E2C: cKF_c_ply_1_getoff2_tbl
- 0x807B6E5C: cKF_ds_ply_1_getoff2_tbl
- 0x807B7620: cKF_ba_r_ply_1_getoff2
- 0x807B7634: cKF_ckcb_r_ply_1_utiwa_wait1_tbl
- 0x807B7650: cKF_kn_ply_1_utiwa_wait1_tbl
- 0x807B7664: cKF_c_ply_1_utiwa_wait1_tbl
- 0x807B76F4: cKF_ds_ply_1_utiwa_wait1_tbl
- 0x807B77A8: cKF_ba_r_ply_1_utiwa_wait1
- 0x807B77BC: cKF_ckcb_r_ply_1_utiwa_d1_tbl
- 0x807B77D8: cKF_kn_ply_1_utiwa_d1_tbl
- 0x807B77F0: cKF_c_ply_1_utiwa_d1_tbl
- 0x807B787C: cKF_ds_ply_1_utiwa_d1_tbl
- 0x807B799C: cKF_ba_r_ply_1_utiwa_d1
- 0x807B79B0: cKF_ckcb_r_ply_1_axe_break1_tbl
- 0x807B79CC: cKF_kn_ply_1_axe_break1_tbl
- 0x807B7A38: cKF_c_ply_1_axe_break1_tbl
- 0x807B7A70: cKF_ds_ply_1_axe_break1_tbl
- 0x807B8438: cKF_ba_r_ply_1_axe_break1
- 0x807B844C: ply_1_axe_break11_tex_index
- 0x807B848C: ply_1_axe_break12_tex_index
- 0x807B84CC: cKF_ckcb_r_ply_1_axe_breakwait1_tbl
- 0x807B84E8: cKF_kn_ply_1_axe_breakwait1_tbl
- 0x807B8554: cKF_c_ply_1_axe_breakwait1_tbl
- 0x807B858C: cKF_ds_ply_1_axe_breakwait1_tbl
- 0x807B8A98: cKF_ba_r_ply_1_axe_breakwait1
- 0x807B8AAC: cKF_ckcb_r_ply_1_light_on1_tbl
- 0x807B8AC8: cKF_kn_ply_1_light_on1_tbl
- 0x807B8B34: cKF_c_ply_1_light_on1_tbl
- 0x807B8B6C: cKF_ds_ply_1_light_on1_tbl
- 0x807B927C: cKF_ba_r_ply_1_light_on1
- 0x807B9290: cKF_ckcb_r_ply_1_taisou1_tbl
- 0x807B92AC: cKF_kn_ply_1_taisou1_tbl
- 0x807B92F0: cKF_c_ply_1_taisou1_tbl
- 0x807B9350: cKF_ds_ply_1_taisou1_tbl
- 0x807B9844: cKF_ba_r_ply_1_taisou1
- 0x807B9858: cKF_ckcb_r_ply_1_taisou2_1_tbl
- 0x807B9874: cKF_kn_ply_1_taisou2_1_tbl
- 0x807B98CC: cKF_c_ply_1_taisou2_1_tbl
- 0x807B9918: cKF_ds_ply_1_taisou2_1_tbl
- 0x807B9C5C: cKF_ba_r_ply_1_taisou2_1
- 0x807B9C70: cKF_ckcb_r_ply_1_taisou2_2_tbl
- 0x807B9C8C: cKF_kn_ply_1_taisou2_2_tbl
- 0x807B9CE4: cKF_c_ply_1_taisou2_2_tbl
- 0x807B9D30: cKF_ds_ply_1_taisou2_2_tbl
- 0x807BA044: cKF_ba_r_ply_1_taisou2_2
- 0x807BA058: cKF_ckcb_r_ply_1_taisou3_tbl
- 0x807BA074: cKF_kn_ply_1_taisou3_tbl
- 0x807BA0E0: cKF_c_ply_1_taisou3_tbl
- 0x807BA118: cKF_ds_ply_1_taisou3_tbl
- 0x807BB32C: cKF_ba_r_ply_1_taisou3
- 0x807BB340: cKF_ckcb_r_ply_1_taisou4_1_tbl
- 0x807BB35C: cKF_kn_ply_1_taisou4_1_tbl
- 0x807BB3C4: cKF_c_ply_1_taisou4_1_tbl
- 0x807BB400: cKF_ds_ply_1_taisou4_1_tbl
- 0x807BBACC: cKF_ba_r_ply_1_taisou4_1
- 0x807BBAE0: cKF_ckcb_r_ply_1_taisou4_2_tbl
- 0x807BBAFC: cKF_kn_ply_1_taisou4_2_tbl
- 0x807BBB64: cKF_c_ply_1_taisou4_2_tbl
- 0x807BBBA0: cKF_ds_ply_1_taisou4_2_tbl
- 0x807BC25C: cKF_ba_r_ply_1_taisou4_2
- 0x807BC270: cKF_ckcb_r_ply_1_taisou5_1_tbl
- 0x807BC28C: cKF_kn_ply_1_taisou5_1_tbl
- 0x807BC2F8: cKF_c_ply_1_taisou5_1_tbl
- 0x807BC330: cKF_ds_ply_1_taisou5_1_tbl
- 0x807BCC2C: cKF_ba_r_ply_1_taisou5_1
- 0x807BCC40: cKF_ckcb_r_ply_1_taisou5_2_tbl
- 0x807BCC5C: cKF_kn_ply_1_taisou5_2_tbl
- 0x807BCCC8: cKF_c_ply_1_taisou5_2_tbl
- 0x807BCD00: cKF_ds_ply_1_taisou5_2_tbl
- 0x807BD5FC: cKF_ba_r_ply_1_taisou5_2
- 0x807BD610: cKF_ckcb_r_ply_1_taisou6_1_tbl
- 0x807BD62C: cKF_kn_ply_1_taisou6_1_tbl
- 0x807BD694: cKF_c_ply_1_taisou6_1_tbl
- 0x807BD6D0: cKF_ds_ply_1_taisou6_1_tbl
- 0x807BDCC4: cKF_ba_r_ply_1_taisou6_1
- 0x807BDCD8: cKF_ckcb_r_ply_1_taisou6_2_tbl
- 0x807BDCF4: cKF_kn_ply_1_taisou6_2_tbl
- 0x807BDD5C: cKF_c_ply_1_taisou6_2_tbl
- 0x807BDD98: cKF_ds_ply_1_taisou6_2_tbl
- 0x807BE398: cKF_ba_r_ply_1_taisou6_2
- 0x807BE3AC: cKF_ckcb_r_ply_1_taisou7_1_tbl
- 0x807BE3C8: cKF_kn_ply_1_taisou7_1_tbl
- 0x807BE424: cKF_c_ply_1_taisou7_1_tbl
- 0x807BE46C: cKF_ds_ply_1_taisou7_1_tbl
- 0x807BE8EC: cKF_ba_r_ply_1_taisou7_1
- 0x807BE900: cKF_ckcb_r_ply_1_taisou7_2_tbl
- 0x807BE91C: cKF_kn_ply_1_taisou7_2_tbl
- 0x807BE978: cKF_c_ply_1_taisou7_2_tbl
- 0x807BE9C0: cKF_ds_ply_1_taisou7_2_tbl
- 0x807BEE48: cKF_ba_r_ply_1_taisou7_2
- 0x807BEE5C: cKF_ckcb_r_ply_1_omairi_us1_tbl
- 0x807BEE78: cKF_kn_ply_1_omairi_us1_tbl
- 0x807BEEE4: cKF_c_ply_1_omairi_us1_tbl
- 0x807BEF1C: cKF_ds_ply_1_omairi_us1_tbl
- 0x807BF2DC: cKF_ba_r_ply_1_omairi_us1
- 0x807BF300: tol_axe_1_pal
- 0x807BF320: tol_axe_1_tuka1_tex_txt
- 0x807BF520: tol_axe_1_edge2_tex_txt
- 0x807BF620: tol_axe_1_edge1_tex_txt
- 0x807BF720: tol_axe_1_v
- 0x807BF940: tol_axe_1_model
- 0x807BFA20: tol_axe_1_b_pal
- 0x807BFA40: tol_axe_1_b_tuka1_tex_txt
- 0x807BFC40: tol_axe_1_b_edge2_tex_txt
- 0x807BFD40: tol_axe_1_b_edge1_tex_txt
- 0x807BFE40: tol_axe_1_b_v
- 0x807C0060: tol_axe_1_b_model
- 0x807C0140: tol_axe_1_c_pal
- 0x807C0160: tol_axe_1_c_tuka1_tex_txt
- 0x807C0360: tol_axe_1_c_edge2_tex_txt
- 0x807C0460: tol_axe_1_c_edge1_tex_txt
- 0x807C0660: tol_axe_1_c_v
- 0x807C0880: tol_axe_1_c_model
- 0x807C0960: tol_axe_2_pal
- 0x807C0980: tol_axe_2_tuka1_tex_txt
- 0x807C0B80: tol_axe_2_edge2_tex_txt
- 0x807C0C80: tol_axe_2_edge1_tex_txt
- 0x807C0D80: tol_axe_2_v
- 0x807C0FA0: tol_axe_2_model
- 0x807C1080: act_m_net1_pal
- 0x807C10A0: tol_net_1_tuka1_tex_txt
- 0x807C12A0: tol_net_1_main1_tex_txt
- 0x807C15A0: tol_net_1_hole1_tex_txt
- 0x807C16A0: tol_net_1_v
- 0x807C1B90: main_net_model
- 0x807C1C30: main2_net_model
- 0x807C1CC8: e_net_model
- 0x807C1D90: cKF_je_r_tol_net_1_tbl
- 0x807C1DD8: cKF_bs_r_tol_net_1
- 0x807C1DE0: tol_net_2_pal
- 0x807C1E00: tol_net_2_main1_tex_txt
- 0x807C2100: tol_net_2_tuka1_tex_txt
- 0x807C2300: tol_net_2_hole1_tex_txt
- 0x807C2400: tol_net_2_v
- 0x807C2900: main_netB_model
- 0x807C29A0: main2_netB_model
- 0x807C2A38: e_netB_model
- 0x807C2B00: cKF_je_r_tol_net_2_tbl
- 0x807C2B48: cKF_bs_r_tol_net_2
- 0x807C2B50: cKF_ckcb_r_tol_net_1_get_m1_tbl
- 0x807C2B58: cKF_kn_tol_net_1_get_m1_tbl
- 0x807C2B6C: cKF_c_tol_net_1_get_m1_tbl
- 0x807C2B84: cKF_ds_tol_net_1_get_m1_tbl
- 0x807C2C80: cKF_ba_r_tol_net_1_get_m1
- 0x807C2C94: cKF_ckcb_r_tol_net_1_net_swing1_tbl
- 0x807C2C9C: cKF_kn_tol_net_1_net_swing1_tbl
- 0x807C2CB0: cKF_c_tol_net_1_net_swing1_tbl
- 0x807C2CC8: cKF_ds_tol_net_1_net_swing1_tbl
- 0x807C2D4C: cKF_ba_r_tol_net_1_net_swing1
- 0x807C2D60: cKF_ckcb_r_tol_net_1_kamae_main_m1_tbl
- 0x807C2D68: cKF_kn_tol_net_1_kamae_main_m1_tbl
- 0x807C2D7C: cKF_c_tol_net_1_kamae_main_m1_tbl
- 0x807C2D94: cKF_ds_tol_net_1_kamae_main_m1_tbl
- 0x807C2E3C: cKF_ba_r_tol_net_1_kamae_main_m1
- 0x807C2E50: cKF_ckcb_r_tol_net_1_kokeru_getup_n1_tbl
- 0x807C2E58: cKF_kn_tol_net_1_kokeru_getup_n1_tbl
- 0x807C2E64: cKF_c_tol_net_1_kokeru_getup_n1_tbl
- 0x807C2E84: cKF_ds_tol_net_1_kokeru_getup_n1_tbl
- 0x807C2F94: cKF_ba_r_tol_net_1_kokeru_getup_n1
- 0x807C2FA8: cKF_ckcb_r_tol_net_1_kokeru_n1_tbl
- 0x807C2FB0: cKF_kn_tol_net_1_kokeru_n1_tbl
- 0x807C2FC4: cKF_c_tol_net_1_kokeru_n1_tbl
- 0x807C2FDC: cKF_ds_tol_net_1_kokeru_n1_tbl
- 0x807C30A8: cKF_ba_r_tol_net_1_kokeru_n1
- 0x807C30BC: cKF_ckcb_r_tol_net_1_swing_wait1_tbl
- 0x807C30C4: cKF_kn_tol_net_1_swing_wait1_tbl
- 0x807C30D8: cKF_c_tol_net_1_swing_wait1_tbl
- 0x807C30F0: cKF_ds_tol_net_1_swing_wait1_tbl
- 0x807C3188: cKF_ba_r_tol_net_1_swing_wait1
- 0x807C319C: cKF_ckcb_r_tol_net_1_yatta_m1_tbl
- 0x807C31A4: cKF_kn_tol_net_1_yatta_m1_tbl
- 0x807C31B8: cKF_c_tol_net_1_yatta_m1_tbl
- 0x807C31D0: cKF_ds_tol_net_1_yatta_m1_tbl
- 0x807C3308: cKF_ba_r_tol_net_1_yatta_m1
- 0x807C3340: tol_sao_1_main1_tex_txt
- 0x807C3540: tol_sao_1_v
- 0x807C38E0: main1_sao_model
- 0x807C3940: main2_sao_model
- 0x807C39D0: main3_sao_model
- 0x807C3A60: main4_sao_model
- 0x807C3AE8: cKF_je_r_tol_sao_1_tbl
- 0x807C3B24: cKF_bs_r_tol_sao_1
- 0x807C3B60: tol_sao_2_main1_tex_txt
- 0x807C3D60: tol_sao_2_v
- 0x807C4100: main1_saoB_model
- 0x807C4160: main2_saoB_model
- 0x807C41F0: main3_saoB_model
- 0x807C4280: main4_saoB_model
- 0x807C4308: cKF_je_r_tol_sao_2_tbl
- 0x807C4344: cKF_bs_r_tol_sao_2
- 0x807C434C: cKF_ckcb_r_tol_sao_1_sao_get_t1_tbl
- 0x807C4354: cKF_kn_tol_sao_1_sao_get_t1_tbl
- 0x807C435C: cKF_c_tol_sao_1_sao_get_t1_tbl
- 0x807C437C: cKF_ds_tol_sao_1_sao_get_t1_tbl
- 0x807C442C: cKF_ba_r_tol_sao_1_sao_get_t1
- 0x807C4440: cKF_ckcb_r_tol_sao_1_sao_move1_tbl
- 0x807C4448: cKF_kn_tol_sao_1_sao_move1_tbl
- 0x807C4464: cKF_c_tol_sao_1_sao_move1_tbl
- 0x807C4470: cKF_ds_tol_sao_1_sao_move1_tbl
- 0x807C4554: cKF_ba_r_tol_sao_1_sao_move1
- 0x807C4568: cKF_ckcb_r_tol_sao_1_sao_sinari1_tbl
- 0x807C4570: cKF_kn_tol_sao_1_sao_sinari1_tbl
- 0x807C4578: cKF_c_tol_sao_1_sao_sinari1_tbl
- 0x807C4598: cKF_ds_tol_sao_1_sao_sinari1_tbl
- 0x807C45BC: cKF_ba_r_tol_sao_1_sao_sinari1
- 0x807C45D0: cKF_ckcb_r_tol_sao_1_sao_swing1_tbl
- 0x807C45D8: cKF_kn_tol_sao_1_sao_swing1_tbl
- 0x807C45E0: cKF_c_tol_sao_1_sao_swing1_tbl
- 0x807C4600: cKF_ds_tol_sao_1_sao_swing1_tbl
- 0x807C472C: cKF_ba_r_tol_sao_1_sao_swing1
- 0x807C4740: cKF_ckcb_r_tol_sao_1_sao_wait1_tbl
- 0x807C4748: cKF_kn_tol_sao_1_sao_wait1_tbl
- 0x807C4768: cKF_c_tol_sao_1_sao_wait1_tbl
- 0x807C4770: cKF_ds_tol_sao_1_sao_wait1_tbl
- 0x807C4880: cKF_ba_r_tol_sao_1_sao_wait1
- 0x807C4894: cKF_ckcb_r_tol_sao_1_not_sao_swing1_tbl
- 0x807C489C: cKF_kn_tol_sao_1_not_sao_swing1_tbl
- 0x807C48A4: cKF_c_tol_sao_1_not_sao_swing1_tbl
- 0x807C48C4: cKF_ds_tol_sao_1_not_sao_swing1_tbl
- 0x807C49E4: cKF_ba_r_tol_sao_1_not_sao_swing1
- 0x807C4A00: act_m_scoop_1_pal
- 0x807C4A20: tol_scoop_1_main1_tex_txt
- 0x807C4B20: tol_scoop_1_tuka1_tex_txt
- 0x807C4D20: tol_scoop_1_tuka2_tex_txt
- 0x807C4DA0: tol_scoop_1_tuka3_tex_txt
- 0x807C4E20: tol_scoop_1_main2_tex_txt
- 0x807C4F20: tol_scoop_1_v
- 0x807C5250: tol_scoop_1_model
- 0x807C53C0: tol_scoop_2_pal
- 0x807C53E0: tol_scoop_2_main1_tex_txt
- 0x807C54E0: tol_scoop_2_tuka1_tex_txt
- 0x807C56E0: tol_scoop_2_tuka2_tex_txt
- 0x807C5760: tol_scoop_2_tuka3_tex_txt
- 0x807C57E0: tol_scoop_2_main2_tex_txt
- 0x807C58E0: tol_scoop_2_v
- 0x807C5C10: tol_scoop_2_model
- 0x807C5E00: tol_balloonA_head_tex_rgb_ia8
- 0x807C6200: tol_balloon1_v
- 0x807C6660: tol_balloonA_a_model
- 0x807C66B8: tol_balloonA_b_model
- 0x807C6750: tol_balloonA_c_model
- 0x807C67E8: tol_balloonA_head_model
- 0x807C6888: cKF_je_r_tol_balloon1_tbl
- 0x807C68DC: cKF_bs_r_tol_balloon1
- 0x807C6900: tol_balloonB_wire_tex_txt
- 0x807C6980: tol_balloonB_head_tex_rgb_ia8
- 0x807C6D80: tol_balloon2_v
- 0x807C71E0: tol_balloonB_a_model
- 0x807C7238: tol_balloonB_b_model
- 0x807C72D0: tol_balloonB_c_model
- 0x807C7368: tol_balloonB_head_model
- 0x807C7408: cKF_je_r_tol_balloon2_tbl
- 0x807C745C: cKF_bs_r_tol_balloon2
- 0x807C7480: tol_balloonC_wire_tex_txt
- 0x807C7500: tol_balloonC_head_tex_rgb_ia8
- 0x807C7900: tol_balloon3_v
- 0x807C7D60: tol_balloonC_a_model
- 0x807C7DB8: tol_balloonC_b_model
- 0x807C7E50: tol_balloonC_c_model
- 0x807C7EE8: tol_balloonC_head_model
- 0x807C7F88: cKF_je_r_tol_balloon3_tbl
- 0x807C7FDC: cKF_bs_r_tol_balloon3
- 0x807C8000: tol_balloonD_wire_tex_txt
- 0x807C8080: tol_balloonD_head_tex_rgb_ia8
- 0x807C8480: tol_balloon4_v
- 0x807C88E0: tol_balloonD_a_model
- 0x807C8938: tol_balloonD_b_model
- 0x807C89D0: tol_balloonD_c_model
- 0x807C8A68: tol_balloonD_head_model
- 0x807C8B08: cKF_je_r_tol_balloon4_tbl
- 0x807C8B5C: cKF_bs_r_tol_balloon4
- 0x807C8B80: tol_balloonE_wire_tex_txt
- 0x807C8C00: tol_balloonE_head_tex_rgb_ia8
- 0x807C9000: tol_balloon5_v
- 0x807C9460: tol_balloonE_a_model
- 0x807C94B8: tol_balloonE_b_model
- 0x807C9550: tol_balloonE_c_model
- 0x807C95E8: tol_balloonE_head_model
- 0x807C9688: cKF_je_r_tol_balloon5_tbl
- 0x807C96DC: cKF_bs_r_tol_balloon5
- 0x807C9700: tol_balloonF_wire_tex_txt
- 0x807C9780: tol_balloonF5_head_tex_rgb_ia8
- 0x807C9B80: tol_balloon6_v
- 0x807CA7E0: tol_balloonF_a_model
- 0x807CA838: tol_balloonF_b_model
- 0x807CA8D0: tol_balloonF_c_model
- 0x807CA968: tol_balloonF_head_model
- 0x807CAAD0: cKF_je_r_tol_balloon6_tbl
- 0x807CAB24: cKF_bs_r_tol_balloon6
- 0x807CAB40: tol_balloonG_wire_tex_txt
- 0x807CABC0: tol_balloonG5_head_tex_rgb_ia8
- 0x807CAFC0: tol_balloon7_v
- 0x807CBC20: tol_balloonG_a_model
- 0x807CBC78: tol_balloonG_b_model
- 0x807CBD10: tol_balloonG_c_model
- 0x807CBDA8: tol_balloonG_head_model
- 0x807CBF10: cKF_je_r_tol_balloon7_tbl
- 0x807CBF64: cKF_bs_r_tol_balloon7
- 0x807CBF80: tol_balloonH_wire_tex_txt
- 0x807CC000: tol_balloonH5_head_tex_rgb_ia8
- 0x807CC400: tol_balloon8_v
- 0x807CD060: tol_balloonH_a_model
- 0x807CD0B8: tol_balloonH_b_model
- 0x807CD150: tol_balloonH_c_model
- 0x807CD1E8: tol_balloonH_head_model
- 0x807CD350: cKF_je_r_tol_balloon8_tbl
- 0x807CD3A4: cKF_bs_r_tol_balloon8
- 0x807CD3AC: cKF_ckcb_r_tol_balloon1_wait_tbl
- 0x807CD3B4: cKF_kn_tol_balloon1_wait_tbl
- 0x807CD3CC: cKF_c_tol_balloon1_wait_tbl
- 0x807CD3E8: cKF_ds_tol_balloon1_wait_tbl
- 0x807CD4C0: cKF_ba_r_tol_balloon1_wait
- 0x807CD4D4: cKF_ckcb_r_tol_balloon1_gyaza1_tbl
- 0x807CD4DC: cKF_kn_tol_balloon1_gyaza1_tbl
- 0x807CD4F4: cKF_c_tol_balloon1_gyaza1_tbl
- 0x807CD50C: cKF_ds_tol_balloon1_gyaza1_tbl
- 0x807CDA54: cKF_ba_r_tol_balloon1_gyaza1
- 0x807CDFA0: tol_kaza1_v
- 0x807CE2A0: tol_kaza1_base_model
- 0x807CE300: tol_kaza1_fan_model
- 0x807CE3B0: cKF_je_r_tol_kaza1_tbl
- 0x807CE3D4: cKF_bs_r_tol_kaza1
- 0x807CE900: tol_kaza2_v
- 0x807CEC00: tol_kaza2_base_model
- 0x807CEC60: tol_kaza2_fan_model
- 0x807CED10: cKF_je_r_tol_kaza2_tbl
- 0x807CED34: cKF_bs_r_tol_kaza2
- 0x807CF260: tol_kaza3_v
- 0x807CF560: tol_kaza3_base_model
- 0x807CF5C0: tol_kaza3_fan_model
- 0x807CF670: cKF_je_r_tol_kaza3_tbl
- 0x807CF694: cKF_bs_r_tol_kaza3
- 0x807CFBC0: tol_kaza4_v
- 0x807CFEC0: tol_kaza4_base_model
- 0x807CFF20: tol_kaza4_fan_model
- 0x807CFFD0: cKF_je_r_tol_kaza4_tbl
- 0x807CFFF4: cKF_bs_r_tol_kaza4
- 0x807D0520: tol_kaza5_v
- 0x807D0820: tol_kaza5_base_model
- 0x807D0880: tol_kaza5_fan_model
- 0x807D0930: cKF_je_r_tol_kaza5_tbl
- 0x807D0954: cKF_bs_r_tol_kaza5
- 0x807D0E80: tol_kaza6_v
- 0x807D1180: tol_kaza6_base_model
- 0x807D11E0: tol_kaza6_fan_model
- 0x807D1290: cKF_je_r_tol_kaza6_tbl
- 0x807D12B4: cKF_bs_r_tol_kaza6
- 0x807D1860: tol_kaza7_v
- 0x807D21E0: tol_kaza7_base_model
- 0x807D2240: tol_kaza7_fan_model
- 0x807D2430: cKF_je_r_tol_kaza7_tbl
- 0x807D2454: cKF_bs_r_tol_kaza7
- 0x807D2A80: tol_kaza8_v
- 0x807D3200: tol_kaza8_base_model
- 0x807D3260: tol_kaza8_fan_model
- 0x807D3438: cKF_je_r_tol_kaza8_tbl
- 0x807D345C: cKF_bs_r_tol_kaza8
- 0x807D3464: cKF_ckcb_r_tol_kaza1_wait_tbl
- 0x807D3468: cKF_kn_tol_kaza1_wait_tbl
- 0x807D347C: cKF_c_tol_kaza1_wait_tbl
- 0x807D3484: cKF_ds_tol_kaza1_wait_tbl
- 0x807D34F0: cKF_ba_r_tol_kaza1_wait
- 0x807D3940: tol_fan1_v
- 0x807D39C0: tol_fan1_model
- 0x807D3E40: tol_fan2_v
- 0x807D3EC0: tol_fan2_model
- 0x807D4340: tol_fan3_v
- 0x807D43C0: tol_fan3_model
- 0x807D4840: tol_fan4_v
- 0x807D48C0: tol_fan4_model
- 0x807D4D40: tol_fan5_v
- 0x807D4DC0: tol_fan5_model
- 0x807D5240: tol_fan6_v
- 0x807D54C0: tol_fan6_model
- 0x807D5980: tol_fan7_v
- 0x807D5A00: tol_fan7_model
- 0x807D5E80: tol_fan8_v
- 0x807D5F00: tol_fan8_model
- 0x807D5F60: BOY_part_data
- 0x807D5FE8: fox_1_v
- 0x807D76E8: head_fox_model
- 0x807D7818: mouth_fox_model
- 0x807D78A0: Rarm2_fox_model
- 0x807D7928: Rarm1_fox_model
- 0x807D79A0: Larm2_fox_model
- 0x807D7A28: Larm1_fox_model
- 0x807D7AA0: chest_fox_model
- 0x807D7BA8: tail1_fox_model
- 0x807D7C20: tail2_fox_model
- 0x807D7CD8: Rfoot2_fox_model
- 0x807D7D58: Rfoot1_fox_model
- 0x807D7DB0: Lfoot2_fox_model
- 0x807D7E30: Lfoot1_fox_model
- 0x807D7E88: base_fox_model
- 0x807D7F58: cKF_je_r_fox_1_tbl
- 0x807D8090: cKF_bs_r_fox_1
- 0x807D80A0: fox_1_pal
- 0x807D80C0: fox_1_eye1_TA_tex_txt
- 0x807D81C0: fox_1_eye2_TA_tex_txt
- 0x807D82C0: fox_1_eye3_TA_tex_txt
- 0x807D83C0: fox_1_eye4_TA_tex_txt
- 0x807D84C0: fox_1_eye5_TA_tex_txt
- 0x807D85C0: fox_1_eye6_TA_tex_txt
- 0x807D86C0: fox_1_eye7_TA_tex_txt
- 0x807D87C0: fox_1_eye8_TA_tex_txt
- 0x807D88C0: fox_1_tmem_txt
- 0x807D8FC0: bul_1_v
- 0x807DA640: head_bul_model
- 0x807DA848: Rarm2_bul_model
- 0x807DA8D0: Rarm1_bul_model
- 0x807DA948: Larm2_bul_model
- 0x807DA9D0: Larm1_bul_model
- 0x807DAA48: chest_bul_model
- 0x807DAAE8: tail1_bul_model
- 0x807DAB48: tail2_bul_model
- 0x807DABD8: Rfoot2_bul_model
- 0x807DAC58: Rfoot1_bul_model
- 0x807DACD8: Lfoot2_bul_model
- 0x807DAD58: Lfoot1_bul_model
- 0x807DADD8: base_bul_model
- 0x807DAE70: cKF_je_r_bul_1_tbl
- 0x807DAFA8: cKF_bs_r_bul_1
- 0x807DAFC0: bul_1_pal
- 0x807DAFE0: bul_1_eye1_TA_tex_txt
- 0x807DB0E0: bul_1_eye2_TA_tex_txt
- 0x807DB1E0: bul_1_eye3_TA_tex_txt
- 0x807DB2E0: bul_1_eye4_TA_tex_txt
- 0x807DB3E0: bul_1_eye5_TA_tex_txt
- 0x807DB4E0: bul_1_eye6_TA_tex_txt
- 0x807DB5E0: bul_1_eye7_TA_tex_txt
- 0x807DB6E0: bul_1_eye8_TA_tex_txt
- 0x807DB7E0: bul_1_mouth1_TA_tex_txt
- 0x807DB8E0: bul_1_mouth2_TA_tex_txt
- 0x807DB9E0: bul_1_mouth3_TA_tex_txt
- 0x807DBAE0: bul_1_mouth4_TA_tex_txt
- 0x807DBBE0: bul_1_mouth5_TA_tex_txt
- 0x807DBCE0: bul_1_mouth6_TA_tex_txt
- 0x807DBDE0: bul_1_tmem_txt
- 0x807DC1E0: bul_2_pal
- 0x807DC200: bul_2_eye1_TA_tex_txt
- 0x807DC300: bul_2_eye2_TA_tex_txt
- 0x807DC400: bul_2_eye3_TA_tex_txt
- 0x807DC500: bul_2_eye4_TA_tex_txt
- 0x807DC600: bul_2_eye5_TA_tex_txt
- 0x807DC700: bul_2_eye6_TA_tex_txt
- 0x807DC800: bul_2_eye7_TA_tex_txt
- 0x807DC900: bul_2_eye8_TA_tex_txt
- 0x807DCA00: bul_2_mouth1_TA_tex_txt
- 0x807DCB00: bul_2_mouth2_TA_tex_txt
- 0x807DCC00: bul_2_mouth3_TA_tex_txt
- 0x807DCD00: bul_2_mouth4_TA_tex_txt
- 0x807DCE00: bul_2_mouth5_TA_tex_txt
- 0x807DCF00: bul_2_mouth6_TA_tex_txt
- 0x807DD000: bul_2_tmem_txt
- 0x807DD400: bul_3_pal
- 0x807DD420: bul_3_eye1_TA_tex_txt
- 0x807DD520: bul_3_eye2_TA_tex_txt
- 0x807DD620: bul_3_eye3_TA_tex_txt
- 0x807DD720: bul_3_eye4_TA_tex_txt
- 0x807DD820: bul_3_eye5_TA_tex_txt
- 0x807DD920: bul_3_eye6_TA_tex_txt
- 0x807DDA20: bul_3_eye7_TA_tex_txt
- 0x807DDB20: bul_3_eye8_TA_tex_txt
- 0x807DDC20: bul_3_mouth1_TA_tex_txt
- 0x807DDD20: bul_3_mouth2_TA_tex_txt
- 0x807DDE20: bul_3_mouth3_TA_tex_txt
- 0x807DDF20: bul_3_mouth4_TA_tex_txt
- 0x807DE020: bul_3_mouth5_TA_tex_txt
- 0x807DE120: bul_3_mouth6_TA_tex_txt
- 0x807DE220: bul_3_tmem_txt
- 0x807DE620: bul_4_pal
- 0x807DE640: bul_4_eye1_TA_tex_txt
- 0x807DE740: bul_4_eye2_TA_tex_txt
- 0x807DE840: bul_4_eye3_TA_tex_txt
- 0x807DE940: bul_4_eye4_TA_tex_txt
- 0x807DEA40: bul_4_eye5_TA_tex_txt
- 0x807DEB40: bul_4_eye6_TA_tex_txt
- 0x807DEC40: bul_4_eye7_TA_tex_txt
- 0x807DED40: bul_4_eye8_TA_tex_txt
- 0x807DEE40: bul_4_mouth1_TA_tex_txt
- 0x807DEF40: bul_4_mouth2_TA_tex_txt
- 0x807DF040: bul_4_mouth3_TA_tex_txt
- 0x807DF140: bul_4_mouth4_TA_tex_txt
- 0x807DF240: bul_4_mouth5_TA_tex_txt
- 0x807DF340: bul_4_mouth6_TA_tex_txt
- 0x807DF440: bul_4_tmem_txt
- 0x807DF840: cml_1_v
- 0x807E1470: head_cml_model
- 0x807E1630: mouth_cml_model
- 0x807E16F0: Rarm2_cml_model
- 0x807E1778: Rarm1_cml_model
- 0x807E17F0: Larm2_cml_model
- 0x807E1878: Larm1_cml_model
- 0x807E18F0: chest_cml_model
- 0x807E1B40: Rfoot2_cml_model
- 0x807E1BC0: Rfoot1_cml_model
- 0x807E1C18: Lfoot2_cml_model
- 0x807E1C98: Lfoot1_cml_model
- 0x807E1CF0: base_cml_model
- 0x807E1D68: cKF_je_r_cml_1_tbl
- 0x807E1EA0: cKF_bs_r_cml_1
- 0x807E1EC0: cml_1_pal
- 0x807E1EE0: cml_1_eye1_TA_tex_txt
- 0x807E1FE0: cml_1_eye2_TA_tex_txt
- 0x807E20E0: cml_1_eye3_TA_tex_txt
- 0x807E21E0: cml_1_eye4_TA_tex_txt
- 0x807E22E0: cml_1_eye5_TA_tex_txt
- 0x807E23E0: cml_1_eye6_TA_tex_txt
- 0x807E24E0: cml_1_eye7_TA_tex_txt
- 0x807E25E0: cml_1_eye8_TA_tex_txt
- 0x807E26E0: cml_1_tmem_txt
- 0x807E2E60: cat_1_v
- 0x807E4290: head_cat_model
- 0x807E43E8: Rarm2_cat_model
- 0x807E4470: Rarm1_cat_model
- 0x807E44E8: Larm2_cat_model
- 0x807E4570: Larm1_cat_model
- 0x807E45E8: chest_cat_model
- 0x807E4678: tail1_cat_model
- 0x807E46D0: tail2_cat_model
- 0x807E4760: Rfoot2_cat_model
- 0x807E47F0: Rfoot1_cat_model
- 0x807E48B0: Lfoot2_cat_model
- 0x807E4940: Lfoot1_cat_model
- 0x807E4A00: base_cat_model
- 0x807E4A70: cKF_je_r_cat_1_tbl
- 0x807E4BA8: cKF_bs_r_cat_1
- 0x807E4BC0: cat_1_pal
- 0x807E4BE0: cat_1_eye1_TA_tex_txt
- 0x807E4CE0: cat_1_eye2_TA_tex_txt
- 0x807E4DE0: cat_1_eye3_TA_tex_txt
- 0x807E4EE0: cat_1_eye4_TA_tex_txt
- 0x807E4FE0: cat_1_eye5_TA_tex_txt
- 0x807E50E0: cat_1_eye6_TA_tex_txt
- 0x807E51E0: cat_1_eye7_TA_tex_txt
- 0x807E52E0: cat_1_eye8_TA_tex_txt
- 0x807E53E0: cat_1_mouth1_TA_tex_txt
- 0x807E54E0: cat_1_mouth2_TA_tex_txt
- 0x807E55E0: cat_1_mouth3_TA_tex_txt
- 0x807E56E0: cat_1_mouth4_TA_tex_txt
- 0x807E57E0: cat_1_mouth5_TA_tex_txt
- 0x807E58E0: cat_1_mouth6_TA_tex_txt
- 0x807E59E0: cat_1_tmem_txt
- 0x807E5DE0: cat_2_pal
- 0x807E5E00: cat_2_eye1_TA_tex_txt
- 0x807E5F00: cat_2_eye2_TA_tex_txt
- 0x807E6000: cat_2_eye3_TA_tex_txt
- 0x807E6100: cat_2_eye4_TA_tex_txt
- 0x807E6200: cat_2_eye5_TA_tex_txt
- 0x807E6300: cat_2_eye6_TA_tex_txt
- 0x807E6400: cat_2_eye7_TA_tex_txt
- 0x807E6500: cat_2_eye8_TA_tex_txt
- 0x807E6600: cat_2_mouth1_TA_tex_txt
- 0x807E6700: cat_2_mouth2_TA_tex_txt
- 0x807E6800: cat_2_mouth3_TA_tex_txt
- 0x807E6900: cat_2_mouth4_TA_tex_txt
- 0x807E6A00: cat_2_mouth5_TA_tex_txt
- 0x807E6B00: cat_2_mouth6_TA_tex_txt
- 0x807E6C00: cat_2_tmem_txt
- 0x807E7000: cat_11_pal
- 0x807E7020: cat_11_eye1_TA_tex_txt
- 0x807E7120: cat_11_eye2_TA_tex_txt
- 0x807E7220: cat_11_eye3_TA_tex_txt
- 0x807E7320: cat_11_eye4_TA_tex_txt
- 0x807E7420: cat_11_eye5_TA_tex_txt
- 0x807E7520: cat_11_eye6_TA_tex_txt
- 0x807E7620: cat_11_eye7_TA_tex_txt
- 0x807E7720: cat_11_eye8_TA_tex_txt
- 0x807E7820: cat_11_mouth1_TA_tex_txt
- 0x807E7920: cat_11_mouth2_TA_tex_txt
- 0x807E7A20: cat_11_mouth3_TA_tex_txt
- 0x807E7B20: cat_11_mouth4_TA_tex_txt
- 0x807E7C20: cat_11_mouth5_TA_tex_txt
- 0x807E7D20: cat_11_mouth6_TA_tex_txt
- 0x807E7E20: cat_11_tmem_txt
- 0x807E8220: cat_12_pal
- 0x807E8240: cat_12_eye1_TA_tex_txt
- 0x807E8340: cat_12_eye2_TA_tex_txt
- 0x807E8440: cat_12_eye3_TA_tex_txt
- 0x807E8540: cat_12_eye4_TA_tex_txt
- 0x807E8640: cat_12_eye5_TA_tex_txt
- 0x807E8740: cat_12_eye6_TA_tex_txt
- 0x807E8840: cat_12_eye7_TA_tex_txt
- 0x807E8940: cat_12_eye8_TA_tex_txt
- 0x807E8A40: cat_12_mouth1_TA_tex_txt
- 0x807E8B40: cat_12_mouth2_TA_tex_txt
- 0x807E8C40: cat_12_mouth3_TA_tex_txt
- 0x807E8D40: cat_12_mouth4_TA_tex_txt
- 0x807E8E40: cat_12_mouth5_TA_tex_txt
- 0x807E8F40: cat_12_mouth6_TA_tex_txt
- 0x807E9040: cat_12_tmem_txt
- 0x807E9440: cat_13_pal
- 0x807E9460: cat_13_eye1_TA_tex_txt
- 0x807E9560: cat_13_eye2_TA_tex_txt
- 0x807E9660: cat_13_eye3_TA_tex_txt
- 0x807E9760: cat_13_eye4_TA_tex_txt
- 0x807E9860: cat_13_eye5_TA_tex_txt
- 0x807E9960: cat_13_eye6_TA_tex_txt
- 0x807E9A60: cat_13_eye7_TA_tex_txt
- 0x807E9B60: cat_13_eye8_TA_tex_txt
- 0x807E9C60: cat_13_mouth1_TA_tex_txt
- 0x807E9D60: cat_13_mouth2_TA_tex_txt
- 0x807E9E60: cat_13_mouth3_TA_tex_txt
- 0x807E9F60: cat_13_mouth4_TA_tex_txt
- 0x807EA060: cat_13_mouth5_TA_tex_txt
- 0x807EA160: cat_13_mouth6_TA_tex_txt
- 0x807EA260: cat_13_tmem_txt
- 0x807EA660: cat_14_pal
- 0x807EA680: cat_14_eye1_TA_tex_txt
- 0x807EA780: cat_14_eye2_TA_tex_txt
- 0x807EA880: cat_14_eye3_TA_tex_txt
- 0x807EA980: cat_14_eye4_TA_tex_txt
- 0x807EAA80: cat_14_eye5_TA_tex_txt
- 0x807EAB80: cat_14_eye6_TA_tex_txt
- 0x807EAC80: cat_14_eye7_TA_tex_txt
- 0x807EAD80: cat_14_eye8_TA_tex_txt
- 0x807EAE80: cat_14_mouth1_TA_tex_txt
- 0x807EAF80: cat_14_mouth2_TA_tex_txt
- 0x807EB080: cat_14_mouth3_TA_tex_txt
- 0x807EB180: cat_14_mouth4_TA_tex_txt
- 0x807EB280: cat_14_mouth5_TA_tex_txt
- 0x807EB380: cat_14_mouth6_TA_tex_txt
- 0x807EB480: cat_14_tmem_txt
- 0x807EB880: cat_15_pal
- 0x807EB8A0: cat_15_eye1_TA_tex_txt
- 0x807EB9A0: cat_15_eye2_TA_tex_txt
- 0x807EBAA0: cat_15_eye3_TA_tex_txt
- 0x807EBBA0: cat_15_eye4_TA_tex_txt
- 0x807EBCA0: cat_15_eye5_TA_tex_txt
- 0x807EBDA0: cat_15_eye6_TA_tex_txt
- 0x807EBEA0: cat_15_eye7_TA_tex_txt
- 0x807EBFA0: cat_15_eye8_TA_tex_txt
- 0x807EC0A0: cat_15_mouth1_TA_tex_txt
- 0x807EC1A0: cat_15_mouth2_TA_tex_txt
- 0x807EC2A0: cat_15_mouth3_TA_tex_txt
- 0x807EC3A0: cat_15_mouth4_TA_tex_txt
- 0x807EC4A0: cat_15_mouth5_TA_tex_txt
- 0x807EC5A0: cat_15_mouth6_TA_tex_txt
- 0x807EC6A0: cat_15_tmem_txt
- 0x807ECAA0: cat_3_pal
- 0x807ECAC0: cat_3_eye1_TA_tex_txt
- 0x807ECBC0: cat_3_eye2_TA_tex_txt
- 0x807ECCC0: cat_3_eye3_TA_tex_txt
- 0x807ECDC0: cat_3_eye4_TA_tex_txt
- 0x807ECEC0: cat_3_eye5_TA_tex_txt
- 0x807ECFC0: cat_3_eye6_TA_tex_txt
- 0x807ED0C0: cat_3_eye7_TA_tex_txt
- 0x807ED1C0: cat_3_eye8_TA_tex_txt
- 0x807ED2C0: cat_3_mouth1_TA_tex_txt
- 0x807ED3C0: cat_3_mouth2_TA_tex_txt
- 0x807ED4C0: cat_3_mouth3_TA_tex_txt
- 0x807ED5C0: cat_3_mouth4_TA_tex_txt
- 0x807ED6C0: cat_3_mouth5_TA_tex_txt
- 0x807ED7C0: cat_3_mouth6_TA_tex_txt
- 0x807ED8C0: cat_3_tmem_txt
- 0x807EDCC0: cat_4_pal
- 0x807EDCE0: cat_4_eye1_TA_tex_txt
- 0x807EDDE0: cat_4_eye2_TA_tex_txt
- 0x807EDEE0: cat_4_eye3_TA_tex_txt
- 0x807EDFE0: cat_4_eye4_TA_tex_txt
- 0x807EE0E0: cat_4_eye5_TA_tex_txt
- 0x807EE1E0: cat_4_eye6_TA_tex_txt
- 0x807EE2E0: cat_4_eye7_TA_tex_txt
- 0x807EE3E0: cat_4_eye8_TA_tex_txt
- 0x807EE4E0: cat_4_mouth1_TA_tex_txt
- 0x807EE5E0: cat_4_mouth2_TA_tex_txt
- 0x807EE6E0: cat_4_mouth3_TA_tex_txt
- 0x807EE7E0: cat_4_mouth4_TA_tex_txt
- 0x807EE8E0: cat_4_mouth5_TA_tex_txt
- 0x807EE9E0: cat_4_mouth6_TA_tex_txt
- 0x807EEAE0: cat_4_tmem_txt
- 0x807EEEE0: cat_5_pal
- 0x807EEF00: cat_5_eye1_TA_tex_txt
- 0x807EF000: cat_5_eye2_TA_tex_txt
- 0x807EF100: cat_5_eye3_TA_tex_txt
- 0x807EF200: cat_5_eye4_TA_tex_txt
- 0x807EF300: cat_5_eye5_TA_tex_txt
- 0x807EF400: cat_5_eye6_TA_tex_txt
- 0x807EF500: cat_5_eye7_TA_tex_txt
- 0x807EF600: cat_5_eye8_TA_tex_txt
- 0x807EF700: cat_5_mouth1_TA_tex_txt
- 0x807EF800: cat_5_mouth2_TA_tex_txt
- 0x807EF900: cat_5_mouth3_TA_tex_txt
- 0x807EFA00: cat_5_mouth4_TA_tex_txt
- 0x807EFB00: cat_5_mouth5_TA_tex_txt
- 0x807EFC00: cat_5_mouth6_TA_tex_txt
- 0x807EFD00: cat_5_tmem_txt
- 0x807F0100: cat_6_pal
- 0x807F0120: cat_6_eye1_TA_tex_txt
- 0x807F0220: cat_6_eye2_TA_tex_txt
- 0x807F0320: cat_6_eye3_TA_tex_txt
- 0x807F0420: cat_6_eye4_TA_tex_txt
- 0x807F0520: cat_6_eye5_TA_tex_txt
- 0x807F0620: cat_6_eye6_TA_tex_txt
- 0x807F0720: cat_6_eye7_TA_tex_txt
- 0x807F0820: cat_6_eye8_TA_tex_txt
- 0x807F0920: cat_6_mouth1_TA_tex_txt
- 0x807F0A20: cat_6_mouth2_TA_tex_txt
- 0x807F0B20: cat_6_mouth3_TA_tex_txt
- 0x807F0C20: cat_6_mouth4_TA_tex_txt
- 0x807F0D20: cat_6_mouth5_TA_tex_txt
- 0x807F0E20: cat_6_mouth6_TA_tex_txt
- 0x807F0F20: cat_6_tmem_txt
- 0x807F1320: cat_7_pal
- 0x807F1340: cat_7_eye1_TA_tex_txt
- 0x807F1440: cat_7_eye2_TA_tex_txt
- 0x807F1540: cat_7_eye3_TA_tex_txt
- 0x807F1640: cat_7_eye4_TA_tex_txt
- 0x807F1740: cat_7_eye5_TA_tex_txt
- 0x807F1840: cat_7_eye6_TA_tex_txt
- 0x807F1940: cat_7_eye7_TA_tex_txt
- 0x807F1A40: cat_7_eye8_TA_tex_txt
- 0x807F1B40: cat_7_mouth1_TA_tex_txt
- 0x807F1C40: cat_7_mouth2_TA_tex_txt
- 0x807F1D40: cat_7_mouth3_TA_tex_txt
- 0x807F1E40: cat_7_mouth4_TA_tex_txt
- 0x807F1F40: cat_7_mouth5_TA_tex_txt
- 0x807F2040: cat_7_mouth6_TA_tex_txt
- 0x807F2140: cat_7_tmem_txt
- 0x807F2540: cat_8_pal
- 0x807F2560: cat_8_eye1_TA_tex_txt
- 0x807F2660: cat_8_eye2_TA_tex_txt
- 0x807F2760: cat_8_eye3_TA_tex_txt
- 0x807F2860: cat_8_eye4_TA_tex_txt
- 0x807F2960: cat_8_eye5_TA_tex_txt
- 0x807F2A60: cat_8_eye6_TA_tex_txt
- 0x807F2B60: cat_8_eye7_TA_tex_txt
- 0x807F2C60: cat_8_eye8_TA_tex_txt
- 0x807F2D60: cat_8_mouth1_TA_tex_txt
- 0x807F2E60: cat_8_mouth2_TA_tex_txt
- 0x807F2F60: cat_8_mouth3_TA_tex_txt
- 0x807F3060: cat_8_mouth4_TA_tex_txt
- 0x807F3160: cat_8_mouth5_TA_tex_txt
- 0x807F3260: cat_8_mouth6_TA_tex_txt
- 0x807F3360: cat_8_tmem_txt
- 0x807F3760: cat_9_pal
- 0x807F3780: cat_9_eye1_TA_tex_txt
- 0x807F3880: cat_9_eye2_TA_tex_txt
- 0x807F3980: cat_9_eye3_TA_tex_txt
- 0x807F3A80: cat_9_eye4_TA_tex_txt
- 0x807F3B80: cat_9_eye5_TA_tex_txt
- 0x807F3C80: cat_9_eye6_TA_tex_txt
- 0x807F3D80: cat_9_eye7_TA_tex_txt
- 0x807F3E80: cat_9_eye8_TA_tex_txt
- 0x807F3F80: cat_9_mouth1_TA_tex_txt
- 0x807F4080: cat_9_mouth2_TA_tex_txt
- 0x807F4180: cat_9_mouth3_TA_tex_txt
- 0x807F4280: cat_9_mouth4_TA_tex_txt
- 0x807F4380: cat_9_mouth5_TA_tex_txt
- 0x807F4480: cat_9_mouth6_TA_tex_txt
- 0x807F4580: cat_9_tmem_txt
- 0x807F4980: cat_10_pal
- 0x807F49A0: cat_10_eye1_TA_tex_txt
- 0x807F4AA0: cat_10_eye2_TA_tex_txt
- 0x807F4BA0: cat_10_eye3_TA_tex_txt
- 0x807F4CA0: cat_10_eye4_TA_tex_txt
- 0x807F4DA0: cat_10_eye5_TA_tex_txt
- 0x807F4EA0: cat_10_eye6_TA_tex_txt
- 0x807F4FA0: cat_10_eye7_TA_tex_txt
- 0x807F50A0: cat_10_eye8_TA_tex_txt
- 0x807F51A0: cat_10_mouth1_TA_tex_txt
- 0x807F52A0: cat_10_mouth2_TA_tex_txt
- 0x807F53A0: cat_10_mouth3_TA_tex_txt
- 0x807F54A0: cat_10_mouth4_TA_tex_txt
- 0x807F55A0: cat_10_mouth5_TA_tex_txt
- 0x807F56A0: cat_10_mouth6_TA_tex_txt
- 0x807F57A0: cat_10_tmem_txt
- 0x807F5BA0: chn_1_v
- 0x807F77C0: head_chn_model
- 0x807F7A00: mouth_chn_model
- 0x807F7A78: Rarm2_chn_model
- 0x807F7AF8: Rarm1_chn_model
- 0x807F7B70: Larm2_chn_model
- 0x807F7BF0: Larm1_chn_model
- 0x807F7C68: chest_chn_model
- 0x807F7D28: tail1_chn_model
- 0x807F7DE8: Rfoot3_chn_model
- 0x807F7E80: Rfoot2_chn_model
- 0x807F7F00: Rfoot1_chn_model
- 0x807F7FC0: Lfoot3_chn_model
- 0x807F8058: Lfoot2_chn_model
- 0x807F80D8: Lfoot1_chn_model
- 0x807F8198: base_chn_model
- 0x807F8208: cKF_je_r_chn_1_tbl
- 0x807F8340: cKF_bs_r_chn_1
- 0x807F8360: chn_1_pal
- 0x807F8380: chn_1_eye1_TA_tex_txt
- 0x807F8480: chn_1_eye2_TA_tex_txt
- 0x807F8580: chn_1_eye3_TA_tex_txt
- 0x807F8680: chn_1_eye4_TA_tex_txt
- 0x807F8780: chn_1_eye5_TA_tex_txt
- 0x807F8880: chn_1_eye6_TA_tex_txt
- 0x807F8980: chn_1_eye7_TA_tex_txt
- 0x807F8A80: chn_1_eye8_TA_tex_txt
- 0x807F8B80: chn_1_tmem_txt
- 0x807F9040: chn_2_pal
- 0x807F9060: chn_2_eye1_TA_tex_txt
- 0x807F9160: chn_2_eye2_TA_tex_txt
- 0x807F9260: chn_2_eye3_TA_tex_txt
- 0x807F9360: chn_2_eye4_TA_tex_txt
- 0x807F9460: chn_2_eye5_TA_tex_txt
- 0x807F9560: chn_2_eye6_TA_tex_txt
- 0x807F9660: chn_2_eye7_TA_tex_txt
- 0x807F9760: chn_2_eye8_TA_tex_txt
- 0x807F9860: chn_2_tmem_txt
- 0x807F9D20: chn_3_pal
- 0x807F9D40: chn_3_eye1_TA_tex_txt
- 0x807F9E40: chn_3_eye2_TA_tex_txt
- 0x807F9F40: chn_3_eye3_TA_tex_txt
- 0x807FA040: chn_3_eye4_TA_tex_txt
- 0x807FA140: chn_3_eye5_TA_tex_txt
- 0x807FA240: chn_3_eye6_TA_tex_txt
- 0x807FA340: chn_3_eye7_TA_tex_txt
- 0x807FA440: chn_3_eye8_TA_tex_txt
- 0x807FA540: chn_3_tmem_txt
- 0x807FAA00: chn_4_pal
- 0x807FAA20: chn_4_eye1_TA_tex_txt
- 0x807FAB20: chn_4_eye2_TA_tex_txt
- 0x807FAC20: chn_4_eye3_TA_tex_txt
- 0x807FAD20: chn_4_eye4_TA_tex_txt
- 0x807FAE20: chn_4_eye5_TA_tex_txt
- 0x807FAF20: chn_4_eye6_TA_tex_txt
- 0x807FB020: chn_4_eye7_TA_tex_txt
- 0x807FB120: chn_4_eye8_TA_tex_txt
- 0x807FB220: chn_4_tmem_txt
- 0x807FB6E0: chn_5_pal
- 0x807FB700: chn_5_eye1_TA_tex_txt
- 0x807FB800: chn_5_eye2_TA_tex_txt
- 0x807FB900: chn_5_eye3_TA_tex_txt
- 0x807FBA00: chn_5_eye4_TA_tex_txt
- 0x807FBB00: chn_5_eye5_TA_tex_txt
- 0x807FBC00: chn_5_eye6_TA_tex_txt
- 0x807FBD00: chn_5_eye7_TA_tex_txt
- 0x807FBE00: chn_5_eye8_TA_tex_txt
- 0x807FBF00: chn_5_tmem_txt
- 0x807FC3C0: chn_6_pal
- 0x807FC3E0: chn_6_eye1_TA_tex_txt
- 0x807FC4E0: chn_6_eye2_TA_tex_txt
- 0x807FC5E0: chn_6_eye3_TA_tex_txt
- 0x807FC6E0: chn_6_eye4_TA_tex_txt
- 0x807FC7E0: chn_6_eye5_TA_tex_txt
- 0x807FC8E0: chn_6_eye6_TA_tex_txt
- 0x807FC9E0: chn_6_eye7_TA_tex_txt
- 0x807FCAE0: chn_6_eye8_TA_tex_txt
- 0x807FCBE0: chn_6_tmem_txt
- 0x807FD0A0: chn_7_pal
- 0x807FD0C0: chn_7_eye1_TA_tex_txt
- 0x807FD1C0: chn_7_eye2_TA_tex_txt
- 0x807FD2C0: chn_7_eye3_TA_tex_txt
- 0x807FD3C0: chn_7_eye4_TA_tex_txt
- 0x807FD4C0: chn_7_eye5_TA_tex_txt
- 0x807FD5C0: chn_7_eye6_TA_tex_txt
- 0x807FD6C0: chn_7_eye7_TA_tex_txt
- 0x807FD7C0: chn_7_eye8_TA_tex_txt
- 0x807FD8C0: chn_7_tmem_txt
- 0x807FDD80: chn_8_pal
- 0x807FDDA0: chn_8_eye1_TA_tex_txt
- 0x807FDEA0: chn_8_eye2_TA_tex_txt
- 0x807FDFA0: chn_8_eye3_TA_tex_txt
- 0x807FE0A0: chn_8_eye4_TA_tex_txt
- 0x807FE1A0: chn_8_eye5_TA_tex_txt
- 0x807FE2A0: chn_8_eye6_TA_tex_txt
- 0x807FE3A0: chn_8_eye7_TA_tex_txt
- 0x807FE4A0: chn_8_eye8_TA_tex_txt
- 0x807FE5A0: chn_8_tmem_txt
- 0x807FEA60: chn_9_pal
- 0x807FEA80: chn_9_eye1_TA_tex_txt
- 0x807FEB80: chn_9_eye2_TA_tex_txt
- 0x807FEC80: chn_9_eye3_TA_tex_txt
- 0x807FED80: chn_9_eye4_TA_tex_txt
- 0x807FEE80: chn_9_eye5_TA_tex_txt
- 0x807FEF80: chn_9_eye6_TA_tex_txt
- 0x807FF080: chn_9_eye7_TA_tex_txt
- 0x807FF180: chn_9_eye8_TA_tex_txt
- 0x807FF280: chn_9_tmem_txt
- 0x807FF740: cbr_1_v
- 0x80800CE0: head_cbr_model
- 0x80800EB8: Rarm2_cbr_model
- 0x80800F48: Rarm1_cbr_model
- 0x80800FD0: Larm2_cbr_model
- 0x80801060: Larm1_cbr_model
- 0x808010E8: chest_cbr_model
- 0x808011A8: tail1_cbr_model
- 0x80801210: Rfoot2_cbr_model
- 0x808012A8: Rfoot1_cbr_model
- 0x80801310: Lfoot2_cbr_model
- 0x808013A8: Lfoot1_cbr_model
- 0x80801410: base_cbr_model
- 0x808014E0: cKF_je_r_cbr_1_tbl
- 0x80801618: cKF_bs_r_cbr_1
- 0x80801620: cbr_1_pal
- 0x80801640: cbr_1_eye1_TA_tex_txt
- 0x80801740: cbr_1_eye2_TA_tex_txt
- 0x80801840: cbr_1_eye3_TA_tex_txt
- 0x80801940: cbr_1_eye4_TA_tex_txt
- 0x80801A40: cbr_1_eye5_TA_tex_txt
- 0x80801B40: cbr_1_eye6_TA_tex_txt
- 0x80801C40: cbr_1_eye7_TA_tex_txt
- 0x80801D40: cbr_1_eye8_TA_tex_txt
- 0x80801E40: cbr_1_mouth1_TA_tex_txt
- 0x80801F40: cbr_1_mouth2_TA_tex_txt
- 0x80802040: cbr_1_mouth3_TA_tex_txt
- 0x80802140: cbr_1_mouth4_TA_tex_txt
- 0x80802240: cbr_1_mouth5_TA_tex_txt
- 0x80802340: cbr_1_mouth6_TA_tex_txt
- 0x80802440: cbr_1_tmem_txt
- 0x80802840: cbr_2_pal
- 0x80802860: cbr_2_eye1_TA_tex_txt
- 0x80802960: cbr_2_eye2_TA_tex_txt
- 0x80802A60: cbr_2_eye3_TA_tex_txt
- 0x80802B60: cbr_2_eye4_TA_tex_txt
- 0x80802C60: cbr_2_eye5_TA_tex_txt
- 0x80802D60: cbr_2_eye6_TA_tex_txt
- 0x80802E60: cbr_2_eye7_TA_tex_txt
- 0x80802F60: cbr_2_eye8_TA_tex_txt
- 0x80803060: cbr_2_mouth1_TA_tex_txt
- 0x80803160: cbr_2_mouth2_TA_tex_txt
- 0x80803260: cbr_2_mouth3_TA_tex_txt
- 0x80803360: cbr_2_mouth4_TA_tex_txt
- 0x80803460: cbr_2_mouth5_TA_tex_txt
- 0x80803560: cbr_2_mouth6_TA_tex_txt
- 0x80803660: cbr_2_tmem_txt
- 0x80803A60: cbr_11_pal
- 0x80803A80: cbr_11_eye1_TA_tex_txt
- 0x80803B80: cbr_11_eye2_TA_tex_txt
- 0x80803C80: cbr_11_eye3_TA_tex_txt
- 0x80803D80: cbr_11_eye4_TA_tex_txt
- 0x80803E80: cbr_11_eye5_TA_tex_txt
- 0x80803F80: cbr_11_eye6_TA_tex_txt
- 0x80804080: cbr_11_eye7_TA_tex_txt
- 0x80804180: cbr_11_eye8_TA_tex_txt
- 0x80804280: cbr_11_mouth1_TA_tex_txt
- 0x80804380: cbr_11_mouth2_TA_tex_txt
- 0x80804480: cbr_11_mouth3_TA_tex_txt
- 0x80804580: cbr_11_mouth4_TA_tex_txt
- 0x80804680: cbr_11_mouth5_TA_tex_txt
- 0x80804780: cbr_11_mouth6_TA_tex_txt
- 0x80804880: cbr_11_tmem_txt
- 0x80804C80: cbr_3_pal
- 0x80804CA0: cbr_3_eye1_TA_tex_txt
- 0x80804DA0: cbr_3_eye2_TA_tex_txt
- 0x80804EA0: cbr_3_eye3_TA_tex_txt
- 0x80804FA0: cbr_3_eye4_TA_tex_txt
- 0x808050A0: cbr_3_eye5_TA_tex_txt
- 0x808051A0: cbr_3_eye6_TA_tex_txt
- 0x808052A0: cbr_3_eye7_TA_tex_txt
- 0x808053A0: cbr_3_eye8_TA_tex_txt
- 0x808054A0: cbr_3_mouth1_TA_tex_txt
- 0x808055A0: cbr_3_mouth2_TA_tex_txt
- 0x808056A0: cbr_3_mouth3_TA_tex_txt
- 0x808057A0: cbr_3_mouth4_TA_tex_txt
- 0x808058A0: cbr_3_mouth5_TA_tex_txt
- 0x808059A0: cbr_3_mouth6_TA_tex_txt
- 0x80805AA0: cbr_3_tmem_txt
- 0x80805EA0: cbr_4_pal
- 0x80805EC0: cbr_4_eye1_TA_tex_txt
- 0x80805FC0: cbr_4_eye2_TA_tex_txt
- 0x808060C0: cbr_4_eye3_TA_tex_txt
- 0x808061C0: cbr_4_eye4_TA_tex_txt
- 0x808062C0: cbr_4_eye5_TA_tex_txt
- 0x808063C0: cbr_4_eye6_TA_tex_txt
- 0x808064C0: cbr_4_eye7_TA_tex_txt
- 0x808065C0: cbr_4_eye8_TA_tex_txt
- 0x808066C0: cbr_4_mouth1_TA_tex_txt
- 0x808067C0: cbr_4_mouth2_TA_tex_txt
- 0x808068C0: cbr_4_mouth3_TA_tex_txt
- 0x808069C0: cbr_4_mouth4_TA_tex_txt
- 0x80806AC0: cbr_4_mouth5_TA_tex_txt
- 0x80806BC0: cbr_4_mouth6_TA_tex_txt
- 0x80806CC0: cbr_4_tmem_txt
- 0x808070C0: cbr_5_pal
- 0x808070E0: cbr_5_eye1_TA_tex_txt
- 0x808071E0: cbr_5_eye2_TA_tex_txt
- 0x808072E0: cbr_5_eye3_TA_tex_txt
- 0x808073E0: cbr_5_eye4_TA_tex_txt
- 0x808074E0: cbr_5_eye5_TA_tex_txt
- 0x808075E0: cbr_5_eye6_TA_tex_txt
- 0x808076E0: cbr_5_eye7_TA_tex_txt
- 0x808077E0: cbr_5_eye8_TA_tex_txt
- 0x808078E0: cbr_5_mouth1_TA_tex_txt
- 0x808079E0: cbr_5_mouth2_TA_tex_txt
- 0x80807AE0: cbr_5_mouth3_TA_tex_txt
- 0x80807BE0: cbr_5_mouth4_TA_tex_txt
- 0x80807CE0: cbr_5_mouth5_TA_tex_txt
- 0x80807DE0: cbr_5_mouth6_TA_tex_txt
- 0x80807EE0: cbr_5_tmem_txt
- 0x808082E0: cbr_6_pal
- 0x80808300: cbr_6_eye1_TA_tex_txt
- 0x80808400: cbr_6_eye2_TA_tex_txt
- 0x80808500: cbr_6_eye3_TA_tex_txt
- 0x80808600: cbr_6_eye4_TA_tex_txt
- 0x80808700: cbr_6_eye5_TA_tex_txt
- 0x80808800: cbr_6_eye6_TA_tex_txt
- 0x80808900: cbr_6_eye7_TA_tex_txt
- 0x80808A00: cbr_6_eye8_TA_tex_txt
- 0x80808B00: cbr_6_mouth1_TA_tex_txt
- 0x80808C00: cbr_6_mouth2_TA_tex_txt
- 0x80808D00: cbr_6_mouth3_TA_tex_txt
- 0x80808E00: cbr_6_mouth4_TA_tex_txt
- 0x80808F00: cbr_6_mouth5_TA_tex_txt
- 0x80809000: cbr_6_mouth6_TA_tex_txt
- 0x80809100: cbr_6_tmem_txt
- 0x80809500: cbr_7_pal
- 0x80809520: cbr_7_eye1_TA_tex_txt
- 0x80809620: cbr_7_eye2_TA_tex_txt
- 0x80809720: cbr_7_eye3_TA_tex_txt
- 0x80809820: cbr_7_eye4_TA_tex_txt
- 0x80809920: cbr_7_eye5_TA_tex_txt
- 0x80809A20: cbr_7_eye6_TA_tex_txt
- 0x80809B20: cbr_7_eye7_TA_tex_txt
- 0x80809C20: cbr_7_eye8_TA_tex_txt
- 0x80809D20: cbr_7_mouth1_TA_tex_txt
- 0x80809E20: cbr_7_mouth2_TA_tex_txt
- 0x80809F20: cbr_7_mouth3_TA_tex_txt
- 0x8080A020: cbr_7_mouth4_TA_tex_txt
- 0x8080A120: cbr_7_mouth5_TA_tex_txt
- 0x8080A220: cbr_7_mouth6_TA_tex_txt
- 0x8080A320: cbr_7_tmem_txt
- 0x8080A720: cbr_8_pal
- 0x8080A740: cbr_8_eye1_TA_tex_txt
- 0x8080A840: cbr_8_eye2_TA_tex_txt
- 0x8080A940: cbr_8_eye3_TA_tex_txt
- 0x8080AA40: cbr_8_eye4_TA_tex_txt
- 0x8080AB40: cbr_8_eye5_TA_tex_txt
- 0x8080AC40: cbr_8_eye6_TA_tex_txt
- 0x8080AD40: cbr_8_eye7_TA_tex_txt
- 0x8080AE40: cbr_8_eye8_TA_tex_txt
- 0x8080AF40: cbr_8_mouth1_TA_tex_txt
- 0x8080B040: cbr_8_mouth2_TA_tex_txt
- 0x8080B140: cbr_8_mouth3_TA_tex_txt
- 0x8080B240: cbr_8_mouth4_TA_tex_txt
- 0x8080B340: cbr_8_mouth5_TA_tex_txt
- 0x8080B440: cbr_8_mouth6_TA_tex_txt
- 0x8080B540: cbr_8_tmem_txt
- 0x8080B940: cbr_9_pal
- 0x8080B960: cbr_9_eye1_TA_tex_txt
- 0x8080BA60: cbr_9_eye2_TA_tex_txt
- 0x8080BB60: cbr_9_eye3_TA_tex_txt
- 0x8080BC60: cbr_9_eye4_TA_tex_txt
- 0x8080BD60: cbr_9_eye5_TA_tex_txt
- 0x8080BE60: cbr_9_eye6_TA_tex_txt
- 0x8080BF60: cbr_9_eye7_TA_tex_txt
- 0x8080C060: cbr_9_eye8_TA_tex_txt
- 0x8080C160: cbr_9_mouth1_TA_tex_txt
- 0x8080C260: cbr_9_mouth2_TA_tex_txt
- 0x8080C360: cbr_9_mouth3_TA_tex_txt
- 0x8080C460: cbr_9_mouth4_TA_tex_txt
- 0x8080C560: cbr_9_mouth5_TA_tex_txt
- 0x8080C660: cbr_9_mouth6_TA_tex_txt
- 0x8080C760: cbr_9_tmem_txt
- 0x8080CB60: cbr_10_pal
- 0x8080CB80: cbr_10_eye1_TA_tex_txt
- 0x8080CC80: cbr_10_eye2_TA_tex_txt
- 0x8080CD80: cbr_10_eye3_TA_tex_txt
- 0x8080CE80: cbr_10_eye4_TA_tex_txt
- 0x8080CF80: cbr_10_eye5_TA_tex_txt
- 0x8080D080: cbr_10_eye6_TA_tex_txt
- 0x8080D180: cbr_10_eye7_TA_tex_txt
- 0x8080D280: cbr_10_eye8_TA_tex_txt
- 0x8080D380: cbr_10_mouth1_TA_tex_txt
- 0x8080D480: cbr_10_mouth2_TA_tex_txt
- 0x8080D580: cbr_10_mouth3_TA_tex_txt
- 0x8080D680: cbr_10_mouth4_TA_tex_txt
- 0x8080D780: cbr_10_mouth5_TA_tex_txt
- 0x8080D880: cbr_10_mouth6_TA_tex_txt
- 0x8080D980: cbr_10_tmem_txt
- 0x8080DD80: data_combi_table
- 0x8080E620: data_combi_table_number
- 0x8080E628: rcc_1_v
- 0x8080FBD8: head_rcc_model
- 0x8080FDE0: mouth_rcc_model
- 0x8080FE58: Rarm2_rcc_model
- 0x8080FF10: Rarm1_rcc_model
- 0x8080FF88: Larm2_rcc_model
- 0x80810040: Larm1_rcc_model
- 0x808100B8: chest_rcc_model
- 0x80810180: tail1_rcc_model
- 0x808101F8: tail2_rcc_model
- 0x80810298: Rfoot2_rcc_model
- 0x80810318: Rfoot1_rcc_model
- 0x80810370: Lfoot2_rcc_model
- 0x808103F0: Lfoot1_rcc_model
- 0x80810448: base_rcc_model
- 0x808104C8: cKF_je_r_rcc_1_tbl
- 0x80810600: cKF_bs_r_rcc_1
- 0x80810620: rcc_1_pal
- 0x80810640: rcc_1_eye1_TA_tex_txt
- 0x80810740: rcc_1_eye2_TA_tex_txt
- 0x80810840: rcc_1_eye3_TA_tex_txt
- 0x80810940: rcc_1_eye4_TA_tex_txt
- 0x80810A40: rcc_1_eye5_TA_tex_txt
- 0x80810B40: rcc_1_eye6_TA_tex_txt
- 0x80810C40: rcc_1_eye7_TA_tex_txt
- 0x80810D40: rcc_1_eye8_TA_tex_txt
- 0x80810E40: rcc_1_tmem_txt
- 0x80811500: cow_1_v
- 0x80812B30: head_cow_model
- 0x80812D18: Rarm2_cow_model
- 0x80812DA0: Rarm1_cow_model
- 0x80812E18: Larm2_cow_model
- 0x80812EA0: Larm1_cow_model
- 0x80812F18: chest_cow_model
- 0x80812FC0: tail1_cow_model
- 0x80813020: tail2_cow_model
- 0x808130B0: Rfoot2_cow_model
- 0x80813130: Rfoot1_cow_model
- 0x808131F0: Lfoot2_cow_model
- 0x80813270: Lfoot1_cow_model
- 0x80813330: base_cow_model
- 0x808133A0: cKF_je_r_cow_1_tbl
- 0x808134D8: cKF_bs_r_cow_1
- 0x808134E0: cow_1_pal
- 0x80813500: cow_1_eye1_TA_tex_txt
- 0x80813600: cow_1_eye2_TA_tex_txt
- 0x80813700: cow_1_eye3_TA_tex_txt
- 0x80813800: cow_1_eye4_TA_tex_txt
- 0x80813900: cow_1_eye5_TA_tex_txt
- 0x80813A00: cow_1_eye6_TA_tex_txt
- 0x80813B00: cow_1_eye7_TA_tex_txt
- 0x80813C00: cow_1_eye8_TA_tex_txt
- 0x80813D00: cow_1_mouth1_TA_tex_txt
- 0x80813E00: cow_1_mouth2_TA_tex_txt
- 0x80813F00: cow_1_mouth3_TA_tex_txt
- 0x80814000: cow_1_mouth4_TA_tex_txt
- 0x80814100: cow_1_mouth5_TA_tex_txt
- 0x80814200: cow_1_mouth6_TA_tex_txt
- 0x80814300: cow_1_tmem_txt
- 0x80814700: cow_2_pal
- 0x80814720: cow_2_eye1_TA_tex_txt
- 0x80814820: cow_2_eye2_TA_tex_txt
- 0x80814920: cow_2_eye3_TA_tex_txt
- 0x80814A20: cow_2_eye4_TA_tex_txt
- 0x80814B20: cow_2_eye5_TA_tex_txt
- 0x80814C20: cow_2_eye6_TA_tex_txt
- 0x80814D20: cow_2_eye7_TA_tex_txt
- 0x80814E20: cow_2_eye8_TA_tex_txt
- 0x80814F20: cow_2_mouth1_TA_tex_txt
- 0x80815020: cow_2_mouth2_TA_tex_txt
- 0x80815120: cow_2_mouth3_TA_tex_txt
- 0x80815220: cow_2_mouth4_TA_tex_txt
- 0x80815320: cow_2_mouth5_TA_tex_txt
- 0x80815420: cow_2_mouth6_TA_tex_txt
- 0x80815520: cow_2_tmem_txt
- 0x80815920: cow_3_pal
- 0x80815940: cow_3_eye1_TA_tex_txt
- 0x80815A40: cow_3_eye2_TA_tex_txt
- 0x80815B40: cow_3_eye3_TA_tex_txt
- 0x80815C40: cow_3_eye4_TA_tex_txt
- 0x80815D40: cow_3_eye5_TA_tex_txt
- 0x80815E40: cow_3_eye6_TA_tex_txt
- 0x80815F40: cow_3_eye7_TA_tex_txt
- 0x80816040: cow_3_eye8_TA_tex_txt
- 0x80816140: cow_3_mouth1_TA_tex_txt
- 0x80816240: cow_3_mouth2_TA_tex_txt
- 0x80816340: cow_3_mouth3_TA_tex_txt
- 0x80816440: cow_3_mouth4_TA_tex_txt
- 0x80816540: cow_3_mouth5_TA_tex_txt
- 0x80816640: cow_3_mouth6_TA_tex_txt
- 0x80816740: cow_3_tmem_txt
- 0x80816B40: cow_4_pal
- 0x80816B60: cow_4_eye1_TA_tex_txt
- 0x80816C60: cow_4_eye2_TA_tex_txt
- 0x80816D60: cow_4_eye3_TA_tex_txt
- 0x80816E60: cow_4_eye4_TA_tex_txt
- 0x80816F60: cow_4_eye5_TA_tex_txt
- 0x80817060: cow_4_eye6_TA_tex_txt
- 0x80817160: cow_4_eye7_TA_tex_txt
- 0x80817260: cow_4_eye8_TA_tex_txt
- 0x80817360: cow_4_mouth1_TA_tex_txt
- 0x80817460: cow_4_mouth2_TA_tex_txt
- 0x80817560: cow_4_mouth3_TA_tex_txt
- 0x80817660: cow_4_mouth4_TA_tex_txt
- 0x80817760: cow_4_mouth5_TA_tex_txt
- 0x80817860: cow_4_mouth6_TA_tex_txt
- 0x80817960: cow_4_tmem_txt
- 0x80817D60: crd_1_v
- 0x808194F0: head_crd_model
- 0x80819698: mouth_crd_model
- 0x808197A0: Rarm2_crd_model
- 0x80819828: Rarm1_crd_model
- 0x808198A0: Larm2_crd_model
- 0x80819928: Larm1_crd_model
- 0x808199A0: chest_crd_model
- 0x80819A68: tail1_crd_model
- 0x80819AE8: tail2_crd_model
- 0x80819B70: Rfoot2_crd_model
- 0x80819BF0: Rfoot1_crd_model
- 0x80819C48: Lfoot2_crd_model
- 0x80819CC8: Lfoot1_crd_model
- 0x80819D20: base_crd_model
- 0x80819DA8: cKF_je_r_crd_1_tbl
- 0x80819EE0: cKF_bs_r_crd_1
- 0x80819F00: crd_1_pal
- 0x80819F20: crd_1_eye1_TA_tex_txt
- 0x8081A020: crd_1_eye2_TA_tex_txt
- 0x8081A120: crd_1_eye3_TA_tex_txt
- 0x8081A220: crd_1_eye4_TA_tex_txt
- 0x8081A320: crd_1_eye5_TA_tex_txt
- 0x8081A420: crd_1_eye6_TA_tex_txt
- 0x8081A520: crd_1_eye7_TA_tex_txt
- 0x8081A620: crd_1_eye8_TA_tex_txt
- 0x8081A720: crd_1_tmem_txt
- 0x8081AC20: crd_2_pal
- 0x8081AC40: crd_2_eye1_TA_tex_txt
- 0x8081AD40: crd_2_eye2_TA_tex_txt
- 0x8081AE40: crd_2_eye3_TA_tex_txt
- 0x8081AF40: crd_2_eye4_TA_tex_txt
- 0x8081B040: crd_2_eye5_TA_tex_txt
- 0x8081B140: crd_2_eye6_TA_tex_txt
- 0x8081B240: crd_2_eye7_TA_tex_txt
- 0x8081B340: crd_2_eye8_TA_tex_txt
- 0x8081B440: crd_2_tmem_txt
- 0x8081B940: crd_3_pal
- 0x8081B960: crd_3_eye1_TA_tex_txt
- 0x8081BA60: crd_3_eye2_TA_tex_txt
- 0x8081BB60: crd_3_eye3_TA_tex_txt
- 0x8081BC60: crd_3_eye4_TA_tex_txt
- 0x8081BD60: crd_3_eye5_TA_tex_txt
- 0x8081BE60: crd_3_eye6_TA_tex_txt
- 0x8081BF60: crd_3_eye7_TA_tex_txt
- 0x8081C060: crd_3_eye8_TA_tex_txt
- 0x8081C160: crd_3_tmem_txt
- 0x8081C660: crd_4_pal
- 0x8081C680: crd_4_eye1_TA_tex_txt
- 0x8081C780: crd_4_eye2_TA_tex_txt
- 0x8081C880: crd_4_eye3_TA_tex_txt
- 0x8081C980: crd_4_eye4_TA_tex_txt
- 0x8081CA80: crd_4_eye5_TA_tex_txt
- 0x8081CB80: crd_4_eye6_TA_tex_txt
- 0x8081CC80: crd_4_eye7_TA_tex_txt
- 0x8081CD80: crd_4_eye8_TA_tex_txt
- 0x8081CE80: crd_4_tmem_txt
- 0x8081D380: owl_1_v
- 0x8081EE10: head_owl_model
- 0x8081F050: mouth_owl_model
- 0x8081F0E8: Rarm2_owl_model
- 0x8081F1B8: Rarm1_owl_model
- 0x8081F230: Larm2_owl_model
- 0x8081F300: Larm1_owl_model
- 0x8081F378: chest_owl_model
- 0x8081F448: tail1_owl_model
- 0x8081F4F0: Rfoot3_owl_model
- 0x8081F598: Rfoot2_owl_model
- 0x8081F618: Rfoot1_owl_model
- 0x8081F670: Lfoot3_owl_model
- 0x8081F718: Lfoot2_owl_model
- 0x8081F798: Lfoot1_owl_model
- 0x8081F7F0: base_owl_model
- 0x8081F868: cKF_je_r_owl_1_tbl
- 0x8081F9A0: cKF_bs_r_owl_1
- 0x8081F9C0: owl_1_pal
- 0x8081F9E0: owl_1_eye1_TA_tex_txt
- 0x8081FAE0: owl_1_eye2_TA_tex_txt
- 0x8081FBE0: owl_1_eye3_TA_tex_txt
- 0x8081FCE0: owl_1_eye4_TA_tex_txt
- 0x8081FDE0: owl_1_eye5_TA_tex_txt
- 0x8081FEE0: owl_1_eye6_TA_tex_txt
- 0x8081FFE0: owl_1_eye7_TA_tex_txt
- 0x808200E0: owl_1_eye8_TA_tex_txt
- 0x808201E0: owl_1_tmem_txt
- 0x80820820: rcd_1_v
- 0x80821D40: head_rcd_model
- 0x80821EF8: mouth_rcd_model
- 0x80821F70: Rarm2_rcd_model
- 0x80822028: Rarm1_rcd_model
- 0x808220A0: Larm2_rcd_model
- 0x80822158: Larm1_rcd_model
- 0x808221D0: chest_rcd_model
- 0x80822298: tail1_rcd_model
- 0x80822310: tail2_rcd_model
- 0x808223B0: Rfoot2_rcd_model
- 0x80822430: Rfoot1_rcd_model
- 0x80822508: Lfoot1_rcd_model
- 0x80822560: base_rcd_model
- 0x808225E0: cKF_je_r_rcd_1_tbl
- 0x80822718: cKF_bs_r_rcd_1
- 0x80822720: rcd_1_pal
- 0x80822740: rcd_1_eye1_TA_tex_txt
- 0x80822840: rcd_1_eye2_TA_tex_txt
- 0x80822940: rcd_1_eye3_TA_tex_txt
- 0x80822A40: rcd_1_eye4_TA_tex_txt
- 0x80822B40: rcd_1_eye5_TA_tex_txt
- 0x80822C40: rcd_1_eye6_TA_tex_txt
- 0x80822D40: rcd_1_eye7_TA_tex_txt
- 0x80822E40: rcd_1_eye8_TA_tex_txt
- 0x80822F40: rcd_1_tmem_txt
- 0x80823580: grf_1_v
- 0x80825060: head_grf_model
- 0x80825280: mouth_grf_model
- 0x80825358: Rarm2_grf_model
- 0x808253E0: Rarm1_grf_model
- 0x80825458: Larm2_grf_model
- 0x808254E0: Larm1_grf_model
- 0x80825558: chest_grf_model
- 0x80825688: tail1_grf_model
- 0x808256E0: tail2_grf_model
- 0x80825770: Rfoot2_grf_model
- 0x80825810: Rfoot1_grf_model
- 0x80825870: Lfoot2_grf_model
- 0x80825910: Lfoot1_grf_model
- 0x80825970: base_grf_model
- 0x808259E8: cKF_je_r_grf_1_tbl
- 0x80825B20: cKF_bs_r_grf_1
- 0x80825B40: grf_1_pal
- 0x80825B60: grf_1_eye1_TA_tex_txt
- 0x80825C60: grf_1_eye2_TA_tex_txt
- 0x80825D60: grf_1_eye3_TA_tex_txt
- 0x80825E60: grf_1_eye4_TA_tex_txt
- 0x80825F60: grf_1_eye5_TA_tex_txt
- 0x80826060: grf_1_eye6_TA_tex_txt
- 0x80826160: grf_1_eye7_TA_tex_txt
- 0x80826260: grf_1_eye8_TA_tex_txt
- 0x80826360: grf_1_tmem_txt
- 0x80826A60: dog_1_v
- 0x80828110: head_dog_model
- 0x808282F8: Rarm2_dog_model
- 0x80828378: Rarm_dog_model
- 0x808283F0: Larm2_dog_model
- 0x80828470: Larm1_dog_model
- 0x808284E8: chest_dog_model
- 0x80828590: tail1_dog_model
- 0x808285E8: tail2_dog_model
- 0x80828678: Rfoot2_dog_model
- 0x80828700: Rfoot1_dog_model
- 0x80828780: Lfoot2_dog_model
- 0x80828808: Lfoot1_dog_model
- 0x80828888: base_dog_model
- 0x80828900: cKF_je_r_dog_1_tbl
- 0x80828A38: cKF_bs_r_dog_1
- 0x80828A40: dog_1_pal
- 0x80828A60: dog_1_eye1_TA_tex_txt
- 0x80828B60: dog_1_eye2_TA_tex_txt
- 0x80828C60: dog_1_eye3_TA_tex_txt
- 0x80828D60: dog_1_eye4_TA_tex_txt
- 0x80828E60: dog_1_eye5_TA_tex_txt
- 0x80828F60: dog_1_eye6_TA_tex_txt
- 0x80829060: dog_1_eye7_TA_tex_txt
- 0x80829160: dog_1_eye8_TA_tex_txt
- 0x80829260: dog_1_mouth1_TA_tex_txt
- 0x80829360: dog_1_mouth2_TA_tex_txt
- 0x80829460: dog_1_mouth3_TA_tex_txt
- 0x80829560: dog_1_mouth4_TA_tex_txt
- 0x80829660: dog_1_mouth5_TA_tex_txt
- 0x80829760: dog_1_mouth6_TA_tex_txt
- 0x80829860: dog_1_tmem_txt
- 0x80829C60: dog_2_pal
- 0x80829C80: dog_2_eye1_TA_tex_txt
- 0x80829D80: dog_2_eye2_TA_tex_txt
- 0x80829E80: dog_2_eye3_TA_tex_txt
- 0x80829F80: dog_2_eye4_TA_tex_txt
- 0x8082A080: dog_2_eye5_TA_tex_txt
- 0x8082A180: dog_2_eye6_TA_tex_txt
- 0x8082A280: dog_2_eye7_TA_tex_txt
- 0x8082A380: dog_2_eye8_TA_tex_txt
- 0x8082A480: dog_2_mouth1_TA_tex_txt
- 0x8082A580: dog_2_mouth2_TA_tex_txt
- 0x8082A680: dog_2_mouth3_TA_tex_txt
- 0x8082A780: dog_2_mouth4_TA_tex_txt
- 0x8082A880: dog_2_mouth5_TA_tex_txt
- 0x8082A980: dog_2_mouth6_TA_tex_txt
- 0x8082AA80: dog_2_tmem_txt
- 0x8082AE80: dog_3_pal
- 0x8082AEA0: dog_3_eye1_TA_tex_txt
- 0x8082AFA0: dog_3_eye2_TA_tex_txt
- 0x8082B0A0: dog_3_eye3_TA_tex_txt
- 0x8082B1A0: dog_3_eye4_TA_tex_txt
- 0x8082B2A0: dog_3_eye5_TA_tex_txt
- 0x8082B3A0: dog_3_eye6_TA_tex_txt
- 0x8082B4A0: dog_3_eye7_TA_tex_txt
- 0x8082B5A0: dog_3_eye8_TA_tex_txt
- 0x8082B6A0: dog_3_mouth1_TA_tex_txt
- 0x8082B7A0: dog_3_mouth2_TA_tex_txt
- 0x8082B8A0: dog_3_mouth3_TA_tex_txt
- 0x8082B9A0: dog_3_mouth4_TA_tex_txt
- 0x8082BAA0: dog_3_mouth5_TA_tex_txt
- 0x8082BBA0: dog_3_mouth6_TA_tex_txt
- 0x8082BCA0: dog_3_tmem_txt
- 0x8082C0A0: dog_4_pal
- 0x8082C0C0: dog_4_eye1_TA_tex_txt
- 0x8082C1C0: dog_4_eye2_TA_tex_txt
- 0x8082C2C0: dog_4_eye3_TA_tex_txt
- 0x8082C3C0: dog_4_eye4_TA_tex_txt
- 0x8082C4C0: dog_4_eye5_TA_tex_txt
- 0x8082C5C0: dog_4_eye6_TA_tex_txt
- 0x8082C6C0: dog_4_eye7_TA_tex_txt
- 0x8082C7C0: dog_4_eye8_TA_tex_txt
- 0x8082C8C0: dog_4_mouth1_TA_tex_txt
- 0x8082C9C0: dog_4_mouth2_TA_tex_txt
- 0x8082CAC0: dog_4_mouth3_TA_tex_txt
- 0x8082CBC0: dog_4_mouth4_TA_tex_txt
- 0x8082CCC0: dog_4_mouth5_TA_tex_txt
- 0x8082CDC0: dog_4_mouth6_TA_tex_txt
- 0x8082CEC0: dog_4_tmem_txt
- 0x8082D2C0: dog_5_pal
- 0x8082D2E0: dog_5_eye1_TA_tex_txt
- 0x8082D3E0: dog_5_eye2_TA_tex_txt
- 0x8082D4E0: dog_5_eye3_TA_tex_txt
- 0x8082D5E0: dog_5_eye4_TA_tex_txt
- 0x8082D6E0: dog_5_eye5_TA_tex_txt
- 0x8082D7E0: dog_5_eye6_TA_tex_txt
- 0x8082D8E0: dog_5_eye7_TA_tex_txt
- 0x8082D9E0: dog_5_eye8_TA_tex_txt
- 0x8082DAE0: dog_5_mouth1_TA_tex_txt
- 0x8082DBE0: dog_5_mouth2_TA_tex_txt
- 0x8082DCE0: dog_5_mouth3_TA_tex_txt
- 0x8082DDE0: dog_5_mouth4_TA_tex_txt
- 0x8082DEE0: dog_5_mouth5_TA_tex_txt
- 0x8082DFE0: dog_5_mouth6_TA_tex_txt
- 0x8082E0E0: dog_5_tmem_txt
- 0x8082E4E0: dog_6_pal
- 0x8082E500: dog_6_eye1_TA_tex_txt
- 0x8082E600: dog_6_eye2_TA_tex_txt
- 0x8082E700: dog_6_eye3_TA_tex_txt
- 0x8082E800: dog_6_eye4_TA_tex_txt
- 0x8082E900: dog_6_eye5_TA_tex_txt
- 0x8082EA00: dog_6_eye6_TA_tex_txt
- 0x8082EB00: dog_6_eye7_TA_tex_txt
- 0x8082EC00: dog_6_eye8_TA_tex_txt
- 0x8082ED00: dog_6_mouth1_TA_tex_txt
- 0x8082EE00: dog_6_mouth2_TA_tex_txt
- 0x8082EF00: dog_6_mouth3_TA_tex_txt
- 0x8082F000: dog_6_mouth4_TA_tex_txt
- 0x8082F100: dog_6_mouth5_TA_tex_txt
- 0x8082F200: dog_6_mouth6_TA_tex_txt
- 0x8082F300: dog_6_tmem_txt
- 0x8082F700: dog_7_pal
- 0x8082F720: dog_7_eye1_TA_tex_txt
- 0x8082F820: dog_7_eye2_TA_tex_txt
- 0x8082F920: dog_7_eye3_TA_tex_txt
- 0x8082FA20: dog_7_eye4_TA_tex_txt
- 0x8082FB20: dog_7_eye5_TA_tex_txt
- 0x8082FC20: dog_7_eye6_TA_tex_txt
- 0x8082FD20: dog_7_eye7_TA_tex_txt
- 0x8082FE20: dog_7_eye8_TA_tex_txt
- 0x8082FF20: dog_7_mouth1_TA_tex_txt
- 0x80830020: dog_7_mouth2_TA_tex_txt
- 0x80830120: dog_7_mouth3_TA_tex_txt
- 0x80830220: dog_7_mouth4_TA_tex_txt
- 0x80830320: dog_7_mouth5_TA_tex_txt
- 0x80830420: dog_7_mouth6_TA_tex_txt
- 0x80830520: dog_7_tmem_txt
- 0x80830920: dog_8_pal
- 0x80830940: dog_8_eye1_TA_tex_txt
- 0x80830A40: dog_8_eye2_TA_tex_txt
- 0x80830B40: dog_8_eye3_TA_tex_txt
- 0x80830C40: dog_8_eye4_TA_tex_txt
- 0x80830D40: dog_8_eye5_TA_tex_txt
- 0x80830E40: dog_8_eye6_TA_tex_txt
- 0x80830F40: dog_8_eye7_TA_tex_txt
- 0x80831040: dog_8_eye8_TA_tex_txt
- 0x80831140: dog_8_mouth1_TA_tex_txt
- 0x80831240: dog_8_mouth2_TA_tex_txt
- 0x80831340: dog_8_mouth3_TA_tex_txt
- 0x80831440: dog_8_mouth4_TA_tex_txt
- 0x80831540: dog_8_mouth5_TA_tex_txt
- 0x80831640: dog_8_mouth6_TA_tex_txt
- 0x80831740: dog_8_tmem_txt
- 0x80831B40: dog_9_pal
- 0x80831B60: dog_9_eye1_TA_tex_txt
- 0x80831C60: dog_9_eye2_TA_tex_txt
- 0x80831D60: dog_9_eye3_TA_tex_txt
- 0x80831E60: dog_9_eye4_TA_tex_txt
- 0x80831F60: dog_9_eye5_TA_tex_txt
- 0x80832060: dog_9_eye6_TA_tex_txt
- 0x80832160: dog_9_eye7_TA_tex_txt
- 0x80832260: dog_9_eye8_TA_tex_txt
- 0x80832360: dog_9_mouth1_TA_tex_txt
- 0x80832460: dog_9_mouth2_TA_tex_txt
- 0x80832560: dog_9_mouth3_TA_tex_txt
- 0x80832660: dog_9_mouth4_TA_tex_txt
- 0x80832760: dog_9_mouth5_TA_tex_txt
- 0x80832860: dog_9_mouth6_TA_tex_txt
- 0x80832960: dog_9_tmem_txt
- 0x80832D60: dog_10_pal
- 0x80832D80: dog_10_eye1_TA_tex_txt
- 0x80832E80: dog_10_eye2_TA_tex_txt
- 0x80832F80: dog_10_eye3_TA_tex_txt
- 0x80833080: dog_10_eye4_TA_tex_txt
- 0x80833180: dog_10_eye5_TA_tex_txt
- 0x80833280: dog_10_eye6_TA_tex_txt
- 0x80833380: dog_10_eye7_TA_tex_txt
- 0x80833480: dog_10_eye8_TA_tex_txt
- 0x80833580: dog_10_mouth1_TA_tex_txt
- 0x80833680: dog_10_mouth2_TA_tex_txt
- 0x80833780: dog_10_mouth3_TA_tex_txt
- 0x80833880: dog_10_mouth4_TA_tex_txt
- 0x80833980: dog_10_mouth5_TA_tex_txt
- 0x80833A80: dog_10_mouth6_TA_tex_txt
- 0x80833B80: dog_10_tmem_txt
- 0x80833F80: seg_1_v
- 0x808357E0: head_seg_model
- 0x80835978: mouth_seg_model
- 0x808359F8: Rarm2_seg_model
- 0x80835AC0: Rarm1_seg_model
- 0x80835B28: Larm2_seg_model
- 0x80835BF0: Larm1_seg_model
- 0x80835C58: chest_seg_model
- 0x80835D60: tail1_seg_model
- 0x80835DE0: tail2_seg_model
- 0x80835E68: Rfoot3_seg_model
- 0x80835EF0: Rfoot2_seg_model
- 0x80835F70: Rfoot1_seg_model
- 0x80835FC8: Lfoot3_seg_model
- 0x80836050: Lfoot2_seg_model
- 0x808360D0: Lfoot1_seg_model
- 0x80836128: base_seg_model
- 0x808361A8: cKF_je_r_seg_1_tbl
- 0x808362E0: cKF_bs_r_seg_1
- 0x80836300: seg_1_pal
- 0x80836320: seg_1_eye1_TA_tex_txt
- 0x80836420: seg_1_eye2_TA_tex_txt
- 0x80836520: seg_1_eye3_TA_tex_txt
- 0x80836620: seg_1_eye4_TA_tex_txt
- 0x80836720: seg_1_eye5_TA_tex_txt
- 0x80836820: seg_1_eye6_TA_tex_txt
- 0x80836920: seg_1_eye7_TA_tex_txt
- 0x80836A20: seg_1_eye8_TA_tex_txt
- 0x80836B20: seg_1_tmem_txt
- 0x80837160: duk_1_v
- 0x808386E0: head_duk_model
- 0x80838828: mouth_duk_model
- 0x808388B8: Rarm2_duk_model
- 0x80838938: Rarm1_duk_model
- 0x808389B0: Larm2_duk_model
- 0x80838A30: Larm1_duk_model
- 0x80838AA8: chest_duk_model
- 0x80838B70: tail1_duk_model
- 0x80838BE8: Rfoot3_duk_model
- 0x80838C70: Rfoot2_duk_model
- 0x80838CF0: Rfoot1_duk_model
- 0x80838D48: Lfoot3_duk_model
- 0x80838DD0: Lfoot2_duk_model
- 0x80838E50: Lfoot1_duk_model
- 0x80838EA8: base_duk_model
- 0x80838F30: cKF_je_r_duk_1_tbl
- 0x80839068: cKF_bs_r_duk_1
- 0x80839080: duk_1_pal
- 0x808390A0: duk_1_eye1_TA_tex_txt
- 0x808391A0: duk_1_eye2_TA_tex_txt
- 0x808392A0: duk_1_eye3_TA_tex_txt
- 0x808393A0: duk_1_eye4_TA_tex_txt
- 0x808394A0: duk_1_eye5_TA_tex_txt
- 0x808395A0: duk_1_eye6_TA_tex_txt
- 0x808396A0: duk_1_eye7_TA_tex_txt
- 0x808397A0: duk_1_eye8_TA_tex_txt
- 0x808398A0: duk_1_mouth1_TA_tex_txt
- 0x808399A0: duk_1_mouth2_TA_tex_txt
- 0x80839AA0: duk_1_mouth3_TA_tex_txt
- 0x80839BA0: duk_1_mouth4_TA_tex_txt
- 0x80839CA0: duk_1_mouth5_TA_tex_txt
- 0x80839DA0: duk_1_mouth6_TA_tex_txt
- 0x80839EA0: duk_1_tmem_txt
- 0x8083A2A0: duk_2_pal
- 0x8083A2C0: duk_2_eye1_TA_tex_txt
- 0x8083A3C0: duk_2_eye2_TA_tex_txt
- 0x8083A4C0: duk_2_eye3_TA_tex_txt
- 0x8083A5C0: duk_2_eye4_TA_tex_txt
- 0x8083A6C0: duk_2_eye5_TA_tex_txt
- 0x8083A7C0: duk_2_eye6_TA_tex_txt
- 0x8083A8C0: duk_2_eye7_TA_tex_txt
- 0x8083A9C0: duk_2_eye8_TA_tex_txt
- 0x8083AAC0: duk_2_mouth1_TA_tex_txt
- 0x8083ABC0: duk_2_mouth2_TA_tex_txt
- 0x8083ACC0: duk_2_mouth3_TA_tex_txt
- 0x8083ADC0: duk_2_mouth4_TA_tex_txt
- 0x8083AEC0: duk_2_mouth5_TA_tex_txt
- 0x8083AFC0: duk_2_mouth6_TA_tex_txt
- 0x8083B0C0: duk_2_tmem_txt
- 0x8083B4C0: duk_11_pal
- 0x8083B4E0: duk_11_eye1_TA_tex_txt
- 0x8083B5E0: duk_11_eye2_TA_tex_txt
- 0x8083B6E0: duk_11_eye3_TA_tex_txt
- 0x8083B7E0: duk_11_eye4_TA_tex_txt
- 0x8083B8E0: duk_11_eye5_TA_tex_txt
- 0x8083B9E0: duk_11_eye6_TA_tex_txt
- 0x8083BAE0: duk_11_eye7_TA_tex_txt
- 0x8083BBE0: duk_11_eye8_TA_tex_txt
- 0x8083BCE0: duk_11_mouth1_TA_tex_txt
- 0x8083BDE0: duk_11_mouth2_TA_tex_txt
- 0x8083BEE0: duk_11_mouth3_TA_tex_txt
- 0x8083BFE0: duk_11_mouth4_TA_tex_txt
- 0x8083C0E0: duk_11_mouth5_TA_tex_txt
- 0x8083C1E0: duk_11_mouth6_TA_tex_txt
- 0x8083C2E0: duk_11_tmem_txt
- 0x8083C6E0: duk_3_pal
- 0x8083C700: duk_3_eye1_TA_tex_txt
- 0x8083C800: duk_3_eye2_TA_tex_txt
- 0x8083C900: duk_3_eye3_TA_tex_txt
- 0x8083CA00: duk_3_eye4_TA_tex_txt
- 0x8083CB00: duk_3_eye5_TA_tex_txt
- 0x8083CC00: duk_3_eye6_TA_tex_txt
- 0x8083CD00: duk_3_eye7_TA_tex_txt
- 0x8083CE00: duk_3_eye8_TA_tex_txt
- 0x8083CF00: duk_3_mouth1_TA_tex_txt
- 0x8083D000: duk_3_mouth2_TA_tex_txt
- 0x8083D100: duk_3_mouth3_TA_tex_txt
- 0x8083D200: duk_3_mouth4_TA_tex_txt
- 0x8083D300: duk_3_mouth5_TA_tex_txt
- 0x8083D400: duk_3_mouth6_TA_tex_txt
- 0x8083D500: duk_3_tmem_txt
- 0x8083D900: duk_4_pal
- 0x8083D920: duk_4_eye1_TA_tex_txt
- 0x8083DA20: duk_4_eye2_TA_tex_txt
- 0x8083DB20: duk_4_eye3_TA_tex_txt
- 0x8083DC20: duk_4_eye4_TA_tex_txt
- 0x8083DD20: duk_4_eye5_TA_tex_txt
- 0x8083DE20: duk_4_eye6_TA_tex_txt
- 0x8083DF20: duk_4_eye7_TA_tex_txt
- 0x8083E020: duk_4_eye8_TA_tex_txt
- 0x8083E120: duk_4_mouth1_TA_tex_txt
- 0x8083E220: duk_4_mouth2_TA_tex_txt
- 0x8083E320: duk_4_mouth3_TA_tex_txt
- 0x8083E420: duk_4_mouth4_TA_tex_txt
- 0x8083E520: duk_4_mouth5_TA_tex_txt
- 0x8083E620: duk_4_mouth6_TA_tex_txt
- 0x8083E720: duk_4_tmem_txt
- 0x8083EB20: duk_5_pal
- 0x8083EB40: duk_5_eye1_TA_tex_txt
- 0x8083EC40: duk_5_eye2_TA_tex_txt
- 0x8083ED40: duk_5_eye3_TA_tex_txt
- 0x8083EE40: duk_5_eye4_TA_tex_txt
- 0x8083EF40: duk_5_eye5_TA_tex_txt
- 0x8083F040: duk_5_eye6_TA_tex_txt
- 0x8083F140: duk_5_eye7_TA_tex_txt
- 0x8083F240: duk_5_eye8_TA_tex_txt
- 0x8083F340: duk_5_mouth1_TA_tex_txt
- 0x8083F440: duk_5_mouth2_TA_tex_txt
- 0x8083F540: duk_5_mouth3_TA_tex_txt
- 0x8083F640: duk_5_mouth4_TA_tex_txt
- 0x8083F740: duk_5_mouth5_TA_tex_txt
- 0x8083F840: duk_5_mouth6_TA_tex_txt
- 0x8083F940: duk_5_tmem_txt
- 0x8083FD40: duk_6_pal
- 0x8083FD60: duk_6_eye1_TA_tex_txt
- 0x8083FE60: duk_6_eye2_TA_tex_txt
- 0x8083FF60: duk_6_eye3_TA_tex_txt
- 0x80840060: duk_6_eye4_TA_tex_txt
- 0x80840160: duk_6_eye5_TA_tex_txt
- 0x80840260: duk_6_eye6_TA_tex_txt
- 0x80840360: duk_6_eye7_TA_tex_txt
- 0x80840460: duk_6_eye8_TA_tex_txt
- 0x80840560: duk_6_mouth1_TA_tex_txt
- 0x80840660: duk_6_mouth2_TA_tex_txt
- 0x80840760: duk_6_mouth3_TA_tex_txt
- 0x80840860: duk_6_mouth4_TA_tex_txt
- 0x80840960: duk_6_mouth5_TA_tex_txt
- 0x80840A60: duk_6_mouth6_TA_tex_txt
- 0x80840B60: duk_6_tmem_txt
- 0x80840F60: duk_7_pal
- 0x80840F80: duk_7_eye1_TA_tex_txt
- 0x80841080: duk_7_eye2_TA_tex_txt
- 0x80841180: duk_7_eye3_TA_tex_txt
- 0x80841280: duk_7_eye4_TA_tex_txt
- 0x80841380: duk_7_eye5_TA_tex_txt
- 0x80841480: duk_7_eye6_TA_tex_txt
- 0x80841580: duk_7_eye7_TA_tex_txt
- 0x80841680: duk_7_eye8_TA_tex_txt
- 0x80841780: duk_7_mouth1_TA_tex_txt
- 0x80841880: duk_7_mouth2_TA_tex_txt
- 0x80841980: duk_7_mouth3_TA_tex_txt
- 0x80841A80: duk_7_mouth4_TA_tex_txt
- 0x80841B80: duk_7_mouth5_TA_tex_txt
- 0x80841C80: duk_7_mouth6_TA_tex_txt
- 0x80841D80: duk_7_tmem_txt
- 0x80842180: duk_8_pal
- 0x808421A0: duk_8_eye1_TA_tex_txt
- 0x808422A0: duk_8_eye2_TA_tex_txt
- 0x808423A0: duk_8_eye3_TA_tex_txt
- 0x808424A0: duk_8_eye4_TA_tex_txt
- 0x808425A0: duk_8_eye5_TA_tex_txt
- 0x808426A0: duk_8_eye6_TA_tex_txt
- 0x808427A0: duk_8_eye7_TA_tex_txt
- 0x808428A0: duk_8_eye8_TA_tex_txt
- 0x808429A0: duk_8_mouth1_TA_tex_txt
- 0x80842AA0: duk_8_mouth2_TA_tex_txt
- 0x80842BA0: duk_8_mouth3_TA_tex_txt
- 0x80842CA0: duk_8_mouth4_TA_tex_txt
- 0x80842DA0: duk_8_mouth5_TA_tex_txt
- 0x80842EA0: duk_8_mouth6_TA_tex_txt
- 0x80842FA0: duk_8_tmem_txt
- 0x808433A0: duk_9_pal
- 0x808433C0: duk_9_eye1_TA_tex_txt
- 0x808434C0: duk_9_eye2_TA_tex_txt
- 0x808435C0: duk_9_eye3_TA_tex_txt
- 0x808436C0: duk_9_eye4_TA_tex_txt
- 0x808437C0: duk_9_eye5_TA_tex_txt
- 0x808438C0: duk_9_eye6_TA_tex_txt
- 0x808439C0: duk_9_eye7_TA_tex_txt
- 0x80843AC0: duk_9_eye8_TA_tex_txt
- 0x80843BC0: duk_9_mouth1_TA_tex_txt
- 0x80843CC0: duk_9_mouth2_TA_tex_txt
- 0x80843DC0: duk_9_mouth3_TA_tex_txt
- 0x80843EC0: duk_9_mouth4_TA_tex_txt
- 0x80843FC0: duk_9_mouth5_TA_tex_txt
- 0x808440C0: duk_9_mouth6_TA_tex_txt
- 0x808441C0: duk_9_tmem_txt
- 0x808445C0: duk_10_pal
- 0x808445E0: duk_10_eye1_TA_tex_txt
- 0x808446E0: duk_10_eye2_TA_tex_txt
- 0x808447E0: duk_10_eye3_TA_tex_txt
- 0x808448E0: duk_10_eye4_TA_tex_txt
- 0x808449E0: duk_10_eye5_TA_tex_txt
- 0x80844AE0: duk_10_eye6_TA_tex_txt
- 0x80844BE0: duk_10_eye7_TA_tex_txt
- 0x80844CE0: duk_10_eye8_TA_tex_txt
- 0x80844DE0: duk_10_mouth1_TA_tex_txt
- 0x80844EE0: duk_10_mouth2_TA_tex_txt
- 0x80844FE0: duk_10_mouth3_TA_tex_txt
- 0x808450E0: duk_10_mouth4_TA_tex_txt
- 0x808451E0: duk_10_mouth5_TA_tex_txt
- 0x808452E0: duk_10_mouth6_TA_tex_txt
- 0x808453E0: duk_10_tmem_txt
- 0x808457E0: event_notification_info
- 0x80845808: EVENT_NOTIFICATION_player_data
- 0x80845818: EVENT_NOTIFICATION_ctrl_actor_data
- 0x80845830: elp_1_v
- 0x80846FF0: head_elp_model
- 0x808471B0: mouth_elp_model
- 0x80847240: Rarm2_elp_model
- 0x808472C8: Rarm1_elp_model
- 0x80847340: Larm2_elp_model
- 0x808473C8: Larm1_elp_model
- 0x80847440: chest_elp_model
- 0x808474E0: tail1_elp_model
- 0x80847538: tail2_elp_model
- 0x808475C8: Rfoot2_elp_model
- 0x80847658: Rfoot1_elp_model
- 0x808476D8: Lfoot2_elp_model
- 0x80847768: Lfoot1_elp_model
- 0x808477E8: base_elp_model
- 0x80847860: cKF_je_r_elp_1_tbl
- 0x80847998: cKF_bs_r_elp_1
- 0x808479A0: elp_1_pal
- 0x808479C0: elp_1_eye1_TA_tex_txt
- 0x80847AC0: elp_1_eye2_TA_tex_txt
- 0x80847BC0: elp_1_eye3_TA_tex_txt
- 0x80847CC0: elp_1_eye4_TA_tex_txt
- 0x80847DC0: elp_1_eye5_TA_tex_txt
- 0x80847EC0: elp_1_eye6_TA_tex_txt
- 0x80847FC0: elp_1_eye7_TA_tex_txt
- 0x808480C0: elp_1_eye8_TA_tex_txt
- 0x808481C0: elp_1_mouth1_TA_tex_txt
- 0x808482C0: elp_1_mouth2_TA_tex_txt
- 0x808483C0: elp_1_mouth3_TA_tex_txt
- 0x808484C0: elp_1_mouth4_TA_tex_txt
- 0x808485C0: elp_1_mouth5_TA_tex_txt
- 0x808486C0: elp_1_mouth6_TA_tex_txt
- 0x808487C0: elp_1_tmem_txt
- 0x80848BC0: elp_2_pal
- 0x80848BE0: elp_2_eye1_TA_tex_txt
- 0x80848CE0: elp_2_eye2_TA_tex_txt
- 0x80848DE0: elp_2_eye3_TA_tex_txt
- 0x80848EE0: elp_2_eye4_TA_tex_txt
- 0x80848FE0: elp_2_eye5_TA_tex_txt
- 0x808490E0: elp_2_eye6_TA_tex_txt
- 0x808491E0: elp_2_eye7_TA_tex_txt
- 0x808492E0: elp_2_eye8_TA_tex_txt
- 0x808493E0: elp_2_mouth1_TA_tex_txt
- 0x808494E0: elp_2_mouth2_TA_tex_txt
- 0x808495E0: elp_2_mouth3_TA_tex_txt
- 0x808496E0: elp_2_mouth4_TA_tex_txt
- 0x808497E0: elp_2_mouth5_TA_tex_txt
- 0x808498E0: elp_2_mouth6_TA_tex_txt
- 0x808499E0: elp_2_tmem_txt
- 0x80849DE0: elp_3_pal
- 0x80849E00: elp_3_eye1_TA_tex_txt
- 0x80849F00: elp_3_eye2_TA_tex_txt
- 0x8084A000: elp_3_eye3_TA_tex_txt
- 0x8084A100: elp_3_eye4_TA_tex_txt
- 0x8084A200: elp_3_eye5_TA_tex_txt
- 0x8084A300: elp_3_eye6_TA_tex_txt
- 0x8084A400: elp_3_eye7_TA_tex_txt
- 0x8084A500: elp_3_eye8_TA_tex_txt
- 0x8084A600: elp_3_mouth1_TA_tex_txt
- 0x8084A700: elp_3_mouth2_TA_tex_txt
- 0x8084A800: elp_3_mouth3_TA_tex_txt
- 0x8084A900: elp_3_mouth4_TA_tex_txt
- 0x8084AA00: elp_3_mouth5_TA_tex_txt
- 0x8084AB00: elp_3_mouth6_TA_tex_txt
- 0x8084AC00: elp_3_tmem_txt
- 0x8084B000: elp_4_pal
- 0x8084B020: elp_4_eye1_TA_tex_txt
- 0x8084B120: elp_4_eye2_TA_tex_txt
- 0x8084B220: elp_4_eye3_TA_tex_txt
- 0x8084B320: elp_4_eye4_TA_tex_txt
- 0x8084B420: elp_4_eye5_TA_tex_txt
- 0x8084B520: elp_4_eye6_TA_tex_txt
- 0x8084B620: elp_4_eye7_TA_tex_txt
- 0x8084B720: elp_4_eye8_TA_tex_txt
- 0x8084B820: elp_4_mouth1_TA_tex_txt
- 0x8084B920: elp_4_mouth2_TA_tex_txt
- 0x8084BA20: elp_4_mouth3_TA_tex_txt
- 0x8084BB20: elp_4_mouth4_TA_tex_txt
- 0x8084BC20: elp_4_mouth5_TA_tex_txt
- 0x8084BD20: elp_4_mouth6_TA_tex_txt
- 0x8084BE20: elp_4_tmem_txt
- 0x8084C220: elp_5_pal
- 0x8084C240: elp_5_eye1_TA_tex_txt
- 0x8084C340: elp_5_eye2_TA_tex_txt
- 0x8084C440: elp_5_eye3_TA_tex_txt
- 0x8084C540: elp_5_eye4_TA_tex_txt
- 0x8084C640: elp_5_eye5_TA_tex_txt
- 0x8084C740: elp_5_eye6_TA_tex_txt
- 0x8084C840: elp_5_eye7_TA_tex_txt
- 0x8084C940: elp_5_eye8_TA_tex_txt
- 0x8084CA40: elp_5_mouth1_TA_tex_txt
- 0x8084CB40: elp_5_mouth2_TA_tex_txt
- 0x8084CC40: elp_5_mouth3_TA_tex_txt
- 0x8084CD40: elp_5_mouth4_TA_tex_txt
- 0x8084CE40: elp_5_mouth5_TA_tex_txt
- 0x8084CF40: elp_5_mouth6_TA_tex_txt
- 0x8084D040: elp_5_tmem_txt
- 0x8084D440: elp_6_pal
- 0x8084D460: elp_6_eye1_TA_tex_txt
- 0x8084D560: elp_6_eye2_TA_tex_txt
- 0x8084D660: elp_6_eye3_TA_tex_txt
- 0x8084D760: elp_6_eye4_TA_tex_txt
- 0x8084D860: elp_6_eye5_TA_tex_txt
- 0x8084D960: elp_6_eye6_TA_tex_txt
- 0x8084DA60: elp_6_eye7_TA_tex_txt
- 0x8084DB60: elp_6_eye8_TA_tex_txt
- 0x8084DC60: elp_6_mouth1_TA_tex_txt
- 0x8084DD60: elp_6_mouth2_TA_tex_txt
- 0x8084DE60: elp_6_mouth3_TA_tex_txt
- 0x8084DF60: elp_6_mouth4_TA_tex_txt
- 0x8084E060: elp_6_mouth5_TA_tex_txt
- 0x8084E160: elp_6_mouth6_TA_tex_txt
- 0x8084E260: elp_6_tmem_txt
- 0x8084E660: elp_7_pal
- 0x8084E680: elp_7_eye1_TA_tex_txt
- 0x8084E780: elp_7_eye2_TA_tex_txt
- 0x8084E880: elp_7_eye3_TA_tex_txt
- 0x8084E980: elp_7_eye4_TA_tex_txt
- 0x8084EA80: elp_7_eye5_TA_tex_txt
- 0x8084EB80: elp_7_eye6_TA_tex_txt
- 0x8084EC80: elp_7_eye7_TA_tex_txt
- 0x8084ED80: elp_7_eye8_TA_tex_txt
- 0x8084EE80: elp_7_mouth1_TA_tex_txt
- 0x8084EF80: elp_7_mouth2_TA_tex_txt
- 0x8084F080: elp_7_mouth3_TA_tex_txt
- 0x8084F180: elp_7_mouth4_TA_tex_txt
- 0x8084F280: elp_7_mouth5_TA_tex_txt
- 0x8084F380: elp_7_mouth6_TA_tex_txt
- 0x8084F480: elp_7_tmem_txt
- 0x8084F880: fg_tool_in_info
- 0x8084F8D0: FG_TOOL_IN_player_data
- 0x8084F8E0: FG_TOOL_IN_ctrl_actor_data
- 0x8084F8F4: FG_TOOL_IN_actor_data
- 0x8084F924: FG_TOOL_IN_object_bank
- 0x8084F928: FG_TOOL_IN_door_data
- 0x8084F940: field_tool_field_info
- 0x8084F978: FIELD_TOOL_FIELD_player_data
- 0x8084F988: FIELD_TOOL_FIELD_ctrl_actor_data
- 0x8084F99C: FIELD_TOOL_FIELD_actor_data
- 0x8084F9AC: FIELD_TOOL_FIELD_object_bank
- 0x8084F9B0: data_fdd
- 0x80851B00: FONT_nes_tex_choice
- 0x80851B80: FONT_nes_tex_cursor
- 0x80851C00: FONT_nes_tex_font1
- 0x80857C00: FONT_nes_tex_jyouge
- 0x80857C80: FONT_nes_tex_next
- 0x80857D00: FONT_nes_tex_sayuu
- 0x80857D80: flg_1_v
- 0x80858FC0: head_flg_model
- 0x80859108: Rarm2_flg_model
- 0x80859190: Rarm1_flg_model
- 0x80859208: Larm2_flg_model
- 0x80859290: Larm1_flg_model
- 0x80859308: chest_flg_model
- 0x808593B0: Rfoot2_flg_model
- 0x80859430: Rfoot1_flg_model
- 0x808594F0: Lfoot2_flg_model
- 0x80859570: Lfoot1_flg_model
- 0x80859630: base_flg_model
- 0x808596A0: cKF_je_r_flg_1_tbl
- 0x808597D8: cKF_bs_r_flg_1
- 0x808597E0: flg_1_pal
- 0x80859800: flg_1_eye1_TA_tex_txt
- 0x80859900: flg_1_eye2_TA_tex_txt
- 0x80859A00: flg_1_eye3_TA_tex_txt
- 0x80859B00: flg_1_eye4_TA_tex_txt
- 0x80859C00: flg_1_eye5_TA_tex_txt
- 0x80859D00: flg_1_eye6_TA_tex_txt
- 0x80859E00: flg_1_eye7_TA_tex_txt
- 0x80859F00: flg_1_eye8_TA_tex_txt
- 0x8085A000: flg_1_mouth1_TA_tex_txt
- 0x8085A100: flg_1_mouth2_TA_tex_txt
- 0x8085A200: flg_1_mouth3_TA_tex_txt
- 0x8085A300: flg_1_mouth4_TA_tex_txt
- 0x8085A400: flg_1_mouth5_TA_tex_txt
- 0x8085A500: flg_1_mouth6_TA_tex_txt
- 0x8085A600: flg_1_tmem_txt
- 0x8085AA00: flg_2_pal
- 0x8085AA20: flg_2_eye1_TA_tex_txt
- 0x8085AB20: flg_2_eye2_TA_tex_txt
- 0x8085AC20: flg_2_eye3_TA_tex_txt
- 0x8085AD20: flg_2_eye4_TA_tex_txt
- 0x8085AE20: flg_2_eye5_TA_tex_txt
- 0x8085AF20: flg_2_eye6_TA_tex_txt
- 0x8085B020: flg_2_eye7_TA_tex_txt
- 0x8085B120: flg_2_eye8_TA_tex_txt
- 0x8085B220: flg_2_mouth1_TA_tex_txt
- 0x8085B320: flg_2_mouth2_TA_tex_txt
- 0x8085B420: flg_2_mouth3_TA_tex_txt
- 0x8085B520: flg_2_mouth4_TA_tex_txt
- 0x8085B620: flg_2_mouth5_TA_tex_txt
- 0x8085B720: flg_2_mouth6_TA_tex_txt
- 0x8085B820: flg_2_tmem_txt
- 0x8085BC20: flg_11_pal
- 0x8085BC40: flg_11_eye1_TA_tex_txt
- 0x8085BD40: flg_11_eye2_TA_tex_txt
- 0x8085BE40: flg_11_eye3_TA_tex_txt
- 0x8085BF40: flg_11_eye4_TA_tex_txt
- 0x8085C040: flg_11_eye5_TA_tex_txt
- 0x8085C140: flg_11_eye6_TA_tex_txt
- 0x8085C240: flg_11_eye7_TA_tex_txt
- 0x8085C340: flg_11_eye8_TA_tex_txt
- 0x8085C440: flg_11_mouth1_TA_tex_txt
- 0x8085C540: flg_11_mouth2_TA_tex_txt
- 0x8085C640: flg_11_mouth3_TA_tex_txt
- 0x8085C740: flg_11_mouth4_TA_tex_txt
- 0x8085C840: flg_11_mouth5_TA_tex_txt
- 0x8085C940: flg_11_mouth6_TA_tex_txt
- 0x8085CA40: flg_11_tmem_txt
- 0x8085CE40: flg_12_pal
- 0x8085CE60: flg_12_eye1_TA_tex_txt
- 0x8085CF60: flg_12_eye2_TA_tex_txt
- 0x8085D060: flg_12_eye3_TA_tex_txt
- 0x8085D160: flg_12_eye4_TA_tex_txt
- 0x8085D260: flg_12_eye5_TA_tex_txt
- 0x8085D360: flg_12_eye6_TA_tex_txt
- 0x8085D460: flg_12_eye7_TA_tex_txt
- 0x8085D560: flg_12_eye8_TA_tex_txt
- 0x8085D660: flg_12_mouth1_TA_tex_txt
- 0x8085D760: flg_12_mouth2_TA_tex_txt
- 0x8085D860: flg_12_mouth3_TA_tex_txt
- 0x8085D960: flg_12_mouth4_TA_tex_txt
- 0x8085DA60: flg_12_mouth5_TA_tex_txt
- 0x8085DB60: flg_12_mouth6_TA_tex_txt
- 0x8085DC60: flg_12_tmem_txt
- 0x8085DFE0: flg_13_pal
- 0x8085E000: flg_13_eye1_TA_tex_txt
- 0x8085E100: flg_13_eye2_TA_tex_txt
- 0x8085E200: flg_13_eye3_TA_tex_txt
- 0x8085E300: flg_13_eye4_TA_tex_txt
- 0x8085E400: flg_13_eye5_TA_tex_txt
- 0x8085E500: flg_13_eye6_TA_tex_txt
- 0x8085E600: flg_13_eye7_TA_tex_txt
- 0x8085E700: flg_13_eye8_TA_tex_txt
- 0x8085E800: flg_13_mouth1_TA_tex_txt
- 0x8085E900: flg_13_mouth2_TA_tex_txt
- 0x8085EA00: flg_13_mouth3_TA_tex_txt
- 0x8085EB00: flg_13_mouth4_TA_tex_txt
- 0x8085EC00: flg_13_mouth5_TA_tex_txt
- 0x8085ED00: flg_13_mouth6_TA_tex_txt
- 0x8085EE00: flg_13_tmem_txt
- 0x8085F200: flg_3_pal
- 0x8085F220: flg_3_eye1_TA_tex_txt
- 0x8085F320: flg_3_eye2_TA_tex_txt
- 0x8085F420: flg_3_eye3_TA_tex_txt
- 0x8085F520: flg_3_eye4_TA_tex_txt
- 0x8085F620: flg_3_eye5_TA_tex_txt
- 0x8085F720: flg_3_eye6_TA_tex_txt
- 0x8085F820: flg_3_eye7_TA_tex_txt
- 0x8085F920: flg_3_eye8_TA_tex_txt
- 0x8085FA20: flg_3_mouth1_TA_tex_txt
- 0x8085FB20: flg_3_mouth2_TA_tex_txt
- 0x8085FC20: flg_3_mouth3_TA_tex_txt
- 0x8085FD20: flg_3_mouth4_TA_tex_txt
- 0x8085FE20: flg_3_mouth5_TA_tex_txt
- 0x8085FF20: flg_3_mouth6_TA_tex_txt
- 0x80860020: flg_3_tmem_txt
- 0x80860420: flg_4_pal
- 0x80860440: flg_4_eye1_TA_tex_txt
- 0x80860540: flg_4_eye2_TA_tex_txt
- 0x80860640: flg_4_eye3_TA_tex_txt
- 0x80860740: flg_4_eye4_TA_tex_txt
- 0x80860840: flg_4_eye5_TA_tex_txt
- 0x80860940: flg_4_eye6_TA_tex_txt
- 0x80860A40: flg_4_eye7_TA_tex_txt
- 0x80860B40: flg_4_eye8_TA_tex_txt
- 0x80860C40: flg_4_mouth1_TA_tex_txt
- 0x80860D40: flg_4_mouth2_TA_tex_txt
- 0x80860E40: flg_4_mouth3_TA_tex_txt
- 0x80860F40: flg_4_mouth4_TA_tex_txt
- 0x80861040: flg_4_mouth5_TA_tex_txt
- 0x80861140: flg_4_mouth6_TA_tex_txt
- 0x80861240: flg_4_tmem_txt
- 0x80861640: flg_5_pal
- 0x80861660: flg_5_eye1_TA_tex_txt
- 0x80861760: flg_5_eye2_TA_tex_txt
- 0x80861860: flg_5_eye3_TA_tex_txt
- 0x80861960: flg_5_eye4_TA_tex_txt
- 0x80861A60: flg_5_eye5_TA_tex_txt
- 0x80861B60: flg_5_eye6_TA_tex_txt
- 0x80861C60: flg_5_eye7_TA_tex_txt
- 0x80861D60: flg_5_eye8_TA_tex_txt
- 0x80861E60: flg_5_mouth1_TA_tex_txt
- 0x80861F60: flg_5_mouth2_TA_tex_txt
- 0x80862060: flg_5_mouth3_TA_tex_txt
- 0x80862160: flg_5_mouth4_TA_tex_txt
- 0x80862260: flg_5_mouth5_TA_tex_txt
- 0x80862360: flg_5_mouth6_TA_tex_txt
- 0x80862460: flg_5_tmem_txt
- 0x80862860: flg_6_pal
- 0x80862880: flg_6_eye1_TA_tex_txt
- 0x80862980: flg_6_eye2_TA_tex_txt
- 0x80862A80: flg_6_eye3_TA_tex_txt
- 0x80862B80: flg_6_eye4_TA_tex_txt
- 0x80862C80: flg_6_eye5_TA_tex_txt
- 0x80862D80: flg_6_eye6_TA_tex_txt
- 0x80862E80: flg_6_eye7_TA_tex_txt
- 0x80862F80: flg_6_eye8_TA_tex_txt
- 0x80863080: flg_6_mouth1_TA_tex_txt
- 0x80863180: flg_6_mouth2_TA_tex_txt
- 0x80863280: flg_6_mouth3_TA_tex_txt
- 0x80863380: flg_6_mouth4_TA_tex_txt
- 0x80863480: flg_6_mouth5_TA_tex_txt
- 0x80863580: flg_6_mouth6_TA_tex_txt
- 0x80863680: flg_6_tmem_txt
- 0x80863A80: flg_7_pal
- 0x80863AA0: flg_7_eye1_TA_tex_txt
- 0x80863BA0: flg_7_eye2_TA_tex_txt
- 0x80863CA0: flg_7_eye3_TA_tex_txt
- 0x80863DA0: flg_7_eye4_TA_tex_txt
- 0x80863EA0: flg_7_eye5_TA_tex_txt
- 0x80863FA0: flg_7_eye6_TA_tex_txt
- 0x808640A0: flg_7_eye7_TA_tex_txt
- 0x808641A0: flg_7_eye8_TA_tex_txt
- 0x808642A0: flg_7_mouth1_TA_tex_txt
- 0x808643A0: flg_7_mouth2_TA_tex_txt
- 0x808644A0: flg_7_mouth3_TA_tex_txt
- 0x808645A0: flg_7_mouth4_TA_tex_txt
- 0x808646A0: flg_7_mouth5_TA_tex_txt
- 0x808647A0: flg_7_mouth6_TA_tex_txt
- 0x808648A0: flg_7_tmem_txt
- 0x80864CA0: flg_8_pal
- 0x80864CC0: flg_8_eye1_TA_tex_txt
- 0x80864DC0: flg_8_eye2_TA_tex_txt
- 0x80864EC0: flg_8_eye3_TA_tex_txt
- 0x80864FC0: flg_8_eye4_TA_tex_txt
- 0x808650C0: flg_8_eye5_TA_tex_txt
- 0x808651C0: flg_8_eye6_TA_tex_txt
- 0x808652C0: flg_8_eye7_TA_tex_txt
- 0x808653C0: flg_8_eye8_TA_tex_txt
- 0x808654C0: flg_8_mouth1_TA_tex_txt
- 0x808655C0: flg_8_mouth2_TA_tex_txt
- 0x808656C0: flg_8_mouth3_TA_tex_txt
- 0x808657C0: flg_8_mouth4_TA_tex_txt
- 0x808658C0: flg_8_mouth5_TA_tex_txt
- 0x808659C0: flg_8_mouth6_TA_tex_txt
- 0x80865AC0: flg_8_tmem_txt
- 0x80865EC0: flg_9_pal
- 0x80865EE0: flg_9_eye1_TA_tex_txt
- 0x80865FE0: flg_9_eye2_TA_tex_txt
- 0x808660E0: flg_9_eye3_TA_tex_txt
- 0x808661E0: flg_9_eye4_TA_tex_txt
- 0x808662E0: flg_9_eye5_TA_tex_txt
- 0x808663E0: flg_9_eye6_TA_tex_txt
- 0x808664E0: flg_9_eye7_TA_tex_txt
- 0x808665E0: flg_9_eye8_TA_tex_txt
- 0x808666E0: flg_9_mouth1_TA_tex_txt
- 0x808667E0: flg_9_mouth2_TA_tex_txt
- 0x808668E0: flg_9_mouth3_TA_tex_txt
- 0x808669E0: flg_9_mouth4_TA_tex_txt
- 0x80866AE0: flg_9_mouth5_TA_tex_txt
- 0x80866BE0: flg_9_mouth6_TA_tex_txt
- 0x80866CE0: flg_9_tmem_txt
- 0x808670E0: flg_10_pal
- 0x80867100: flg_10_eye1_TA_tex_txt
- 0x80867200: flg_10_eye2_TA_tex_txt
- 0x80867300: flg_10_eye3_TA_tex_txt
- 0x80867400: flg_10_eye4_TA_tex_txt
- 0x80867500: flg_10_eye5_TA_tex_txt
- 0x80867600: flg_10_eye6_TA_tex_txt
- 0x80867700: flg_10_eye7_TA_tex_txt
- 0x80867800: flg_10_eye8_TA_tex_txt
- 0x80867900: flg_10_mouth1_TA_tex_txt
- 0x80867A00: flg_10_mouth2_TA_tex_txt
- 0x80867B00: flg_10_mouth3_TA_tex_txt
- 0x80867C00: flg_10_mouth4_TA_tex_txt
- 0x80867D00: flg_10_mouth5_TA_tex_txt
- 0x80867E00: flg_10_mouth6_TA_tex_txt
- 0x80867F00: flg_10_tmem_txt
- 0x80868300: rcf_1_v
- 0x80869E30: head_rcf_model
- 0x8086A060: mouth_rcf_model
- 0x8086A0D8: hand_rcf_model
- 0x8086A1B8: Rarm2_rcf_model
- 0x8086A240: Rarm1_rcf_model
- 0x8086A2B8: Larm2_rcf_model
- 0x8086A340: Larm1_rcf_model
- 0x8086A3B8: chest_rcf_model
- 0x8086A4C0: tail1_rcf_model
- 0x8086A538: tail2_rcf_model
- 0x8086A5D8: Rfoot2_rcf_model
- 0x8086A658: Rfoot1_rcf_model
- 0x8086A6B0: Lfoot2_rcf_model
- 0x8086A730: Lfoot1_rcf_model
- 0x8086A788: base_rcf_model
- 0x8086A860: cKF_je_r_rcf_1_tbl
- 0x8086A998: cKF_bs_r_rcf_1
- 0x8086A9A0: rcf_1_pal
- 0x8086A9C0: rcf_1_eye1_TA_tex_txt
- 0x8086AAC0: rcf_1_eye2_TA_tex_txt
- 0x8086ABC0: rcf_1_eye3_TA_tex_txt
- 0x8086ACC0: rcf_1_eye4_TA_tex_txt
- 0x8086ADC0: rcf_1_eye5_TA_tex_txt
- 0x8086AEC0: rcf_1_eye6_TA_tex_txt
- 0x8086AFC0: rcf_1_eye7_TA_tex_txt
- 0x8086B0C0: rcf_1_eye8_TA_tex_txt
- 0x8086B1C0: rcf_1_tmem_txt
- 0x8086B8C0: obj_gara_pal
- 0x8086B8E0: obj_gara_tex_txt
- 0x8086C0E0: obj_gara_v
- 0x8086C500: obj_gara_base_model
- 0x8086C618: obj_gara_hex_model
- 0x8086C738: cKF_ckcb_r_obj_gara_tbl
- 0x8086C73C: cKF_kn_obj_gara_tbl
- 0x8086C740: cKF_c_obj_gara_tbl
- 0x8086C758: cKF_ds_obj_gara_tbl
- 0x8086C794: cKF_ba_r_obj_gara
- 0x8086C7A8: act_fukuball_pal
- 0x8086C7C8: act_fukutama1_tex
- 0x8086C848: act_fukutama2_tex
- 0x8086C8C8: act_fukutama3_tex
- 0x8086C948: act_fukutama4_tex
- 0x8086C9C8: act_fukutama_v
- 0x8086CA18: act_fukutama_modelT
- 0x8086CAD8: cKF_je_r_obj_gara_tbl
- 0x8086CAFC: cKF_bs_r_obj_gara
- 0x8086CB08: gst_1_v
- 0x8086DC18: head_gst_model
- 0x8086DE30: feel_gst_model
- 0x8086DE80: chest_gst_model
- 0x8086DF28: tail1_gst_model
- 0x8086DFD0: base_gst_model
- 0x8086E040: cKF_je_r_gst_1_tbl
- 0x8086E178: cKF_bs_r_gst_1
- 0x8086E180: gst_1_pal
- 0x8086E1A0: gst_1_eye1_TA_tex_txt
- 0x8086E2A0: gst_1_eye2_TA_tex_txt
- 0x8086E3A0: gst_1_eye3_TA_tex_txt
- 0x8086E4A0: gst_1_eye4_TA_tex_txt
- 0x8086E5A0: gst_1_eye5_TA_tex_txt
- 0x8086E6A0: gst_1_eye6_TA_tex_txt
- 0x8086E7A0: gst_1_eye7_TA_tex_txt
- 0x8086E8A0: gst_1_eye8_TA_tex_txt
- 0x8086E9A0: gst_1_mouth1_TA_tex_txt
- 0x8086EAA0: gst_1_mouth2_TA_tex_txt
- 0x8086EBA0: gst_1_mouth3_TA_tex_txt
- 0x8086ECA0: gst_1_mouth4_TA_tex_txt
- 0x8086EDA0: gst_1_mouth5_TA_tex_txt
- 0x8086EEA0: gst_1_mouth6_TA_tex_txt
- 0x8086EFA0: gst_1_tmem_txt
- 0x8086F120: grl_1_skin_tex_txt
- 0x8086F1A0: grl_1_hair_tex_txt
- 0x8086F220: grl_1_shoe_tex_txt
- 0x8086F2A0: grl_1_bottom_tex_txt
- 0x8086F320: grl_1_foot_tex_txt
- 0x8086F3A0: grl_1_hole_tex_txt
- 0x8086F420: grl_1_v
- 0x80870CE0: head_grl_model
- 0x80870E90: Rarm2_grl_model
- 0x80870F38: Rarm1_grl_model
- 0x80871010: Larm2_grl_model
- 0x808710B8: Larm1_grl_model
- 0x80871190: chest_grl_model
- 0x80871228: Rfoot3_grl_model
- 0x808712D0: Rffot2_grl_model
- 0x80871350: Rfoot1_grl_model
- 0x808713B0: Lfoot3_grl_model
- 0x80871458: Lfoot2_grl_model
- 0x808714D8: Lfoot1_grl_model
- 0x80871538: bace_grl_model
- 0x808715F0: cKF_je_r_grl_1_tbl
- 0x80871728: cKF_bs_r_grl_1
- 0x80871730: goa_1_v
- 0x80872D70: head_goa_model
- 0x80872F90: mouth_goa_model
- 0x80873000: Rarm2_goa_model
- 0x80873088: Rarm1_goa_model
- 0x80873100: Larm2_goa_model
- 0x80873188: Larm1_goa_model
- 0x80873200: chest_goa_model
- 0x808732A0: tail1_goa_model
- 0x80873300: Rfoot2_goa_model
- 0x80873380: Rfoot1_goa_model
- 0x80873400: Lfoot2_goa_model
- 0x80873480: Lfoot1_goa_model
- 0x80873500: base_goa_model
- 0x808735A8: cKF_je_r_goa_1_tbl
- 0x808736E0: cKF_bs_r_goa_1
- 0x80873700: goa_1_pal
- 0x80873720: goa_1_eye1_TA_tex_txt
- 0x80873820: goa_1_eye2_TA_tex_txt
- 0x80873920: goa_1_eye3_TA_tex_txt
- 0x80873A20: goa_1_eye4_TA_tex_txt
- 0x80873B20: goa_1_eye5_TA_tex_txt
- 0x80873C20: goa_1_eye6_TA_tex_txt
- 0x80873D20: goa_1_eye7_TA_tex_txt
- 0x80873E20: goa_1_eye8_TA_tex_txt
- 0x80873F20: goa_1_mouth1_TA_tex_txt
- 0x80874020: goa_1_mouth2_TA_tex_txt
- 0x80874120: goa_1_mouth3_TA_tex_txt
- 0x80874220: goa_1_mouth4_TA_tex_txt
- 0x80874320: goa_1_mouth5_TA_tex_txt
- 0x80874420: goa_1_mouth6_TA_tex_txt
- 0x80874520: goa_1_tmem_txt
- 0x80874920: goa_2_pal
- 0x80874940: goa_2_eye1_TA_tex_txt
- 0x80874A40: goa_2_eye2_TA_tex_txt
- 0x80874B40: goa_2_eye3_TA_tex_txt
- 0x80874C40: goa_2_eye4_TA_tex_txt
- 0x80874D40: goa_2_eye5_TA_tex_txt
- 0x80874E40: goa_2_eye6_TA_tex_txt
- 0x80874F40: goa_2_eye7_TA_tex_txt
- 0x80875040: goa_2_eye8_TA_tex_txt
- 0x80875140: goa_2_mouth1_TA_tex_txt
- 0x80875240: goa_2_mouth2_TA_tex_txt
- 0x80875340: goa_2_mouth3_TA_tex_txt
- 0x80875440: goa_2_mouth4_TA_tex_txt
- 0x80875540: goa_2_mouth5_TA_tex_txt
- 0x80875640: goa_2_mouth6_TA_tex_txt
- 0x80875740: goa_2_tmem_txt
- 0x80875B40: goa_3_pal
- 0x80875B60: goa_3_eye1_TA_tex_txt
- 0x80875C60: goa_3_eye2_TA_tex_txt
- 0x80875D60: goa_3_eye3_TA_tex_txt
- 0x80875E60: goa_3_eye4_TA_tex_txt
- 0x80875F60: goa_3_eye5_TA_tex_txt
- 0x80876060: goa_3_eye6_TA_tex_txt
- 0x80876160: goa_3_eye7_TA_tex_txt
- 0x80876260: goa_3_eye8_TA_tex_txt
- 0x80876360: goa_3_mouth1_TA_tex_txt
- 0x80876460: goa_3_mouth2_TA_tex_txt
- 0x80876560: goa_3_mouth3_TA_tex_txt
- 0x80876660: goa_3_mouth4_TA_tex_txt
- 0x80876760: goa_3_mouth5_TA_tex_txt
- 0x80876860: goa_3_mouth6_TA_tex_txt
- 0x80876960: goa_3_tmem_txt
- 0x80876D60: goa_4_pal
- 0x80876D80: goa_4_eye1_TA_tex_txt
- 0x80876E80: goa_4_eye2_TA_tex_txt
- 0x80876F80: goa_4_eye3_TA_tex_txt
- 0x80877080: goa_4_eye4_TA_tex_txt
- 0x80877180: goa_4_eye5_TA_tex_txt
- 0x80877280: goa_4_eye6_TA_tex_txt
- 0x80877380: goa_4_eye7_TA_tex_txt
- 0x80877480: goa_4_eye8_TA_tex_txt
- 0x80877580: goa_4_mouth1_TA_tex_txt
- 0x80877680: goa_4_mouth2_TA_tex_txt
- 0x80877780: goa_4_mouth3_TA_tex_txt
- 0x80877880: goa_4_mouth4_TA_tex_txt
- 0x80877980: goa_4_mouth5_TA_tex_txt
- 0x80877A80: goa_4_mouth6_TA_tex_txt
- 0x80877B80: goa_4_tmem_txt
- 0x80877F80: goa_5_pal
- 0x80877FA0: goa_5_eye1_TA_tex_txt
- 0x808780A0: goa_5_eye2_TA_tex_txt
- 0x808781A0: goa_5_eye3_TA_tex_txt
- 0x808782A0: goa_5_eye4_TA_tex_txt
- 0x808783A0: goa_5_eye5_TA_tex_txt
- 0x808784A0: goa_5_eye6_TA_tex_txt
- 0x808785A0: goa_5_eye7_TA_tex_txt
- 0x808786A0: goa_5_eye8_TA_tex_txt
- 0x808787A0: goa_5_mouth1_TA_tex_txt
- 0x808788A0: goa_5_mouth2_TA_tex_txt
- 0x808789A0: goa_5_mouth3_TA_tex_txt
- 0x80878AA0: goa_5_mouth4_TA_tex_txt
- 0x80878BA0: goa_5_mouth5_TA_tex_txt
- 0x80878CA0: goa_5_mouth6_TA_tex_txt
- 0x80878DA0: goa_5_tmem_txt
- 0x808791A0: goa_6_pal
- 0x808791C0: goa_6_eye1_TA_tex_txt
- 0x808792C0: goa_6_eye2_TA_tex_txt
- 0x808793C0: goa_6_eye3_TA_tex_txt
- 0x808794C0: goa_6_eye4_TA_tex_txt
- 0x808795C0: goa_6_eye5_TA_tex_txt
- 0x808796C0: goa_6_eye6_TA_tex_txt
- 0x808797C0: goa_6_eye7_TA_tex_txt
- 0x808798C0: goa_6_eye8_TA_tex_txt
- 0x808799C0: goa_6_mouth1_TA_tex_txt
- 0x80879AC0: goa_6_mouth2_TA_tex_txt
- 0x80879BC0: goa_6_mouth3_TA_tex_txt
- 0x80879CC0: goa_6_mouth4_TA_tex_txt
- 0x80879DC0: goa_6_mouth5_TA_tex_txt
- 0x80879EC0: goa_6_mouth6_TA_tex_txt
- 0x80879FC0: goa_6_tmem_txt
- 0x8087A3C0: gor_1_v
- 0x8087BE90: head_gor_model
- 0x8087C0B0: mouth_gor_model
- 0x8087C1A0: Rarm2_gor_model
- 0x8087C240: Rarm1_gor_model
- 0x8087C2D0: Larm2_gor_model
- 0x8087C370: Larm1_gor_model
- 0x8087C400: chest_gor_model
- 0x8087C4D8: Rfoot2_gor_model
- 0x8087C568: Rfoot1_gor_model
- 0x8087C628: Lfoot2_gor_model
- 0x8087C6B8: Lfoot1_gor_model
- 0x8087C778: base_gor_model
- 0x8087C808: cKF_je_r_gor_1_tbl
- 0x8087C940: cKF_bs_r_gor_1
- 0x8087C960: gor_1_pal
- 0x8087C980: gor_1_eye1_TA_tex_txt
- 0x8087CA80: gor_1_eye2_TA_tex_txt
- 0x8087CB80: gor_1_eye3_TA_tex_txt
- 0x8087CC80: gor_1_eye4_TA_tex_txt
- 0x8087CD80: gor_1_eye5_TA_tex_txt
- 0x8087CE80: gor_1_eye6_TA_tex_txt
- 0x8087CF80: gor_1_eye7_TA_tex_txt
- 0x8087D080: gor_1_eye8_TA_tex_txt
- 0x8087D180: gor_1_mouth1_TA_tex_txt
- 0x8087D280: gor_1_mouth2_TA_tex_txt
- 0x8087D380: gor_1_mouth3_TA_tex_txt
- 0x8087D480: gor_1_mouth4_TA_tex_txt
- 0x8087D580: gor_1_mouth5_TA_tex_txt
- 0x8087D680: gor_1_mouth6_TA_tex_txt
- 0x8087D780: gor_1_tmem_txt
- 0x8087DB80: gor_2_pal
- 0x8087DBA0: gor_2_eye1_TA_tex_txt
- 0x8087DCA0: gor_2_eye2_TA_tex_txt
- 0x8087DDA0: gor_2_eye3_TA_tex_txt
- 0x8087DEA0: gor_2_eye4_TA_tex_txt
- 0x8087DFA0: gor_2_eye5_TA_tex_txt
- 0x8087E0A0: gor_2_eye6_TA_tex_txt
- 0x8087E1A0: gor_2_eye7_TA_tex_txt
- 0x8087E2A0: gor_2_eye8_TA_tex_txt
- 0x8087E3A0: gor_2_mouth1_TA_tex_txt
- 0x8087E4A0: gor_2_mouth2_TA_tex_txt
- 0x8087E5A0: gor_2_mouth3_TA_tex_txt
- 0x8087E6A0: gor_2_mouth4_TA_tex_txt
- 0x8087E7A0: gor_2_mouth5_TA_tex_txt
- 0x8087E8A0: gor_2_mouth6_TA_tex_txt
- 0x8087E9A0: gor_2_tmem_txt
- 0x8087EDA0: gor_3_pal
- 0x8087EDC0: gor_3_eye1_TA_tex_txt
- 0x8087EEC0: gor_3_eye2_TA_tex_txt
- 0x8087EFC0: gor_3_eye3_TA_tex_txt
- 0x8087F0C0: gor_3_eye4_TA_tex_txt
- 0x8087F1C0: gor_3_eye5_TA_tex_txt
- 0x8087F2C0: gor_3_eye6_TA_tex_txt
- 0x8087F3C0: gor_3_eye7_TA_tex_txt
- 0x8087F4C0: gor_3_eye8_TA_tex_txt
- 0x8087F5C0: gor_3_mouth1_TA_tex_txt
- 0x8087F6C0: gor_3_mouth2_TA_tex_txt
- 0x8087F7C0: gor_3_mouth3_TA_tex_txt
- 0x8087F8C0: gor_3_mouth4_TA_tex_txt
- 0x8087F9C0: gor_3_mouth5_TA_tex_txt
- 0x8087FAC0: gor_3_mouth6_TA_tex_txt
- 0x8087FBC0: gor_3_tmem_txt
- 0x8087FFC0: gor_4_pal
- 0x8087FFE0: gor_4_eye1_TA_tex_txt
- 0x808800E0: gor_4_eye2_TA_tex_txt
- 0x808801E0: gor_4_eye3_TA_tex_txt
- 0x808802E0: gor_4_eye4_TA_tex_txt
- 0x808803E0: gor_4_eye5_TA_tex_txt
- 0x808804E0: gor_4_eye6_TA_tex_txt
- 0x808805E0: gor_4_eye7_TA_tex_txt
- 0x808806E0: gor_4_eye8_TA_tex_txt
- 0x808807E0: gor_4_mouth1_TA_tex_txt
- 0x808808E0: gor_4_mouth2_TA_tex_txt
- 0x808809E0: gor_4_mouth3_TA_tex_txt
- 0x80880AE0: gor_4_mouth4_TA_tex_txt
- 0x80880BE0: gor_4_mouth5_TA_tex_txt
- 0x80880CE0: gor_4_mouth6_TA_tex_txt
- 0x80880DE0: gor_4_tmem_txt
- 0x808811E0: gor_5_pal
- 0x80881200: gor_5_eye1_TA_tex_txt
- 0x80881300: gor_5_eye2_TA_tex_txt
- 0x80881400: gor_5_eye3_TA_tex_txt
- 0x80881500: gor_5_eye4_TA_tex_txt
- 0x80881600: gor_5_eye5_TA_tex_txt
- 0x80881700: gor_5_eye6_TA_tex_txt
- 0x80881800: gor_5_eye7_TA_tex_txt
- 0x80881900: gor_5_eye8_TA_tex_txt
- 0x80881A00: gor_5_mouth1_TA_tex_txt
- 0x80881B00: gor_5_mouth2_TA_tex_txt
- 0x80881C00: gor_5_mouth3_TA_tex_txt
- 0x80881D00: gor_5_mouth4_TA_tex_txt
- 0x80881E00: gor_5_mouth5_TA_tex_txt
- 0x80881F00: gor_5_mouth6_TA_tex_txt
- 0x80882000: gor_5_tmem_txt
- 0x80882400: xct_1_v
- 0x808837B0: head_xct_model
- 0x80883940: Rarm2_xct_model
- 0x808839C8: Rarm1_xct_model
- 0x80883A40: Larm2_xct_model
- 0x80883AC8: Larm1_xct_model
- 0x80883B40: chest_xct_model
- 0x80883BF0: tail1_xct_model
- 0x80883C48: tail2_xct_model
- 0x80883CD8: Rfoot2_xct_model
- 0x80883D68: Rfoot1_xct_model
- 0x80883DC0: Lfoot2_xct_model
- 0x80883E50: Lfoot1_xct_model
- 0x80883EA8: base_xct_model
- 0x80883F28: cKF_je_r_xct_1_tbl
- 0x80884060: cKF_bs_r_xct_1
- 0x80884080: xct_1_pal
- 0x808840A0: xct_1_eye1_TA_tex_txt
- 0x808841A0: xct_1_eye2_TA_tex_txt
- 0x808842A0: xct_1_eye3_TA_tex_txt
- 0x808843A0: xct_1_eye4_TA_tex_txt
- 0x808844A0: xct_1_eye5_TA_tex_txt
- 0x808845A0: xct_1_eye6_TA_tex_txt
- 0x808846A0: xct_1_eye7_TA_tex_txt
- 0x808847A0: xct_1_eye8_TA_tex_txt
- 0x808848A0: xct_1_mouth1_TA_tex_txt
- 0x808849A0: xct_1_mouth2_TA_tex_txt
- 0x80884AA0: xct_1_mouth3_TA_tex_txt
- 0x80884BA0: xct_1_mouth4_TA_tex_txt
- 0x80884CA0: xct_1_mouth5_TA_tex_txt
- 0x80884DA0: xct_1_mouth6_TA_tex_txt
- 0x80884EA0: xct_1_tmem_txt
- 0x80885420: act_f28_akikan_pal
- 0x80885440: act_f28_akikan_tex
- 0x80885540: act_f28_akikan_v
- 0x808855A0: act_f28_akikanT_model
- 0x80885600: act_f29_angel_pal
- 0x80885620: act_f29_angel_tex
- 0x80885920: act_f29_angel_a_v
- 0x808859B0: act_f29_angel_aT_model
- 0x80885A18: act_f29_angel_b_v
- 0x80885AA8: act_f29_angel_bT_model
- 0x80885B10: act_f29_angel_c_v
- 0x80885BA0: act_f29_angel_cT_model
- 0x80885C20: act_f26_aroana_pal
- 0x80885C40: act_f26_aroana_tex
- 0x80885F40: act_f26_aroana_a_v
- 0x80885FD0: act_f26_aroana_aT_model
- 0x80886038: act_f26_aroana_b_v
- 0x808860C8: act_f26_aroana_bT_model
- 0x80886130: act_f26_aroana_c_v
- 0x808861C0: act_f26_aroana_cT_model
- 0x80886240: act_f18_ayu_pal
- 0x80886260: act_f18_ayu_tex
- 0x80886560: act_f18_ayu_a_v
- 0x808865F0: act_f18_ayu_aT_model
- 0x80886658: act_f18_ayu_b_v
- 0x808866E8: act_f18_ayu_bT_model
- 0x80886750: act_f18_ayu_c_v
- 0x808867E0: act_f18_ayu_cT_model
- 0x80886860: act_f08_bassl_pal
- 0x80886880: act_f08_bassl_tex
- 0x80886B80: act_f08_bassl_a_v
- 0x80886C10: act_f08_bassl_aT_model
- 0x80886C78: act_f08_bassl_b_v
- 0x80886D08: act_f08_bassl_bT_model
- 0x80886D70: act_f08_bassl_c_v
- 0x80886E00: act_f08_bassl_cT_model
- 0x80886E80: act_f07_bassm_pal
- 0x80886EA0: act_f07_bassm_tex
- 0x808871A0: act_f07_bassm_a_v
- 0x80887230: act_f07_bassm_aT_model
- 0x80887298: act_f07_bassm_b_v
- 0x80887328: act_f07_bassm_bT_model
- 0x80887390: act_f07_bassm_c_v
- 0x80887420: act_f07_bassm_cT_model
- 0x808874A0: act_f06_bass_pal
- 0x808874C0: act_f06_bass_tex
- 0x808876C0: act_f06_bass_a_v
- 0x80887750: act_f06_bass_aT_model
- 0x808877B8: act_f06_bass_b_v
- 0x80887848: act_f06_bass_bT_model
- 0x808878B0: act_f06_bass_c_v
- 0x80887940: act_f06_bass_cT_model
- 0x808879C0: act_f09_gill_pal
- 0x808879E0: act_f09_gill_tex
- 0x80887BE0: act_f09_gill_a_v
- 0x80887C70: act_f09_gill_aT_model
- 0x80887CD8: act_f09_gill_b_v
- 0x80887D68: act_f09_gill_bT_model
- 0x80887DD0: act_f09_gill_c_v
- 0x80887E60: act_f09_gill_cT_model
- 0x80887EE0: act_f31_demekin_pal
- 0x80887F00: act_f31_demekin_tex
- 0x80888100: act_f31_demekin_a_v
- 0x80888190: act_f31_demekin_aT_model
- 0x808881F8: act_f31_demekin_b_v
- 0x80888288: act_f31_demekin_bT_model
- 0x808882F0: act_f31_demekin_c_v
- 0x80888380: act_f31_demekin_cT_model
- 0x80888400: act_f16_dojyo_pal
- 0x80888420: act_f16_dojyo_tex
- 0x80888520: act_f16_dojyo_a_v
- 0x808885B0: act_f16_dojyo_aT_model
- 0x80888618: act_f16_dojyo_b_v
- 0x808886A8: act_f16_dojyo_bT_model
- 0x80888710: act_f16_dojyo_c_v
- 0x808887A0: act_f16_dojyo_cT_model
- 0x80888820: act_f28_donko_pal
- 0x80888840: act_f28_donko_tex
- 0x80888A40: act_f28_donko_a_v
- 0x80888AD0: act_f28_donko_aT_model
- 0x80888B38: act_f28_donko_b_v
- 0x80888BC8: act_f28_donko_bT_model
- 0x80888C30: act_f28_donko_c_v
- 0x80888CC0: act_f28_donko_cT_model
- 0x80888D40: act_f01_funa_pal
- 0x80888D60: act_f01_funa_tex
- 0x80888F60: act_f01_funa_a_v
- 0x80888FF0: act_f01_funa_aT_model
- 0x80889058: act_f01_funa_b_v
- 0x808890F8: act_f01_funa_bT_model
- 0x80889160: act_f01_funa_c_v
- 0x808891F0: act_f01_funa_cT_model
- 0x80889260: act_f30_gupi_pal
- 0x80889280: act_f30_gupi_tex
- 0x80889480: act_f30_gupi_a_v
- 0x80889510: act_f30_gupi_aT_model
- 0x80889578: act_f30_gupi_b_v
- 0x80889608: act_f30_gupi_bT_model
- 0x80889670: act_f30_gupi_c_v
- 0x80889700: act_f30_gupi_cT_model
- 0x80889780: act_f02_hera_pal
- 0x808897A0: act_f02_hera_tex
- 0x80889AA0: act_f02_hera_a_v
- 0x80889B30: act_f02_hera_aT_model
- 0x80889B98: act_f02_hera_b_v
- 0x80889C28: act_f02_hera_bT_model
- 0x80889C90: act_f02_hera_c_v
- 0x80889D20: act_f02_hera_cT_model
- 0x80889DC0: act_f40_isidai_tex
- 0x8088A0C0: act_f40_isidai_a_v
- 0x8088A150: act_f40_isidai_aT_model
- 0x8088A1B8: act_f40_isidai_b_v
- 0x8088A248: act_f40_isidai_bT_model
- 0x8088A2B0: act_f40_isidai_c_v
- 0x8088A340: act_f40_isidai_cT_model
- 0x8088A3C0: act_f22_ito_pal
- 0x8088A3E0: act_f22_ito_tex
- 0x8088A7E0: act_f22_ito_a_v
- 0x8088A870: act_f22_ito_aT_model
- 0x8088A8D8: act_f22_ito_b_v
- 0x8088A968: act_f22_ito_bT_model
- 0x8088A9D0: act_f22_ito_c_v
- 0x8088AA60: act_f22_ito_cT_model
- 0x8088AB00: act_f36_kaeru_tex
- 0x8088AF00: act_f36_kaeru_a_v
- 0x8088AF80: act_f36_kaeru_aT_model
- 0x8088AFE0: act_f36_kaeru_b_v
- 0x8088B060: act_f36_kaeru_bT_model
- 0x8088B0C0: act_f36_kaeru_c_v
- 0x8088B140: act_f36_kaeru_cT_model
- 0x8088B1A0: act_gyoei02_0_int_i4
- 0x8088B2A0: act_gyoei02_1_int_i4
- 0x8088B3A0: act_gyoei02_2_int_i4
- 0x8088B4A0: act_gyoei02_3_int_i4
- 0x8088B5A0: act_gyoei02_00_v
- 0x8088B5E0: act_gyoei02_00_modelT
- 0x8088B640: act_f32_kaseki_pal
- 0x8088B660: act_f32_kaseki_tex
- 0x8088BA60: act_f32_kaseki_a_v
- 0x8088BB00: act_f32_kaseki_aT_model
- 0x8088BB68: act_f32_kaseki_b_v
- 0x8088BC08: act_f32_kasekiT_model
- 0x8088BC70: act_f32_kaseki_c_v
- 0x8088BD10: act_f32_kaseki_cT_model
- 0x8088BD80: act_f24_kingyo_pal
- 0x8088BDA0: act_f24_kingyo_tex
- 0x8088BFA0: act_f24_kingyo_a_v
- 0x8088C030: act_f24_kingyo_aT_model
- 0x8088C098: act_f24_kingyo_b_v
- 0x8088C128: act_f24_kingyo_bT_model
- 0x8088C190: act_f24_kingyo_c_v
- 0x8088C220: act_f24_kingyo_cT_model
- 0x8088C2A0: act_f03_koi_pal
- 0x8088C2C0: act_f03_koi_tex
- 0x8088C5C0: act_f03_koi_a_v
- 0x8088C650: act_f03_koi_aT_model
- 0x8088C6B8: act_f03_koi_b_v
- 0x8088C748: act_f03_koi_bT_model
- 0x8088C7B0: act_f03_koi_c_v
- 0x8088C840: act_f03_koi_cT_model
- 0x8088C8E0: act_f37_kurage_head_tex
- 0x8088C9E0: act_f37_kurage_foot_tex
- 0x8088CAE0: act_f37_kurage_a_v
- 0x8088CBB0: act_f37_kurage_aT_model
- 0x8088CC30: act_f37_kurage_b_v
- 0x8088CD00: act_f37_kurage_bT_model
- 0x8088CD80: act_f37_kurage_c_v
- 0x8088CE50: act_f37_kurage_cT_model
- 0x8088CF00: act_f33_medaka_tex
- 0x8088D000: act_f33_medaka_a_v
- 0x8088D090: act_f33_medaka_aT_model
- 0x8088D0F8: act_f33_medaka_b_v
- 0x8088D188: act_f33_medaka_bT_model
- 0x8088D1F0: act_f33_medaka_c_v
- 0x8088D280: act_f33_medaka_cT_model
- 0x8088D300: act_f30_nagagutu_pal
- 0x8088D320: act_f30_nagagutu_tex
- 0x8088D520: act_f30_nagagutu_v
- 0x8088D570: act_f30_nagagutuT_model
- 0x8088D5E0: act_f05_namazu_pal
- 0x8088D600: act_f05_namazu_tex
- 0x8088D900: act_f05_namazu_a_v
- 0x8088D990: act_f05_namazu_aT_model
- 0x8088D9F8: act_f05_namazu_b_v
- 0x8088DA88: act_f05_namazu_bT_model
- 0x8088DAF0: act_f05_namazu_c_v
- 0x8088DB80: act_f05_namazu_cT_model
- 0x8088DC00: act_f12_nigoi_pal
- 0x8088DC20: act_f12_nigoi_tex
- 0x8088DF20: act_f12_nigoi_a_v
- 0x8088DFB0: act_f12_nigoi_aT_model
- 0x8088E018: act_f12_nigoi_b_v
- 0x8088E0A8: act_f12_nigoi_bT_model
- 0x8088E110: act_f12_nigoi_c_v
- 0x8088E1A0: act_f12_nigoi_cT_model
- 0x8088E220: act_f21_niji_pal
- 0x8088E240: act_f21_niji_tex
- 0x8088E540: act_f21_niji_a_v
- 0x8088E5D0: act_f21_niji_aT_model
- 0x8088E638: act_f21_niji_b_v
- 0x8088E6C8: act_f21_niji_bT_model
- 0x8088E730: act_f21_niji_c_v
- 0x8088E7C0: act_f21_niji_cT_model
- 0x8088E840: act_f04_nisiki_pal
- 0x8088E860: act_f04_nisiki_tex
- 0x8088EB60: act_f04_nisiki_a_v
- 0x8088EBF0: act_f04_nisiki_aT_model
- 0x8088EC58: act_f04_nisiki_b_v
- 0x8088ECE8: act_f04_nisiki_bT_model
- 0x8088ED50: act_f04_nisiki_c_v
- 0x8088EDE0: act_f04_nisiki_cT_model
- 0x8088EE60: act_f14_oikawa_pal
- 0x8088EE80: act_f14_oikawa_tex
- 0x8088F080: act_f14_oikawa_a_v
- 0x8088F110: act_f14_oikawa_aT_model
- 0x8088F178: act_f14_oikawa_b_v
- 0x8088F208: act_f14_oikawa_bT_model
- 0x8088F270: act_f14_oikawa_c_v
- 0x8088F300: act_f14_oikawa_cT_model
- 0x8088F380: act_f20_iwana_pal
- 0x8088F3A0: act_f20_iwana_tex
- 0x8088F6A0: act_f20_iwana_a_v
- 0x8088F730: act_f20_iwana_aT_model
- 0x8088F798: act_f20_iwana_b_v
- 0x8088F828: act_f20_iwana_bT_model
- 0x8088F890: act_f20_iwana_c_v
- 0x8088F920: act_f20_iwana_cT_model
- 0x8088F9A0: act_f10_oonamazu_pal
- 0x8088F9C0: act_f10_oonamazu_tex
- 0x8088FDC0: act_f10_oonamazu_a_v
- 0x8088FE50: act_f10_oonamazu_aT_model
- 0x8088FEB8: act_f10_oonamazu_b_v
- 0x8088FF48: act_f10_oonamazu_bT_model
- 0x8088FFB0: act_f10_oonamazu_c_v
- 0x80890040: act_f10_oonamazu_cT_model
- 0x808900E0: act_f34_piraluku_tex
- 0x808904E0: act_f34_piraluku_a_v
- 0x80890570: act_f34_piraluku_aT_model
- 0x808905D8: act_f34_piraluku_b_v
- 0x80890668: act_f34_piraluku_bT_model
- 0x808906D0: act_f34_piraluku_c_v
- 0x80890760: act_f34_piraluku_cT_model
- 0x808907E0: act_f25_pirania_pal
- 0x80890800: act_f25_pirania_tex
- 0x80890A00: act_f25_pirania_a_v
- 0x80890A90: act_f25_pirania_aT_model
- 0x80890AF8: act_f25_pirania_b_v
- 0x80890B88: act_f25_pirania_bT_model
- 0x80890BF0: act_f25_pirania_c_v
- 0x80890C80: act_f25_pirania_cT_model
- 0x80890D00: act_f11_raigyo_pal
- 0x80890D20: act_f11_raigyo_tex
- 0x80891120: act_f11_raigyo_a_v
- 0x808911C0: act_f11_raigyo_aT_model
- 0x80891228: act_f11_raigyo_b_v
- 0x808912C8: act_f11_raigyo_bT_model
- 0x80891330: act_f11_raigyo_c_v
- 0x808913D0: act_f11_raigyo_cT_model
- 0x80891440: act_f23_sake_pal
- 0x80891460: act_f23_sake_tex
- 0x80891760: act_f23_sake_a_v
- 0x808917F0: act_f23_sake_aT_model
- 0x80891858: act_f23_sake_b_v
- 0x808918E8: act_f23_sake_bT_model
- 0x80891950: act_f23_sake_c_v
- 0x808919E0: act_f23_sake_cT_model
- 0x80891A80: act_f38_suzuki_tex
- 0x80891D80: act_f38_suzuki_a_v
- 0x80891E10: act_f38_suzuki_aT_model
- 0x80891E78: act_f38_suzuki_b_v
- 0x80891F08: act_f38_suzuki_bT_model
- 0x80891F70: act_f38_suzuki_c_v
- 0x80892000: act_f38_suzuki_cT_model
- 0x808920A0: act_f39_tai_tex
- 0x808923A0: act_f39_tai_a_v
- 0x80892430: act_f39_tai_aT_model
- 0x80892498: act_f39_tai_b_v
- 0x80892528: act_f39_tai_bT_model
- 0x80892590: act_f39_tai_c_v
- 0x80892620: act_f39_tai_cT_model
- 0x808926A0: act_f31_taiya_pal
- 0x808926C0: act_f31_taiya_tex
- 0x808929C0: act_f31_taiya_v
- 0x80892A10: act_f29_petT_model
- 0x80892A80: act_f15_tanago_pal
- 0x80892AA0: act_f15_tanago_tex
- 0x80892CA0: act_f15_tanago_a_v
- 0x80892D30: act_f15_tanago_aT_model
- 0x80892D98: act_f15_tanago_b_v
- 0x80892E28: act_f15_tanago_bT_model
- 0x80892E90: act_f15_tanago_c_v
- 0x80892F20: act_f15_tanago_cT_model
- 0x80892FA0: act_f13_ugui_pal
- 0x80892FC0: act_f13_ugui_tex
- 0x808932C0: act_f13_ugui_a_v
- 0x80893350: act_f13_ugui_aT_model
- 0x808933B8: act_f13_ugui_b_v
- 0x80893448: act_f13_ugui_bT_model
- 0x808934B0: act_f13_ugui_c_v
- 0x80893540: act_f13_ugui_cT_model
- 0x808935C0: act_f27_unagi_pal
- 0x808935E0: act_f27_unagi_tex
- 0x808937E0: act_f27_unagi_a_v
- 0x80893870: act_f27_unagi_aT_model
- 0x808938D8: act_f27_unagi_b_v
- 0x80893968: act_f27_unagi_bT_model
- 0x808939D0: act_f27_unagi_c_v
- 0x80893A60: act_f27_unagi_cT_model
- 0x80893AE0: act_f17_wakasagi_pal
- 0x80893B00: act_f17_wakasagi_tex
- 0x80893C00: act_f17_wakasagi_a_v
- 0x80893C90: act_f17_wakasagi_aT_model
- 0x80893CF8: act_f17_wakasagi_b_v
- 0x80893D88: act_f17_wakasagi_bT_model
- 0x80893DF0: act_f17_wakasagi_c_v
- 0x80893E80: act_f17_wakasagi_cT_model
- 0x80893F00: act_f19_yamame_pal
- 0x80893F20: act_f19_yamame_tex
- 0x80894220: act_f19_yamame_a_v
- 0x808942B0: act_f19_yamame_aT_model
- 0x80894318: act_f19_yamame_b_v
- 0x808943A8: act_f19_yamame_bT_model
- 0x80894410: act_f19_yamame_c_v
- 0x808944A0: act_f19_yamame_cT_model
- 0x80894540: act_f35_zarigani_tex
- 0x80894640: act_f35_zarigani_a_v
- 0x808946D0: act_f35_zarigani_aT_model
- 0x80894738: act_f35_zarigani_b_v
- 0x808947C8: act_f35_zarigani_bT_model
- 0x80894830: act_f35_zarigani_c_v
- 0x808948C0: act_f35_zarigani_cT_model
- 0x80894928: bpt_1_v
- 0x80896008: head_bpt_model
- 0x808961B0: feel_bpt_model
- 0x80896218: mouth_bpt_model
- 0x808962A0: Rarm2_bpt_model
- 0x80896368: Rarm1_bpt_model
- 0x808963F8: Larm2_bpt_model
- 0x808964C0: Larm1_bpt_model
- 0x80896550: chest_bpt_model
- 0x80896608: tail1_bpt_model
- 0x80896660: tail2_bpt_model
- 0x808966F0: Rfoot2_bpt_model
- 0x80896750: Rfoot1_bpt_model
- 0x808967D0: Lfoot2_bpt_model
- 0x80896830: Lfoot1_bpt_model
- 0x808968B8: base_bpt_model
- 0x80896940: cKF_je_r_bpt_1_tbl
- 0x80896A78: cKF_bs_r_bpt_1
- 0x80896A80: bpt_1_pal
- 0x80896AA0: bpt_1_eye1_TA_tex_txt
- 0x80896BA0: bpt_1_eye2_TA_tex_txt
- 0x80896CA0: bpt_1_eye3_TA_tex_txt
- 0x80896DA0: bpt_1_eye4_TA_tex_txt
- 0x80896EA0: bpt_1_eye5_TA_tex_txt
- 0x80896FA0: bpt_1_eye6_TA_tex_txt
- 0x808970A0: bpt_1_eye7_TA_tex_txt
- 0x808971A0: bpt_1_eye8_TA_tex_txt
- 0x808972A0: bpt_1_tmem_txt
- 0x808979A0: pkn_1_v
- 0x80898BA0: head_pkn_model
- 0x80898D20: Rarm2_pkn_model
- 0x80898DA8: Rarm1_pkn_model
- 0x80898E20: Larm2_pkn_model
- 0x80898EA8: Larm1_pkn_model
- 0x80898F20: chest_pkn_model
- 0x80898FC0: Rfoot2_pkn_model
- 0x80899040: Rfoot1_pkn_model
- 0x808990F0: Lfoot2_pkn_model
- 0x80899170: Lfoot1_pkn_model
- 0x80899220: base_pkn_model
- 0x80899288: cKF_je_r_pkn_1_tbl
- 0x808993C0: cKF_bs_r_pkn_1
- 0x808993E0: pkn_1_pal
- 0x80899400: pkn_1_tmem_txt
- 0x80899A80: hnw_v
- 0x8089ABC0: head_hnw_model
- 0x8089AEC8: handR_hnw_model
- 0x8089AF50: handL_hnw_model
- 0x8089AFD8: body_hnw_model
- 0x8089B0F0: cKF_je_r_hnw_tbl
- 0x8089B144: cKF_bs_r_hnw
- 0x8089B150: cKF_ckcb_r_hnw_move_tbl
- 0x8089B158: cKF_kn_hnw_move_tbl
- 0x8089B160: cKF_c_hnw_move_tbl
- 0x8089B188: cKF_ds_hnw_move_tbl
- 0x8089B248: cKF_ba_r_hnw_move
- 0x8089B260: hnw_face
- 0x8089B280: hnw_tmem_txt
- 0x8089BA80: hem_1_v
- 0x8089CF50: head_hem_model
- 0x8089D0F0: feel_hem_model
- 0x8089D170: mouth_hem_model
- 0x8089D200: Rarm2_hem_model
- 0x8089D288: Rarm1_hem_model
- 0x8089D2E0: chest_hem_model
- 0x8089D3B0: base_hem_model
- 0x8089D5A0: cKF_je_r_hem_1_tbl
- 0x8089D6D8: cKF_bs_r_hem_1
- 0x8089D6E0: hem_1_pal
- 0x8089D700: hem_1_tmem_txt
- 0x8089DE40: hip_1_v
- 0x8089FAA0: head_hip_model
- 0x8089FD78: mouth_hip_model
- 0x8089FE40: Rarm2_hip_model
- 0x8089FEC0: Rarm1_hip_model
- 0x8089FF38: Larm2_hip_model
- 0x8089FFB8: Larm1_hip_model
- 0x808A0030: chest_hip_model
- 0x808A00C0: tail1_hip_model
- 0x808A0118: tail2_hip_model
- 0x808A0168: Rfoot2_hip_model
- 0x808A01F8: Rfoot1_hip_model
- 0x808A0280: lfoot1_hip_model
- 0x808A0308: Lfoot2_hip_model
- 0x808A0398: base_hip_model
- 0x808A0418: cKF_je_r_hip_1_tbl
- 0x808A0550: cKF_bs_r_hip_1
- 0x808A0560: hip_1_pal
- 0x808A0580: hip_1_eye1_TA_tex_txt
- 0x808A0680: hip_1_eye2_TA_tex_txt
- 0x808A0780: hip_1_eye3_TA_tex_txt
- 0x808A0880: hip_1_eye4_TA_tex_txt
- 0x808A0980: hip_1_eye5_TA_tex_txt
- 0x808A0A80: hip_1_eye6_TA_tex_txt
- 0x808A0B80: hip_1_eye7_TA_tex_txt
- 0x808A0C80: hip_1_eye8_TA_tex_txt
- 0x808A0D80: hip_1_tmem_txt
- 0x808A1280: hip_2_pal
- 0x808A12A0: hip_2_eye1_TA_tex_txt
- 0x808A13A0: hip_2_eye2_TA_tex_txt
- 0x808A14A0: hip_2_eye3_TA_tex_txt
- 0x808A15A0: hip_2_eye4_TA_tex_txt
- 0x808A16A0: hip_2_eye5_TA_tex_txt
- 0x808A17A0: hip_2_eye6_TA_tex_txt
- 0x808A18A0: hip_2_eye7_TA_tex_txt
- 0x808A19A0: hip_2_eye8_TA_tex_txt
- 0x808A1AA0: hip_2_tmem_txt
- 0x808A1FA0: hip_3_pal
- 0x808A1FC0: hip_3_eye1_TA_tex_txt
- 0x808A20C0: hip_3_eye2_TA_tex_txt
- 0x808A21C0: hip_3_eye3_TA_tex_txt
- 0x808A22C0: hip_3_eye4_TA_tex_txt
- 0x808A23C0: hip_3_eye5_TA_tex_txt
- 0x808A24C0: hip_3_eye6_TA_tex_txt
- 0x808A25C0: hip_3_eye7_TA_tex_txt
- 0x808A26C0: hip_3_eye8_TA_tex_txt
- 0x808A27C0: hip_3_tmem_txt
- 0x808A2CC0: hip_4_pal
- 0x808A2CE0: hip_4_eye1_TA_tex_txt
- 0x808A2DE0: hip_4_eye2_TA_tex_txt
- 0x808A2EE0: hip_4_eye3_TA_tex_txt
- 0x808A2FE0: hip_4_eye4_TA_tex_txt
- 0x808A30E0: hip_4_eye5_TA_tex_txt
- 0x808A31E0: hip_4_eye6_TA_tex_txt
- 0x808A32E0: hip_4_eye7_TA_tex_txt
- 0x808A33E0: hip_4_eye8_TA_tex_txt
- 0x808A34E0: hip_4_tmem_txt
- 0x808A39E0: hip_5_pal
- 0x808A3A00: hip_5_eye1_TA_tex_txt
- 0x808A3B00: hip_5_eye2_TA_tex_txt
- 0x808A3C00: hip_5_eye3_TA_tex_txt
- 0x808A3D00: hip_5_eye4_TA_tex_txt
- 0x808A3E00: hip_5_eye5_TA_tex_txt
- 0x808A3F00: hip_5_eye6_TA_tex_txt
- 0x808A4000: hip_5_eye7_TA_tex_txt
- 0x808A4100: hip_5_eye8_TA_tex_txt
- 0x808A4200: hip_5_tmem_txt
- 0x808A4700: hip_6_pal
- 0x808A4720: hip_6_eye1_TA_tex_txt
- 0x808A4820: hip_6_eye2_TA_tex_txt
- 0x808A4920: hip_6_eye3_TA_tex_txt
- 0x808A4A20: hip_6_eye4_TA_tex_txt
- 0x808A4B20: hip_6_eye5_TA_tex_txt
- 0x808A4C20: hip_6_eye6_TA_tex_txt
- 0x808A4D20: hip_6_eye7_TA_tex_txt
- 0x808A4E20: hip_6_eye8_TA_tex_txt
- 0x808A4F20: hip_6_tmem_txt
- 0x808A5420: hip_7_pal
- 0x808A5440: hip_7_eye1_TA_tex_txt
- 0x808A5540: hip_7_eye2_TA_tex_txt
- 0x808A5640: hip_7_eye3_TA_tex_txt
- 0x808A5740: hip_7_eye4_TA_tex_txt
- 0x808A5840: hip_7_eye5_TA_tex_txt
- 0x808A5940: hip_7_eye6_TA_tex_txt
- 0x808A5A40: hip_7_eye7_TA_tex_txt
- 0x808A5B40: hip_7_eye8_TA_tex_txt
- 0x808A5C40: hip_7_tmem_txt
- 0x808A6140: hrs_1_v
- 0x808A7A70: head_hrs_model
- 0x808A7CA0: mouth_hrs_model
- 0x808A7D30: Rarm2_hrs_model
- 0x808A7DB8: Rarm1_hrs_model
- 0x808A7E30: Larm2_hrs_model
- 0x808A7EB8: Larm1_hrs_model
- 0x808A7F30: chest_hrs_model
- 0x808A7FE8: tail1_hrs_model
- 0x808A8048: tail2_hrs_model
- 0x808A80D8: Rfoot2_hrs_model
- 0x808A8158: Rfoot1_hrs_model
- 0x808A8218: Lfoot2_hrs_model
- 0x808A8298: Lfoot1_hrs_model
- 0x808A8358: base_hrs_model
- 0x808A83C8: cKF_je_r_hrs_1_tbl
- 0x808A8500: cKF_bs_r_hrs_1
- 0x808A8520: hrs_1_pal
- 0x808A8540: hrs_1_eye1_TA_tex_txt
- 0x808A8640: hrs_1_eye2_TA_tex_txt
- 0x808A8740: hrs_1_eye3_TA_tex_txt
- 0x808A8840: hrs_1_eye4_TA_tex_txt
- 0x808A8940: hrs_1_eye5_TA_tex_txt
- 0x808A8A40: hrs_1_eye6_TA_tex_txt
- 0x808A8B40: hrs_1_eye7_TA_tex_txt
- 0x808A8C40: hrs_1_eye8_TA_tex_txt
- 0x808A8D40: hrs_1_tmem_txt
- 0x808A92C0: hrs_2_pal
- 0x808A92E0: hrs_2_eye1_TA_tex_txt
- 0x808A93E0: hrs_2_eye2_TA_tex_txt
- 0x808A94E0: hrs_2_eye3_TA_tex_txt
- 0x808A95E0: hrs_2_eye4_TA_tex_txt
- 0x808A96E0: hrs_2_eye5_TA_tex_txt
- 0x808A97E0: hrs_2_eye6_TA_tex_txt
- 0x808A98E0: hrs_2_eye7_TA_tex_txt
- 0x808A99E0: hrs_2_eye8_TA_tex_txt
- 0x808A9AE0: hrs_2_tmem_txt
- 0x808AA060: hrs_3_pal
- 0x808AA080: hrs_3_eye1_TA_tex_txt
- 0x808AA180: hrs_3_eye2_TA_tex_txt
- 0x808AA280: hrs_3_eye3_TA_tex_txt
- 0x808AA380: hrs_3_eye4_TA_tex_txt
- 0x808AA480: hrs_3_eye5_TA_tex_txt
- 0x808AA580: hrs_3_eye6_TA_tex_txt
- 0x808AA680: hrs_3_eye7_TA_tex_txt
- 0x808AA780: hrs_3_eye8_TA_tex_txt
- 0x808AA880: hrs_3_tmem_txt
- 0x808AAE00: hrs_4_pal
- 0x808AAE20: hrs_4_eye1_TA_tex_txt
- 0x808AAF20: hrs_4_eye2_TA_tex_txt
- 0x808AB020: hrs_4_eye3_TA_tex_txt
- 0x808AB120: hrs_4_eye4_TA_tex_txt
- 0x808AB220: hrs_4_eye5_TA_tex_txt
- 0x808AB320: hrs_4_eye6_TA_tex_txt
- 0x808AB420: hrs_4_eye7_TA_tex_txt
- 0x808AB520: hrs_4_eye8_TA_tex_txt
- 0x808AB620: hrs_4_tmem_txt
- 0x808ABBA0: hrs_5_pal
- 0x808ABBC0: hrs_5_eye1_TA_tex_txt
- 0x808ABCC0: hrs_5_eye2_TA_tex_txt
- 0x808ABDC0: hrs_5_eye3_TA_tex_txt
- 0x808ABEC0: hrs_5_eye4_TA_tex_txt
- 0x808ABFC0: hrs_5_eye5_TA_tex_txt
- 0x808AC0C0: hrs_5_eye6_TA_tex_txt
- 0x808AC1C0: hrs_5_eye7_TA_tex_txt
- 0x808AC2C0: hrs_5_eye8_TA_tex_txt
- 0x808AC3C0: hrs_5_tmem_txt
- 0x808AC940: hrs_6_pal
- 0x808AC960: hrs_6_eye1_TA_tex_txt
- 0x808ACA60: hrs_6_eye2_TA_tex_txt
- 0x808ACB60: hrs_6_eye3_TA_tex_txt
- 0x808ACC60: hrs_6_eye4_TA_tex_txt
- 0x808ACD60: hrs_6_eye5_TA_tex_txt
- 0x808ACE60: hrs_6_eye6_TA_tex_txt
- 0x808ACF60: hrs_6_eye7_TA_tex_txt
- 0x808AD060: hrs_6_eye8_TA_tex_txt
- 0x808AD160: hrs_6_tmem_txt
- 0x808AD6E0: hrs_7_pal
- 0x808AD700: hrs_7_eye1_TA_tex_txt
- 0x808AD800: hrs_7_eye2_TA_tex_txt
- 0x808AD900: hrs_7_eye3_TA_tex_txt
- 0x808ADA00: hrs_7_eye4_TA_tex_txt
- 0x808ADB00: hrs_7_eye5_TA_tex_txt
- 0x808ADC00: hrs_7_eye6_TA_tex_txt
- 0x808ADD00: hrs_7_eye7_TA_tex_txt
- 0x808ADE00: hrs_7_eye8_TA_tex_txt
- 0x808ADF00: hrs_7_tmem_txt
- 0x808AE480: hrs_8_pal
- 0x808AE4A0: hrs_8_eye1_TA_tex_txt
- 0x808AE5A0: hrs_8_eye2_TA_tex_txt
- 0x808AE6A0: hrs_8_eye3_TA_tex_txt
- 0x808AE7A0: hrs_8_eye4_TA_tex_txt
- 0x808AE8A0: hrs_8_eye5_TA_tex_txt
- 0x808AE9A0: hrs_8_eye6_TA_tex_txt
- 0x808AEAA0: hrs_8_eye7_TA_tex_txt
- 0x808AEBA0: hrs_8_eye8_TA_tex_txt
- 0x808AECA0: hrs_8_tmem_txt
- 0x808AF220: act_m_house_goki_pal
- 0x808AF240: act_m_house_goki
- 0x808AF440: act_m_house_goki_v
- 0x808AF500: act_m_house_goki1T_model
- 0x808AF560: act_m_house_goki2T_model
- 0x808AF940: act_m_abura1_1T_model
- 0x808AF9A0: act_m_abura1_2T_model
- 0x808AFA00: act_m_abura2_2T_model
- 0x808AFD20: act_m_akiakane1_1T_model
- 0x808AFD80: act_m_akiakane1_2T_model
- 0x808AFDE0: act_m_akiakane2_2T_model
- 0x808B00C0: act_m_amenbo1T_model
- 0x808B0120: act_m_amenbo2T_model
- 0x808B0300: act_m_ariT_model
- 0x808B05B0: act_m_dango1T_model
- 0x808B0610: act_m_dango2T_model
- 0x808B0960: act_m_danna1T_model
- 0x808B09C0: act_m_danna2T_model
- 0x808B0D20: act_m_genji2_d_model
- 0x808B0D78: act_m_genji2_c_model
- 0x808B0DD0: act_m_genji2_b_model
- 0x808B0E28: act_m_genji2_a_model
- 0x808B1140: act_m_ginyanma1_1T_model
- 0x808B11A0: act_m_ginyanma1_2T_model
- 0x808B1200: act_m_ginyanma2_2T_model
- 0x808B1540: act_m_gomadara1T_model
- 0x808B15A0: act_m_gomadara2T_model
- 0x808B1980: act_m_higurashi1_1T_model
- 0x808B19E0: act_m_higurashi1_2T_model
- 0x808B1A40: act_m_higurashi2_2T_model
- 0x808B1D80: act_m_hirata1T_model
- 0x808B1DE0: act_m_hirata2T_model
- 0x808B1E40: act_m_hitodama_h2_txt
- 0x808B2040: act_m_hitodama_h1_txt
- 0x808B2240: act_m_hitodama_v
- 0x808B22C0: act_m_hitodama_b_model
- 0x808B2310: act_m_hitodama_a_model
- 0x808B2680: act_m_ka1T_model
- 0x808B26E0: act_m_ka2_1T_model
- 0x808B2740: act_m_ka2_2T_model
- 0x808B2AA0: act_m_kabuto1T_model
- 0x808B2B00: act_m_kabuto2T_model
- 0x808B2EA0: act_m_kamakiri1T_model
- 0x808B2F08: act_m_kamakiri2_2T_model
- 0x808B3240: act_m_kanabun1T_model
- 0x808B32A0: act_m_kanabun2T_model
- 0x808B3480: act_m_keraT_model
- 0x808B37C0: act_m_kiageha1T_model
- 0x808B3820: act_m_kiageha2T_model
- 0x808B3BD0: act_m_kirigirisu1T_model
- 0x808B3C38: act_m_kirigirisu2_2T_model
- 0x808B3EE0: act_m_koorogi1T_model
- 0x808B42C0: act_m_hachi1_1T_model
- 0x808B4320: act_m_hachi1_2T_model
- 0x808B4380: act_m_hachi2_2T_model
- 0x808B4680: act_m_kumo1_1T_model
- 0x808B46E0: act_m_kumo1_2T_model
- 0x808B4740: act_m_kumo2T_model
- 0x808B4AC0: act_m_maimaiT_model
- 0x808B4D80: act_m_matumushi1T_model
- 0x808B5160: act_m_minmin1_1T_model
- 0x808B51C0: act_m_minmin1_2T_model
- 0x808B5220: act_m_minmin2_2T_model
- 0x808B55D0: act_m_mino1_1T_model
- 0x808B5630: act_m_mino1_2T_model
- 0x808B5690: act_m_mino2T_model
- 0x808B59E0: act_m_miyama1T_model
- 0x808B5A40: act_m_miyama2T_model
- 0x808B5C00: act_m_monki1T_model
- 0x808B5C60: act_m_monki2T_model
- 0x808B5E20: act_m_monshiro1T_model
- 0x808B5E80: act_m_monshiro2T_model
- 0x808B61D0: act_m_nanahoshi1T_model
- 0x808B6240: act_m_nanahoshi2T_model
- 0x808B65A0: act_m_nokogiri1T_model
- 0x808B6600: act_m_nokogiri2T_model
- 0x808B6940: act_m_ohmurasaki1T_model
- 0x808B69A0: act_m_ohmurasaki2T_model
- 0x808B6CE0: act_m_okuwa1T_model
- 0x808B6D40: act_m_okuwa2T_model
- 0x808B7060: act_m_oniyanma1_1T_model
- 0x808B70C0: act_m_oniyanma1_2T_model
- 0x808B7120: act_m_oniyanma2_2T_model
- 0x808B7440: act_m_shiokara1_1T_model
- 0x808B74A0: act_m_shiokara1_2T_model
- 0x808B7500: act_m_shiokara2_2T_model
- 0x808B7820: act_m_suzumushi1T_model
- 0x808B7880: act_m_suzumushi2_2T_model
- 0x808B7C10: act_m_syouryou1T_model
- 0x808B7C78: act_m_syouryou2_2T_model
- 0x808B7FC0: act_m_tamamushi1T_model
- 0x808B8020: act_m_tamamushi2T_model
- 0x808B8370: act_m_tentou1T_model
- 0x808B83E0: act_m_tentou2T_model
- 0x808B87A0: act_m_tonosama1T_model
- 0x808B8808: act_m_tonosama2_2T_model
- 0x808B8BE0: act_m_tukutuku1_1T_model
- 0x808B8C40: act_m_tukutuku1_2T_model
- 0x808B8CA0: act_m_tukutuku2_2T_model
- 0x808B8D00: plj_1_v
- 0x808BA3A0: head_plj_model
- 0x808BA4F0: Rarm2_plj_model
- 0x808BA570: Rarm1_plj_model
- 0x808BA5F8: Larm2_plj_model
- 0x808BA678: Larm1_plj_model
- 0x808BA700: chest_plj_model
- 0x808BA840: tail1_plj_model
- 0x808BA898: tail2_plj_model
- 0x808BA938: Rfoot2_plj_model
- 0x808BA9C0: Rfoot1_plj_model
- 0x808BAA40: Lfoot2_plj_model
- 0x808BAAC8: Lfoot1_plj_model
- 0x808BAB48: base_plj_model
- 0x808BABC0: cKF_je_r_plj_1_tbl
- 0x808BACF8: cKF_bs_r_plj_1
- 0x808BAD00: plj_1_pal
- 0x808BAD20: plj_1_eye1_TA_tex_txt
- 0x808BAE20: plj_1_eye2_TA_tex_txt
- 0x808BAF20: plj_1_eye3_TA_tex_txt
- 0x808BB020: plj_1_eye4_TA_tex_txt
- 0x808BB120: plj_1_eye5_TA_tex_txt
- 0x808BB220: plj_1_eye6_TA_tex_txt
- 0x808BB320: plj_1_eye7_TA_tex_txt
- 0x808BB420: plj_1_eye8_TA_tex_txt
- 0x808BB520: plj_1_mouth1_TA_tex_txt
- 0x808BB620: plj_1_mouth2_TA_tex_txt
- 0x808BB720: plj_1_mouth3_TA_tex_txt
- 0x808BB820: plj_1_mouth4_TA_tex_txt
- 0x808BB920: plj_1_mouth5_TA_tex_txt
- 0x808BBA20: plj_1_mouth6_TA_tex_txt
- 0x808BBB20: plj_1_tmem_txt
- 0x808BC1A0: xsq_1_v
- 0x808BD890: head_xsq_model
- 0x808BDA28: Rarm2_xsq_model
- 0x808BDAB0: Rarm1_xsq_model
- 0x808BDB28: Larm2_xsq_model
- 0x808BDBB0: Larm1_xsq_model
- 0x808BDC28: chest_xsq_model
- 0x808BDCD0: tail1_xsq_model
- 0x808BDD40: tail2_xsq_model
- 0x808BDE10: Rfoot2_xsq_model
- 0x808BDE90: Rfoot1_xsq_model
- 0x808BDF50: Lfoot2_xsq_model
- 0x808BDFD0: Lfoot1_xsq_model
- 0x808BE090: base_xsq_model
- 0x808BE100: cKF_je_r_xsq_1_tbl
- 0x808BE238: cKF_bs_r_xsq_1
- 0x808BE240: xsq_1_pal
- 0x808BE260: xsq_1_eye1_TA_tex_txt
- 0x808BE360: xsq_1_eye2_TA_tex_txt
- 0x808BE460: xsq_1_eye3_TA_tex_txt
- 0x808BE560: xsq_1_eye4_TA_tex_txt
- 0x808BE660: xsq_1_eye5_TA_tex_txt
- 0x808BE760: xsq_1_eye6_TA_tex_txt
- 0x808BE860: xsq_1_eye7_TA_tex_txt
- 0x808BE960: xsq_1_eye8_TA_tex_txt
- 0x808BEA60: xsq_1_mouth1_TA_tex_txt
- 0x808BEB60: xsq_1_mouth2_TA_tex_txt
- 0x808BEC60: xsq_1_mouth3_TA_tex_txt
- 0x808BED60: xsq_1_mouth4_TA_tex_txt
- 0x808BEE60: xsq_1_mouth5_TA_tex_txt
- 0x808BEF60: xsq_1_mouth6_TA_tex_txt
- 0x808BF060: xsq_1_tmem_txt
- 0x808BF660: itemName_paper
- 0x808C0660: itemName_money
- 0x808C06A0: itemName_tool
- 0x808C0C60: itemName_fish
- 0x808C0EE0: itemName_cloth
- 0x808C1ED0: itemName_etc
- 0x808C21E0: itemName_carpet
- 0x808C2610: itemName_wall
- 0x808C2A40: itemName_fruit
- 0x808C2AC0: itemName_plant
- 0x808C2B70: itemName_minidisk
- 0x808C2EE0: itemName_dummy
- 0x808C2FE0: itemName_ticket
- 0x808C35E0: itemName_insect
- 0x808C38B0: itemName_hukubukuro
- 0x808C38D0: itemName_kabu
- 0x808C3910: ftrName_table
- 0x808C7910: ftrName2_table
- 0x808C8830: kamakura_info
- 0x808C8868: KAMAKURA_player_data
- 0x808C8878: KAMAKURA_ctrl_actor_data
- 0x808C8890: KAMAKURA_door_data
- 0x808C88A8: boa_1_v
- 0x808CA4F8: head_boa_model
- 0x808CA6D0: mouth_boa_model
- 0x808CA758: Rarm2_boa_model
- 0x808CA7E0: Rarm1_boa_model
- 0x808CA858: Larm2_boa_model
- 0x808CA8E0: Larm1_boa_model
- 0x808CA958: chest_boa_model
- 0x808CAB50: Rfoot2_boa_model
- 0x808CABF8: Rfoot1_boa_model
- 0x808CAC78: Lfoot2_boa_model
- 0x808CAD10: Lfoot1_boa_model
- 0x808CAD90: base_boa_model
- 0x808CAE08: cKF_je_r_boa_1_tbl
- 0x808CAF40: cKF_bs_r_boa_1
- 0x808CAF60: boa_1_pal
- 0x808CAF80: boa_1_eye1_TA_tex_txt
- 0x808CB080: boa_1_eye2_TA_tex_txt
- 0x808CB180: boa_1_eye3_TA_tex_txt
- 0x808CB280: boa_1_eye4_TA_tex_txt
- 0x808CB380: boa_1_eye5_TA_tex_txt
- 0x808CB480: boa_1_eye6_TA_tex_txt
- 0x808CB580: boa_1_eye7_TA_tex_txt
- 0x808CB680: boa_1_eye8_TA_tex_txt
- 0x808CB780: boa_1_tmem_txt
- 0x808CBD40: kgr_1_v
- 0x808CD830: head_kgr_model
- 0x808CD990: mouth_kgr_model
- 0x808CDA10: Rarm2_kgr_model
- 0x808CDA98: Rarm1_kgr_model
- 0x808CDB10: Larm2_kgr_model
- 0x808CDB98: Larm1_kgr_model
- 0x808CDC10: chest_kgr_model
- 0x808CDD98: tail1_kgr_model
- 0x808CDE20: Rfoot3_kgr_model
- 0x808CDEA0: Rfoot2_kgr_model
- 0x808CDF20: Rfoot1_kgr_model
- 0x808CDFE8: Lfoot3_kgr_model
- 0x808CE068: Lfoot2_kgr_model
- 0x808CE0E8: Lfoot1_kgr_model
- 0x808CE1B0: base_kgr_model
- 0x808CE288: cKF_je_r_kgr_1_tbl
- 0x808CE3C0: cKF_bs_r_kgr_1
- 0x808CE3E0: kgr_1_pal
- 0x808CE400: kgr_1_eye1_TA_tex_txt
- 0x808CE500: kgr_1_eye2_TA_tex_txt
- 0x808CE600: kgr_1_eye3_TA_tex_txt
- 0x808CE700: kgr_1_eye4_TA_tex_txt
- 0x808CE800: kgr_1_eye5_TA_tex_txt
- 0x808CE900: kgr_1_eye6_TA_tex_txt
- 0x808CEA00: kgr_1_eye7_TA_tex_txt
- 0x808CEB00: kgr_1_eye8_TA_tex_txt
- 0x808CEC00: kgr_1_tmem_txt
- 0x808CF040: kgr_2_pal
- 0x808CF060: kgr_2_eye1_TA_tex_txt
- 0x808CF160: kgr_2_eye2_TA_tex_txt
- 0x808CF260: kgr_2_eye3_TA_tex_txt
- 0x808CF360: kgr_2_eye4_TA_tex_txt
- 0x808CF460: kgr_2_eye5_TA_tex_txt
- 0x808CF560: kgr_2_eye6_TA_tex_txt
- 0x808CF660: kgr_2_eye7_TA_tex_txt
- 0x808CF760: kgr_2_eye8_TA_tex_txt
- 0x808CF860: kgr_2_tmem_txt
- 0x808CFCA0: kgr_3_pal
- 0x808CFCC0: kgr_3_eye1_TA_tex_txt
- 0x808CFDC0: kgr_3_eye2_TA_tex_txt
- 0x808CFEC0: kgr_3_eye3_TA_tex_txt
- 0x808CFFC0: kgr_3_eye4_TA_tex_txt
- 0x808D00C0: kgr_3_eye5_TA_tex_txt
- 0x808D01C0: kgr_3_eye6_TA_tex_txt
- 0x808D02C0: kgr_3_eye7_TA_tex_txt
- 0x808D03C0: kgr_3_eye8_TA_tex_txt
- 0x808D04C0: kgr_3_tmem_txt
- 0x808D0900: kgr_4_pal
- 0x808D0920: kgr_4_eye1_TA_tex_txt
- 0x808D0A20: kgr_4_eye2_TA_tex_txt
- 0x808D0B20: kgr_4_eye3_TA_tex_txt
- 0x808D0C20: kgr_4_eye4_TA_tex_txt
- 0x808D0D20: kgr_4_eye5_TA_tex_txt
- 0x808D0E20: kgr_4_eye6_TA_tex_txt
- 0x808D0F20: kgr_4_eye7_TA_tex_txt
- 0x808D1020: kgr_4_eye8_TA_tex_txt
- 0x808D1120: kgr_4_tmem_txt
- 0x808D1560: kgr_5_pal
- 0x808D1580: kgr_5_eye1_TA_tex_txt
- 0x808D1680: kgr_5_eye2_TA_tex_txt
- 0x808D1780: kgr_5_eye3_TA_tex_txt
- 0x808D1880: kgr_5_eye4_TA_tex_txt
- 0x808D1980: kgr_5_eye5_TA_tex_txt
- 0x808D1A80: kgr_5_eye6_TA_tex_txt
- 0x808D1B80: kgr_5_eye7_TA_tex_txt
- 0x808D1C80: kgr_5_eye8_TA_tex_txt
- 0x808D1D80: kgr_5_tmem_txt
- 0x808D21C0: kgr_6_pal
- 0x808D21E0: kgr_6_eye1_TA_tex_txt
- 0x808D22E0: kgr_6_eye2_TA_tex_txt
- 0x808D23E0: kgr_6_eye3_TA_tex_txt
- 0x808D24E0: kgr_6_eye4_TA_tex_txt
- 0x808D25E0: kgr_6_eye5_TA_tex_txt
- 0x808D26E0: kgr_6_eye6_TA_tex_txt
- 0x808D27E0: kgr_6_eye7_TA_tex_txt
- 0x808D28E0: kgr_6_eye8_TA_tex_txt
- 0x808D29E0: kgr_6_tmem_txt
- 0x808D2E20: fob_1_v
- 0x808D4850: head_fob_model
- 0x808D4A08: mouth_fob_model
- 0x808D4AA8: Rarm2_fob_model
- 0x808D4B38: Rarm1_fob_model
- 0x808D4BD8: Larm2_fob_model
- 0x808D4C68: Larm1_fob_model
- 0x808D4CF8: chest_fob_model
- 0x808D4E28: tail1_fob_model
- 0x808D4EA8: tail2_fob_model
- 0x808D4F68: Rfoot2_fob_model
- 0x808D4FF0: Rfoot1_fob_model
- 0x808D5048: Lfoot2_fob_model
- 0x808D50D0: Lfoot1_fob_model
- 0x808D5128: base_fob_model
- 0x808D5220: cKF_je_r_fob_1_tbl
- 0x808D5358: cKF_bs_r_fob_1
- 0x808D5360: fob_1_pal
- 0x808D5380: fob_1_eye1_TA_tex_txt
- 0x808D5480: fob_1_eye2_TA_tex_txt
- 0x808D5580: fob_1_eye3_TA_tex_txt
- 0x808D5680: fob_1_eye4_TA_tex_txt
- 0x808D5780: fob_1_eye5_TA_tex_txt
- 0x808D5880: fob_1_eye6_TA_tex_txt
- 0x808D5980: fob_1_eye7_TA_tex_txt
- 0x808D5A80: fob_1_eye8_TA_tex_txt
- 0x808D5B80: fob_1_tmem_txt
- 0x808D62C0: kal_1_v
- 0x808D7950: head_kal_model
- 0x808D7B00: Rarm2_kal_model
- 0x808D7B88: Rarm1_kal_model
- 0x808D7C00: Larm2_kal_model
- 0x808D7C88: Larm1_kal_model
- 0x808D7D00: chest_kal_model
- 0x808D7DA8: Rfoot2_kal_model
- 0x808D7E28: Rfoot1_kal_model
- 0x808D7EE8: Lfoot2_kal_model
- 0x808D7F68: Lfoot1_kal_model
- 0x808D8028: base_kal_model
- 0x808D8098: cKF_je_r_kal_1_tbl
- 0x808D81D0: cKF_bs_r_kal_1
- 0x808D81E0: kal_1_pal
- 0x808D8200: kal_1_eye1_TA_tex_txt
- 0x808D8300: kal_1_eye2_TA_tex_txt
- 0x808D8400: kal_1_eye3_TA_tex_txt
- 0x808D8500: kal_1_eye4_TA_tex_txt
- 0x808D8600: kal_1_eye5_TA_tex_txt
- 0x808D8700: kal_1_eye6_TA_tex_txt
- 0x808D8800: kal_1_eye7_TA_tex_txt
- 0x808D8900: kal_1_eye8_TA_tex_txt
- 0x808D8A00: kal_1_mouth1_TA_tex_txt
- 0x808D8B00: kal_1_mouth2_TA_tex_txt
- 0x808D8C00: kal_1_mouth3_TA_tex_txt
- 0x808D8D00: kal_1_mouth4_TA_tex_txt
- 0x808D8E00: kal_1_mouth5_TA_tex_txt
- 0x808D8F00: kal_1_mouth6_TA_tex_txt
- 0x808D9000: kal_1_tmem_txt
- 0x808D9480: kal_2_pal
- 0x808D94A0: kal_2_eye1_TA_tex_txt
- 0x808D95A0: kal_2_eye2_TA_tex_txt
- 0x808D96A0: kal_2_eye3_TA_tex_txt
- 0x808D97A0: kal_2_eye4_TA_tex_txt
- 0x808D98A0: kal_2_eye5_TA_tex_txt
- 0x808D99A0: kal_2_eye6_TA_tex_txt
- 0x808D9AA0: kal_2_eye7_TA_tex_txt
- 0x808D9BA0: kal_2_eye8_TA_tex_txt
- 0x808D9CA0: kal_2_mouth1_TA_tex_txt
- 0x808D9DA0: kal_2_mouth2_TA_tex_txt
- 0x808D9EA0: kal_2_mouth3_TA_tex_txt
- 0x808D9FA0: kal_2_mouth4_TA_tex_txt
- 0x808DA0A0: kal_2_mouth5_TA_tex_txt
- 0x808DA1A0: kal_2_mouth6_TA_tex_txt
- 0x808DA2A0: kal_2_tmem_txt
- 0x808DA720: kal_3_pal
- 0x808DA740: kal_3_eye1_TA_tex_txt
- 0x808DA840: kal_3_eye2_TA_tex_txt
- 0x808DA940: kal_3_eye3_TA_tex_txt
- 0x808DAA40: kal_3_eye4_TA_tex_txt
- 0x808DAB40: kal_3_eye5_TA_tex_txt
- 0x808DAC40: kal_3_eye6_TA_tex_txt
- 0x808DAD40: kal_3_eye7_TA_tex_txt
- 0x808DAE40: kal_3_eye8_TA_tex_txt
- 0x808DAF40: kal_3_mouth1_TA_tex_txt
- 0x808DB040: kal_3_mouth2_TA_tex_txt
- 0x808DB140: kal_3_mouth3_TA_tex_txt
- 0x808DB240: kal_3_mouth4_TA_tex_txt
- 0x808DB340: kal_3_mouth5_TA_tex_txt
- 0x808DB440: kal_3_mouth6_TA_tex_txt
- 0x808DB540: kal_3_tmem_txt
- 0x808DB9C0: kal_4_pal
- 0x808DB9E0: kal_4_eye1_TA_tex_txt
- 0x808DBAE0: kal_4_eye2_TA_tex_txt
- 0x808DBBE0: kal_4_eye3_TA_tex_txt
- 0x808DBCE0: kal_4_eye4_TA_tex_txt
- 0x808DBDE0: kal_4_eye5_TA_tex_txt
- 0x808DBEE0: kal_4_eye6_TA_tex_txt
- 0x808DBFE0: kal_4_eye7_TA_tex_txt
- 0x808DC0E0: kal_4_eye8_TA_tex_txt
- 0x808DC1E0: kal_4_mouth1_TA_tex_txt
- 0x808DC2E0: kal_4_mouth2_TA_tex_txt
- 0x808DC3E0: kal_4_mouth3_TA_tex_txt
- 0x808DC4E0: kal_4_mouth4_TA_tex_txt
- 0x808DC5E0: kal_4_mouth5_TA_tex_txt
- 0x808DC6E0: kal_4_mouth6_TA_tex_txt
- 0x808DC7E0: kal_4_tmem_txt
- 0x808DCC60: kal_5_pal
- 0x808DCC80: kal_5_eye1_TA_tex_txt
- 0x808DCD80: kal_5_eye2_TA_tex_txt
- 0x808DCE80: kal_5_eye3_TA_tex_txt
- 0x808DCF80: kal_5_eye4_TA_tex_txt
- 0x808DD080: kal_5_eye5_TA_tex_txt
- 0x808DD180: kal_5_eye6_TA_tex_txt
- 0x808DD280: kal_5_eye7_TA_tex_txt
- 0x808DD380: kal_5_eye8_TA_tex_txt
- 0x808DD480: kal_5_mouth1_TA_tex_txt
- 0x808DD580: kal_5_mouth2_TA_tex_txt
- 0x808DD680: kal_5_mouth3_TA_tex_txt
- 0x808DD780: kal_5_mouth4_TA_tex_txt
- 0x808DD880: kal_5_mouth5_TA_tex_txt
- 0x808DD980: kal_5_mouth6_TA_tex_txt
- 0x808DDA80: kal_5_tmem_txt
- 0x808DDF00: kal_6_pal
- 0x808DDF20: kal_6_eye1_TA_tex_txt
- 0x808DE020: kal_6_eye2_TA_tex_txt
- 0x808DE120: kal_6_eye3_TA_tex_txt
- 0x808DE220: kal_6_eye4_TA_tex_txt
- 0x808DE320: kal_6_eye5_TA_tex_txt
- 0x808DE420: kal_6_eye6_TA_tex_txt
- 0x808DE520: kal_6_eye7_TA_tex_txt
- 0x808DE620: kal_6_eye8_TA_tex_txt
- 0x808DE720: kal_6_mouth1_TA_tex_txt
- 0x808DE820: kal_6_mouth2_TA_tex_txt
- 0x808DE920: kal_6_mouth3_TA_tex_txt
- 0x808DEA20: kal_6_mouth4_TA_tex_txt
- 0x808DEB20: kal_6_mouth5_TA_tex_txt
- 0x808DEC20: kal_6_mouth6_TA_tex_txt
- 0x808DED20: kal_6_tmem_txt
- 0x808DF1A0: lighthouse_info
- 0x808DF1D8: LIGHTHOUSE_player_data
- 0x808DF1E8: LIGHTHOUSE_ctrl_actor_data
- 0x808DF200: LIGHTHOUSE_door_data
- 0x808DF220: obj_otiba01_pal
- 0x808DF240: ef_otiba_0_tex
- 0x808DF2C0: ef_otiba01_setmode
- 0x808DF300: ef_otiba01_00_v
- 0x808DF350: ef_otiba01_00_modelT
- 0x808DF380: ef_otiba_1_tex
- 0x808DF400: ef_otiba01_01_v
- 0x808DF450: ef_otiba01_01_modelT
- 0x808DF480: ef_otiba_2_tex
- 0x808DF500: ef_otiba01_02_v
- 0x808DF550: ef_otiba01_02_modelT
- 0x808DF580: obj_toudai_pole_pal
- 0x808DF5A0: obj_toudai_poleA_tex_pic_ci4_pal
- 0x808DF5C0: obj_toudai_poleE_tex_txt
- 0x808DF5E0: obj_toudai_pole_kage_txt
- 0x808DF6E0: obj_toudai_poleB_tex_txt
- 0x808DF720: obj_toudai_poleC_tex_txt
- 0x808DF920: obj_toudai_poleD_tex_txt
- 0x808DF960: obj_toudai_poleA_tex_txt
- 0x808DF9A0: obj_toudai_pole_v
- 0x808E0FD0: obj_toudai_pole_kage_model
- 0x808E10E8: obj_toudai_pole_evw_model
- 0x808E1208: obj_toudai_poleE_model
- 0x808E12A8: obj_toudai_poleD1_model
- 0x808E1320: obj_toudai_poleC1_model
- 0x808E1388: obj_toudai_poleB_model
- 0x808E1400: obj_toudai_poleD2_model
- 0x808E1488: obj_toudai_poleC2_model
- 0x808E14F0: obj_toudai_poleD3_model
- 0x808E1578: obj_toudai_poleC3_model
- 0x808E15F0: cKF_ckcb_r_obj_toudai_pole_tbl
- 0x808E1600: cKF_kn_obj_toudai_pole_tbl
- 0x808E1608: cKF_c_obj_toudai_pole_tbl
- 0x808E165C: cKF_ds_obj_toudai_pole_tbl
- 0x808E1680: cKF_ba_r_obj_toudai_pole
- 0x808E1694: cKF_je_r_obj_toudai_pole_tbl
- 0x808E173C: cKF_bs_r_obj_toudai_pole
- 0x808E1760: obj_toudai_switch_pal
- 0x808E1780: obj_toudai_switch_tex_txt
- 0x808E1800: obj_toudai_switch_v
- 0x808E18B0: obj_toudai_switch_model
- 0x808E1918: cKF_ckcb_r_obj_toudai_switch_tbl
- 0x808E191C: cKF_kn_obj_toudai_switch_tbl
- 0x808E1920: cKF_c_obj_toudai_switch_tbl
- 0x808E1930: cKF_ds_obj_toudai_switch_tbl
- 0x808E1974: cKF_ba_r_obj_toudai_switch
- 0x808E1988: cKF_ckcb_r_obj_toudai_switch_off_tbl
- 0x808E198C: cKF_kn_obj_toudai_switch_off_tbl
- 0x808E1990: cKF_c_obj_toudai_switch_off_tbl
- 0x808E19A0: cKF_ds_obj_toudai_switch_off_tbl
- 0x808E19D8: cKF_ba_r_obj_toudai_switch_off
- 0x808E19EC: cKF_je_r_obj_toudai_switch_tbl
- 0x808E1A04: cKF_bs_r_obj_toudai_switch
- 0x808E1A10: lon_1_v
- 0x808E3530: head_lon_model
- 0x808E37B0: Rarm2_lon_model
- 0x808E3838: Rarm1_lon_model
- 0x808E38B0: Larm2_lon_model
- 0x808E3938: Larm1_lon_model
- 0x808E39B0: chest_lon_model
- 0x808E3A58: tail1_lon_model
- 0x808E3AB8: tail2_lon_model
- 0x808E3B48: Rfoot2_lon_model
- 0x808E3BC8: Rfoot1_lon_model
- 0x808E3C88: Lfoot2_lon_model
- 0x808E3D08: Lfoot1_lon_model
- 0x808E3DC8: base_lon_model
- 0x808E3E38: cKF_je_r_lon_1_tbl
- 0x808E3F70: cKF_bs_r_lon_1
- 0x808E3F80: lon_1_pal
- 0x808E3FA0: lon_1_eye1_TA_tex_txt
- 0x808E40A0: lon_1_eye2_TA_tex_txt
- 0x808E41A0: lon_1_eye3_TA_tex_txt
- 0x808E42A0: lon_1_eye4_TA_tex_txt
- 0x808E43A0: lon_1_eye5_TA_tex_txt
- 0x808E44A0: lon_1_eye6_TA_tex_txt
- 0x808E45A0: lon_1_eye7_TA_tex_txt
- 0x808E46A0: lon_1_eye8_TA_tex_txt
- 0x808E47A0: lon_1_mouth1_TA_tex_txt
- 0x808E48A0: lon_1_mouth2_TA_tex_txt
- 0x808E49A0: lon_1_mouth3_TA_tex_txt
- 0x808E4AA0: lon_1_mouth4_TA_tex_txt
- 0x808E4BA0: lon_1_mouth5_TA_tex_txt
- 0x808E4CA0: lon_1_mouth6_TA_tex_txt
- 0x808E4DA0: lon_1_tmem_txt
- 0x808E5260: lon_2_pal
- 0x808E5280: lon_2_eye1_TA_tex_txt
- 0x808E5380: lon_2_eye2_TA_tex_txt
- 0x808E5480: lon_2_eye3_TA_tex_txt
- 0x808E5580: lon_2_eye4_TA_tex_txt
- 0x808E5680: lon_2_eye5_TA_tex_txt
- 0x808E5780: lon_2_eye6_TA_tex_txt
- 0x808E5880: lon_2_eye7_TA_tex_txt
- 0x808E5980: lon_2_eye8_TA_tex_txt
- 0x808E5A80: lon_2_mouth1_TA_tex_txt
- 0x808E5B80: lon_2_mouth2_TA_tex_txt
- 0x808E5C80: lon_2_mouth3_TA_tex_txt
- 0x808E5D80: lon_2_mouth4_TA_tex_txt
- 0x808E5E80: lon_2_mouth5_TA_tex_txt
- 0x808E5F80: lon_2_mouth6_TA_tex_txt
- 0x808E6080: lon_2_tmem_txt
- 0x808E6540: lon_3_pal
- 0x808E6560: lon_3_eye1_TA_tex_txt
- 0x808E6660: lon_3_eye2_TA_tex_txt
- 0x808E6760: lon_3_eye3_TA_tex_txt
- 0x808E6860: lon_3_eye4_TA_tex_txt
- 0x808E6960: lon_3_eye5_TA_tex_txt
- 0x808E6A60: lon_3_eye6_TA_tex_txt
- 0x808E6B60: lon_3_eye7_TA_tex_txt
- 0x808E6C60: lon_3_eye8_TA_tex_txt
- 0x808E6D60: lon_3_mouth1_TA_tex_txt
- 0x808E6E60: lon_3_mouth2_TA_tex_txt
- 0x808E6F60: lon_3_mouth3_TA_tex_txt
- 0x808E7060: lon_3_mouth4_TA_tex_txt
- 0x808E7160: lon_3_mouth5_TA_tex_txt
- 0x808E7260: lon_3_mouth6_TA_tex_txt
- 0x808E7360: lon_3_tmem_txt
- 0x808E7820: lon_4_pal
- 0x808E7840: lon_4_eye1_TA_tex_txt
- 0x808E7940: lon_4_eye2_TA_tex_txt
- 0x808E7A40: lon_4_eye3_TA_tex_txt
- 0x808E7B40: lon_4_eye4_TA_tex_txt
- 0x808E7C40: lon_4_eye5_TA_tex_txt
- 0x808E7D40: lon_4_eye6_TA_tex_txt
- 0x808E7E40: lon_4_eye7_TA_tex_txt
- 0x808E7F40: lon_4_eye8_TA_tex_txt
- 0x808E8040: lon_4_mouth1_TA_tex_txt
- 0x808E8140: lon_4_mouth2_TA_tex_txt
- 0x808E8240: lon_4_mouth3_TA_tex_txt
- 0x808E8340: lon_4_mouth4_TA_tex_txt
- 0x808E8440: lon_4_mouth5_TA_tex_txt
- 0x808E8540: lon_4_mouth6_TA_tex_txt
- 0x808E8640: lon_4_tmem_txt
- 0x808E8B00: museum_entrance_info
- 0x808E8B48: MUSEUM_ENTRANCE_player_data
- 0x808E8B58: MUSEUM_ENTRANCE_ctrl_actor_data
- 0x808E8B70: MUSEUM_ENTRANCE_actor_data
- 0x808E8BB0: MUSEUM_ENTRANCE_object_bank
- 0x808E8BB4: MUSEUM_ENTRANCE_door_data
- 0x808E8C08: museum_fish_info
- 0x808E8C50: MUSEUM_FISH_player_data
- 0x808E8C60: MUSEUM_FISH_ctrl_actor_data
- 0x808E8C78: MUSEUM_FISH_actor_data
- 0x808E8C98: MUSEUM_FISH_object_bank
- 0x808E8C9C: MUSEUM_FISH_door_data
- 0x808E8CB0: museum_fossil_info
- 0x808E8CF0: MUSEUM_FOSSIL_player_data
- 0x808E8D00: MUSEUM_FOSSIL_ctrl_actor_data
- 0x808E8D18: MUSEUM_FOSSIL_object_bank
- 0x808E8D1C: MUSEUM_FOSSIL_door_data
- 0x808E8D30: museum_insect_info
- 0x808E8D70: MUSEUM_INSECT_player_data
- 0x808E8D80: MUSEUM_INSECT_ctrl_actor_data
- 0x808E8D98: MUSEUM_INSECT_actor_data
- 0x808E8DD8: MUSEUM_INSECT_object_bank
- 0x808E8DDC: MUSEUM_INSECT_door_data
- 0x808E8DF0: museum_picture_info
- 0x808E8E38: MUSEUM_PICTURE_player_data
- 0x808E8E48: MUSEUM_PICTURE_ctrl_actor_data
- 0x808E8E60: MUSEUM_PICTURE_actor_data
- 0x808E8E70: MUSEUM_PICTURE_object_bank
- 0x808E8E74: MUSEUM_PICTURE_door_data
- 0x808E8EA0: cKF_ckcb_r_obj_s_post_tbl
- 0x808E8EA8: cKF_c_obj_s_post_tbl
- 0x808E8ED4: cKF_ba_r_obj_s_post
- 0x808E8EE8: cKF_ckcb_r_obj_s_post_delivery1_tbl
- 0x808E8EF0: cKF_kn_obj_s_post_delivery1_tbl
- 0x808E8F04: cKF_c_obj_s_post_delivery1_tbl
- 0x808E8F1C: cKF_ds_obj_s_post_delivery1_tbl
- 0x808E8FC0: cKF_ba_r_obj_s_post_delivery1
- 0x808E8FD8: cKF_ckcb_r_obj_s_post_flag_off1_tbl
- 0x808E8FE0: cKF_kn_obj_s_post_flag_off1_tbl
- 0x808E8FF4: cKF_c_obj_s_post_flag_off1_tbl
- 0x808E900C: cKF_ds_obj_s_post_flag_off1_tbl
- 0x808E9084: cKF_ba_r_obj_s_post_flag_off1
- 0x808E9098: cKF_ckcb_r_obj_s_post_flag_on1_tbl
- 0x808E90A0: cKF_kn_obj_s_post_flag_on1_tbl
- 0x808E90B4: cKF_c_obj_s_post_flag_on1_tbl
- 0x808E90CC: cKF_ds_obj_s_post_flag_on1_tbl
- 0x808E9158: cKF_ba_r_obj_s_post_flag_on1
- 0x808E9170: obj_s_post_flag_on_wait1_evw_anime_2_tex_table
- 0x808E9178: obj_s_post_flag_on_wait1_evw_anime_2_anime_ptn
- 0x808E9198: obj_s_post_flag_on_wait1_evw_anime_2
- 0x808E91A8: obj_s_post_flag_on_wait1_evw_anime
- 0x808E91B0: cKF_ckcb_r_obj_s_post_flag_on_wait1_tbl
- 0x808E91B8: cKF_kn_obj_s_post_flag_on_wait1_tbl
- 0x808E91CC: cKF_c_obj_s_post_flag_on_wait1_tbl
- 0x808E91E4: cKF_ds_obj_s_post_flag_on_wait1_tbl
- 0x808E9250: cKF_ba_r_obj_s_post_flag_on_wait1
- 0x808E9280: obj_s_post_pal
- 0x808E92A0: obj_s_post_flag1_tex_txt
- 0x808E93A0: obj_s_post_flag2_TA_tex_txt
- 0x808E94A0: obj_s_post_flag3_TA_tex_txt
- 0x808E95A0: obj_s_post_front1_tex_txt
- 0x808E96A0: obj_s_post_front2_tex_txt
- 0x808E97A0: obj_s_post_side1_tex_txt
- 0x808E99A0: obj_s_post_leg1_tex_txt
- 0x808E9A20: obj_s_post_inside1_tex_txt
- 0x808E9AA0: obj_s_post_v
- 0x808E9DF0: obj_s_post_main_model
- 0x808E9EB8: obj_s_post_front_model
- 0x808E9F38: obj_s_post_flag_saki_model
- 0x808E9F50: obj_s_post_flag_ne_model
- 0x808E9FB0: cKF_je_r_obj_s_post_tbl
- 0x808E9FF8: cKF_bs_r_obj_s_post
- 0x808EA000: cKF_ckcb_r_obj_s_post_open1_tbl
- 0x808EA008: cKF_kn_obj_s_post_open1_tbl
- 0x808EA01C: cKF_c_obj_s_post_open1_tbl
- 0x808EA034: cKF_ds_obj_s_post_open1_tbl
- 0x808EA0B8: cKF_ba_r_obj_s_post_open1
- 0x808EA0D0: obj_w_post_flag_on_wait1_evw_anime_2_tex_table
- 0x808EA0D8: obj_w_post_flag_on_wait1_evw_anime_2_anime_ptn
- 0x808EA0F8: obj_w_post_flag_on_wait1_evw_anime_2
- 0x808EA108: obj_w_post_flag_on_wait1_evw_anime
- 0x808EA120: obj_w_post_pal
- 0x808EA140: obj_w_post_flag1_tex_txt
- 0x808EA240: obj_w_post_flag2_TA_tex_txt
- 0x808EA340: obj_w_post_flag3_TA_tex_txt
- 0x808EA440: obj_w_post_front1_tex_txt
- 0x808EA540: obj_w_post_front2_tex_txt
- 0x808EA640: obj_w_post_side1_tex_txt
- 0x808EA840: obj_w_post_leg1_tex_txt
- 0x808EA8C0: obj_w_post_inside1_tex_txt
- 0x808EA940: obj_w_post_v
- 0x808EAC90: obj_w_post_main_model
- 0x808EAD58: obj_w_post_front_model
- 0x808EADD8: obj_w_post_flag_saki_model
- 0x808EADF0: obj_w_post_flag_ne_model
- 0x808EAE50: cKF_je_r_obj_w_post_tbl
- 0x808EAE98: cKF_bs_r_obj_w_post
- 0x808EAEA0: mos_1_v
- 0x808EC2C0: head_mos_model
- 0x808EC490: mouth_mos_model
- 0x808EC570: hand_mos_model
- 0x808EC628: Rarm2_mos_model
- 0x808EC6B0: Rarm1_mos_model
- 0x808EC728: Larm2_mos_model
- 0x808EC7B0: Larm1_mos_model
- 0x808EC828: chest_mos_model
- 0x808EC900: base_mos_model
- 0x808EC988: cKF_je_r_mos_1_tbl
- 0x808ECAC0: cKF_bs_r_mos_1
- 0x808ECAE0: mos_1_pal
- 0x808ECB00: mos_1_eye1_TA_tex_txt
- 0x808ECC00: mos_1_eye2_TA_tex_txt
- 0x808ECD00: mos_1_eye3_TA_tex_txt
- 0x808ECE00: mos_1_eye4_TA_tex_txt
- 0x808ECF00: mos_1_eye5_TA_tex_txt
- 0x808ED000: mos_1_eye6_TA_tex_txt
- 0x808ED100: mos_1_eye7_TA_tex_txt
- 0x808ED200: mos_1_eye8_TA_tex_txt
- 0x808ED300: mos_1_mouth1_TA_tex_txt
- 0x808ED400: mos_1_mouth2_TA_tex_txt
- 0x808ED500: mos_1_mouth3_TA_tex_txt
- 0x808ED600: mos_1_mouth4_TA_tex_txt
- 0x808ED700: mos_1_mouth5_TA_tex_txt
- 0x808ED800: mos_1_mouth6_TA_tex_txt
- 0x808ED900: mos_1_tmem_txt
- 0x808EDF80: mol_1_v
- 0x808EF3A0: head_mol_model
- 0x808EF570: mouth_mol_model
- 0x808EF650: hand_mol_model
- 0x808EF708: Rarm2_mol_model
- 0x808EF790: Rarm1_mol_model
- 0x808EF808: Larm2_mol_model
- 0x808EF890: Larm1_mol_model
- 0x808EF908: chest_mol_model
- 0x808EF9E0: base_mol_model
- 0x808EFA68: cKF_je_r_mol_1_tbl
- 0x808EFBA0: cKF_bs_r_mol_1
- 0x808EFBC0: mol_1_pal
- 0x808EFBE0: mol_1_eye1_TA_tex_txt
- 0x808EFCE0: mol_1_eye2_TA_tex_txt
- 0x808EFDE0: mol_1_eye3_TA_tex_txt
- 0x808EFEE0: mol_1_eye4_TA_tex_txt
- 0x808EFFE0: mol_1_eye5_TA_tex_txt
- 0x808F00E0: mol_1_eye6_TA_tex_txt
- 0x808F01E0: mol_1_eye7_TA_tex_txt
- 0x808F02E0: mol_1_eye8_TA_tex_txt
- 0x808F03E0: mol_1_mouth1_TA_tex_txt
- 0x808F04E0: mol_1_mouth2_TA_tex_txt
- 0x808F05E0: mol_1_mouth3_TA_tex_txt
- 0x808F06E0: mol_1_mouth4_TA_tex_txt
- 0x808F07E0: mol_1_mouth5_TA_tex_txt
- 0x808F08E0: mol_1_mouth6_TA_tex_txt
- 0x808F09E0: mol_1_tmem_txt
- 0x808F1060: lrc_1_v
- 0x808F25A0: head_lrc_model
- 0x808F2728: mouth_lrc_model
- 0x808F27A0: Rarm2_lrc_model
- 0x808F2858: Rarm1_lrc_model
- 0x808F28D0: Larm2_lrc_model
- 0x808F2988: Larm1_lrc_model
- 0x808F2A00: chest_lrc_model
- 0x808F2AC8: tail1_lrc_model
- 0x808F2B40: tail2_lrc_model
- 0x808F2BE0: Rfoot2_lrc_model
- 0x808F2C60: Rfoot1_lrc_model
- 0x808F2D38: Lfoot1_lrc_model
- 0x808F2D90: base_lrc_model
- 0x808F2E10: cKF_je_r_lrc_1_tbl
- 0x808F2F48: cKF_bs_r_lrc_1
- 0x808F2F60: lrc_1_pal
- 0x808F2F80: lrc_1_eye1_TA_tex_txt
- 0x808F3080: lrc_1_eye2_TA_tex_txt
- 0x808F3180: lrc_1_eye3_TA_tex_txt
- 0x808F3280: lrc_1_eye4_TA_tex_txt
- 0x808F3380: lrc_1_eye5_TA_tex_txt
- 0x808F3480: lrc_1_eye6_TA_tex_txt
- 0x808F3580: lrc_1_eye7_TA_tex_txt
- 0x808F3680: lrc_1_eye8_TA_tex_txt
- 0x808F3780: lrc_1_tmem_txt
- 0x808F3E00: mka_1_v
- 0x808F5280: head_mka_model
- 0x808F53E0: Rarm2_mka_model
- 0x808F5468: Rarm1_mka_model
- 0x808F54E0: Larm2_mka_model
- 0x808F5568: Larm1_mka_model
- 0x808F55E0: chest_mka_model
- 0x808F5670: tail1_mka_model
- 0x808F56C8: tail2_mka_model
- 0x808F5758: Rfoot2_mka_model
- 0x808F57E8: Rfoot1_mka_model
- 0x808F58A8: Lfoot2_mka_model
- 0x808F5938: Lfoot1_mka_model
- 0x808F59F8: base_mka_model
- 0x808F5A68: cKF_je_r_mka_1_tbl
- 0x808F5BA0: cKF_bs_r_mka_1
- 0x808F5BC0: mka_1_pal
- 0x808F5BE0: mka_1_tmem_txt
- 0x808F6060: obj_misin_cloth_v
- 0x808F60A0: obj_misin_cloth_model
- 0x808F6100: obj_misin_pal
- 0x808F6120: obj_misin_belt_tex_pic_ci4_pal
- 0x808F6140: obj_misin_ito1_tex_txt
- 0x808F6160: obj_misin_ito2_tex_txt
- 0x808F61A0: obj_misin_maru_tex_txt
- 0x808F6220: obj_misin_jiku_tex_txt
- 0x808F6240: obj_misin_ana_tex_txt
- 0x808F62C0: obj_misin_hari_tex_txt
- 0x808F6340: obj_misin_ito3_tex_txt
- 0x808F6440: obj_misin_belt_tex_txt
- 0x808F64C0: obj_misin_v
- 0x808F6980: obj_misin_belt_model
- 0x808F69F8: obj_misin_ana_model
- 0x808F6A50: obj_misin_ito2_model
- 0x808F6AC0: obj_misin_ito1_model
- 0x808F6B20: obj_misin_maru_model
- 0x808F6B80: obj_misin_jiku_model
- 0x808F6BF0: obj_misin_ito4_model
- 0x808F6C48: obj_misin_ito3_model
- 0x808F6CC8: obj_misin_hari_model
- 0x808F6D20: cKF_ckcb_r_obj_misin_tbl
- 0x808F6D30: cKF_kn_obj_misin_tbl
- 0x808F6D38: cKF_c_obj_misin_tbl
- 0x808F6D88: cKF_ds_obj_misin_tbl
- 0x808F6DF0: cKF_ba_r_obj_misin
- 0x808F6E04: cKF_je_r_obj_misin_tbl
- 0x808F6EA0: cKF_bs_r_obj_misin
- 0x808F6EA8: mus_1_v
- 0x808F86A8: head_mus_model
- 0x808F8880: mouth_mus_model
- 0x808F88E8: Rarm2_mus_model
- 0x808F8970: Rarm1_mus_model
- 0x808F89E8: Larm2_mus_model
- 0x808F8A70: Larm1_mus_model
- 0x808F8AE8: chest_mus_model
- 0x808F8B90: tail1_mus_model
- 0x808F8BF0: tail2_mus_model
- 0x808F8C80: Rfoot2_mus_model
- 0x808F8D00: Rfoot1_mus_model
- 0x808F8DC0: Lfoot2_mus_model
- 0x808F8E40: Lfoot1_mus_model
- 0x808F8F00: base_mus_model
- 0x808F8F70: cKF_je_r_mus_1_tbl
- 0x808F90A8: cKF_bs_r_mus_1
- 0x808F90C0: mus_1_pal
- 0x808F90E0: mus_1_eye1_TA_tex_txt
- 0x808F91E0: mus_1_eye2_TA_tex_txt
- 0x808F92E0: mus_1_eye3_TA_tex_txt
- 0x808F93E0: mus_1_eye4_TA_tex_txt
- 0x808F94E0: mus_1_eye5_TA_tex_txt
- 0x808F95E0: mus_1_eye6_TA_tex_txt
- 0x808F96E0: mus_1_eye7_TA_tex_txt
- 0x808F97E0: mus_1_eye8_TA_tex_txt
- 0x808F98E0: mus_1_mouth1_TA_tex_txt
- 0x808F99E0: mus_1_mouth2_TA_tex_txt
- 0x808F9AE0: mus_1_mouth3_TA_tex_txt
- 0x808F9BE0: mus_1_mouth4_TA_tex_txt
- 0x808F9CE0: mus_1_mouth5_TA_tex_txt
- 0x808F9DE0: mus_1_mouth6_TA_tex_txt
- 0x808F9EE0: mus_1_tmem_txt
- 0x808FA2E0: mus_2_pal
- 0x808FA300: mus_2_eye1_TA_tex_txt
- 0x808FA400: mus_2_eye2_TA_tex_txt
- 0x808FA500: mus_2_eye3_TA_tex_txt
- 0x808FA600: mus_2_eye4_TA_tex_txt
- 0x808FA700: mus_2_eye5_TA_tex_txt
- 0x808FA800: mus_2_eye6_TA_tex_txt
- 0x808FA900: mus_2_eye7_TA_tex_txt
- 0x808FAA00: mus_2_eye8_TA_tex_txt
- 0x808FAB00: mus_2_mouth1_TA_tex_txt
- 0x808FAC00: mus_2_mouth2_TA_tex_txt
- 0x808FAD00: mus_2_mouth3_TA_tex_txt
- 0x808FAE00: mus_2_mouth4_TA_tex_txt
- 0x808FAF00: mus_2_mouth5_TA_tex_txt
- 0x808FB000: mus_2_mouth6_TA_tex_txt
- 0x808FB100: mus_2_tmem_txt
- 0x808FB500: mus_3_pal
- 0x808FB520: mus_3_eye1_TA_tex_txt
- 0x808FB620: mus_3_eye2_TA_tex_txt
- 0x808FB720: mus_3_eye3_TA_tex_txt
- 0x808FB820: mus_3_eye4_TA_tex_txt
- 0x808FB920: mus_3_eye5_TA_tex_txt
- 0x808FBA20: mus_3_eye6_TA_tex_txt
- 0x808FBB20: mus_3_eye7_TA_tex_txt
- 0x808FBC20: mus_3_eye8_TA_tex_txt
- 0x808FBD20: mus_3_mouth1_TA_tex_txt
- 0x808FBE20: mus_3_mouth2_TA_tex_txt
- 0x808FBF20: mus_3_mouth3_TA_tex_txt
- 0x808FC020: mus_3_mouth4_TA_tex_txt
- 0x808FC120: mus_3_mouth5_TA_tex_txt
- 0x808FC220: mus_3_mouth6_TA_tex_txt
- 0x808FC320: mus_3_tmem_txt
- 0x808FC720: mus_4_pal
- 0x808FC740: mus_4_eye1_TA_tex_txt
- 0x808FC840: mus_4_eye2_TA_tex_txt
- 0x808FC940: mus_4_eye3_TA_tex_txt
- 0x808FCA40: mus_4_eye4_TA_tex_txt
- 0x808FCB40: mus_4_eye5_TA_tex_txt
- 0x808FCC40: mus_4_eye6_TA_tex_txt
- 0x808FCD40: mus_4_eye7_TA_tex_txt
- 0x808FCE40: mus_4_eye8_TA_tex_txt
- 0x808FCF40: mus_4_mouth1_TA_tex_txt
- 0x808FD040: mus_4_mouth2_TA_tex_txt
- 0x808FD140: mus_4_mouth3_TA_tex_txt
- 0x808FD240: mus_4_mouth4_TA_tex_txt
- 0x808FD340: mus_4_mouth5_TA_tex_txt
- 0x808FD440: mus_4_mouth6_TA_tex_txt
- 0x808FD540: mus_4_tmem_txt
- 0x808FD940: mus_5_pal
- 0x808FD960: mus_5_eye1_TA_tex_txt
- 0x808FDA60: mus_5_eye2_TA_tex_txt
- 0x808FDB60: mus_5_eye3_TA_tex_txt
- 0x808FDC60: mus_5_eye4_TA_tex_txt
- 0x808FDD60: mus_5_eye5_TA_tex_txt
- 0x808FDE60: mus_5_eye6_TA_tex_txt
- 0x808FDF60: mus_5_eye7_TA_tex_txt
- 0x808FE060: mus_5_eye8_TA_tex_txt
- 0x808FE160: mus_5_mouth1_TA_tex_txt
- 0x808FE260: mus_5_mouth2_TA_tex_txt
- 0x808FE360: mus_5_mouth3_TA_tex_txt
- 0x808FE460: mus_5_mouth4_TA_tex_txt
- 0x808FE560: mus_5_mouth5_TA_tex_txt
- 0x808FE660: mus_5_mouth6_TA_tex_txt
- 0x808FE760: mus_5_tmem_txt
- 0x808FEB60: mus_6_pal
- 0x808FEB80: mus_6_eye1_TA_tex_txt
- 0x808FEC80: mus_6_eye2_TA_tex_txt
- 0x808FED80: mus_6_eye3_TA_tex_txt
- 0x808FEE80: mus_6_eye4_TA_tex_txt
- 0x808FEF80: mus_6_eye5_TA_tex_txt
- 0x808FF080: mus_6_eye6_TA_tex_txt
- 0x808FF180: mus_6_eye7_TA_tex_txt
- 0x808FF280: mus_6_eye8_TA_tex_txt
- 0x808FF380: mus_6_mouth1_TA_tex_txt
- 0x808FF480: mus_6_mouth2_TA_tex_txt
- 0x808FF580: mus_6_mouth3_TA_tex_txt
- 0x808FF680: mus_6_mouth4_TA_tex_txt
- 0x808FF780: mus_6_mouth5_TA_tex_txt
- 0x808FF880: mus_6_mouth6_TA_tex_txt
- 0x808FF980: mus_6_tmem_txt
- 0x808FFD80: mus_7_pal
- 0x808FFDA0: mus_7_eye1_TA_tex_txt
- 0x808FFEA0: mus_7_eye2_TA_tex_txt
- 0x808FFFA0: mus_7_eye3_TA_tex_txt
- 0x809000A0: mus_7_eye4_TA_tex_txt
- 0x809001A0: mus_7_eye5_TA_tex_txt
- 0x809002A0: mus_7_eye6_TA_tex_txt
- 0x809003A0: mus_7_eye7_TA_tex_txt
- 0x809004A0: mus_7_eye8_TA_tex_txt
- 0x809005A0: mus_7_mouth1_TA_tex_txt
- 0x809006A0: mus_7_mouth2_TA_tex_txt
- 0x809007A0: mus_7_mouth3_TA_tex_txt
- 0x809008A0: mus_7_mouth4_TA_tex_txt
- 0x809009A0: mus_7_mouth5_TA_tex_txt
- 0x80900AA0: mus_7_mouth6_TA_tex_txt
- 0x80900BA0: mus_7_tmem_txt
- 0x80900FA0: mus_8_pal
- 0x80900FC0: mus_8_eye1_TA_tex_txt
- 0x809010C0: mus_8_eye2_TA_tex_txt
- 0x809011C0: mus_8_eye3_TA_tex_txt
- 0x809012C0: mus_8_eye4_TA_tex_txt
- 0x809013C0: mus_8_eye5_TA_tex_txt
- 0x809014C0: mus_8_eye6_TA_tex_txt
- 0x809015C0: mus_8_eye7_TA_tex_txt
- 0x809016C0: mus_8_eye8_TA_tex_txt
- 0x809017C0: mus_8_mouth1_TA_tex_txt
- 0x809018C0: mus_8_mouth2_TA_tex_txt
- 0x809019C0: mus_8_mouth3_TA_tex_txt
- 0x80901AC0: mus_8_mouth4_TA_tex_txt
- 0x80901BC0: mus_8_mouth5_TA_tex_txt
- 0x80901CC0: mus_8_mouth6_TA_tex_txt
- 0x80901DC0: mus_8_tmem_txt
- 0x809021C0: mus_9_pal
- 0x809021E0: mus_9_eye1_TA_tex_txt
- 0x809022E0: mus_9_eye2_TA_tex_txt
- 0x809023E0: mus_9_eye3_TA_tex_txt
- 0x809024E0: mus_9_eye4_TA_tex_txt
- 0x809025E0: mus_9_eye5_TA_tex_txt
- 0x809026E0: mus_9_eye6_TA_tex_txt
- 0x809027E0: mus_9_eye7_TA_tex_txt
- 0x809028E0: mus_9_eye8_TA_tex_txt
- 0x809029E0: mus_9_mouth1_TA_tex_txt
- 0x80902AE0: mus_9_mouth2_TA_tex_txt
- 0x80902BE0: mus_9_mouth3_TA_tex_txt
- 0x80902CE0: mus_9_mouth4_TA_tex_txt
- 0x80902DE0: mus_9_mouth5_TA_tex_txt
- 0x80902EE0: mus_9_mouth6_TA_tex_txt
- 0x80902FE0: mus_9_tmem_txt
- 0x809033E0: mus_10_pal
- 0x80903400: mus_10_eye1_TA_tex_txt
- 0x80903500: mus_10_eye2_TA_tex_txt
- 0x80903600: mus_10_eye3_TA_tex_txt
- 0x80903700: mus_10_eye4_TA_tex_txt
- 0x80903800: mus_10_eye5_TA_tex_txt
- 0x80903900: mus_10_eye6_TA_tex_txt
- 0x80903A00: mus_10_eye7_TA_tex_txt
- 0x80903B00: mus_10_eye8_TA_tex_txt
- 0x80903C00: mus_10_mouth1_TA_tex_txt
- 0x80903D00: mus_10_mouth2_TA_tex_txt
- 0x80903E00: mus_10_mouth3_TA_tex_txt
- 0x80903F00: mus_10_mouth4_TA_tex_txt
- 0x80904000: mus_10_mouth5_TA_tex_txt
- 0x80904100: mus_10_mouth6_TA_tex_txt
- 0x80904200: mus_10_tmem_txt
- 0x80904600: obj_mural_v
- 0x80904640: obj_mural_model
- 0x80904700: rom_myhome1_floor_v
- 0x80904C60: rom_myhome1_floor_model
- 0x80904D88: rom_myhome1_floor_new_model
- 0x80904EB0: rom_myhome1_floor_new2_model
- 0x80905A20: rom_myhome1_wall_v
- 0x80905F70: rom_myhome1_wall_model
- 0x809060F8: rom_myhome1_wall_new_model
- 0x80906280: rom_myhome1_wall_new2_model
- 0x80906420: rom_myhome2_floor_v
- 0x809069D0: rom_myhome2_floor_model
- 0x80906D20: rom_myhome_enter_tex
- 0x80907120: rom_myhome2_wall_v
- 0x809076D0: rom_myhome2_wall_modelT
- 0x809076D8: rom_myhome2_wall_model
- 0x80907880: rom_myhome2B_floor_v
- 0x80907E30: rom_myhome2B_floor_model
- 0x80907F60: rom_myhome2B_floor_new_model
- 0x809080A8: rom_myhome2B_floor_new2_model
- 0x80908C20: rom_myhome2B_wall_v
- 0x809091D0: rom_myhome2B_wall_model
- 0x80909360: rom_myhome2B_wall_new_model
- 0x809094F0: rom_myhome2B_wall_new2_model
- 0x80909680: rom_myhome3_floor_v
- 0x80909C30: rom_myhome3_floor_model
- 0x80909D60: rom_myhome3_floor_new_model
- 0x80909E90: rom_myhome3_floor_new2_model
- 0x8090A9E0: rom_myhome3_wall_v
- 0x8090AED0: rom_myhome3_wall_model
- 0x8090B040: rom_myhome3_wall_new_model
- 0x8090B1B0: rom_myhome3_wall_new2_model
- 0x8090B320: rom_myhome4_1_floor_v
- 0x8090B8D0: rom_myhome4_1_floor_model
- 0x8090BA00: rom_myhome4_1_floor_new_model
- 0x8090BB30: rom_myhome4_1_floor_new2_model
- 0x8090C680: rom_myhome4_1_wall_v
- 0x8090CB70: rom_myhome4_1_wall_model
- 0x8090CCE0: rom_myhome4_1_wall_new_model
- 0x8090CE50: rom_myhome4_1_wall_new2_model
- 0x8090CFC0: rom_myhome4_2_floor_v
- 0x8090D570: rom_myhome4_2_floor_model
- 0x8090D6A0: rom_myhome4_2_floor_new_model
- 0x8090D7E8: rom_myhome4_2_floor_new2_model
- 0x8090E360: rom_myhome4_2_wall_v
- 0x8090EA90: rom_myhome4_2_wall_model
- 0x8090EC20: rom_myhome4_2_wall_new_model
- 0x8090EDB0: rom_myhome4_2_wall_new2_model
- 0x8090EF40: rom_myhome_ug_pal
- 0x8090EF80: rom_myhome_ugf1_tex
- 0x8090FF80: rom_myhome_ugw1_tex
- 0x80910780: rom_myhome_ugw2_tex
- 0x80910F80: rom_myhome_ug_v
- 0x80911900: rom_myhome_ug_model
- 0x80911AD0: cKF_ckcb_r_furniture_pull_tbl
- 0x80911AD4: cKF_kn_furniture_pull_tbl
- 0x80911AD8: cKF_c_furniture_pull_tbl
- 0x80911AE4: cKF_ds_furniture_pull_tbl
- 0x80911B68: cKF_ba_r_furniture_pull
- 0x80911B80: cKF_ckcb_r_furniture_push_tbl
- 0x80911B84: cKF_kn_furniture_push_tbl
- 0x80911B88: cKF_c_furniture_push_tbl
- 0x80911B94: cKF_ds_furniture_push_tbl
- 0x80911C18: cKF_ba_r_furniture_push
- 0x80911C30: cKF_ckcb_r_furniture_stop_tbl
- 0x80911C34: cKF_c_furniture_stop_tbl
- 0x80911C40: cKF_ba_r_furniture_stop
- 0x80911C54: cKF_je_r_furniture_stop_tbl
- 0x80911C60: cKF_bs_r_furniture_stop
- 0x80911C68: NEEDLEWORK_info
- 0x80911CB0: NEEDLEWORK_player_data
- 0x80911CC0: NEEDLEWORK_ctrl_actor_data
- 0x80911CD8: NEEDLEWORK_actor_data
- 0x80911D08: NEEDLEWORK_object_bank
- 0x80911D0C: NEEDLEWORK_door_data
- 0x80911D20: npc_room01_info
- 0x80911D68: NPC_ROOM01_player_data
- 0x80911D78: NPC_ROOM01_ctrl_actor_data
- 0x80911D90: NPC_ROOM01_actor_data
- 0x80911DB0: NPC_ROOM01_object_bank
- 0x80911DB4: NPC_ROOM01_door_data
- 0x80911DC8: npc_room_island_info
- 0x80911E10: NPC_ROOM_ISLAND_player_data
- 0x80911E20: NPC_ROOM_ISLAND_ctrl_actor_data
- 0x80911E38: NPC_ROOM_ISLAND_actor_data
- 0x80911E58: NPC_ROOM_ISLAND_object_bank
- 0x80911E5C: NPC_ROOM_ISLAND_door_data
- 0x80911E70: hgh_1_v
- 0x80913B10: head_hgh_model
- 0x80913DF0: mouth_hgh_model
- 0x80913E80: Rarm2_hgh_model
- 0x80913F08: Rarm1_hgh_model
- 0x80913F80: Larm2_hgh_model
- 0x80914008: Larm1_hgh_model
- 0x80914080: chest_hgh_model
- 0x809141A8: tail1_hgh_model
- 0x80914228: tail2_hgh_model
- 0x809142B0: Rfoot2_hgh_model
- 0x80914330: Rfoot1_hgh_model
- 0x80914388: Lfoot2_hgh_model
- 0x80914408: Lfoot1_hgh_model
- 0x80914460: base_hgh_model
- 0x809144D0: cKF_je_r_hgh_1_tbl
- 0x80914608: cKF_bs_r_hgh_1
- 0x80914620: hgh_1_pal
- 0x80914640: hgh_1_eye1_TA_tex_txt
- 0x80914740: hgh_1_eye2_TA_tex_txt
- 0x80914840: hgh_1_eye3_TA_tex_txt
- 0x80914940: hgh_1_eye4_TA_tex_txt
- 0x80914A40: hgh_1_eye5_TA_tex_txt
- 0x80914B40: hgh_1_eye6_TA_tex_txt
- 0x80914C40: hgh_1_eye7_TA_tex_txt
- 0x80914D40: hgh_1_eye8_TA_tex_txt
- 0x80914E40: hgh_1_tmem_txt
- 0x80915500: hgs_1_v
- 0x80917180: head_hgs_model
- 0x80917460: mouth_hgs_model
- 0x809174F0: Rarm2_hgs_model
- 0x80917578: Rarm1_hgs_model
- 0x809175F0: Larm2_hgs_model
- 0x80917678: Larm1_hgs_model
- 0x809176F0: chest_hgs_model
- 0x80917818: tail1_hgs_model
- 0x80917898: tail2_hgs_model
- 0x80917920: Rfoot2_hgs_model
- 0x809179A0: Rfoot1_hgs_model
- 0x809179F8: Lfoot2_hgs_model
- 0x80917A78: Lfoot1_hgs_model
- 0x80917AD0: base_hgs_model
- 0x80917B40: cKF_je_r_hgs_1_tbl
- 0x80917C78: cKF_bs_r_hgs_1
- 0x80917C80: hgs_1_pal
- 0x80917CA0: hgs_1_eye1_TA_tex_txt
- 0x80917DA0: hgs_1_eye2_TA_tex_txt
- 0x80917EA0: hgs_1_eye3_TA_tex_txt
- 0x80917FA0: hgs_1_eye4_TA_tex_txt
- 0x809180A0: hgs_1_eye5_TA_tex_txt
- 0x809181A0: hgs_1_eye6_TA_tex_txt
- 0x809182A0: hgs_1_eye7_TA_tex_txt
- 0x809183A0: hgs_1_eye8_TA_tex_txt
- 0x809184A0: hgs_1_tmem_txt
- 0x80918B60: cKF_ckcb_r_npc_1_a1_tbl
- 0x80918B7C: cKF_kn_npc_1_a1_tbl
- 0x80918BE8: cKF_c_npc_1_a1_tbl
- 0x80918C20: cKF_ds_npc_1_a1_tbl
- 0x80918F88: npc_1_a10_tex_index
- 0x80918F94: npc_1_a11_tex_index
- 0x80918FA0: cKF_ba_r_npc_1_a1
- 0x80918FE0: cKF_ckcb_r_npc_1_a2_tbl
- 0x80918FFC: cKF_kn_npc_1_a2_tbl
- 0x80919068: cKF_c_npc_1_a2_tbl
- 0x809190A0: cKF_ds_npc_1_a2_tbl
- 0x809193AC: cKF_ba_r_npc_1_a2
- 0x809193F0: cKF_ckcb_r_npc_1_a2_r1_tbl
- 0x8091940C: cKF_kn_npc_1_a2_r1_tbl
- 0x80919478: cKF_c_npc_1_a2_r1_tbl
- 0x809194B0: cKF_ds_npc_1_a2_r1_tbl
- 0x809197B8: cKF_ba_r_npc_1_a2_r1
- 0x809197F8: cKF_ckcb_r_npc_1_a_f1_tbl
- 0x80919814: cKF_kn_npc_1_a_f1_tbl
- 0x80919880: cKF_c_npc_1_a_f1_tbl
- 0x809198B8: cKF_ds_npc_1_a_f1_tbl
- 0x80919B84: npc_1_a_f10_tex_index
- 0x80919B90: npc_1_a_f11_tex_index
- 0x80919B9C: cKF_ba_r_npc_1_a_f1
- 0x80919BE0: cKF_ckcb_r_npc_1_a_f2_tbl
- 0x80919BFC: cKF_kn_npc_1_a_f2_tbl
- 0x80919C64: cKF_c_npc_1_a_f2_tbl
- 0x80919CA0: cKF_ds_npc_1_a_f2_tbl
- 0x80919F94: cKF_ba_r_npc_1_a_f2
- 0x80919FD8: cKF_ckcb_r_npc_1_a_r1_tbl
- 0x80919FF4: cKF_kn_npc_1_a_r1_tbl
- 0x8091A060: cKF_c_npc_1_a_r1_tbl
- 0x8091A098: cKF_ds_npc_1_a_r1_tbl
- 0x8091A3A0: cKF_ba_r_npc_1_a_r1
- 0x8091A3E0: cKF_ckcb_r_npc_1_a_r2_tbl
- 0x8091A3FC: cKF_kn_npc_1_a_r2_tbl
- 0x8091A468: cKF_c_npc_1_a_r2_tbl
- 0x8091A4A0: cKF_ds_npc_1_a_r2_tbl
- 0x8091A770: cKF_ba_r_npc_1_a_r2
- 0x8091A7B0: cKF_ckcb_r_npc_1_aisatu1_tbl
- 0x8091A7CC: cKF_kn_npc_1_aisatu1_tbl
- 0x8091A838: cKF_c_npc_1_aisatu1_tbl
- 0x8091A870: cKF_ds_npc_1_aisatu1_tbl
- 0x8091AD88: npc_1_aisatu10_tex_index
- 0x8091ADA8: npc_1_aisatu11_tex_index
- 0x8091ADC8: cKF_ba_r_npc_1_aisatu1
- 0x8091AE08: cKF_ckcb_r_npc_1_aisatu2_tbl
- 0x8091AE24: cKF_kn_npc_1_aisatu2_tbl
- 0x8091AE90: cKF_c_npc_1_aisatu2_tbl
- 0x8091AEC8: cKF_ds_npc_1_aisatu2_tbl
- 0x8091B2F0: npc_1_aisatu20_tex_index
- 0x8091B310: npc_1_aisatu21_tex_index
- 0x8091B330: cKF_ba_r_npc_1_aisatu2
- 0x8091B370: cKF_ckcb_r_npc_1_aisatu3_tbl
- 0x8091B38C: cKF_kn_npc_1_aisatu3_tbl
- 0x8091B3F8: cKF_c_npc_1_aisatu3_tbl
- 0x8091B430: cKF_ds_npc_1_aisatu3_tbl
- 0x8091B91C: npc_1_aisatu30_tex_index
- 0x8091B93C: npc_1_aisatu31_tex_index
- 0x8091B95C: cKF_ba_r_npc_1_aisatu3
- 0x8091B9A0: cKF_ckcb_r_npc_1_aisatu4_tbl
- 0x8091B9BC: cKF_kn_npc_1_aisatu4_tbl
- 0x8091BA28: cKF_c_npc_1_aisatu4_tbl
- 0x8091BA60: cKF_ds_npc_1_aisatu4_tbl
- 0x8091BEA4: npc_1_aisatu40_tex_index
- 0x8091BEC4: npc_1_aisatu41_tex_index
- 0x8091BF0C: cKF_ba_r_npc_1_aisatu4
- 0x8091BF50: cKF_ckcb_r_npc_1_akireru_r1_tbl
- 0x8091BF6C: cKF_kn_npc_1_akireru_r1_tbl
- 0x8091BFD8: cKF_c_npc_1_akireru_r1_tbl
- 0x8091C010: cKF_ds_npc_1_akireru_r1_tbl
- 0x8091C310: npc_1_akireru_r10_tex_index
- 0x8091C328: npc_1_akireru_r11_tex_index
- 0x8091C340: cKF_ba_r_npc_1_akireru_r1
- 0x8091C380: cKF_ckcb_r_npc_1_akireru_r2_tbl
- 0x8091C39C: cKF_c_npc_1_akireru_r2_tbl
- 0x8091C440: cKF_ba_r_npc_1_akireru_r2
- 0x8091C480: cKF_ckcb_r_npc_1_aseru1_tbl
- 0x8091C49C: cKF_kn_npc_1_aseru1_tbl
- 0x8091C508: cKF_c_npc_1_aseru1_tbl
- 0x8091C540: cKF_ds_npc_1_aseru1_tbl
- 0x8091C8D0: npc_1_aseru11_tex_index
- 0x8091C8E0: cKF_ba_r_npc_1_aseru1
- 0x8091C920: cKF_ckcb_r_npc_1_aseru2_tbl
- 0x8091C93C: cKF_kn_npc_1_aseru2_tbl
- 0x8091C9A8: cKF_c_npc_1_aseru2_tbl
- 0x8091C9E0: cKF_ds_npc_1_aseru2_tbl
- 0x8091CF28: cKF_ba_r_npc_1_aseru2
- 0x8091CF68: cKF_ckcb_r_npc_1_aseru_f1_tbl
- 0x8091CF84: cKF_kn_npc_1_aseru_f1_tbl
- 0x8091CFF0: cKF_c_npc_1_aseru_f1_tbl
- 0x8091D028: cKF_ds_npc_1_aseru_f1_tbl
- 0x8091D3B8: npc_1_aseru_f11_tex_index
- 0x8091D3C8: cKF_ba_r_npc_1_aseru_f1
- 0x8091D408: cKF_ckcb_r_npc_1_aseru_f2_tbl
- 0x8091D424: cKF_kn_npc_1_aseru_f2_tbl
- 0x8091D490: cKF_c_npc_1_aseru_f2_tbl
- 0x8091D4C8: cKF_ds_npc_1_aseru_f2_tbl
- 0x8091DA4C: cKF_ba_r_npc_1_aseru_f2
- 0x8091DA90: cKF_ckcb_r_npc_1_aseru_i1_tbl
- 0x8091DAAC: cKF_kn_npc_1_aseru_i1_tbl
- 0x8091DB18: cKF_c_npc_1_aseru_i1_tbl
- 0x8091DB50: cKF_ds_npc_1_aseru_i1_tbl
- 0x8091DEE0: npc_1_aseru_i11_tex_index
- 0x8091DEF0: cKF_ba_r_npc_1_aseru_i1
- 0x8091DF30: cKF_ckcb_r_npc_1_aseru_i2_tbl
- 0x8091DF4C: cKF_kn_npc_1_aseru_i2_tbl
- 0x8091DFB8: cKF_c_npc_1_aseru_i2_tbl
- 0x8091DFF0: cKF_ds_npc_1_aseru_i2_tbl
- 0x8091E4F0: cKF_ba_r_npc_1_aseru_i2
- 0x8091E530: cKF_ckcb_r_npc_1_buruburu1_tbl
- 0x8091E54C: cKF_kn_npc_1_buruburu1_tbl
- 0x8091E5B8: cKF_c_npc_1_buruburu1_tbl
- 0x8091E5F0: cKF_ds_npc_1_buruburu1_tbl
- 0x8091E938: npc_1_buruburu10_tex_index
- 0x8091E94C: npc_1_buruburu11_tex_index
- 0x8091E960: cKF_ba_r_npc_1_buruburu1
- 0x8091E9A0: cKF_ckcb_r_npc_1_buruburu2_tbl
- 0x8091E9BC: cKF_kn_npc_1_buruburu2_tbl
- 0x8091EA28: cKF_c_npc_1_buruburu2_tbl
- 0x8091EA60: cKF_ds_npc_1_buruburu2_tbl
- 0x8091EE88: cKF_ba_r_npc_1_buruburu2
- 0x8091EEC8: cKF_ckcb_r_npc_1_contract1_tbl
- 0x8091EEE4: cKF_kn_npc_1_contract1_tbl
- 0x8091EF50: cKF_c_npc_1_contract1_tbl
- 0x8091EF88: cKF_ds_npc_1_contract1_tbl
- 0x8091F26C: cKF_ba_r_npc_1_contract1
- 0x8091F2B0: cKF_ckcb_r_npc_1_contract2_tbl
- 0x8091F2CC: cKF_kn_npc_1_contract2_tbl
- 0x8091F338: cKF_c_npc_1_contract2_tbl
- 0x8091F370: cKF_ds_npc_1_contract2_tbl
- 0x8091F768: npc_1_contract20_tex_index
- 0x8091F77C: cKF_ba_r_npc_1_contract2
- 0x8091F7C0: cKF_ckcb_r_npc_1_contract3_tbl
- 0x8091F7DC: cKF_kn_npc_1_contract3_tbl
- 0x8091F848: cKF_c_npc_1_contract3_tbl
- 0x8091F880: cKF_ds_npc_1_contract3_tbl
- 0x8091FE28: npc_1_contract30_tex_index
- 0x8091FE48: cKF_ba_r_npc_1_contract3
- 0x8091FE88: cKF_ckcb_r_npc_1_not_contract1_tbl
- 0x8091FEA4: cKF_kn_npc_1_not_contract1_tbl
- 0x8091FF10: cKF_c_npc_1_not_contract1_tbl
- 0x8091FF48: cKF_ds_npc_1_not_contract1_tbl
- 0x8092043C: npc_1_not_contract10_tex_index
- 0x8092045C: cKF_ba_r_npc_1_not_contract1
- 0x809204A0: cKF_ckcb_r_npc_1_cracker_count1_tbl
- 0x809204BC: cKF_kn_npc_1_cracker_count1_tbl
- 0x80920528: cKF_c_npc_1_cracker_count1_tbl
- 0x80920560: cKF_ds_npc_1_cracker_count1_tbl
- 0x809208C0: cKF_ba_r_npc_1_cracker_count1
- 0x80920900: cKF_ckcb_r_npc_1_cracker_fire1_tbl
- 0x8092091C: cKF_kn_npc_1_cracker_fire1_tbl
- 0x80920984: cKF_c_npc_1_cracker_fire1_tbl
- 0x809209C0: cKF_ds_npc_1_cracker_fire1_tbl
- 0x80920F18: npc_1_cracker_fire10_tex_index
- 0x80920F38: npc_1_cracker_fire11_tex_index
- 0x80920F78: cKF_ba_r_npc_1_cracker_fire1
- 0x80920FB8: cKF_ckcb_r_npc_1_cracker_run1_tbl
- 0x80920FD4: cKF_kn_npc_1_cracker_run1_tbl
- 0x80921040: cKF_c_npc_1_cracker_run1_tbl
- 0x80921078: cKF_ds_npc_1_cracker_run1_tbl
- 0x80921458: cKF_ba_r_npc_1_cracker_run1
- 0x80921498: cKF_ckcb_r_npc_1_cracker_wait1_tbl
- 0x809214B4: cKF_kn_npc_1_cracker_wait1_tbl
- 0x80921520: cKF_c_npc_1_cracker_wait1_tbl
- 0x80921558: cKF_ds_npc_1_cracker_wait1_tbl
- 0x80921C0C: cKF_ba_r_npc_1_cracker_wait1
- 0x80921C50: cKF_ckcb_r_npc_1_getup_seg1_tbl
- 0x80921C6C: cKF_kn_npc_1_getup_seg1_tbl
- 0x80921CD4: cKF_c_npc_1_getup_seg1_tbl
- 0x80921D10: cKF_ds_npc_1_getup_seg1_tbl
- 0x80922288: npc_1_getup_seg11_tex_index
- 0x809222B4: cKF_ba_r_npc_1_getup_seg1
- 0x809222F8: cKF_ckcb_r_npc_1_getup_wait_seg1_tbl
- 0x80922314: cKF_c_npc_1_getup_wait_seg1_tbl
- 0x809223B8: cKF_ba_r_npc_1_getup_wait_seg1
- 0x809223F8: cKF_ckcb_r_npc_1_piku_seg1_tbl
- 0x80922414: cKF_kn_npc_1_piku_seg1_tbl
- 0x80922480: cKF_c_npc_1_piku_seg1_tbl
- 0x809224B8: cKF_ds_npc_1_piku_seg1_tbl
- 0x80922958: npc_1_piku_seg11_tex_index
- 0x809229A0: cKF_ba_r_npc_1_piku_seg1
- 0x809229E0: cKF_ckcb_r_npc_1_delivery1_tbl
- 0x809229FC: cKF_kn_npc_1_delivery1_tbl
- 0x80922A68: cKF_c_npc_1_delivery1_tbl
- 0x80922AA0: cKF_ds_npc_1_delivery1_tbl
- 0x809235A0: cKF_ba_r_npc_1_delivery1
- 0x809235E0: cKF_ckcb_r_npc_1_fly1_tbl
- 0x809235FC: cKF_kn_npc_1_fly1_tbl
- 0x80923668: cKF_c_npc_1_fly1_tbl
- 0x809236A0: cKF_ds_npc_1_fly1_tbl
- 0x80923A50: cKF_ba_r_npc_1_fly1
- 0x80923A90: cKF_ckcb_r_npc_1_flyaway1_tbl
- 0x80923AAC: cKF_kn_npc_1_flyaway1_tbl
- 0x80923B14: cKF_c_npc_1_flyaway1_tbl
- 0x80923B50: cKF_ds_npc_1_flyaway1_tbl
- 0x80924230: cKF_ba_r_npc_1_flyaway1
- 0x80924270: cKF_ckcb_r_npc_1_kyoro1_tbl
- 0x8092428C: cKF_kn_npc_1_kyoro1_tbl
- 0x809242F8: cKF_c_npc_1_kyoro1_tbl
- 0x80924330: cKF_ds_npc_1_kyoro1_tbl
- 0x8092477C: cKF_ba_r_npc_1_kyoro1
- 0x809247C0: cKF_ckcb_r_npc_1_landing1_tbl
- 0x809247DC: cKF_c_npc_1_landing1_tbl
- 0x80924880: cKF_ba_r_npc_1_landing1
- 0x809248C0: cKF_ckcb_r_npc_1_landing2_tbl
- 0x809248DC: cKF_kn_npc_1_landing2_tbl
- 0x80924948: cKF_c_npc_1_landing2_tbl
- 0x80924980: cKF_ds_npc_1_landing2_tbl
- 0x80924D34: cKF_ba_r_npc_1_landing2
- 0x80924D78: cKF_ckcb_r_npc_1_landing3_tbl
- 0x80924D94: cKF_kn_npc_1_landing3_tbl
- 0x80924E00: cKF_c_npc_1_landing3_tbl
- 0x80924E38: cKF_ds_npc_1_landing3_tbl
- 0x80925260: cKF_ba_r_npc_1_landing3
- 0x809252A0: cKF_ckcb_r_npc_1_gaaan1_tbl
- 0x809252BC: cKF_kn_npc_1_gaaan1_tbl
- 0x80925328: cKF_c_npc_1_gaaan1_tbl
- 0x80925360: cKF_ds_npc_1_gaaan1_tbl
- 0x80925758: npc_1_gaaan10_tex_index
- 0x80925764: npc_1_gaaan11_tex_index
- 0x80925770: cKF_ba_r_npc_1_gaaan1
- 0x809257B0: cKF_ckcb_r_npc_1_gaaan2_tbl
- 0x809257CC: cKF_kn_npc_1_gaaan2_tbl
- 0x80925838: cKF_c_npc_1_gaaan2_tbl
- 0x80925870: cKF_ds_npc_1_gaaan2_tbl
- 0x80925B4C: cKF_ba_r_npc_1_gaaan2
- 0x80925B90: cKF_ckcb_r_npc_1_gekido_r1_tbl
- 0x80925BAC: cKF_kn_npc_1_gekido_r1_tbl
- 0x80925C18: cKF_c_npc_1_gekido_r1_tbl
- 0x80925C50: cKF_ds_npc_1_gekido_r1_tbl
- 0x80925EF8: npc_1_gekido_r10_tex_index
- 0x80925F00: npc_1_gekido_r11_tex_index
- 0x80925F08: cKF_ba_r_npc_1_gekido_r1
- 0x80925F48: cKF_ckcb_r_npc_1_gekido_r2_tbl
- 0x80925F64: cKF_kn_npc_1_gekido_r2_tbl
- 0x80925FCC: cKF_c_npc_1_gekido_r2_tbl
- 0x80926008: cKF_ds_npc_1_gekido_r2_tbl
- 0x80926484: npc_1_gekido_r21_tex_index
- 0x809264A4: cKF_ba_r_npc_1_gekido_r2
- 0x809264E8: cKF_ckcb_r_npc_1_estimate_f1_tbl
- 0x80926504: cKF_kn_npc_1_estimate_f1_tbl
- 0x80926570: cKF_c_npc_1_estimate_f1_tbl
- 0x809265A8: cKF_ds_npc_1_estimate_f1_tbl
- 0x80926E90: npc_1_estimate_f11_tex_index
- 0x80926EE4: cKF_ba_r_npc_1_estimate_f1
- 0x80926F28: cKF_ckcb_r_npc_1_get1_tbl
- 0x80926F44: cKF_kn_npc_1_get1_tbl
- 0x80926FB0: cKF_c_npc_1_get1_tbl
- 0x80926FE8: cKF_ds_npc_1_get1_tbl
- 0x80927290: cKF_ba_r_npc_1_get1
- 0x809272D0: cKF_ckcb_r_npc_1_get_change1_tbl
- 0x809272EC: cKF_kn_npc_1_get_change1_tbl
- 0x80927358: cKF_c_npc_1_get_change1_tbl
- 0x80927390: cKF_ds_npc_1_get_change1_tbl
- 0x80927C20: npc_1_get_change10_tex_index
- 0x80927C94: npc_1_get_change11_tex_index
- 0x80927D08: cKF_ba_r_npc_1_get_change1
- 0x80927D48: cKF_ckcb_r_npc_1_get_eat1_tbl
- 0x80927D64: cKF_kn_npc_1_get_eat1_tbl
- 0x80927DD0: cKF_c_npc_1_get_eat1_tbl
- 0x80927E08: cKF_ds_npc_1_get_eat1_tbl
- 0x809284DC: npc_1_get_eat11_tex_index
- 0x80928544: cKF_ba_r_npc_1_get_eat1
- 0x80928588: cKF_ckcb_r_npc_1_get_f1_tbl
- 0x809285A4: cKF_kn_npc_1_get_f1_tbl
- 0x80928610: cKF_c_npc_1_get_f1_tbl
- 0x80928648: cKF_ds_npc_1_get_f1_tbl
- 0x809288F0: cKF_ba_r_npc_1_get_f1
- 0x80928930: cKF_ckcb_r_npc_1_get_pull1_tbl
- 0x8092894C: cKF_kn_npc_1_get_pull1_tbl
- 0x809289B8: cKF_c_npc_1_get_pull1_tbl
- 0x809289F0: cKF_ds_npc_1_get_pull1_tbl
- 0x80928D04: cKF_ba_r_npc_1_get_pull1
- 0x80928D48: cKF_ckcb_r_npc_1_get_pull_f1_tbl
- 0x80928D64: cKF_kn_npc_1_get_pull_f1_tbl
- 0x80928DD0: cKF_c_npc_1_get_pull_f1_tbl
- 0x80928E08: cKF_ds_npc_1_get_pull_f1_tbl
- 0x809290C8: cKF_ba_r_npc_1_get_pull_f1
- 0x80929108: cKF_ckcb_r_npc_1_get_pull_wait1_tbl
- 0x80929124: cKF_kn_npc_1_get_pull_wait1_tbl
- 0x80929190: cKF_c_npc_1_get_pull_wait1_tbl
- 0x809291C8: cKF_ds_npc_1_get_pull_wait1_tbl
- 0x809294E0: cKF_ba_r_npc_1_get_pull_wait1
- 0x80929520: cKF_ckcb_r_npc_1_get_pull_wait_f1_tbl
- 0x8092953C: cKF_kn_npc_1_get_pull_wait_f1_tbl
- 0x809295A8: cKF_c_npc_1_get_pull_wait_f1_tbl
- 0x809295E0: cKF_ds_npc_1_get_pull_wait_f1_tbl
- 0x80929904: cKF_ba_r_npc_1_get_pull_wait_f1
- 0x80929948: cKF_ckcb_r_npc_1_get_putaway1_tbl
- 0x80929964: cKF_kn_npc_1_get_putaway1_tbl
- 0x809299D0: cKF_c_npc_1_get_putaway1_tbl
- 0x80929A08: cKF_ds_npc_1_get_putaway1_tbl
- 0x80929F2C: cKF_ba_r_npc_1_get_putaway1
- 0x80929F70: cKF_ckcb_r_npc_1_get_putaway_f1_tbl
- 0x80929F8C: cKF_kn_npc_1_get_putaway_f1_tbl
- 0x80929FF8: cKF_c_npc_1_get_putaway_f1_tbl
- 0x8092A030: cKF_ds_npc_1_get_putaway_f1_tbl
- 0x8092A570: cKF_ba_r_npc_1_get_putaway_f1
- 0x8092A5B0: cKF_ckcb_r_npc_1_get_return1_tbl
- 0x8092A5CC: cKF_kn_npc_1_get_return1_tbl
- 0x8092A638: cKF_c_npc_1_get_return1_tbl
- 0x8092A670: cKF_ds_npc_1_get_return1_tbl
- 0x8092A984: cKF_ba_r_npc_1_get_return1
- 0x8092A9C8: cKF_ckcb_r_npc_1_get_return_f1_tbl
- 0x8092A9E4: cKF_kn_npc_1_get_return_f1_tbl
- 0x8092AA50: cKF_c_npc_1_get_return_f1_tbl
- 0x8092AA88: cKF_ds_npc_1_get_return_f1_tbl
- 0x8092AD48: cKF_ba_r_npc_1_get_return_f1
- 0x8092AD88: cKF_ckcb_r_npc_1_gstwait1_tbl
- 0x8092ADA4: cKF_kn_npc_1_gstwait1_tbl
- 0x8092ADD4: cKF_c_npc_1_gstwait1_tbl
- 0x8092AE48: cKF_ds_npc_1_gstwait1_tbl
- 0x8092B0DC: cKF_ba_r_npc_1_gstwait1
- 0x8092B120: cKF_ckcb_r_npc_1_goukyu1_tbl
- 0x8092B13C: cKF_kn_npc_1_goukyu1_tbl
- 0x8092B1A8: cKF_c_npc_1_goukyu1_tbl
- 0x8092B1E0: cKF_ds_npc_1_goukyu1_tbl
- 0x8092B4F4: npc_1_goukyu10_tex_index
- 0x8092B504: npc_1_goukyu11_tex_index
- 0x8092B514: cKF_ba_r_npc_1_goukyu1
- 0x8092B558: cKF_ckcb_r_npc_1_goukyu2_tbl
- 0x8092B574: cKF_kn_npc_1_goukyu2_tbl
- 0x8092B5E0: cKF_c_npc_1_goukyu2_tbl
- 0x8092B618: cKF_ds_npc_1_goukyu2_tbl
- 0x8092B8F0: npc_1_goukyu20_tex_index
- 0x8092B8FC: cKF_ba_r_npc_1_goukyu2
- 0x8092B940: cKF_ckcb_r_npc_1_ha1_tbl
- 0x8092B95C: cKF_kn_npc_1_ha1_tbl
- 0x8092B9C8: cKF_c_npc_1_ha1_tbl
- 0x8092BA00: cKF_ds_npc_1_ha1_tbl
- 0x8092BD80: npc_1_ha10_tex_index
- 0x8092BD88: npc_1_ha11_tex_index
- 0x8092BD90: cKF_ba_r_npc_1_ha1
- 0x8092BDD0: cKF_ckcb_r_npc_1_ha2_tbl
- 0x8092BDEC: cKF_kn_npc_1_ha2_tbl
- 0x8092BE58: cKF_c_npc_1_ha2_tbl
- 0x8092BE90: cKF_ds_npc_1_ha2_tbl
- 0x8092C198: cKF_ba_r_npc_1_ha2
- 0x8092C1D8: cKF_ckcb_r_npc_1_ha_e1_tbl
- 0x8092C1F4: cKF_kn_npc_1_ha_e1_tbl
- 0x8092C260: cKF_c_npc_1_ha_e1_tbl
- 0x8092C298: cKF_ds_npc_1_ha_e1_tbl
- 0x8092C5B0: npc_1_ha_e10_tex_index
- 0x8092C5B8: npc_1_ha_e11_tex_index
- 0x8092C5C0: cKF_ba_r_npc_1_ha_e1
- 0x8092C600: cKF_ckcb_r_npc_1_ha_e2_tbl
- 0x8092C61C: cKF_kn_npc_1_ha_e2_tbl
- 0x8092C688: cKF_c_npc_1_ha_e2_tbl
- 0x8092C6C0: cKF_ds_npc_1_ha_e2_tbl
- 0x8092C980: cKF_ba_r_npc_1_ha_e2
- 0x8092C9C0: cKF_ckcb_r_npc_1_ha_f1_tbl
- 0x8092C9DC: cKF_kn_npc_1_ha_f1_tbl
- 0x8092CA48: cKF_c_npc_1_ha_f1_tbl
- 0x8092CA80: cKF_ds_npc_1_ha_f1_tbl
- 0x8092CDA0: npc_1_ha_f10_tex_index
- 0x8092CDA8: npc_1_ha_f11_tex_index
- 0x8092CDB0: cKF_ba_r_npc_1_ha_f1
- 0x8092CDF0: cKF_ckcb_r_npc_1_ha_f2_tbl
- 0x8092CE0C: cKF_kn_npc_1_ha_f2_tbl
- 0x8092CE78: cKF_c_npc_1_ha_f2_tbl
- 0x8092CEB0: cKF_ds_npc_1_ha_f2_tbl
- 0x8092D1C4: cKF_ba_r_npc_1_ha_f2
- 0x8092D208: cKF_ckcb_r_npc_1_ha_i1_tbl
- 0x8092D224: cKF_kn_npc_1_ha_i1_tbl
- 0x8092D290: cKF_c_npc_1_ha_i1_tbl
- 0x8092D2C8: cKF_ds_npc_1_ha_i1_tbl
- 0x8092D5BC: npc_1_ha_i10_tex_index
- 0x8092D5C4: npc_1_ha_i11_tex_index
- 0x8092D5CC: cKF_ba_r_npc_1_ha_i1
- 0x8092D610: cKF_ckcb_r_npc_1_ha_i2_tbl
- 0x8092D62C: cKF_kn_npc_1_ha_i2_tbl
- 0x8092D698: cKF_c_npc_1_ha_i2_tbl
- 0x8092D6D0: cKF_ds_npc_1_ha_i2_tbl
- 0x8092D9CC: cKF_ba_r_npc_1_ha_i2
- 0x8092DA10: cKF_ckcb_r_npc_1_banzai1_tbl
- 0x8092DA2C: cKF_kn_npc_1_banzai1_tbl
- 0x8092DA98: cKF_c_npc_1_banzai1_tbl
- 0x8092DAD0: cKF_ds_npc_1_banzai1_tbl
- 0x8092E0AC: npc_1_banzai10_tex_index
- 0x8092E0F0: cKF_ba_r_npc_1_banzai1
- 0x8092E130: cKF_ckcb_r_npc_1_clap1_tbl
- 0x8092E14C: cKF_kn_npc_1_clap1_tbl
- 0x8092E1B8: cKF_c_npc_1_clap1_tbl
- 0x8092E1F0: cKF_ds_npc_1_clap1_tbl
- 0x8092E534: cKF_ba_r_npc_1_clap1
- 0x8092E578: cKF_ckcb_r_npc_1_utiwa_wait1_tbl
- 0x8092E594: cKF_kn_npc_1_utiwa_wait1_tbl
- 0x8092E5A8: cKF_c_npc_1_utiwa_wait1_tbl
- 0x8092E638: cKF_ds_npc_1_utiwa_wait1_tbl
- 0x8092E6EC: cKF_ba_r_npc_1_utiwa_wait1
- 0x8092E730: cKF_ckcb_r_npc_1_dance1_tbl
- 0x8092E74C: cKF_kn_npc_1_dance1_tbl
- 0x8092E7B8: cKF_c_npc_1_dance1_tbl
- 0x8092E7F0: cKF_ds_npc_1_dance1_tbl
- 0x8092F288: cKF_ba_r_npc_1_dance1
- 0x8092F2C8: cKF_ckcb_r_npc_1_sitdown_clap1_tbl
- 0x8092F2E4: cKF_kn_npc_1_sitdown_clap1_tbl
- 0x8092F348: cKF_c_npc_1_sitdown_clap1_tbl
- 0x8092F388: cKF_ds_npc_1_sitdown_clap1_tbl
- 0x8092F8A4: cKF_ba_r_npc_1_sitdown_clap1
- 0x8092F8E8: cKF_ckcb_r_npc_1_sitdown_drink1_tbl
- 0x8092F904: cKF_kn_npc_1_sitdown_drink1_tbl
- 0x8092F970: cKF_c_npc_1_sitdown_drink1_tbl
- 0x8092F9A8: cKF_ds_npc_1_sitdown_drink1_tbl
- 0x8092FF98: npc_1_sitdown_drink10_tex_index
- 0x8092FFD8: npc_1_sitdown_drink11_tex_index
- 0x80930018: cKF_ba_r_npc_1_sitdown_drink1
- 0x80930058: cKF_ckcb_r_npc_1_sitdown_wait1_tbl
- 0x80930074: cKF_kn_npc_1_sitdown_wait1_tbl
- 0x809300D0: cKF_c_npc_1_sitdown_wait1_tbl
- 0x80930118: cKF_ds_npc_1_sitdown_wait1_tbl
- 0x8093046C: cKF_ba_r_npc_1_sitdown_wait1
- 0x809304B0: cKF_ckcb_r_npc_1_happy1_tbl
- 0x809304CC: cKF_kn_npc_1_happy1_tbl
- 0x80930538: cKF_c_npc_1_happy1_tbl
- 0x80930570: cKF_ds_npc_1_happy1_tbl
- 0x80930800: npc_1_happy10_tex_index
- 0x8093080C: npc_1_happy11_tex_index
- 0x80930818: cKF_ba_r_npc_1_happy1
- 0x80930858: cKF_ckcb_r_npc_1_happy2_tbl
- 0x80930874: cKF_kn_npc_1_happy2_tbl
- 0x809308E0: cKF_c_npc_1_happy2_tbl
- 0x80930918: cKF_ds_npc_1_happy2_tbl
- 0x80930E7C: npc_1_happy20_tex_index
- 0x80930EBC: cKF_ba_r_npc_1_happy2
- 0x80930F00: cKF_ckcb_r_npc_1_happy_f1_tbl
- 0x80930F1C: cKF_kn_npc_1_happy_f1_tbl
- 0x80930F88: cKF_c_npc_1_happy_f1_tbl
- 0x80930FC0: cKF_ds_npc_1_happy_f1_tbl
- 0x80931254: npc_1_happy_f10_tex_index
- 0x80931260: npc_1_happy_f11_tex_index
- 0x8093126C: cKF_ba_r_npc_1_happy_f1
- 0x809312B0: cKF_ckcb_r_npc_1_happy_f2_tbl
- 0x809312CC: cKF_kn_npc_1_happy_f2_tbl
- 0x80931338: cKF_c_npc_1_happy_f2_tbl
- 0x80931370: cKF_ds_npc_1_happy_f2_tbl
- 0x809318C4: npc_1_happy_f20_tex_index
- 0x80931904: cKF_ba_r_npc_1_happy_f2
- 0x80931948: cKF_ckcb_r_npc_1_happy_i1_tbl
- 0x80931964: cKF_kn_npc_1_happy_i1_tbl
- 0x809319D0: cKF_c_npc_1_happy_i1_tbl
- 0x80931A08: cKF_ds_npc_1_happy_i1_tbl
- 0x80931C9C: npc_1_happy_i10_tex_index
- 0x80931CA8: npc_1_happy_i11_tex_index
- 0x80931CB4: cKF_ba_r_npc_1_happy_i1
- 0x80931CF8: cKF_ckcb_r_npc_1_happy_i2_tbl
- 0x80931D14: cKF_kn_npc_1_happy_i2_tbl
- 0x80931D80: cKF_c_npc_1_happy_i2_tbl
- 0x80931DB8: cKF_ds_npc_1_happy_i2_tbl
- 0x80932264: npc_1_happy_i20_tex_index
- 0x809322A4: cKF_ba_r_npc_1_happy_i2
- 0x809322E8: cKF_ckcb_r_npc_1_hate1_tbl
- 0x80932304: cKF_kn_npc_1_hate1_tbl
- 0x80932370: cKF_c_npc_1_hate1_tbl
- 0x809323A8: cKF_ds_npc_1_hate1_tbl
- 0x809326A4: npc_1_hate11_tex_index
- 0x809326B4: cKF_ba_r_npc_1_hate1
- 0x809326F8: cKF_ckcb_r_npc_1_hate2_tbl
- 0x80932714: cKF_kn_npc_1_hate2_tbl
- 0x80932780: cKF_c_npc_1_hate2_tbl
- 0x809327B8: cKF_ds_npc_1_hate2_tbl
- 0x80932AB4: cKF_ba_r_npc_1_hate2
- 0x80932AF8: cKF_ckcb_r_npc_1_hate_f1_tbl
- 0x80932B14: cKF_kn_npc_1_hate_f1_tbl
- 0x80932B80: cKF_c_npc_1_hate_f1_tbl
- 0x80932BB8: cKF_ds_npc_1_hate_f1_tbl
- 0x80932EA0: npc_1_hate_f11_tex_index
- 0x80932EB0: cKF_ba_r_npc_1_hate_f1
- 0x80932EF0: cKF_ckcb_r_npc_1_hate_f2_tbl
- 0x80932F0C: cKF_kn_npc_1_hate_f2_tbl
- 0x80932F78: cKF_c_npc_1_hate_f2_tbl
- 0x80932FB0: cKF_ds_npc_1_hate_f2_tbl
- 0x809332B8: cKF_ba_r_npc_1_hate_f2
- 0x809332F8: cKF_ckcb_r_npc_1_hate_i1_tbl
- 0x80933314: cKF_kn_npc_1_hate_i1_tbl
- 0x80933380: cKF_c_npc_1_hate_i1_tbl
- 0x809333B8: cKF_ds_npc_1_hate_i1_tbl
- 0x80933660: npc_1_hate_i11_tex_index
- 0x80933670: cKF_ba_r_npc_1_hate_i1
- 0x809336B0: cKF_ckcb_r_npc_1_hate_i2_tbl
- 0x809336CC: cKF_kn_npc_1_hate_i2_tbl
- 0x80933738: cKF_c_npc_1_hate_i2_tbl
- 0x80933770: cKF_ds_npc_1_hate_i2_tbl
- 0x80933A88: cKF_ba_r_npc_1_hate_i2
- 0x80933AC8: cKF_ckcb_r_npc_1_omairi1_tbl
- 0x80933AE4: cKF_kn_npc_1_omairi1_tbl
- 0x80933B50: cKF_c_npc_1_omairi1_tbl
- 0x80933B88: cKF_ds_npc_1_omairi1_tbl
- 0x80933F48: cKF_ba_r_npc_1_omairi1
- 0x80933F88: cKF_ckcb_r_npc_1_saisen1_tbl
- 0x80933FA4: cKF_kn_npc_1_saisen1_tbl
- 0x80934010: cKF_c_npc_1_saisen1_tbl
- 0x80934048: cKF_ds_npc_1_saisen1_tbl
- 0x8093479C: cKF_ba_r_npc_1_saisen1
- 0x809347E0: cKF_ckcb_r_npc_1_hirameki1_tbl
- 0x809347FC: cKF_kn_npc_1_hirameki1_tbl
- 0x80934868: cKF_c_npc_1_hirameki1_tbl
- 0x809348A0: cKF_ds_npc_1_hirameki1_tbl
- 0x80934C98: npc_1_hirameki10_tex_index
- 0x80934CAC: npc_1_hirameki11_tex_index
- 0x80934CC0: cKF_ba_r_npc_1_hirameki1
- 0x80934D00: cKF_ckcb_r_npc_1_hirameki2_tbl
- 0x80934D1C: cKF_kn_npc_1_hirameki2_tbl
- 0x80934D88: cKF_c_npc_1_hirameki2_tbl
- 0x80934DC0: cKF_ds_npc_1_hirameki2_tbl
- 0x80935108: cKF_ba_r_npc_1_hirameki2
- 0x80935148: cKF_ckcb_r_npc_1_hyuuu1_tbl
- 0x80935164: cKF_kn_npc_1_hyuuu1_tbl
- 0x809351D0: cKF_c_npc_1_hyuuu1_tbl
- 0x80935208: cKF_ds_npc_1_hyuuu1_tbl
- 0x8093572C: npc_1_hyuuu11_tex_index
- 0x80935760: cKF_ba_r_npc_1_hyuuu1
- 0x809357A0: cKF_ckcb_r_npc_1_hyuuu2_tbl
- 0x809357BC: cKF_c_npc_1_hyuuu2_tbl
- 0x80935860: cKF_ba_r_npc_1_hyuuu2
- 0x809358A0: cKF_ckcb_r_npc_1_hyuuu_r1_tbl
- 0x809358BC: cKF_kn_npc_1_hyuuu_r1_tbl
- 0x80935928: cKF_c_npc_1_hyuuu_r1_tbl
- 0x80935960: cKF_ds_npc_1_hyuuu_r1_tbl
- 0x80935D38: npc_1_hyuuu_r11_tex_index
- 0x80935D6C: cKF_ba_r_npc_1_hyuuu_r1
- 0x80935DB0: cKF_ckcb_r_npc_1_hyuuu_r2_tbl
- 0x80935DCC: cKF_c_npc_1_hyuuu_r2_tbl
- 0x80935E70: cKF_ba_r_npc_1_hyuuu_r2
- 0x80935EB0: cKF_ckcb_r_npc_1_wipkogu1_tbl
- 0x80935ECC: cKF_kn_npc_1_wipkogu1_tbl
- 0x80935F38: cKF_c_npc_1_wipkogu1_tbl
- 0x80935F70: cKF_ds_npc_1_wipkogu1_tbl
- 0x80936558: push_se_chk_pat
- 0x8093655C: pull_se_chk_pat
- 0x80936588: cKF_ba_r_npc_1_wipkogu1
- 0x809365C8: cKF_ckcb_r_npc_1_wipwait1_tbl
- 0x809365E4: cKF_kn_npc_1_wipwait1_tbl
- 0x80936650: cKF_c_npc_1_wipwait1_tbl
- 0x80936688: cKF_ds_npc_1_wipwait1_tbl
- 0x80936B80: cKF_ba_r_npc_1_wipwait1
- 0x80936BC0: cKF_ckcb_r_npc_1_wipwait2_tbl
- 0x80936BDC: cKF_kn_npc_1_wipwait2_tbl
- 0x80936C48: cKF_c_npc_1_wipwait2_tbl
- 0x80936C80: cKF_ds_npc_1_wipwait2_tbl
- 0x80937120: cKF_ba_r_npc_1_wipwait2
- 0x80937160: cKF_ckcb_r_npc_1_keirei1_tbl
- 0x8093717C: cKF_kn_npc_1_keirei1_tbl
- 0x809371E8: cKF_c_npc_1_keirei1_tbl
- 0x80937220: cKF_ds_npc_1_keirei1_tbl
- 0x80937744: npc_1_keirei10_tex_index
- 0x80937764: npc_1_keirei11_tex_index
- 0x80937784: cKF_ba_r_npc_1_keirei1
- 0x809377C8: cKF_ckcb_r_npc_1_kieeeei1_tbl
- 0x809377E4: cKF_kn_npc_1_kieeeei1_tbl
- 0x80937850: cKF_c_npc_1_kieeeei1_tbl
- 0x80937888: cKF_ds_npc_1_kieeeei1_tbl
- 0x80937D18: cKF_ba_r_npc_1_kieeeei1
- 0x80937D58: cKF_ckcb_r_npc_1_kieeeei2_tbl
- 0x80937D74: cKF_kn_npc_1_kieeeei2_tbl
- 0x80937D90: cKF_c_npc_1_kieeeei2_tbl
- 0x80937E18: cKF_ds_npc_1_kieeeei2_tbl
- 0x80937FA4: cKF_ba_r_npc_1_kieeeei2
- 0x80937FE8: cKF_ckcb_r_npc_1_gaaan_d1_tbl
- 0x80938004: cKF_kn_npc_1_gaaan_d1_tbl
- 0x80938070: cKF_c_npc_1_gaaan_d1_tbl
- 0x809380A8: cKF_ds_npc_1_gaaan_d1_tbl
- 0x809383FC: npc_1_gaaan_d10_tex_index
- 0x80938408: npc_1_gaaan_d11_tex_index
- 0x80938414: cKF_ba_r_npc_1_gaaan_d1
- 0x80938458: cKF_ckcb_r_npc_1_gaaan_d2_tbl
- 0x80938474: cKF_kn_npc_1_gaaan_d2_tbl
- 0x809384DC: cKF_c_npc_1_gaaan_d2_tbl
- 0x80938518: cKF_ds_npc_1_gaaan_d2_tbl
- 0x8093885C: cKF_ba_r_npc_1_gaaan_d2
- 0x809388A0: cKF_ckcb_r_npc_1_ha_d1_tbl
- 0x809388BC: cKF_kn_npc_1_ha_d1_tbl
- 0x80938924: cKF_c_npc_1_ha_d1_tbl
- 0x80938960: cKF_ds_npc_1_ha_d1_tbl
- 0x80938C74: npc_1_ha_d10_tex_index
- 0x80938C7C: npc_1_ha_d11_tex_index
- 0x80938C84: cKF_ba_r_npc_1_ha_d1
- 0x80938CC8: cKF_ckcb_r_npc_1_ha_d2_tbl
- 0x80938CE4: cKF_kn_npc_1_ha_d2_tbl
- 0x80938D4C: cKF_c_npc_1_ha_d2_tbl
- 0x80938D88: cKF_ds_npc_1_ha_d2_tbl
- 0x80939094: cKF_ba_r_npc_1_ha_d2
- 0x809390D8: cKF_ckcb_r_npc_1_hate_d1_tbl
- 0x809390F4: cKF_kn_npc_1_hate_d1_tbl
- 0x8093915C: cKF_c_npc_1_hate_d1_tbl
- 0x80939198: cKF_ds_npc_1_hate_d1_tbl
- 0x80939480: npc_1_hate_d10_tex_index
- 0x80939490: cKF_ba_r_npc_1_hate_d1
- 0x809394D0: cKF_ckcb_r_npc_1_hate_d2_tbl
- 0x809394EC: cKF_kn_npc_1_hate_d2_tbl
- 0x80939554: cKF_c_npc_1_hate_d2_tbl
- 0x80939590: cKF_ds_npc_1_hate_d2_tbl
- 0x8093986C: cKF_ba_r_npc_1_hate_d2
- 0x809398B0: cKF_ckcb_r_npc_1_hirameki_d1_tbl
- 0x809398CC: cKF_kn_npc_1_hirameki_d1_tbl
- 0x80939938: cKF_c_npc_1_hirameki_d1_tbl
- 0x80939970: cKF_ds_npc_1_hirameki_d1_tbl
- 0x80939D44: npc_1_hirameki_d10_tex_index
- 0x80939D58: npc_1_hirameki_d11_tex_index
- 0x80939D6C: cKF_ba_r_npc_1_hirameki_d1
- 0x80939DB0: cKF_ckcb_r_npc_1_hirameki_d2_tbl
- 0x80939DCC: cKF_kn_npc_1_hirameki_d2_tbl
- 0x80939E38: cKF_c_npc_1_hirameki_d2_tbl
- 0x80939E70: cKF_ds_npc_1_hirameki_d2_tbl
- 0x8093A1A8: cKF_ba_r_npc_1_hirameki_d2
- 0x8093A1E8: cKF_ckcb_r_npc_1_keitai_off1_tbl
- 0x8093A204: cKF_kn_npc_1_keitai_off1_tbl
- 0x8093A270: cKF_c_npc_1_keitai_off1_tbl
- 0x8093A2A8: cKF_ds_npc_1_keitai_off1_tbl
- 0x8093A82C: cKF_ba_r_npc_1_keitai_off1
- 0x8093A870: cKF_ckcb_r_npc_1_keitai_on1_tbl
- 0x8093A88C: cKF_kn_npc_1_keitai_on1_tbl
- 0x8093A8F8: cKF_c_npc_1_keitai_on1_tbl
- 0x8093A930: cKF_ds_npc_1_keitai_on1_tbl
- 0x8093AF5C: cKF_ba_r_npc_1_keitai_on1
- 0x8093AFA0: cKF_ckcb_r_npc_1_keitai_talk1_tbl
- 0x8093AFBC: cKF_kn_npc_1_keitai_talk1_tbl
- 0x8093B028: cKF_c_npc_1_keitai_talk1_tbl
- 0x8093B060: cKF_ds_npc_1_keitai_talk1_tbl
- 0x8093B330: npc_1_keitai_talk10_tex_index
- 0x8093B340: npc_1_keitai_talk11_tex_index
- 0x8093B350: cKF_ba_r_npc_1_keitai_talk1
- 0x8093B390: cKF_ckcb_r_npc_1_keitai_talk2_tbl
- 0x8093B3AC: cKF_kn_npc_1_keitai_talk2_tbl
- 0x8093B418: cKF_c_npc_1_keitai_talk2_tbl
- 0x8093B450: cKF_ds_npc_1_keitai_talk2_tbl
- 0x8093B7D4: cKF_ba_r_npc_1_keitai_talk2
- 0x8093B818: cKF_ckcb_r_npc_1_komari_d1_tbl
- 0x8093B834: cKF_kn_npc_1_komari_d1_tbl
- 0x8093B8A0: cKF_c_npc_1_komari_d1_tbl
- 0x8093B8D8: cKF_ds_npc_1_komari_d1_tbl
- 0x8093BBF8: cKF_ba_r_npc_1_komari_d1
- 0x8093BC38: cKF_ckcb_r_npc_1_musu_d1_tbl
- 0x8093BC54: cKF_kn_npc_1_musu_d1_tbl
- 0x8093BCC0: cKF_c_npc_1_musu_d1_tbl
- 0x8093BCF8: cKF_ds_npc_1_musu_d1_tbl
- 0x8093C018: cKF_ba_r_npc_1_musu_d1
- 0x8093C058: cKF_ckcb_r_npc_1_niko_d1_tbl
- 0x8093C074: cKF_kn_npc_1_niko_d1_tbl
- 0x8093C0E0: cKF_c_npc_1_niko_d1_tbl
- 0x8093C118: cKF_ds_npc_1_niko_d1_tbl
- 0x8093C43C: cKF_ba_r_npc_1_niko_d1
- 0x8093C480: cKF_ckcb_r_npc_1_open_d1_tbl
- 0x8093C49C: cKF_kn_npc_1_open_d1_tbl
- 0x8093C508: cKF_c_npc_1_open_d1_tbl
- 0x8093C540: cKF_ds_npc_1_open_d1_tbl
- 0x8093CC74: npc_1_open_d10_tex_index
- 0x8093CCF8: npc_1_open_d11_tex_index
- 0x8093CD7C: cKF_ba_r_npc_1_open_d1
- 0x8093CDC0: cKF_ckcb_r_npc_1_open_d2_tbl
- 0x8093CDDC: cKF_kn_npc_1_open_d2_tbl
- 0x8093CE48: cKF_c_npc_1_open_d2_tbl
- 0x8093CE80: cKF_ds_npc_1_open_d2_tbl
- 0x8093D434: cKF_ba_r_npc_1_open_d2
- 0x8093D478: cKF_ckcb_r_npc_1_sitdown_d1_tbl
- 0x8093D494: cKF_kn_npc_1_sitdown_d1_tbl
- 0x8093D508: cKF_c_npc_1_sitdown_d1_tbl
- 0x8093D538: cKF_ds_npc_1_sitdown_d1_tbl
- 0x8093DE4C: jump_se_chk_pat
- 0x8093DE50: sit_se_chk_pat
- 0x8093DE7C: cKF_ba_r_npc_1_sitdown_d1
- 0x8093DEC0: cKF_ckcb_r_npc_1_sitdown_wait_d1_tbl
- 0x8093DEDC: cKF_kn_npc_1_sitdown_wait_d1_tbl
- 0x8093DF50: cKF_c_npc_1_sitdown_wait_d1_tbl
- 0x8093DF80: cKF_ds_npc_1_sitdown_wait_d1_tbl
- 0x8093E2C4: cKF_ba_r_npc_1_sitdown_wait_d1
- 0x8093E308: cKF_ckcb_r_npc_1_smile_d1_tbl
- 0x8093E324: cKF_kn_npc_1_smile_d1_tbl
- 0x8093E390: cKF_c_npc_1_smile_d1_tbl
- 0x8093E3C8: cKF_ds_npc_1_smile_d1_tbl
- 0x8093E704: npc_1_smile_d10_tex_index
- 0x8093E710: npc_1_smile_d11_tex_index
- 0x8093E71C: cKF_ba_r_npc_1_smile_d1
- 0x8093E760: cKF_ckcb_r_npc_1_smile_d2_tbl
- 0x8093E77C: cKF_kn_npc_1_smile_d2_tbl
- 0x8093E7E8: cKF_c_npc_1_smile_d2_tbl
- 0x8093E820: cKF_ds_npc_1_smile_d2_tbl
- 0x8093EB70: cKF_ba_r_npc_1_smile_d2
- 0x8093EBB0: cKF_ckcb_r_npc_1_standup_d1_tbl
- 0x8093EBCC: cKF_kn_npc_1_standup_d1_tbl
- 0x8093EC3C: cKF_c_npc_1_standup_d1_tbl
- 0x8093EC70: cKF_ds_npc_1_standup_d1_tbl
- 0x8093F200: cKF_ba_r_npc_1_standup_d1
- 0x8093F240: cKF_ckcb_r_npc_1_to_deck_d1_tbl
- 0x8093F25C: cKF_kn_npc_1_to_deck_d1_tbl
- 0x8093F2C8: cKF_c_npc_1_to_deck_d1_tbl
- 0x8093F300: cKF_ds_npc_1_to_deck_d1_tbl
- 0x8093F81C: npc_1_to_deck_d10_tex_index
- 0x8093F86C: cKF_ba_r_npc_1_to_deck_d1
- 0x8093F8B0: cKF_ckcb_r_npc_1_komari1_tbl
- 0x8093F8CC: cKF_kn_npc_1_komari1_tbl
- 0x8093F938: cKF_c_npc_1_komari1_tbl
- 0x8093F970: cKF_ds_npc_1_komari1_tbl
- 0x8093FCF0: cKF_ba_r_npc_1_komari1
- 0x8093FD30: cKF_ckcb_r_npc_1_komari_f1_tbl
- 0x8093FD4C: cKF_kn_npc_1_komari_f1_tbl
- 0x8093FDB8: cKF_c_npc_1_komari_f1_tbl
- 0x8093FDF0: cKF_ds_npc_1_komari_f1_tbl
- 0x80940150: cKF_ba_r_npc_1_komari_f1
- 0x80940190: cKF_ckcb_r_npc_1_komari_i1_tbl
- 0x809401AC: cKF_kn_npc_1_komari_i1_tbl
- 0x80940218: cKF_c_npc_1_komari_i1_tbl
- 0x80940250: cKF_ds_npc_1_komari_i1_tbl
- 0x80940588: cKF_ba_r_npc_1_komari_i1
- 0x809405C8: cKF_ckcb_r_npc_1_kutipaku1_tbl
- 0x809405E4: cKF_kn_npc_1_kutipaku1_tbl
- 0x809405E8: cKF_c_npc_1_kutipaku1_tbl
- 0x80940688: cKF_ds_npc_1_kutipaku1_tbl
- 0x80940718: cKF_ba_r_npc_1_kutipaku1
- 0x80940758: cKF_ckcb_r_npc_1_kutipaku2_tbl
- 0x80940774: cKF_kn_npc_1_kutipaku2_tbl
- 0x80940778: cKF_c_npc_1_kutipaku2_tbl
- 0x80940818: cKF_ds_npc_1_kutipaku2_tbl
- 0x809408BC: cKF_ba_r_npc_1_kutipaku2
- 0x80940900: cKF_ckcb_r_npc_1_love1_tbl
- 0x8094091C: cKF_kn_npc_1_love1_tbl
- 0x80940988: cKF_c_npc_1_love1_tbl
- 0x809409C0: cKF_ds_npc_1_love1_tbl
- 0x80940DAC: npc_1_love11_tex_index
- 0x80940DC4: cKF_ba_r_npc_1_love1
- 0x80940E08: cKF_ckcb_r_npc_1_love2_tbl
- 0x80940E24: cKF_kn_npc_1_love2_tbl
- 0x80940E90: cKF_c_npc_1_love2_tbl
- 0x80940EC8: cKF_ds_npc_1_love2_tbl
- 0x80941204: cKF_ba_r_npc_1_love2
- 0x80941248: cKF_ckcb_r_npc_1_love_i1_tbl
- 0x80941264: cKF_kn_npc_1_love_i1_tbl
- 0x809412D0: cKF_c_npc_1_love_i1_tbl
- 0x80941308: cKF_ds_npc_1_love_i1_tbl
- 0x8094173C: npc_1_love_i11_tex_index
- 0x80941754: cKF_ba_r_npc_1_love_i1
- 0x80941798: cKF_ckcb_r_npc_1_love_i2_tbl
- 0x809417B4: cKF_kn_npc_1_love_i2_tbl
- 0x8094181C: cKF_c_npc_1_love_i2_tbl
- 0x80941858: cKF_ds_npc_1_love_i2_tbl
- 0x80941B78: cKF_ba_r_npc_1_love_i2
- 0x80941BB8: cKF_ckcb_r_npc_1_lovelove1_tbl
- 0x80941BD4: cKF_kn_npc_1_lovelove1_tbl
- 0x80941C40: cKF_c_npc_1_lovelove1_tbl
- 0x80941C78: cKF_ds_npc_1_lovelove1_tbl
- 0x8094208C: npc_1_lovelove10_tex_index
- 0x809420A8: npc_1_lovelove11_tex_index
- 0x809420C4: cKF_ba_r_npc_1_lovelove1
- 0x80942108: cKF_ckcb_r_npc_1_lovelove2_tbl
- 0x80942124: cKF_kn_npc_1_lovelove2_tbl
- 0x80942190: cKF_c_npc_1_lovelove2_tbl
- 0x809421C8: cKF_ds_npc_1_lovelove2_tbl
- 0x809427DC: npc_1_lovelove20_tex_index
- 0x80942810: cKF_ba_r_npc_1_lovelove2
- 0x80942850: cKF_ckcb_r_npc_1_lovelove_f1_tbl
- 0x8094286C: cKF_kn_npc_1_lovelove_f1_tbl
- 0x809428D8: cKF_c_npc_1_lovelove_f1_tbl
- 0x80942910: cKF_ds_npc_1_lovelove_f1_tbl
- 0x80942D24: npc_1_lovelove_f10_tex_index
- 0x80942D40: npc_1_lovelove_f11_tex_index
- 0x80942D5C: cKF_ba_r_npc_1_lovelove_f1
- 0x80942DA0: cKF_ckcb_r_npc_1_lovelove_f2_tbl
- 0x80942DBC: cKF_kn_npc_1_lovelove_f2_tbl
- 0x80942E28: cKF_c_npc_1_lovelove_f2_tbl
- 0x80942E60: cKF_ds_npc_1_lovelove_f2_tbl
- 0x80943498: npc_1_lovelove_f20_tex_index
- 0x809434CC: cKF_ba_r_npc_1_lovelove_f2
- 0x80943510: cKF_ckcb_r_npc_1_appear1_tbl
- 0x8094352C: cKF_kn_npc_1_appear1_tbl
- 0x80943598: cKF_c_npc_1_appear1_tbl
- 0x809435D0: cKF_ds_npc_1_appear1_tbl
- 0x80943AB0: npc_1_appear10_tex_index
- 0x80943AD0: npc_1_appear11_tex_index
- 0x80943B10: cKF_ba_r_npc_1_appear1
- 0x80943B50: cKF_ckcb_r_npc_1_go_ug1_tbl
- 0x80943B6C: cKF_kn_npc_1_go_ug1_tbl
- 0x80943BD8: cKF_c_npc_1_go_ug1_tbl
- 0x80943C10: cKF_ds_npc_1_go_ug1_tbl
- 0x809440D4: cKF_ba_r_npc_1_go_ug1
- 0x80944118: cKF_ckcb_r_npc_1_wait_r1_tbl
- 0x80944134: cKF_kn_npc_1_wait_r1_tbl
- 0x809441A0: cKF_c_npc_1_wait_r1_tbl
- 0x809441D8: cKF_ds_npc_1_wait_r1_tbl
- 0x809445D0: cKF_ba_r_npc_1_wait_r1
- 0x80944610: cKF_ckcb_r_npc_1_matarou_r1_tbl
- 0x8094462C: cKF_kn_npc_1_matarou_r1_tbl
- 0x80944690: cKF_c_npc_1_matarou_r1_tbl
- 0x809446D0: cKF_ds_npc_1_matarou_r1_tbl
- 0x809449CC: npc_1_matarou_r10_tex_index
- 0x809449D8: npc_1_matarou_r11_tex_index
- 0x809449E4: cKF_ba_r_npc_1_matarou_r1
- 0x80944A28: cKF_ckcb_r_npc_1_matarou_r2_tbl
- 0x80944A44: cKF_kn_npc_1_matarou_r2_tbl
- 0x80944AA8: cKF_c_npc_1_matarou_r2_tbl
- 0x80944AE8: cKF_ds_npc_1_matarou_r2_tbl
- 0x80944D60: cKF_ba_r_npc_1_matarou_r2
- 0x80944DA0: cKF_ckcb_r_npc_1_misin1_tbl
- 0x80944DBC: cKF_kn_npc_1_misin1_tbl
- 0x80944E28: cKF_c_npc_1_misin1_tbl
- 0x80944E60: cKF_ds_npc_1_misin1_tbl
- 0x809454EC: cKF_ba_r_npc_1_misin1
- 0x80945530: cKF_ckcb_r_npc_1_run1_tbl
- 0x8094554C: cKF_kn_npc_1_run1_tbl
- 0x809455B8: cKF_c_npc_1_run1_tbl
- 0x809455F0: cKF_ds_npc_1_run1_tbl
- 0x80945A20: cKF_ba_r_npc_1_run1
- 0x80945A60: cKF_ckcb_r_npc_1_wait1_tbl
- 0x80945A7C: cKF_kn_npc_1_wait1_tbl
- 0x80945AAC: cKF_c_npc_1_wait1_tbl
- 0x80945B20: cKF_ds_npc_1_wait1_tbl
- 0x80945D8C: cKF_ba_r_npc_1_wait1
- 0x80945DD0: cKF_ckcb_r_npc_1_wait_ai1_tbl
- 0x80945DEC: cKF_kn_npc_1_wait_ai1_tbl
- 0x80945E58: cKF_c_npc_1_wait_ai1_tbl
- 0x80945E90: cKF_ds_npc_1_wait_ai1_tbl
- 0x809461F0: feel_set
- 0x809461F8: cKF_ba_r_npc_1_wait_ai1
- 0x80946238: cKF_ckcb_r_npc_1_wait_do1_tbl
- 0x80946254: cKF_kn_npc_1_wait_do1_tbl
- 0x809462B8: cKF_c_npc_1_wait_do1_tbl
- 0x809462F8: cKF_ds_npc_1_wait_do1_tbl
- 0x80946A20: cKF_ba_r_npc_1_wait_do1
- 0x80946A60: cKF_ckcb_r_npc_1_wait_ki1_tbl
- 0x80946A7C: cKF_kn_npc_1_wait_ki1_tbl
- 0x80946AE8: cKF_c_npc_1_wait_ki1_tbl
- 0x80946B20: cKF_ds_npc_1_wait_ki1_tbl
- 0x809470CC: cKF_ba_r_npc_1_wait_ki1
- 0x80947110: cKF_ckcb_r_npc_1_wait_nemu1_tbl
- 0x8094712C: cKF_kn_npc_1_wait_nemu1_tbl
- 0x80947198: cKF_c_npc_1_wait_nemu1_tbl
- 0x809471D0: cKF_ds_npc_1_wait_nemu1_tbl
- 0x809475DC: cKF_ba_r_npc_1_wait_nemu1
- 0x80947620: cKF_ckcb_r_npc_1_walk1_tbl
- 0x8094763C: cKF_kn_npc_1_walk1_tbl
- 0x809476A8: cKF_c_npc_1_walk1_tbl
- 0x809476E0: cKF_ds_npc_1_walk1_tbl
- 0x80947AE8: cKF_ba_r_npc_1_walk1
- 0x80947B28: cKF_ckcb_r_npc_1_walk_ai1_tbl
- 0x80947B44: cKF_kn_npc_1_walk_ai1_tbl
- 0x80947BB0: cKF_c_npc_1_walk_ai1_tbl
- 0x80947BE8: cKF_ds_npc_1_walk_ai1_tbl
- 0x80947FFC: cKF_ba_r_npc_1_walk_ai1
- 0x80948040: cKF_ckcb_r_npc_1_walk_do1_tbl
- 0x8094805C: cKF_kn_npc_1_walk_do1_tbl
- 0x809480C8: cKF_c_npc_1_walk_do1_tbl
- 0x80948100: cKF_ds_npc_1_walk_do1_tbl
- 0x809486EC: cKF_ba_r_npc_1_walk_do1
- 0x80948730: cKF_ckcb_r_npc_1_walk_ki1_tbl
- 0x8094874C: cKF_kn_npc_1_walk_ki1_tbl
- 0x809487B8: cKF_c_npc_1_walk_ki1_tbl
- 0x809487F0: cKF_ds_npc_1_walk_ki1_tbl
- 0x80948D58: cKF_ba_r_npc_1_walk_ki1
- 0x80948D98: cKF_ckcb_r_npc_1_muka1_tbl
- 0x80948DB4: cKF_kn_npc_1_muka1_tbl
- 0x80948DEC: cKF_c_npc_1_muka1_tbl
- 0x80948E58: cKF_ds_npc_1_muka1_tbl
- 0x809494B0: cKF_ba_r_npc_1_muka1
- 0x809494F0: cKF_ckcb_r_npc_1_muka2_tbl
- 0x8094950C: cKF_kn_npc_1_muka2_tbl
- 0x80949530: cKF_c_npc_1_muka2_tbl
- 0x809495B0: cKF_ds_npc_1_muka2_tbl
- 0x809497A8: cKF_ba_r_npc_1_muka2
- 0x809497E8: cKF_ckcb_r_npc_1_musu1_tbl
- 0x80949804: cKF_kn_npc_1_musu1_tbl
- 0x80949870: cKF_c_npc_1_musu1_tbl
- 0x809498A8: cKF_ds_npc_1_musu1_tbl
- 0x80949C10: cKF_ba_r_npc_1_musu1
- 0x80949C50: cKF_ckcb_r_npc_1_musu_f1_tbl
- 0x80949C6C: cKF_kn_npc_1_musu_f1_tbl
- 0x80949CD8: cKF_c_npc_1_musu_f1_tbl
- 0x80949D10: cKF_ds_npc_1_musu_f1_tbl
- 0x8094A054: cKF_ba_r_npc_1_musu_f1
- 0x8094A098: cKF_ckcb_r_npc_1_musu_i1_tbl
- 0x8094A0B4: cKF_kn_npc_1_musu_i1_tbl
- 0x8094A120: cKF_c_npc_1_musu_i1_tbl
- 0x8094A158: cKF_ds_npc_1_musu_i1_tbl
- 0x8094A4B4: cKF_ba_r_npc_1_musu_i1
- 0x8094A4F8: cKF_ckcb_r_npc_1_musu_r1_tbl
- 0x8094A514: cKF_kn_npc_1_musu_r1_tbl
- 0x8094A580: cKF_c_npc_1_musu_r1_tbl
- 0x8094A5B8: cKF_ds_npc_1_musu_r1_tbl
- 0x8094A9B0: cKF_ba_r_npc_1_musu_r1
- 0x8094A9F0: cKF_ckcb_r_npc_1_muuuuu1_tbl
- 0x8094AA0C: cKF_kn_npc_1_muuuuu1_tbl
- 0x8094AA78: cKF_c_npc_1_muuuuu1_tbl
- 0x8094AAB0: cKF_ds_npc_1_muuuuu1_tbl
- 0x8094AEFC: npc_1_muuuuu10_tex_index
- 0x8094AF20: npc_1_muuuuu11_tex_index
- 0x8094AF44: cKF_ba_r_npc_1_muuuuu1
- 0x8094AF88: cKF_ckcb_r_npc_1_muuuuu2_tbl
- 0x8094AFA4: cKF_kn_npc_1_muuuuu2_tbl
- 0x8094B010: cKF_c_npc_1_muuuuu2_tbl
- 0x8094B048: cKF_ds_npc_1_muuuuu2_tbl
- 0x8094B350: cKF_ba_r_npc_1_muuuuu2
- 0x8094B390: cKF_ckcb_r_npc_1_muuuuu_f1_tbl
- 0x8094B3AC: cKF_kn_npc_1_muuuuu_f1_tbl
- 0x8094B418: cKF_c_npc_1_muuuuu_f1_tbl
- 0x8094B450: cKF_ds_npc_1_muuuuu_f1_tbl
- 0x8094B864: npc_1_muuuuu_f10_tex_index
- 0x8094B888: npc_1_muuuuu_f11_tex_index
- 0x8094B8AC: cKF_ba_r_npc_1_muuuuu_f1
- 0x8094B8F0: cKF_ckcb_r_npc_1_muuuuu_f2_tbl
- 0x8094B90C: cKF_kn_npc_1_muuuuu_f2_tbl
- 0x8094B978: cKF_c_npc_1_muuuuu_f2_tbl
- 0x8094B9B0: cKF_ds_npc_1_muuuuu_f2_tbl
- 0x8094BCB8: cKF_ba_r_npc_1_muuuuu_f2
- 0x8094BCF8: cKF_ckcb_r_npc_1_muuuuu_i1_tbl
- 0x8094BD14: cKF_kn_npc_1_muuuuu_i1_tbl
- 0x8094BD80: cKF_c_npc_1_muuuuu_i1_tbl
- 0x8094BDB8: cKF_ds_npc_1_muuuuu_i1_tbl
- 0x8094C18C: npc_1_muuuuu_i10_tex_index
- 0x8094C1B0: npc_1_muuuuu_i11_tex_index
- 0x8094C1D4: cKF_ba_r_npc_1_muuuuu_i1
- 0x8094C218: cKF_ckcb_r_npc_1_muuuuu_i2_tbl
- 0x8094C234: cKF_kn_npc_1_muuuuu_i2_tbl
- 0x8094C2A0: cKF_c_npc_1_muuuuu_i2_tbl
- 0x8094C2D8: cKF_ds_npc_1_muuuuu_i2_tbl
- 0x8094C5E0: cKF_ba_r_npc_1_muuuuu_i2
- 0x8094C620: cKF_ckcb_r_npc_1_neboke1_tbl
- 0x8094C63C: cKF_kn_npc_1_neboke1_tbl
- 0x8094C6A4: cKF_c_npc_1_neboke1_tbl
- 0x8094C6E0: cKF_ds_npc_1_neboke1_tbl
- 0x8094CBC0: npc_1_neboke10_tex_index
- 0x8094CBF8: npc_1_neboke11_tex_index
- 0x8094CC30: cKF_ba_r_npc_1_neboke1
- 0x8094CC70: cKF_ckcb_r_npc_1_neboke2_tbl
- 0x8094CC8C: cKF_kn_npc_1_neboke2_tbl
- 0x8094CCF8: cKF_c_npc_1_neboke2_tbl
- 0x8094CD30: cKF_ds_npc_1_neboke2_tbl
- 0x8094D104: cKF_ba_r_npc_1_neboke2
- 0x8094D148: cKF_ckcb_r_npc_1_niko1_tbl
- 0x8094D164: cKF_kn_npc_1_niko1_tbl
- 0x8094D1D0: cKF_c_npc_1_niko1_tbl
- 0x8094D208: cKF_ds_npc_1_niko1_tbl
- 0x8094D5E8: cKF_ba_r_npc_1_niko1
- 0x8094D628: cKF_ckcb_r_npc_1_niko_f1_tbl
- 0x8094D644: cKF_kn_npc_1_niko_f1_tbl
- 0x8094D6B0: cKF_c_npc_1_niko_f1_tbl
- 0x8094D6E8: cKF_ds_npc_1_niko_f1_tbl
- 0x8094DAE4: cKF_ba_r_npc_1_niko_f1
- 0x8094DB28: cKF_ckcb_r_npc_1_niko_i1_tbl
- 0x8094DB44: cKF_kn_npc_1_niko_i1_tbl
- 0x8094DBB0: cKF_c_npc_1_niko_i1_tbl
- 0x8094DBE8: cKF_ds_npc_1_niko_i1_tbl
- 0x8094DFD8: cKF_ba_r_npc_1_niko_i1
- 0x8094E018: cKF_ckcb_r_npc_1_kokkuri_d1_tbl
- 0x8094E034: cKF_kn_npc_1_kokkuri_d1_tbl
- 0x8094E0A0: cKF_c_npc_1_kokkuri_d1_tbl
- 0x8094E0D8: cKF_ds_npc_1_kokkuri_d1_tbl
- 0x8094E3B0: cKF_ba_r_npc_1_kokkuri_d1
- 0x8094E3F0: cKF_ckcb_r_npc_1_kokkuri_d2_tbl
- 0x8094E40C: cKF_kn_npc_1_kokkuri_d2_tbl
- 0x8094E478: cKF_c_npc_1_kokkuri_d2_tbl
- 0x8094E4B0: cKF_ds_npc_1_kokkuri_d2_tbl
- 0x8094EA98: npc_1_kokkuri_d21_tex_index
- 0x8094EB28: cKF_ba_r_npc_1_kokkuri_d2
- 0x8094EB68: cKF_ckcb_r_npc_1_go_out1_tbl
- 0x8094EB84: cKF_kn_npc_1_go_out1_tbl
- 0x8094EBF0: cKF_c_npc_1_go_out1_tbl
- 0x8094EC28: cKF_ds_npc_1_go_out1_tbl
- 0x8094F59C: cKF_ba_r_npc_1_go_out1
- 0x8094F5E0: cKF_ckcb_r_npc_1_open1_tbl
- 0x8094F5FC: cKF_kn_npc_1_open1_tbl
- 0x8094F668: cKF_c_npc_1_open1_tbl
- 0x8094F6A0: cKF_ds_npc_1_open1_tbl
- 0x8094FEA4: cKF_ba_r_npc_1_open1
- 0x8094FEE8: cKF_ckcb_r_npc_1_otikomu1_tbl
- 0x8094FF04: cKF_kn_npc_1_otikomu1_tbl
- 0x8094FF70: cKF_c_npc_1_otikomu1_tbl
- 0x8094FFA8: cKF_ds_npc_1_otikomu1_tbl
- 0x809504B4: cKF_ba_r_npc_1_otikomu1
- 0x809504F8: cKF_ckcb_r_npc_1_otikomu2_tbl
- 0x80950514: cKF_kn_npc_1_otikomu2_tbl
- 0x80950580: cKF_c_npc_1_otikomu2_tbl
- 0x809505B8: cKF_ds_npc_1_otikomu2_tbl
- 0x809508FC: cKF_ba_r_npc_1_otikomu2
- 0x80950940: cKF_ckcb_r_npc_1_deru1_tbl
- 0x8095095C: cKF_kn_npc_1_deru1_tbl
- 0x809509C8: cKF_c_npc_1_deru1_tbl
- 0x80950A00: cKF_ds_npc_1_deru1_tbl
- 0x80950F90: npc_1_deru10_tex_index
- 0x80950FCC: npc_1_deru11_tex_index
- 0x80951008: cKF_ba_r_npc_1_deru1
- 0x80951048: cKF_ckcb_r_npc_1_deru2_tbl
- 0x80951064: cKF_kn_npc_1_deru2_tbl
- 0x809510D0: cKF_c_npc_1_deru2_tbl
- 0x80951108: cKF_ds_npc_1_deru2_tbl
- 0x80951740: npc_1_deru20_tex_index
- 0x8095177C: npc_1_deru21_tex_index
- 0x809517B8: cKF_ba_r_npc_1_deru2
- 0x809517F8: cKF_ckcb_r_npc_1_guratuku1_tbl
- 0x80951814: cKF_kn_npc_1_guratuku1_tbl
- 0x80951880: cKF_c_npc_1_guratuku1_tbl
- 0x809518B8: cKF_ds_npc_1_guratuku1_tbl
- 0x80951EF0: npc_1_guratuku10_tex_index
- 0x80951F0C: npc_1_guratuku11_tex_index
- 0x80951F28: cKF_ba_r_npc_1_guratuku1
- 0x80951F68: cKF_ckcb_r_npc_1_mogaku1_tbl
- 0x80951F84: cKF_kn_npc_1_mogaku1_tbl
- 0x80951FF0: cKF_c_npc_1_mogaku1_tbl
- 0x80952028: cKF_ds_npc_1_mogaku1_tbl
- 0x809526D8: npc_1_mogaku10_tex_index
- 0x80952704: cKF_ba_r_npc_1_mogaku1
- 0x80952748: cKF_ckcb_r_npc_1_otiru1_tbl
- 0x80952764: cKF_kn_npc_1_otiru1_tbl
- 0x809527D0: cKF_c_npc_1_otiru1_tbl
- 0x80952808: cKF_ds_npc_1_otiru1_tbl
- 0x80952B5C: npc_1_otiru10_tex_index
- 0x80952B68: npc_1_otiru11_tex_index
- 0x80952B74: cKF_ba_r_npc_1_otiru1
- 0x80952BB8: cKF_ckcb_r_npc_1_otiru2_tbl
- 0x80952BD4: cKF_kn_npc_1_otiru2_tbl
- 0x80952C40: cKF_c_npc_1_otiru2_tbl
- 0x80952C78: cKF_ds_npc_1_otiru2_tbl
- 0x80952FD8: npc_1_otiru20_tex_index
- 0x80952FE4: npc_1_otiru21_tex_index
- 0x80952FF0: cKF_ba_r_npc_1_otiru2
- 0x80953030: cKF_ckcb_r_npc_1_punpun1_tbl
- 0x8095304C: cKF_kn_npc_1_punpun1_tbl
- 0x809530B8: cKF_c_npc_1_punpun1_tbl
- 0x809530F0: cKF_ds_npc_1_punpun1_tbl
- 0x80953480: npc_1_punpun10_tex_index
- 0x8095348C: npc_1_punpun11_tex_index
- 0x80953498: cKF_ba_r_npc_1_punpun1
- 0x809534D8: cKF_ckcb_r_npc_1_punpun2_tbl
- 0x809534F4: cKF_kn_npc_1_punpun2_tbl
- 0x80953560: cKF_c_npc_1_punpun2_tbl
- 0x80953598: cKF_ds_npc_1_punpun2_tbl
- 0x809538C4: cKF_ba_r_npc_1_punpun2
- 0x80953908: cKF_ckcb_r_npc_1_punpun_r1_tbl
- 0x80953924: cKF_kn_npc_1_punpun_r1_tbl
- 0x80953990: cKF_c_npc_1_punpun_r1_tbl
- 0x809539C8: cKF_ds_npc_1_punpun_r1_tbl
- 0x80953CDC: npc_1_punpun_r10_tex_index
- 0x80953CE8: npc_1_punpun_r11_tex_index
- 0x80953CF4: cKF_ba_r_npc_1_punpun_r1
- 0x80953D38: cKF_ckcb_r_npc_1_punpun_r2_tbl
- 0x80953D54: cKF_kn_npc_1_punpun_r2_tbl
- 0x80953DC0: cKF_c_npc_1_punpun_r2_tbl
- 0x80953DF8: cKF_ds_npc_1_punpun_r2_tbl
- 0x809540DC: cKF_ba_r_npc_1_punpun_r2
- 0x80954120: cKF_ckcb_r_npc_1_gyafun1_tbl
- 0x8095413C: cKF_kn_npc_1_gyafun1_tbl
- 0x809541A8: cKF_c_npc_1_gyafun1_tbl
- 0x809541E0: cKF_ds_npc_1_gyafun1_tbl
- 0x80954938: npc_1_gyafun10_tex_index
- 0x80954974: npc_1_gyafun11_tex_index
- 0x809549B0: cKF_ba_r_npc_1_gyafun1
- 0x809549F0: cKF_ckcb_r_npc_1_gyafun2_tbl
- 0x80954A0C: cKF_kn_npc_1_gyafun2_tbl
- 0x80954A78: cKF_c_npc_1_gyafun2_tbl
- 0x80954AB0: cKF_ds_npc_1_gyafun2_tbl
- 0x8095505C: npc_1_gyafun20_tex_index
- 0x80955078: npc_1_gyafun21_tex_index
- 0x80955094: cKF_ba_r_npc_1_gyafun2
- 0x809550D8: cKF_ckcb_r_npc_1_shituren1_tbl
- 0x809550F4: cKF_kn_npc_1_shituren1_tbl
- 0x80955160: cKF_c_npc_1_shituren1_tbl
- 0x80955198: cKF_ds_npc_1_shituren1_tbl
- 0x809556A8: npc_1_shituren10_tex_index
- 0x809556D0: npc_1_shituren11_tex_index
- 0x809556F8: cKF_ba_r_npc_1_shituren1
- 0x80955738: cKF_ckcb_r_npc_1_shituren2_tbl
- 0x80955754: cKF_c_npc_1_shituren2_tbl
- 0x809557F8: cKF_ba_r_npc_1_shituren2
- 0x80955838: cKF_ckcb_r_npc_1_shituren_i1_tbl
- 0x80955854: cKF_kn_npc_1_shituren_i1_tbl
- 0x809558C0: cKF_c_npc_1_shituren_i1_tbl
- 0x809558F8: cKF_ds_npc_1_shituren_i1_tbl
- 0x80955D90: npc_1_shituren_i10_tex_index
- 0x80955DB8: npc_1_shituren_i11_tex_index
- 0x80955DE0: cKF_ba_r_npc_1_shituren_i1
- 0x80955E20: cKF_ckcb_r_npc_1_shituren_i2_tbl
- 0x80955E3C: cKF_c_npc_1_shituren_i2_tbl
- 0x80955EE0: cKF_ba_r_npc_1_shituren_i2
- 0x80955F20: cKF_ckcb_r_npc_1_smile1_tbl
- 0x80955F3C: cKF_kn_npc_1_smile1_tbl
- 0x80955F6C: cKF_c_npc_1_smile1_tbl
- 0x80955FE0: cKF_ds_npc_1_smile1_tbl
- 0x80956444: npc_1_smile10_tex_index
- 0x80956450: npc_1_smile11_tex_index
- 0x8095645C: cKF_ba_r_npc_1_smile1
- 0x809564A0: cKF_ckcb_r_npc_1_smile2_tbl
- 0x809564BC: cKF_kn_npc_1_smile2_tbl
- 0x809564DC: cKF_c_npc_1_smile2_tbl
- 0x80956560: cKF_ds_npc_1_smile2_tbl
- 0x80956884: cKF_ba_r_npc_1_smile2
- 0x809568C8: cKF_ckcb_r_npc_1_smile_f1_tbl
- 0x809568E4: cKF_kn_npc_1_smile_f1_tbl
- 0x80956950: cKF_c_npc_1_smile_f1_tbl
- 0x80956988: cKF_ds_npc_1_smile_f1_tbl
- 0x80956D98: npc_1_smile_f10_tex_index
- 0x80956DA4: npc_1_smile_f11_tex_index
- 0x80956DB0: cKF_ba_r_npc_1_smile_f1
- 0x80956DF0: cKF_ckcb_r_npc_1_smile_f2_tbl
- 0x80956E0C: cKF_kn_npc_1_smile_f2_tbl
- 0x80956E78: cKF_c_npc_1_smile_f2_tbl
- 0x80956EB0: cKF_ds_npc_1_smile_f2_tbl
- 0x809572A8: cKF_ba_r_npc_1_smile_f2
- 0x809572E8: cKF_ckcb_r_npc_1_intro1_a_tbl
- 0x80957304: cKF_kn_npc_1_intro1_a_tbl
- 0x80957370: cKF_c_npc_1_intro1_a_tbl
- 0x809573A8: cKF_ds_npc_1_intro1_a_tbl
- 0x80957C74: cKF_ba_r_npc_1_intro1_a
- 0x80957CB8: cKF_ckcb_r_npc_1_intro1_b_tbl
- 0x80957CD4: cKF_kn_npc_1_intro1_b_tbl
- 0x80957D40: cKF_c_npc_1_intro1_b_tbl
- 0x80957D78: cKF_ds_npc_1_intro1_b_tbl
- 0x80958590: cKF_ba_r_npc_1_intro1_b
- 0x809585D0: cKF_ckcb_r_npc_1_kiduku1_tbl
- 0x809585EC: cKF_kn_npc_1_kiduku1_tbl
- 0x80958658: cKF_c_npc_1_kiduku1_tbl
- 0x80958690: cKF_ds_npc_1_kiduku1_tbl
- 0x80958E6C: npc_1_kiduku10_tex_index
- 0x80958EA0: npc_1_kiduku11_tex_index
- 0x80958ED4: cKF_ba_r_npc_1_kiduku1
- 0x80958F18: cKF_ckcb_r_npc_1_kiduku2_tbl
- 0x80958F34: cKF_kn_npc_1_kiduku2_tbl
- 0x80958FA0: cKF_c_npc_1_kiduku2_tbl
- 0x80958FD8: cKF_ds_npc_1_kiduku2_tbl
- 0x80959544: cKF_ba_r_npc_1_kiduku2
- 0x80959588: cKF_ckcb_r_npc_1_taisou1_tbl
- 0x809595A4: cKF_kn_npc_1_taisou1_tbl
- 0x80959610: cKF_c_npc_1_taisou1_tbl
- 0x80959648: cKF_ds_npc_1_taisou1_tbl
- 0x80959C9C: cKF_ba_r_npc_1_taisou1
- 0x80959CE0: cKF_ckcb_r_npc_1_taisou2_tbl
- 0x80959CFC: cKF_kn_npc_1_taisou2_tbl
- 0x80959D68: cKF_c_npc_1_taisou2_tbl
- 0x80959DA0: cKF_ds_npc_1_taisou2_tbl
- 0x8095A378: cKF_ba_r_npc_1_taisou2
- 0x8095A3B8: cKF_ckcb_r_npc_1_taisou3_a_tbl
- 0x8095A3D4: cKF_kn_npc_1_taisou3_a_tbl
- 0x8095A440: cKF_c_npc_1_taisou3_a_tbl
- 0x8095A478: cKF_ds_npc_1_taisou3_a_tbl
- 0x8095AE70: cKF_ba_r_npc_1_taisou3_a
- 0x8095AEB0: cKF_ckcb_r_npc_1_taisou3_b_tbl
- 0x8095AECC: cKF_kn_npc_1_taisou3_b_tbl
- 0x8095AF38: cKF_c_npc_1_taisou3_b_tbl
- 0x8095AF70: cKF_ds_npc_1_taisou3_b_tbl
- 0x8095B968: cKF_ba_r_npc_1_taisou3_b
- 0x8095B9A8: cKF_ckcb_r_npc_1_taisou4_a_tbl
- 0x8095B9C4: cKF_kn_npc_1_taisou4_a_tbl
- 0x8095BA2C: cKF_c_npc_1_taisou4_a_tbl
- 0x8095BA68: cKF_ds_npc_1_taisou4_a_tbl
- 0x8095C1B8: cKF_ba_r_npc_1_taisou4_a
- 0x8095C1F8: cKF_ckcb_r_npc_1_taisou4_b_tbl
- 0x8095C214: cKF_kn_npc_1_taisou4_b_tbl
- 0x8095C27C: cKF_c_npc_1_taisou4_b_tbl
- 0x8095C2B8: cKF_ds_npc_1_taisou4_b_tbl
- 0x8095CA04: cKF_ba_r_npc_1_taisou4_b
- 0x8095CA48: cKF_ckcb_r_npc_1_taisou5_a_tbl
- 0x8095CA64: cKF_kn_npc_1_taisou5_a_tbl
- 0x8095CAD0: cKF_c_npc_1_taisou5_a_tbl
- 0x8095CB08: cKF_ds_npc_1_taisou5_a_tbl
- 0x8095D404: cKF_ba_r_npc_1_taisou5_a
- 0x8095D448: cKF_ckcb_r_npc_1_taisou5_b_tbl
- 0x8095D464: cKF_kn_npc_1_taisou5_b_tbl
- 0x8095D4D0: cKF_c_npc_1_taisou5_b_tbl
- 0x8095D508: cKF_ds_npc_1_taisou5_b_tbl
- 0x8095DE04: cKF_ba_r_npc_1_taisou5_b
- 0x8095DE48: cKF_ckcb_r_npc_1_taisou6_a_tbl
- 0x8095DE64: cKF_kn_npc_1_taisou6_a_tbl
- 0x8095DED0: cKF_c_npc_1_taisou6_a_tbl
- 0x8095DF08: cKF_ds_npc_1_taisou6_a_tbl
- 0x8095E600: cKF_ba_r_npc_1_taisou6_a
- 0x8095E640: cKF_ckcb_r_npc_1_taisou6_b_tbl
- 0x8095E65C: cKF_kn_npc_1_taisou6_b_tbl
- 0x8095E6C8: cKF_c_npc_1_taisou6_b_tbl
- 0x8095E700: cKF_ds_npc_1_taisou6_b_tbl
- 0x8095EDF0: cKF_ba_r_npc_1_taisou6_b
- 0x8095EE30: cKF_ckcb_r_npc_1_taisou7_tbl
- 0x8095EE4C: cKF_kn_npc_1_taisou7_tbl
- 0x8095EEB8: cKF_c_npc_1_taisou7_tbl
- 0x8095EEF0: cKF_ds_npc_1_taisou7_tbl
- 0x8095F78C: cKF_ba_r_npc_1_taisou7
- 0x8095F7D0: cKF_ckcb_r_npc_1_tamahiroi1_tbl
- 0x8095F7EC: cKF_kn_npc_1_tamahiroi1_tbl
- 0x8095F858: cKF_c_npc_1_tamahiroi1_tbl
- 0x8095F890: cKF_ds_npc_1_tamahiroi1_tbl
- 0x80960100: cKF_ba_r_npc_1_tamahiroi1
- 0x80960140: cKF_ckcb_r_npc_1_tamanage1_tbl
- 0x8096015C: cKF_kn_npc_1_tamanage1_tbl
- 0x809601C8: cKF_c_npc_1_tamanage1_tbl
- 0x80960200: cKF_ds_npc_1_tamanage1_tbl
- 0x80960788: cKF_ba_r_npc_1_tamanage1
- 0x809607C8: cKF_ckcb_r_npc_1_asihumi1_tbl
- 0x809607E4: cKF_kn_npc_1_asihumi1_tbl
- 0x80960850: cKF_c_npc_1_asihumi1_tbl
- 0x80960888: cKF_ds_npc_1_asihumi1_tbl
- 0x80960D08: cKF_ba_r_npc_1_asihumi1
- 0x80960D48: cKF_ckcb_r_npc_1_don1_tbl
- 0x80960D64: cKF_kn_npc_1_don1_tbl
- 0x80960DD0: cKF_c_npc_1_don1_tbl
- 0x80960E08: cKF_ds_npc_1_don1_tbl
- 0x809611DC: npc_1_don10_tex_index
- 0x809611EC: npc_1_don11_tex_index
- 0x809611FC: cKF_ba_r_npc_1_don1
- 0x80961240: cKF_ckcb_r_npc_1_kokeru1_tbl
- 0x8096125C: cKF_kn_npc_1_kokeru1_tbl
- 0x809612C8: cKF_c_npc_1_kokeru1_tbl
- 0x80961300: cKF_ds_npc_1_kokeru1_tbl
- 0x80961780: npc_1_kokeru10_tex_index
- 0x80961794: npc_1_kokeru11_tex_index
- 0x809617C4: cKF_ba_r_npc_1_kokeru1
- 0x80961808: cKF_ckcb_r_npc_1_kokeru_getup1_tbl
- 0x80961824: cKF_kn_npc_1_kokeru_getup1_tbl
- 0x80961890: cKF_c_npc_1_kokeru_getup1_tbl
- 0x809618C8: cKF_ds_npc_1_kokeru_getup1_tbl
- 0x80961E68: npc_1_kokeru_getup10_tex_index
- 0x80961E88: npc_1_kokeru_getup11_tex_index
- 0x80961EA8: cKF_ba_r_npc_1_kokeru_getup1
- 0x80961EE8: cKF_ckcb_r_npc_1_ready1_tbl
- 0x80961F04: cKF_kn_npc_1_ready1_tbl
- 0x80961F70: cKF_c_npc_1_ready1_tbl
- 0x80961FA8: cKF_ds_npc_1_ready1_tbl
- 0x8096237C: cKF_ba_r_npc_1_ready1
- 0x809623C0: cKF_ckcb_r_npc_1_tamakome1_tbl
- 0x809623DC: cKF_kn_npc_1_tamakome1_tbl
- 0x80962448: cKF_c_npc_1_tamakome1_tbl
- 0x80962480: cKF_ds_npc_1_tamakome1_tbl
- 0x809627E8: cKF_ba_r_npc_1_tamakome1
- 0x80962828: cKF_ckcb_r_npc_1_tired1_tbl
- 0x80962844: cKF_kn_npc_1_tired1_tbl
- 0x809628B0: cKF_c_npc_1_tired1_tbl
- 0x809628E8: cKF_ds_npc_1_tired1_tbl
- 0x80962CB4: cKF_ba_r_npc_1_tired1
- 0x80962CF8: cKF_ckcb_r_npc_1_warmup1_tbl
- 0x80962D14: cKF_kn_npc_1_warmup1_tbl
- 0x80962D80: cKF_c_npc_1_warmup1_tbl
- 0x80962DB8: cKF_ds_npc_1_warmup1_tbl
- 0x80963598: cKF_ba_r_npc_1_warmup1
- 0x809635D8: cKF_ckcb_r_npc_1_youi1_tbl
- 0x809635F4: cKF_kn_npc_1_youi1_tbl
- 0x80963660: cKF_c_npc_1_youi1_tbl
- 0x80963698: cKF_ds_npc_1_youi1_tbl
- 0x809639D4: cKF_ba_r_npc_1_youi1
- 0x80963A18: cKF_ckcb_r_npc_1_3haku_e1_tbl
- 0x80963A34: cKF_kn_npc_1_3haku_e1_tbl
- 0x80963A9C: cKF_c_npc_1_3haku_e1_tbl
- 0x80963AD8: cKF_ds_npc_1_3haku_e1_tbl
- 0x80963FAC: cKF_ba_r_npc_1_3haku_e1
- 0x80963FF0: cKF_ckcb_r_npc_1_4haku_e1_tbl
- 0x8096400C: cKF_kn_npc_1_4haku_e1_tbl
- 0x80964078: cKF_c_npc_1_4haku_e1_tbl
- 0x809640B0: cKF_ds_npc_1_4haku_e1_tbl
- 0x809645F8: cKF_ba_r_npc_1_4haku_e1
- 0x80964638: cKF_ckcb_r_npc_1_ensou_e1_tbl
- 0x80964654: cKF_kn_npc_1_ensou_e1_tbl
- 0x809646BC: cKF_c_npc_1_ensou_e1_tbl
- 0x809646F8: cKF_ds_npc_1_ensou_e1_tbl
- 0x80964DA0: cKF_ba_r_npc_1_ensou_e1
- 0x80964DE0: cKF_ckcb_r_npc_1_wait_e1_tbl
- 0x80964DFC: cKF_kn_npc_1_wait_e1_tbl
- 0x80964E68: cKF_c_npc_1_wait_e1_tbl
- 0x80964EA0: cKF_ds_npc_1_wait_e1_tbl
- 0x80965220: cKF_ba_r_npc_1_wait_e1
- 0x80965260: cKF_ckcb_r_npc_1_send_mail1_tbl
- 0x8096527C: cKF_kn_npc_1_send_mail1_tbl
- 0x809652E8: cKF_c_npc_1_send_mail1_tbl
- 0x80965320: cKF_ds_npc_1_send_mail1_tbl
- 0x809659F4: cKF_ba_r_npc_1_send_mail1
- 0x80965A38: cKF_ckcb_r_npc_1_trans_wait1_tbl
- 0x80965A54: cKF_kn_npc_1_trans_wait1_tbl
- 0x80965AC0: cKF_c_npc_1_trans_wait1_tbl
- 0x80965AF8: cKF_ds_npc_1_trans_wait1_tbl
- 0x80965E0C: cKF_ba_r_npc_1_trans_wait1
- 0x80965E50: cKF_ckcb_r_npc_1_trans_wait_f1_tbl
- 0x80965E6C: cKF_kn_npc_1_trans_wait_f1_tbl
- 0x80965ED8: cKF_c_npc_1_trans_wait_f1_tbl
- 0x80965F10: cKF_ds_npc_1_trans_wait_f1_tbl
- 0x80966224: cKF_ba_r_npc_1_trans_wait_f1
- 0x80966268: cKF_ckcb_r_npc_1_transfer1_tbl
- 0x80966284: cKF_kn_npc_1_transfer1_tbl
- 0x809662F0: cKF_c_npc_1_transfer1_tbl
- 0x80966328: cKF_ds_npc_1_transfer1_tbl
- 0x80966B4C: cKF_ba_r_npc_1_transfer1
- 0x80966B90: cKF_ckcb_r_npc_1_transfer_f1_tbl
- 0x80966BAC: cKF_kn_npc_1_transfer_f1_tbl
- 0x80966C18: cKF_c_npc_1_transfer_f1_tbl
- 0x80966C50: cKF_ds_npc_1_transfer_f1_tbl
- 0x80967480: cKF_ba_r_npc_1_transfer_f1
- 0x809674C0: cKF_ckcb_r_npc_1_tue_tbl
- 0x809674DC: cKF_kn_npc_1_tue_tbl
- 0x80967548: cKF_c_npc_1_tue_tbl
- 0x80967580: cKF_ds_npc_1_tue_tbl
- 0x80967808: cKF_ba_r_npc_1_tue1
- 0x80967848: cKF_ckcb_r_npc_1_kuisinbo1_tbl
- 0x80967864: cKF_kn_npc_1_kuisinbo1_tbl
- 0x809678D0: cKF_c_npc_1_kuisinbo1_tbl
- 0x80967908: cKF_ds_npc_1_kuisinbo1_tbl
- 0x80968084: npc_1_kuisinbo10_tex_index
- 0x809680C4: cKF_ba_r_npc_1_kuisinbo1
- 0x80968108: cKF_ckcb_r_npc_1_sanbasi1_tbl
- 0x80968124: cKF_kn_npc_1_sanbasi1_tbl
- 0x80968190: cKF_c_npc_1_sanbasi1_tbl
- 0x809681C8: cKF_ds_npc_1_sanbasi1_tbl
- 0x809685D8: cKF_ba_r_npc_1_sanbasi1
- 0x80968618: cKF_ckcb_r_npc_1_hatafuri1_tbl
- 0x80968634: cKF_kn_npc_1_hatafuri1_tbl
- 0x809686A0: cKF_c_npc_1_hatafuri1_tbl
- 0x809686D8: cKF_ds_npc_1_hatafuri1_tbl
- 0x80968E7C: npc_1_hatafuri10_tex_index
- 0x80968EB8: cKF_ba_r_npc_1_hatafuri1
- 0x80968EF8: cKF_ckcb_r_npc_1_tunahiki_aiko1_tbl
- 0x80968F14: cKF_kn_npc_1_tunahiki_aiko1_tbl
- 0x80968F80: cKF_c_npc_1_tunahiki_aiko1_tbl
- 0x80968FB8: cKF_ds_npc_1_tunahiki_aiko1_tbl
- 0x8096945C: cKF_ba_r_npc_1_tunahiki_aiko1
- 0x809694A0: cKF_ckcb_r_npc_1_tunahiki_furi1_tbl
- 0x809694BC: cKF_kn_npc_1_tunahiki_furi1_tbl
- 0x80969528: cKF_c_npc_1_tunahiki_furi1_tbl
- 0x80969560: cKF_ds_npc_1_tunahiki_furi1_tbl
- 0x80969B0C: npc_1_tunahiki_furi10_tex_index
- 0x80969B30: npc_1_tunahiki_furi11_tex_index
- 0x80969B54: cKF_ba_r_npc_1_tunahiki_furi1
- 0x80969B98: cKF_ckcb_r_npc_1_tunahiki_yuri1_tbl
- 0x80969BB4: cKF_kn_npc_1_tunahiki_yuri1_tbl
- 0x80969C20: cKF_c_npc_1_tunahiki_yuri1_tbl
- 0x80969C58: cKF_ds_npc_1_tunahiki_yuri1_tbl
- 0x8096A158: npc_1_tunahiki_yuri10_tex_index
- 0x8096A17C: npc_1_tunahiki_yuri11_tex_index
- 0x8096A1A0: cKF_ba_r_npc_1_tunahiki_yuri1
- 0x8096A1E0: cKF_ckcb_r_npc_1_turi_wait1_tbl
- 0x8096A1FC: cKF_kn_npc_1_turi_wait1_tbl
- 0x8096A268: cKF_c_npc_1_turi_wait1_tbl
- 0x8096A2A0: cKF_ds_npc_1_turi_wait1_tbl
- 0x8096A638: cKF_ba_r_npc_1_turi_wait1
- 0x8096A678: cKF_ckcb_r_npc_1_tkykyoro1_tbl
- 0x8096A694: cKF_kn_npc_1_tkykyoro1_tbl
- 0x8096A6FC: cKF_c_npc_1_tkykyoro1_tbl
- 0x8096A738: cKF_ds_npc_1_tkykyoro1_tbl
- 0x8096B118: npc_1_tkykyoro11_tex_index
- 0x8096B198: cKF_ba_r_npc_1_tkykyoro1
- 0x8096B1D8: cKF_ckcb_r_npc_1_umb_close1_tbl
- 0x8096B1F4: cKF_kn_npc_1_umb_close1_tbl
- 0x8096B260: cKF_c_npc_1_umb_close1_tbl
- 0x8096B298: cKF_ds_npc_1_umb_close1_tbl
- 0x8096B990: cKF_ba_r_npc_1_umb_close1
- 0x8096B9D0: cKF_ckcb_r_npc_1_umb_open1_tbl
- 0x8096B9EC: cKF_kn_npc_1_umb_open1_tbl
- 0x8096BA30: cKF_c_npc_1_umb_open1_tbl
- 0x8096BA90: cKF_ds_npc_1_umb_open1_tbl
- 0x8096C228: cKF_ba_r_npc_1_umb_open1
- 0x8096C268: cKF_ckcb_r_npc_1_umbrella1_tbl
- 0x8096C284: cKF_c_npc_1_umbrella1_tbl
- 0x8096C328: cKF_ba_r_npc_1_umbrella1
- 0x8096C368: cKF_ckcb_r_npc_1_warudakumi1_tbl
- 0x8096C384: cKF_kn_npc_1_warudakumi1_tbl
- 0x8096C3E8: cKF_c_npc_1_warudakumi1_tbl
- 0x8096C428: cKF_ds_npc_1_warudakumi1_tbl
- 0x8096C70C: npc_1_warudakumi10_tex_index
- 0x8096C718: npc_1_warudakumi11_tex_index
- 0x8096C724: cKF_ba_r_npc_1_warudakumi1
- 0x8096C768: cKF_ckcb_r_npc_1_warudakumi2_tbl
- 0x8096C784: cKF_kn_npc_1_warudakumi2_tbl
- 0x8096C7F0: cKF_c_npc_1_warudakumi2_tbl
- 0x8096C828: cKF_ds_npc_1_warudakumi2_tbl
- 0x8096CD4C: cKF_ba_r_npc_1_warudakumi2
- 0x8096CD90: npc_def_list
- 0x8096D328: npc_draw_data_tbl
- 0x80977450: npc_grow_list
- 0x80977540: npc_house_list
- 0x80977CB0: oct_1_v
- 0x80979A30: head_oct_model
- 0x80979B38: Rarm2_oct_model
- 0x80979BE0: Rarm1_oct_model
- 0x80979C60: Larm2_oct_model
- 0x80979D10: Larm1_oct_model
- 0x80979D90: chest_oct_model
- 0x80979E38: Rfoot3_oct_model
- 0x80979EF8: Rfoot2_oct_model
- 0x80979FB8: Rfoot1_oct_model
- 0x8097A070: Lfoot3_oct_model
- 0x8097A130: Lfoot2_oct_model
- 0x8097A1F0: Lfoot1_oct_model
- 0x8097A2B0: base_oct_model
- 0x8097A320: cKF_je_r_oct_1_tbl
- 0x8097A458: cKF_bs_r_oct_1
- 0x8097A460: oct_1_pal
- 0x8097A480: oct_1_eye1_TA_tex_txt
- 0x8097A580: oct_1_eye2_TA_tex_txt
- 0x8097A680: oct_1_eye3_TA_tex_txt
- 0x8097A780: oct_1_eye4_TA_tex_txt
- 0x8097A880: oct_1_eye5_TA_tex_txt
- 0x8097A980: oct_1_eye6_TA_tex_txt
- 0x8097AA80: oct_1_eye7_TA_tex_txt
- 0x8097AB80: oct_1_eye8_TA_tex_txt
- 0x8097AC80: oct_1_tmem_txt
- 0x8097AE80: ost_1_v
- 0x8097C650: head_ost_model
- 0x8097C820: mouth_ost_model
- 0x8097C898: Rarm2_ost_model
- 0x8097C918: Rarm1_ost_model
- 0x8097C990: Larm2_ost_model
- 0x8097CA10: Larm1_ost_model
- 0x8097CA88: chest_ost_model
- 0x8097CB60: tail_ost_model
- 0x8097CC58: Rfoot3_ost_model
- 0x8097CCF8: Rfoot2_ost_model
- 0x8097CD78: Rfoot1_ost_model
- 0x8097CDD0: Lfoot3_ost_model
- 0x8097CE70: Lfoot2_ost_model
- 0x8097CEF0: Lfoot1_ost_model
- 0x8097CF48: base_ost_model
- 0x8097CFC0: cKF_je_r_ost_1_tbl
- 0x8097D0F8: cKF_bs_r_ost_1
- 0x8097D100: ost_1_pal
- 0x8097D120: ost_1_eye1_TA_tex_txt
- 0x8097D220: ost_1_eye2_TA_tex_txt
- 0x8097D320: ost_1_eye3_TA_tex_txt
- 0x8097D420: ost_1_eye4_TA_tex_txt
- 0x8097D520: ost_1_eye5_TA_tex_txt
- 0x8097D620: ost_1_eye6_TA_tex_txt
- 0x8097D720: ost_1_eye7_TA_tex_txt
- 0x8097D820: ost_1_eye8_TA_tex_txt
- 0x8097D920: ost_1_tmem_txt
- 0x8097DE60: ost_2_pal
- 0x8097DE80: ost_2_eye1_TA_tex_txt
- 0x8097DF80: ost_2_eye2_TA_tex_txt
- 0x8097E080: ost_2_eye3_TA_tex_txt
- 0x8097E180: ost_2_eye4_TA_tex_txt
- 0x8097E280: ost_2_eye5_TA_tex_txt
- 0x8097E380: ost_2_eye6_TA_tex_txt
- 0x8097E480: ost_2_eye7_TA_tex_txt
- 0x8097E580: ost_2_eye8_TA_tex_txt
- 0x8097E680: ost_2_tmem_txt
- 0x8097EBC0: ost_3_pal
- 0x8097EBE0: ost_3_eye1_TA_tex_txt
- 0x8097ECE0: ost_3_eye2_TA_tex_txt
- 0x8097EDE0: ost_3_eye3_TA_tex_txt
- 0x8097EEE0: ost_3_eye4_TA_tex_txt
- 0x8097EFE0: ost_3_eye5_TA_tex_txt
- 0x8097F0E0: ost_3_eye6_TA_tex_txt
- 0x8097F1E0: ost_3_eye7_TA_tex_txt
- 0x8097F2E0: ost_3_eye8_TA_tex_txt
- 0x8097F3E0: ost_3_tmem_txt
- 0x8097F920: ost_4_pal
- 0x8097F940: ost_4_eye1_TA_tex_txt
- 0x8097FA40: ost_4_eye2_TA_tex_txt
- 0x8097FB40: ost_4_eye3_TA_tex_txt
- 0x8097FC40: ost_4_eye4_TA_tex_txt
- 0x8097FD40: ost_4_eye5_TA_tex_txt
- 0x8097FE40: ost_4_eye6_TA_tex_txt
- 0x8097FF40: ost_4_eye7_TA_tex_txt
- 0x80980040: ost_4_eye8_TA_tex_txt
- 0x80980140: ost_4_tmem_txt
- 0x80980680: player_room_island_info
- 0x809806C8: PLAYER_ROOM_ISLAND_player_data
- 0x809806D8: PLAYER_ROOM_ISLAND_ctrl_actor_data
- 0x809806F0: PLAYER_ROOM_ISLAND_actor_data
- 0x80980710: PLAYER_ROOM_ISLAND_object_bank
- 0x80980714: PLAYER_ROOM_ISLAND_door_data
- 0x80980728: player_room_ll1_info
- 0x80980770: PLAYER_ROOM_LL1_player_data
- 0x80980780: PLAYER_ROOM_LL1_ctrl_actor_data
- 0x80980798: PLAYER_ROOM_LL1_actor_data
- 0x809807B8: PLAYER_ROOM_LL1_object_bank
- 0x809807BC: PLAYER_ROOM_LL1_door_data
- 0x809807E8: player_room_ll2_info
- 0x80980830: PLAYER_ROOM_LL2_player_data
- 0x80980840: PLAYER_ROOM_LL2_ctrl_actor_data
- 0x80980858: PLAYER_ROOM_LL2_actor_data
- 0x80980878: PLAYER_ROOM_LL2_object_bank
- 0x8098087C: PLAYER_ROOM_LL2_door_data
- 0x80980890: player_room_l_info
- 0x809808D8: PLAYER_ROOM_L_player_data
- 0x809808E8: PLAYER_ROOM_L_ctrl_actor_data
- 0x80980900: PLAYER_ROOM_L_actor_data
- 0x80980920: PLAYER_ROOM_L_object_bank
- 0x80980924: PLAYER_ROOM_L_door_data
- 0x80980938: player_room_m_info
- 0x80980980: PLAYER_ROOM_M_player_data
- 0x80980990: PLAYER_ROOM_M_ctrl_actor_data
- 0x809809A8: PLAYER_ROOM_M_actor_data
- 0x809809C8: PLAYER_ROOM_M_object_bank
- 0x809809CC: PLAYER_ROOM_M_door_data
- 0x809809E0: player_room_s_info
- 0x80980A28: PLAYER_ROOM_S_player_data
- 0x80980A38: PLAYER_ROOM_S_ctrl_actor_data
- 0x80980A50: PLAYER_ROOM_S_actor_data
- 0x80980A70: PLAYER_ROOM_S_object_bank
- 0x80980A74: PLAYER_ROOM_S_door_data
- 0x80980A88: PLAYER_SELECT2_info
- 0x80980AB8: PLAYER_SELECT2_player_data
- 0x80980AC8: PLAYER_SELECT2_ctrl_actor_data
- 0x80980AD0: PLAYER_SELECT3_info
- 0x80980B00: PLAYER_SELECT3_player_data
- 0x80980B10: PLAYER_SELECT3_ctrl_actor_data
- 0x80980B18: PLAYER_SELECT4_info
- 0x80980B48: PLAYER_SELECT4_player_data
- 0x80980B58: PLAYER_SELECT4_ctrl_actor_data
- 0x80980B60: player_select_info
- 0x80980B90: PLAYER_SELECT_player_data
- 0x80980BA0: PLAYER_SELECT_ctrl_actor_data
- 0x80980BA8: police_box_info
- 0x80980BE8: POLICE_BOX_player_data
- 0x80980BF8: POLICE_BOX_ctrl_actor_data
- 0x80980C0C: POLICE_BOX_actor_data
- 0x80980C2C: POLICE_BOX_object_bank
- 0x80980C30: POLICE_BOX_door_data
- 0x80980C48: post_office_info
- 0x80980C90: POST_OFFICE_player_data
- 0x80980CA0: POST_OFFICE_ctrl_actor_data
- 0x80980CB4: POST_OFFICE_actor_data
- 0x80980CE4: POST_OFFICE_object_bank
- 0x80980CE8: POST_OFFICE_door_data
- 0x80980D00: p_room_bm_ll1_info
- 0x80980D40: P_ROOM_BM_LL1_player_data
- 0x80980D50: P_ROOM_BM_LL1_ctrl_actor_data
- 0x80980D68: P_ROOM_BM_LL1_object_bank
- 0x80980D6C: P_ROOM_BM_LL1_door_data
- 0x80980D80: p_room_bm_l_info
- 0x80980DC0: P_ROOM_BM_L_player_data
- 0x80980DD0: P_ROOM_BM_L_ctrl_actor_data
- 0x80980DE8: P_ROOM_BM_L_object_bank
- 0x80980DEC: P_ROOM_BM_L_door_data
- 0x80980E00: p_room_bm_m_info
- 0x80980E40: P_ROOM_BM_M_player_data
- 0x80980E50: P_ROOM_BM_M_ctrl_actor_data
- 0x80980E68: P_ROOM_BM_M_object_bank
- 0x80980E6C: P_ROOM_BM_M_door_data
- 0x80980E80: p_room_bm_s_info
- 0x80980EC0: P_ROOM_BM_S_player_data
- 0x80980ED0: P_ROOM_BM_S_ctrl_actor_data
- 0x80980EE8: P_ROOM_BM_S_object_bank
- 0x80980EEC: P_ROOM_BM_S_door_data
- 0x80980F00: pswd_famicom_list_max
- 0x80980F04: pswd_famicom_list
- 0x80980F28: pgn_1_v
- 0x80982708: head_pgn_model
- 0x809828D8: mouth_pgn_model
- 0x80982950: Rarm2_pgn_model
- 0x809829D0: Rarm1_pgn_model
- 0x80982A48: Larm2_pgn_model
- 0x80982AC8: Larm1_pgn_model
- 0x80982B40: chest_pgn_model
- 0x80982C18: tail1_pgn_model
- 0x80982CA0: Rfoot3_pgn_model
- 0x80982D28: Rfoot2_pgn_model
- 0x80982DA8: Rfoot1_pgn_model
- 0x80982E00: Lfoot3_pgn_model
- 0x80982E88: Lfoot2_pgn_model
- 0x80982F08: Lfoot1_pgn_model
- 0x80982F60: base_pgn_model
- 0x80983000: cKF_je_r_pgn_1_tbl
- 0x80983138: cKF_bs_r_pgn_1
- 0x80983140: pgn_1_pal
- 0x80983160: pgn_1_eye1_TA_tex_txt
- 0x80983260: pgn_1_eye2_TA_tex_txt
- 0x80983360: pgn_1_eye3_TA_tex_txt
- 0x80983460: pgn_1_eye4_TA_tex_txt
- 0x80983560: pgn_1_eye5_TA_tex_txt
- 0x80983660: pgn_1_eye6_TA_tex_txt
- 0x80983760: pgn_1_eye7_TA_tex_txt
- 0x80983860: pgn_1_eye8_TA_tex_txt
- 0x80983960: pgn_1_tmem_txt
- 0x80983EE0: pgn_2_pal
- 0x80983F00: pgn_2_eye1_TA_tex_txt
- 0x80984000: pgn_2_eye2_TA_tex_txt
- 0x80984100: pgn_2_eye3_TA_tex_txt
- 0x80984200: pgn_2_eye4_TA_tex_txt
- 0x80984300: pgn_2_eye5_TA_tex_txt
- 0x80984400: pgn_2_eye6_TA_tex_txt
- 0x80984500: pgn_2_eye7_TA_tex_txt
- 0x80984600: pgn_2_eye8_TA_tex_txt
- 0x80984700: pgn_2_tmem_txt
- 0x80984C80: pgn_3_pal
- 0x80984CA0: pgn_3_eye1_TA_tex_txt
- 0x80984DA0: pgn_3_eye2_TA_tex_txt
- 0x80984EA0: pgn_3_eye3_TA_tex_txt
- 0x80984FA0: pgn_3_eye4_TA_tex_txt
- 0x809850A0: pgn_3_eye5_TA_tex_txt
- 0x809851A0: pgn_3_eye6_TA_tex_txt
- 0x809852A0: pgn_3_eye7_TA_tex_txt
- 0x809853A0: pgn_3_eye8_TA_tex_txt
- 0x809854A0: pgn_3_tmem_txt
- 0x80985A20: pgn_4_pal
- 0x80985A40: pgn_4_eye1_TA_tex_txt
- 0x80985B40: pgn_4_eye2_TA_tex_txt
- 0x80985C40: pgn_4_eye3_TA_tex_txt
- 0x80985D40: pgn_4_eye4_TA_tex_txt
- 0x80985E40: pgn_4_eye5_TA_tex_txt
- 0x80985F40: pgn_4_eye6_TA_tex_txt
- 0x80986040: pgn_4_eye7_TA_tex_txt
- 0x80986140: pgn_4_eye8_TA_tex_txt
- 0x80986240: pgn_4_tmem_txt
- 0x809867C0: pgn_5_pal
- 0x809867E0: pgn_5_eye1_TA_tex_txt
- 0x809868E0: pgn_5_eye2_TA_tex_txt
- 0x809869E0: pgn_5_eye3_TA_tex_txt
- 0x80986AE0: pgn_5_eye4_TA_tex_txt
- 0x80986BE0: pgn_5_eye5_TA_tex_txt
- 0x80986CE0: pgn_5_eye6_TA_tex_txt
- 0x80986DE0: pgn_5_eye7_TA_tex_txt
- 0x80986EE0: pgn_5_eye8_TA_tex_txt
- 0x80986FE0: pgn_5_tmem_txt
- 0x80987560: pgn_6_pal
- 0x80987580: pgn_6_eye1_TA_tex_txt
- 0x80987680: pgn_6_eye2_TA_tex_txt
- 0x80987780: pgn_6_eye3_TA_tex_txt
- 0x80987880: pgn_6_eye4_TA_tex_txt
- 0x80987980: pgn_6_eye5_TA_tex_txt
- 0x80987A80: pgn_6_eye6_TA_tex_txt
- 0x80987B80: pgn_6_eye7_TA_tex_txt
- 0x80987C80: pgn_6_eye8_TA_tex_txt
- 0x80987D80: pgn_6_tmem_txt
- 0x80988300: pgn_7_pal
- 0x80988320: pgn_7_eye1_TA_tex_txt
- 0x80988420: pgn_7_eye2_TA_tex_txt
- 0x80988520: pgn_7_eye3_TA_tex_txt
- 0x80988620: pgn_7_eye4_TA_tex_txt
- 0x80988720: pgn_7_eye5_TA_tex_txt
- 0x80988820: pgn_7_eye6_TA_tex_txt
- 0x80988920: pgn_7_eye7_TA_tex_txt
- 0x80988A20: pgn_7_eye8_TA_tex_txt
- 0x80988B20: pgn_7_tmem_txt
- 0x809890A0: pgn_8_pal
- 0x809890C0: pgn_8_eye1_TA_tex_txt
- 0x809891C0: pgn_8_eye2_TA_tex_txt
- 0x809892C0: pgn_8_eye3_TA_tex_txt
- 0x809893C0: pgn_8_eye4_TA_tex_txt
- 0x809894C0: pgn_8_eye5_TA_tex_txt
- 0x809895C0: pgn_8_eye6_TA_tex_txt
- 0x809896C0: pgn_8_eye7_TA_tex_txt
- 0x809897C0: pgn_8_eye8_TA_tex_txt
- 0x809898C0: pgn_8_tmem_txt
- 0x80989E40: pig_1_v
- 0x8098B230: head_pig_model
- 0x8098B368: Rarm2_pig_model
- 0x8098B3F0: Rarm1_pig_model
- 0x8098B468: Larm2_pig_model
- 0x8098B4F0: Larm1_pig_model
- 0x8098B568: chest_pig_model
- 0x8098B610: tail1_pig_model
- 0x8098B690: Rfoot2_pig_model
- 0x8098B710: Rfoot1_pig_model
- 0x8098B7D0: Lfoot2_pig_model
- 0x8098B850: Lfoot1_pig_model
- 0x8098B910: base_pig_model
- 0x8098B980: cKF_je_r_pig_1_tbl
- 0x8098BAB8: cKF_bs_r_pig_1
- 0x8098BAC0: pig_1_pal
- 0x8098BAE0: pig_1_eye1_TA_tex_txt
- 0x8098BBE0: pig_1_eye2_TA_tex_txt
- 0x8098BCE0: pig_1_eye3_TA_tex_txt
- 0x8098BDE0: pig_1_eye4_TA_tex_txt
- 0x8098BEE0: pig_1_eye5_TA_tex_txt
- 0x8098BFE0: pig_1_eye6_TA_tex_txt
- 0x8098C0E0: pig_1_eye7_TA_tex_txt
- 0x8098C1E0: pig_1_eye8_TA_tex_txt
- 0x8098C2E0: pig_1_mouth1_TA_tex_txt
- 0x8098C3E0: pig_1_mouth2_TA_tex_txt
- 0x8098C4E0: pig_1_mouth3_TA_tex_txt
- 0x8098C5E0: pig_1_mouth4_TA_tex_txt
- 0x8098C6E0: pig_1_mouth5_TA_tex_txt
- 0x8098C7E0: pig_1_mouth6_TA_tex_txt
- 0x8098C8E0: pig_1_tmem_txt
- 0x8098CC60: pig_2_pal
- 0x8098CC80: pig_2_eye1_TA_tex_txt
- 0x8098CD80: pig_2_eye2_TA_tex_txt
- 0x8098CE80: pig_2_eye3_TA_tex_txt
- 0x8098CF80: pig_2_eye4_TA_tex_txt
- 0x8098D080: pig_2_eye5_TA_tex_txt
- 0x8098D180: pig_2_eye6_TA_tex_txt
- 0x8098D280: pig_2_eye7_TA_tex_txt
- 0x8098D380: pig_2_eye8_TA_tex_txt
- 0x8098D480: pig_2_mouth1_TA_tex_txt
- 0x8098D580: pig_2_mouth2_TA_tex_txt
- 0x8098D680: pig_2_mouth3_TA_tex_txt
- 0x8098D780: pig_2_mouth4_TA_tex_txt
- 0x8098D880: pig_2_mouth5_TA_tex_txt
- 0x8098D980: pig_2_mouth6_TA_tex_txt
- 0x8098DA80: pig_2_tmem_txt
- 0x8098DE00: pig_11_pal
- 0x8098DE20: pig_11_eye1_TA_tex_txt
- 0x8098DF20: pig_11_eye2_TA_tex_txt
- 0x8098E020: pig_11_eye3_TA_tex_txt
- 0x8098E120: pig_11_eye4_TA_tex_txt
- 0x8098E220: pig_11_eye5_TA_tex_txt
- 0x8098E320: pig_11_eye6_TA_tex_txt
- 0x8098E420: pig_11_eye7_TA_tex_txt
- 0x8098E520: pig_11_eye8_TA_tex_txt
- 0x8098E620: pig_11_mouth1_TA_tex_txt
- 0x8098E720: pig_11_mouth2_TA_tex_txt
- 0x8098E820: pig_11_mouth3_TA_tex_txt
- 0x8098E920: pig_11_mouth4_TA_tex_txt
- 0x8098EA20: pig_11_mouth5_TA_tex_txt
- 0x8098EB20: pig_11_mouth6_TA_tex_txt
- 0x8098EC20: pig_11_tmem_txt
- 0x8098EFA0: pig_3_pal
- 0x8098EFC0: pig_3_eye1_TA_tex_txt
- 0x8098F0C0: pig_3_eye2_TA_tex_txt
- 0x8098F1C0: pig_3_eye3_TA_tex_txt
- 0x8098F2C0: pig_3_eye4_TA_tex_txt
- 0x8098F3C0: pig_3_eye5_TA_tex_txt
- 0x8098F4C0: pig_3_eye6_TA_tex_txt
- 0x8098F5C0: pig_3_eye7_TA_tex_txt
- 0x8098F6C0: pig_3_eye8_TA_tex_txt
- 0x8098F7C0: pig_3_mouth1_TA_tex_txt
- 0x8098F8C0: pig_3_mouth2_TA_tex_txt
- 0x8098F9C0: pig_3_mouth3_TA_tex_txt
- 0x8098FAC0: pig_3_mouth4_TA_tex_txt
- 0x8098FBC0: pig_3_mouth5_TA_tex_txt
- 0x8098FCC0: pig_3_mouth6_TA_tex_txt
- 0x8098FDC0: pig_3_tmem_txt
- 0x80990140: pig_4_pal
- 0x80990160: pig_4_eye1_TA_tex_txt
- 0x80990260: pig_4_eye2_TA_tex_txt
- 0x80990360: pig_4_eye3_TA_tex_txt
- 0x80990460: pig_4_eye4_TA_tex_txt
- 0x80990560: pig_4_eye5_TA_tex_txt
- 0x80990660: pig_4_eye6_TA_tex_txt
- 0x80990760: pig_4_eye7_TA_tex_txt
- 0x80990860: pig_4_eye8_TA_tex_txt
- 0x80990960: pig_4_mouth1_TA_tex_txt
- 0x80990A60: pig_4_mouth2_TA_tex_txt
- 0x80990B60: pig_4_mouth3_TA_tex_txt
- 0x80990C60: pig_4_mouth4_TA_tex_txt
- 0x80990D60: pig_4_mouth5_TA_tex_txt
- 0x80990E60: pig_4_mouth6_TA_tex_txt
- 0x80990F60: pig_4_tmem_txt
- 0x809912E0: pig_5_pal
- 0x80991300: pig_5_eye1_TA_tex_txt
- 0x80991400: pig_5_eye2_TA_tex_txt
- 0x80991500: pig_5_eye3_TA_tex_txt
- 0x80991600: pig_5_eye4_TA_tex_txt
- 0x80991700: pig_5_eye5_TA_tex_txt
- 0x80991800: pig_5_eye6_TA_tex_txt
- 0x80991900: pig_5_eye7_TA_tex_txt
- 0x80991A00: pig_5_eye8_TA_tex_txt
- 0x80991B00: pig_5_mouth1_TA_tex_txt
- 0x80991C00: pig_5_mouth2_TA_tex_txt
- 0x80991D00: pig_5_mouth3_TA_tex_txt
- 0x80991E00: pig_5_mouth4_TA_tex_txt
- 0x80991F00: pig_5_mouth5_TA_tex_txt
- 0x80992000: pig_5_mouth6_TA_tex_txt
- 0x80992100: pig_5_tmem_txt
- 0x80992480: pig_6_pal
- 0x809924A0: pig_6_eye1_TA_tex_txt
- 0x809925A0: pig_6_eye2_TA_tex_txt
- 0x809926A0: pig_6_eye3_TA_tex_txt
- 0x809927A0: pig_6_eye4_TA_tex_txt
- 0x809928A0: pig_6_eye5_TA_tex_txt
- 0x809929A0: pig_6_eye6_TA_tex_txt
- 0x80992AA0: pig_6_eye7_TA_tex_txt
- 0x80992BA0: pig_6_eye8_TA_tex_txt
- 0x80992CA0: pig_6_mouth1_TA_tex_txt
- 0x80992DA0: pig_6_mouth2_TA_tex_txt
- 0x80992EA0: pig_6_mouth3_TA_tex_txt
- 0x80992FA0: pig_6_mouth4_TA_tex_txt
- 0x809930A0: pig_6_mouth5_TA_tex_txt
- 0x809931A0: pig_6_mouth6_TA_tex_txt
- 0x809932A0: pig_6_tmem_txt
- 0x80993620: pig_7_pal
- 0x80993640: pig_7_eye1_TA_tex_txt
- 0x80993740: pig_7_eye2_TA_tex_txt
- 0x80993840: pig_7_eye3_TA_tex_txt
- 0x80993940: pig_7_eye4_TA_tex_txt
- 0x80993A40: pig_7_eye5_TA_tex_txt
- 0x80993B40: pig_7_eye6_TA_tex_txt
- 0x80993C40: pig_7_eye7_TA_tex_txt
- 0x80993D40: pig_7_eye8_TA_tex_txt
- 0x80993E40: pig_7_mouth1_TA_tex_txt
- 0x80993F40: pig_7_mouth2_TA_tex_txt
- 0x80994040: pig_7_mouth3_TA_tex_txt
- 0x80994140: pig_7_mouth4_TA_tex_txt
- 0x80994240: pig_7_mouth5_TA_tex_txt
- 0x80994340: pig_7_mouth6_TA_tex_txt
- 0x80994440: pig_7_tmem_txt
- 0x809947C0: pig_8_pal
- 0x809947E0: pig_8_eye1_TA_tex_txt
- 0x809948E0: pig_8_eye2_TA_tex_txt
- 0x809949E0: pig_8_eye3_TA_tex_txt
- 0x80994AE0: pig_8_eye4_TA_tex_txt
- 0x80994BE0: pig_8_eye5_TA_tex_txt
- 0x80994CE0: pig_8_eye6_TA_tex_txt
- 0x80994DE0: pig_8_eye7_TA_tex_txt
- 0x80994EE0: pig_8_eye8_TA_tex_txt
- 0x80994FE0: pig_8_mouth1_TA_tex_txt
- 0x809950E0: pig_8_mouth2_TA_tex_txt
- 0x809951E0: pig_8_mouth3_TA_tex_txt
- 0x809952E0: pig_8_mouth4_TA_tex_txt
- 0x809953E0: pig_8_mouth5_TA_tex_txt
- 0x809954E0: pig_8_mouth6_TA_tex_txt
- 0x809955E0: pig_8_tmem_txt
- 0x80995960: pig_9_pal
- 0x80995980: pig_9_eye1_TA_tex_txt
- 0x80995A80: pig_9_eye2_TA_tex_txt
- 0x80995B80: pig_9_eye3_TA_tex_txt
- 0x80995C80: pig_9_eye4_TA_tex_txt
- 0x80995D80: pig_9_eye5_TA_tex_txt
- 0x80995E80: pig_9_eye6_TA_tex_txt
- 0x80995F80: pig_9_eye7_TA_tex_txt
- 0x80996080: pig_9_eye8_TA_tex_txt
- 0x80996180: pig_9_mouth1_TA_tex_txt
- 0x80996280: pig_9_mouth2_TA_tex_txt
- 0x80996380: pig_9_mouth3_TA_tex_txt
- 0x80996480: pig_9_mouth4_TA_tex_txt
- 0x80996580: pig_9_mouth5_TA_tex_txt
- 0x80996680: pig_9_mouth6_TA_tex_txt
- 0x80996780: pig_9_tmem_txt
- 0x80996B00: pig_10_pal
- 0x80996B20: pig_10_eye1_TA_tex_txt
- 0x80996C20: pig_10_eye2_TA_tex_txt
- 0x80996D20: pig_10_eye3_TA_tex_txt
- 0x80996E20: pig_10_eye4_TA_tex_txt
- 0x80996F20: pig_10_eye5_TA_tex_txt
- 0x80997020: pig_10_eye6_TA_tex_txt
- 0x80997120: pig_10_eye7_TA_tex_txt
- 0x80997220: pig_10_eye8_TA_tex_txt
- 0x80997320: pig_10_mouth1_TA_tex_txt
- 0x80997420: pig_10_mouth2_TA_tex_txt
- 0x80997520: pig_10_mouth3_TA_tex_txt
- 0x80997620: pig_10_mouth4_TA_tex_txt
- 0x80997720: pig_10_mouth5_TA_tex_txt
- 0x80997820: pig_10_mouth6_TA_tex_txt
- 0x80997920: pig_10_tmem_txt
- 0x80997CA0: pla_1_v
- 0x80999950: head_pla_model
- 0x80999C08: Rarm2_pla_model
- 0x80999C90: Rarm1_pla_model
- 0x80999D08: Larm2_pla_model
- 0x80999D90: Larm1_pla_model
- 0x80999E08: chest_pla_model
- 0x80999F00: tail1_pla_model
- 0x80999F88: Rfoot2_pla_model
- 0x8099A008: Rfoot1_pla_model
- 0x8099A060: Lfoot2_pla_model
- 0x8099A0E0: Lfoot1_pla_model
- 0x8099A138: base_pla_model
- 0x8099A1D8: cKF_je_r_pla_1_tbl
- 0x8099A310: cKF_bs_r_pla_1
- 0x8099A318: plc_1_v
- 0x8099BA48: head_plc_model
- 0x8099BBE0: Rarm2_plc_model
- 0x8099BC60: Rarm1_plc_model
- 0x8099BCE8: Larm2_plc_model
- 0x8099BD68: Larm1_plc_model
- 0x8099BDF0: chest_plc_model
- 0x8099BEF8: tail1_plc_model
- 0x8099BF50: tail2_plc_model
- 0x8099BFF0: Rfoot2_plc_model
- 0x8099C078: Rfoot1_plc_model
- 0x8099C0F8: Lfoot2_plc_model
- 0x8099C180: Lfoot1_plc_model
- 0x8099C200: base_plc_model
- 0x8099C2D0: cKF_je_r_plc_1_tbl
- 0x8099C408: cKF_bs_r_plc_1
- 0x8099C420: plc_1_pal
- 0x8099C440: plc_1_eye1_TA_tex_txt
- 0x8099C540: plc_1_eye2_TA_tex_txt
- 0x8099C640: plc_1_eye3_TA_tex_txt
- 0x8099C740: plc_1_eye4_TA_tex_txt
- 0x8099C840: plc_1_eye5_TA_tex_txt
- 0x8099C940: plc_1_eye6_TA_tex_txt
- 0x8099CA40: plc_1_eye7_TA_tex_txt
- 0x8099CB40: plc_1_eye8_TA_tex_txt
- 0x8099CC40: plc_1_mouth1_TA_tex_txt
- 0x8099CD40: plc_1_mouth2_TA_tex_txt
- 0x8099CE40: plc_1_mouth3_TA_tex_txt
- 0x8099CF40: plc_1_mouth4_TA_tex_txt
- 0x8099D040: plc_1_mouth5_TA_tex_txt
- 0x8099D140: plc_1_mouth6_TA_tex_txt
- 0x8099D240: plc_1_tmem_txt
- 0x8099D900: pla_1_pal
- 0x8099D920: pla_1_eye1_TA_tex_txt
- 0x8099DA20: pla_1_eye2_TA_tex_txt
- 0x8099DB20: pla_1_eye3_TA_tex_txt
- 0x8099DC20: pla_1_eye4_TA_tex_txt
- 0x8099DD20: pla_1_eye5_TA_tex_txt
- 0x8099DE20: pla_1_eye6_TA_tex_txt
- 0x8099DF20: pla_1_eye7_TA_tex_txt
- 0x8099E020: pla_1_eye8_TA_tex_txt
- 0x8099E120: pla_1_mouth1_TA_tex_txt
- 0x8099E220: pla_1_mouth2_TA_tex_txt
- 0x8099E320: pla_1_mouth3_TA_tex_txt
- 0x8099E420: pla_1_mouth4_TA_tex_txt
- 0x8099E520: pla_1_mouth5_TA_tex_txt
- 0x8099E620: pla_1_mouth6_TA_tex_txt
- 0x8099E720: pla_1_tmem_txt
- 0x8099ECA0: pga_1_v
- 0x809A06C0: head_pga_model
- 0x809A0860: mouth_pga_model
- 0x809A0950: Rarm2_pga_model
- 0x809A0A08: Rarm1_pga_model
- 0x809A0AB0: Larm2_pga_model
- 0x809A0B68: Larm1_pga_model
- 0x809A0C10: chest_pga_model
- 0x809A0CB0: tail1_pga_model
- 0x809A0D28: Rfoot3_pga_model
- 0x809A0DB0: Rfoot2_pga_model
- 0x809A0E30: Rfoot1_pga_model
- 0x809A0E88: Lfoot3_pga_model
- 0x809A0F10: Lfoot2_pga_model
- 0x809A0F90: Lfoot1_pga_model
- 0x809A0FE8: base_pga_model
- 0x809A1060: cKF_je_r_pga_1_tbl
- 0x809A1198: cKF_bs_r_pga_1
- 0x809A11A0: pga_1_pal
- 0x809A11C0: pga_1_eye1_TA_tex_txt
- 0x809A12C0: pga_1_eye2_TA_tex_txt
- 0x809A13C0: pga_1_eye3_TA_tex_txt
- 0x809A14C0: pga_1_eye4_TA_tex_txt
- 0x809A15C0: pga_1_eye5_TA_tex_txt
- 0x809A16C0: pga_1_eye6_TA_tex_txt
- 0x809A17C0: pga_1_eye7_TA_tex_txt
- 0x809A18C0: pga_1_eye8_TA_tex_txt
- 0x809A19C0: pga_1_tmem_txt
- 0x809A2000: pgb_1_v
- 0x809A3990: head_pgb_model
- 0x809A3B50: mouth_pgb_model
- 0x809A3C00: Rarm2_pgb_model
- 0x809A3CB8: Rarm1_pgb_model
- 0x809A3D60: Larm2_pgb_model
- 0x809A3E18: Larm1_pgb_model
- 0x809A3EC0: chest_pgb_model
- 0x809A3F60: tail1_pgb_model
- 0x809A3FD8: Rfoot3_pgb_model
- 0x809A4060: Rfoot2_pgb_model
- 0x809A40E0: Rfoot1_pgb_model
- 0x809A4138: Lfoot3_pgb_model
- 0x809A41C0: Lfoot2_pgb_model
- 0x809A4240: Lfoot1_pgb_model
- 0x809A4298: base_pgb_model
- 0x809A4310: cKF_je_r_pgb_1_tbl
- 0x809A4448: cKF_bs_r_pgb_1
- 0x809A4460: pgb_1_pal
- 0x809A4480: pgb_1_eye1_TA_tex_txt
- 0x809A4580: pgb_1_eye2_TA_tex_txt
- 0x809A4680: pgb_1_eye3_TA_tex_txt
- 0x809A4780: pgb_1_eye4_TA_tex_txt
- 0x809A4880: pgb_1_eye5_TA_tex_txt
- 0x809A4980: pgb_1_eye6_TA_tex_txt
- 0x809A4A80: pgb_1_eye7_TA_tex_txt
- 0x809A4B80: pgb_1_eye8_TA_tex_txt
- 0x809A4C80: pgb_1_tmem_txt
- 0x809A5400: plb_1_v
- 0x809A6E80: head_plb_model
- 0x809A7010: mouth_plb_model
- 0x809A7100: Rarm2_plb_model
- 0x809A71B8: Rarm1_plb_model
- 0x809A7230: Larm2_plb_model
- 0x809A72E8: Larm1_plb_model
- 0x809A7360: chest_plb_model
- 0x809A74B0: Rfoot3_plb_model
- 0x809A7538: Rfoot2_plb_model
- 0x809A75B8: Rfoot1_plb_model
- 0x809A7610: Lfoot3_plb_model
- 0x809A7698: Lfoot2_plb_model
- 0x809A7718: Lfoot1_plb_model
- 0x809A7770: base_plb_model
- 0x809A7840: cKF_je_r_plb_1_tbl
- 0x809A7978: cKF_bs_r_plb_1
- 0x809A7980: plb_1_pal
- 0x809A79A0: plb_1_eye1_TA_tex_txt
- 0x809A7AA0: plb_1_eye2_TA_tex_txt
- 0x809A7BA0: plb_1_eye3_TA_tex_txt
- 0x809A7CA0: plb_1_eye4_TA_tex_txt
- 0x809A7DA0: plb_1_eye5_TA_tex_txt
- 0x809A7EA0: plb_1_eye6_TA_tex_txt
- 0x809A7FA0: plb_1_eye7_TA_tex_txt
- 0x809A80A0: plb_1_eye8_TA_tex_txt
- 0x809A81A0: plb_1_tmem_txt
- 0x809A8920: rbt_1_v
- 0x809A9EC0: head_rbt_model
- 0x809AA068: Rarm2_rbt_model
- 0x809AA0F0: Rarm1_rbt_model
- 0x809AA168: Larm2_rbt_model
- 0x809AA1F0: Larm1_rbt_model
- 0x809AA268: chest_rbt_model
- 0x809AA310: tail1_rbt_model
- 0x809AA388: Rfoot2_rbt_model
- 0x809AA408: Rfoot1_rbt_model
- 0x809AA4C8: Lfoot2_rbt_model
- 0x809AA548: Lfoot1_rbt_model
- 0x809AA608: base_rbt_model
- 0x809AA678: cKF_je_r_rbt_1_tbl
- 0x809AA7B0: cKF_bs_r_rbt_1
- 0x809AA7C0: rbt_1_pal
- 0x809AA7E0: rbt_1_eye1_TA_tex_txt
- 0x809AA8E0: rbt_1_eye2_TA_tex_txt
- 0x809AA9E0: rbt_1_eye3_TA_tex_txt
- 0x809AAAE0: rbt_1_eye4_TA_tex_txt
- 0x809AABE0: rbt_1_eye5_TA_tex_txt
- 0x809AACE0: rbt_1_eye6_TA_tex_txt
- 0x809AADE0: rbt_1_eye7_TA_tex_txt
- 0x809AAEE0: rbt_1_eye8_TA_tex_txt
- 0x809AAFE0: rbt_1_mouth1_TA_tex_txt
- 0x809AB0E0: rbt_1_mouth2_TA_tex_txt
- 0x809AB1E0: rbt_1_mouth3_TA_tex_txt
- 0x809AB2E0: rbt_1_mouth4_TA_tex_txt
- 0x809AB3E0: rbt_1_mouth5_TA_tex_txt
- 0x809AB4E0: rbt_1_mouth6_TA_tex_txt
- 0x809AB5E0: rbt_1_tmem_txt
- 0x809AB9E0: rbt_2_pal
- 0x809ABA00: rbt_2_eye1_TA_tex_txt
- 0x809ABB00: rbt_2_eye2_TA_tex_txt
- 0x809ABC00: rbt_2_eye3_TA_tex_txt
- 0x809ABD00: rbt_2_eye4_TA_tex_txt
- 0x809ABE00: rbt_2_eye5_TA_tex_txt
- 0x809ABF00: rbt_2_eye6_TA_tex_txt
- 0x809AC000: rbt_2_eye7_TA_tex_txt
- 0x809AC100: rbt_2_eye8_TA_tex_txt
- 0x809AC200: rbt_2_mouth1_TA_tex_txt
- 0x809AC300: rbt_2_mouth2_TA_tex_txt
- 0x809AC400: rbt_2_mouth3_TA_tex_txt
- 0x809AC500: rbt_2_mouth4_TA_tex_txt
- 0x809AC600: rbt_2_mouth5_TA_tex_txt
- 0x809AC700: rbt_2_mouth6_TA_tex_txt
- 0x809AC800: rbt_2_tmem_txt
- 0x809ACC00: rbt_11_pal
- 0x809ACC20: rbt_11_eye1_TA_tex_txt
- 0x809ACD20: rbt_11_eye2_TA_tex_txt
- 0x809ACE20: rbt_11_eye3_TA_tex_txt
- 0x809ACF20: rbt_11_eye4_TA_tex_txt
- 0x809AD020: rbt_11_eye5_TA_tex_txt
- 0x809AD120: rbt_11_eye6_TA_tex_txt
- 0x809AD220: rbt_11_eye7_TA_tex_txt
- 0x809AD320: rbt_11_eye8_TA_tex_txt
- 0x809AD420: rbt_11_mouth1_TA_tex_txt
- 0x809AD520: rbt_11_mouth2_TA_tex_txt
- 0x809AD620: rbt_11_mouth3_TA_tex_txt
- 0x809AD720: rbt_11_mouth4_TA_tex_txt
- 0x809AD820: rbt_11_mouth5_TA_tex_txt
- 0x809AD920: rbt_11_mouth6_TA_tex_txt
- 0x809ADA20: rbt_11_tmem_txt
- 0x809ADE20: rbt_3_pal
- 0x809ADE40: rbt_3_eye1_TA_tex_txt
- 0x809ADF40: rbt_3_eye2_TA_tex_txt
- 0x809AE040: rbt_3_eye3_TA_tex_txt
- 0x809AE140: rbt_3_eye4_TA_tex_txt
- 0x809AE240: rbt_3_eye5_TA_tex_txt
- 0x809AE340: rbt_3_eye6_TA_tex_txt
- 0x809AE440: rbt_3_eye7_TA_tex_txt
- 0x809AE540: rbt_3_eye8_TA_tex_txt
- 0x809AE640: rbt_3_mouth1_TA_tex_txt
- 0x809AE740: rbt_3_mouth2_TA_tex_txt
- 0x809AE840: rbt_3_mouth3_TA_tex_txt
- 0x809AE940: rbt_3_mouth4_TA_tex_txt
- 0x809AEA40: rbt_3_mouth5_TA_tex_txt
- 0x809AEB40: rbt_3_mouth6_TA_tex_txt
- 0x809AEC40: rbt_3_tmem_txt
- 0x809AF040: rbt_4_pal
- 0x809AF060: rbt_4_eye1_TA_tex_txt
- 0x809AF160: rbt_4_eye2_TA_tex_txt
- 0x809AF260: rbt_4_eye3_TA_tex_txt
- 0x809AF360: rbt_4_eye4_TA_tex_txt
- 0x809AF460: rbt_4_eye5_TA_tex_txt
- 0x809AF560: rbt_4_eye6_TA_tex_txt
- 0x809AF660: rbt_4_eye7_TA_tex_txt
- 0x809AF760: rbt_4_eye8_TA_tex_txt
- 0x809AF860: rbt_4_mouth1_TA_tex_txt
- 0x809AF960: rbt_4_mouth2_TA_tex_txt
- 0x809AFA60: rbt_4_mouth3_TA_tex_txt
- 0x809AFB60: rbt_4_mouth4_TA_tex_txt
- 0x809AFC60: rbt_4_mouth5_TA_tex_txt
- 0x809AFD60: rbt_4_mouth6_TA_tex_txt
- 0x809AFE60: rbt_4_tmem_txt
- 0x809B0260: rbt_5_pal
- 0x809B0280: rbt_5_eye1_TA_tex_txt
- 0x809B0380: rbt_5_eye2_TA_tex_txt
- 0x809B0480: rbt_5_eye3_TA_tex_txt
- 0x809B0580: rbt_5_eye4_TA_tex_txt
- 0x809B0680: rbt_5_eye5_TA_tex_txt
- 0x809B0780: rbt_5_eye6_TA_tex_txt
- 0x809B0880: rbt_5_eye7_TA_tex_txt
- 0x809B0980: rbt_5_eye8_TA_tex_txt
- 0x809B0A80: rbt_5_mouth1_TA_tex_txt
- 0x809B0B80: rbt_5_mouth2_TA_tex_txt
- 0x809B0C80: rbt_5_mouth3_TA_tex_txt
- 0x809B0D80: rbt_5_mouth4_TA_tex_txt
- 0x809B0E80: rbt_5_mouth5_TA_tex_txt
- 0x809B0F80: rbt_5_mouth6_TA_tex_txt
- 0x809B1080: rbt_5_tmem_txt
- 0x809B1480: rbt_6_pal
- 0x809B14A0: rbt_6_eye1_TA_tex_txt
- 0x809B15A0: rbt_6_eye2_TA_tex_txt
- 0x809B16A0: rbt_6_eye3_TA_tex_txt
- 0x809B17A0: rbt_6_eye4_TA_tex_txt
- 0x809B18A0: rbt_6_eye5_TA_tex_txt
- 0x809B19A0: rbt_6_eye6_TA_tex_txt
- 0x809B1AA0: rbt_6_eye7_TA_tex_txt
- 0x809B1BA0: rbt_6_eye8_TA_tex_txt
- 0x809B1CA0: rbt_6_mouth1_TA_tex_txt
- 0x809B1DA0: rbt_6_mouth2_TA_tex_txt
- 0x809B1EA0: rbt_6_mouth3_TA_tex_txt
- 0x809B1FA0: rbt_6_mouth4_TA_tex_txt
- 0x809B20A0: rbt_6_mouth5_TA_tex_txt
- 0x809B21A0: rbt_6_mouth6_TA_tex_txt
- 0x809B22A0: rbt_6_tmem_txt
- 0x809B26A0: rbt_7_pal
- 0x809B26C0: rbt_7_eye1_TA_tex_txt
- 0x809B27C0: rbt_7_eye2_TA_tex_txt
- 0x809B28C0: rbt_7_eye3_TA_tex_txt
- 0x809B29C0: rbt_7_eye4_TA_tex_txt
- 0x809B2AC0: rbt_7_eye5_TA_tex_txt
- 0x809B2BC0: rbt_7_eye6_TA_tex_txt
- 0x809B2CC0: rbt_7_eye7_TA_tex_txt
- 0x809B2DC0: rbt_7_eye8_TA_tex_txt
- 0x809B2EC0: rbt_7_mouth1_TA_tex_txt
- 0x809B2FC0: rbt_7_mouth2_TA_tex_txt
- 0x809B30C0: rbt_7_mouth3_TA_tex_txt
- 0x809B31C0: rbt_7_mouth4_TA_tex_txt
- 0x809B32C0: rbt_7_mouth5_TA_tex_txt
- 0x809B33C0: rbt_7_mouth6_TA_tex_txt
- 0x809B34C0: rbt_7_tmem_txt
- 0x809B38C0: rbt_8_pal
- 0x809B38E0: rbt_8_eye1_TA_tex_txt
- 0x809B39E0: rbt_8_eye2_TA_tex_txt
- 0x809B3AE0: rbt_8_eye3_TA_tex_txt
- 0x809B3BE0: rbt_8_eye4_TA_tex_txt
- 0x809B3CE0: rbt_8_eye5_TA_tex_txt
- 0x809B3DE0: rbt_8_eye6_TA_tex_txt
- 0x809B3EE0: rbt_8_eye7_TA_tex_txt
- 0x809B3FE0: rbt_8_eye8_TA_tex_txt
- 0x809B40E0: rbt_8_mouth1_TA_tex_txt
- 0x809B41E0: rbt_8_mouth2_TA_tex_txt
- 0x809B42E0: rbt_8_mouth3_TA_tex_txt
- 0x809B43E0: rbt_8_mouth4_TA_tex_txt
- 0x809B44E0: rbt_8_mouth5_TA_tex_txt
- 0x809B45E0: rbt_8_mouth6_TA_tex_txt
- 0x809B46E0: rbt_8_tmem_txt
- 0x809B4AE0: rbt_9_pal
- 0x809B4B00: rbt_9_eye1_TA_tex_txt
- 0x809B4C00: rbt_9_eye2_TA_tex_txt
- 0x809B4D00: rbt_9_eye3_TA_tex_txt
- 0x809B4E00: rbt_9_eye4_TA_tex_txt
- 0x809B4F00: rbt_9_eye5_TA_tex_txt
- 0x809B5000: rbt_9_eye6_TA_tex_txt
- 0x809B5100: rbt_9_eye7_TA_tex_txt
- 0x809B5200: rbt_9_eye8_TA_tex_txt
- 0x809B5300: rbt_9_mouth1_TA_tex_txt
- 0x809B5400: rbt_9_mouth2_TA_tex_txt
- 0x809B5500: rbt_9_mouth3_TA_tex_txt
- 0x809B5600: rbt_9_mouth4_TA_tex_txt
- 0x809B5700: rbt_9_mouth5_TA_tex_txt
- 0x809B5800: rbt_9_mouth6_TA_tex_txt
- 0x809B5900: rbt_9_tmem_txt
- 0x809B5D00: rbt_10_pal
- 0x809B5D20: rbt_10_eye1_TA_tex_txt
- 0x809B5E20: rbt_10_eye2_TA_tex_txt
- 0x809B5F20: rbt_10_eye3_TA_tex_txt
- 0x809B6020: rbt_10_eye4_TA_tex_txt
- 0x809B6120: rbt_10_eye5_TA_tex_txt
- 0x809B6220: rbt_10_eye6_TA_tex_txt
- 0x809B6320: rbt_10_eye7_TA_tex_txt
- 0x809B6420: rbt_10_eye8_TA_tex_txt
- 0x809B6520: rbt_10_mouth1_TA_tex_txt
- 0x809B6620: rbt_10_mouth2_TA_tex_txt
- 0x809B6720: rbt_10_mouth3_TA_tex_txt
- 0x809B6820: rbt_10_mouth4_TA_tex_txt
- 0x809B6920: rbt_10_mouth5_TA_tex_txt
- 0x809B6A20: rbt_10_mouth6_TA_tex_txt
- 0x809B6B20: rbt_10_tmem_txt
- 0x809B6F20: mob_1_v
- 0x809B82D0: head_mob_model
- 0x809B8488: mouth_mob_model
- 0x809B8558: hand_mob_model
- 0x809B8610: Rarm2_mob_model
- 0x809B8698: Rarm1_mob_model
- 0x809B8710: Larm2_mob_model
- 0x809B8798: Larm1_mob_model
- 0x809B8810: chest_mob_model
- 0x809B88E0: base_mob_model
- 0x809B8960: cKF_je_r_mob_1_tbl
- 0x809B8A98: cKF_bs_r_mob_1
- 0x809B8AA0: mob_1_pal
- 0x809B8AC0: mob_1_eye1_TA_tex_txt
- 0x809B8BC0: mob_1_eye2_TA_tex_txt
- 0x809B8CC0: mob_1_eye3_TA_tex_txt
- 0x809B8DC0: mob_1_eye4_TA_tex_txt
- 0x809B8EC0: mob_1_eye5_TA_tex_txt
- 0x809B8FC0: mob_1_eye6_TA_tex_txt
- 0x809B90C0: mob_1_eye7_TA_tex_txt
- 0x809B91C0: mob_1_eye8_TA_tex_txt
- 0x809B92C0: mob_1_mouth1_TA_tex_txt
- 0x809B93C0: mob_1_mouth2_TA_tex_txt
- 0x809B94C0: mob_1_mouth3_TA_tex_txt
- 0x809B95C0: mob_1_mouth4_TA_tex_txt
- 0x809B96C0: mob_1_mouth5_TA_tex_txt
- 0x809B97C0: mob_1_mouth6_TA_tex_txt
- 0x809B98C0: mob_1_tmem_txt
- 0x809B9F40: ef_ame02_0
- 0x809BA140: ef_ame02_00_v
- 0x809BA180: ef_ame02_setmode
- 0x809BA1C8: ef_ame02_00_modelT
- 0x809BA1E0: ef_ame02_01_v
- 0x809BA220: ef_ame02_01_modelT
- 0x809BA238: ef_ame02_02_v
- 0x809BA278: ef_ame02_02_modelT
- 0x809BA290: ef_ame02_03_v
- 0x809BA2D0: ef_ame02_03_modelT
- 0x809BA2E8: ef_ame02_04_v
- 0x809BA328: ef_ame02_04_modelT
- 0x809BA340: rhn_1_v
- 0x809BBF40: head_rhn_model
- 0x809BC240: mouth_rhn_model
- 0x809BC310: Rarm2_rhn_model
- 0x809BC3A0: Rarm1_rhn_model
- 0x809BC420: Larm2_rhn_model
- 0x809BC4B0: Larm1_rhn_model
- 0x809BC530: chest_rhn_model
- 0x809BC5C8: tail1_rhn_model
- 0x809BC620: tail2_rhn_model
- 0x809BC6B0: Rfoot2_rhn_model
- 0x809BC748: Rfoot1_rhn_model
- 0x809BC7F8: Lfoot2_rhn_model
- 0x809BC890: Lfoot1_rhn_model
- 0x809BC940: base_rhn_model
- 0x809BC9B0: cKF_je_r_rhn_1_tbl
- 0x809BCAE8: cKF_bs_r_rhn_1
- 0x809BCB00: rhn_1_pal
- 0x809BCB20: rhn_1_eye1_TA_tex_txt
- 0x809BCC20: rhn_1_eye2_TA_tex_txt
- 0x809BCD20: rhn_1_eye3_TA_tex_txt
- 0x809BCE20: rhn_1_eye4_TA_tex_txt
- 0x809BCF20: rhn_1_eye5_TA_tex_txt
- 0x809BD020: rhn_1_eye6_TA_tex_txt
- 0x809BD120: rhn_1_eye7_TA_tex_txt
- 0x809BD220: rhn_1_eye8_TA_tex_txt
- 0x809BD320: rhn_1_mouth1_TA_tex_txt
- 0x809BD420: rhn_1_mouth2_TA_tex_txt
- 0x809BD520: rhn_1_mouth3_TA_tex_txt
- 0x809BD620: rhn_1_mouth4_TA_tex_txt
- 0x809BD720: rhn_1_mouth5_TA_tex_txt
- 0x809BD820: rhn_1_mouth6_TA_tex_txt
- 0x809BD920: rhn_1_tmem_txt
- 0x809BDD20: rhn_2_pal
- 0x809BDD40: rhn_2_eye1_TA_tex_txt
- 0x809BDE40: rhn_2_eye2_TA_tex_txt
- 0x809BDF40: rhn_2_eye3_TA_tex_txt
- 0x809BE040: rhn_2_eye4_TA_tex_txt
- 0x809BE140: rhn_2_eye5_TA_tex_txt
- 0x809BE240: rhn_2_eye6_TA_tex_txt
- 0x809BE340: rhn_2_eye7_TA_tex_txt
- 0x809BE440: rhn_2_eye8_TA_tex_txt
- 0x809BE540: rhn_2_mouth1_TA_tex_txt
- 0x809BE640: rhn_2_mouth2_TA_tex_txt
- 0x809BE740: rhn_2_mouth3_TA_tex_txt
- 0x809BE840: rhn_2_mouth4_TA_tex_txt
- 0x809BE940: rhn_2_mouth5_TA_tex_txt
- 0x809BEA40: rhn_2_mouth6_TA_tex_txt
- 0x809BEB40: rhn_2_tmem_txt
- 0x809BEF40: rhn_3_pal
- 0x809BEF60: rhn_3_eye1_TA_tex_txt
- 0x809BF060: rhn_3_eye2_TA_tex_txt
- 0x809BF160: rhn_3_eye3_TA_tex_txt
- 0x809BF260: rhn_3_eye4_TA_tex_txt
- 0x809BF360: rhn_3_eye5_TA_tex_txt
- 0x809BF460: rhn_3_eye6_TA_tex_txt
- 0x809BF560: rhn_3_eye7_TA_tex_txt
- 0x809BF660: rhn_3_eye8_TA_tex_txt
- 0x809BF760: rhn_3_mouth1_TA_tex_txt
- 0x809BF860: rhn_3_mouth2_TA_tex_txt
- 0x809BF960: rhn_3_mouth3_TA_tex_txt
- 0x809BFA60: rhn_3_mouth4_TA_tex_txt
- 0x809BFB60: rhn_3_mouth5_TA_tex_txt
- 0x809BFC60: rhn_3_mouth6_TA_tex_txt
- 0x809BFD60: rhn_3_tmem_txt
- 0x809C0160: rhn_4_pal
- 0x809C0180: rhn_4_eye1_TA_tex_txt
- 0x809C0280: rhn_4_eye2_TA_tex_txt
- 0x809C0380: rhn_4_eye3_TA_tex_txt
- 0x809C0480: rhn_4_eye4_TA_tex_txt
- 0x809C0580: rhn_4_eye5_TA_tex_txt
- 0x809C0680: rhn_4_eye6_TA_tex_txt
- 0x809C0780: rhn_4_eye7_TA_tex_txt
- 0x809C0880: rhn_4_eye8_TA_tex_txt
- 0x809C0980: rhn_4_mouth1_TA_tex_txt
- 0x809C0A80: rhn_4_mouth2_TA_tex_txt
- 0x809C0B80: rhn_4_mouth3_TA_tex_txt
- 0x809C0C80: rhn_4_mouth4_TA_tex_txt
- 0x809C0D80: rhn_4_mouth5_TA_tex_txt
- 0x809C0E80: rhn_4_mouth6_TA_tex_txt
- 0x809C0F80: rhn_4_tmem_txt
- 0x809C1380: light_window
- 0x809C1400: room_lightR_v
- 0x809C14A0: room_lightL_v
- 0x809C1540: light_shine01_mode
- 0x809C1560: light_shineL01_vtx
- 0x809C1580: light_shineR01_vtx
- 0x809C15A0: light_floor01_mode
- 0x809C1608: light_floorL01_vtx
- 0x809C1620: light_floorR01_vtx
- 0x809C1640: obj_museum4_shine_1
- 0x809C16C0: obj_museum4_shine_2
- 0x809C1AC0: obj_museum4_shine_v
- 0x809C1DB0: obj_museum4_shine_2T_model
- 0x809C1E70: obj_museum4_shine_1T_model
- 0x809C1EE0: rom_museum4_step_pal
- 0x809C1F00: obj_s_stone_pal
- 0x809C1F20: obj_01_zassou_pal
- 0x809C1F40: obj_c_01_flower_pal
- 0x809C1F60: obj_b_01_flower_pal
- 0x809C1F80: obj_a_01_flower_pal
- 0x809C1FA0: obj_tree_pal
- 0x809C1FC0: obj_s_tree_leaf_tex
- 0x809C27C0: obj_s_tree_trunk_tex
- 0x809C2FC0: obj_c_01_flower_tex
- 0x809C37C0: obj_b_01_flower_tex
- 0x809C3FC0: obj_a_01_flower_tex
- 0x809C47C0: obj_zassou_01_tex
- 0x809C4BC0: obj_s_stone_tex
- 0x809C4DC0: rom_museum4_plate_tex
- 0x809C4FC0: rom_museum4_ue_v
- 0x809C6610: rom_museum4_ue_model
- 0x809C69C8: obj_museum1_shine_2_pal
- 0x809C69E8: obj_museum1_shine_2_tex
- 0x809C6DE8: obj_museum1_shine_1_tex
- 0x809C75E8: obj_museum1_shine_3__tex_rgb_i4
- 0x809C7668: obj_museum1_shine_v
- 0x809C77A8: obj_museum1_shine_modelT
- 0x809C7860: obj_museum1_shine_model
- 0x809C7950: obj_koban_shine_1
- 0x809C79D0: obj_koban_shine_2
- 0x809C7BD0: obj_koban_shine_v
- 0x809C7C90: obj_koban_shine_modelT
- 0x809C7D90: rom_yubinkyoku_mado_tex
- 0x809C7E10: rom_yubinkyoku_waku_tex
- 0x809C8010: obj_yubinkyoku_shine_v
- 0x809C8100: obj_yubinkyoku_shine_modelT
- 0x809C8200: tol_rope_1_pal
- 0x809C8220: tol_rope_1_tex
- 0x809C8420: tol_rope_1_v
- 0x809C87E0: tol_rope_1T_model
- 0x809C88A0: tol_rope_1_shadow_tex
- 0x809C8920: tol_rope_1_shadow_v
- 0x809C8B20: tol_rope_1_shadowT_model
- 0x809C8B98: shop01_info
- 0x809C8BD8: SHOP01_player_data
- 0x809C8BE8: SHOP01_ctrl_actor_data
- 0x809C8C08: SHOP01_object_bank
- 0x809C8C0C: SHOP01_door_data
- 0x809C8C20: shop02_info
- 0x809C8C60: SHOP02_player_data
- 0x809C8C70: SHOP02_ctrl_actor_data
- 0x809C8C90: SHOP02_object_bank
- 0x809C8C94: SHOP02_door_data
- 0x809C8CA8: shop03_info
- 0x809C8CE0: SHOP03_player_data
- 0x809C8CF0: SHOP03_ctrl_actor_data
- 0x809C8D10: SHOP03_door_data
- 0x809C8D28: shop04_1f_info
- 0x809C8D68: SHOP04_1F_player_data
- 0x809C8D78: SHOP04_1F_ctrl_actor_data
- 0x809C8D98: SHOP04_1F_object_bank
- 0x809C8D9C: SHOP04_1F_door_data
- 0x809C8DB0: shop04_2f_info
- 0x809C8DF0: SHOP04_2F_player_data
- 0x809C8E00: SHOP04_2F_ctrl_actor_data
- 0x809C8E20: SHOP04_2F_object_bank
- 0x809C8E24: SHOP04_2F_door_data
- 0x809C8E38: start_demo1_info
- 0x809C8E78: START_DEMO1_player_data
- 0x809C8E88: START_DEMO1_ctrl_actor_data
- 0x809C8E94: START_DEMO1_door_data
- 0x809C8EA8: start_demo2_info
- 0x809C8EE8: START_DEMO2_player_data
- 0x809C8EF8: START_DEMO2_ctrl_actor_data
- 0x809C8F04: START_DEMO2_door_data
- 0x809C8F18: start_demo3_info
- 0x809C8F58: START_DEMO3_player_data
- 0x809C8F68: START_DEMO3_ctrl_actor_data
- 0x809C8F74: START_DEMO3_door_data
- 0x809C8FA0: ef_hanabira01_0
- 0x809C90A0: ef_hanabira01_00_v
- 0x809C90E0: ef_hanabira01_00_setmode
- 0x809C9128: ef_hanabira01_00_modelT
- 0x809C9148: snt_1_v
- 0x809CA508: head_snt_model
- 0x809CA758: Larm2_snt_model
- 0x809CA7E0: Larm1_snt_model
- 0x809CA858: chest_snt_model
- 0x809CA9D0: Rfoot2_snt_model
- 0x809CAA50: Rfoot1_snt_model
- 0x809CAAA8: Lfoot2_snt_model
- 0x809CAB28: Lfoot1_snt_model
- 0x809CAB80: base_snt_model
- 0x809CABF0: cKF_je_r_snt_1_tbl
- 0x809CAD28: cKF_bs_r_snt_1
- 0x809CAD40: snt_1_pal
- 0x809CAD60: snt_1_eye1_TA_tex_txt
- 0x809CAE60: snt_1_eye2_TA_tex_txt
- 0x809CAF60: snt_1_eye3_TA_tex_txt
- 0x809CB060: snt_1_eye4_TA_tex_txt
- 0x809CB160: snt_1_eye5_TA_tex_txt
- 0x809CB260: snt_1_eye6_TA_tex_txt
- 0x809CB360: snt_1_eye7_TA_tex_txt
- 0x809CB460: snt_1_eye8_TA_tex_txt
- 0x809CB560: snt_1_mouth1_TA_tex_txt
- 0x809CB660: snt_1_mouth2_TA_tex_txt
- 0x809CB760: snt_1_mouth3_TA_tex_txt
- 0x809CB860: snt_1_mouth4_TA_tex_txt
- 0x809CB960: snt_1_mouth5_TA_tex_txt
- 0x809CBA60: snt_1_mouth6_TA_tex_txt
- 0x809CBB60: snt_1_tmem_txt
- 0x809CC1E0: wip_1_v
- 0x809CD8E0: head_wip_model
- 0x809CDAE8: Rarm2_wip_model
- 0x809CDB70: Rarm1_wip_model
- 0x809CDBE8: Larm2_wip_model
- 0x809CDC70: Larm1_wip_model
- 0x809CDCE8: chest_wip_model
- 0x809CDE08: Rfoot2_wip_model
- 0x809CDE88: Rfoot1_wip_model
- 0x809CDEE0: Lfoot2_wip_model
- 0x809CDF60: Lfoot1_wip_model
- 0x809CDFB8: base_wip_model
- 0x809CE030: cKF_je_r_wip_1_tbl
- 0x809CE168: cKF_bs_r_wip_1
- 0x809CE180: wip_1_pal
- 0x809CE1A0: wip_1_eye1_TA_tex_txt
- 0x809CE2A0: wip_1_eye2_TA_tex_txt
- 0x809CE3A0: wip_1_eye3_TA_tex_txt
- 0x809CE4A0: wip_1_eye4_TA_tex_txt
- 0x809CE5A0: wip_1_eye5_TA_tex_txt
- 0x809CE6A0: wip_1_eye6_TA_tex_txt
- 0x809CE7A0: wip_1_eye7_TA_tex_txt
- 0x809CE8A0: wip_1_eye8_TA_tex_txt
- 0x809CE9A0: wip_1_mouth1_TA_tex_txt
- 0x809CEAA0: wip_1_mouth2_TA_tex_txt
- 0x809CEBA0: wip_1_mouth3_TA_tex_txt
- 0x809CECA0: wip_1_mouth4_TA_tex_txt
- 0x809CEDA0: wip_1_mouth5_TA_tex_txt
- 0x809CEEA0: wip_1_mouth6_TA_tex_txt
- 0x809CEFA0: wip_1_tmem_txt
- 0x809CF560: shp_1_v
- 0x809D09C0: head_shp_model
- 0x809D0B70: Rarm2_shp_model
- 0x809D0BF8: Rarm1_shp_model
- 0x809D0C58: Larm2_shp_model
- 0x809D0CE0: Larm1_shp_model
- 0x809D0D40: chest_shp_model
- 0x809D0E18: Rfoot2_shp_model
- 0x809D0EA0: Rfoot1_shp_model
- 0x809D0F00: Lfoot2_shp_model
- 0x809D0F88: Lfoot1_shp_model
- 0x809D0FE8: base_shp_model
- 0x809D1060: cKF_je_r_shp_1_tbl
- 0x809D1198: cKF_bs_r_shp_1
- 0x809D11A0: shp_1_pal
- 0x809D11C0: shp_1_eye1_TA_tex_txt
- 0x809D12C0: shp_1_eye2_TA_tex_txt
- 0x809D13C0: shp_1_eye3_TA_tex_txt
- 0x809D14C0: shp_1_eye4_TA_tex_txt
- 0x809D15C0: shp_1_eye5_TA_tex_txt
- 0x809D16C0: shp_1_eye6_TA_tex_txt
- 0x809D17C0: shp_1_eye7_TA_tex_txt
- 0x809D18C0: shp_1_eye8_TA_tex_txt
- 0x809D19C0: shp_1_mouth1_TA_tex_txt
- 0x809D1AC0: shp_1_mouth2_TA_tex_txt
- 0x809D1BC0: shp_1_mouth3_TA_tex_txt
- 0x809D1CC0: shp_1_mouth4_TA_tex_txt
- 0x809D1DC0: shp_1_mouth5_TA_tex_txt
- 0x809D1EC0: shp_1_mouth6_TA_tex_txt
- 0x809D1FC0: shp_1_tmem_txt
- 0x809D23C0: shp_2_pal
- 0x809D23E0: shp_2_eye1_TA_tex_txt
- 0x809D24E0: shp_2_eye2_TA_tex_txt
- 0x809D25E0: shp_2_eye3_TA_tex_txt
- 0x809D26E0: shp_2_eye4_TA_tex_txt
- 0x809D27E0: shp_2_eye5_TA_tex_txt
- 0x809D28E0: shp_2_eye6_TA_tex_txt
- 0x809D29E0: shp_2_eye7_TA_tex_txt
- 0x809D2AE0: shp_2_eye8_TA_tex_txt
- 0x809D2BE0: shp_2_mouth1_TA_tex_txt
- 0x809D2CE0: shp_2_mouth2_TA_tex_txt
- 0x809D2DE0: shp_2_mouth3_TA_tex_txt
- 0x809D2EE0: shp_2_mouth4_TA_tex_txt
- 0x809D2FE0: shp_2_mouth5_TA_tex_txt
- 0x809D30E0: shp_2_mouth6_TA_tex_txt
- 0x809D31E0: shp_2_tmem_txt
- 0x809D35E0: shp_3_pal
- 0x809D3600: shp_3_eye1_TA_tex_txt
- 0x809D3700: shp_3_eye2_TA_tex_txt
- 0x809D3800: shp_3_eye3_TA_tex_txt
- 0x809D3900: shp_3_eye4_TA_tex_txt
- 0x809D3A00: shp_3_eye5_TA_tex_txt
- 0x809D3B00: shp_3_eye6_TA_tex_txt
- 0x809D3C00: shp_3_eye7_TA_tex_txt
- 0x809D3D00: shp_3_eye8_TA_tex_txt
- 0x809D3E00: shp_3_mouth1_TA_tex_txt
- 0x809D3F00: shp_3_mouth2_TA_tex_txt
- 0x809D4000: shp_3_mouth3_TA_tex_txt
- 0x809D4100: shp_3_mouth4_TA_tex_txt
- 0x809D4200: shp_3_mouth5_TA_tex_txt
- 0x809D4300: shp_3_mouth6_TA_tex_txt
- 0x809D4400: shp_3_tmem_txt
- 0x809D4800: shp_4_pal
- 0x809D4820: shp_4_eye1_TA_tex_txt
- 0x809D4920: shp_4_eye2_TA_tex_txt
- 0x809D4A20: shp_4_eye3_TA_tex_txt
- 0x809D4B20: shp_4_eye4_TA_tex_txt
- 0x809D4C20: shp_4_eye5_TA_tex_txt
- 0x809D4D20: shp_4_eye6_TA_tex_txt
- 0x809D4E20: shp_4_eye7_TA_tex_txt
- 0x809D4F20: shp_4_eye8_TA_tex_txt
- 0x809D5020: shp_4_mouth1_TA_tex_txt
- 0x809D5120: shp_4_mouth2_TA_tex_txt
- 0x809D5220: shp_4_mouth3_TA_tex_txt
- 0x809D5320: shp_4_mouth4_TA_tex_txt
- 0x809D5420: shp_4_mouth5_TA_tex_txt
- 0x809D5520: shp_4_mouth6_TA_tex_txt
- 0x809D5620: shp_4_tmem_txt
- 0x809D5A20: shp_5_pal
- 0x809D5A40: shp_5_eye1_TA_tex_txt
- 0x809D5B40: shp_5_eye2_TA_tex_txt
- 0x809D5C40: shp_5_eye3_TA_tex_txt
- 0x809D5D40: shp_5_eye4_TA_tex_txt
- 0x809D5E40: shp_5_eye5_TA_tex_txt
- 0x809D5F40: shp_5_eye6_TA_tex_txt
- 0x809D6040: shp_5_eye7_TA_tex_txt
- 0x809D6140: shp_5_eye8_TA_tex_txt
- 0x809D6240: shp_5_mouth1_TA_tex_txt
- 0x809D6340: shp_5_mouth2_TA_tex_txt
- 0x809D6440: shp_5_mouth3_TA_tex_txt
- 0x809D6540: shp_5_mouth4_TA_tex_txt
- 0x809D6640: shp_5_mouth5_TA_tex_txt
- 0x809D6740: shp_5_mouth6_TA_tex_txt
- 0x809D6840: shp_5_tmem_txt
- 0x809D6C40: shp_6_pal
- 0x809D6C60: shp_6_eye1_TA_tex_txt
- 0x809D6D60: shp_6_eye2_TA_tex_txt
- 0x809D6E60: shp_6_eye3_TA_tex_txt
- 0x809D6F60: shp_6_eye4_TA_tex_txt
- 0x809D7060: shp_6_eye5_TA_tex_txt
- 0x809D7160: shp_6_eye6_TA_tex_txt
- 0x809D7260: shp_6_eye7_TA_tex_txt
- 0x809D7360: shp_6_eye8_TA_tex_txt
- 0x809D7460: shp_6_mouth1_TA_tex_txt
- 0x809D7560: shp_6_mouth2_TA_tex_txt
- 0x809D7660: shp_6_mouth3_TA_tex_txt
- 0x809D7760: shp_6_mouth4_TA_tex_txt
- 0x809D7860: shp_6_mouth5_TA_tex_txt
- 0x809D7960: shp_6_mouth6_TA_tex_txt
- 0x809D7A60: shp_6_tmem_txt
- 0x809D7E60: rcn_1_v
- 0x809D94B0: head_rcn_model
- 0x809D9638: mouth_rcn_model
- 0x809D96B0: Rarm2_rcn_model
- 0x809D9738: Rarm1_rcn_model
- 0x809D97B0: Larm2_rcn_model
- 0x809D9838: Larm1_rcn_model
- 0x809D98B0: chest_rcn_model
- 0x809D99B8: tail1_rcn_model
- 0x809D9A30: tail2_rcn_model
- 0x809D9AD0: Rfoot2_rcn_model
- 0x809D9B50: Rfoot1_rcn_model
- 0x809D9BA8: Lfoot2_rcn_model
- 0x809D9C28: Lfoot1_rcn_model
- 0x809D9C80: base_rcn_model
- 0x809D9D40: cKF_je_r_rcn_1_tbl
- 0x809D9E78: cKF_bs_r_rcn_1
- 0x809D9E80: rcn_1_pal
- 0x809D9EA0: rcn_1_eye1_TA_tex_txt
- 0x809D9FA0: rcn_1_eye2_TA_tex_txt
- 0x809DA0A0: rcn_1_eye3_TA_tex_txt
- 0x809DA1A0: rcn_1_eye4_TA_tex_txt
- 0x809DA2A0: rcn_1_eye5_TA_tex_txt
- 0x809DA3A0: rcn_1_eye6_TA_tex_txt
- 0x809DA4A0: rcn_1_eye7_TA_tex_txt
- 0x809DA5A0: rcn_1_eye8_TA_tex_txt
- 0x809DA6A0: rcn_1_tmem_txt
- 0x809DAF40: obj_apple2_modelT
- 0x809DAFA0: obj_shop_axe_pal
- 0x809DAFC0: obj_shop_axe_tex
- 0x809DB1C0: obj_shop_axe_v
- 0x809DB360: obj_axeT_mat_model
- 0x809DB3A8: obj_axeT_gfx_model
- 0x809DB3E0: obj_shop_paper_pal
- 0x809DB400: obj_shop_paper_tex
- 0x809DB600: obj_shop_paper_v
- 0x809DB830: obj_paper_mat_model
- 0x809DB878: obj_paper_gfx_model
- 0x809DB8E0: obj_shop_carpet_pal
- 0x809DB900: obj_shop_carpet_tex
- 0x809DBB00: obj_shop_carpet_v
- 0x809DBDF0: obj_carpetT_mat_model
- 0x809DBE38: obj_carpetT_gfx_model
- 0x809DC0D8: item_fish_v
- 0x809DC118: item_fish_modelT
- 0x809DC200: obj_shop_fossil_tex
- 0x809DC590: obj_shop_fossil_mat_model
- 0x809DC5D8: obj_shop_fossil_gfx_model
- 0x809DC620: obj_shop_fuku_pal
- 0x809DC640: obj_shop_fuku_tex
- 0x809DC840: obj_shop_fuku_v
- 0x809DCAA0: obj_fukuT_mat_model
- 0x809DCAE8: obj_fukuT_gfx_model
- 0x809DCDC0: item_kabu_modelT
- 0x809DCE20: obj_shop_kanban_pal
- 0x809DCE40: obj_shop_kanban_tex
- 0x809DD040: obj_shop_kanban_v
- 0x809DD120: obj_shop_kanbanT_mat_model
- 0x809DD168: obj_shop_kanbanT_gfx_model
- 0x809DD6C0: obj_shop_kaza1_v
- 0x809DDA20: obj_shop_kaza1_model
- 0x809DE040: obj_shop_kaza2_v
- 0x809DE3A0: obj_shop_kaza2_model
- 0x809DE9C0: obj_shop_kaza3_v
- 0x809DED20: obj_shop_kaza3_model
- 0x809DF340: obj_shop_kaza4_v
- 0x809DF6A0: obj_shop_kaza4_model
- 0x809DFCC0: obj_shop_kaza5_v
- 0x809E0020: obj_shop_kaza5_model
- 0x809E0640: obj_shop_kaza6_v
- 0x809E09A0: obj_shop_kaza6_model
- 0x809E1040: obj_shop_kaza7_v
- 0x809E19C0: obj_shop_kaza7_model
- 0x809E2220: obj_shop_kaza8_v
- 0x809E2A00: obj_shop_kaza8_model
- 0x809E2E80: item_matutake_modelT
- 0x809E2EE0: obj_shop_md_pal
- 0x809E2F00: obj_shop_md_tex
- 0x809E3100: obj_shop_md_v
- 0x809E3140: obj_mdT_mat_model
- 0x809E3188: obj_mdT_gfx_model
- 0x809E31A0: obj_shop_cnaegi_pal
- 0x809E31C0: obj_shop_cnaegi_tex
- 0x809E33C0: obj_shop_cnaegi_v
- 0x809E34F0: obj_shop_cnaegiT_mat_model
- 0x809E3538: obj_shop_cnaegiT_gfx_model
- 0x809E3580: obj_shop_naegi_pal
- 0x809E35A0: obj_shop_naegi_tex
- 0x809E37A0: obj_shop_naegi_v
- 0x809E3950: obj_naegiT_mat_model
- 0x809E3998: obj_naegiT_gfx_model
- 0x809E39E0: obj_shop_net_pal
- 0x809E3A00: obj_shop_net_tex
- 0x809E3C00: obj_shop_net_v
- 0x809E3D10: obj_netT_mat_model
- 0x809E3D58: obj_netT_gfx_model
- 0x809E4000: item_orange_modelT
- 0x809E4060: obj_shop_paint_a_pal
- 0x809E4080: obj_shop_paint_b_pal
- 0x809E40A0: obj_shop_paint_c_pal
- 0x809E40C0: obj_shop_paint_d_pal
- 0x809E40E0: obj_shop_paint_e_pal
- 0x809E4100: obj_shop_paint_f_pal
- 0x809E4120: obj_shop_paint_g_pal
- 0x809E4140: obj_shop_paint_h_pal
- 0x809E4160: obj_shop_paint_i_pal
- 0x809E4180: obj_shop_paint_j_pal
- 0x809E41A0: obj_shop_paint_k_pal
- 0x809E41C0: obj_shop_paint_l_pal
- 0x809E41E0: obj_shop_paint_tex
- 0x809E45E0: obj_shop_paint_v
- 0x809E4790: obj_shop_paintT_mat_model
- 0x809E47D0: obj_paintT_a_mat_model
- 0x809E47E8: obj_paintT_b_mat_model
- 0x809E4800: obj_paintT_c_mat_model
- 0x809E4818: obj_paintT_d_mat_model
- 0x809E4830: obj_paintT_e_mat_model
- 0x809E4848: obj_paintT_f_mat_model
- 0x809E4860: obj_paintT_g_mat_model
- 0x809E4878: obj_paintT_h_mat_model
- 0x809E4890: obj_paintT_i_mat_model
- 0x809E48A8: obj_paintT_j_mat_model
- 0x809E48C0: obj_paintT_k_mat_model
- 0x809E48D8: obj_paintT_l_mat_model
- 0x809E48F0: obj_paintT_gfx_model
- 0x809E4940: obj_shop_rod_pal
- 0x809E4960: obj_shop_rod_tex
- 0x809E4B60: obj_shop_rod_v
- 0x809E4CF0: obj_rodT_mat_model
- 0x809E4D38: obj_rodT_gfx_model
- 0x809E4D70: obj_rod_lineT_mat_model
- 0x809E4DB8: obj_rod_lineT_gfx_model
- 0x809E4DE0: obj_shop_sango_pal
- 0x809E4E00: obj_shop_sango_tex
- 0x809E5000: obj_shop_sango_v
- 0x809E5080: obj_sangoT_mat_model
- 0x809E50C8: obj_sangoT_gfx_model
- 0x809E5100: obj_shop_seed_pal
- 0x809E5120: obj_shop_seed_tex
- 0x809E5320: obj_shop_seed_v
- 0x809E5460: obj_seed_mat_model
- 0x809E54A8: obj_seed_gfx_model
- 0x809E54E0: obj_shop_honegai_pal
- 0x809E5500: obj_shop_honegai_tex
- 0x809E55C0: obj_shop_honegai_v
- 0x809E5630: obj_honegaiT_mat_model
- 0x809E5678: obj_honegaiT_gfx_model
- 0x809E56A0: obj_shop_horagai_pal
- 0x809E56C0: obj_shop_horagai_tex
- 0x809E57C0: obj_shop_horagai_v
- 0x809E5860: obj_horagaiT_mat_model
- 0x809E58A8: obj_horagaiT_gfx_model
- 0x809E58E0: obj_shop_komagai_pal
- 0x809E5900: obj_shop_komagai_tex
- 0x809E5980: obj_shop_komagai_v
- 0x809E59F0: obj_komagaiT_mat_model
- 0x809E5A38: obj_komagaiT_gfx_model
- 0x809E5A60: obj_shop_takaragai_pal
- 0x809E5A80: obj_shop_takaragai_tex
- 0x809E5B00: obj_shop_takaragai_v
- 0x809E5B70: obj_takaragaiT_mat_model
- 0x809E5BB8: obj_takaragaiT_gfx_model
- 0x809E5BE0: obj_shop_ougigai_pal
- 0x809E5C00: obj_shop_ougigai_tex
- 0x809E5D20: obj_shop_ougigai_v
- 0x809E5D80: obj_ougigaiT_mat_model
- 0x809E5DC8: obj_ougigaiT_gfx_model
- 0x809E5E00: obj_shop_sakuragai_pal
- 0x809E5E20: obj_shop_sakuragai_tex
- 0x809E6020: obj_shop_sakuragai_v
- 0x809E6080: obj_sakuragaiT_mat_model
- 0x809E60C8: obj_sakuragaiT_gfx_model
- 0x809E6100: obj_shop_shakogai_pal
- 0x809E6120: obj_shop_shakogai_tex
- 0x809E61E0: obj_shop_shakogai_v
- 0x809E62A0: obj_shakogaiT_mat_model
- 0x809E62E8: obj_shakogaiT_gfx_model
- 0x809E6320: obj_shop_shovel_pal
- 0x809E6340: obj_shop_shovel_tex
- 0x809E6540: obj_shop_shovel_v
- 0x809E66D0: obj_shovelT_mat_model
- 0x809E6718: obj_shovelT_gfx_model
- 0x809E6760: obj_shop_soldout_pal
- 0x809E6780: obj_shop_soldout_tex
- 0x809E6980: obj_shop_soldout_v
- 0x809E6A40: obj_soldoutT_mat_model
- 0x809E6A88: obj_soldoutT_gfx_model
- 0x809E6AC0: obj_shop_ticket_pal
- 0x809E6AE0: obj_shop_ticket_tex
- 0x809E6B60: obj_shop_ticket_v
- 0x809E6CA0: obj_ticketT_mat_model
- 0x809E6CE8: obj_ticketT_gfx_model
- 0x809E6D40: obj_shop_axe2_tex
- 0x809E6F40: obj_shop_axe2_v
- 0x809E70E0: obj_axe2T_mat_model
- 0x809E7128: obj_axe2T_gfx_model
- 0x809E7180: obj_shop_net2_tex
- 0x809E7380: obj_shop_net2_v
- 0x809E7490: obj_net2T_mat_model
- 0x809E74D8: obj_net2T_gfx_model
- 0x809E7540: obj_shop_rod2_tex
- 0x809E7740: obj_shop_rod2_v
- 0x809E78D0: obj_rod2T_mat_model
- 0x809E7918: obj_rod2T_gfx_model
- 0x809E7950: obj_rod2_lineT_mat_model
- 0x809E7998: obj_rod2_lineT_gfx_model
- 0x809E79E0: obj_shop_shovel2_tex
- 0x809E7BE0: obj_shop_shovel2_v
- 0x809E7D70: obj_shovel2T_mat_model
- 0x809E7DB8: obj_shovel2T_gfx_model
- 0x809E7E20: obj_shop_akican_tex
- 0x809E8020: obj_shop_akican_v
- 0x809E8350: obj_g2T_mat_model
- 0x809E8398: obj_g2T_gfx_model
- 0x809E8420: obj_shop_nagagutu_tex
- 0x809E8620: obj_shop_nagagutu_v
- 0x809E88D0: obj_nagagutuT_mat_model
- 0x809E8918: obj_nagagutuT_gfx_model
- 0x809E8980: obj_shop_tire_pal
- 0x809E89A0: obj_shop_tire_tex
- 0x809E8BA0: obj_shop_tire_v
- 0x809E8E60: obj_g1T_mat_model
- 0x809E8EA8: obj_g1T_gfx_model
- 0x809E9340: obj_shop_utiwa1_v
- 0x809E93C0: obj_shop_utiwa1_mat_model
- 0x809E9408: obj_shop_utiwa1_gfx_model
- 0x809E9860: obj_shop_utiwa2_v
- 0x809E98E0: obj_shop_utiwa2_mat_model
- 0x809E9928: obj_shop_utiwa2_gfx_model
- 0x809E9D80: obj_shop_utiwa3_v
- 0x809E9E00: obj_shop_utiwa3_mat_model
- 0x809E9E48: obj_shop_utiwa3_gfx_model
- 0x809EA2A0: obj_shop_utiwa4_v
- 0x809EA320: obj_shop_utiwa4_mat_model
- 0x809EA368: obj_shop_utiwa4_gfx_model
- 0x809EA7C0: obj_shop_utiwa5_v
- 0x809EA840: obj_shop_utiwa5_mat_model
- 0x809EA888: obj_shop_utiwa5_gfx_model
- 0x809EACE0: obj_shop_utiwa6_v
- 0x809EAD60: obj_shop_utiwa6_mat_model
- 0x809EADA8: obj_shop_utiwa6_gfx_model
- 0x809EB200: obj_shop_utiwa7_v
- 0x809EB280: obj_shop_utiwa7_mat_model
- 0x809EB2C8: obj_shop_utiwa7_gfx_model
- 0x809EB720: obj_shop_utiwa8_v
- 0x809EB7A0: obj_shop_utiwa8_mat_model
- 0x809EB7E8: obj_shop_utiwa8_gfx_model
- 0x809EB820: obj_shop_wall_pal
- 0x809EB840: obj_shop_wall_tex
- 0x809EBA40: obj_shop_wall_v
- 0x809EBC80: obj_wallT_mat_model
- 0x809EBCC8: obj_wallT_gfx_model
- 0x809EBD40: obj_shop_manekin_pal
- 0x809EBD60: obj_shop_manekin_bottom_tex_txt
- 0x809EBF60: obj_shop_manekin_foot_tex_txt
- 0x809EC060: obj_shop_manekin_top_tex_txt
- 0x809EC0E0: obj_shop_manekin_v
- 0x809EC470: obj_shop_manekin_model
- 0x809EC560: obj_shop_umb_01_pal
- 0x809EC580: obj_shop_umb_01_kasa1_tex_txt
- 0x809EC780: obj_shop_umb_01_tuka1_tex_txt
- 0x809EC980: obj_shop_umb01_v
- 0x809ECD00: obj_shop_umb01_model
- 0x809ECDB0: obj_shop_umb01_modelT
- 0x809ED3E0: obj_shop_umb02_v
- 0x809ED7C0: obj_shop_umb02_model
- 0x809ED898: obj_shop_umb02_modelT
- 0x809ED8A0: obj_shop_umb_03_pal
- 0x809ED8C0: obj_shop_umb_03_kasa1_tex_txt
- 0x809EDCC0: obj_shop_umb_03_tuka1_tex_txt
- 0x809EDEC0: obj_shop_umb03_v
- 0x809EE240: obj_shop_umb03_model
- 0x809EE2F8: obj_shop_umb03_modelT
- 0x809EE300: obj_shop_umb_04_pal
- 0x809EE320: obj_shop_umb_04_kasa2_tex_txt
- 0x809EE420: obj_shop_umb_04_kasa1_tex_txt
- 0x809EE520: obj_shop_umb_04_tuka1_tex_txt
- 0x809EE720: obj_shop_umb04_v
- 0x809EEAA0: obj_shop_umb04_model
- 0x809EEB68: obj_shop_umb04_modelT
- 0x809EEFA0: obj_shop_umb05_v
- 0x809EF320: obj_shop_umb05_model
- 0x809EF3D0: obj_shop_umb05_modelT
- 0x809EF3E0: obj_shop_umb_06_pal
- 0x809EF400: obj_shop_umb_06_tuka1_tex_txt
- 0x809EF600: obj_shop_umb_06_kasa1_tex_txt
- 0x809EF800: obj_shop_umb06_v
- 0x809EFDE0: obj_shop_umb06_model
- 0x809EFEB8: obj_shop_umb06_modelT
- 0x809F05E0: obj_shop_umb07_v
- 0x809F0840: obj_shop_umb07_modelT
- 0x809F0848: obj_shop_umb07_model
- 0x809F0DA0: obj_shop_umb08_v
- 0x809F1130: obj_shop_umb08_model
- 0x809F1200: obj_shop_umb08_modelT
- 0x809F1680: obj_shop_umb09_v
- 0x809F1A10: obj_shop_umb09_model
- 0x809F1AE0: obj_shop_umb09_modelT
- 0x809F1F60: obj_shop_umb10_v
- 0x809F22F0: obj_shop_umb10_model
- 0x809F23C0: obj_shop_umb10_modelT
- 0x809F2840: obj_shop_umb11_v
- 0x809F2BD0: obj_shop_umb11_model
- 0x809F2CA0: obj_shop_umb11_modelT
- 0x809F3320: obj_shop_umb12_v
- 0x809F36B0: obj_shop_umb12_model
- 0x809F3780: obj_shop_umb12_modelT
- 0x809F3C00: obj_shop_umb13_v
- 0x809F3F90: obj_shop_umb13_model
- 0x809F4060: obj_shop_umb13_modelT
- 0x809F44A0: obj_shop_umb14_v
- 0x809F4820: obj_shop_umb14_model
- 0x809F48D0: obj_shop_umb14_modelT
- 0x809F48E0: obj_shop_umb_15_pal
- 0x809F4900: obj_shop_umb_15_kasa1_tex_txt
- 0x809F4A00: obj_shop_umb_15_kasa2_tex_txt
- 0x809F4C00: obj_shop_umb_15_tuka1_tex_txt
- 0x809F4E00: obj_shop_umb15_v
- 0x809F51C0: obj_shop_umb15_model
- 0x809F5280: obj_shop_umb15_modelT
- 0x809F52A0: obj_shop_umb_16_pal
- 0x809F52C0: obj_shop_umb_16_kasa1_tex_txt
- 0x809F54C0: obj_shop_umb_16_tuka1_tex_txt
- 0x809F56C0: obj_shop_umb16_v
- 0x809F5A40: obj_shop_umb16_model
- 0x809F5AF0: obj_shop_umb16_modelT
- 0x809F5B00: obj_shop_umb_17_pal
- 0x809F5B20: obj_shop_umb_17_tuka1_tex_txt
- 0x809F5D20: obj_shop_umb_17_kasa1_tex_txt
- 0x809F5F20: obj_shop_umb17_v
- 0x809F63F0: obj_shop_umb17_model
- 0x809F64C8: obj_shop_umb17_modelT
- 0x809F6880: obj_shop_umb18_v
- 0x809F6C10: obj_shop_umb18_model
- 0x809F6CE0: obj_shop_umb18_modelT
- 0x809F6D00: obj_shop_umb_19_pal
- 0x809F6D20: obj_shop_umb_19_e_tex_txt
- 0x809F6DA0: obj_shop_umb_19_kasa_tex_txt
- 0x809F6FA0: obj_shop_umb_19_tuka_tex_txt
- 0x809F71A0: obj_shop_umb19_v
- 0x809F75A0: obj_shop_umb19_model
- 0x809F7680: obj_shop_umb19_modelT
- 0x809F76A0: obj_shop_umb_20_pal
- 0x809F76C0: obj_shop_umb_20_e_tex_txt
- 0x809F7740: obj_shop_umb_20_kasa_tex_txt
- 0x809F7B40: obj_shop_umb20_v
- 0x809F7DB0: obj_shop_umb20_model
- 0x809F7E68: obj_shop_umb20_modelT
- 0x809F7E80: obj_shop_umb_21_pal
- 0x809F7EA0: obj_shop_umb_21_kasa_tex_txt
- 0x809F82A0: obj_shop_umb_21_tuka_tex_txt
- 0x809F84A0: obj_shop_umb21_v
- 0x809F8820: obj_shop_umb21_model
- 0x809F88E8: obj_shop_umb21_modelT
- 0x809F8920: obj_shop_umb_22_pal
- 0x809F8940: obj_shop_umb_22_kasa_tex_txt
- 0x809F8B40: obj_shop_umb_22_e_tex_txt
- 0x809F8C40: obj_shop_umb22_v
- 0x809F90C0: obj_shop_umb22_model
- 0x809F9198: obj_shop_umb22_modelT
- 0x809F91A0: obj_shop_umb_23_pal
- 0x809F91C0: obj_shop_umb_23_kasa_tex_txt
- 0x809F95C0: obj_shop_umb_23_e_tex_txt
- 0x809F9640: obj_shop_umb_23_tuka_tex_txt
- 0x809F9840: obj_shop_umb23_v
- 0x809F9BA0: obj_shop_umb23_model
- 0x809F9C68: obj_shop_umb23_modelT
- 0x809F9C80: obj_shop_umb_24_pal
- 0x809F9CA0: obj_shop_umb_24_kasa1_tex_txt
- 0x809F9EA0: obj_shop_umb_24_kasa2_tex_txt
- 0x809FA0A0: obj_shop_umb_24_tuka1_tex_txt
- 0x809FA2A0: obj_shop_umb24_v
- 0x809FA660: obj_shop_umb24_model
- 0x809FA720: obj_shop_umb24_modelT
- 0x809FAB60: obj_shop_umb25_v
- 0x809FAEB0: obj_shop_umb25_model
- 0x809FAF60: obj_shop_umb25_modelT
- 0x809FAF80: obj_shop_umb_26_pal
- 0x809FAFA0: obj_shop_umb_26_kasa1_tex_txt
- 0x809FB0A0: obj_shop_umb_26_kasa2_tex_txt
- 0x809FB2A0: obj_shop_umb_26_tuka1_tex_txt
- 0x809FB4A0: obj_shop_umb26_v
- 0x809FB860: obj_shop_umb26_model
- 0x809FB930: obj_shop_umb26_modelT
- 0x809FB940: obj_shop_umb_27_pal
- 0x809FB960: obj_shop_umb_27_kasa1_tex_txt
- 0x809FBB60: obj_shop_umb_27_kasa2_tex_txt
- 0x809FBD60: obj_shop_umb_27_e_tex_txt
- 0x809FBE60: obj_shop_umb27_v
- 0x809FC2E0: obj_shop_umb27_model
- 0x809FC3D8: obj_shop_umb27_modelT
- 0x809FC3E0: obj_shop_umb_28_pal
- 0x809FC400: obj_shop_umb_28_kasa_tex_txt
- 0x809FC600: obj_shop_umb_28_tuka_tex_txt
- 0x809FC800: obj_shop_umb28_v
- 0x809FCB80: obj_shop_umb28_model
- 0x809FCC30: obj_shop_umb28_modelT
- 0x809FCC40: obj_shop_umb_29_pal
- 0x809FCC60: obj_shop_umb_29_kasa1_tex_txt
- 0x809FCE60: obj_shop_umb_29_tuka1_tex_txt
- 0x809FD060: obj_shop_umb29_v
- 0x809FD3E0: obj_shop_umb29_model
- 0x809FD490: obj_shop_umb29_modelT
- 0x809FD4C0: obj_shop_umb_30_kasa1_tex_txt
- 0x809FD6C0: obj_shop_umb_30_tuka1_tex_txt
- 0x809FD8C0: obj_shop_umb30_v
- 0x809FDC40: obj_shop_umb30_model
- 0x809FDCF8: obj_shop_umb30_modelT
- 0x809FDD00: obj_shop_umb_31_pal
- 0x809FDD20: obj_shop_umb_31_e_tex_txt
- 0x809FDDA0: obj_shop_umb_31_kasa_tex_txt
- 0x809FDFA0: obj_shop_umb_31_tuka_tex_txt
- 0x809FE1A0: obj_shop_umb31_v
- 0x809FE500: obj_shop_umb31_model
- 0x809FE5D0: obj_shop_umb31_modelT
- 0x809FEA00: obj_shop_umb32_v
- 0x809FED80: obj_shop_umb32_model
- 0x809FEE30: obj_shop_umb32_modelT
- 0x809FF060: obj_shop_umb_w_v
- 0x809FF3E0: obj_shop_umbmy_model
- 0x809FF4A0: obj_kanban_pal
- 0x809FF4C0: hakushi_pal
- 0x809FF4E0: hakushi_tex
- 0x809FF6E0: obj_s_kanban_base_tex
- 0x809FF9E0: obj_s_kanban_v
- 0x809FFA60: obj_w_kanban_base_tex
- 0x809FFD60: obj_w_kanban_v
- 0x809FFDE0: write_model
- 0x809FFE38: obj_sign_s_model
- 0x809FFE90: obj_sign_w_model
- 0x809FFEE8: obj_kanban_shadow_tex
- 0x80A000E8: obj_kanban_shadow_v
- 0x80A00128: obj_kanban_shadowT_model
- 0x80A001B0: kab_1_v
- 0x80A01A70: head_kab_model
- 0x80A01C50: mouth_kab_model
- 0x80A01CD8: Rarm2_kab_model
- 0x80A01D60: Rarm1_kab_model
- 0x80A01DD8: Larm2_kab_model
- 0x80A01E60: Larm1_kab_model
- 0x80A01ED8: chest_kab_model
- 0x80A01FA0: Rfoot2_kab_model
- 0x80A02048: Rfoot1_kab_model
- 0x80A020C8: Lfoot2_kab_model
- 0x80A02160: Lfoot1_kab_model
- 0x80A021E0: base_kab_model
- 0x80A02258: cKF_je_r_kab_1_tbl
- 0x80A02390: cKF_bs_r_kab_1
- 0x80A023A0: kab_1_pal
- 0x80A023C0: kab_1_eye1_TA_tex_txt
- 0x80A024C0: kab_1_eye2_TA_tex_txt
- 0x80A025C0: kab_1_eye3_TA_tex_txt
- 0x80A026C0: kab_1_eye4_TA_tex_txt
- 0x80A027C0: kab_1_eye5_TA_tex_txt
- 0x80A028C0: kab_1_eye6_TA_tex_txt
- 0x80A029C0: kab_1_eye7_TA_tex_txt
- 0x80A02AC0: kab_1_eye8_TA_tex_txt
- 0x80A02BC0: kab_1_tmem_txt
- 0x80A02FC0: lat_atena_win_tex
- 0x80A031C0: lat_atena_kageT_model
- 0x80A031F0: lat_atena_winT_model
- 0x80A03218: lat_atena_mode
- 0x80A03248: lat_atena_model
- 0x80A03260: lat_mes_win_tex
- 0x80A03660: lat_mes_v
- 0x80A036A0: lat_mes_winT_model
- 0x80A03700: tyo_win_icon2_pal
- 0x80A03720: tyo_win_nuno_tex_rgb_ci4_pal
- 0x80A03740: tyo_win_sw1_tex_rgb_ci4_pal
- 0x80A03760: tyo_win_sw2_tex_rgb_ci4_pal
- 0x80A03780: tyo_win_sw3_tex_rgb_ci4_pal
- 0x80A03FA0: tyo_win_balance_tex
- 0x80A044A0: tyo_win_icon_tex
- 0x80A05520: tyo_win_deposit_tex_rgb_ia8
- 0x80A06520: tyo_win_withdraw_tex
- 0x80A07520: tyo_win_nuno_tex_rgb_ci4
- 0x80A07720: tyo_win_sw1_tex_rgb_ci4
- 0x80A07B20: tyo_win_sw2_tex_rgb_ci4
- 0x80A07F20: tyo_win_sw3_tex_rgb_ci4
- 0x80A08320: tyo_win_v
- 0x80A08A60: tyo_win_fuki_model
- 0x80A08A98: tyo_win_moji1_model
- 0x80A08B08: tyo_win_w1T_model
- 0x80A08B38: tyo_win_w2T_model
- 0x80A08B68: tyo_win_w3T_model
- 0x80A08B98: tyo_win_w4T_model
- 0x80A08BC8: tyo_win_w5T_model
- 0x80A08BF8: tyo_win_w6T_model
- 0x80A08C28: tyo_win_w7T_model
- 0x80A08C58: tyo_win_w8T_model
- 0x80A08C88: tyo_win_w9T_model
- 0x80A08CB8: tyo_win_w10T_model
- 0x80A08CE8: tyo_win_wakuT_model
- 0x80A08D98: tyo_win_iconT_model
- 0x80A08DD8: tyo_win_moji2T_model
- 0x80A08E20: tyo_win_moji3T_model
- 0x80A08E48: tyo_win_mode
- 0x80A08E88: tyo_win_model
- 0x80A08F40: brt_win_cake2_pal
- 0x80A08F60: brt_win_star_tex_rgb_ci4_pal
- 0x80A08F80: brt_win_sw1_tex_rgb_ci4_pal
- 0x80A08FA0: brt_win_sw2_tex_rgb_ci4_pal
- 0x80A08FC0: brt_win_sw3_tex_rgb_ci4_pal
- 0x80A08FE0: brt_win_sw4_tex_rgb_ci4_pal
- 0x80A09000: brt_win_sw5_tex_rgb_ci4_pal
- 0x80A09020: brt_win_sw6_tex_rgb_ci4_pal
- 0x80A09040: brt_win_sw7_tex_rgb_ci4_pal
- 0x80A09060: brt_win_cake2_tex
- 0x80A09860: brt_win_ue1_tex
- 0x80A09C60: brt_win_ue2_tex
- 0x80A0A060: brt_win_ue3_tex
- 0x80A0A260: brt_win_ue4_tex
- 0x80A0A660: brt_win_ue5_tex
- 0x80A0B260: brt_win_star_tex_rgb_ci4
- 0x80A0B460: brt_win_sw1_tex_rgb_ci4
- 0x80A0B860: brt_win_sw2_tex_rgb_ci4
- 0x80A0BC60: brt_win_sw3_tex_rgb_ci4
- 0x80A0C060: brt_win_sw4_tex_rgb_ci4
- 0x80A0C460: brt_win_sw5_tex_rgb_ci4
- 0x80A0C860: brt_win_sw6_tex_rgb_ci4
- 0x80A0CC60: brt_win_sw7_tex_rgb_ci4
- 0x80A0D060: bir_win_v
- 0x80A0D760: brt_win_month_model
- 0x80A0D790: brt_win_ueT_model
- 0x80A0D858: brt_win_fukiT_model
- 0x80A0D890: brt_win_cakeT_model
- 0x80A0D8D0: brt_win_sw1T_model
- 0x80A0D900: brt_win_sw2T_model
- 0x80A0D930: brt_win_sw3T_model
- 0x80A0D960: brt_win_sw4T_model
- 0x80A0D990: brt_win_sw5T_model
- 0x80A0D9C0: brt_win_sw6T_model
- 0x80A0D9F0: brt_win_sw7T_model
- 0x80A0DA20: brt_win_sw8T_model
- 0x80A0DA50: brt_win_sw9T_model
- 0x80A0DA80: brt_win_sw10T_model
- 0x80A0DAB0: brt_win_sw11T_model
- 0x80A0DAE0: brt_win_sw12T_model
- 0x80A0DB10: brt_win_sw13T_model
- 0x80A0DB40: brt_win_sw14T_model
- 0x80A0DB70: birthday_win_mode
- 0x80A0DBB0: birthday_win_model
- 0x80A0DD00: lat_hani_v
- 0x80A0DD40: lat_hani_senT_model
- 0x80A0DD70: lat_letter_mode
- 0x80A0DDA8: lat_letter_sen_mode
- 0x80A0DDD0: lat_tegami_point_tex
- 0x80A0DE50: lat_point_v
- 0x80A0DE90: lat_point_mT_model
- 0x80A0E120: ctl_sentaku_v
- 0x80A0E160: ctl_sentaku_taguT_model
- 0x80A0E5C0: ctl_win_aw1_tex
- 0x80A0EDC0: ctl_win_aw2_tex
- 0x80A0F1C0: ctl_win_aw3_tex
- 0x80A0F9C0: ctl_win_aw4_tex
- 0x80A0FDC0: ctl_win_aw5_tex
- 0x80A101C0: ctl_win_kage1_tex
- 0x80A103C0: ctl_win_aw6_tex
- 0x80A119C0: ctl_win_aw8_tex
- 0x80A11AC0: ctl_win_aw7_tex
- 0x80A11EC0: ctl_win_kage2_tex
- 0x80A120C0: ctl_win_kage3_tex
- 0x80A122C0: ctl_win_waku3_tex
- 0x80A12AC0: ctl_win_waku4_tex
- 0x80A132C0: ctl_win_nuno1_tex_rgb_ci4_pal
- 0x80A132E0: ctl_win_nuno2_tex_rgb_ci4_pal
- 0x80A13300: ctl_win_nuno3_tex_rgb_ci4_pal
- 0x80A13320: ctl_win_nuno4_tex_rgb_ci4_pal
- 0x80A13340: ctl_win_nuno5_tex_rgb_ci4_pal
- 0x80A13360: ctl_win_nuno6_tex_rgb_ci4_pal
- 0x80A13380: ctl_win_nuno7_tex_rgb_ci4_pal
- 0x80A133A0: ctl_win_nuno8_tex_rgb_ci4_pal
- 0x80A133C0: ctl_win_w8_tex_rgb_ci4_pal
- 0x80A133E0: ctl_win_w1_tex_rgb_ci4_pal
- 0x80A13400: ctl_win_w2_tex_rgb_ci4_pal
- 0x80A13420: ctl_win_w3_tex_rgb_ci4_pal
- 0x80A13440: ctl_win_w4_tex_rgb_ci4_pal
- 0x80A13460: ctl_win_w5_tex_rgb_ci4_pal
- 0x80A13480: ctl_win_w6_tex_rgb_ci4_pal
- 0x80A134A0: ctl_win_w7_tex_rgb_ci4_pal
- 0x80A134C0: ctl_win_nuno1_tex_rgb_ci4
- 0x80A136C0: ctl_win_nuno2_tex_rgb_ci4
- 0x80A138C0: ctl_win_nuno3_tex_rgb_ci4
- 0x80A13AC0: ctl_win_nuno4_tex_rgb_ci4
- 0x80A13CC0: ctl_win_nuno5_tex_rgb_ci4
- 0x80A13EC0: ctl_win_nuno6_tex_rgb_ci4
- 0x80A140C0: ctl_win_nuno7_tex_rgb_ci4
- 0x80A142C0: ctl_win_nuno8_tex_rgb_ci4
- 0x80A144C0: ctl_win_w8_tex_rgb_ci4
- 0x80A14540: ctl_win_w1_tex_rgb_ci4
- 0x80A14940: ctl_win_w2_tex_rgb_ci4
- 0x80A14B40: ctl_win_w3_tex_rgb_ci4
- 0x80A14F40: ctl_win_w4_tex_rgb_ci4
- 0x80A15140: ctl_win_w5_tex_rgb_ci4
- 0x80A15340: ctl_win_w6_tex_rgb_ci4
- 0x80A15540: ctl_win_w7_tex_rgb_ci4
- 0x80A15740: ctl_win1_v
- 0x80A162E0: ctl_win1_w13_model
- 0x80A16318: ctl_win1_ue1T_model
- 0x80A16358: ctl_win1_ue2T_model
- 0x80A164E8: ctl_win1_nameT_model
- 0x80A16598: ctl_win1_tagu1T_model
- 0x80A165D8: ctl_win1_tagu2T_model
- 0x80A16618: ctl_win1_tagu3T_model
- 0x80A16658: ctl_win1_tagu4T_model
- 0x80A16698: ctl_win1_tagu5T_model
- 0x80A166D8: ctl_win1_tagu6T_model
- 0x80A16718: ctl_win1_tagu7T_model
- 0x80A16758: ctl_win1_tagu8T_model
- 0x80A16798: ctl_win1_w1T_model
- 0x80A167D0: ctl_win1_w2T_model
- 0x80A16808: ctl_win1_w3T_model
- 0x80A16840: ctl_win1_w4T_model
- 0x80A16878: ctl_win1_w5T_model
- 0x80A168B0: ctl_win1_w6T_model
- 0x80A168F0: ctl_win1_w7T_model
- 0x80A16928: ctl_win1_w8T_model
- 0x80A16960: ctl_win1_w9T_model
- 0x80A16998: ctl_win1_w10T_model
- 0x80A169D0: ctl_win1_w11T_model
- 0x80A16A08: ctl_win1_w12T_model
- 0x80A16A40: ctl_win1_kageT_model
- 0x80A16AE0: ctl_win_mode
- 0x80A16B10: ctl_tag_mode
- 0x80A16B40: ctl_win_model
- 0x80A16BF8: ctl_win8_color_mode
- 0x80A16C40: ctl_win7_color_mode
- 0x80A16C88: ctl_win6_color_mode
- 0x80A16CD0: ctl_win5_color_mode
- 0x80A16D18: ctl_win4_color_mode
- 0x80A16D60: ctl_win3_color_mode
- 0x80A16DA8: ctl_win2_color_mode
- 0x80A16DF0: ctl_win1_color_mode
- 0x80A182C0: dia_att_v
- 0x80A185B0: dia_att_cursor_model
- 0x80A185E8: dia_att_winT_model
- 0x80A18700: cal_win_choose_tex
- 0x80A18D00: cal_hyouji_yaji2_tex
- 0x80A19900: cal_hyouji_st1_tex_rgb_ia8
- 0x80A1A900: cal_hyouji_st5_tex_rgb_ia8
- 0x80A1C100: cal_hyouji_2b1_tex_rgb_i4
- 0x80A1C300: cal_hyouji_v
- 0x80A1C4C0: cal_hyouji_b2_model
- 0x80A1C518: cal_hyouji_3DT_model
- 0x80A1C568: cal_hyouji_shitaT_model
- 0x80A1C5B0: cal_hyouji_amojiT_model
- 0x80A1C600: cal_hyouji_stT_model
- 0x80A1C640: cal_hyoji_yaji1T_model
- 0x80A1C688: cal_hyoji_yajiA_gfx
- 0x80A1C698: cal_hyoji_yajiB_gfx
- 0x80A1C6C0: cal_win_pick_tex
- 0x80A1CBC0: cal_win_view_tex
- 0x80A1D2C0: lat_sousa_b1_tex
- 0x80A1E2C0: cal_hyouji2_2b1_tex_rgb_i4
- 0x80A1E4C0: cal_hyouji2_v
- 0x80A1E680: cal_hyouji2_bt_model
- 0x80A1E6D8: cal_hyouji2_b2_model
- 0x80A1E730: cal_hyouji2_shitaT_model
- 0x80A1E780: cal_hyouji2_bmojiT_model
- 0x80A1E7D0: cal_hyouji2_amojiT_model
- 0x80A1E820: cal_win_cursor_tex
- 0x80A1E920: cal_icon1_v
- 0x80A1E960: cal_icon_cursor_model
- 0x80A1E9C0: cal_win_mark_tex
- 0x80A1EA40: cal_icon2_v
- 0x80A1EA80: cal_icon_mark_model
- 0x80A1EAC0: cal_win_mark2_tex
- 0x80A1EB40: cal_icon3_v
- 0x80A1EBE0: cal_icon_sakana_model
- 0x80A1EC28: cal_icon_yajirushi_model
- 0x80A1EC48: cal_icon_yajirushi_gfx
- 0x80A1EC60: cal_icon_yajirushi_gfx2
- 0x80A1EC80: cal_win_nen0_tex_rgb_i4
- 0x80A1ED00: cal_win_nen1_tex_rgb_i4
- 0x80A1ED80: cal_win_nen2_tex_rgb_i4
- 0x80A1EE00: cal_win_nen3_tex_rgb_i4
- 0x80A1EE80: cal_win_nen4_tex_rgb_i4
- 0x80A1EF00: cal_win_nen5_tex_rgb_i4
- 0x80A1EF80: cal_win_nen6_tex_rgb_i4
- 0x80A1F000: cal_win_nen7_tex_rgb_i4
- 0x80A1F080: cal_win_nen8_tex_rgb_i4
- 0x80A1F100: cal_win_nen9_tex_rgb_i4
- 0x80A1F180: cal_nen_v
- 0x80A1F280: cal_win_nen_before
- 0x80A1F2A8: cal_win_nen1_model
- 0x80A1F2C0: cal_win_nen2_model
- 0x80A1F2D8: cal_win_nen3_model
- 0x80A1F2F0: cal_win_nen4_model
- 0x80A1F320: cal_win_tuki10_pal
- 0x80A1F340: cal_win_tuki11_pal
- 0x80A1F360: cal_win_tuki12_pal
- 0x80A1F380: cal_win_tuki2_pal
- 0x80A1F3A0: cal_win_tuki3_pal
- 0x80A1F3C0: cal_win_tuki4_pal
- 0x80A1F3E0: cal_win_tuki5_pal
- 0x80A1F400: cal_win_tuki6_pal
- 0x80A1F420: cal_win_tuki7_pal
- 0x80A1F440: cal_win_tuki8_pal
- 0x80A1F460: cal_win_tuki9_pal
- 0x80A1F480: cal_win_tuki2_tex
- 0x80A1F680: cal_win_tuki1_pal
- 0x80A1F6A0: cal_win_f1_tex
- 0x80A1FAA0: cal_win_f2_tex
- 0x80A1FEA0: cal_win_f3_tex
- 0x80A1FFA0: cal_win_f4_tex
- 0x80A203A0: cal_win_event_tex
- 0x80A20BA0: cal_win_m_tex
- 0x80A20CA0: cal_win_f_tex
- 0x80A20DA0: cal_win_s_tex
- 0x80A20EA0: cal_win_t_tex
- 0x80A20FA0: cal_win_w_tex
- 0x80A210A0: cal_win_tuki1_tex
- 0x80A212A0: cal_win_april_tex_rgb_ia8
- 0x80A222A0: cal_win_august_tex_rgb_ia8
- 0x80A232A0: cal_win_december_tex_rgb_ia8
- 0x80A242A0: cal_win_february_tex_rgb_ia8
- 0x80A252A0: cal_win_january_tex_rgb_ia8
- 0x80A262A0: cal_win_july_tex_rgb_ia8
- 0x80A272A0: cal_win_june_tex_rgb_ia8
- 0x80A282A0: cal_win_march_tex_rgb_ia8
- 0x80A292A0: cal_win_may_tex_rgb_ia8
- 0x80A2A2A0: cal_win_november_tex_rgb_ia8
- 0x80A2B2A0: cal_win_october_tex_rgb_ia8
- 0x80A2C2A0: cal_win_september_tex_rgb_ia8
- 0x80A2D2A0: cal_win_suuji10_tex_rgb_i4
- 0x80A2D320: cal_win_suuji11_tex_rgb_i4
- 0x80A2D3A0: cal_win_suuji12_tex_rgb_i4
- 0x80A2D420: cal_win_suuji13_tex_rgb_i4
- 0x80A2D4A0: cal_win_suuji14_tex_rgb_i4
- 0x80A2D520: cal_win_suuji15_tex_rgb_i4
- 0x80A2D5A0: cal_win_suuji16_tex_rgb_i4
- 0x80A2D620: cal_win_suuji17_tex_rgb_i4
- 0x80A2D6A0: cal_win_suuji18_tex_rgb_i4
- 0x80A2D720: cal_win_suuji19_tex_rgb_i4
- 0x80A2D7A0: cal_win_suuji1_tex_rgb_i4
- 0x80A2D820: cal_win_suuji20_tex_rgb_i4
- 0x80A2D8A0: cal_win_suuji21_tex_rgb_i4
- 0x80A2D920: cal_win_suuji22_tex_rgb_i4
- 0x80A2D9A0: cal_win_suuji23_tex_rgb_i4
- 0x80A2DA20: cal_win_suuji24_tex_rgb_i4
- 0x80A2DAA0: cal_win_suuji25_tex_rgb_i4
- 0x80A2DB20: cal_win_suuji26_tex_rgb_i4
- 0x80A2DBA0: cal_win_suuji27_tex_rgb_i4
- 0x80A2DC20: cal_win_suuji28_tex_rgb_i4
- 0x80A2DCA0: cal_win_suuji29_tex_rgb_i4
- 0x80A2DD20: cal_win_suuji2_tex_rgb_i4
- 0x80A2DDA0: cal_win_suuji30_tex_rgb_i4
- 0x80A2DE20: cal_win_suuji31_tex_rgb_i4
- 0x80A2DEA0: cal_win_suuji3_tex_rgb_i4
- 0x80A2DF20: cal_win_suuji4_tex_rgb_i4
- 0x80A2DFA0: cal_win_suuji5_tex_rgb_i4
- 0x80A2E020: cal_win_suuji6_tex_rgb_i4
- 0x80A2E0A0: cal_win_suuji7_tex_rgb_i4
- 0x80A2E120: cal_win_suuji8_tex_rgb_i4
- 0x80A2E1A0: cal_win_suuji9_tex_rgb_i4
- 0x80A2E220: cal_win_box2_tex_rgb_ia8
- 0x80A2E620: cal_win_box_tex_rgb_ia8
- 0x80A2EA20: cal_win_v
- 0x80A2F460: cal_win_tuki_model
- 0x80A2F520: cal_win_shita_model
- 0x80A2F558: cal_win_futi_model
- 0x80A2F630: cal_win_suuji_model
- 0x80A2F660: cal_win_eventT_model
- 0x80A2F690: cal_win_boxT_model
- 0x80A2F6C0: cal_win_hijituT_model
- 0x80A2F760: cal_win_doyouT_model
- 0x80A2F7B0: cal_win_nitiyouT_model
- 0x80A2F800: cal_win_monthT_model
- 0x80A2F840: cad_win_ws4_tex_rgb_ci4_pal
- 0x80A2F860: cad_win_ws1_tex_rgb_ci4_pal
- 0x80A2F880: cad_win_ws2_tex_rgb_ci4_pal
- 0x80A2F8A0: cad_win_ws3_tex_rgb_ci4_pal
- 0x80A2F8C0: cad_win_nuno_tex_rgb_ci4_pal
- 0x80A2F8E0: cad_win_w1_tex
- 0x80A300E0: cad_win_w2_tex
- 0x80A304E0: cad_win_w3_tex
- 0x80A308E0: cad_win_w4_tex
- 0x80A309E0: inv_carde_waku_tex
- 0x80A30BE0: cad_win_ws4_tex_rgb_ci4
- 0x80A30C60: cad_win_ws1_tex_rgb_ci4
- 0x80A31060: cad_win_ws2_tex_rgb_ci4
- 0x80A31260: cad_win_ws3_tex_rgb_ci4
- 0x80A31460: cad_win_nuno_tex_rgb_ci4
- 0x80A31660: cad_win_v
- 0x80A31B60: cad_win_w9_model
- 0x80A31B90: cad_win_mb_model
- 0x80A31BC8: cad_win_f_model
- 0x80A31C00: cad_win_w1T_model
- 0x80A31C30: cad_win_w2T_model
- 0x80A31C60: cad_win_w3T_model
- 0x80A31C90: cad_win_w4T_model
- 0x80A31CC0: cad_win_w5T_model
- 0x80A31CF0: cad_win_w6T_model
- 0x80A31D20: cad_win_w7T_model
- 0x80A31D50: cad_win_w8T_model
- 0x80A31D80: cad_win_ueT_model
- 0x80A31E30: cad_win_mode
- 0x80A31E70: cad_win_model
- 0x80A31F00: clg_floor2_v
- 0x80A32140: mCL_rom_myhome1_floor_model
- 0x80A32240: clg_win_star_tex
- 0x80A322C0: clg_hoshi_v
- 0x80A32300: clg_win_hoshiT_model
- 0x80A32360: clg_win_top_tex
- 0x80A32560: clg_win_bottom_tex
- 0x80A32960: cat_c_tex
- 0x80A32DE0: clg_hyouji_v
- 0x80A32F20: clg_win_cbT_model
- 0x80A32FF0: mCL_lat_letter_mode
- 0x80A33028: mCL_lat_letter_sen_mode
- 0x80A33050: clg_music_pal
- 0x80A33070: clg_music_tex
- 0x80A33270: clg_music_v
- 0x80A332B0: mCL_music_model
- 0x80A33360: dlt_win_yajirushi_tex
- 0x80A333E0: clg_shirushi_v
- 0x80A33420: clg_win_shirushi1T_model
- 0x80A33660: clg_win_ha2_tex
- 0x80A336E0: clg_win_jyuutan2_tex
- 0x80A33760: clg_win_kabe2_tex
- 0x80A337E0: clg_win_fuku2_tex
- 0x80A33860: clg_win_hone2_tex
- 0x80A338E0: clg_win_tegami2_tex
- 0x80A33960: clg_win_onpu2_tex
- 0x80A339E0: clg_win_hani2_tex
- 0x80A33A60: clg_win_kasa2_tex
- 0x80A33AE0: clg_tagu_v
- 0x80A33F60: clg_tag_win_mode
- 0x80A33F90: clg_tag_picture_mode
- 0x80A33FB0: clg_win_haT_model
- 0x80A33FC8: clg_win_kabeT_model
- 0x80A33FE0: clg_win_jyuutanT_model
- 0x80A33FF8: clg_win_fukuT_model
- 0x80A34010: clg_win_kasaT_model
- 0x80A34028: clg_win_tegamiT_model
- 0x80A34040: clg_win_haniwaT_model
- 0x80A34058: clg_win_honeT_model
- 0x80A34070: clg_win_onpuT_model
- 0x80A34088: clg_win_ha2T_model
- 0x80A340B0: clg_win_kabe2T_model
- 0x80A340D8: clg_win_jyuutan2T_model
- 0x80A34100: clg_win_fuku2T_model
- 0x80A34128: clg_win_kasa2T_model
- 0x80A34150: clg_win_tegami2T_model
- 0x80A34178: clg_win_haniwa2T_model
- 0x80A341A0: clg_win_hone2T_model
- 0x80A341C8: clg_win_onpu2T_model
- 0x80A341F0: mCL_rom_myhome1_wall_v
- 0x80A342F0: mCL_rom_myhome1_wall_model
- 0x80A34380: clg_win_kabe_tex_rgb_ci4_pal
- 0x80A343A0: clg_win_kabe_tex_rgb_ci4
- 0x80A345A0: clg_win_jyuutan_tex_rgb_ci4_pal
- 0x80A345C0: clg_win_jyuutan_tex_rgb_ci4
- 0x80A347C0: clg_win_fuku_tex_rgb_ci4_pal
- 0x80A347E0: clg_win_fuku_tex_rgb_ci4
- 0x80A349E0: clg_win_kasa_tex_rgb_ci4_pal
- 0x80A34A00: clg_win_kasa_tex_rgb_ci4
- 0x80A34C00: clg_win_tegami_tex_rgb_ci4_pal
- 0x80A34C20: clg_win_tegami_tex_rgb_ci4
- 0x80A34E20: clg_win_hani_tex_rgb_ci4_pal
- 0x80A34E40: clg_win_hani_tex_rgb_ci4
- 0x80A35040: clg_win_hone_tex_rgb_ci4_pal
- 0x80A35060: clg_win_hone_tex_rgb_ci4
- 0x80A35260: clg_win_onpu_tex_rgb_ci4_pal
- 0x80A35280: clg_win_onpu_tex_rgb_ci4
- 0x80A35480: clg_win_waku8_tex_rgb_ci4_pal
- 0x80A354A0: clg_win_waku1_tex_rgb_ci4_pal
- 0x80A354C0: clg_win_waku2_tex_rgb_ci4_pal
- 0x80A354E0: clg_win_waku3_tex_rgb_ci4_pal
- 0x80A35500: clg_win_waku4_tex_rgb_ci4_pal
- 0x80A35520: clg_win_waku5_tex_rgb_ci4_pal
- 0x80A35540: clg_win_waku6_tex_rgb_ci4_pal
- 0x80A35560: clg_win_waku7_tex_rgb_ci4_pal
- 0x80A35580: clg_win_ha_tex_rgb_ci4_pal
- 0x80A35EA0: clg_win_ran_tex
- 0x80A362A0: clg_win_w1_tex
- 0x80A36AA0: clg_win_w2_tex
- 0x80A372A0: clg_win_w3_tex
- 0x80A37AA0: clg_win_w4_tex
- 0x80A382A0: dlt_win_aw5_tex
- 0x80A383A0: clk_win_sen_tex
- 0x80A38420: clg_win_w5_tex
- 0x80A38C20: clg_win_w6_tex
- 0x80A39420: clg_win_w7_tex
- 0x80A39C20: clg_win_waku8_tex_rgb_ci4
- 0x80A39E20: clg_win_waku1_tex_rgb_ci4
- 0x80A3A220: clg_win_waku2_tex_rgb_ci4
- 0x80A3A620: clg_win_waku3_tex_rgb_ci4
- 0x80A3AA20: clg_win_waku4_tex_rgb_ci4
- 0x80A3AE20: clg_win_waku5_tex_rgb_ci4
- 0x80A3B220: clg_win_waku6_tex_rgb_ci4
- 0x80A3B620: clg_win_waku7_tex_rgb_ci4
- 0x80A3BA20: clg_win_ha_tex_rgb_ci4
- 0x80A3BC20: clg_win1_v
- 0x80A3C6F0: clg_win_sen_model
- 0x80A3C710: clg_win_waku13_model
- 0x80A3C748: clg_win_ueT_model
- 0x80A3C870: clg_win_ue2T_model
- 0x80A3C8B0: clg_win_na1T_model
- 0x80A3C8D0: clg_win_na2T_model
- 0x80A3C8E8: clg_win_na3T_model
- 0x80A3C900: clg_win_na4T_model
- 0x80A3C918: clg_win_na5T_model
- 0x80A3C930: clg_win_na6T_model
- 0x80A3C948: clg_win_na7T_model
- 0x80A3C960: clg_win_3dT_model
- 0x80A3C990: clg_win_beruT_model
- 0x80A3C9D0: clg_win_shikiriT_model
- 0x80A3CA00: clg_win_waku1T_model
- 0x80A3CA30: clg_win_waku2T_model
- 0x80A3CA60: clg_win_waku3T_model
- 0x80A3CA90: clg_win_waku4T_model
- 0x80A3CAC0: clg_win_waku5T_model
- 0x80A3CAF0: clg_win_waku6T_model
- 0x80A3CB20: clg_win_waku7T_model
- 0x80A3CB50: clg_win_waku8T_model
- 0x80A3CB80: clg_win_waku9T_model
- 0x80A3CBB0: clg_win_waku10T_model
- 0x80A3CBE0: clg_win_waku11T_model
- 0x80A3CC10: clg_win_waku12T_model
- 0x80A3CC40: clg_mwin_mode
- 0x80A3CC68: clg_name_mode
- 0x80A3CC98: clg_mwin1_model
- 0x80A3CD40: clg_mwin2_model
- 0x80A3CD80: inv_mb_v
- 0x80A3CE00: inv_md_base_model_before
- 0x80A3CE40: inv_md_base_model_a
- 0x80A3CE58: inv_md_base_model_b
- 0x80A3CE80: sav_nuki_tex
- 0x80A3D080: sav_v
- 0x80A3D0C0: sav_mb_model
- 0x80A3D320: sav_sentaku_v
- 0x80A3D360: sav_sentaku_taguT_model
- 0x80A3D3A0: sav_win_w6_tex_rgb_ci4_pal
- 0x80A3D3C0: sav_win_w1_tex_rgb_ci4_pal
- 0x80A3D3E0: sav_win_w2_tex_rgb_ci4_pal
- 0x80A3D400: sav_win_w3_tex_rgb_ci4_pal
- 0x80A3D420: sav_win_w4_tex_rgb_ci4_pal
- 0x80A3D440: sav_win_w5_tex_rgb_ci4_pal
- 0x80A3D660: sav_win1_aw1_tex
- 0x80A3DE60: sav_win1_aw6_tex
- 0x80A3E160: sav_win1_aw2_tex
- 0x80A3E960: sav_win1_aw3_tex
- 0x80A3F160: sav_win1_aw4_tex
- 0x80A3F960: sav_win1_aw5_tex
- 0x80A41360: sav_win_1_kage1_tex
- 0x80A41560: sav_win_1_kage2_tex
- 0x80A41960: sav_win1_nuno_tex_rgb_ci4
- 0x80A41B60: sav_win_w6_tex_rgb_ci4
- 0x80A41BE0: sav_win_w1_tex_rgb_ci4
- 0x80A41FE0: sav_win_w2_tex_rgb_ci4
- 0x80A423E0: sav_win_w3_tex_rgb_ci4
- 0x80A427E0: sav_win_w4_tex_rgb_ci4
- 0x80A42BE0: sav_win_w5_tex_rgb_ci4
- 0x80A42FE0: sav_win1_v
- 0x80A44160: sav_win1_w9_model
- 0x80A44198: sav_win1_kage_model
- 0x80A44200: sav_win1_waku_model
- 0x80A44288: sav_win1_f_model
- 0x80A44310: sav_win1_w1T_model
- 0x80A44348: sav_win1_w2T_model
- 0x80A44380: sav_win1_w3T_model
- 0x80A443B8: sav_win1_w4T_model
- 0x80A443F0: sav_win1_w5T_model
- 0x80A44428: sav_win1_w6T_model
- 0x80A44460: sav_win1_w7T_model
- 0x80A44498: sav_win1_w8T_model
- 0x80A444D0: sav_win1_taguT_model
- 0x80A44510: sav_win1_ueT_model
- 0x80A44668: sav_win1_nameT_model2
- 0x80A446C8: save_win1_w_before_model
- 0x80A44700: save_win1_w_all_model
- 0x80A44760: sav_win1_nuno_tex_rgb_ci4_pal
- 0x80A44780: sav_win2_nuno_tex_rgb_ci4_pal
- 0x80A447A0: sav_win3_nuno_tex_rgb_ci4_pal
- 0x80A447C0: sav_win4_nuno_tex_rgb_ci4_pal
- 0x80A447E0: sav_win5_nuno_tex_rgb_ci4_pal
- 0x80A44800: sav_win6_nuno_tex_rgb_ci4_pal
- 0x80A44820: sav_win7_nuno_tex_rgb_ci4_pal
- 0x80A44840: sav_win8_nuno_tex_rgb_ci4_pal
- 0x80A44860: des_cursor_undo_tex
- 0x80A44A60: des_cursor_sp_tex
- 0x80A44E60: des_cursor_sen_tex
- 0x80A45260: des_cursor_pen_tex
- 0x80A45660: des_cursor_nuri_tex
- 0x80A45A60: des_cursor_mark1_tex
- 0x80A45B60: des_cursor_mark2_tex
- 0x80A45C60: des_cursor_mark3_tex
- 0x80A45CE0: des_cursor_mark4_tex
- 0x80A45D60: des_cursor_waku_tex
- 0x80A46160: des_cursor_v
- 0x80A46420: des_cursor_mark1_model
- 0x80A46468: des_cursor_mark2_model
- 0x80A464B0: des_cursor_mark3_model
- 0x80A464F8: des_cursor_mark4_model
- 0x80A46540: des_cursor_undo_model
- 0x80A46588: des_cursor_penT_model
- 0x80A465D8: des_cursor_nuriT_model
- 0x80A46628: des_cursor_waku1T_model
- 0x80A46678: des_cursor_waku2T_model
- 0x80A466C8: des_cursor_spT_model
- 0x80A46718: des_cursor_wakuT_model
- 0x80A46780: des_cursor_kao1_tex
- 0x80A46B80: des_cursor_kao2_tex
- 0x80A46F80: des_cursor_kao3_tex
- 0x80A47380: des_cursor_kao4_tex
- 0x80A47580: des_cursor_kao5_tex
- 0x80A47780: des_cursor2_v
- 0x80A478C0: des_cursor_kao4_model
- 0x80A47908: des_cursor_kao5_model
- 0x80A47950: des_cursor_kao1T_model
- 0x80A479A0: des_cursor_kao2T_model
- 0x80A479F0: des_cursor_kao3T_model
- 0x80A47A40: des_win_marking3_tex
- 0x80A47B40: des_win_marking_tex
- 0x80A47BC0: des_marking_v
- 0x80A47C40: des_win_marking_model
- 0x80A47C78: des_win_marking2T_model
- 0x80A47CB0: des_sen_v
- 0x80A47CF0: des_sen_waku_model
- 0x80A47D40: des_win_suuji0_tex_rgb_i4
- 0x80A47DC0: des_win_suuji1_tex_rgb_i4
- 0x80A47E40: des_win_suuji2_tex_rgb_i4
- 0x80A47EC0: des_win_suuji3_tex_rgb_i4
- 0x80A47F40: des_win_suuji4_tex_rgb_i4
- 0x80A47FC0: des_win_suuji5_tex_rgb_i4
- 0x80A48040: des_win_suuji6_tex_rgb_i4
- 0x80A480C0: des_win_suuji7_tex_rgb_i4
- 0x80A48140: des_win_suuji8_tex_rgb_i4
- 0x80A481C0: des_win_suuji9_tex_rgb_i4
- 0x80A48240: des_suuji_v
- 0x80A48340: des_win_suuji_before
- 0x80A48368: des_win_suuji1_model
- 0x80A48390: des_win_suuji2_model
- 0x80A483B8: des_win_suuji3_model
- 0x80A483E0: des_win_suuji4_model
- 0x80A48420: des_tool_undo_tex
- 0x80A48820: des_tool_waku5_tex_rgb_ia8
- 0x80A48C20: des_tool_nuri6_tex_rgb_ia8
- 0x80A49020: des_tool_mark1_tex_rgb_ia8
- 0x80A49420: des_tool_mark2_tex_rgb_ia8
- 0x80A49820: des_tool_mark3_tex_rgb_ia8
- 0x80A49C20: des_tool_mark4_tex_rgb_ia8
- 0x80A4A020: des_tool_nuri1_tex_rgb_ia8
- 0x80A4A420: des_tool_nuri2_tex_rgb_ia8
- 0x80A4A820: des_tool_nuri3_tex_rgb_ia8
- 0x80A4AC20: des_tool_nuri4_tex_rgb_ia8
- 0x80A4B020: des_tool_nuri5_tex_rgb_ia8
- 0x80A4B420: des_tool_pen1_tex_rgb_ia8
- 0x80A4B820: des_tool_pen2_tex_rgb_ia8
- 0x80A4BC20: des_tool_pen3_tex_rgb_ia8
- 0x80A4C020: des_tool_waku1_tex_rgb_ia8
- 0x80A4C420: des_tool_waku2_tex_rgb_ia8
- 0x80A4C820: des_tool_waku3_tex_rgb_ia8
- 0x80A4CC20: des_tool_waku4_tex_rgb_ia8
- 0x80A4D020: des_tool_v
- 0x80A4D4E0: des_tool_pen1T_model
- 0x80A4D530: des_tool_pen2T_model
- 0x80A4D580: des_tool_pen3T_model
- 0x80A4D5D0: des_tool_nuriT_model
- 0x80A4D620: des_tool_nuri2T_model
- 0x80A4D670: des_tool_nuri3T_model
- 0x80A4D6C0: des_tool_nuri4T_model
- 0x80A4D710: des_tool_nuri5T_model
- 0x80A4D760: des_tool_nuri6T_model
- 0x80A4D7B0: des_tool_waku1T_model
- 0x80A4D800: des_tool_waku2T_model
- 0x80A4D850: des_tool_waku3T_model
- 0x80A4D8A0: des_tool_waku4T_model
- 0x80A4D8F0: des_tool_waku5T_model
- 0x80A4D940: des_tool_mark1T_model
- 0x80A4D990: des_tool_mark2T_model
- 0x80A4D9E0: des_tool_mark3T_model
- 0x80A4DA30: des_tool_mark4T_model
- 0x80A4DA80: des_tool_undoT_model
- 0x80A4DAD0: des_tool_pen_all_model
- 0x80A4DAF0: des_tool_nuri_all_model
- 0x80A4DB28: des_tool_waku_all_model
- 0x80A4DB58: des_tool_mark_all_model
- 0x80A4DB80: des_tool_kao1_tex
- 0x80A4DF80: des_tool_kao2_tex
- 0x80A4E380: des_tool_kao3_tex
- 0x80A4E780: des_tool_kao4_tex
- 0x80A4EB80: des_tool_kao5_tex
- 0x80A4EF80: des_tool2_v
- 0x80A4F0C0: des_tool_kao1T_model
- 0x80A4F110: des_tool_kao2T_model
- 0x80A4F160: des_tool_kao3T_model
- 0x80A4F1B0: des_tool_kao4T_model
- 0x80A4F200: des_tool_kao5T_model
- 0x80A4F250: des_tool_kao_all_model
- 0x80A4F280: des_win_sen_tex
- 0x80A4F300: des_win_kirikae_tex
- 0x80A4F700: des_win_cwaku_tex
- 0x80A4F780: des_win_aw1_tex
- 0x80A4FF80: des_win_aw2_tex
- 0x80A50780: des_win_aw3_tex
- 0x80A50980: des_win_aw4_tex
- 0x80A51180: des_win_aw5_tex
- 0x80A51380: des_win_aw6_tex
- 0x80A51580: des_win_aw7_tex
- 0x80A51780: des_win_aw8_tex
- 0x80A51880: des_win_color_tex
- 0x80A51900: des_win_start_tex
- 0x80A51C00: des_win_v
- 0x80A52980: des_win_before
- 0x80A529A0: des_win_area1_model
- 0x80A529C8: des_win_area2_model
- 0x80A529E0: des_win_area3_model
- 0x80A529F8: des_win_area4_model
- 0x80A52A10: des_win_waku_model
- 0x80A52A50: des_win_toubai_model
- 0x80A52A88: des_win_main_model
- 0x80A52AC0: des_win_grid_model
- 0x80A52B08: des_win_color_before_model
- 0x80A52B30: des_win_color_model
- 0x80A52B48: des_win_waku2_model
- 0x80A52B90: des_win_shikiri_model
- 0x80A52BC0: des_win_grid2_model
- 0x80A52C08: des_win_shitaT_model
- 0x80A52D68: des_win_kirikaeT_model
- 0x80A52DB8: des_win_startT_model
- 0x80A52E08: des_win_owariT_model
- 0x80A52E58: des_win_before_model
- 0x80A52E70: des_win_before_model_2
- 0x80A52EA0: dir_win_diary_tex
- 0x80A53DA0: lat_sousa_2b1_tex_rgb_i4
- 0x80A549A0: dia_hyouji_v
- 0x80A54AE0: dia_win_bb_model
- 0x80A54B60: dia_win_mojiT_model
- 0x80A54BA0: dia_init_mode_letter
- 0x80A54BC0: dia_init_mode
- 0x80A54C00: dia_win_entry_tex
- 0x80A54E00: dia_win_april_tex_rgb_ia8
- 0x80A55200: dia_win_august_tex_rgb_ia8
- 0x80A55600: dia_win_december_tex_rgb_ia8
- 0x80A55A00: dia_win_february_tex_rgb_ia8
- 0x80A55E00: dia_win_january_tex_rgb_ia8
- 0x80A56200: dia_win_july_tex_rgb_ia8
- 0x80A56600: dia_win_june_tex_rgb_ia8
- 0x80A56A00: dia_win_march_tex_rgb_ia8
- 0x80A56E00: dia_win_may_tex_rgb_ia8
- 0x80A57200: dia_win_november_tex_rgb_ia8
- 0x80A57600: dia_win_october_tex_rgb_ia8
- 0x80A57A00: dia_win_september_tex_rgb_ia8
- 0x80A57E00: dia_win_v
- 0x80A57FB0: dia_win_moji_model
- 0x80A57FE8: dia_win_wT_model
- 0x80A58038: dia_win_fusenT_model
- 0x80A58070: dia_win_tukiT_model
- 0x80A581C0: dia_win2_v
- 0x80A582A0: dia_win2_wT_model
- 0x80A582E0: dia_win2_fusenT_model
- 0x80A58440: dia_win3_v
- 0x80A58570: dia_win3_wT_model
- 0x80A585C0: dia_win3_fusenT_model
- 0x80A58600: lat_tegami_waku_tex
- 0x80A58A00: lat_kakunin_v
- 0x80A58A70: lat_kakunin_DL_mode
- 0x80A58AA0: lat_kakunin_c_model
- 0x80A58AD0: lat_kakunin_wakuT_model
- 0x80A58B20: lat_tegami_sw_tex
- 0x80A59B20: onp_sentaku_v
- 0x80A59BD0: lat_sentaku_c_model
- 0x80A59C10: lat_sentaku_winT_model
- 0x80A59C80: lat_tegami_sw3_tex
- 0x80A5AC80: lat_sentaku2_v
- 0x80A5AD30: lat_sentaku2_c_model
- 0x80A5AD68: lat_sentaku2_winT_model
- 0x80A5ADC0: kai_sousa_icons_tex
- 0x80A5AFC0: kai_sousa_lwaku_tex
- 0x80A5B1C0: kai_sousa_letters_tex
- 0x80A5B3C0: kai_sousa_rcontroller_tex
- 0x80A5B7C0: kai_sousa_lcontroller_a_tex
- 0x80A5C7C0: kai_sousa_punct_tex
- 0x80A5C9C0: kai_sousa_lcontroller_b_tex
- 0x80A5D9C0: kai_sousa_lcontroller_c_tex
- 0x80A5E9C0: kai_sousa_lcontroller_d_tex
- 0x80A5F9C0: kai_sousa_mojiban_tex
- 0x80A5FDC0: kai_sousa_mojiban2_tex
- 0x80A601C0: kai_sousa_kirikae_tex
- 0x80A603C0: kai_sousa_3D_tex
- 0x80A607C0: kai_sousa_ok_tex
- 0x80A609C0: kai_sousa_backspace_tex
- 0x80A60EC0: kai_sousa_cursor_tex
- 0x80A613C0: kai_sousa_shita_tex
- 0x80A617C0: kai_sousa_space_tex
- 0x80A61BC0: kai_sousa_caps_tex_rgb_i4
- 0x80A61D40: kai_sousa_small_tex_rgb_i4
- 0x80A61EC0: kai_sousa_rbutton2_tex_rgb_ia8
- 0x80A626C0: kai_sousa_rbutton_tex_rgb_ia8
- 0x80A62EC0: kai_sousa_3Dst2_tex_rgb_ia8
- 0x80A63EC0: kai_sousa_3Dst3_tex_rgb_ia8
- 0x80A64EC0: kai_sousa_3Dst4_tex_rgb_ia8
- 0x80A65EC0: kai_sousa_3Dst5_tex_rgb_ia8
- 0x80A66EC0: kai_sousa_3Dst6_tex_rgb_ia8
- 0x80A67EC0: kai_sousa_3Dst_tex_rgb_ia8
- 0x80A68EC0: kai_sousa_button1a_tex_rgb_ia8
- 0x80A696C0: kai_sousa_button1b_tex_rgb_ia8
- 0x80A69EC0: kai_sousa_button2a_tex_rgb_ia8
- 0x80A6A0C0: kai_sousa_button2b_tex_rgb_ia8
- 0x80A6A2C0: kai_sousa_controllpad1_tex_rgb_ia8
- 0x80A6A6C0: kai_sousa_controllpad2_tex_rgb_ia8
- 0x80A6AAC0: kai_sousa_controllpad3_tex_rgb_ia8
- 0x80A6AEC0: kai_sousa_controllpad4_tex_rgb_ia8
- 0x80A6B2C0: kai_sousa_controllpad5_tex_rgb_ia8
- 0x80A6B6C0: kai_sousa_lbutton2_tex_rgb_ia8
- 0x80A6BEC0: kai_sousa_lbutton_tex_rgb_ia8
- 0x80A6C6C0: kai_sousa_xbutton2_tex_rgb_ia8
- 0x80A6C8C0: kai_sousa_xbutton_tex_rgb_ia8
- 0x80A6CAC0: kai_sousa_ybutton2_tex_rgb_ia8
- 0x80A6CCC0: kai_sousa_ybutton_tex_rgb_ia8
- 0x80A6CEC0: kai_sousa_lwaku_tex_rgb_i4
- 0x80A6D0C0: kai_sousa_v
- 0x80A6D8F0: kai_sousa_mode
- 0x80A6D918: kai_sousa_lwaku_model
- 0x80A6D948: kai_sousa_kirikae_model
- 0x80A6D980: kai_sousa_henkan_model
- 0x80A6D9B8: kai_sousa_letter_model
- 0x80A6D9E8: kai_sousa_sign_model
- 0x80A6DA18: kai_sousa_mark_model
- 0x80A6DA48: kai_sousa_yajirushi_model
- 0x80A6DA70: kai_sousa_lmoji_model
- 0x80A6DAA8: kai_sousa_lbuttonT_model
- 0x80A6DAE8: kai_sousa_rbuttonT_model
- 0x80A6DB28: kai_sousa_controllerT_model
- 0x80A6DBB0: kai_sousa_shitaT_model
- 0x80A6DBF0: kai_sousa_controller2T_model
- 0x80A6DC30: kai_sousa_mojibanT_model
- 0x80A6DC98: kai_sousa_controllpadT_model
- 0x80A6DCD8: kai_sousa_ybuttonT_model
- 0x80A6DD18: kai_sousa_xbuttonT_model
- 0x80A6DD58: kai_sousa_3DT_model
- 0x80A6DD98: kai_sousa_3DstT_model
- 0x80A6DDD8: kai_sousa_bbuttonT_model
- 0x80A6DE18: kai_sousa_abuttonT_model
- 0x80A6DE58: kai_sousa_startbuttonT_model
- 0x80A6DE98: kai_sousa_endT_model
- 0x80A6DED8: kai_sousa_cancelT_model
- 0x80A6DF18: kai_sousa_cursorT_model
- 0x80A6DF58: kai_sousa_spaceT_model
- 0x80A6DFA0: testbutton
- 0x80A6E020: kai_sousa2_v
- 0x80A6EA20: lat_sousa_mode
- 0x80A6EA50: lat_sousa_sp_tex
- 0x80A6EAD0: lat_sp_v
- 0x80A6EB10: lat_sousa_spT_model
- 0x80A6EB88: lat_tegami_end_tex
- 0x80A6EF88: lat_end_v
- 0x80A6EFC8: lat_end_cordT_model
- 0x80A6F060: kai_sousa_ink_tex
- 0x80A70060: kai_sousa_inkmoji_tex
- 0x80A70260: kai_sousa_ink2_tex_rgb_i4
- 0x80A70460: kai_sousa_ink3_tex_rgb_i4
- 0x80A70660: sousa_ink_v
- 0x80A70720: kai_sousa_ink_mode
- 0x80A70748: kai_sousa_ink_model
- 0x80A707B8: kai_sousa_inktuboT_model
- 0x80A707F8: kai_sousa_inkmojiT_model
- 0x80A70840: agb_win_yajirushi_tex
- 0x80A70C40: agb_yajirushi_v
- 0x80A70C80: agb_win_yajirushiT_model
- 0x80A70CE0: gba_win_nuno_tex_rgb_ci4_pal
- 0x80A70D00: gba_win_w4_tex_rgb_ci4_pal
- 0x80A70D20: gba_win_w1_tex_rgb_ci4_pal
- 0x80A70D40: gba_win_w2_tex_rgb_ci4_pal
- 0x80A70D60: gba_win_w3_tex_rgb_ci4_pal
- 0x80A70F80: gba_win_aw1_tex
- 0x80A71780: gba_win_aw2_tex
- 0x80A71F80: gba_win_aw3_tex
- 0x80A72180: gba_win_aw4_tex
- 0x80A72480: gba_win_nuno_tex_rgb_ci4
- 0x80A72680: gba_win_w4_tex_rgb_ci4
- 0x80A72700: gba_win_w1_tex_rgb_ci4
- 0x80A72B00: gba_win_w2_tex_rgb_ci4
- 0x80A72F00: gba_win_w3_tex_rgb_ci4
- 0x80A73000: gba_win_v
- 0x80A73FA0: gba_win_w_before_model
- 0x80A73FD8: gba_win_w11_model
- 0x80A74010: gba_win_waku_model
- 0x80A74078: gba_win_mb_before_model
- 0x80A74090: gba_win_mb1_model
- 0x80A740A8: gba_win_mb2_model
- 0x80A740C0: gba_win_mb3_model
- 0x80A740D8: gba_win_mb4_model
- 0x80A740F0: gba_win_mb5_model
- 0x80A74108: gba_win_mb6_model
- 0x80A74120: gba_win_mb7_model
- 0x80A74138: gba_win_mb8_model
- 0x80A74150: gba_win_f_model
- 0x80A741B8: gba_win_w1T_model
- 0x80A741F0: gba_win_w2T_model
- 0x80A74228: gba_win_w3T_model
- 0x80A74260: gba_win_w4T_model
- 0x80A74298: gba_win_w5T_model
- 0x80A742D0: gba_win_w6T_model
- 0x80A74308: gba_win_w7T_model
- 0x80A74340: gba_win_w8T_model
- 0x80A74378: gba_win_w9T_model
- 0x80A743B0: gba_win_w10T_model
- 0x80A743E8: gba_win_ueT_model
- 0x80A74590: hni_den_2dl_tex
- 0x80A74790: hni_den_2dml_tex
- 0x80A74B90: hni_den_2dmr_tex
- 0x80A74F90: hni_den_2dm_tex
- 0x80A75390: hni_den_2dr_tex
- 0x80A75590: hni_den_2ml_tex
- 0x80A75990: hni_den_2mr_tex
- 0x80A75D90: hni_den_2ul_tex
- 0x80A75F90: hni_den_2uml_tex
- 0x80A76390: hni_den_2umr_tex
- 0x80A76790: hni_den_2um_tex
- 0x80A76B90: hni_den_2m_tex
- 0x80A77590: hni_den_2ur_tex
- 0x80A77790: hni_den_v
- 0x80A77B90: hni_den_senT_model
- 0x80A77BF8: hni_den_win2T_model
- 0x80A78030: hni_den_3DmT_model
- 0x80A78098: hni_den_mode
- 0x80A780C0: hni_den_model
- 0x80A78100: hnd_pal
- 0x80A78120: hnd_white_txt
- 0x80A78140: hnd_fin_txt
- 0x80A781C0: hnd_back_txt
- 0x80A783C0: hnd_neck_txt
- 0x80A78440: hnd_front_txt
- 0x80A78640: hnd_v
- 0x80A79960: ko_hnd_model
- 0x80A799D8: koT_hnd_model
- 0x80A79A50: kusuri_hnd_model
- 0x80A79AC8: kusuriT_hnd_model
- 0x80A79B40: naka_hnd_model
- 0x80A79BB8: nakaT_hnd_model
- 0x80A79C30: hito_hnd_model
- 0x80A79CA8: hitoT_hnd_model
- 0x80A79D20: oya_hnd_model
- 0x80A79DD8: oyaT_hnd_model
- 0x80A79E50: body_hnd_model
- 0x80A79F58: cKF_ckcb_r_hnd_sasu_tbl
- 0x80A79F74: cKF_kn_hnd_sasu_tbl
- 0x80A79F84: cKF_c_hnd_sasu_tbl
- 0x80A7A024: cKF_ds_hnd_sasu_tbl
- 0x80A7A21C: cKF_ba_r_hnd_sasu
- 0x80A7A230: cKF_ckcb_r_hnd_side_tbl
- 0x80A7A24C: cKF_kn_hnd_side_tbl
- 0x80A7A25C: cKF_c_hnd_side_tbl
- 0x80A7A2FC: cKF_ds_hnd_side_tbl
- 0x80A7A4F4: cKF_ba_r_hnd_side
- 0x80A7A508: cKF_ckcb_r_hnd_catch_tbl
- 0x80A7A524: cKF_kn_hnd_catch_tbl
- 0x80A7A540: cKF_c_hnd_catch_tbl
- 0x80A7A5D4: cKF_ds_hnd_catch_tbl
- 0x80A7A790: cKF_ba_r_hnd_catch
- 0x80A7A7A4: cKF_je_r_hnd_tbl
- 0x80A7A8F4: cKF_bs_r_hnd
- 0x80A7A900: hni_nwin2_hani_tex_rgb_ci4_pal
- 0x80A7A920: hni_win_shita7_tex_rgb_ci4_pal
- 0x80A7A940: hni_win_shita1_tex_rgb_ci4_pal
- 0x80A7A960: hni_win_shita2_tex_rgb_ci4_pal
- 0x80A7A980: hni_win_shita3_tex_rgb_ci4_pal
- 0x80A7A9A0: hni_win_shita4_tex_rgb_ci4_pal
- 0x80A7A9C0: hni_win_shita5_tex_rgb_ci4_pal
- 0x80A7A9E0: hni_win_shita6_tex_rgb_ci4_pal
- 0x80A7AE00: hni_nwin2_w_tex
- 0x80A7B800: hni_win_ue1_tex
- 0x80A7C000: hni_win_ue2_tex
- 0x80A7C800: hni_win_ue3_tex
- 0x80A7CC00: hni_win_ue4_tex
- 0x80A7CD00: hni_win_ue5_tex
- 0x80A7D500: hni_win_ue6_tex
- 0x80A7DD00: hni_win_ue7_tex
- 0x80A7ED00: hni_nwin2_hani_tex_rgb_ci4
- 0x80A7EF00: hni_win_shita7_tex_rgb_ci4
- 0x80A7F100: hni_win_shita1_tex_rgb_ci4
- 0x80A7F500: hni_win_shita2_tex_rgb_ci4
- 0x80A7F900: hni_win_shita3_tex_rgb_ci4
- 0x80A7FB00: hni_win_shita4_tex_rgb_ci4
- 0x80A7FF00: hni_win_shita5_tex_rgb_ci4
- 0x80A80300: hni_win_shita6_tex_rgb_ci4
- 0x80A80700: hni_win_v
- 0x80A80F00: hni_win_w13_model
- 0x80A80F38: hni_nwin2_winT_model
- 0x80A81058: hni_nwin2_win2T_model
- 0x80A810A0: hni_nwin_3DmT_model
- 0x80A810E0: hni_nwin2_wakuT_model
- 0x80A81120: hni_win_w1T_model
- 0x80A81158: hni_win_w2T_model
- 0x80A81190: hni_win_w3T_model
- 0x80A811C8: hni_win_w4T_model
- 0x80A81200: hni_win_w5T_model
- 0x80A81238: hni_win_w6T_model
- 0x80A81270: hni_win_w7T_model
- 0x80A812A8: hni_win_w8T_model
- 0x80A812E0: hni_win_w9T_model
- 0x80A81318: hni_win_w10T_model
- 0x80A81350: hni_win_w11T_model
- 0x80A81388: hni_win_w12T_model
- 0x80A813C0: hni_win_mode
- 0x80A81410: hni_win_modelT
- 0x80A814C0: inv_mushi_nuno_tex_rgb_ci4_pal
- 0x80A819C0: inv_mwin_shirushi1_tex
- 0x80A82BC0: inv_mushi_waku2_tex
- 0x80A837C0: inv_mushi_moji_tex
- 0x80A83A40: inv_mushi_aw5_tex
- 0x80A83AC0: inv_mushi_nuno_tex_rgb_ci4
- 0x80A85140: inv_mushi_v
- 0x80A85A60: inv_mushi_w14_model
- 0x80A85A90: inv_mushi_moji_model
- 0x80A85AC0: inv_mushi_w1T_model
- 0x80A85AF0: inv_mushi_w2T_model
- 0x80A85B20: inv_mushi_w3T_model
- 0x80A85B50: inv_mushi_w4T_model
- 0x80A85B80: inv_mushi_w5T_model
- 0x80A85BB0: inv_mushi_w6T_model
- 0x80A85BE0: inv_mushi_w7T_model
- 0x80A85C10: inv_mushi_w8T_model
- 0x80A85C40: inv_mushi_w9T_model
- 0x80A85C70: inv_mushi_w10T_model
- 0x80A85CA0: inv_mushi_w11T_model
- 0x80A85CD0: inv_mushi_w12T_model
- 0x80A85D00: inv_mushi_w13T_model
- 0x80A85D30: inv_mushi_waku2T_model
- 0x80A85D80: inv_mushi_ueT_model
- 0x80A85E78: inv_mushi_ue2T_model
- 0x80A85EB8: inv_mushi_daimeiT_model
- 0x80A85EF8: inv_mushi_shirushiT_model
- 0x80A85F30: inv_mushi_scroll_mode
- 0x80A85F50: inv_mushi_model
- 0x80A86010: inv_mushi_part_model
- 0x80A86040: inv_mwin_w1_tex_rgb_ci4_pal
- 0x80A86060: inv_mwin_w2_tex_rgb_ci4_pal
- 0x80A86080: inv_mwin_w3_tex_rgb_ci4_pal
- 0x80A860A0: inv_mwin_w4_tex_rgb_ci4_pal
- 0x80A860C0: inv_mwin_w6_tex_rgb_ci4_pal
- 0x80A864E0: inv_mwin_aw6_tex
- 0x80A868E0: inv_mwin_shirushi4_tex
- 0x80A86AE0: inv_mwin_sen_tex
- 0x80A86B60: inv_mwin_sen2_tex
- 0x80A86BE0: inv_mwin_suujiwaku1_tex
- 0x80A86DE0: inv_original_shirushi_tex
- 0x80A86FE0: inv_mwin_suujiwaku2_tex
- 0x80A871E0: inv_original_shirushi3_tex
- 0x80A881E0: originl
- 0x80A883E0: original2
- 0x80A887E0: inv_mwin_aw3_tex
- 0x80A88BE0: inv_mwin_aw4_tex
- 0x80A88E60: inv_mwin_items_tex
- 0x80A89060: inv_mwin_letters_tex
- 0x80A89260: inv_mwin_bells_tex
- 0x80A89460: inv_mwin_w5_tex_rgb_ci4
- 0x80A894E0: inv_mwin_w1_tex_rgb_ci4
- 0x80A896E0: inv_mwin_w2_tex_rgb_ci4
- 0x80A89AE0: inv_mwin_w3_tex_rgb_ci4
- 0x80A89EE0: inv_mwin_w4_tex_rgb_ci4
- 0x80A8A0E0: inv_mwin_w6_tex_rgb_ci4
- 0x80A8A4E0: inv_mwin_v
- 0x80A8B760: inv_mwin_w13_model
- 0x80A8B788: inv_mwin_1c_model
- 0x80A8B7F0: inv_mwin_kuni_model
- 0x80A8B848: inv_mwin_kuni2_model
- 0x80A8B898: inv_mwin_item_model
- 0x80A8B8C8: inv_mwin_tegami_model
- 0x80A8B8F8: inv_mwin_okane_model
- 0x80A8B928: inv_mwin_shirushi3_model
- 0x80A8B958: inv_mwin_w1T_model
- 0x80A8B988: inv_mwin_w2T_model
- 0x80A8B9B8: inv_mwin_w3T_model
- 0x80A8B9E8: inv_mwin_w4T_model
- 0x80A8BA18: inv_mwin_w5T_model
- 0x80A8BA58: inv_mwin_w6T_model
- 0x80A8BA88: inv_mwin_w7T_model
- 0x80A8BAB8: inv_mwin_w8T_model
- 0x80A8BAE8: inv_mwin_w9T_model
- 0x80A8BB18: inv_mwin_w10T_model
- 0x80A8BB48: inv_mwin_w11T_model
- 0x80A8BB78: inv_mwin_w12T_model
- 0x80A8BBA8: inv_mwin_shirushi2T_model
- 0x80A8BBE0: inv_mwin_1cT_model
- 0x80A8BCA0: inv_mwin_1bT_model
- 0x80A8BCC8: inv_mwin_2bT_model
- 0x80A8BCF0: inv_mwin_3bT_model
- 0x80A8BD18: inv_mwin_4bT_model
- 0x80A8BD40: inv_mwin_5bT_model
- 0x80A8BD68: inv_mwin_6bT_model
- 0x80A8BD90: inv_mwin_7bT_model
- 0x80A8BDB8: inv_mwin_8bT_model
- 0x80A8BDE0: inv_mwin_9bT_model
- 0x80A8BE08: inv_mwin_10bT_model
- 0x80A8BE30: inv_mwin_11bT_model
- 0x80A8BE58: inv_mwin_12bT_model
- 0x80A8BE80: inv_mwin_13bT_model
- 0x80A8BEA8: inv_mwin_14bT_model
- 0x80A8BED0: inv_mwin_15bT_model
- 0x80A8BEF8: inv_mwin_1aT_model
- 0x80A8BF20: inv_mwin_2aT_model
- 0x80A8BF48: inv_mwin_3aT_model
- 0x80A8BF70: inv_mwin_4aT_model
- 0x80A8BF98: inv_mwin_5aT_model
- 0x80A8BFC0: inv_mwin_6aT_model
- 0x80A8BFE8: inv_mwin_7aT_model
- 0x80A8C010: inv_mwin_8aT_model
- 0x80A8C038: inv_mwin_9aT_model
- 0x80A8C060: inv_mwin_10aT_model
- 0x80A8C088: inv_mwin_3DmT_model
- 0x80A8C0B8: inv_mwin_shirushiT_model
- 0x80A8C0E8: inv_mwin_suujiwakuT_model
- 0x80A8C140: inv_mwin_mode
- 0x80A8C168: inv_mwin_model
- 0x80A8C250: inv_mwin_item_frame_mode
- 0x80A8C2A0: inv_sakana_nuno_tex_rgb_ci4_pal
- 0x80A8C780: inv_mwin_shirushi2_tex
- 0x80A8D980: inv_sakana_waku1_tex
- 0x80A8E580: inv_sakana_moji_tex
- 0x80A8E780: inv_sakana_waku2_tex
- 0x80A8F080: inv_sakana_nuno_tex_rgb_ci4
- 0x80A90680: inv_sakana_v
- 0x80A90FC0: inv_sakana_w14_model
- 0x80A90FF0: inv_sakana_moji_model
- 0x80A91020: inv_sakana_w1T_model
- 0x80A91050: inv_sakana_w2T_model
- 0x80A91080: inv_sakana_w3T_model
- 0x80A910B0: inv_sakana_w4T_model
- 0x80A910E0: inv_sakana_w5T_model
- 0x80A91110: inv_sakana_w6T_model
- 0x80A91140: inv_sakana_w7T_model
- 0x80A91170: inv_sakana_w8T_model
- 0x80A911A0: inv_sakana_w9T_model
- 0x80A911D0: inv_sakana_w10T_model
- 0x80A91200: inv_sakana_w11T_model
- 0x80A91230: inv_sakana_w12T_model
- 0x80A91270: inv_sakana_w13T_model
- 0x80A912A0: inv_sakana_waku2T_model
- 0x80A912F8: inv_sakana_ueT_model
- 0x80A913F0: inv_sakana_ue2T_model
- 0x80A91430: inv_sakana_daimeiT_model
- 0x80A91480: inv_sakana_shirushiT_model
- 0x80A914B8: inv_sakana_scroll_mode
- 0x80A914E0: inv_sakana_model
- 0x80A915B8: inv_sakana_part_model
- 0x80A91870: inv_uki_model
- 0x80A91C30: inv_uki2_model
- 0x80A91D60: inv_mwin_binsen1_pal
- 0x80A91D80: inv_mwin_binsen1_tex
- 0x80A91F80: inv_mwin_binsen2_tex
- 0x80A92180: inv_mwin_binsen3_tex
- 0x80A92380: inv_mwin_binsen4_tex
- 0x80A92580: inv_mwin_cnaegi_pal
- 0x80A925A0: inv_mwin_cnaegi_tex
- 0x80A927A0: inv_mwin_2cabu1_pal
- 0x80A927C0: inv_mwin_2cabu1_tex
- 0x80A929C0: inv_mwin_fukubukuro2_pal
- 0x80A929E0: inv_mwin_fukubukuro2_tex_rgb_ci4_pal
- 0x80A92A00: inv_mwin_fukubukuro_tex_rgb_ci4
- 0x80A92C00: inv_mwin_fukubukuro2_tex_rgb_ci4
- 0x80A92E00: inv_mwin_gmushi_pal
- 0x80A92E20: inv_mwin_gturi_pal
- 0x80A92E40: inv_mwin_gscoop_pal
- 0x80A92E60: inv_mwin_gono_pal
- 0x80A92E80: inv_mwin_gmushi_tex
- 0x80A93080: inv_mwin_gturi_tex
- 0x80A93280: inv_mwin_gscoop_tex
- 0x80A93480: inv_mwin_gono_tex
- 0x80A93680: inv_mwin_hitodama_pal
- 0x80A936A0: inv_mwin_hitodama1_tex
- 0x80A938A0: inv_mwin_hitodama2_tex
- 0x80A93AA0: inv_mwin_hitodama3_tex
- 0x80A93CA0: inv_mwin_hitodama4_tex
- 0x80A93EA0: inv_mwin_hitodama5_tex
- 0x80A940A0: inv_mwin_01monshiro_pal
- 0x80A940E0: inv_mwin_02monki_pal
- 0x80A94120: inv_mwin_03kiageha_pal
- 0x80A94160: inv_mwin_04ohmurasaki_pal
- 0x80A941A0: inv_mwin_05abura_pal
- 0x80A941E0: inv_mwin_06minmin_pal
- 0x80A94220: inv_mwin_07tukutuku_pal
- 0x80A94260: inv_mwin_08higurashi_pal
- 0x80A942A0: inv_mwin_09akiakane_pal
- 0x80A942E0: inv_mwin_10shiokara_pal
- 0x80A94320: inv_mwin_11ginyanma_pal
- 0x80A94360: inv_mwin_12oniyanma_pal
- 0x80A943A0: inv_mwin_13koorogi_pal
- 0x80A943E0: inv_mwin_14kirigirisu_pal
- 0x80A94420: inv_mwin_15matumushi_pal
- 0x80A94460: inv_mwin_16suzumushi_pal
- 0x80A944A0: inv_mwin_17tentou_pal
- 0x80A944E0: inv_mwin_18nanahoshi_pal
- 0x80A94520: inv_mwin_19kamakiri_pal
- 0x80A94560: inv_mwin_20syouryou_pal
- 0x80A945A0: inv_mwin_21tonosama_pal
- 0x80A945E0: inv_mwin_22danna_pal
- 0x80A94620: inv_mwin_23hati_pal
- 0x80A94660: inv_mwin_24genji_pal
- 0x80A946A0: inv_mwin_25kanabun_pal
- 0x80A946E0: inv_mwin_26gomadara_pal
- 0x80A94720: inv_mwin_27tamamushi_pal
- 0x80A94760: inv_mwin_28kabuto_pal
- 0x80A947A0: inv_mwin_29hirata_pal
- 0x80A947E0: inv_mwin_30nokogiri_pal
- 0x80A94820: inv_mwin_31miyama_pal
- 0x80A94860: inv_mwin_32okuwa_pal
- 0x80A948A0: inv_mwin_01monshiro_tex
- 0x80A94AA0: inv_mwin_02monki_tex
- 0x80A94CA0: inv_mwin_03kiageha_tex
- 0x80A94EA0: inv_mwin_04ohmurasaki_tex
- 0x80A950A0: inv_mwin_05abura_tex
- 0x80A952A0: inv_mwin_06minmin_tex
- 0x80A954A0: inv_mwin_07tukutuku_tex
- 0x80A956A0: inv_mwin_08higurashi_tex
- 0x80A958A0: inv_mwin_09akiakane_tex
- 0x80A95AA0: inv_mwin_10shiokara_tex
- 0x80A95CA0: inv_mwin_11ginyanma_tex
- 0x80A95EA0: inv_mwin_12oniyanma_tex
- 0x80A960A0: inv_mwin_13koorogi_tex
- 0x80A962A0: inv_mwin_14kirigirisu_tex
- 0x80A964A0: inv_mwin_15matumushi_tex
- 0x80A966A0: inv_mwin_16suzumushi_tex
- 0x80A968A0: inv_mwin_17tentou_tex
- 0x80A96AA0: inv_mwin_18nanahoshi_tex
- 0x80A96CA0: inv_mwin_19kamakiri_tex
- 0x80A96EA0: inv_mwin_20syouryou_tex
- 0x80A970A0: inv_mwin_21tonosama_tex
- 0x80A972A0: inv_mwin_22danna_tex
- 0x80A974A0: inv_mwin_23hati_tex
- 0x80A976A0: inv_mwin_24genji_tex
- 0x80A978A0: inv_mwin_25kanabun_tex
- 0x80A97AA0: inv_mwin_26gomadara_tex
- 0x80A97CA0: inv_mwin_27tamamushi_tex
- 0x80A97EA0: inv_mwin_28kabuto_tex
- 0x80A980A0: inv_mwin_29hirata_tex
- 0x80A982A0: inv_mwin_30nokogiri_tex
- 0x80A984A0: inv_mwin_31miyama_tex
- 0x80A986A0: inv_mwin_32okuwa_tex
- 0x80A988A0: inv_mwin_08oonamazu_pal
- 0x80A988E0: inv_mwin_01funa_pal
- 0x80A98920: inv_mwin_02masu_pal
- 0x80A98960: inv_mwin_03koi_pal
- 0x80A989A0: inv_mwin_04nishiki_pal
- 0x80A989E0: inv_mwin_05nigoi_pal
- 0x80A98A20: inv_mwin_06ugui_pal
- 0x80A98A60: inv_mwin_07namazu_pal
- 0x80A98AA0: inv_mwin_09oikawa_pal
- 0x80A98AE0: inv_mwin_10tanago_pal
- 0x80A98B20: inv_mwin_11dojyou_pal
- 0x80A98B60: inv_mwin_12gill_pal
- 0x80A98BA0: inv_mwin_13bass_pal
- 0x80A98BE0: inv_mwin_14bassm_pal
- 0x80A98C20: inv_mwin_15bassl_pal
- 0x80A98C60: inv_mwin_16raigyo_pal
- 0x80A98CA0: inv_mwin_17unagi_pal
- 0x80A98CE0: inv_mwin_18donko_pal
- 0x80A98D20: inv_mwin_19wakasagi_pal
- 0x80A98D60: inv_mwin_20ayu_pal
- 0x80A98DA0: inv_mwin_21yamame_pal
- 0x80A98DE0: inv_mwin_22niji_pal
- 0x80A98E20: inv_mwin_23iwana_pal
- 0x80A98E60: inv_mwin_24itou_pal
- 0x80A98EA0: inv_mwin_25sake_pal
- 0x80A98EE0: inv_mwin_26kingyo_pal
- 0x80A98F20: inv_mwin_27demekin_pal
- 0x80A98F60: inv_mwin_28gupi_pal
- 0x80A98FA0: inv_mwin_29angel_pal
- 0x80A98FE0: inv_mwin_30pirania_pal
- 0x80A99020: inv_mwin_31aroana_pal
- 0x80A99060: inv_mwin_32kaseki_pal
- 0x80A990A0: inv_mwin_08oonamazu_tex
- 0x80A992A0: inv_mwin_01funa_tex
- 0x80A994A0: inv_mwin_02masu_tex
- 0x80A996A0: inv_mwin_03koi_tex
- 0x80A998A0: inv_mwin_04nishiki_tex
- 0x80A99AA0: inv_mwin_05nigoi_tex
- 0x80A99CA0: inv_mwin_06ugui_tex
- 0x80A99EA0: inv_mwin_07namazu_tex
- 0x80A9A0A0: inv_mwin_09oikawa_tex
- 0x80A9A2A0: inv_mwin_10tanago_tex
- 0x80A9A4A0: inv_mwin_11dojyou_tex
- 0x80A9A6A0: inv_mwin_12gill_tex
- 0x80A9A8A0: inv_mwin_13bass_tex
- 0x80A9AAA0: inv_mwin_14bassm_tex
- 0x80A9ACA0: inv_mwin_15bassl_tex
- 0x80A9AEA0: inv_mwin_16raigyo_tex
- 0x80A9B0A0: inv_mwin_17unagi_tex
- 0x80A9B2A0: inv_mwin_18donko_tex
- 0x80A9B4A0: inv_mwin_19wakasagi_tex
- 0x80A9B6A0: inv_mwin_20ayu_tex
- 0x80A9B8A0: inv_mwin_21yamame_tex
- 0x80A9BAA0: inv_mwin_22niji_tex
- 0x80A9BCA0: inv_mwin_23iwana_tex
- 0x80A9BEA0: inv_mwin_24itou_tex
- 0x80A9C0A0: inv_mwin_25sake_tex
- 0x80A9C2A0: inv_mwin_26kingyo_tex
- 0x80A9C4A0: inv_mwin_27demekin_tex
- 0x80A9C6A0: inv_mwin_28gupi_tex
- 0x80A9C8A0: inv_mwin_29angel_tex
- 0x80A9CAA0: inv_mwin_30pirania_tex
- 0x80A9CCA0: inv_mwin_31aroana_tex
- 0x80A9CEA0: inv_mwin_32kaseki_tex
- 0x80A9D0A0: inv_mwin_7fukubiki_pal
- 0x80A9D0C0: inv_mwin_8fukubiki_pal
- 0x80A9D0E0: inv_mwin_9fukubiki_pal
- 0x80A9D100: inv_mwin_10fukubiki_pal
- 0x80A9D120: inv_mwin_11fukubiki_pal
- 0x80A9D140: inv_mwin_12fukubiki_pal
- 0x80A9D160: inv_mwin_nuts_pal
- 0x80A9D180: inv_mwin_nuts_tex
- 0x80A9D380: inv_mwin_fork_pal
- 0x80A9D3A0: inv_mwin_fork_tex
- 0x80A9D5A0: inv_mwin_fuku3_pal
- 0x80A9D5C0: inv_mwin_fuku3_tex
- 0x80A9D7C0: inv_mwin_ame_pal
- 0x80A9D7E0: inv_mwin_ame_tex
- 0x80A9D9E0: inv_mwin_2fukubiki_pal
- 0x80A9DA00: inv_mwin_3fukubiki_pal
- 0x80A9DA20: inv_mwin_4fukubiki_pal
- 0x80A9DA40: inv_mwin_5fukubiki_pal
- 0x80A9DA60: inv_mwin_6fukubiki_pal
- 0x80A9DA80: inv_mwin_1fukubiki_pal
- 0x80A9DAA0: inv_mwin_1biki3_tex
- 0x80A9DCA0: inv_mwin_1biki5_tex
- 0x80A9DEA0: inv_mwin_1biki4_tex
- 0x80A9E0A0: inv_mwin_1biki2_tex
- 0x80A9E2A0: inv_mwin_1biki1_tex
- 0x80A9E4A0: inv_mwin_leaf_pal
- 0x80A9E4C0: inv_mwin_naegi_pal
- 0x80A9E4E0: inv_mwin_seed_pal
- 0x80A9E500: inv_mwin_unbrella_pal
- 0x80A9E520: inv_mwin_jyuutan_pal
- 0x80A9E540: inv_mwin_kabe2_pal
- 0x80A9E560: inv_mwin_leaf_tex
- 0x80A9E760: inv_mwin_naegi_tex
- 0x80A9E960: inv_mwin_seed_tex
- 0x80A9EB60: inv_mwin_unbrella_tex
- 0x80A9ED60: inv_mwin_jyuutan_tex
- 0x80A9EF60: inv_mwin_kabe_tex
- 0x80A9F160: inv_mwin_matutake2_pal
- 0x80A9F180: inv_mwin_matutake_tex
- 0x80A9F380: inv_mwin_haniwa_pal
- 0x80A9F3A0: inv_mwin_haniwa_tex
- 0x80A9F5A0: inv_mwin_aki_pal
- 0x80A9F5C0: inv_mwin_fukubukuro_pal
- 0x80A9F5E0: inv_mwin_kutu_pal
- 0x80A9F600: inv_mwin_akikan_tex
- 0x80A9F800: inv_mwin_fukubukuro_tex
- 0x80A9FA00: inv_mwin_taiya_tex
- 0x80A9FC00: inv_mwin_kutu_tex
- 0x80A9FE00: inv_mwin_ana_pal
- 0x80A9FE20: inv_mwin_onpu_pal
- 0x80A9FE40: inv_mwin_ana_tex
- 0x80AA0040: inv_mwin_onpu_tex
- 0x80AA0240: inv_mwin_video_pal
- 0x80AA0260: inv_mwin_camera2_pal
- 0x80AA0280: inv_mwin_GB_pal
- 0x80AA02A0: inv_mwin_hankati_pal
- 0x80AA02C0: inv_mwin_ehon_pal
- 0x80AA02E0: inv_mwin_manga_pal
- 0x80AA0300: inv_mwin_glasses_pal
- 0x80AA0320: inv_mwin_pokepi_pal
- 0x80AA0340: inv_mwin_tetyou_pal
- 0x80AA0360: inv_mwin_tokei_pal
- 0x80AA0380: inv_mwin_video_tex
- 0x80AA0580: inv_mwin_camera_tex
- 0x80AA0780: inv_mwin_GB_tex
- 0x80AA0980: inv_mwin_hankati_tex
- 0x80AA0B80: inv_mwin_ehon_tex
- 0x80AA0D80: inv_mwin_manga_tex
- 0x80AA0F80: inv_mwin_glasses_tex
- 0x80AA1180: inv_mwin_pokepi_tex
- 0x80AA1380: inv_mwin_tetyou_tex
- 0x80AA1580: inv_mwin_tokei_tex
- 0x80AA1780: inv_mwin_kaseki2_pal
- 0x80AA17A0: inv_mwin_kaseki_pal
- 0x80AA17C0: inv_mwin_kaseki2_tex
- 0x80AA19C0: inv_mwin_kaseki_tex
- 0x80AA1BC0: inv_mwin_apple_pal
- 0x80AA1BE0: inv_mwin_orange_pal
- 0x80AA1C00: inv_mwin_peach_pal
- 0x80AA1C20: inv_mwin_pear_pal
- 0x80AA1C40: inv_mwin_apple_tex
- 0x80AA1E40: inv_mwin_orange_tex
- 0x80AA2040: inv_mwin_peach_tex
- 0x80AA2240: inv_mwin_pear_tex
- 0x80AA2440: inv_mwin_mtegami2_pal
- 0x80AA2460: inv_mwin_mtegami_pal
- 0x80AA2480: inv_mwin_otegami_pal
- 0x80AA24A0: inv_mwin_mtegami2_tex
- 0x80AA26A0: inv_mwin_pmtegami2_tex
- 0x80AA28A0: inv_mwin_mtegami_tex
- 0x80AA2AA0: inv_mwin_pmtegami_tex
- 0x80AA2CA0: inv_mwin_otegami_tex
- 0x80AA2EA0: inv_mwin_potegami_tex
- 0x80AA30A0: inv_mwin_ono_pal
- 0x80AA30C0: inv_mwin_scoop_pal
- 0x80AA30E0: inv_mwin_turi_tex_pal
- 0x80AA3100: inv_mwin_mushi_pal
- 0x80AA3120: inv_mwin_ono_tex
- 0x80AA3320: inv_mwin_scoop_tex
- 0x80AA3520: inv_mwin_turi_tex
- 0x80AA3720: inv_mwin_mushi_tex
- 0x80AA3920: inv_mwin_cabu1_pal
- 0x80AA3940: inv_mwin_cabu1_tex
- 0x80AA3B40: inv_mwin_cabu2_tex
- 0x80AA3D40: inv_mwin_cabu3_tex
- 0x80AA3F40: inv_mwin_okane1_pal
- 0x80AA3F60: inv_mwin_okane4_tex
- 0x80AA4160: inv_mwin_okane1_tex
- 0x80AA4360: inv_mwin_okane2_tex
- 0x80AA4560: inv_mwin_okane3_tex
- 0x80AA4760: inv_mwin_pbox2_pal
- 0x80AA4780: inv_mwin_pbox_tex
- 0x80AA4980: inv_mwin_hiougi_pal
- 0x80AA49A0: inv_mwin_hirako_pal
- 0x80AA49C0: inv_mwin_hone_pal
- 0x80AA49E0: inv_mwin_hora_pal
- 0x80AA4A00: inv_mwin_hoshida_pal
- 0x80AA4A20: inv_mwin_sango_pal
- 0x80AA4A40: inv_mwin_syako_pal
- 0x80AA4A60: inv_mwin_hiougi_tex
- 0x80AA4C60: inv_mwin_hirako_tex
- 0x80AA4E60: inv_mwin_hone_tex
- 0x80AA5060: inv_mwin_hora_tex
- 0x80AA5260: inv_mwin_hoshida_tex
- 0x80AA5460: inv_mwin_sango_tex
- 0x80AA5660: inv_mwin_syako_tex
- 0x80AA5860: inv_win_mark_tex
- 0x80AA5960: inv_mark_v
- 0x80AA59A0: inv_mark_model
- 0x80AA59D0: inv_item_v
- 0x80AA5A10: inv_item_mode
- 0x80AA5A38: inv_item_shadow_mode
- 0x80AA5A70: inv_item_model
- 0x80AA5AA0: inv_mwin_sanddollar_pal
- 0x80AA5AC0: inv_mwin_sanddollar_tex
- 0x80AA5CC0: inv_mwin_unknown_pal
- 0x80AA5CE0: inv_mwin_unknown_tex
- 0x80AA5EE0: inv_mwin_kanban_pal
- 0x80AA5F00: inv_mwin_kanban_tex
- 0x80AA6100: inv_mwin_utiwa_pal
- 0x80AA6120: inv_mwin_kazaguruma_pal
- 0x80AA6140: inv_mwin_fuusen_pal
- 0x80AA6160: inv_mwin_utiwa_tex
- 0x80AA6360: inv_mwin_kazaguruma_tex
- 0x80AA6560: inv_mwin_fuusen_tex
- 0x80AA6760: inv_mwin_39ari_pal
- 0x80AA67A0: inv_mwin_33maimai_pal
- 0x80AA67E0: inv_mwin_34kera_pal
- 0x80AA6820: inv_mwin_35amenbo_pal
- 0x80AA6860: inv_mwin_36mino_pal
- 0x80AA68A0: inv_mwin_37dango_pal
- 0x80AA68E0: inv_mwin_38kumo_pal
- 0x80AA6920: inv_mwin_40ka_pal
- 0x80AA6960: inv_mwin_39ari_tex
- 0x80AA6B60: inv_mwin_33maimai_tex
- 0x80AA6D60: inv_mwin_34kera_tex
- 0x80AA6F60: inv_mwin_35amenbo_tex
- 0x80AA7160: inv_mwin_36mino_tex
- 0x80AA7360: inv_mwin_37dango_tex
- 0x80AA7560: inv_mwin_38kumo_tex
- 0x80AA7760: inv_mwin_40ka_tex
- 0x80AA7960: inv_mwin_nittki_pal
- 0x80AA7980: inv_mwin_nittki_tex
- 0x80AA7B80: inv_mwin_ono2_tex
- 0x80AA7D80: inv_mwin_ono3_tex
- 0x80AA7F80: inv_mwin_pbox1_tex_rgb_ci4_pal
- 0x80AA7FA0: inv_mwin_pbox2_tex_rgb_ci4_pal
- 0x80AA7FC0: inv_mwin_pbox3_tex_rgb_ci4_pal
- 0x80AA7FE0: inv_mwin_pbox4_tex_rgb_ci4_pal
- 0x80AA8000: inv_mwin_pbox5_tex_rgb_ci4_pal
- 0x80AA8020: inv_mwin_pbox1_tex_rgb_ci4
- 0x80AA8220: inv_mwin_pbox2_tex_rgb_ci4
- 0x80AA8420: inv_mwin_pbox3_tex_rgb_ci4
- 0x80AA8620: inv_mwin_pbox4_tex_rgb_ci4
- 0x80AA8820: inv_mwin_pbox5_tex_rgb_ci4
- 0x80AA8A20: inv_mwin_39ishidai_pal
- 0x80AA8A60: inv_mwin_33zarigani_pal
- 0x80AA8AA0: inv_mwin_34kaeru_pal
- 0x80AA8AE0: inv_mwin_35medaka_pal
- 0x80AA8B20: inv_mwin_36kurage_pal
- 0x80AA8B60: inv_mwin_37suzuki_pal
- 0x80AA8BA0: inv_mwin_38tai_pal
- 0x80AA8BE0: inv_mwin_40piraruku_pal
- 0x80AA8C20: inv_mwin_39ishidai_tex
- 0x80AA8E20: inv_mwin_33zarigani_tex
- 0x80AA9020: inv_mwin_34kaeru_tex
- 0x80AA9220: inv_mwin_35medaka_tex
- 0x80AA9420: inv_mwin_36kurage_tex
- 0x80AA9620: inv_mwin_37suzuki_tex
- 0x80AA9820: inv_mwin_38tai_tex
- 0x80AA9A20: inv_mwin_40piraruku_tex
- 0x80AA9C20: inv_mwin_taisou_pal
- 0x80AA9C40: inv_mwin_taisou_tex
- 0x80AA9E40: inv_mwin_yashi_pal
- 0x80AA9E60: inv_mwin_yashi_tex
- 0x80AAA060: dna_win_icon_pal
- 0x80AAA080: dna_win_nuno_tex_rgb_ci4_pal
- 0x80AAA0A0: dna_win_sw4_tex_rgb_ci4_pal
- 0x80AAA0C0: dna_win_sw1_tex_rgb_ci4_pal
- 0x80AAA0E0: dna_win_sw2_tex_rgb_ci4_pal
- 0x80AAA100: dna_win_sw3_tex_rgb_ci4_pal
- 0x80AAA920: dna_win_aw1_tex
- 0x80AAAD20: dna_win_aw2_tex
- 0x80AAB120: dna_win_aw3_tex
- 0x80AAB320: dna_win_icon_tex
- 0x80AABB20: dna_win_batu_tex
- 0x80AABC20: dna_win_aw4_tex
- 0x80AABCA0: dna_win_nuno_tex_rgb_ci4
- 0x80AABEA0: dna_win_sw4_tex_rgb_ci4
- 0x80AAC0A0: dna_win_sw1_tex_rgb_ci4
- 0x80AAC4A0: dna_win_sw2_tex_rgb_ci4
- 0x80AAC8A0: dna_win_sw3_tex_rgb_ci4
- 0x80AACAA0: dna_win_v
- 0x80AAD0A0: dna_win_w11_model
- 0x80AAD0D0: dna_win_ue_model
- 0x80AAD180: dna_win_w1T_model
- 0x80AAD1B0: dna_win_w2T_model
- 0x80AAD1E0: dna_win_w3T_model
- 0x80AAD210: dna_win_w4T_model
- 0x80AAD240: dna_win_w5T_model
- 0x80AAD270: dna_win_w6T_model
- 0x80AAD2A0: dna_win_w7T_model
- 0x80AAD2D0: dna_win_w8T_model
- 0x80AAD300: dna_win_w9T_model
- 0x80AAD330: dna_win_w10T_model
- 0x80AAD360: dna_win_fukiT_model
- 0x80AAD398: dna_win_iconT_model
- 0x80AAD3D8: dna_win_garaT_model
- 0x80AAD418: dna_win_mode
- 0x80AAD438: dna_win_model
- 0x80AAD4E0: kti_win_hate_pal
- 0x80AAD500: kti_win_nuno_tex_rgb_ci4_pal
- 0x80AAD520: kti_win_sw1_tex_rgb_ci4_pal
- 0x80AAD540: kti_win_sw2_tex_rgb_ci4_pal
- 0x80AAD560: kti_win_sw3_tex_rgb_ci4_pal
- 0x80AAD580: kti_win_sw4_tex_rgb_ci4_pal
- 0x80AAD5A0: kti_win_sw5_tex_rgb_ci4_pal
- 0x80AAD5C0: kti_win_sw6_tex_rgb_ci4_pal
- 0x80AAD5E0: kti_win_sw7_tex_rgb_ci4_pal
- 0x80AAD600: kti_win_w1_tex
- 0x80AADA00: kti_win_w2_tex
- 0x80AADE00: kti_win_w3_tex
- 0x80AAE000: kti_win_w4_tex
- 0x80AAE400: kti_win_w5_tex
- 0x80AAE800: kti_win_fuki_tex
- 0x80AAF000: kti_win_hate_tex
- 0x80AAF800: kti_win_nuno_tex_rgb_ci4
- 0x80AAFA00: kti_win_sw1_tex_rgb_ci4
- 0x80AAFE00: kti_win_sw2_tex_rgb_ci4
- 0x80AB0200: kti_win_sw3_tex_rgb_ci4
- 0x80AB0600: kti_win_sw4_tex_rgb_ci4
- 0x80AB0A00: kti_win_sw5_tex_rgb_ci4
- 0x80AB0E00: kti_win_sw6_tex_rgb_ci4
- 0x80AB1200: kti_win_sw7_tex_rgb_ci4
- 0x80AB1600: kti_win_v
- 0x80AB1DA0: kti_win_sen_model
- 0x80AB1DD8: kti_win_ueT_model
- 0x80AB1EA0: kti_win_fukiT_model
- 0x80AB1ED8: kti_win_kafuT_model
- 0x80AB1F18: kti_win_sw1T_model
- 0x80AB1F48: kti_win_sw2T_model
- 0x80AB1F78: kti_win_sw3T_model
- 0x80AB1FA8: kti_win_sw4T_model
- 0x80AB1FD8: kti_win_sw5T_model
- 0x80AB2008: kti_win_sw6T_model
- 0x80AB2038: kti_win_sw7T_model
- 0x80AB2068: kti_win_sw8T_model
- 0x80AB2098: kti_win_sw9T_model
- 0x80AB20C8: kti_win_sw10T_model
- 0x80AB20F8: kti_win_sw11T_model
- 0x80AB2128: kti_win_sw12T_model
- 0x80AB2158: kti_win_sw13T_model
- 0x80AB2188: kti_win_sw14T_model
- 0x80AB21B8: ephrase_win_mode
- 0x80AB21D8: ephrase_win_model
- 0x80AB22A0: mra_win_bag_pal
- 0x80AB22C0: mra_win_shita_tex_rgb_ci4_pal
- 0x80AB22E0: mra_win_sw1_tex_rgb_ci4_pal
- 0x80AB2300: mra_win_sw2_tex_rgb_ci4_pal
- 0x80AB2320: mra_win_sw3_tex_rgb_ci4_pal
- 0x80AB2340: mra_win_sw4_tex_rgb_ci4_pal
- 0x80AB2360: mra_win_sw5_tex_rgb_ci4_pal
- 0x80AB2380: mra_win_sw6_tex_rgb_ci4_pal
- 0x80AB23A0: mra_win_sw7_tex_rgb_ci4_pal
- 0x80AB3DC0: mra_win_bag_tex
- 0x80AB45C0: mra_win_yaji1_tex
- 0x80AB49C0: mra_win_yaji2_tex
- 0x80AB4AC0: mra_win_shita_tex_rgb_ci4
- 0x80AB4CC0: mra_win_sw1_tex_rgb_ci4
- 0x80AB50C0: mra_win_sw2_tex_rgb_ci4
- 0x80AB54C0: mra_win_sw3_tex_rgb_ci4
- 0x80AB58C0: mra_win_sw4_tex_rgb_ci4
- 0x80AB5CC0: mra_win_sw5_tex_rgb_ci4
- 0x80AB60C0: mra_win_sw6_tex_rgb_ci4
- 0x80AB64C0: mra_win_sw7_tex_rgb_ci4
- 0x80AB68C0: mra_win_v
- 0x80AB6FF0: mra_win_yaji_model
- 0x80AB7040: mra_win_ueT_model
- 0x80AB7108: mra_win_fukiT_model
- 0x80AB7140: mra_win_bagT_model
- 0x80AB7180: mra_win_sw1T_model
- 0x80AB71B0: mra_win_sw2T_model
- 0x80AB71E0: mra_win_sw3T_model
- 0x80AB7210: mra_win_sw4T_model
- 0x80AB7240: mra_win_sw5T_model
- 0x80AB7270: mra_win_sw6T_model
- 0x80AB72A0: mra_win_sw7T_model
- 0x80AB72D0: mra_win_sw8T_model
- 0x80AB7300: mra_win_sw9T_model
- 0x80AB7330: mra_win_sw10T_model
- 0x80AB7360: mra_win_sw11T_model
- 0x80AB7390: mra_win_sw12T_model
- 0x80AB73C0: mra_win_sw13T_model
- 0x80AB73F0: mra_win_sw14T_model
- 0x80AB7420: mra_win_mode
- 0x80AB7440: mra_win_model
- 0x80AB7500: nam_win_enpitu_pal
- 0x80AB7520: nam_win_uzu_tex_rgb_ci4_pal
- 0x80AB7540: nam_win_sw1_tex_rgb_ci4_pal
- 0x80AB7560: nam_win_sw2_tex_rgb_ci4_pal
- 0x80AB7580: nam_win_sw3_tex_rgb_ci4_pal
- 0x80AB75A0: nam_win_sw4_tex_rgb_ci4_pal
- 0x80AB75C0: nam_win_sw5_tex_rgb_ci4_pal
- 0x80AB75E0: nam_win_sw6_tex_rgb_ci4_pal
- 0x80AB7600: nam_win_sw7_tex_rgb_ci4_pal
- 0x80AB7620: nam_win_w1_tex
- 0x80AB7A20: nam_win_w2_tex
- 0x80AB7E20: nam_win_w3_tex
- 0x80AB8020: nam_win_w4_tex
- 0x80AB8420: nam_win_w5_tex
- 0x80AB9020: nam_win_enpitu_tex
- 0x80AB9820: nam_win_waku1_tex
- 0x80AB9A20: nam_win_waku2_tex
- 0x80AB9B20: nam_win_uzu_tex_rgb_ci4
- 0x80AB9D20: nam_win_sw1_tex_rgb_ci4
- 0x80ABA120: nam_win_sw2_tex_rgb_ci4
- 0x80ABA520: nam_win_sw3_tex_rgb_ci4
- 0x80ABA920: nam_win_sw4_tex_rgb_ci4
- 0x80ABAD20: nam_win_sw5_tex_rgb_ci4
- 0x80ABB120: nam_win_sw6_tex_rgb_ci4
- 0x80ABB520: nam_win_sw7_tex_rgb_ci4
- 0x80ABB920: nam_win_v
- 0x80ABC050: nam_win_nm_model
- 0x80ABC0A0: nam_win_ueT_model
- 0x80ABC168: nam_win_fukiT_model
- 0x80ABC1A0: nam_win_enpituT_model
- 0x80ABC1E0: nam_win_sw1T_model
- 0x80ABC210: nam_win_sw2T_model
- 0x80ABC240: nam_win_sw3T_model
- 0x80ABC270: nam_win_sw4T_model
- 0x80ABC2A0: nam_win_sw5T_model
- 0x80ABC2D0: nam_win_sw6T_model
- 0x80ABC300: nam_win_sw7T_model
- 0x80ABC330: nam_win_sw8T_model
- 0x80ABC360: nam_win_sw9T_model
- 0x80ABC390: nam_win_sw10T_model
- 0x80ABC3C0: nam_win_sw11T_model
- 0x80ABC3F0: nam_win_sw12T_model
- 0x80ABC420: nam_win_sw13T_model
- 0x80ABC450: nam_win_sw14T_model
- 0x80ABC480: nam_win_mode
- 0x80ABC4A0: nam_win_model
- 0x80ABC560: req_win_kao_pal
- 0x80ABC580: req_win_nuno_tex_rgb_ci4_pal
- 0x80ABC5A0: req_win_sw4_tex_rgb_ci4_pal
- 0x80ABC5C0: req_win_sw1_tex_rgb_ci4_pal
- 0x80ABC5E0: req_win_sw2_tex_rgb_ci4_pal
- 0x80ABC600: req_win_sw3_tex_rgb_ci4_pal
- 0x80ABC620: req_win_fuki_tex
- 0x80ABD820: req_win_kao_tex
- 0x80ABE020: req_win_sen2_tex
- 0x80ABECA0: req_win_nuno_tex_rgb_ci4
- 0x80ABEEA0: req_win_sw4_tex_rgb_ci4
- 0x80ABF0A0: req_win_sw1_tex_rgb_ci4
- 0x80ABF4A0: req_win_sw2_tex_rgb_ci4
- 0x80ABF8A0: req_win_sw3_tex_rgb_ci4
- 0x80ABFAA0: req_win_v
- 0x80AC00A0: req_win_req_model
- 0x80AC00D8: req_win_w11_model
- 0x80AC0108: req_win_ueT_model
- 0x80AC01B8: req_win_fukiT_model
- 0x80AC01F0: req_win_iconT_model
- 0x80AC0230: req_win_w1T_model
- 0x80AC0260: req_win_w2T_model
- 0x80AC0290: req_win_w3T_model
- 0x80AC02C0: req_win_w4T_model
- 0x80AC02F0: req_win_w5T_model
- 0x80AC0320: req_win_w6T_model
- 0x80AC0350: req_win_w7T_model
- 0x80AC0380: req_win_w8T_model
- 0x80AC03B0: req_win_w9T_model
- 0x80AC03E0: req_win_w10T_model
- 0x80AC0410: req_win_mode
- 0x80AC0430: req_win_model
- 0x80AC04E0: rst_win_kao2_pal
- 0x80AC0500: rst_win_bittkuri_tex_rgb_ci4_pal
- 0x80AC0520: rst_win_sw4_tex_rgb_ci4_pal
- 0x80AC0540: rst_win_sw1_tex_rgb_ci4_pal
- 0x80AC0560: rst_win_sw2_tex_rgb_ci4_pal
- 0x80AC0580: rst_win_sw3_tex_rgb_ci4_pal
- 0x80AC05A0: rst_win_kagi2_tex
- 0x80AC0620: rst_win_seri_tex
- 0x80AC1420: rst_win_kao_tex
- 0x80AC1C20: rst_win_kagi1_tex
- 0x80AC1D20: rst_win_bittkuri_tex_rgb_ci4
- 0x80AC1F20: rst_win_sw4_tex_rgb_ci4
- 0x80AC2120: rst_win_sw1_tex_rgb_ci4
- 0x80AC2520: rst_win_sw2_tex_rgb_ci4
- 0x80AC2920: rst_win_sw3_tex_rgb_ci4
- 0x80AC2B20: rst_win_v
- 0x80AC31A0: rst_win_fuki_model
- 0x80AC31E0: rst_win_waku11_model
- 0x80AC3210: rst_win_ueT_model
- 0x80AC32C0: rst_win_kaoT_model
- 0x80AC3300: rst_win_kagiT_model
- 0x80AC3350: rst_win_waku1T_model
- 0x80AC3380: rst_win_waku2T_model
- 0x80AC33B0: rst_win_waku3T_model
- 0x80AC33E0: rst_win_waku4T_model
- 0x80AC3410: rst_win_waku5T_model
- 0x80AC3440: rst_win_waku6T_model
- 0x80AC3470: rst_win_waku7T_model
- 0x80AC34A0: rst_win_waku8T_model
- 0x80AC34D0: rst_win_waku9T_model
- 0x80AC3500: rst_win_waku10T_model
- 0x80AC3530: ledit_common_mode
- 0x80AC3558: rst_win_mode
- 0x80AC3578: rst_win_model
- 0x80AC3620: shi_win_yashi_pal
- 0x80AC3640: shi_win_nuno_tex_rgb_ci4_pal
- 0x80AC3660: shi_win_w4_tex_rgb_ci4_pal
- 0x80AC3680: shi_win_w1_tex_rgb_ci4_pal
- 0x80AC36A0: shi_win_w2_tex_rgb_ci4_pal
- 0x80AC36C0: shi_win_w3_tex_rgb_ci4_pal
- 0x80AC50E0: shi_win_yashi_tex
- 0x80AC58E0: shi_win_yajirushi1_tex
- 0x80AC5CE0: shi_win_yajirushi2_tex
- 0x80AC5DE0: shi_win_nuno_tex_rgb_ci4
- 0x80AC5FE0: shi_win_w4_tex_rgb_ci4
- 0x80AC6060: shi_win_w1_tex_rgb_ci4
- 0x80AC6460: shi_win_w2_tex_rgb_ci4
- 0x80AC6860: shi_win_w3_tex_rgb_ci4
- 0x80AC6A60: shi_win_v
- 0x80AC70D0: shi_win_w11_model
- 0x80AC7100: shi_win_yaji_model
- 0x80AC7150: shi_win_w1T_model
- 0x80AC7180: shi_win_w2T_model
- 0x80AC71B0: shi_win_w3T_model
- 0x80AC71E0: shi_win_w4T_model
- 0x80AC7210: shi_win_w5T_model
- 0x80AC7240: shi_win_w6T_model
- 0x80AC7270: shi_win_w7T_model
- 0x80AC72A0: shi_win_w8T_model
- 0x80AC72D0: shi_win_w9T_model
- 0x80AC7300: shi_win_w10T_model
- 0x80AC7330: shi_win_ueT_model
- 0x80AC73F8: shi_win_fukiT_model
- 0x80AC7430: shi_win_iconT_model
- 0x80AC7470: shi_win_mode
- 0x80AC7490: shi_win_model
- 0x80AC7540: lat_letter01_v
- 0x80AC7840: lat_letter01_win_model
- 0x80AC7898: lat_letter01_winT_model
- 0x80AC7948: lat_letter01_sen_model
- 0x80AC7978: lat_letter01_model
- 0x80AC7990: lat_letter02_v
- 0x80AC7E90: lat_letter02_model
- 0x80AC7F98: lat_letter02_sen_model
- 0x80AC7FC8: lat_letter03_v
- 0x80AC83F8: lat_letter03_win_model
- 0x80AC8470: lat_letter03_winT_model
- 0x80AC8578: lat_letter03_sen_model
- 0x80AC85A8: lat_letter03_model
- 0x80AC85C0: lat_letter04_v
- 0x80AC8840: lat_letter04_win_model
- 0x80AC88F0: lat_letter04_winT_model
- 0x80AC8988: lat_letter04_senT_model
- 0x80AC89C8: lat_letter04_model
- 0x80AC89E0: lat_letter05_v
- 0x80AC8C20: lat_letter05_model
- 0x80AC8CD0: lat_letter06_v
- 0x80AC91D0: lat_letter06_model
- 0x80AC9300: lat_letter06_sen_model
- 0x80AC9338: lat_letter07_v
- 0x80AC95B8: lat_letter07_win_model
- 0x80AC9630: lat_letter07_winT_model
- 0x80AC9680: lat_letter07_sen_model
- 0x80AC96B8: lat_letter07_model
- 0x80AC96D0: lat_letter08_v
- 0x80AC9950: lat_letter08_win_model
- 0x80AC99D8: lat_letter08_winT_model
- 0x80AC9A30: lat_letter08_sen_model
- 0x80AC9A60: lat_letter08_model
- 0x80AC9A78: lat_letter09_v
- 0x80AC9D58: lat_letter09_model
- 0x80AC9E28: lat_letter10_v
- 0x80ACA168: lat_letter10_model
- 0x80ACA268: lat_letter10_sen_model
- 0x80ACA2A0: lat_letter11_v
- 0x80ACA380: lat_letter11_model
- 0x80ACA400: lat_letter12_v
- 0x80ACA4D0: lat_letter12_model
- 0x80ACA530: lat_letter12_sen_model
- 0x80ACA568: lat_letter13_v
- 0x80ACA7A8: lat_letter13_win_model
- 0x80ACA7E0: lat_letter13_winT_model
- 0x80ACA850: lat_letter13_model
- 0x80ACA868: lat_letter14_v
- 0x80ACA968: lat_letter14_win_model
- 0x80ACA9A0: lat_letter14_winT_model
- 0x80ACAA28: lat_letter14_model
- 0x80ACAA40: lat_letter15_v
- 0x80ACAAC0: lat_letter15_win_model
- 0x80ACAAF8: lat_letter15_winT_model
- 0x80ACAB30: lat_letter15_model
- 0x80ACAB48: lat_letter16_v
- 0x80ACAC08: lat_letter16_win_model
- 0x80ACAC38: lat_letter16_winT_model
- 0x80ACAC68: lat_letter16_sen_model
- 0x80ACACA0: lat_letter16_model
- 0x80ACACB8: lat_letter17_v
- 0x80ACAD38: lat_letter17_model
- 0x80ACAD70: lat_letter17_sen_model
- 0x80ACADA8: lat_letter18_v
- 0x80ACB028: lat_letter18_win_model
- 0x80ACB058: lat_letter18_winT_model
- 0x80ACB0A8: lat_letter18_sen_model
- 0x80ACB100: lat_letter18_model
- 0x80ACB118: lat_letter19_v
- 0x80ACB298: lat_letter19_model
- 0x80ACB348: lat_letter20_v
- 0x80ACB3C8: lat_letter20_model
- 0x80ACB400: lat_letter20_sen_model
- 0x80ACB440: lat_letter21_v
- 0x80ACB540: lat_letter21_model
- 0x80ACB578: lat_letter21_sen_model
- 0x80ACB5C0: lat_letter22_v
- 0x80ACB7B0: lat_letter22_model
- 0x80ACB888: lat_letter22_sen_model
- 0x80ACB8C0: lat_letter23_v
- 0x80ACBAC0: lat_letter23_model
- 0x80ACBB80: lat_letter24_v
- 0x80ACBD00: lat_letter24_win_model
- 0x80ACBD60: lat_letter24_winT_model
- 0x80ACBDD0: lat_letter24_model
- 0x80ACBDE8: lat_letter25_v
- 0x80ACC128: lat_letter25_win_model
- 0x80ACC180: lat_letter25_winT_model
- 0x80ACC258: lat_letter25_model
- 0x80ACC270: lat_letter26_v
- 0x80ACC930: lat_letter26_win_model
- 0x80ACCAD8: lat_letter26_model
- 0x80ACCAE8: lat_letter27_v
- 0x80ACCC28: lat_letter27_win_model
- 0x80ACCC68: lat_letter27_winT_model
- 0x80ACCCF0: lat_letter27_model
- 0x80ACCD08: lat_letter28_v
- 0x80ACCFB8: lat_letter28_win_model
- 0x80ACD0B0: lat_letter28_winT_model
- 0x80ACD0F0: lat_letter28_model
- 0x80ACD108: lat_letter65_v
- 0x80ACD348: lat_letter29_model
- 0x80ACD410: lat_letter29_sen_model
- 0x80ACD440: lat_letter30_v
- 0x80ACD840: lat_letter30_win_model
- 0x80ACD920: lat_letter30_sen_model
- 0x80ACD950: lat_letter30_wak_model
- 0x80ACD9B0: lat_letter30_model
- 0x80ACD9C8: lat_letter31_v
- 0x80ACDB88: lat_letter31_model
- 0x80ACDC08: lat_letter31_sen_model
- 0x80ACDC38: lat_letter32_v
- 0x80ACDD38: lat_letter32_model
- 0x80ACDDB0: lat_letter32_sen_model
- 0x80ACDDE0: lat_letter33_v
- 0x80ACDF60: lat_letter33_sen_model
- 0x80ACDF90: lat_letter33_model
- 0x80ACE000: lat_letter34_v
- 0x80ACE2C0: lat_letter34_model
- 0x80ACE3A8: lat_letter34_sen_model
- 0x80ACE3D8: lat_letter35_v
- 0x80ACE5D8: lat_letter35_model
- 0x80ACE690: lat_letter35_sen_model
- 0x80ACE6C0: lat_letter36_v
- 0x80ACEA00: lat_letter36_model
- 0x80ACEAC8: lat_letter36_sen_model
- 0x80ACEAF8: lat_letter37_v
- 0x80ACEDF8: lat_letter37_sen_model
- 0x80ACEE28: lat_letter37_model
- 0x80ACEED8: lat_letter38_v
- 0x80ACEF58: lat_letter38_model
- 0x80ACEF88: lat_letter38_sen_model
- 0x80ACEFB8: lat_letter39_v
- 0x80ACF1B8: lat_letter39_model
- 0x80ACF250: lat_letter39_sen_model
- 0x80ACF280: lat_letter40_v
- 0x80ACF4B0: lat_letter40_win_model
- 0x80ACF4E8: lat_letter40_sen_model
- 0x80ACF518: lat_letter40_winT_model
- 0x80ACF588: lat_letter40_model
- 0x80ACF5A0: lat_letter41_v
- 0x80ACF790: lat_letter41_sen_model
- 0x80ACF7C0: lat_letter41_model
- 0x80ACF830: lat_letter42_v
- 0x80ACFA20: lat_letter42_sen_model
- 0x80ACFA50: lat_letter42_model
- 0x80ACFAC0: lat_letter43_v
- 0x80ACFB40: lat_letter43_model
- 0x80ACFB78: lat_letter43_sen_model
- 0x80ACFBA8: lat_letter44_v
- 0x80ACFDA8: lat_letter44_sen_model
- 0x80ACFDD8: lat_letter44_model
- 0x80ACFE58: lat_letter45_v
- 0x80AD0238: lat_letter45_model
- 0x80AD0308: lat_letter45_sen_model
- 0x80AD0338: lat_letter46_v
- 0x80AD0438: lat_letter46_win_model
- 0x80AD0488: lat_letter46_sen_model
- 0x80AD04B8: lat_letter46_winT_model
- 0x80AD04E8: lat_letter46_model
- 0x80AD0500: lat_letter47_v
- 0x80AD0580: lat_letter47_model
- 0x80AD05B8: lat_letter47_sen_model
- 0x80AD05E8: lat_letter48_v
- 0x80AD0868: lat_letter48_model
- 0x80AD0960: lat_letter48_sen_model
- 0x80AD0990: lat_letter49_v
- 0x80AD0A50: lat_letter49_model
- 0x80AD0A98: lat_letter49_sen_model
- 0x80AD0AC8: lat_letter50_v
- 0x80AD0C88: lat_letter50_model
- 0x80AD0CF8: lat_letter50_sen_model
- 0x80AD0D28: lat_letter51_v
- 0x80AD0F08: lat_letter51_model
- 0x80AD0FA0: lat_letter51_sen_model
- 0x80AD0FD0: lat_letter52_v
- 0x80AD11B0: lat_letter52_model
- 0x80AD1248: lat_letter52_sen_model
- 0x80AD1278: lat_letter53_v
- 0x80AD13D8: lat_letter53_model
- 0x80AD1458: lat_letter53_sen_model
- 0x80AD1488: lat_letter54_v
- 0x80AD1508: lat_letter54_model
- 0x80AD1540: lat_letter54_sen_model
- 0x80AD1570: lat_letter55_v
- 0x80AD1A30: lat_letter55_win_model
- 0x80AD1A68: lat_letter55_sen_model
- 0x80AD1A98: lat_letter55_winT_model
- 0x80AD1AD0: lat_letter55_model
- 0x80AD1AE8: lat_letter56_v
- 0x80AD1D08: lat_letter56_model
- 0x80AD1DA8: lat_letter56_sen_model
- 0x80AD1DD8: lat_letter57_v
- 0x80AD1EB8: lat_letter57_model
- 0x80AD1F00: lat_letter57_sen_model
- 0x80AD1F30: lat_letter58_v
- 0x80AD20D0: lat_letter58_model
- 0x80AD2168: lat_letter58_sen_model
- 0x80AD2198: lat_letter59_v
- 0x80AD2238: lat_letter59_model
- 0x80AD2278: lat_letter59_sen_model
- 0x80AD22A8: lat_letter60_v
- 0x80AD2778: lat_letter60_win_model
- 0x80AD2860: lat_letter60_sen_model
- 0x80AD2890: lat_letter60_winT_model
- 0x80AD2900: lat_letter60_model
- 0x80AD2918: lat_letter61_v
- 0x80AD2D48: lat_letter61_model
- 0x80AD2E58: lat_letter61_sen_model
- 0x80AD2E88: lat_letter62_v
- 0x80AD31A8: lat_letter62_model
- 0x80AD3258: lat_letter62_sen_model
- 0x80AD3290: lat_letter63_v
- 0x80AD38D0: lat_letter63_win_model
- 0x80AD3A48: lat_letter63_senT_model
- 0x80AD3A78: lat_letter64_v
- 0x80AD3CD8: lat_letter64_model
- 0x80AD3D90: lat_letter64_sen_model
- 0x80AD3DE0: lat_letter02_pal
- 0x80AD3E00: lat_letter03_pal
- 0x80AD3E20: lat_letter04_pal
- 0x80AD3E40: lat_letter05_pal
- 0x80AD3E60: lat_letter06_pal
- 0x80AD3E80: lat_letter07_pal
- 0x80AD3EA0: lat_letter08_pal
- 0x80AD3EC0: lat_letter09_pal
- 0x80AD3EE0: lat_letter10_pal
- 0x80AD3F00: lat_letter11_1_pal
- 0x80AD3F20: lat_letter12_pal
- 0x80AD3F40: lat_letter13_pal
- 0x80AD3F60: lat_letter14_pal
- 0x80AD3F80: lat_letter15_pal
- 0x80AD3FA0: lat_letter16_pal
- 0x80AD3FC0: lat_letter17_pal
- 0x80AD3FE0: lat_letter18_pal
- 0x80AD4000: lat_letter19_pal
- 0x80AD4020: lat_letter20_pal
- 0x80AD4040: lat_letter21_pal
- 0x80AD4060: lat_letter22_pal
- 0x80AD4080: lat_letter23_pal
- 0x80AD40A0: lat_letter24_pal
- 0x80AD40C0: lat_letter25_pal
- 0x80AD40E0: lat_letter26_pal
- 0x80AD4100: lat_letter27_pal
- 0x80AD4120: lat_letter28_pal
- 0x80AD4140: lat_letter65_pal
- 0x80AD4160: lat_letter30_tex
- 0x80AD4180: lat_letter31_pal
- 0x80AD41A0: lat_letter32_pal
- 0x80AD41C0: lat_letter33_pal
- 0x80AD41E0: lat_letter34_pal
- 0x80AD4200: lat_letter35_pal
- 0x80AD4220: lat_letter36_pal
- 0x80AD4240: lat_letter37_pal
- 0x80AD4260: lat_letter39_pal
- 0x80AD4280: lat_letter40_pal
- 0x80AD42A0: lat_letter42_pal
- 0x80AD42C0: lat_letter43_pal
- 0x80AD42E0: lat_letter44_pal
- 0x80AD4300: lat_letter45_pal
- 0x80AD4320: lat_letter46_pal
- 0x80AD4340: lat_letter47_pal
- 0x80AD4360: lat_letter48_pal
- 0x80AD4380: lat_letter49_pal
- 0x80AD43A0: lat_letter50_pal
- 0x80AD43C0: lat_letter51_pal
- 0x80AD43E0: lat_letter52_pal
- 0x80AD4400: lat_letter53_pal
- 0x80AD4420: lat_letter54_pal
- 0x80AD4440: lat_letter55_pal
- 0x80AD4460: lat_letter56_pal
- 0x80AD4480: lat_letter57_pal
- 0x80AD44A0: lat_letter58_pal
- 0x80AD44C0: lat_letter59_pal
- 0x80AD44E0: lat_letter60_pal
- 0x80AD4500: lat_letter61_pal
- 0x80AD4520: lat_letter62_pal
- 0x80AD4540: lat_letter63_pal
- 0x80AD4560: lat_letter64_pal
- 0x80AD4580: lat_letter01_01_tex
- 0x80AD4680: lat_letter01_02_tex
- 0x80AD4780: lat_letter01_03_tex
- 0x80AD4C80: lat_letter02_01_tex
- 0x80AD4E80: lat_letter02_02_tex
- 0x80AD5080: lat_letter02_03_tex
- 0x80AD5280: lat_letter03_01_tex
- 0x80AD5380: lat_letter03_02_tex
- 0x80AD5480: lat_letter03_03_tex
- 0x80AD5580: lat_letter03_04_tex
- 0x80AD5680: lat_letter03_05_tex
- 0x80AD5780: lat_letter03_06_tex
- 0x80AD5880: lat_letter03_07_tex
- 0x80AD5A80: lat_letter04_cloth2_tex
- 0x80AD5B00: lat_letter04_cloth3_tex
- 0x80AD5B80: lat_letter04_cloth4_tex
- 0x80AD5C00: lat_letter04_cloth5_tex
- 0x80AD5C80: lat_letter04_cloth6_tex
- 0x80AD5D00: lat_letter04_cloth1_tex
- 0x80AD5D80: lat_letter04_cloth7_tex
- 0x80AD5E00: lat_letter04_cloth8_tex
- 0x80AD5E80: lat_letter04_fusen_tex
- 0x80AD5F00: lat_letter04_cloth9_tex
- 0x80AD5F80: lat_letter05_1
- 0x80AD6180: lat_letter05_2
- 0x80AD6280: lat_letter06_1
- 0x80AD6480: lat_letter06_sen
- 0x80AD6580: lat_letter06_4
- 0x80AD6680: lat_letter06_5
- 0x80AD6880: lat_letter06_6
- 0x80AD6900: lat_letter07_1
- 0x80AD6A00: lat_letter07_2
- 0x80AD6C00: lat_letter07_sen
- 0x80AD6D00: lat_letter07_3
- 0x80AD6D80: lat_letter08_1
- 0x80AD6F80: lat_letter08_2
- 0x80AD7180: lat_letter08_3
- 0x80AD7200: lat_letter08_sen
- 0x80AD7300: lat_letter09_1
- 0x80AD7700: lat_letter09_2
- 0x80AD7900: lat_letter09_3
- 0x80AD7A00: lat_letter10_1
- 0x80AD7C00: lat_letter10_2
- 0x80AD7C80: lat_letter10_3
- 0x80AD7D00: lat_letter10_sen
- 0x80AD7E00: lat_letter10_5
- 0x80AD7E80: lat_letter11_1
- 0x80AD8280: lat_letter11_2
- 0x80AD8380: lat_letter12_1
- 0x80AD8780: lat_letter12_sen
- 0x80AD8880: lat_letter13_1
- 0x80AD8C80: lat_letter13_3
- 0x80AD8E80: lat_letter14_1
- 0x80AD9280: lat_letter14_2
- 0x80AD9380: lat_letter14_3
- 0x80AD9480: lat_letter14_4
- 0x80AD9580: lat_letter15_1
- 0x80AD9780: lat_letter15_2
- 0x80AD9800: lat_letter16_1
- 0x80AD9A00: lat_letter16_sen
- 0x80AD9B00: lat_letter16_3
- 0x80AD9C00: lat_letter17_1
- 0x80ADA000: lat_letter17_sen
- 0x80ADA100: lat_letter18_4
- 0x80ADA500: lat_letter18_5
- 0x80ADA600: lat_letter18_sen
- 0x80ADA700: lat_letter19_1
- 0x80ADAB00: lat_letter19_2
- 0x80ADAF00: lat_letter20_1
- 0x80ADB300: lat_letter20_sen
- 0x80ADB400: lat_letter21_1
- 0x80ADBC00: lat_letter21_sen
- 0x80ADBD00: lat_letter22_1
- 0x80ADBF00: lat_letter22_3
- 0x80ADBF80: lat_letter22_sen
- 0x80ADC080: lat_letter22_4
- 0x80ADC180: lat_letter22_5
- 0x80ADC580: lat_letter23_1
- 0x80ADC780: lat_letter23_2
- 0x80ADC7C0: lat_letter23_4
- 0x80ADC9C0: lat_letter24_1
- 0x80ADCDC0: lat_letter24_5
- 0x80ADCEC0: lat_letter24_3
- 0x80ADD0C0: lat_letter24_4
- 0x80ADD140: lat_letter25_1
- 0x80ADD240: lat_letter25_2
- 0x80ADD2C0: lat_letter25_3
- 0x80ADD3C0: lat_letter25_4
- 0x80ADD440: lat_letter25_5
- 0x80ADD840: lat_letter26_test1_tex
- 0x80ADD940: lat_letter26_test2_tex
- 0x80ADDA40: lat_letter26_test4_tex
- 0x80ADDAC0: lat_letter26_test5_tex
- 0x80ADDB40: lat_letter26_test6_tex
- 0x80ADDC40: lat_letter26_test7_tex
- 0x80ADDCC0: lat_letter26_test8_tex
- 0x80ADDD40: lat_letter26_test9_tex
- 0x80ADDE40: lat_letter26_test10_tex
- 0x80ADDF40: lat_letter26_test11_tex
- 0x80ADDFC0: lat_letter27_9
- 0x80ADE0C0: lat_letter27_4
- 0x80ADE2C0: lat_letter27_8
- 0x80ADE6C0: lat_letter27_6
- 0x80ADE7C0: lat_letter28_1
- 0x80ADE9C0: lat_letter28_2
- 0x80ADEAC0: lat_letter28_9
- 0x80ADEB40: lat_letter28_5
- 0x80ADEC40: lat_letter28_6
- 0x80ADED40: lat_letter28_7
- 0x80ADEF40: lat_letter65_kt_tex
- 0x80ADF340: lat_letter65_me_tex
- 0x80ADF440: lat_letter65_sk_tex
- 0x80ADF640: lat_letter65_xk_tex
- 0x80ADF740: lat_letter30_ed_tex
- 0x80ADF780: lat_letter30_ba_tex
- 0x80ADF7C0: lat_letter30_ki_tex
- 0x80ADF8C0: lat_letter30_xk_tex
- 0x80ADF9C0: lat_letter31_xk_tex
- 0x80ADFAC0: lat_letter31_ed_tex
- 0x80ADFBC0: lat_letter32_ce_tex
- 0x80ADFDC0: lat_letter32_ed_tex
- 0x80AE01C0: lat_letter32_xk_tex
- 0x80AE02C0: lat_letter33_ed_tex
- 0x80AE04C0: lat_letter33_xk_tex
- 0x80AE05C0: lat_letter34_ed_tex
- 0x80AE09C0: lat_letter34_ed2_tex
- 0x80AE0BC0: lat_letter34_ce_tex
- 0x80AE0DC0: lat_letter34_xk_tex
- 0x80AE0EC0: lat_letter35_ed_tex
- 0x80AE12C0: lat_letter35_ce_tex
- 0x80AE16C0: lat_letter35_xk_tex
- 0x80AE17C0: lat_letter36_ed4_tex
- 0x80AE18C0: lat_letter36_ed_tex
- 0x80AE1AC0: lat_letter36_xk_tex
- 0x80AE1BC0: lat_letter36_ed3_tex
- 0x80AE1CC0: lat_letter37_ed_tex
- 0x80AE20C0: lat_letter37_kd_tex
- 0x80AE22C0: lat_letter37_k_tex
- 0x80AE23C0: lat_letter38_xk_tex
- 0x80AE24C0: lat_letter38_ce_tex
- 0x80AE2CC0: lat_letter39_sk_tex
- 0x80AE30C0: lat_letter39_xk_tex
- 0x80AE31C0: lat_letter40_nk_tex
- 0x80AE33C0: lat_letter40_hw_tex
- 0x80AE3440: lat_letter40_xk_tex
- 0x80AE3540: lat_letter41_gr_tex
- 0x80AE3D40: lat_letter41_xk_tex
- 0x80AE3E40: lat_letter42_gr_tex
- 0x80AE4040: lat_letter42_xk_tex
- 0x80AE4140: lat_letter43_ed_tex
- 0x80AE4540: lat_letter43_xk_tex
- 0x80AE4640: lat_letter44_ce_tex
- 0x80AE4840: lat_letter44_ed_tex
- 0x80AE4A40: lat_letter44_xh_tex
- 0x80AE4B40: lat_letter45_ed2_tex
- 0x80AE4F40: lat_letter45_ed_tex
- 0x80AE5340: lat_letter45_xk_tex
- 0x80AE5440: lat_letter46_ce_tex
- 0x80AE5640: lat_letter46_ed_tex
- 0x80AE5A40: lat_letter46_xk_tex
- 0x80AE5B40: lat_letter47_ce_tex
- 0x80AE5F40: lat_letter47_xk_tex
- 0x80AE6040: lat_letter48_hn_tex
- 0x80AE6240: lat_letter48_hn2_tex
- 0x80AE6440: lat_letter48_hn3_tex
- 0x80AE64C0: lat_letter48_si_tex
- 0x80AE66C0: lat_letter48_xk_tex
- 0x80AE67C0: lat_letter49_ki_tex
- 0x80AE6BC0: lat_letter49_xk_tex
- 0x80AE6CC0: lat_letter50_ed_tex
- 0x80AE70C0: lat_letter50_xk_tex
- 0x80AE71C0: lat_letter51_ed_tex
- 0x80AE75C0: lat_letter51_ce_tex
- 0x80AE79C0: lat_letter51_xk_tex
- 0x80AE7AC0: lat_letter52_ed_tex
- 0x80AE7EC0: lat_letter52_ce_tex
- 0x80AE82C0: lat_letter52_xk_tex
- 0x80AE83C0: lat_letter53_ki_tex
- 0x80AE87C0: lat_letter53_ed_tex
- 0x80AE8BC0: lat_letter53_xk_tex
- 0x80AE8CC0: lat_letter54_ce_tex
- 0x80AE8EC0: lat_letter54_xk_tex
- 0x80AE8FC0: lat_letter55_ce_tex
- 0x80AE93C0: lat_letter55_bg_tex
- 0x80AE95C0: lat_letter55_xk_tex
- 0x80AE96C0: lat_letter56_ce_tex
- 0x80AE98C0: lat_letter56_wh_tex
- 0x80AE9940: lat_letter56_xk_tex
- 0x80AE9A40: lat_letter57_ce_tex
- 0x80AE9E40: lat_letter57_xk_tex
- 0x80AE9F40: lat_letter58_ed_tex
- 0x80AEA340: lat_letter58_xk_tex
- 0x80AEA440: lat_letter59_sn_tex
- 0x80AEA840: lat_letter59_xk_tex
- 0x80AEA940: lat_letter60_de_tex
- 0x80AEAB40: lat_letter60_ed_tex
- 0x80AEAD40: lat_letter60_gd_tex
- 0x80AEADC0: lat_letter60_hw_tex
- 0x80AEAE40: lat_letter61_ed_tex
- 0x80AEB040: lat_letter61_kd_tex
- 0x80AEB240: lat_letter61_ha_tex
- 0x80AEB440: lat_letter61_xk_tex
- 0x80AEB540: lat_letter62_ch_tex
- 0x80AEB940: lat_letter62_hn_tex
- 0x80AEBD40: lat_letter62_xk_tex
- 0x80AEBE40: lat_letter63_cloth3_tex
- 0x80AEBEC0: lat_letter63_cloth4_tex
- 0x80AEBF40: lat_letter63_cloth5_tex
- 0x80AEBFC0: lat_letter63_cloth6_tex
- 0x80AEC0C0: lat_letter63_cloth7_tex
- 0x80AEC1C0: lat_letter63_cloth8_tex
- 0x80AEC2C0: lat_letter63_cloth1_tex
- 0x80AEC340: lat_letter63_fusen_tex
- 0x80AEC3C0: lat_letter63_cloth2_tex
- 0x80AEC440: lat_letter63_cloth9_tex
- 0x80AEC4C0: lat_letter64_ik_tex
- 0x80AEC6C0: lat_letter64_ti_tex
- 0x80AEC8C0: lat_letter64_aw_tex
- 0x80AECCC0: lat_letter64_xk_tex
- 0x80AECDC0: onp_win_q_tex_rgb_i4
- 0x80AECE40: onp_win_a_tex_rgb_i4
- 0x80AECEC0: onp_win_b_tex_rgb_i4
- 0x80AECF40: onp_win_c_tex_rgb_i4
- 0x80AECFC0: onp_win_d_tex_rgb_i4
- 0x80AED040: onp_win_e_tex_rgb_i4
- 0x80AED0C0: onp_win_f_tex_rgb_i4
- 0x80AED140: onp_win_g_tex_rgb_i4
- 0x80AED1C0: onp_win_bou1_tex
- 0x80AED240: onp_win_shimari_tex_rgb_ia8
- 0x80AED640: onp_win_test10_tex_rgb_ia8
- 0x80AEDE40: onp_win_test11_tex_rgb_ia8
- 0x80AEE640: onp_win_test1_tex_rgb_ia8
- 0x80AEEA40: onp_win_test2_tex_rgb_ia8
- 0x80AEEE40: onp_win_test5_tex_rgb_ia8
- 0x80AEF240: onp_win_test3_tex_rgb_ia8
- 0x80AEF640: onp_win_onpu8_tex_rgb_i4
- 0x80AEF6C0: onp_win_z_tex_rgb_i4
- 0x80AEF8C0: onp_hyouji_waku1T_model
- 0x80AEF8E8: onp_hyouji_waku2T_model
- 0x80AEF910: onp_hyouji_waku3T_model
- 0x80AEF938: onp_hyouji_waku4T_model
- 0x80AEF960: onp_hyouji_bouT_model
- 0x80AEF988: onp_hyouji_moji1T_model
- 0x80AEF9B0: onp_hyouji_waku_mode
- 0x80AEF9D8: onp_hyouji_moji_mode
- 0x80AEFA00: onp_win_play_tex
- 0x80AEFE00: onp_win_erase_tex
- 0x80AF0200: x
- 0x80AF0280: y
- 0x80AF0300: start2_tex_rgb_ia8
- 0x80AF0700: start_tex_rgb_ia8
- 0x80AF0B00: onp__x2_tex_rgb_ia8
- 0x80AF0D00: onp__x_tex_rgb_ia8
- 0x80AF0F00: onp__y2_tex_rgb_ia8
- 0x80AF1100: onp__y_tex_rgb_ia8
- 0x80AF1300: onp_hyouji_v
- 0x80AF14C0: onp_win_rmoji_model
- 0x80AF1520: onp_win_zT_model
- 0x80AF1570: onp_win_mojiT_model
- 0x80AF15D8: onp_win_rT_model
- 0x80AF1628: onp_win_sT_model
- 0x80AF1680: onp_win_shiro_tex
- 0x80AF1E80: onp_win_ok_tex
- 0x80AF1F80: onp_win_ga_tex
- 0x80AF2080: onp_win_ga4_tex
- 0x80AF2180: onp_win_ga3_tex
- 0x80AF2280: onp_win_ga2_tex
- 0x80AF2380: onp_win_ottpo_tex
- 0x80AF2580: onp_win_tama1_tex
- 0x80AF2680: onp_win_tama2_tex
- 0x80AF2A80: onp_win_tama5_tex
- 0x80AF2B80: onp_win_w1_tex
- 0x80AF3380: onp_win_me_tex
- 0x80AF3480: onp_win_ohana_tex
- 0x80AF3580: onp_win_w2_tex
- 0x80AF3D80: onp_win_w3_tex
- 0x80AF4180: onp_win_ha_tex
- 0x80AF4980: onp_win_ha2_tex
- 0x80AF5180: onp_win_carde_tex
- 0x80AF5580: rmoji
- 0x80AF5600: onp_win_rbutton2_tex_rgb_ia8
- 0x80AF5800: onp_win_rbutton_tex_rgb_ia8
- 0x80AF5A00: onp_win_v
- 0x80AF63E0: onp_carde_v
- 0x80AF64E0: onp_win_ga3_model
- 0x80AF6500: onp_win_wakuT_model
- 0x80AF6598: onp_win_meT_model
- 0x80AF65D8: onp_win_ga1T_model
- 0x80AF6648: onp_win_ga2T_model
- 0x80AF66C8: onp_win_hanaT_model
- 0x80AF66F8: onp_win_senT_model
- 0x80AF6770: onp_win_waku2T_model
- 0x80AF67A0: onp_win_waku3T_model
- 0x80AF67D8: onp_win_shiroT_model
- 0x80AF6810: onp_win_owariT_model
- 0x80AF6838: onp_win_waku5T_model
- 0x80AF6870: onp_win_waku6T_model
- 0x80AF68E0: onp_win_rbuttonT_model
- 0x80AF6918: onp_win_leafT_model
- 0x80AF6950: onp_win_cardeT_model
- 0x80AF6988: onp_win_mode
- 0x80AF69B8: onp_win_model
- 0x80AF6A80: pos_win_nuno_tex_rgb_ci4_pal
- 0x80AF6AA0: pos_win_sw5_tex_rgb_ci4_pal
- 0x80AF6AC0: pos_win_sw1_tex_rgb_ci4_pal
- 0x80AF6AE0: pos_win_sw2_tex_rgb_ci4_pal
- 0x80AF6B00: pos_win_sw3_tex_rgb_ci4_pal
- 0x80AF6B20: pos_win_sw4_tex_rgb_ci4_pal
- 0x80AF6F40: pos_win_w6_tex
- 0x80AF6FC0: pos_win_w1_tex
- 0x80AF77C0: pos_win_w2_tex
- 0x80AF7FC0: pos_win_w3_tex
- 0x80AF87C0: pos_win_w4_tex
- 0x80AF8FC0: pos_win_w5_tex
- 0x80AF91C0: pos_win_post_tex
- 0x80AF93C0: pos_win_nuno_tex_rgb_ci4
- 0x80AF95C0: pos_win_sw5_tex_rgb_ci4
- 0x80AF97C0: pos_win_sw1_tex_rgb_ci4
- 0x80AF9BC0: pos_win_sw2_tex_rgb_ci4
- 0x80AF9FC0: pos_win_sw3_tex_rgb_ci4
- 0x80AFA3C0: pos_win_sw4_tex_rgb_ci4
- 0x80AFA7C0: pos_win_v
- 0x80AFADD0: pos_win_post_model
- 0x80AFAE00: pos_win_w9_model
- 0x80AFAE30: pos_win_ue1T_model
- 0x80AFAE68: pos_win_ue2T_model
- 0x80AFAF30: pos_win_ue3T_model
- 0x80AFAF68: pos_win_w1T_model
- 0x80AFAF98: pos_win_w2T_model
- 0x80AFAFC8: pos_win_w3T_model
- 0x80AFAFF8: pos_win_w4T_model
- 0x80AFB028: pos_win_w5T_model
- 0x80AFB058: pos_win_w6T_model
- 0x80AFB088: pos_win_w7T_model
- 0x80AFB0B8: pos_win_w8T_model
- 0x80AFB0E8: pos_win_mode
- 0x80AFB130: pos_win_model
- 0x80AFB1C8: pos_win_yajirushi_tex
- 0x80AFB5C8: pos_yaji_v
- 0x80AFB608: pos_yaji_wakuT_model
- 0x80AFB6A0: kan_win_eki_tex
- 0x80AFB7A0: kan_eki_v
- 0x80AFB7E0: kan_win_ekiT_model
- 0x80AFB840: kan_win_fune_tex
- 0x80AFB940: kan_fune_v
- 0x80AFB980: kan_win_funeT_model
- 0x80AFB9E0: kan_win_gomi_tex
- 0x80AFBA60: kan_gomi_v
- 0x80AFBAA0: kan_win_gomiT_model
- 0x80AFBAE0: kan_win_cursor_tex
- 0x80AFBBA0: kan_win_cursorT_model
- 0x80AFBBE0: kan_win_yane_tex
- 0x80AFBCE0: kan_win_yashiro_tex
- 0x80AFBD60: kan_win_yubin_tex
- 0x80AFBDE0: kan_win_kouban_tex
- 0x80AFBE60: kan_win_omise_tex
- 0x80AFBEE0: kan_win_play_tex
- 0x80AFBFE0: kan_win_ply_tex
- 0x80AFC0E0: kan_hyouji2_v
- 0x80AFC320: kan_win_genzaiT_model
- 0x80AFC368: kan_win_npc2T_base_model
- 0x80AFC3A0: kan_win_npc2T_1_model
- 0x80AFC3C0: kan_win_npc2T_2_model
- 0x80AFC3E0: kan_win_npc2T_3_model
- 0x80AFC400: kan_win_npcT_base_model
- 0x80AFC438: kan_win_npcT_1_model
- 0x80AFC458: kan_win_npcT_2_model
- 0x80AFC478: kan_win_npcT_3_model
- 0x80AFC498: kan_win_koubanT_model
- 0x80AFC4D8: kan_win_yashiroT_model
- 0x80AFC528: kan_win_omiseT_model
- 0x80AFC568: kan_win_yuuT_model
- 0x80AFC5A8: kan_win_playerT_model
- 0x80AFC600: kan_win_mu_tex
- 0x80AFC680: kan_win_ta_tex
- 0x80AFC780: kan_win_mu_model
- 0x80AFC7C0: kan_win_ta_model
- 0x80AFC800: kan_tizu_v
- 0x80AFC840: kan_tizu_mode
- 0x80AFC868: kan_tizu_model
- 0x80AFC8A0: kan_win_waku4_tex
- 0x80AFD8A0: kan_win_waku3_tex
- 0x80AFE8A0: kan_win_waku5_tex
- 0x80AFF8A0: kan_win_waku1a_tex
- 0x80B008A0: kan_win_waku1b_tex
- 0x80B018A0: kan_waku_v
- 0x80B019E0: kan_waku_w1T_model
- 0x80B01A28: kan_waku_w2T_model
- 0x80B01A58: kan_waku_w3T_model
- 0x80B01A88: kan_waku_w4T_model
- 0x80B01AC0: kan_win_map_tex
- 0x80B01CC0: kan_win_waku2a_tex
- 0x80B02CC0: testa
- 0x80B02DC0: kan_win_b_tex
- 0x80B02EC0: kan_win_c_tex
- 0x80B02FC0: kan_win_w1_tex
- 0x80B03FC0: kan_win_w2_tex
- 0x80B047C0: kan_win_w3_tex
- 0x80B04BC0: kan_win_d_tex
- 0x80B04CC0: kan_win_e_tex
- 0x80B04DC0: kan_win_f_tex
- 0x80B04EC0: kan_win_suuji1_tex
- 0x80B04FC0: kan_win_saki_tex
- 0x80B053C0: kan_win_acre_tex
- 0x80B054C0: kan_win_ga_tex
- 0x80B055C0: kan_win_ga2_tex
- 0x80B056C0: kan_win_suuji2_tex
- 0x80B057C0: kan_win_suuji3_tex
- 0x80B058C0: kan_win_suuji4_tex
- 0x80B059C0: kan_win_suuji5_tex
- 0x80B05AC0: kan_win_ga3_tex
- 0x80B05BC0: kan_win_ga4_tex
- 0x80B05CC0: kan_win_a_tex_rgb_ia8
- 0x80B05DC0: kan_win_b_tex_rgb_ia8
- 0x80B05EC0: kan_win_c_tex_rgb_ia8
- 0x80B05FC0: kan_win_d_tex_rgb_ia8
- 0x80B060C0: kan_win_e_tex_rgb_ia8
- 0x80B061C0: kan_win_f_tex_rgb_ia8
- 0x80B062C0: kan_win_suuji1_tex_rgb_ia8
- 0x80B063C0: kan_win_suuji2_tex_rgb_ia8
- 0x80B064C0: kan_win_suuji3_tex_rgb_ia8
- 0x80B065C0: kan_win_suuji4_tex_rgb_ia8
- 0x80B066C0: kan_win_suuji5_tex_rgb_ia8
- 0x80B067C0: kan_win_v
- 0x80B06FF0: kan_win_moji1_model
- 0x80B07020: kan_win_moji2_model
- 0x80B07050: kan_win_bou_model
- 0x80B07070: kan_win_kiwakuT_model
- 0x80B070E8: kan_win_futiT_model
- 0x80B07160: kan_win_futi2T_model
- 0x80B071D8: kan_win_wakuT_model
- 0x80B07208: kan_win_ban2T_model
- 0x80B07240: kan_win_banT_model
- 0x80B072D8: kan_win_tyouT_model
- 0x80B07388: kan_win_tyou2T_model
- 0x80B073C0: kan_win_sakiT_model
- 0x80B073F0: kan_win_mode
- 0x80B07410: kan_win_model
- 0x80B07430: kan_win_model2
- 0x80B074B8: kan_win_color0_mode
- 0x80B07548: kan_win_color1_mode
- 0x80B075D8: mMP_house_pos_list
- 0x80B07F60: mus_win_mark_tex
- 0x80B08060: mus_mark_v
- 0x80B080A0: mus_mark_before
- 0x80B08110: mus_mark_model
- 0x80B08140: inv_mwin_audio_pal
- 0x80B08160: inv_mwin_audio_tex
- 0x80B08360: mus_icon_v
- 0x80B083A0: mus_icon_model_before
- 0x80B083E0: mus_icon_model
- 0x80B08400: mus_win_nuno_tex_rgb_ci4_pal
- 0x80B08420: mus_win_sw4_tex_rgb_ci4_pal
- 0x80B08440: mus_win_sw1_tex_rgb_ci4_pal
- 0x80B08460: mus_win_sw2_tex_rgb_ci4_pal
- 0x80B08480: mus_win_sw3_tex_rgb_ci4_pal
- 0x80B088A0: mus_win_w1_tex
- 0x80B08CA0: mus_win_w2_tex
- 0x80B094A0: mus_win_w3_tex
- 0x80B09CA0: mus_win_w4_tex
- 0x80B0A0A0: mus_win_w5_tex
- 0x80B0A1A0: mus_win_nuno_tex_rgb_ci4
- 0x80B0A3A0: mus_win_sw4_tex_rgb_ci4
- 0x80B0A420: mus_win_sw1_tex_rgb_ci4
- 0x80B0A820: mus_win_sw2_tex_rgb_ci4
- 0x80B0AC20: mus_win_sw3_tex_rgb_ci4
- 0x80B0B020: mus_win_v
- 0x80B0B780: mus_win_sw13_model
- 0x80B0B7B8: mus_win_sw1T_model
- 0x80B0B7F0: mus_win_sw2T_model
- 0x80B0B828: mus_win_sw3T_model
- 0x80B0B860: mus_win_sw4T_model
- 0x80B0B898: mus_win_sw5T_model
- 0x80B0B8D0: mus_win_sw6T_model
- 0x80B0B908: mus_win_sw7T_model
- 0x80B0B940: mus_win_sw8T_model
- 0x80B0B978: mus_win_sw9T_model
- 0x80B0B9B0: mus_win_sw10T_model
- 0x80B0B9E8: mus_win_sw11T_model
- 0x80B0BA20: mus_win_sw12T_model
- 0x80B0BA58: mus_win_ueT_model
- 0x80B0BB48: mus_win_ue2T_model
- 0x80B0BB90: mus_win_model_before
- 0x80B0BBD8: mus_win_model
- 0x80B0BC60: mus_win_tagu_tex
- 0x80B0C060: mus_win2_v
- 0x80B0C0A0: mus_tag_nes_model
- 0x80B0C100: inv_ori_tw4_tex_rgb_ci4_pal
- 0x80B0C120: inv_original_cloth_tex_rgb_ci4_pal
- 0x80B0C140: inv_ori_tw1_tex_rgb_ci4_pal
- 0x80B0C160: inv_ori_tw2_tex_rgb_ci4_pal
- 0x80B0C180: inv_ori_tw3_tex_rgb_ci4_pal
- 0x80B0C1A0: inv_ori_w1_tex
- 0x80B0C9A0: inv_ori_w2_tex
- 0x80B0CDA0: inv_ori_w3_tex
- 0x80B0D5A0: inv_ori_w4_tex
- 0x80B0DAA0: inv_ori_tw4_tex_rgb_ci4
- 0x80B0DB20: inv_original_cloth_tex_rgb_ci4
- 0x80B0DD20: inv_ori_tw1_tex_rgb_ci4
- 0x80B0E120: inv_ori_tw2_tex_rgb_ci4
- 0x80B0E320: inv_ori_tw3_tex_rgb_ci4
- 0x80B0E720: inv_original_v
- 0x80B0F500: needlework_before_model
- 0x80B0F520: inv_original_w_model_before
- 0x80B0F558: inv_original_w9_model
- 0x80B0F590: inv_original_waku_model
- 0x80B0F5F8: inv_original_mb_before_model
- 0x80B0F618: inv_original_mb1_model
- 0x80B0F630: inv_original_mb2_model
- 0x80B0F648: inv_original_mb3_model
- 0x80B0F660: inv_original_mb4_model
- 0x80B0F678: inv_original_mb5_model
- 0x80B0F690: inv_original_mb6_model
- 0x80B0F6A8: inv_original_mb7_model
- 0x80B0F6C0: inv_original_mb8_model
- 0x80B0F6D8: inv_original_f_model
- 0x80B0F740: inv_original_w1T_model
- 0x80B0F778: inv_original_w2T_model
- 0x80B0F7B0: inv_original_w3T_model
- 0x80B0F7E8: inv_original_w4T_model
- 0x80B0F820: inv_original_w5T_model
- 0x80B0F858: inv_original_w6T_model
- 0x80B0F890: inv_original_w7T_model
- 0x80B0F8C8: inv_original_w8T_model
- 0x80B0F900: inv_original_ueT_model
- 0x80B0FA20: inv_original_aw5_tex
- 0x80B0FB20: inv_original2_v
- 0x80B108E0: inv_original2_w9_model
- 0x80B10918: inv_original2_waku_model
- 0x80B10980: inv_original2_mb1_model
- 0x80B10998: inv_original2_mb2_model
- 0x80B109B0: inv_original2_mb3_model
- 0x80B109C8: inv_original2_mb4_model
- 0x80B109E0: inv_original2_mb5_model
- 0x80B109F8: inv_original2_mb6_model
- 0x80B10A10: inv_original2_mb7_model
- 0x80B10A28: inv_original2_mb8_model
- 0x80B10A40: inv_original2_f_model
- 0x80B10AA8: inv_original2_w1T_model
- 0x80B10AE0: inv_original2_w2T_model
- 0x80B10B18: inv_original2_w3T_model
- 0x80B10B50: inv_original2_w4T_model
- 0x80B10B88: inv_original2_w5T_model
- 0x80B10BC0: inv_original2_w6T_model
- 0x80B10BF8: inv_original2_w7T_model
- 0x80B10C30: inv_original2_w8T_model
- 0x80B10C68: inv_original2_ueT_model
- 0x80B10D80: inv_original_mark_tex
- 0x80B10E80: sav_mark_v
- 0x80B10EC0: sav_mark_winT_before_model
- 0x80B10EF0: sav_mark_winT_model
- 0x80B10F20: kei_win_latest_tex
- 0x80B11420: kei_win_entry_tex
- 0x80B11A20: kei_win_writen_tex
- 0x80B11E20: kei_win_yaji2_tex
- 0x80B12EA0: kei_win_st1_tex_rgb_ia8
- 0x80B13EA0: kei_win_st2_tex_rgb_ia8
- 0x80B14EA0: kei_win_st3_tex_rgb_ia8
- 0x80B15EA0: kei_win_st4_tex_rgb_ia8
- 0x80B16EA0: kei_win_st5_tex_rgb_ia8
- 0x80B17EA0: kei_win_st6_tex_rgb_ia8
- 0x80B1A0A0: kei_hyouji_v
- 0x80B1A3E0: kei_win_bt_model
- 0x80B1A450: kei_win_cbt_model
- 0x80B1A488: kei_win_3DT_model
- 0x80B1A4C0: kei_win_cmojiT_model
- 0x80B1A510: kei_win_bmojiT_model
- 0x80B1A580: kei_win_stT_model
- 0x80B1A5C0: kei_win_cbT_model
- 0x80B1A5F8: kei_win_yaji1T_mode
- 0x80B1A628: kei_win_yaji1T_model
- 0x80B1A638: kei_win_yaji2T_model
- 0x80B1A648: kei_hyouji_mode
- 0x80B1A670: kei_hyouji_model
- 0x80B1A6E0: kei_win_pin_pal
- 0x80B1A700: kei_win_pin_tex
- 0x80B1A900: kei_win_w1_tex
- 0x80B1B900: kei_win_w2_tex
- 0x80B1C100: kei_win_w3_tex
- 0x80B1C500: kei_win_kage2_tex
- 0x80B1CD00: kei_win_kage3_tex
- 0x80B1D100: kei_win_kage4_tex
- 0x80B1D500: kei_win_v
- 0x80B1D8B0: kei_win_kamiT_model
- 0x80B1D930: kei_win_pinT_model
- 0x80B1D970: kei_win_wakuT_model
- 0x80B1D9F8: kei_win_mode
- 0x80B1DA18: kei_win_model
- 0x80B1DA40: pwd_win_kagi2_pal
- 0x80B1DA60: pwd_win_nuno_tex_rgb_ci4_pal
- 0x80B1DA80: pwd_win_w4_tex_rgb_ci4_pal
- 0x80B1DAA0: pwd_win_w1_tex_rgb_ci4_pal
- 0x80B1DAC0: pwd_win_w2_tex_rgb_ci4_pal
- 0x80B1DAE0: pwd_win_w3_tex_rgb_ci4_pal
- 0x80B1DB00: pwd_win_moji_tex
- 0x80B1E380: pwd_win_sw1_tex
- 0x80B1E780: pwd_win_sw2_tex
- 0x80B1EB80: pwd_win_sw3_tex
- 0x80B1ED80: pwd_win_sw4_tex
- 0x80B1EE00: pwd_win_icon_tex
- 0x80B1F600: pwd_win_nuno_tex_rgb_ci4
- 0x80B1F800: pwd_win_w4_tex_rgb_ci4
- 0x80B1F880: pwd_win_w1_tex_rgb_ci4
- 0x80B1FC80: pwd_win_w2_tex_rgb_ci4
- 0x80B20080: pwd_win_w3_tex_rgb_ci4
- 0x80B20280: pwd_win_v
- 0x80B21100: pwd_win_w11_model
- 0x80B21130: pwd_win_ue_model
- 0x80B211E0: pwd_win_fuki_model
- 0x80B21218: pwd_win_waku_model
- 0x80B21240: pwd_win_moji_model
- 0x80B21278: pwd_win_sen_model
- 0x80B212A8: pwd_win_sen2_model
- 0x80B21378: pwd_win_w1T_model
- 0x80B213A8: pwd_win_w2T_model
- 0x80B213D8: pwd_win_w3T_model
- 0x80B21408: pwd_win_w4T_model
- 0x80B21438: pwd_win_w5T_model
- 0x80B21468: pwd_win_w6T_model
- 0x80B21498: pwd_win_w7T_model
- 0x80B214C8: pwd_win_w8T_model
- 0x80B214F8: pwd_win_w9T_model
- 0x80B21528: pwd_win_w10T_model
- 0x80B21558: pwd_win_iconT_model
- 0x80B21590: pwd_win_mode
- 0x80B215D0: pwd_win_model
- 0x80B21780: pas_start_v
- 0x80B21830: pas_start_yaji_model
- 0x80B21858: pas_start_buttonT_model
- 0x80B21898: pas_start_model
- 0x80B218C0: pas_win_nimotu_pal
- 0x80B218E0: pas_win_nuno_tex_rgb_ci4_pal
- 0x80B21900: pas_win_ta1_tex_rgb_ci4_pal
- 0x80B21920: pas_win_ta2_tex_rgb_ci4_pal
- 0x80B21940: pas_win_ta3_tex_rgb_ci4_pal
- 0x80B21960: pas_win_name_tex
- 0x80B21B60: pas_win_town_tex
- 0x80B22560: pas_win_wa_tex
- 0x80B225E0: pas_win_test_tex
- 0x80B22660: pas_win_icon_tex
- 0x80B236E0: pas_win_nuno_tex_rgb_ci4
- 0x80B238E0: pas_win_ta1_tex_rgb_ci4
- 0x80B23CE0: pas_win_ta2_tex_rgb_ci4
- 0x80B240E0: pas_win_ta3_tex_rgb_ci4
- 0x80B244E0: pas_win_v
- 0x80B24E20: pas_win_fuki_model
- 0x80B24E58: pas_win_wmura_model
- 0x80B24E90: pas_win_wname_model
- 0x80B24EC8: pas_win_name_model
- 0x80B24F18: pas_win_waku1_model
- 0x80B24F68: pas_win_waku2_model
- 0x80B24FB8: pas_win_w1T_model
- 0x80B24FE8: pas_win_w2T_model
- 0x80B25018: pas_win_w3T_model
- 0x80B25048: pas_win_w4T_model
- 0x80B25078: pas_win_w5T_model
- 0x80B250A8: pas_win_w6T_model
- 0x80B250D8: pas_win_w7T_model
- 0x80B25108: pas_win_w8T_model
- 0x80B25138: pas_win_w9T_model
- 0x80B25168: pas_win_w10T_model
- 0x80B25198: pas_win_ueT_model
- 0x80B25240: pas_win_iconT_model
- 0x80B25280: pas_win_mode
- 0x80B252C0: pas_win_model
- 0x80B25360: fkm_win_house_pal
- 0x80B25380: fkm_win_ie_tex_rgb_ci4_pal
- 0x80B253A0: fkm_win_sw1_tex_rgb_ci4_pal
- 0x80B253C0: fkm_win_sw2_tex_rgb_ci4_pal
- 0x80B253E0: fkm_win_sw3_tex_rgb_ci4_pal
- 0x80B25400: fri_win_owe_tex
- 0x80B25F00: fri_win_payment_tex
- 0x80B26400: fkm_win_house_tex
- 0x80B26C00: fkm_win_sen_tex
- 0x80B27500: fkm_win_ie_tex_rgb_ci4
- 0x80B27700: fkm_win_sw1_tex_rgb_ci4
- 0x80B27B00: fkm_win_sw2_tex_rgb_ci4
- 0x80B27F00: fkm_win_sw3_tex_rgb_ci4
- 0x80B28300: fkm_win_v
- 0x80B28A40: fkm_win_moji_model
- 0x80B28AC8: fkm_win_fuki_model
- 0x80B28B00: fkm_win_wakuT_model
- 0x80B28BB0: fkm_win_iconT_model
- 0x80B28BF0: fkm_win_senT_model
- 0x80B28C28: fkm_win_sw1T_model
- 0x80B28C58: fkm_win_sw2T_model
- 0x80B28C88: fkm_win_sw3T_model
- 0x80B28CB8: fkm_win_sw4T_model
- 0x80B28CE8: fkm_win_sw5T_model
- 0x80B28D18: fkm_win_sw6T_model
- 0x80B28D48: fkm_win_sw7T_model
- 0x80B28D78: fkm_win_sw8T_model
- 0x80B28DA8: fkm_win_sw9T_model
- 0x80B28DD8: fkm_win_sw10T_model
- 0x80B28E08: fkm_win_mode
- 0x80B28E48: fkm_win_model
- 0x80B28EE0: san_itemw_waku_tex
- 0x80B296E0: sen_itemw_kage_tex
- 0x80B29C60: sen_itemw_v
- 0x80B29D60: sen_item2_DL_mode
- 0x80B29D88: sen_itemw_kage_model
- 0x80B29DC8: sen_itemw_yajirushi_model
- 0x80B29E00: sen_itemw_wakuT_model
- 0x80B29E38: sen_itemw_yajirushi2T_model
- 0x80B29E80: sen_qitem_kage_tex
- 0x80B2A380: sen_qitem_waku_tex
- 0x80B2AC80: sen_qitem_yajirushi
- 0x80B2AD00: sen_qitem_yajirushi2
- 0x80B2AF00: sen_qitem_v
- 0x80B2B100: sen_qitem_kage_model
- 0x80B2B140: sen_qitem_yajirushi3_model
- 0x80B2B180: sen_qitem_yajirushi5_model
- 0x80B2B1C0: sen_qitem_wakuT_model
- 0x80B2B208: sen_qitem_yajirushiT_model
- 0x80B2B240: sen_qitem_yajirushi2T_model
- 0x80B2B288: sen_qitem_yajirushi4T_model
- 0x80B2B2D0: sen_qitem_yajirushi6T_model
- 0x80B2B320: sen_win_wa1_tex
- 0x80B2C320: sen_win_wa2_tex
- 0x80B2D320: sen_win_waku1_tex
- 0x80B2E4A0: sen_win_v
- 0x80B2E6C0: sen_win_cursor_model
- 0x80B2E6F0: sen_win_kageT_model
- 0x80B2E738: sen_win_wakuT_model
- 0x80B2E7A8: sen_win_yajirushiT_model
- 0x80B2E7E0: sen_win_yajirushi2T_model
- 0x80B2E820: tim_hari_h1_pal
- 0x80B2E840: tim_hari_h2_pal
- 0x80B2E860: tim_hari_maru_pal
- 0x80B2E880: tim_hari_h1_tex
- 0x80B2EC80: tim_hari_h2_tex
- 0x80B2F080: tim_hari_maru_tex
- 0x80B2F100: tim_hari_v
- 0x80B2F1C0: tim_hari_mode
- 0x80B2F1F0: tim_hari_b1T_model
- 0x80B2F278: tim_hari_b2T_model
- 0x80B2F300: tim_hari_b3T_model
- 0x80B2F3A0: tim_win_newtokei_tex
- 0x80B2F3C0: tim_win_nuno_tex_rgb_ci4_pal
- 0x80B2F3E0: tim_win_sw1_tex_rgb_ci4_pal
- 0x80B2F400: tim_win_sw2_tex_rgb_ci4_pal
- 0x80B2F420: tim_win_sw3_tex_rgb_ci4_pal
- 0x80B2F440: tim_win_sw4_tex_rgb_ci4_pal
- 0x80B2F460: tim_win_sw5_tex_rgb_ci4_pal
- 0x80B2F480: tim_win_sw6_tex_rgb_ci4_pal
- 0x80B2F4A0: tim_win_sw7_tex_rgb_ci4_pal
- 0x80B2F4C0: tim_win_tokei1_tex
- 0x80B2FCC0: tim_win_fuki_tex
- 0x80B304C0: tim_win_moji_tex
- 0x80B30540: tim_win_on_tex
- 0x80B305C0: testmocomma
- 0x80B30640: tim_win_maru_tex
- 0x80B306C0: tim_win_w1_tex
- 0x80B30AC0: tim_win_w2_tex
- 0x80B30EC0: tim_win_w3_tex
- 0x80B310C0: tim_win_w4_tex
- 0x80B314C0: tim_win_w5_tex
- 0x80B318C0: tim_win_april_tex_rgb_i4
- 0x80B31AC0: tim_win_august_tex_rgb_i4
- 0x80B31CC0: tim_win_december_tex_rgb_i4
- 0x80B31EC0: tim_win_february_tex_rgb_i4
- 0x80B320C0: tim_win_january_tex_rgb_i4
- 0x80B322C0: tim_win_july_tex_rgb_i4
- 0x80B324C0: tim_win_june_tex_rgb_i4
- 0x80B326C0: tim_win_march_tex_rgb_i4
- 0x80B328C0: tim_win_may_tex_rgb_i4
- 0x80B32AC0: tim_win_november_tex_rgb_i4
- 0x80B32CC0: tim_win_october_tex_rgb_i4
- 0x80B32EC0: tim_win_september_tex_rgb_i4
- 0x80B330C0: tim_win_fri_tex_rgb_i4
- 0x80B332C0: tim_win_mon_tex_rgb_i4
- 0x80B334C0: tim_win_sat_tex_rgb_i4
- 0x80B336C0: tim_win_sun_tex_rgb_i4
- 0x80B338C0: tim_win_thu_tex_rgb_i4
- 0x80B33AC0: tim_win_tue_tex_rgb_i4
- 0x80B33CC0: tim_win_wed_tex_rgb_i4
- 0x80B33EC0: tim_win_nuno_tex_rgb_ci4
- 0x80B340C0: tim_win_sw1_tex_rgb_ci4
- 0x80B344C0: tim_win_sw2_tex_rgb_ci4
- 0x80B348C0: tim_win_sw3_tex_rgb_ci4
- 0x80B34CC0: tim_win_sw4_tex_rgb_ci4
- 0x80B350C0: tim_win_sw5_tex_rgb_ci4
- 0x80B354C0: tim_win_sw6_tex_rgb_ci4
- 0x80B358C0: tim_win_sw7_tex_rgb_ci4
- 0x80B35CC0: tim_win_v
- 0x80B36530: tim_win_ue_model
- 0x80B365F8: tim_win_moji_model
- 0x80B36680: tim_win_youbi_model
- 0x80B366B8: tim_win_month_model
- 0x80B366E8: tim_win_sw1T_model
- 0x80B36718: tim_win_sw2T_model
- 0x80B36748: tim_win_sw3T_model
- 0x80B36778: tim_win_sw4T_model
- 0x80B367A8: tim_win_sw5T_model
- 0x80B367D8: tim_win_sw6T_model
- 0x80B36808: tim_win_sw7T_model
- 0x80B36838: tim_win_sw8T_model
- 0x80B36868: tim_win_sw9T_model
- 0x80B36898: tim_win_sw10T_model
- 0x80B368C8: tim_win_sw11T_model
- 0x80B368F8: tim_win_sw12T_model
- 0x80B36928: tim_win_sw13T_model
- 0x80B36958: tim_win_sw14T_model
- 0x80B36988: tim_win_tokeiT_model
- 0x80B369C8: tim_win_fukiT_model
- 0x80B36A00: tim_win_mode
- 0x80B36A40: tim_win_model
- 0x80B37F80: att_win_v
- 0x80B38270: att_win_cursor_model
- 0x80B382A8: att_win_winT_model
- 0x80B38398: att_win_mode
- 0x80B383C0: att_win_model
- 0x80B383E0: ef_yuki01_1
- 0x80B38460: ef_yuki01_00_v
- 0x80B384A0: ef_yuki01_setmode
- 0x80B384E8: ef_yuki01_00_model
- 0x80B38520: act_darumaA_tex
- 0x80B38720: act_darumaA_v
- 0x80B38940: act_darumaA_model
- 0x80B38AA8: act_darumaB_tex
- 0x80B38CA8: act_darumaB_v
- 0x80B38E88: act_darumaB_model
- 0x80B38FC0: ttl_1_v
- 0x80B3A410: head_ttl_model
- 0x80B3A638: mouth_ttl_model
- 0x80B3A6E0: hand_ttl_model
- 0x80B3A740: Rarm2_ttl_model
- 0x80B3A7C8: Rarm1_ttl_model
- 0x80B3A820: Larm2_ttl_model
- 0x80B3A8A8: Larm1_ttl_model
- 0x80B3A900: chest_ttl_model
- 0x80B3AA18: tail1_ttl_model
- 0x80B3AA70: Rfoot2_ttl_model
- 0x80B3AAF8: Rfoot1_ttl_model
- 0x80B3AB50: Lfoot2_ttl_model
- 0x80B3ABD8: Lfoot1_ttl_model
- 0x80B3AC30: base_ttl_model
- 0x80B3AC98: cKF_je_r_ttl_1_tbl
- 0x80B3ADD0: cKF_bs_r_ttl_1
- 0x80B3ADE0: ttl_1_pal
- 0x80B3AE00: ttl_1_eye1_TA_tex_txt
- 0x80B3AF00: ttl_1_eye2_TA_tex_txt
- 0x80B3B000: ttl_1_eye3_TA_tex_txt
- 0x80B3B100: ttl_1_eye4_TA_tex_txt
- 0x80B3B200: ttl_1_eye5_TA_tex_txt
- 0x80B3B300: ttl_1_eye6_TA_tex_txt
- 0x80B3B400: ttl_1_eye7_TA_tex_txt
- 0x80B3B500: ttl_1_eye8_TA_tex_txt
- 0x80B3B600: ttl_1_tmem_txt
- 0x80B3BD40: squ_1_v
- 0x80B3D430: head_squ_model
- 0x80B3D5C8: Rarm2_squ_model
- 0x80B3D650: Rarm1_squ_model
- 0x80B3D6C8: Larm2_squ_model
- 0x80B3D750: Larm1_squ_model
- 0x80B3D7C8: chest_squ_model
- 0x80B3D870: tail1_squ_model
- 0x80B3D8E0: tail2_squ_model
- 0x80B3D9B0: Rfoot2_squ_model
- 0x80B3DA30: Rfoot1_squ_model
- 0x80B3DAF0: Lfoot2_squ_model
- 0x80B3DB70: Lfoot1_squ_model
- 0x80B3DC30: base_squ_model
- 0x80B3DCA0: cKF_je_r_squ_1_tbl
- 0x80B3DDD8: cKF_bs_r_squ_1
- 0x80B3DDE0: squ_1_pal
- 0x80B3DE00: squ_1_eye1_TA_tex_txt
- 0x80B3DF00: squ_1_eye2_TA_tex_txt
- 0x80B3E000: squ_1_eye3_TA_tex_txt
- 0x80B3E100: squ_1_eye4_TA_tex_txt
- 0x80B3E200: squ_1_eye5_TA_tex_txt
- 0x80B3E300: squ_1_eye6_TA_tex_txt
- 0x80B3E400: squ_1_eye7_TA_tex_txt
- 0x80B3E500: squ_1_eye8_TA_tex_txt
- 0x80B3E600: squ_1_mouth1_TA_tex_txt
- 0x80B3E700: squ_1_mouth2_TA_tex_txt
- 0x80B3E800: squ_1_mouth3_TA_tex_txt
- 0x80B3E900: squ_1_mouth4_TA_tex_txt
- 0x80B3EA00: squ_1_mouth5_TA_tex_txt
- 0x80B3EB00: squ_1_mouth6_TA_tex_txt
- 0x80B3EC00: squ_1_tmem_txt
- 0x80B3F000: squ_2_pal
- 0x80B3F020: squ_2_eye1_TA_tex_txt
- 0x80B3F120: squ_2_eye2_TA_tex_txt
- 0x80B3F220: squ_2_eye3_TA_tex_txt
- 0x80B3F320: squ_2_eye4_TA_tex_txt
- 0x80B3F420: squ_2_eye5_TA_tex_txt
- 0x80B3F520: squ_2_eye6_TA_tex_txt
- 0x80B3F620: squ_2_eye7_TA_tex_txt
- 0x80B3F720: squ_2_eye8_TA_tex_txt
- 0x80B3F820: squ_2_mouth1_TA_tex_txt
- 0x80B3F920: squ_2_mouth2_TA_tex_txt
- 0x80B3FA20: squ_2_mouth3_TA_tex_txt
- 0x80B3FB20: squ_2_mouth4_TA_tex_txt
- 0x80B3FC20: squ_2_mouth5_TA_tex_txt
- 0x80B3FD20: squ_2_mouth6_TA_tex_txt
- 0x80B3FE20: squ_2_tmem_txt
- 0x80B40220: squ_11_pal
- 0x80B40240: squ_11_eye1_TA_tex_txt
- 0x80B40340: squ_11_eye2_TA_tex_txt
- 0x80B40440: squ_11_eye3_TA_tex_txt
- 0x80B40540: squ_11_eye4_TA_tex_txt
- 0x80B40640: squ_11_eye5_TA_tex_txt
- 0x80B40740: squ_11_eye6_TA_tex_txt
- 0x80B40840: squ_11_eye7_TA_tex_txt
- 0x80B40940: squ_11_eye8_TA_tex_txt
- 0x80B40A40: squ_11_mouth1_TA_tex_txt
- 0x80B40B40: squ_11_mouth2_TA_tex_txt
- 0x80B40C40: squ_11_mouth3_TA_tex_txt
- 0x80B40D40: squ_11_mouth4_TA_tex_txt
- 0x80B40E40: squ_11_mouth5_TA_tex_txt
- 0x80B40F40: squ_11_mouth6_TA_tex_txt
- 0x80B41040: squ_11_tmem_txt
- 0x80B41440: squ_3_pal
- 0x80B41460: squ_3_eye1_TA_tex_txt
- 0x80B41560: squ_3_eye2_TA_tex_txt
- 0x80B41660: squ_3_eye3_TA_tex_txt
- 0x80B41760: squ_3_eye4_TA_tex_txt
- 0x80B41860: squ_3_eye5_TA_tex_txt
- 0x80B41960: squ_3_eye6_TA_tex_txt
- 0x80B41A60: squ_3_eye7_TA_tex_txt
- 0x80B41B60: squ_3_eye8_TA_tex_txt
- 0x80B41C60: squ_3_mouth1_TA_tex_txt
- 0x80B41D60: squ_3_mouth2_TA_tex_txt
- 0x80B41E60: squ_3_mouth3_TA_tex_txt
- 0x80B41F60: squ_3_mouth4_TA_tex_txt
- 0x80B42060: squ_3_mouth5_TA_tex_txt
- 0x80B42160: squ_3_mouth6_TA_tex_txt
- 0x80B42260: squ_3_tmem_txt
- 0x80B42660: squ_4_pal
- 0x80B42680: squ_4_eye1_TA_tex_txt
- 0x80B42780: squ_4_eye2_TA_tex_txt
- 0x80B42880: squ_4_eye3_TA_tex_txt
- 0x80B42980: squ_4_eye4_TA_tex_txt
- 0x80B42A80: squ_4_eye5_TA_tex_txt
- 0x80B42B80: squ_4_eye6_TA_tex_txt
- 0x80B42C80: squ_4_eye7_TA_tex_txt
- 0x80B42D80: squ_4_eye8_TA_tex_txt
- 0x80B42E80: squ_4_mouth1_TA_tex_txt
- 0x80B42F80: squ_4_mouth2_TA_tex_txt
- 0x80B43080: squ_4_mouth3_TA_tex_txt
- 0x80B43180: squ_4_mouth4_TA_tex_txt
- 0x80B43280: squ_4_mouth5_TA_tex_txt
- 0x80B43380: squ_4_mouth6_TA_tex_txt
- 0x80B43480: squ_4_tmem_txt
- 0x80B43880: squ_5_pal
- 0x80B438A0: squ_5_eye1_TA_tex_txt
- 0x80B439A0: squ_5_eye2_TA_tex_txt
- 0x80B43AA0: squ_5_eye3_TA_tex_txt
- 0x80B43BA0: squ_5_eye4_TA_tex_txt
- 0x80B43CA0: squ_5_eye5_TA_tex_txt
- 0x80B43DA0: squ_5_eye6_TA_tex_txt
- 0x80B43EA0: squ_5_eye7_TA_tex_txt
- 0x80B43FA0: squ_5_eye8_TA_tex_txt
- 0x80B440A0: squ_5_mouth1_TA_tex_txt
- 0x80B441A0: squ_5_mouth2_TA_tex_txt
- 0x80B442A0: squ_5_mouth3_TA_tex_txt
- 0x80B443A0: squ_5_mouth4_TA_tex_txt
- 0x80B444A0: squ_5_mouth5_TA_tex_txt
- 0x80B445A0: squ_5_mouth6_TA_tex_txt
- 0x80B446A0: squ_5_tmem_txt
- 0x80B44AA0: squ_6_pal
- 0x80B44AC0: squ_6_eye1_TA_tex_txt
- 0x80B44BC0: squ_6_eye2_TA_tex_txt
- 0x80B44CC0: squ_6_eye3_TA_tex_txt
- 0x80B44DC0: squ_6_eye4_TA_tex_txt
- 0x80B44EC0: squ_6_eye5_TA_tex_txt
- 0x80B44FC0: squ_6_eye6_TA_tex_txt
- 0x80B450C0: squ_6_eye7_TA_tex_txt
- 0x80B451C0: squ_6_eye8_TA_tex_txt
- 0x80B452C0: squ_6_mouth1_TA_tex_txt
- 0x80B453C0: squ_6_mouth2_TA_tex_txt
- 0x80B454C0: squ_6_mouth3_TA_tex_txt
- 0x80B455C0: squ_6_mouth4_TA_tex_txt
- 0x80B456C0: squ_6_mouth5_TA_tex_txt
- 0x80B457C0: squ_6_mouth6_TA_tex_txt
- 0x80B458C0: squ_6_tmem_txt
- 0x80B45CC0: squ_7_pal
- 0x80B45CE0: squ_7_eye1_TA_tex_txt
- 0x80B45DE0: squ_7_eye2_TA_tex_txt
- 0x80B45EE0: squ_7_eye3_TA_tex_txt
- 0x80B45FE0: squ_7_eye4_TA_tex_txt
- 0x80B460E0: squ_7_eye5_TA_tex_txt
- 0x80B461E0: squ_7_eye6_TA_tex_txt
- 0x80B462E0: squ_7_eye7_TA_tex_txt
- 0x80B463E0: squ_7_eye8_TA_tex_txt
- 0x80B464E0: squ_7_mouth1_TA_tex_txt
- 0x80B465E0: squ_7_mouth2_TA_tex_txt
- 0x80B466E0: squ_7_mouth3_TA_tex_txt
- 0x80B467E0: squ_7_mouth4_TA_tex_txt
- 0x80B468E0: squ_7_mouth5_TA_tex_txt
- 0x80B469E0: squ_7_mouth6_TA_tex_txt
- 0x80B46AE0: squ_7_tmem_txt
- 0x80B46EE0: squ_8_pal
- 0x80B46F00: squ_8_eye1_TA_tex_txt
- 0x80B47000: squ_8_eye2_TA_tex_txt
- 0x80B47100: squ_8_eye3_TA_tex_txt
- 0x80B47200: squ_8_eye4_TA_tex_txt
- 0x80B47300: squ_8_eye5_TA_tex_txt
- 0x80B47400: squ_8_eye6_TA_tex_txt
- 0x80B47500: squ_8_eye7_TA_tex_txt
- 0x80B47600: squ_8_eye8_TA_tex_txt
- 0x80B47700: squ_8_mouth1_TA_tex_txt
- 0x80B47800: squ_8_mouth2_TA_tex_txt
- 0x80B47900: squ_8_mouth3_TA_tex_txt
- 0x80B47A00: squ_8_mouth4_TA_tex_txt
- 0x80B47B00: squ_8_mouth5_TA_tex_txt
- 0x80B47C00: squ_8_mouth6_TA_tex_txt
- 0x80B47D00: squ_8_tmem_txt
- 0x80B48100: squ_9_pal
- 0x80B48120: squ_9_eye1_TA_tex_txt
- 0x80B48220: squ_9_eye2_TA_tex_txt
- 0x80B48320: squ_9_eye3_TA_tex_txt
- 0x80B48420: squ_9_eye4_TA_tex_txt
- 0x80B48520: squ_9_eye5_TA_tex_txt
- 0x80B48620: squ_9_eye6_TA_tex_txt
- 0x80B48720: squ_9_eye7_TA_tex_txt
- 0x80B48820: squ_9_eye8_TA_tex_txt
- 0x80B48920: squ_9_mouth1_TA_tex_txt
- 0x80B48A20: squ_9_mouth2_TA_tex_txt
- 0x80B48B20: squ_9_mouth3_TA_tex_txt
- 0x80B48C20: squ_9_mouth4_TA_tex_txt
- 0x80B48D20: squ_9_mouth5_TA_tex_txt
- 0x80B48E20: squ_9_mouth6_TA_tex_txt
- 0x80B48F20: squ_9_tmem_txt
- 0x80B49320: squ_10_pal
- 0x80B49340: squ_10_eye1_TA_tex_txt
- 0x80B49440: squ_10_eye2_TA_tex_txt
- 0x80B49540: squ_10_eye3_TA_tex_txt
- 0x80B49640: squ_10_eye4_TA_tex_txt
- 0x80B49740: squ_10_eye5_TA_tex_txt
- 0x80B49840: squ_10_eye6_TA_tex_txt
- 0x80B49940: squ_10_eye7_TA_tex_txt
- 0x80B49A40: squ_10_eye8_TA_tex_txt
- 0x80B49B40: squ_10_mouth1_TA_tex_txt
- 0x80B49C40: squ_10_mouth2_TA_tex_txt
- 0x80B49D40: squ_10_mouth3_TA_tex_txt
- 0x80B49E40: squ_10_mouth4_TA_tex_txt
- 0x80B49F40: squ_10_mouth5_TA_tex_txt
- 0x80B4A040: squ_10_mouth6_TA_tex_txt
- 0x80B4A140: squ_10_tmem_txt
- 0x80B4A540: mnk_1_v
- 0x80B4BD90: head_mnk_model
- 0x80B4BF38: Rarm2_mnk_model
- 0x80B4BFD0: Rarm1_mnk_model
- 0x80B4C048: Larm2_mnk_model
- 0x80B4C0E0: Larm1_mnk_model
- 0x80B4C158: chest_mnk_model
- 0x80B4C218: tail1_mnk_model
- 0x80B4C290: tail2_mnk_model
- 0x80B4C350: Rfoot3_mnk_model
- 0x80B4C3E0: Rfoot2_mnk_model
- 0x80B4C460: Rfoot1_mnk_model
- 0x80B4C4B8: Lfoot3_mnk_model
- 0x80B4C548: Lfoot2_mnk_model
- 0x80B4C5C8: Lfoot1_mnk_model
- 0x80B4C620: base_mnk_model
- 0x80B4C6B8: cKF_je_r_mnk_1_tbl
- 0x80B4C7F0: cKF_bs_r_mnk_1
- 0x80B4C800: mnk_1_pal
- 0x80B4C820: mnk_1_eye1_TA_tex_txt
- 0x80B4C920: mnk_1_eye2_TA_tex_txt
- 0x80B4CA20: mnk_1_eye3_TA_tex_txt
- 0x80B4CB20: mnk_1_eye4_TA_tex_txt
- 0x80B4CC20: mnk_1_eye5_TA_tex_txt
- 0x80B4CD20: mnk_1_eye6_TA_tex_txt
- 0x80B4CE20: mnk_1_eye7_TA_tex_txt
- 0x80B4CF20: mnk_1_eye8_TA_tex_txt
- 0x80B4D020: mnk_1_mouth1_TA_tex_txt
- 0x80B4D120: mnk_1_mouth2_TA_tex_txt
- 0x80B4D220: mnk_1_mouth3_TA_tex_txt
- 0x80B4D320: mnk_1_mouth4_TA_tex_txt
- 0x80B4D420: mnk_1_mouth5_TA_tex_txt
- 0x80B4D520: mnk_1_mouth6_TA_tex_txt
- 0x80B4D620: mnk_1_tmem_txt
- 0x80B4DC20: obj_s_house1_a_pal
- 0x80B4DC40: obj_s_house1_b_pal
- 0x80B4DC60: obj_s_house1_c_pal
- 0x80B4DC80: obj_s_house1_d_pal
- 0x80B4DCA0: obj_s_house1_e_pal
- 0x80B4DCC0: obj_s_house2_e_pal
- 0x80B4DCE0: obj_s_house2_d_pal
- 0x80B4DD00: obj_s_house2_c_pal
- 0x80B4DD20: obj_s_house2_b_pal
- 0x80B4DD40: obj_s_house2_a_pal
- 0x80B4DD60: obj_s_house3_e_pal
- 0x80B4DD80: obj_s_house3_d_pal
- 0x80B4DDA0: obj_s_house3_c_pal
- 0x80B4DDC0: obj_s_house3_b_pal
- 0x80B4DDE0: obj_s_house3_a_pal
- 0x80B4DE00: obj_s_house4_e_pal
- 0x80B4DE20: obj_s_house4_d_pal
- 0x80B4DE40: obj_s_house4_c_pal
- 0x80B4DE60: obj_s_house4_b_pal
- 0x80B4DE80: obj_s_house4_a_pal
- 0x80B4DEA0: obj_s_house5_e_pal
- 0x80B4DEC0: obj_s_house5_d_pal
- 0x80B4DEE0: obj_s_house5_c_pal
- 0x80B4DF00: obj_s_house5_b_pal
- 0x80B4DF20: obj_s_house5_a_pal
- 0x80B4DF40: obj_w_house1_a_pal
- 0x80B4DF60: obj_w_house1_b_pal
- 0x80B4DF80: obj_w_house1_c_pal
- 0x80B4DFA0: obj_w_house1_d_pal
- 0x80B4DFC0: obj_w_house1_e_pal
- 0x80B4DFE0: obj_w_house2_e_pal
- 0x80B4E000: obj_w_house2_d_pal
- 0x80B4E020: obj_w_house2_c_pal
- 0x80B4E040: obj_w_house2_b_pal
- 0x80B4E060: obj_w_house2_a_pal
- 0x80B4E080: obj_w_house3_e_pal
- 0x80B4E0A0: obj_w_house3_d_pal
- 0x80B4E0C0: obj_w_house3_c_pal
- 0x80B4E0E0: obj_w_house3_b_pal
- 0x80B4E120: obj_w_house4_e_pal
- 0x80B4E140: obj_w_house4_d_pal
- 0x80B4E160: obj_w_house4_c_pal
- 0x80B4E180: obj_w_house4_b_pal
- 0x80B4E1A0: obj_w_house4_a_pal
- 0x80B4E1C0: obj_w_house5_e_pal
- 0x80B4E1E0: obj_w_house5_d_pal
- 0x80B4E200: obj_w_house5_c_pal
- 0x80B4E220: obj_w_house5_b_pal
- 0x80B4E240: obj_w_house5_a_pal
- 0x80B4E260: obj_s_myhome_a_pal
- 0x80B4E280: obj_s_myhome_b_pal
- 0x80B4E2A0: obj_s_myhome_d_pal
- 0x80B4E2C0: obj_s_myhome_c_pal
- 0x80B4E2E0: obj_s_myhome_e_pal
- 0x80B4E300: obj_s_myhome_f_pal
- 0x80B4E320: obj_s_myhome_g_pal
- 0x80B4E340: obj_s_myhome_h_pal
- 0x80B4E360: obj_s_myhome_i_pal
- 0x80B4E380: obj_s_myhome_j_pal
- 0x80B4E3A0: obj_s_myhome_k_pal
- 0x80B4E3C0: obj_s_myhome_l_pal
- 0x80B4E3E0: obj_w_myhome_a_pal
- 0x80B4E400: obj_w_myhome_b_pal
- 0x80B4E420: obj_w_myhome_d_pal
- 0x80B4E440: obj_w_myhome_c_pal
- 0x80B4E460: obj_w_myhome_e_pal
- 0x80B4E480: obj_w_myhome_f_pal
- 0x80B4E4A0: obj_w_myhome_g_pal
- 0x80B4E4C0: obj_w_myhome_h_pal
- 0x80B4E4E0: obj_w_myhome_i_pal
- 0x80B4E500: obj_w_myhome_j_pal
- 0x80B4E520: obj_w_myhome_k_pal
- 0x80B4E540: obj_w_myhome_l_pal
- 0x80B4E560: obj_shop1_pal
- 0x80B4E580: obj_shop1_winter_pal
- 0x80B4E5A0: obj_shop2_pal
- 0x80B4E5C0: obj_shop2_winter_pal
- 0x80B4E5E0: obj_shop3_pal
- 0x80B4E600: obj_shop3_winter_pal
- 0x80B4E620: obj_shop4_pal
- 0x80B4E640: obj_shop4_winter_pal
- 0x80B4E660: br_shop_pal
- 0x80B4E680: br_shop_winter_pal
- 0x80B4E6A0: obj_s_post_office_pal
- 0x80B4E6C0: obj_s_post_office_winter_pal
- 0x80B4E6E0: obj_s_station1_a_pal
- 0x80B4E700: obj_s_station1_b_pal
- 0x80B4E720: obj_s_station1_c_pal
- 0x80B4E740: obj_s_station1_d_pal
- 0x80B4E760: obj_s_station1_e_pal
- 0x80B4E780: obj_s_station2_a_pal
- 0x80B4E7A0: obj_s_station2_b_pal
- 0x80B4E7C0: obj_s_station2_c_pal
- 0x80B4E7E0: obj_s_station2_d_pal
- 0x80B4E800: obj_s_station2_e_pal
- 0x80B4E820: obj_s_station3_a_pal
- 0x80B4E840: obj_s_station3_b_pal
- 0x80B4E860: obj_s_station3_c_pal
- 0x80B4E880: obj_s_station3_d_pal
- 0x80B4E8A0: obj_s_station3_e_pal
- 0x80B4E8C0: obj_w_station1_a_pal
- 0x80B4E8E0: obj_w_station1_b_pal
- 0x80B4E900: obj_w_station1_c_pal
- 0x80B4E920: obj_w_station1_d_pal
- 0x80B4E940: obj_w_station1_e_pal
- 0x80B4E960: obj_w_station2_a_pal
- 0x80B4E980: obj_w_station2_d_pal
- 0x80B4E9A0: obj_w_station2_b_pal
- 0x80B4E9C0: obj_w_station2_c_pal
- 0x80B4E9E0: obj_w_station2_e_pal
- 0x80B4EA00: obj_w_station3_a_pal
- 0x80B4EA20: obj_w_station3_d_pal
- 0x80B4EA40: obj_w_station3_b_pal
- 0x80B4EA60: obj_w_station3_c_pal
- 0x80B4EA80: obj_w_station3_e_pal
- 0x80B4EAA0: obj_train1_a1_pal
- 0x80B4EAC0: obj_train1_a1_winter_pal
- 0x80B4EAE0: obj_train1_a2_pal
- 0x80B4EB00: obj_train1_a2_winter_pal
- 0x80B4EB20: obj_police_box_pal
- 0x80B4EB40: obj_police_box_winter_pal
- 0x80B4EB60: reserve_pal
- 0x80B4EB80: reserve_winter_pal
- 0x80B4EBA0: obj_buggy_pal
- 0x80B4EBC0: obj_buggy_winter_pal
- 0x80B4EBE0: s_car_pal
- 0x80B4EC60: obj_e_goza_pal
- 0x80B4EC80: obj_e_radio_pal
- 0x80B4ECA0: obj_e_yatai_pal
- 0x80B4ECC0: obj_e_tukimi_pal
- 0x80B4ECE0: obj_e_mikuji_pal
- 0x80B4ED00: obj_e_count_pal
- 0x80B4ED20: obj_e_count02_pal
- 0x80B4ED40: obj_e_kago_r_pal
- 0x80B4ED60: obj_e_kago_w_pal
- 0x80B4EDA0: obj_e_koinobori_a_pal
- 0x80B4EDC0: obj_dump_pal
- 0x80B4EDE0: obj_w_windmill_a_pal
- 0x80B4EE00: obj_w_windmill_b_pal
- 0x80B4EE20: obj_w_windmill_c_pal
- 0x80B4EE40: obj_w_windmill_d_pal
- 0x80B4EE60: obj_w_windmill_e_pal
- 0x80B4EE80: obj_s_windmill_a_pal
- 0x80B4EEA0: obj_s_windmill_b_pal
- 0x80B4EEC0: obj_s_windmill_c_pal
- 0x80B4EEE0: obj_s_windmill_d_pal
- 0x80B4EF00: obj_s_windmill_e_pal
- 0x80B4EF20: obj_01_lotus_pal
- 0x80B4EF40: obj_e_mikanbox_pal
- 0x80B4EF60: obj_s_douzou_dai_pal
- 0x80B4EF80: obj_w_douzou_pal
- 0x80B4EFA0: obj_s_toudai_pal
- 0x80B4EFC0: obj_w_toudai_pal
- 0x80B4EFE0: obj_s_museum_pal
- 0x80B4F000: obj_s_museum_winter_pal
- 0x80B4F020: obj_s_boat_pal
- 0x80B4F040: obj_s_tailor_pal
- 0x80B4F060: obj_w_tailor_pal
- 0x80B4F080: obj_s_myhome_island_pal
- 0x80B4F0A0: obj_s_house_i_pal
- 0x80B4F0C0: structure_pal_adrs_nowinter
- 0x80B4F248: structure_pal_adrs_winter
- 0x80B4F3E0: obj_yamishop_shadow_tex
- 0x80B4F5E0: obj_yamishop_shadow_v
- 0x80B4F660: obj_yamishop_shadowT_model
- 0x80B4F6C0: obj_uranai_shadow_tex
- 0x80B4F8C0: obj_uranai_shadow_v
- 0x80B4F9A0: obj_uranai_shadowT_model
- 0x80B4FA00: obj_e_count_shadow_tex
- 0x80B4FC00: obj_e_count_shadow_v
- 0x80B4FC40: obj_e_count_shadow_model
- 0x80B4FCA0: obj_s_douzou_kage_txt
- 0x80B4FDA0: obj_s_douzou_shadow_v
- 0x80B4FE20: obj_s_douzou_shadow_model
- 0x80B4FE80: obj_dump_shadow_tex
- 0x80B50080: obj_dump_shadow_v
- 0x80B50380: obj_dump_shadowT_model
- 0x80B50420: obj_frag_shadow_tex
- 0x80B50620: obj_frag_shadow_v
- 0x80B506A0: obj_frag_shadowT_model
- 0x80B50700: obj_e_ghog_shadow_tex
- 0x80B50740: obj_e_ghog_shadow_v
- 0x80B507E0: obj_e_ghog_shadow_modelT
- 0x80B50840: obj_e_hfes_shadow_tex
- 0x80B50880: obj_e_hfes_shadow_a_v
- 0x80B50A40: obj_e_hfes_shadow_a_modelT
- 0x80B50AA8: obj_e_hfes_shadow_b_v
- 0x80B50C68: obj_e_hfes_shadow_b_modelT
- 0x80B50CD0: obj_e_hfes_shadow_c_v
- 0x80B50E90: obj_e_hfes_shadow_c_modelT
- 0x80B50F00: obj_s_house_i_shadow_tex
- 0x80B50F80: obj_s_house_i_shadow_v
- 0x80B51140: obj_s_house_i_shadowT_model
- 0x80B511C0: obj_e_kago_shadow_tex
- 0x80B513C0: obj_e_kago_shadow_v
- 0x80B51490: obj_e_kago_shadow_model
- 0x80B51500: obj_w_kamakura_shadow
- 0x80B51700: obj_w_kamakura_shadow_v
- 0x80B51840: obj_e_kamakura_shadow_model
- 0x80B518C0: obj_e_koinobori_shadow_tex
- 0x80B51AC0: obj_e_koinobori_shadow_v
- 0x80B51B40: obj_e_koinobori_shadowT_model
- 0x80B51BA0: obj_e_mikuji_shadow_tex
- 0x80B51DA0: obj_e_mikuji_shadow_v
- 0x80B51E20: obj_e_mikuji_shadow_model
- 0x80B51E80: obj_museum_shadow_tex
- 0x80B52080: obj_museum_shadow_v
- 0x80B52100: obj_museum_shadowT_model
- 0x80B52160: obj_s_myhome_i_shadow_tex
- 0x80B521E0: obj_s_myhome_i_shadow_v
- 0x80B52340: obj_s_myhome_i_shadowT_model
- 0x80B523A0: obj_house1_shadow
- 0x80B525A0: obj_house1_shadow_v
- 0x80B526E0: obj_house1_shadow_model
- 0x80B52760: obj_s_house2_shadow_tex_txt
- 0x80B52960: obj_s_house2_shadow_v
- 0x80B52B20: obj_s_house2_shadow_model
- 0x80B52BA0: obj_s_house3_shadow_tex_txt
- 0x80B52DA0: obj_s_house3_shadow_v
- 0x80B52F20: obj_s_house3_shadow_model
- 0x80B52FA0: obj_s_house4_shadow_tex_txt
- 0x80B531A0: obj_s_house4_shadow_v
- 0x80B53360: obj_s_house4_shadow_model
- 0x80B533E0: obj_s_house5_shadow_tex_txt
- 0x80B535E0: obj_s_house5_shadow_v
- 0x80B537A0: obj_s_house5_shadow_model
- 0x80B53820: obj_myhome1_shadowE
- 0x80B53A20: obj_myhome1_shadowE_v
- 0x80B53B40: obj_myhome1_shadowET_model
- 0x80B53BC0: obj_myhome1_shadowW
- 0x80B53DC0: obj_myhome1_shadowW_v
- 0x80B53EE0: obj_myhome1_shadowWT_model
- 0x80B53F60: obj_myhome2_shadowE
- 0x80B54160: obj_myhome2_shadowE_v
- 0x80B54280: obj_myhome2_shadowET_model
- 0x80B54300: obj_myhome2_shadowW
- 0x80B54500: obj_myhome2_shadowW_v
- 0x80B54620: obj_myhome2_shadowWT_model
- 0x80B546A0: obj_myhome3_shadowE
- 0x80B548A0: obj_myhome3_shadowE_v
- 0x80B549C0: obj_myhome3_shadowET_model
- 0x80B54A40: obj_myhome3_shadowW
- 0x80B54C40: obj_myhome3_shadowW_v
- 0x80B54D60: obj_myhome3_shadowWT_model
- 0x80B54DE0: obj_myhome4_shadowE
- 0x80B54FE0: obj_myhome4_shadowE_v
- 0x80B55100: obj_myhome4_shadowET_model
- 0x80B55180: obj_myhome4_shadowW
- 0x80B55380: obj_myhome4_shadowW_v
- 0x80B554A0: obj_myhome4_shadowWT_model
- 0x80B55520: obj_s_kouban_shadow_tex_txt
- 0x80B55720: obj_s_kouban_shadow_v
- 0x80B55860: obj_s_kouban_shadow_model
- 0x80B558E0: obj_s_yubinkyoku_shadow_tex_txt
- 0x80B55AE0: obj_s_yubinkyoku_shadow_v
- 0x80B55BC0: obj_s_yubinkyoku_shadow_2_model
- 0x80B55C20: obj_e_radio_shadow_tex
- 0x80B55E20: obj_e_radio_shadow_v
- 0x80B55EA0: obj_e_radio_shadowT_model
- 0x80B55F00: obj_buildsite_shadow_tex
- 0x80B56100: reserve_shadow_v
- 0x80B56140: reserve_shadow_model
- 0x80B561A0: obj_attention_shadow_tex
- 0x80B563A0: obj_attention_shadow_v
- 0x80B563E0: obj_attention_shadowT_model
- 0x80B56420: obj_car_shadow
- 0x80B56620: obj_car_shadow_v
- 0x80B56790: obj_car_shadowT_model
- 0x80B56800: obj_shop1_shadow
- 0x80B56A00: obj_shop1_shadow_v
- 0x80B56A80: obj_shop1_shadowT_model
- 0x80B56AE0: obj_shop2_shadow
- 0x80B56CE0: obj_shop2_shadow_v
- 0x80B56DA0: obj_shop2_shadowT_model
- 0x80B56E00: obj_shop3_shadow
- 0x80B57000: obj_shop3_shadow_v
- 0x80B57080: obj_shop3_shadowT_model
- 0x80B570E0: obj_shop4_shadow_txt
- 0x80B572E0: obj_shop4_shadow_v
- 0x80B573A0: obj_shop4_shadowT_model
- 0x80B57400: obj_shrine_shadow_tex_txt
- 0x80B57600: obj_shrine_shadow_v
- 0x80B57700: obj_shrine_shadow_model
- 0x80B57760: obj_station1_shadow_tex
- 0x80B57960: obj_station1_shadow_v
- 0x80B57B50: obj_station1_shadow_hiT_model
- 0x80B57BA8: obj_station1_shadow_lowT_model
- 0x80B57C00: obj_station2_shadow_tex_txt
- 0x80B57E00: obj_station2_shadow_v
- 0x80B58200: obj_station2_shadow_low_model
- 0x80B58258: obj_station2_shadow_hi_model
- 0x80B582E0: obj_station3_shadow_tex_txt
- 0x80B584E0: obj_station3_shadow_v
- 0x80B588C0: obj_station3_shadow_low_model
- 0x80B58918: obj_station3_shadow_hi_model
- 0x80B589A0: obj_s_tailor_shadow_tex
- 0x80B58A20: obj_s_tailor_shadow_v
- 0x80B58A80: obj_s_tailor_shadowT_model
- 0x80B58AE0: obj_s_tent_shadow
- 0x80B58B60: obj_s_tent_shadow_v
- 0x80B58D20: obj_s_tent_shadow_modelT
- 0x80B58DA0: obj_s_toudai_shadow_tex
- 0x80B58E20: obj_s_toudai_shadow_v
- 0x80B58EC0: obj_s_toudai_shadow_1_model
- 0x80B58F20: obj_e_tukimi_shadow_tex_txt
- 0x80B59120: obj_e_tukimi_l_shadow_v
- 0x80B591A0: obj_e_tukimi_l_shadow_model
- 0x80B59200: obj_e_tukimi_r_shadow_tex_txt
- 0x80B59400: obj_e_tukimi_r_shadow_v
- 0x80B59480: obj_e_tukimi_r_shadow_model
- 0x80B594E0: obj_e_turi_l_shadow_tex
- 0x80B596E0: obj_e_turi_l_shadow_v
- 0x80B59740: obj_e_turi_l_shadow_model
- 0x80B597A0: obj_e_turi_r_shadow_tex
- 0x80B599A0: obj_e_turi_r_shadow_v
- 0x80B59A00: obj_e_turi_r_shadow_model
- 0x80B59A60: obj_e_yatai_shadow_tex
- 0x80B59AA0: obj_e_yatai_shadow_l_v
- 0x80B59B10: obj_e_yatai_shadow_l_modelT
- 0x80B59B60: obj_e_yatai_shadow_r_v
- 0x80B59BD0: obj_e_yatai_shadow_r_modelT
- 0x80B59C20: obj_s_boat_t10_tex_txt
- 0x80B59CA0: obj_s_boat_t11_tex_txt
- 0x80B59D20: obj_s_boat_t9_tex_txt
- 0x80B59DE0: obj_s_boat_t6_tex_txt
- 0x80B59EE0: obj_s_boat_t7_tex_txt
- 0x80B59F60: obj_s_boat_t1_tex_txt
- 0x80B5A360: obj_s_boat_t3_tex_txt
- 0x80B5A760: obj_s_boat_t2_tex_txt
- 0x80B5A7E0: obj_s_boat_t5_tex_txt
- 0x80B5A860: obj_s_boat_t8_tex_txt
- 0x80B5A8E0: obj_s_boat_t4_tex_txt
- 0x80B5A960: obj_s_boat_water1_pic_i4
- 0x80B5AB60: obj_s_boat_water2_pic_i4
- 0x80B5AD60: obj_e_boat_v
- 0x80B5B720: obj_e_boat_boat1_model
- 0x80B5B8A8: obj_e_boat_water1_model
- 0x80B5B928: obj_e_boat_water2_model
- 0x80B5B9B8: obj_e_boat_water3_model
- 0x80B5BA60: obj_e_boat_oar1_model
- 0x80B5BB18: cKF_je_r_obj_e_boat_tbl
- 0x80B5BB6C: cKF_bs_r_obj_e_boat
- 0x80B5BB74: cKF_ckcb_r_obj_e_boat_tbl
- 0x80B5BB7C: cKF_kn_obj_e_boat_tbl
- 0x80B5BB84: cKF_c_obj_e_boat_tbl
- 0x80B5BBB0: cKF_ds_obj_e_boat_tbl
- 0x80B5BC34: cKF_ba_r_obj_e_boat
- 0x80B5BC60: obj_s_yamishop_pal
- 0x80B5BC80: obj_s_yamishop_t2_tex_txt
- 0x80B5C480: obj_s_yamishop_t1_tex_txt
- 0x80B5CC80: obj_s_yamishop_window_tex_txt
- 0x80B5CD00: obj_s_yamishop_v
- 0x80B5D120: obj_s_yamishop_window_model
- 0x80B5D170: obj_s_yamishop_t1_model
- 0x80B5D1F8: obj_s_yamishop_light_model
- 0x80B5D250: obj_s_yamishop_door1_model
- 0x80B5D2D0: obj_s_yamishop_door2_model
- 0x80B5D340: cKF_je_r_obj_s_yamishop_tbl
- 0x80B5D388: cKF_bs_r_obj_s_yamishop
- 0x80B5D390: cKF_ckcb_r_obj_s_yamishop_tbl
- 0x80B5D398: cKF_kn_obj_s_yamishop_tbl
- 0x80B5D39C: cKF_c_obj_s_yamishop_tbl
- 0x80B5D3C4: cKF_ds_obj_s_yamishop_tbl
- 0x80B5D3FC: cKF_ba_r_obj_s_yamishop
- 0x80B5D420: obj_w_yamishop_t2_tex_txt
- 0x80B5DC20: obj_w_yamishop_t1_tex_txt
- 0x80B5E420: obj_w_yamishop_window_tex_txt
- 0x80B5E4A0: obj_w_yamishop_v
- 0x80B5E8C0: obj_w_yamishop_window_model
- 0x80B5E910: obj_w_yamishop_t1_model
- 0x80B5E998: obj_w_yamishop_light_model
- 0x80B5E9F0: obj_w_yamishop_door1_model
- 0x80B5EA70: obj_w_yamishop_door2_model
- 0x80B5EAE0: cKF_je_r_obj_w_yamishop_tbl
- 0x80B5EB28: cKF_bs_r_obj_w_yamishop
- 0x80B5EB30: cKF_ckcb_r_obj_w_yamishop_tbl
- 0x80B5EB38: cKF_kn_obj_w_yamishop_tbl
- 0x80B5EB3C: cKF_c_obj_w_yamishop_tbl
- 0x80B5EB64: cKF_ds_obj_w_yamishop_tbl
- 0x80B5EB9C: cKF_ba_r_obj_w_yamishop
- 0x80B5EBC0: obj_s_bridgeA_pal
- 0x80B5EBE0: obj_s_bridgeA_t1_tex_txt
- 0x80B5F3E0: obj_s_bridgeA_t2_tex_txt
- 0x80B5FBE0: obj_s_bridgeA_v
- 0x80B60480: obj_s_bridgeA_base_model
- 0x80B60530: obj_s_bridgeA_step2_model
- 0x80B605D0: obj_s_bridgeA_step3_model
- 0x80B60670: obj_s_bridgeA_step4_model
- 0x80B60710: cKF_je_r_obj_s_bridgeA_tbl
- 0x80B60758: cKF_bs_r_obj_s_bridgeA
- 0x80B60760: cKF_ckcb_r_obj_s_bridgeA_tbl
- 0x80B60768: cKF_kn_obj_s_bridgeA_tbl
- 0x80B60770: cKF_c_obj_s_bridgeA_tbl
- 0x80B60794: cKF_ds_obj_s_bridgeA_tbl
- 0x80B60808: cKF_ba_r_obj_s_bridgeA
- 0x80B60820: obj_w_bridgeA_pal
- 0x80B60840: obj_w_bridgeA_t1_tex_txt
- 0x80B61040: obj_w_bridgeA_t2_tex_txt
- 0x80B61840: obj_w_bridgeA_v
- 0x80B620E0: obj_w_bridgeA_base_model
- 0x80B62190: obj_w_bridgeA_step2_model
- 0x80B62230: obj_w_bridgeA_step3_model
- 0x80B622D0: obj_w_bridgeA_step4_model
- 0x80B62370: cKF_je_r_obj_w_bridgeA_tbl
- 0x80B623B8: cKF_bs_r_obj_w_bridgeA
- 0x80B623C0: cKF_ckcb_r_obj_w_bridgeA_tbl
- 0x80B623C8: cKF_kn_obj_w_bridgeA_tbl
- 0x80B623D0: cKF_c_obj_w_bridgeA_tbl
- 0x80B623F4: cKF_ds_obj_w_bridgeA_tbl
- 0x80B62468: cKF_ba_r_obj_w_bridgeA
- 0x80B62480: obj_s_uranai_t2_tex_txt
- 0x80B62C80: obj_s_uranai_window_tex_txt
- 0x80B62D00: obj_s_uranai_t1_tex_txt
- 0x80B63500: obj_s_uranai_v
- 0x80B63870: obj_s_uranai_window_model
- 0x80B638B8: obj_s_uranai_t2_model
- 0x80B63910: obj_s_uranai_t1_model
- 0x80B63990: obj_s_uranai_light_model
- 0x80B639E0: obj_s_uranai_doorA_model
- 0x80B63A38: obj_s_uranai_doorB_model
- 0x80B63A90: cKF_je_r_obj_s_uranai_tbl
- 0x80B63AF0: cKF_bs_r_obj_s_uranai
- 0x80B63AF8: cKF_ckcb_r_obj_s_uranai_tbl
- 0x80B63B00: cKF_kn_obj_s_uranai_tbl
- 0x80B63B18: cKF_c_obj_s_uranai_tbl
- 0x80B63B38: cKF_ds_obj_s_uranai_tbl
- 0x80B63BC8: cKF_ba_r_obj_s_uranai
- 0x80B63BE0: obj_w_uranai_t2_tex_txt
- 0x80B643E0: obj_w_uranai_window_tex_txt
- 0x80B64460: obj_w_uranai_t1_tex_txt
- 0x80B64C60: obj_w_uranai_v
- 0x80B64FD0: obj_w_uranai_window_model
- 0x80B65018: obj_w_uranai_t2_model
- 0x80B65070: obj_w_uranai_t1_model
- 0x80B650F0: obj_w_uranai_light_model
- 0x80B65140: obj_w_uranai_doorA_model
- 0x80B65198: obj_w_uranai_doorB_model
- 0x80B651F0: cKF_je_r_obj_w_uranai_tbl
- 0x80B65250: cKF_bs_r_obj_w_uranai
- 0x80B65258: cKF_ckcb_r_obj_w_uranai_tbl
- 0x80B65260: cKF_kn_obj_w_uranai_tbl
- 0x80B65278: cKF_c_obj_w_uranai_tbl
- 0x80B65298: cKF_ds_obj_w_uranai_tbl
- 0x80B65328: cKF_ba_r_obj_w_uranai
- 0x80B65340: obj_e_count_t1_tex_txt
- 0x80B65B40: obj_e_count_t2_tex_txt
- 0x80B66340: obj_e_count_t3_tex_txt
- 0x80B66B40: obj_e_count01_spot_tex_sgi_i4
- 0x80B66BC0: obj_e_count01_v
- 0x80B66F70: obj_e_count_spot_model
- 0x80B66FD8: obj_e_count_lamp_model
- 0x80B67040: obj_e_count_front_model
- 0x80B670B8: obj_e_count_baloon_model
- 0x80B67130: obj_e_count_back_model
- 0x80B67188: obj_e_count_new_model
- 0x80B671D8: obj_e_count_down_model
- 0x80B67230: cKF_je_r_obj_e_count01_tbl
- 0x80B6729C: cKF_bs_r_obj_e_count01
- 0x80B672A4: cKF_ckcb_r_obj_e_count01_tbl
- 0x80B672B0: cKF_kn_obj_e_count01_tbl
- 0x80B672B4: cKF_c_obj_e_count01_tbl
- 0x80B672EC: cKF_ds_obj_e_count01_tbl
- 0x80B67390: cKF_ba_r_obj_e_count01
- 0x80B673C0: obj_e_count02_0_tex
- 0x80B675C0: obj_e_count02_1_tex
- 0x80B677C0: obj_e_count02_2_tex
- 0x80B679C0: obj_e_count02_3_tex
- 0x80B67BC0: obj_e_count02_4_tex
- 0x80B67DC0: obj_e_count02_5_tex
- 0x80B67FC0: obj_e_count02_6_tex
- 0x80B681C0: obj_e_count02_7_tex
- 0x80B683C0: obj_e_count02_8_tex
- 0x80B685C0: obj_e_count02_9_tex
- 0x80B687C0: obj_e_count02_cl_v
- 0x80B688C0: obj_e_c2_ani_cl01_sita_model
- 0x80B68928: obj_e_c2_ani_ci01_mae_model
- 0x80B68990: cKF_je_r_obj_e_count02_cl_tbl
- 0x80B689B4: cKF_bs_r_obj_e_count02_cl
- 0x80B689BC: cKF_ckcb_r_obj_e_count02_cl_tbl
- 0x80B689C0: cKF_kn_obj_e_count02_cl_tbl
- 0x80B689C4: cKF_c_obj_e_count02_cl_tbl
- 0x80B689DC: cKF_ds_obj_e_count02_cl_tbl
- 0x80B689FC: cKF_ba_r_obj_e_count02_cl
- 0x80B68A20: obj_s_douzou_dai_tex_txt
- 0x80B68B20: obj_s_douzou_name_tex_txt
- 0x80B68BA0: obj_s_douzou_b1_tex_pic_i4
- 0x80B68CA0: obj_s_douzou_b2_tex_pic_i4
- 0x80B68DA0: obj_s_douzou_b3_tex_pic_i4
- 0x80B68EA0: obj_s_douzou_b4_tex_pic_i4
- 0x80B68FA0: obj_s_douzou_b5_tex_pic_i4
- 0x80B690A0: obj_s_douzou_b6_tex_pic_i4
- 0x80B691A0: obj_s_douzou_b7_tex_pic_i4
- 0x80B692A0: obj_s_douzou_b8_tex_pic_i4
- 0x80B693A0: obj_s_douzou_bm1_tex_pic_i4
- 0x80B69420: obj_s_douzou_bm2_tex_pic_i4
- 0x80B694A0: obj_s_douzou_g1_tex_pic_i4
- 0x80B695A0: obj_s_douzou_g2_tex_pic_i4
- 0x80B696A0: obj_s_douzou_g3_tex_pic_i4
- 0x80B697A0: obj_s_douzou_g4_tex_pic_i4
- 0x80B698A0: obj_s_douzou_g5_tex_pic_i4
- 0x80B699A0: obj_s_douzou_g6_tex_pic_i4
- 0x80B69AA0: obj_s_douzou_g8_tex_pic_i4
- 0x80B69BA0: obj_s_douzou_gm1_tex_pic_i4
- 0x80B69C20: obj_s_douzou_gm2_tex_pic_i4
- 0x80B69CA0: obj_s_douzou_metal_tex_pic_i4
- 0x80B69CE0: obj_s_douzou_v
- 0x80B6AE90: obj_s_douzou_name_model
- 0x80B6AED8: obj_s_douzou_dai_model
- 0x80B6AF40: obj_s_douzou_girl_mouth_model
- 0x80B6AF90: obj_s_douzou_girl_face_model
- 0x80B6AFE0: obj_s_douzou_girl_model
- 0x80B6B118: obj_s_douzou_boy_mouth_model
- 0x80B6B160: obj_s_douzou_boy_face_model
- 0x80B6B1B0: obj_s_douzou_boy_model
- 0x80B6B300: cKF_ckcb_r_obj_s_douzou_tbl
- 0x80B6B30C: cKF_c_obj_s_douzou_tbl
- 0x80B6B348: cKF_ba_r_obj_s_douzou
- 0x80B6B35C: cKF_je_r_obj_s_douzou_tbl
- 0x80B6B3C8: cKF_bs_r_obj_s_douzou
- 0x80B6B3E0: obj_w_douzou_dai_tex_txt
- 0x80B6B4E0: obj_w_douzou_name_tex_txt
- 0x80B6B560: obj_w_douzou_b1_tex_pic_i4
- 0x80B6B660: obj_w_douzou_b2_tex_pic_i4
- 0x80B6B760: obj_w_douzou_b3_tex_pic_i4
- 0x80B6B860: obj_w_douzou_b4_tex_pic_i4
- 0x80B6B960: obj_w_douzou_b5_tex_pic_i4
- 0x80B6BA60: obj_w_douzou_b6_tex_pic_i4
- 0x80B6BB60: obj_w_douzou_b7_tex_pic_i4
- 0x80B6BC60: obj_w_douzou_b8_tex_pic_i4
- 0x80B6BD60: obj_w_douzou_bm1_tex_pic_i4
- 0x80B6BDE0: obj_w_douzou_bm2_tex_pic_i4
- 0x80B6BE60: obj_w_douzou_g1_tex_pic_i4
- 0x80B6BF60: obj_w_douzou_g2_tex_pic_i4
- 0x80B6C060: obj_w_douzou_g3_tex_pic_i4
- 0x80B6C160: obj_w_douzou_g4_tex_pic_i4
- 0x80B6C260: obj_w_douzou_g5_tex_pic_i4
- 0x80B6C360: obj_w_douzou_g6_tex_pic_i4
- 0x80B6C460: obj_w_douzou_g8_tex_pic_i4
- 0x80B6C560: obj_w_douzou_gm1_tex_pic_i4
- 0x80B6C5E0: obj_w_douzou_gm2_tex_pic_i4
- 0x80B6C660: obj_w_douzou_metal_tex_pic_i4
- 0x80B6C6A0: obj_w_douzou_v
- 0x80B6D850: obj_w_douzou_name_model
- 0x80B6D898: obj_w_douzou_dai_model
- 0x80B6D900: obj_w_douzou_girl_mouth_model
- 0x80B6D958: obj_w_douzou_girl_face_model
- 0x80B6D9A8: obj_w_douzou_girl_model
- 0x80B6DAE0: obj_w_douzou_boy_mouth_model
- 0x80B6DB28: obj_w_douzou_boy_face_model
- 0x80B6DB78: obj_w_douzou_boy_model
- 0x80B6DCC8: cKF_ckcb_r_obj_w_douzou_tbl
- 0x80B6DCD4: cKF_c_obj_w_douzou_tbl
- 0x80B6DD10: cKF_ba_r_obj_w_douzou
- 0x80B6DD24: cKF_je_r_obj_w_douzou_tbl
- 0x80B6DD90: cKF_bs_r_obj_w_douzou
- 0x80B6DDA0: obj_s_dump_t1_tex
- 0x80B6E5A0: obj_s_dump_t2_tex
- 0x80B6EDA0: obj_s_dump_v
- 0x80B6F1E0: obj_s_dump_t1T_model
- 0x80B6F270: obj_s_dump_t2T_model
- 0x80B6F2E0: dump_s_DL_model
- 0x80B6F300: obj_w_dump_t1_tex
- 0x80B6FB00: obj_w_dump_t2_tex
- 0x80B70300: obj_w_dump_v
- 0x80B70740: obj_w_dump_t1T_model
- 0x80B707D0: obj_w_dump_t2T_model
- 0x80B70840: dump_w_DL_model
- 0x80B712E0: obj_fallS_v
- 0x80B71830: obj_fallS_grpAT_model
- 0x80B71890: obj_fallS_grpBT_model
- 0x80B718F8: obj_fallS_grpDT_model
- 0x80B71950: obj_fallS_grpCT_model
- 0x80B719B8: obj_fallS_rainbowT_model
- 0x80B71A50: obj_fallS_model
- 0x80B71A90: obj_fallS_evw_anime_1
- 0x80B71A98: obj_fallS_evw_anime_2
- 0x80B71AA0: obj_fallS_evw_anime_3
- 0x80B71AA8: obj_fallS_evw_anime_4
- 0x80B71AB0: obj_fallS_evw_anime
- 0x80B72560: obj_fallSE_v
- 0x80B72AB0: obj_fallSE_grpAT_model
- 0x80B72B10: obj_fallSE_grpBT_model
- 0x80B72B78: obj_fallSE_grpDT_model
- 0x80B72BD0: obj_fallSE_grpCT_model
- 0x80B72C38: obj_fallSE_rainbowT_model
- 0x80B72CD0: obj_fallSESW_model
- 0x80B72D10: obj_fallSE_evw_anime_1
- 0x80B72D18: obj_fallSE_evw_anime_2
- 0x80B72D20: obj_fallSE_evw_anime_3
- 0x80B72D28: obj_fallSE_evw_anime_4
- 0x80B72D30: obj_fallSE_evw_anime
- 0x80B72D60: obj_s_frag_pal
- 0x80B72D80: obj_s_frag_t3_tex_txt
- 0x80B72E80: obj_s_frag_t1_tex_txt
- 0x80B73080: obj_s_frag_t2_tex_txt
- 0x80B73180: obj_s_frag_v
- 0x80B73920: obj_s_frag_pole_model
- 0x80B73990: obj_s_frag_base_model
- 0x80B739E8: obj_s_frag_wire_model
- 0x80B73A70: obj_s_frag_fragA_model
- 0x80B73AE0: obj_s_frag_fragB_model
- 0x80B73B88: obj_s_frag_fragC_model
- 0x80B73C48: cKF_je_r_obj_s_frag_tbl
- 0x80B73CA8: cKF_bs_r_obj_s_frag
- 0x80B73CB0: cKF_ckcb_r_obj_s_frag_tbl
- 0x80B73CB8: cKF_kn_obj_s_frag_tbl
- 0x80B73CC0: cKF_c_obj_s_frag_tbl
- 0x80B73CF0: cKF_ds_obj_s_frag_tbl
- 0x80B73D58: cKF_ba_r_obj_s_frag
- 0x80B73D80: obj_w_frag_pal
- 0x80B73DA0: obj_w_frag_t3_tex_txt
- 0x80B73EA0: obj_w_frag_t1_tex_txt
- 0x80B740A0: obj_w_frag_t2_tex_txt
- 0x80B741A0: obj_w_frag_v
- 0x80B74940: obj_w_frag_pole_model
- 0x80B749B0: obj_w_frag_base_model
- 0x80B74A08: obj_w_frag_wire_model
- 0x80B74A90: obj_w_frag_fragA_model
- 0x80B74B00: obj_w_frag_fragB_model
- 0x80B74BA8: obj_w_frag_fragC_model
- 0x80B74C68: cKF_je_r_obj_w_frag_tbl
- 0x80B74CC8: cKF_bs_r_obj_w_frag
- 0x80B74CD0: cKF_ckcb_r_obj_w_frag_tbl
- 0x80B74CD8: cKF_kn_obj_w_frag_tbl
- 0x80B74CE0: cKF_c_obj_w_frag_tbl
- 0x80B74D10: cKF_ds_obj_w_frag_tbl
- 0x80B74D78: cKF_ba_r_obj_w_frag
- 0x80B74DA0: obj_e_ghog_m_pal
- 0x80B74DC0: obj_e_ghog_n_pal
- 0x80B74DE0: obj_e_ghog_m1
- 0x80B74E20: obj_e_ghog_m2
- 0x80B74E60: obj_e_ghog_m3
- 0x80B74F60: obj_e_ghog_m4
- 0x80B74FE0: obj_e_ghog_m5
- 0x80B75060: obj_e_ghog_n2
- 0x80B750E0: obj_e_ghog_n1
- 0x80B752E0: obj_e_ghog_v
- 0x80B75730: obj_e_ghog_modelT
- 0x80B75840: obj_e_ghog_model
- 0x80B758E0: obj_e_hanami_t1_pal
- 0x80B75900: obj_e_hanami_t2_pal
- 0x80B75920: obj_e_hanami_t3_pal
- 0x80B75940: obj_e_hanami_t5_pal
- 0x80B75960: obj_e_hanami_t1
- 0x80B76160: obj_e_hanami_t2
- 0x80B76560: obj_e_hanami_t3
- 0x80B76760: obj_e_hanami_t4
- 0x80B767A0: obj_e_hanami_t5
- 0x80B76820: obj_e_hanami_t6
- 0x80B76840: obj_e_hanami_a_v
- 0x80B77350: obj_e_hanami_a_modelT
- 0x80B77358: obj_e_hanami_a_model
- 0x80B77588: obj_e_hanami_b_v
- 0x80B78168: obj_e_hanami_b_modelT
- 0x80B78170: obj_e_hanami_b_model
- 0x80B783C0: obj_s_house_i_1_tex_txt
- 0x80B78BC0: obj_s_house_i_window_tex_txt
- 0x80B78CC0: obj_s_house_i_2_tex_txt
- 0x80B794C0: obj_s_house_i_3_us_tex_txt
- 0x80B798C0: obj_s_house_i_v
- 0x80B7A300: obj_s_house_i_window_model
- 0x80B7A348: obj_s_house_i_light_model
- 0x80B7A398: obj_s_house_i_3_model
- 0x80B7A3F8: obj_s_house_i_2_model
- 0x80B7A458: obj_s_house_i_1_model
- 0x80B7A558: obj_s_house_i_door_model
- 0x80B7A5B0: cKF_je_r_obj_s_house_i_tbl
- 0x80B7A604: cKF_bs_r_obj_s_house_i
- 0x80B7A60C: cKF_ckcb_r_obj_s_house_i_tbl
- 0x80B7A614: cKF_kn_obj_s_house_i_tbl
- 0x80B7A618: cKF_c_obj_s_house_i_tbl
- 0x80B7A648: cKF_ds_obj_s_house_i_tbl
- 0x80B7A68C: cKF_ba_r_obj_s_house_i
- 0x80B7A6A0: cKF_ckcb_r_obj_s_house_i_out_tbl
- 0x80B7A6A8: cKF_kn_obj_s_house_i_out_tbl
- 0x80B7A6AC: cKF_c_obj_s_house_i_out_tbl
- 0x80B7A6DC: cKF_ds_obj_s_house_i_out_tbl
- 0x80B7A72C: cKF_ba_r_obj_s_house_i_out
- 0x80B7A740: obj_e_hfes01_t1_pal
- 0x80B7A760: obj_e_hfes01_t4_pal
- 0x80B7A780: obj_e_hfes01_t2_pal
- 0x80B7A7A0: obj_e_hfes01_t3_pal
- 0x80B7A7C0: obj_e_hfes01_t1
- 0x80B7AFC0: obj_e_hfes01_t6
- 0x80B7B040: obj_e_hfes01_t2
- 0x80B7B440: obj_e_hfes01_t7
- 0x80B7B460: obj_e_hfes01_t3
- 0x80B7B860: obj_e_hfes01_t4
- 0x80B7B8A0: obj_e_hfes_a_v
- 0x80B7C3E0: obj_e_hfes_a_modelT
- 0x80B7C3E8: obj_e_hfes_a_model
- 0x80B7C608: obj_e_hfes_b_v
- 0x80B7D0A8: obj_e_hfes_b_modelT
- 0x80B7D0B0: obj_e_hfes_b_model
- 0x80B7D2E0: obj_e_hfes01_t5_pal
- 0x80B7D300: obj_e_hfes01_t5
- 0x80B7D700: obj_e_hfes_c_v
- 0x80B7EB40: obj_e_hfes_c_modelT
- 0x80B7EB48: obj_e_hfes_c_model
- 0x80B7EE80: obj_e_kago_r_t1_tex
- 0x80B7F680: obj_e_kago_r_t2_tex
- 0x80B7FE80: obj_e_kago_r_v
- 0x80B80110: obj_e_kago_r_t1T_model
- 0x80B80178: obj_e_kago_r_t2T_model
- 0x80B801F8: kago_r_DL_model
- 0x80B80220: zobj_e_kago_r_pal
- 0x80B80240: obj_e_kago_r_ball_t1_tex
- 0x80B80A40: obj_e_kago_r_ball_v
- 0x80B80CB0: kago_r_ball_DL_model
- 0x80B80D40: obj_e_kago_w_t1_tex
- 0x80B81540: obj_e_kago_w_t2_tex
- 0x80B81D40: obj_e_kago_w_v
- 0x80B81FD0: obj_e_kago_w_t1T_model
- 0x80B82038: obj_e_kago_w_t2T_model
- 0x80B820B8: kago_w_DL_model
- 0x80B820E0: zobj_e_kago_w_pal
- 0x80B82100: obj_e_kago_w_ball_t1_tex
- 0x80B82900: obj_e_kago_w_ball_v
- 0x80B82B40: kago_w_ball_DL_model
- 0x80B82BE0: obj_w_kamakura_t1_tex
- 0x80B833E0: obj_w_kamakura_t2_tex
- 0x80B83BE0: obj_w_kamakura_t3_tex
- 0x80B843E0: obj_w_kamakura_light02_tex
- 0x80B84460: obj_w_kamakura_v
- 0x80B849A0: obj_w_kamakura_light_model
- 0x80B849D8: obj_w_kamakura_t2_on_model
- 0x80B84A90: obj_w_kamakura_window_model
- 0x80B84AD8: obj_w_kamakura_t1_onT_model
- 0x80B84B38: obj_w_kamakura_t3_onT_model
- 0x80B84BA0: kamakura_DL_model
- 0x80B84BE0: obj_e_koinobori_t1_tex_txt
- 0x80B853E0: obj_e_koinobori_t3_tex_txt
- 0x80B85BE0: obj_e_koinobori_v
- 0x80B868F0: obj_e_koinobori_pole_1_model
- 0x80B86940: obj_e_koinobori_rope_model
- 0x80B86998: obj_e_koinobori_magoiA_model
- 0x80B869E0: obj_e_koinobori_magoiB_model
- 0x80B86A50: obj_e_koinobori_magoiC_model
- 0x80B86AD8: obj_e_koinobori_higoiA_model
- 0x80B86B40: obj_e_koinobori_higoiB_model
- 0x80B86BB8: obj_e_koinobori_higoiC_model
- 0x80B86C40: obj_e_koinobori_fukiA_model
- 0x80B86C88: obj_e_koinobori_fukiB_model
- 0x80B86CF8: obj_e_koinobori_fukiC_model
- 0x80B86D88: obj_e_koinobori_yaguruma_model
- 0x80B86DC8: cKF_je_r_obj_e_koinobori_tbl
- 0x80B86E94: cKF_bs_r_obj_e_koinobori
- 0x80B86E9C: cKF_ckcb_r_obj_e_koinobori_tbl
- 0x80B86EB0: cKF_kn_obj_e_koinobori_tbl
- 0x80B86F00: cKF_c_obj_e_koinobori_tbl
- 0x80B86F20: cKF_ds_obj_e_koinobori_tbl
- 0x80B8733C: cKF_ba_r_obj_e_koinobori
- 0x80B87360: obj_lotus_flower_tex_txt
- 0x80B87560: obj_lotus_leaf_tex_txt
- 0x80B87960: obj_s_lotus_v
- 0x80B88320: obj_s_lotus_flower1_model
- 0x80B883C0: obj_s_lotus_leafH_model
- 0x80B88408: obj_s_lotus_leafG_model
- 0x80B88450: obj_s_lotus_leafF_model
- 0x80B88498: obj_s_lotus_leafE_model
- 0x80B884E0: obj_s_lotus_leafD_model
- 0x80B88528: obj_s_lotus_leafC_model
- 0x80B88570: obj_s_lotus_leafB_model
- 0x80B885B8: obj_s_lotus_leafA_model
- 0x80B88600: cKF_je_r_obj_s_lotus_tbl
- 0x80B886E4: cKF_bs_r_obj_s_lotus
- 0x80B886EC: cKF_ckcb_r_obj_s_lotus_tbl
- 0x80B88700: cKF_kn_obj_s_lotus_tbl
- 0x80B8872C: cKF_c_obj_s_lotus_tbl
- 0x80B8877C: cKF_ds_obj_s_lotus_tbl
- 0x80B888E0: cKF_ba_r_obj_s_lotus
- 0x80B88900: obj_e_mikanbox_tex
- 0x80B88EC0: obj_e_mikanbox_model
- 0x80B88F20: copyright_tex
- 0x80B89720: obj_e_mikanbox_copyrightT_model
- 0x80B89760: end_notice2_tex
- 0x80B89F60: end_notice1_tex
- 0x80B8A760: end_notice3_tex
- 0x80B8AF60: end_notice_v
- 0x80B8B020: obj_e_mikanbox_copyrightT_model2
- 0x80B8B0A0: obj_e_mikuji_2_pal
- 0x80B8B0C0: obj_e_mikuji_1_pal
- 0x80B8B0E0: obj_e_mikuji_2
- 0x80B8B2E0: obj_e_mikuji_1
- 0x80B8BAE0: obj_e_mikuji_v
- 0x80B8BE10: obj_e_mikuji_model
- 0x80B8BEE0: obj_summer_museum_pal
- 0x80B8BF00: obj_s_museum_t2_tex
- 0x80B8C700: obj_s_museum_t3_tex
- 0x80B8CF00: obj_museum_window_tex
- 0x80B8CF80: obj_s_museum_t1_tex
- 0x80B8D780: obj_s_museum_v
- 0x80B8E050: obj_s_museum_t2_model
- 0x80B8E0C8: obj_s_museum_t1_model
- 0x80B8E188: obj_s_museum_lightT_model
- 0x80B8E1C0: obj_s_museum_t3T_model
- 0x80B8E248: obj_s_museum_windowT_model
- 0x80B8E2A0: obj_winter_museum_pal
- 0x80B8E2C0: obj_w_museum_t2_tex
- 0x80B8EAC0: obj_w_museum_t3_tex
- 0x80B8F2C0: obj_w_museum_window_tex
- 0x80B8F340: obj_w_museum_t1_tex
- 0x80B8FB40: obj_w_museum_v
- 0x80B90410: obj_w_museum_t2_model
- 0x80B90488: obj_w_museum_t1_model
- 0x80B90548: obj_w_museum_lightT_model
- 0x80B90580: obj_w_museum_t3T_model
- 0x80B90608: obj_w_museum_windowT_model
- 0x80B90660: obj_s_myhome_i_1_tex_txt
- 0x80B90E60: obj_s_myhome_i_2_tex_txt
- 0x80B91660: obj_s_myhome_i_3_tex_txt
- 0x80B91E60: obj_s_myhome_i_window_tex_txt
- 0x80B91EE0: obj_s_myhome_i_v
- 0x80B92760: obj_s_myhome_i_window_model
- 0x80B927A8: obj_s_myhome_i_light_model
- 0x80B927F8: obj_s_myhome_i_3_model
- 0x80B92858: obj_s_myhome_i_2_model
- 0x80B928C0: obj_s_myhome_i_1_model
- 0x80B92998: obj_s_myhome_i_door_model
- 0x80B929F0: cKF_je_r_obj_s_myhome_i_tbl
- 0x80B92A44: cKF_bs_r_obj_s_myhome_i
- 0x80B92A4C: cKF_ckcb_r_obj_s_myhome_i_tbl
- 0x80B92A54: cKF_kn_obj_s_myhome_i_tbl
- 0x80B92A58: cKF_c_obj_s_myhome_i_tbl
- 0x80B92A88: cKF_ds_obj_s_myhome_i_tbl
- 0x80B92ACC: cKF_ba_r_obj_s_myhome_i
- 0x80B92AE0: cKF_ckcb_r_obj_s_myhome_i_out_tbl
- 0x80B92AE8: cKF_kn_obj_s_myhome_i_out_tbl
- 0x80B92AEC: cKF_c_obj_s_myhome_i_out_tbl
- 0x80B92B1C: cKF_ds_obj_s_myhome_i_out_tbl
- 0x80B92B6C: cKF_ba_r_obj_s_myhome_i_out
- 0x80B92B80: obj_s_house1_t1_tex_txt
- 0x80B93380: obj_s_house1_window_txt
- 0x80B93400: obj_s_house1_t3_tex_txt
- 0x80B93C00: obj_s_house1_t2_tex_txt
- 0x80B94400: obj_s_house1_t4_tex_txt
- 0x80B94600: obj_s_house1_v
- 0x80B94D30: obj_s_house1_windowL_model
- 0x80B94D70: obj_s_house1_windowR_model
- 0x80B94DB0: obj_s_house1_light_model
- 0x80B94E10: obj_s_house1_t4_model
- 0x80B94E68: obj_s_house1_t3_model
- 0x80B94EC8: obj_s_house1_t2_model
- 0x80B94F50: obj_s_house1_t1_model
- 0x80B94FD8: obj_s_house1_door_model
- 0x80B95030: cKF_je_r_obj_s_house1_tbl
- 0x80B95090: cKF_bs_r_obj_s_house1
- 0x80B95098: cKF_ckcb_r_obj_s_house1_tbl
- 0x80B950A0: cKF_kn_obj_s_house1_tbl
- 0x80B950A4: cKF_c_obj_s_house1_tbl
- 0x80B950D8: cKF_ds_obj_s_house1_tbl
- 0x80B9511C: cKF_ba_r_obj_s_house1
- 0x80B95130: cKF_ckcb_r_obj_s_house1_out_tbl
- 0x80B95138: cKF_kn_obj_s_house1_out_tbl
- 0x80B9513C: cKF_c_obj_s_house1_out_tbl
- 0x80B95170: cKF_ds_obj_s_house1_out_tbl
- 0x80B951C0: cKF_ba_r_obj_s_house1_out
- 0x80B951E0: obj_s_house2_t3_tex_txt
- 0x80B959E0: obj_s_house2_window_tex_txt
- 0x80B95A60: obj_s_house2_t2_tex_txt
- 0x80B96260: obj_s_house2_t1_tex_txt
- 0x80B96A60: obj_s_house2_name_tex_txt
- 0x80B96C60: obj_s_house2_v
- 0x80B97330: obj_s_house2_window_model
- 0x80B97380: obj_s_house2_light_model
- 0x80B973D8: obj_s_house2_t3_model
- 0x80B97468: obj_s_house2_t2_model
- 0x80B974E0: obj_s_house2_t1_model
- 0x80B97550: obj_s_house2_name_model
- 0x80B975A8: obj_s_house2_door_model
- 0x80B97600: cKF_je_r_obj_s_house2_tbl
- 0x80B97660: cKF_bs_r_obj_s_house2
- 0x80B97668: cKF_ckcb_r_obj_s_house2_tbl
- 0x80B97670: cKF_kn_obj_s_house2_tbl
- 0x80B97674: cKF_c_obj_s_house2_tbl
- 0x80B976A8: cKF_ds_obj_s_house2_tbl
- 0x80B976EC: cKF_ba_r_obj_s_house2
- 0x80B97700: cKF_ckcb_r_obj_s_house2_out_tbl
- 0x80B97708: cKF_kn_obj_s_house2_out_tbl
- 0x80B9770C: cKF_c_obj_s_house2_out_tbl
- 0x80B97740: cKF_ds_obj_s_house2_out_tbl
- 0x80B97790: cKF_ba_r_obj_s_house2_out
- 0x80B977C0: obj_s_house3_t3_tex_txt
- 0x80B97FC0: obj_s_house3_t1_tex_txt
- 0x80B987C0: obj_s_house3_t2_tex_txt
- 0x80B98FC0: obj_s_house3_window_tex_txt
- 0x80B99040: obj_s_house3_name_tex_txt
- 0x80B99240: obj_s_house3_v
- 0x80B99880: obj_s_house3_windowL_model
- 0x80B998C8: obj_s_house3_windowR_model
- 0x80B99910: obj_s_house3_light_model
- 0x80B99968: obj_s_house3_t3_model
- 0x80B99A00: obj_s_house3_t2_model
- 0x80B99A78: obj_s_house3_t1_model
- 0x80B99AE0: obj_s_house3_name_model
- 0x80B99B38: obj_s_house3_door_model
- 0x80B99B90: cKF_je_r_obj_s_house3_tbl
- 0x80B99BF0: cKF_bs_r_obj_s_house3
- 0x80B99BF8: cKF_ckcb_r_obj_s_house3_tbl
- 0x80B99C00: cKF_kn_obj_s_house3_tbl
- 0x80B99C04: cKF_c_obj_s_house3_tbl
- 0x80B99C38: cKF_ds_obj_s_house3_tbl
- 0x80B99C7C: cKF_ba_r_obj_s_house3
- 0x80B99C90: cKF_ckcb_r_obj_s_house3_out_tbl
- 0x80B99C98: cKF_kn_obj_s_house3_out_tbl
- 0x80B99C9C: cKF_c_obj_s_house3_out_tbl
- 0x80B99CD0: cKF_ds_obj_s_house3_out_tbl
- 0x80B99D20: cKF_ba_r_obj_s_house3_out
- 0x80B99D40: obj_s_house4_t3_tex_txt
- 0x80B9A540: obj_s_house4_t1_tex_txt
- 0x80B9AD40: obj_s_house4_t2_tex_txt
- 0x80B9B540: obj_s_house4_window_tex_txt
- 0x80B9B5C0: obj_s_house4_name_tex_txt
- 0x80B9B7C0: obj_s_house4_v
- 0x80B9BD50: obj_s_house4_windowL_model
- 0x80B9BD98: obj_s_house4_windowR_model
- 0x80B9BDE0: obj_s_house4_light_model
- 0x80B9BE40: obj_s_house4_t3_model
- 0x80B9BED0: obj_s_house4_t2_model
- 0x80B9BF48: obj_s_house4_t1_model
- 0x80B9BFB0: obj_s_house4_name_model
- 0x80B9C008: obj_s_house4_door_model
- 0x80B9C060: cKF_je_r_obj_s_house4_tbl
- 0x80B9C0C0: cKF_bs_r_obj_s_house4
- 0x80B9C0C8: cKF_ckcb_r_obj_s_house4_tbl
- 0x80B9C0D0: cKF_kn_obj_s_house4_tbl
- 0x80B9C0D4: cKF_c_obj_s_house4_tbl
- 0x80B9C108: cKF_ds_obj_s_house4_tbl
- 0x80B9C14C: cKF_ba_r_obj_s_house4
- 0x80B9C160: cKF_ckcb_r_obj_s_house4_out_tbl
- 0x80B9C168: cKF_kn_obj_s_house4_out_tbl
- 0x80B9C16C: cKF_c_obj_s_house4_out_tbl
- 0x80B9C1A0: cKF_ds_obj_s_house4_out_tbl
- 0x80B9C1F0: cKF_ba_r_obj_s_house4_out
- 0x80B9C220: obj_s_house5_t3_tex_txt
- 0x80B9CA20: obj_s_house5_t1_tex_txt
- 0x80B9D220: obj_s_house5_window_tex_txt
- 0x80B9D2A0: obj_s_house5_t2_tex_txt
- 0x80B9DAA0: obj_s_house5_name_tex_txt
- 0x80B9DCA0: obj_s_house5_v
- 0x80B9E4D0: obj_s_house5_windowL_model
- 0x80B9E518: obj_s_house5_windowR_model
- 0x80B9E560: obj_s_house5_light_model
- 0x80B9E5C0: obj_s_house5_t3_model
- 0x80B9E640: obj_s_house5_t2_model
- 0x80B9E6E0: obj_s_house5_t1_model
- 0x80B9E748: obj_s_house5_name_model
- 0x80B9E7A0: obj_s_house5_door_model
- 0x80B9E7F8: cKF_je_r_obj_s_house5_tbl
- 0x80B9E858: cKF_bs_r_obj_s_house5
- 0x80B9E860: cKF_ckcb_r_obj_s_house5_tbl
- 0x80B9E868: cKF_kn_obj_s_house5_tbl
- 0x80B9E86C: cKF_c_obj_s_house5_tbl
- 0x80B9E8A0: cKF_ds_obj_s_house5_tbl
- 0x80B9E8E4: cKF_ba_r_obj_s_house5
- 0x80B9E8F8: cKF_ckcb_r_obj_s_house5_out_tbl
- 0x80B9E900: cKF_kn_obj_s_house5_out_tbl
- 0x80B9E904: cKF_c_obj_s_house5_out_tbl
- 0x80B9E938: cKF_ds_obj_s_house5_out_tbl
- 0x80B9E988: cKF_ba_r_obj_s_house5_out
- 0x80B9E9A0: obj_w_house1_t1_tex_txt
- 0x80B9F1A0: obj_w_house1_window_txt
- 0x80B9F220: obj_w_house1_t3_tex_txt
- 0x80B9FA20: obj_w_house1_t2_tex_txt
- 0x80BA0220: obj_w_house1_t4_tex_txt
- 0x80BA0420: obj_w_house1_v
- 0x80BA0B50: obj_w_house1_windowL_model
- 0x80BA0B90: obj_w_house1_windowR_model
- 0x80BA0BD0: obj_w_house1_light_model
- 0x80BA0C30: obj_w_house1_t4_model
- 0x80BA0C88: obj_w_house1_t3_model
- 0x80BA0CE8: obj_w_house1_t2_model
- 0x80BA0D70: obj_w_house1_t1_model
- 0x80BA0DF8: obj_w_house1_door_model
- 0x80BA0E50: cKF_je_r_obj_w_house1_tbl
- 0x80BA0EB0: cKF_bs_r_obj_w_house1
- 0x80BA0EB8: cKF_ckcb_r_obj_w_house1_tbl
- 0x80BA0EC0: cKF_kn_obj_w_house1_tbl
- 0x80BA0EC4: cKF_c_obj_w_house1_tbl
- 0x80BA0EF8: cKF_ds_obj_w_house1_tbl
- 0x80BA0F3C: cKF_ba_r_obj_w_house1
- 0x80BA0F50: cKF_ckcb_r_obj_w_house1_out_tbl
- 0x80BA0F58: cKF_kn_obj_w_house1_out_tbl
- 0x80BA0F5C: cKF_c_obj_w_house1_out_tbl
- 0x80BA0F90: cKF_ds_obj_w_house1_out_tbl
- 0x80BA0FE0: cKF_ba_r_obj_w_house1_out
- 0x80BA1000: obj_w_house2_t3_tex_txt
- 0x80BA1800: obj_w_house2_window_tex_txt
- 0x80BA1880: obj_w_house2_t2_tex_txt
- 0x80BA2080: obj_w_house2_t1_tex_txt
- 0x80BA2880: obj_w_house2_name_tex_txt
- 0x80BA2A80: obj_w_house2_v
- 0x80BA3150: obj_w_house2_window_model
- 0x80BA31A8: obj_w_house2_light_model
- 0x80BA3200: obj_w_house2_t3_model
- 0x80BA3290: obj_w_house2_t2_model
- 0x80BA3308: obj_w_house2_t1_model
- 0x80BA3378: obj_w_house2_name_model
- 0x80BA33D0: obj_w_house2_door_model
- 0x80BA3428: cKF_je_r_obj_w_house2_tbl
- 0x80BA3488: cKF_bs_r_obj_w_house2
- 0x80BA3490: cKF_ckcb_r_obj_w_house2_tbl
- 0x80BA3498: cKF_kn_obj_w_house2_tbl
- 0x80BA349C: cKF_c_obj_w_house2_tbl
- 0x80BA34D0: cKF_ds_obj_w_house2_tbl
- 0x80BA3514: cKF_ba_r_obj_w_house2
- 0x80BA3528: cKF_ckcb_r_obj_w_house2_out_tbl
- 0x80BA3530: cKF_kn_obj_w_house2_out_tbl
- 0x80BA3534: cKF_c_obj_w_house2_out_tbl
- 0x80BA3568: cKF_ds_obj_w_house2_out_tbl
- 0x80BA35B8: cKF_ba_r_obj_w_house2_out
- 0x80BA3600: obj_w_house3_t3_tex_txt
- 0x80BA3E00: obj_w_house3_t1_tex_txt
- 0x80BA4600: obj_w_house3_t2_tex_txt
- 0x80BA4E00: obj_w_house3_window_tex_txt
- 0x80BA4E80: obj_w_house3_name_tex_txt
- 0x80BA5080: obj_w_house3_v
- 0x80BA56C0: obj_w_house3_windowL_model
- 0x80BA5708: obj_w_house3_windowR_model
- 0x80BA5750: obj_w_house3_light_model
- 0x80BA57A8: obj_w_house3_t3_model
- 0x80BA5840: obj_w_house3_t2_model
- 0x80BA58B8: obj_w_house3_t1_model
- 0x80BA5920: obj_w_house3_name_model
- 0x80BA5978: obj_w_house3_door_model
- 0x80BA59D0: cKF_je_r_obj_w_house3_tbl
- 0x80BA5A30: cKF_bs_r_obj_w_house3
- 0x80BA5A38: cKF_ckcb_r_obj_w_house3_tbl
- 0x80BA5A40: cKF_kn_obj_w_house3_tbl
- 0x80BA5A44: cKF_c_obj_w_house3_tbl
- 0x80BA5A78: cKF_ds_obj_w_house3_tbl
- 0x80BA5ABC: cKF_ba_r_obj_w_house3
- 0x80BA5AD0: cKF_ckcb_r_obj_w_house3_out_tbl
- 0x80BA5AD8: cKF_kn_obj_w_house3_out_tbl
- 0x80BA5ADC: cKF_c_obj_w_house3_out_tbl
- 0x80BA5B10: cKF_ds_obj_w_house3_out_tbl
- 0x80BA5B60: cKF_ba_r_obj_w_house3_out
- 0x80BA5B80: obj_w_house4_t3_tex_txt
- 0x80BA6380: obj_w_house4_t1_tex_txt
- 0x80BA6B80: obj_w_house4_t2_tex_txt
- 0x80BA7380: obj_w_house4_window_tex_txt
- 0x80BA7400: obj_w_house4_name_tex_txt
- 0x80BA7600: obj_w_house4_v
- 0x80BA7BD0: obj_w_house4_windowL_model
- 0x80BA7C18: obj_w_house4_windowR_model
- 0x80BA7C60: obj_w_house4_light_model
- 0x80BA7CA8: obj_w_house4_t3_model
- 0x80BA7D38: obj_w_house4_t2_model
- 0x80BA7DB0: obj_w_house4_t1_model
- 0x80BA7E18: obj_w_house4_name_model
- 0x80BA7E70: obj_w_house4_door_model
- 0x80BA7EC8: cKF_je_r_obj_w_house4_tbl
- 0x80BA7F28: cKF_bs_r_obj_w_house4
- 0x80BA7F30: cKF_ckcb_r_obj_w_house4_tbl
- 0x80BA7F38: cKF_kn_obj_w_house4_tbl
- 0x80BA7F3C: cKF_c_obj_w_house4_tbl
- 0x80BA7F70: cKF_ds_obj_w_house4_tbl
- 0x80BA7FB4: cKF_ba_r_obj_w_house4
- 0x80BA7FC8: cKF_ckcb_r_obj_w_house4_out_tbl
- 0x80BA7FD0: cKF_kn_obj_w_house4_out_tbl
- 0x80BA7FD4: cKF_c_obj_w_house4_out_tbl
- 0x80BA8008: cKF_ds_obj_w_house4_out_tbl
- 0x80BA8058: cKF_ba_r_obj_w_house4_out
- 0x80BA8080: obj_w_house5_t3_tex_txt
- 0x80BA8880: obj_w_house5_t1_tex_txt
- 0x80BA9080: obj_w_house5_window_tex_txt
- 0x80BA9100: obj_w_house5_t2_tex_txt
- 0x80BA9900: obj_w_house5_name_tex_txt
- 0x80BA9B00: obj_w_house5_v
- 0x80BAA330: obj_w_house5_windowL_model
- 0x80BAA378: obj_w_house5_windowR_model
- 0x80BAA3C0: obj_w_house5_light_model
- 0x80BAA420: obj_w_house5_t3_model
- 0x80BAA4A0: obj_w_house5_t2_model
- 0x80BAA540: obj_w_house5_t1_model
- 0x80BAA5A8: obj_w_house5_name_model
- 0x80BAA600: obj_w_house5_door_model
- 0x80BAA658: cKF_je_r_obj_w_house5_tbl
- 0x80BAA6B8: cKF_bs_r_obj_w_house5
- 0x80BAA6C0: cKF_ckcb_r_obj_w_house5_tbl
- 0x80BAA6C8: cKF_kn_obj_w_house5_tbl
- 0x80BAA6CC: cKF_c_obj_w_house5_tbl
- 0x80BAA700: cKF_ds_obj_w_house5_tbl
- 0x80BAA744: cKF_ba_r_obj_w_house5
- 0x80BAA758: cKF_ckcb_r_obj_w_house5_out_tbl
- 0x80BAA760: cKF_kn_obj_w_house5_out_tbl
- 0x80BAA764: cKF_c_obj_w_house5_out_tbl
- 0x80BAA798: cKF_ds_obj_w_house5_out_tbl
- 0x80BAA7E8: cKF_ba_r_obj_w_house5_out
- 0x80BAA800: obj_myhome_mark_pal
- 0x80BAA820: obj_s_myhome1_t3_tex_txt
- 0x80BAB020: obj_myhome_mark_tex_txt
- 0x80BAB220: obj_s_myhome1_window_txt
- 0x80BAB2A0: obj_s_myhome1_t2_tex_txt
- 0x80BABAA0: obj_s_myhome1_t1_tex_txt
- 0x80BAC2A0: obj_s_myhome1_v
- 0x80BACA20: obj_s_myhome1_window_model
- 0x80BACA70: obj_s_myhome1_light_model
- 0x80BACAC8: obj_s_myhome1_t3_model
- 0x80BACB30: obj_s_myhome1_t2_model
- 0x80BACB78: obj_s_myhome1_t1_model
- 0x80BACBD8: obj_s_myhome1_fuda_model
- 0x80BACC30: obj_s_myhome1_mark_model
- 0x80BACCA0: obj_s_myhome1_door_model
- 0x80BACCF8: obj_s_myhome1_kazamiB_model
- 0x80BACD60: obj_s_myhome1_kazamiA_model
- 0x80BACDC0: cKF_je_r_obj_s_myhome1_tbl
- 0x80BACE5C: cKF_bs_r_obj_s_myhome1
- 0x80BACE64: cKF_ckcb_r_obj_s_myhome1_tbl
- 0x80BACE74: cKF_kn_obj_s_myhome1_tbl
- 0x80BACE78: cKF_c_obj_s_myhome1_tbl
- 0x80BACECC: cKF_ds_obj_s_myhome1_tbl
- 0x80BACF04: cKF_ba_r_obj_s_myhome1
- 0x80BACF18: cKF_ckcb_r_obj_s_myhome1_out_tbl
- 0x80BACF28: cKF_kn_obj_s_myhome1_out_tbl
- 0x80BACF2C: cKF_c_obj_s_myhome1_out_tbl
- 0x80BACF80: cKF_ds_obj_s_myhome1_out_tbl
- 0x80BACFB8: cKF_ba_r_obj_s_myhome1_out
- 0x80BACFE0: obj_s_myhome2_t3_tex_txt
- 0x80BAD7E0: obj_s_myhome2_window_txt
- 0x80BAD860: obj_s_myhome2_t2_tex_txt
- 0x80BAE060: obj_s_myhome2_t1_tex_txt
- 0x80BAE860: obj_s_myhome2_v
- 0x80BAF0E0: obj_s_myhome2_window_model
- 0x80BAF130: obj_s_myhome2_light_model
- 0x80BAF188: obj_s_myhome2_t3_model
- 0x80BAF1F0: obj_s_myhome2_t2_model
- 0x80BAF238: obj_s_myhome2_t1_model
- 0x80BAF2A8: obj_s_myhome2_fuda_model
- 0x80BAF300: obj_s_myhome2_mark_model
- 0x80BAF370: obj_s_myhome2_door_model
- 0x80BAF3C8: obj_s_myhome2_kazamiB_model
- 0x80BAF430: obj_s_myhome2_kazamiA_model
- 0x80BAF490: cKF_je_r_obj_s_myhome2_tbl
- 0x80BAF52C: cKF_bs_r_obj_s_myhome2
- 0x80BAF534: cKF_ckcb_r_obj_s_myhome2_tbl
- 0x80BAF544: cKF_kn_obj_s_myhome2_tbl
- 0x80BAF548: cKF_c_obj_s_myhome2_tbl
- 0x80BAF59C: cKF_ds_obj_s_myhome2_tbl
- 0x80BAF5E0: cKF_ba_r_obj_s_myhome2
- 0x80BAF5F4: cKF_ckcb_r_obj_s_myhome2_out_tbl
- 0x80BAF604: cKF_kn_obj_s_myhome2_out_tbl
- 0x80BAF608: cKF_c_obj_s_myhome2_out_tbl
- 0x80BAF65C: cKF_ds_obj_s_myhome2_out_tbl
- 0x80BAF694: cKF_ba_r_obj_s_myhome2_out
- 0x80BAF6C0: obj_s_myhome3_t3_tex_txt
- 0x80BAFEC0: obj_s_myhome3_t2_tex_txt
- 0x80BB06C0: obj_s_myhome3_window_txt
- 0x80BB0740: obj_s_myhome3_t1_tex_txt
- 0x80BB0F40: obj_s_myhome3_v
- 0x80BB18C0: obj_s_myhome3_window_model
- 0x80BB1910: obj_s_myhome3_light_model
- 0x80BB1970: obj_s_myhome3_t3_model
- 0x80BB19D8: obj_s_myhome3_t2_model
- 0x80BB1A40: obj_s_myhome3_t1_model
- 0x80BB1AA8: obj_s_myhome3_fuda_model
- 0x80BB1B00: obj_s_myhome3_mark_model
- 0x80BB1B70: obj_s_myhome3_door_model
- 0x80BB1BC8: obj_s_myhome3_kazamiB_model
- 0x80BB1C30: obj_s_myhome3_kazamiA_model
- 0x80BB1C90: cKF_je_r_obj_s_myhome3_tbl
- 0x80BB1D2C: cKF_bs_r_obj_s_myhome3
- 0x80BB1D34: cKF_ckcb_r_obj_s_myhome3_tbl
- 0x80BB1D44: cKF_kn_obj_s_myhome3_tbl
- 0x80BB1D48: cKF_c_obj_s_myhome3_tbl
- 0x80BB1D9C: cKF_ds_obj_s_myhome3_tbl
- 0x80BB1DE0: cKF_ba_r_obj_s_myhome3
- 0x80BB1DF4: cKF_ckcb_r_obj_s_myhome3_out_tbl
- 0x80BB1E04: cKF_kn_obj_s_myhome3_out_tbl
- 0x80BB1E08: cKF_c_obj_s_myhome3_out_tbl
- 0x80BB1E5C: cKF_ds_obj_s_myhome3_out_tbl
- 0x80BB1EAC: cKF_ba_r_obj_s_myhome3_out
- 0x80BB1EC0: obj_w_myhome1_t3_tex_txt
- 0x80BB26C0: obj_w_myhome1_window_txt
- 0x80BB2740: obj_w_myhome1_t2_tex_txt
- 0x80BB2F40: obj_w_myhome1_t1_tex_txt
- 0x80BB3740: obj_w_myhome1_v
- 0x80BB3EC0: obj_w_myhome1_window_model
- 0x80BB3F10: obj_w_myhome1_light_model
- 0x80BB3F68: obj_w_myhome1_t3_model
- 0x80BB3FD0: obj_w_myhome1_t2_model
- 0x80BB4018: obj_w_myhome1_t1_model
- 0x80BB4078: obj_w_myhome1_fuda_model
- 0x80BB40D0: obj_w_myhome1_mark_model
- 0x80BB4140: obj_w_myhome1_door_model
- 0x80BB4198: obj_w_myhome1_kazamiB_model
- 0x80BB4200: obj_w_myhome1_kazamiA_model
- 0x80BB4260: cKF_je_r_obj_w_myhome1_tbl
- 0x80BB42FC: cKF_bs_r_obj_w_myhome1
- 0x80BB4304: cKF_ckcb_r_obj_w_myhome1_tbl
- 0x80BB4314: cKF_kn_obj_w_myhome1_tbl
- 0x80BB4318: cKF_c_obj_w_myhome1_tbl
- 0x80BB436C: cKF_ds_obj_w_myhome1_tbl
- 0x80BB43B0: cKF_ba_r_obj_w_myhome1
- 0x80BB43C4: cKF_ckcb_r_obj_w_myhome1_out_tbl
- 0x80BB43D4: cKF_kn_obj_w_myhome1_out_tbl
- 0x80BB43D8: cKF_c_obj_w_myhome1_out_tbl
- 0x80BB442C: cKF_ds_obj_w_myhome1_out_tbl
- 0x80BB4464: cKF_ba_r_obj_w_myhome1_out
- 0x80BB4480: obj_w_myhome2_t3_tex_txt
- 0x80BB4C80: obj_w_myhome2_window_txt
- 0x80BB4D00: obj_w_myhome2_t2_tex_txt
- 0x80BB5500: obj_w_myhome2_t1_tex_txt
- 0x80BB5D00: obj_w_myhome2_v
- 0x80BB6540: obj_w_myhome2_window_model
- 0x80BB6590: obj_w_myhome2_light_model
- 0x80BB65E8: obj_w_myhome2_t3_model
- 0x80BB6650: obj_w_myhome2_t2_model
- 0x80BB6698: obj_w_myhome2_t1_model
- 0x80BB6708: obj_w_myhome2_fuda_model
- 0x80BB6760: obj_w_myhome2_mark_model
- 0x80BB67D0: obj_w_myhome2_door_model
- 0x80BB6828: obj_w_myhome2_kazamiB_model
- 0x80BB6890: obj_w_myhome2_kazamiA_model
- 0x80BB68F0: cKF_je_r_obj_w_myhome2_tbl
- 0x80BB698C: cKF_bs_r_obj_w_myhome2
- 0x80BB6994: cKF_ckcb_r_obj_w_myhome2_tbl
- 0x80BB69A4: cKF_kn_obj_w_myhome2_tbl
- 0x80BB69A8: cKF_c_obj_w_myhome2_tbl
- 0x80BB69FC: cKF_ds_obj_w_myhome2_tbl
- 0x80BB6A34: cKF_ba_r_obj_w_myhome2
- 0x80BB6A48: cKF_ckcb_r_obj_w_myhome2_out_tbl
- 0x80BB6A58: cKF_kn_obj_w_myhome2_out_tbl
- 0x80BB6A5C: cKF_c_obj_w_myhome2_out_tbl
- 0x80BB6AB0: cKF_ds_obj_w_myhome2_out_tbl
- 0x80BB6AE8: cKF_ba_r_obj_w_myhome2_out
- 0x80BB6B00: obj_w_myhome3_t3_tex_txt
- 0x80BB7300: obj_w_myhome3_t2_tex_txt
- 0x80BB7B00: obj_w_myhome3_window_txt
- 0x80BB7B80: obj_w_myhome3_t1_tex_txt
- 0x80BB8380: obj_w_myhome3_v
- 0x80BB8D00: obj_w_myhome3_window_model
- 0x80BB8D50: obj_w_myhome3_light_model
- 0x80BB8DB0: obj_w_myhome3_t3_model
- 0x80BB8E18: obj_w_myhome3_t2_model
- 0x80BB8E78: obj_w_myhome3_t1_model
- 0x80BB8EE0: obj_w_myhome3_fuda_model
- 0x80BB8F38: obj_w_myhome3_mark_model
- 0x80BB8FA8: obj_w_myhome3_door_model
- 0x80BB9000: obj_w_myhome3_kazamiB_model
- 0x80BB9068: obj_w_myhome3_kazamiA_model
- 0x80BB90C8: cKF_je_r_obj_w_myhome3_tbl
- 0x80BB9164: cKF_bs_r_obj_w_myhome3
- 0x80BB916C: cKF_ckcb_r_obj_w_myhome3_tbl
- 0x80BB917C: cKF_kn_obj_w_myhome3_tbl
- 0x80BB9180: cKF_c_obj_w_myhome3_tbl
- 0x80BB91D4: cKF_ds_obj_w_myhome3_tbl
- 0x80BB9218: cKF_ba_r_obj_w_myhome3
- 0x80BB922C: cKF_ckcb_r_obj_w_myhome3_out_tbl
- 0x80BB923C: cKF_kn_obj_w_myhome3_out_tbl
- 0x80BB9240: cKF_c_obj_w_myhome3_out_tbl
- 0x80BB9294: cKF_ds_obj_w_myhome3_out_tbl
- 0x80BB92E4: cKF_ba_r_obj_w_myhome3_out
- 0x80BB9300: obj_s_myhome4_t3_tex_txt
- 0x80BB9B00: obj_s_myhome4_t2_tex_txt
- 0x80BBA300: obj_s_myhome4_t1_tex_txt
- 0x80BBAB00: obj_s_myhome4_window_txt
- 0x80BBAB80: obj_s_myhome4_v
- 0x80BBB7E0: obj_s_myhome4_window_model
- 0x80BBB830: obj_s_myhome4_t3_model
- 0x80BBB898: obj_s_myhome4_t2_model
- 0x80BBB8E0: obj_s_myhome4_t1_model
- 0x80BBB9A0: obj_s_myhome4_light_model
- 0x80BBBA00: obj_s_myhome4_fuda_model
- 0x80BBBA60: obj_s_myhome4_mark_model
- 0x80BBBAD0: obj_s_myhome4_door_model
- 0x80BBBB28: obj_s_myhome4_kazamiB_model
- 0x80BBBB90: obj_s_myhome4_kazamiA_model
- 0x80BBBBF0: cKF_je_r_obj_s_myhome4_tbl
- 0x80BBBC8C: cKF_bs_r_obj_s_myhome4
- 0x80BBBC94: cKF_ckcb_r_obj_s_myhome4_tbl
- 0x80BBBCA4: cKF_kn_obj_s_myhome4_tbl
- 0x80BBBCA8: cKF_c_obj_s_myhome4_tbl
- 0x80BBBCFC: cKF_ds_obj_s_myhome4_tbl
- 0x80BBBD40: cKF_ba_r_obj_s_myhome4
- 0x80BBBD54: cKF_ckcb_r_obj_s_myhome4_out_tbl
- 0x80BBBD64: cKF_kn_obj_s_myhome4_out_tbl
- 0x80BBBD68: cKF_c_obj_s_myhome4_out_tbl
- 0x80BBBDBC: cKF_ds_obj_s_myhome4_out_tbl
- 0x80BBBE0C: cKF_ba_r_obj_s_myhome4_out
- 0x80BBBE20: obj_w_myhome4_t3_tex_txt
- 0x80BBC620: obj_w_myhome4_t2_tex_txt
- 0x80BBCE20: obj_w_myhome4_t1_tex_txt
- 0x80BBD620: obj_w_myhome4_window_txt
- 0x80BBD6A0: obj_w_myhome4_v
- 0x80BBE300: obj_w_myhome4_window_model
- 0x80BBE350: obj_w_myhome4_t3_model
- 0x80BBE3B8: obj_w_myhome4_t2_model
- 0x80BBE400: obj_w_myhome4_t1_model
- 0x80BBE4C0: obj_w_myhome4_light_model
- 0x80BBE520: obj_w_myhome4_fuda_model
- 0x80BBE580: obj_w_myhome4_mark_model
- 0x80BBE5F0: obj_w_myhome4_door_model
- 0x80BBE648: obj_w_myhome4_kazamiB_model
- 0x80BBE6B0: obj_w_myhome4_kazamiA_model
- 0x80BBE710: cKF_je_r_obj_w_myhome4_tbl
- 0x80BBE7AC: cKF_bs_r_obj_w_myhome4
- 0x80BBE7B4: cKF_ckcb_r_obj_w_myhome4_tbl
- 0x80BBE7C4: cKF_kn_obj_w_myhome4_tbl
- 0x80BBE7C8: cKF_c_obj_w_myhome4_tbl
- 0x80BBE81C: cKF_ds_obj_w_myhome4_tbl
- 0x80BBE860: cKF_ba_r_obj_w_myhome4
- 0x80BBE874: cKF_ckcb_r_obj_w_myhome4_out_tbl
- 0x80BBE884: cKF_kn_obj_w_myhome4_out_tbl
- 0x80BBE888: cKF_c_obj_w_myhome4_out_tbl
- 0x80BBE8DC: cKF_ds_obj_w_myhome4_out_tbl
- 0x80BBE92C: cKF_ba_r_obj_w_myhome4_out
- 0x80BBE940: obj_s_kouban_t3_tex_txt
- 0x80BBF140: obj_s_kouban_t1_tex_txt
- 0x80BBF940: obj_s_kouban_window_tex_txt
- 0x80BBF9C0: obj_s_kouban_t2_tex_txt
- 0x80BC01C0: obj_s_kouban_v
- 0x80BC0630: obj_s_kouban_window_model
- 0x80BC0678: obj_s_kouban_t3_model
- 0x80BC06B8: obj_s_kouban_t2_model
- 0x80BC0708: obj_s_kouban_t1_model
- 0x80BC0758: obj_s_kouban_neon_model
- 0x80BC07B0: obj_s_kouban_light_model
- 0x80BC07E8: obj_s_kouban_model
- 0x80BC0820: obj_w_kouban_t3_tex_txt
- 0x80BC1020: obj_w_kouban_t1_tex_txt
- 0x80BC1820: obj_w_kouban_window_tex_txt
- 0x80BC18A0: obj_w_kouban_t2_tex_txt
- 0x80BC20A0: obj_w_kouban_v
- 0x80BC2510: obj_w_kouban_window_model
- 0x80BC2558: obj_w_kouban_t3_model
- 0x80BC2598: obj_w_kouban_t2_model
- 0x80BC25E8: obj_w_kouban_t1_model
- 0x80BC2638: obj_w_kouban_neon_model
- 0x80BC2690: obj_w_kouban_light_model
- 0x80BC26C8: obj_w_kouban_model
- 0x80BC2700: obj_s_yubinkyoku_t3_txt
- 0x80BC2F00: obj_s_yubinkyoku_t1_txt
- 0x80BC3700: obj_s_yubinkyoku_window_tex_txt
- 0x80BC3780: obj_s_yubinkyoku_t2_txt
- 0x80BC3F80: obj_s_yubinkyoku_v
- 0x80BC4290: obj_s_yubinkyoku_window_model
- 0x80BC42E0: obj_s_yubinkyoku_light_model
- 0x80BC4320: obj_s_yubinkyoku_t3_1_model
- 0x80BC4380: obj_s_yubinkyoku_t2_model
- 0x80BC43E8: obj_s_yubinkyoku_t1_model
- 0x80BC4450: obj_s_yubinkyoku_neon_model
- 0x80BC44B8: obj_s_yubinkyoku_door_model
- 0x80BC4510: cKF_je_r_obj_s_yubinkyoku_tbl
- 0x80BC4570: cKF_bs_r_obj_s_yubinkyoku
- 0x80BC4578: cKF_ckcb_r_obj_s_yubinkyoku_tbl
- 0x80BC4580: cKF_kn_obj_s_yubinkyoku_tbl
- 0x80BC4584: cKF_c_obj_s_yubinkyoku_tbl
- 0x80BC45B8: cKF_ds_obj_s_yubinkyoku_tbl
- 0x80BC45FC: cKF_ba_r_obj_s_yubinkyoku
- 0x80BC4610: cKF_ckcb_r_obj_s_yubinkyoku_out_tbl
- 0x80BC4618: cKF_kn_obj_s_yubinkyoku_out_tbl
- 0x80BC461C: cKF_c_obj_s_yubinkyoku_out_tbl
- 0x80BC4650: cKF_ds_obj_s_yubinkyoku_out_tbl
- 0x80BC46A0: cKF_ba_r_obj_s_yubinkyoku_out
- 0x80BC46C0: obj_w_yubinkyoku_t3_txt
- 0x80BC4EC0: obj_w_yubinkyoku_t1_txt
- 0x80BC56C0: obj_w_yubinkyoku_window_tex_txt
- 0x80BC5740: obj_w_yubinkyoku_t2_txt
- 0x80BC5F40: obj_w_yubinkyoku_v
- 0x80BC6280: obj_w_yubinkyoku_light_model
- 0x80BC62C0: obj_w_yubinkyoku_window_model
- 0x80BC6310: obj_w_yubinkyoku_t3_model
- 0x80BC6370: obj_w_yubinkyoku_t2_model
- 0x80BC63D8: obj_w_yubinkyoku_t1_model
- 0x80BC6440: obj_w_yubinkyoku_neon_model
- 0x80BC64A8: obj_w_yubinkyoku_door_model
- 0x80BC6500: cKF_je_r_obj_w_yubinkyoku_tbl
- 0x80BC6560: cKF_bs_r_obj_w_yubinkyoku
- 0x80BC6568: cKF_ckcb_r_obj_w_yubinkyoku_tbl
- 0x80BC6570: cKF_kn_obj_w_yubinkyoku_tbl
- 0x80BC6574: cKF_c_obj_w_yubinkyoku_tbl
- 0x80BC65A8: cKF_ds_obj_w_yubinkyoku_tbl
- 0x80BC65EC: cKF_ba_r_obj_w_yubinkyoku
- 0x80BC6600: cKF_ckcb_r_obj_w_yubinkyoku_out_tbl
- 0x80BC6608: cKF_kn_obj_w_yubinkyoku_out_tbl
- 0x80BC660C: cKF_c_obj_w_yubinkyoku_out_tbl
- 0x80BC6640: cKF_ds_obj_w_yubinkyoku_out_tbl
- 0x80BC6690: cKF_ba_r_obj_w_yubinkyoku_out
- 0x80BC66C0: obj_e_radio_t1_tex
- 0x80BC6EC0: obj_e_radio_t2_tex
- 0x80BC76C0: obj_e_radio_v
- 0x80BC7940: obj_e_radio_t1_model
- 0x80BC7980: obj_e_radio_t2T_model
- 0x80BC79D8: radio_DL_model
- 0x80BC7A20: obj_s_buildsite_tex
- 0x80BC7E20: obj_s_buildsite_v
- 0x80BC7EE0: reserve_DL_model
- 0x80BC7F40: obj_s_attention_pal
- 0x80BC7F60: obj_s_attention_tex
- 0x80BC8360: obj_s_attention_v
- 0x80BC83E0: obj_s_attentionT_model
- 0x80BC8440: obj_w_buildsite_tex
- 0x80BC8840: obj_w_buildsite_v
- 0x80BC8900: reserve_winter_DL_model
- 0x80BC8960: obj_w_attention_pal
- 0x80BC8980: obj_w_attention_tex
- 0x80BC8D80: obj_w_attention_v
- 0x80BC8E00: obj_w_attentionT_model
- 0x80BC8E60: obj_s_car_pal
- 0x80BC8E80: obj_s_car_t1_tex
- 0x80BC9680: obj_s_car_t2_tex
- 0x80BC9E80: obj_s_car_t3_tex
- 0x80BCA680: obj_s_car_v
- 0x80BCAD60: obj_s_car_t1T_model
- 0x80BCADF0: obj_s_car_t2T_model
- 0x80BCAE50: obj_s_car_t3T_model
- 0x80BCAEB8: obj_s_car_innerT_model
- 0x80BCAF30: s_car_DL_model
- 0x80BCAF60: obj_s_shop1_front_txt
- 0x80BCB760: obj_s_shop1_roof_txt
- 0x80BCBF60: obj_s_shop1_side_txt
- 0x80BCC760: obj_s_shop1_window_txt
- 0x80BCC7E0: obj_s_shop1_v
- 0x80BCCB00: obj_s_shop1_window_model
- 0x80BCCB58: obj_s_shop1_light_model
- 0x80BCCBB0: obj_s_shop1_side_model
- 0x80BCCBF8: obj_s_shop1_roof_model
- 0x80BCCC40: obj_s_shop1_front_model
- 0x80BCCC88: obj_s_shop1_door_model
- 0x80BCCCC0: cKF_je_r_obj_s_shop1_tbl
- 0x80BCCD14: cKF_bs_r_obj_s_shop1
- 0x80BCCD1C: cKF_ckcb_r_obj_s_shop1_tbl
- 0x80BCCD24: cKF_kn_obj_s_shop1_tbl
- 0x80BCCD28: cKF_c_obj_s_shop1_tbl
- 0x80BCCD58: cKF_ds_obj_s_shop1_tbl
- 0x80BCCD78: cKF_ba_r_obj_s_shop1
- 0x80BCCDA0: obj_w_shop1_front_txt
- 0x80BCD5A0: obj_w_shop1_roof_txt
- 0x80BCDDA0: obj_w_shop1_side_txt
- 0x80BCE5A0: obj_w_shop1_window_txt
- 0x80BCE620: obj_w_shop1_v
- 0x80BCE940: obj_w_shop1_window_model
- 0x80BCE998: obj_w_shop1_light_model
- 0x80BCE9F0: obj_w_shop1_side_model
- 0x80BCEA38: obj_w_shop1_roof_model
- 0x80BCEA80: obj_w_shop1_front_model
- 0x80BCEAC8: obj_w_shop1_door_model
- 0x80BCEB00: cKF_je_r_obj_w_shop1_tbl
- 0x80BCEB54: cKF_bs_r_obj_w_shop1
- 0x80BCEB5C: cKF_ckcb_r_obj_w_shop1_tbl
- 0x80BCEB64: cKF_kn_obj_w_shop1_tbl
- 0x80BCEB68: cKF_c_obj_w_shop1_tbl
- 0x80BCEB98: cKF_ds_obj_w_shop1_tbl
- 0x80BCEBB8: cKF_ba_r_obj_w_shop1
- 0x80BCEBE0: obj_s_shop2_t3_tex_txt
- 0x80BCF3E0: obj_s_shop2_window_tex_txt
- 0x80BCF460: obj_s_shop2_t1_tex_txt
- 0x80BCFC60: obj_s_shop2_t2_tex_txt
- 0x80BD0460: obj_s_shop2_v
- 0x80BD0A60: obj_s_shop2_window_model
- 0x80BD0AB0: obj_s_shop2_t2_model
- 0x80BD0B18: obj_s_shop2_t1_model
- 0x80BD0B80: obj_s_shop2_light_model
- 0x80BD0C08: obj_s_shop2_door1_model
- 0x80BD0C58: obj_s_shop2_door2_model
- 0x80BD0CA8: cKF_je_r_obj_s_shop2_tbl
- 0x80BD0CFC: cKF_bs_r_obj_s_shop2
- 0x80BD0D04: cKF_ckcb_r_obj_s_shop2_tbl
- 0x80BD0D0C: cKF_kn_obj_s_shop2_tbl
- 0x80BD0D24: cKF_c_obj_s_shop2_tbl
- 0x80BD0D3C: cKF_ds_obj_s_shop2_tbl
- 0x80BD0DCC: cKF_ba_r_obj_s_shop2
- 0x80BD0DE0: obj_w_shop2_t3_tex_txt
- 0x80BD15E0: obj_w_shop2_window_tex_txt
- 0x80BD1660: obj_w_shop2_t1_tex_txt
- 0x80BD1E60: obj_w_shop2_t2_tex_txt
- 0x80BD2660: obj_w_shop2_v
- 0x80BD2C60: obj_w_shop2_window_model
- 0x80BD2CB0: obj_w_shop2_t2_model
- 0x80BD2D18: obj_w_shop2_t1_model
- 0x80BD2D80: obj_w_shop2_light_model
- 0x80BD2E08: obj_w_shop2_door1_model
- 0x80BD2E58: obj_w_shop2_door2_model
- 0x80BD2EA8: cKF_je_r_obj_w_shop2_tbl
- 0x80BD2EFC: cKF_bs_r_obj_w_shop2
- 0x80BD2F04: cKF_ckcb_r_obj_w_shop2_tbl
- 0x80BD2F0C: cKF_kn_obj_w_shop2_tbl
- 0x80BD2F24: cKF_c_obj_w_shop2_tbl
- 0x80BD2F3C: cKF_ds_obj_w_shop2_tbl
- 0x80BD2FCC: cKF_ba_r_obj_w_shop2
- 0x80BD2FE0: obj_s_shop3_t1_tex_txt
- 0x80BD37E0: obj_s_shop3_t2_tex_txt
- 0x80BD3FE0: obj_s_shop3_window_tex_txt
- 0x80BD4060: obj_s_shop3_t3_tex_txt
- 0x80BD4860: obj_s_shop3_v
- 0x80BD4FA0: obj_s_shop3_window_model
- 0x80BD4FF0: obj_s_shop3_t2_model
- 0x80BD5068: obj_s_shop3_t1_model
- 0x80BD50D0: obj_s_shop3_light_model
- 0x80BD5160: obj_s_shop3_door2_model
- 0x80BD51B0: cKF_je_r_obj_s_shop3_tbl
- 0x80BD5210: cKF_bs_r_obj_s_shop3
- 0x80BD5218: cKF_ckcb_r_obj_s_shop3_tbl
- 0x80BD5220: cKF_kn_obj_s_shop3_tbl
- 0x80BD5238: cKF_c_obj_s_shop3_tbl
- 0x80BD5258: cKF_ds_obj_s_shop3_tbl
- 0x80BD52E8: cKF_ba_r_obj_s_shop3
- 0x80BD5300: obj_w_shop3_t1_tex_txt
- 0x80BD5B00: obj_w_shop3_t2_tex_txt
- 0x80BD6300: obj_w_shop3_window_tex_txt
- 0x80BD6380: obj_w_shop3_t3_tex_txt
- 0x80BD6B80: obj_w_shop3_v
- 0x80BD72C0: obj_w_shop3_window_model
- 0x80BD7310: obj_w_shop3_t2_model
- 0x80BD7388: obj_w_shop3_t1_model
- 0x80BD73F0: obj_w_shop3_light_model
- 0x80BD7480: obj_w_shop3_door2_model
- 0x80BD74D0: cKF_je_r_obj_w_shop3_tbl
- 0x80BD7530: cKF_bs_r_obj_w_shop3
- 0x80BD7538: cKF_ckcb_r_obj_w_shop3_tbl
- 0x80BD7540: cKF_kn_obj_w_shop3_tbl
- 0x80BD7558: cKF_c_obj_w_shop3_tbl
- 0x80BD7578: cKF_ds_obj_w_shop3_tbl
- 0x80BD7608: cKF_ba_r_obj_w_shop3
- 0x80BD7620: obj_s_shop4_pal
- 0x80BD7640: obj_s_shop4_t2_tex_txt
- 0x80BD7E40: obj_s_shop4_t1_tex_txt
- 0x80BD8640: obj_s_shop4_t3_tex_txt
- 0x80BD8E40: obj_s_shop4_window_tex_txt
- 0x80BD8EC0: obj_shop4_grass_tex_pic_i4
- 0x80BD8F40: obj_s_shop4_v
- 0x80BD9860: obj_s_shop4_window_model
- 0x80BD98B8: obj_s_shop4_t2_model
- 0x80BD9948: obj_s_shop4_t1_model
- 0x80BD99E8: obj_s_shop4_light_model
- 0x80BD9A80: obj_s_shop4_grass_model
- 0x80BD9AD8: obj_s_shop4_door_model
- 0x80BD9B30: cKF_je_r_obj_s_shop4_tbl
- 0x80BD9B9C: cKF_bs_r_obj_s_shop4
- 0x80BD9BA4: cKF_ckcb_r_obj_s_shop4_tbl
- 0x80BD9BB0: cKF_kn_obj_s_shop4_tbl
- 0x80BD9BC8: cKF_c_obj_s_shop4_tbl
- 0x80BD9BEC: cKF_ds_obj_s_shop4_tbl
- 0x80BD9C84: cKF_ba_r_obj_s_shop4
- 0x80BD9CA0: obj_w_shop4_pal
- 0x80BD9CC0: obj_w_shop4_t2_tex_txt
- 0x80BDA4C0: obj_w_shop4_t1_tex_txt
- 0x80BDACC0: obj_w_shop4_t3_tex_txt
- 0x80BDB4C0: obj_w_shop4_window_tex_txt
- 0x80BDB540: obj_w_shop4_v
- 0x80BDBE60: obj_w_shop4_window_model
- 0x80BDBEB8: obj_w_shop4_t2_model
- 0x80BDBF48: obj_w_shop4_t1_model
- 0x80BDBFE8: obj_w_shop4_light_model
- 0x80BDC080: obj_w_shop4_grass_model
- 0x80BDC0D8: obj_w_shop4_door_model
- 0x80BDC130: cKF_je_r_obj_w_shop4_tbl
- 0x80BDC19C: cKF_bs_r_obj_w_shop4
- 0x80BDC1A4: cKF_ckcb_r_obj_w_shop4_tbl
- 0x80BDC1B0: cKF_kn_obj_w_shop4_tbl
- 0x80BDC1C8: cKF_c_obj_w_shop4_tbl
- 0x80BDC1EC: cKF_ds_obj_w_shop4_tbl
- 0x80BDC284: cKF_ba_r_obj_w_shop4
- 0x80BDC2C0: obj_s_shrine_t1_tex_txt
- 0x80BDCAC0: obj_s_shrine_t3_tex_txt
- 0x80BDD2C0: obj_s_shrine_t2_tex_txt
- 0x80BDDAC0: obj_s_shrine_t4_tex_txt
- 0x80BDDEC0: obj_s_shrine_sprash_tex_pic_i4
- 0x80BDDFC0: obj_s_shrine_water_tex_pic_i4
- 0x80BDE0C0: obj_s_shrine_wave_tex_pic_i4
- 0x80BDE1C0: obj_s_shrine_v
- 0x80BE02D0: obj_s_shrine_water_model
- 0x80BE03B8: obj_s_shrine_trunk_model
- 0x80BE0460: obj_s_shrine_statue_model
- 0x80BE05A8: obj_s_shrine_sprash_model
- 0x80BE0630: obj_s_shrine_leaf_model
- 0x80BE06B0: obj_s_shrine_figure_model
- 0x80BE0750: obj_s_shrine_bubble_model
- 0x80BE07B0: obj_s_shrine_base_model
- 0x80BE0980: obj_w_shrine_t1_tex_txt
- 0x80BE1180: obj_w_shrine_t3_tex_txt
- 0x80BE1980: obj_w_shrine_t2_tex_txt
- 0x80BE2180: obj_w_shrine_t4_tex_txt
- 0x80BE2580: obj_w_shrine_bubble_tex_pic_i4
- 0x80BE2780: obj_w_shrine_sprash_tex_pic_i4
- 0x80BE2880: obj_w_shrine_water_tex_pic_i4
- 0x80BE2980: obj_w_shrine_wave_tex_pic_i4
- 0x80BE2A80: obj_w_shrine_v
- 0x80BE4B90: obj_w_shrine_water_model
- 0x80BE4C78: obj_w_shrine_trunk_model
- 0x80BE4D20: obj_w_shrine_statue_model
- 0x80BE4E68: obj_w_shrine_sprash_model
- 0x80BE4EF0: obj_w_shrine_leaf_model
- 0x80BE4F70: obj_w_shrine_figure_model
- 0x80BE5010: obj_w_shrine_bubble_model
- 0x80BE5070: obj_w_shrine_base_model
- 0x80BE5220: obj_s_station1_t3_tex_txt
- 0x80BE5A20: obj_s_station1_t2_tex_txt
- 0x80BE6220: obj_s_station1_t1_tex_txt
- 0x80BE6A20: obj_s_station1_v
- 0x80BE71F0: obj_s_station1_t3_model
- 0x80BE7270: obj_s_station1_t2_model
- 0x80BE72B8: obj_s_station1_t1_model
- 0x80BE7328: obj_s_station1_short_model
- 0x80BE7368: obj_s_station1_long_model
- 0x80BE73A8: cKF_je_r_obj_s_station1_tbl
- 0x80BE73FC: cKF_bs_r_obj_s_station1
- 0x80BE7404: cKF_ckcb_r_obj_s_station1_tbl
- 0x80BE740C: cKF_c_obj_s_station1_tbl
- 0x80BE743C: cKF_ba_r_obj_s_station1
- 0x80BE7460: obj_w_station1_t3_tex_txt
- 0x80BE7C60: obj_w_station1_t2_tex_txt
- 0x80BE8460: obj_w_station1_t1_tex_txt
- 0x80BE8C60: obj_w_station1_v
- 0x80BE9410: obj_w_station1_t3_model
- 0x80BE9490: obj_w_station1_t2_model
- 0x80BE94E0: obj_w_station1_t1_model
- 0x80BE9560: obj_w_station1_short_model
- 0x80BE95A0: obj_w_station1_long_model
- 0x80BE95E0: cKF_je_r_obj_w_station1_tbl
- 0x80BE9634: cKF_bs_r_obj_w_station1
- 0x80BE963C: cKF_ckcb_r_obj_w_station1_tbl
- 0x80BE9644: cKF_c_obj_w_station1_tbl
- 0x80BE9674: cKF_ba_r_obj_w_station1
- 0x80BE96A0: obj_s_station2_t1_tex_txt
- 0x80BE9EA0: obj_s_station2_t2_tex_txt
- 0x80BEA6A0: obj_s_station2_t3_tex_txt
- 0x80BEAEA0: obj_s_station2_v
- 0x80BEB5B0: obj_s_station2_t3_model
- 0x80BEB610: obj_s_station2_t2_2_model
- 0x80BEB660: obj_s_station2_t1_1_model
- 0x80BEB6E8: obj_s_station2_short_model
- 0x80BEB728: obj_s_station2_long_model
- 0x80BEB768: cKF_je_r_obj_s_station2_tbl
- 0x80BEB7BC: cKF_bs_r_obj_s_station2
- 0x80BEB7C4: cKF_ckcb_r_obj_s_station2_tbl
- 0x80BEB7CC: cKF_c_obj_s_station2_tbl
- 0x80BEB7FC: cKF_ba_r_obj_s_station2
- 0x80BEB820: obj_w_station2_t1_tex_txt
- 0x80BEC020: obj_w_station2_t2_tex_txt
- 0x80BEC820: obj_w_station2_t3_tex_txt
- 0x80BED020: obj_w_station2_v
- 0x80BED750: obj_w_station2_t3_model
- 0x80BED7B0: obj_w_station2_t2_1_model
- 0x80BED800: obj_w_station2_t1_model
- 0x80BED888: obj_w_station2_short_model
- 0x80BED8C8: obj_w_ststion2_long_model
- 0x80BED908: cKF_je_r_obj_w_station2_tbl
- 0x80BED95C: cKF_bs_r_obj_w_station2
- 0x80BED964: cKF_ckcb_r_obj_w_station2_tbl
- 0x80BED96C: cKF_c_obj_w_station2_tbl
- 0x80BED99C: cKF_ba_r_obj_w_station2
- 0x80BED9C0: obj_s_station3_t3_tex_txt
- 0x80BEE1C0: obj_s_station3_t1_tex_txt
- 0x80BEE9C0: obj_s_station3_t2_tex_txt
- 0x80BEF1C0: obj_s_station3_v
- 0x80BEF820: obj_s_station3_t3_model
- 0x80BEF870: obj_s_station3_t2_model
- 0x80BEF8E0: obj_s_station3_t1_model
- 0x80BEF948: obj_s_station3_shourt_model
- 0x80BEF988: obj_s_ststion3_long_model
- 0x80BEF9C8: cKF_je_r_obj_s_station3_tbl
- 0x80BEFA1C: cKF_bs_r_obj_s_station3
- 0x80BEFA24: cKF_ckcb_r_obj_s_station3_tbl
- 0x80BEFA2C: cKF_c_obj_s_station3_tbl
- 0x80BEFA5C: cKF_ba_r_obj_s_station3
- 0x80BEFA80: obj_w_station3_t3_tex_txt
- 0x80BF0280: obj_w_station3_t2_tex_txt
- 0x80BF0A80: obj_w_station3_t1_tex_txt
- 0x80BF1280: obj_w_station3_v
- 0x80BF18F0: obj_w_station3_t3_model
- 0x80BF1940: obj_w_station3_t2_model
- 0x80BF19B0: obj_w_station3_t1_model
- 0x80BF1A18: obj_w_station3_shourt_model
- 0x80BF1A58: obj_w_ststion3_long_model
- 0x80BF1A98: cKF_je_r_obj_w_station3_tbl
- 0x80BF1AEC: cKF_bs_r_obj_w_station3
- 0x80BF1AF4: cKF_ckcb_r_obj_w_station3_tbl
- 0x80BF1AFC: cKF_c_obj_w_station3_tbl
- 0x80BF1B2C: cKF_ba_r_obj_w_station3
- 0x80BF1B40: obj_s_tailor_1_tex_txt
- 0x80BF2340: obj_s_tailor_3_tex_txt
- 0x80BF2B40: obj_s_tailor_2_tex_txt
- 0x80BF3340: obj_s_tailor_window_tex_txt
- 0x80BF33C0: obj_s_tailor_v
- 0x80BF39B0: obj_s_tailor_window_model
- 0x80BF39F8: obj_s_tailor_light_model
- 0x80BF3A48: obj_s_tailor_3_model
- 0x80BF3AE8: obj_s_tailor_2_model
- 0x80BF3B48: obj_s_tailor_1_model
- 0x80BF3BA8: obj_s_tailor_door_model
- 0x80BF3C00: cKF_je_r_obj_s_tailor_tbl
- 0x80BF3C54: cKF_bs_r_obj_s_tailor
- 0x80BF3C5C: cKF_ckcb_r_obj_s_tailor_tbl
- 0x80BF3C64: cKF_kn_obj_s_tailor_tbl
- 0x80BF3C68: cKF_c_obj_s_tailor_tbl
- 0x80BF3C98: cKF_ds_obj_s_tailor_tbl
- 0x80BF3CDC: cKF_ba_r_obj_s_tailor
- 0x80BF3CF0: cKF_ckcb_r_obj_s_tailor_out_tbl
- 0x80BF3CF8: cKF_kn_obj_s_tailor_out_tbl
- 0x80BF3CFC: cKF_c_obj_s_tailor_out_tbl
- 0x80BF3D2C: cKF_ds_obj_s_tailor_out_tbl
- 0x80BF3D7C: cKF_ba_r_obj_s_tailor_out
- 0x80BF3DA0: obj_w_tailor_1_tex_txt
- 0x80BF45A0: obj_w_tailor_window_tex_txt
- 0x80BF46A0: obj_w_tailor_2_tex_txt
- 0x80BF4EA0: obj_w_tailor_3_tex_txt
- 0x80BF56A0: obj_w_tailor_v
- 0x80BF5C90: obj_w_tailor_window_model
- 0x80BF5CD8: obj_w_tailor_light_model
- 0x80BF5D28: obj_w_tailor_3_model
- 0x80BF5DC8: obj_w_tailor_2_model
- 0x80BF5E28: obj_w_tailor_1_model
- 0x80BF5E88: obj_w_tailor_door_model
- 0x80BF5EE0: cKF_je_r_obj_w_tailor_tbl
- 0x80BF5F34: cKF_bs_r_obj_w_tailor
- 0x80BF5F3C: cKF_ckcb_r_obj_w_tailor_tbl
- 0x80BF5F44: cKF_kn_obj_w_tailor_tbl
- 0x80BF5F48: cKF_c_obj_w_tailor_tbl
- 0x80BF5F78: cKF_ds_obj_w_tailor_tbl
- 0x80BF5FBC: cKF_ba_r_obj_w_tailor
- 0x80BF5FD0: cKF_ckcb_r_obj_w_tailor_out_tbl
- 0x80BF5FD8: cKF_kn_obj_w_tailor_out_tbl
- 0x80BF5FDC: cKF_c_obj_w_tailor_out_tbl
- 0x80BF600C: cKF_ds_obj_w_tailor_out_tbl
- 0x80BF605C: cKF_ba_r_obj_w_tailor_out
- 0x80BF6080: obj_s_tent_mat_pal
- 0x80BF60A0: obj_s_tent_main_pal
- 0x80BF60C0: obj_s_tent_mat
- 0x80BF61C0: obj_s_tent_wall1
- 0x80BF65C0: obj_s_tent_wall2
- 0x80BF6DC0: obj_s_tent_wall3
- 0x80BF71C0: obj_s_tent_v
- 0x80BF7850: obj_s_tent_model
- 0x80BF79E0: obj_s_toudai_glass_tex_pic_ci4_pal
- 0x80BF7A00: obj_s_toudai_light_tex_txt
- 0x80BF7B00: obj_s_toudai_arm_tex_txt
- 0x80BF7B80: obj_s_toudai_dai_tex_txt
- 0x80BF7D80: obj_s_toudai_dou_tex_txt
- 0x80BF8180: obj_s_toudai_plate_tex_txt
- 0x80BF8200: obj_s_toudai_side_tex_txt
- 0x80BF8280: obj_s_toudai_tesuri_tex_txt
- 0x80BF8300: obj_s_toudai_yane_tex_txt
- 0x80BF8380: obj_s_toudai_glass_tex_pic_ci4
- 0x80BF8400: obj_s_toudai_v
- 0x80BF8D90: obj_s_toudai_mirror_model
- 0x80BF8DF0: obj_s_toudai_glass_model
- 0x80BF8E58: obj_s_toudai_body_model
- 0x80BF8FB0: obj_s_toudai_light_model
- 0x80BF9028: obj_s_toudai_lenz_model
- 0x80BF9090: obj_s_toudai_arm_model
- 0x80BF90C8: cKF_je_r_obj_s_toudai_tbl
- 0x80BF911C: cKF_bs_r_obj_s_toudai
- 0x80BF9124: cKF_ckcb_r_obj_s_toudai_tbl
- 0x80BF912C: cKF_kn_obj_s_toudai_tbl
- 0x80BF9130: cKF_c_obj_s_toudai_tbl
- 0x80BF9160: cKF_ds_obj_s_toudai_tbl
- 0x80BF916C: cKF_ba_r_obj_s_toudai
- 0x80BF9180: obj_w_toudai_glass_tex_pic_ci4_pal
- 0x80BF91A0: obj_w_toudai_light_tex_txt
- 0x80BF92A0: obj_w_toudai_arm_tex_txt
- 0x80BF9320: obj_w_toudai_dai_tex_txt
- 0x80BF9520: obj_w_toudai_dou_tex_txt
- 0x80BF9920: obj_w_toudai_plate_tex_txt
- 0x80BF99A0: obj_w_toudai_side_tex_txt
- 0x80BF9A20: obj_w_toudai_tesuri_tex_txt
- 0x80BF9AA0: obj_w_toudai_yane_tex_txt
- 0x80BF9B20: obj_w_toudai_glass_tex_pic_ci4
- 0x80BF9BA0: obj_w_toudai_v
- 0x80BFA4F0: obj_w_toudai_mirror_model
- 0x80BFA550: obj_w_toudai_glass_model
- 0x80BFA5B8: obj_w_toudai_body_model
- 0x80BFA710: obj_w_toudai_light_model
- 0x80BFA788: obj_w_toudai_lenz_model
- 0x80BFA7F0: obj_w_toudai_arm_model
- 0x80BFA828: cKF_je_r_obj_w_toudai_tbl
- 0x80BFA87C: cKF_bs_r_obj_w_toudai
- 0x80BFA884: cKF_ckcb_r_obj_w_toudai_tbl
- 0x80BFA88C: cKF_kn_obj_w_toudai_tbl
- 0x80BFA890: cKF_c_obj_w_toudai_tbl
- 0x80BFA8C0: cKF_ds_obj_w_toudai_tbl
- 0x80BFA8CC: cKF_ba_r_obj_w_toudai
- 0x80BFA8E0: obj_train1_t3_tex_txt
- 0x80BFB0E0: obj_train1_t1_tex_txt
- 0x80BFB8E0: obj_train1_t2_tex_txt
- 0x80BFC0E0: obj_train1_1_v
- 0x80BFC940: obj_train1_1_t3_model
- 0x80BFC9B8: obj_train1_1_t2_model
- 0x80BFCA10: obj_train1_1_t1_model
- 0x80BFCA88: obj_train1_1_wheel2_model
- 0x80BFCAB8: obj_train1_1_rod1_model
- 0x80BFCAE8: obj_train1_1_rod2_model
- 0x80BFCB18: obj_train1_1_wheel1_model
- 0x80BFCB60: obj_train1_t3_tex_txt_tansui
- 0x80BFD360: obj_train_2_v
- 0x80BFD670: obj_train1_2_t2_model
- 0x80BFD6A8: obj_train1_2_t1_model
- 0x80BFD6F0: obj_train1_2_model
- 0x80BFD738: cKF_je_r_obj_train1_1_tbl
- 0x80BFD7A4: cKF_bs_r_obj_train1_1
- 0x80BFD7AC: cKF_ckcb_r_obj_train1_1_tbl
- 0x80BFD7B8: cKF_kn_obj_train1_1_tbl
- 0x80BFD7DC: cKF_c_obj_train1_1_tbl
- 0x80BFD7F4: cKF_ds_obj_train1_1_tbl
- 0x80BFD8D4: cKF_ba_r_obj_train1_1
- 0x80BFD900: obj_train1_t6_tex_txt
- 0x80BFE100: obj_train1_t5_tex_txt
- 0x80BFE900: obj_train1_t4_tex_txt
- 0x80BFF100: obj_train_3_v
- 0x80BFF750: obj_train1_3_t6_model
- 0x80BFF7C0: obj_train1_3_t5_model
- 0x80BFF878: obj_train1_3_t4_model
- 0x80BFF8F0: obj_train1_3_door1_model
- 0x80BFF948: obj_train1_3_door2_model
- 0x80BFF9A0: cKF_je_r_obj_train1_3_tbl
- 0x80BFF9E8: cKF_bs_r_obj_train1_3
- 0x80BFF9F0: cKF_ckcb_r_obj_train1_3_close_tbl
- 0x80BFF9FC: cKF_kn_obj_train1_3_close_tbl
- 0x80BFFA14: cKF_c_obj_train1_3_close_tbl
- 0x80BFFA38: cKF_ds_obj_train1_3_close_tbl
- 0x80BFFAF8: cKF_ba_r_obj_train1_3_close
- 0x80BFFB0C: cKF_ckcb_r_obj_train1_3_open_tbl
- 0x80BFFB18: cKF_kn_obj_train1_3_open_tbl
- 0x80BFFB30: cKF_c_obj_train1_3_open_tbl
- 0x80BFFB54: cKF_ds_obj_train1_3_open_tbl
- 0x80BFFC14: cKF_ba_r_obj_train1_3_open
- 0x80BFFC40: obj_e_tukimi_t2_tex_txt
- 0x80C00440: obj_e_tukimi_t3_tex_txt
- 0x80C00C40: obj_e_tukimi_t1_tex_txt
- 0x80C01440: obj_e_tukimi_r_v
- 0x80C018C0: obj_e_tukimi_r_ne2_model
- 0x80C018F8: obj_e_tukimi_r_ne1_model
- 0x80C01930: obj_e_tukimi_r_moti_model
- 0x80C01978: obj_e_tukimi_r_hako_model
- 0x80C019E0: obj_e_tukimi_r_endai_model
- 0x80C01A40: obj_e_tukimi_r_dai_model
- 0x80C01A88: obj_e_tukimi_r_kuki2_model
- 0x80C01AD8: obj_e_tukimi_r_ho2_model
- 0x80C01B28: obj_e_tukimi_r_kuki1_model
- 0x80C01B78: obj_e_tukimi_r_ho1_model
- 0x80C01BC8: cKF_je_r_obj_e_tukimi_r_tbl
- 0x80C01C58: cKF_bs_r_obj_e_tukimi_r
- 0x80C01C60: cKF_ckcb_r_obj_e_tukimi_r_tbl
- 0x80C01C6C: cKF_kn_obj_e_tukimi_r_tbl
- 0x80C01C74: cKF_c_obj_e_tukimi_r_tbl
- 0x80C01CBC: cKF_ds_obj_e_tukimi_r_tbl
- 0x80C01D64: cKF_ba_r_obj_e_tukimi_r
- 0x80C01D80: obj_e_tukimi_l_t2_tex_txt
- 0x80C02580: obj_e_tukimi_l_t1_tex_txt
- 0x80C02D80: obj_e_tukimi_l_t3_tex_txt
- 0x80C03580: obj_e_tukimi_l_v
- 0x80C03A00: obj_e_tukimi_l_ne2_model
- 0x80C03A38: obj_e_tukimi_l_ne1_model
- 0x80C03A70: obj_e_tukimi_l_moti_model
- 0x80C03AB8: obj_e_tukimi_l_hako_model
- 0x80C03B20: obj_e_tukimi_l_endai_model
- 0x80C03B80: obj_e_tukimi_l_dai_model
- 0x80C03BC8: obj_e_tukimi_l_kuki2_model
- 0x80C03C18: obj_e_tukimi_l_ho2_model
- 0x80C03C68: obj_e_tukimi_l_kuki1_model
- 0x80C03CB8: obj_e_tukimi_l_ho1_model
- 0x80C03D08: cKF_je_r_obj_e_tukimi_l_tbl
- 0x80C03D98: cKF_bs_r_obj_e_tukimi_l
- 0x80C03DA0: cKF_ckcb_r_obj_e_tukimi_l_tbl
- 0x80C03DAC: cKF_kn_obj_e_tukimi_l_tbl
- 0x80C03DB4: cKF_c_obj_e_tukimi_l_tbl
- 0x80C03DFC: cKF_ds_obj_e_tukimi_l_tbl
- 0x80C03EA4: cKF_ba_r_obj_e_tukimi_l
- 0x80C03EE0: obj_e_turi_t1_tex
- 0x80C046E0: obj_e_turi_t2_tex
- 0x80C04EE0: obj_e_turi_t3_tex
- 0x80C056E0: obj_e_turi_l_v
- 0x80C05C90: obj_e_turi_l_modelT
- 0x80C05DA8: obj_e_turi_r_v
- 0x80C06338: obj_e_turi_r_modelT
- 0x80C06460: obj_e_yatai_3_pal
- 0x80C06480: obj_e_yatai_2_pal
- 0x80C064A0: obj_e_yatai_1_pal
- 0x80C064C0: obj_e_yatai_3
- 0x80C068C0: obj_e_yatai_2
- 0x80C070C0: obj_e_yatai_4
- 0x80C071C0: obj_e_yatai_1
- 0x80C079C0: obj_e_yatai_l_v
- 0x80C087E0: obj_e_yatai_l_modelT
- 0x80C087E8: obj_e_yatai_l_model
- 0x80C08A40: obj_e_yatai_r_v
- 0x80C09860: obj_e_yatai_r_modelT
- 0x80C09868: obj_e_yatai_r_model
- 0x80C09AC0: rcs_1_v
- 0x80C0B1C0: head_rcs_model
- 0x80C0B348: mouth_rcs_model
- 0x80C0B3C0: Rarm2_rcs_model
- 0x80C0B448: Rarm1_rcs_model
- 0x80C0B4C0: Larm2_rcs_model
- 0x80C0B548: Larm1_rcs_model
- 0x80C0B5C0: chest_rcs_model
- 0x80C0B6C8: tail1_rcs_model
- 0x80C0B740: tail2_rcs_model
- 0x80C0B7E0: Rfoot2_rcs_model
- 0x80C0B860: Rfoot1_rcs_model
- 0x80C0B8B8: Lfoot2_rcs_model
- 0x80C0B938: Lfoot1_rcs_model
- 0x80C0B990: base_rcs_model
- 0x80C0BA68: cKF_je_r_rcs_1_tbl
- 0x80C0BBA0: cKF_bs_r_rcs_1
- 0x80C0BBC0: rcs_1_pal
- 0x80C0BBE0: rcs_1_eye1_TA_tex_txt
- 0x80C0BCE0: rcs_1_eye2_TA_tex_txt
- 0x80C0BDE0: rcs_1_eye3_TA_tex_txt
- 0x80C0BEE0: rcs_1_eye4_TA_tex_txt
- 0x80C0BFE0: rcs_1_eye5_TA_tex_txt
- 0x80C0C0E0: rcs_1_eye6_TA_tex_txt
- 0x80C0C1E0: rcs_1_eye7_TA_tex_txt
- 0x80C0C2E0: rcs_1_eye8_TA_tex_txt
- 0x80C0C3E0: rcs_1_tmem_txt
- 0x80C0C960: tent_info
- 0x80C0C998: TENT_player_data
- 0x80C0C9A8: TENT_ctrl_actor_data
- 0x80C0C9C0: TENT_door_data
- 0x80C0C9D8: test_fd_npc_land_info
- 0x80C0CA10: TEST_FD_NPC_LAND_player_data
- 0x80C0CA20: TEST_FD_NPC_LAND_ctrl_actor_data
- 0x80C0CA44: TEST_FD_NPC_LAND_actor_data
- 0x80C0CA64: TEST_FD_NPC_LAND_object_bank
- 0x80C0CA68: water_test_info
- 0x80C0CA98: WATER_TEST_player_data
- 0x80C0CAA8: WATER_TEST_ctrl_actor_data
- 0x80C0CAC4: WATER_TEST_actor_data
- 0x80C0CAE8: test_step01_info
- 0x80C0CB08: TEST_STEP01_player_data
- 0x80C0CB18: title_demo_info
- 0x80C0CB50: TITLE_DEMO_player_data
- 0x80C0CB60: TITLE_DEMO_ctrl_actor_data
- 0x80C0CB74: TITLE_DEMO_actor_data
- 0x80C0CB84: TITLE_DEMO_object_bank
- 0x80C0CBA0: crw_anrium1_pal
- 0x80C0CBC0: crw_anrium1_tex_txt
- 0x80C0CDC0: crw_anrium2_tex_txt
- 0x80C0CE40: crw_anrium1_v
- 0x80C0D020: crw_anrium1_body_model
- 0x80C0D0E0: crw_bag1_pal
- 0x80C0D100: crw_bag1_tex_txt
- 0x80C0D500: crw_bagpikke1_tex_txt
- 0x80C0D540: crw_bagpikke2_tex_txt
- 0x80C0D580: crw_bag1_v
- 0x80C0D890: crw_bag1_body_model
- 0x80C0D960: crw_bag2_pal
- 0x80C0D980: crw_bag21_tex_txt
- 0x80C0DD80: crw_bag2_v
- 0x80C0DF30: crw_bag2_body_model
- 0x80C0DFE0: crw_biscus1_pal
- 0x80C0E000: crw_biscus2_tex_txt
- 0x80C0E100: crw_biscus4_tex_txt
- 0x80C0E180: crw_biscus3_tex_txt
- 0x80C0E200: crw_biscus1_tex_txt
- 0x80C0E400: crw_biscus1_v
- 0x80C0E790: crw_biscus1_body_model
- 0x80C0E8E0: crw_biscus2_pal
- 0x80C0E900: crw_biscus22_tex_txt
- 0x80C0EA00: crw_biscus24_tex_txt
- 0x80C0EA80: crw_biscus23_tex_txt
- 0x80C0EB00: crw_biscus21_tex_txt
- 0x80C0ED00: crw_biscus2_v
- 0x80C0F090: crw_biscus2_body_model
- 0x80C0F1E0: crw_biscus3_pal
- 0x80C0F200: crw_biscus32_tex_txt
- 0x80C0F300: crw_biscus34_tex_txt
- 0x80C0F380: crw_biscus33_tex_txt
- 0x80C0F400: crw_biscus31_tex_txt
- 0x80C0F600: crw_biscus3_v
- 0x80C0F990: crw_biscus3_body_model
- 0x80C0FAE0: crw_biscus4_pal
- 0x80C0FB00: crw_biscus42_tex_txt
- 0x80C0FC00: crw_biscus44_tex_txt
- 0x80C0FC80: crw_biscus43_tex_txt
- 0x80C0FD00: crw_biscus41_tex_txt
- 0x80C0FF00: crw_biscus4_v
- 0x80C10290: crw_biscus4_body_model
- 0x80C103E0: crw_cobra_pal
- 0x80C10400: crw_cobra_tex_txt
- 0x80C10600: crw_cobra_v
- 0x80C10900: crw_cobra_model
- 0x80C109C0: tol_cracker_1_pal
- 0x80C109E0: tol_cracker_1_tex
- 0x80C10BE0: tol_cracker_1_v
- 0x80C10DA0: tol_cracker_1T_model
- 0x80C10E20: tol_hata_e_pal
- 0x80C10E40: tol_hata_e_tex
- 0x80C10EC0: tol_hata_hata_tex_inta_ia8
- 0x80C10FC0: tol_hata_01_v
- 0x80C110B0: tol_hata_e_model
- 0x80C11118: tol_hata_hataT_model
- 0x80C11178: tol_hata_01_evw_anime_1_tex_table
- 0x80C1117C: tol_hata_01_evw_anime_1_anime_ptn
- 0x80C11180: tol_hata_01_evw_anime_1
- 0x80C11190: tol_hata_01_evw_anime_2
- 0x80C11198: tol_hata_01_evw_anime
- 0x80C111C0: crw_hasu1_pal
- 0x80C111E0: crw_hasu1_tex_txt
- 0x80C113E0: crw_hasu1_v
- 0x80C11950: crw_hasu1_body_model
- 0x80C11A60: crw_hat1_pal
- 0x80C11A80: crw_hat1_tex_txt
- 0x80C11B00: crw_hat2_tex_txt
- 0x80C11D00: crw_hat3_tex_txt
- 0x80C11D80: crw_hat1_v
- 0x80C11FD0: crw_hat1_body_model
- 0x80C120C0: crw_hat2_pal
- 0x80C120E0: crw_hat21_tex_txt
- 0x80C12160: crw_hat22_tex_txt
- 0x80C12360: crw_hat23_tex_txt
- 0x80C123E0: crw_hat2_v
- 0x80C12630: crw_hat2_body_model
- 0x80C12720: crw_hat3_pal
- 0x80C12740: crw_hat31_tex_txt
- 0x80C127C0: crw_hat32_tex_txt
- 0x80C129C0: crw_hat33_tex_txt
- 0x80C12A40: crw_hat3_v
- 0x80C12C90: crw_hat3_body_model
- 0x80C12D80: tol_kamicup_pal
- 0x80C12DA0: tol_kamicup_tex
- 0x80C12FA0: tol_kamicup_1_v
- 0x80C132D0: tol_kamicup_1T_model
- 0x80C13380: cKF_ckcb_r_tol_keitai_1_keitai_off1_tbl
- 0x80C13384: cKF_kn_tol_keitai_1_keitai_off1_tbl
- 0x80C13398: cKF_c_tol_keitai_1_keitai_off1_tbl
- 0x80C133A0: cKF_ds_tol_keitai_1_keitai_off1_tbl
- 0x80C13424: cKF_ba_r_tol_keitai_1_keitai_off1
- 0x80C13438: cKF_ckcb_r_tol_keitai_1_keitai_on1_tbl
- 0x80C1343C: cKF_kn_tol_keitai_1_keitai_on1_tbl
- 0x80C13440: cKF_c_tol_keitai_1_keitai_on1_tbl
- 0x80C13458: cKF_ds_tol_keitai_1_keitai_on1_tbl
- 0x80C134AC: cKF_ba_r_tol_keitai_1_keitai_on1
- 0x80C134C0: tol_keitai_1_pal
- 0x80C134E0: tol_keitai_1_ueura1_tex_txt
- 0x80C135E0: tol_keitai_1_ueomote1_tex_txt
- 0x80C136E0: tol_keitai_1_shitaura1_tex_txt
- 0x80C137E0: tol_keitai_1_shitaomote1_tex_txt
- 0x80C138E0: tol_keitai_1_v
- 0x80C13AB0: main1_keitai1_model
- 0x80C13B38: main2_keitai1_model
- 0x80C13BC0: cKF_je_r_tol_keitai_1_tbl
- 0x80C13BE4: cKF_bs_r_tol_keitai_1
- 0x80C13C00: tol_kenjyu_1_pal
- 0x80C13C20: tol_kenjyu_1_tex
- 0x80C13E20: tol_kenjyu_1_v
- 0x80C14230: tol_kenjyu_1T_model
- 0x80C142E0: tol_npcsao_1_pal
- 0x80C14300: tol_npcsao_1_tex
- 0x80C14500: tol_npcsao_1_v
- 0x80C14970: tol_npcsao_1_sao_model
- 0x80C149F0: tol_npcsao_1_uki_model
- 0x80C14AA0: crw_rei1_pal
- 0x80C14AC0: crw_rei1_tex_txt
- 0x80C14CC0: crw_rei1_v
- 0x80C15A80: crw_rei1_body_model
- 0x80C15C80: crw_rei2_pal
- 0x80C15CA0: crw_rei21_tex_txt
- 0x80C15EA0: crw_rei2_v
- 0x80C16C60: crw_rei2_body_model
- 0x80C16E80: tama01_r_tex
- 0x80C170C0: tama01_model
- 0x80C17100: tama01_w_tex
- 0x80C17300: tol_tamaire_pal
- 0x80C17320: tol_tamaire_r1_tex
- 0x80C17520: tol_tamaire_r2_tex
- 0x80C17720: tol_tamaire_r3_tex
- 0x80C17920: tol_tamaire_w1_tex
- 0x80C17B20: tol_tamaire_w2_tex
- 0x80C17D20: tol_tamaire_w3_tex
- 0x80C17F20: tol_tamaire_v
- 0x80C17F60: tol_tamaire_model
- 0x80C17FC0: tol_umb_01_pal
- 0x80C17FE0: tol_umb_01_kasa1_tex_txt
- 0x80C181E0: tol_umb_01_tuka_tex_txt
- 0x80C183E0: tol_umb_01_v
- 0x80C18760: kasa_umb01_model
- 0x80C187D8: e_umb01_model
- 0x80C18E80: tol_umb_02_v
- 0x80C19260: kasa_umb02_model
- 0x80C19300: e_umb02_model
- 0x80C19380: tol_umb_03_pal
- 0x80C193A0: tol_umb_03_kasa1_tex_txt
- 0x80C197A0: tol_umb_03_tuka_tex_txt
- 0x80C199A0: tol_umb_03_v
- 0x80C19D20: kasa_umb03_model
- 0x80C19DA0: e_umb03_model
- 0x80C19E20: tol_umb_04_pal
- 0x80C19E40: tol_umb_04_kasa1_tex_txt
- 0x80C19F40: tol_umb_04_kasa2_tex_txt
- 0x80C1A040: tol_umb_04_tuka_tex_txt
- 0x80C1A240: tol_umb_04_v
- 0x80C1A5C0: kasa_umb04_model
- 0x80C1A650: e_umb04_model
- 0x80C1AAE0: tol_umb_05_v
- 0x80C1AE60: kasa_umb05_model
- 0x80C1AED8: e_umb05_model
- 0x80C1AF60: tol_umb_06_pal
- 0x80C1AF80: tol_umb_06_kasa1_tex_txt
- 0x80C1B180: tol_umb_06_tuka_tex_txt
- 0x80C1B380: tol_umb_06_v
- 0x80C1B960: kasa_umb06_model
- 0x80C1BA00: e_umb06_model
- 0x80C1C1A0: tol_umb_07_v
- 0x80C1C400: kasa_umb07_model
- 0x80C1C498: e_umb07_model
- 0x80C1C980: tol_umb_08_v
- 0x80C1CD10: kasa_umb08_model
- 0x80C1CD88: e_umb08_model
- 0x80C1D280: tol_umb_09_v
- 0x80C1D610: kasa_umb09_model
- 0x80C1D688: e_umb09_model
- 0x80C1DB80: tol_umb_10_v
- 0x80C1DF10: kasa_umb10_model
- 0x80C1DF88: e_umb10_model
- 0x80C1E480: tol_umb_11_v
- 0x80C1E810: kasa_umb11_model
- 0x80C1E888: e_umb11_model
- 0x80C1EF80: tol_umb_12_v
- 0x80C1F310: kasa_umb12_model
- 0x80C1F388: e_umb12_model
- 0x80C1F880: tol_umb_13_v
- 0x80C1FC10: kasa_umb13_model
- 0x80C1FC88: e_umb13_model
- 0x80C20140: tol_umb_14_v
- 0x80C204C0: kasa_umb14_model
- 0x80C20538: e_umb14_model
- 0x80C205C0: tol_umb_15_pal
- 0x80C205E0: tol_umb_15_kasa1_tex_txt
- 0x80C206E0: tol_umb_15_kasa2_tex_txt
- 0x80C208E0: tol_umb_15_tuka_tex_txt
- 0x80C20AE0: tol_umb_15_v
- 0x80C20EA0: kasa_umb15_model
- 0x80C20F30: e_umb15_model
- 0x80C20FA0: tol_umb_16_pal
- 0x80C20FC0: tol_umb_16_kasa1_tex_txt
- 0x80C211C0: tol_umb_16_tuka_tex_txt
- 0x80C213C0: tol_umb_16_v
- 0x80C21740: kasa_umb16_model
- 0x80C217B8: e_umb16_model
- 0x80C21840: tol_umb_17_pal
- 0x80C21860: tol_umb_17_kasa_tex_txt
- 0x80C21A60: tol_umb_17_tuka_tex_txt
- 0x80C21C60: tol_umb_17_v
- 0x80C22130: kasa_umb17_model
- 0x80C221D8: e_umb17_model
- 0x80C225A0: tol_umb_18_v
- 0x80C22930: kasa_umb18_model
- 0x80C229A8: e_umb18_model
- 0x80C22A40: tol_umb_19_pal
- 0x80C22A60: tol_umb_19_kasa_tex_txt
- 0x80C22C60: tol_umb_19_tuka_tex_txt
- 0x80C22E60: tol_umb_19_e_tex_txt
- 0x80C22EE0: tol_umb_19_v
- 0x80C232E0: kasa_umb19_model
- 0x80C23370: e_umb19_model
- 0x80C23400: tol_umb_20_pal
- 0x80C23420: tol_umb_20_kasa_tex_txt
- 0x80C23820: tol_umb_20_e_tex_txt
- 0x80C238A0: tol_umb_20_v
- 0x80C23B20: kasa_umb20_model
- 0x80C23B90: e_umb20_model
- 0x80C23C20: tol_umb_21_pal
- 0x80C23C40: tol_umb_21_kasa_tex_txt
- 0x80C24040: tol_umb_21_tuka_tex_txt
- 0x80C24240: tol_umb_21_v
- 0x80C245C0: kasa_umb21_model
- 0x80C24650: e_umb21_model
- 0x80C246E0: tol_umb_22_kasa_tex_txt
- 0x80C248E0: tol_umb_22_e_tex_txt
- 0x80C249E0: tol_umb_22_v
- 0x80C24E60: kasa_umb22_model
- 0x80C24F00: e_umb22_model
- 0x80C24F80: tol_umb_23_pal
- 0x80C24FA0: tol_umb_23_kasa_tex_txt
- 0x80C253A0: tol_umb_23_tuka_tex_txt
- 0x80C255A0: tol_umb_23_e_tex_txt
- 0x80C25620: tol_umb_23_v
- 0x80C25980: kasa_umb23_model
- 0x80C259F8: e_umb23_model
- 0x80C25A80: tol_umb_24_pal
- 0x80C25AA0: tol_umb_24_kasa1_tex_txt
- 0x80C25BA0: tol_umb_24_kasa2_tex_txt
- 0x80C25CA0: tol_umb_24_tuka_tex_txt
- 0x80C25EA0: tol_umb_24_v
- 0x80C26260: kasa_umb24_model
- 0x80C262F0: e_umb24_model
- 0x80C26780: tol_umb_25_v
- 0x80C26AD0: kasa_umb25_model
- 0x80C26B70: e_umb25_model
- 0x80C26BE0: tol_umb_26_pal
- 0x80C26C00: tol_umb_26_kasa1_tex_txt
- 0x80C26D00: tol_umb_26_kasa2_tex_txt
- 0x80C26F00: tol_umb_26_tuka_tex_txt
- 0x80C27100: tol_umb_26_v
- 0x80C274C0: kasa_umb26_model
- 0x80C27558: e_umb26_model
- 0x80C275E0: tol_umb_27_pal
- 0x80C27600: tol_umb_27_kasa1_tex_txt
- 0x80C27800: tol_umb_27_kasa2_tex_txt
- 0x80C27A00: tol_umb_27_e_tex_txt
- 0x80C27A80: tol_umb_27_v
- 0x80C27F30: kasa_umb27_model
- 0x80C27FE8: e_umb27_model
- 0x80C28060: tol_umb_28_pal
- 0x80C28080: tol_umb_28_kasa_tex_txt
- 0x80C28280: tol_umb_28_tuka_tex_txt
- 0x80C28480: tol_umb_28_v
- 0x80C287E0: kasa_umb28_model
- 0x80C28858: e_umb28_model
- 0x80C288E0: tol_umb_29_pal
- 0x80C28900: tol_umb_29_kasa1_tex_txt
- 0x80C28B00: tol_umb_29_tuka_tex_txt
- 0x80C28D00: tol_umb_29_v
- 0x80C29080: kasa_umb29_model
- 0x80C290F8: e_umb29_model
- 0x80C291A0: tol_umb_30_kasa1_tex_txt
- 0x80C293A0: tol_umb_30_tuka_tex_txt
- 0x80C295A0: tol_umb_30_v
- 0x80C29920: kasa_umb30_model
- 0x80C299A0: e_umb30_model
- 0x80C29A20: tol_umb_31_pal
- 0x80C29A40: tol_umb_31_kasa_tex_txt
- 0x80C29C40: tol_umb_31_tuka_tex_txt
- 0x80C29E40: tol_umb_31_e_tex_txt
- 0x80C29EC0: tol_umb_31_v
- 0x80C2A220: kasa_umb31_model
- 0x80C2A298: e_umb31_model
- 0x80C2A740: tol_umb_32_v
- 0x80C2AAC0: kasa_umb32_model
- 0x80C2AB38: e_umb32_model
- 0x80C2ADE0: tol_umb_w_v
- 0x80C2B160: kasa_umb_w_model
- 0x80C2B1D8: e_umb_w_model
- 0x80C2B260: tol_utiwa1_pal
- 0x80C2B280: tol_utiwa_1_main2_tex_txt
- 0x80C2B480: tol_utiwa_1_main1_tex_txt
- 0x80C2B680: tol_utiwa_1_v
- 0x80C2B700: main_utiwa1_model
- 0x80C2B780: crw_zinnia1_pal
- 0x80C2B7A0: crw_zinnia1_tex_txt
- 0x80C2B9A0: crw_zinnia2_tex_txt
- 0x80C2BA20: crw_zinnia1_v
- 0x80C2BE60: crw_zinnia1_body_model
- 0x80C2BFC0: crw_zinnia2_pal
- 0x80C2BFE0: crw_zinnia21_tex_txt
- 0x80C2C1E0: crw_zinnia22_tex_txt
- 0x80C2C260: crw_zinnia2_v
- 0x80C2C6A0: crw_zinnia2_body_model
- 0x80C2C800: test01_info
- 0x80C2C838: TEST01_player_data
- 0x80C2C848: TEST01_ctrl_actor_data
- 0x80C2C860: TEST01_actor_data
- 0x80C2C880: TEST01_object_bank
- 0x80C2C888: test02_info
- 0x80C2C8B0: TEST02_player_data
- 0x80C2C8C0: TEST02_ctrl_actor_data
- 0x80C2C8D8: test03_info
- 0x80C2C910: TEST03_player_data
- 0x80C2C920: TEST03_ctrl_actor_data
- 0x80C2C938: TEST03_actor_data
- 0x80C2C958: TEST03_object_bank
- 0x80C2C960: test04_info
- 0x80C2C988: TEST04_player_data
- 0x80C2C998: TEST04_ctrl_actor_data
- 0x80C2C9B0: test05_info
- 0x80C2C9D8: TEST05_player_data
- 0x80C2C9E8: TEST05_ctrl_actor_data
- 0x80C2C9F8: tig_1_v
- 0x80C2E4B8: head_tig_model
- 0x80C2E690: mouth_tig_model
- 0x80C2E718: Rarm2_tig_model
- 0x80C2E7A0: Rarm1_tig_model
- 0x80C2E818: Larm2_tig_model
- 0x80C2E8A0: Larm1_tig_model
- 0x80C2E918: chest_tig_model
- 0x80C2E9B8: tail1_tig_model
- 0x80C2EA10: tail2_tig_model
- 0x80C2EAA0: Rfoot2_tig_model
- 0x80C2EB28: Rfoot1_tig_model
- 0x80C2EBA8: Lfoot2_tig_model
- 0x80C2EC30: Lfoot1_tig_model
- 0x80C2ECB0: base_tig_model
- 0x80C2ED48: cKF_je_r_tig_1_tbl
- 0x80C2EE80: cKF_bs_r_tig_1
- 0x80C2EEA0: tig_1_pal
- 0x80C2EEC0: tig_1_eye1_TA_tex_txt
- 0x80C2EFC0: tig_1_eye2_TA_tex_txt
- 0x80C2F0C0: tig_1_eye3_TA_tex_txt
- 0x80C2F1C0: tig_1_eye4_TA_tex_txt
- 0x80C2F2C0: tig_1_eye5_TA_tex_txt
- 0x80C2F3C0: tig_1_eye6_TA_tex_txt
- 0x80C2F4C0: tig_1_eye7_TA_tex_txt
- 0x80C2F5C0: tig_1_eye8_TA_tex_txt
- 0x80C2F6C0: tig_1_tmem_txt
- 0x80C2FC40: tig_2_pal
- 0x80C2FC60: tig_2_eye1_TA_tex_txt
- 0x80C2FD60: tig_2_eye2_TA_tex_txt
- 0x80C2FE60: tig_2_eye3_TA_tex_txt
- 0x80C2FF60: tig_2_eye4_TA_tex_txt
- 0x80C30060: tig_2_eye5_TA_tex_txt
- 0x80C30160: tig_2_eye6_TA_tex_txt
- 0x80C30260: tig_2_eye7_TA_tex_txt
- 0x80C30360: tig_2_eye8_TA_tex_txt
- 0x80C30460: tig_2_tmem_txt
- 0x80C309E0: tig_3_pal
- 0x80C30A00: tig_3_eye1_TA_tex_txt
- 0x80C30B00: tig_3_eye2_TA_tex_txt
- 0x80C30C00: tig_3_eye3_TA_tex_txt
- 0x80C30D00: tig_3_eye4_TA_tex_txt
- 0x80C30E00: tig_3_eye5_TA_tex_txt
- 0x80C30F00: tig_3_eye6_TA_tex_txt
- 0x80C31000: tig_3_eye7_TA_tex_txt
- 0x80C31100: tig_3_eye8_TA_tex_txt
- 0x80C31200: tig_3_tmem_txt
- 0x80C31780: tig_4_pal
- 0x80C317A0: tig_4_eye1_TA_tex_txt
- 0x80C318A0: tig_4_eye2_TA_tex_txt
- 0x80C319A0: tig_4_eye3_TA_tex_txt
- 0x80C31AA0: tig_4_eye4_TA_tex_txt
- 0x80C31BA0: tig_4_eye5_TA_tex_txt
- 0x80C31CA0: tig_4_eye6_TA_tex_txt
- 0x80C31DA0: tig_4_eye7_TA_tex_txt
- 0x80C31EA0: tig_4_eye8_TA_tex_txt
- 0x80C31FA0: tig_4_tmem_txt
- 0x80C32520: log_win_logo3_tex
- 0x80C32920: log_win_logo4_tex
- 0x80C32D20: log_win_nintendo1_tex
- 0x80C33120: log_win_nintendo2_tex
- 0x80C33520: log_win_nintendo3_tex
- 0x80C33920: cKF_ckcb_r_logo_us_animal_tbl
- 0x80C33938: cKF_kn_logo_us_animal_tbl
- 0x80C33988: cKF_c_logo_us_animal_tbl
- 0x80C339C0: cKF_ds_logo_us_animal_tbl
- 0x80C33EF0: cKF_ba_r_logo_us_animal
- 0x80C33F40: logo_us_l_tex_txt
- 0x80C34540: logo_us_a_tex_txt
- 0x80C34D40: logo_us_m_1_tex_txt
- 0x80C35540: logo_us_m_2_tex_txt
- 0x80C36740: logo_us_a_2_tex_txt
- 0x80C36B40: logo_us_a_1_tex_txt
- 0x80C37340: logo_us_animal_v
- 0x80C37540: logo_us_z_model
- 0x80C37570: logo_us_za_model
- 0x80C375A0: logo_us_zmB_model
- 0x80C375D0: logo_us_zmA_model
- 0x80C37600: logo_us_zi_model
- 0x80C37630: logo_us_zn_model
- 0x80C37660: logo_us_zaaB_model
- 0x80C37690: logo_us_zaaA_model
- 0x80C376C0: cKF_je_r_logo_us_animal_tbl
- 0x80C377BC: cKF_bs_r_logo_us_animal
- 0x80C377E0: logo_us_back_4_tex_4i4_txt
- 0x80C387E0: logo_us_back_3_tex_4i4_txt
- 0x80C397E0: logo_us_back_1_tex_4i4_txt
- 0x80C3A7E0: logo_us_back_2_tex_4i4_txt
- 0x80C3B7E0: logo_us_back_v
- 0x80C3B8E0: logo_us_backD_model
- 0x80C3B908: logo_us_backC_model
- 0x80C3B930: logo_us_backB_model
- 0x80C3B958: logo_us_backA_model
- 0x80C3B980: cKF_ckcb_r_logo_us_cros_tbl
- 0x80C3B990: cKF_kn_logo_us_cros_tbl
- 0x80C3B9C8: cKF_c_logo_us_cros_tbl
- 0x80C3B9EC: cKF_ds_logo_us_cros_tbl
- 0x80C3C01C: cKF_ba_r_logo_us_cros
- 0x80C3C660: logo_us_o_tex_txt
- 0x80C3CE60: logo_us_r_tex_txt
- 0x80C3D660: logo_us_c_1_tex_txt
- 0x80C3DE60: logo_us_c_2_tex_txt
- 0x80C3E260: logo_us_cros_v
- 0x80C3E3A0: logo_us_zs_model
- 0x80C3E3D0: logo_us_zr_model
- 0x80C3E400: logo_us_zo_model
- 0x80C3E430: logo_us_zcB_model
- 0x80C3E460: logo_us_zcA_model
- 0x80C3E490: cKF_je_r_logo_us_cros_tbl
- 0x80C3E538: cKF_bs_r_logo_us_cros
- 0x80C3E540: cKF_ckcb_r_logo_us_sing_tbl
- 0x80C3E550: cKF_kn_logo_us_sing_tbl
- 0x80C3E588: cKF_c_logo_us_sing_tbl
- 0x80C3E5AC: cKF_ds_logo_us_sing_tbl
- 0x80C3EC44: cKF_ba_r_logo_us_sing
- 0x80C3EC80: logo_us_g_1_tex_txt
- 0x80C3F480: logo_us_g_2_tex_txt
- 0x80C40C80: logo_us_sing_v
- 0x80C40DC0: logo_us_zss_model
- 0x80C40DF0: logo_us_znn_model
- 0x80C40E20: logo_us_zii_model
- 0x80C40E50: logo_us_zgB_model
- 0x80C40E80: logo_us_zgA_model
- 0x80C40EB0: cKF_je_r_logo_us_sing_tbl
- 0x80C40F58: cKF_bs_r_logo_us_sing
- 0x80C40F60: logo_us_tm_tex_4i4_txt
- 0x80C41160: logo_us_tm_v
- 0x80C411A0: logo_us_tm_model
- 0x80C411D8: pact0_head_table
- 0x80C411E4: pact0_key_data
- 0x80C42038: pact1_head_table
- 0x80C42044: pact1_key_data
- 0x80C42E98: pact2_head_table
- 0x80C42EA4: pact2_key_data
- 0x80C43D18: pact3_head_table
- 0x80C43D24: pact3_key_data
- 0x80C44B98: pact4_head_table
- 0x80C44BA4: pact4_key_data
- 0x80C45A08: end_1_v
- 0x80C47658: head_end_model
- 0x80C477F0: Rarm2_end_model
- 0x80C47880: Rarm1_end_model
- 0x80C478F8: Larm2_end_model
- 0x80C47988: Larm1_end_model
- 0x80C47A00: chest_end_model
- 0x80C47A88: tail1_end_model
- 0x80C47AE0: Rfoot3_end_model
- 0x80C47B60: Rfoot2_end_model
- 0x80C47BD8: Rfoot1_end_model
- 0x80C47C68: Lfoot3_end_model
- 0x80C47D00: Lfoot2_end_model
- 0x80C47D80: Lfoot1_end_model
- 0x80C47E00: base_end_model
- 0x80C47F68: cKF_je_r_end_1_tbl
- 0x80C480A0: cKF_bs_r_end_1
- 0x80C480C0: end_1_pal
- 0x80C480E0: end_1_eye1_TA_tex_txt
- 0x80C481E0: end_1_eye2_TA_tex_txt
- 0x80C482E0: end_1_eye3_TA_tex_txt
- 0x80C483E0: end_1_eye4_TA_tex_txt
- 0x80C484E0: end_1_eye5_TA_tex_txt
- 0x80C485E0: end_1_eye6_TA_tex_txt
- 0x80C486E0: end_1_eye7_TA_tex_txt
- 0x80C487E0: end_1_eye8_TA_tex_txt
- 0x80C488E0: end_1_mouth1_TA_tex_txt
- 0x80C489E0: end_1_mouth2_TA_tex_txt
- 0x80C48AE0: end_1_mouth3_TA_tex_txt
- 0x80C48BE0: end_1_mouth4_TA_tex_txt
- 0x80C48CE0: end_1_mouth5_TA_tex_txt
- 0x80C48DE0: end_1_mouth6_TA_tex_txt
- 0x80C48EE0: end_1_tmem_txt
- 0x80C493A0: cKF_ckcb_r_obj_romtrain_door_tbl
- 0x80C493A4: cKF_kn_obj_romtrain_door_tbl
- 0x80C493B8: cKF_c_obj_romtrain_door_tbl
- 0x80C493C4: cKF_ds_obj_romtrain_door_tbl
- 0x80C49454: cKF_ba_r_obj_romtrain_door
- 0x80C49480: obj_romtrain_door_pal
- 0x80C494A0: obj_romtrain_door_tex_txt
- 0x80C498A0: obj_romtrain_glass_tex_txt
- 0x80C499A0: obj_romtrain_door_v
- 0x80C49A90: obj_romtrain_base_model
- 0x80C49AE8: obj_romtrain_glass_model
- 0x80C49B40: obj_romtrain_door_model
- 0x80C49BA0: cKF_je_r_obj_romtrain_door_tbl
- 0x80C49BD0: cKF_bs_r_obj_romtrain_door
- 0x80C49BE0: rom_train_4_pal
- 0x80C49C20: rom_train_bgtree_tex
- 0x80C4A420: rom_train_bgsky_tex
- 0x80C4A4A0: rom_train_tunnel_tex
- 0x80C4A8A0: rom_train_bgcloud_tex_rgb_i4
- 0x80C4B0A0: rom_train_glass_tex_rgb_i4
- 0x80C4B120: rom_train_shine_tex_rgb_i4
- 0x80C4B220: rom_train_out_v
- 0x80C4B520: rom_train_out_bgcloud_modelT
- 0x80C4B580: rom_train_out_bgtree_modelT
- 0x80C4B5E8: rom_train_out_shineglass_modelT
- 0x80C4B650: rom_train_out_tunnel_model
- 0x80C4B6B8: rom_train_out_bgsky_model
- 0x80C4B710: tuk_1_v
- 0x80C4D460: head_tuk_model
- 0x80C4D748: mouth_tuk_model
- 0x80C4D7C0: Rarm2_tuk_model
- 0x80C4D840: Rarm1_tuk_model
- 0x80C4D8B8: Larm2_tuk_model
- 0x80C4D938: Larm1_tuk_model
- 0x80C4D9B0: chest_tuk_model
- 0x80C4DAE8: tail_tuk_model
- 0x80C4DBE0: Rfoot3_tuk_model
- 0x80C4DC80: Rfoot2_tuk_model
- 0x80C4DD00: Rfoot1_tuk_model
- 0x80C4DD58: Lfoot3_tuk_model
- 0x80C4DDF8: Lfoot2_tuk_model
- 0x80C4DE78: Lfoot1_tuk_model
- 0x80C4DED0: base_tuk_model
- 0x80C4DF40: cKF_je_r_tuk_1_tbl
- 0x80C4E078: cKF_bs_r_tuk_1
- 0x80C4E080: tuk_1_pal
- 0x80C4E0A0: tuk_1_eye1_TA_tex_txt
- 0x80C4E1A0: tuk_1_eye2_TA_tex_txt
- 0x80C4E2A0: tuk_1_eye3_TA_tex_txt
- 0x80C4E3A0: tuk_1_eye4_TA_tex_txt
- 0x80C4E4A0: tuk_1_eye5_TA_tex_txt
- 0x80C4E5A0: tuk_1_eye6_TA_tex_txt
- 0x80C4E6A0: tuk_1_eye7_TA_tex_txt
- 0x80C4E7A0: tuk_1_eye8_TA_tex_txt
- 0x80C4E8A0: tuk_1_tmem_txt
- 0x80C4F1C0: tol_uki1_model
- 0x80C4F500: tol_uki2_model
- 0x80C4F588: wol_1_v
- 0x80C50CE8: head_wol_model
- 0x80C50E28: mouth_wol_model
- 0x80C50EB0: Rarm2_wol_model
- 0x80C50F38: Rarm1_wol_model
- 0x80C50FB0: Larm2_wol_model
- 0x80C51038: Larm1_wol_model
- 0x80C510B0: chest_wol_model
- 0x80C51150: tail1_wol_model
- 0x80C511B0: tail2_wol_model
- 0x80C51268: Rfoot2_wol_model
- 0x80C512E8: Rfoot1_wol_model
- 0x80C51368: Lfoot2_wol_model
- 0x80C513E8: Lfoot1_wol_model
- 0x80C51468: base_wol_model
- 0x80C51510: cKF_je_r_wol_1_tbl
- 0x80C51648: cKF_bs_r_wol_1
- 0x80C51660: wol_1_pal
- 0x80C51680: wol_1_eye1_TA_tex_txt
- 0x80C51780: wol_1_eye2_TA_tex_txt
- 0x80C51880: wol_1_eye3_TA_tex_txt
- 0x80C51980: wol_1_eye4_TA_tex_txt
- 0x80C51A80: wol_1_eye5_TA_tex_txt
- 0x80C51B80: wol_1_eye6_TA_tex_txt
- 0x80C51C80: wol_1_eye7_TA_tex_txt
- 0x80C51D80: wol_1_eye8_TA_tex_txt
- 0x80C51E80: wol_1_tmem_txt
- 0x80C52280: wol_2_pal
- 0x80C522A0: wol_2_eye1_TA_tex_txt
- 0x80C523A0: wol_2_eye2_TA_tex_txt
- 0x80C524A0: wol_2_eye3_TA_tex_txt
- 0x80C525A0: wol_2_eye4_TA_tex_txt
- 0x80C526A0: wol_2_eye5_TA_tex_txt
- 0x80C527A0: wol_2_eye6_TA_tex_txt
- 0x80C528A0: wol_2_eye7_TA_tex_txt
- 0x80C529A0: wol_2_eye8_TA_tex_txt
- 0x80C52AA0: wol_2_tmem_txt
- 0x80C52EA0: wol_3_pal
- 0x80C52EC0: wol_3_eye1_TA_tex_txt
- 0x80C52FC0: wol_3_eye2_TA_tex_txt
- 0x80C530C0: wol_3_eye3_TA_tex_txt
- 0x80C531C0: wol_3_eye4_TA_tex_txt
- 0x80C532C0: wol_3_eye5_TA_tex_txt
- 0x80C533C0: wol_3_eye6_TA_tex_txt
- 0x80C534C0: wol_3_eye7_TA_tex_txt
- 0x80C535C0: wol_3_eye8_TA_tex_txt
- 0x80C536C0: wol_3_tmem_txt
- 0x80C53AC0: wol_4_pal
- 0x80C53AE0: wol_4_eye1_TA_tex_txt
- 0x80C53BE0: wol_4_eye2_TA_tex_txt
- 0x80C53CE0: wol_4_eye3_TA_tex_txt
- 0x80C53DE0: wol_4_eye4_TA_tex_txt
- 0x80C53EE0: wol_4_eye5_TA_tex_txt
- 0x80C53FE0: wol_4_eye6_TA_tex_txt
- 0x80C540E0: wol_4_eye7_TA_tex_txt
- 0x80C541E0: wol_4_eye8_TA_tex_txt
- 0x80C542E0: wol_4_tmem_txt
- 0x80C546E0: wol_5_pal
- 0x80C54700: wol_5_eye1_TA_tex_txt
- 0x80C54800: wol_5_eye2_TA_tex_txt
- 0x80C54900: wol_5_eye3_TA_tex_txt
- 0x80C54A00: wol_5_eye4_TA_tex_txt
- 0x80C54B00: wol_5_eye5_TA_tex_txt
- 0x80C54C00: wol_5_eye6_TA_tex_txt
- 0x80C54D00: wol_5_eye7_TA_tex_txt
- 0x80C54E00: wol_5_eye8_TA_tex_txt
- 0x80C54F00: wol_5_tmem_txt
- 0x80C55300: wol_6_pal
- 0x80C55320: wol_6_eye1_TA_tex_txt
- 0x80C55420: wol_6_eye2_TA_tex_txt
- 0x80C55520: wol_6_eye3_TA_tex_txt
- 0x80C55620: wol_6_eye4_TA_tex_txt
- 0x80C55720: wol_6_eye5_TA_tex_txt
- 0x80C55820: wol_6_eye6_TA_tex_txt
- 0x80C55920: wol_6_eye7_TA_tex_txt
- 0x80C55A20: wol_6_eye8_TA_tex_txt
- 0x80C55B20: wol_6_tmem_txt
- 0x80C55F20: broker_shop_actable
- 0x80C55F68: buggy_actable
- 0x80C55F98: event_notification_actable
- 0x80C55FB0: fd0_actable
- 0x80C56028: fd1_actable
- 0x80C56130: fd2_actable
- 0x80C561F0: fd4_actable
- 0x80C56250: fd_npc_land_actable
- 0x80C562B0: fgout_actable
- 0x80C562C8: kamakura_actable
- 0x80C562F8: npcRoom001_actable
- 0x80C56310: playerRM_actable
- 0x80C56340: playerRMM_actable
- 0x80C56370: playerRMS_actable
- 0x80C563A0: player_select_actable
- 0x80C563D0: player_select2_actable
- 0x80C56400: player_select3_actable
- 0x80C56430: player_select4_actable
- 0x80C56460: police_box_actable
- 0x80C56490: post_office_actable
- 0x80C564C0: shop01_actable
- 0x80C56508: shop02_actable
- 0x80C56550: shop03_actable
- 0x80C56598: shop04_1_actable
- 0x80C565E0: shop04_2_actable
- 0x80C56640: start_demo1_actable
- 0x80C566A0: start_demo2_actable
- 0x80C56700: start_demo3_actable
- 0x80C56760: tent_actable
- 0x80C56790: title_demo_actable
- 0x80C56910: water_test_actable
- 0x80C56960: int_ari_isu01_1_tex
- 0x80C56B60: int_ari_isu01_0_tex
- 0x80C56F60: int_ari_isu01_2_tex
- 0x80C57160: int_ari_isu01_v
- 0x80C573C0: int_ari_isu01_00T_model
- 0x80C574A0: int_ari_kitchen01_pal
- 0x80C574C0: int_ari_kitchen01_00_tex
- 0x80C576C0: int_ari_kitchen01_01_tex
- 0x80C577C0: int_ari_kitchen01_02_tex
- 0x80C578C0: int_ari_kitchen01_03_tex
- 0x80C579C0: int_ari_kitchen01_04_tex
- 0x80C57A40: int_ari_kitchen01_05_tex
- 0x80C57AC0: int_ari_kitchen01_06_tex
- 0x80C57B40: int_ari_kitchen01_v
- 0x80C57DE0: int_ari_kitchen01_01_model
- 0x80C57EB0: int_ari_kitchen01_01T_model
- 0x80C57F40: int_ari_reizou01_pal
- 0x80C57F60: int_ari_reizou01_00_tex
- 0x80C580E0: int_ari_reizou01_01_tex
- 0x80C583E0: int_ari_reizou01_02_tex
- 0x80C58560: int_ari_reizou01_03_tex
- 0x80C586E0: int_ari_reizou01_04_tex
- 0x80C58760: int_ari_reizou01_v
- 0x80C58960: int_ari_reizou01_01_model
- 0x80C58A80: int_ari_table01_0_tex
- 0x80C58E80: int_ari_table01_1_tex
- 0x80C58F80: int_ari_table01_2_tex
- 0x80C59080: int_ari_table01_3_tex
- 0x80C59280: int_ari_table01_v
- 0x80C59670: int_ari_table01_01_model
- 0x80C59750: int_ari_table01_01T_model
- 0x80C597A8: mFM_grd_beachA_tex
- 0x80C59BA8: mFM_grd_beachB_tex
- 0x80C59CA8: mFM_beach_pal
- 0x80C59E28: mFM_grd_s_beach_tex
- 0x80C5A240: rom_yami_wall_pal
- 0x80C5A260: rom_yami_floor_pal
- 0x80C5A280: rom_yami_box_pal
- 0x80C5A2A0: rom_yami_mono01_pal
- 0x80C5A2C0: rom_yami_mono02_pal
- 0x80C5A2E0: rom_yami_mono03_pal
- 0x80C5A300: rom_yami_qup_pal
- 0x80C5A320: rom_yami_hyou_pal
- 0x80C5A340: rom_yami_step_tex_pal
- 0x80C5A360: rom_yami_hugu_pal
- 0x80C5A380: rom_yami_tama_pal
- 0x80C5A3A0: rom_yami_wall_tex
- 0x80C5A6A0: rom_yami_floor_tex
- 0x80C5AEA0: rom_yami_poll_tex
- 0x80C5AF20: rom_yami_box01_tex
- 0x80C5B020: rom_yami_box02_tex
- 0x80C5B0A0: rom_yami_mono01_tex
- 0x80C5B2A0: rom_yami_mono02_tex
- 0x80C5B4A0: rom_yami_mono03_tex
- 0x80C5B6A0: rom_yami_qup_tex
- 0x80C5B9A0: rom_yami_hyou_tex
- 0x80C5BAA0: rom_yami_hyou02_tex
- 0x80C5BBA0: rom_yami_step_tex
- 0x80C5BFA0: rom_yami_hugu_tex
- 0x80C5C2A0: rom_yami_tama_tex
- 0x80C5C5A0: rom_yami_shadow01_tex
- 0x80C5C6A0: grd_yamishop_v
- 0x80C5D770: grd_yamishop_modelT
- 0x80C5D778: grd_yamishop_model
- 0x80C5DBA0: yubin_k_pal
- 0x80C5DBC0: yubin_k2_pal
- 0x80C5DBE0: yubin_floor_pal
- 0x80C5DC00: yubin_hakari_pal
- 0x80C5DC20: yubin_wall_pal
- 0x80C5DC40: yubin_letter_pal
- 0x80C5DC60: yubin_us_bag_pal
- 0x80C5DC80: zzzyubin_tree_pal
- 0x80C5DCA0: yubin_t_pal
- 0x80C5DCC0: yubin_us_card_pal
- 0x80C5DCE0: yuibn_kaunta01_tex
- 0x80C5DEE0: yuibn_kaunta02_tex
- 0x80C5E0E0: yuibn_desk01_tex
- 0x80C5E2E0: yubin_ark01_tex
- 0x80C5E6E0: yuibn_kaunta03_tex
- 0x80C5E7E0: yuibn_kaunta04_tex
- 0x80C5E9E0: yubin_floor01_tex
- 0x80C5F1E0: yubin_floor02_tex
- 0x80C5F9E0: yubin_floor03_tex
- 0x80C5FAE0: yubin_hakari01_tex
- 0x80C5FBE0: yubin_hakari02_tex
- 0x80C5FC60: yubin_hakari03_tex
- 0x80C5FD60: yubin_wall04_tex
- 0x80C60060: yubin_letter01_tex
- 0x80C60160: yubin_window_tex
- 0x80C601E0: yubin_us_bag_tex
- 0x80C60660: yubin_tree2_tex
- 0x80C60960: yubin_tree_tex
- 0x80C60A60: yubin_tree3_tex
- 0x80C60AE0: yubin_tree4_tex
- 0x80C60B60: yubin_step_tex
- 0x80C60C60: rom_yubinkyoku_akril_tex
- 0x80C60CE0: rom_yubinkyoku_shede_tex
- 0x80C60DE0: yubin_us_card_tex
- 0x80C611E0: yubin_us_mat_tex
- 0x80C614E0: rom_yubinkyoku_shadow_tex
- 0x80C615E0: yubin_us_card2_tex
- 0x80C616E0: grd_post_office_v
- 0x80C62DE0: grd_post_office_modelT
- 0x80C62E30: grd_post_office_model
- 0x80C63408: tmp4_v
- 0x80C640C8: tmp4_modelT
- 0x80C640D0: tmp4_model
- 0x80C64698: tmpr4_evw_anime_1
- 0x80C646A0: tmpr4_evw_anime_2
- 0x80C646A8: tmpr4_evw_anime_3
- 0x80C646B0: tmpr4_evw_anime_4
- 0x80C646B8: tmpr4_evw_anime
- 0x80C646D8: tmpr4_v
- 0x80C659A8: tmpr4_modelT
- 0x80C65DB0: tmpr4_model
- 0x80C66278: tmp3_v
- 0x80C67298: tmp3_modelT
- 0x80C672A0: tmp3_model
- 0x80C677F8: tmpr3_evw_anime_1
- 0x80C67800: tmpr3_evw_anime_2
- 0x80C67808: tmpr3_evw_anime_3
- 0x80C67810: tmpr3_evw_anime_4
- 0x80C67818: tmpr3_evw_anime
- 0x80C67838: tmpr3_v
- 0x80C68998: tmpr3_modelT
- 0x80C68DB0: tmpr3_model
- 0x80C69338: tmp_v
- 0x80C694F8: tmp_modelT
- 0x80C69500: tmp_model
- 0x80C695E0: tmpr_evw_anime_1
- 0x80C695E8: tmpr_evw_anime
- 0x80C695F0: tmpr_v
- 0x80C6A330: tmpr_modelT
- 0x80C6A568: tmpr_model
- 0x80C6A8C8: grd_s_cliff_pal
- 0x80C6A8E8: grd_s_earth_pal
- 0x80C6A908: grd_s_cliff_tex
- 0x80C6B108: grd_s_earth_tex
- 0x80C6BB08: tmp2_v
- 0x80C6C9C8: tmp2_modelT
- 0x80C6C9D0: tmp2_model
- 0x80C6CE68: tmpr2_evw_anime_1
- 0x80C6CE70: tmpr2_evw_anime
- 0x80C6CE78: grd_1_earth_pal
- 0x80C6CE98: grd_s_river_tex
- 0x80C6D298: grd_water1_tex
- 0x80C6D698: tmpr2_v
- 0x80C6D9F8: tmpr2_grp_grd_s_r1_1_river
- 0x80C6DAE8: tmpr2_grp_grd_s_r1_1_grass
- 0x80C6DBF8: tmpr2_grp_grd_s_r1_1_waterT
- 0x80C6DC98: tmpr2_modelT
- 0x80C6DCA8: tmpr2_model
- 0x80C6DCC0: binsen_listA
- 0x80C6DCEC: binsen_listB
- 0x80C6DD18: binsen_listC
- 0x80C6DD44: binsen_listTrain
- 0x80C6DD48: mSP_binsen_list
- 0x80C6DDA8: binsen_price_table
- 0x80C6DE30: mFM_grd_s_bridge1_pal
- 0x80C6DE60: mFM_grd_s_bridge1_tex
- 0x80C6E660: mFM_grd_s_bridge1_2_tex
- 0x80C6EE60: mFM_grd_s_bridge1_3_tex
- 0x80C6F660: mFM_grd_w_bridge1_tex
- 0x80C6FE60: mFM_grd_w_bridge1_2_tex
- 0x80C70660: mFM_grd_w_bridge1_3_tex
- 0x80C70E60: mFM_grd_s_bridge2_pal
- 0x80C70E80: mFM_grd_s_bridge2_tex
- 0x80C71680: mFM_grd_s_bridge2_2_tex
- 0x80C71E80: mFM_grd_s_bridge2_3_tex
- 0x80C72680: mFM_grd_w_bridge2_tex
- 0x80C72E80: mFM_grd_w_bridge2_2_tex
- 0x80C73680: mFM_grd_w_bridge2_3_tex
- 0x80C73E80: mFM_grd_s_bushA_tex
- 0x80C74680: mFM_grd_s_bushA_2_tex
- 0x80C74E80: mFM_grd_s_bushA_3_tex
- 0x80C75680: mFM_grd_w_bushA_tex
- 0x80C75E80: mFM_grd_w_bushA_2_tex
- 0x80C76680: mFM_grd_w_bushA_3_tex
- 0x80C76E80: mFM_grd_s_bushB_tex
- 0x80C77280: mFM_grd_s_bushB_2_tex
- 0x80C77680: mFM_grd_s_bushB_3_tex
- 0x80C77A80: mFM_grd_w_bushB_tex
- 0x80C77E80: mFM_grd_w_bushB_2_tex
- 0x80C78280: mFM_grd_w_bushB_3_tex
- 0x80C78680: mFM_bush_pal
- 0x80C78800: carpet_listA
- 0x80C78820: carpet_listB
- 0x80C78840: carpet_listC
- 0x80C78860: carpet_listEvent
- 0x80C78888: carpet_listChristmas
- 0x80C7888C: carpet_listSnow
- 0x80C78890: carpet_listHalloween
- 0x80C78894: carpet_listHalloween2
- 0x80C78898: carpet_listHomePage
- 0x80C7889C: carpet_listHarvest
- 0x80C788A0: mSP_carpet_list
- 0x80C78900: carpet_price_table
- 0x80C78988: mFM_cliff_pal
- 0x80C78B20: mFM_grd_s_cliff_tex
- 0x80C79320: mFM_grd_s_cliff_2_tex
- 0x80C79B20: mFM_grd_s_cliff_3_tex
- 0x80C7A320: mFM_grd_w_cliff_tex
- 0x80C7AB20: mFM_grd_w_cliff_2_tex
- 0x80C7B320: mFM_grd_w_cliff_3_tex
- 0x80C7BB20: cloth_listA
- 0x80C7BBB0: cloth_listB
- 0x80C7BC40: cloth_listC
- 0x80C7BCD0: cloth_listEvent
- 0x80C7BD0C: cloth_listChristmas
- 0x80C7BD10: mSP_cloth_list
- 0x80C7BD6C: cloth_season_cnt
- 0x80C7BD78: cloth_price_table
- 0x80C7BF78: diary_price_table
- 0x80C7BFA0: int_din_amber_pal
- 0x80C7BFC0: int_din_amber_4_tex_rgb_ci4_pal
- 0x80C7BFE0: int_din_amber_3_tex
- 0x80C7C1E0: int_din_amber_1_tex
- 0x80C7C5E0: int_din_amber_2_tex
- 0x80C7C6E0: int_din_amber_5_tex
- 0x80C7C760: int_din_amber_4_tex
- 0x80C7C7E0: int_din_amber_v
- 0x80C7CCC0: int_din_amber_on1_model
- 0x80C7CD88: int_din_amber_env_model
- 0x80C7CE00: int_din_amber_on1T_model
- 0x80C7CE60: int_din_ammonite_pal
- 0x80C7CE80: int_din_ammonite_2_tex
- 0x80C7D080: int_din_ammonite_3_tex
- 0x80C7D480: int_din_ammonite_4_tex
- 0x80C7D580: int_din_ammonite_v
- 0x80C7D860: int_din_ammonite_on_model
- 0x80C7D920: int_din_ammonite_onT_model
- 0x80C7D9A0: int_din_bront_body_tex
- 0x80C7DCA0: int_din_bront_leg_tex
- 0x80C7DD20: int_din_bront_shin_tex
- 0x80C7DE20: int_din_bront_thigh_tex
- 0x80C7DF20: int_din_bront_baceB_tex
- 0x80C7E120: int_din_bront_body_v
- 0x80C7E590: int_din_bront_body_model
- 0x80C7E5F8: int_din_bront_bodyT_model
- 0x80C7E720: int_din_bront_dummy_tex
- 0x80C7E920: int_din_bront_dummy_v
- 0x80C7E9A0: int_din_bront_dummy_model
- 0x80C7EA40: int_din_bront_h_tex
- 0x80C7EE40: int_din_bront_kb2_tex
- 0x80C7EEC0: int_din_bront_baceA_tex
- 0x80C7F0C0: int_din_bront_poleA_tex
- 0x80C7F140: int_din_bront_kubi_tex
- 0x80C7F240: int_din_bront_head_v
- 0x80C7F4E0: int_din_bront_head_model
- 0x80C7F548: int_din_bront_headT_model
- 0x80C7F640: int_din_bront_kb2C_tex
- 0x80C7F6C0: int_din_bront_baceC_tex
- 0x80C7F8C0: int_din_bront_poleC_tex
- 0x80C7F940: int_din_bront_tail_v
- 0x80C7FC90: int_din_bront_tail_model
- 0x80C7FCF8: int_din_bront_tailT_model
- 0x80C7FDC0: int_din_dummy_pal
- 0x80C7FDE0: int_din_dummy_tex
- 0x80C805E0: int_din_dummy_v
- 0x80C80720: int_din_dummy_model
- 0x80C807A0: int_din_egg_pal
- 0x80C807C0: int_din_egg_3_tex
- 0x80C809C0: int_din_egg_1_tex
- 0x80C80DC0: int_din_egg_2_tex
- 0x80C80EC0: int_din_egg_v
- 0x80C810E0: int_din_egg_on_model
- 0x80C81188: int_din_egg_onT_model
- 0x80C81200: int_din_hutaba_body_tex
- 0x80C81380: int_din_hutaba_fin_tex
- 0x80C81580: int_din_hutaba_poleC_tex
- 0x80C81600: int_din_hutaba_baceC_tex
- 0x80C81800: int_din_hutaba_hara_tex
- 0x80C81980: int_din_hutaba_body_v
- 0x80C81CD0: int_din_hutaba_body_model
- 0x80C81D38: int_din_hutaba_bodyT_model
- 0x80C81E40: int_din_hutaba_dummy_tex
- 0x80C82040: int_din_hutaba_dummy_v
- 0x80C820C0: int_din_hutaba_dummy_model
- 0x80C82160: int_din_hutaba_h_tex
- 0x80C82560: int_din_hutaba_kubi2_tex
- 0x80C825E0: int_din_hutaba_baceA_tex
- 0x80C827E0: int_din_hutaba_poleA_tex
- 0x80C82860: int_din_hutaba_kubi_tex
- 0x80C82960: int_din_hutaba_head_v
- 0x80C82CD0: int_din_hutaba_head_model
- 0x80C82D38: int_din_hutaba_headT_model
- 0x80C82E60: int_din_hutaba_kubi2c_tex
- 0x80C82EE0: int_din_hutaba_baceB_tex
- 0x80C830E0: int_din_hutaba_poleB_tex
- 0x80C83160: int_din_hutaba_kubic_tex
- 0x80C83260: int_din_hutaba_neck_v
- 0x80C83580: int_din_hutaba_neck_model
- 0x80C835E8: int_din_hutaba_neckT_model
- 0x80C836E0: int_din_mammoth_body_tex
- 0x80C839E0: int_din_mammoth_leg_tex
- 0x80C83A60: int_din_mammoth_shin_tex
- 0x80C83B60: int_din_mammoth_thigh_tex
- 0x80C83C60: int_din_mammoth_kubi_tex
- 0x80C83CE0: int_din_mammoth_baceB_tex
- 0x80C83EE0: int_din_mammoth_body_v
- 0x80C843B0: int_din_mammoth_body_model
- 0x80C84418: int_din_mammoth_bodyT_model
- 0x80C84560: int_din_mammoth_dummy_tex
- 0x80C84760: int_din_mammoth_dummy_v
- 0x80C847E0: int_din_mammoth_dummy_model
- 0x80C84880: int_din_mammoth_h_tex
- 0x80C84A80: int_din_mammoth_h2_tex
- 0x80C84B80: int_din_mammoth_baceA_tex
- 0x80C84D80: int_din_mammoth_poleA_tex
- 0x80C84E00: int_din_mammoth_kiba_tex
- 0x80C84F80: int_din_mammoth_head_v
- 0x80C85300: int_din_mammoth_head_model
- 0x80C85368: int_din_mammoth_headT_model
- 0x80C85480: int_din_ptera_Lleg_tex
- 0x80C85500: int_din_ptera_Lthigh_tex
- 0x80C85980: int_din_ptera_Lwing_v
- 0x80C85B90: int_din_ptera_Lwing_model
- 0x80C85BF8: int_din_ptera_LwingT_model
- 0x80C85F60: int_din_ptera_Rleg_tex
- 0x80C85FE0: int_din_ptera_Rthigh_tex
- 0x80C861E0: int_din_ptera_Rwing_v
- 0x80C863F0: int_din_ptera_Rwing_model
- 0x80C86458: int_din_ptera_RwingT_model
- 0x80C86560: int_din_ptera_dummy_tex
- 0x80C86760: int_din_ptera_dummy_v
- 0x80C867E0: int_din_ptera_dummy_model
- 0x80C86880: int_din_ptera_body_tex
- 0x80C86A00: int_din_ptera_leg_tex
- 0x80C86A80: int_din_ptera_shin_tex
- 0x80C86B80: int_din_ptera_h_tex
- 0x80C86D80: int_din_ptera_kubi_tex
- 0x80C86E00: int_din_ptera_baceB_tex
- 0x80C87000: int_din_ptera_poleB_tex
- 0x80C87080: int_din_ptera_head_v
- 0x80C874F0: int_din_ptera_head_model
- 0x80C87558: int_din_ptera_headT_model
- 0x80C876A0: int_din_stego_body_tex
- 0x80C879A0: int_din_stego_leg_tex
- 0x80C87A20: int_din_stego_shin_tex
- 0x80C87D20: int_din_stego_baceB_tex
- 0x80C87DA0: int_din_stego_body_v
- 0x80C882B0: int_din_stego_body_model
- 0x80C88318: int_din_stego_bodyT_model
- 0x80C88640: int_din_stego_dummyA_v
- 0x80C886C0: int_din_stego_dummyA_model
- 0x80C88960: int_din_stego_dummyB_v
- 0x80C889E0: int_din_stego_dummyB_model
- 0x80C88A80: int_din_stego_finA_tex
- 0x80C88B00: int_din_stego_h_tex
- 0x80C88D00: int_din_stego_kubi2_tex
- 0x80C88D80: int_din_stego_baceA_tex
- 0x80C88F80: int_din_stego_poleA_tex
- 0x80C89000: int_din_stego_kubi_tex
- 0x80C89080: int_din_stego_head_v
- 0x80C892D0: int_din_stego_head_model
- 0x80C89338: int_din_stego_headT_model
- 0x80C89640: int_din_stego_kubi2C_tex
- 0x80C896C0: int_din_stego_baceC_tex
- 0x80C898C0: int_din_stego_poleC_tex
- 0x80C89940: int_din_stego_tail_v
- 0x80C89D00: int_din_stego_tail_model
- 0x80C89D68: int_din_stego_tailT_model
- 0x80C89E40: int_din_stump_pal
- 0x80C89E60: int_din_stump_3_tex
- 0x80C8A060: int_din_stump_1_tex
- 0x80C8A460: int_din_stump_2_tex
- 0x80C8A560: int_din_stump_v
- 0x80C8A7F0: int_din_stump_on_model
- 0x80C8A8A8: int_din_stump_onT_model
- 0x80C8A920: int_din_trex_bd_tex
- 0x80C8AC20: int_din_trex_leg_tex
- 0x80C8ACA0: int_din_trex_ic_tex
- 0x80C8ADA0: int_din_trex_ni_tex
- 0x80C8AEA0: int_din_trex_baceB_tex
- 0x80C8B0A0: int_din_trex_body_v
- 0x80C8B590: int_din_trex_body_model
- 0x80C8B5F8: int_din_trex_bodyT_model
- 0x80C8B720: int_din_trex_dummy_tex
- 0x80C8B920: int_din_trex_dummy_v
- 0x80C8B9A0: int_din_trex_dummy_model
- 0x80C8BA40: int_din_trex_h_tex
- 0x80C8BE40: int_din_trex_baceA_tex
- 0x80C8C040: int_din_trex_poleA_tex
- 0x80C8C0C0: int_din_trex_kb_tex
- 0x80C8C1C0: int_din_trex_head_v
- 0x80C8C4D0: int_din_trex_head_model
- 0x80C8C538: int_din_trex_headT_model
- 0x80C8C620: int_din_trex_tail_tex
- 0x80C8CA20: int_din_trex_baceC_tex
- 0x80C8CC20: int_din_trex_poleC_tex
- 0x80C8CCA0: int_din_trex_tail_v
- 0x80C8CEE0: int_din_trex_tail_model
- 0x80C8CF48: int_din_trex_tailT_model
- 0x80C8D000: int_din_trikera_body_tex
- 0x80C8D300: int_din_trikera_leg_tex
- 0x80C8D380: int_din_trikera_shin_tex
- 0x80C8D480: int_din_trikera_thigh_tex
- 0x80C8D580: int_din_trikera_baceB_tex
- 0x80C8D780: int_din_trikera_body_v
- 0x80C8DBD0: int_din_trikera_body_model
- 0x80C8DC38: int_din_trikera_bodyT_model
- 0x80C8DD60: int_din_trikera_dummy_tex
- 0x80C8DF60: int_din_trikera_dummy_v
- 0x80C8DFE0: int_din_trikera_dummy_model
- 0x80C8E080: int_din_trikera_skull_tex
- 0x80C8E480: int_din_trikera_horn_tex
- 0x80C8E580: int_din_trikera_baceA_tex
- 0x80C8E780: int_din_trikera_poleA_tex
- 0x80C8E800: int_din_trikera_head_v
- 0x80C8EB30: int_din_trikera_head_model
- 0x80C8EB98: int_din_trikera_headT_model
- 0x80C8ECA0: int_din_trikera_baceC_tex
- 0x80C8EEA0: int_din_trikera_poleC_tex
- 0x80C8EF20: int_din_trikera_tail_tex
- 0x80C8F320: int_din_trikera_tail_v
- 0x80C8F5C0: int_din_trikera_tail_model
- 0x80C8F628: int_din_trikera_tailT_model
- 0x80C8F6C0: int_din_trilobite_pal
- 0x80C8F6E0: int_din_trilobite_1_tex
- 0x80C8FAE0: int_din_trilobite_2_tex
- 0x80C8FBE0: int_din_trilobite_3_tex
- 0x80C8FDE0: int_din_trilobite_v
- 0x80C90000: int_din_trilobite_on_model
- 0x80C900A8: int_din_trilobite_onT_model
- 0x80C90100: mFM_earth_pal
- 0x80C90280: mFM_grd_s_earth_tex
- 0x80C90A80: mFM_grd_s_earth_2_tex
- 0x80C91280: mFM_grd_s_earth_3_tex
- 0x80C91A80: mFM_grd_w_earth_tex
- 0x80C92280: mFM_grd_w_earth_2_tex
- 0x80C92A80: mFM_grd_w_earth_3_tex
- 0x80C93280: cKF_ckcb_r_ef_f_tree3_cutL_tbl
- 0x80C93284: cKF_kn_ef_f_tree3_cutL_tbl
- 0x80C93294: cKF_c_ef_f_tree3_cutL_tbl
- 0x80C932A4: cKF_ds_ef_f_tree3_cutL_tbl
- 0x80C934A8: cKF_ba_r_ef_f_tree3_cutL
- 0x80C934C0: ef_f_tree3_cutL_v
- 0x80C93570: ef_f_tree3_cutL_leaf_model
- 0x80C93598: ef_f_tree3_cutL_trunk_model
- 0x80C935D0: cKF_je_r_ef_f_tree3_cutL_tbl
- 0x80C93600: cKF_bs_r_ef_f_tree3_cutL
- 0x80C93608: cKF_ckcb_r_ef_f_tree3_cutR_tbl
- 0x80C9360C: cKF_kn_ef_f_tree3_cutR_tbl
- 0x80C9361C: cKF_c_ef_f_tree3_cutR_tbl
- 0x80C9362C: cKF_ds_ef_f_tree3_cutR_tbl
- 0x80C93830: cKF_ba_r_ef_f_tree3_cutR
- 0x80C93848: ef_f_tree3_cutR_v
- 0x80C938F8: ef_f_tree3_cutR_leaf_model
- 0x80C93920: ef_f_tree3_cutR_trunk_model
- 0x80C93958: cKF_je_r_ef_f_tree3_cutR_tbl
- 0x80C93988: cKF_bs_r_ef_f_tree3_cutR
- 0x80C93990: cKF_ckcb_r_ef_f_tree3_shakeL_tbl
- 0x80C93994: cKF_kn_ef_f_tree3_shakeL_tbl
- 0x80C93998: cKF_c_ef_f_tree3_shakeL_tbl
- 0x80C939A8: cKF_ds_ef_f_tree3_shakeL_tbl
- 0x80C93A28: cKF_ba_r_ef_f_tree3_shakeL
- 0x80C93A40: cKF_ckcb_r_ef_f_tree3_shakeS_tbl
- 0x80C93A44: cKF_kn_ef_f_tree3_shakeS_tbl
- 0x80C93A48: cKF_c_ef_f_tree3_shakeS_tbl
- 0x80C93A58: cKF_ds_ef_f_tree3_shakeS_tbl
- 0x80C93A7C: cKF_ba_r_ef_f_tree3_shakeS
- 0x80C93A90: cKF_ckcb_r_ef_f_tree3_shake_tbl
- 0x80C93A94: cKF_kn_ef_f_tree3_shake_tbl
- 0x80C93A98: cKF_c_ef_f_tree3_shake_tbl
- 0x80C93AA8: cKF_ds_ef_f_tree3_shake_tbl
- 0x80C93AE4: cKF_ba_r_ef_f_tree3_shake
- 0x80C93AF8: ef_f_tree3_shake_v
- 0x80C93B48: ef_f_tree3_shake_leaf_model
- 0x80C93B70: cKF_je_r_ef_f_tree3_shake_tbl
- 0x80C93B88: cKF_bs_r_ef_f_tree3_shake
- 0x80C93B90: cKF_ckcb_r_ef_f_tree4_cutL_tbl
- 0x80C93B94: cKF_kn_ef_f_tree4_cutL_tbl
- 0x80C93BA4: cKF_c_ef_f_tree4_cutL_tbl
- 0x80C93BB4: cKF_ds_ef_f_tree4_cutL_tbl
- 0x80C93DB8: cKF_ba_r_ef_f_tree4_cutL
- 0x80C93DD0: ef_f_tree4_cutL_v
- 0x80C93ED0: ef_f_tree4_cutL_leaf_model
- 0x80C93F08: ef_f_tree4_cutL_trunk_model
- 0x80C93F40: cKF_je_r_ef_f_tree4_cutL_tbl
- 0x80C93F70: cKF_bs_r_ef_f_tree4_cutL
- 0x80C93F78: cKF_ckcb_r_ef_f_tree4_cutR_tbl
- 0x80C93F7C: cKF_kn_ef_f_tree4_cutR_tbl
- 0x80C93F8C: cKF_c_ef_f_tree4_cutR_tbl
- 0x80C93F9C: cKF_ds_ef_f_tree4_cutR_tbl
- 0x80C941A0: cKF_ba_r_ef_f_tree4_cutR
- 0x80C941B8: ef_f_tree4_cutR_v
- 0x80C942B8: ef_f_tree4_cutR_leaf_model
- 0x80C942F0: ef_f_tree4_cutR_trunk_model
- 0x80C94328: cKF_je_r_ef_f_tree4_cutR_tbl
- 0x80C94358: cKF_bs_r_ef_f_tree4_cutR
- 0x80C94360: cKF_ckcb_r_ef_f_tree4_shakeL_tbl
- 0x80C94364: cKF_kn_ef_f_tree4_shakeL_tbl
- 0x80C94368: cKF_c_ef_f_tree4_shakeL_tbl
- 0x80C94378: cKF_ds_ef_f_tree4_shakeL_tbl
- 0x80C943F8: cKF_ba_r_ef_f_tree4_shakeL
- 0x80C94410: cKF_ckcb_r_ef_f_tree4_shakeS_tbl
- 0x80C94414: cKF_kn_ef_f_tree4_shakeS_tbl
- 0x80C94418: cKF_c_ef_f_tree4_shakeS_tbl
- 0x80C94428: cKF_ds_ef_f_tree4_shakeS_tbl
- 0x80C9444C: cKF_ba_r_ef_f_tree4_shakeS
- 0x80C94460: cKF_ckcb_r_ef_f_tree4_shake_tbl
- 0x80C94464: cKF_kn_ef_f_tree4_shake_tbl
- 0x80C94468: cKF_c_ef_f_tree4_shake_tbl
- 0x80C94478: cKF_ds_ef_f_tree4_shake_tbl
- 0x80C944B4: cKF_ba_r_ef_f_tree4_shake
- 0x80C944C8: ef_f_tree4_shake_v
- 0x80C94568: ef_f_tree4_shake_leaf_model
- 0x80C945A0: cKF_je_r_ef_f_tree4_shake_tbl
- 0x80C945B8: cKF_bs_r_ef_f_tree4_shake
- 0x80C945C0: cKF_ckcb_r_ef_f_tree5_cutL_tbl
- 0x80C945C4: cKF_kn_ef_f_tree5_cutL_tbl
- 0x80C945D4: cKF_c_ef_f_tree5_cutL_tbl
- 0x80C945E4: cKF_ds_ef_f_tree5_cutL_tbl
- 0x80C947E8: cKF_ba_r_ef_f_tree5_cutL
- 0x80C94800: ef_f_tree5_cutL_v
- 0x80C94950: ef_f_tree5_cutL_leaf_model
- 0x80C94998: ef_f_tree5_cutL_trunk_model
- 0x80C949D0: cKF_je_r_ef_f_tree5_cutL_tbl
- 0x80C94A00: cKF_bs_r_ef_f_tree5_cutL
- 0x80C94A08: cKF_ckcb_r_ef_f_tree5_cutR_tbl
- 0x80C94A0C: cKF_kn_ef_f_tree5_cutR_tbl
- 0x80C94A1C: cKF_c_ef_f_tree5_cutR_tbl
- 0x80C94A2C: cKF_ds_ef_f_tree5_cutR_tbl
- 0x80C94C30: cKF_ba_r_ef_f_tree5_cutR
- 0x80C94C48: ef_f_tree5_cutR_v
- 0x80C94D98: ef_f_tree5_cutR_leaf_model
- 0x80C94DE0: ef_f_tree5_cutR_trunk_model
- 0x80C94E18: cKF_je_r_ef_f_tree5_cutR_tbl
- 0x80C94E48: cKF_bs_r_ef_f_tree5_cutR
- 0x80C94E50: cKF_ckcb_r_ef_f_tree5_shakeL_tbl
- 0x80C94E54: cKF_kn_ef_f_tree5_shakeL_tbl
- 0x80C94E60: cKF_c_ef_f_tree5_shakeL_tbl
- 0x80C94E68: cKF_ds_ef_f_tree5_shakeL_tbl
- 0x80C94EDC: cKF_ba_r_ef_f_tree5_shakeL
- 0x80C94EF0: cKF_ckcb_r_ef_f_tree5_shakeS_tbl
- 0x80C94EF4: cKF_kn_ef_f_tree5_shakeS_tbl
- 0x80C94EF8: cKF_c_ef_f_tree5_shakeS_tbl
- 0x80C94F08: cKF_ds_ef_f_tree5_shakeS_tbl
- 0x80C94F28: cKF_ba_r_ef_f_tree5_shakeS
- 0x80C94F40: cKF_ckcb_r_ef_f_tree5_shake_tbl
- 0x80C94F44: cKF_kn_ef_f_tree5_shake_tbl
- 0x80C94F48: cKF_c_ef_f_tree5_shake_tbl
- 0x80C94F58: cKF_ds_ef_f_tree5_shake_tbl
- 0x80C94F94: cKF_ba_r_ef_f_tree5_shake
- 0x80C94FA8: ef_f_tree5_shake_v
- 0x80C95098: ef_f_tree5_shake_model
- 0x80C950E0: cKF_je_r_ef_f_tree5_shake_tbl
- 0x80C950F8: cKF_bs_r_ef_f_tree5_shake
- 0x80C95100: ef_f_tree_leaf_modeset
- 0x80C95138: ef_f_tree_trunk_modeset
- 0x80C95160: obj_f_tree_leaf_tex_txt
- 0x80C95960: obj_f_tree_cutS_tex_txt
- 0x80C95B60: obj_f_tree_cutL_tex_txt
- 0x80C96160: cKF_ckcb_r_ef_s_cedar3_cutL_tbl
- 0x80C96164: cKF_kn_ef_s_cedar3_cutL_tbl
- 0x80C96174: cKF_c_ef_s_cedar3_cutL_tbl
- 0x80C96184: cKF_ds_ef_s_cedar3_cutL_tbl
- 0x80C96388: cKF_ba_r_ef_s_cedar3_cutL
- 0x80C963A0: ef_s_cedar3_cutL_v
- 0x80C96570: ef_s_cedar3_cutL_leaf_model
- 0x80C965A0: ef_s_cedar3_cutL_trunk_model
- 0x80C965D8: cKF_je_r_ef_s_cedar3_cutL_tbl
- 0x80C96608: cKF_bs_r_ef_s_cedar3_cutL
- 0x80C96610: cKF_ckcb_r_ef_s_cedar3_cutR_tbl
- 0x80C96614: cKF_kn_ef_s_cedar3_cutR_tbl
- 0x80C96624: cKF_c_ef_s_cedar3_cutR_tbl
- 0x80C96634: cKF_ds_ef_s_cedar3_cutR_tbl
- 0x80C96838: cKF_ba_r_ef_s_cedar3_cutR
- 0x80C96850: ef_s_cedar3_cutR_v
- 0x80C96A20: ef_s_cedar3_cutR_leaf_model
- 0x80C96A50: ef_s_cedar3_cutR_trunk_model
- 0x80C96A88: cKF_je_r_ef_s_cedar3_cutR_tbl
- 0x80C96AB8: cKF_bs_r_ef_s_cedar3_cutR
- 0x80C96AC0: cKF_ckcb_r_ef_s_cedar3_shakeL_tbl
- 0x80C96AC4: cKF_kn_ef_s_cedar3_shakeL_tbl
- 0x80C96AD0: cKF_c_ef_s_cedar3_shakeL_tbl
- 0x80C96AD8: cKF_ds_ef_s_cedar3_shakeL_tbl
- 0x80C96B4C: cKF_ba_r_ef_s_cedar3_shakeL
- 0x80C96B60: cKF_ckcb_r_ef_s_cedar3_shakeS_tbl
- 0x80C96B64: cKF_kn_ef_s_cedar3_shakeS_tbl
- 0x80C96B68: cKF_c_ef_s_cedar3_shakeS_tbl
- 0x80C96B78: cKF_ds_ef_s_cedar3_shakeS_tbl
- 0x80C96B98: cKF_ba_r_ef_s_cedar3_shakeS
- 0x80C96BB0: cKF_ckcb_r_ef_s_cedar3_shake_tbl
- 0x80C96BB4: cKF_kn_ef_s_cedar3_shake_tbl
- 0x80C96BBC: cKF_c_ef_s_cedar3_shake_tbl
- 0x80C96BC8: cKF_ds_ef_s_cedar3_shake_tbl
- 0x80C96C0C: cKF_ba_r_ef_s_cedar3_shake
- 0x80C96C20: ef_s_cedar3_shake_v
- 0x80C96D90: ef_s_cedar3_shake_model
- 0x80C96DC0: cKF_je_r_ef_s_cedar3_shake_tbl
- 0x80C96DD8: cKF_bs_r_ef_s_cedar3_shake
- 0x80C96DE0: cKF_ckcb_r_ef_s_cedar4_cutL_tbl
- 0x80C96DE4: cKF_kn_ef_s_cedar4_cutL_tbl
- 0x80C96DF4: cKF_c_ef_s_cedar4_cutL_tbl
- 0x80C96E04: cKF_ds_ef_s_cedar4_cutL_tbl
- 0x80C97008: cKF_ba_r_ef_s_cedar4_cutL
- 0x80C97020: ef_s_cedar4_cutL_v
- 0x80C97370: ef_s_cedar4_cutL_leaf_model
- 0x80C973C0: ef_s_cedar4_cutL_trunk_model
- 0x80C973F8: cKF_je_r_ef_s_cedar4_cutL_tbl
- 0x80C97428: cKF_bs_r_ef_s_cedar4_cutL
- 0x80C97430: cKF_ckcb_r_ef_s_cedar4_cutR_tbl
- 0x80C97434: cKF_kn_ef_s_cedar4_cutR_tbl
- 0x80C97444: cKF_c_ef_s_cedar4_cutR_tbl
- 0x80C97454: cKF_ds_ef_s_cedar4_cutR_tbl
- 0x80C97658: cKF_ba_r_ef_s_cedar4_cutR
- 0x80C97670: ef_s_cedar4_cutR_v
- 0x80C979C0: ef_s_cedar4_cutR_leaf_model
- 0x80C97A10: ef_s_cedar4_cutR_trunk_model
- 0x80C97A48: cKF_je_r_ef_s_cedar4_cutR_tbl
- 0x80C97A78: cKF_bs_r_ef_s_cedar4_cutR
- 0x80C97A80: cKF_ckcb_r_ef_s_cedar4_shakeL_tbl
- 0x80C97A84: cKF_kn_ef_s_cedar4_shakeL_tbl
- 0x80C97A90: cKF_c_ef_s_cedar4_shakeL_tbl
- 0x80C97A98: cKF_ds_ef_s_cedar4_shakeL_tbl
- 0x80C97B0C: cKF_ba_r_ef_s_cedar4_shakeL
- 0x80C97B20: cKF_ckcb_r_ef_s_cedar4_shakeS_tbl
- 0x80C97B24: cKF_kn_ef_s_cedar4_shakeS_tbl
- 0x80C97B28: cKF_c_ef_s_cedar4_shakeS_tbl
- 0x80C97B38: cKF_ds_ef_s_cedar4_shakeS_tbl
- 0x80C97B58: cKF_ba_r_ef_s_cedar4_shakeS
- 0x80C97B70: cKF_ckcb_r_ef_s_cedar4_shake_tbl
- 0x80C97B74: cKF_kn_ef_s_cedar4_shake_tbl
- 0x80C97B7C: cKF_c_ef_s_cedar4_shake_tbl
- 0x80C97B88: cKF_ds_ef_s_cedar4_shake_tbl
- 0x80C97BCC: cKF_ba_r_ef_s_cedar4_shake
- 0x80C97BE0: ef_s_cedar4_shake_v
- 0x80C97ED0: ef_s_cedar4_shake_model
- 0x80C97F20: cKF_je_r_ef_s_cedar4_shake_tbl
- 0x80C97F38: cKF_bs_r_ef_s_cedar4_shake
- 0x80C97F40: cKF_ckcb_r_ef_s_cedar5_cutL_tbl
- 0x80C97F44: cKF_kn_ef_s_cedar5_cutL_tbl
- 0x80C97F54: cKF_c_ef_s_cedar5_cutL_tbl
- 0x80C97F64: cKF_ds_ef_s_cedar5_cutL_tbl
- 0x80C98168: cKF_ba_r_ef_s_cedar5_cutL
- 0x80C98180: ef_s_cedar5_cutL_v
- 0x80C98620: ef_s_cedar5_cutL_leaf_model
- 0x80C98690: ef_s_cedar5_cutL_trunk_model
- 0x80C986C8: cKF_je_r_ef_s_cedar5_cutL_tbl
- 0x80C986F8: cKF_bs_r_ef_s_cedar5_cutL
- 0x80C98700: cKF_ckcb_r_ef_s_cedar5_cutR_tbl
- 0x80C98704: cKF_kn_ef_s_cedar5_cutR_tbl
- 0x80C98714: cKF_c_ef_s_cedar5_cutR_tbl
- 0x80C98724: cKF_ds_ef_s_cedar5_cutR_tbl
- 0x80C98928: cKF_ba_r_ef_s_cedar5_cutR
- 0x80C98940: ef_s_cedar5_cutR_v
- 0x80C98DE0: ef_s_cedar5_cutR_leaf_model
- 0x80C98E50: ef_s_cedar5_cutR_trunk_model
- 0x80C98E88: cKF_je_r_ef_s_cedar5_cutR_tbl
- 0x80C98EB8: cKF_bs_r_ef_s_cedar5_cutR
- 0x80C98EC0: cKF_ckcb_r_ef_s_cedar5_shakeL_tbl
- 0x80C98EC4: cKF_kn_ef_s_cedar5_shakeL_tbl
- 0x80C98ED0: cKF_c_ef_s_cedar5_shakeL_tbl
- 0x80C98ED8: cKF_ds_ef_s_cedar5_shakeL_tbl
- 0x80C98F4C: cKF_ba_r_ef_s_cedar5_shakeL
- 0x80C98F60: cKF_ckcb_r_ef_s_cedar5_shakeS_tbl
- 0x80C98F64: cKF_kn_ef_s_cedar5_shakeS_tbl
- 0x80C98F68: cKF_c_ef_s_cedar5_shakeS_tbl
- 0x80C98F78: cKF_ds_ef_s_cedar5_shakeS_tbl
- 0x80C98F98: cKF_ba_r_ef_s_cedar5_shakeS
- 0x80C98FB0: cKF_ckcb_r_ef_s_cedar5_shake_tbl
- 0x80C98FB4: cKF_kn_ef_s_cedar5_shake_tbl
- 0x80C98FBC: cKF_c_ef_s_cedar5_shake_tbl
- 0x80C98FC8: cKF_ds_ef_s_cedar5_shake_tbl
- 0x80C9900C: cKF_ba_r_ef_s_cedar5_shake
- 0x80C99020: ef_s_cedar5_shake_v
- 0x80C99460: ef_s_cedar5_shake_model
- 0x80C994D0: cKF_je_r_ef_s_cedar5_shake_tbl
- 0x80C994E8: cKF_bs_r_ef_s_cedar5_shake
- 0x80C994F0: ef_s_cedar_leaf_modeset
- 0x80C99528: ef_s_cedar_trunk_modeset
- 0x80C99560: obj_s_cedar_leaf_tex_txt
- 0x80C99D60: obj_s_cedar_cutS_tex_txt
- 0x80C99F60: obj_s_cedar_cutL_tex_txt
- 0x80C9A560: cKF_ckcb_r_ef_s_palm3_cutL_tbl
- 0x80C9A564: cKF_kn_ef_s_palm3_cutL_tbl
- 0x80C9A578: cKF_c_ef_s_palm3_cutL_tbl
- 0x80C9A584: cKF_ds_ef_s_palm3_cutL_tbl
- 0x80C9A7AC: cKF_ba_r_ef_s_palm3_cutL
- 0x80C9A7C0: ef_s_palm3_cutL_v
- 0x80C9A920: ef_s_palm3_cutL_leaf_model
- 0x80C9A950: ef_s_palm3_cutL_trunk_model
- 0x80C9A988: cKF_je_r_ef_s_palm3_cutL_tbl
- 0x80C9A9B8: cKF_bs_r_ef_s_palm3_cutL
- 0x80C9A9C0: cKF_ckcb_r_ef_s_palm3_cutR_tbl
- 0x80C9A9C4: cKF_kn_ef_s_palm3_cutR_tbl
- 0x80C9A9D8: cKF_c_ef_s_palm3_cutR_tbl
- 0x80C9A9E4: cKF_ds_ef_s_palm3_cutR_tbl
- 0x80C9AC0C: cKF_ba_r_ef_s_palm3_cutR
- 0x80C9AC20: ef_s_palm3_cutR_v
- 0x80C9AD80: ef_s_palm3_cutR_leaf_model
- 0x80C9ADB0: ef_s_palm3_cutR_trunk_model
- 0x80C9ADE8: cKF_je_r_ef_s_palm3_cutR_tbl
- 0x80C9AE18: cKF_bs_r_ef_s_palm3_cutR
- 0x80C9AE20: cKF_ckcb_r_ef_s_palm3_shakeL_tbl
- 0x80C9AE24: cKF_kn_ef_s_palm3_shakeL_tbl
- 0x80C9AE28: cKF_c_ef_s_palm3_shakeL_tbl
- 0x80C9AE38: cKF_ds_ef_s_palm3_shakeL_tbl
- 0x80C9AEB8: cKF_ba_r_ef_s_palm3_shakeL
- 0x80C9AED0: cKF_ckcb_r_ef_s_palm3_shakeS_tbl
- 0x80C9AED4: cKF_kn_ef_s_palm3_shakeS_tbl
- 0x80C9AED8: cKF_c_ef_s_palm3_shakeS_tbl
- 0x80C9AEE8: cKF_ds_ef_s_palm3_shakeS_tbl
- 0x80C9AF0C: cKF_ba_r_ef_s_palm3_shakeS
- 0x80C9AF20: cKF_ckcb_r_ef_s_palm3_shake_tbl
- 0x80C9AF24: cKF_kn_ef_s_palm3_shake_tbl
- 0x80C9AF28: cKF_c_ef_s_palm3_shake_tbl
- 0x80C9AF38: cKF_ds_ef_s_palm3_shake_tbl
- 0x80C9AF8C: cKF_ba_r_ef_s_palm3_shake
- 0x80C9AFA0: ef_s_palm3_shake_v
- 0x80C9B0A0: ef_s_palm3_shake_model
- 0x80C9B0D0: cKF_je_r_ef_s_palm3_shake_tbl
- 0x80C9B0E8: cKF_bs_r_ef_s_palm3_shake
- 0x80C9B0F0: cKF_ckcb_r_ef_s_palm4_cutL_tbl
- 0x80C9B0F4: cKF_kn_ef_s_palm4_cutL_tbl
- 0x80C9B108: cKF_c_ef_s_palm4_cutL_tbl
- 0x80C9B114: cKF_ds_ef_s_palm4_cutL_tbl
- 0x80C9B33C: cKF_ba_r_ef_s_palm4_cutL
- 0x80C9B350: ef_s_palm4_cutL_v
- 0x80C9B5B0: ef_s_palm4_cutL_leaf_model
- 0x80C9B5F0: ef_s_palm4_cutL_trunk_model
- 0x80C9B628: cKF_je_r_ef_s_palm4_cutL_tbl
- 0x80C9B658: cKF_bs_r_ef_s_palm4_cutL
- 0x80C9B660: cKF_ckcb_r_ef_s_palm4_cutR_tbl
- 0x80C9B664: cKF_kn_ef_s_palm4_cutR_tbl
- 0x80C9B678: cKF_c_ef_s_palm4_cutR_tbl
- 0x80C9B684: cKF_ds_ef_s_palm4_cutR_tbl
- 0x80C9B8AC: cKF_ba_r_ef_s_palm4_cutR
- 0x80C9B8C0: ef_s_palm4_cutR_v
- 0x80C9BB20: ef_s_palm4_cutR_leaf_model
- 0x80C9BB60: ef_s_palm4_cutR_trunk_model
- 0x80C9BB98: cKF_je_r_ef_s_palm4_cutR_tbl
- 0x80C9BBC8: cKF_bs_r_ef_s_palm4_cutR
- 0x80C9BBD0: cKF_ckcb_r_ef_s_palm4_shakeL_tbl
- 0x80C9BBD4: cKF_kn_ef_s_palm4_shakeL_tbl
- 0x80C9BBD8: cKF_c_ef_s_palm4_shakeL_tbl
- 0x80C9BBE8: cKF_ds_ef_s_palm4_shakeL_tbl
- 0x80C9BC68: cKF_ba_r_ef_s_palm4_shakeL
- 0x80C9BC80: cKF_ckcb_r_ef_s_palm4_shakeS_tbl
- 0x80C9BC84: cKF_kn_ef_s_palm4_shakeS_tbl
- 0x80C9BC88: cKF_c_ef_s_palm4_shakeS_tbl
- 0x80C9BC98: cKF_ds_ef_s_palm4_shakeS_tbl
- 0x80C9BCBC: cKF_ba_r_ef_s_palm4_shakeS
- 0x80C9BCD0: cKF_ckcb_r_ef_s_palm4_shake_tbl
- 0x80C9BCD4: cKF_kn_ef_s_palm4_shake_tbl
- 0x80C9BCD8: cKF_c_ef_s_palm4_shake_tbl
- 0x80C9BCE8: cKF_ds_ef_s_palm4_shake_tbl
- 0x80C9BD24: cKF_ba_r_ef_s_palm4_shake
- 0x80C9BD38: ef_s_palm4_shake_v
- 0x80C9BF38: ef_s_palm4_shake_model
- 0x80C9BF78: cKF_je_r_ef_s_palm4_shake_tbl
- 0x80C9BF90: cKF_bs_r_ef_s_palm4_shake
- 0x80C9BF98: cKF_ckcb_r_ef_s_palm5_cutL_tbl
- 0x80C9BF9C: cKF_kn_ef_s_palm5_cutL_tbl
- 0x80C9BFB0: cKF_c_ef_s_palm5_cutL_tbl
- 0x80C9BFBC: cKF_ds_ef_s_palm5_cutL_tbl
- 0x80C9C1E4: cKF_ba_r_ef_s_palm5_cutL
- 0x80C9C1F8: ef_s_palm5_cutL_v
- 0x80C9C558: ef_s_palm5_cutL_leaf_model
- 0x80C9C5B8: ef_s_palm5_cutL_trunk_model
- 0x80C9C5F0: cKF_je_r_ef_s_palm5_cutL_tbl
- 0x80C9C620: cKF_bs_r_ef_s_palm5_cutL
- 0x80C9C628: cKF_ckcb_r_ef_s_palm5_cutR_tbl
- 0x80C9C62C: cKF_kn_ef_s_palm5_cutR_tbl
- 0x80C9C640: cKF_c_ef_s_palm5_cutR_tbl
- 0x80C9C64C: cKF_ds_ef_s_palm5_cutR_tbl
- 0x80C9C874: cKF_ba_r_ef_s_palm5_cutR
- 0x80C9C888: ef_s_palm5_cutR_v
- 0x80C9CBE8: ef_s_palm5_cutR_leaf_model
- 0x80C9CC48: ef_s_palm5_cutR_trunk_model
- 0x80C9CC80: cKF_je_r_ef_s_palm5_cutR_tbl
- 0x80C9CCB0: cKF_bs_r_ef_s_palm5_cutR
- 0x80C9CCB8: cKF_ckcb_r_ef_s_palm5_shakeL_tbl
- 0x80C9CCBC: cKF_kn_ef_s_palm5_shakeL_tbl
- 0x80C9CCC8: cKF_c_ef_s_palm5_shakeL_tbl
- 0x80C9CCD0: cKF_ds_ef_s_palm5_shakeL_tbl
- 0x80C9CD54: cKF_ba_r_ef_s_palm5_shakeL
- 0x80C9CD68: cKF_ckcb_r_ef_s_palm5_shakeS_tbl
- 0x80C9CD6C: cKF_kn_ef_s_palm5_shakeS_tbl
- 0x80C9CD78: cKF_c_ef_s_palm5_shakeS_tbl
- 0x80C9CD80: cKF_ds_ef_s_palm5_shakeS_tbl
- 0x80C9CDDC: cKF_ba_r_ef_s_palm5_shakeS
- 0x80C9CDF0: cKF_ckcb_r_ef_s_palm5_shake_tbl
- 0x80C9CDF4: cKF_kn_ef_s_palm5_shake_tbl
- 0x80C9CDF8: cKF_c_ef_s_palm5_shake_tbl
- 0x80C9CE08: cKF_ds_ef_s_palm5_shake_tbl
- 0x80C9CE44: cKF_ba_r_ef_s_palm5_shake
- 0x80C9CE58: ef_s_palm5_shake_v
- 0x80C9D158: ef_s_palm5_shake_model
- 0x80C9D1B8: cKF_je_r_ef_s_palm5_shake_tbl
- 0x80C9D1D0: cKF_bs_r_ef_s_palm5_shake
- 0x80C9D1D8: ef_s_palm_leaf_modeset
- 0x80C9D210: ef_s_palm_trunk_modeset
- 0x80C9D240: obj_s_palm_leaf_tex_txt
- 0x80C9DA40: obj_s_palm_cutS_tex_txt
- 0x80C9DC40: obj_s_palm_cutL_tex_txt
- 0x80C9E240: cKF_ckcb_r_ef_s_tree3_cutL_tbl
- 0x80C9E244: cKF_kn_ef_s_tree3_cutL_tbl
- 0x80C9E254: cKF_c_ef_s_tree3_cutL_tbl
- 0x80C9E264: cKF_ds_ef_s_tree3_cutL_tbl
- 0x80C9E468: cKF_ba_r_ef_s_tree3_cutL
- 0x80C9E480: ef_s_tree3_cutL_v
- 0x80C9E530: ef_s_tree3_cutL_leaf_model
- 0x80C9E558: ef_s_tree3_cutL_trunk_model
- 0x80C9E590: cKF_je_r_ef_s_tree3_cutL_tbl
- 0x80C9E5C0: cKF_bs_r_ef_s_tree3_cutL
- 0x80C9E5C8: cKF_ckcb_r_ef_s_tree3_cutR_tbl
- 0x80C9E5CC: cKF_kn_ef_s_tree3_cutR_tbl
- 0x80C9E5DC: cKF_c_ef_s_tree3_cutR_tbl
- 0x80C9E5EC: cKF_ds_ef_s_tree3_cutR_tbl
- 0x80C9E7F0: cKF_ba_r_ef_s_tree3_cutR
- 0x80C9E808: ef_s_tree3_cutR_v
- 0x80C9E8B8: ef_s_tree3_cutR_leaf_model
- 0x80C9E8E0: ef_s_tree3_cutR_trunk_model
- 0x80C9E918: cKF_je_r_ef_s_tree3_cutR_tbl
- 0x80C9E948: cKF_bs_r_ef_s_tree3_cutR
- 0x80C9E950: cKF_ckcb_r_ef_s_tree3_shakeL_tbl
- 0x80C9E954: cKF_kn_ef_s_tree3_shakeL_tbl
- 0x80C9E958: cKF_c_ef_s_tree3_shakeL_tbl
- 0x80C9E968: cKF_ds_ef_s_tree3_shakeL_tbl
- 0x80C9E9E8: cKF_ba_r_ef_s_tree3_shakeL
- 0x80C9EA00: cKF_ckcb_r_ef_s_tree3_shakeS_tbl
- 0x80C9EA04: cKF_kn_ef_s_tree3_shakeS_tbl
- 0x80C9EA08: cKF_c_ef_s_tree3_shakeS_tbl
- 0x80C9EA18: cKF_ds_ef_s_tree3_shakeS_tbl
- 0x80C9EA3C: cKF_ba_r_ef_s_tree3_shakeS
- 0x80C9EA50: cKF_ckcb_r_ef_s_tree3_shake_tbl
- 0x80C9EA54: cKF_kn_ef_s_tree3_shake_tbl
- 0x80C9EA58: cKF_c_ef_s_tree3_shake_tbl
- 0x80C9EA68: cKF_ds_ef_s_tree3_shake_tbl
- 0x80C9EAA4: cKF_ba_r_ef_s_tree3_shake
- 0x80C9EAB8: ef_s_tree3_shake_v
- 0x80C9EB08: ef_s_tree3_shake_leaf_model
- 0x80C9EB30: cKF_je_r_ef_s_tree3_shake_tbl
- 0x80C9EB48: cKF_bs_r_ef_s_tree3_shake
- 0x80C9EB50: cKF_ckcb_r_ef_s_tree4_cutL_tbl
- 0x80C9EB54: cKF_kn_ef_s_tree4_cutL_tbl
- 0x80C9EB64: cKF_c_ef_s_tree4_cutL_tbl
- 0x80C9EB74: cKF_ds_ef_s_tree4_cutL_tbl
- 0x80C9ED78: cKF_ba_r_ef_s_tree4_cutL
- 0x80C9ED90: ef_s_tree4_cutL_v
- 0x80C9EE90: ef_s_tree4_cutL_leaf_model
- 0x80C9EEC8: ef_s_tree4_cutL_trunk_model
- 0x80C9EF00: cKF_je_r_ef_s_tree4_cutL_tbl
- 0x80C9EF30: cKF_bs_r_ef_s_tree4_cutL
- 0x80C9EF38: cKF_ckcb_r_ef_s_tree4_cutR_tbl
- 0x80C9EF3C: cKF_kn_ef_s_tree4_cutR_tbl
- 0x80C9EF4C: cKF_c_ef_s_tree4_cutR_tbl
- 0x80C9EF5C: cKF_ds_ef_s_tree4_cutR_tbl
- 0x80C9F160: cKF_ba_r_ef_s_tree4_cutR
- 0x80C9F178: ef_s_tree4_cutR_v
- 0x80C9F278: ef_s_tree4_cutR_leaf_model
- 0x80C9F2B0: ef_s_tree4_cutR_trunk_model
- 0x80C9F2E8: cKF_je_r_ef_s_tree4_cutR_tbl
- 0x80C9F318: cKF_bs_r_ef_s_tree4_cutR
- 0x80C9F320: cKF_ckcb_r_ef_s_tree4_shakeL_tbl
- 0x80C9F324: cKF_kn_ef_s_tree4_shakeL_tbl
- 0x80C9F328: cKF_c_ef_s_tree4_shakeL_tbl
- 0x80C9F338: cKF_ds_ef_s_tree4_shakeL_tbl
- 0x80C9F3B8: cKF_ba_r_ef_s_tree4_shakeL
- 0x80C9F3D0: cKF_ckcb_r_ef_s_tree4_shakeS_tbl
- 0x80C9F3D4: cKF_kn_ef_s_tree4_shakeS_tbl
- 0x80C9F3D8: cKF_c_ef_s_tree4_shakeS_tbl
- 0x80C9F3E8: cKF_ds_ef_s_tree4_shakeS_tbl
- 0x80C9F40C: cKF_ba_r_ef_s_tree4_shakeS
- 0x80C9F420: cKF_ckcb_r_ef_s_tree4_shake_tbl
- 0x80C9F424: cKF_kn_ef_s_tree4_shake_tbl
- 0x80C9F428: cKF_c_ef_s_tree4_shake_tbl
- 0x80C9F438: cKF_ds_ef_s_tree4_shake_tbl
- 0x80C9F474: cKF_ba_r_ef_s_tree4_shake
- 0x80C9F488: ef_s_tree4_shake_v
- 0x80C9F528: ef_s_tree4_shake_leaf_model
- 0x80C9F560: cKF_je_r_ef_s_tree4_shake_tbl
- 0x80C9F578: cKF_bs_r_ef_s_tree4_shake
- 0x80C9F580: cKF_ckcb_r_ef_s_tree5_cutL_tbl
- 0x80C9F584: cKF_kn_ef_s_tree5_cutL_tbl
- 0x80C9F594: cKF_c_ef_s_tree5_cutL_tbl
- 0x80C9F5A4: cKF_ds_ef_s_tree5_cutL_tbl
- 0x80C9F7A8: cKF_ba_r_ef_s_tree5_cutL
- 0x80C9F7C0: ef_s_tree5_cutL_v
- 0x80C9F910: ef_s_tree5_cutL_leaf_model
- 0x80C9F958: ef_s_tree5_cutL_trunk_model
- 0x80C9F990: cKF_je_r_ef_s_tree5_cutL_tbl
- 0x80C9F9C0: cKF_bs_r_ef_s_tree5_cutL
- 0x80C9F9C8: cKF_ckcb_r_ef_s_tree5_cutR_tbl
- 0x80C9F9CC: cKF_kn_ef_s_tree5_cutR_tbl
- 0x80C9F9DC: cKF_c_ef_s_tree5_cutR_tbl
- 0x80C9F9EC: cKF_ds_ef_s_tree5_cutR_tbl
- 0x80C9FBF0: cKF_ba_r_ef_s_tree5_cutR
- 0x80C9FC08: ef_s_tree5_cutR_v
- 0x80C9FD58: ef_s_tree5_cutR_leaf_model
- 0x80C9FDA0: ef_s_tree5_cutR_trunk_model
- 0x80C9FDD8: cKF_je_r_ef_s_tree5_cutR_tbl
- 0x80C9FE08: cKF_bs_r_ef_s_tree5_cutR
- 0x80C9FE10: cKF_ckcb_r_ef_s_tree5_shakeL_tbl
- 0x80C9FE14: cKF_kn_ef_s_tree5_shakeL_tbl
- 0x80C9FE20: cKF_c_ef_s_tree5_shakeL_tbl
- 0x80C9FE28: cKF_ds_ef_s_tree5_shakeL_tbl
- 0x80C9FE9C: cKF_ba_r_ef_s_tree5_shakeL
- 0x80C9FEB0: cKF_ckcb_r_ef_s_tree5_shakeS_tbl
- 0x80C9FEB4: cKF_kn_ef_s_tree5_shakeS_tbl
- 0x80C9FEB8: cKF_c_ef_s_tree5_shakeS_tbl
- 0x80C9FEC8: cKF_ds_ef_s_tree5_shakeS_tbl
- 0x80C9FEE8: cKF_ba_r_ef_s_tree5_shakeS
- 0x80C9FF00: cKF_ckcb_r_ef_s_tree5_shake_tbl
- 0x80C9FF04: cKF_kn_ef_s_tree5_shake_tbl
- 0x80C9FF08: cKF_c_ef_s_tree5_shake_tbl
- 0x80C9FF18: cKF_ds_ef_s_tree5_shake_tbl
- 0x80C9FF54: cKF_ba_r_ef_s_tree5_shake
- 0x80C9FF68: ef_s_tree5_shake_v
- 0x80CA0058: ef_s_tree5_shake_model
- 0x80CA00A0: cKF_je_r_ef_s_tree5_shake_tbl
- 0x80CA00B8: cKF_bs_r_ef_s_tree5_shake
- 0x80CA00C0: ef_s_tree_leaf_modeset
- 0x80CA00F8: ef_s_tree_trunk_modeset
- 0x80CA0120: obj_s_tree_leaf_tex_txt
- 0x80CA0920: obj_s_tree_cutS_tex_txt
- 0x80CA0B20: obj_s_tree_cutL_tex_txt
- 0x80CA1120: cKF_ckcb_r_ef_w_cedar3_cutL_tbl
- 0x80CA1124: cKF_kn_ef_w_cedar3_cutL_tbl
- 0x80CA1134: cKF_c_ef_w_cedar3_cutL_tbl
- 0x80CA1144: cKF_ds_ef_w_cedar3_cutL_tbl
- 0x80CA1348: cKF_ba_r_ef_w_cedar3_cutL
- 0x80CA1360: ef_w_cedar3_cutL_v
- 0x80CA1530: ef_w_cedar3_cutL_leaf_model
- 0x80CA1560: ef_w_cedar3_cutL_trunk_model
- 0x80CA1598: cKF_je_r_ef_w_cedar3_cutL_tbl
- 0x80CA15C8: cKF_bs_r_ef_w_cedar3_cutL
- 0x80CA15D0: cKF_ckcb_r_ef_w_cedar3_cutR_tbl
- 0x80CA15D4: cKF_kn_ef_w_cedar3_cutR_tbl
- 0x80CA15E4: cKF_c_ef_w_cedar3_cutR_tbl
- 0x80CA15F4: cKF_ds_ef_w_cedar3_cutR_tbl
- 0x80CA17F8: cKF_ba_r_ef_w_cedar3_cutR
- 0x80CA1810: ef_w_cedar3_cutR_v
- 0x80CA19E0: ef_w_cedar3_cutR_leaf_model
- 0x80CA1A10: ef_w_cedar3_cutR_trunk_model
- 0x80CA1A48: cKF_je_r_ef_w_cedar3_cutR_tbl
- 0x80CA1A78: cKF_bs_r_ef_w_cedar3_cutR
- 0x80CA1A80: cKF_ckcb_r_ef_w_cedar3_shakeL_tbl
- 0x80CA1A84: cKF_kn_ef_w_cedar3_shakeL_tbl
- 0x80CA1A90: cKF_c_ef_w_cedar3_shakeL_tbl
- 0x80CA1A98: cKF_ds_ef_w_cedar3_shakeL_tbl
- 0x80CA1B0C: cKF_ba_r_ef_w_cedar3_shakeL
- 0x80CA1B20: cKF_ckcb_r_ef_w_cedar3_shakeS_tbl
- 0x80CA1B24: cKF_kn_ef_w_cedar3_shakeS_tbl
- 0x80CA1B28: cKF_c_ef_w_cedar3_shakeS_tbl
- 0x80CA1B38: cKF_ds_ef_w_cedar3_shakeS_tbl
- 0x80CA1B58: cKF_ba_r_ef_w_cedar3_shakeS
- 0x80CA1B70: cKF_ckcb_r_ef_w_cedar3_shake_tbl
- 0x80CA1B74: cKF_kn_ef_w_cedar3_shake_tbl
- 0x80CA1B7C: cKF_c_ef_w_cedar3_shake_tbl
- 0x80CA1B88: cKF_ds_ef_w_cedar3_shake_tbl
- 0x80CA1BCC: cKF_ba_r_ef_w_cedar3_shake
- 0x80CA1BE0: ef_w_cedar3_shake_v
- 0x80CA1D50: ef_w_cedar3_shake_model
- 0x80CA1D80: cKF_je_r_ef_w_cedar3_shake_tbl
- 0x80CA1D98: cKF_bs_r_ef_w_cedar3_shake
- 0x80CA1DA0: cKF_ckcb_r_ef_w_cedar4_cutL_tbl
- 0x80CA1DA4: cKF_kn_ef_w_cedar4_cutL_tbl
- 0x80CA1DB4: cKF_c_ef_w_cedar4_cutL_tbl
- 0x80CA1DC4: cKF_ds_ef_w_cedar4_cutL_tbl
- 0x80CA1FC8: cKF_ba_r_ef_w_cedar4_cutL
- 0x80CA1FE0: ef_w_cedar4_cutL_v
- 0x80CA2330: ef_w_cedar4_cutL_leaf_model
- 0x80CA2380: ef_w_cedar4_cutL_trunk_model
- 0x80CA23B8: cKF_je_r_ef_w_cedar4_cutL_tbl
- 0x80CA23E8: cKF_bs_r_ef_w_cedar4_cutL
- 0x80CA23F0: cKF_ckcb_r_ef_w_cedar4_cutR_tbl
- 0x80CA23F4: cKF_kn_ef_w_cedar4_cutR_tbl
- 0x80CA2404: cKF_c_ef_w_cedar4_cutR_tbl
- 0x80CA2414: cKF_ds_ef_w_cedar4_cutR_tbl
- 0x80CA2618: cKF_ba_r_ef_w_cedar4_cutR
- 0x80CA2630: ef_w_cedar4_cutR_v
- 0x80CA2980: ef_w_cedar4_cutR_leaf_model
- 0x80CA29D0: ef_w_cedar4_cutR_trunk_model
- 0x80CA2A08: cKF_je_r_ef_w_cedar4_cutR_tbl
- 0x80CA2A38: cKF_bs_r_ef_w_cedar4_cutR
- 0x80CA2A40: cKF_ckcb_r_ef_w_cedar4_shakeL_tbl
- 0x80CA2A44: cKF_kn_ef_w_cedar4_shakeL_tbl
- 0x80CA2A50: cKF_c_ef_w_cedar4_shakeL_tbl
- 0x80CA2A58: cKF_ds_ef_w_cedar4_shakeL_tbl
- 0x80CA2ACC: cKF_ba_r_ef_w_cedar4_shakeL
- 0x80CA2AE0: cKF_ckcb_r_ef_w_cedar4_shakeS_tbl
- 0x80CA2AE4: cKF_kn_ef_w_cedar4_shakeS_tbl
- 0x80CA2AE8: cKF_c_ef_w_cedar4_shakeS_tbl
- 0x80CA2AF8: cKF_ds_ef_w_cedar4_shakeS_tbl
- 0x80CA2B18: cKF_ba_r_ef_w_cedar4_shakeS
- 0x80CA2B30: cKF_ckcb_r_ef_w_cedar4_shake_tbl
- 0x80CA2B34: cKF_kn_ef_w_cedar4_shake_tbl
- 0x80CA2B3C: cKF_c_ef_w_cedar4_shake_tbl
- 0x80CA2B48: cKF_ds_ef_w_cedar4_shake_tbl
- 0x80CA2B8C: cKF_ba_r_ef_w_cedar4_shake
- 0x80CA2BA0: ef_w_cedar4_shake_v
- 0x80CA2E90: ef_w_cedar4_shake_model
- 0x80CA2EE0: cKF_je_r_ef_w_cedar4_shake_tbl
- 0x80CA2EF8: cKF_bs_r_ef_w_cedar4_shake
- 0x80CA2F00: cKF_ckcb_r_ef_x_cedar5_cutL_tbl
- 0x80CA2F08: cKF_kn_ef_x_cedar5_cutL_tbl
- 0x80CA2F18: cKF_c_ef_x_cedar5_cutL_tbl
- 0x80CA2F2C: cKF_ds_ef_x_cedar5_cutL_tbl
- 0x80CA3130: cKF_ba_r_ef_x_cedar5_cutL
- 0x80CA3148: ef_x_cedar5_cutL_v
- 0x80CA3788: ef_x_cedar5_cutL_light_model
- 0x80CA37D0: ef_x_cedar5_cutL_leaf_model
- 0x80CA3840: ef_x_cedar5_cutL_trunk_model
- 0x80CA3878: cKF_je_r_ef_x_cedar5_cutL_tbl
- 0x80CA38B4: cKF_bs_r_ef_x_cedar5_cutL
- 0x80CA38C0: cKF_ckcb_r_ef_x_cedar5_cutR_tbl
- 0x80CA38C8: cKF_kn_ef_x_cedar5_cutR_tbl
- 0x80CA38D8: cKF_c_ef_x_cedar5_cutR_tbl
- 0x80CA38EC: cKF_ds_ef_x_cedar5_cutR_tbl
- 0x80CA3AF0: cKF_ba_r_ef_x_cedar5_cutR
- 0x80CA3B08: ef_x_cedar5_cutR_v
- 0x80CA4148: ef_x_cedar5_cutR_light_model
- 0x80CA4190: ef_x_cedar5_cutR_leaf_model
- 0x80CA4200: ef_x_cedar5_cutR_trunk_model
- 0x80CA4238: cKF_je_r_ef_x_cedar5_cutR_tbl
- 0x80CA4274: cKF_bs_r_ef_x_cedar5_cutR
- 0x80CA4280: cKF_ckcb_r_ef_x_cedar5_shakeL_tbl
- 0x80CA4284: cKF_kn_ef_x_cedar5_shakeL_tbl
- 0x80CA4290: cKF_c_ef_x_cedar5_shakeL_tbl
- 0x80CA42A0: cKF_ds_ef_x_cedar5_shakeL_tbl
- 0x80CA4314: cKF_ba_r_ef_x_cedar5_shakeL
- 0x80CA4328: cKF_ckcb_r_ef_x_cedar5_shakeS_tbl
- 0x80CA432C: cKF_kn_ef_x_cedar5_shakeS_tbl
- 0x80CA4330: cKF_c_ef_x_cedar5_shakeS_tbl
- 0x80CA4348: cKF_ds_ef_x_cedar5_shakeS_tbl
- 0x80CA4368: cKF_ba_r_ef_x_cedar5_shakeS
- 0x80CA4380: cKF_ckcb_r_ef_x_cedar5_shake_tbl
- 0x80CA4384: cKF_kn_ef_x_cedar5_shake_tbl
- 0x80CA438C: cKF_c_ef_x_cedar5_shake_tbl
- 0x80CA43A0: cKF_ds_ef_x_cedar5_shake_tbl
- 0x80CA43E4: cKF_ba_r_ef_x_cedar5_shake
- 0x80CA43F8: ef_x_cedar5_shake_v
- 0x80CA49D8: ef_x_cedar5_shake_light_model
- 0x80CA4A20: ef_x_cedar5_shake_model
- 0x80CA4A90: cKF_je_r_ef_x_cedar5_shake_tbl
- 0x80CA4AB4: cKF_bs_r_ef_x_cedar5_shake
- 0x80CA4AC0: ef_w_cedar_leaf_modeset
- 0x80CA4AF8: ef_w_cedar_trunk_modeset
- 0x80CA4B20: ef_w_cedar_light_modeset
- 0x80CA4B80: obj_w_cedar_leaf_tex_txt
- 0x80CA5380: obj_w_cedar_cutS_tex_txt
- 0x80CA5580: obj_w_cedar_cutL_tex_txt
- 0x80CA5B80: obj_x_cedar_light_tex_txt
- 0x80CA5D80: cKF_ckcb_r_ef_w_palm3_cutL_tbl
- 0x80CA5D84: cKF_kn_ef_w_palm3_cutL_tbl
- 0x80CA5D98: cKF_c_ef_w_palm3_cutL_tbl
- 0x80CA5DA4: cKF_ds_ef_w_palm3_cutL_tbl
- 0x80CA5FCC: cKF_ba_r_ef_w_palm3_cutL
- 0x80CA5FE0: ef_w_palm3_cutL_v
- 0x80CA6140: ef_w_palm3_cutL_leaf_model
- 0x80CA6170: ef_w_palm3_cutL_trunk_model
- 0x80CA61A8: cKF_je_r_ef_w_palm3_cutL_tbl
- 0x80CA61D8: cKF_bs_r_ef_w_palm3_cutL
- 0x80CA61E0: cKF_ckcb_r_ef_w_palm3_cutR_tbl
- 0x80CA61E4: cKF_kn_ef_w_palm3_cutR_tbl
- 0x80CA61F8: cKF_c_ef_w_palm3_cutR_tbl
- 0x80CA6204: cKF_ds_ef_w_palm3_cutR_tbl
- 0x80CA642C: cKF_ba_r_ef_w_palm3_cutR
- 0x80CA6440: ef_w_palm3_cutR_v
- 0x80CA65A0: ef_w_palm3_cutR_leaf_model
- 0x80CA65D0: ef_w_palm3_cutR_trunk_model
- 0x80CA6608: cKF_je_r_ef_w_palm3_cutR_tbl
- 0x80CA6638: cKF_bs_r_ef_w_palm3_cutR
- 0x80CA6640: cKF_ckcb_r_ef_w_palm3_shakeL_tbl
- 0x80CA6644: cKF_kn_ef_w_palm3_shakeL_tbl
- 0x80CA6648: cKF_c_ef_w_palm3_shakeL_tbl
- 0x80CA6658: cKF_ds_ef_w_palm3_shakeL_tbl
- 0x80CA66D8: cKF_ba_r_ef_w_palm3_shakeL
- 0x80CA66F0: cKF_ckcb_r_ef_w_palm3_shakeS_tbl
- 0x80CA66F4: cKF_kn_ef_w_palm3_shakeS_tbl
- 0x80CA66F8: cKF_c_ef_w_palm3_shakeS_tbl
- 0x80CA6708: cKF_ds_ef_w_palm3_shakeS_tbl
- 0x80CA672C: cKF_ba_r_ef_w_palm3_shakeS
- 0x80CA6740: cKF_ckcb_r_ef_w_palm3_shake_tbl
- 0x80CA6744: cKF_kn_ef_w_palm3_shake_tbl
- 0x80CA6748: cKF_c_ef_w_palm3_shake_tbl
- 0x80CA6758: cKF_ds_ef_w_palm3_shake_tbl
- 0x80CA67AC: cKF_ba_r_ef_w_palm3_shake
- 0x80CA67C0: ef_w_palm3_shake_v
- 0x80CA68C0: ef_w_palm3_shake_model
- 0x80CA68F0: cKF_je_r_ef_w_palm3_shake_tbl
- 0x80CA6908: cKF_bs_r_ef_w_palm3_shake
- 0x80CA6910: cKF_ckcb_r_ef_w_palm4_cutL_tbl
- 0x80CA6914: cKF_kn_ef_w_palm4_cutL_tbl
- 0x80CA6928: cKF_c_ef_w_palm4_cutL_tbl
- 0x80CA6934: cKF_ds_ef_w_palm4_cutL_tbl
- 0x80CA6B5C: cKF_ba_r_ef_w_palm4_cutL
- 0x80CA6B70: ef_w_palm4_cutL_v
- 0x80CA6DD0: ef_w_palm4_cutL_leaf_model
- 0x80CA6E10: ef_w_palm4_cutL_trunk_model
- 0x80CA6E48: cKF_je_r_ef_w_palm4_cutL_tbl
- 0x80CA6E78: cKF_bs_r_ef_w_palm4_cutL
- 0x80CA6E80: cKF_ckcb_r_ef_w_palm4_cutR_tbl
- 0x80CA6E84: cKF_kn_ef_w_palm4_cutR_tbl
- 0x80CA6E98: cKF_c_ef_w_palm4_cutR_tbl
- 0x80CA6EA4: cKF_ds_ef_w_palm4_cutR_tbl
- 0x80CA70CC: cKF_ba_r_ef_w_palm4_cutR
- 0x80CA70E0: ef_w_palm4_cutR_v
- 0x80CA7340: ef_w_palm4_cutR_leaf_model
- 0x80CA7380: ef_w_palm4_cutR_trunk_model
- 0x80CA73B8: cKF_je_r_ef_w_palm4_cutR_tbl
- 0x80CA73E8: cKF_bs_r_ef_w_palm4_cutR
- 0x80CA73F0: cKF_ckcb_r_ef_w_palm4_shakeL_tbl
- 0x80CA73F4: cKF_kn_ef_w_palm4_shakeL_tbl
- 0x80CA73F8: cKF_c_ef_w_palm4_shakeL_tbl
- 0x80CA7408: cKF_ds_ef_w_palm4_shakeL_tbl
- 0x80CA7488: cKF_ba_r_ef_w_palm4_shakeL
- 0x80CA74A0: cKF_ckcb_r_ef_w_palm4_shakeS_tbl
- 0x80CA74A4: cKF_kn_ef_w_palm4_shakeS_tbl
- 0x80CA74A8: cKF_c_ef_w_palm4_shakeS_tbl
- 0x80CA74B8: cKF_ds_ef_w_palm4_shakeS_tbl
- 0x80CA74DC: cKF_ba_r_ef_w_palm4_shakeS
- 0x80CA74F0: cKF_ckcb_r_ef_w_palm4_shake_tbl
- 0x80CA74F4: cKF_kn_ef_w_palm4_shake_tbl
- 0x80CA74F8: cKF_c_ef_w_palm4_shake_tbl
- 0x80CA7508: cKF_ds_ef_w_palm4_shake_tbl
- 0x80CA7544: cKF_ba_r_ef_w_palm4_shake
- 0x80CA7558: ef_w_palm4_shake_v
- 0x80CA7758: ef_w_palm4_shake_model
- 0x80CA7798: cKF_je_r_ef_w_palm4_shake_tbl
- 0x80CA77B0: cKF_bs_r_ef_w_palm4_shake
- 0x80CA77B8: cKF_ckcb_r_ef_w_palm5_cutL_tbl
- 0x80CA77BC: cKF_kn_ef_w_palm5_cutL_tbl
- 0x80CA77D0: cKF_c_ef_w_palm5_cutL_tbl
- 0x80CA77DC: cKF_ds_ef_w_palm5_cutL_tbl
- 0x80CA7A04: cKF_ba_r_ef_w_palm5_cutL
- 0x80CA7A18: ef_w_palm5_cutL_v
- 0x80CA7D78: ef_w_palm5_cutL_leaf_model
- 0x80CA7DD8: ef_w_palm5_cutL_trunk_model
- 0x80CA7E10: cKF_je_r_ef_w_palm5_cutL_tbl
- 0x80CA7E40: cKF_bs_r_ef_w_palm5_cutL
- 0x80CA7E48: cKF_ckcb_r_ef_w_palm5_cutR_tbl
- 0x80CA7E4C: cKF_kn_ef_w_palm5_cutR_tbl
- 0x80CA7E60: cKF_c_ef_w_palm5_cutR_tbl
- 0x80CA7E6C: cKF_ds_ef_w_palm5_cutR_tbl
- 0x80CA8094: cKF_ba_r_ef_w_palm5_cutR
- 0x80CA80A8: ef_w_palm5_cutR_v
- 0x80CA8408: ef_w_palm5_cutR_leaf_model
- 0x80CA8468: ef_w_palm5_cutR_trunk_model
- 0x80CA84A0: cKF_je_r_ef_w_palm5_cutR_tbl
- 0x80CA84D0: cKF_bs_r_ef_w_palm5_cutR
- 0x80CA84D8: cKF_ckcb_r_ef_w_palm5_shakeL_tbl
- 0x80CA84DC: cKF_kn_ef_w_palm5_shakeL_tbl
- 0x80CA84E8: cKF_c_ef_w_palm5_shakeL_tbl
- 0x80CA84F0: cKF_ds_ef_w_palm5_shakeL_tbl
- 0x80CA8574: cKF_ba_r_ef_w_palm5_shakeL
- 0x80CA8588: cKF_ckcb_r_ef_w_palm5_shakeS_tbl
- 0x80CA858C: cKF_kn_ef_w_palm5_shakeS_tbl
- 0x80CA8598: cKF_c_ef_w_palm5_shakeS_tbl
- 0x80CA85A0: cKF_ds_ef_w_palm5_shakeS_tbl
- 0x80CA85FC: cKF_ba_r_ef_w_palm5_shakeS
- 0x80CA8610: cKF_ckcb_r_ef_w_palm5_shake_tbl
- 0x80CA8614: cKF_kn_ef_w_palm5_shake_tbl
- 0x80CA8618: cKF_c_ef_w_palm5_shake_tbl
- 0x80CA8628: cKF_ds_ef_w_palm5_shake_tbl
- 0x80CA8664: cKF_ba_r_ef_w_palm5_shake
- 0x80CA8678: ef_w_palm5_shake_v
- 0x80CA8978: ef_w_palm5_shake_model
- 0x80CA89D8: cKF_je_r_ef_w_palm5_shake_tbl
- 0x80CA89F0: cKF_bs_r_ef_w_palm5_shake
- 0x80CA89F8: ef_w_palm_leaf_modeset
- 0x80CA8A30: ef_w_palm_trunk_modeset
- 0x80CA8A60: obj_w_palm_leaf_tex_txt
- 0x80CA9260: obj_w_palm_cutS_tex_txt
- 0x80CA9460: obj_w_palm_cutL_tex_txt
- 0x80CA9A60: cKF_ckcb_r_ef_w_tree3_cutL_tbl
- 0x80CA9A64: cKF_kn_ef_w_tree3_cutL_tbl
- 0x80CA9A74: cKF_c_ef_w_tree3_cutL_tbl
- 0x80CA9A84: cKF_ds_ef_w_tree3_cutL_tbl
- 0x80CA9C88: cKF_ba_r_ef_w_tree3_cutL
- 0x80CA9CA0: ef_w_tree3_cutL_v
- 0x80CA9D50: ef_w_tree3_cutL_leaf_model
- 0x80CA9D78: ef_w_tree3_cutL_trunk_model
- 0x80CA9DB0: cKF_je_r_ef_w_tree3_cutL_tbl
- 0x80CA9DE0: cKF_bs_r_ef_w_tree3_cutL
- 0x80CA9DE8: cKF_ckcb_r_ef_w_tree3_cutR_tbl
- 0x80CA9DEC: cKF_kn_ef_w_tree3_cutR_tbl
- 0x80CA9DFC: cKF_c_ef_w_tree3_cutR_tbl
- 0x80CA9E0C: cKF_ds_ef_w_tree3_cutR_tbl
- 0x80CAA010: cKF_ba_r_ef_w_tree3_cutR
- 0x80CAA028: ef_w_tree3_cutR_v
- 0x80CAA0D8: ef_w_tree3_cutR_leaf_model
- 0x80CAA100: ef_w_tree3_cutR_trunk_model
- 0x80CAA138: cKF_je_r_ef_w_tree3_cutR_tbl
- 0x80CAA168: cKF_bs_r_ef_w_tree3_cutR
- 0x80CAA170: cKF_ckcb_r_ef_w_tree3_shakeL_tbl
- 0x80CAA174: cKF_kn_ef_w_tree3_shakeL_tbl
- 0x80CAA178: cKF_c_ef_w_tree3_shakeL_tbl
- 0x80CAA188: cKF_ds_ef_w_tree3_shakeL_tbl
- 0x80CAA208: cKF_ba_r_ef_w_tree3_shakeL
- 0x80CAA220: cKF_ckcb_r_ef_w_tree3_shakeS_tbl
- 0x80CAA224: cKF_kn_ef_w_tree3_shakeS_tbl
- 0x80CAA228: cKF_c_ef_w_tree3_shakeS_tbl
- 0x80CAA238: cKF_ds_ef_w_tree3_shakeS_tbl
- 0x80CAA25C: cKF_ba_r_ef_w_tree3_shakeS
- 0x80CAA270: cKF_ckcb_r_ef_w_tree3_shake_tbl
- 0x80CAA274: cKF_kn_ef_w_tree3_shake_tbl
- 0x80CAA278: cKF_c_ef_w_tree3_shake_tbl
- 0x80CAA288: cKF_ds_ef_w_tree3_shake_tbl
- 0x80CAA2C4: cKF_ba_r_ef_w_tree3_shake
- 0x80CAA2D8: ef_w_tree3_shake_v
- 0x80CAA328: ef_w_tree3_shake_leaf_model
- 0x80CAA350: cKF_je_r_ef_w_tree3_shake_tbl
- 0x80CAA368: cKF_bs_r_ef_w_tree3_shake
- 0x80CAA370: cKF_ckcb_r_ef_w_tree4_cutL_tbl
- 0x80CAA374: cKF_kn_ef_w_tree4_cutL_tbl
- 0x80CAA384: cKF_c_ef_w_tree4_cutL_tbl
- 0x80CAA394: cKF_ds_ef_w_tree4_cutL_tbl
- 0x80CAA598: cKF_ba_r_ef_w_tree4_cutL
- 0x80CAA5B0: ef_w_tree4_cutL_v
- 0x80CAA6B0: ef_w_tree4_cutL_leaf_model
- 0x80CAA6E8: ef_w_tree4_cutL_trunk_model
- 0x80CAA720: cKF_je_r_ef_w_tree4_cutL_tbl
- 0x80CAA750: cKF_bs_r_ef_w_tree4_cutL
- 0x80CAA758: cKF_ckcb_r_ef_w_tree4_cutR_tbl
- 0x80CAA75C: cKF_kn_ef_w_tree4_cutR_tbl
- 0x80CAA76C: cKF_c_ef_w_tree4_cutR_tbl
- 0x80CAA77C: cKF_ds_ef_w_tree4_cutR_tbl
- 0x80CAA980: cKF_ba_r_ef_w_tree4_cutR
- 0x80CAA998: ef_w_tree4_cutR_v
- 0x80CAAA98: ef_w_tree4_cutR_leaf_model
- 0x80CAAAD0: ef_w_tree4_cutR_trunk_model
- 0x80CAAB08: cKF_je_r_ef_w_tree4_cutR_tbl
- 0x80CAAB38: cKF_bs_r_ef_w_tree4_cutR
- 0x80CAAB40: cKF_ckcb_r_ef_w_tree4_shakeL_tbl
- 0x80CAAB44: cKF_kn_ef_w_tree4_shakeL_tbl
- 0x80CAAB48: cKF_c_ef_w_tree4_shakeL_tbl
- 0x80CAAB58: cKF_ds_ef_w_tree4_shakeL_tbl
- 0x80CAABD8: cKF_ba_r_ef_w_tree4_shakeL
- 0x80CAABF0: cKF_ckcb_r_ef_w_tree4_shakeS_tbl
- 0x80CAABF4: cKF_kn_ef_w_tree4_shakeS_tbl
- 0x80CAABF8: cKF_c_ef_w_tree4_shakeS_tbl
- 0x80CAAC08: cKF_ds_ef_w_tree4_shakeS_tbl
- 0x80CAAC2C: cKF_ba_r_ef_w_tree4_shakeS
- 0x80CAAC40: cKF_ckcb_r_ef_w_tree4_shake_tbl
- 0x80CAAC44: cKF_kn_ef_w_tree4_shake_tbl
- 0x80CAAC48: cKF_c_ef_w_tree4_shake_tbl
- 0x80CAAC58: cKF_ds_ef_w_tree4_shake_tbl
- 0x80CAAC94: cKF_ba_r_ef_w_tree4_shake
- 0x80CAACA8: ef_w_tree4_shake_v
- 0x80CAAD48: ef_w_tree4_shake_leaf_model
- 0x80CAAD80: cKF_je_r_ef_w_tree4_shake_tbl
- 0x80CAAD98: cKF_bs_r_ef_w_tree4_shake
- 0x80CAADA0: ef_w_tree_leaf_modeset
- 0x80CAADD8: ef_w_tree_trunk_modeset
- 0x80CAAE00: ef_w_tree_light_modeset
- 0x80CAAE38: cKF_ckcb_r_ef_x_tree5_cutL_tbl
- 0x80CAAE40: cKF_kn_ef_x_tree5_cutL_tbl
- 0x80CAAE50: cKF_c_ef_x_tree5_cutL_tbl
- 0x80CAAE64: cKF_ds_ef_x_tree5_cutL_tbl
- 0x80CAB068: cKF_ba_r_ef_x_tree5_cutL
- 0x80CAB080: ef_x_tree5_cutL_v
- 0x80CAB290: obj_x_tree5_cutL_light_model
- 0x80CAB2C0: ef_x_tree5_cutL_leaf_model
- 0x80CAB308: ef_x_tree5_cutL_trunk_model
- 0x80CAB340: cKF_je_r_ef_x_tree5_cutL_tbl
- 0x80CAB37C: cKF_bs_r_ef_x_tree5_cutL
- 0x80CAB388: cKF_ckcb_r_ef_x_tree5_cutR_tbl
- 0x80CAB390: cKF_kn_ef_x_tree5_cutR_tbl
- 0x80CAB3A0: cKF_c_ef_x_tree5_cutR_tbl
- 0x80CAB3B4: cKF_ds_ef_x_tree5_cutR_tbl
- 0x80CAB5B8: cKF_ba_r_ef_x_tree5_cutR
- 0x80CAB5D0: ef_x_tree5_cutR_v
- 0x80CAB7E0: obj_x_tree5_cutR_light_model
- 0x80CAB810: ef_x_tree5_cutR_leaf_model
- 0x80CAB858: ef_x_tree5_cutR_trunk_model
- 0x80CAB890: cKF_je_r_ef_x_tree5_cutR_tbl
- 0x80CAB8CC: cKF_bs_r_ef_x_tree5_cutR
- 0x80CAB8D8: cKF_ckcb_r_ef_x_tree5_shakeL_tbl
- 0x80CAB8DC: cKF_kn_ef_x_tree5_shakeL_tbl
- 0x80CAB8E8: cKF_c_ef_x_tree5_shakeL_tbl
- 0x80CAB8F8: cKF_ds_ef_x_tree5_shakeL_tbl
- 0x80CAB96C: cKF_ba_r_ef_x_tree5_shakeL
- 0x80CAB980: cKF_ckcb_r_ef_x_tree5_shakeS_tbl
- 0x80CAB984: cKF_kn_ef_x_tree5_shakeS_tbl
- 0x80CAB988: cKF_c_ef_x_tree5_shakeS_tbl
- 0x80CAB9A0: cKF_ds_ef_x_tree5_shakeS_tbl
- 0x80CAB9C0: cKF_ba_r_ef_x_tree5_shakeS
- 0x80CAB9D8: cKF_ckcb_r_ef_x_tree5_shake_tbl
- 0x80CAB9DC: cKF_kn_ef_x_tree5_shake_tbl
- 0x80CAB9E0: cKF_c_ef_x_tree5_shake_tbl
- 0x80CAB9F8: cKF_ds_ef_x_tree5_shake_tbl
- 0x80CABA34: cKF_ba_r_ef_x_tree5_shake
- 0x80CABA48: ef_x_tree5_shake_v
- 0x80CABBF8: obj_x_tree5_shake_light_model
- 0x80CABC28: ef_x_tree5_shake_model
- 0x80CABC70: cKF_je_r_ef_x_tree5_shake_tbl
- 0x80CABC94: cKF_bs_r_ef_x_tree5_shake
- 0x80CABCA0: obj_tree_light_pal
- 0x80CABCC0: obj_w_tree_leaf_tex_txt
- 0x80CAC4C0: obj_w_tree_cutS_tex_txt
- 0x80CAC6C0: obj_w_tree_cutL_tex_txt
- 0x80CACCC0: obj_x_tree_light_tex_txt
- 0x80CACEC0: ef_anahikari01_02_int_i4
- 0x80CACFC0: ef_anahikari01_01_v
- 0x80CAD100: ef_anahikari01_01_modelT
- 0x80CAD1A0: ef_anahikari01_01_int_i4
- 0x80CAD2A0: ef_anahikari01_02_v
- 0x80CAD3E0: ef_anahikari01_02_modelT
- 0x80CAD468: ef_anahikari01_01_evw_anime_2
- 0x80CAD470: ef_anahikari01_01_evw_anime
- 0x80CAD478: ef_anahikari01_02_evw_anime_2
- 0x80CAD480: ef_anahikari01_02_evw_anime
- 0x80CAD5A0: ef_ase01_00_v
- 0x80CAD5E0: ef_ase01_00_modelT
- 0x80CAD6C0: ef_ase02_00_v
- 0x80CAD800: ef_ase02_00_modelT
- 0x80CAD860: ef_ase02_01_v
- 0x80CAD9A0: ef_ase02_01_modelT
- 0x80CADA08: ef_ase02_02_v
- 0x80CADB48: ef_ase02_02_modelT
- 0x80CADBB0: ef_ase02_03_v
- 0x80CADCF0: ef_ase02_03_modelT
- 0x80CADD60: ef_axe_pal
- 0x80CADD80: ef_axe_tuka1_tex_txt
- 0x80CADF80: ef_axe_edge1_tex_txt
- 0x80CAE180: ef_axe1_v
- 0x80CAE350: ef_axe1_model
- 0x80CAE400: ef_axe_tuka2_tex_txt
- 0x80CAE600: ef_axe_edge2_tex_txt
- 0x80CAE800: ef_axe2_v
- 0x80CAE9B0: ef_axe2_model
- 0x80CAEA60: ef_axe_edge3_tex_txt
- 0x80CAEAE0: ef_axe3_v
- 0x80CAEB90: ef_axe3_model
- 0x80CAEC00: ef_peke01_00
- 0x80CAED00: ef_peke01_00_v
- 0x80CAED40: ef_peke01_00_modelT
- 0x80CAEDA0: ef_buruburu01_0_int_i4
- 0x80CAEEA0: ef_buruburu01_1_int_i4
- 0x80CAEFA0: ef_buruburu01_00_v
- 0x80CAEFE0: ef_buruburu01_00_modelT
- 0x80CAF040: ef_s_yabu01_0
- 0x80CAF0C0: ef_s_yabu01_00_v
- 0x80CAF110: ef_s_yabu01_00_modelT
- 0x80CAF180: ef_s_tree01_0
- 0x80CAF200: ef_s_tree01_00_v
- 0x80CAF250: ef_s_tree01_00_modelT
- 0x80CAF2C0: grd_bush_pal
- 0x80CAF2E0: ef_w_yabu01_0
- 0x80CAF360: ef_w_yabu01_00_v
- 0x80CAF3A0: ef_w_yabu01_00_modelT
- 0x80CAF400: ef_f_tree01_0
- 0x80CAF480: ef_f_tree01_00_v
- 0x80CAF4D0: ef_f_tree01_00_modelT
- 0x80CAF540: ef_s_cedar_tex
- 0x80CAF640: ef_s_cedar_v
- 0x80CAF690: ef_s_cedar_modelT
- 0x80CAF700: ef_s_palm_tex
- 0x80CAF800: ef_s_palm_v
- 0x80CAF850: ef_s_palm_modelT
- 0x80CAF8C0: ef_car01_1_int_i4
- 0x80CAF940: ef_car01_v
- 0x80CAFB90: ef_car01_modelT
- 0x80CAFCA0: ef_carhosi01_01
- 0x80CB00A0: ef_carhosi01_00_v
- 0x80CB00E0: ef_carhosi01_00_modelT
- 0x80CB0130: ef_kamihubuki01_00_v
- 0x80CB0190: ef_kamihubuki01_00_model
- 0x80CB01D0: ef_tape01_01_v
- 0x80CB0330: ef_tape01_01_model
- 0x80CB03C0: ef_coin_tex_txt
- 0x80CB0440: ef_coin_v
- 0x80CB0800: ef_coin_model
- 0x80CB08C0: ef_coin_modelT
- 0x80CB0980: ef_daruma01_pal
- 0x80CB09A0: ef_daruma01_00_tex
- 0x80CB0A20: ef_daruma01_00_v
- 0x80CB0BF0: ef_daruma01_00_model
- 0x80CB0C60: ef_daruma01_01_v
- 0x80CB0EE0: ef_daruma01_01_model
- 0x80CB0F68: ef_daruma01_02_v
- 0x80CB11E8: ef_daruma01_02_model
- 0x80CB1280: ef_anahori01_00_tex
- 0x80CB1300: ef_anahori01_00_v
- 0x80CB13C0: ef_anahori01_00_model
- 0x80CB1440: ef_anahori01_01_tex
- 0x80CB14C0: ef_anahori01_01_v
- 0x80CB1580: ef_anahori01_01_model
- 0x80CB15F0: ef_anahori01_02_v
- 0x80CB16B0: ef_anahori01_02_model
- 0x80CB1720: obj_hole_pal
- 0x80CB1740: ef_anahori02_01_tex
- 0x80CB17C0: ef_anahori02_02_tex
- 0x80CB1840: ef_anahori02_03_tex
- 0x80CB18C0: ef_anahori02_04_tex
- 0x80CB1940: ef_anahori02_00_v
- 0x80CB1980: ef_anahori02_00_modelT
- 0x80CB19E0: ef_anahori03_pal
- 0x80CB1A00: ef_anahori03_03_tex
- 0x80CB1A80: ef_anahori03_01_tex
- 0x80CB1B00: ef_anahori03_02_tex
- 0x80CB1B80: ef_anahori03_04_tex
- 0x80CB1C00: ef_anahori03_00_v
- 0x80CB1C40: ef_anahori03_00_modelT
- 0x80CB1CA0: ef_mogura01_pal
- 0x80CB1CC0: ef_mogura01_03_tex
- 0x80CB1D40: ef_mogura01_01_tex
- 0x80CB1DC0: ef_mogura01_02_tex
- 0x80CB1E40: ef_mogura01_04_tex
- 0x80CB1EC0: ef_mogura01_00_v
- 0x80CB1F00: ef_mogura01_00_modelT
- 0x80CB1F60: ef_doyon01_00
- 0x80CB2360: ef_doyon01_00_v
- 0x80CB23A0: ef_doyon01_00_modelT
- 0x80CB2400: ef_dust01_0
- 0x80CB2480: ef_dust01_1
- 0x80CB2500: ef_dust01_2
- 0x80CB2580: ef_dust01_3
- 0x80CB2600: ef_dust01_00_v
- 0x80CB2640: ef_dust01_modelT
- 0x80CB2698: ef_dust01_stew_modelT
- 0x80CB26F0: ef_haro01_00_modelT
- 0x80CB2760: ef_gimonhu01_0
- 0x80CB2B60: ef_gimonhu01_00_v
- 0x80CB2BA0: ef_gimonhu01_00_modelT
- 0x80CB2C00: ef_goki01_0_int_i4
- 0x80CB2C80: ef_goki01_1_int_i4
- 0x80CB2D00: ef_goki01_2_int_i4
- 0x80CB2D80: ef_goki01_3_int_i4
- 0x80CB2E00: ef_goki01_01_v
- 0x80CB2E40: ef_goki01_01_modelT
- 0x80CB2E90: ef_goki01_01_evw_anime_1_tex_table
- 0x80CB2EA0: ef_goki01_01_evw_anime_1_anime_ptn
- 0x80CB2EA8: ef_goki01_01_evw_anime_1
- 0x80CB2EB8: ef_goki01_01_evw_anime
- 0x80CB2EC0: ef_ha01_0
- 0x80CB32C0: ef_ha01_00_v
- 0x80CB3300: ef_ha01_00_modelT
- 0x80CB3360: ef_hana01_tu_a_tex
- 0x80CB33E0: ef_hana01_tu_a_v
- 0x80CB3430: ef_hana01_tu_a_modelT
- 0x80CB34A0: ef_hana01_co_a_tex
- 0x80CB3520: ef_hana01_co_a_v
- 0x80CB3570: ef_hana01_co_a_modelT
- 0x80CB35E0: ef_hana01_pa_a_tex
- 0x80CB3660: ef_hana01_pa_a_v
- 0x80CB36B0: ef_hana01_pa_a_modelT
- 0x80CB3720: ef_hana01_ha_a_tex
- 0x80CB37A0: ef_hana01_ha_a_v
- 0x80CB37F0: ef_hana01_ha_a_modelT
- 0x80CB3860: ef_hanabi_b_0_inta_ia8
- 0x80CB3C60: ef_hanabi_b_1_inta_ia8
- 0x80CB4060: ef_hanabi_b_00_v
- 0x80CB40A0: ef_hanabi_b_00_modelT
- 0x80CB4100: ef_hanabi_h_0_int_i4
- 0x80CB4500: ef_hanabi_h_1_int_i4
- 0x80CB4900: ef_hanabi_h_00_v
- 0x80CB4940: ef_hanabi_h_00_modelT
- 0x80CB49A0: ef_hanabi_y_0_int_i4
- 0x80CB4DA0: ef_hanabi_y_1_int_i4
- 0x80CB51A0: ef_hanabi_y_00_v
- 0x80CB51E0: ef_hanabi_y_00_modelT
- 0x80CB5240: ef_hirameki01_0
- 0x80CB5440: ef_hirameki01_den_v
- 0x80CB5480: ef_hirameki01_den_modelT
- 0x80CB54E0: ef_hirameki01_1
- 0x80CB5560: ef_hirameki01_hikari_v
- 0x80CB55A0: ef_hirameki01_hikari_modelT
- 0x80CB5600: ef_star01
- 0x80CB5A00: ef_star01_00_v
- 0x80CB5A40: ef_star01_00_modelT
- 0x80CB5AA0: ef_think_l
- 0x80CB5EA0: ef_think_l_v
- 0x80CB5EE0: ef_think_l_modelT
- 0x80CB5F40: ef_think_s
- 0x80CB6340: ef_think_s_v
- 0x80CB6380: ef_think_s_modelT
- 0x80CB63E0: ef_kantanhu01_0
- 0x80CB67E0: ef_kantanhu01_00_v
- 0x80CB6820: ef_kantanhu01_00_modelT
- 0x80CB6880: ef_kaze01_evw_anime_2
- 0x80CB6888: ef_kaze01_evw_anime
- 0x80CB68A0: ef_kaze01_0_int_i4
- 0x80CB6920: ef_kaze01_1_int_i4
- 0x80CB69A0: ef_kaze01_v
- 0x80CB69F0: ef_kaze01_v2
- 0x80CB6A40: ef_kaze01_modelT
- 0x80CB6AB0: ef_kaze01_modelT2
- 0x80CB6B20: ef_kaze01_2
- 0x80CB6C20: ef_kaze01_happa_v
- 0x80CB6C60: ef_kaze01_happa_modelT
- 0x80CB6CC0: ef_kikuzu01_0
- 0x80CB6D40: ef_kikuzu01_00_v
- 0x80CB6E00: ef_kikuzu01_00_modelT
- 0x80CB6E60: act_killer_pal
- 0x80CB6E80: act_killer_tex_txt
- 0x80CB7080: act_killer_v
- 0x80CB7210: act_killer_model
- 0x80CB72C0: ef_kisha_kemuri01_0
- 0x80CB7340: ef_kisha_kemuri01_1
- 0x80CB73C0: ef_kisha_kemuri01_00_v
- 0x80CB7400: ef_kisha_kemuri01_modelT
- 0x80CB7460: ef_amimizu01_0
- 0x80CB7560: ef_amimizu01_00_v
- 0x80CB76E0: ef_amimizu01_00_modelT
- 0x80CB7740: ef_kore_tex
- 0x80CB7940: ef_kore_v
- 0x80CB7980: ef_kore_modelT
- 0x80CB79E0: ef_lovelove01_0
- 0x80CB7AE0: ef_lovelove01_00_v
- 0x80CB7B20: ef_lovelove01_00_modelT
- 0x80CB7B80: ef_lovelove02_0
- 0x80CB7F80: ef_lovelove02_00_v
- 0x80CB7FC0: ef_lovelove02_00_modelT
- 0x80CB8020: ef_circle_light_tex_4i4
- 0x80CB8220: ef_circle_light_v
- 0x80CB8260: ef_circle_light_model
- 0x80CB82C0: ef_sphere_light_tex_4i4_rgb_i4
- 0x80CB84C0: ef_sphere_light_v
- 0x80CB87C0: ef_sphere_light_model
- 0x80CB88E0: ut_mike
- 0x80CB8960: utPal_mike
- 0x80CB8980: ut_mouth
- 0x80CB8A00: utPal_mouth
- 0x80CB8A20: ef_ongen_v
- 0x80CB8A60: ef_ongen_mic_model
- 0x80CB8AB8: ef_ongen_mouth_model
- 0x80CB8B20: ef_koke_suiteki01_0_int_i4
- 0x80CB8BA0: ef_koke_suiteki01_1_int_i4
- 0x80CB8C20: ef_koke_suiteki01_2_int_i4
- 0x80CB8CA0: ef_koke_suiteki01_3_int_i4
- 0x80CB8D20: ef_koke_suiteki01_00_v
- 0x80CB8D60: ef_koke_suiteki01_00_modelT
- 0x80CB8DC0: ef_mitiyuge01_0_int_i4
- 0x80CB8E40: ef_motiyuge01_1_int_i4
- 0x80CB8EC0: ef_motiyuge01_2_int_i4
- 0x80CB8F40: ef_motiyuge01_00_v
- 0x80CB8F80: ef_motiyuge01_00_modelT
- 0x80CB8FE0: ef_muka
- 0x80CB93E0: ef_muka01_00_v
- 0x80CB9420: ef_muka01_00_modelT
- 0x80CB9480: ef_namida01_0
- 0x80CB9580: ef_namida01_v
- 0x80CB95C0: ef_namida01_modelT
- 0x80CB9620: ef_awa01_0
- 0x80CB9720: ef_neboke_awa01_v
- 0x80CB9760: ef_neboke_awa01_modelT
- 0x80CB97C0: ef_moon01_01_evw_anime_2
- 0x80CB97C8: ef_moon01_01_evw_anime
- 0x80CB99E0: ef_moon01_2_int_i4
- 0x80CBA1E0: ef_moon01_01_v
- 0x80CBA220: ef_moon01_01_modelT
- 0x80CBA2A0: ef_moon01_00_evw_anime_2
- 0x80CBA2A8: ef_moon01_00_evw_anime
- 0x80CBA2C0: ef_moon01_0_int_i4
- 0x80CBACC0: ef_moon01_00_v
- 0x80CBAD00: ef_moon01_00_modelT
- 0x80CBAD80: ef_onpu01_0
- 0x80CBAE80: ef_onpu01_00_v
- 0x80CBAEC0: ef_onpu01_00_modelT
- 0x80CBAF20: ef_onpu01_1
- 0x80CBB020: ef_onpu01_01_v
- 0x80CBB060: ef_onpu01_01_modelT
- 0x80CBB0C0: ef_onpu01_2
- 0x80CBB1C0: ef_onpu01_02_v
- 0x80CBB200: ef_onpu01_02_modelT
- 0x80CBB260: ef_otikomi_us1_int_i4
- 0x80CBB660: ef_otikomi_us2_int_i4
- 0x80CBB6E0: ef_otikomi_us2_v
- 0x80CBB720: ef_otikomi_us2_model
- 0x80CBB780: ef_bodyprint01_0
- 0x80CBB880: ef_bodyprint01_00_v
- 0x80CBB8C0: ef_bodyprint01_00_modelT
- 0x80CBB920: ef_footprint01_0
- 0x80CBB9A0: ef_footprint01_00_v
- 0x80CBB9E0: ef_footprint01_00_modelT
- 0x80CBBA40: ef_footprint01_1
- 0x80CBBB40: ef_turn_footprint_v
- 0x80CBBB80: ef_turn_footprint_modelT
- 0x80CBBBE0: ef_footprint01_2
- 0x80CBBDE0: ef_footprint01_02_v
- 0x80CBBE20: ef_footprint01_02_modelT
- 0x80CBBE80: ef_pun01_5_int_i4
- 0x80CBBF00: ef_pun01_01_v
- 0x80CBBF40: ef_pun01_01_modelT
- 0x80CBBFA0: ef_pun01_0_int_i4
- 0x80CBC1A0: ef_pun01_1_int_i4
- 0x80CBC3A0: ef_pun01_2_int_i4
- 0x80CBC5A0: ef_pun01_3_int_i4
- 0x80CBC7A0: ef_pun01_4_int_i4
- 0x80CBC9A0: ef_pun01_00_v
- 0x80CBC9E0: ef_pun01_00_modelT
- 0x80CBCA40: ef_reset_hole_pal
- 0x80CBCA60: ef_reset_hole_tex
- 0x80CBCB60: ef_reset_hole_v
- 0x80CBD180: ef_reset_hole_modelT
- 0x80CBD260: ef_shock01_0
- 0x80CBD660: ef_shock01_00_v
- 0x80CBD6A0: ef_shock01_00_modelT
- 0x80CBD700: ef_nagare01_inta_ia8
- 0x80CBDF00: ef_nagare02_int_i4
- 0x80CBDF80: ef_nagare01_v
- 0x80CBDFC0: ef_nagare01_modelT
- 0x80CBE040: ef_siawase01_00_evw_anime_2
- 0x80CBE048: ef_siawase01_00_evw_anime
- 0x80CBE060: ef_siawase01_1
- 0x80CBE0E0: ef_siawase01_2_int_i4
- 0x80CBE160: ef_siawase01_00_v
- 0x80CBE270: ef_siawase01_00_modelT
- 0x80CBE300: ef_siawase01_0
- 0x80CBE400: ef_siawase01_01_v
- 0x80CBE440: ef_siawase01_01_modelT
- 0x80CBE4A0: ef_sibuki01_1_int_i4
- 0x80CBE520: ef_sibuki01_2_int_i4
- 0x80CBE5A0: ef_sibuki01_3_int_i4
- 0x80CBE620: ef_sibuki01_4_int_i4
- 0x80CBE6A0: ef_sibuki01_00_v
- 0x80CBE6E0: ef_sibuki01_00_modelT
- 0x80CBE740: ef_sunahane01_0_inta_ia8
- 0x80CBE840: ef_sunahane01_1_inta_ia8
- 0x80CBE940: ef_sunahane01_2_inta_ia8
- 0x80CBEA40: ef_sunahane01_3_inta_ia8
- 0x80CBEB40: ef_sunahane01_00_v
- 0x80CBEB80: ef_sunahane01_00_modelT
- 0x80CBEBE0: ef_situren01_0
- 0x80CBEFE0: ef_situren01_00_v
- 0x80CBF020: ef_situren01_00_modelT
- 0x80CBF080: ef_situren01_1
- 0x80CBF280: ef_situren01_01_v
- 0x80CBF300: ef_situren01_01_modelT
- 0x80CBF358: ef_situren01_02_v
- 0x80CBF3D8: ef_situren01_02_modelT
- 0x80CBF440: ef_sleep_z
- 0x80CBF840: ef_sleep01_v
- 0x80CBF880: ef_sleep01_modelT
- 0x80CBF8E0: ef_museum5_awa1
- 0x80CBF960: ef_museum5_awa1_v
- 0x80CBF9A0: ef_museum5_awa1_model
- 0x80CBFA00: ef_taberu01_0
- 0x80CBFB00: ef_taberu01_00_v
- 0x80CBFC40: ef_taberu01_00_modelT
- 0x80CBFCA8: ef_taberu01_01_v
- 0x80CBFDE8: ef_taberu01_01_modelT
- 0x80CBFE50: ef_taberu01_02_v
- 0x80CBFF90: ef_taberu01_02_modelT
- 0x80CBFFF8: ef_taberu01_03_v
- 0x80CC0138: ef_taberu01_03_modelT
- 0x80CC01A0: ef_takurami01_0us
- 0x80CC03A0: ef_takurami01_yoko_v
- 0x80CC03E0: ef_takurami01_yoko_v2
- 0x80CC0420: ef_takurami01_yoko_modelT
- 0x80CC0470: ef_takurami01_yoko_modelT2
- 0x80CC04C0: ef_takurami01_kira_v
- 0x80CC0500: ef_takurami01_kira_modelT
- 0x80CC0590: ef_takurami01_1
- 0x80CC0690: ef_takurami01_normal_render_mode
- 0x80CC06A0: ef_takurami01_menu_render_mode
- 0x80CC06E0: ef_tamaire01_r_tex
- 0x80CC0920: ef_tamaire01_r_modelT
- 0x80CC0980: ef_tamaire01_w_pal
- 0x80CC09A0: ef_tamaire01_w_tex
- 0x80CC0BA0: ef_tamaire01_w_v
- 0x80CC0BE0: ef_tamaire01_w_modelT
- 0x80CC0C30: ef_tama_shadow_in_v
- 0x80CC0C80: ef_tama_shadow_in_0
- 0x80CC0D80: ef_tamaire_shadow_modelT
- 0x80CC0DE0: obj_tent_lamp1_rgb_ci4_pal
- 0x80CC0E00: obj_tent_lamp2_rgb_ci4_pal
- 0x80CC0E20: obj_tent_lamp1
- 0x80CC1220: obj_tent_lamp2_rgb_ci4
- 0x80CC1620: obj_tent_lamp_v
- 0x80CC18F0: obj_tent_lamp_model
- 0x80CC19A0: ef_turi_hamon01_0
- 0x80CC1A20: ef_turi_hamon01_00_v
- 0x80CC1A60: ef_turi_hamon01_00_modelT
- 0x80CC1AC0: ef_turi_hane01_0_int_i4
- 0x80CC1CC0: ef_turi_hane01_1_int_i4
- 0x80CC1EC0: ef_turi_hane01_2_int_i4
- 0x80CC20C0: ef_turi_hane01_3_int_i4
- 0x80CC22C0: ef_turi_hane01_00_v
- 0x80CC2300: ef_turi_hane01_00_modelT
- 0x80CC2360: ef_turi_hane02_0_int_i4
- 0x80CC2560: ef_turi_hane02_1_int_i4
- 0x80CC2760: ef_turi_hane02_2_int_i4
- 0x80CC2960: ef_turi_hane02_3_int_i4
- 0x80CC2B60: ef_turi_hane02_00_v
- 0x80CC2BA0: ef_turi_hane02_00_modelT
- 0x80CC2C00: ef_turi_suiteki01_0
- 0x80CC2D00: ef_turi_suiteki01_00_v
- 0x80CC2D40: ef_turi_suiteki01_00_modelT
- 0x80CC2DA0: ef_uranai01_0_int_i4
- 0x80CC2FA0: ef_uranai01_1_int_i4
- 0x80CC31A0: ef_uranai01_00_v
- 0x80CC3270: ef_uranai01_00_modelT
- 0x80CC32E8: ef_uranai01_00_evw_anime_1
- 0x80CC32F0: ef_uranai01_00_evw_anime
- 0x80CC3300: ef_warau01us
- 0x80CC3B00: ef_warau01_00_v
- 0x80CC3B80: ef_warau01_00_modelT
- 0x80CC3BE0: ef_warau01_01_v
- 0x80CC3C60: ef_warau01_01_modelT
- 0x80CC3CC0: ef_warau01_02_v
- 0x80CC3D40: ef_warau01_02_modelT
- 0x80CC3DA0: ef_warau01_03_v
- 0x80CC3E20: ef_warau01_03_modelT
- 0x80CC3E80: ef_s_yungtree_tex
- 0x80CC4080: ef_s_youngtree_00_v
- 0x80CC40D0: ef_s_youngtree_00_modelT
- 0x80CC4140: ef_w_youngtree_tex
- 0x80CC4340: ef_w_youngtree_00_v
- 0x80CC4390: ef_w_youngtree_00_modelT
- 0x80CC4400: ef_f_youngtree_tex
- 0x80CC4600: ef_f_youngtree_00_v
- 0x80CC4650: ef_f_youngtree_00_modelT
- 0x80CC46C0: ef_s_young_palm_tex
- 0x80CC48C0: ef_s_young_palm_v
- 0x80CC4920: ef_s_young_palm_modelT
- 0x80CC4980: ef_w_young_palm_tex
- 0x80CC4B80: ef_w_young_palm_v
- 0x80CC4BE0: ef_w_young_palm_modelT
- 0x80CC4C40: ef_s_young_cedar_tex
- 0x80CC4E40: ef_s_young_cedar_v
- 0x80CC4EA0: ef_s_young_cedar_modelT
- 0x80CC4F00: ef_w_young_cedar_tex
- 0x80CC5100: ef_w_young_cedar_v
- 0x80CC5160: ef_w_young_cedar_modelT
- 0x80CC51C0: ef_koke_yuki01_0_inta_ia8
- 0x80CC52C0: ef_koke_yuki01_1_inta_ia8
- 0x80CC53C0: ef_koke_yuki01_2_inta_ia8
- 0x80CC54C0: ef_koke_yuki01_3_inta_ia8
- 0x80CC55C0: ef_koke_yuki01_00_v
- 0x80CC5600: ef_koke_yuki01_00_modelT
- 0x80CC5660: ef_yukihane01_0_inta_ia8
- 0x80CC5760: ef_yukihane01_1_inta_ia8
- 0x80CC5860: ef_yukihane01_2_inta_ia8
- 0x80CC5960: ef_yukihane01_3_inta_ia8
- 0x80CC5A60: ef_yukihane01_00_v
- 0x80CC5AA0: ef_yukihane01_00_modelT
- 0x80CC5B00: cKF_ckcb_r_act_mus_angel_a1_tbl
- 0x80CC5B04: cKF_kn_act_mus_angel_a1_tbl
- 0x80CC5B14: cKF_c_act_mus_angel_a1_tbl
- 0x80CC5B20: cKF_ds_act_mus_angel_a1_tbl
- 0x80CC5BBC: cKF_ba_r_act_mus_angel_a1
- 0x80CC5BE0: act_mus_angel_body_txt
- 0x80CC67E0: act_mus_angel_a1_v
- 0x80CC6B40: act_mus_angel_sakana_body_model
- 0x80CC6BB0: act_mus_angel_sakana_head_model
- 0x80CC6BF0: cKF_je_r_act_mus_angel_a1_tbl
- 0x80CC6C14: cKF_bs_r_act_mus_angel_a1
- 0x80CC6C20: cKF_ckcb_r_act_mus_aroana_a1_tbl
- 0x80CC6C24: cKF_kn_act_mus_aroana_a1_tbl
- 0x80CC6C34: cKF_c_act_mus_aroana_a1_tbl
- 0x80CC6C40: cKF_ds_act_mus_aroana_a1_tbl
- 0x80CC6CDC: cKF_ba_r_act_mus_aroana_a1
- 0x80CC6D20: act_mus_aroana_body_txt
- 0x80CC7020: act_mus_aroana_a1_v
- 0x80CC7360: act_mus_aroana_sakana_body_model
- 0x80CC73F0: act_mus_aroana_sakana_head_model
- 0x80CC7438: cKF_je_r_act_mus_aroana_a1_tbl
- 0x80CC745C: cKF_bs_r_act_mus_aroana_a1
- 0x80CC7468: cKF_ckcb_r_act_mus_ayu_a1_tbl
- 0x80CC746C: cKF_kn_act_mus_ayu_a1_tbl
- 0x80CC747C: cKF_c_act_mus_ayu_a1_tbl
- 0x80CC7488: cKF_ds_act_mus_ayu_a1_tbl
- 0x80CC7524: cKF_ba_r_act_mus_ayu_a1
- 0x80CC7860: act_mus_ayu_a1_v
- 0x80CC7C80: act_mus_ayu_sakana_body_model
- 0x80CC7D08: act_mus_ayu_sakana_head_model
- 0x80CC7D60: cKF_je_r_act_mus_ayu_a1_tbl
- 0x80CC7D84: cKF_bs_r_act_mus_ayu_a1
- 0x80CC7D90: cKF_ckcb_r_act_mus_bass_a1_tbl
- 0x80CC7D94: cKF_kn_act_mus_bass_a1_tbl
- 0x80CC7DA4: cKF_c_act_mus_bass_a1_tbl
- 0x80CC7DB0: cKF_ds_act_mus_bass_a1_tbl
- 0x80CC7E4C: cKF_ba_r_act_mus_bass_a1
- 0x80CC7E80: act_mus_bass_body_txt
- 0x80CC8080: act_mus_bass_a1_v
- 0x80CC8420: act_mus_bass_sakana_body_model
- 0x80CC84B0: act_mus_bass_sakana_head_model
- 0x80CC84F8: cKF_je_r_act_mus_bass_a1_tbl
- 0x80CC851C: cKF_bs_r_act_mus_bass_a1
- 0x80CC8528: cKF_ckcb_r_act_mus_bassl_a1_tbl
- 0x80CC852C: cKF_kn_act_mus_bassl_a1_tbl
- 0x80CC853C: cKF_c_act_mus_bassl_a1_tbl
- 0x80CC8548: cKF_ds_act_mus_bassl_a1_tbl
- 0x80CC85E4: cKF_ba_r_act_mus_bassl_a1
- 0x80CC8620: act_mus_bassl_body_txt
- 0x80CC8920: act_mus_bassl_a1_v
- 0x80CC8CC0: act_mus_bassl_sakana_body_model
- 0x80CC8D50: act_mus_bassl_sakana_head_model
- 0x80CC8D98: cKF_je_r_act_mus_bassl_a1_tbl
- 0x80CC8DBC: cKF_bs_r_act_mus_bassl_a1
- 0x80CC8DC8: cKF_ckcb_r_act_mus_bassm_a1_tbl
- 0x80CC8DCC: cKF_kn_act_mus_bassm_a1_tbl
- 0x80CC8DDC: cKF_c_act_mus_bassm_a1_tbl
- 0x80CC8DE8: cKF_ds_act_mus_bassm_a1_tbl
- 0x80CC8E84: cKF_ba_r_act_mus_bassm_a1
- 0x80CC8EC0: act_mus_bassm_body_txt
- 0x80CC91C0: act_mus_bassm_a1_v
- 0x80CC9560: act_mus_bassm_sakana_body_model
- 0x80CC95F0: act_mus_bassm_sakana_head_model
- 0x80CC9638: cKF_je_r_act_mus_bassm_a1_tbl
- 0x80CC965C: cKF_bs_r_act_mus_bassm_a1
- 0x80CC9668: cKF_ckcb_r_act_mus_demekin_a1_tbl
- 0x80CC966C: cKF_kn_act_mus_demekin_a1_tbl
- 0x80CC967C: cKF_c_act_mus_demekin_a1_tbl
- 0x80CC9688: cKF_ds_act_mus_demekin_a1_tbl
- 0x80CC9724: cKF_ba_r_act_mus_demekin_a1
- 0x80CC9760: act_mus_demekin_body_txt
- 0x80CC9960: act_mus_demekin_a1_v
- 0x80CC9FA0: act_mus_demekin_sakana_body_model
- 0x80CCA0B8: act_mus_demekin_sakana_head_model
- 0x80CCA160: cKF_je_r_act_mus_demekin_a1_tbl
- 0x80CCA184: cKF_bs_r_act_mus_demekin_a1
- 0x80CCA190: cKF_ckcb_r_act_mus_dojyo_a1_tbl
- 0x80CCA194: cKF_kn_act_mus_dojyo_a1_tbl
- 0x80CCA1A4: cKF_c_act_mus_dojyo_a1_tbl
- 0x80CCA1B0: cKF_ds_act_mus_dojyo_a1_tbl
- 0x80CCA24C: cKF_ba_r_act_mus_dojyo_a1
- 0x80CCA280: act_mus_dojyo_body_txt
- 0x80CCA380: act_mus_dojyo_a1_v
- 0x80CCA730: act_mus_dojyo_sakana_body_model
- 0x80CCA7C8: act_mus_dojyo_sakana_head_model
- 0x80CCA838: cKF_je_r_act_mus_dojyo_a1_tbl
- 0x80CCA85C: cKF_bs_r_act_mus_dojyo_a1
- 0x80CCA868: cKF_ckcb_r_act_mus_donko_a1_tbl
- 0x80CCA86C: cKF_kn_act_mus_donko_a1_tbl
- 0x80CCA880: cKF_c_act_mus_donko_a1_tbl
- 0x80CCA888: cKF_ds_act_mus_donko_a1_tbl
- 0x80CCA93C: cKF_ba_r_act_mus_donko_a1
- 0x80CCA980: act_mus_donko_body_txt
- 0x80CCAB80: act_mus_donko_a1_v
- 0x80CCAF20: act_mus_donko_sakana_body_model
- 0x80CCAFA8: act_mus_donko_sakana_head_model
- 0x80CCAFF0: cKF_je_r_act_mus_donko_a1_tbl
- 0x80CCB014: cKF_bs_r_act_mus_donko_a1
- 0x80CCB020: cKF_ckcb_r_act_mus_funa_a1_tbl
- 0x80CCB024: cKF_kn_act_mus_funa_a1_tbl
- 0x80CCB034: cKF_c_act_mus_funa_a1_tbl
- 0x80CCB040: cKF_ds_act_mus_funa_a1_tbl
- 0x80CCB0DC: cKF_ba_r_act_mus_funa_a1
- 0x80CCB120: act_mus_funa_body_txt
- 0x80CCB320: act_mus_funa_a1_v
- 0x80CCB6A0: act_mus_funa_sakana_body_model
- 0x80CCB728: act_mus_funa_sakana_head_model
- 0x80CCB770: cKF_je_r_act_mus_funa_a1_tbl
- 0x80CCB794: cKF_bs_r_act_mus_funa_a1
- 0x80CCB7A0: cKF_ckcb_r_act_mus_gill_a1_tbl
- 0x80CCB7A4: cKF_kn_act_mus_gill_a1_tbl
- 0x80CCB7B4: cKF_c_act_mus_gill_a1_tbl
- 0x80CCB7C0: cKF_ds_act_mus_gill_a1_tbl
- 0x80CCB85C: cKF_ba_r_act_mus_gill_a1
- 0x80CCB8A0: act_mus_gill_body_txt
- 0x80CCBAA0: act_mus_gill_a1_v
- 0x80CCBE20: act_mus_gill_sakana_body_model
- 0x80CCBEA8: act_mus_gill_sakana_head_model
- 0x80CCBEF0: cKF_je_r_act_mus_gill_a1_tbl
- 0x80CCBF14: cKF_bs_r_act_mus_gill_a1
- 0x80CCBF20: cKF_ckcb_r_act_mus_gupi_a1_tbl
- 0x80CCBF24: cKF_kn_act_mus_gupi_a1_tbl
- 0x80CCBF34: cKF_c_act_mus_gupi_a1_tbl
- 0x80CCBF40: cKF_ds_act_mus_gupi_a1_tbl
- 0x80CCBFDC: cKF_ba_r_act_mus_gupi_a1
- 0x80CCC020: act_mus_gupi_body_txt
- 0x80CCC220: act_mus_gupi_a1_v
- 0x80CCC5E0: act_mus_gupi_sakana_body_model
- 0x80CCC670: act_mus_gupi_sakana_head_model
- 0x80CCC6B8: cKF_je_r_act_mus_gupi_a1_tbl
- 0x80CCC6DC: cKF_bs_r_act_mus_gupi_a1
- 0x80CCC6E8: cKF_ckcb_r_act_mus_hera_a1_tbl
- 0x80CCC6EC: cKF_kn_act_mus_hera_a1_tbl
- 0x80CCC6FC: cKF_c_act_mus_hera_a1_tbl
- 0x80CCC708: cKF_ds_act_mus_hera_a1_tbl
- 0x80CCC7A4: cKF_ba_r_act_mus_hera_a1
- 0x80CCC7E0: act_mus_hera_body_txt
- 0x80CCCAE0: act_mus_hera_a1_v
- 0x80CCCEE0: act_mus_hera_sakana_body_model
- 0x80CCCF68: act_mus_hera_sakana_head_model
- 0x80CCCFC0: cKF_je_r_act_mus_hera_a1_tbl
- 0x80CCCFE4: cKF_bs_r_act_mus_hera_a1
- 0x80CCCFF0: cKF_ckcb_r_act_mus_isidai_a1_tbl
- 0x80CCCFF4: cKF_kn_act_mus_isidai_a1_tbl
- 0x80CCD004: cKF_c_act_mus_isidai_a1_tbl
- 0x80CCD010: cKF_ds_act_mus_isidai_a1_tbl
- 0x80CCD0AC: cKF_ba_r_act_mus_isidai_a1
- 0x80CCD0E0: act_mus_isidai_body_txt
- 0x80CCD3E0: act_mus_isidai_a1_v
- 0x80CCD800: act_mus_isidai_sakana_body_model
- 0x80CCD890: act_mus_isidai_sakana_head_model
- 0x80CCD8E0: cKF_je_r_act_mus_isidai_a1_tbl
- 0x80CCD904: cKF_bs_r_act_mus_isidai_a1
- 0x80CCD910: cKF_ckcb_r_act_mus_ito_a1_tbl
- 0x80CCD914: cKF_kn_act_mus_ito_a1_tbl
- 0x80CCD928: cKF_c_act_mus_ito_a1_tbl
- 0x80CCD930: cKF_ds_act_mus_ito_a1_tbl
- 0x80CCD9EC: cKF_ba_r_act_mus_ito_a1
- 0x80CCDA20: act_mus_ito_body_txt
- 0x80CCDE20: act_mus_ito_a1_v
- 0x80CCE300: act_mus_ito_sakana_body_model
- 0x80CCE3A0: act_mus_ito_sakana_head_model
- 0x80CCE400: cKF_je_r_act_mus_ito_a1_tbl
- 0x80CCE424: cKF_bs_r_act_mus_ito_a1
- 0x80CCE430: cKF_ckcb_r_act_mus_iwana_a1_tbl
- 0x80CCE434: cKF_kn_act_mus_iwana_a1_tbl
- 0x80CCE444: cKF_c_act_mus_iwana_a1_tbl
- 0x80CCE450: cKF_ds_act_mus_iwana_a1_tbl
- 0x80CCE4EC: cKF_ba_r_act_mus_iwana_a1
- 0x80CCE520: act_mus_iwana_body_txt
- 0x80CCE820: act_mus_iwana_a1_v
- 0x80CCEC20: act_mus_iwana_sakana_body_model
- 0x80CCECA8: act_mus_iwana_sakana_head_model
- 0x80CCED00: cKF_je_r_act_mus_iwana_a1_tbl
- 0x80CCED24: cKF_bs_r_act_mus_iwana_a1
- 0x80CCED30: cKF_ckcb_r_act_mus_kaeru_a1_tbl
- 0x80CCED38: cKF_kn_act_mus_kaeru_a1_tbl
- 0x80CCED3C: cKF_c_act_mus_kaeru_a1_tbl
- 0x80CCED60: cKF_ds_act_mus_kaeru_a1_tbl
- 0x80CCED74: cKF_ba_r_act_mus_kaeru_a1
- 0x80CCED88: cKF_ckcb_r_act_mus_kaeru_a1_big_tbl
- 0x80CCED90: cKF_kn_act_mus_kaeru_a1_big_tbl
- 0x80CCED94: cKF_c_act_mus_kaeru_a1_big_tbl
- 0x80CCEDB4: cKF_ds_act_mus_kaeru_a1_big_tbl
- 0x80CCEDE4: cKF_ba_r_act_mus_kaeru_a1_big
- 0x80CCFE00: act_mus_kaeru_a1_v
- 0x80CD04D0: act_mus_kaeru_a1_anime_model
- 0x80CD0568: act_mus_kaeru_a1_foot2_model
- 0x80CD05E8: act_mus_kaeru_a1_body_model
- 0x80CD06B8: act_mus_kaeru_a1_foot1_model
- 0x80CD0710: cKF_je_r_act_mus_kaeru_a1_tbl
- 0x80CD074C: cKF_bs_r_act_mus_kaeru_a1
- 0x80CD0758: cKF_ckcb_r_act_mus_kaseki_a1_tbl
- 0x80CD075C: cKF_kn_act_mus_kaseki_a1_tbl
- 0x80CD0774: cKF_c_act_mus_kaseki_a1_tbl
- 0x80CD077C: cKF_ds_act_mus_kaseki_a1_tbl
- 0x80CD0878: cKF_ba_r_act_mus_kaseki_a1
- 0x80CD08C0: act_mus_kaseki_body_txt
- 0x80CD0CC0: act_mus_kaseki_a1_v
- 0x80CD1250: act_mus_kaseki_sakana_leg_model
- 0x80CD12B8: act_mus_kaseki_sakana_body_model
- 0x80CD1340: act_mus_kaseki_sakana_head_model
- 0x80CD13A0: cKF_je_r_act_mus_kaseki_a1_tbl
- 0x80CD13D0: cKF_bs_r_act_mus_kaseki_a1
- 0x80CD13D8: cKF_ckcb_r_act_mus_kingyo_a1_tbl
- 0x80CD13DC: cKF_kn_act_mus_kingyo_a1_tbl
- 0x80CD13EC: cKF_c_act_mus_kingyo_a1_tbl
- 0x80CD13F8: cKF_ds_act_mus_kingyo_a1_tbl
- 0x80CD1494: cKF_ba_r_act_mus_kingyo_a1
- 0x80CD14E0: act_mus_kingyo_body_txt
- 0x80CD16E0: act_mus_kingyo_a1_v
- 0x80CD1CF0: act_mus_kingyo_sakana_body_model
- 0x80CD1DB8: act_mus_kingyo_sakana_head_model
- 0x80CD1E60: cKF_je_r_act_mus_kingyo_a1_tbl
- 0x80CD1E84: cKF_bs_r_act_mus_kingyo_a1
- 0x80CD1E90: cKF_ckcb_r_act_mus_koi_a1_tbl
- 0x80CD1E94: cKF_kn_act_mus_koi_a1_tbl
- 0x80CD1EA4: cKF_c_act_mus_koi_a1_tbl
- 0x80CD1EB0: cKF_ds_act_mus_koi_a1_tbl
- 0x80CD1F4C: cKF_ba_r_act_mus_koi_a1
- 0x80CD1F80: act_mus_koi_body_txt
- 0x80CD2280: act_mus_koi_a1_v
- 0x80CD2640: act_mus_koi_sakana_body_model
- 0x80CD26D0: act_mus_koi_sakana_head_model
- 0x80CD2718: cKF_je_r_act_mus_koi_a1_tbl
- 0x80CD273C: cKF_bs_r_act_mus_koi_a1
- 0x80CD2780: act_mus_kurage_head_tex
- 0x80CD2880: act_mus_kurage_foot_tex
- 0x80CD2980: act_mus_kurage_a1_v
- 0x80CD2CA0: act_mus_kurage_sakana_foot_model
- 0x80CD2D28: act_mus_kurage_sakana_body_model
- 0x80CD2DC0: cKF_ckcb_r_act_mus_medaka_a1_tbl
- 0x80CD2DC4: cKF_kn_act_mus_medaka_a1_tbl
- 0x80CD2DD4: cKF_c_act_mus_medaka_a1_tbl
- 0x80CD2DE0: cKF_ds_act_mus_medaka_a1_tbl
- 0x80CD2E7C: cKF_ba_r_act_mus_medaka_a1
- 0x80CD2EC0: act_mus_medaka_body_txt
- 0x80CD2FC0: act_mus_medaka_a1_v
- 0x80CD32C0: act_mus_medaka_sakana_body_model
- 0x80CD3350: act_mus_medaka_sakana_head_model
- 0x80CD3390: cKF_je_r_act_mus_medaka_a1_tbl
- 0x80CD33B4: cKF_bs_r_act_mus_medaka_a1
- 0x80CD33C0: cKF_ckcb_r_act_mus_namazu_a1_tbl
- 0x80CD33C4: cKF_kn_act_mus_namazu_a1_tbl
- 0x80CD33D4: cKF_c_act_mus_namazu_a1_tbl
- 0x80CD33E0: cKF_ds_act_mus_namazu_a1_tbl
- 0x80CD347C: cKF_ba_r_act_mus_namazu_a1
- 0x80CD34C0: act_mus_namazu_body_txt
- 0x80CD37C0: act_mus_namazu_a1_v
- 0x80CD3D60: act_mus_namazu_sakana_body_model
- 0x80CD3E10: act_mus_namazu_sakana_head_model
- 0x80CD3EA8: cKF_je_r_act_mus_namazu_a1_tbl
- 0x80CD3ECC: cKF_bs_r_act_mus_namazu_a1
- 0x80CD3ED8: cKF_ckcb_r_act_mus_nigoi_a1_tbl
- 0x80CD3EDC: cKF_kn_act_mus_nigoi_a1_tbl
- 0x80CD3EEC: cKF_c_act_mus_nigoi_a1_tbl
- 0x80CD3EF8: cKF_ds_act_mus_nigoi_a1_tbl
- 0x80CD3F94: cKF_ba_r_act_mus_nigoi_a1
- 0x80CD3FE0: act_mus_nigoi_body_txt
- 0x80CD42E0: act_mus_nigoi_a1_v
- 0x80CD46F0: act_mus_nigoi_sakana_body_model
- 0x80CD4778: act_mus_nigoi_sakana_head_model
- 0x80CD47C8: cKF_je_r_act_mus_nigoi_a1_tbl
- 0x80CD47EC: cKF_bs_r_act_mus_nigoi_a1
- 0x80CD47F8: cKF_ckcb_r_act_mus_niji_a1_tbl
- 0x80CD47FC: cKF_kn_act_mus_niji_a1_tbl
- 0x80CD480C: cKF_c_act_mus_niji_a1_tbl
- 0x80CD4818: cKF_ds_act_mus_niji_a1_tbl
- 0x80CD48B4: cKF_ba_r_act_mus_niji_a1
- 0x80CD4900: act_mus_niji_body_txt
- 0x80CD4C00: act_mus_niji_a1_v
- 0x80CD4FE0: act_mus_niji_sakana_body_model
- 0x80CD5068: act_mus_niji_sakana_head_model
- 0x80CD50C0: cKF_je_r_act_mus_niji_a1_tbl
- 0x80CD50E4: cKF_bs_r_act_mus_niji_a1
- 0x80CD50F0: cKF_ckcb_r_act_mus_nisiki_a1_tbl
- 0x80CD50F4: cKF_kn_act_mus_nisiki_a1_tbl
- 0x80CD5104: cKF_c_act_mus_nisiki_a1_tbl
- 0x80CD5110: cKF_ds_act_mus_nisiki_a1_tbl
- 0x80CD51AC: cKF_ba_r_act_mus_nisiki_a1
- 0x80CD51E0: act_mus_nisiki_body_txt
- 0x80CD54E0: act_mus_nisiki_a1_v
- 0x80CD58A0: act_mus_nisiki_sakana_body_model
- 0x80CD5930: act_mus_nisiki_sakana_head_model
- 0x80CD5978: cKF_je_r_act_mus_nisiki_a1_tbl
- 0x80CD599C: cKF_bs_r_act_mus_nisiki_a1
- 0x80CD59A8: cKF_ckcb_r_act_mus_oikawa_a1_tbl
- 0x80CD59AC: cKF_kn_act_mus_oikawa_a1_tbl
- 0x80CD59BC: cKF_c_act_mus_oikawa_a1_tbl
- 0x80CD59C8: cKF_ds_act_mus_oikawa_a1_tbl
- 0x80CD5A70: cKF_ba_r_act_mus_oikawa_a1
- 0x80CD5AC0: act_mus_oikawa_body_txt
- 0x80CD5CC0: act_mus_oikawa_a1_v
- 0x80CD6040: act_mus_oikawa_sakana_body_model
- 0x80CD60B0: act_mus_oikawa_sakana_head_model
- 0x80CD6110: cKF_je_r_act_mus_oikawa_a1_tbl
- 0x80CD6134: cKF_bs_r_act_mus_oikawa_a1
- 0x80CD6140: cKF_ckcb_r_act_mus_onamazu_a1_tbl
- 0x80CD6144: cKF_kn_act_mus_onamazu_a1_tbl
- 0x80CD6154: cKF_c_act_mus_onamazu_a1_tbl
- 0x80CD6160: cKF_ds_act_mus_onamazu_a1_tbl
- 0x80CD6208: cKF_ba_r_act_mus_onamazu_a1
- 0x80CD6240: act_mus_oonamazu_body_txt
- 0x80CD6640: act_mus_onamazu_a1_v
- 0x80CD6BE0: act_mus_onamazu_sakana_body_model
- 0x80CD6CB8: act_mus_onamazu_sakana_head_model
- 0x80CD6D70: cKF_je_r_act_mus_onamazu_a1_tbl
- 0x80CD6D94: cKF_bs_r_act_mus_onamazu_a1
- 0x80CD6DA0: cKF_ckcb_r_act_mus_pira_a1_tbl
- 0x80CD6DA4: cKF_kn_act_mus_pira_a1_tbl
- 0x80CD6DBC: cKF_c_act_mus_pira_a1_tbl
- 0x80CD6DC4: cKF_ds_act_mus_pira_a1_tbl
- 0x80CD6EC0: cKF_ba_r_act_mus_pira_a1
- 0x80CD6F00: act_mus_pireluku_body_txt
- 0x80CD7300: act_mus_pira_a1_v
- 0x80CD79E0: act_mus_pira_sakana_leg_model
- 0x80CD7A78: act_mus_pira_sakana_body_model
- 0x80CD7B00: act_mus_pira_sakana_head_model
- 0x80CD7B50: cKF_je_r_act_mus_pira_a1_tbl
- 0x80CD7B80: cKF_bs_r_act_mus_pira_a1
- 0x80CD7B88: cKF_ckcb_r_act_mus_pirania_a1_tbl
- 0x80CD7B8C: cKF_kn_act_mus_pirania_a1_tbl
- 0x80CD7B9C: cKF_c_act_mus_pirania_a1_tbl
- 0x80CD7BA8: cKF_ds_act_mus_pirania_a1_tbl
- 0x80CD7C44: cKF_ba_r_act_mus_pirania_a1
- 0x80CD7C80: act_mus_pirania_body_txt
- 0x80CD7E80: act_mus_pirania_a1_v
- 0x80CD8200: act_mus_pirania_sakana_body_model
- 0x80CD8280: act_mus_pirania_sakana_head_model
- 0x80CD82C8: cKF_je_r_act_mus_pirania_a1_tbl
- 0x80CD82EC: cKF_bs_r_act_mus_pirania_a1
- 0x80CD82F8: cKF_ckcb_r_act_mus_raigyo_a1_tbl
- 0x80CD82FC: cKF_kn_act_mus_raigyo_a1_tbl
- 0x80CD8310: cKF_c_act_mus_raigyo_a1_tbl
- 0x80CD8318: cKF_ds_act_mus_raigyo_a1_tbl
- 0x80CD83D4: cKF_ba_r_act_mus_raigyo_a1
- 0x80CD8420: act_mus_raigyo_body_txt
- 0x80CD8820: act_mus_raigyo_a1_v
- 0x80CD8B50: act_mus_raigyo_sakana_body_model
- 0x80CD8BE0: act_mus_raigyo_sakana_head_model
- 0x80CD8C28: cKF_je_r_act_mus_raigyo_a1_tbl
- 0x80CD8C4C: cKF_bs_r_act_mus_raigyo_a1
- 0x80CD8C58: cKF_ckcb_r_act_mus_sake_a1_tbl
- 0x80CD8C5C: cKF_kn_act_mus_sake_a1_tbl
- 0x80CD8C6C: cKF_c_act_mus_sake_a1_tbl
- 0x80CD8C78: cKF_ds_act_mus_sake_a1_tbl
- 0x80CD8D14: cKF_ba_r_act_mus_sake_a1
- 0x80CD8D60: act_mus_sake_body_txt
- 0x80CD9060: act_mus_sake_a1_v
- 0x80CD9440: act_mus_sake_sakana_body_model
- 0x80CD94C8: act_mus_sake_sakana_head_model
- 0x80CD9528: cKF_je_r_act_mus_sake_a1_tbl
- 0x80CD954C: cKF_bs_r_act_mus_sake_a1
- 0x80CD9558: cKF_ckcb_r_act_mus_suzuki_a1_tbl
- 0x80CD955C: cKF_kn_act_mus_suzuki_a1_tbl
- 0x80CD956C: cKF_c_act_mus_suzuki_a1_tbl
- 0x80CD9578: cKF_ds_act_mus_suzuki_a1_tbl
- 0x80CD9614: cKF_ba_r_act_mus_suzuki_a1
- 0x80CD9660: act_mus_suzuki_body_txt
- 0x80CD9960: act_mus_suzuki_a1_v
- 0x80CD9D10: act_mus_suzuki_sakana_body_model
- 0x80CD9DA0: act_mus_suzuki_sakana_head_model
- 0x80CD9DF0: cKF_je_r_act_mus_suzuki_a1_tbl
- 0x80CD9E14: cKF_bs_r_act_mus_suzuki_a1
- 0x80CD9E20: cKF_ckcb_r_act_mus_tai_a1_tbl
- 0x80CD9E24: cKF_kn_act_mus_tai_a1_tbl
- 0x80CD9E34: cKF_c_act_mus_tai_a1_tbl
- 0x80CD9E40: cKF_ds_act_mus_tai_a1_tbl
- 0x80CD9EDC: cKF_ba_r_act_mus_tai_a1
- 0x80CD9F20: act_mus_tai_body_txt
- 0x80CDA220: act_mus_tai_a1_v
- 0x80CDA5E0: act_mus_tai_sakana_body_model
- 0x80CDA668: act_mus_tai_sakana_head_model
- 0x80CDA6B8: cKF_je_r_act_mus_tai_a1_tbl
- 0x80CDA6DC: cKF_bs_r_act_mus_tai_a1
- 0x80CDA6E8: cKF_ckcb_r_act_mus_tanago_a1_tbl
- 0x80CDA6EC: cKF_kn_act_mus_tanago_a1_tbl
- 0x80CDA6FC: cKF_c_act_mus_tanago_a1_tbl
- 0x80CDA708: cKF_ds_act_mus_tanago_a1_tbl
- 0x80CDA7A4: cKF_ba_r_act_mus_tanago_a1
- 0x80CDA7E0: act_mus_tanago_body_txt
- 0x80CDA9E0: act_mus_tanago_a1_v
- 0x80CDAD30: act_mus_tanago_sakana_body_model
- 0x80CDADB0: act_mus_tanago_sakana_head_model
- 0x80CDADF0: cKF_je_r_act_mus_tanago_a1_tbl
- 0x80CDAE14: cKF_bs_r_act_mus_tanago_a1
- 0x80CDAE20: cKF_ckcb_r_act_mus_ugui_a1_tbl
- 0x80CDAE24: cKF_kn_act_mus_ugui_a1_tbl
- 0x80CDAE34: cKF_c_act_mus_ugui_a1_tbl
- 0x80CDAE40: cKF_ds_act_mus_ugui_a1_tbl
- 0x80CDAEDC: cKF_ba_r_act_mus_ugui_a1
- 0x80CDAF20: act_mus_ugui_body_txt
- 0x80CDB220: act_mus_ugui_a1_v
- 0x80CDB500: act_mus_ugui_sakana_body_model
- 0x80CDB588: act_mus_ugui_sakana_head_model
- 0x80CDB5D0: cKF_je_r_act_mus_ugui_a1_tbl
- 0x80CDB5F4: cKF_bs_r_act_mus_ugui_a1
- 0x80CDB620: act_mus_unagi_body_txt
- 0x80CDB820: act_mus_unagi_a1_v
- 0x80CDC120: act_mus_unagi_sakana_tail_model
- 0x80CDC180: act_mus_unagi_sakana_leg2_model
- 0x80CDC208: act_mus_unagi_sakana_leg_model
- 0x80CDC280: act_mus_unagi_sakana_body_model
- 0x80CDC2F0: act_mus_unagi_sakana_head_model
- 0x80CDC330: cKF_je_r_act_mus_unagi_a1_tbl
- 0x80CDC378: cKF_bs_r_act_mus_unagi_a1
- 0x80CDC380: cKF_ckcb_r_act_mus_unagi_a2_tbl
- 0x80CDC384: cKF_kn_act_mus_unagi_a2_tbl
- 0x80CDC390: cKF_c_act_mus_unagi_a2_tbl
- 0x80CDC3A0: cKF_ds_act_mus_unagi_a2_tbl
- 0x80CDC3F0: cKF_ba_r_act_mus_unagi_a2
- 0x80CDC408: cKF_ckcb_r_act_mus_wakasa_a1_tbl
- 0x80CDC40C: cKF_kn_act_mus_wakasa_a1_tbl
- 0x80CDC41C: cKF_c_act_mus_wakasa_a1_tbl
- 0x80CDC428: cKF_ds_act_mus_wakasa_a1_tbl
- 0x80CDC4D0: cKF_ba_r_act_mus_wakasa_a1
- 0x80CDC520: act_mus_wakasagi_body_txt
- 0x80CDC620: act_mus_wakasa_a1_v
- 0x80CDCA00: act_mus_wakasa_sakana_body_model
- 0x80CDCA70: act_mus_wakasa_sakana_head_model
- 0x80CDCAD8: cKF_je_r_act_mus_wakasa_a1_tbl
- 0x80CDCAFC: cKF_bs_r_act_mus_wakasa_a1
- 0x80CDCB08: cKF_ckcb_r_act_mus_yamame_a1_tbl
- 0x80CDCB0C: cKF_kn_act_mus_yamame_a1_tbl
- 0x80CDCB1C: cKF_c_act_mus_yamame_a1_tbl
- 0x80CDCB28: cKF_ds_act_mus_yamame_a1_tbl
- 0x80CDCBC4: cKF_ba_r_act_mus_yamame_a1
- 0x80CDCC00: act_mus_yamame_body_txt
- 0x80CDCF00: act_mus_yamame_a1_v
- 0x80CDD320: act_mus_yamame_sakana_body_model
- 0x80CDD3B8: act_mus_yamame_sakana_head_model
- 0x80CDD408: cKF_je_r_act_mus_yamame_a1_tbl
- 0x80CDD42C: cKF_bs_r_act_mus_yamame_a1
- 0x80CDD438: cKF_ckcb_r_act_mus_zari_tbl
- 0x80CDD444: cKF_kn_act_mus_zari_tbl
- 0x80CDD44C: cKF_c_act_mus_zari_tbl
- 0x80CDD480: cKF_ds_act_mus_zari_tbl
- 0x80CDD584: cKF_ba_r_act_mus_zari
- 0x80CDD5A0: act_mus_zari_pal
- 0x80CDD5C0: act_mus_zari_tex_txt
- 0x80CDD9C0: act_mus_zari_v
- 0x80CDDD30: act_mus_zari_tail_model
- 0x80CDDDB0: act_mus_zari_right_model
- 0x80CDDDF0: act_mus_zari_left_model
- 0x80CDDE30: act_mus_zari_asi_model
- 0x80CDDE70: act_mus_zari_base_model
- 0x80CDDEB8: cKF_je_r_act_mus_zari_tbl
- 0x80CDDF24: cKF_bs_r_act_mus_zari
- 0x80CDDF40: obj_museum5_on_pal
- 0x80CDDF60: obj_museum5_wallB_pal
- 0x80CDDF80: obj_museum5_soko_pal
- 0x80CDDFA0: obj_museum5_hitode_pal
- 0x80CDDFC0: obj_museum5_evw_tex_rgb_ci4_pal
- 0x80CDDFE0: obj_museum5_isi_tex
- 0x80CDE7E0: obj_museum5_pink_tex
- 0x80CDEFE0: obj_museum5_inside_tex
- 0x80CDF060: obj_museum5_soko_tex
- 0x80CDF460: obj_museum5_hitode1_tex
- 0x80CDF560: obj_museum5_wallB_tex
- 0x80CDF960: obj_museum5_hitode2_tex
- 0x80CDFA60: obj_museum5_fuji_tex
- 0x80CDFAE0: obj_museum5_evw_tex
- 0x80CDFB60: obj_museum5_water1_tex_rgb_i4
- 0x80CDFD60: obj_museum5_water2_tex_rgb_i4
- 0x80CDFF60: obj_museum5_v
- 0x80CE1830: obj_museum5_modelT
- 0x80CE1960: obj_museum5_model
- 0x80CE1EE0: obj_museum5_evw_anime_1
- 0x80CE1EE8: obj_museum5_evw_anime
- 0x80CE1EF0: cKF_ckcb_r_obj_museum5_hasu_tbl
- 0x80CE1EFC: cKF_kn_obj_museum5_hasu_tbl
- 0x80CE1F08: cKF_c_obj_museum5_hasu_tbl
- 0x80CE1F40: cKF_ds_obj_museum5_hasu_tbl
- 0x80CE1F88: cKF_ba_r_obj_museum5_hasu
- 0x80CE1FA0: obj_museum5_hasu_pal
- 0x80CE1FC0: obj_museum5_hasu1_tex_txt
- 0x80CE21C0: obj_museum5_hasu_v
- 0x80CE2330: obj_museum5_hasu1_model
- 0x80CE2390: obj_museum5_hasu3_model
- 0x80CE23F0: obj_museum5_hasu2_model
- 0x80CE2450: cKF_je_r_obj_museum5_hasu_tbl
- 0x80CE24C8: cKF_bs_r_obj_museum5_hasu
- 0x80CE24D0: cKF_ckcb_r_obj_museum5_kusa1_tbl
- 0x80CE24D8: cKF_kn_obj_museum5_kusa1_tbl
- 0x80CE24E0: cKF_c_obj_museum5_kusa1_tbl
- 0x80CE24FC: cKF_ds_obj_museum5_kusa1_tbl
- 0x80CE255C: cKF_ba_r_obj_museum5_kusa1
- 0x80CE2980: obj_museum5_kusa1_v
- 0x80CE2CE0: obj_museum5_kusa1_1_model
- 0x80CE2D38: obj_museum5_kusa1_2_model
- 0x80CE2DC8: obj_museum5_kusa1_3_model
- 0x80CE2E58: obj_museum5_kusa1_4_model
- 0x80CE2ED8: cKF_je_r_obj_museum5_kusa1_tbl
- 0x80CE2F14: cKF_bs_r_obj_museum5_kusa1
- 0x80CE2F20: cKF_ckcb_r_obj_museum5_kusa2_tbl
- 0x80CE2F28: cKF_kn_obj_museum5_kusa2_tbl
- 0x80CE2F30: cKF_c_obj_museum5_kusa2_tbl
- 0x80CE2F4C: cKF_ds_obj_museum5_kusa2_tbl
- 0x80CE2FAC: cKF_ba_r_obj_museum5_kusa2
- 0x80CE2FC0: obj_museum5_kusa2_pal
- 0x80CE2FE0: obj_museum5_kusa2_tex_txt
- 0x80CE30E0: obj_museum5_kusa2_v
- 0x80CE32B0: obj_museum5_kusa2_1_model
- 0x80CE3310: obj_museum5_kusa2_2_model
- 0x80CE3398: obj_museum5_kusa2_3_model
- 0x80CE3420: obj_museum5_kusa2_4_model
- 0x80CE34A0: cKF_je_r_obj_museum5_kusa2_tbl
- 0x80CE34DC: cKF_bs_r_obj_museum5_kusa2
- 0x80CE34E8: cKF_ckcb_r_obj_museum5_kusa3_tbl
- 0x80CE34EC: cKF_kn_obj_museum5_kusa3_tbl
- 0x80CE34F4: cKF_c_obj_museum5_kusa3_tbl
- 0x80CE350C: cKF_ds_obj_museum5_kusa3_tbl
- 0x80CE3550: cKF_ba_r_obj_museum5_kusa3
- 0x80CE3980: obj_museum5_kusa3_v
- 0x80CE3BC0: obj_museum5_kusa3_1_model
- 0x80CE3C18: obj_museum5_kusa3_2_model
- 0x80CE3CA8: obj_museum5_kusa3_3_model
- 0x80CE3D28: cKF_je_r_obj_museum5_kusa3_tbl
- 0x80CE3D58: cKF_bs_r_obj_museum5_kusa3
- 0x80CE3D60: obj_suisou1_pal
- 0x80CE3D80: obj_suisou1_evw_tex_rgb_ci4_pal
- 0x80CE3DA0: obj_suisou1_front_tex
- 0x80CE3FA0: obj_suisou1_futi_tex
- 0x80CE4020: obj_suisou1_isi_tex
- 0x80CE4820: obj_suisou1_mizu_tex
- 0x80CE48A0: obj_suisou1_evw_tex
- 0x80CE4920: obj_suisou1_water1_tex_rgb_i4
- 0x80CE4B20: obj_suisou1_water2_tex_rgb_i4
- 0x80CE4D20: obj_suisou1_v
- 0x80CE53F0: obj_suisou1_modelT
- 0x80CE55A0: obj_suisou1_model
- 0x80CE5670: act_mus_fish_set_mode
- 0x80CE56A0: obj_suisou1_evw_anime_1
- 0x80CE56A8: obj_suisou1_evw_anime
- 0x80CE56B0: fish_price_table
- 0x80CE5708: food_price_table
- 0x80CE5720: ftr_listA
- 0x80CE57F0: ftr_listB
- 0x80CE58C4: ftr_listC
- 0x80CE5994: ftr_listEvent
- 0x80CE5A1C: ftr_listTrain
- 0x80CE5A28: ftr_listLottery
- 0x80CE5A74: ftr_listHalloween
- 0x80CE5A8C: ftr_listPresent
- 0x80CE5A90: ftr_listChristmas
- 0x80CE5AA8: ftr_listSnow
- 0x80CE5AC0: ftr_listHalloween2
- 0x80CE5AC8: ftr_listJonason
- 0x80CE5AF4: ftr_listPostoffice
- 0x80CE5B00: ftr_listNintendo64
- 0x80CE5B04: ftr_listSpecialPresent
- 0x80CE5B10: ftr_listIsland
- 0x80CE5B24: ftr_listHomePage
- 0x80CE5B30: ftr_listEventPresentChumon
- 0x80CE5B4C: ftr_listKamakura
- 0x80CE5B60: ftr_listIslandFamicom
- 0x80CE5B68: ftr_listHarvest
- 0x80CE5B80: ftr_listMario
- 0x80CE5B84: ftr_listTent
- 0x80CE5B9C: mSP_ftr_list
- 0x80CE5BF8: ftr_price_table
- 0x80CE65E0: int_dummy_pal
- 0x80CE6600: int_dummy_tex
- 0x80CE6680: int_dummy_v
- 0x80CE66B0: int_dummy_model
- 0x80CE6720: mFM_grd_s_grass_tex
- 0x80CE6920: mFM_grd_s_grass_2_tex
- 0x80CE6B20: mFM_grd_s_grass_3_tex
- 0x80CE6D20: mFM_grd_w_grass_tex
- 0x80CE6F20: mFM_grd_w_grass_2_tex
- 0x80CE7120: mFM_grd_w_grass_3_tex
- 0x80CE7320: grd_s_c1_1_v
- 0x80CE8180: grd_s_c1_1_modelT
- 0x80CE8188: grd_s_c1_1_model
- 0x80CE83C0: grd_s_c1_2_v
- 0x80CE9290: grd_s_c1_2_modelT
- 0x80CE9298: grd_s_c1_2_model
- 0x80CE9510: grd_s_c1_3_v
- 0x80CEA330: grd_s_c1_3_modelT
- 0x80CEA338: grd_s_c1_3_model
- 0x80CEA598: grd_s_c1_4_v
- 0x80CEB5D8: grd_s_c1_4_modelT
- 0x80CEB5E0: grd_s_c1_4_model
- 0x80CEB868: grd_s_c1_5_v
- 0x80CEC538: grd_s_c1_5_modelT
- 0x80CEC540: grd_s_c1_5_model
- 0x80CEC738: grd_s_c1_r1_1_evw_anime_1
- 0x80CEC740: grd_s_c1_r1_1_evw_anime
- 0x80CEC748: grd_s_c1_r1_1_v
- 0x80CED978: grd_s_c1_r1_1_modelT
- 0x80CEDA10: grd_s_c1_r1_1_model
- 0x80CEDCF0: grd_s_c1_r1_2_evw_anime_1
- 0x80CEDCF8: grd_s_c1_r1_2_evw_anime
- 0x80CEDD00: grd_s_c1_r1_2_v
- 0x80CEEE20: grd_s_c1_r1_2_modelT
- 0x80CEEEB0: grd_s_c1_r1_2_model
- 0x80CEF128: grd_s_c1_r1_3_evw_anime_1
- 0x80CEF130: grd_s_c1_r1_3_evw_anime
- 0x80CEF138: grd_s_c1_r1_3_v
- 0x80CF0258: grd_s_c1_r1_3_modelT
- 0x80CF02F0: grd_s_c1_r1_3_model
- 0x80CF0538: grd_s_c1_r2_1_evw_anime_1
- 0x80CF0540: grd_s_c1_r2_1_evw_anime
- 0x80CF0548: grd_s_c1_r2_1_v
- 0x80CF1648: grd_s_c1_r2_1_modelT
- 0x80CF16C8: grd_s_c1_r2_1_model
- 0x80CF1960: grd_s_c1_r2_2_evw_anime_1
- 0x80CF1968: grd_s_c1_r2_2_evw_anime
- 0x80CF1970: grd_s_c1_r2_2_v
- 0x80CF2AF0: grd_s_c1_r2_2_modelT
- 0x80CF2B70: grd_s_c1_r2_2_model
- 0x80CF2DC8: grd_s_c1_r2_3_evw_anime_1
- 0x80CF2DD0: grd_s_c1_r2_3_evw_anime
- 0x80CF2DD8: grd_s_c1_r2_3_v
- 0x80CF40D8: grd_s_c1_r2_3_modelT
- 0x80CF4160: grd_s_c1_r2_3_model
- 0x80CF4440: grd_s_c1_r3_1_evw_anime_1
- 0x80CF4448: grd_s_c1_r3_1_evw_anime
- 0x80CF4450: grd_s_c1_r3_1_v
- 0x80CF5230: grd_s_c1_r3_1_modelT
- 0x80CF52B8: grd_s_c1_r3_1_model
- 0x80CF5508: grd_s_c1_r3_2_evw_anime_1
- 0x80CF5510: grd_s_c1_r3_2_evw_anime
- 0x80CF5518: grd_s_c1_r3_2_v
- 0x80CF6508: grd_s_c1_r3_2_modelT
- 0x80CF6590: grd_s_c1_r3_2_model
- 0x80CF6810: grd_s_c1_r3_3_evw_anime_1
- 0x80CF6818: grd_s_c1_r3_3_evw_anime
- 0x80CF6820: grd_s_c1_r3_3_v
- 0x80CF7900: grd_s_c1_r3_3_modelT
- 0x80CF7988: grd_s_c1_r3_3_model
- 0x80CF7C58: grd_s_c1_s_1_v
- 0x80CF8918: grd_s_c1_s_1_modelT
- 0x80CF8920: grd_s_c1_s_1_model
- 0x80CF8B38: grd_s_c1_s_2_v
- 0x80CF99F8: grd_s_c1_s_2_modelT
- 0x80CF9A00: grd_s_c1_s_2_model
- 0x80CF9C60: grd_s_c1_s_3_v
- 0x80CFAC60: grd_s_c1_s_3_model
- 0x80CFAEA0: grd_s_c1_s_4_v
- 0x80CFBF20: grd_s_c1_s_4_modelT
- 0x80CFBF28: grd_s_c1_s_4_model
- 0x80CFC1B0: grd_s_c2_1_v
- 0x80CFCF80: grd_s_c2_1_modelT
- 0x80CFCF88: grd_s_c2_1_model
- 0x80CFD1D0: grd_s_c2_2_v
- 0x80CFE010: grd_s_c2_2_modelT
- 0x80CFE018: grd_s_c2_2_model
- 0x80CFE220: grd_s_c2_3_evw_anime_1
- 0x80CFE228: grd_s_c2_3_evw_anime
- 0x80CFE230: grd_s_c2_3_v
- 0x80CFF2B0: grd_s_c2_3_modelT
- 0x80CFF328: grd_s_c2_3_model
- 0x80CFF5A8: grd_s_c2_r1_1_evw_anime_1
- 0x80CFF5B0: grd_s_c2_r1_1_evw_anime
- 0x80CFF5B8: grd_s_c2_r1_1_v
- 0x80D00688: grd_s_c2_r1_1_modelT
- 0x80D00718: grd_s_c2_r1_1_model
- 0x80D009A0: grd_s_c2_r1_2_evw_anime_1
- 0x80D009A8: grd_s_c2_r1_2_evw_anime
- 0x80D009B0: grd_s_c2_r1_2_v
- 0x80D01B50: grd_s_c2_r1_2_modelT
- 0x80D01BD8: grd_s_c2_r1_2_model
- 0x80D01E70: grd_s_c2_r2_1_evw_anime_1
- 0x80D01E78: grd_s_c2_r2_1_evw_anime
- 0x80D01E80: grd_s_c2_r2_1_v
- 0x80D02E70: grd_s_c2_r2_1_modelT
- 0x80D02F08: grd_s_c2_r2_1_model
- 0x80D03140: grd_s_c2_r2_2_evw_anime_1
- 0x80D03148: grd_s_c2_r2_2_evw_anime
- 0x80D03150: grd_s_c2_r2_2_v
- 0x80D04360: grd_s_c2_r2_2_modelT
- 0x80D04408: grd_s_c2_r2_2_model
- 0x80D04680: grd_s_c2_s_1_v
- 0x80D05790: grd_s_c2_s_1_modelT
- 0x80D05798: grd_s_c2_s_1_model
- 0x80D05A20: grd_s_c2_s_2_v
- 0x80D06880: grd_s_c2_s_2_modelT
- 0x80D06888: grd_s_c2_s_2_model
- 0x80D06AF0: grd_s_c2_s_3_v
- 0x80D07880: grd_s_c2_s_3_modelT
- 0x80D07888: grd_s_c2_s_3_model
- 0x80D07AF0: grd_s_c3_1_v
- 0x80D08A30: grd_s_c3_1_modelT
- 0x80D08A38: grd_s_c3_1_model
- 0x80D08C80: grd_s_c3_2_evw_anime_1
- 0x80D08C88: grd_s_c3_2_evw_anime
- 0x80D08C90: grd_s_c3_2_v
- 0x80D09A90: grd_s_c3_2_modelT
- 0x80D09B08: grd_s_c3_2_model
- 0x80D09D80: grd_s_c3_3_v
- 0x80D0AAA0: grd_s_c3_3_modelT
- 0x80D0AAA8: grd_s_c3_3_model
- 0x80D0ACF0: grd_s_c3_r1_1_evw_anime_1
- 0x80D0ACF8: grd_s_c3_r1_1_evw_anime
- 0x80D0AD00: grd_s_c3_r1_1_v
- 0x80D0BBA0: grd_s_c3_r1_1_modelT
- 0x80D0BC20: grd_s_c3_r1_1_model
- 0x80D0BE48: grd_s_c3_r1_2_evw_anime_1
- 0x80D0BE50: grd_s_c3_r1_2_evw_anime
- 0x80D0BE58: grd_s_c3_r1_2_v
- 0x80D0CE48: grd_s_c3_r1_2_modelT
- 0x80D0CED8: grd_s_c3_r1_2_model
- 0x80D0D148: grd_s_c3_r2_1_evw_anime_1
- 0x80D0D150: grd_s_c3_r2_1_evw_anime
- 0x80D0D158: grd_s_c3_r2_1_v
- 0x80D0E468: grd_s_c3_r2_1_modelT
- 0x80D0E4F8: grd_s_c3_r2_1_model
- 0x80D0E7C8: grd_s_c3_r2_2_evw_anime_1
- 0x80D0E7D0: grd_s_c3_r2_2_evw_anime
- 0x80D0E7D8: grd_s_c3_r2_2_v
- 0x80D0FAE8: grd_s_c3_r2_2_modelT
- 0x80D0FB80: grd_s_c3_r2_2_model
- 0x80D0FE50: grd_s_c3_s_1_evw_anime_1
- 0x80D0FE58: grd_s_c3_s_1_evw_anime
- 0x80D0FE60: grd_s_c3_s_1_v
- 0x80D11330: grd_s_c3_s_1_modelT
- 0x80D113A0: grd_s_c3_s_1_model
- 0x80D11628: grd_s_c4_1_v
- 0x80D12218: grd_s_c4_1_modelT
- 0x80D12220: grd_s_c4_1_model
- 0x80D12430: grd_s_c4_2_v
- 0x80D13370: grd_s_c4_2_modelT
- 0x80D13378: grd_s_c4_2_model
- 0x80D135B0: grd_s_c4_3_v
- 0x80D14340: grd_s_c4_3_modelT
- 0x80D14348: grd_s_c4_3_model
- 0x80D14598: grd_s_c4_r1_1_evw_anime_1
- 0x80D145A0: grd_s_c4_r1_1_evw_anime
- 0x80D145A8: grd_s_c4_r1_1_v
- 0x80D155A8: grd_s_c4_r1_1_modelT
- 0x80D15628: grd_s_c4_r1_1_model
- 0x80D158B0: grd_s_c4_r1_2_evw_anime_1
- 0x80D158B8: grd_s_c4_r1_2_evw_anime
- 0x80D158C0: grd_s_c4_r1_2_v
- 0x80D16860: grd_s_c4_r1_2_modelT
- 0x80D168E8: grd_s_c4_r1_2_model
- 0x80D16B80: grd_s_c4_r2_1_evw_anime_1
- 0x80D16B88: grd_s_c4_r2_1_evw_anime
- 0x80D16B90: grd_s_c4_r2_1_v
- 0x80D17C00: grd_s_c4_r2_1_modelT
- 0x80D17C80: grd_s_c4_r2_1_model
- 0x80D17EF8: grd_s_c4_r2_2_evw_anime_1
- 0x80D17F00: grd_s_c4_r2_2_evw_anime
- 0x80D17F08: grd_s_c4_r2_2_v
- 0x80D18D08: grd_s_c4_r2_2_modelT
- 0x80D18D88: grd_s_c4_r2_2_model
- 0x80D18FB0: grd_s_c4_r3_1_evw_anime_1
- 0x80D18FB8: grd_s_c4_r3_1_evw_anime
- 0x80D18FC0: grd_s_c4_r3_1_v
- 0x80D19DE0: grd_s_c4_r3_1_modelT
- 0x80D19E60: grd_s_c4_r3_1_model
- 0x80D1A0C8: grd_s_c4_r3_2_evw_anime_1
- 0x80D1A0D0: grd_s_c4_r3_2_evw_anime
- 0x80D1A0D8: grd_s_c4_r3_2_v
- 0x80D1AE08: grd_s_c4_r3_2_modelT
- 0x80D1AE88: grd_s_c4_r3_2_model
- 0x80D1B088: grd_s_c4_s_1_v
- 0x80D1BDD8: grd_s_c4_s_1_modelT
- 0x80D1BDE0: grd_s_c4_s_1_model
- 0x80D1C030: grd_s_c4_s_2_v
- 0x80D1D020: grd_s_c4_s_2_modelT
- 0x80D1D028: grd_s_c4_s_2_model
- 0x80D1D2A8: grd_s_c5_1_v
- 0x80D1DD98: grd_s_c5_1_modelT
- 0x80D1DDA0: grd_s_c5_1_model
- 0x80D1DFA8: grd_s_c5_2_v
- 0x80D1EF28: grd_s_c5_2_modelT
- 0x80D1EF30: grd_s_c5_2_model
- 0x80D1F1B8: grd_s_c5_3_v
- 0x80D1FD08: grd_s_c5_3_modelT
- 0x80D1FD10: grd_s_c5_3_model
- 0x80D1FF20: grd_s_c5_r1_1_evw_anime_1
- 0x80D1FF28: grd_s_c5_r1_1_evw_anime
- 0x80D1FF30: grd_s_c5_r1_1_v
- 0x80D211D0: grd_s_c5_r1_1_modelT
- 0x80D21260: grd_s_c5_r1_1_model
- 0x80D21510: grd_s_c5_r1_2_evw_anime_1
- 0x80D21518: grd_s_c5_r1_2_evw_anime
- 0x80D21520: grd_s_c5_r1_2_v
- 0x80D22760: grd_s_c5_r1_2_modelT
- 0x80D227F0: grd_s_c5_r1_2_model
- 0x80D22AB0: grd_s_c5_r2_1_evw_anime_1
- 0x80D22AB8: grd_s_c5_r2_1_evw_anime
- 0x80D22AC0: grd_s_c5_r2_1_v
- 0x80D23E40: grd_s_c5_r2_1_modelT
- 0x80D23ED0: grd_s_c5_r2_1_model
- 0x80D241C0: grd_s_c5_r2_2_evw_anime_1
- 0x80D241C8: grd_s_c5_r2_2_evw_anime
- 0x80D241D0: grd_s_c5_r2_2_v
- 0x80D25300: grd_s_c5_r2_2_modelT
- 0x80D25388: grd_s_c5_r2_2_model
- 0x80D25638: grd_s_c5_r3_1_evw_anime_1
- 0x80D25640: grd_s_c5_r3_1_evw_anime
- 0x80D25648: grd_s_c5_r3_1_v
- 0x80D26658: grd_s_c5_r3_1_modelT
- 0x80D266D8: grd_s_c5_r3_1_model
- 0x80D26978: grd_s_c5_r3_2_evw_anime_1
- 0x80D26980: grd_s_c5_r3_2_evw_anime
- 0x80D26988: grd_s_c5_r3_2_v
- 0x80D27898: grd_s_c5_r3_2_modelT
- 0x80D27920: grd_s_c5_r3_2_model
- 0x80D27B78: grd_s_c5_s_1_v
- 0x80D288F8: grd_s_c5_s_1_modelT
- 0x80D28900: grd_s_c5_s_1_model
- 0x80D28B20: grd_s_c5_s_2_v
- 0x80D298C0: grd_s_c5_s_2_model
- 0x80D29AC8: grd_s_c6_1_v
- 0x80D2A998: grd_s_c6_1_modelT
- 0x80D2A9A0: grd_s_c6_1_model
- 0x80D2AC00: grd_s_c6_2_v
- 0x80D2BB80: grd_s_c6_2_modelT
- 0x80D2BB88: grd_s_c6_2_model
- 0x80D2BE00: grd_s_c6_3_v
- 0x80D2CB60: grd_s_c6_3_modelT
- 0x80D2CB68: grd_s_c6_3_model
- 0x80D2CDA0: grd_s_c6_r1_1_evw_anime_1
- 0x80D2CDA8: grd_s_c6_r1_1_evw_anime
- 0x80D2CDB0: grd_s_c6_r1_1_v
- 0x80D2DD50: grd_s_c6_r1_1_modelT
- 0x80D2DDD8: grd_s_c6_r1_1_model
- 0x80D2E088: grd_s_c6_r1_2_evw_anime_1
- 0x80D2E090: grd_s_c6_r1_2_evw_anime
- 0x80D2E098: grd_s_c6_r1_2_v
- 0x80D2F0B8: grd_s_c6_r1_2_modelT
- 0x80D2F138: grd_s_c6_r1_2_model
- 0x80D2F3E8: grd_s_c6_r3_1_evw_anime_1
- 0x80D2F3F0: grd_s_c6_r3_1_evw_anime
- 0x80D2F3F8: grd_s_c6_r3_1_v
- 0x80D30888: grd_s_c6_r3_1_modelT
- 0x80D30920: grd_s_c6_r3_1_model
- 0x80D30BB0: grd_s_c6_s_1_v
- 0x80D31A50: grd_s_c6_s_1_modelT
- 0x80D31A58: grd_s_c6_s_1_model
- 0x80D31C90: grd_s_c7_1_v
- 0x80D32A90: grd_s_c7_1_modelT
- 0x80D32A98: grd_s_c7_1_model
- 0x80D32CC8: grd_s_c7_2_v
- 0x80D33DD8: grd_s_c7_2_modelT
- 0x80D33DE0: grd_s_c7_2_model
- 0x80D34080: grd_s_c7_3_evw_anime_1
- 0x80D34088: grd_s_c7_3_evw_anime
- 0x80D34090: grd_s_c7_3_v
- 0x80D35150: grd_s_c7_3_modelT
- 0x80D351C8: grd_s_c7_3_model
- 0x80D35450: grd_s_c7_r1_1_evw_anime_1
- 0x80D35458: grd_s_c7_r1_1_evw_anime
- 0x80D35460: grd_s_c7_r1_1_v
- 0x80D362A0: grd_s_c7_r1_1_modelT
- 0x80D36328: grd_s_c7_r1_1_model
- 0x80D365A0: grd_s_c7_r1_2_evw_anime_1
- 0x80D365A8: grd_s_c7_r1_2_evw_anime
- 0x80D365B0: grd_s_c7_r1_2_v
- 0x80D37440: grd_s_c7_r1_2_modelT
- 0x80D374C0: grd_s_c7_r1_2_model
- 0x80D376F8: grd_s_c7_r3_1_evw_anime_1
- 0x80D37700: grd_s_c7_r3_1_evw_anime
- 0x80D37708: grd_s_c7_r3_1_v
- 0x80D38908: grd_s_c7_r3_1_modelT
- 0x80D389A8: grd_s_c7_r3_1_model
- 0x80D38C48: grd_s_c7_r3_2_evw_anime_1
- 0x80D38C50: grd_s_c7_r3_2_evw_anime
- 0x80D38C58: grd_s_c7_r3_2_v
- 0x80D39FA8: grd_s_c7_r3_2_modelT
- 0x80D3A040: grd_s_c7_r3_2_model
- 0x80D3A318: grd_s_c7_s_1_v
- 0x80D3B678: grd_s_c7_s_1_model
- 0x80D3B938: grd_s_c7_s_2_v
- 0x80D3C5B8: grd_s_c7_s_2_model
- 0x80D3C800: grd_s_c7_s_3_v
- 0x80D3D6C0: grd_s_c7_s_3_model
- 0x80D3D930: grd_s_e1_1_v
- 0x80D3DE90: grd_s_e1_1_modelT
- 0x80D3DE98: grd_s_e1_1_model
- 0x80D3DFE0: grd_s_e1_r1_1_evw_anime_1
- 0x80D3DFE8: grd_s_e1_r1_1_evw_anime
- 0x80D3DFF0: grd_s_e1_r1_1_v
- 0x80D3F3E0: grd_s_e1_r1_1_modelT
- 0x80D3F468: grd_s_e1_r1_1_model
- 0x80D3F770: grd_s_e2_1_v
- 0x80D3FDA0: grd_s_e2_1_modelT
- 0x80D3FDA8: grd_s_e2_1_model
- 0x80D3FF08: grd_s_e2_c1_1_v
- 0x80D40568: grd_s_e2_c1_1_modelT
- 0x80D40570: grd_s_e2_c1_1_model
- 0x80D406C8: grd_s_e2_m_1_v
- 0x80D40D58: grd_s_e2_m_1_model
- 0x80D40F00: grd_s_e2_m_1_modelT
- 0x80D40FA0: grd_s_e2_o_1_v
- 0x80D41180: grd_s_e2_o_1_model
- 0x80D411F8: grd_s_e2_o_1_modelT
- 0x80D41280: grd_s_e2_t_1_v
- 0x80D41C00: grd_s_e2_t_1_modelT
- 0x80D41C08: grd_s_e2_t_1_model
- 0x80D41DF0: grd_s_e3_1_v
- 0x80D42480: grd_s_e3_1_modelT
- 0x80D42488: grd_s_e3_1_model
- 0x80D425D8: grd_s_e3_c1_1_v
- 0x80D42C48: grd_s_e3_c1_1_modelT
- 0x80D42C50: grd_s_e3_c1_1_model
- 0x80D42DB0: grd_s_e3_m_1_v
- 0x80D434C0: grd_s_e3_m_1_model
- 0x80D43658: grd_s_e3_m_1_modelT
- 0x80D436F8: grd_s_e3_o_1_v
- 0x80D438D8: grd_s_e3_o_1_model
- 0x80D43950: grd_s_e3_o_1_modelT
- 0x80D439D8: grd_s_e3_t_1_v
- 0x80D44278: grd_s_e3_t_1_modelT
- 0x80D44280: grd_s_e3_t_1_model
- 0x80D44468: grd_s_e4_1_v
- 0x80D445C8: grd_s_e4_1_modelT
- 0x80D445D0: grd_s_e4_1_model
- 0x80D44670: grd_s_e5_1_v
- 0x80D447F0: grd_s_e5_1_modelT
- 0x80D447F8: grd_s_e5_1_model
- 0x80D448A0: grd_s_f_1_v
- 0x80D45410: grd_s_f_1_modelT
- 0x80D45418: grd_s_f_1_model
- 0x80D455F0: grd_s_f_10_v
- 0x80D46210: grd_s_f_10_modelT
- 0x80D46218: grd_s_f_10_model
- 0x80D463D8: grd_s_f_2_v
- 0x80D47118: grd_s_f_2_modelT
- 0x80D47120: grd_s_f_2_model
- 0x80D47320: grd_s_f_3_v
- 0x80D47B00: grd_s_f_3_modelT
- 0x80D47B08: grd_s_f_3_model
- 0x80D47C78: grd_s_f_4_evw_anime_1
- 0x80D47C80: grd_s_f_4_evw_anime
- 0x80D47C88: grd_s_f_4_v
- 0x80D487F8: grd_s_f_4_modelT
- 0x80D48870: grd_s_f_4_model
- 0x80D48A60: grd_s_f_5_evw_anime_1
- 0x80D48A68: grd_s_f_5_evw_anime
- 0x80D48A70: grd_s_f_5_v
- 0x80D499A0: grd_s_f_5_modelT
- 0x80D49A10: grd_s_f_5_model
- 0x80D49C50: grd_s_f_6_evw_anime_1
- 0x80D49C58: grd_s_f_6_evw_anime
- 0x80D49C60: grd_s_f_6_v
- 0x80D4ABD0: grd_s_f_6_modelT
- 0x80D4AC40: grd_s_f_6_model
- 0x80D4AE88: grd_s_f_7_v
- 0x80D4C3B8: grd_s_f_7_modelT
- 0x80D4C3C0: grd_s_f_7_model
- 0x80D4C640: grd_s_f_8_v
- 0x80D4D360: grd_s_f_8_modelT
- 0x80D4D368: grd_s_f_8_model
- 0x80D4D568: grd_s_f_9_v
- 0x80D4E4D8: grd_s_f_9_modelT
- 0x80D4E4E0: grd_s_f_9_model
- 0x80D4E708: grd_s_f_ko_1_v
- 0x80D4F5D8: grd_s_f_ko_1_modelT
- 0x80D4F5E0: grd_s_f_ko_1_model
- 0x80D4F808: grd_s_f_ko_2_v
- 0x80D502B8: grd_s_f_ko_2_modelT
- 0x80D502C0: grd_s_f_ko_2_model
- 0x80D50490: grd_s_f_ko_3_evw_anime_1
- 0x80D50498: grd_s_f_ko_3_evw_anime
- 0x80D504A0: grd_s_f_ko_3_v
- 0x80D51430: grd_s_f_ko_3_modelT
- 0x80D514A8: grd_s_f_ko_3_model
- 0x80D51708: grd_s_f_mh_1_v
- 0x80D523C8: grd_s_f_mh_1_modelT
- 0x80D523D0: grd_s_f_mh_1_model
- 0x80D52588: grd_s_f_mh_2_v
- 0x80D53338: grd_s_f_mh_2_modelT
- 0x80D53340: grd_s_f_mh_2_model
- 0x80D534F0: grd_s_f_mh_3_v
- 0x80D53FF0: grd_s_f_mh_3_modelT
- 0x80D53FF8: grd_s_f_mh_3_model
- 0x80D54190: grd_s_f_mu_1_v
- 0x80D54B90: grd_s_f_mu_1_modelT
- 0x80D54B98: grd_s_f_mu_1_model
- 0x80D54D60: grd_s_f_mu_2_v
- 0x80D55750: grd_s_f_mu_2_modelT
- 0x80D55758: grd_s_f_mu_2_model
- 0x80D55920: grd_s_f_mu_3_evw_anime_1
- 0x80D55928: grd_s_f_mu_3_evw_anime
- 0x80D55930: grd_s_f_mu_3_v
- 0x80D562B0: grd_s_f_mu_3_modelT
- 0x80D56328: grd_s_f_mu_3_model
- 0x80D564B8: grd_s_f_pk_1_v
- 0x80D57378: grd_s_f_pk_1_modelT
- 0x80D57380: grd_s_f_pk_1_model
- 0x80D575B8: grd_s_f_pk_2_v
- 0x80D58358: grd_s_f_pk_2_modelT
- 0x80D58360: grd_s_f_pk_2_model
- 0x80D58580: grd_s_f_pk_3_v
- 0x80D595A0: grd_s_f_pk_3_modelT
- 0x80D595A8: grd_s_f_pk_3_model
- 0x80D59810: grd_s_hole_test_v
- 0x80D5A740: grd_s_hole_test_modelT
- 0x80D5A748: grd_s_hole_test_model
- 0x80D5A9A8: grd_s_il_1_v
- 0x80D5B6C8: grd_s_il_1_model
- 0x80D5B940: grd_s_il_1_modelT
- 0x80D5BA18: grd_s_il_2_v
- 0x80D5CF08: grd_s_il_2_model
- 0x80D5D280: grd_s_il_2_modelT
- 0x80D5D358: grd_s_il_3_v
- 0x80D5E188: grd_s_il_3_model
- 0x80D5E410: grd_s_il_3_modelT
- 0x80D5E4F8: grd_s_il_4_v
- 0x80D5F278: grd_s_il_4_model
- 0x80D5F508: grd_s_il_4_modelT
- 0x80D5F5E8: grd_s_ir_1_v
- 0x80D60668: grd_s_ir_1_model
- 0x80D60980: grd_s_ir_1_modelT
- 0x80D60A60: grd_s_ir_2_v
- 0x80D61DD0: grd_s_ir_2_model
- 0x80D62100: grd_s_ir_2_modelT
- 0x80D621F8: grd_s_ir_3_v
- 0x80D63748: grd_s_ir_3_model
- 0x80D63AD8: grd_s_ir_3_modelT
- 0x80D63BB0: grd_s_ir_4_v
- 0x80D64D60: grd_s_ir_4_model
- 0x80D65088: grd_s_ir_4_modelT
- 0x80D65158: grd_s_m_1_v
- 0x80D65F58: grd_s_m_1_model
- 0x80D66188: grd_s_m_1_modelT
- 0x80D662B0: grd_s_m_10_v
- 0x80D670A0: grd_s_m_10_model
- 0x80D67328: grd_s_m_10_modelT
- 0x80D67438: grd_s_m_2_v
- 0x80D68368: grd_s_m_2_model
- 0x80D68620: grd_s_m_2_modelT
- 0x80D68718: grd_s_m_3_v
- 0x80D69578: grd_s_m_3_model
- 0x80D697D0: grd_s_m_3_modelT
- 0x80D698C8: grd_s_m_4_v
- 0x80D6A528: grd_s_m_4_model
- 0x80D6A788: grd_s_m_4_modelT
- 0x80D6A8A0: grd_s_m_5_v
- 0x80D6B8A0: grd_s_m_5_model
- 0x80D6BB78: grd_s_m_5_modelT
- 0x80D6BC70: grd_s_m_6_v
- 0x80D6CBE0: grd_s_m_6_model
- 0x80D6CE58: grd_s_m_6_modelT
- 0x80D6CF60: grd_s_m_7_v
- 0x80D6DBF0: grd_s_m_7_model
- 0x80D6DE50: grd_s_m_7_modelT
- 0x80D6DF60: grd_s_m_8_v
- 0x80D6EC70: grd_s_m_8_model
- 0x80D6EF00: grd_s_m_8_modelT
- 0x80D6EFE8: grd_s_m_9_v
- 0x80D6FC28: grd_s_m_9_model
- 0x80D6FE28: grd_s_m_9_modelT
- 0x80D6FF58: grd_s_m_r1_1_evw_anime_1
- 0x80D6FF60: grd_s_m_r1_1_evw_anime_4
- 0x80D6FF68: grd_s_m_r1_1_evw_anime
- 0x80D6FF78: grd_s_m_r1_1_v
- 0x80D70FB8: grd_s_m_r1_1_model
- 0x80D71238: grd_s_m_r1_1_modelT
- 0x80D713D8: grd_s_m_r1_2_evw_anime_1
- 0x80D713E0: grd_s_m_r1_2_evw_anime_4
- 0x80D713E8: grd_s_m_r1_2_evw_anime
- 0x80D713F8: grd_s_m_r1_2_v
- 0x80D723C8: grd_s_m_r1_2_model
- 0x80D72628: grd_s_m_r1_2_modelT
- 0x80D727B8: grd_s_m_r1_3_evw_anime_1
- 0x80D727C0: grd_s_m_r1_3_evw_anime_4
- 0x80D727C8: grd_s_m_r1_3_evw_anime
- 0x80D727D8: grd_s_m_r1_3_v
- 0x80D73638: grd_s_m_r1_3_model
- 0x80D738A0: grd_s_m_r1_3_modelT
- 0x80D73A30: grd_s_m_r1_4_evw_anime_1
- 0x80D73A38: grd_s_m_r1_4_evw_anime_4
- 0x80D73A40: grd_s_m_r1_4_evw_anime
- 0x80D73A50: grd_s_m_r1_4_v
- 0x80D74B90: grd_s_m_r1_4_model
- 0x80D74E40: grd_s_m_r1_4_modelT
- 0x80D74FD8: grd_s_m_r1_5_evw_anime_1
- 0x80D74FE0: grd_s_m_r1_5_evw_anime_4
- 0x80D74FE8: grd_s_m_r1_5_evw_anime
- 0x80D74FF8: grd_s_m_r1_5_v
- 0x80D76238: grd_s_m_r1_5_model
- 0x80D764D0: grd_s_m_r1_5_modelT
- 0x80D76660: grd_s_m_r1_b_1_evw_anime_1
- 0x80D76668: grd_s_m_r1_b_1_evw_anime_4
- 0x80D76670: grd_s_m_r1_b_1_evw_anime
- 0x80D76680: grd_s_m_r1_b_1_v
- 0x80D774E0: grd_s_m_r1_b_1_model
- 0x80D77790: grd_s_m_r1_b_1_modelT
- 0x80D77908: grd_s_m_r1_b_2_evw_anime_1
- 0x80D77910: grd_s_m_r1_b_2_evw_anime_4
- 0x80D77918: grd_s_m_r1_b_2_evw_anime
- 0x80D77928: grd_s_m_r1_b_2_v
- 0x80D78AB8: grd_s_m_r1_b_2_model
- 0x80D78D90: grd_s_m_r1_b_2_modelT
- 0x80D78F10: grd_s_m_r1_b_3_evw_anime_1
- 0x80D78F18: grd_s_m_r1_b_3_evw_anime_4
- 0x80D78F20: grd_s_m_r1_b_3_evw_anime
- 0x80D78F30: grd_s_m_r1_b_3_v
- 0x80D79F30: grd_s_m_r1_b_3_model
- 0x80D7A1D0: grd_s_m_r1_b_3_modelT
- 0x80D7A350: grd_s_m_ta_1_evw_anime_1
- 0x80D7A358: grd_s_m_ta_1_evw_anime_4
- 0x80D7A360: grd_s_m_ta_1_evw_anime
- 0x80D7A370: grd_s_m_ta_1_v
- 0x80D7B320: grd_s_m_ta_1_model
- 0x80D7B5C0: grd_s_m_ta_1_modelT
- 0x80D7B6C8: grd_s_m_ta_2_evw_anime_1
- 0x80D7B6D0: grd_s_m_ta_2_evw_anime_4
- 0x80D7B6D8: grd_s_m_ta_2_evw_anime
- 0x80D7B6E8: grd_s_m_ta_2_v
- 0x80D7C568: grd_s_m_ta_2_model
- 0x80D7C810: grd_s_m_ta_2_modelT
- 0x80D7C900: grd_s_m_ta_3_evw_anime_1
- 0x80D7C908: grd_s_m_ta_3_evw_anime_4
- 0x80D7C910: grd_s_m_ta_3_evw_anime
- 0x80D7C920: grd_s_m_ta_3_v
- 0x80D7D890: grd_s_m_ta_3_model
- 0x80D7DB68: grd_s_m_ta_3_modelT
- 0x80D7DC70: grd_s_m_wf_1_evw_anime_1
- 0x80D7DC78: grd_s_m_wf_1_evw_anime_2
- 0x80D7DC80: grd_s_m_wf_1_evw_anime_3
- 0x80D7DC88: grd_s_m_wf_1_evw_anime_4
- 0x80D7DC90: grd_s_m_wf_1_evw_anime
- 0x80D7DCB0: grd_s_m_wf_1_v
- 0x80D7EEE0: grd_s_m_wf_1_model
- 0x80D7F220: grd_s_m_wf_1_modelT
- 0x80D7F310: grd_s_m_wf_2_evw_anime_1
- 0x80D7F318: grd_s_m_wf_2_evw_anime_2
- 0x80D7F320: grd_s_m_wf_2_evw_anime_3
- 0x80D7F328: grd_s_m_wf_2_evw_anime_4
- 0x80D7F330: grd_s_m_wf_2_evw_anime
- 0x80D7F350: grd_s_m_wf_2_v
- 0x80D80B60: grd_s_m_wf_2_model
- 0x80D80EF0: grd_s_m_wf_2_modelT
- 0x80D81008: grd_s_m_wf_3_evw_anime_1
- 0x80D81010: grd_s_m_wf_3_evw_anime_2
- 0x80D81018: grd_s_m_wf_3_evw_anime_3
- 0x80D81020: grd_s_m_wf_3_evw_anime_4
- 0x80D81028: grd_s_m_wf_3_evw_anime
- 0x80D81048: grd_s_m_wf_3_v
- 0x80D82348: grd_s_m_wf_3_model
- 0x80D826A0: grd_s_m_wf_3_modelT
- 0x80D82780: grd_s_o_1_evw_anime_1
- 0x80D82788: grd_s_o_1_evw_anime_2
- 0x80D82790: grd_s_o_1_evw_anime_3
- 0x80D82798: grd_s_o_1_evw_anime_4
- 0x80D827A0: grd_s_o_1_evw_anime
- 0x80D827C0: grd_s_o_1_v
- 0x80D82B60: grd_s_o_1_model
- 0x80D82BD8: grd_s_o_1_modelT
- 0x80D82CA0: grd_s_o_10_evw_anime_1
- 0x80D82CA8: grd_s_o_10_evw_anime_2
- 0x80D82CB0: grd_s_o_10_evw_anime_3
- 0x80D82CB8: grd_s_o_10_evw_anime_4
- 0x80D82CC0: grd_s_o_10_evw_anime
- 0x80D82CE0: grd_s_o_10_v
- 0x80D83040: grd_s_o_10_model
- 0x80D830B8: grd_s_o_10_modelT
- 0x80D83178: grd_s_o_2_evw_anime_1
- 0x80D83180: grd_s_o_2_evw_anime_2
- 0x80D83188: grd_s_o_2_evw_anime_3
- 0x80D83190: grd_s_o_2_evw_anime_4
- 0x80D83198: grd_s_o_2_evw_anime
- 0x80D831B8: grd_s_o_2_v
- 0x80D83518: grd_s_o_2_model
- 0x80D83590: grd_s_o_2_modelT
- 0x80D83658: grd_s_o_3_evw_anime_1
- 0x80D83660: grd_s_o_3_evw_anime_2
- 0x80D83668: grd_s_o_3_evw_anime_3
- 0x80D83670: grd_s_o_3_evw_anime_4
- 0x80D83678: grd_s_o_3_evw_anime
- 0x80D83698: grd_s_o_3_v
- 0x80D839C8: grd_s_o_3_model
- 0x80D83A40: grd_s_o_3_modelT
- 0x80D83B00: grd_s_o_4_evw_anime_1
- 0x80D83B08: grd_s_o_4_evw_anime_2
- 0x80D83B10: grd_s_o_4_evw_anime_3
- 0x80D83B18: grd_s_o_4_evw_anime_4
- 0x80D83B20: grd_s_o_4_evw_anime
- 0x80D83B40: grd_s_o_4_v
- 0x80D83E90: grd_s_o_4_model
- 0x80D83F08: grd_s_o_4_modelT
- 0x80D83FD0: grd_s_o_5_evw_anime_1
- 0x80D83FD8: grd_s_o_5_evw_anime_2
- 0x80D83FE0: grd_s_o_5_evw_anime_3
- 0x80D83FE8: grd_s_o_5_evw_anime_4
- 0x80D83FF0: grd_s_o_5_evw_anime
- 0x80D84010: grd_s_o_5_v
- 0x80D84350: grd_s_o_5_model
- 0x80D843C8: grd_s_o_5_modelT
- 0x80D84490: grd_s_o_6_evw_anime_1
- 0x80D84498: grd_s_o_6_evw_anime_2
- 0x80D844A0: grd_s_o_6_evw_anime_3
- 0x80D844A8: grd_s_o_6_evw_anime_4
- 0x80D844B0: grd_s_o_6_evw_anime
- 0x80D844D0: grd_s_o_6_v
- 0x80D84800: grd_s_o_6_model
- 0x80D84878: grd_s_o_6_modelT
- 0x80D84938: grd_s_o_7_evw_anime_1
- 0x80D84940: grd_s_o_7_evw_anime_2
- 0x80D84948: grd_s_o_7_evw_anime_3
- 0x80D84950: grd_s_o_7_evw_anime_4
- 0x80D84958: grd_s_o_7_evw_anime
- 0x80D84978: grd_s_o_7_v
- 0x80D84CC8: grd_s_o_7_model
- 0x80D84D40: grd_s_o_7_modelT
- 0x80D84E08: grd_s_o_8_evw_anime_1
- 0x80D84E10: grd_s_o_8_evw_anime_2
- 0x80D84E18: grd_s_o_8_evw_anime_3
- 0x80D84E20: grd_s_o_8_evw_anime_4
- 0x80D84E28: grd_s_o_8_evw_anime
- 0x80D84E48: grd_s_o_8_v
- 0x80D851E8: grd_s_o_8_model
- 0x80D85260: grd_s_o_8_modelT
- 0x80D85338: grd_s_o_9_evw_anime_1
- 0x80D85340: grd_s_o_9_evw_anime_2
- 0x80D85348: grd_s_o_9_evw_anime_3
- 0x80D85350: grd_s_o_9_evw_anime_4
- 0x80D85358: grd_s_o_9_evw_anime
- 0x80D85378: grd_s_o_9_v
- 0x80D85708: grd_s_o_9_model
- 0x80D85780: grd_s_o_9_modelT
- 0x80D85850: grd_s_o_i_1_v
- 0x80D85B70: grd_s_o_i_1_model
- 0x80D85C08: grd_s_o_i_1_modelT
- 0x80D85CB0: grd_s_o_i_2_evw_anime_1
- 0x80D85CB8: grd_s_o_i_2_evw_anime_2
- 0x80D85CC0: grd_s_o_i_2_evw_anime_3
- 0x80D85CC8: grd_s_o_i_2_evw_anime_4
- 0x80D85CD0: grd_s_o_i_2_evw_anime
- 0x80D85CF0: grd_s_o_i_2_v
- 0x80D85ED0: grd_s_o_i_2_model
- 0x80D85F48: grd_s_o_i_2_modelT
- 0x80D85FD0: grd_s_o_r1_1_evw_anime_1
- 0x80D85FD8: grd_s_o_r1_1_evw_anime_2
- 0x80D85FE0: grd_s_o_r1_1_evw_anime_3
- 0x80D85FE8: grd_s_o_r1_1_evw_anime_4
- 0x80D85FF0: grd_s_o_r1_1_evw_anime
- 0x80D86010: grd_s_o_r1_1_v
- 0x80D863E0: grd_s_o_r1_1_model
- 0x80D86458: grd_s_o_r1_1_modelT
- 0x80D86520: grd_s_o_r1_2_evw_anime_1
- 0x80D86528: grd_s_o_r1_2_evw_anime_2
- 0x80D86530: grd_s_o_r1_2_evw_anime_3
- 0x80D86538: grd_s_o_r1_2_evw_anime_4
- 0x80D86540: grd_s_o_r1_2_evw_anime
- 0x80D86560: grd_s_o_r1_2_v
- 0x80D86900: grd_s_o_r1_2_model
- 0x80D86978: grd_s_o_r1_2_modelT
- 0x80D86A40: grd_s_o_r1_3_evw_anime_1
- 0x80D86A48: grd_s_o_r1_3_evw_anime_2
- 0x80D86A50: grd_s_o_r1_3_evw_anime_3
- 0x80D86A58: grd_s_o_r1_3_evw_anime_4
- 0x80D86A60: grd_s_o_r1_3_evw_anime
- 0x80D86A80: grd_s_o_r1_3_v
- 0x80D86E30: grd_s_o_r1_3_model
- 0x80D86EA8: grd_s_o_r1_3_modelT
- 0x80D86F78: grd_s_o_r1_4_evw_anime_1
- 0x80D86F80: grd_s_o_r1_4_evw_anime_2
- 0x80D86F88: grd_s_o_r1_4_evw_anime_3
- 0x80D86F90: grd_s_o_r1_4_evw_anime_4
- 0x80D86F98: grd_s_o_r1_4_evw_anime
- 0x80D86FB8: grd_s_o_r1_4_v
- 0x80D87338: grd_s_o_r1_4_model
- 0x80D873B0: grd_s_o_r1_4_modelT
- 0x80D87478: grd_s_o_r1_5_evw_anime_1
- 0x80D87480: grd_s_o_r1_5_evw_anime_2
- 0x80D87488: grd_s_o_r1_5_evw_anime_3
- 0x80D87490: grd_s_o_r1_5_evw_anime_4
- 0x80D87498: grd_s_o_r1_5_evw_anime
- 0x80D874B8: grd_s_o_r1_5_v
- 0x80D87778: grd_s_o_r1_5_model
- 0x80D877F0: grd_s_o_r1_5_modelT
- 0x80D87890: grd_s_o_r1_b_1_evw_anime_1
- 0x80D87898: grd_s_o_r1_b_1_evw_anime_2
- 0x80D878A0: grd_s_o_r1_b_1_evw_anime_3
- 0x80D878A8: grd_s_o_r1_b_1_evw_anime_4
- 0x80D878B0: grd_s_o_r1_b_1_evw_anime
- 0x80D878D0: grd_s_o_r1_b_1_v
- 0x80D87AB0: grd_s_o_r1_b_1_model
- 0x80D87B28: grd_s_o_r1_b_1_modelT
- 0x80D87BB0: grd_s_o_r1_b_2_evw_anime_1
- 0x80D87BB8: grd_s_o_r1_b_2_evw_anime_2
- 0x80D87BC0: grd_s_o_r1_b_2_evw_anime_3
- 0x80D87BC8: grd_s_o_r1_b_2_evw_anime_4
- 0x80D87BD0: grd_s_o_r1_b_2_evw_anime
- 0x80D87BF0: grd_s_o_r1_b_2_v
- 0x80D87DD0: grd_s_o_r1_b_2_model
- 0x80D87E48: grd_s_o_r1_b_2_modelT
- 0x80D87EC8: grd_s_o_r1_b_3_evw_anime_1
- 0x80D87ED0: grd_s_o_r1_b_3_evw_anime_2
- 0x80D87ED8: grd_s_o_r1_b_3_evw_anime_3
- 0x80D87EE0: grd_s_o_r1_b_3_evw_anime_4
- 0x80D87EE8: grd_s_o_r1_b_3_evw_anime
- 0x80D87F08: grd_s_o_r1_b_3_v
- 0x80D880E8: grd_s_o_r1_b_3_model
- 0x80D88160: grd_s_o_r1_b_3_modelT
- 0x80D881E0: grd_s_o_ta_1_evw_anime_1
- 0x80D881E8: grd_s_o_ta_1_evw_anime_2
- 0x80D881F0: grd_s_o_ta_1_evw_anime_3
- 0x80D881F8: grd_s_o_ta_1_evw_anime_4
- 0x80D88200: grd_s_o_ta_1_evw_anime
- 0x80D88220: grd_s_o_ta_1_v
- 0x80D885E0: grd_s_o_ta_1_model
- 0x80D88658: grd_s_o_ta_1_modelT
- 0x80D88728: grd_s_o_ta_2_evw_anime_1
- 0x80D88730: grd_s_o_ta_2_evw_anime_2
- 0x80D88738: grd_s_o_ta_2_evw_anime_3
- 0x80D88740: grd_s_o_ta_2_evw_anime_4
- 0x80D88748: grd_s_o_ta_2_evw_anime
- 0x80D88768: grd_s_o_ta_2_v
- 0x80D88A48: grd_s_o_ta_2_model
- 0x80D88AC0: grd_s_o_ta_2_modelT
- 0x80D88B70: grd_s_o_ta_3_evw_anime_1
- 0x80D88B78: grd_s_o_ta_3_evw_anime_2
- 0x80D88B80: grd_s_o_ta_3_evw_anime_3
- 0x80D88B88: grd_s_o_ta_3_evw_anime_4
- 0x80D88B90: grd_s_o_ta_3_evw_anime
- 0x80D88BB0: grd_s_o_ta_3_v
- 0x80D88EA0: grd_s_o_ta_3_model
- 0x80D88F18: grd_s_o_ta_3_modelT
- 0x80D88FC8: grd_s_o_wf_1_evw_anime_1
- 0x80D88FD0: grd_s_o_wf_1_evw_anime_2
- 0x80D88FD8: grd_s_o_wf_1_evw_anime_3
- 0x80D88FE0: grd_s_o_wf_1_evw_anime_4
- 0x80D88FE8: grd_s_o_wf_1_evw_anime
- 0x80D89008: grd_s_o_wf_1_v
- 0x80D893F8: grd_s_o_wf_1_model
- 0x80D89470: grd_s_o_wf_1_modelT
- 0x80D89538: grd_s_o_wf_2_evw_anime_1
- 0x80D89540: grd_s_o_wf_2_evw_anime_2
- 0x80D89548: grd_s_o_wf_2_evw_anime_3
- 0x80D89550: grd_s_o_wf_2_evw_anime_4
- 0x80D89558: grd_s_o_wf_2_evw_anime
- 0x80D89578: grd_s_o_wf_2_v
- 0x80D89998: grd_s_o_wf_2_model
- 0x80D89A10: grd_s_o_wf_2_modelT
- 0x80D89AD8: grd_s_o_wf_3_evw_anime_1
- 0x80D89AE0: grd_s_o_wf_3_evw_anime_2
- 0x80D89AE8: grd_s_o_wf_3_evw_anime_3
- 0x80D89AF0: grd_s_o_wf_3_evw_anime_4
- 0x80D89AF8: grd_s_o_wf_3_evw_anime
- 0x80D89B18: grd_s_o_wf_3_v
- 0x80D89EF8: grd_s_o_wf_3_model
- 0x80D89F70: grd_s_o_wf_3_modelT
- 0x80D8A030: grd_s_r1_1_evw_anime_1
- 0x80D8A038: grd_s_r1_1_evw_anime
- 0x80D8A040: grd_s_r1_1_v
- 0x80D8AC00: grd_s_r1_1_modelT
- 0x80D8AC80: grd_s_r1_1_model
- 0x80D8AE28: grd_s_r1_2_evw_anime_1
- 0x80D8AE30: grd_s_r1_2_evw_anime
- 0x80D8AE38: grd_s_r1_2_v
- 0x80D8BAD8: grd_s_r1_2_modelT
- 0x80D8BB60: grd_s_r1_2_model
- 0x80D8BD60: grd_s_r1_3_evw_anime_1
- 0x80D8BD68: grd_s_r1_3_evw_anime
- 0x80D8BD70: grd_s_r1_3_v
- 0x80D8CAE0: grd_s_r1_3_modelT
- 0x80D8CB70: grd_s_r1_3_model
- 0x80D8CD90: grd_s_r1_4_evw_anime_1
- 0x80D8CD98: grd_s_r1_4_evw_anime
- 0x80D8CDA0: grd_s_r1_4_v
- 0x80D8D880: grd_s_r1_4_modelT
- 0x80D8D908: grd_s_r1_4_model
- 0x80D8DAA8: grd_s_r1_b_1_evw_anime_1
- 0x80D8DAB0: grd_s_r1_b_1_evw_anime
- 0x80D8DAB8: grd_s_r1_b_1_v
- 0x80D8E818: grd_s_r1_b_1_modelT
- 0x80D8E8A0: grd_s_r1_b_1_model
- 0x80D8EAE0: grd_s_r1_b_2_evw_anime_1
- 0x80D8EAE8: grd_s_r1_b_2_evw_anime
- 0x80D8EAF0: grd_s_r1_b_2_v
- 0x80D8FC00: grd_s_r1_b_2_modelT
- 0x80D8FC80: grd_s_r1_b_2_model
- 0x80D8FF20: grd_s_r1_b_3_evw_anime_1
- 0x80D8FF28: grd_s_r1_b_3_evw_anime
- 0x80D8FF30: grd_s_r1_b_3_v
- 0x80D90EF0: grd_s_r1_b_3_modelT
- 0x80D90F80: grd_s_r1_b_3_model
- 0x80D91210: grd_s_r1_p_1_evw_anime_1
- 0x80D91218: grd_s_r1_p_1_evw_anime
- 0x80D91220: grd_s_r1_p_1_v
- 0x80D921D0: grd_s_r1_p_1_modelT
- 0x80D92268: grd_s_r1_p_1_model
- 0x80D924B0: grd_s_r2_1_evw_anime_1
- 0x80D924B8: grd_s_r2_1_evw_anime
- 0x80D924C0: grd_s_r2_1_v
- 0x80D93040: grd_s_r2_1_modelT
- 0x80D930C8: grd_s_r2_1_model
- 0x80D932D8: grd_s_r2_2_evw_anime_1
- 0x80D932E0: grd_s_r2_2_evw_anime
- 0x80D932E8: grd_s_r2_2_v
- 0x80D93F18: grd_s_r2_2_modelT
- 0x80D93F98: grd_s_r2_2_model
- 0x80D94138: grd_s_r2_3_evw_anime_1
- 0x80D94140: grd_s_r2_3_evw_anime
- 0x80D94148: grd_s_r2_3_v
- 0x80D94EE8: grd_s_r2_3_modelT
- 0x80D94F70: grd_s_r2_3_model
- 0x80D951A8: grd_s_r2_4_evw_anime_1
- 0x80D951B0: grd_s_r2_4_evw_anime
- 0x80D951B8: grd_s_r2_4_v
- 0x80D95F08: grd_s_r2_4_modelT
- 0x80D95F90: grd_s_r2_4_model
- 0x80D961C0: grd_s_r2_b_1_evw_anime_1
- 0x80D961C8: grd_s_r2_b_1_evw_anime
- 0x80D961D0: grd_s_r2_b_1_v
- 0x80D97490: grd_s_r2_b_1_modelT
- 0x80D97538: grd_s_r2_b_1_model
- 0x80D97800: grd_s_r2_b_2_evw_anime_1
- 0x80D97808: grd_s_r2_b_2_evw_anime
- 0x80D97810: grd_s_r2_b_2_v
- 0x80D98850: grd_s_r2_b_2_modelT
- 0x80D988D0: grd_s_r2_b_2_model
- 0x80D98B68: grd_s_r2_b_3_evw_anime_1
- 0x80D98B70: grd_s_r2_b_3_evw_anime
- 0x80D98B78: grd_s_r2_b_3_v
- 0x80D99D28: grd_s_r2_b_3_modelT
- 0x80D99DB8: grd_s_r2_b_3_model
- 0x80D9A060: grd_s_r2_p_1_evw_anime_1
- 0x80D9A068: grd_s_r2_p_1_evw_anime
- 0x80D9A070: grd_s_r2_p_1_v
- 0x80D9B5B0: grd_s_r2_p_1_modelT
- 0x80D9B638: grd_s_r2_p_1_model
- 0x80D9B8D0: grd_s_r3_1_evw_anime_1
- 0x80D9B8D8: grd_s_r3_1_evw_anime
- 0x80D9B8E0: grd_s_r3_1_v
- 0x80D9C6C0: grd_s_r3_1_modelT
- 0x80D9C748: grd_s_r3_1_model
- 0x80D9C978: grd_s_r3_2_evw_anime_1
- 0x80D9C980: grd_s_r3_2_evw_anime
- 0x80D9C988: grd_s_r3_2_v
- 0x80D9D5F8: grd_s_r3_2_modelT
- 0x80D9D678: grd_s_r3_2_model
- 0x80D9D878: grd_s_r3_3_evw_anime_1
- 0x80D9D880: grd_s_r3_3_evw_anime
- 0x80D9D888: grd_s_r3_3_v
- 0x80D9E518: grd_s_r3_3_modelT
- 0x80D9E598: grd_s_r3_3_model
- 0x80D9E7C0: grd_s_r3_4_evw_anime_1
- 0x80D9E7C8: grd_s_r3_4_evw_anime
- 0x80D9E7D0: grd_s_r3_4_v
- 0x80D9F3A0: grd_s_r3_4_modelT
- 0x80D9F428: grd_s_r3_4_model
- 0x80D9F620: grd_s_r3_b_1_evw_anime_1
- 0x80D9F628: grd_s_r3_b_1_evw_anime
- 0x80D9F630: grd_s_r3_b_1_v
- 0x80DA0520: grd_s_r3_b_1_modelT
- 0x80DA05B0: grd_s_r3_b_1_model
- 0x80DA0818: grd_s_r3_b_2_evw_anime_1
- 0x80DA0820: grd_s_r3_b_2_evw_anime
- 0x80DA0828: grd_s_r3_b_2_v
- 0x80DA19F8: grd_s_r3_b_2_modelT
- 0x80DA1A88: grd_s_r3_b_2_model
- 0x80DA1D40: grd_s_r3_b_3_evw_anime_1
- 0x80DA1D48: grd_s_r3_b_3_evw_anime
- 0x80DA1D50: grd_s_r3_b_3_v
- 0x80DA2E50: grd_s_r3_b_3_modelT
- 0x80DA2EE0: grd_s_r3_b_3_model
- 0x80DA3170: grd_s_r3_p_1_evw_anime_1
- 0x80DA3178: grd_s_r3_p_1_evw_anime
- 0x80DA3180: grd_s_r3_p_1_v
- 0x80DA44F0: grd_s_r3_p_1_modelT
- 0x80DA4580: grd_s_r3_p_1_model
- 0x80DA4820: grd_s_r4_1_evw_anime_1
- 0x80DA4828: grd_s_r4_1_evw_anime
- 0x80DA4830: grd_s_r4_1_v
- 0x80DA54D0: grd_s_r4_1_modelT
- 0x80DA5550: grd_s_r4_1_model
- 0x80DA5758: grd_s_r4_2_evw_anime_1
- 0x80DA5760: grd_s_r4_2_evw_anime
- 0x80DA5768: grd_s_r4_2_v
- 0x80DA6478: grd_s_r4_2_modelT
- 0x80DA6500: grd_s_r4_2_model
- 0x80DA66D0: grd_s_r4_3_evw_anime_1
- 0x80DA66D8: grd_s_r4_3_evw_anime
- 0x80DA66E0: grd_s_r4_3_v
- 0x80DA7270: grd_s_r4_3_modelT
- 0x80DA72F8: grd_s_r4_3_model
- 0x80DA74F8: grd_s_r4_b_1_evw_anime_1
- 0x80DA7500: grd_s_r4_b_1_evw_anime
- 0x80DA7508: grd_s_r4_b_1_v
- 0x80DA7F78: grd_s_r4_b_1_modelT
- 0x80DA8000: grd_s_r4_b_1_model
- 0x80DA81F8: grd_s_r4_b_2_evw_anime_1
- 0x80DA8200: grd_s_r4_b_2_evw_anime
- 0x80DA8208: grd_s_r4_b_2_v
- 0x80DA90E8: grd_s_r4_b_2_modelT
- 0x80DA9168: grd_s_r4_b_2_model
- 0x80DA93D8: grd_s_r4_p_1_evw_anime_1
- 0x80DA93E0: grd_s_r4_p_1_evw_anime
- 0x80DA93E8: grd_s_r4_p_1_v
- 0x80DAA5A8: grd_s_r4_p_1_modelT
- 0x80DAA640: grd_s_r4_p_1_model
- 0x80DAA928: grd_s_r5_1_evw_anime_1
- 0x80DAA930: grd_s_r5_1_evw_anime
- 0x80DAA938: grd_s_r5_1_v
- 0x80DAB678: grd_s_r5_1_modelT
- 0x80DAB710: grd_s_r5_1_model
- 0x80DAB920: grd_s_r5_2_evw_anime_1
- 0x80DAB928: grd_s_r5_2_evw_anime
- 0x80DAB930: grd_s_r5_2_v
- 0x80DAC770: grd_s_r5_2_modelT
- 0x80DAC800: grd_s_r5_2_model
- 0x80DACA10: grd_s_r5_3_evw_anime_1
- 0x80DACA18: grd_s_r5_3_evw_anime
- 0x80DACA20: grd_s_r5_3_v
- 0x80DAD820: grd_s_r5_3_modelT
- 0x80DAD8A8: grd_s_r5_3_model
- 0x80DADAC8: grd_s_r5_b_1_evw_anime_1
- 0x80DADAD0: grd_s_r5_b_1_evw_anime
- 0x80DADAD8: grd_s_r5_b_1_v
- 0x80DAEAB8: grd_s_r5_b_1_modelT
- 0x80DAEB58: grd_s_r5_b_1_model
- 0x80DAED98: grd_s_r5_b_2_evw_anime_1
- 0x80DAEDA0: grd_s_r5_b_2_evw_anime
- 0x80DAEDA8: grd_s_r5_b_2_v
- 0x80DAFD98: grd_s_r5_b_2_modelT
- 0x80DAFE18: grd_s_r5_b_2_model
- 0x80DB00A0: grd_s_r5_p_1_evw_anime_1
- 0x80DB00A8: grd_s_r5_p_1_evw_anime
- 0x80DB00B0: grd_s_r5_p_1_v
- 0x80DB1210: grd_s_r5_p_1_modelT
- 0x80DB12B0: grd_s_r5_p_1_model
- 0x80DB1530: grd_s_r6_1_evw_anime_1
- 0x80DB1538: grd_s_r6_1_evw_anime
- 0x80DB1540: grd_s_r6_1_v
- 0x80DB2010: grd_s_r6_1_modelT
- 0x80DB2088: grd_s_r6_1_model
- 0x80DB2258: grd_s_r6_2_evw_anime_1
- 0x80DB2260: grd_s_r6_2_evw_anime
- 0x80DB2268: grd_s_r6_2_v
- 0x80DB2DB8: grd_s_r6_2_modelT
- 0x80DB2E38: grd_s_r6_2_model
- 0x80DB2FE8: grd_s_r6_3_evw_anime_1
- 0x80DB2FF0: grd_s_r6_3_evw_anime
- 0x80DB2FF8: grd_s_r6_3_v
- 0x80DB3B08: grd_s_r6_3_modelT
- 0x80DB3B88: grd_s_r6_3_model
- 0x80DB3D60: grd_s_r6_b_1_evw_anime_1
- 0x80DB3D68: grd_s_r6_b_1_evw_anime
- 0x80DB3D70: grd_s_r6_b_1_v
- 0x80DB4930: grd_s_r6_b_1_modelT
- 0x80DB49B8: grd_s_r6_b_1_model
- 0x80DB4BD8: grd_s_r6_b_2_evw_anime_1
- 0x80DB4BE0: grd_s_r6_b_2_evw_anime
- 0x80DB4BE8: grd_s_r6_b_2_v
- 0x80DB5E18: grd_s_r6_b_2_modelT
- 0x80DB5EB8: grd_s_r6_b_2_model
- 0x80DB6128: grd_s_r6_p_1_evw_anime_1
- 0x80DB6130: grd_s_r6_p_1_evw_anime
- 0x80DB6138: grd_s_r6_p_1_v
- 0x80DB7428: grd_s_r6_p_1_modelT
- 0x80DB74C8: grd_s_r6_p_1_model
- 0x80DB77A8: grd_s_r7_1_evw_anime_1
- 0x80DB77B0: grd_s_r7_1_evw_anime
- 0x80DB77B8: grd_s_r7_1_v
- 0x80DB8408: grd_s_r7_1_modelT
- 0x80DB8490: grd_s_r7_1_model
- 0x80DB86A0: grd_s_r7_2_evw_anime_1
- 0x80DB86A8: grd_s_r7_2_evw_anime
- 0x80DB86B0: grd_s_r7_2_v
- 0x80DB9260: grd_s_r7_2_modelT
- 0x80DB92F0: grd_s_r7_2_model
- 0x80DB94B0: grd_s_r7_3_evw_anime_1
- 0x80DB94B8: grd_s_r7_3_evw_anime
- 0x80DB94C0: grd_s_r7_3_v
- 0x80DBA020: grd_s_r7_3_modelT
- 0x80DBA0A8: grd_s_r7_3_model
- 0x80DBA258: grd_s_r7_b_1_evw_anime_1
- 0x80DBA260: grd_s_r7_b_1_evw_anime
- 0x80DBA268: grd_s_r7_b_1_v
- 0x80DBAF58: grd_s_r7_b_1_modelT
- 0x80DBAFE8: grd_s_r7_b_1_model
- 0x80DBB218: grd_s_r7_b_2_evw_anime_1
- 0x80DBB220: grd_s_r7_b_2_evw_anime
- 0x80DBB228: grd_s_r7_b_2_v
- 0x80DBC478: grd_s_r7_b_2_modelT
- 0x80DBC508: grd_s_r7_b_2_model
- 0x80DBC7C0: grd_s_r7_p_1_evw_anime_1
- 0x80DBC7C8: grd_s_r7_p_1_evw_anime
- 0x80DBC7D0: grd_s_r7_p_1_v
- 0x80DBD8E0: grd_s_r7_p_1_modelT
- 0x80DBD970: grd_s_r7_p_1_model
- 0x80DBDBE8: grd_s_t_1_evw_anime_1
- 0x80DBDBF0: grd_s_t_1_evw_anime
- 0x80DBDBF8: grd_s_t_1_v
- 0x80DBE618: grd_s_t_1_modelT
- 0x80DBE688: grd_s_t_1_model
- 0x80DBE858: grd_s_t_10_v
- 0x80DBF688: grd_s_t_10_modelT
- 0x80DBF690: grd_s_t_10_model
- 0x80DBF8F8: grd_s_t_2_v
- 0x80DC05E8: grd_s_t_2_modelT
- 0x80DC05F0: grd_s_t_2_model
- 0x80DC0808: grd_s_t_3_v
- 0x80DC1188: grd_s_t_3_modelT
- 0x80DC1190: grd_s_t_3_model
- 0x80DC1368: grd_s_t_4_evw_anime_1
- 0x80DC1370: grd_s_t_4_evw_anime
- 0x80DC1378: grd_s_t_4_v
- 0x80DC2218: grd_s_t_4_modelT
- 0x80DC2288: grd_s_t_4_model
- 0x80DC24F0: grd_s_t_5_evw_anime_1
- 0x80DC24F8: grd_s_t_5_evw_anime
- 0x80DC2500: grd_s_t_5_v
- 0x80DC3480: grd_s_t_5_modelT
- 0x80DC34F0: grd_s_t_5_model
- 0x80DC3770: grd_s_t_6_v
- 0x80DC48D0: grd_s_t_6_modelT
- 0x80DC48D8: grd_s_t_6_model
- 0x80DC4B78: grd_s_t_7_v
- 0x80DC5CC8: grd_s_t_7_modelT
- 0x80DC5CD0: grd_s_t_7_model
- 0x80DC5F48: grd_s_t_8_v
- 0x80DC6B88: grd_s_t_8_modelT
- 0x80DC6B90: grd_s_t_8_model
- 0x80DC6DA8: grd_s_t_9_v
- 0x80DC7A68: grd_s_t_9_modelT
- 0x80DC7A70: grd_s_t_9_model
- 0x80DC7C88: grd_s_t_po_1_v
- 0x80DC8708: grd_s_t_po_1_modelT
- 0x80DC8710: grd_s_t_po_1_model
- 0x80DC8918: grd_s_t_po_2_v
- 0x80DC9348: grd_s_t_po_2_modelT
- 0x80DC9350: grd_s_t_po_2_model
- 0x80DC9568: grd_s_t_po_3_evw_anime_1
- 0x80DC9570: grd_s_t_po_3_evw_anime
- 0x80DC9578: grd_s_t_po_3_v
- 0x80DCA3D8: grd_s_t_po_3_modelT
- 0x80DCA450: grd_s_t_po_3_model
- 0x80DCA6D0: grd_s_t_r1_1_evw_anime_1
- 0x80DCA6D8: grd_s_t_r1_1_evw_anime
- 0x80DCA6E0: grd_s_t_r1_1_v
- 0x80DCB5D0: grd_s_t_r1_1_modelT
- 0x80DCB650: grd_s_t_r1_1_model
- 0x80DCB8D8: grd_s_t_r1_2_evw_anime_1
- 0x80DCB8E0: grd_s_t_r1_2_evw_anime
- 0x80DCB8E8: grd_s_t_r1_2_v
- 0x80DCCA18: grd_s_t_r1_2_modelT
- 0x80DCCA98: grd_s_t_r1_2_model
- 0x80DCCD68: grd_s_t_r1_3_evw_anime_1
- 0x80DCCD70: grd_s_t_r1_3_evw_anime
- 0x80DCCD78: grd_s_t_r1_3_v
- 0x80DCDEC8: grd_s_t_r1_3_modelT
- 0x80DCDF58: grd_s_t_r1_3_model
- 0x80DCE220: grd_s_t_r1_4_evw_anime_1
- 0x80DCE228: grd_s_t_r1_4_evw_anime
- 0x80DCE230: grd_s_t_r1_4_v
- 0x80DCF240: grd_s_t_r1_4_modelT
- 0x80DCF2C8: grd_s_t_r1_4_model
- 0x80DCF578: grd_s_t_r1_5_evw_anime_1
- 0x80DCF580: grd_s_t_r1_5_evw_anime
- 0x80DCF588: grd_s_t_r1_5_v
- 0x80DD06E8: grd_s_t_r1_5_modelT
- 0x80DD0770: grd_s_t_r1_5_model
- 0x80DD0A38: grd_s_t_sh_1_v
- 0x80DD1458: grd_s_t_sh_1_modelT
- 0x80DD1460: grd_s_t_sh_1_model
- 0x80DD1668: grd_s_t_sh_2_evw_anime_1
- 0x80DD1670: grd_s_t_sh_2_evw_anime
- 0x80DD1678: grd_s_t_sh_2_v
- 0x80DD2338: grd_s_t_sh_2_modelT
- 0x80DD23B0: grd_s_t_sh_2_model
- 0x80DD2610: grd_s_t_sh_3_v
- 0x80DD3070: grd_s_t_sh_3_modelT
- 0x80DD3078: grd_s_t_sh_3_model
- 0x80DD3270: grd_s_t_st1_1_v
- 0x80DD3EA0: grd_s_t_st1_1_modelT
- 0x80DD3EA8: grd_s_t_st1_1_model
- 0x80DD40F0: grd_s_t_st1_2_v
- 0x80DD4FF0: grd_s_t_st1_2_modelT
- 0x80DD4FF8: grd_s_t_st1_2_model
- 0x80DD5280: grd_s_t_st1_3_v
- 0x80DD5F30: grd_s_t_st1_3_modelT
- 0x80DD5F38: grd_s_t_st1_3_model
- 0x80DD61A0: cKF_ckcb_r_int_hnw001_tbl
- 0x80DD61A8: cKF_kn_int_hnw001_tbl
- 0x80DD61C8: cKF_c_int_hnw001_tbl
- 0x80DD61DC: cKF_ds_int_hnw001_tbl
- 0x80DD62B4: cKF_ba_r_int_hnw001
- 0x80DD62E0: int_hnw001_pal
- 0x80DD6300: int_hnw001_arm_tex_txt
- 0x80DD6400: int_hnw001_armtop_tex_txt
- 0x80DD6480: int_hnw001_c_front_tex_txt
- 0x80DD6780: int_hnw001_c_back_tex_txt
- 0x80DD6900: int_hnw001_b_back_tex_txt
- 0x80DD6980: int_hnw001_b_front_tex_txt
- 0x80DD6A80: int_hnw001_v
- 0x80DD6EF0: int_hnw001_chest_model
- 0x80DD6FC0: int_hnw001_armR_model
- 0x80DD7040: int_hnw001_armL_model
- 0x80DD70C0: int_hnw001_base_model
- 0x80DD7138: cKF_je_r_int_hnw001_tbl
- 0x80DD718C: cKF_bs_r_int_hnw001
- 0x80DD71A0: cKF_ckcb_r_int_hnw002_tbl
- 0x80DD71A8: cKF_kn_int_hnw002_tbl
- 0x80DD71C8: cKF_c_int_hnw002_tbl
- 0x80DD71DC: cKF_ds_int_hnw002_tbl
- 0x80DD72C8: cKF_ba_r_int_hnw002
- 0x80DD72E0: int_hnw002_pal
- 0x80DD7300: int_hnw002_arm_tex_txt
- 0x80DD7400: int_hnw002_armtop_tex_txt
- 0x80DD7480: int_hnw002_c_front_tex_txt
- 0x80DD7780: int_hnw002_c_back_tex_txt
- 0x80DD7900: int_hnw002_b_back_tex_txt
- 0x80DD7980: int_hnw002_b_front_tex_txt
- 0x80DD7A80: int_hnw002_v
- 0x80DD7EF0: int_hnw002_chest_model
- 0x80DD7FC0: int_hnw002_armR_model
- 0x80DD8040: int_hnw002_armL_model
- 0x80DD80C0: int_hnw002_base_model
- 0x80DD8138: cKF_je_r_int_hnw002_tbl
- 0x80DD818C: cKF_bs_r_int_hnw002
- 0x80DD81A0: cKF_ckcb_r_int_hnw003_tbl
- 0x80DD81A8: cKF_kn_int_hnw003_tbl
- 0x80DD81C8: cKF_c_int_hnw003_tbl
- 0x80DD81DC: cKF_ds_int_hnw003_tbl
- 0x80DD82B4: cKF_ba_r_int_hnw003
- 0x80DD82E0: int_hnw003_pal
- 0x80DD8300: int_hnw003_arm_tex_txt
- 0x80DD8400: int_hnw003_armtop_tex_txt
- 0x80DD8480: int_hnw003_c_front_tex_txt
- 0x80DD8780: int_hnw003_c_back_tex_txt
- 0x80DD8900: int_hnw003_b_back_tex_txt
- 0x80DD8980: int_hnw003_b_front_tex_txt
- 0x80DD8A80: int_hnw003_v
- 0x80DD8EF0: int_hnw003_chest_model
- 0x80DD8FC0: int_hnw003_armR_model
- 0x80DD9040: int_hnw003_armL_model
- 0x80DD90C0: int_hnw003_base_model
- 0x80DD9138: cKF_je_r_int_hnw003_tbl
- 0x80DD918C: cKF_bs_r_int_hnw003
- 0x80DD91A0: cKF_ckcb_r_int_hnw004_tbl
- 0x80DD91A8: cKF_kn_int_hnw004_tbl
- 0x80DD91C8: cKF_c_int_hnw004_tbl
- 0x80DD91DC: cKF_ds_int_hnw004_tbl
- 0x80DD92F8: cKF_ba_r_int_hnw004
- 0x80DD9320: int_hnw004_pal
- 0x80DD9340: int_hnw004_c_front_tex_txt
- 0x80DD9640: int_hnw004_c_back_tex_txt
- 0x80DD97C0: int_hnw004_arm_tex_txt
- 0x80DD98C0: int_hnw004_armtop_tex_txt
- 0x80DD9940: int_hnw004_b_back_tex_txt
- 0x80DD99C0: int_hnw004_b_front_tex_txt
- 0x80DD9AC0: int_hnw004_v
- 0x80DD9F30: int_hnw004_chest_model
- 0x80DDA020: int_hnw004_armR_model
- 0x80DDA0A0: int_hnw004_armL_model
- 0x80DDA120: int_hnw004_base_model
- 0x80DDA1A8: cKF_je_r_int_hnw004_tbl
- 0x80DDA1FC: cKF_bs_r_int_hnw004
- 0x80DDA220: cKF_ckcb_r_int_hnw005_tbl
- 0x80DDA228: cKF_kn_int_hnw005_tbl
- 0x80DDA248: cKF_c_int_hnw005_tbl
- 0x80DDA25C: cKF_ds_int_hnw005_tbl
- 0x80DDA3E8: cKF_ba_r_int_hnw005
- 0x80DDA400: int_hnw005_pal
- 0x80DDA420: int_hnw005_arm_tex_txt
- 0x80DDA520: int_hnw005_armtop_tex_txt
- 0x80DDA5A0: int_hnw005_c_front_tex_txt
- 0x80DDA8A0: int_hnw005_c_back_tex_txt
- 0x80DDAA20: int_hnw005_b_back_tex_txt
- 0x80DDAAA0: int_hnw005_b_front_tex_txt
- 0x80DDABA0: int_hnw005_v
- 0x80DDB010: int_hnw005_chest_model
- 0x80DDB0E0: int_hnw005_armR_model
- 0x80DDB160: int_hnw005_armL_model
- 0x80DDB1E0: int_hnw005_base_model
- 0x80DDB258: cKF_je_r_int_hnw005_tbl
- 0x80DDB2AC: cKF_bs_r_int_hnw005
- 0x80DDB2C0: cKF_ckcb_r_int_hnw006_tbl
- 0x80DDB2C8: cKF_kn_int_hnw006_tbl
- 0x80DDB2E8: cKF_c_int_hnw006_tbl
- 0x80DDB2FC: cKF_ds_int_hnw006_tbl
- 0x80DDB3F8: cKF_ba_r_int_hnw006
- 0x80DDB420: int_hnw006_pal
- 0x80DDB440: int_hnw006_c_front_tex_txt
- 0x80DDB740: int_hnw006_c_back_tex_txt
- 0x80DDB8C0: int_hnw006_arm_tex_txt
- 0x80DDB9C0: int_hnw006_armtop_tex_txt
- 0x80DDBA40: int_hnw006_b_back_tex_txt
- 0x80DDBAC0: int_hnw006_b_front_tex_txt
- 0x80DDBBC0: int_hnw006_v
- 0x80DDC030: int_hnw006_chest_model
- 0x80DDC120: int_hnw006_armR_model
- 0x80DDC1A0: int_hnw006_armL_model
- 0x80DDC220: int_hnw006_base_model
- 0x80DDC2A8: cKF_je_r_int_hnw006_tbl
- 0x80DDC2FC: cKF_bs_r_int_hnw006
- 0x80DDC320: cKF_ckcb_r_int_hnw007_tbl
- 0x80DDC328: cKF_kn_int_hnw007_tbl
- 0x80DDC348: cKF_c_int_hnw007_tbl
- 0x80DDC35C: cKF_ds_int_hnw007_tbl
- 0x80DDC4F4: cKF_ba_r_int_hnw007
- 0x80DDC520: int_hnw007_pal
- 0x80DDC540: int_hnw007_arm_tex_txt
- 0x80DDC640: int_hnw007_armtop_tex_txt
- 0x80DDC6C0: int_hnw007_c_front_tex_txt
- 0x80DDC9C0: int_hnw007_c_back_tex_txt
- 0x80DDCB40: int_hnw007_b_back_tex_txt
- 0x80DDCBC0: int_hnw007_b_front_tex_txt
- 0x80DDCCC0: int_hnw007_v
- 0x80DDD130: int_hnw007_chest_model
- 0x80DDD200: int_hnw007_armR_model
- 0x80DDD280: int_hnw007_armL_model
- 0x80DDD300: int_hnw007_base_model
- 0x80DDD378: cKF_je_r_int_hnw007_tbl
- 0x80DDD3CC: cKF_bs_r_int_hnw007
- 0x80DDD3E0: cKF_ckcb_r_int_hnw008_tbl
- 0x80DDD3E8: cKF_kn_int_hnw008_tbl
- 0x80DDD408: cKF_c_int_hnw008_tbl
- 0x80DDD41C: cKF_ds_int_hnw008_tbl
- 0x80DDD5BC: cKF_ba_r_int_hnw008
- 0x80DDD5E0: int_hnw008_pal
- 0x80DDD600: int_hnw008_arm_tex_txt
- 0x80DDD700: int_hnw008_armtop_tex_txt
- 0x80DDD780: int_hnw008_c_front_tex_txt
- 0x80DDDA80: int_hnw008_c_back_tex_txt
- 0x80DDDC00: int_hnw008_b_back_tex_txt
- 0x80DDDC80: int_hnw008_b_front_tex_txt
- 0x80DDDD80: int_hnw008_v
- 0x80DDE1F0: int_hnw008_chest_model
- 0x80DDE2C0: int_hnw008_armR_model
- 0x80DDE340: int_hnw008_armL_model
- 0x80DDE3C0: int_hnw008_base_model
- 0x80DDE438: cKF_je_r_int_hnw008_tbl
- 0x80DDE48C: cKF_bs_r_int_hnw008
- 0x80DDE4A0: cKF_ckcb_r_int_hnw009_tbl
- 0x80DDE4A8: cKF_kn_int_hnw009_tbl
- 0x80DDE4C8: cKF_c_int_hnw009_tbl
- 0x80DDE4DC: cKF_ds_int_hnw009_tbl
- 0x80DDE614: cKF_ba_r_int_hnw009
- 0x80DDE640: int_hnw009_pal
- 0x80DDE660: int_hnw009_arm_tex_txt
- 0x80DDE760: int_hnw009_armtop_tex_txt
- 0x80DDE7E0: int_hnw009_c_front_tex_txt
- 0x80DDEAE0: int_hnw009_c_back_tex_txt
- 0x80DDEC60: int_hnw009_b_back_tex_txt
- 0x80DDECE0: int_hnw009_b_front_tex_txt
- 0x80DDEDE0: int_hnw009_v
- 0x80DDF250: int_hnw009_chest_model
- 0x80DDF320: int_hnw009_armR_model
- 0x80DDF3A0: int_hnw009_armL_model
- 0x80DDF420: int_hnw009_base_model
- 0x80DDF498: cKF_je_r_int_hnw009_tbl
- 0x80DDF4EC: cKF_bs_r_int_hnw009
- 0x80DDF500: int_hnw010_pal
- 0x80DDF520: int_hnw010_arm_tex_txt
- 0x80DDF620: int_hnw010_armtop_tex_txt
- 0x80DDF6A0: int_hnw010_c_front_tex_txt
- 0x80DDF9A0: int_hnw010_c_back_tex_txt
- 0x80DDFB20: int_hnw010_b_back_tex_txt
- 0x80DDFBA0: int_hnw010_b_front_tex_txt
- 0x80DDFCA0: int_hnw010_v
- 0x80DE0110: int_hnw010_chest_model
- 0x80DE01E0: int_hnw010_armR_model
- 0x80DE0260: int_hnw010_armL_model
- 0x80DE02E0: int_hnw010_base_model
- 0x80DE0358: cKF_ckcb_r_int_hnw010_tbl
- 0x80DE0360: cKF_kn_int_hnw010_tbl
- 0x80DE0380: cKF_c_int_hnw010_tbl
- 0x80DE0394: cKF_ds_int_hnw010_tbl
- 0x80DE04B0: cKF_ba_r_int_hnw010
- 0x80DE04C4: cKF_je_r_int_hnw010_tbl
- 0x80DE0518: cKF_bs_r_int_hnw010
- 0x80DE0520: int_hnw011_pal
- 0x80DE0540: int_hnw011_arm_tex_txt
- 0x80DE0640: int_hnw011_armtop_tex_txt
- 0x80DE06C0: int_hnw011_c_front_tex_txt
- 0x80DE09C0: int_hnw011_c_back_tex_txt
- 0x80DE0B40: int_hnw011_b_back_tex_txt
- 0x80DE0BC0: int_hnw011_b_front_tex_txt
- 0x80DE0CC0: int_hnw011_v
- 0x80DE1130: int_hnw011_chest_model
- 0x80DE1200: int_hnw011_armR_model
- 0x80DE1280: int_hnw011_armL_model
- 0x80DE1300: int_hnw011_base_model
- 0x80DE1378: cKF_ckcb_r_int_hnw011_tbl
- 0x80DE1380: cKF_kn_int_hnw011_tbl
- 0x80DE13A0: cKF_c_int_hnw011_tbl
- 0x80DE13B4: cKF_ds_int_hnw011_tbl
- 0x80DE1534: cKF_ba_r_int_hnw011
- 0x80DE1548: cKF_je_r_int_hnw011_tbl
- 0x80DE159C: cKF_bs_r_int_hnw011
- 0x80DE15C0: int_hnw012_pal
- 0x80DE15E0: int_hnw012_arm_tex_txt
- 0x80DE16E0: int_hnw012_armtop_tex_txt
- 0x80DE1760: int_hnw012_c_front_tex_txt
- 0x80DE1A60: int_hnw012_c_back_tex_txt
- 0x80DE1BE0: int_hnw012_antena_tex_txt
- 0x80DE1C60: int_hnw012_b_back_tex_txt
- 0x80DE1CE0: int_hnw012_b_front_tex_txt
- 0x80DE1DE0: int_hnw012_v
- 0x80DE2280: int_hnw012_chest_model
- 0x80DE2378: int_hnw012_armR_model
- 0x80DE23F8: int_hnw012_armL_model
- 0x80DE2478: int_hnw012_base_model
- 0x80DE24F0: cKF_ckcb_r_int_hnw012_tbl
- 0x80DE24F8: cKF_kn_int_hnw012_tbl
- 0x80DE2518: cKF_c_int_hnw012_tbl
- 0x80DE252C: cKF_ds_int_hnw012_tbl
- 0x80DE2640: cKF_ba_r_int_hnw012
- 0x80DE2654: cKF_je_r_int_hnw012_tbl
- 0x80DE26A8: cKF_bs_r_int_hnw012
- 0x80DE26C0: int_hnw013_pal
- 0x80DE26E0: int_hnw013_arm_tex_txt
- 0x80DE27E0: int_hnw013_armtop_tex_txt
- 0x80DE2860: int_hnw013_c_front_tex_txt
- 0x80DE2B60: int_hnw013_c_back_tex_txt
- 0x80DE2CE0: int_hnw013_antena_tex_txt
- 0x80DE2D60: int_hnw013_b_back_tex_txt
- 0x80DE2DE0: int_hnw013_b_front_tex_txt
- 0x80DE2EE0: int_hnw013_v
- 0x80DE3380: int_hnw013_chest_model
- 0x80DE3478: int_hnw013_armR_model
- 0x80DE34F8: int_hnw013_armL_model
- 0x80DE3578: int_hnw013_base_model
- 0x80DE35F0: cKF_ckcb_r_int_hnw013_tbl
- 0x80DE35F8: cKF_kn_int_hnw013_tbl
- 0x80DE3614: cKF_c_int_hnw013_tbl
- 0x80DE362C: cKF_ds_int_hnw013_tbl
- 0x80DE3748: cKF_ba_r_int_hnw013
- 0x80DE375C: cKF_je_r_int_hnw013_tbl
- 0x80DE37B0: cKF_bs_r_int_hnw013
- 0x80DE37C0: int_hnw014_pal
- 0x80DE37E0: int_hnw014_arm_tex_txt
- 0x80DE38E0: int_hnw014_armtop_tex_txt
- 0x80DE3960: int_hnw014_c_front_tex_txt
- 0x80DE3C60: int_hnw014_c_back_tex_txt
- 0x80DE3DE0: int_hnw014_antena_tex_txt
- 0x80DE3E60: int_hnw014_b_back_tex_txt
- 0x80DE3EE0: int_hnw014_b_front_tex_txt
- 0x80DE3FE0: int_hnw014_v
- 0x80DE4480: int_hnw014_chest_model
- 0x80DE4578: int_hnw014_armR_model
- 0x80DE45F8: int_hnw014_armL_model
- 0x80DE4678: int_hnw014_base_model
- 0x80DE46F0: cKF_ckcb_r_int_hnw014_tbl
- 0x80DE46F8: cKF_kn_int_hnw014_tbl
- 0x80DE4718: cKF_c_int_hnw014_tbl
- 0x80DE472C: cKF_ds_int_hnw014_tbl
- 0x80DE4854: cKF_ba_r_int_hnw014
- 0x80DE4868: cKF_je_r_int_hnw014_tbl
- 0x80DE48BC: cKF_bs_r_int_hnw014
- 0x80DE48E0: int_hnw015_pal
- 0x80DE4900: int_hnw015_arm_tex_txt
- 0x80DE4A00: int_hnw015_armtop_tex_txt
- 0x80DE4A80: int_hnw015_c_front_tex_txt
- 0x80DE4D80: int_hnw015_c_back_tex_txt
- 0x80DE4F00: int_hnw015_antena_tex_txt
- 0x80DE4F80: int_hnw015_b_back_tex_txt
- 0x80DE5000: int_hnw015_b_front_tex_txt
- 0x80DE5100: int_hnw015_v
- 0x80DE55A0: int_hnw015_chest_model
- 0x80DE5698: int_hnw015_armR_model
- 0x80DE5718: int_hnw015_armL_model
- 0x80DE5798: int_hnw015_base_model
- 0x80DE5810: cKF_ckcb_r_int_hnw015_tbl
- 0x80DE5818: cKF_kn_int_hnw015_tbl
- 0x80DE5820: cKF_c_int_hnw015_tbl
- 0x80DE584C: cKF_ds_int_hnw015_tbl
- 0x80DE59D8: cKF_ba_r_int_hnw015
- 0x80DE59EC: cKF_je_r_int_hnw015_tbl
- 0x80DE5A40: cKF_bs_r_int_hnw015
- 0x80DE5A60: int_hnw016_pal
- 0x80DE5A80: int_hnw016_arm_tex_txt
- 0x80DE5B80: int_hnw016_armtop_tex_txt
- 0x80DE5C00: int_hnw016_c_front_tex_txt
- 0x80DE5F00: int_hnw016_c_back_tex_txt
- 0x80DE6080: int_hnw016_antena_tex_txt
- 0x80DE6100: int_hnw016_b_back_tex_txt
- 0x80DE6180: int_hnw016_b_front_tex_txt
- 0x80DE6280: int_hnw016_v
- 0x80DE6720: int_hnw016_chest_model
- 0x80DE6818: int_hnw016_armR_model
- 0x80DE6898: int_hnw016_armL_model
- 0x80DE6918: int_hnw016_base_model
- 0x80DE6990: cKF_ckcb_r_int_hnw016_tbl
- 0x80DE6998: cKF_kn_int_hnw016_tbl
- 0x80DE69AC: cKF_c_int_hnw016_tbl
- 0x80DE69CC: cKF_ds_int_hnw016_tbl
- 0x80DE6A80: cKF_ba_r_int_hnw016
- 0x80DE6A94: cKF_je_r_int_hnw016_tbl
- 0x80DE6AE8: cKF_bs_r_int_hnw016
- 0x80DE6B00: int_hnw017_pal
- 0x80DE6B20: int_hnw017_arm_tex_txt
- 0x80DE6C20: int_hnw017_armtop_tex_txt
- 0x80DE6CA0: int_hnw017_c_front_tex_txt
- 0x80DE6FA0: int_hnw017_c_back_tex_txt
- 0x80DE7120: int_hnw017_b_back_tex_txt
- 0x80DE71A0: int_hnw017_b_front_tex_txt
- 0x80DE72A0: int_hnw017_v
- 0x80DE7710: int_hnw017_chest_model
- 0x80DE77E0: int_hnw017_armR_model
- 0x80DE7860: int_hnw017_armL_model
- 0x80DE78E0: int_hnw017_base_model
- 0x80DE7958: cKF_ckcb_r_int_hnw017_tbl
- 0x80DE7960: cKF_kn_int_hnw017_tbl
- 0x80DE7980: cKF_c_int_hnw017_tbl
- 0x80DE7994: cKF_ds_int_hnw017_tbl
- 0x80DE7ABC: cKF_ba_r_int_hnw017
- 0x80DE7AD0: cKF_je_r_int_hnw017_tbl
- 0x80DE7B24: cKF_bs_r_int_hnw017
- 0x80DE7B40: int_hnw018_pal
- 0x80DE7B60: int_hnw018_arm_tex_txt
- 0x80DE7C60: int_hnw018_armtop_tex_txt
- 0x80DE7CE0: int_hnw018_c_front_tex_txt
- 0x80DE7FE0: int_hnw018_c_back_tex_txt
- 0x80DE8160: int_hnw018_b_back_tex_txt
- 0x80DE81E0: int_hnw018_b_front_tex_txt
- 0x80DE82E0: int_hnw018_v
- 0x80DE8750: int_hnw018_chest_model
- 0x80DE8820: int_hnw018_armR_model
- 0x80DE88A0: int_hnw018_armL_model
- 0x80DE8920: int_hnw018_base_model
- 0x80DE8998: cKF_ckcb_r_int_hnw018_tbl
- 0x80DE89A0: cKF_kn_int_hnw018_tbl
- 0x80DE89C0: cKF_c_int_hnw018_tbl
- 0x80DE89D4: cKF_ds_int_hnw018_tbl
- 0x80DE8AE8: cKF_ba_r_int_hnw018
- 0x80DE8AFC: cKF_je_r_int_hnw018_tbl
- 0x80DE8B50: cKF_bs_r_int_hnw018
- 0x80DE8B60: int_hnw019_pal
- 0x80DE8B80: int_hnw019_arm_tex_txt
- 0x80DE8C80: int_hnw019_armtop_tex_txt
- 0x80DE8D00: int_hnw019_c_front_tex_txt
- 0x80DE9000: int_hnw019_c_back_tex_txt
- 0x80DE9180: int_hnw019_antena_tex_txt
- 0x80DE9200: int_hnw019_b_back_tex_txt
- 0x80DE9280: int_hnw019_b_front_tex_txt
- 0x80DE9380: int_hnw019_v
- 0x80DE9820: int_hnw019_chest_model
- 0x80DE9918: int_hnw019_armR_model
- 0x80DE9998: int_hnw019_armL_model
- 0x80DE9A18: int_hnw019_base_model
- 0x80DE9A90: cKF_ckcb_r_int_hnw019_tbl
- 0x80DE9A98: cKF_kn_int_hnw019_tbl
- 0x80DE9AB8: cKF_c_int_hnw019_tbl
- 0x80DE9ACC: cKF_ds_int_hnw019_tbl
- 0x80DE9D78: cKF_ba_r_int_hnw019
- 0x80DE9D8C: cKF_je_r_int_hnw019_tbl
- 0x80DE9DE0: cKF_bs_r_int_hnw019
- 0x80DE9E00: int_hnw020_pal
- 0x80DE9E20: int_hnw020_arm_tex_txt
- 0x80DE9F20: int_hnw020_armtop_tex_txt
- 0x80DE9FA0: int_hnw020_c_front_tex_txt
- 0x80DEA2A0: int_hnw020_c_back_tex_txt
- 0x80DEA420: int_hnw020_b_back_tex_txt
- 0x80DEA4A0: int_hnw020_b_front_tex_txt
- 0x80DEA5A0: int_hnw020_v
- 0x80DEAA10: int_hnw020_chest_model
- 0x80DEAAE0: int_hnw020_armR_model
- 0x80DEAB60: int_hnw020_armL_model
- 0x80DEABE0: int_hnw020_base_model
- 0x80DEAC58: cKF_ckcb_r_int_hnw020_tbl
- 0x80DEAC60: cKF_kn_int_hnw020_tbl
- 0x80DEAC68: cKF_c_int_hnw020_tbl
- 0x80DEAC94: cKF_ds_int_hnw020_tbl
- 0x80DEAD14: cKF_ba_r_int_hnw020
- 0x80DEAD28: cKF_je_r_int_hnw020_tbl
- 0x80DEAD7C: cKF_bs_r_int_hnw020
- 0x80DEADA0: int_hnw021_pal
- 0x80DEADC0: int_hnw021_c_front_tex_txt
- 0x80DEB0C0: int_hnw021_c_back_tex_txt
- 0x80DEB240: int_hnw021_arm_tex_txt
- 0x80DEB340: int_hnw021_armtop_tex_txt
- 0x80DEB3C0: int_hnw021_b_back_tex_txt
- 0x80DEB440: int_hnw021_b_front_tex_txt
- 0x80DEB540: int_hnw021_v
- 0x80DEB9B0: int_hnw021_chest_model
- 0x80DEBAA0: int_hnw021_armR_model
- 0x80DEBB20: int_hnw021_armL_model
- 0x80DEBBA0: int_hnw021_base_model
- 0x80DEBC28: cKF_ckcb_r_int_hnw021_tbl
- 0x80DEBC30: cKF_kn_int_hnw021_tbl
- 0x80DEBC38: cKF_c_int_hnw021_tbl
- 0x80DEBC64: cKF_ds_int_hnw021_tbl
- 0x80DEBCE4: cKF_ba_r_int_hnw021
- 0x80DEBCF8: cKF_je_r_int_hnw021_tbl
- 0x80DEBD4C: cKF_bs_r_int_hnw021
- 0x80DEBD60: int_hnw022_pal
- 0x80DEBD80: int_hnw022_arm_tex_txt
- 0x80DEBE80: int_hnw022_armtop_tex_txt
- 0x80DEBF00: int_hnw022_c_front_tex_txt
- 0x80DEC200: int_hnw022_c_back_tex_txt
- 0x80DEC380: int_hnw022_b_back_tex_txt
- 0x80DEC400: int_hnw022_b_front_tex_txt
- 0x80DEC500: int_hnw022_v
- 0x80DEC970: int_hnw022__chest_model
- 0x80DECA40: int_hnw022_armR_model
- 0x80DECAC0: int_hnw022_armL_model
- 0x80DECB40: int_hnw022_base_model
- 0x80DECBB8: cKF_ckcb_r_int_hnw022_tbl
- 0x80DECBC0: cKF_kn_int_hnw022_tbl
- 0x80DECBCC: cKF_c_int_hnw022_tbl
- 0x80DECBF4: cKF_ds_int_hnw022_tbl
- 0x80DECCC8: cKF_ba_r_int_hnw022
- 0x80DECCDC: cKF_je_r_int_hnw022_tbl
- 0x80DECD30: cKF_bs_r_int_hnw022
- 0x80DECD40: int_hnw023_pal
- 0x80DECD60: int_hnw023_arm_tex_txt
- 0x80DECE60: int_hnw023_armtop_tex_txt
- 0x80DECEE0: int_hnw023_c_front_tex_txt
- 0x80DED1E0: int_hnw023_c_back_tex_txt
- 0x80DED360: int_hnw023_b_back_tex_txt
- 0x80DED3E0: int_hnw023_b_front_tex_txt
- 0x80DED4E0: int_hnw023_v
- 0x80DED950: int_hnw023_chest_model
- 0x80DEDA20: int_hnw023_armR_model
- 0x80DEDAA0: int_hnw023_armL_model
- 0x80DEDB20: int_hnw023_base_model
- 0x80DEDB98: cKF_ckcb_r_int_hnw023_tbl
- 0x80DEDBA0: cKF_kn_int_hnw023_tbl
- 0x80DEDBC0: cKF_c_int_hnw023_tbl
- 0x80DEDBD4: cKF_ds_int_hnw023_tbl
- 0x80DEDD0C: cKF_ba_r_int_hnw023
- 0x80DEDD20: cKF_je_r_int_hnw023_tbl
- 0x80DEDD74: cKF_bs_r_int_hnw023
- 0x80DEDD80: int_hnw024_pal
- 0x80DEDDA0: int_hnw024_arm_tex_txt
- 0x80DEDEA0: int_hnw024_armtop_tex_txt
- 0x80DEDF20: int_hnw024_c_front_tex_txt
- 0x80DEE220: int_hnw024_c_back_tex_txt
- 0x80DEE3A0: int_hnw024_b_back_tex_txt
- 0x80DEE420: int_hnw024_b_front_tex_txt
- 0x80DEE520: int_hnw024_v
- 0x80DEE990: int_hnw024_chest_model
- 0x80DEEA60: int_hnw024_armR_model
- 0x80DEEAE0: int_hnw024_armL_model
- 0x80DEEB60: int_hnw024_base_model
- 0x80DEEBD8: cKF_ckcb_r_int_hnw024_tbl
- 0x80DEEBE0: cKF_kn_int_hnw024_tbl
- 0x80DEEC00: cKF_c_int_hnw024_tbl
- 0x80DEEC14: cKF_ds_int_hnw024_tbl
- 0x80DEED1C: cKF_ba_r_int_hnw024
- 0x80DEED30: cKF_je_r_int_hnw024_tbl
- 0x80DEED84: cKF_bs_r_int_hnw024
- 0x80DEEDA0: int_hnw025_pal
- 0x80DEEDC0: int_hnw025_c_front_tex_txt
- 0x80DEF0C0: int_hnw025_c_back_tex_txt
- 0x80DEF240: int_hnw025_arm_tex_txt
- 0x80DEF340: int_hnw025_armtop_tex_txt
- 0x80DEF3C0: int_hnw025_b_back_tex_txt
- 0x80DEF440: int_hnw025_b_front_tex_txt
- 0x80DEF540: int_hnw025_v
- 0x80DEF9B0: int_hnw025_chest_model
- 0x80DEFAA0: int_hnw025_armR_model
- 0x80DEFB20: int_hnw025_armL_model
- 0x80DEFBA0: int_hnw025_base_model
- 0x80DEFC28: cKF_ckcb_r_int_hnw025_tbl
- 0x80DEFC30: cKF_kn_int_hnw025_tbl
- 0x80DEFC50: cKF_c_int_hnw025_tbl
- 0x80DEFC64: cKF_ds_int_hnw025_tbl
- 0x80DEFD50: cKF_ba_r_int_hnw025
- 0x80DEFD64: cKF_je_r_int_hnw025_tbl
- 0x80DEFDB8: cKF_bs_r_int_hnw025
- 0x80DEFDC0: int_hnw026_pal
- 0x80DEFDE0: int_hnw026_arm_tex_txt
- 0x80DEFEE0: int_hnw026_armtop_tex_txt
- 0x80DEFF60: int_hnw026_c_front_tex_txt
- 0x80DF0260: int_hnw026_c_back_tex_txt
- 0x80DF03E0: int_hnw026_b_back_tex_txt
- 0x80DF0460: int_hnw026_b_front_tex_txt
- 0x80DF0560: int_hnw026_v
- 0x80DF09D0: int_hnw026_chest_model
- 0x80DF0AA0: int_hnw026_armR_model
- 0x80DF0B20: int_hnw026_armL_model
- 0x80DF0BA0: int_hnw026_base_model
- 0x80DF0C18: cKF_ckcb_r_int_hnw026_tbl
- 0x80DF0C20: cKF_kn_int_hnw026_tbl
- 0x80DF0C40: cKF_c_int_hnw026_tbl
- 0x80DF0C54: cKF_ds_int_hnw026_tbl
- 0x80DF0D40: cKF_ba_r_int_hnw026
- 0x80DF0D54: cKF_je_r_int_hnw026_tbl
- 0x80DF0DA8: cKF_bs_r_int_hnw026
- 0x80DF0DC0: int_hnw027_pal
- 0x80DF0DE0: int_hnw027_c_front_tex_txt
- 0x80DF10E0: int_hnw027_c_back_tex_txt
- 0x80DF1260: int_hnw027_arm_tex_txt
- 0x80DF1360: int_hnw027_armtop_tex_txt
- 0x80DF13E0: int_hnw027_b_back_tex_txt
- 0x80DF1460: int_hnw027_b_front_tex_txt
- 0x80DF1560: int_hnw027_v
- 0x80DF19D0: int_hnw027_chest_model
- 0x80DF1AC0: int_hnw027_armR_model
- 0x80DF1B40: int_hnw027_armL_model
- 0x80DF1BC0: int_hnw027_base_model
- 0x80DF1C48: cKF_ckcb_r_int_hnw027_tbl
- 0x80DF1C50: cKF_kn_int_hnw027_tbl
- 0x80DF1C58: cKF_c_int_hnw027_tbl
- 0x80DF1C84: cKF_ds_int_hnw027_tbl
- 0x80DF1D40: cKF_ba_r_int_hnw027
- 0x80DF1D54: cKF_je_r_int_hnw027_tbl
- 0x80DF1DA8: cKF_bs_r_int_hnw027
- 0x80DF1DC0: int_hnw028_pal
- 0x80DF1DE0: int_hnw028_arm_tex_txt
- 0x80DF1EE0: int_hnw028_armtop_tex_txt
- 0x80DF1F60: int_hnw028_c_front_tex_txt
- 0x80DF2260: int_hnw028_c_back_tex_txt
- 0x80DF23E0: int_hnw028_b_back_tex_txt
- 0x80DF2460: int_hnw028_b_front_tex_txt
- 0x80DF2560: int_hnw028_v
- 0x80DF29D0: int_hnw028_chest_model
- 0x80DF2AA0: int_hnw028_armR_model
- 0x80DF2B20: int_hnw028_armL_model
- 0x80DF2BA0: int_hnw028_base_model
- 0x80DF2C18: cKF_ckcb_r_int_hnw028_tbl
- 0x80DF2C20: cKF_kn_int_hnw028_tbl
- 0x80DF2C30: cKF_c_int_hnw028_tbl
- 0x80DF2C54: cKF_ds_int_hnw028_tbl
- 0x80DF2DE0: cKF_ba_r_int_hnw028
- 0x80DF2DF4: cKF_je_r_int_hnw028_tbl
- 0x80DF2E48: cKF_bs_r_int_hnw028
- 0x80DF2E60: int_hnw029_pal
- 0x80DF2E80: int_hnw029_arm_tex_txt
- 0x80DF2F80: int_hnw029_armtop_tex_txt
- 0x80DF3000: int_hnw029_c_front_tex_txt
- 0x80DF3300: int_hnw029_c_back_tex_txt
- 0x80DF3480: int_hnw029_b_back_tex_txt
- 0x80DF3500: int_hnw029_b_front_tex_txt
- 0x80DF3600: int_hnw029_v
- 0x80DF3A70: int_hnw029_chest_model
- 0x80DF3B40: int_hnw029_armR_model
- 0x80DF3BC0: int_hnw029_armL_model
- 0x80DF3C40: int_hnw029_base_model
- 0x80DF3CB8: cKF_ckcb_r_int_hnw029_tbl
- 0x80DF3CC0: cKF_kn_int_hnw029_tbl
- 0x80DF3CC8: cKF_c_int_hnw029_tbl
- 0x80DF3CF4: cKF_ds_int_hnw029_tbl
- 0x80DF3DCC: cKF_ba_r_int_hnw029
- 0x80DF3DE0: cKF_je_r_int_hnw029_tbl
- 0x80DF3E34: cKF_bs_r_int_hnw029
- 0x80DF3E40: int_hnw030_pal
- 0x80DF3E60: int_hnw030_arm_tex_txt
- 0x80DF3F60: int_hnw030_armtop_tex_txt
- 0x80DF3FE0: int_hnw030_c_front_tex_txt
- 0x80DF42E0: int_hnw030_c_back_tex_txt
- 0x80DF4460: int_hnw030_b_back_tex_txt
- 0x80DF44E0: int_hnw030_b_front_tex_txt
- 0x80DF45E0: int_hnw030_v
- 0x80DF4A50: int_hnw030_chest_model
- 0x80DF4B20: int_hnw030_armR_model
- 0x80DF4BA0: int_hnw030_armL_model
- 0x80DF4C20: int_hnw030_base_model
- 0x80DF4C98: cKF_ckcb_r_int_hnw030_tbl
- 0x80DF4CA0: cKF_kn_int_hnw030_tbl
- 0x80DF4CA8: cKF_c_int_hnw030_tbl
- 0x80DF4CD0: cKF_ds_int_hnw030_tbl
- 0x80DF4D8C: cKF_ba_r_int_hnw030
- 0x80DF4DA0: cKF_je_r_int_hnw030_tbl
- 0x80DF4DF4: cKF_bs_r_int_hnw030
- 0x80DF4E00: int_hnw031_pal
- 0x80DF4E20: int_hnw031_c_front_tex_txt
- 0x80DF5120: int_hnw031_c_back_tex_txt
- 0x80DF52A0: int_hnw031_arm_tex_txt
- 0x80DF53A0: int_hnw031_armtop_tex_txt
- 0x80DF5420: int_hnw031_b_back_tex_txt
- 0x80DF54A0: int_hnw031_b_front_tex_txt
- 0x80DF55A0: int_hnw031_v
- 0x80DF5A10: int_hnw031_chest_model
- 0x80DF5B00: int_hnw031_armR_model
- 0x80DF5B80: int_hnw031_armL_model
- 0x80DF5C00: int_hnw031_base_model
- 0x80DF5C88: cKF_ckcb_r_int_hnw031_tbl
- 0x80DF5C90: cKF_kn_int_hnw031_tbl
- 0x80DF5CB0: cKF_c_int_hnw031_tbl
- 0x80DF5CC4: cKF_ds_int_hnw031_tbl
- 0x80DF5DB4: cKF_ba_r_int_hnw031
- 0x80DF5DC8: cKF_je_r_int_hnw031_tbl
- 0x80DF5E1C: cKF_bs_r_int_hnw031
- 0x80DF5E40: int_hnw032_pal
- 0x80DF5E60: int_hnw032_arm_tex_txt
- 0x80DF5F60: int_hnw032_armtop_tex_txt
- 0x80DF5FE0: int_hnw032_c_front_tex_txt
- 0x80DF62E0: int_hnw032_c_back_tex_txt
- 0x80DF6460: int_hnw032_b_back_tex_txt
- 0x80DF64E0: int_hnw032_b_front_tex_txt
- 0x80DF65E0: int_hnw032_v
- 0x80DF6A50: int_hnw032_chest_model
- 0x80DF6B20: int_hnw032_armR_model
- 0x80DF6BA0: int_hnw032_armL_model
- 0x80DF6C20: int_hnw032_base_model
- 0x80DF6C98: cKF_ckcb_r_int_hnw032_tbl
- 0x80DF6CA0: cKF_kn_int_hnw032_tbl
- 0x80DF6CC0: cKF_c_int_hnw032_tbl
- 0x80DF6CD4: cKF_ds_int_hnw032_tbl
- 0x80DF6DC4: cKF_ba_r_int_hnw032
- 0x80DF6DD8: cKF_je_r_int_hnw032_tbl
- 0x80DF6E2C: cKF_bs_r_int_hnw032
- 0x80DF6E40: int_hnw033_pal
- 0x80DF6E60: int_hnw033_arm_tex_txt
- 0x80DF6F60: int_hnw033_armtop_tex_txt
- 0x80DF6FE0: int_hnw033_c_front_tex_txt
- 0x80DF72E0: int_hnw033_c_back_tex_txt
- 0x80DF7460: int_hnw033_b_back_tex_txt
- 0x80DF74E0: int_hnw033_b_front_tex_txt
- 0x80DF75E0: int_hnw033_v
- 0x80DF7A50: int_hnw033_chest_model
- 0x80DF7B20: int_hnw033_armR_model
- 0x80DF7BA0: int_hnw033_armL_model
- 0x80DF7C20: int_hnw033_base_model
- 0x80DF7C98: cKF_ckcb_r_int_hnw033_tbl
- 0x80DF7CA0: cKF_kn_int_hnw033_tbl
- 0x80DF7CC0: cKF_c_int_hnw033_tbl
- 0x80DF7CD4: cKF_ds_int_hnw033_tbl
- 0x80DF7DDC: cKF_ba_r_int_hnw033
- 0x80DF7DF0: cKF_je_r_int_hnw033_tbl
- 0x80DF7E44: cKF_bs_r_int_hnw033
- 0x80DF7E60: int_hnw034_pal
- 0x80DF7E80: int_hnw034_arm_tex_txt
- 0x80DF7F80: int_hnw034_armtop_tex_txt
- 0x80DF8000: int_hnw034_c_front_tex_txt
- 0x80DF8300: int_hnw034_c_back_tex_txt
- 0x80DF8480: int_hnw034_antena_tex_txt
- 0x80DF8500: int_hnw034_b_back_tex_txt
- 0x80DF8580: int_hnw034_b_front_tex_txt
- 0x80DF8680: int_hnw034_v
- 0x80DF8B20: int_hnw034_chest_model
- 0x80DF8C18: int_hnw034_armR_model
- 0x80DF8C98: int_hnw034_armL_model
- 0x80DF8D18: int_hnw034_base_model
- 0x80DF8D90: cKF_ckcb_r_int_hnw034_tbl
- 0x80DF8D98: cKF_kn_int_hnw034_tbl
- 0x80DF8DB8: cKF_c_int_hnw034_tbl
- 0x80DF8DCC: cKF_ds_int_hnw034_tbl
- 0x80DF8EA4: cKF_ba_r_int_hnw034
- 0x80DF8EB8: cKF_je_r_int_hnw034_tbl
- 0x80DF8F0C: cKF_bs_r_int_hnw034
- 0x80DF8F20: int_hnw035_pal
- 0x80DF8F40: int_hnw035_arm_tex_txt
- 0x80DF9040: int_hnw035_armtop_tex_txt
- 0x80DF90C0: int_hnw035_c_front_tex_txt
- 0x80DF93C0: int_hnw035_c_back_tex_txt
- 0x80DF9540: int_hnw035_b_back_tex_txt
- 0x80DF95C0: int_hnw035_b_front_tex_txt
- 0x80DF96C0: int_hnw035_v
- 0x80DF9B30: int_hnw035_chest_model
- 0x80DF9C00: int_hnw035_armR_model
- 0x80DF9C80: int_hnw035_armL_model
- 0x80DF9D00: int_hnw035_base_model
- 0x80DF9D78: cKF_ckcb_r_int_hnw035_tbl
- 0x80DF9D80: cKF_kn_int_hnw035_tbl
- 0x80DF9D88: cKF_c_int_hnw035_tbl
- 0x80DF9DB0: cKF_ds_int_hnw035_tbl
- 0x80DF9E78: cKF_ba_r_int_hnw035
- 0x80DF9E8C: cKF_je_r_int_hnw035_tbl
- 0x80DF9EE0: cKF_bs_r_int_hnw035
- 0x80DF9F00: int_hnw036_pal
- 0x80DF9F20: int_hnw036_arm_tex_txt
- 0x80DFA020: int_hnw036_armtop_tex_txt
- 0x80DFA0A0: int_hnw036_c_front_tex_txt
- 0x80DFA3A0: int_hnw036_c_back_tex_txt
- 0x80DFA520: int_hnw036_b_back_tex_txt
- 0x80DFA5A0: int_hnw036_b_front_tex_txt
- 0x80DFA6A0: int_hnw036_v
- 0x80DFAB10: int_hnw036_chest_model
- 0x80DFABE0: int_hnw036_armR_model
- 0x80DFAC60: int_hnw036_armL_model
- 0x80DFACE0: int_hnw036_base_model
- 0x80DFAD58: cKF_ckcb_r_int_hnw036_tbl
- 0x80DFAD60: cKF_kn_int_hnw036_tbl
- 0x80DFAD68: cKF_c_int_hnw036_tbl
- 0x80DFAD90: cKF_ds_int_hnw036_tbl
- 0x80DFAE68: cKF_ba_r_int_hnw036
- 0x80DFAE7C: cKF_je_r_int_hnw036_tbl
- 0x80DFAED0: cKF_bs_r_int_hnw036
- 0x80DFAEE0: int_hnw037_pal
- 0x80DFAF00: int_hnw037_arm_tex_txt
- 0x80DFB000: int_hnw037_armtop_tex_txt
- 0x80DFB080: int_hnw037_c_front_tex_txt
- 0x80DFB380: int_hnw037_c_back_tex_txt
- 0x80DFB500: int_hnw037_b_back_tex_txt
- 0x80DFB580: int_hnw037_b_front_tex_txt
- 0x80DFB680: int_hnw037_v
- 0x80DFBAF0: int_hnw037_chest_model
- 0x80DFBBC0: int_hnw037_armR_model
- 0x80DFBC40: int_hnw037_armL_model
- 0x80DFBCC0: int_hnw037_base_model
- 0x80DFBD38: cKF_ckcb_r_int_hnw037_tbl
- 0x80DFBD40: cKF_kn_int_hnw037_tbl
- 0x80DFBD60: cKF_c_int_hnw037_tbl
- 0x80DFBD74: cKF_ds_int_hnw037_tbl
- 0x80DFBEF0: cKF_ba_r_int_hnw037
- 0x80DFBF04: cKF_je_r_int_hnw037_tbl
- 0x80DFBF58: cKF_bs_r_int_hnw037
- 0x80DFBF60: int_hnw038_pal
- 0x80DFBF80: int_hnw038_c_front_tex_txt
- 0x80DFC280: int_hnw038_c_back_tex_txt
- 0x80DFC400: int_hnw038_arm_tex_txt
- 0x80DFC500: int_hnw038_armtop_tex_txt
- 0x80DFC580: int_hnw038_b_back_tex_txt
- 0x80DFC600: int_hnw038_b_front_tex_txt
- 0x80DFC700: int_hnw038_v
- 0x80DFCB70: int_hnw038_chest_model
- 0x80DFCC60: int_hnw038_armR_model
- 0x80DFCCE0: int_hnw038_armL_model
- 0x80DFCD60: int_hnw038_base_model
- 0x80DFCDE8: cKF_ckcb_r_int_hnw038_tbl
- 0x80DFCDF0: cKF_kn_int_hnw038_tbl
- 0x80DFCE10: cKF_c_int_hnw038_tbl
- 0x80DFCE24: cKF_ds_int_hnw038_tbl
- 0x80DFCFA0: cKF_ba_r_int_hnw038
- 0x80DFCFB4: cKF_je_r_int_hnw038_tbl
- 0x80DFD008: cKF_bs_r_int_hnw038
- 0x80DFD020: int_hnw039_pal
- 0x80DFD040: int_hnw039_arm_tex_txt
- 0x80DFD140: int_hnw039_armtop_tex_txt
- 0x80DFD1C0: int_hnw039_c_front_tex_txt
- 0x80DFD4C0: int_hnw039_c_back_tex_txt
- 0x80DFD640: int_hnw039_b_back_tex_txt
- 0x80DFD6C0: int_hnw039_b_front_tex_txt
- 0x80DFD7C0: int_hnw039_v
- 0x80DFDC30: int_hnw039_chest_model
- 0x80DFDD00: int_hnw039_armR_model
- 0x80DFDD80: int_hnw039_armL_model
- 0x80DFDE00: int_hnw039_base_model
- 0x80DFDE78: cKF_ckcb_r_int_hnw039_tbl
- 0x80DFDE80: cKF_kn_int_hnw039_tbl
- 0x80DFDEA0: cKF_c_int_hnw039_tbl
- 0x80DFDEB4: cKF_ds_int_hnw039_tbl
- 0x80DFE03C: cKF_ba_r_int_hnw039
- 0x80DFE050: cKF_je_r_int_hnw039_tbl
- 0x80DFE0A4: cKF_bs_r_int_hnw039
- 0x80DFE0C0: int_hnw040_pal
- 0x80DFE0E0: int_hnw040_c_front_tex_txt
- 0x80DFE3E0: int_hnw040_c_back_tex_txt
- 0x80DFE560: int_hnw040_arm_tex_txt
- 0x80DFE660: int_hnw040_armtop_tex_txt
- 0x80DFE6E0: int_hnw040_b_back_tex_txt
- 0x80DFE760: int_hnw040_b_front_tex_txt
- 0x80DFE860: int_hnw040_v
- 0x80DFECD0: int_hnw040_chest_model
- 0x80DFEDC0: int_hnw040_armR_model
- 0x80DFEE40: int_hnw040_armL_model
- 0x80DFEEC0: int_hnw040_base_model
- 0x80DFEF48: cKF_ckcb_r_int_hnw040_tbl
- 0x80DFEF50: cKF_kn_int_hnw040_tbl
- 0x80DFEF70: cKF_c_int_hnw040_tbl
- 0x80DFEF84: cKF_ds_int_hnw040_tbl
- 0x80DFF10C: cKF_ba_r_int_hnw040
- 0x80DFF120: cKF_je_r_int_hnw040_tbl
- 0x80DFF174: cKF_bs_r_int_hnw040
- 0x80DFF180: int_hnw041_pal
- 0x80DFF1A0: int_hnw041_arm_tex_txt
- 0x80DFF2A0: int_hnw041_armtop_tex_txt
- 0x80DFF320: int_hnw041_c_front_tex_txt
- 0x80DFF620: int_hnw041_c_back_tex_txt
- 0x80DFF7A0: int_hnw041_b_back_tex_txt
- 0x80DFF820: int_hnw041_b_front_tex_txt
- 0x80DFF920: int_hnw041_v
- 0x80DFFD90: int_hnw041_chest_model
- 0x80DFFE60: int_hnw041_armR_model
- 0x80DFFEE0: int_hnw041_armL_model
- 0x80DFFF60: int_hnw041_base_model
- 0x80DFFFD8: cKF_ckcb_r_int_hnw041_tbl
- 0x80DFFFE0: cKF_kn_int_hnw041_tbl
- 0x80DFFFF8: cKF_c_int_hnw041_tbl
- 0x80E00014: cKF_ds_int_hnw041_tbl
- 0x80E00188: cKF_ba_r_int_hnw041
- 0x80E0019C: cKF_je_r_int_hnw041_tbl
- 0x80E001F0: cKF_bs_r_int_hnw041
- 0x80E00200: int_hnw042_pal
- 0x80E00220: int_hnw042_arm_tex_txt
- 0x80E00320: int_hnw042_armtop_tex_txt
- 0x80E003A0: int_hnw042_c_front_tex_txt
- 0x80E006A0: int_hnw042_c_back_tex_txt
- 0x80E00820: int_hnw042_b_back_tex_txt
- 0x80E008A0: int_hnw042_b_front_tex_txt
- 0x80E009A0: int_hnw042_v
- 0x80E00E10: int_hnw042_chest_model
- 0x80E00EE0: int_hnw042_armR_model
- 0x80E00F60: int_hnw042_armL_model
- 0x80E00FE0: int_hnw042_base_model
- 0x80E01058: cKF_ckcb_r_int_hnw042_tbl
- 0x80E01060: cKF_kn_int_hnw042_tbl
- 0x80E0106C: cKF_c_int_hnw042_tbl
- 0x80E01094: cKF_ds_int_hnw042_tbl
- 0x80E011BC: cKF_ba_r_int_hnw042
- 0x80E011D0: cKF_je_r_int_hnw042_tbl
- 0x80E01224: cKF_bs_r_int_hnw042
- 0x80E01240: int_hnw043_pal
- 0x80E01260: int_hnw043_arm_tex_txt
- 0x80E01360: int_hnw043_armtop_tex_txt
- 0x80E013E0: int_hnw043_c_front_tex_txt
- 0x80E016E0: int_hnw043_c_back_tex_txt
- 0x80E01860: int_hnw043_b_back_tex_txt
- 0x80E018E0: int_hnw043_b_front_tex_txt
- 0x80E019E0: int_hnw043_v
- 0x80E01E50: int_hnw043_chest_model
- 0x80E01F20: int_hnw043_armR_model
- 0x80E01FA0: int_hnw043_armL_model
- 0x80E02020: int_hnw043_base_model
- 0x80E02098: cKF_ckcb_r_int_hnw043_tbl
- 0x80E020A0: cKF_kn_int_hnw043_tbl
- 0x80E020C0: cKF_c_int_hnw043_tbl
- 0x80E020D4: cKF_ds_int_hnw043_tbl
- 0x80E021C4: cKF_ba_r_int_hnw043
- 0x80E021D8: cKF_je_r_int_hnw043_tbl
- 0x80E0222C: cKF_bs_r_int_hnw043
- 0x80E02240: int_hnw044_pal
- 0x80E02260: int_hnw044_arm_tex_txt
- 0x80E02360: int_hnw044_armtop_tex_txt
- 0x80E023E0: int_hnw044_c_front_tex_txt
- 0x80E026E0: int_hnw044_c_back_tex_txt
- 0x80E02860: int_hnw044_b_back_tex_txt
- 0x80E028E0: int_hnw044_b_front_tex_txt
- 0x80E029E0: int_hnw044_v
- 0x80E02E50: int_hnw044_chest_model
- 0x80E02F20: int_hnw044_armR_model
- 0x80E02FA0: int_hnw044_armL_model
- 0x80E03020: int_hnw044_base_model
- 0x80E03098: cKF_ckcb_r_int_hnw044_tbl
- 0x80E030A0: cKF_kn_int_hnw044_tbl
- 0x80E030C0: cKF_c_int_hnw044_tbl
- 0x80E030D4: cKF_ds_int_hnw044_tbl
- 0x80E031D8: cKF_ba_r_int_hnw044
- 0x80E031EC: cKF_je_r_int_hnw044_tbl
- 0x80E03240: cKF_bs_r_int_hnw044
- 0x80E03260: int_hnw045_pal
- 0x80E03280: int_hnw045_c_front_tex_txt
- 0x80E03580: int_hnw045_c_back_tex_txt
- 0x80E03700: int_hnw045_arm_tex_txt
- 0x80E03800: int_hnw045_armtop_tex_txt
- 0x80E03880: int_hnw045_b_back_tex_txt
- 0x80E03900: int_hnw045_b_front_tex_txt
- 0x80E03A00: int_hnw045_v
- 0x80E03E70: int_hnw045_chest_model
- 0x80E03F60: int_hnw045_armR_model
- 0x80E03FE0: int_hnw045_armL_model
- 0x80E04060: int_hnw045_base_model
- 0x80E040E8: cKF_ckcb_r_int_hnw045_tbl
- 0x80E040F0: cKF_kn_int_hnw045_tbl
- 0x80E04110: cKF_c_int_hnw045_tbl
- 0x80E04124: cKF_ds_int_hnw045_tbl
- 0x80E04208: cKF_ba_r_int_hnw045
- 0x80E0421C: cKF_je_r_int_hnw045_tbl
- 0x80E04270: cKF_bs_r_int_hnw045
- 0x80E04280: int_hnw046_pal
- 0x80E042A0: int_hnw046_arm_tex_txt
- 0x80E043A0: int_hnw046_armtop_tex_txt
- 0x80E04420: int_hnw046_c_front_tex_txt
- 0x80E04720: int_hnw046_c_back_tex_txt
- 0x80E048A0: int_hnw046_b_back_tex_txt
- 0x80E04920: int_hnw046_b_front_tex_txt
- 0x80E04A20: int_hnw046_v
- 0x80E04E90: int_hnw046_chest_model
- 0x80E04F60: int_hnw046_armR_model
- 0x80E04FE0: int_hnw046_armL_model
- 0x80E05060: int_hnw046_base_model
- 0x80E050D8: cKF_ckcb_r_int_hnw046_tbl
- 0x80E050E0: cKF_kn_int_hnw046_tbl
- 0x80E05100: cKF_c_int_hnw046_tbl
- 0x80E05114: cKF_ds_int_hnw046_tbl
- 0x80E05200: cKF_ba_r_int_hnw046
- 0x80E05214: cKF_je_r_int_hnw046_tbl
- 0x80E05268: cKF_bs_r_int_hnw046
- 0x80E05280: int_hnw047_pal
- 0x80E052A0: int_hnw047_arm_tex_txt
- 0x80E053A0: int_hnw047_armtop_tex_txt
- 0x80E05420: int_hnw047_c_front_tex_txt
- 0x80E05720: int_hnw047_c_back_tex_txt
- 0x80E058A0: int_hnw047_antena_tex_txt
- 0x80E05920: int_hnw047_b_back_tex_txt
- 0x80E059A0: int_hnw047_b_front_tex_txt
- 0x80E05AA0: int_hnw047_v
- 0x80E05F40: int_hnw047_chest_model
- 0x80E06038: int_hnw047_armR_model
- 0x80E060B8: int_hnw047_armL_model
- 0x80E06138: int_hnw047_base_model
- 0x80E061B0: cKF_ckcb_r_int_hnw047_tbl
- 0x80E061B8: cKF_kn_int_hnw047_tbl
- 0x80E061D8: cKF_c_int_hnw047_tbl
- 0x80E061EC: cKF_ds_int_hnw047_tbl
- 0x80E06344: cKF_ba_r_int_hnw047
- 0x80E06358: cKF_je_r_int_hnw047_tbl
- 0x80E063AC: cKF_bs_r_int_hnw047
- 0x80E063C0: int_hnw048_pal
- 0x80E063E0: int_hnw048_arm_tex_txt
- 0x80E064E0: int_hnw048_armtop_tex_txt
- 0x80E06560: int_hnw048_c_front_tex_txt
- 0x80E06860: int_hnw048_c_back_tex_txt
- 0x80E069E0: int_hnw048_antena_tex_txt
- 0x80E06A60: int_hnw048_b_back_tex_txt
- 0x80E06AE0: int_hnw048_b_front_tex_txt
- 0x80E06BE0: int_hnw048_v
- 0x80E07080: int_hnw048_chest_model
- 0x80E07178: int_hnw048_armR_model
- 0x80E071F8: int_hnw048_armL_model
- 0x80E07278: int_hnw048_base_model
- 0x80E072F0: cKF_ckcb_r_int_hnw048_tbl
- 0x80E072F8: cKF_kn_int_hnw048_tbl
- 0x80E07318: cKF_c_int_hnw048_tbl
- 0x80E0732C: cKF_ds_int_hnw048_tbl
- 0x80E07508: cKF_ba_r_int_hnw048
- 0x80E0751C: cKF_je_r_int_hnw048_tbl
- 0x80E07570: cKF_bs_r_int_hnw048
- 0x80E07580: int_hnw049_pal
- 0x80E075A0: int_hnw049_arm_tex_txt
- 0x80E076A0: int_hnw049_armtop_tex_txt
- 0x80E07720: int_hnw049_c_front_tex_txt
- 0x80E07A20: int_hnw049_c_back_tex_txt
- 0x80E07BA0: int_hnw049_antena_tex_txt
- 0x80E07C20: int_hnw049_b_back_tex_txt
- 0x80E07CA0: int_hnw049_b_front_tex_txt
- 0x80E07DA0: int_hnw049_v
- 0x80E08240: int_hnw049_chest_model
- 0x80E08338: int_hnw049_armR_model
- 0x80E083B8: int_hnw049_armL_model
- 0x80E08438: int_hnw049_base_model
- 0x80E084B0: cKF_ckcb_r_int_hnw049_tbl
- 0x80E084B8: cKF_kn_int_hnw049_tbl
- 0x80E084D8: cKF_c_int_hnw049_tbl
- 0x80E084EC: cKF_ds_int_hnw049_tbl
- 0x80E086C0: cKF_ba_r_int_hnw049
- 0x80E086D4: cKF_je_r_int_hnw049_tbl
- 0x80E08728: cKF_bs_r_int_hnw049
- 0x80E08740: int_hnw050_pal
- 0x80E08760: int_hnw050_arm_tex_txt
- 0x80E08860: int_hnw050_armtop_tex_txt
- 0x80E088E0: int_hnw050_c_front_tex_txt
- 0x80E08BE0: int_hnw050_c_back_tex_txt
- 0x80E08D60: int_hnw050_antena_tex_txt
- 0x80E08DE0: int_hnw050_b_back_tex_txt
- 0x80E08E60: int_hnw050_b_front_tex_txt
- 0x80E08F60: int_hnw050_v
- 0x80E09400: int_hnw050_chest_model
- 0x80E094F8: int_hnw050_armR_model
- 0x80E09578: int_hnw050_armL_model
- 0x80E095F8: int_hnw050_base_model
- 0x80E09670: cKF_ckcb_r_int_hnw050_tbl
- 0x80E09678: cKF_kn_int_hnw050_tbl
- 0x80E09698: cKF_c_int_hnw050_tbl
- 0x80E096AC: cKF_ds_int_hnw050_tbl
- 0x80E09828: cKF_ba_r_int_hnw050
- 0x80E0983C: cKF_je_r_int_hnw050_tbl
- 0x80E09890: cKF_bs_r_int_hnw050
- 0x80E098A0: int_hnw051_pal
- 0x80E098C0: int_hnw051_arm_tex_txt
- 0x80E099C0: int_hnw051_armtop_tex_txt
- 0x80E09A40: int_hnw051_c_front_tex_txt
- 0x80E09D40: int_hnw051_c_back_tex_txt
- 0x80E09EC0: int_hnw051_antena_tex_txt
- 0x80E09F40: int_hnw051_b_back_tex_txt
- 0x80E09FC0: int_hnw051_b_front_tex_txt
- 0x80E0A0C0: int_hnw051_v
- 0x80E0A560: int_hnw051_chest_model
- 0x80E0A658: int_hnw051_armR_model
- 0x80E0A6D8: int_hnw051_armL_model
- 0x80E0A758: int_hnw051_base_model
- 0x80E0A7D0: cKF_ckcb_r_int_hnw051_tbl
- 0x80E0A7D8: cKF_kn_int_hnw051_tbl
- 0x80E0A7F8: cKF_c_int_hnw051_tbl
- 0x80E0A80C: cKF_ds_int_hnw051_tbl
- 0x80E0A9B8: cKF_ba_r_int_hnw051
- 0x80E0A9CC: cKF_je_r_int_hnw051_tbl
- 0x80E0AA20: cKF_bs_r_int_hnw051
- 0x80E0AA40: int_hnw052_pal
- 0x80E0AA60: int_hnw052_arm_tex_txt
- 0x80E0AB60: int_hnw052_armtop_tex_txt
- 0x80E0ABE0: int_hnw052_c_front_tex_txt
- 0x80E0AEE0: int_hnw052_c_back_tex_txt
- 0x80E0B060: int_hnw052_b_back_tex_txt
- 0x80E0B0E0: int_hnw052_b_front_tex_txt
- 0x80E0B1E0: int_hnw052_v
- 0x80E0B650: int_hnw052_chest_model
- 0x80E0B720: int_hnw052_armR_model
- 0x80E0B7A0: int_hnw052_armL_model
- 0x80E0B820: int_hnw052_base_model
- 0x80E0B898: cKF_ckcb_r_int_hnw052_tbl
- 0x80E0B8A0: cKF_kn_int_hnw052_tbl
- 0x80E0B8C0: cKF_c_int_hnw052_tbl
- 0x80E0B8D4: cKF_ds_int_hnw052_tbl
- 0x80E0B9DC: cKF_ba_r_int_hnw052
- 0x80E0B9F0: cKF_je_r_int_hnw052_tbl
- 0x80E0BA44: cKF_bs_r_int_hnw052
- 0x80E0BA60: int_hnw053_pal
- 0x80E0BA80: int_hnw053_c_front_tex_txt
- 0x80E0BD80: int_hnw053_c_back_tex_txt
- 0x80E0BF00: int_hnw053_arm_tex_txt
- 0x80E0C000: int_hnw053_armtop_tex_txt
- 0x80E0C080: int_hnw053_b_back_tex_txt
- 0x80E0C100: int_hnw053_b_front_tex_txt
- 0x80E0C200: int_hnw053_v
- 0x80E0C670: int_hnw053_chest_model
- 0x80E0C760: int_hnw053_armR_model
- 0x80E0C7E0: int_hnw053_armL_model
- 0x80E0C860: int_hnw053_base_model
- 0x80E0C8E8: cKF_ckcb_r_int_hnw053_tbl
- 0x80E0C8F0: cKF_kn_int_hnw053_tbl
- 0x80E0C910: cKF_c_int_hnw053_tbl
- 0x80E0C924: cKF_ds_int_hnw053_tbl
- 0x80E0CA2C: cKF_ba_r_int_hnw053
- 0x80E0CA40: cKF_je_r_int_hnw053_tbl
- 0x80E0CA94: cKF_bs_r_int_hnw053
- 0x80E0CAA0: int_hnw054_pal
- 0x80E0CAC0: int_hnw054_arm_tex_txt
- 0x80E0CBC0: int_hnw054_armtop_tex_txt
- 0x80E0CC40: int_hnw054_c_front_tex_txt
- 0x80E0CF40: int_hnw054_c_back_tex_txt
- 0x80E0D0C0: int_hnw054_b_back_tex_txt
- 0x80E0D140: int_hnw054_b_front_tex_txt
- 0x80E0D240: int_hnw054_v
- 0x80E0D6B0: int_hnw054_chest_model
- 0x80E0D780: int_hnw054_armR_model
- 0x80E0D800: int_hnw054_armL_model
- 0x80E0D880: int_hnw054_base_model
- 0x80E0D8F8: cKF_ckcb_r_int_hnw054_tbl
- 0x80E0D900: cKF_kn_int_hnw054_tbl
- 0x80E0D920: cKF_c_int_hnw054_tbl
- 0x80E0D934: cKF_ds_int_hnw054_tbl
- 0x80E0DA24: cKF_ba_r_int_hnw054
- 0x80E0DA38: cKF_je_r_int_hnw054_tbl
- 0x80E0DA8C: cKF_bs_r_int_hnw054
- 0x80E0DAA0: int_hnw055_pal
- 0x80E0DAC0: int_hnw055_arm_tex_txt
- 0x80E0DBC0: int_hnw055_armtop_tex_txt
- 0x80E0DC40: int_hnw055_c_front_tex_txt
- 0x80E0DF40: int_hnw055_c_back_tex_txt
- 0x80E0E0C0: int_hnw055_antena_tex_txt
- 0x80E0E140: int_hnw055_b_back_tex_txt
- 0x80E0E1C0: int_hnw055_b_front_tex_txt
- 0x80E0E2C0: int_hnw055_v
- 0x80E0E760: int_hnw055_chest_model
- 0x80E0E858: int_hnw055_armR_model
- 0x80E0E8D8: int_hnw055_armL_model
- 0x80E0E958: int_hnw055_base_model
- 0x80E0E9D0: cKF_ckcb_r_int_hnw055_tbl
- 0x80E0E9D8: cKF_kn_int_hnw055_tbl
- 0x80E0E9F8: cKF_c_int_hnw055_tbl
- 0x80E0EA0C: cKF_ds_int_hnw055_tbl
- 0x80E0EAFC: cKF_ba_r_int_hnw055
- 0x80E0EB10: cKF_je_r_int_hnw055_tbl
- 0x80E0EB64: cKF_bs_r_int_hnw055
- 0x80E0EB80: int_hnw056_pal
- 0x80E0EBA0: int_hnw056_arm_tex_txt
- 0x80E0ECA0: int_hnw056_armtop_tex_txt
- 0x80E0ED20: int_hnw056_c_front_tex_txt
- 0x80E0F020: int_hnw056_c_back_tex_txt
- 0x80E0F1A0: int_hnw056_antena_tex_txt
- 0x80E0F220: int_hnw056_b_back_tex_txt
- 0x80E0F2A0: int_hnw056_b_front_tex_txt
- 0x80E0F3A0: int_hnw056_v
- 0x80E0F840: int_hnw056_chest_model
- 0x80E0F938: int_hnw056_armR_model
- 0x80E0F9B8: int_hnw056_armL_model
- 0x80E0FA38: int_hnw056_base_model
- 0x80E0FAB0: cKF_ckcb_r_int_hnw056_tbl
- 0x80E0FAB8: cKF_kn_int_hnw056_tbl
- 0x80E0FAD8: cKF_c_int_hnw056_tbl
- 0x80E0FAEC: cKF_ds_int_hnw056_tbl
- 0x80E0FBDC: cKF_ba_r_int_hnw056
- 0x80E0FBF0: cKF_je_r_int_hnw056_tbl
- 0x80E0FC44: cKF_bs_r_int_hnw056
- 0x80E0FC60: int_hnw057_pal
- 0x80E0FC80: int_hnw057_arm_tex_txt
- 0x80E0FD80: int_hnw057_armtop_tex_txt
- 0x80E0FE00: int_hnw057_c_front_tex_txt
- 0x80E10100: int_hnw057_c_back_tex_txt
- 0x80E10280: int_hnw057_antena_tex_txt
- 0x80E10300: int_hnw057_b_back_tex_txt
- 0x80E10380: int_hnw057_b_front_tex_txt
- 0x80E10480: int_hnw057_v
- 0x80E10920: int_hnw057_chest_model
- 0x80E10A18: int_hnw057_armR_model
- 0x80E10A98: int_hnw057_armL_model
- 0x80E10B18: int_hnw057_base_model
- 0x80E10B90: cKF_ckcb_r_int_hnw057_tbl
- 0x80E10B98: cKF_kn_int_hnw057_tbl
- 0x80E10BB8: cKF_c_int_hnw057_tbl
- 0x80E10BCC: cKF_ds_int_hnw057_tbl
- 0x80E10CD4: cKF_ba_r_int_hnw057
- 0x80E10CE8: cKF_je_r_int_hnw057_tbl
- 0x80E10D3C: cKF_bs_r_int_hnw057
- 0x80E10D60: int_hnw058_pal
- 0x80E10D80: int_hnw058_arm_tex_txt
- 0x80E10E80: int_hnw058_armtop_tex_txt
- 0x80E10F00: int_hnw058_c_front_tex_txt
- 0x80E11200: int_hnw058_c_back_tex_txt
- 0x80E11380: int_hnw058_b_back_tex_txt
- 0x80E11400: int_hnw058_b_front_tex_txt
- 0x80E11500: int_hnw058_v
- 0x80E11970: int_hnw058_chest_model
- 0x80E11A40: int_hnw058_armR_model
- 0x80E11AC0: int_hnw058_armL_model
- 0x80E11B40: int_hnw058_base_model
- 0x80E11BB8: cKF_ckcb_r_int_hnw058_tbl
- 0x80E11BC0: cKF_kn_int_hnw058_tbl
- 0x80E11BE0: cKF_c_int_hnw058_tbl
- 0x80E11BF4: cKF_ds_int_hnw058_tbl
- 0x80E11D04: cKF_ba_r_int_hnw058
- 0x80E11D18: cKF_je_r_int_hnw058_tbl
- 0x80E11D6C: cKF_bs_r_int_hnw058
- 0x80E11D80: int_hnw059_pal
- 0x80E11DA0: int_hnw059_arm_tex_txt
- 0x80E11EA0: int_hnw059_armtop_tex_txt
- 0x80E11F20: int_hnw059_c_front_tex_txt
- 0x80E12220: int_hnw059_c_back_tex_txt
- 0x80E123A0: int_hnw059_b_back_tex_txt
- 0x80E12420: int_hnw059_b_front_tex_txt
- 0x80E12520: int_hnw059_v
- 0x80E12990: int_hnw059_chest_model
- 0x80E12A60: int_hnw059_armR_model
- 0x80E12AE0: int_hnw059_armL_model
- 0x80E12B60: int_hnw059_base_model
- 0x80E12BD8: cKF_ckcb_r_int_hnw059_tbl
- 0x80E12BE0: cKF_kn_int_hnw059_tbl
- 0x80E12C00: cKF_c_int_hnw059_tbl
- 0x80E12C14: cKF_ds_int_hnw059_tbl
- 0x80E12D9C: cKF_ba_r_int_hnw059
- 0x80E12DB0: cKF_je_r_int_hnw059_tbl
- 0x80E12E04: cKF_bs_r_int_hnw059
- 0x80E12E20: int_hnw060_pal
- 0x80E12E40: int_hnw060_arm_tex_txt
- 0x80E12F40: int_hnw060_armtop_tex_txt
- 0x80E12FC0: int_hnw060_c_front_tex_txt
- 0x80E132C0: int_hnw060_c_back_tex_txt
- 0x80E13440: int_hnw060_antena_tex_txt
- 0x80E134C0: int_hnw060_b_back_tex_txt
- 0x80E13540: int_hnw060_b_front_tex_txt
- 0x80E13640: int_hnw060_v
- 0x80E13AE0: int_hnw060_chest_model
- 0x80E13BD8: int_hnw060_armR_model
- 0x80E13C58: int_hnw060_armL_model
- 0x80E13CD8: int_hnw060_base_model
- 0x80E13D50: cKF_ckcb_r_int_hnw060_tbl
- 0x80E13D58: cKF_kn_int_hnw060_tbl
- 0x80E13D78: cKF_c_int_hnw060_tbl
- 0x80E13D8C: cKF_ds_int_hnw060_tbl
- 0x80E13F14: cKF_ba_r_int_hnw060
- 0x80E13F28: cKF_je_r_int_hnw060_tbl
- 0x80E13F7C: cKF_bs_r_int_hnw060
- 0x80E13FA0: int_hnw061_pal
- 0x80E13FC0: int_hnw061_arm_tex_txt
- 0x80E140C0: int_hnw061_armtop_tex_txt
- 0x80E14140: int_hnw061_c_front_tex_txt
- 0x80E14440: int_hnw061_c_back_tex_txt
- 0x80E145C0: int_hnw061_antena_tex_txt
- 0x80E14640: int_hnw061_b_back_tex_txt
- 0x80E146C0: int_hnw061_b_front_tex_txt
- 0x80E147C0: int_hnw061_v
- 0x80E14C60: int_hnw061_chest_model
- 0x80E14D58: int_hnw061_armR_model
- 0x80E14DD8: int_hnw061_armL_model
- 0x80E14E58: int_hnw061_base_model
- 0x80E14ED0: cKF_ckcb_r_int_hnw061_tbl
- 0x80E14ED8: cKF_kn_int_hnw061_tbl
- 0x80E14EF8: cKF_c_int_hnw061_tbl
- 0x80E14F0C: cKF_ds_int_hnw061_tbl
- 0x80E150BC: cKF_ba_r_int_hnw061
- 0x80E150D0: cKF_je_r_int_hnw061_tbl
- 0x80E15124: cKF_bs_r_int_hnw061
- 0x80E15140: int_hnw062_pal
- 0x80E15160: int_hnw062_arm_tex_txt
- 0x80E15260: int_hnw062_armtop_tex_txt
- 0x80E152E0: int_hnw062_c_front_tex_txt
- 0x80E155E0: int_hnw062_c_back_tex_txt
- 0x80E15760: int_hnw062_antena_tex_txt
- 0x80E157E0: int_hnw062_b_back_tex_txt
- 0x80E15860: int_hnw062_b_front_tex_txt
- 0x80E15960: int_hnw062_v
- 0x80E15E00: int_hnw062_chest_model
- 0x80E15EF8: int_hnw062_armR_model
- 0x80E15F78: int_hnw062_armL_model
- 0x80E15FF8: int_hnw062_base_model
- 0x80E16070: cKF_ckcb_r_int_hnw062_tbl
- 0x80E16078: cKF_kn_int_hnw062_tbl
- 0x80E16098: cKF_c_int_hnw062_tbl
- 0x80E160AC: cKF_ds_int_hnw062_tbl
- 0x80E161A8: cKF_ba_r_int_hnw062
- 0x80E161BC: cKF_je_r_int_hnw062_tbl
- 0x80E16210: cKF_bs_r_int_hnw062
- 0x80E16220: int_hnw063_pal
- 0x80E16240: int_hnw063_arm_tex_txt
- 0x80E16340: int_hnw063_armtop_tex_txt
- 0x80E163C0: int_hnw063_c_front_tex_txt
- 0x80E166C0: int_hnw063_c_back_tex_txt
- 0x80E16840: int_hnw063_antena_tex_txt
- 0x80E168C0: int_hnw063_b_back_tex_txt
- 0x80E16940: int_hnw063_b_front_tex_txt
- 0x80E16A40: int_hnw063_v
- 0x80E16EE0: int_hnw063_chest_model
- 0x80E16FD8: int_hnw063_armR_model
- 0x80E17058: int_hnw063_armL_model
- 0x80E170D8: int_hnw063_base_model
- 0x80E17150: cKF_ckcb_r_int_hnw063_tbl
- 0x80E17158: cKF_kn_int_hnw063_tbl
- 0x80E17178: cKF_c_int_hnw063_tbl
- 0x80E1718C: cKF_ds_int_hnw063_tbl
- 0x80E17290: cKF_ba_r_int_hnw063
- 0x80E172A4: cKF_je_r_int_hnw063_tbl
- 0x80E172F8: cKF_bs_r_int_hnw063
- 0x80E17300: int_hnw064_pal
- 0x80E17320: int_hnw064_arm_tex_txt
- 0x80E17420: int_hnw064_armtop_tex_txt
- 0x80E174A0: int_hnw064_c_front_tex_txt
- 0x80E177A0: int_hnw064_c_back_tex_txt
- 0x80E17920: int_hnw064_antena_tex_txt
- 0x80E179A0: int_hnw064_b_back_tex_txt
- 0x80E17A20: int_hnw064_b_front_tex_txt
- 0x80E17B20: int_hnw064_v
- 0x80E17FC0: int_hnw064_chest_model
- 0x80E180B8: int_hnw064_armR_model
- 0x80E18138: int_hnw064_armL_model
- 0x80E181B8: int_hnw064_base_model
- 0x80E18230: cKF_ckcb_r_int_hnw064_tbl
- 0x80E18238: cKF_kn_int_hnw064_tbl
- 0x80E18258: cKF_c_int_hnw064_tbl
- 0x80E1826C: cKF_ds_int_hnw064_tbl
- 0x80E18374: cKF_ba_r_int_hnw064
- 0x80E18388: cKF_je_r_int_hnw064_tbl
- 0x80E183DC: cKF_bs_r_int_hnw064
- 0x80E18400: int_hnw065_pal
- 0x80E18420: int_hnw065_arm_tex_txt
- 0x80E18520: int_hnw065_armtop_tex_txt
- 0x80E185A0: int_hnw065_c_front_tex_txt
- 0x80E188A0: int_hnw065_c_back_tex_txt
- 0x80E18A20: int_hnw065_antena_tex_txt
- 0x80E18AA0: int_hnw065_b_back_tex_txt
- 0x80E18B20: int_hnw065_b_front_tex_txt
- 0x80E18C20: int_hnw065_v
- 0x80E190C0: int_hnw065_chest_model
- 0x80E191B8: int_hnw065_armR_model
- 0x80E19238: int_hnw065_armL_model
- 0x80E192B8: int_hnw065_base_model
- 0x80E19330: cKF_ckcb_r_int_hnw065_tbl
- 0x80E19338: cKF_kn_int_hnw065_tbl
- 0x80E19358: cKF_c_int_hnw065_tbl
- 0x80E1936C: cKF_ds_int_hnw065_tbl
- 0x80E1945C: cKF_ba_r_int_hnw065
- 0x80E19470: cKF_je_r_int_hnw065_tbl
- 0x80E194C4: cKF_bs_r_int_hnw065
- 0x80E194E0: int_hnw066_pal
- 0x80E19500: int_hnw066_arm_tex_txt
- 0x80E19600: int_hnw066_armtop_tex_txt
- 0x80E19680: int_hnw066_c_front_tex_txt
- 0x80E19980: int_hnw066_c_back_tex_txt
- 0x80E19B00: int_hnw066_antena_tex_txt
- 0x80E19B80: int_hnw066_b_back_tex_txt
- 0x80E19C00: int_hnw066_b_front_tex_txt
- 0x80E19D00: int_hnw066_v
- 0x80E1A1A0: int_hnw066_chest_model
- 0x80E1A298: int_hnw066_armR_model
- 0x80E1A318: int_hnw066_armL_model
- 0x80E1A398: int_hnw066_base_model
- 0x80E1A410: cKF_ckcb_r_int_hnw066_tbl
- 0x80E1A418: cKF_kn_int_hnw066_tbl
- 0x80E1A438: cKF_c_int_hnw066_tbl
- 0x80E1A44C: cKF_ds_int_hnw066_tbl
- 0x80E1A554: cKF_ba_r_int_hnw066
- 0x80E1A568: cKF_je_r_int_hnw066_tbl
- 0x80E1A5BC: cKF_bs_r_int_hnw066
- 0x80E1A5E0: int_hnw067_pal
- 0x80E1A600: int_hnw067_arm_tex_txt
- 0x80E1A700: int_hnw067_armtop_tex_txt
- 0x80E1A780: int_hnw067_c_front_tex_txt
- 0x80E1AA80: int_hnw067_c_back_tex_txt
- 0x80E1AC00: int_hnw067_antena_tex_txt
- 0x80E1AC80: int_hnw067_b_back_tex_txt
- 0x80E1AD00: int_hnw067_b_front_tex_txt
- 0x80E1AE00: int_hnw067_v
- 0x80E1B2A0: int_hnw067_chest_model
- 0x80E1B398: int_hnw067_armR_model
- 0x80E1B418: int_hnw067_armL_model
- 0x80E1B498: int_hnw067_base_model
- 0x80E1B510: cKF_ckcb_r_int_hnw067_tbl
- 0x80E1B518: cKF_kn_int_hnw067_tbl
- 0x80E1B538: cKF_c_int_hnw067_tbl
- 0x80E1B54C: cKF_ds_int_hnw067_tbl
- 0x80E1B66C: cKF_ba_r_int_hnw067
- 0x80E1B680: cKF_je_r_int_hnw067_tbl
- 0x80E1B6D4: cKF_bs_r_int_hnw067
- 0x80E1B6E0: int_hnw068_pal
- 0x80E1B700: int_hnw068_arm_tex_txt
- 0x80E1B800: int_hnw068_armtop_tex_txt
- 0x80E1B880: int_hnw068_c_front_tex_txt
- 0x80E1BB80: int_hnw068_c_back_tex_txt
- 0x80E1BD00: int_hnw068_antena_tex_txt
- 0x80E1BD80: int_hnw068_b_back_tex_txt
- 0x80E1BE00: int_hnw068_b_front_tex_txt
- 0x80E1BF00: int_hnw068_v
- 0x80E1C3A0: int_hnw068_chest_model
- 0x80E1C498: int_hnw068_armR_model
- 0x80E1C518: int_hnw068_armL_model
- 0x80E1C598: int_hnw068_base_model
- 0x80E1C610: cKF_ckcb_r_int_hnw068_tbl
- 0x80E1C618: cKF_kn_int_hnw068_tbl
- 0x80E1C638: cKF_c_int_hnw068_tbl
- 0x80E1C64C: cKF_ds_int_hnw068_tbl
- 0x80E1C724: cKF_ba_r_int_hnw068
- 0x80E1C738: cKF_je_r_int_hnw068_tbl
- 0x80E1C78C: cKF_bs_r_int_hnw068
- 0x80E1C7A0: int_hnw069_pal
- 0x80E1C7C0: int_hnw069_arm_tex_txt
- 0x80E1C8C0: int_hnw069_armtop_tex_txt
- 0x80E1C940: int_hnw069_c_front_tex_txt
- 0x80E1CC40: int_hnw069_c_back_tex_txt
- 0x80E1CDC0: int_hnw069_antena_tex_txt
- 0x80E1CE40: int_hnw069_b_back_tex_txt
- 0x80E1CEC0: int_hnw069_b_front_tex_txt
- 0x80E1CFC0: int_hnw069_v
- 0x80E1D460: int_hnw069_chest_model
- 0x80E1D558: int_hnw069_armR_model
- 0x80E1D5D8: int_hnw069_armL_model
- 0x80E1D658: int_hnw069_base_model
- 0x80E1D6E0: cKF_ckcb_r_int_hnw069_tbl
- 0x80E1D6E8: cKF_kn_int_hnw069_tbl
- 0x80E1D708: cKF_c_int_hnw069_tbl
- 0x80E1D71C: cKF_ds_int_hnw069_tbl
- 0x80E1D80C: cKF_ba_r_int_hnw069
- 0x80E1D820: cKF_je_r_int_hnw069_tbl
- 0x80E1D874: cKF_bs_r_int_hnw069
- 0x80E1D880: int_hnw070_pal
- 0x80E1D8A0: int_hnw070_arm_tex_txt
- 0x80E1D9A0: int_hnw070_armtop_tex_txt
- 0x80E1DA20: int_hnw070_c_front_tex_txt
- 0x80E1DD20: int_hnw070_c_back_tex_txt
- 0x80E1DEA0: int_hnw070_antena_tex_txt
- 0x80E1DF20: int_hnw070_b_back_tex_txt
- 0x80E1DFA0: int_hnw070_b_front_tex_txt
- 0x80E1E0A0: int_hnw070_v
- 0x80E1E540: int_hnw070_chest_model
- 0x80E1E638: int_hnw070_armR_model
- 0x80E1E6B8: int_hnw070_armL_model
- 0x80E1E738: int_hnw070_base_model
- 0x80E1E7B0: cKF_ckcb_r_int_hnw070_tbl
- 0x80E1E7B8: cKF_kn_int_hnw070_tbl
- 0x80E1E7D8: cKF_c_int_hnw070_tbl
- 0x80E1E7EC: cKF_ds_int_hnw070_tbl
- 0x80E1E8C4: cKF_ba_r_int_hnw070
- 0x80E1E8D8: cKF_je_r_int_hnw070_tbl
- 0x80E1E92C: cKF_bs_r_int_hnw070
- 0x80E1E940: int_hnw071_pal
- 0x80E1E960: int_hnw071_arm_tex_txt
- 0x80E1EA60: int_hnw071_armtop_tex_txt
- 0x80E1EAE0: int_hnw071_c_front_tex_txt
- 0x80E1EDE0: int_hnw071_c_back_tex_txt
- 0x80E1EF60: int_hnw071_antena_tex_txt
- 0x80E1EFE0: int_hnw071_b_back_tex_txt
- 0x80E1F060: int_hnw071_b_front_tex_txt
- 0x80E1F160: int_hnw071_v
- 0x80E1F600: int_hnw071_chest_model
- 0x80E1F6F8: int_hnw071_armR_model
- 0x80E1F778: int_hnw071_armL_model
- 0x80E1F7F8: int_hnw071_base_model
- 0x80E1F870: cKF_ckcb_r_int_hnw071_tbl
- 0x80E1F878: cKF_kn_int_hnw071_tbl
- 0x80E1F898: cKF_c_int_hnw071_tbl
- 0x80E1F8AC: cKF_ds_int_hnw071_tbl
- 0x80E1F984: cKF_ba_r_int_hnw071
- 0x80E1F998: cKF_je_r_int_hnw071_tbl
- 0x80E1F9EC: cKF_bs_r_int_hnw071
- 0x80E1FA00: int_hnw072_pal
- 0x80E1FA20: int_hnw072_c_front_tex_txt
- 0x80E1FD20: int_hnw072_c_back_tex_txt
- 0x80E1FEA0: int_hnw072_arm_tex_txt
- 0x80E1FFA0: int_hnw072_armtop_tex_txt
- 0x80E20020: int_hnw072_b_back_tex_txt
- 0x80E200A0: int_hnw072_b_front_tex_txt
- 0x80E201A0: int_hnw072_v
- 0x80E20610: int_hnw072_chest_model
- 0x80E20700: int_hnw072_armR_model
- 0x80E20780: int_hnw072_armL_model
- 0x80E20800: int_hnw072_base_model
- 0x80E20888: cKF_ckcb_r_int_hnw072_tbl
- 0x80E20890: cKF_kn_int_hnw072_tbl
- 0x80E208A0: cKF_c_int_hnw072_tbl
- 0x80E208C4: cKF_ds_int_hnw072_tbl
- 0x80E20BC4: cKF_ba_r_int_hnw072
- 0x80E20BD8: cKF_je_r_int_hnw072_tbl
- 0x80E20C2C: cKF_bs_r_int_hnw072
- 0x80E20C40: int_hnw073_pal
- 0x80E20C60: int_hnw073_arm_tex_txt
- 0x80E20D60: int_hnw073_armtop_tex_txt
- 0x80E20DE0: int_hnw073_c_front_tex_txt
- 0x80E210E0: int_hnw073_c_back_tex_txt
- 0x80E21260: int_hnw073_b_back_tex_txt
- 0x80E212E0: int_hnw073_b_front_tex_txt
- 0x80E213E0: int_hnw073_v
- 0x80E21850: int_hnw073_chest_model
- 0x80E21920: int_hnw073_armR_model
- 0x80E219A0: int_hnw073_armL_model
- 0x80E21A20: int_hnw073_base_model
- 0x80E21A98: cKF_ckcb_r_int_hnw073_tbl
- 0x80E21AA0: cKF_kn_int_hnw073_tbl
- 0x80E21AA8: cKF_c_int_hnw073_tbl
- 0x80E21AD4: cKF_ds_int_hnw073_tbl
- 0x80E21CB4: cKF_ba_r_int_hnw073
- 0x80E21CC8: cKF_je_r_int_hnw073_tbl
- 0x80E21D1C: cKF_bs_r_int_hnw073
- 0x80E21D40: int_hnw074_pal
- 0x80E21D60: int_hnw074_arm_tex_txt
- 0x80E21E60: int_hnw074_armtop_tex_txt
- 0x80E21EE0: int_hnw074_c_front_tex_txt
- 0x80E221E0: int_hnw074_c_back_tex_txt
- 0x80E22360: int_hnw074_b_back_tex_txt
- 0x80E223E0: int_hnw074_b_front_tex_txt
- 0x80E224E0: int_hnw074_v
- 0x80E22950: int_hnw074_chest_model
- 0x80E22A20: int_hnw074_armR_model
- 0x80E22AA0: int_hnw074_armL_model
- 0x80E22B20: int_hnw074_base_model
- 0x80E22B98: cKF_ckcb_r_int_hnw074_tbl
- 0x80E22BA0: cKF_kn_int_hnw074_tbl
- 0x80E22BA8: cKF_c_int_hnw074_tbl
- 0x80E22BD4: cKF_ds_int_hnw074_tbl
- 0x80E22DB0: cKF_ba_r_int_hnw074
- 0x80E22DC4: cKF_je_r_int_hnw074_tbl
- 0x80E22E18: cKF_bs_r_int_hnw074
- 0x80E22E20: int_hnw075_pal
- 0x80E22E40: int_hnw075_arm_tex_txt
- 0x80E22F40: int_hnw075_armtop_tex_txt
- 0x80E22FC0: int_hnw075_c_front_tex_txt
- 0x80E232C0: int_hnw075_c_back_tex_txt
- 0x80E23440: int_hnw075_b_back_tex_txt
- 0x80E234C0: int_hnw075_b_front_tex_txt
- 0x80E235C0: int_hnw075_v
- 0x80E23A30: int_hnw075_chest_model
- 0x80E23B00: int_hnw075_armR_model
- 0x80E23B80: int_hnw075_armL_model
- 0x80E23C00: int_hnw075_base_model
- 0x80E23C78: cKF_ckcb_r_int_hnw075_tbl
- 0x80E23C80: cKF_kn_int_hnw075_tbl
- 0x80E23C88: cKF_c_int_hnw075_tbl
- 0x80E23CB4: cKF_ds_int_hnw075_tbl
- 0x80E23E94: cKF_ba_r_int_hnw075
- 0x80E23EA8: cKF_je_r_int_hnw075_tbl
- 0x80E23EFC: cKF_bs_r_int_hnw075
- 0x80E23F20: int_hnw076_pal
- 0x80E23F40: int_hnw076_arm_tex_txt
- 0x80E24040: int_hnw076_armtop_tex_txt
- 0x80E240C0: int_hnw076_c_front_tex_txt
- 0x80E243C0: int_hnw076_c_back_tex_txt
- 0x80E24540: int_hnw076_b_back_tex_txt
- 0x80E245C0: int_hnw076_b_front_tex_txt
- 0x80E246C0: int_hnw076_v
- 0x80E24B30: int_hnw076_chest_model
- 0x80E24C00: int_hnw076_armR_model
- 0x80E24C80: int_hnw076_armL_model
- 0x80E24D00: int_hnw076_base_model
- 0x80E24D78: cKF_ckcb_r_int_hnw076_tbl
- 0x80E24D80: cKF_kn_int_hnw076_tbl
- 0x80E24D88: cKF_c_int_hnw076_tbl
- 0x80E24DB0: cKF_ds_int_hnw076_tbl
- 0x80E24F20: cKF_ba_r_int_hnw076
- 0x80E24F34: cKF_je_r_int_hnw076_tbl
- 0x80E24F88: cKF_bs_r_int_hnw076
- 0x80E24FA0: int_hnw077_pal
- 0x80E24FC0: int_hnw077_arm_tex_txt
- 0x80E250C0: int_hnw077_armtop_tex_txt
- 0x80E25140: int_hnw077_c_front_tex_txt
- 0x80E25440: int_hnw077_c_back_tex_txt
- 0x80E255C0: int_hnw077_b_back_tex_txt
- 0x80E25640: int_hnw077_b_front_tex_txt
- 0x80E25740: int_hnw077_v
- 0x80E25BB0: int_hnw077_chest_model
- 0x80E25C80: int_hnw077_armR_model
- 0x80E25D00: int_hnw077_armL_model
- 0x80E25D80: int_hnw077_base_model
- 0x80E25DF8: cKF_ckcb_r_int_hnw077_tbl
- 0x80E25E00: cKF_kn_int_hnw077_tbl
- 0x80E25E08: cKF_c_int_hnw077_tbl
- 0x80E25E34: cKF_ds_int_hnw077_tbl
- 0x80E260B8: cKF_ba_r_int_hnw077
- 0x80E260CC: cKF_je_r_int_hnw077_tbl
- 0x80E26120: cKF_bs_r_int_hnw077
- 0x80E26140: int_hnw078_pal
- 0x80E26160: int_hnw078_c_front_tex_txt
- 0x80E26460: int_hnw078_c_back_tex_txt
- 0x80E265E0: int_hnw078_arm_tex_txt
- 0x80E266E0: int_hnw078_armtop_tex_txt
- 0x80E26760: int_hnw078_b_back_tex_txt
- 0x80E267E0: int_hnw078_b_front_tex_txt
- 0x80E268E0: int_hnw078_v
- 0x80E26D50: int_hnw078_chest_model
- 0x80E26E40: int_hnw078_armR_model
- 0x80E26EC0: int_hnw078_armL_model
- 0x80E26F40: int_hnw078_base_model
- 0x80E26FC8: cKF_ckcb_r_int_hnw078_tbl
- 0x80E26FD0: cKF_kn_int_hnw078_tbl
- 0x80E26FD8: cKF_c_int_hnw078_tbl
- 0x80E27004: cKF_ds_int_hnw078_tbl
- 0x80E27150: cKF_ba_r_int_hnw078
- 0x80E27164: cKF_je_r_int_hnw078_tbl
- 0x80E271B8: cKF_bs_r_int_hnw078
- 0x80E271C0: int_hnw079_pal
- 0x80E271E0: int_hnw079_arm_tex_txt
- 0x80E272E0: int_hnw079_armtop_tex_txt
- 0x80E27360: int_hnw079_c_front_tex_txt
- 0x80E27660: int_hnw079_c_back_tex_txt
- 0x80E277E0: int_hnw079_b_back_tex_txt
- 0x80E27860: int_hnw079_b_front_tex_txt
- 0x80E27960: int_hnw079_v
- 0x80E27DD0: int_hnw079_chest_model
- 0x80E27EA0: int_hnw079_armR_model
- 0x80E27F20: int_hnw079_armL_model
- 0x80E27FA0: int_hnw079_base_model
- 0x80E28018: cKF_ckcb_r_int_hnw079_tbl
- 0x80E28020: cKF_kn_int_hnw079_tbl
- 0x80E28028: cKF_c_int_hnw079_tbl
- 0x80E28054: cKF_ds_int_hnw079_tbl
- 0x80E2833C: cKF_ba_r_int_hnw079
- 0x80E28350: cKF_je_r_int_hnw079_tbl
- 0x80E283A4: cKF_bs_r_int_hnw079
- 0x80E283C0: int_hnw080_pal
- 0x80E283E0: int_hnw080_arm_tex_txt
- 0x80E284E0: int_hnw080_armtop_tex_txt
- 0x80E28560: int_hnw080_c_front_tex_txt
- 0x80E28860: int_hnw080_c_back_tex_txt
- 0x80E289E0: int_hnw080_antena_tex_txt
- 0x80E28A60: int_hnw080_b_back_tex_txt
- 0x80E28AE0: int_hnw080_b_front_tex_txt
- 0x80E28BE0: int_hnw080_v
- 0x80E29080: int_hnw080_chest_model
- 0x80E29178: int_hnw080_armR_model
- 0x80E291F8: int_hnw080_armL_model
- 0x80E29278: int_hnw080_base_model
- 0x80E292F0: cKF_ckcb_r_int_hnw080_tbl
- 0x80E292F8: cKF_kn_int_hnw080_tbl
- 0x80E29300: cKF_c_int_hnw080_tbl
- 0x80E2932C: cKF_ds_int_hnw080_tbl
- 0x80E293AC: cKF_ba_r_int_hnw080
- 0x80E293C0: cKF_je_r_int_hnw080_tbl
- 0x80E29414: cKF_bs_r_int_hnw080
- 0x80E29420: int_hnw081_pal
- 0x80E29440: int_hnw081_arm_tex_txt
- 0x80E29540: int_hnw081_armtop_tex_txt
- 0x80E295C0: int_hnw081_c_front_tex_txt
- 0x80E298C0: int_hnw081_c_back_tex_txt
- 0x80E29A40: int_hnw081_antena_tex_txt
- 0x80E29AC0: int_hnw081_b_back_tex_txt
- 0x80E29B40: int_hnw081_b_front_tex_txt
- 0x80E29C40: int_hnw081_v
- 0x80E2A0E0: int_hnw081_chest_model
- 0x80E2A1D8: int_hnw081_armR_model
- 0x80E2A258: int_hnw081_armL_model
- 0x80E2A2D8: int_hnw081_base_model
- 0x80E2A350: cKF_ckcb_r_int_hnw081_tbl
- 0x80E2A358: cKF_kn_int_hnw081_tbl
- 0x80E2A360: cKF_c_int_hnw081_tbl
- 0x80E2A38C: cKF_ds_int_hnw081_tbl
- 0x80E2A40C: cKF_ba_r_int_hnw081
- 0x80E2A420: cKF_je_r_int_hnw081_tbl
- 0x80E2A474: cKF_bs_r_int_hnw081
- 0x80E2A480: int_hnw082_pal
- 0x80E2A4A0: int_hnw082_arm_tex_txt
- 0x80E2A5A0: int_hnw082_armtop_tex_txt
- 0x80E2A620: int_hnw082_c_front_tex_txt
- 0x80E2A920: int_hnw082_c_back_tex_txt
- 0x80E2AAA0: int_hnw082_antena_tex_txt
- 0x80E2AB20: int_hnw082_b_back_tex_txt
- 0x80E2ABA0: int_hnw082_b_front_tex_txt
- 0x80E2ACA0: int_hnw082_v
- 0x80E2B140: int_hnw082_chest_model
- 0x80E2B238: int_hnw082_armR_model
- 0x80E2B2B8: int_hnw082_armL_model
- 0x80E2B338: int_hnw082_base_model
- 0x80E2B3B0: cKF_ckcb_r_int_hnw082_tbl
- 0x80E2B3B8: cKF_kn_int_hnw082_tbl
- 0x80E2B3C0: cKF_c_int_hnw082_tbl
- 0x80E2B3EC: cKF_ds_int_hnw082_tbl
- 0x80E2B46C: cKF_ba_r_int_hnw082
- 0x80E2B480: cKF_je_r_int_hnw082_tbl
- 0x80E2B4D4: cKF_bs_r_int_hnw082
- 0x80E2B4E0: int_hnw083_pal
- 0x80E2B500: int_hnw083_arm_tex_txt
- 0x80E2B600: int_hnw083_armtop_tex_txt
- 0x80E2B680: int_hnw083_c_front_tex_txt
- 0x80E2B980: int_hnw083_c_back_tex_txt
- 0x80E2BB00: int_hnw083_b_back_tex_txt
- 0x80E2BB80: int_hnw083_b_front_tex_txt
- 0x80E2BC80: int_hnw083_v
- 0x80E2C0F0: int_hnw083_chest_model
- 0x80E2C1C0: int_hnw083_armR_model
- 0x80E2C240: int_hnw083_armL_model
- 0x80E2C2C0: int_hnw083_base_model
- 0x80E2C338: cKF_ckcb_r_int_hnw083_tbl
- 0x80E2C340: cKF_kn_int_hnw083_tbl
- 0x80E2C360: cKF_c_int_hnw083_tbl
- 0x80E2C374: cKF_ds_int_hnw083_tbl
- 0x80E2C4DC: cKF_ba_r_int_hnw083
- 0x80E2C4F0: cKF_je_r_int_hnw083_tbl
- 0x80E2C544: cKF_bs_r_int_hnw083
- 0x80E2C560: int_hnw084_pal
- 0x80E2C580: int_hnw084_c_front_tex_txt
- 0x80E2C880: int_hnw084_c_back_tex_txt
- 0x80E2CA00: int_hnw084_arm_tex_txt
- 0x80E2CB00: int_hnw084_armtop_tex_txt
- 0x80E2CB80: int_hnw084_b_back_tex_txt
- 0x80E2CC00: int_hnw084_b_front_tex_txt
- 0x80E2CD00: int_hnw084_v
- 0x80E2D170: int_hnw084_chest_model
- 0x80E2D260: int_hnw084_armR_model
- 0x80E2D2E0: int_hnw084_armL_model
- 0x80E2D360: int_hnw084_base_model
- 0x80E2D3E8: cKF_ckcb_r_int_hnw084_tbl
- 0x80E2D3F0: cKF_kn_int_hnw084_tbl
- 0x80E2D410: cKF_c_int_hnw084_tbl
- 0x80E2D424: cKF_ds_int_hnw084_tbl
- 0x80E2D55C: cKF_ba_r_int_hnw084
- 0x80E2D570: cKF_je_r_int_hnw084_tbl
- 0x80E2D5C4: cKF_bs_r_int_hnw084
- 0x80E2D5E0: int_hnw085_pal
- 0x80E2D600: int_hnw085_arm_tex_txt
- 0x80E2D700: int_hnw085_armtop_tex_txt
- 0x80E2D780: int_hnw085_c_front_tex_txt
- 0x80E2DA80: int_hnw085_c_back_tex_txt
- 0x80E2DC00: int_hnw085_b_back_tex_txt
- 0x80E2DC80: int_hnw085_b_front_tex_txt
- 0x80E2DD80: int_hnw085_v
- 0x80E2E1F0: int_hnw085_chest_model
- 0x80E2E2C0: int_hnw085_armR_model
- 0x80E2E340: int_hnw085_armL_model
- 0x80E2E3C0: int_hnw085_base_model
- 0x80E2E438: cKF_ckcb_r_int_hnw085_tbl
- 0x80E2E440: cKF_kn_int_hnw085_tbl
- 0x80E2E460: cKF_c_int_hnw085_tbl
- 0x80E2E474: cKF_ds_int_hnw085_tbl
- 0x80E2E594: cKF_ba_r_int_hnw085
- 0x80E2E5A8: cKF_je_r_int_hnw085_tbl
- 0x80E2E5FC: cKF_bs_r_int_hnw085
- 0x80E2E620: int_hnw086_pal
- 0x80E2E640: int_hnw086_arm_tex_txt
- 0x80E2E740: int_hnw086_armtop_tex_txt
- 0x80E2E7C0: int_hnw086_c_front_tex_txt
- 0x80E2EAC0: int_hnw086_c_back_tex_txt
- 0x80E2EC40: int_hnw086_b_back_tex_txt
- 0x80E2ECC0: int_hnw086_b_front_tex_txt
- 0x80E2EDC0: int_hnw086_v
- 0x80E2F230: int_hnw086_chest_model
- 0x80E2F300: int_hnw086_armR_model
- 0x80E2F380: int_hnw086_armL_model
- 0x80E2F400: int_hnw086_base_model
- 0x80E2F478: cKF_ckcb_r_int_hnw086_tbl
- 0x80E2F480: cKF_kn_int_hnw086_tbl
- 0x80E2F4A0: cKF_c_int_hnw086_tbl
- 0x80E2F4B4: cKF_ds_int_hnw086_tbl
- 0x80E2F5A0: cKF_ba_r_int_hnw086
- 0x80E2F5B4: cKF_je_r_int_hnw086_tbl
- 0x80E2F608: cKF_bs_r_int_hnw086
- 0x80E2F620: int_hnw087_pal
- 0x80E2F640: int_hnw087_arm_tex_txt
- 0x80E2F740: int_hnw087_armtop_tex_txt
- 0x80E2F7C0: int_hnw087_c_front_tex_txt
- 0x80E2FAC0: int_hnw087_c_back_tex_txt
- 0x80E2FC40: int_hnw087_b_back_tex_txt
- 0x80E2FCC0: int_hnw087_b_front_tex_txt
- 0x80E2FDC0: int_hnw087_v
- 0x80E30230: int_hnw087_chest_model
- 0x80E30300: int_hnw087_armR_model
- 0x80E30380: int_hnw087_armL_model
- 0x80E30400: int_hnw087_base_model
- 0x80E30478: cKF_ckcb_r_int_hnw087_tbl
- 0x80E30480: cKF_kn_int_hnw087_tbl
- 0x80E304A0: cKF_c_int_hnw087_tbl
- 0x80E304B4: cKF_ds_int_hnw087_tbl
- 0x80E3057C: cKF_ba_r_int_hnw087
- 0x80E30590: cKF_je_r_int_hnw087_tbl
- 0x80E305E4: cKF_bs_r_int_hnw087
- 0x80E30600: int_hnw088_pal
- 0x80E30620: int_hnw088_arm_tex_txt
- 0x80E30720: int_hnw088_armtop_tex_txt
- 0x80E307A0: int_hnw088_c_front_tex_txt
- 0x80E30AA0: int_hnw088_c_back_tex_txt
- 0x80E30C20: int_hnw088_b_back_tex_txt
- 0x80E30CA0: int_hnw088_b_front_tex_txt
- 0x80E30DA0: int_hnw088_v
- 0x80E31210: int_hnw088_chest_model
- 0x80E312E0: int_hnw088_armR_model
- 0x80E31360: int_hnw088_armL_model
- 0x80E313E0: int_hnw088_base_model
- 0x80E31458: cKF_ckcb_r_int_hnw088_tbl
- 0x80E31460: cKF_kn_int_hnw088_tbl
- 0x80E31480: cKF_c_int_hnw088_tbl
- 0x80E31494: cKF_ds_int_hnw088_tbl
- 0x80E315B4: cKF_ba_r_int_hnw088
- 0x80E315C8: cKF_je_r_int_hnw088_tbl
- 0x80E3161C: cKF_bs_r_int_hnw088
- 0x80E31640: int_hnw089_pal
- 0x80E31660: int_hnw089_arm_tex_txt
- 0x80E31760: int_hnw089_armtop_tex_txt
- 0x80E317E0: int_hnw089_c_front_tex_txt
- 0x80E31AE0: int_hnw089_c_back_tex_txt
- 0x80E31C60: int_hnw089_b_back_tex_txt
- 0x80E31CE0: int_hnw089_b_front_tex_txt
- 0x80E31DE0: int_hnw089_v
- 0x80E32250: int_hnw089_chest_model
- 0x80E32320: int_hnw089_armR_model
- 0x80E323A0: int_hnw089_armL_model
- 0x80E32420: int_hnw089_base_model
- 0x80E32498: cKF_ckcb_r_int_hnw089_tbl
- 0x80E324A0: cKF_kn_int_hnw089_tbl
- 0x80E324C0: cKF_c_int_hnw089_tbl
- 0x80E324D4: cKF_ds_int_hnw089_tbl
- 0x80E325F4: cKF_ba_r_int_hnw089
- 0x80E32608: cKF_je_r_int_hnw089_tbl
- 0x80E3265C: cKF_bs_r_int_hnw089
- 0x80E32680: int_hnw090_pal
- 0x80E326A0: int_hnw090_arm_tex_txt
- 0x80E327A0: int_hnw090_armtop_tex_txt
- 0x80E32820: int_hnw090_c_front_tex_txt
- 0x80E32B20: int_hnw090_c_back_tex_txt
- 0x80E32CA0: int_hnw090_b_back_tex_txt
- 0x80E32D20: int_hnw090_b_front_tex_txt
- 0x80E32E20: int_hnw090_v
- 0x80E33290: int_hnw090_chest_model
- 0x80E33360: int_hnw090_armR_model
- 0x80E333E0: int_hnw090_armL_model
- 0x80E33460: int_hnw090_base_model
- 0x80E334D8: cKF_ckcb_r_int_hnw090_tbl
- 0x80E334E0: cKF_kn_int_hnw090_tbl
- 0x80E33500: cKF_c_int_hnw090_tbl
- 0x80E33514: cKF_ds_int_hnw090_tbl
- 0x80E33670: cKF_ba_r_int_hnw090
- 0x80E33684: cKF_je_r_int_hnw090_tbl
- 0x80E336D8: cKF_bs_r_int_hnw090
- 0x80E336E0: int_hnw091_pal
- 0x80E33700: int_hnw091_c_front_tex_txt
- 0x80E33A00: int_hnw091_c_back_tex_txt
- 0x80E33B80: int_hnw091_arm_tex_txt
- 0x80E33C80: int_hnw091_armtop_tex_txt
- 0x80E33D00: int_hnw091_b_back_tex_txt
- 0x80E33D80: int_hnw091_b_front_tex_txt
- 0x80E33E80: int_hnw091_v
- 0x80E342F0: int_hnw091_chest_model
- 0x80E343E0: int_hnw091_armR_model
- 0x80E34460: int_hnw091_armL_model
- 0x80E344E0: int_hnw091_base_model
- 0x80E34568: cKF_ckcb_r_int_hnw091_tbl
- 0x80E34570: cKF_kn_int_hnw091_tbl
- 0x80E34590: cKF_c_int_hnw091_tbl
- 0x80E345A4: cKF_ds_int_hnw091_tbl
- 0x80E34730: cKF_ba_r_int_hnw091
- 0x80E34744: cKF_je_r_int_hnw091_tbl
- 0x80E34798: cKF_bs_r_int_hnw091
- 0x80E347A0: int_hnw092_pal
- 0x80E347C0: int_hnw092_arm_tex_txt
- 0x80E348C0: int_hnw092_armtop_tex_txt
- 0x80E34940: int_hnw092_c_front_tex_txt
- 0x80E34C40: int_hnw092_c_back_tex_txt
- 0x80E34DC0: int_hnw092_b_back_tex_txt
- 0x80E34E40: int_hnw092_b_front_tex_txt
- 0x80E34F40: int_hnw092_v
- 0x80E353B0: int_hnw092_chest_model
- 0x80E35480: int_hnw092_armR_model
- 0x80E35500: int_hnw092_armL_model
- 0x80E35580: int_hnw092_base_model
- 0x80E355F8: cKF_ckcb_r_int_hnw092_tbl
- 0x80E35600: cKF_kn_int_hnw092_tbl
- 0x80E35620: cKF_c_int_hnw092_tbl
- 0x80E35634: cKF_ds_int_hnw092_tbl
- 0x80E357FC: cKF_ba_r_int_hnw092
- 0x80E35810: cKF_je_r_int_hnw092_tbl
- 0x80E35864: cKF_bs_r_int_hnw092
- 0x80E35880: int_hnw093_pal
- 0x80E358A0: int_hnw093_arm_tex_txt
- 0x80E359A0: int_hnw093_armtop_tex_txt
- 0x80E35A20: int_hnw093_c_front_tex_txt
- 0x80E35D20: int_hnw093_c_back_tex_txt
- 0x80E35EA0: int_hnw093_antena_tex_txt
- 0x80E35F20: int_hnw093_b_back_tex_txt
- 0x80E35FA0: int_hnw093_b_front_tex_txt
- 0x80E360A0: int_hnw093_v
- 0x80E36540: int_hnw093_chest_model
- 0x80E36638: int_hnw093_armR_model
- 0x80E366B8: int_hnw093_armL_model
- 0x80E36738: int_hnw093_base_model
- 0x80E367B0: cKF_ckcb_r_int_hnw093_tbl
- 0x80E367B8: cKF_kn_int_hnw093_tbl
- 0x80E367D8: cKF_c_int_hnw093_tbl
- 0x80E367EC: cKF_ds_int_hnw093_tbl
- 0x80E36948: cKF_ba_r_int_hnw093
- 0x80E3695C: cKF_je_r_int_hnw093_tbl
- 0x80E369B0: cKF_bs_r_int_hnw093
- 0x80E369C0: int_hnw094_pal
- 0x80E369E0: int_hnw094_arm_tex_txt
- 0x80E36AE0: int_hnw094_armtop_tex_txt
- 0x80E36B60: int_hnw094_c_front_tex_txt
- 0x80E36E60: int_hnw094_c_back_tex_txt
- 0x80E36FE0: int_hnw094_antena_tex_txt
- 0x80E37060: int_hnw094_b_back_tex_txt
- 0x80E370E0: int_hnw094_b_front_tex_txt
- 0x80E371E0: int_hnw094_v
- 0x80E37680: int_hnw094_chest_model
- 0x80E37778: int_hnw094_armR_model
- 0x80E377F8: int_hnw094_armL_model
- 0x80E37878: int_hnw094_base_model
- 0x80E378F0: cKF_ckcb_r_int_hnw094_tbl
- 0x80E378F8: cKF_kn_int_hnw094_tbl
- 0x80E37918: cKF_c_int_hnw094_tbl
- 0x80E3792C: cKF_ds_int_hnw094_tbl
- 0x80E37A34: cKF_ba_r_int_hnw094
- 0x80E37A48: cKF_je_r_int_hnw094_tbl
- 0x80E37A9C: cKF_bs_r_int_hnw094
- 0x80E37AC0: int_hnw095_pal
- 0x80E37AE0: int_hnw095_arm_tex_txt
- 0x80E37BE0: int_hnw095_armtop_tex_txt
- 0x80E37C60: int_hnw095_c_front_tex_txt
- 0x80E37F60: int_hnw095_c_back_tex_txt
- 0x80E380E0: int_hnw095_antena_tex_txt
- 0x80E38160: int_hnw095_b_back_tex_txt
- 0x80E381E0: int_hnw095_b_front_tex_txt
- 0x80E382E0: int_hnw095_v
- 0x80E38780: int_hnw095_chest_model
- 0x80E38878: int_hnw095_armR_model
- 0x80E388F8: int_hnw095_armL_model
- 0x80E38978: int_hnw095_base_model
- 0x80E389F0: cKF_ckcb_r_int_hnw095_tbl
- 0x80E389F8: cKF_kn_int_hnw095_tbl
- 0x80E38A18: cKF_c_int_hnw095_tbl
- 0x80E38A2C: cKF_ds_int_hnw095_tbl
- 0x80E38B1C: cKF_ba_r_int_hnw095
- 0x80E38B30: cKF_je_r_int_hnw095_tbl
- 0x80E38B84: cKF_bs_r_int_hnw095
- 0x80E38BA0: int_hnw096_pal
- 0x80E38BC0: int_hnw096_arm_tex_txt
- 0x80E38CC0: int_hnw096_armtop_tex_txt
- 0x80E38D40: int_hnw096_c_front_tex_txt
- 0x80E39040: int_hnw096_c_back_tex_txt
- 0x80E391C0: int_hnw096_antena_tex_txt
- 0x80E39240: int_hnw096_b_back_tex_txt
- 0x80E392C0: int_hnw096_b_front_tex_txt
- 0x80E393C0: int_hnw096_v
- 0x80E39860: int_hnw096_chest_model
- 0x80E39958: int_hnw096_armR_model
- 0x80E399D8: int_hnw096_armL_model
- 0x80E39A58: int_hnw096_base_model
- 0x80E39AD0: cKF_ckcb_r_int_hnw096_tbl
- 0x80E39AD8: cKF_kn_int_hnw096_tbl
- 0x80E39AF8: cKF_c_int_hnw096_tbl
- 0x80E39B0C: cKF_ds_int_hnw096_tbl
- 0x80E39C08: cKF_ba_r_int_hnw096
- 0x80E39C1C: cKF_je_r_int_hnw096_tbl
- 0x80E39C70: cKF_bs_r_int_hnw096
- 0x80E39C80: int_hnw097_pal
- 0x80E39CA0: int_hnw097_arm_tex_txt
- 0x80E39DA0: int_hnw097_armtop_tex_txt
- 0x80E39E20: int_hnw097_c_front_tex_txt
- 0x80E3A120: int_hnw097_c_back_tex_txt
- 0x80E3A2A0: int_hnw097_antena_tex_txt
- 0x80E3A320: int_hnw097_b_back_tex_txt
- 0x80E3A3A0: int_hnw097_b_front_tex_txt
- 0x80E3A4A0: int_hnw097_v
- 0x80E3A940: int_hnw097_chest_model
- 0x80E3AA38: int_hnw097_armR_model
- 0x80E3AAB8: int_hnw097_armL_model
- 0x80E3AB38: int_hnw097_base_model
- 0x80E3ABB0: cKF_ckcb_r_int_hnw097_tbl
- 0x80E3ABB8: cKF_kn_int_hnw097_tbl
- 0x80E3ABD8: cKF_c_int_hnw097_tbl
- 0x80E3ABEC: cKF_ds_int_hnw097_tbl
- 0x80E3ACD0: cKF_ba_r_int_hnw097
- 0x80E3ACE4: cKF_je_r_int_hnw097_tbl
- 0x80E3AD38: cKF_bs_r_int_hnw097
- 0x80E3AD40: int_hnw098_pal
- 0x80E3AD60: int_hnw098_arm_tex_txt
- 0x80E3AE60: int_hnw098_armtop_tex_txt
- 0x80E3AEE0: int_hnw098_c_front_tex_txt
- 0x80E3B1E0: int_hnw098_c_back_tex_txt
- 0x80E3B360: int_hnw098_b_back_tex_txt
- 0x80E3B3E0: int_hnw098_b_front_tex_txt
- 0x80E3B4E0: int_hnw098_v
- 0x80E3B950: int_hnw098_chest_model
- 0x80E3BA20: int_hnw098_armR_model
- 0x80E3BAA0: int_hnw098_armL_model
- 0x80E3BB20: int_hnw098_base_model
- 0x80E3BB98: cKF_ckcb_r_int_hnw098_tbl
- 0x80E3BBA0: cKF_kn_int_hnw098_tbl
- 0x80E3BBC0: cKF_c_int_hnw098_tbl
- 0x80E3BBD4: cKF_ds_int_hnw098_tbl
- 0x80E3BCDC: cKF_ba_r_int_hnw098
- 0x80E3BCF0: cKF_je_r_int_hnw098_tbl
- 0x80E3BD44: cKF_bs_r_int_hnw098
- 0x80E3BD60: int_hnw099_pal
- 0x80E3BD80: int_hnw099_c_front_tex_txt
- 0x80E3C080: int_hnw099_c_back_tex_txt
- 0x80E3C200: int_hnw099_arm_tex_txt
- 0x80E3C300: int_hnw099_armtop_tex_txt
- 0x80E3C380: int_hnw099_b_back_tex_txt
- 0x80E3C400: int_hnw099_b_front_tex_txt
- 0x80E3C500: int_hnw099_v
- 0x80E3C970: int_hnw099_chest_model
- 0x80E3CA60: int_hnw099_armR_model
- 0x80E3CAE0: int_hnw099_armL_model
- 0x80E3CB60: int_hnw099_base_model
- 0x80E3CBE8: cKF_ckcb_r_int_hnw099_tbl
- 0x80E3CBF0: cKF_kn_int_hnw099_tbl
- 0x80E3CC10: cKF_c_int_hnw099_tbl
- 0x80E3CC24: cKF_ds_int_hnw099_tbl
- 0x80E3CD20: cKF_ba_r_int_hnw099
- 0x80E3CD34: cKF_je_r_int_hnw099_tbl
- 0x80E3CD88: cKF_bs_r_int_hnw099
- 0x80E3CDA0: int_hnw100_pal
- 0x80E3CDC0: int_hnw100_arm_tex_txt
- 0x80E3CEC0: int_hnw100_armtop_tex_txt
- 0x80E3CF40: int_hnw100_c_front_tex_txt
- 0x80E3D240: int_hnw100_c_back_tex_txt
- 0x80E3D3C0: int_hnw100_b_back_tex_txt
- 0x80E3D440: int_hnw100_b_front_tex_txt
- 0x80E3D540: int_hnw100_v
- 0x80E3D9B0: int_hnw100_chest_model
- 0x80E3DA80: int_hnw100_armR_model
- 0x80E3DB00: int_hnw100_armL_model
- 0x80E3DB80: int_hnw100_base_model
- 0x80E3DBF8: cKF_ckcb_r_int_hnw100_tbl
- 0x80E3DC00: cKF_kn_int_hnw100_tbl
- 0x80E3DC20: cKF_c_int_hnw100_tbl
- 0x80E3DC34: cKF_ds_int_hnw100_tbl
- 0x80E3DD3C: cKF_ba_r_int_hnw100
- 0x80E3DD50: cKF_je_r_int_hnw100_tbl
- 0x80E3DDA4: cKF_bs_r_int_hnw100
- 0x80E3DDC0: int_hnw101_pal
- 0x80E3DDE0: int_hnw101_arm_tex_txt
- 0x80E3DEE0: int_hnw101_armtop_tex_txt
- 0x80E3DF60: int_hnw101_c_front_tex_txt
- 0x80E3E260: int_hnw101_c_back_tex_txt
- 0x80E3E3E0: int_hnw101_antena_tex_txt
- 0x80E3E460: int_hnw101_b_back_tex_txt
- 0x80E3E4E0: int_hnw101_b_front_tex_txt
- 0x80E3E5E0: int_hnw101_v
- 0x80E3EA80: int_hnw101_chest_model
- 0x80E3EB78: int_hnw101_armR_model
- 0x80E3EBF8: int_hnw101_armL_model
- 0x80E3EC78: int_hnw101_base_model
- 0x80E3ECF0: cKF_ckcb_r_int_hnw101_tbl
- 0x80E3ECF8: cKF_kn_int_hnw101_tbl
- 0x80E3ED18: cKF_c_int_hnw101_tbl
- 0x80E3ED2C: cKF_ds_int_hnw101_tbl
- 0x80E3EE00: cKF_ba_r_int_hnw101
- 0x80E3EE14: cKF_je_r_int_hnw101_tbl
- 0x80E3EE68: cKF_bs_r_int_hnw101
- 0x80E3EE80: int_hnw102_pal
- 0x80E3EEA0: int_hnw102_arm_tex_txt
- 0x80E3EFA0: int_hnw102_armtop_tex_txt
- 0x80E3F020: int_hnw102_c_front_tex_txt
- 0x80E3F320: int_hnw102_c_back_tex_txt
- 0x80E3F4A0: int_hnw102_antena_tex_txt
- 0x80E3F520: int_hnw102_b_back_tex_txt
- 0x80E3F5A0: int_hnw102_b_front_tex_txt
- 0x80E3F6A0: int_hnw102_v
- 0x80E3FB40: int_hnw102_chest_model
- 0x80E3FC38: int_hnw102_armR_model
- 0x80E3FCB8: int_hnw102_armL_model
- 0x80E3FD38: int_hnw102_base_model
- 0x80E3FDB0: cKF_ckcb_r_int_hnw102_tbl
- 0x80E3FDB8: cKF_kn_int_hnw102_tbl
- 0x80E3FDD8: cKF_c_int_hnw102_tbl
- 0x80E3FDEC: cKF_ds_int_hnw102_tbl
- 0x80E3FED8: cKF_ba_r_int_hnw102
- 0x80E3FEEC: cKF_je_r_int_hnw102_tbl
- 0x80E3FF40: cKF_bs_r_int_hnw102
- 0x80E3FF60: int_hnw103_pal
- 0x80E3FF80: int_hnw103_arm_tex_txt
- 0x80E40080: int_hnw103_armtop_tex_txt
- 0x80E40100: int_hnw103_c_front_tex_txt
- 0x80E40400: int_hnw103_c_back_tex_txt
- 0x80E40580: int_hnw103_antena_tex_txt
- 0x80E40600: int_hnw103_b_back_tex_txt
- 0x80E40680: int_hnw103_b_front_tex_txt
- 0x80E40780: int_hnw103_v
- 0x80E40C20: int_hnw103_chest_model
- 0x80E40D18: int_hnw103_armR_model
- 0x80E40D98: int_hnw103_armL_model
- 0x80E40E18: int_hnw103_base_model
- 0x80E40E90: cKF_ckcb_r_int_hnw103_tbl
- 0x80E40E98: cKF_kn_int_hnw103_tbl
- 0x80E40EB8: cKF_c_int_hnw103_tbl
- 0x80E40ECC: cKF_ds_int_hnw103_tbl
- 0x80E40FB8: cKF_ba_r_int_hnw103
- 0x80E40FCC: cKF_je_r_int_hnw103_tbl
- 0x80E41020: cKF_bs_r_int_hnw103
- 0x80E41040: int_hnw104_pal
- 0x80E41060: int_hnw104_arm_tex_txt
- 0x80E41160: int_hnw104_armtop_tex_txt
- 0x80E411E0: int_hnw104_c_front_tex_txt
- 0x80E414E0: int_hnw104_c_back_tex_txt
- 0x80E41660: int_hnw104_antena_tex_txt
- 0x80E416E0: int_hnw104_b_back_tex_txt
- 0x80E41760: int_hnw104_b_front_tex_txt
- 0x80E41860: int_hnw104_v
- 0x80E41D00: int_hnw104_chest_model
- 0x80E41DF8: int_hnw104_armR_model
- 0x80E41E78: int_hnw104_armL_model
- 0x80E41EF8: int_hnw104_base_model
- 0x80E41F70: cKF_ckcb_r_int_hnw104_tbl
- 0x80E41F78: cKF_kn_int_hnw104_tbl
- 0x80E41F98: cKF_c_int_hnw104_tbl
- 0x80E41FAC: cKF_ds_int_hnw104_tbl
- 0x80E42098: cKF_ba_r_int_hnw104
- 0x80E420AC: cKF_je_r_int_hnw104_tbl
- 0x80E42100: cKF_bs_r_int_hnw104
- 0x80E42120: int_hnw105_pal
- 0x80E42140: int_hnw105_arm_tex_txt
- 0x80E42240: int_hnw105_armtop_tex_txt
- 0x80E422C0: int_hnw105_c_front_tex_txt
- 0x80E425C0: int_hnw105_c_back_tex_txt
- 0x80E42740: int_hnw105_b_back_tex_txt
- 0x80E427C0: int_hnw105_b_front_tex_txt
- 0x80E428C0: int_hnw105_v
- 0x80E42D30: int_hnw105_chest_model
- 0x80E42E00: int_hnw105_armR_model
- 0x80E42E80: int_hnw105_armL_model
- 0x80E42F00: int_hnw105_base_model
- 0x80E42F78: cKF_ckcb_r_int_hnw105_tbl
- 0x80E42F80: cKF_kn_int_hnw105_tbl
- 0x80E42F94: cKF_c_int_hnw105_tbl
- 0x80E42FB0: cKF_ds_int_hnw105_tbl
- 0x80E43088: cKF_ba_r_int_hnw105
- 0x80E4309C: cKF_je_r_int_hnw105_tbl
- 0x80E430F0: cKF_bs_r_int_hnw105
- 0x80E43100: int_hnw106_pal
- 0x80E43120: int_hnw106_arm_tex_txt
- 0x80E43220: int_hnw106_armtop_tex_txt
- 0x80E432A0: int_hnw106_c_front_tex_txt
- 0x80E435A0: int_hnw106_c_back_tex_txt
- 0x80E43720: int_hnw106_b_back_tex_txt
- 0x80E437A0: int_hnw106_b_front_tex_txt
- 0x80E438A0: int_hnw106_v
- 0x80E43D10: int_hnw106_chest_model
- 0x80E43DE0: int_hnw106_armR_model
- 0x80E43E60: int_hnw106_armL_model
- 0x80E43EE0: int_hnw106_base_model
- 0x80E43F58: cKF_ckcb_r_int_hnw106_tbl
- 0x80E43F60: cKF_kn_int_hnw106_tbl
- 0x80E43F74: cKF_c_int_hnw106_tbl
- 0x80E43F90: cKF_ds_int_hnw106_tbl
- 0x80E44064: cKF_ba_r_int_hnw106
- 0x80E44078: cKF_je_r_int_hnw106_tbl
- 0x80E440CC: cKF_bs_r_int_hnw106
- 0x80E440E0: int_hnw107_pal
- 0x80E44100: int_hnw107_c_front_tex_txt
- 0x80E44400: int_hnw107_c_back_tex_txt
- 0x80E44580: int_hnw107_arm_tex_txt
- 0x80E44680: int_hnw107_armtop_tex_txt
- 0x80E44700: int_hnw107_b_back_tex_txt
- 0x80E44780: int_hnw107_b_front_tex_txt
- 0x80E44880: int_hnw107_v
- 0x80E44CF0: int_hnw107_chest_model
- 0x80E44DE0: int_hnw107_armR_model
- 0x80E44E60: int_hnw107_armL_model
- 0x80E44EE0: int_hnw107_base_model
- 0x80E44F68: cKF_ckcb_r_int_hnw107_tbl
- 0x80E44F70: cKF_kn_int_hnw107_tbl
- 0x80E44F8C: cKF_c_int_hnw107_tbl
- 0x80E44FA0: cKF_ds_int_hnw107_tbl
- 0x80E450BC: cKF_ba_r_int_hnw107
- 0x80E450D0: cKF_je_r_int_hnw107_tbl
- 0x80E45124: cKF_bs_r_int_hnw107
- 0x80E45140: int_hnw108_pal
- 0x80E45160: int_hnw108_arm_tex_txt
- 0x80E45260: int_hnw108_armtop_tex_txt
- 0x80E452E0: int_hnw108_c_front_tex_txt
- 0x80E455E0: int_hnw108_c_back_tex_txt
- 0x80E45760: int_hnw108_b_back_tex_txt
- 0x80E457E0: int_hnw108_b_front_tex_txt
- 0x80E458E0: int_hnw108_v
- 0x80E45D50: int_hnw108_chest_model
- 0x80E45E20: int_hnw108_armR_model
- 0x80E45EA0: int_hnw108_armL_model
- 0x80E45F20: int_hnw108_base_model
- 0x80E45F98: cKF_ckcb_r_int_hnw108_tbl
- 0x80E45FA0: cKF_kn_int_hnw108_tbl
- 0x80E45FBC: cKF_c_int_hnw108_tbl
- 0x80E45FD4: cKF_ds_int_hnw108_tbl
- 0x80E460DC: cKF_ba_r_int_hnw108
- 0x80E460F0: cKF_je_r_int_hnw108_tbl
- 0x80E46144: cKF_bs_r_int_hnw108
- 0x80E46160: int_hnw109_pal
- 0x80E46180: int_hnw109_arm_tex_txt
- 0x80E46280: int_hnw109_armtop_tex_txt
- 0x80E46300: int_hnw109_c_front_tex_txt
- 0x80E46600: int_hnw109_c_back_tex_txt
- 0x80E46780: int_hnw109_b_back_tex_txt
- 0x80E46800: int_hnw109_b_front_tex_txt
- 0x80E46900: int_hnw109_v
- 0x80E46D70: int_hnw109_chest_model
- 0x80E46E40: int_hnw109_armR_model
- 0x80E46EC0: int_hnw109_armL_model
- 0x80E46F40: int_hnw109_base_model
- 0x80E46FB8: cKF_ckcb_r_int_hnw109_tbl
- 0x80E46FC0: cKF_kn_int_hnw109_tbl
- 0x80E46FD4: cKF_c_int_hnw109_tbl
- 0x80E46FF4: cKF_ds_int_hnw109_tbl
- 0x80E47074: cKF_ba_r_int_hnw109
- 0x80E47088: cKF_je_r_int_hnw109_tbl
- 0x80E470DC: cKF_bs_r_int_hnw109
- 0x80E47100: int_hnw110_pal
- 0x80E47120: int_hnw110_arm_tex_txt
- 0x80E47220: int_hnw110_armtop_tex_txt
- 0x80E472A0: int_hnw110_c_front_tex_txt
- 0x80E475A0: int_hnw110_c_back_tex_txt
- 0x80E47720: int_hnw110_b_back_tex_txt
- 0x80E477A0: int_hnw110_b_front_tex_txt
- 0x80E478A0: int_hnw110_v
- 0x80E47D10: int_hnw110_chest_model
- 0x80E47DE0: int_hnw110_armR_model
- 0x80E47E60: int_hnw110_armL_model
- 0x80E47EE0: int_hnw110_base_model
- 0x80E47F58: cKF_ckcb_r_int_hnw110_tbl
- 0x80E47F60: cKF_kn_int_hnw110_tbl
- 0x80E47F80: cKF_c_int_hnw110_tbl
- 0x80E47F94: cKF_ds_int_hnw110_tbl
- 0x80E48080: cKF_ba_r_int_hnw110
- 0x80E48094: cKF_je_r_int_hnw110_tbl
- 0x80E480E8: cKF_bs_r_int_hnw110
- 0x80E48100: int_hnw111_pal
- 0x80E48120: int_hnw111_c_front_tex_txt
- 0x80E48420: int_hnw111_c_back_tex_txt
- 0x80E485A0: int_hnw111_arm_tex_txt
- 0x80E486A0: int_hnw111_armtop_tex_txt
- 0x80E48720: int_hnw111_b_back_tex_txt
- 0x80E487A0: int_hnw111_b_front_tex_txt
- 0x80E488A0: int_hnw111_v
- 0x80E48D10: int_hnw111_chest_model
- 0x80E48E00: int_hnw111_armR_model
- 0x80E48E80: int_hnw111_armL_model
- 0x80E48F00: int_hnw111_base_model
- 0x80E48F88: cKF_ckcb_r_int_hnw111_tbl
- 0x80E48F90: cKF_kn_int_hnw111_tbl
- 0x80E48FA4: cKF_c_int_hnw111_tbl
- 0x80E48FC4: cKF_ds_int_hnw111_tbl
- 0x80E49050: cKF_ba_r_int_hnw111
- 0x80E49064: cKF_je_r_int_hnw111_tbl
- 0x80E490B8: cKF_bs_r_int_hnw111
- 0x80E490C0: int_hnw112_pal
- 0x80E490E0: int_hnw112_arm_tex_txt
- 0x80E491E0: int_hnw112_armtop_tex_txt
- 0x80E49260: int_hnw112_c_front_tex_txt
- 0x80E49560: int_hnw112_c_back_tex_txt
- 0x80E496E0: int_hnw112_b_back_tex_txt
- 0x80E49760: int_hnw112_b_front_tex_txt
- 0x80E49860: int_hnw112_v
- 0x80E49CD0: int_hnw112_chest_model
- 0x80E49DA0: int_hnw112_armR_model
- 0x80E49E20: int_hnw112_armL_model
- 0x80E49EA0: int_hnw112_base_model
- 0x80E49F18: cKF_ckcb_r_int_hnw112_tbl
- 0x80E49F20: cKF_kn_int_hnw112_tbl
- 0x80E49F34: cKF_c_int_hnw112_tbl
- 0x80E49F54: cKF_ds_int_hnw112_tbl
- 0x80E49FD4: cKF_ba_r_int_hnw112
- 0x80E49FE8: cKF_je_r_int_hnw112_tbl
- 0x80E4A03C: cKF_bs_r_int_hnw112
- 0x80E4A060: int_hnw113_pal
- 0x80E4A080: int_hnw113_arm_tex_txt
- 0x80E4A180: int_hnw113_armtop_tex_txt
- 0x80E4A200: int_hnw113_c_front_tex_txt
- 0x80E4A500: int_hnw113_c_back_tex_txt
- 0x80E4A680: int_hnw113_antena_tex_txt
- 0x80E4A700: int_hnw113_b_back_tex_txt
- 0x80E4A780: int_hnw113_b_front_tex_txt
- 0x80E4A880: int_hnw113_v
- 0x80E4AD20: int_hnw113_chest_model
- 0x80E4AE18: int_hnw113_armR_model
- 0x80E4AE98: int_hnw113_armL_model
- 0x80E4AF18: int_hnw113_base_model
- 0x80E4AF90: cKF_ckcb_r_int_hnw113_tbl
- 0x80E4AF98: cKF_kn_int_hnw113_tbl
- 0x80E4AFB8: cKF_c_int_hnw113_tbl
- 0x80E4AFCC: cKF_ds_int_hnw113_tbl
- 0x80E4B124: cKF_ba_r_int_hnw113
- 0x80E4B138: cKF_je_r_int_hnw113_tbl
- 0x80E4B18C: cKF_bs_r_int_hnw113
- 0x80E4B1A0: int_hnw114_pal
- 0x80E4B1C0: int_hnw114_arm_tex_txt
- 0x80E4B2C0: int_hnw114_armtop_tex_txt
- 0x80E4B340: int_hnw114_c_front_tex_txt
- 0x80E4B640: int_hnw114_c_back_tex_txt
- 0x80E4B7C0: int_hnw114_antena_tex_txt
- 0x80E4B840: int_hnw114_b_back_tex_txt
- 0x80E4B8C0: int_hnw114_b_front_tex_txt
- 0x80E4B9C0: int_hnw114_v
- 0x80E4BE60: int_hnw114_chest_model
- 0x80E4BF58: int_hnw114_armR_model
- 0x80E4BFD8: int_hnw114_armL_model
- 0x80E4C058: int_hnw114_base_model
- 0x80E4C0D0: cKF_ckcb_r_int_hnw114_tbl
- 0x80E4C0D8: cKF_kn_int_hnw114_tbl
- 0x80E4C0F8: cKF_c_int_hnw114_tbl
- 0x80E4C10C: cKF_ds_int_hnw114_tbl
- 0x80E4C27C: cKF_ba_r_int_hnw114
- 0x80E4C290: cKF_je_r_int_hnw114_tbl
- 0x80E4C2E4: cKF_bs_r_int_hnw114
- 0x80E4C300: int_hnw115_pal
- 0x80E4C320: int_hnw115_arm_tex_txt
- 0x80E4C420: int_hnw115_armtop_tex_txt
- 0x80E4C4A0: int_hnw115_c_front_tex_txt
- 0x80E4C7A0: int_hnw115_c_back_tex_txt
- 0x80E4C920: int_hnw115_antena_tex_txt
- 0x80E4C9A0: int_hnw115_b_back_tex_txt
- 0x80E4CA20: int_hnw115_b_front_tex_txt
- 0x80E4CB20: int_hnw115_v
- 0x80E4CFC0: int_hnw115_chest_model
- 0x80E4D0B8: int_hnw115_armR_model
- 0x80E4D138: int_hnw115_armL_model
- 0x80E4D1B8: int_hnw115_base_model
- 0x80E4D230: cKF_ckcb_r_int_hnw115_tbl
- 0x80E4D238: cKF_kn_int_hnw115_tbl
- 0x80E4D258: cKF_c_int_hnw115_tbl
- 0x80E4D26C: cKF_ds_int_hnw115_tbl
- 0x80E4D3DC: cKF_ba_r_int_hnw115
- 0x80E4D3F0: cKF_je_r_int_hnw115_tbl
- 0x80E4D444: cKF_bs_r_int_hnw115
- 0x80E4D460: int_hnw116_pal
- 0x80E4D480: int_hnw116_arm_tex_txt
- 0x80E4D580: int_hnw116_armtop_tex_txt
- 0x80E4D600: int_hnw116_c_front_tex_txt
- 0x80E4D900: int_hnw116_c_back_tex_txt
- 0x80E4DA80: int_hnw116_antena_tex_txt
- 0x80E4DB00: int_hnw116_b_back_tex_txt
- 0x80E4DB80: int_hnw116_b_front_tex_txt
- 0x80E4DC80: int_hnw116_v
- 0x80E4E120: int_hnw116_chest_model
- 0x80E4E218: int_hnw116_armR_model
- 0x80E4E298: int_hnw116_armL_model
- 0x80E4E318: int_hnw116_base_model
- 0x80E4E390: cKF_ckcb_r_int_hnw116_tbl
- 0x80E4E398: cKF_kn_int_hnw116_tbl
- 0x80E4E3B8: cKF_c_int_hnw116_tbl
- 0x80E4E3CC: cKF_ds_int_hnw116_tbl
- 0x80E4E4F4: cKF_ba_r_int_hnw116
- 0x80E4E508: cKF_je_r_int_hnw116_tbl
- 0x80E4E55C: cKF_bs_r_int_hnw116
- 0x80E4E580: int_hnw117_pal
- 0x80E4E5A0: int_hnw117_arm_tex_txt
- 0x80E4E6A0: int_hnw117_armtop_tex_txt
- 0x80E4E720: int_hnw117_c_front_tex_txt
- 0x80E4EA20: int_hnw117_c_back_tex_txt
- 0x80E4EBA0: int_hnw117_antena_tex_txt
- 0x80E4EC20: int_hnw117_b_back_tex_txt
- 0x80E4ECA0: int_hnw117_b_front_tex_txt
- 0x80E4EDA0: int_hnw117_v
- 0x80E4F240: int_hnw117_chest_model
- 0x80E4F338: int_hnw117_armR_model
- 0x80E4F3B8: int_hnw117_armL_model
- 0x80E4F438: int_hnw117_base_model
- 0x80E4F4B0: cKF_ckcb_r_int_hnw117_tbl
- 0x80E4F4B8: cKF_kn_int_hnw117_tbl
- 0x80E4F4D8: cKF_c_int_hnw117_tbl
- 0x80E4F4EC: cKF_ds_int_hnw117_tbl
- 0x80E4F63C: cKF_ba_r_int_hnw117
- 0x80E4F650: cKF_je_r_int_hnw117_tbl
- 0x80E4F6A4: cKF_bs_r_int_hnw117
- 0x80E4F6C0: int_hnw118_pal
- 0x80E4F6E0: int_hnw118_arm_tex_txt
- 0x80E4F7E0: int_hnw118_armtop_tex_txt
- 0x80E4F860: int_hnw118_c_front_tex_txt
- 0x80E4FB60: int_hnw118_c_back_tex_txt
- 0x80E4FCE0: int_hnw118_antena_tex_txt
- 0x80E4FD60: int_hnw118_b_back_tex_txt
- 0x80E4FDE0: int_hnw118_b_front_tex_txt
- 0x80E4FEE0: int_hnw118_v
- 0x80E50380: int_hnw118_chest_model
- 0x80E50478: int_hnw118_armR_model
- 0x80E504F8: int_hnw118_armL_model
- 0x80E50578: int_hnw118_base_model
- 0x80E505F0: cKF_ckcb_r_int_hnw118_tbl
- 0x80E505F8: cKF_kn_int_hnw118_tbl
- 0x80E50618: cKF_c_int_hnw118_tbl
- 0x80E5062C: cKF_ds_int_hnw118_tbl
- 0x80E50794: cKF_ba_r_int_hnw118
- 0x80E507A8: cKF_je_r_int_hnw118_tbl
- 0x80E507FC: cKF_bs_r_int_hnw118
- 0x80E50820: int_hnw119_pal
- 0x80E50840: int_hnw119_arm_tex_txt
- 0x80E50940: int_hnw119_armtop_tex_txt
- 0x80E509C0: int_hnw119_c_front_tex_txt
- 0x80E50CC0: int_hnw119_c_back_tex_txt
- 0x80E50E40: int_hnw119_antena_tex_txt
- 0x80E50EC0: int_hnw119_b_back_tex_txt
- 0x80E50F40: int_hnw119_b_front_tex_txt
- 0x80E51040: int_hnw119_v
- 0x80E514E0: int_hnw119_chest_model
- 0x80E515D8: int_hnw119_armR_model
- 0x80E51658: int_hnw119_armL_model
- 0x80E516D8: int_hnw119_base_model
- 0x80E51750: cKF_ckcb_r_int_hnw119_tbl
- 0x80E51758: cKF_kn_int_hnw119_tbl
- 0x80E51778: cKF_c_int_hnw119_tbl
- 0x80E5178C: cKF_ds_int_hnw119_tbl
- 0x80E51888: cKF_ba_r_int_hnw119
- 0x80E5189C: cKF_je_r_int_hnw119_tbl
- 0x80E518F0: cKF_bs_r_int_hnw119
- 0x80E51900: int_hnw120_pal
- 0x80E51920: int_hnw120_arm_tex_txt
- 0x80E51A20: int_hnw120_armtop_tex_txt
- 0x80E51AA0: int_hnw120_c_front_tex_txt
- 0x80E51DA0: int_hnw120_c_back_tex_txt
- 0x80E51F20: int_hnw120_antena_tex_txt
- 0x80E51FA0: int_hnw120_b_back_tex_txt
- 0x80E52020: int_hnw120_b_front_tex_txt
- 0x80E52120: int_hnw120_v
- 0x80E525C0: int_hnw120_chest_model
- 0x80E526B8: int_hnw120_armR_model
- 0x80E52738: int_hnw120_armL_model
- 0x80E527B8: int_hnw120_base_model
- 0x80E52830: cKF_ckcb_r_int_hnw120_tbl
- 0x80E52838: cKF_kn_int_hnw120_tbl
- 0x80E52858: cKF_c_int_hnw120_tbl
- 0x80E5286C: cKF_ds_int_hnw120_tbl
- 0x80E52980: cKF_ba_r_int_hnw120
- 0x80E52994: cKF_je_r_int_hnw120_tbl
- 0x80E529E8: cKF_bs_r_int_hnw120
- 0x80E52A00: int_hnw121_pal
- 0x80E52A20: int_hnw121_arm_tex_txt
- 0x80E52B20: int_hnw121_armtop_tex_txt
- 0x80E52BA0: int_hnw121_c_front_tex_txt
- 0x80E52EA0: int_hnw121_c_back_tex_txt
- 0x80E53020: int_hnw121_antena_tex_txt
- 0x80E530A0: int_hnw121_b_back_tex_txt
- 0x80E53120: int_hnw121_b_front_tex_txt
- 0x80E53220: int_hnw121_v
- 0x80E536C0: int_hnw121_chest_model
- 0x80E537B8: int_hnw121_armR_model
- 0x80E53838: int_hnw121_armL_model
- 0x80E538B8: int_hnw121_base_model
- 0x80E53930: cKF_ckcb_r_int_hnw121_tbl
- 0x80E53938: cKF_kn_int_hnw121_tbl
- 0x80E53958: cKF_c_int_hnw121_tbl
- 0x80E5396C: cKF_ds_int_hnw121_tbl
- 0x80E53AB8: cKF_ba_r_int_hnw121
- 0x80E53ACC: cKF_je_r_int_hnw121_tbl
- 0x80E53B20: cKF_bs_r_int_hnw121
- 0x80E53B40: int_hnw122_pal
- 0x80E53B60: int_hnw122_arm_tex_txt
- 0x80E53C60: int_hnw122_armtop_tex_txt
- 0x80E53CE0: int_hnw122_c_front_tex_txt
- 0x80E53FE0: int_hnw122_c_back_tex_txt
- 0x80E54160: int_hnw122_b_back_tex_txt
- 0x80E541E0: int_hnw122_b_front_tex_txt
- 0x80E542E0: int_hnw122_v
- 0x80E54750: int_hnw122_chest_model
- 0x80E54820: int_hnw122_armR_model
- 0x80E548A0: int_hnw122_armL_model
- 0x80E54920: int_hnw122_base_model
- 0x80E54998: cKF_ckcb_r_int_hnw122_tbl
- 0x80E549A0: cKF_kn_int_hnw122_tbl
- 0x80E549C0: cKF_c_int_hnw122_tbl
- 0x80E549D4: cKF_ds_int_hnw122_tbl
- 0x80E54AD0: cKF_ba_r_int_hnw122
- 0x80E54AE4: cKF_je_r_int_hnw122_tbl
- 0x80E54B38: cKF_bs_r_int_hnw122
- 0x80E54B40: int_hnw123_pal
- 0x80E54B60: int_hnw123_c_front_tex_txt
- 0x80E54E60: int_hnw123_c_back_tex_txt
- 0x80E54FE0: int_hnw123_arm_tex_txt
- 0x80E550E0: int_hnw123_armtop_tex_txt
- 0x80E55160: int_hnw123_b_back_tex_txt
- 0x80E551E0: int_hnw123_b_front_tex_txt
- 0x80E552E0: int_hnw123_v
- 0x80E55750: int_hnw123_chest_model
- 0x80E55840: int_hnw123_armR_model
- 0x80E558C0: int_hnw123_armL_model
- 0x80E55940: int_hnw123_base_model
- 0x80E559C8: cKF_ckcb_r_int_hnw123_tbl
- 0x80E559D0: cKF_kn_int_hnw123_tbl
- 0x80E559F0: cKF_c_int_hnw123_tbl
- 0x80E55A04: cKF_ds_int_hnw123_tbl
- 0x80E55B24: cKF_ba_r_int_hnw123
- 0x80E55B38: cKF_je_r_int_hnw123_tbl
- 0x80E55B8C: cKF_bs_r_int_hnw123
- 0x80E55BA0: int_hnw124_pal
- 0x80E55BC0: int_hnw124_arm_tex_txt
- 0x80E55CC0: int_hnw124_armtop_tex_txt
- 0x80E55D40: int_hnw124_c_front_tex_txt
- 0x80E56040: int_hnw124_c_back_tex_txt
- 0x80E561C0: int_hnw124_b_back_tex_txt
- 0x80E56240: int_hnw124_b_front_tex_txt
- 0x80E56340: int_hnw124_v
- 0x80E567B0: int_hnw124_chest_model
- 0x80E56880: int_hnw124_armR_model
- 0x80E56900: int_hnw124_armL_model
- 0x80E56980: int_hnw124_base_model
- 0x80E569F8: cKF_ckcb_r_int_hnw124_tbl
- 0x80E56A00: cKF_kn_int_hnw124_tbl
- 0x80E56A20: cKF_c_int_hnw124_tbl
- 0x80E56A34: cKF_ds_int_hnw124_tbl
- 0x80E56B54: cKF_ba_r_int_hnw124
- 0x80E56B68: cKF_je_r_int_hnw124_tbl
- 0x80E56BBC: cKF_bs_r_int_hnw124
- 0x80E56BE0: int_hnw125_pal
- 0x80E56C00: int_hnw125_arm_tex_txt
- 0x80E56D00: int_hnw125_armtop_tex_txt
- 0x80E56D80: int_hnw125_c_front_tex_txt
- 0x80E57080: int_hnw125_c_back_tex_txt
- 0x80E57200: int_hnw125_antena_tex_txt
- 0x80E57280: int_hnw125_b_back_tex_txt
- 0x80E57300: int_hnw125_b_front_tex_txt
- 0x80E57400: int_hnw125_v
- 0x80E578A0: int_hnw125_chest_model
- 0x80E57998: int_hnw125_armR_model
- 0x80E57A18: int_hnw125_armL_model
- 0x80E57A98: int_hnw125_base_model
- 0x80E57B10: cKF_ckcb_r_int_hnw125_tbl
- 0x80E57B18: cKF_kn_int_hnw125_tbl
- 0x80E57B34: cKF_c_int_hnw125_tbl
- 0x80E57B4C: cKF_ds_int_hnw125_tbl
- 0x80E57C68: cKF_ba_r_int_hnw125
- 0x80E57C7C: cKF_je_r_int_hnw125_tbl
- 0x80E57CD0: cKF_bs_r_int_hnw125
- 0x80E57CE0: int_hnw126_pal
- 0x80E57D00: int_hnw126_arm_tex_txt
- 0x80E57E00: int_hnw126_armtop_tex_txt
- 0x80E57E80: int_hnw126_c_front_tex_txt
- 0x80E58180: int_hnw126_c_back_tex_txt
- 0x80E58300: int_hnw126_antena_tex_txt
- 0x80E58380: int_hnw126_b_back_tex_txt
- 0x80E58400: int_hnw126_b_front_tex_txt
- 0x80E58500: int_hnw126_v
- 0x80E589A0: int_hnw126_chest_model
- 0x80E58A98: int_hnw126_armR_model
- 0x80E58B18: int_hnw126_armL_model
- 0x80E58B98: int_hnw126_base_model
- 0x80E58C10: cKF_ckcb_r_int_hnw126_tbl
- 0x80E58C18: cKF_kn_int_hnw126_tbl
- 0x80E58C34: cKF_c_int_hnw126_tbl
- 0x80E58C48: cKF_ds_int_hnw126_tbl
- 0x80E58D88: cKF_ba_r_int_hnw126
- 0x80E58D9C: cKF_je_r_int_hnw126_tbl
- 0x80E58DF0: cKF_bs_r_int_hnw126
- 0x80E58E00: int_hnw127_pal
- 0x80E58E20: int_hnw127_arm_tex_txt
- 0x80E58F20: int_hnw127_armtop_tex_txt
- 0x80E58FA0: int_hnw127_c_front_tex_txt
- 0x80E592A0: int_hnw127_c_back_tex_txt
- 0x80E59420: int_hnw127_antena_tex_txt
- 0x80E594A0: int_hnw127_b_back_tex_txt
- 0x80E59520: int_hnw127_b_front_tex_txt
- 0x80E59620: int_hnw127_v
- 0x80E59AC0: int_hnw127_chest_model
- 0x80E59BB8: int_hnw127_armR_model
- 0x80E59C38: int_hnw127_armL_model
- 0x80E59CB8: int_hnw127_base_model
- 0x80E59D30: cKF_ckcb_r_int_hnw127_tbl
- 0x80E59D38: cKF_kn_int_hnw127_tbl
- 0x80E59D58: cKF_c_int_hnw127_tbl
- 0x80E59D6C: cKF_ds_int_hnw127_tbl
- 0x80E59F30: cKF_ba_r_int_hnw127
- 0x80E59F44: cKF_je_r_int_hnw127_tbl
- 0x80E59F98: cKF_bs_r_int_hnw127
- 0x80E59FA0: int_hos_Tdesk_pal
- 0x80E59FC0: int_hos_T_desk_body_tex_txt
- 0x80E5A1C0: int_hos_T_desk_hiki_tex_txt
- 0x80E5A3C0: int_hos_T_desk_top_tex_txt
- 0x80E5A5C0: int_hos_T_desk_side_tex_txt
- 0x80E5A6C0: int_hos_Tdesk_v
- 0x80E5A8C0: int_hos_Tdesk_base_model
- 0x80E5A9E0: int_hos_turkey_pal
- 0x80E5AA00: int_hos_turkey_sofa_se_txt
- 0x80E5AC00: int_hos_turkey_sofa_asi_txt
- 0x80E5AC80: int_hos_turkey_sofa_cov_txt
- 0x80E5AE80: int_hos_turkey_sofa_yoko_txt
- 0x80E5B080: int_hos_turkey_sofa_v
- 0x80E5B610: int_hos_turkey_sofa_body_model
- 0x80E5B740: int_hos_deskL_pal
- 0x80E5B760: int_hos_deskL_tex_txt
- 0x80E5BF60: int_hos_deskL_v
- 0x80E5C4F0: int_hos_deskL_model_model
- 0x80E5C5E0: int_hos_deskR_pal
- 0x80E5C600: int_hos_deskR_tex_txt
- 0x80E5CE00: int_hos_deskR_v
- 0x80E5D410: int_hos_deskR_model_model
- 0x80E5D520: int_hos_flip_pal
- 0x80E5D540: int_hos_flip_top_tex_txt
- 0x80E5D940: int_hos_flip_asi_tex_txt
- 0x80E5DB40: int_hos_flip_side_tex_txt
- 0x80E5DD40: int_hos_flip_v
- 0x80E5E320: int_hos_flip_model_model
- 0x80E5E460: int_hos_mario_hata_pal
- 0x80E5E480: int_hos_mario_hata_b_tex_txt
- 0x80E5E500: int_hos_mario_hata_c_tex_txt
- 0x80E5E580: int_hos_mario_hata_a_tex_txt
- 0x80E5E5C0: int_hos_mario_hata_v
- 0x80E5EAA0: int_hos_mario_hata_all_model
- 0x80E5EBC0: int_hos_mario_kinoko_pal
- 0x80E5EBE0: int_hos_mario_kino_top_txt
- 0x80E5EDE0: int_hos_mario_kino_jiku_txt
- 0x80E5EFE0: int_hos_mario_kinoko_v
- 0x80E5F250: int_hos_mario_kinoko_all_model
- 0x80E5F340: int_hos_piknic_pal
- 0x80E5F360: int_hos_piknic_wood_txt
- 0x80E5F760: int_hos_piknic_cloth_txt
- 0x80E5FB60: int_hos_piknic_v
- 0x80E601C0: int_hos_piknic_all_model
- 0x80E602C0: int_iid_benchi_pal
- 0x80E602E0: int_iid_benchi_se2_tex_pal
- 0x80E60300: int_iid_benchi_se3_tex_pal
- 0x80E60320: int_iid_benchi_se1_tex
- 0x80E60520: int_iid_benchi_se2_tex
- 0x80E60720: int_iid_benchi_se3_tex
- 0x80E60920: int_iid_benchi_ue_tex
- 0x80E60940: int_iid_benchi_koshi_tex
- 0x80E60980: int_iid_benchi_koshi2_tex
- 0x80E609C0: int_iid_benchi_shita_tex
- 0x80E609E0: int_iid_benchi_ashi_tex
- 0x80E60A20: int_iid_benti_v
- 0x80E61320: int_iid_benti_model
- 0x80E61580: int_iid_diary_mae_tex
- 0x80E615A0: int_iid_diary_hyoushi_tex
- 0x80E617A0: int_iid_diary_soko_tex
- 0x80E617C0: int_iid_diary_ue_tex
- 0x80E61800: int_iid_diary_ebody_tex
- 0x80E61820: int_iid_diary_v
- 0x80E61BA0: int_iid_diary_model
- 0x80E61CC0: int_iid_funediary
- 0x80E61CE0: int_iid_funediary_mae_tex
- 0x80E61D00: int_iid_funediary_hyoushi_tex
- 0x80E61F00: int_iid_funediary_soko_tex
- 0x80E61F20: int_iid_funediary_ue_tex
- 0x80E61F40: int_iid_funediary_esaki_tex
- 0x80E61F60: int_iid_funediary_ebody_tex
- 0x80E61F80: int_iid_funediary_v
- 0x80E62300: int_iid_funediary_model
- 0x80E62420: int_iid_mdiary
- 0x80E62460: int_iid_mdiary_mae_tex
- 0x80E62480: int_iid_mdiary_hyoushi_tex
- 0x80E62680: int_iid_mdiary_soko_tex
- 0x80E626A0: int_iid_mdiary_ue_tex
- 0x80E626E0: int_iid_mdiary_ebody_tex
- 0x80E62700: int_iid_mdiary_v
- 0x80E62A80: int_iid_mdiary_model
- 0x80E62BC0: int_iid_newdiary
- 0x80E62BE0: int_iid_olddiary
- 0x80E62C00: int_iid_newdiary_mae_tex
- 0x80E62C80: int_iid_newdiary_hyoushi_tex
- 0x80E62E80: int_iid_newdiary_soko_tex
- 0x80E62EA0: int_iid_newdiary_ue_tex
- 0x80E62EC0: int_iid_newdiary_esaki_tex
- 0x80E62EE0: int_iid_newdiary_ebody_tex
- 0x80E62F00: int_iid_newdiary_v
- 0x80E63280: int_iid_newediary_model
- 0x80E633C0: int_iid_ningyou_pal
- 0x80E633E0: int_iid_ningyou_hada_tex
- 0x80E63460: int_iid_ningyou_boushi_tex
- 0x80E634E0: int_iid_ningyou_kao_tex
- 0x80E636E0: int_iid_ningyou_kutushita_tex
- 0x80E63760: int_iid_ningyou_futi_tex
- 0x80E63780: int_iid_ningyou_fuku_tex
- 0x80E637A0: int_iid_ningyou_ribbon_tex
- 0x80E63820: int_iid_ningyou_ashi_tex
- 0x80E63860: int_iid_ningyou_v
- 0x80E648D0: int_iid_ningyou_on_model
- 0x80E64BC0: int_iid_snow_pal
- 0x80E64BE0: int_iid_snow_ashiue_tex
- 0x80E64C60: int_iid_snow_ashiyoko_tex
- 0x80E64D60: int_iid_snow_ashimae_tex
- 0x80E64DE0: int_iid_snow_ashisoko_tex
- 0x80E64EE0: int_iid_snow_ashiback_tex
- 0x80E64F60: int_iid_snow_bordue_tex
- 0x80E65060: int_iid_snow_bordshita_tex
- 0x80E650E0: int_iid_snow_bordyoko_tex
- 0x80E65100: int_iid_snow_bordkakato_tex
- 0x80E65200: int_iid_snow_bordura_tex
- 0x80E65280: int_iid_snow_bordana_tex
- 0x80E652A0: int_iid_snow_bordpin_tex
- 0x80E652C0: int_iid_snow_bordtate_tex
- 0x80E652E0: int_iid_snow_v
- 0x80E66BB0: int_iid_snow_model
- 0x80E66EC8: int_iid_snowT_model
- 0x80E67000: int_iid_surf_pal
- 0x80E67020: int_iid_surf_mae_tex
- 0x80E67220: int_iid_surf_ushiro_tex
- 0x80E67320: int_iid_surf_fin_tex
- 0x80E673A0: int_iid_surf_tate_tex
- 0x80E67420: int_iid_surf_v
- 0x80E682F0: int_iid_surf_model
- 0x80E68620: int_iid_yuki_pal
- 0x80E68640: int_iid_yuki_ha_tex
- 0x80E68740: int_iid_yuki_body_tex
- 0x80E68B40: int_iid_yuki_eye_tex
- 0x80E68B60: int_iid_yuki_bonyoko_tex
- 0x80E68BE0: int_iid_yuki_bonue_tex
- 0x80E68C60: int_iid_yuki_v
- 0x80E69130: int_iid_yuki_model
- 0x80E691E8: int_iid_yukiT_model
- 0x80E69300: int_ike_art_ang_pal
- 0x80E69320: int_ike_art_ang_front_tex
- 0x80E69520: int_ike_art_ang_stand_tex
- 0x80E69720: int_ike_art_ang_tex
- 0x80E69A20: int_ike_art_ang_gaku_tex
- 0x80E69B20: int_ike_art_ang_v
- 0x80E69E60: int_ike_art_ang_on_model
- 0x80E69EE8: int_ike_art_ang_onT_model
- 0x80E69FA0: int_ike_art_fel_pal
- 0x80E69FC0: int_ike_art_felgaku_tex
- 0x80E6A0C0: int_ike_art_fel1_tex
- 0x80E6A540: int_ike_art_felstand_tex
- 0x80E6A740: int_ike_art_felfront_tex
- 0x80E6A940: int_ike_art_fel_v
- 0x80E6ACA0: int_ike_art_fel01_on_model
- 0x80E6AD30: int_ike_art_fel01_onT_model
- 0x80E6ADE0: int_ike_art_sya_pal
- 0x80E6AE00: int_ike_art_syafront_tex
- 0x80E6B000: int_ike_art_syastand_tex
- 0x80E6B200: int_ike_art_sya_tex
- 0x80E6B500: int_ike_art_syagaku_tex
- 0x80E6B600: int_ike_art_sya_v
- 0x80E6B940: int_ike_art_sya01_on_model
- 0x80E6B9C8: int_ike_art_sya01_onT_model
- 0x80E6BA80: int_ike_island_hako01_pal
- 0x80E6BAA0: int_ike_island_hakoin2_tex_rgb_ci4_pal
- 0x80E6BAC0: int_ike_island_hakoin3_tex_rgb_ci4_pal
- 0x80E6BAE0: int_ike_island_hakoin5_tex_rgb_ci4_pal
- 0x80E6BB00: int_ike_island_hakotop3_tex_txt
- 0x80E6BB80: int_ike_island_hakotop1_tex_txt
- 0x80E6BC80: int_ike_island_hakotop2_tex_txt
- 0x80E6BD00: int_ike_island_hakoin4_tex_txt
- 0x80E6BD80: int_ike_island_hakokagi2_tex_txt
- 0x80E6BDC0: int_ike_island_hakokagi1_tex_txt
- 0x80E6BE40: int_ike_island_hakoside1_tex_txt
- 0x80E6BEC0: int_ike_island_hakoin1_tex_txt
- 0x80E6C0C0: int_ike_island_hakoin2_tex_txt
- 0x80E6C140: int_ike_island_hakoin3_tex_txt
- 0x80E6C1C0: int_ike_island_hakoin5_tex_txt
- 0x80E6C240: int_ike_island_hako01_v
- 0x80E6D300: int_ike_island_hako01_on_model
- 0x80E6D470: int_ike_island_hako01_in3_off_model
- 0x80E6D4F8: int_ike_island_hako01_in2_off_model
- 0x80E6D578: int_ike_island_hako01_in1_off_model
- 0x80E6D628: int_ike_island_hako01_top_model
- 0x80E6D700: cKF_ckcb_r_int_ike_island_hako01_tbl
- 0x80E6D708: cKF_kn_int_ike_island_hako01_tbl
- 0x80E6D70C: cKF_c_int_ike_island_hako01_tbl
- 0x80E6D734: cKF_ds_int_ike_island_hako01_tbl
- 0x80E6D764: cKF_ba_r_int_ike_island_hako01
- 0x80E6D778: cKF_ckcb_r_int_ike_island_hako02_tbl
- 0x80E6D780: cKF_kn_int_ike_island_hako02_tbl
- 0x80E6D788: cKF_c_int_ike_island_hako02_tbl
- 0x80E6D7AC: cKF_ds_int_ike_island_hako02_tbl
- 0x80E6D7DC: cKF_ba_r_int_ike_island_hako02
- 0x80E6D7F0: cKF_je_r_int_ike_island_hako01_tbl
- 0x80E6D838: cKF_bs_r_int_ike_island_hako01
- 0x80E6D840: int_ike_island_sensui01_pal
- 0x80E6D860: int_ike_island_senhead1_tex_txt
- 0x80E6DC60: int_ike_island_senbody1_tex_txt
- 0x80E6DD60: int_ike_island_senleg1_tex_txt
- 0x80E6DE60: int_ike_island_senhead2_tex_txt
- 0x80E6DF60: int_ike_island_sensuiface_pic_i4
- 0x80E6E160: int_ike_island_sensui01_v
- 0x80E6E810: int_ike_island_sensui01_on_model
- 0x80E6E9E0: int_ike_island_sensui01_off_model
- 0x80E6EA40: int_ike_island_uku01_pal
- 0x80E6EA60: int_ike_island_ukuneck_tex_txt
- 0x80E6EAE0: int_ike_island_ukuneck3_tex_txt
- 0x80E6EB20: int_ike_island_ukuneck2_tex_txt
- 0x80E6EB60: int_ike_island_ukuside1_tex_txt
- 0x80E6EBE0: int_ike_island_ukuface1_tex_txt
- 0x80E6EDE0: int_ike_island_ukuface2_tex_txt
- 0x80E6EFE0: int_ike_island_uku01_v
- 0x80E6F490: int_ike_island_uku01_body_model
- 0x80E6F620: int_ike_jny_afmen_pal
- 0x80E6F640: int_ike_jny_afmen01_face1_tex
- 0x80E6F840: int_ike_jny_afmen01_under1_tex
- 0x80E6F940: int_ike_jny_afmen01_face2_tex
- 0x80E6FA40: int_ike_jny_afmen01_base1_tex
- 0x80E6FAC0: int_ike_jny_afmen01_base2_tex
- 0x80E6FB00: int_ike_jny_afmen01_base3_tex
- 0x80E6FB40: int_ike_jny_afmen01_v
- 0x80E70010: int_ike_jny_afmen01_on_model
- 0x80E70160: int_ike_jny_afmen01_onT_model
- 0x80E701C0: int_ike_jny_botle01_pal
- 0x80E701E0: int_ike_jny_botleship1_tex_txt
- 0x80E70220: int_ike_jny_botleship3_tex_txt
- 0x80E70260: int_ike_jny_botleship2_tex_txt
- 0x80E702A0: int_ike_jny_botlebase_tex_txt
- 0x80E70320: int_ike_jny_botlebase2_tex_txt
- 0x80E70360: int_ike_jny_botlecap_tex_txt
- 0x80E703A0: int_ike_jny_botleship5_tex_txt
- 0x80E70460: int_ike_jny_botleship4_tex_txt
- 0x80E70520: int_ike_jny_botleship6_tex_txt
- 0x80E705E0: int_ike_jny_botle01_tex_rgb_ia8
- 0x80E709E0: int_ike_jny_botle01_v
- 0x80E712A0: int_ike_jny_botle01_on_model
- 0x80E71518: int_ike_jny_botle01_off_model
- 0x80E715C0: int_ike_jny_gate01_pal
- 0x80E715E0: int_ike_jny_gate2_tex_txt
- 0x80E716E0: int_ike_jny_gate1_tex_txt
- 0x80E718E0: int_ike_jny_gate3_tex_txt
- 0x80E71960: int_ike_jny_gatebase1_tex_txt
- 0x80E71B60: int_ike_jny_gatebase3_tex_txt
- 0x80E71BA0: int_ike_jny_gatebase2_tex_txt
- 0x80E71BE0: int_ike_jny_gate01_v
- 0x80E72180: int_ike_jny_gate01_body_model
- 0x80E72320: int_ike_jny_gojyu01_pal
- 0x80E72340: int_ike_jny_gojyuname2_tex_txt
- 0x80E72380: int_ike_jny_gojyuname1_tex_txt
- 0x80E72480: int_ike_jny_gojyubase_tex_txt
- 0x80E724C0: int_ike_jny_gojyuroof_tex_txt
- 0x80E725C0: int_ike_jny_gojyuwall2_tex_txt
- 0x80E72640: int_ike_jny_gojyuwall1_tex_txt
- 0x80E726C0: int_ike_jny_gojyutop_tex_txt
- 0x80E72740: int_ike_jny_gojyu01_v
- 0x80E73090: int_ike_jny_gojyu01_body_model
- 0x80E73360: int_ike_jny_hariko01_pal
- 0x80E73380: int_ike_jny_harikoface01_tex_txt
- 0x80E73480: int_ike_jny_harikoear01_tex_txt
- 0x80E73580: int_ike_jny_harikotail01_tex_txt
- 0x80E73600: int_ike_jny_harikobody01_tex_txt
- 0x80E73800: int_ike_jny_hariko01_v
- 0x80E741A0: int_ike_jny_hariko01_head_model
- 0x80E74250: int_ike_jny_hariko01_body_model
- 0x80E744B0: cKF_ckcb_r_int_ike_jny_hariko01_tbl
- 0x80E744B4: cKF_kn_int_ike_jny_hariko01_tbl
- 0x80E744C0: cKF_c_int_ike_jny_hariko01_tbl
- 0x80E744C8: cKF_ds_int_ike_jny_hariko01_tbl
- 0x80E74630: cKF_ba_r_int_ike_jny_hariko01
- 0x80E74644: cKF_je_r_int_ike_jny_hariko01_tbl
- 0x80E7465C: cKF_bs_r_int_ike_jny_hariko01
- 0x80E74680: int_ike_jny_houi01_pal
- 0x80E746A0: int_ike_jny_houijisyaku_tex_txt
- 0x80E74720: int_ike_jny_houi1_tex_txt
- 0x80E747A0: int_ike_jny_houiface1_tex_txt
- 0x80E749A0: int_ike_jny_houiface2_pic_i4
- 0x80E74BA0: int_ike_jny_houi01_v
- 0x80E74E10: int_ike_jny_houi01_on_hari_model
- 0x80E74E68: int_ike_jny_houi01_on_model
- 0x80E74F20: int_ike_jny_houi01_off_model
- 0x80E74F88: cKF_ckcb_r_int_ike_jny_houi01_tbl
- 0x80E74F8C: cKF_kn_int_ike_jny_houi01_tbl
- 0x80E74F98: cKF_c_int_ike_jny_houi01_tbl
- 0x80E74FAC: cKF_ds_int_ike_jny_houi01_tbl
- 0x80E75060: cKF_ba_r_int_ike_jny_houi01
- 0x80E75074: cKF_je_r_int_ike_jny_houi01_tbl
- 0x80E750A4: cKF_bs_r_int_ike_jny_houi01
- 0x80E750C0: int_ike_jny_kibori01_pal
- 0x80E750E0: int_ike_jny_kiboribase_tex_txt
- 0x80E75160: int_ike_jny_kiboribody_tex_txt
- 0x80E75360: int_ike_jny_kiborineck_tex_txt
- 0x80E753E0: int_ike_jny_kiboriface_tex_txt
- 0x80E755E0: int_ike_jny_kiborifish_tex_txt
- 0x80E758E0: int_ike_jny_kibori01_v
- 0x80E76380: int_ike_jny_kibori01_body_model
- 0x80E76580: int_ike_jny_makada01_pal
- 0x80E765A0: int_ike_jny_makada01_face2_tex
- 0x80E766A0: int_ike_jny_makada01_face1_tex
- 0x80E76AA0: int_ike_jny_makada01_v
- 0x80E76BE0: int_ike_jny_makada01_on_model
- 0x80E76C60: int_ike_jny_moai01_pal
- 0x80E76C80: int_ike_jny_moai2_tex_txt
- 0x80E76D80: int_ike_jny_moai5_tex_txt
- 0x80E76E00: int_ike_jny_moai4_tex_txt
- 0x80E76F00: int_ike_jny_moai1_tex_txt
- 0x80E77300: int_ike_jny_moai3_tex_txt
- 0x80E77400: int_ike_jny_moai01_v
- 0x80E778D0: int_ike_jny_moai01_body_model
- 0x80E77A60: int_ike_jny_ningyo01_pal
- 0x80E77A80: int_ike_jny_ningyobody2_tex_txt
- 0x80E77C80: int_ike_jny_ningyoface_tex_txt
- 0x80E77E80: int_ike_jny_ningyobody_tex_txt
- 0x80E78080: int_ike_jny_ningyoleg1_tex_txt
- 0x80E78280: int_ike_jny_ningyohand_tex_txt
- 0x80E78380: int_ike_jny_ningyo01_v
- 0x80E78930: int_ike_jny_ningyo01_body_model
- 0x80E78AC0: int_ike_jny_pisa01_pal
- 0x80E78AE0: int_ike_jny_pisatop2_tex_txt
- 0x80E78B60: int_ike_jny_pisa2_tex_txt
- 0x80E78C60: int_ike_jny_pisabase1_tex_txt
- 0x80E78E60: int_ike_jny_pisabase2_tex_txt
- 0x80E78EE0: int_ike_jny_pisabase3_tex_txt
- 0x80E78FE0: int_ike_jny_pisa3_tex_txt
- 0x80E790E0: int_ike_jny_pisa1_tex_txt
- 0x80E791E0: int_ike_jny_pisatop1_tex_txt
- 0x80E79260: int_ike_jny_pisa01_v
- 0x80E79960: int_ike_jny_pisa01_body_model
- 0x80E79B80: int_ike_jny_rosia01_pal
- 0x80E79BA0: int_ike_jny_rosiabase1_tex_txt
- 0x80E79CA0: int_ike_jny_rosia01_tex_txt
- 0x80E79FA0: int_ike_jny_rosia01_v
- 0x80E7A510: int_ike_jny_rosia01_lb_model
- 0x80E7A5A8: int_ike_jny_rosia01_l_model
- 0x80E7A618: int_ike_jny_rosia01_2mb_model
- 0x80E7A688: int_ike_jny_rosia01_2sb_model
- 0x80E7A710: int_ike_jny_rosia01_m_model
- 0x80E7A780: cKF_ckcb_r_int_ike_jny_rosia01_tbl
- 0x80E7A78C: cKF_kn_int_ike_jny_rosia01_tbl
- 0x80E7A7B0: cKF_c_int_ike_jny_rosia01_tbl
- 0x80E7A7D4: cKF_ds_int_ike_jny_rosia01_tbl
- 0x80E7A978: cKF_ba_r_int_ike_jny_rosia01
- 0x80E7A98C: cKF_je_r_int_ike_jny_rosia01_tbl
- 0x80E7AA10: cKF_bs_r_int_ike_jny_rosia01
- 0x80E7AA20: int_ike_jny_sirser01_pal
- 0x80E7AA40: int_ike_jny_sirserface_tex_txt
- 0x80E7AC40: int_ike_jny_sirserear_tex_txt
- 0x80E7ACC0: int_ike_jny_sirserhead_tex_txt
- 0x80E7ADC0: int_ike_jny_sirserhair_tex_txt
- 0x80E7AEC0: int_ike_jny_sirserfoot_tex_txt
- 0x80E7AF40: int_ike_jny_sirsertail_tex_txt
- 0x80E7B040: int_ike_jny_sirserfoot2_tex_txt
- 0x80E7B0C0: int_ike_jny_sirser01_v
- 0x80E7B630: int_ike_jny_sirser01_body_model
- 0x80E7B7E0: int_ike_jny_sirser02_pal
- 0x80E7B800: int_ike_jny_sirser2face_tex_txt
- 0x80E7BA00: int_ike_jny_sirser2ear_tex_txt
- 0x80E7BA80: int_ike_jny_sirser2head_tex_txt
- 0x80E7BB80: int_ike_jny_sirser2hair_tex_txt
- 0x80E7BC80: int_ike_jny_sirser2foot_tex_txt
- 0x80E7BD00: int_ike_jny_sirser2tail_tex_txt
- 0x80E7BE00: int_ike_jny_sirser2foot2_tex_txt
- 0x80E7BE80: int_ike_jny_sirser201_v
- 0x80E7C3F0: int_ike_jny_sirser201_body_model
- 0x80E7C5A0: int_ike_jny_syon01_tex
- 0x80E7C5C0: int_ike_jny_syonfoot2_tex_txt
- 0x80E7C6C0: int_ike_jny_syonfoot1_tex_txt
- 0x80E7C7C0: int_ike_jny_syonbody2_tex_txt
- 0x80E7C9C0: int_ike_jny_syonhead_tex_txt
- 0x80E7CAC0: int_ike_jny_syonbody1_tex_txt
- 0x80E7CCC0: int_ike_jny_syonface_tex_txt
- 0x80E7CDC0: int_ike_jny_syonwater1_pic_i4
- 0x80E7CFC0: int_ike_jny_syonwater2_pic_i4
- 0x80E7D1C0: int_ike_jny_syon01_v
- 0x80E7D880: int_ike_jny_syon01_on_model
- 0x80E7DA70: int_ike_jny_syon01_off_model
- 0x80E7DAE0: int_ike_jny_tower01
- 0x80E7DB00: int_ike_jny_towerbase_tex_txt
- 0x80E7DB80: int_ike_jny_towertem1_tex_txt
- 0x80E7DBC0: int_ike_jny_towertem2_tex_txt
- 0x80E7DDC0: int_ike_jny_towertem3_tex_txt
- 0x80E7DE00: int_ike_jny_towername_tex_txt
- 0x80E7DE40: int_ike_jny_towerbelt_tex_txt
- 0x80E7DE80: int_ike_jny_towerbottom_tex_txt
- 0x80E7E080: int_ike_jny_towermiddle_tex_txt
- 0x80E7E100: int_ike_jny_tower01_v
- 0x80E7EA00: int_ike_jny_tower01_body_model
- 0x80E7EC00: int_ike_jny_truth01_pal
- 0x80E7EC20: int_ike_jny_truthbases_tex_txt
- 0x80E7ED20: int_ike_jny_truthbaset_tex_txt
- 0x80E7ED60: int_ike_jny_truthface3_tex_txt
- 0x80E7EF60: int_ike_jny_truthface2_tex_txt
- 0x80E7EFE0: int_ike_jny_truthface1_TA_tex_txt
- 0x80E7F1E0: int_ike_jny_truthface2_TA_tex_txt
- 0x80E7F3E0: int_ike_jny_truth01_v
- 0x80E7F880: int_ike_jny_truth01_body_model
- 0x80E7FA00: int_ike_jpn_tansu01_pal
- 0x80E7FA20: int_ike_jpn_tansu01_ura1_tex
- 0x80E7FBA0: int_ike_jpn_tansu01_hikido1_tex
- 0x80E7FDA0: int_ike_jpn_tansu01_ura2_tex
- 0x80E7FEA0: int_ike_jpn_tansu01_hikidasi1_tex
- 0x80E7FF20: int_ike_jpn_tansu01_tobira1_tex
- 0x80E80220: int_ike_jpn_tansu01_v
- 0x80E805E0: int_ike_jpn_tansu01_on_model
- 0x80E806C0: int_ike_jpn_tansu01_onT_model
- 0x80E80740: int_ike_k_count01_pal
- 0x80E80760: int_ike_k_counttop_tex_txt
- 0x80E80960: int_ike_k_countside_tex_txt
- 0x80E809E0: int_ike_k_countside2_tex_txt
- 0x80E80BE0: int_ike_k_count01_v
- 0x80E80EF0: int_ike_k_count01_body_model
- 0x80E81000: int_ike_k_iveboy01_pal
- 0x80E81020: int_ike_k_iveboyseat2_tex
- 0x80E81060: int_ike_k_iveboymir1_tex
- 0x80E810E0: int_ike_k_iveboylighttex
- 0x80E81160: int_ike_k_iveboyhand_tex
- 0x80E811E0: int_ike_k_iveboyback_tex
- 0x80E81220: int_ike_k_iveboybase1_tex
- 0x80E81260: int_ike_k_iveboymir2_tex
- 0x80E812A0: int_ike_k_iveboyside1_tex
- 0x80E814A0: int_ike_k_iveboyseat_tex
- 0x80E815A0: int_ike_k_iveboytire_tex
- 0x80E81620: int_ike_k_iveboysidein_tex
- 0x80E816A0: int_ike_k_iveboyfront1_tex
- 0x80E818A0: int_ike_k_iveboybase3_rgb_i4
- 0x80E81AA0: int_ike_k_iveboy01_v
- 0x80E82540: int_ike_k_iveboy01_on_model
- 0x80E82618: int_ike_k_iveboy01_off_model
- 0x80E82680: int_ike_k_iveboy01_onT_model
- 0x80E82840: int_ike_k_kid01_pal
- 0x80E82860: int_ike_k_kidfront1_tex
- 0x80E828E0: int_ike_k_kidfront2_tex
- 0x80E82920: int_ike_k_kidfront3_tex
- 0x80E82B20: int_ike_k_kidfront4_tex
- 0x80E82B60: int_ike_k_kidtire_tex
- 0x80E82BA0: int_ike_k_kidtunagi_tex
- 0x80E82BE0: int_ike_k_kidsumi_tex
- 0x80E82C60: int_ike_k_kidyane_tex
- 0x80E82CA0: int_ike_k_kidunder_tex
- 0x80E82CE0: int_ike_k_kidside2_tex
- 0x80E82DE0: int_ike_k_kidside3_tex
- 0x80E82E60: int_ike_k_kidside4_tex
- 0x80E82F60: int_ike_k_kidside1_tex
- 0x80E83060: int_ike_k_kidbase_tex
- 0x80E830E0: int_ike_k_kid01_v
- 0x80E83C20: int_ike_k_kid01_on_model
- 0x80E83DA0: int_ike_k_kid01_onT_model
- 0x80E83F20: int_ike_k_kid02_pal
- 0x80E83F40: int_ike_k_kid2door1_tex
- 0x80E84040: int_ike_k_kid2yane1_tex
- 0x80E84140: int_ike_k_kid2door2_tex
- 0x80E84240: int_ike_k_kid2under_tex
- 0x80E84280: int_ike_k_kid2kousi_tex
- 0x80E84300: int_ike_k_kid2side1_tex
- 0x80E84400: int_ike_k_kid2sunoko_tex
- 0x80E84480: int_ike_k_kid2tire_tex
- 0x80E84500: int_ike_k_kid2tire2_tex
- 0x80E84600: int_ike_k_kid2base_tex
- 0x80E84680: int_ike_k_kid02_v
- 0x80E84E00: int_ike_k_kid02_on_model
- 0x80E84EC8: int_ike_k_kid02_onT_model
- 0x80E85020: int_ike_k_mame01_pal
- 0x80E85040: int_ike_k_mamebox1_tex_txt
- 0x80E85140: int_ike_k_mamemame1_tex_txt
- 0x80E851C0: int_ike_k_mamen_tex_txt
- 0x80E853C0: int_ike_k_mamehimo_tex_txt
- 0x80E854C0: int_ike_k_mame01_v
- 0x80E85910: int_ike_k_mame01_body_model
- 0x80E85A20: int_ike_k_otome01_pal
- 0x80E85A40: int_ike_k_otomefront_tex
- 0x80E85AC0: int_ike_k_otomeleg_tex
- 0x80E85CC0: int_ike_k_otomeside_tex
- 0x80E85D40: int_ike_k_otometop_tex
- 0x80E85DC0: int_ike_k_otometle1_tex
- 0x80E85FC0: int_ike_k_otometle2_tex
- 0x80E86040: int_ike_k_otometle3_tex
- 0x80E860C0: int_ike_k_otome01_v
- 0x80E867A0: int_ike_k_otome01_on_model
- 0x80E868E8: int_ike_k_otome01_onT_model
- 0x80E86980: int_ike_k_sinnen01_pal
- 0x80E869A0: int_ike_k_oseti1_tex
- 0x80E86BA0: int_ike_k_osetiside_tex
- 0x80E86CA0: int_ike_k_oseti2_tex
- 0x80E86EA0: int_ike_k_sinnen01_v
- 0x80E87120: int_ike_k_sinnen01_on_model
- 0x80E871E0: int_ike_k_sum01_pal
- 0x80E87200: int_ike_k_sumuki2_tex_txt
- 0x80E87300: int_ike_k_sumuki1_tex_txt
- 0x80E87500: int_ike_k_sum01_v
- 0x80E87A40: int_ike_k_sum01_body_model
- 0x80E87B80: int_ike_k_tanabata01_pal
- 0x80E87BA0: int_ike_k_tanasasa1_tex_txt
- 0x80E87FA0: int_ike_k_tanasasa2_tex_txt
- 0x80E882A0: int_ike_k_tanabase1_tex_txt
- 0x80E88320: int_ike_k_tanasasa3_tex_txt
- 0x80E88420: int_ike_k_tanabata01_v
- 0x80E88850: int_ike_k_tanabata01_body_model
- 0x80E88A00: int_ike_k_turis01_pal
- 0x80E88A20: int_ike_k_turisb6_tex_txt
- 0x80E88B20: int_ike_k_turisb7_tex_txt
- 0x80E88BA0: int_ike_k_turisb1_tex_txt
- 0x80E88FA0: int_ike_k_turisb3_tex_txt
- 0x80E893A0: int_ike_k_turisb2_tex_txt
- 0x80E89420: int_ike_k_turisb5_tex_txt
- 0x80E894A0: int_ike_k_turisb8_tex_txt
- 0x80E89520: int_ike_k_turisb4_tex_txt
- 0x80E895A0: int_ike_k_turibass3_tex_txt
- 0x80E897A0: int_ike_k_turibass2_tex_txt
- 0x80E89820: int_ike_k_turibass1_tex_txt
- 0x80E89B20: int_ike_k_turis01_v
- 0x80E8A270: int_ike_k_turis01_body_model
- 0x80E8A4E0: int_ike_kama_danrounder1_tex_txt
- 0x80E8A560: int_ike_kama_danrounder2_tex_txt
- 0x80E8A660: int_ike_kama_danrotop1_tex_txt
- 0x80E8A6E0: int_ike_kama_danrorenga2_tex_txt
- 0x80E8A7E0: int_ike_kama_danrorenga1_tex_txt
- 0x80E8A9E0: int_ike_kama_danrotop2_tex_txt
- 0x80E8AA60: int_ike_kama_danrorenga3_tex_txt
- 0x80E8ABE0: fire06_int_i4
- 0x80E8AFE0: fire08_int_i4
- 0x80E8B1E0: int_ike_kama_danro01_v
- 0x80E8BB50: int_ike_kama_danrofire_off_model
- 0x80E8BBC8: int_ike_kama_danro01_on_model
- 0x80E8BE80: int_ike_nikki_fan1_pal
- 0x80E8BEA0: int_ike_nikki_fan1face_tex
- 0x80E8C0A0: int_ike_nikki_fan1side_tex
- 0x80E8C0E0: int_ike_nikki_fan1pen_tex
- 0x80E8C120: int_ike_nikki_fan1_v
- 0x80E8C330: int_ike_nikki_fan1_on_model
- 0x80E8C400: int_ike_nikki_fan2_pal
- 0x80E8C420: int_ike_nikki_fan2face_tex
- 0x80E8C620: int_ike_nikki_fan2side_tex
- 0x80E8C660: int_ike_nikki_fan2pen_tex
- 0x80E8C6A0: int_ike_nikki_fan2_v
- 0x80E8C8B0: int_ike_nikki_fan2_on_model
- 0x80E8C980: int_ike_nikki_fan3_pal
- 0x80E8C9A0: int_ike_nikki_fan3face_tex
- 0x80E8CBA0: int_ike_nikki_fan3side_tex
- 0x80E8CBE0: int_ike_nikki_fan3pen_tex
- 0x80E8CC20: int_ike_nikki_fan3_v
- 0x80E8CE30: int_ike_nikki_fan3_on_model
- 0x80E8CF00: int_ike_nikki_fan4_pal
- 0x80E8CF20: int_ike_nikki_fan4face_tex
- 0x80E8D120: int_ike_nikki_fan4side_tex
- 0x80E8D160: int_ike_nikki_fan4pen_tex
- 0x80E8D1A0: int_ike_nikki_fan4_v
- 0x80E8D3B0: int_ike_nikki_fan4_on_model
- 0x80E8D480: int_ike_nikki_fan5_pal
- 0x80E8D4A0: int_ike_nikki_fan5face_tex
- 0x80E8D6A0: int_ike_nikki_fan5side_tex
- 0x80E8D6E0: int_ike_nikki_fan5pen_tex
- 0x80E8D720: int_ike_nikki_fan5_v
- 0x80E8D930: int_ike_nikki_fan5_on_model
- 0x80E8DA00: int_ike_nikki_wafu1_pal
- 0x80E8DA20: int_ike_nikki_wafu1face_tex
- 0x80E8DC20: int_ike_nikki_wafu1side_tex
- 0x80E8DC60: int_ike_nikki_wafu1pen_tex
- 0x80E8DCE0: int_ike_nikki_wafu1_v
- 0x80E8E100: int_ike_nikki_wafu1_on_model
- 0x80E8E1E0: int_ike_prores_bench01_pal
- 0x80E8E200: int_ike_prores_bench01_pole1_tex
- 0x80E8E240: int_ike_prores_bench01_pole2_tex
- 0x80E8E300: int_ike_prores_bench01_top1_tex
- 0x80E8E400: int_ike_prores_bench01_side1_tex
- 0x80E8E480: int_ike_prores_bench01_pole3_tex
- 0x80E8E580: int_ike_prores_bench01_bar3_tex
- 0x80E8E5C0: int_ike_prores_bench01_arei1_tex
- 0x80E8E640: int_ike_prores_bench01_arei2_tex
- 0x80E8E740: int_ike_prores_bench01_pole4_tex
- 0x80E8E780: int_ike_prores_bench01_v
- 0x80E8EEB0: int_ike_prores_bench01_on_model
- 0x80E8EF30: int_ike_prores_bench01_onT_model
- 0x80E8F0E0: int_ike_prores_fense01_pal
- 0x80E8F100: int_ike_prores_fense01_fense_tex
- 0x80E8F400: int_ike_prores_fense01_leg_tex
- 0x80E8F440: int_ike_prores_fense01_top_tex
- 0x80E8F480: int_ike_prores_fense01_side_tex
- 0x80E8F4C0: int_ike_prores_fense01_v
- 0x80E8F780: int_ike_prores_fense01_on_model
- 0x80E8F800: int_ike_prores_fense01_onT_model
- 0x80E8F9C0: int_ike_prores_ling01_mat_tex
- 0x80E8FE40: int_ike_prores_ling01_v
- 0x80E90300: int_ike_prores_ling01_on_model
- 0x80E90408: int_ike_prores_ling01_onT_model
- 0x80E905E0: int_ike_prores_ling01_mat2_tex
- 0x80E90A60: int_ike_prores_ling01_pole3_tex
- 0x80E90AE0: int_ike_prores_ling02_v
- 0x80E90FA0: int_ike_prores_ling02_on_model
- 0x80E910C0: int_ike_prores_ling02_onT_model
- 0x80E91180: int_ike_prores_ling03_pal
- 0x80E911A0: int_ike_prores_ling03_lope2_tex
- 0x80E91220: int_ike_prores_ling03_lope_tex
- 0x80E912A0: int_ike_prores_ling03_mat2_tex
- 0x80E91320: int_ike_prores_ling03_pole_tex
- 0x80E913A0: int_ike_prores_ling03_floor_tex
- 0x80E915A0: int_ike_prores_ling03_floorside_tex
- 0x80E91620: int_ike_prores_ling03_pole2_tex
- 0x80E916A0: int_ike_prores_ling03_base_tex
- 0x80E91720: int_ike_prores_ling03_pole3_tex
- 0x80E917A0: int_ike_prores_ling03_v
- 0x80E91C60: int_ike_prores_ling03_on_model
- 0x80E91D80: int_ike_prores_ling03_onT_model
- 0x80E91E40: int_ike_prores_mat01_pal
- 0x80E91E60: int_ike_prores_mat01_handle_tex
- 0x80E91EA0: int_ike_prores_mat01_top_tex
- 0x80E91FA0: int_ike_prores_mat01_side_tex
- 0x80E91FE0: int_ike_prores_mat01_v
- 0x80E92220: int_ike_prores_mat1_on_model
- 0x80E922A8: int_ike_prores_mat1_onT_model
- 0x80E92320: int_ike_prores_punch01_pal
- 0x80E92340: int_ike_prores_punch01_punch1_tex_pic_ci4_pal
- 0x80E92360: int_ike_prores_punch01_pole3_tex_txt
- 0x80E923A0: int_ike_prores_punch01_base2_tex_txt
- 0x80E924A0: int_ike_prores_punch01_pole2_tex_txt
- 0x80E92520: int_ike_prores_punch01_pole1_tex_txt
- 0x80E925A0: int_ike_prores_punch01_base3_tex_txt
- 0x80E92620: int_ike_prores_punch01_base1_tex_txt
- 0x80E92820: int_ike_prores_punch01_pole4_tex_txt
- 0x80E92860: int_ike_prores_punch01_punch1_tex_txt
- 0x80E928E0: int_ike_prores_punch01_v
- 0x80E92CC0: int_ike_prores_punch_ball_model
- 0x80E92D40: int_ike_prores_punch_base_model
- 0x80E92E80: cKF_ckcb_r_int_ike_prores_punch01_tbl
- 0x80E92E84: cKF_kn_int_ike_prores_punch01_tbl
- 0x80E92E8C: cKF_c_int_ike_prores_punch01_tbl
- 0x80E92E98: cKF_ds_int_ike_prores_punch01_tbl
- 0x80E92F28: cKF_ba_r_int_ike_prores_punch01
- 0x80E92F3C: cKF_je_r_int_ike_prores_punch01_tbl
- 0x80E92F54: cKF_bs_r_int_ike_prores_punch01
- 0x80E92F60: int_ike_prores_sandbag01_pal
- 0x80E92F80: int_ike_prores_sandbag01_bodyic1_tex_pic_ci4_pal
- 0x80E92FA0: int_ike_prores_sandbag01_base3_tex_txt
- 0x80E93020: int_ike_prores_sandbag01_pole3_tex_txt
- 0x80E93060: int_ike_prores_sandbag01_base1_tex_txt
- 0x80E93260: int_ike_prores_sandbag01_base2_tex_txt
- 0x80E93360: int_ike_prores_sandbag01_pole2_tex_txt
- 0x80E933E0: int_ike_prores_sandbag01_pole1_tex_txt
- 0x80E93460: int_ike_prores_sandbag01_pole4_tex_txt
- 0x80E934A0: int_ike_prores_sandbag01_bodyic1_tex_txt
- 0x80E935A0: int_ike_prores_sandbag01_v
- 0x80E93C30: int_ike_prores_sandbag_chain_model
- 0x80E93CD8: int_ike_prores_sandbag_body_model
- 0x80E93D90: int_ike_prores_sandbag_base_model
- 0x80E93EC0: cKF_ckcb_r_int_ike_prores_sandbag01_tbl
- 0x80E93EC4: cKF_kn_int_ike_prores_sandbag01_tbl
- 0x80E93ED0: cKF_c_int_ike_prores_sandbag01_tbl
- 0x80E93EDC: cKF_ds_int_ike_prores_sandbag01_tbl
- 0x80E93FA4: cKF_ba_r_int_ike_prores_sandbag01
- 0x80E93FB8: cKF_je_r_int_ike_prores_sandbag01_tbl
- 0x80E93FDC: cKF_bs_r_int_ike_prores_sandbag01
- 0x80E94000: int_ike_prores_table01_pal
- 0x80E94020: int_ike_prores_table01_front_tex
- 0x80E94320: int_ike_prores_table01_side_tex
- 0x80E944A0: int_ike_prores_table01_top_tex
- 0x80E945A0: int_ike_prores_table01_side2_tex
- 0x80E945E0: int_ike_prores_table01_under_tex
- 0x80E94660: int_ike_prores_table01_v
- 0x80E94AE0: int_ike_prores_table01_on_model
- 0x80E94B38: int_ike_prores_table01_onT_model
- 0x80E94C40: int_ike_pst_pig01_pal
- 0x80E94C60: int_ike_pst_pig01_base1_tex
- 0x80E94CE0: int_ike_pst_pig01_nose1_tex
- 0x80E94D60: int_ike_pst_pig01_ear1_tex
- 0x80E94DE0: int_ike_pst_pig01_eye1_tex
- 0x80E94E60: int_ike_pst_pig01_hole1_tex
- 0x80E94F60: int_ike_pst_pig01_hand1_tex
- 0x80E94FE0: int_ike_pst_pig01_tail1_tex
- 0x80E95060: int_ike_pst_pig01_mark1_tex
- 0x80E950E0: int_ike_pst_pig01_v
- 0x80E955E0: int_ike_pst_pig01_on_model
- 0x80E95700: int_ike_pst_pig01_onT_model
- 0x80E95780: int_ike_pst_tesyu01_pal
- 0x80E957A0: int_ike_pst_tesyu01_side1_tex
- 0x80E958A0: int_ike_pst_tesyu01_side2_tex
- 0x80E95920: int_ike_pst_tesyu01_top1_tex
- 0x80E95A20: int_ike_pst_tesyu01_tesyu1_tex
- 0x80E95C20: int_ike_pst_tesyu01_v
- 0x80E95E60: int_ike_pst_tesyu01_on_model
- 0x80E95EF8: int_ike_pst_tesyu01_offT_model
- 0x80E95F80: int_ike_tent_bike01_pal
- 0x80E95FA0: int_ike_tent_bike_tire1_tex_txt
- 0x80E961A0: int_ike_tent_bike_tire2_tex_txt
- 0x80E96220: int_ike_tent_bike_pedal1_tex_txt
- 0x80E96260: int_ike_tent_bike_tire3_tex_txt
- 0x80E96360: int_ike_tent_bike_handle2_tex_txt
- 0x80E963E0: int_ike_tent_bike_frame2_tex_txt
- 0x80E96460: int_ike_tent_bike_handle1_tex_txt
- 0x80E964E0: int_ike_tent_bike_chiar1_tex_txt
- 0x80E96520: int_ike_tent_bike_chiar2_tex_txt
- 0x80E96560: int_ike_tent_bike_frame1_tex_txt
- 0x80E96960: int_ike_tent_bike01_v
- 0x80E96FF0: int_ike_tent_bike01_model
- 0x80E97280: int_ike_tent_fire01_pal
- 0x80E975C0: int_ike_tent_fire01_pole1_tex_txt
- 0x80E97640: int_ike_tent_fire01_tree2_tex_txt
- 0x80E976C0: int_ike_tent_fire01_tree1_tex_txt
- 0x80E977C0: int_ike_tent_fire01_fire_pic_i4
- 0x80E979C0: int_ike_tent_fire01_fire2_pic_i4
- 0x80E97DC0: int_ike_tent_fire01_v
- 0x80E985A0: int_ike_tent_firetree_model
- 0x80E98918: int_ike_fire_model
- 0x80E98988: cKF_ckcb_r_int_ike_tent_fire01_tbl
- 0x80E9898C: cKF_c_int_ike_tent_fire01_tbl
- 0x80E989A4: cKF_ba_r_int_ike_tent_fire01
- 0x80E989B8: cKF_je_r_int_ike_tent_fire01_tbl
- 0x80E989DC: cKF_bs_r_int_ike_tent_fire01
- 0x80E98A00: int_ike_tent_fire02_pal
- 0x80E98A20: int_ike_tent_fire02_tree3_tex_txt
- 0x80E98AA0: int_ike_tent_fire02_tree2_tex_txt
- 0x80E98B20: int_ike_tent_fire02_tree5_tex_txt
- 0x80E98BA0: int_ike_tent_fire02_tree1_tex_txt
- 0x80E98C20: int_ike_tent_fire02_f2_4i4_pic_i4
- 0x80E99020: int_ike_tent_fire02_tex_4i4_pic_i4
- 0x80E99420: int_ike_tent_fire02_v
- 0x80E99A50: int_ike_tent_firetree02_model
- 0x80E99CC0: int_ike_fire1_model
- 0x80E99D38: cKF_ckcb_r_int_ike_tent_fire02_tbl
- 0x80E99D3C: cKF_c_int_ike_tent_fire02_tbl
- 0x80E99D54: cKF_ba_r_int_ike_tent_fire02
- 0x80E99D68: cKF_je_r_int_ike_tent_fire02_tbl
- 0x80E99D8C: cKF_bs_r_int_ike_tent_fire02
- 0x80E99DA0: int_ike_tent_kayak01_pal
- 0x80E99DC0: int_ike_tent_kayak_pab
- 0x80E99FC0: int_ike_tent_kayak_under
- 0x80E9A040: int_ike_tent_kayak_chair
- 0x80E9A140: int_ike_tent_kayak_topf
- 0x80E9A2C0: int_ike_tent_kayak_topr
- 0x80E9A440: int_ike_tent_kayak01_v
- 0x80E9A720: int_ike_tent_kayak01_on_model
- 0x80E9A820: int_ike_tent_kayak01_onT_model
- 0x80E9A8A0: int_ike_tent_knap01_pal
- 0x80E9A8C0: int_ike_tent_knap_frontside_txt
- 0x80E9A940: int_ike_tent_knap_top_txt
- 0x80E9AA40: int_ike_tent_knap_base_txt
- 0x80E9AB40: int_ike_tent_knap_topback_txt
- 0x80E9AC40: int_ike_tent_knap_side_txt
- 0x80E9ACC0: int_ike_tent_knap_back_txt
- 0x80E9ADC0: int_ike_tent_knap_front_txt
- 0x80E9AEC0: int_ike_tent_knap_topside_txt
- 0x80E9AF40: int_ike_tent_knap01_v
- 0x80E9B580: int_ike_tent_knap01_model
- 0x80E9B780: int_ike_tent_sleepbag01_pal
- 0x80E9B7A0: int_ike_tent_sleepbag_side1_tex_txt
- 0x80E9BBA0: int_ike_tent_sleepbag_in1_tex_txt
- 0x80E9BC20: int_ike_tent_sleepbag01_v
- 0x80E9BDD0: int_ike_tent_sleepbag01_model
- 0x80E9BE80: int_iku_bugzapper_pal
- 0x80E9BEA0: int_iku_bugzapper_d_tex_txt
- 0x80E9BFA0: int_iku_bugzapper_c_tex_txt
- 0x80E9C3A0: int_iku_bugzapper_a_tex_txt
- 0x80E9C420: int_iku_bugzapper_e_tex_txt
- 0x80E9C520: int_iku_bugzapper_v
- 0x80E9C920: int_iku_bugzapper_on_model
- 0x80E9CA48: int_iku_bugzapper_off_model
- 0x80E9CAC0: int_iku_busstop_pal
- 0x80E9CAE0: int_iku_basstop_all_tex_txt
- 0x80E9D2E0: int_iku_busstop_v
- 0x80E9D7B0: int_iku_busstop_model_model
- 0x80E9D880: int_iku_candy_pal
- 0x80E9D8A0: int_iku_candy_bb_tex_txt
- 0x80E9DCA0: int_iku_candy_ab_tex_txt
- 0x80E9E0A0: int_iku_candy_v
- 0x80E9E3E0: int_iku_candy_on_model
- 0x80E9E490: int_iku_candy_off_model
- 0x80E9E500: int_iku_cement_pal
- 0x80E9E520: int_iku_cement_a_tex_txt
- 0x80E9E720: int_iku_cement_d_tex_txt
- 0x80E9E820: int_iku_cement_f_tex_txt
- 0x80E9E920: int_iku_cement_c_tex_txt
- 0x80E9EA20: int_iku_cement_b_tex_txt
- 0x80E9EB20: int_iku_cement_e_tex_txt
- 0x80E9EC20: int_iku_cement_g_tex_txt
- 0x80E9ED20: int_iku_cement_v
- 0x80E9F210: int_iku_cement_model_model
- 0x80E9F3E0: int_iku_chair_pal
- 0x80E9F400: int_iku_chair_d_tex_txt
- 0x80E9F500: int_iku_chair_a_tex_txt
- 0x80E9F700: int_iku_chair_e_tex_txt
- 0x80E9F900: int_iku_chair_b_tex_txt
- 0x80E9FB00: int_iku_chair_c_tex_txt
- 0x80E9FC00: int_iku_chair_v
- 0x80EA02F0: int_iku_chair_model_model
- 0x80EA0440: int_iku_cocoa_pal
- 0x80EA0460: int_iku_cocoa_c_tex_txt
- 0x80EA0860: int_iku_cocoa_b_tex_txt
- 0x80EA0A60: int_iku_cocoa_a_tex_txt
- 0x80EA0C60: int_iku_cocoa_v
- 0x80EA0F70: int_iku_cocoa_on_model
- 0x80EA1028: int_iku_cocoa_off_model
- 0x80EA10A0: int_iku_cow_pal
- 0x80EA10C0: int_iku_cow_5_tex_txt
- 0x80EA11C0: int_iku_cow1_tex_txt
- 0x80EA15C0: int_iku_cow_4_tex_txt
- 0x80EA16C0: int_iku_cow_3_tex_txt
- 0x80EA17C0: int_iku_cow_2_tex_txt
- 0x80EA18C0: int_iku_cow_v
- 0x80EA1C20: int_iku_cow_model
- 0x80EA1D60: int_iku_denko_pal
- 0x80EA1D80: int_iku_denko_all_tex_txt
- 0x80EA2180: int_iku_denko_v
- 0x80EA2760: int_iku_denko_model_model
- 0x80EA2820: int_iku_flagman_pal
- 0x80EA2840: int_iku_flagman_all_tex_txt
- 0x80EA2C40: int_iku_flagman_v
- 0x80EA3220: int_iku_flagman_model_model
- 0x80EA32E0: int_iku_flip_top_pal
- 0x80EA3300: int_iku_flip_top_a_tex_txt
- 0x80EA3700: int_iku_flip_top_d_tex_txt
- 0x80EA3800: int_iku_flip_top_c_tex_txt
- 0x80EA3900: int_iku_flip_top_bd_tex_txt
- 0x80EA3B00: int_iku_flip_top_v
- 0x80EA4120: int_iku_flip_model_b_model
- 0x80EA4178: int_iku_flip_model_a_model
- 0x80EA42C0: int_iku_gold_green_pal
- 0x80EA42E0: int_iku_gold_green1_tex_txt
- 0x80EA44E0: int_iku_gold_green5_tex_txt
- 0x80EA46E0: int_iku_gold_green2_tex_txt
- 0x80EA48E0: int_iku_gold_green4_tex_txt
- 0x80EA49E0: int_iku_gold_green3_tex_txt
- 0x80EA4AE0: int_iku_gold_green_v
- 0x80EA4FF0: int_iku_gold_green_model
- 0x80EA5140: int_iku_gold_red_pal
- 0x80EA5160: int_iku_gold_red5_tex_txt
- 0x80EA5260: int_iku_gold_red2_tex_txt
- 0x80EA5460: int_iku_gold_red3_tex_txt
- 0x80EA5660: int_iku_gold_red1_tex_txt
- 0x80EA5860: int_iku_gold_red4_tex_txt
- 0x80EA5960: int_iku_gold_red_v
- 0x80EA5D40: int_iku_gold_red_model
- 0x80EA5E80: int_iku_ham_pal
- 0x80EA5EA0: int_iku_ham_c_tex_txt
- 0x80EA5FA0: int_iku_ham_e_tex_txt
- 0x80EA6020: int_iku_ham_a_tex_txt
- 0x80EA6220: int_iku_ham_f_tex_txt
- 0x80EA6620: int_iku_ham_v
- 0x80EA6B30: int_iku_ham_model_b_model
- 0x80EA6BE0: int_iku_ham_model_a_model
- 0x80EA6C80: int_iku_hazardous_pal
- 0x80EA6CA0: int_iku_hazardous_mark_tex_txt
- 0x80EA6EA0: int_iku_hazardous_top_tex_txt
- 0x80EA70A0: int_iku_hazardous_yoko_tex_txt
- 0x80EA74A0: int_iku_hazardous_v
- 0x80EA76E0: int_iku_hazardous_model_b_model
- 0x80EA7778: int_iku_hazardous_model_a_model
- 0x80EA77E0: int_iku_ido_pal
- 0x80EA7800: int_iku_ido_ab_tex_txt
- 0x80EA7A00: int_iku_ido_i_tex_txt
- 0x80EA7A80: int_iku_ido_h_tex_txt
- 0x80EA7B00: int_iku_ido_g_tex_txt
- 0x80EA7B80: int_iku_ido_f_tex_txt
- 0x80EA7D80: int_iku_ido_e_tex_txt
- 0x80EA7E00: int_iku_ido_c_tex_txt
- 0x80EA7E80: int_iku_ido_b_tex_txt
- 0x80EA7F80: int_iku_ido_j_tex_txt
- 0x80EA8000: int_iku_ido_d_tex_txt
- 0x80EA8080: int_iku_ido_v
- 0x80EA8780: int_iku_ido_model
- 0x80EA8960: int_iku_jack_pal
- 0x80EA8980: int_iku_jack_a_tex_txt
- 0x80EA8A00: int_iku_jack_b_tex_txt
- 0x80EA8E00: int_iku_jack_d_tex_txt
- 0x80EA8F00: int_iku_jack_c_tex_txt
- 0x80EA8F80: int_iku_jack_e_tex_txt
- 0x80EA9180: int_iku_jack_v
- 0x80EA9540: int_iku_jack_model_model
- 0x80EA9680: int_iku_jersey_pal
- 0x80EA96A0: int_iku_jersey_mae_tex_txt
- 0x80EA98A0: int_iku_jersey_yoko_tex_txt
- 0x80EA99A0: int_iku_jersey_v
- 0x80EA9C60: int_iku_jersey_model_model
- 0x80EA9D20: int_iku_mario_coin_a_pal
- 0x80EA9D40: int_iku_mario_coin_b_pal
- 0x80EA9D60: int_iku_mario_coin_c_pal
- 0x80EA9D80: int_iku_mario_coin_tex
- 0x80EA9F80: int_iku_mario_coin_center_tex
- 0x80EAA080: int_iku_mario_coin_v
- 0x80EAA340: int_iku_mario_coin_model
- 0x80EAA400: int_iku_mario_dokan_pal
- 0x80EAA420: int_iku_mario_dokan_b_tex_pic_ci4_pal
- 0x80EAA440: int_iku_mario_dokan_a_tex_txt
- 0x80EAA640: int_iku_mario_dokan_c_tex_txt
- 0x80EAA680: int_iku_mario_dokan_b_tex_txt
- 0x80EAA780: int_iku_mario_dokan_v
- 0x80EAAA70: int_iku_mario_dokan_model_b_model
- 0x80EAAB00: int_iku_mario_dokan_model_a_model
- 0x80EAABA0: int_iku_mario_hatena_a_pal
- 0x80EAABC0: int_iku_mario_hatena_b_pal
- 0x80EAABE0: int_iku_mario_hatena_c_pal
- 0x80EAAC00: int_iku_mario_hatena_a_tex_txt
- 0x80EAB000: int_iku_mario_hatena_v
- 0x80EAB5C0: int_iku_mario_hatena_model_b_model
- 0x80EAB628: int_iku_mario_hatena_model_a_model
- 0x80EAB6E0: int_iku_mario_koura_pal
- 0x80EAB700: int_iku_mario_koura_a_tex_txt
- 0x80EABB00: int_iku_mario_koura_b_tex_txt
- 0x80EABF00: int_iku_mario_koura_v
- 0x80EAC1E0: int_iku_mario_koura_model
- 0x80EAC2E0: int_iku_mario_renga_pal
- 0x80EAC300: int_iku_mario_renga_tex
- 0x80EAC700: int_iku_mario_renga_v
- 0x80EAC840: int_iku_mario_renga_on_model
- 0x80EAC8C0: int_iku_mario_star_c_pal
- 0x80EAC8E0: int_iku_mario_star_a_pal
- 0x80EAC900: int_iku_mario_star_b_pal
- 0x80EAC920: int_iku_mario_star_d_pal
- 0x80EAC940: int_iku_mario_star_a_tex_txt
- 0x80EAC9C0: int_iku_mario_star_v
- 0x80EACBC0: int_iku_mario_star_model
- 0x80EACC80: int_iku_mario_taihou_pal
- 0x80EACCA0: int_iku_mario_taihou_a_tex_txt
- 0x80EACEA0: int_iku_mario_taihou_e_tex_txt
- 0x80EAD0A0: int_iku_mario_taihou_d_tex_txt
- 0x80EAD2A0: int_iku_mario_taihou_c_tex_txt
- 0x80EAD3A0: int_iku_mario_taihou_b_tex_txt
- 0x80EAD7A0: int_iku_mario_taihou_v
- 0x80EADB60: int_iku_mario_taihou_model
- 0x80EADCA0: int_iku_orange_pal
- 0x80EADCC0: int_iku_orange_b_tex_txt
- 0x80EADEC0: int_iku_orange_a_tex_txt
- 0x80EAE0C0: int_iku_orange_c_tex_txt
- 0x80EAE4C0: int_iku_orange_v
- 0x80EAE700: int_iku_orange_model_b_model
- 0x80EAE798: int_iku_orange_model_a_model
- 0x80EAE800: int_iku_reducespeed_pal
- 0x80EAE820: int_iku_reducespeed_all_tex_txt
- 0x80EAEC20: int_iku_reducespeed_v
- 0x80EAF0F0: int_iku_reducespeed_model_model
- 0x80EAF1C0: int_iku_roller_pal
- 0x80EAF1E0: int_iku_roller_g_tex_txt
- 0x80EAF260: int_iku_roller_b_tex_txt
- 0x80EAF460: int_iku_roller_e_tex_txt
- 0x80EAF4E0: int_iku_roller_d_tex_txt
- 0x80EAF5E0: int_iku_roller_c_tex_txt
- 0x80EAF6E0: int_iku_roller_f_tex_txt
- 0x80EAF7E0: int_iku_roller_a_tex_txt
- 0x80EAF9E0: int_iku_roller_v
- 0x80EAFFB0: int_iku_roller_on_model
- 0x80EB0108: int_iku_roller_off_model
- 0x80EB0160: int_iku_saku_a_pal
- 0x80EB0180: int_iku_saku_a_b_tex_txt
- 0x80EB0200: int_iku_saku_a_a_tex_txt
- 0x80EB0400: int_iku_saku_a_c_tex_txt
- 0x80EB0480: int_iku_saku_a_h_tex_txt
- 0x80EB0580: int_iku_saku_a_g_tex_txt
- 0x80EB0980: int_iku_saku_a_f_tex_txt
- 0x80EB0A00: int_iku_saku_a_d_tex_txt
- 0x80EB0B00: int_iku_saku_a_e_tex_txt
- 0x80EB0C00: int_iku_saku_a_v
- 0x80EB11A0: int_iku_saku_a_model_b_model
- 0x80EB12C8: int_iku_saku_a_model_a_model
- 0x80EB13A0: int_iku_saku_b_pal
- 0x80EB13C0: int_iku_saku_b_b_tex_txt
- 0x80EB1440: int_iku_saku_b_a_tex_txt
- 0x80EB1640: int_iku_saku_b_c_tex_txt
- 0x80EB16C0: int_iku_saku_b_v
- 0x80EB1960: int_iku_saku_b_model_model
- 0x80EB1A40: int_iku_sawhorsev_pal
- 0x80EB1A60: int_iku_sawhorsev_a_tex_txt
- 0x80EB1C60: int_iku_sawhorsev_b_tex_txt
- 0x80EB1E60: int_iku_sawhorsev_c_tex_txt
- 0x80EB1F60: int_iku_sawhorsev_d_tex_txt
- 0x80EB2060: int_iku_sawhorsev_v
- 0x80EB26D0: int_iku_sawhorsev_model_model
- 0x80EB2820: int_iku_slip_pal
- 0x80EB2840: int_iku_slip_all_tex_txt
- 0x80EB2C40: int_iku_slip_v
- 0x80EB3220: int_iku_slip_model_model
- 0x80EB32E0: int_iku_tumble_pal
- 0x80EB3300: int_iku_tumble_tex_txt
- 0x80EB3B00: int_iku_tumble_v
- 0x80EB3E50: int_iku_tumble_model
- 0x80EB3F20: int_iku_turkey_bed_pal
- 0x80EB3F40: int_iku_turkey_bed_h_tex_txt
- 0x80EB4040: int_iku_turkey_bed_d_tex_txt
- 0x80EB4140: int_iku_turkey_bed_b_tex_txt
- 0x80EB4240: int_iku_turkey_bed_c_tex_txt
- 0x80EB4340: int_iku_turkey_bed_a_tex_txt
- 0x80EB4540: int_iku_turkey_bed_f_tex_txt
- 0x80EB4640: int_iku_turkey_bed_e_tex_txt
- 0x80EB4740: int_iku_turkey_bed_g_tex_txt
- 0x80EB4840: int_iku_turkey_bed_i_tex_txt
- 0x80EB4940: int_iku_turkey_bed_v
- 0x80EB4F40: int_iku_turkey_bed_modl_a_model
- 0x80EB50D8: int_iku_turkey_bed_model_b_model
- 0x80EB5140: int_iku_turkey_lamp_pal
- 0x80EB5160: int_iku_turkey_lamp_c_txt
- 0x80EB5260: int_iku_turkey_lamp_d_txt
- 0x80EB5360: int_iku_turkey_lamp_e_txt
- 0x80EB5560: int_iku_turkey_lamp_b_txt
- 0x80EB5760: int_iku_turkey_lamp_a_txt
- 0x80EB5960: int_iku_turkey_lamp_v
- 0x80EB5DE0: int_iku_turkey_lamp_model
- 0x80EB5F20: int_iku_turkey_table_pal
- 0x80EB5F40: int_iku_turkey_table_a_txt
- 0x80EB6140: int_iku_turkey_table_b_txt
- 0x80EB6240: int_iku_turkey_table_d_txt
- 0x80EB6440: int_iku_turkey_table_e_txt
- 0x80EB6540: int_iku_turkey_table_c_txt
- 0x80EB6640: int_iku_turkey_table_v
- 0x80EB69D0: int_iku_turkey_table_model_b_model
- 0x80EB6AD0: int_iku_turkey_table_model_a_model
- 0x80EB6B40: int_iku_turkey_TV_pal
- 0x80EB6B60: int_iku_turkey_TV_c_tex_txt
- 0x80EB6D60: int_iku_turkey_TV_b_tex_txt
- 0x80EB6E60: int_iku_turkey_TV_a_tex_txt
- 0x80EB6F60: int_iku_turkey_TV_d_tex_txt
- 0x80EB7060: int_iku_turkey_TV_e_tex_txt
- 0x80EB7260: int_iku_turkey_TV_f_tex_txt
- 0x80EB72E0: int_iku_turkey_TV_g_tex_txt
- 0x80EB7360: int_iku_turkey_TV_h_tex_txt
- 0x80EB73E0: int_iku_turkey_TV_i_tex_txt
- 0x80EB7460: int_iku_turkey_TV_v
- 0x80EB78A0: int_iku_turkey_TV_model_b_model
- 0x80EB7900: int_iku_turkey_TV_model_a_model
- 0x80EB7A20: int_iku_ukai_pal
- 0x80EB7A40: int_iku_ukai_all_tex_txt
- 0x80EB7E40: int_iku_ukai_v
- 0x80EB8420: int_iku_ukai_mode_a_model
- 0x80EB84E0: int_iku_work_pal
- 0x80EB8500: int_iku_work_all_tex_txt
- 0x80EB8900: int_iku_work_v
- 0x80EB8EE0: int_iku_work_model_model
- 0x80EB9320: act_m_mu_abura1_1T_model
- 0x80EB93E8: act_m_mu_abura1_2T_model
- 0x80EB9770: act_m_mu_akiakane1_1T_model
- 0x80EB9838: act_m_mu_akiakane1_2T_model
- 0x80EB9900: act_m_mu_akiakane2_2T_model
- 0x80EB9C48: act_m_mu_amenbo1T_model
- 0x80EB9D10: act_m_mu_amenbo2T_model
- 0x80EB9F58: act_m_mu_ariT_model
- 0x80EBA270: act_m_mu_dango1T_model
- 0x80EBA338: act_m_mu_dango2T_model
- 0x80EBA6E0: act_m_mu_danna1T_model
- 0x80EBA7A8: act_m_mu_danna2T_model
- 0x80EBA880: act_m_genji_pal
- 0x80EBA8A0: act_m_genji
- 0x80EBA9A0: act_m_genji_v
- 0x80EBAA00: act_m_mu_genji_modelT
- 0x80EBAD60: act_m_mu_genji2_d_model
- 0x80EBADF8: act_m_mu_genji2_c_model
- 0x80EBAE90: act_m_mu_genji2_b_model
- 0x80EBAF28: act_m_mu_genji2_a_model
- 0x80EBB280: act_m_mu_ginyanma1_1T_model
- 0x80EBB348: act_m_mu_ginyanma1_2T_model
- 0x80EBB410: act_m_mu_ginyanma2_2T_model
- 0x80EBB7B8: act_m_mu_gomadara1T_model
- 0x80EBBC00: act_m_mu_hachi1_1T_model
- 0x80EBBCC8: act_m_mu_hachi1_2T_model
- 0x80EBBD90: act_m_mu_hachi2_2T_model
- 0x80EBC1D8: act_m_mu_higurashi1_1T_model
- 0x80EBC2A0: act_m_mu_higurashi1_2T_model
- 0x80EBC648: act_m_mu_hirata1T_model
- 0x80EBC710: cKF_ckcb_r_act_m_hirata_b_tbl
- 0x80EBC718: cKF_kn_act_m_hirata_b_tbl
- 0x80EBC71C: cKF_c_act_m_hirata_b_tbl
- 0x80EBC73C: cKF_ds_act_m_hirata_b_tbl
- 0x80EBC7A8: cKF_ba_r_act_m_hirata_b
- 0x80EBC7C0: act_m_hirata_txt
- 0x80EBCFC0: act_m_hirata_b_v
- 0x80EBD0E0: act_m_hirata_b_left_model
- 0x80EBD188: act_m_hirata_b_right_model
- 0x80EBD230: act_m_hirata_b_base_model
- 0x80EBD2C8: cKF_je_r_act_m_hirata_b_tbl
- 0x80EBD304: cKF_bs_r_act_m_hirata_b
- 0x80EBD630: act_m_mu_ka1T_model
- 0x80EBD6F8: act_m_mu_ka2_1T_model
- 0x80EBD7C0: act_m_mu_ka2_2T_model
- 0x80EBDB88: act_m_mu_kabuto1T_model
- 0x80EBDF98: act_m_mu_kamakiri1T_model
- 0x80EBE0A0: act_m_mu_kamakiri2_2T_model
- 0x80EBE448: act_m_mu_kanabun1T_model
- 0x80EBE690: act_m_mu_keraT_model
- 0x80EBEA38: act_m_mu_kiageha1T_model
- 0x80EBEB00: act_m_mu_kiageha2T_model
- 0x80EBEF18: act_m_mu_kirigirisu1T_model
- 0x80EBEFF8: act_m_mu_kirigirisu2_2T_model
- 0x80EBF2F8: act_m_mu_koorogi1T_model
- 0x80EBF3C0: act_m_mu_koorogi2_2T_model
- 0x80EBF720: act_m_mu_kumo1_1T_model
- 0x80EBF7E8: act_m_mu_kumo1_2T_model
- 0x80EBF8B0: act_m_mu_kumo2T_model
- 0x80EBFC90: act_m_mu_maimaiT_model
- 0x80EBFFC0: act_m_mu_matumushi1T_model
- 0x80EC0088: act_m_mu_matumushi2_2T_model
- 0x80EC04C8: act_m_mu_minmin1_1T_model
- 0x80EC0590: act_m_mu_minmin1_2T_model
- 0x80EC09A8: act_m_mu_mino1_1T_model
- 0x80EC0A70: act_m_mu_mino1_2T_model
- 0x80EC0B40: act_m_mu_mino2T_model
- 0x80EC0EE0: act_m_mu_miyama1T_model
- 0x80EC0FA8: cKF_ckcb_r_act_m_miyama_b_tbl
- 0x80EC0FB0: cKF_kn_act_m_miyama_b_tbl
- 0x80EC0FB4: cKF_c_act_m_miyama_b_tbl
- 0x80EC0FD4: cKF_ds_act_m_miyama_b_tbl
- 0x80EC1040: cKF_ba_r_act_m_miyama_b
- 0x80EC1058: act_m_miyama_txt
- 0x80EC1858: act_m_miyama_b_v
- 0x80EC1978: act_m_miyama_b_left_model
- 0x80EC1A20: act_m_miyama_b_right_model
- 0x80EC1AC8: act_m_miyama_b_base_model
- 0x80EC1B60: cKF_je_r_act_m_miyama_b_tbl
- 0x80EC1B9C: cKF_bs_r_act_m_miyama_b
- 0x80EC1D08: act_m_mu_monki1T_model
- 0x80EC1DD0: act_m_mu_monki2T_model
- 0x80EC1FF8: act_m_mu_monshiro1T_model
- 0x80EC20C0: act_m_mu_monshiro2T_model
- 0x80EC2478: act_m_mu_nanahoshi1T_model
- 0x80EC2570: act_m_mu_nanahoshi2T_model
- 0x80EC2948: act_m_mu_nokogiri1T_model
- 0x80EC2A10: cKF_ckcb_r_act_m_nokogiri_b_tbl
- 0x80EC2A18: cKF_kn_act_m_nokogiri_b_tbl
- 0x80EC2A1C: cKF_c_act_m_nokogiri_b_tbl
- 0x80EC2A3C: cKF_ds_act_m_nokogiri_b_tbl
- 0x80EC2AA8: cKF_ba_r_act_m_nokogiri_b
- 0x80EC2AC0: act_m_nokogiri_txt
- 0x80EC32C0: act_m_nokogiri_b_v
- 0x80EC33E0: act_m_nokogiri_b_left_model
- 0x80EC3488: act_m_nokogiri_b_right_model
- 0x80EC3530: act_m_nokogiri_b_base_model
- 0x80EC35C8: cKF_je_r_act_m_nokogiri_b_tbl
- 0x80EC3604: cKF_bs_r_act_m_nokogiri_b
- 0x80EC38F0: act_m_mu_ohmurasaki1T_model
- 0x80EC39B8: act_m_mu_ohmurasaki2T_model
- 0x80EC3D60: act_m_mu_okuwa1T_model
- 0x80EC3E28: cKF_ckcb_r_act_m_okuwa_b_tbl
- 0x80EC3E30: cKF_kn_act_m_okuwa_b_tbl
- 0x80EC3E34: cKF_c_act_m_okuwa_b_tbl
- 0x80EC3E54: cKF_ds_act_m_okuwa_b_tbl
- 0x80EC3ECC: cKF_ba_r_act_m_okuwa_b
- 0x80EC3EE0: act_m_okuwa_txt
- 0x80EC46E0: act_m_okuwa_b_v
- 0x80EC4800: act_m_okuwa_b_left_model
- 0x80EC48A8: act_m_okuwa_b_right_model
- 0x80EC4950: act_m_okuwa_b_base_model
- 0x80EC49E8: cKF_je_r_act_m_okuwa_b_tbl
- 0x80EC4A24: cKF_bs_r_act_m_okuwa_b
- 0x80EC4CF0: act_m_mu_oniyanma1_1T_model
- 0x80EC4DB8: act_m_mu_oniyanma1_2T_model
- 0x80EC4E80: act_m_mu_oniyanma2_2T_model
- 0x80EC4F88: ef_shadow_insect_modelT
- 0x80EC52D0: act_m_mu_shiokara1_1T_model
- 0x80EC5398: act_m_mu_shiokara1_2T_model
- 0x80EC5460: act_m_mu_shiokara2_2T_model
- 0x80EC57E8: act_m_mu_suzumushi1T_model
- 0x80EC58B0: act_m_mu_suzumushi2_2T_model
- 0x80EC5CA0: act_m_mu_syouryou1T_model
- 0x80EC5D78: act_m_mu_syouryou2_2T_model
- 0x80EC6118: act_m_mu_tamamushi1T_model
- 0x80EC64D0: act_m_mu_tentou1T_model
- 0x80EC65C8: act_m_mu_tentou2T_model
- 0x80EC6A00: act_m_mu_tonosama1T_model
- 0x80EC6AD8: act_m_mu_tonosama2_2T_model
- 0x80EC6F18: act_m_mu_tukutuku1_1T_model
- 0x80EC6FE0: act_m_mu_tukutuku1_2T_model
- 0x80EC70A8: obj_museum4_water1_tex_rgb_i4
- 0x80EC72A8: obj_museum4_water2_tex_rgb_i4
- 0x80EC74A8: obj_museum4_water_v
- 0x80EC74E8: obj_museum4_water_modelT
- 0x80EC75B8: obj_museum4_water_evw_anime_1
- 0x80EC75C0: obj_museum4_water_evw_anime
- 0x80EC75C8: insect_price_table
- 0x80EC7640: rom_kamakura_carp_pal
- 0x80EC7660: rom_kamakura_goza_pal
- 0x80EC7680: rom_kamakura_yuki_pal
- 0x80EC76A0: rom_kamakura_rou_pal
- 0x80EC76C0: rom_kamakura_a1_pal
- 0x80EC76E0: rom_kamakura_nabe_pal
- 0x80EC7700: rom_kamakura_carp
- 0x80EC7F00: rom_kamakura_goza
- 0x80EC8100: rom_kamakura_yuki1
- 0x80EC8500: rom_kamakura_yuki2
- 0x80EC8D00: rom_kamakura_yuki3
- 0x80EC9100: rom_kamakura_yuki4
- 0x80EC9300: rom_kamakura_rou
- 0x80EC9400: rom_kamakura_a1
- 0x80EC9600: rom_kamakura_wa
- 0x80EC9680: rom_kamakura_nabe1
- 0x80EC9700: rom_kamakura_etc
- 0x80EC9F00: rom_kamakura_kage_us
- 0x80EC9F80: rom_kamakura_a2_rgb_ci4
- 0x80ECA180: rom_kamakura__takibi1_int_i4
- 0x80ECA280: rom_kamakura__takibi2_int_i4
- 0x80ECA380: rom_kamakura_fire1_rgb_i4
- 0x80ECA400: rom_kamakura_fire2_rgb_i4
- 0x80ECA480: rom_kamakura_fire3_rgb_i4
- 0x80ECA500: rom_kamakura_v
- 0x80ECB890: rom_kamakura_modelT
- 0x80ECB9C8: rom_kamakura_model
- 0x80ECBD70: rom_kamakura_ring1
- 0x80ECBE70: rom_kamakura_ring_v
- 0x80ECBEB0: rom_kamakura_ring_modelT
- 0x80ECC340: cam_win_camera_tex
- 0x80ECC740: ban_win_waku3_tex
- 0x80ECC940: ban_win_waku4_tex
- 0x80ECCBC0: elc_win_moji_tex
- 0x80ECCC40: elc_win_z_tex
- 0x80ECD040: elc_win_light_tex
- 0x80ECD440: cam_win_v
- 0x80ECD840: cam_win_yajirushi_model
- 0x80ECD898: elc_win_moji_model
- 0x80ECD8E0: cam_win_winT_model
- 0x80ECD950: cam_win_cT_model
- 0x80ECD990: cam_win_mojiT_model
- 0x80ECD9D8: elc_win_winT_model
- 0x80ECDA40: elc_win_zT_model
- 0x80ECDA90: elc_win_moji2T_model
- 0x80ECDAD8: cKF_ckcb_r_clk_hiniti_tbl
- 0x80ECDADC: cKF_kn_clk_hiniti_tbl
- 0x80ECDAE0: cKF_c_clk_hiniti_tbl
- 0x80ECDAFC: cKF_ds_clk_hiniti_tbl
- 0x80ECDB2C: cKF_ba_r_clk_hiniti
- 0x80ECDB40: clk_win_suuji1_TA_tex_txt
- 0x80ECDF40: clk_win_suuji2_TA_tex_txt
- 0x80ECE340: clk_win_suuji3_TA_tex_txt
- 0x80ECE740: clk_win_suuji4_TA_tex_txt
- 0x80ECEB40: clk_win_suuji5_TA_tex_txt
- 0x80ECEF40: clk_win_suuji6_TA_tex_txt
- 0x80ECF340: clk_win_suuji7_TA_tex_txt
- 0x80ECF740: clk_win_suuji8_TA_tex_txt
- 0x80ECFB40: clk_win_suuji9_TA_tex_txt
- 0x80ECFF40: clk_win_suuji10_TA_tex_txt
- 0x80ED0340: clk_win_suuji11_TA_tex_txt
- 0x80ED0740: clk_win_suuji12_TA_tex_txt
- 0x80ED0B40: clk_win_suuji13_TA_tex_txt
- 0x80ED0F40: clk_win_suuji14_TA_tex_txt
- 0x80ED1340: clk_win_suuji15_TA_tex_txt
- 0x80ED1740: clk_win_suuji16_TA_tex_txt
- 0x80ED1B40: clk_win_suuji17_TA_tex_txt
- 0x80ED1F40: clk_win_suuji18_TA_tex_txt
- 0x80ED2340: clk_win_suuji19_TA_tex_txt
- 0x80ED2740: clk_win_suuji20_TA_tex_txt
- 0x80ED2B40: clk_win_suuji21_TA_tex_txt
- 0x80ED2F40: clk_win_suuji22_TA_tex_txt
- 0x80ED3340: clk_win_suuji23_TA_tex_txt
- 0x80ED3740: clk_win_suuji24_TA_tex_txt
- 0x80ED3B40: clk_win_suuji25_TA_tex_txt
- 0x80ED3F40: clk_win_suuji26_TA_tex_txt
- 0x80ED4340: clk_win_suuji27_TA_tex_txt
- 0x80ED4740: clk_win_suuji28_TA_tex_txt
- 0x80ED4B40: clk_win_suuji29_TA_tex_txt
- 0x80ED4F40: clk_win_suuji30_TA_tex_txt
- 0x80ED5340: clk_win_suuji31_TA_tex_txt
- 0x80ED5740: clk_hiniti_v
- 0x80ED5840: clk_win_hiniti3_bottom_model
- 0x80ED5870: clk_win_hiniti1_top_model
- 0x80ED58A0: clk_win_hiniti2_middle_model
- 0x80ED58E8: cKF_je_r_clk_hiniti_tbl
- 0x80ED5918: cKF_bs_r_clk_hiniti
- 0x80ED5920: cKF_ckcb_r_clk_jikan_tbl
- 0x80ED5924: cKF_kn_clk_jikan_tbl
- 0x80ED5928: cKF_c_clk_jikan_tbl
- 0x80ED5944: cKF_ds_clk_jikan_tbl
- 0x80ED5964: cKF_ba_r_clk_jikan
- 0x80ED5980: clk_win_jikan0_TA_tex_txt
- 0x80ED5A80: clk_win_jikan1_TA_tex_txt
- 0x80ED5B80: clk_win_jikan2_TA_tex_txt
- 0x80ED5C80: clk_win_jikan3_TA_tex_txt
- 0x80ED5D80: clk_win_jikan4_TA_tex_txt
- 0x80ED5E80: clk_win_jikan5_TA_tex_txt
- 0x80ED5F80: clk_win_jikan6_TA_tex_txt
- 0x80ED6080: clk_win_jikan7_TA_tex_txt
- 0x80ED6180: clk_win_jikan8_TA_tex_txt
- 0x80ED6280: clk_win_jikan9_TA_tex_txt
- 0x80ED6380: clk_win_jikan_TA_tex_txt
- 0x80ED6480: clk_jikan_v
- 0x80ED6580: clk_win_jikan3_bottom_model
- 0x80ED65B0: clk_win_jikan1_top_model
- 0x80ED65E0: clk_win_jikan2_middle_model
- 0x80ED6628: cKF_je_r_clk_jikan_tbl
- 0x80ED6658: cKF_bs_r_clk_jikan
- 0x80ED6660: maru
- 0x80ED6760: clk_win_am_tex_rgb_ia8
- 0x80ED6B60: clk_win_pm_tex_rgb_ia8
- 0x80ED6F60: clk_win_fri_tex_rgb_ia8
- 0x80ED7360: clk_win_mon_tex_rgb_ia8
- 0x80ED7760: clk_win_sat_tex_rgb_ia8
- 0x80ED7B60: clk_win_sun_tex_rgb_ia8
- 0x80ED7F60: clk_win_thu_tex_rgb_ia8
- 0x80ED8360: clk_win_tue_tex_rgb_ia8
- 0x80ED8760: clk_win_wed_tex_rgb_ia8
- 0x80ED8B60: clk_win_v
- 0x80ED8CA0: clk_win_youbiT_model
- 0x80ED8CC8: clk_win_maru2T_model
- 0x80ED8CF8: clk_win_ampmT_model
- 0x80ED8D20: clk_win_maruT_model
- 0x80ED8D48: clk_win_mode
- 0x80ED8D70: no_txt
- 0x80ED8E70: np_txt
- 0x80ED8F70: nt_txt
- 0x80ED9070: nx_txt
- 0x80ED9170: darrow_model
- 0x80ED91D0: darrow_v
- 0x80ED9410: camera_model
- 0x80ED9488: camera_v
- 0x80ED9708: v_debug_texture
- 0x80ED9748: RCP_debug_texture_16x16_8
- 0x80ED9760: ef_wape_tex
- 0x80ED97A0: ef_wipe1_v
- 0x80ED9BE0: ef_wipe1_modelT
- 0x80ED9CD0: ef_wipe2_v
- 0x80EDA130: ef_wipe2_modelT
- 0x80EDA228: ef_wipe3_v
- 0x80EDA688: ef_wipe3_modelT
- 0x80EDA778: ef_shadow_in_0
- 0x80EDA8B8: ef_shadow_in_modelT
- 0x80EDA940: ef_shadow_out_0_int_i4
- 0x80EDAA40: ef_shadow_out_1_int_i4
- 0x80EDAB40: ef_shadow_out_v
- 0x80EDAB80: ef_shadow_out_modelT
- 0x80EDAC40: obj_item_axe_pal
- 0x80EDAC60: obj_item_axe_tex
- 0x80EDAE60: obj_item_axe_v
- 0x80EDAEA0: obj_item_axeT_mat_model
- 0x80EDAEE8: obj_item_axeT_gfx_model
- 0x80EDAF00: obj_item_axe2_pal
- 0x80EDAF20: obj_item_axe2_tex
- 0x80EDB120: obj_item_axe2_v
- 0x80EDB160: obj_item_axe2T_mat_model
- 0x80EDB1A8: obj_item_axe2T_gfx_model
- 0x80EDB1C0: obj_item_carpet_pal
- 0x80EDB1E0: obj_item_carpet_tex
- 0x80EDB3E0: obj_item_carpet_v
- 0x80EDB420: obj_item_carpetT_mat_model
- 0x80EDB468: obj_item_carpetT_gfx_model
- 0x80EDB480: obj_item_fuku_pal
- 0x80EDB4A0: obj_item_fuku_tex
- 0x80EDB6A0: obj_item_fuku_v
- 0x80EDB6E0: obj_item_fukuT_mat_model
- 0x80EDB728: obj_item_fukuT_gfx_model
- 0x80EDB740: obj_item_kaza_pal
- 0x80EDB760: obj_item_kaza_tex
- 0x80EDB960: obj_item_kaza_v
- 0x80EDB9A0: obj_item_kazaT_mat_model
- 0x80EDB9E8: obj_item_kazaT_gfx_model
- 0x80EDBA00: obj_item_net_pal
- 0x80EDBA20: obj_item_net_tex
- 0x80EDBC20: obj_item_net_v
- 0x80EDBC60: obj_item_netT_mat_model
- 0x80EDBCA8: obj_item_netT_gfx_model
- 0x80EDBCC0: obj_item_net2_pal
- 0x80EDBCE0: obj_item_net2_tex
- 0x80EDBEE0: obj_item_net2_v
- 0x80EDBF20: obj_item_net2T_mat_model
- 0x80EDBF68: obj_item_net2T_gfx_model
- 0x80EDBF80: obj_item_paper_pal
- 0x80EDBFA0: obj_item_paper_tex
- 0x80EDC1A0: obj_item_paper_v
- 0x80EDC1E0: obj_item_paperT_mat_model
- 0x80EDC228: obj_item_paperT_gfx_model
- 0x80EDC240: obj_item_rod_pal
- 0x80EDC260: obj_item_rod_tex
- 0x80EDC460: obj_item_rod_v
- 0x80EDC4A0: obj_item_rodT_mat_model
- 0x80EDC4E8: obj_item_rodT_gfx_model
- 0x80EDC520: obj_item_rod2_tex
- 0x80EDC720: obj_item_rod2_v
- 0x80EDC760: obj_item_rod2T_mat_model
- 0x80EDC7A8: obj_item_rod2T_gfx_model
- 0x80EDC7C0: obj_item_seed_pal
- 0x80EDC7E0: obj_item_seed_tex
- 0x80EDC9E0: obj_item_seed_v
- 0x80EDCA20: obj_item_seedT_mat_model
- 0x80EDCA68: obj_item_seedT_gfx_model
- 0x80EDCA80: obj_item_shovel_pal
- 0x80EDCAA0: obj_item_shovel_tex
- 0x80EDCCA0: obj_item_shovel_v
- 0x80EDCCE0: obj_item_shovelT_mat_model
- 0x80EDCD28: obj_item_shovelT_gfx_model
- 0x80EDCD60: obj_item_shovel2_tex
- 0x80EDCF60: obj_item_shovel2_v
- 0x80EDCFA0: obj_item_shovel2T_mat_model
- 0x80EDCFE8: obj_item_shovel2T_gfx_model
- 0x80EDD000: obj_item_taisou_pal
- 0x80EDD020: obj_item_taisou_tex
- 0x80EDD220: obj_item_taisou_v
- 0x80EDD260: obj_item_taisouT_mat_model
- 0x80EDD2A8: obj_item_taisouT_gfx_model
- 0x80EDD2C0: obj_item_ticket_pal
- 0x80EDD2E0: obj_item_ticket_tex
- 0x80EDD4E0: obj_item_ticket_v
- 0x80EDD520: obj_item_ticketT_mat_model
- 0x80EDD568: obj_item_ticketT_gfx_model
- 0x80EDD580: obj_item_utiwa_pal
- 0x80EDD5A0: obj_item_utiwa_tex
- 0x80EDD7A0: obj_item_utiwa_v
- 0x80EDD7E0: obj_item_utiwaT_mat_model
- 0x80EDD828: obj_item_utiwaT_gfx_model
- 0x80EDD840: obj_item_wall_pal
- 0x80EDD860: obj_item_wall_tex
- 0x80EDDA60: obj_item_wall_v
- 0x80EDDAA0: obj_item_wallT_mat_model
- 0x80EDDAE8: obj_item_wallT_gfx_model
- 0x80EDDD60: apple_DL_mode
- 0x80EDDDA8: apple_DL_vtx
- 0x80EDDDC0: obj_item_bag_pal
- 0x80EDDDE0: obj_item_bag_tex
- 0x80EDDFE0: obj_item_bag_v
- 0x80EDE020: bag_DL_mode
- 0x80EDE068: bag_DL_vtx
- 0x80EDE080: obj_item_bone_pal
- 0x80EDE0A0: obj_item_bone_tex
- 0x80EDE2A0: obj_item_bone_v
- 0x80EDE2E0: obj_item_boneT_mat_model
- 0x80EDE328: obj_item_boneT_gfx_model
- 0x80EDE340: obj_item_box_pal
- 0x80EDE360: obj_item_box_tex
- 0x80EDE560: obj_item_box_v
- 0x80EDE5A0: box_DL_mode
- 0x80EDE5E8: box_DL_vtx
- 0x80EDE600: obj_item_cage_pal
- 0x80EDE620: obj_item_cage_tex
- 0x80EDE820: obj_item_cage_v
- 0x80EDE860: obj_cageT_mat_model
- 0x80EDE8A8: obj_cageT_gfx_model
- 0x80EDE8C0: obj_shop_candy_pal
- 0x80EDE8E0: obj_shop_candy_tex
- 0x80EDEAE0: obj_shop_candy_v
- 0x80EDEB20: obj_shop_candy_mat_modelT
- 0x80EDEB68: obj_shop_candy_gfx_modelT
- 0x80EDEB80: obj_shop_candy_modelT
- 0x80EDEBA0: obj_item_cloth_pal
- 0x80EDEBC0: obj_item_cloth_tex
- 0x80EDEDC0: obj_item_cloth_v
- 0x80EDEE00: obj_item_clothT_mat_model
- 0x80EDEE48: obj_item_clothT_gfx_model
- 0x80EDEE60: obj_item_coco_pal
- 0x80EDEE80: obj_item_coco_tex
- 0x80EDF080: obj_item_coco_v
- 0x80EDF0C0: obj_item_cocoT_mat_model
- 0x80EDF108: obj_item_cocoT_gfx_model
- 0x80EDF120: obj_item_diary_pal
- 0x80EDF140: obj_item_diary_tex
- 0x80EDF340: obj_item_diary_v
- 0x80EDF380: obj_item_diaryT_mat_model
- 0x80EDF3C8: obj_item_diaryT_gfx_model
- 0x80EDF3E0: obj_item_fish_v
- 0x80EDF640: fish_DL_mode
- 0x80EDF6E0: fish_DL_vtx
- 0x80EDF700: obj_item_fork_pal
- 0x80EDF720: obj_item_fork
- 0x80EDF920: obj_item_fork_v
- 0x80EDF960: obj_item_fork_onT_mat_model
- 0x80EDF9A8: obj_item_fork_onT_gfx_model
- 0x80EDF9E0: obj_item_fossil_tex
- 0x80EDFC20: obj_fossilT_mat_model
- 0x80EDFC68: obj_fossilT_gfx_model
- 0x80EDFC80: obj_item_haniwa_pal
- 0x80EDFCA0: obj_item_haniwa_tex
- 0x80EDFEA0: obj_item_haniwa_v
- 0x80EDFEE0: obj_haniwaT_mat_model
- 0x80EDFF28: obj_haniwaT_gfx_model
- 0x80EE01A0: kabu_DL_mode
- 0x80EE01E8: kabu_DL_vtx
- 0x80EE0220: obj_item_leaf_tex
- 0x80EE0420: obj_item_leaf_v
- 0x80EE0460: leaf_DL_mode
- 0x80EE04A8: leaf_DL_vtx
- 0x80EE04C0: obj_shop_letter_pal
- 0x80EE04E0: obj_shop_letter_tex
- 0x80EE06E0: obj_shop_letter_v
- 0x80EE0720: obj_letterT_mat_model
- 0x80EE0768: obj_letterT_gfx_model
- 0x80EE09E0: matutake_DL_mode
- 0x80EE0A28: matutake_DL_vtx
- 0x80EE0A40: obj_item_nuts_pal
- 0x80EE0A60: obj_item_nuts_tex
- 0x80EE0C60: obj_item_nuts_v
- 0x80EE0CA0: nuts_DL_mode
- 0x80EE0CE8: nuts_DL_vtx
- 0x80EE0D00: obj_item_omikuji
- 0x80EE0D20: obj_item_omikuji_tex
- 0x80EE0F20: obj_item_omikuji_v
- 0x80EE0F60: obj_item_omikuji_mat_model
- 0x80EE0FA8: obj_item_omikuji_gfx_model
- 0x80EE1220: orange_DL_mode
- 0x80EE1268: orange_DL_vtx
- 0x80EE1280: obj_item_other_pal
- 0x80EE12A0: obj_item_other_tex
- 0x80EE14A0: obj_item_other_v
- 0x80EE14E0: obj_boxT_mat_model
- 0x80EE1528: obj_boxT_gfx_model
- 0x80EE1540: obj_item_otosi_pal
- 0x80EE1560: obj_item_otosi_tex
- 0x80EE1760: obj_item_otosi_v
- 0x80EE17A0: obj_otosiT_mat_model
- 0x80EE17E8: obj_otosiT_gfx_model
- 0x80EE1800: obj_item_pack_pal
- 0x80EE1820: obj_item_pack_tex
- 0x80EE1A20: obj_item_pack_v
- 0x80EE1A60: pack_DL_mode
- 0x80EE1AA8: pack_DL_vtx
- 0x80EE1AE0: obj_item_peach_tex
- 0x80EE1CE0: obj_item_peach_v
- 0x80EE1D20: peach_DL_mode
- 0x80EE1D68: peach_DL_vtx
- 0x80EE1D80: obj_item_pear_pal
- 0x80EE1DA0: obj_item_pear_tex
- 0x80EE1FA0: obj_item_pear_v
- 0x80EE1FE0: pear_DL_mode
- 0x80EE2028: pear_DL_vtx
- 0x80EE2040: obj_item_present_pal
- 0x80EE2060: obj_item_present_tex
- 0x80EE2260: obj_item_present_v
- 0x80EE22A0: present_DL_mode
- 0x80EE22E8: present_DL_vtx
- 0x80EE2300: obj_item_roll_pal
- 0x80EE2320: obj_item_roll_tex
- 0x80EE2520: obj_item_roll_v
- 0x80EE2560: obj_rollT_mat_model
- 0x80EE25A8: obj_rollT_gfx_model
- 0x80EE26A0: seed_DL_mode
- 0x80EE26E8: seed_DL_vtx
- 0x80EE2720: obj_item_shellA_tex
- 0x80EE27A0: obj_item_shellA_v
- 0x80EE27E0: obj_item_shellAT_mat_model
- 0x80EE2828: obj_item_shellAT_gfx_model
- 0x80EE2860: obj_item_shellB_tex
- 0x80EE28E0: obj_item_shellB_v
- 0x80EE2920: obj_item_shellBT_mat_model
- 0x80EE2968: obj_item_shellBT_gfx_model
- 0x80EE29A0: obj_item_shellC_tex
- 0x80EE2A20: obj_item_shellC_v
- 0x80EE2A60: obj_item_shellCT_mat_model
- 0x80EE2AA8: obj_item_shellCT_gfx_model
- 0x80EE2AC0: obj_item_tool_pal
- 0x80EE2AE0: obj_item_tool_tex
- 0x80EE2CE0: obj_item_tool_v
- 0x80EE2D20: obj_toolT_mat_model
- 0x80EE2D68: obj_toolT_gfx_model
- 0x80EE2DA0: obj_item_trash_tex
- 0x80EE2FA0: obj_item_trash_v
- 0x80EE2FE0: obj_trashT_mat_model
- 0x80EE3028: obj_trashT_gfx_model
- 0x80EE3040: obj_item_umbrella_pal
- 0x80EE3060: obj_item_umbrella_tex
- 0x80EE3260: obj_item_umbrella_v
- 0x80EE32A0: obj_item_umbrellaT_mat_model
- 0x80EE32E8: obj_item_umbrellaT_gfx_model
- 0x80EE3300: point_light_v
- 0x80EE3340: point_light_init_model
- 0x80EE3380: point_light_model
- 0x80EE33A0: elf_layA0_txt
- 0x80EE3BA0: mny_win_money_tex
- 0x80EE3EA0: mny_win_u_tex
- 0x80EE46A0: mny_win_v
- 0x80EE47A0: mny_win_beruT_model
- 0x80EE47D0: mny_win_mojiT_model
- 0x80EE4800: mny_win_ueT_model
- 0x80EE4840: fki_win_w2_tex
- 0x80EE4C40: fki_win_de3_tex
- 0x80EE4CC0: fki_win_de4_tex
- 0x80EE4D40: fki_win_wa_tex
- 0x80EE4F40: fki_win_v
- 0x80EE5040: fki_win_w4_model
- 0x80EE5070: fki_win_w3T_model
- 0x80EE50A8: fki_win_w1T_model
- 0x80EE50E0: fki_win_w2T_model
- 0x80EE5118: fki_win_mode
- 0x80EE5140: int_kob_getabako1_pal
- 0x80EE5160: int_kob_getabako1_naka1_tex
- 0x80EE51E0: int_kob_getabako1_naka2_tex
- 0x80EE5260: int_kob_getabako1_side_tex
- 0x80EE5360: int_kob_getabako1_top_tex
- 0x80EE5460: int_kob_getabako1_ura_tex
- 0x80EE5660: int_kob_getabako1_atumi_tex
- 0x80EE5860: int_kob_getabako1_wear_tex
- 0x80EE58E0: int_kob_getabako1_book2_tex
- 0x80EE5960: int_kob_getabako1_book1_tex
- 0x80EE59E0: int_kob_getabako1_book3_tex
- 0x80EE5A60: int_kob_getabako1_v
- 0x80EE6020: int_kob_getabako1_on_model
- 0x80EE6138: int_kob_getabako1_onT_model
- 0x80EE6200: int_kob_getabako2_pal
- 0x80EE6220: int_kob_getabako2_naka1_tex
- 0x80EE62A0: int_kob_getabako2_naka2_tex
- 0x80EE6320: int_kob_getabako2_side_tex
- 0x80EE6420: int_kob_getabako2_top_tex
- 0x80EE6520: int_kob_getabako2_ura_tex
- 0x80EE6720: int_kob_getabako2_atumi_tex
- 0x80EE6920: int_kob_getabako2_wear_tex
- 0x80EE69A0: int_kob_getabako2_book3_tex
- 0x80EE6A20: int_kob_getabako2_book1_tex
- 0x80EE6AA0: int_kob_getabako2_loveletter_tex
- 0x80EE6B20: int_kob_getabako2_v
- 0x80EE70B0: int_kob_getabako2_on_model
- 0x80EE71C8: int_kob_getabako2_onT_model
- 0x80EE72A0: int_kob_jimudesk_pal
- 0x80EE72C0: int_kob_jimudesk_ashi1_tex
- 0x80EE73C0: int_kob_jimudesk_ashi2_tex
- 0x80EE75C0: int_kob_jimudesk_ashi3_tex
- 0x80EE7640: int_kob_jimudesk_ashioki_tex
- 0x80EE76C0: int_kob_jimudesk_hikidashi2_tex
- 0x80EE7740: int_kob_jimudesk_hikidashi1_tex
- 0x80EE7840: int_kob_jimudesk_side_tex
- 0x80EE7940: int_kob_jimudesk_tenban_tex
- 0x80EE7A40: int_kob_jimudesk_v
- 0x80EE7EA0: int_kob_jimudesk_on_model
- 0x80EE7F00: int_kob_jimudesk_onT_model
- 0x80EE8040: int_kob_jimuisu_pal
- 0x80EE8060: int_kob_jimuisu_main1_tex
- 0x80EE8160: int_kob_jimuisu_se1_tex
- 0x80EE81E0: int_kob_jimuisu_se2_tex
- 0x80EE8260: int_kob_jimuisu_hone1_tex
- 0x80EE82E0: int_kob_jimuisu_ashi1_tex
- 0x80EE8360: int_kob_jimuisu_ashi2_tex
- 0x80EE8460: int_kob_jimuisu_hone2_tex
- 0x80EE8560: int_kob_jimuisu_ashi3_tex
- 0x80EE8660: int_kob_jimuisu_v
- 0x80EE8A40: int_kob_jimuisu_on_model
- 0x80EE8AA0: int_kob_jimuisu_onT_model
- 0x80EE8BE0: int_kob_locker_pal
- 0x80EE8C00: int_kob_locker_door_tex_txt
- 0x80EE8F00: int_kob_locker_side_tex_txt
- 0x80EE9080: int_kob_locker_front_tex_txt
- 0x80EE9200: int_kob_locker1_v
- 0x80EE9520: int_kob_locker1_door_model
- 0x80EE9598: int_kob_locker1_base_model
- 0x80EE9640: cKF_ckcb_r_int_kob_locker1_tbl
- 0x80EE9644: cKF_kn_int_kob_locker1_tbl
- 0x80EE9650: cKF_c_int_kob_locker1_tbl
- 0x80EE965C: cKF_ds_int_kob_locker1_tbl
- 0x80EE96B8: cKF_ba_r_int_kob_locker1
- 0x80EE96CC: cKF_je_r_int_kob_locker1_tbl
- 0x80EE96F0: cKF_bs_r_int_kob_locker1
- 0x80EE9700: int_kob_mastersword_pal
- 0x80EE9720: int_kob_mastersword_kan_tex_rgb_ci4_pal
- 0x80EE9740: int_kob_mastersword_tuka_tex
- 0x80EE98C0: int_kob_mastersword_tuba_tex
- 0x80EE99C0: int_kob_mastersword_ishi1_tex
- 0x80EE9A40: int_kob_mastersword_ishi2_tex
- 0x80EE9AC0: int_kob_mastersword_ishi3_tex
- 0x80EE9B40: int_kob_mastersword_kan_tex
- 0x80EE9F40: int_kob_mastersword_v
- 0x80EEA400: int_kob_mastersword_env_model
- 0x80EEA478: int_kob_mastersword_on_model
- 0x80EEA530: int_kob_mastersword_onT_model
- 0x80EEA5A0: int_kob_ncube_pal
- 0x80EEA5C0: int_kob_ncube_gn
- 0x80EEA7C0: int_kob_ncube_bn
- 0x80EEA9C0: int_kob_ncube_top
- 0x80EEAA40: int_kob_ncube_r
- 0x80EEAAC0: int_kob_ncube_g
- 0x80EEAB40: int_kob_ncube_b
- 0x80EEABC0: int_kob_ncube_v
- 0x80EEB040: int_kob_ncube_on_model
- 0x80EEB110: int_kob_ncube_onT_model
- 0x80EEB1C0: int_kob_pipeisu_pal
- 0x80EEB1E0: int_kob_pipeisu_se1_tex
- 0x80EEB260: int_kob_pipeisu_main1_tex
- 0x80EEB360: int_kob_pipeisu_ashi1_tex
- 0x80EEB460: int_kob_pipeisu_pipe1_tex
- 0x80EEB4E0: int_kob_pipeisu_se2_tex
- 0x80EEB560: int_kob_pipeisu_pipe2_tex
- 0x80EEB6E0: int_kob_pipeisu_v
- 0x80EEBA10: int_kob_pipeisu_on_model
- 0x80EEBAD0: int_kob_pipeisu_onT_model
- 0x80EEBB80: int_kob_rika_desk_pal
- 0x80EEBBA0: int_kob_rika_desk_top_tex
- 0x80EEBDA0: int_kob_rika_desk_side1_tex
- 0x80EEBFA0: int_kob_rika_desk_side2_tex
- 0x80EEC020: int_kob_rika_desk_side3_tex
- 0x80EEC0A0: int_kob_rika_desk_nagashi1_tex
- 0x80EEC120: int_kob_rika_desk_nagashi2_tex
- 0x80EEC1A0: int_kob_rika_desk_jyaguti1_tex
- 0x80EEC220: int_kob_rika_desk_jyaguti2_tex
- 0x80EEC2A0: int_kob_rika_desk_jikken1_tex
- 0x80EEC320: int_kob_rika_desk_jikken2_tex
- 0x80EEC3A0: int_kob_rika_desk_v
- 0x80EEC880: int_kob_rika_desk_on_model
- 0x80EEC958: int_kob_rika_desk_onT_model
- 0x80EECA60: int_kob_tobibako_pal
- 0x80EECA80: int_kob_tobibako_zengo_tex
- 0x80EECD80: int_kob_tobibako_sayu_tex
- 0x80EED080: int_kob_tobibako_ue_tex
- 0x80EED180: int_kob_tobibako_v
- 0x80EED360: int_kob_tobibako_on_model
- 0x80EED420: int_kon_ameclock_pal
- 0x80EED440: int_kon_ameclock_e_tex_txt
- 0x80EED4C0: int_kon_ameclock_a_tex_txt
- 0x80EED6C0: int_kon_ameclock_c_tex_txt
- 0x80EED740: int_kon_ameclock_b_tex_txt
- 0x80EED840: int_kon_ameclock_d_tex_txt
- 0x80EED8C0: int_kon_ameclock_f_tex_txt
- 0x80EED9C0: int_kon_ameclock_g_tex_txt
- 0x80EEDAC0: int_kon_ameclock_v
- 0x80EEDE60: int_kon_ameclock_long_model
- 0x80EEDEB8: int_kon_ameclock_off_model
- 0x80EEDF20: int_kon_ameclock_short_model
- 0x80EEDF78: base_model
- 0x80EEE098: cKF_ckcb_r_int_kon_ameclock_tbl
- 0x80EEE0A0: cKF_c_int_kon_ameclock_tbl
- 0x80EEE0CC: cKF_ba_r_int_kon_ameclock
- 0x80EEE0E0: cKF_je_r_int_kon_ameclock_tbl
- 0x80EEE128: cKF_bs_r_int_kon_ameclock
- 0x80EEE140: int_kon_atqclock_pal
- 0x80EEE160: int_kon_atqclock_grass_tex_pic_ci4_pal
- 0x80EEE180: int_kon_atqclock_f_tex_txt
- 0x80EEE280: int_kon_atqclock_c_tex_txt
- 0x80EEE300: int_kon_atqclock_a_tex_txt
- 0x80EEE400: int_kon_atqclock_e_tex_txt
- 0x80EEE480: int_kon_atqclock_d_tex_txt
- 0x80EEE500: int_kon_atqclock_b_tex_txt
- 0x80EEE700: int_kon_atqclock_h_tex_txt
- 0x80EEE780: int_kon_atqclock_g_tex_txt
- 0x80EEE880: int_kon_atqclock_grass_tex_txt
- 0x80EEE900: int_kon_atqclock_v
- 0x80EEED30: int_kon_atqclock_long_model
- 0x80EEED88: int_kon_atqclock_evw_model
- 0x80EEEDF0: int_kon_atqclock_base_model
- 0x80EEEF40: int_kon_atqclock_short_model
- 0x80EEEF98: int_kon_atqclock_huriko_model
- 0x80EEEFF0: cKF_ckcb_r_int_kon_atqclock_tbl
- 0x80EEEFF8: cKF_kn_int_kon_atqclock_tbl
- 0x80EEEFFC: cKF_c_int_kon_atqclock_tbl
- 0x80EEF030: cKF_ds_int_kon_atqclock_tbl
- 0x80EEF054: cKF_ba_r_int_kon_atqclock
- 0x80EEF068: cKF_je_r_int_kon_atqclock_tbl
- 0x80EEF0C8: cKF_bs_r_int_kon_atqclock
- 0x80EEF0E0: int_kon_blueclock_pal
- 0x80EEF100: int_kon_blueclock_grass_tex_pic_ci4_pal
- 0x80EEF120: int_kon_blueclock_d_tex_txt
- 0x80EEF1A0: int_kon_blueclock_a_tex_txt
- 0x80EEF2A0: int_kon_blueclock_c_tex_txt
- 0x80EEF320: int_kon_blueclock_b_tex_txt
- 0x80EEF420: int_kon_blueclock_grass_tex_txt
- 0x80EEF620: int_kon_blueclock_v
- 0x80EEF8A0: int_kon_blueclock_long_model
- 0x80EEF8F8: int_kon_blueclock_evw_model
- 0x80EEF978: int_kon_blueclock_base_model
- 0x80EEFA20: int_kon_blueclock_short_model
- 0x80EEFA78: cKF_ckcb_r_int_kon_blueclock_tbl
- 0x80EEFA80: cKF_c_int_kon_blueclock_tbl
- 0x80EEFAAC: cKF_ba_r_int_kon_blueclock
- 0x80EEFAC0: cKF_je_r_int_kon_blueclock_tbl
- 0x80EEFB08: cKF_bs_r_int_kon_blueclock
- 0x80EEFB20: int_kon_cracker_pal
- 0x80EEFB40: int_kon_cracker_ball_tex_txt
- 0x80EEFD40: int_kon_cracker_ito_tex_txt
- 0x80EEFDC0: int_kon_cracker_hasira_tex_txt
- 0x80EEFEC0: int_kon_cracker_mae_tex_txt
- 0x80EEFF40: int_kon_cracker_hari_tex_txt
- 0x80EF0040: int_kon_cracker_ue_tex_txt
- 0x80EF00C0: int_kon_cracker_v
- 0x80EF04A0: int_kon_cracker_ito2_model
- 0x80EF0500: int_kon_cracker_ball2_model
- 0x80EF0568: int_kon_cracker_ue_model
- 0x80EF05C0: int_kon_cracker_ito3_model
- 0x80EF0620: int_kon_cracker_hasira_model
- 0x80EF06D0: int_kon_cracker_ball3_model
- 0x80EF0738: int_kon_cracker_ito1_model
- 0x80EF0798: int_kon_cracker_ball1_model
- 0x80EF0800: cKF_ckcb_r_int_kon_cracker_tbl
- 0x80EF080C: cKF_kn_int_kon_cracker_tbl
- 0x80EF0810: cKF_c_int_kon_cracker_tbl
- 0x80EF0850: cKF_ds_int_kon_cracker_tbl
- 0x80EF08C4: cKF_ba_r_int_kon_cracker
- 0x80EF08D8: cKF_je_r_int_kon_cracker_tbl
- 0x80EF0950: cKF_bs_r_int_kon_cracker
- 0x80EF0960: int_kon_gomi03_gururi_pal
- 0x80EF0980: int_kon_gomi03_gururi_tex
- 0x80EF0A80: int_kon_gomi03_mawari_tex
- 0x80EF0B00: int_kon_gomi03_totte_tex
- 0x80EF0B80: int_kon_gomi03_ue_tex
- 0x80EF0D80: int_kon_gomi03_v
- 0x80EF1070: int_kon_gomi03_on_model
- 0x80EF1138: int_kon_gomi03_onT_model
- 0x80EF11A0: int_kon_gomi04_pal
- 0x80EF11C0: int_kon_gomi04_huta_tex_txt
- 0x80EF12C0: int_kon_gomi04_huta2_tex_txt
- 0x80EF13C0: int_kon_gomi04_yoko_tex_txt
- 0x80EF1440: int_kon_gomi04_ue_tex_txt
- 0x80EF1540: int_kon_gomi04_naka_tex_txt
- 0x80EF15C0: int_kon_gomi04_sita_tex_txt
- 0x80EF16C0: int_kon_gomi04_v
- 0x80EF19A0: int_kon_gomi04_huta2_model
- 0x80EF1A00: int_kon_gomi04_huta_model
- 0x80EF1A60: int_kon_gomi04_sita_model
- 0x80EF1B38: cKF_ckcb_r_int_kon_gomi04_tbl
- 0x80EF1B3C: cKF_kn_int_kon_gomi04_tbl
- 0x80EF1B40: cKF_c_int_kon_gomi04_tbl
- 0x80EF1B5C: cKF_ds_int_kon_gomi04_tbl
- 0x80EF1BE0: cKF_ba_r_int_kon_gomi04
- 0x80EF1BF4: cKF_je_r_int_kon_gomi04_tbl
- 0x80EF1C24: cKF_bs_r_int_kon_gomi04
- 0x80EF1C40: int_kon_grclock_pal
- 0x80EF1C60: int_kon_grclock_c_tex_txt
- 0x80EF1CE0: int_kon_grclock_b_tex_txt
- 0x80EF1DE0: int_kon_grclock_a_tex_txt
- 0x80EF21E0: int_kon_grclock_d_tex_txt
- 0x80EF23E0: int_kon_grclock_e_tex_txt
- 0x80EF2460: int_kon_grclock_v
- 0x80EF26F0: int_kon_grclock_long_model
- 0x80EF2748: int_kon_grclock_off_model
- 0x80EF27B0: int_kon_grclock_base_model
- 0x80EF2878: int_kon_grclock_short_model
- 0x80EF28D0: cKF_ckcb_r_int_kon_grclock_tbl
- 0x80EF28D8: cKF_c_int_kon_grclock_tbl
- 0x80EF2904: cKF_ba_r_int_kon_grclock
- 0x80EF2918: cKF_je_r_int_kon_grclock_tbl
- 0x80EF2960: cKF_bs_r_int_kon_grclock
- 0x80EF29A0: int_kon_isi01_mae_tex
- 0x80EF2BA0: int_kon_isi01_teppen_tex
- 0x80EF2C20: int_kon_isi01_yoko_tex
- 0x80EF2E20: int_kon_isi01_v
- 0x80EF2FE0: int_kon_isi01_on_model
- 0x80EF30A0: int_kon_isi02_pal
- 0x80EF30C0: int_kon_isi02_front_tex
- 0x80EF32C0: int_kon_isi02_side_tex
- 0x80EF33C0: int_kon_isi02_top_tex
- 0x80EF34C0: int_kon_isi02_mini_tex
- 0x80EF36C0: int_kon_isi02_v
- 0x80EF39C0: int_kon_isi02_on_model
- 0x80EF3AC0: int_kon_isi03_pal
- 0x80EF3AE0: int_kon_isi03_a_tex
- 0x80EF3DE0: int_kon_isi03_b_tex
- 0x80EF3FE0: int_kon_isi03_c_tex
- 0x80EF41E0: int_kon_isi03_d_tex
- 0x80EF42E0: int_kon_isi03_v
- 0x80EF4520: int_kon_isi03_on_model
- 0x80EF4600: int_kon_isi04_pal
- 0x80EF4620: int_kon_isi04_yoko_tex
- 0x80EF4720: int_kon_isi04_ue_tex
- 0x80EF48A0: int_kon_isi04_mae_tex
- 0x80EF4D20: int_kon_isi04_koke_tex
- 0x80EF4DA0: int_kon_isi04_v
- 0x80EF50F0: int_kon_isi04_on_model
- 0x80EF5178: int_kon_isi04_onT_model
- 0x80EF5240: int_kon_isi05_a_tex
- 0x80EF5640: int_kon_isi05_c_tex
- 0x80EF5A40: int_kon_isi05_v
- 0x80EF5BB0: int_kon_isi05_on_model
- 0x80EF5C60: int_kon_isi06_pal
- 0x80EF5C80: int_kon_isi06_a_tex
- 0x80EF6100: int_kon_isi06_c_tex
- 0x80EF6200: int_kon_isi06_d_tex
- 0x80EF6380: int_kon_isi06_b_tex
- 0x80EF6480: int_kon_isi06_v
- 0x80EF67D0: int_kon_isi06_on_model
- 0x80EF68C0: int_kon_jihanki02_pal
- 0x80EF68E0: int_kon_jihanki02_front_tex
- 0x80EF6A60: int_kon_jihanki02_yoko_tex
- 0x80EF6B60: int_kon_jihanki02_back_tex
- 0x80EF6BE0: int_kon_jihanki02_can_tex
- 0x80EF6CE0: int_kon_jihanki02_canback_tex
- 0x80EF6DE0: int_kon_jihanki02_naka_tex
- 0x80EF6E60: int_kon_jihanki02_botan_tex
- 0x80EF7060: int_kon_jihanki02_sign_tex
- 0x80EF70E0: int_kon_jihanki02_v
- 0x80EF74A0: int_kon_jihanki02_on_model
- 0x80EF7520: int_kon_jihanki02_off_model
- 0x80EF75A0: int_kon_jihanki02_onT_model
- 0x80EF7610: int_kon_jihanki02_offT_model
- 0x80EF76A0: int_kon_jihanki03_pal
- 0x80EF76C0: int_kon_jihanki03_mae_tex
- 0x80EF78C0: int_kon_jihanki03_usiro_tex
- 0x80EF7AC0: int_kon_jihanki03_yoko_tex
- 0x80EF7CC0: int_kon_jihanki03_ten_tex
- 0x80EF7D40: int_kon_jihanki03_uti_tex
- 0x80EF7E40: int_kon_jihanki03_v
- 0x80EF8080: int_kon_jihanki03_on_model
- 0x80EF8140: int_kon_jihanki03_onT_model
- 0x80EF81A0: int_kon_mimiclock_pal
- 0x80EF81C0: int_kon_mimiclock_c_tex_txt
- 0x80EF82C0: int_kon_mimiclock_d_tex_txt
- 0x80EF83C0: int_kon_mimiclock_b_tex_txt
- 0x80EF8540: int_kon_mimiclock_a_tex_txt
- 0x80EF86C0: int_kon_mimiclock_e_tex_txt
- 0x80EF88C0: int_kon_mimiclock_f_tex_txt
- 0x80EF8940: int_kon_mimiclock_v
- 0x80EF8C30: int_kon_mimiclock_long_model
- 0x80EF8C88: int_kon_mimiclock_base_model
- 0x80EF8D88: int_kon_mimiclock_eye_model
- 0x80EF8DE0: int_kon_mimiclock_short_model
- 0x80EF8E38: cKF_ckcb_r_int_kon_mimiclock_tbl
- 0x80EF8E40: cKF_kn_int_kon_mimiclock_tbl
- 0x80EF8E44: cKF_c_int_kon_mimiclock_tbl
- 0x80EF8E74: cKF_ds_int_kon_mimiclock_tbl
- 0x80EF8E8C: cKF_ba_r_int_kon_mimiclock
- 0x80EF8EA0: cKF_je_r_int_kon_mimiclock_tbl
- 0x80EF8EF4: cKF_bs_r_int_kon_mimiclock
- 0x80EF8F00: int_kon_musya_pal
- 0x80EF8F20: int_kon_musya_a_tex
- 0x80EF9020: int_kon_musya_b_tex
- 0x80EF9120: int_kon_musya_c_tex
- 0x80EF91A0: int_kon_musya_d_tex
- 0x80EF9220: int_kon_musya_e_tex
- 0x80EF92A0: int_kon_musya_f_tex
- 0x80EF93A0: int_kon_musya_g_tex
- 0x80EF9420: int_kon_musya_h_tex
- 0x80EF94A0: int_kon_musya_i_tex
- 0x80EF95A0: int_kon_musya_j_tex
- 0x80EF9620: int_kon_musya_k_tex
- 0x80EF9720: int_kon_musya_v
- 0x80EF9C40: int_kon_musya_hako_on_model
- 0x80EF9CA8: int_kon_musya_atama_on_model
- 0x80EF9D08: int_kon_musya_tare_onT_model
- 0x80EF9DA0: int_kon_musya_dou_onT_model
- 0x80EF9E30: int_kon_musya_atama_onT_model
- 0x80EF9EE0: int_kon_pound_pal
- 0x80EF9F00: int_kon_pound_suimen_tex_rgb_ci4_pal
- 0x80EF9F20: int_kon_pound_rock_tex
- 0x80EFA120: int_kon_pound_gl_tex
- 0x80EFA320: int_kon_pound_soko_tex
- 0x80EFA3A0: int_kon_pound_flo_tex
- 0x80EFA5A0: int_kon_pound_suimen_tex
- 0x80EFA620: int_kon_pound_v
- 0x80EFAA40: int_kon_pound_on_model
- 0x80EFAA98: int_kon_pound_onT_model
- 0x80EFAB80: int_kon_pound_alphaT_model
- 0x80EFABE0: int_kon_redclock_pal
- 0x80EFAC00: int_kon_redclock_e_tex_txt
- 0x80EFAC80: int_kon_redclock_d_tex_txt
- 0x80EFAD00: int_kon_redclock_f_tex_txt
- 0x80EFAE00: int_kon_redclock_b_tex_txt
- 0x80EFAE80: int_kon_redclock_a_tex_txt
- 0x80EFB280: int_kon_redclock_c_tex_txt
- 0x80EFB380: int_kon_redclock_v
- 0x80EFB670: int_kon_redclock_long_model
- 0x80EFB6C8: int_kon_redclock_base_model
- 0x80EFB7F0: int_kon_redclock_short_model
- 0x80EFB848: cKF_ckcb_r_int_kon_redclock_tbl
- 0x80EFB850: cKF_c_int_kon_redclock_tbl
- 0x80EFB874: cKF_ba_r_int_kon_redclock
- 0x80EFB888: cKF_je_r_int_kon_redclock_tbl
- 0x80EFB8C4: cKF_bs_r_int_kon_redclock
- 0x80EFB8E0: int_kon_sisiodosi_pal
- 0x80EFB900: int_kon_sisiodosi_tutu_tex_txt
- 0x80EFBA00: int_kon_sisiodosi_soko_tex_txt
- 0x80EFBA80: int_kon_sisiodosi_mae_tex_txt
- 0x80EFBB00: int_kon_sisiodosi_tuti_tex_txt
- 0x80EFBB80: int_kon_sisiodosi_iwa_tex_txt
- 0x80EFBC00: int_kon_sisiodosi_koisi_tex_txt
- 0x80EFC000: int_kon_sisiodosi_v
- 0x80EFC3E0: int_kon_sisiodisi_ue_model
- 0x80EFC480: int_kon_sisiodosi_sita_model
- 0x80EFC5F0: cKF_ckcb_r_int_kon_sisiodosi_tbl
- 0x80EFC5F4: cKF_kn_int_kon_sisiodosi_tbl
- 0x80EFC5F8: cKF_c_int_kon_sisiodosi_tbl
- 0x80EFC610: cKF_ds_int_kon_sisiodosi_tbl
- 0x80EFC660: cKF_ba_r_int_kon_sisiodosi
- 0x80EFC674: cKF_je_r_int_kon_sisiodosi_tbl
- 0x80EFC698: cKF_bs_r_int_kon_sisiodosi
- 0x80EFC6A0: int_kon_snowbed_tex_pal
- 0x80EFC6C0: int_kon_snowbed01_tex
- 0x80EFC8C0: int_kon_snowbed02_tex
- 0x80EFCBC0: int_kon_snowbed03_tex
- 0x80EFCDC0: int_kon_snowbed04_tex
- 0x80EFCEC0: int_kon_snowbed_v
- 0x80EFD190: int_kon_snoebed_on_model
- 0x80EFD230: int_kon_snoebed_onT_model
- 0x80EFD2C0: int_kon_snowbox_tex_pal
- 0x80EFD2E0: int_kon_snowbox05_tex_txt
- 0x80EFD4E0: int_kon_snowbox07_tex_txt
- 0x80EFD560: int_kon_snowbox03_tex_txt
- 0x80EFD660: int_kon_snowbox04_tex_txt
- 0x80EFD6E0: int_kon_snowbox06_tex_txt
- 0x80EFD760: int_kon_snowbox01_tex_txt
- 0x80EFD960: int_kon_snowbox02_tex_txt
- 0x80EFDB60: int_kon_snowbox_v
- 0x80EFDF30: int_kon_snowbox_door_model
- 0x80EFDFB0: int_kon_snowbox_base_model
- 0x80EFE0A8: cKF_ckcb_r_int_kon_snowbox_tbl
- 0x80EFE0AC: cKF_kn_int_kon_snowbox_tbl
- 0x80EFE0B0: cKF_c_int_kon_snowbox_tbl
- 0x80EFE0C8: cKF_ds_int_kon_snowbox_tbl
- 0x80EFE0F4: cKF_ba_r_int_kon_snowbox
- 0x80EFE108: cKF_je_r_int_kon_snowbox_tbl
- 0x80EFE12C: cKF_bs_r_int_kon_snowbox
- 0x80EFE140: int_kon_snowclock_pal
- 0x80EFE160: int_kon_snowclock06_tex_txt
- 0x80EFE1E0: int_kon_snowclock05_tex_txt
- 0x80EFE260: int_kon_snowclock07_tex_txt
- 0x80EFE2E0: int_kon_snowclock04_tex_txt
- 0x80EFE3E0: int_kon_snowclock01_tex_txt
- 0x80EFE5E0: int_kon_snowclock02_tex_txt
- 0x80EFE7E0: int_kon_snowclock03_tex_txt
- 0x80EFE860: int_kon_snowclock_v
- 0x80EFEC70: int_kon_snowclock_long_model
- 0x80EFECC8: int_kon_snowclock_body_model
- 0x80EFEDB8: int_kon_snowclock_short_model
- 0x80EFEE10: int_kon_snowclock_arm_model
- 0x80EFEE88: cKF_ckcb_r_int_kon_snowclock_tbl
- 0x80EFEE90: cKF_kn_int_kon_snowclock_tbl
- 0x80EFEEA8: cKF_c_int_kon_snowclock_tbl
- 0x80EFEEC8: cKF_ds_int_kon_snowclock_tbl
- 0x80EFEF78: cKF_ba_r_int_kon_snowclock
- 0x80EFEF8C: cKF_je_r_int_kon_snowclock_tbl
- 0x80EFEFEC: cKF_bs_r_int_kon_snowclock
- 0x80EFF020: int_kon_snowfreezer01_tex
- 0x80EFF320: int_kon_snowfreezer02_tex
- 0x80EFF4A0: int_kon_snowfreezer04_tex
- 0x80EFF5A0: int_kon_snowfreezer03_tex
- 0x80EFF6A0: int_kon_snowfreezer05_tex
- 0x80EFF720: int_kon_snowfreezer06_tex
- 0x80EFF7A0: int_kon_snowfreezer_v
- 0x80EFFB00: int_kon_snowfreezer01_body_model
- 0x80EFFBC8: int_kon_snowfreezer01_bodyT_model
- 0x80EFFC60: int_kon_snowsofa_pal
- 0x80EFFC80: int_kon_snowsofa01_tex
- 0x80F00080: int_kon_snowsofa02_tex
- 0x80F00280: int_kon_snowsofa03_tex
- 0x80F00380: int_kon_snowsofa04_tex
- 0x80F00400: int_kon_snowsofa_v
- 0x80F00720: int_kon_snowsofa_model
- 0x80F007F0: int_kon_snowsofaT_model
- 0x80F00860: int_kon_snowtable_tex_pal
- 0x80F00880: int_kon_snowtable01_tex
- 0x80F00C80: int_kon_snowtable02_tex
- 0x80F00D00: int_kon_snowtable03_tex
- 0x80F00D80: int_kon_snowtable04_tex
- 0x80F00E00: int_kon_snowtable_v
- 0x80F01290: in_kon_snowtable_on_model
- 0x80F01338: in_kon_snowtable_onT_model
- 0x80F01400: int_kon_snowtansu04_tex_txt
- 0x80F01480: int_kon_snowtansu06_tex_txt
- 0x80F01500: int_kon_snowtansu05_tex_txt
- 0x80F01580: int_kon_snowtansu01_tex_txt
- 0x80F01700: int_kon_snowtansu02_tex_txt
- 0x80F01880: int_kon_snowtansu07_tex_txt
- 0x80F01980: int_kon_snowtansu03_tex_txt
- 0x80F01A00: int_kon_snowtansu_v
- 0x80F01E00: int_kon_snowtansu_hiki_model
- 0x80F01E90: int_kon_snowtansu_base_model
- 0x80F01F98: cKF_ckcb_r_int_kon_snowtansu_tbl
- 0x80F01F9C: cKF_kn_int_kon_snowtansu_tbl
- 0x80F01FB0: cKF_c_int_kon_snowtansu_tbl
- 0x80F01FB8: cKF_ds_int_kon_snowtansu_tbl
- 0x80F02024: cKF_ba_r_int_kon_snowtansu
- 0x80F02038: cKF_je_r_int_kon_snowtansu_tbl
- 0x80F0205C: cKF_bs_r_int_kon_snowtansu
- 0x80F02080: int_kon_snowtv_pal
- 0x80F020A0: int_kon_snowtv07a_TA_tex_txt
- 0x80F02120: int_kon_snowtv07b_TA_tex_txt
- 0x80F021A0: int_kon_snowtv07c_TA_tex_txt
- 0x80F02220: int_kon_snowtv07d_TA_tex_txt
- 0x80F022A0: int_kon_snowtv03_tex_txt
- 0x80F023A0: int_kon_snowtv02_tex_txt
- 0x80F024A0: int_kon_snowtv01_tex_txt
- 0x80F026A0: int_kon_snowtv04_tex_txt
- 0x80F02720: int_kon_snowtv06_tex_txt
- 0x80F027A0: int_kon_snowtv05_tex_txt
- 0x80F02820: int_kon_snowtv08_tex_txt
- 0x80F02920: int_kon_snowtv_v
- 0x80F02D40: int_kon_snowtv_face_model
- 0x80F02D98: int_kon_snowtv_body_model
- 0x80F02EE0: int_kon_taiju_pal
- 0x80F02F00: int_kon_taiju_a_tex
- 0x80F02F80: int_kon_taiju_kubi_tex
- 0x80F03000: int_kon_taiju_mae_tex
- 0x80F03200: int_kon_taiju_waki_tex
- 0x80F03280: int_kon_taiju_sokumen_tex
- 0x80F03380: int_kon_taiju_metal_tex
- 0x80F03400: int_kon_taiju_dai2_tex
- 0x80F03600: int_kon_taiju_v
- 0x80F039C0: int_kon_taiju_on_model
- 0x80F03A98: int_kon_taiju_onT_model
- 0x80F03B40: int_kon_tubo_pal
- 0x80F03B60: int_kon_tubo_yoko_tex
- 0x80F03D60: int_kon_tubo_huti_tex
- 0x80F03DA0: int_kon_tubo_yoko2_tex
- 0x80F03FA0: int_kon_tubo_naka_tex
- 0x80F04020: int_kon_tubo_v
- 0x80F04440: int_kon_tubo_on_model
- 0x80F04510: int_kon_tubo_onT_model
- 0x80F04580: int_kon_tubo2_pal
- 0x80F045A0: int_kon_tubo2_hana_tex
- 0x80F047A0: int_kon_tubo2_aka_tex
- 0x80F048A0: int_kon_tubo2_aka2_tex
- 0x80F04AA0: int_kon_tubo2_uti_tex
- 0x80F04B20: int_kon_tubo2_v
- 0x80F04F40: int_kon_tubo2_on_model
- 0x80F05020: int_kon_tubo2_onT_model
- 0x80F05080: int_kon_tubo3_pal
- 0x80F050A0: int_kon_tubo3_yoko_tex
- 0x80F052A0: int_kon_tubo3_huti_tex
- 0x80F052E0: int_kon_tubo3_yoko2_tex
- 0x80F056E0: int_kon_tubo3_naka_tex
- 0x80F05760: int_kon_tubo3_v
- 0x80F05B80: int_kon_tubo3_on_model
- 0x80F05C50: int_kon_tubo3_onT_model
- 0x80F05CC0: int_kon_tukue_pal
- 0x80F05CE0: int_kon_tukue_glass_tex_rgb_ci4_pal
- 0x80F05D00: int_kon_tukue_ue_tex
- 0x80F05E00: int_kon_tukue_ue2_tex
- 0x80F05F00: int_kon_tukue_tate_tex
- 0x80F06000: int_kon_tukue_yoko_tex
- 0x80F06080: int_kon_tukue_glass2_tex
- 0x80F06180: int_kon_tukue_glass_tex
- 0x80F06380: int_kon_tukue_v
- 0x80F06580: int_kon_tukue_onT_model
- 0x80F06638: int_kon_tukue_evwT_model
- 0x80F06690: obj_kon_tukue_alphaT_model
- 0x80F06700: int_kon_waclock_pal
- 0x80F06720: int_kon_waclock_g_tex_txt
- 0x80F06820: int_kon_waclock_f_tex_txt
- 0x80F06920: int_kon_waclock_e_tex_txt
- 0x80F069A0: int_kon_waclock_d_tex_txt
- 0x80F06AA0: int_kon_waclock_h_tex_txt
- 0x80F06B20: int_kon_waclock_b_tex_txt
- 0x80F06C20: int_kon_waclock_c_tex_txt
- 0x80F06CA0: int_kon_waclock_a_tex_txt
- 0x80F06EA0: int_kon_waclock_v
- 0x80F071E0: int_kon_waclock_base_model
- 0x80F07300: int_kon_waclock_huriko_model
- 0x80F07380: int_kon_waclock_short_model
- 0x80F073E0: cKF_ckcb_r_int_kon_waclock_tbl
- 0x80F073E8: cKF_kn_int_kon_waclock_tbl
- 0x80F073EC: cKF_c_int_kon_waclock_tbl
- 0x80F07410: cKF_ds_int_kon_waclock_tbl
- 0x80F07464: cKF_ba_r_int_kon_waclock
- 0x80F07478: cKF_je_r_int_kon_waclock_tbl
- 0x80F074B4: cKF_bs_r_int_kon_waclock
- 0x80F074C0: int_kon_xtree02_tex_pal
- 0x80F074E0: int_kon_xtree02_side01_tex
- 0x80F076E0: int_kon_xtree02_star_tex
- 0x80F077E0: int_kon_xtree02_side02_tex
- 0x80F079E0: int_kon_xtree02_prant_tex
- 0x80F07AE0: int_kon_xtree02_present_tex
- 0x80F07CE0: int_kon_xtree02_v
- 0x80F083A0: int_kon_xtree02_on_model
- 0x80F08408: int_kon_xtree02_onT_model
- 0x80F08520: rom_toudai_yuka_pal
- 0x80F08540: rom_toudai_kabe_pal
- 0x80F08560: rom_toudai_step_pal
- 0x80F08580: rom_toudai_meka_pal
- 0x80F085A0: rom_toudai_ukiwa_pal
- 0x80F085C0: rom_toudai_yuka_tex
- 0x80F08DC0: rom_toudai_kabeA_tex
- 0x80F095C0: rom_toudai_kabeB_tex
- 0x80F09DC0: rom_toudai_step_tex
- 0x80F0A1C0: rom_toudai_mekaA_tex
- 0x80F0A2C0: rom_toudai_ukiwa_tex
- 0x80F0A4C0: rom_toudai_kage1_tex
- 0x80F0A540: rom_toudai_mekaC_tex
- 0x80F0A740: rom_toudai_kage2_tex
- 0x80F0A7C0: rom_toudai_v
- 0x80F0AE30: rom_toudai_modelT
- 0x80F0AE38: rom_toudai_model
- 0x80F0B020: kan_tizu_c1_TA_tex_txt
- 0x80F0B220: kan_tizu_c1r1_TA_tex_txt
- 0x80F0B420: kan_tizu_c1s_TA_tex_txt
- 0x80F0B620: kan_tizu_c2_TA_tex_txt
- 0x80F0B820: kan_tizu_c2r1_TA_tex_txt
- 0x80F0BA20: kan_tizu_c3r1_TA_tex_txt
- 0x80F0BC20: kan_tizu_c4r1_TA_tex_txt
- 0x80F0BE20: kan_tizu_c5r1_TA_tex_txt
- 0x80F0C020: kan_tizu_c6_TA_tex_txt
- 0x80F0C220: kan_tizu_c6r1_TA_tex_txt
- 0x80F0C420: kan_tizu_c6s_TA_tex_txt
- 0x80F0C620: kan_tizu_c7_TA_tex_txt
- 0x80F0C820: kan_tizu_c7r1_TA_tex_txt
- 0x80F0CA20: kan_tizu_f_TA_tex_txt
- 0x80F0CC20: kan_tizu_r1_TA_tex_txt
- 0x80F0CE20: kan_tizu_r1b_TA_tex_txt
- 0x80F0D020: kan_tizu_r2_TA_tex_txt
- 0x80F0D220: kan_tizu_r4_TA_tex_txt
- 0x80F0D420: kan_tizu_r5_TA_tex_txt
- 0x80F0D620: kan_tizu_r6_TA_tex_txt
- 0x80F0D820: kan_tizu_r7_TA_tex_txt
- 0x80F0DA20: kan_tizu_c4_TA_tex_txt
- 0x80F0DC20: kan_tizu_c5_TA_tex_txt
- 0x80F0DE20: kan_tizu_c3_TA_tex_txt
- 0x80F0E020: kan_tizu_r7b_TA_tex_txt
- 0x80F0E220: kan_tizu_c1r2_TA_tex_txt
- 0x80F0E420: kan_tizu_c2r2_TA_tex_txt
- 0x80F0E620: kan_tizu_c3r2_TA_tex_txt
- 0x80F0E820: kan_tizu_c4r2_TA_tex_txt
- 0x80F0EA20: kan_tizu_c5r2_TA_tex_txt
- 0x80F0EC20: kan_tizu_c6r3_TA_tex_txt
- 0x80F0EE20: kan_tizu_c7r3_TA_tex_txt
- 0x80F0F020: kan_tizu_c2s_TA_tex_txt
- 0x80F0F220: kan_tizu_c3s_TA_tex_txt
- 0x80F0F420: kan_tizu_c4s_TA_tex_txt
- 0x80F0F620: kan_tizu_c5s_TA_tex_txt
- 0x80F0F820: kan_tizu_c7s_TA_tex_txt
- 0x80F0FA20: kan_tizu_r2b_TA_tex_txt
- 0x80F0FC20: kan_tizu_r4b_TA_tex_txt
- 0x80F0FE20: kan_tizu_r5b_TA_tex_txt
- 0x80F10020: kan_tizu_r6b_TA_tex_txt
- 0x80F10220: kan_tizu_pr1_TA_tex_txt
- 0x80F10420: kan_tizu_pr2_TA_tex_txt
- 0x80F10620: kan_tizu_pr4_TA_tex_txt
- 0x80F10820: kan_tizu_pr5_TA_tex_txt
- 0x80F10A20: kan_tizu_pr6_TA_tex_txt
- 0x80F10C20: kan_tizu_pr7_TA_tex_txt
- 0x80F10E20: kan_tizu_c3r1b_TA_tex_txt
- 0x80F11020: kan_tizu_c4r1b_TA_tex_txt
- 0x80F11220: kan_tizu_c1r2b_TA_tex_txt
- 0x80F11420: kan_tizu_c4r2b_TA_tex_txt
- 0x80F11620: kan_tizu_c5r2b_TA_tex_txt
- 0x80F11820: kan_tizu_c6r1b_TA_tex_txt
- 0x80F11A20: kan_tizu_c7r1b_TA_tex_txt
- 0x80F11C20: kan_tizu_tst1_TA_tex_txt
- 0x80F11E20: kan_tizu_tr1_TA_tex_txt
- 0x80F12020: kan_tizu_t_TA_tex_txt
- 0x80F12220: kan_tizu_fsh_TA_tex_txt
- 0x80F12420: kan_tizu_fpo_TA_tex_txt
- 0x80F12620: kan_tizu_fpk_TA_tex_txt
- 0x80F12820: kan_tizu_fmh_TA_tex_txt
- 0x80F12A20: kan_tizu_fko_TA_tex_txt
- 0x80F12C20: kan_tizu_mr1_TA_tex_txt
- 0x80F12E20: kan_tizu_m_TA_tex_txt
- 0x80F13020: kan_tizu_mr1b_TA_tex_txt
- 0x80F13220: kan_tizu_tr1b_TA_tex_txt
- 0x80F13420: kan_tizu_fta_TA_tex_txt
- 0x80F13620: kan_tizu_mwf_TA_tex_txt
- 0x80F13820: kan_tizu_fmu_TA_tex_txt
- 0x80F13A20: md_price_table
- 0x80F13AA0: rom_museum1_mado_pal
- 0x80F13AC0: rom_museum1_step_pal
- 0x80F13AE0: rom_museum1_floor_pal
- 0x80F13B00: rom_museum1_wall_pal
- 0x80F13B20: rom_museum1_mado1_tex
- 0x80F14320: rom_museum1_step1_tex
- 0x80F14B20: rom_museum1_step2_tex
- 0x80F14F20: rom_museum1_floorA_tex
- 0x80F15720: rom_museum1_floorB_tex
- 0x80F15F20: rom_museum1_mado2_tex
- 0x80F16720: rom_museum1_sign1_tex
- 0x80F16B20: rom_museum1_wallA_tex
- 0x80F17320: rom_museum1_wallB_tex
- 0x80F17B20: rom_museum1_sign2_tex
- 0x80F17F20: rom_museum1_sign3_tex
- 0x80F18320: rom_museum1_sign4_tex
- 0x80F18720: rom_museum1_v
- 0x80F199E0: rom_museum1_modelT
- 0x80F19A70: rom_museum1_model
- 0x80F19D68: museum_entrance_actable
- 0x80F19DC0: rom_museum5_on_pal
- 0x80F19E00: rom_museum5_floor_pal
- 0x80F19E20: rom_museum5_step_pal
- 0x80F19E40: rom_museum5_ki_tex
- 0x80F1A840: rom_museum5_floor_tex
- 0x80F1B040: rom_museum5_step_tex
- 0x80F1B840: rom_museum5_isi_tex
- 0x80F1BA40: rom_museum5_plate_tex
- 0x80F1BC40: rom_museum5_v
- 0x80F1C9C0: rom_museum5_modelT
- 0x80F1C9C8: rom_museum5_model
- 0x80F1D4C0: rom_museum5_wall_v
- 0x80F1D530: rom_museum5_wall_model
- 0x80F1D588: museum_fish_actable
- 0x80F1D5C0: rom_museum2_wall_pal
- 0x80F1D5E0: rom_museum2_floor_pal
- 0x80F1D600: rom_museum2_step1_pal
- 0x80F1D620: rom_museum2_wallA_tex
- 0x80F1DE20: rom_museum2_wallB_tex
- 0x80F1E620: rom_museum2_floorA_tex
- 0x80F1EE20: rom_museum2_step1_tex
- 0x80F1F620: rom_museum2_plate_tex
- 0x80F1F720: rom_museum2_v
- 0x80F20820: rom_museum2_modelT
- 0x80F20828: rom_museum2_model
- 0x80F20B58: museum_fossil_actable
- 0x80F20BC0: rom_museum4_floor_pal
- 0x80F20BE0: rom_museum4_step_pal2
- 0x80F20C00: rom_museum4_wallB_tex
- 0x80F21000: rom_museum4_step_tex
- 0x80F21A00: rom_museum4_floorA_tex
- 0x80F22200: rom_museum4_v
- 0x80F23710: rom_museum4_model
- 0x80F23D40: rom_museum4_wall_v
- 0x80F23DB0: rom_museum4_wall_model
- 0x80F23E08: museum_insect_actable
- 0x80F23E40: rom_museum3_wall_pal
- 0x80F23E60: rom_museum3_back_pal
- 0x80F23E80: rom_museum3_floor_pal
- 0x80F23EA0: rom_museum3_wallA_tex
- 0x80F246A0: rom_museum3_wallB_tex
- 0x80F24EA0: rom_museum3_back_tex
- 0x80F256A0: rom_museum3_floorA_tex
- 0x80F25EA0: rom_museum3_step_tex
- 0x80F266A0: rom_museum3_hasira_tex
- 0x80F267A0: rom_museum3_backside_tex
- 0x80F26920: rom_museum3_v
- 0x80F27AD0: rom_museum3_modelT
- 0x80F27AD8: rom_museum3_model
- 0x80F27E18: museum_picture_actable
- 0x80F27E60: obj_myhome_step_pal
- 0x80F27E80: obj_myhome_step_tex
- 0x80F28680: obj_myhome_step_down_v
- 0x80F28800: obj_myhome_step_down_model
- 0x80F288A0: rom_myhome_step_tex
- 0x80F290A0: obj_myhome_step_up_v
- 0x80F291E0: obj_myhome_step_up_model
- 0x80F29260: rom_tailor_wall_pal
- 0x80F29280: rom_tailor_floor_pal
- 0x80F292A0: rom_tailor_mado_pal
- 0x80F292C0: rom_tailor_reji_pal
- 0x80F292E0: rom_tailor_dogu_pal
- 0x80F29300: rom_tailor_misin_pal
- 0x80F29320: rom_tailor_table_pal
- 0x80F29340: rom_tailor_box_pal
- 0x80F29360: rom_tailor_quilt_pal
- 0x80F29380: rom_tailor_ent_pal
- 0x80F293A0: rom_tailor_wallA_tex
- 0x80F29BA0: rom_tailor_wallB_tex
- 0x80F2A3A0: rom_tailor_floorA_tex
- 0x80F2ABA0: rom_tailor_floorB_tex
- 0x80F2B3A0: rom_tailor_floorC_tex
- 0x80F2BBA0: rom_tailor_floorD_tex
- 0x80F2C3A0: rom_tailor_kage1_tex
- 0x80F2C4A0: rom_tailor_mado_tex
- 0x80F2C6A0: rom_tailor_pic1_tex
- 0x80F2C8A0: rom_tailor_pic2_tex
- 0x80F2CAA0: rom_tailor_pic3_tex
- 0x80F2CCA0: rom_tailor_pic4_tex
- 0x80F2CEA0: rom_tailor_pic5_tex
- 0x80F2D0A0: rom_tailor_pic6_tex
- 0x80F2D2A0: rom_tailor_pic7_tex
- 0x80F2D4A0: rom_tailor_pic8_tex
- 0x80F2D6A0: rom_tailor_tyoki_tex
- 0x80F2D7A0: rom_tailor_cloth1_tex
- 0x80F2D820: rom_tailor_misin2_tex
- 0x80F2DA20: rom_tailor_table_mae_tex
- 0x80F2DB20: rom_tailor_table_yoko_tex
- 0x80F2DBA0: rom_tailor_table_ue_tex
- 0x80F2DCA0: rom_tailor_ito_tex
- 0x80F2DEA0: rom_tailor_table_reji_tex
- 0x80F2DF20: rom_tailor_misin1_tex
- 0x80F2E120: rom_tailor_misindai_tex
- 0x80F2E320: rom_tailor_table_misin1_tex
- 0x80F2E420: rom_tailor_reji_tex
- 0x80F2E620: rom_tailor_table_misin2_tex
- 0x80F2E6A0: rom_tailor_box_tex
- 0x80F2E7A0: rom_tailor_box1_tex
- 0x80F2E820: rom_tailor_box2_tex
- 0x80F2E8A0: rom_tailor_box3_tex
- 0x80F2E920: rom_tailor_box4_tex
- 0x80F2E9A0: rom_tailor_box5_tex
- 0x80F2EA20: rom_tailor_box6_tex
- 0x80F2EAA0: rom_tailor_box7_tex
- 0x80F2EB20: rom_tailor_box8_tex
- 0x80F2EBA0: rom_tailor_kage2_tex
- 0x80F2EC20: rom_tailor_quilt_tex
- 0x80F2F420: rom_tailor_ent_tex
- 0x80F2F520: rom_tailor_misinbari1_tex
- 0x80F2F5A0: rom_tailor_misinbari2_tex
- 0x80F2F620: rom_tailor_tape_tex
- 0x80F2F820: rom_tailor_dogu1_tex
- 0x80F2F8A0: rom_tailor_dogu2_tex
- 0x80F2F920: rom_tailor_v
- 0x80F31700: rom_tailor_modelT
- 0x80F31798: rom_tailor_model
- 0x80F31FB0: needlework_actable
- 0x80F32020: int_nog_amenbo_pal
- 0x80F32040: int_nog_amenbo_glass_tex_pic_ci4_pal
- 0x80F32060: int_nog_amenbo_body_tex_txt
- 0x80F32160: int_nog_amenbo_base_tex_txt
- 0x80F321E0: int_nog_amenbo_top_tex_txt
- 0x80F323E0: int_nog_amenbo_side_tex_txt
- 0x80F325E0: int_nog_amenbo_water_tex_txt
- 0x80F32660: int_nog_amenbo_glass_tex_txt
- 0x80F32760: int_nog_amenbo_v
- 0x80F32B10: int_nog_amenbo_body_model
- 0x80F32B70: int_nog_amenbo_water_model
- 0x80F32BD0: int_nog_amenbo_side_model
- 0x80F32C38: int_nog_amenbo_komado_model
- 0x80F32C90: int_nog_amenbo_glass_model
- 0x80F32CF8: int_nog_amenbo_base_model
- 0x80F32D98: cKF_ckcb_r_int_nog_amenbo_tbl
- 0x80F32DA0: cKF_kn_int_nog_amenbo_tbl
- 0x80F32DA8: cKF_c_int_nog_amenbo_tbl
- 0x80F32DD4: cKF_ds_int_nog_amenbo_tbl
- 0x80F32F08: cKF_ba_r_int_nog_amenbo
- 0x80F32F1C: cKF_je_r_int_nog_amenbo_tbl
- 0x80F32F70: cKF_bs_r_int_nog_amenbo
- 0x80F32F80: int_nog_ari_pal
- 0x80F32FA0: int_nog_ari_glass_tex_rgb_ci4_pal
- 0x80F32FC0: int_nog_ari_side_tex
- 0x80F331C0: int_nog_ari_foot_tex
- 0x80F33240: int_nog_ari_face_tex
- 0x80F33540: int_nog_ari_top_tex
- 0x80F33640: int_nog_ari_base_tex
- 0x80F336C0: int_nog_ari_glass_tex_rgb_ci4
- 0x80F337C0: int_nog_ari_v
- 0x80F33B00: int_nog_ari_on_model
- 0x80F33BC8: int_nog_ari_env_model
- 0x80F33C30: int_nog_ari_onT_model
- 0x80F33CA0: int_nog_balloon1_pal
- 0x80F33D40: int_nog_balloon1_weight_tex_txt
- 0x80F33E40: int_nog_balloon1_head_tex_rgb_ia8
- 0x80F34240: int_nog_balloon1_v
- 0x80F34860: int_nog_balloon1_weight_model
- 0x80F348E0: int_nog_balloon1_a_model
- 0x80F34938: int_nog_balloon1_b_model
- 0x80F349D0: int_nog_balloon1_c_model
- 0x80F34A68: int_nog_balloon1_head_model
- 0x80F34B08: cKF_ckcb_r_int_nog_balloon1_tbl
- 0x80F34B10: cKF_kn_int_nog_balloon1_tbl
- 0x80F34B20: cKF_c_int_nog_balloon1_tbl
- 0x80F34B3C: cKF_ds_int_nog_balloon1_tbl
- 0x80F34C28: cKF_ba_r_int_nog_balloon1
- 0x80F34C3C: cKF_je_r_int_nog_balloon1_tbl
- 0x80F34C84: cKF_bs_r_int_nog_balloon1
- 0x80F34CA0: int_nog_balloon2_pal
- 0x80F34D40: int_nog_balloon2_weight_tex_txt
- 0x80F34E40: int_nog_balloon2_head_tex_rgb_ia8
- 0x80F35240: int_nog_balloon2_v
- 0x80F35860: int_nog_balloon2_weight_model
- 0x80F358E0: int_nog_balloon2_a_model
- 0x80F35938: int_nog_balloon2_b_model
- 0x80F359D0: int_nog_balloon2_c_model
- 0x80F35A68: int_nog_balloon2_head_model
- 0x80F35B08: cKF_ckcb_r_int_nog_balloon2_tbl
- 0x80F35B10: cKF_kn_int_nog_balloon2_tbl
- 0x80F35B20: cKF_c_int_nog_balloon2_tbl
- 0x80F35B3C: cKF_ds_int_nog_balloon2_tbl
- 0x80F35C28: cKF_ba_r_int_nog_balloon2
- 0x80F35C3C: cKF_je_r_int_nog_balloon2_tbl
- 0x80F35C84: cKF_bs_r_int_nog_balloon2
- 0x80F35CA0: int_nog_balloon3_pal
- 0x80F35D40: int_nog_balloon3_weight_tex_txt
- 0x80F35E40: int_nog_balloon3_head_tex_rgb_ia8
- 0x80F36240: int_nog_balloon3_v
- 0x80F36860: int_nog_balloon3_weight_model
- 0x80F368E0: int_nog_balloon3_a_model
- 0x80F36938: int_nog_balloon3_b_model
- 0x80F369D0: int_nog_balloon3_c_model
- 0x80F36A68: int_nog_balloon3_head_model
- 0x80F36B08: cKF_ckcb_r_int_nog_balloon3_tbl
- 0x80F36B10: cKF_kn_int_nog_balloon3_tbl
- 0x80F36B20: cKF_c_int_nog_balloon3_tbl
- 0x80F36B3C: cKF_ds_int_nog_balloon3_tbl
- 0x80F36C28: cKF_ba_r_int_nog_balloon3
- 0x80F36C3C: cKF_je_r_int_nog_balloon3_tbl
- 0x80F36C84: cKF_bs_r_int_nog_balloon3
- 0x80F36CA0: int_nog_balloon4_pal
- 0x80F36D40: int_nog_balloon4_weight_tex_txt
- 0x80F36E40: int_nog_balloon4_head_tex_rgb_ia8
- 0x80F37240: int_nog_balloon4_v
- 0x80F37860: int_nog_balloon4_weight_model
- 0x80F378E0: int_nog_balloon4_a_model
- 0x80F37938: int_nog_balloon4_b_model
- 0x80F379D0: int_nog_balloon4_c_model
- 0x80F37A68: int_nog_balloon4_head_model
- 0x80F37B08: cKF_ckcb_r_int_nog_balloon4_tbl
- 0x80F37B10: cKF_kn_int_nog_balloon4_tbl
- 0x80F37B20: cKF_c_int_nog_balloon4_tbl
- 0x80F37B3C: cKF_ds_int_nog_balloon4_tbl
- 0x80F37C28: cKF_ba_r_int_nog_balloon4
- 0x80F37C3C: cKF_je_r_int_nog_balloon4_tbl
- 0x80F37C84: cKF_bs_r_int_nog_balloon4
- 0x80F37CA0: int_nog_balloon5_pal
- 0x80F37D40: int_nog_balloon5_weight_tex_txt
- 0x80F37E40: int_nog_balloon5_head_tex_rgb_ia8
- 0x80F38240: int_nog_balloon5_v
- 0x80F38860: int_nog_balloon5_weight_model
- 0x80F388E0: int_nog_balloon5_a_model
- 0x80F38938: int_nog_balloon5_b_model
- 0x80F389D0: int_nog_balloon5_c_model
- 0x80F38A68: int_nog_balloon5_head_model
- 0x80F38B08: cKF_ckcb_r_int_nog_balloon5_tbl
- 0x80F38B10: cKF_kn_int_nog_balloon5_tbl
- 0x80F38B20: cKF_c_int_nog_balloon5_tbl
- 0x80F38B3C: cKF_ds_int_nog_balloon5_tbl
- 0x80F38C28: cKF_ba_r_int_nog_balloon5
- 0x80F38C3C: cKF_je_r_int_nog_balloon5_tbl
- 0x80F38C84: cKF_bs_r_int_nog_balloon5
- 0x80F38CA0: int_nog_balloon6_pal
- 0x80F38CC0: int_nog_balloon6_weight_tex_txt
- 0x80F38E40: int_nog_balloon65_head_tex_rgb_ia8
- 0x80F39240: int_nog_balloon6_v
- 0x80F3A060: int_nog_balloon6_weight_model
- 0x80F3A0E0: int_nog_balloon6_a_model
- 0x80F3A138: int_nog_balloon6_b_model
- 0x80F3A1D0: int_nog_balloon6_c_model
- 0x80F3A268: int_nog_balloon6_head_model
- 0x80F3A3D0: cKF_ckcb_r_int_nog_balloon6_tbl
- 0x80F3A3D8: cKF_kn_int_nog_balloon6_tbl
- 0x80F3A3E8: cKF_c_int_nog_balloon6_tbl
- 0x80F3A404: cKF_ds_int_nog_balloon6_tbl
- 0x80F3A4F0: cKF_ba_r_int_nog_balloon6
- 0x80F3A504: cKF_je_r_int_nog_balloon6_tbl
- 0x80F3A54C: cKF_bs_r_int_nog_balloon6
- 0x80F3A560: int_nog_balloon7_pal
- 0x80F3A580: int_nog_balloon7_weight_tex_txt
- 0x80F3A700: int_nog_balloon75_head_tex_rgb_ia8
- 0x80F3AB00: int_nog_balloon7_v
- 0x80F3B920: int_nog_balloon7_weight_model
- 0x80F3B9A0: int_nog_balloon7_a_model
- 0x80F3B9F8: int_nog_balloon7_b_model
- 0x80F3BA90: int_nog_balloon7_c_model
- 0x80F3BB28: int_nog_balloon7_head_model
- 0x80F3BC90: cKF_ckcb_r_int_nog_balloon7_tbl
- 0x80F3BC98: cKF_kn_int_nog_balloon7_tbl
- 0x80F3BCA8: cKF_c_int_nog_balloon7_tbl
- 0x80F3BCC4: cKF_ds_int_nog_balloon7_tbl
- 0x80F3BDB0: cKF_ba_r_int_nog_balloon7
- 0x80F3BDC4: cKF_je_r_int_nog_balloon7_tbl
- 0x80F3BE0C: cKF_bs_r_int_nog_balloon7
- 0x80F3BE20: int_nog_balloon8_pal
- 0x80F3BE40: int_nog_balloon8_weight_tex_txt
- 0x80F3BFC0: int_nog_balloon85_head_tex_rgb_ia8
- 0x80F3C3C0: int_nog_balloon8_v
- 0x80F3D1E0: int_nog_balloon8_weight_model
- 0x80F3D260: int_nog_balloon8_a_model
- 0x80F3D2B8: int_nog_balloon8_b_model
- 0x80F3D350: int_nog_balloon8_c_model
- 0x80F3D3E8: int_nog_balloon8_head_model
- 0x80F3D550: cKF_ckcb_r_int_nog_balloon8_tbl
- 0x80F3D558: cKF_kn_int_nog_balloon8_tbl
- 0x80F3D568: cKF_c_int_nog_balloon8_tbl
- 0x80F3D584: cKF_ds_int_nog_balloon8_tbl
- 0x80F3D670: cKF_ba_r_int_nog_balloon8
- 0x80F3D684: cKF_je_r_int_nog_balloon8_tbl
- 0x80F3D6CC: cKF_bs_r_int_nog_balloon8
- 0x80F3D6E0: int_nog_beachbed_pal
- 0x80F3D700: int_nog_beachbed_body_tex
- 0x80F3DB00: int_nog_beachbed_side_tex
- 0x80F3DD00: int_nog_beachbed_v
- 0x80F3E040: int_nog_beachbedT_model
- 0x80F3E140: int_nog_beachtable_pal
- 0x80F3E160: int_nog_beachtable_fruit_tex
- 0x80F3E360: int_nog_beachtable_pole_tex
- 0x80F3E560: int_nog_beachtable_top_tex
- 0x80F3E960: int_nog_beachtable_bubble_tex_rgb_ci4
- 0x80F3E9E0: int_nog_beachtable_juice_tex
- 0x80F3EAE0: int_nog_beachtable_v
- 0x80F3F710: int_nog_beachtable_bodyT_model
- 0x80F3F888: int_nog_beachtable_glassT_model
- 0x80F3F958: int_nog_beachtable_bubbleT_model
- 0x80F3F9C0: int_nog_bishopB_pal
- 0x80F3F9E0: int_nog_bishopB_base_tex
- 0x80F3FBE0: int_nog_bishopB_circle_tex
- 0x80F3FC60: int_nog_bishopB_crown_tex
- 0x80F3FE60: int_nog_bishopB_v
- 0x80F40100: int_nog_bishopB_model
- 0x80F40178: int_nog_bishopBT_model
- 0x80F40200: int_nog_bishopW_pal
- 0x80F40220: int_nog_bishopW_base_tex
- 0x80F40420: int_nog_bishopW_circle_tex
- 0x80F404A0: int_nog_bishopW_crown_tex
- 0x80F406A0: int_nog_bishopW_v
- 0x80F40940: int_nog_bishopW_model
- 0x80F409B8: int_nog_bishopWT_model
- 0x80F40A40: int_nog_burner_pal
- 0x80F40A60: int_nog_burner_gas_tex
- 0x80F40B60: int_nog_burner_side_tex
- 0x80F40F60: int_nog_burner_top_tex
- 0x80F41160: int_nog_burner_v
- 0x80F41850: int_nog_burner_model
- 0x80F419A0: int_nog_collegenote_pal
- 0x80F419C0: int_nog_collegenote_tex
- 0x80F41DC0: int_nog_collegenote_v
- 0x80F42190: int_nog_collegenote_model
- 0x80F42260: int_nog_cornucopia_pal
- 0x80F42280: int_nog_cornucopia_pampB_tex
- 0x80F42300: int_nog_cornucopia_pampC_tex
- 0x80F42380: int_nog_cornucopia_pampD_tex
- 0x80F42400: int_nog_cornucopia_runner_tex
- 0x80F42500: int_nog_cornucopia_horn_tex
- 0x80F42600: int_nog_cornucopia_leafA_tex
- 0x80F42680: int_nog_cornucopia_leafB_tex
- 0x80F42700: int_nog_cornucopia_ear_tex
- 0x80F42800: int_nog_cornucopia_v
- 0x80F42D00: int_nog_cornucopiaT_model
- 0x80F42E80: int_nog_cosmos_grass_tex
- 0x80F42F00: int_nog_cosmos_flower_tex
- 0x80F43000: int_nog_cosmos_leaf_tex
- 0x80F43080: int_nog_cosmos_v
- 0x80F433C0: int_nog_cosmos_model
- 0x80F43418: int_nog_cosmosT_model
- 0x80F434E0: int_nog_dango_pal
- 0x80F43500: int_nog_dango_glass_tex_pic_ci4_pal
- 0x80F43520: int_nog_dango_body_tex_txt
- 0x80F43620: int_nog_dango_base_tex_txt
- 0x80F436A0: int_nog_dango_top_tex_txt
- 0x80F438A0: int_nog_dango_side_tex_txt
- 0x80F43AA0: int_nog_dango_glass_tex_txt
- 0x80F43BA0: int_nog_dango_v
- 0x80F43F00: int_nog_dango_body_model
- 0x80F43F60: int_nog_dango_side_model
- 0x80F43FC8: int_nog_dango_komado_model
- 0x80F44020: int_nog_dango_glass_model
- 0x80F44088: int_nog_dango_base_model
- 0x80F44128: cKF_ckcb_r_int_nog_dango_tbl
- 0x80F44130: cKF_kn_int_nog_dango_tbl
- 0x80F44138: cKF_c_int_nog_dango_tbl
- 0x80F4415C: cKF_ds_int_nog_dango_tbl
- 0x80F441B8: cKF_ba_r_int_nog_dango
- 0x80F441CC: cKF_je_r_int_nog_dango_tbl
- 0x80F44214: cKF_bs_r_int_nog_dango
- 0x80F44220: int_nog_dump_pal
- 0x80F44260: int_nog_dump_body_tex
- 0x80F44460: int_nog_dump_grass_tex
- 0x80F44660: int_nog_dump_wire_tex
- 0x80F44760: int_nog_dump_v
- 0x80F45520: int_nog_dump_model
- 0x80F45578: int_nog_dumpT_model
- 0x80F457A0: int_nog_earth_pal
- 0x80F457C0: int_nog_earth_tex
- 0x80F459C0: int_nog_earth_v
- 0x80F45A00: int_nog_earth_model
- 0x80F45A60: int_nog_f_tree_pal
- 0x80F45A80: int_nog_f_tree_grass_tex
- 0x80F45B00: int_nog_f_tree_leaf_tex
- 0x80F45D00: int_nog_f_tree_trunk_tex
- 0x80F46100: int_nog_f_tree_v
- 0x80F46620: int_nog_f_tree_model
- 0x80F46678: int_nog_f_treeT_model
- 0x80F467A0: int_nog_fan_pal
- 0x80F467C0: int_nog_fan_net_tex_txt
- 0x80F469C0: int_nog_fan_motor_tex_txt
- 0x80F46AC0: int_nog_fan_hole_tex_txt
- 0x80F46B40: int_nog_fan_fan1_TA_tex_txt
- 0x80F46C40: int_nog_fan_fan2_TA_tex_txt
- 0x80F46D40: int_nog_fan_fan3_TA_tex_txt
- 0x80F46E40: int_nog_fan_bace_tex_txt
- 0x80F47040: int_nog_fan_pole_tex_txt
- 0x80F470C0: int_nog_fan_v
- 0x80F473A0: head_int_nog_fan_model
- 0x80F47498: bece_int_nog_fan_model
- 0x80F47518: cKF_ckcb_r_int_nog_fan_tbl
- 0x80F4751C: cKF_kn_int_nog_fan_tbl
- 0x80F47524: cKF_c_int_nog_fan_tbl
- 0x80F47538: cKF_ds_int_nog_fan_tbl
- 0x80F47564: cKF_ba_r_int_nog_fan
- 0x80F47578: cKF_je_r_int_nog_fan_tbl
- 0x80F4759C: cKF_bs_r_int_nog_fan
- 0x80F475C0: int_nog_flat_pal
- 0x80F475E0: int_nog_flat_tex
- 0x80F47660: int_nog_flat_v
- 0x80F476A0: int_nog_flat_model
- 0x80F47700: int_nog_gong_pal
- 0x80F47720: int_nog_gong_bell_tex_txt
- 0x80F47820: int_nog_gong_spring_tex_txt
- 0x80F47A20: int_nog_gong_hammer_tex_txt
- 0x80F47B20: int_nog_gong_base_tex_txt
- 0x80F47D20: int_nog_gong_v
- 0x80F48000: int_nog_gong_bell_model
- 0x80F48070: int_nog_gong_base_model
- 0x80F480D8: int_nog_gong_spring_model
- 0x80F48130: int_nog_gong_hammer_model
- 0x80F48198: cKF_ckcb_r_int_nog_gong_tbl
- 0x80F481A0: cKF_kn_int_nog_gong_tbl
- 0x80F481A8: cKF_c_int_nog_gong_tbl
- 0x80F481D4: cKF_ds_int_nog_gong_tbl
- 0x80F48260: cKF_ba_r_int_nog_gong
- 0x80F48274: cKF_je_r_int_nog_gong_tbl
- 0x80F482C8: cKF_bs_r_int_nog_gong
- 0x80F482E0: int_nog_harddiary_pal
- 0x80F48300: int_nog_harddiary_tex
- 0x80F48700: int_nog_harddiary_v
- 0x80F48940: int_nog_harddiaryT_model
- 0x80F48A00: int_nog_isidai_glass_tex_pic_ci4_pal
- 0x80F48A20: int_nog_isidai_body_tex_txt
- 0x80F48D20: int_nog_isidai_top_tex_txt
- 0x80F48E20: int_nog_isidai_side_tex_txt
- 0x80F49020: int_nog_isidai_base_tex_txt
- 0x80F490A0: int_nog_isidai_glass_tex_txt
- 0x80F491A0: int_nog_isidai_v
- 0x80F49530: int_nog_isidai_sakana_model
- 0x80F495C0: int_sum_isidai_top_model
- 0x80F49618: int_sum_isidai_evw_model
- 0x80F49680: int_sum_isidai_base_model
- 0x80F49710: cKF_ckcb_r_int_nog_isidai_tbl
- 0x80F49718: cKF_kn_int_nog_isidai_tbl
- 0x80F49720: cKF_c_int_nog_isidai_tbl
- 0x80F49740: cKF_ds_int_nog_isidai_tbl
- 0x80F49790: cKF_ba_r_int_nog_isidai
- 0x80F497A4: cKF_je_r_int_nog_isidai_tbl
- 0x80F497E0: cKF_bs_r_int_nog_isidai
- 0x80F49800: int_nog_ka_pal
- 0x80F49820: int_nog_ka_glass_tex_pic_ci4_pal
- 0x80F49840: int_nog_ka_body_tex_txt
- 0x80F499C0: int_nog_ka_side_tex_txt
- 0x80F49BC0: int_nog_ka_base_tex_txt
- 0x80F49C40: int_nog_ka_top_tex_txt
- 0x80F49E40: int_nog_ka_glass_tex_txt
- 0x80F49F40: int_nog_ka_v
- 0x80F4A350: int_nog_ka_wing_model
- 0x80F4A3B0: int_nog_ka_body_model
- 0x80F4A410: int_nog_ka_side_model
- 0x80F4A478: int_nog_ka_komado_model
- 0x80F4A4D0: int_nog_ka_glass_model
- 0x80F4A538: int_nog_ka_base_model
- 0x80F4A5D8: cKF_ckcb_r_int_nog_ka_tbl
- 0x80F4A5E0: cKF_kn_int_nog_ka_tbl
- 0x80F4A5E8: cKF_c_int_nog_ka_tbl
- 0x80F4A614: cKF_ds_int_nog_ka_tbl
- 0x80F4A670: cKF_ba_r_int_nog_ka
- 0x80F4A684: cKF_je_r_int_nog_ka_tbl
- 0x80F4A6D8: cKF_bs_r_int_nog_ka
- 0x80F4A700: int_nog_kaeru_glass_tex_pic_ci4_pal
- 0x80F4B720: int_nog_kaeru_top_tex_txt
- 0x80F4B820: int_nog_kaeru_side_tex_txt
- 0x80F4BA20: int_nog_kaeru_base_tex_txt
- 0x80F4BAA0: int_nog_kaeru_etc_tex_txt
- 0x80F4BB20: int_nog_kaeru_glass_tex_txt
- 0x80F4BC20: int_nog_kaeru_v
- 0x80F4C560: int_sum_kaeru_hara_model
- 0x80F4C5F8: int_sum_kaeru_foot_model
- 0x80F4C650: int_sum_kaeru_body_model
- 0x80F4C720: int_sum_kaeru_top_model
- 0x80F4C778: int_sum_kaeru_leg_model
- 0x80F4C7D0: int_sum_kaeru_evw_model
- 0x80F4C838: int_sum_kaeru_base_model
- 0x80F4C8F8: cKF_ckcb_r_int_nog_kaeru_tbl
- 0x80F4C900: cKF_kn_int_nog_kaeru_tbl
- 0x80F4C904: cKF_c_int_nog_kaeru_tbl
- 0x80F4C938: cKF_ds_int_nog_kaeru_tbl
- 0x80F4C950: cKF_ba_r_int_nog_kaeru
- 0x80F4C964: cKF_je_r_int_nog_kaeru_tbl
- 0x80F4C9C4: cKF_bs_r_int_nog_kaeru
- 0x80F4C9E0: int_nog_kamakura_pal
- 0x80F4CA00: int_nog_kamakura_body_tex
- 0x80F4CE00: int_nog_kamakura_grass_tex
- 0x80F4D000: int_nog_kamakura_v
- 0x80F4D230: int_nog_kamakura_on_model
- 0x80F4D288: int_nog_kamakura_offT_model
- 0x80F4D2E0: int_nog_kamakura_onT_model
- 0x80F4D380: int_nog_kera_pal
- 0x80F4D3A0: int_nog_kera_glass_tex_pic_ci4_pal
- 0x80F4D3C0: int_nog_kera_body_tex_txt
- 0x80F4D4C0: int_nog_kera_base_tex_txt
- 0x80F4D540: int_nog_kera_top_tex_txt
- 0x80F4D740: int_nog_kera_side_tex_txt
- 0x80F4D940: int_nog_kera_glass_tex_txt
- 0x80F4DA40: int_nog_kera_v
- 0x80F4DDB0: int_nog_kera_body_model
- 0x80F4DE10: int_nog_kera_side_model
- 0x80F4DE78: int_nog_kera_komado_model
- 0x80F4DED0: int_nog_kera_glass_model
- 0x80F4DF38: int_nog_kera_base_model
- 0x80F4DFD8: cKF_ckcb_r_int_nog_kera_tbl
- 0x80F4DFE0: cKF_kn_int_nog_kera_tbl
- 0x80F4DFE8: cKF_c_int_nog_kera_tbl
- 0x80F4E00C: cKF_ds_int_nog_kera_tbl
- 0x80F4E128: cKF_ba_r_int_nog_kera
- 0x80F4E13C: cKF_je_r_int_nog_kera_tbl
- 0x80F4E184: cKF_bs_r_int_nog_kera
- 0x80F4E1A0: int_nog_kingB_pal
- 0x80F4E1C0: int_nog_kingB_base_tex
- 0x80F4E3C0: int_nog_kingB_circle_tex
- 0x80F4E440: int_nog_kingB_crown_tex
- 0x80F4E640: int_nog_kingB_v
- 0x80F4EA30: int_nog_kingB_model
- 0x80F4EAA8: int_nog_kingBT_model
- 0x80F4EB60: int_nog_kingW_pal
- 0x80F4EB80: int_nog_kingW_base_tex
- 0x80F4ED80: int_nog_kingW_circle_tex
- 0x80F4EE00: int_nog_kingW_crown_tex
- 0x80F4F000: int_nog_kingW_v
- 0x80F4F3F0: int_nog_kingW_model
- 0x80F4F468: int_nog_kingWT_model
- 0x80F4F520: int_nog_knightB_pal
- 0x80F4F540: int_nog_knightB_head_tex
- 0x80F4F940: int_nog_knightB_top_tex
- 0x80F4F9C0: int_nog_knightB_v
- 0x80F4FDA0: int_nog_knightBT_model
- 0x80F4FE80: int_nog_knightW_pal
- 0x80F4FEA0: int_nog_knightW_head_tex
- 0x80F502A0: int_nog_knightW_top_tex
- 0x80F50320: int_nog_knightW_v
- 0x80F50700: int_nog_knightWT_model
- 0x80F507E0: int_nog_kouban_pal
- 0x80F50800: int_nog_koban_body_tex
- 0x80F50C00: int_nog_koban_grass_tex
- 0x80F50C80: int_nog_koban_roof2_tex
- 0x80F50E00: int_nog_koban_roof_tex
- 0x80F51000: int_nog_koban_v
- 0x80F51330: int_nog_koban_on_model
- 0x80F51388: int_nog_koban_onT_model
- 0x80F51450: int_nog_koban_offT_model
- 0x80F514C0: int_nog_kumo_pal
- 0x80F514E0: int_nog_kumo_glass_tex_pic_ci4_pal
- 0x80F51500: int_nog_kumo_body_tex_txt
- 0x80F51700: int_nog_kumo_side_tex_txt
- 0x80F51900: int_nog_kumo_base_tex_txt
- 0x80F51980: int_nog_kumo_top_tex_txt
- 0x80F51B80: int_nog_kumo_glass_tex_txt
- 0x80F51C80: int_nog_kumo_v
- 0x80F520E0: int_nog_kumo_body_model
- 0x80F52140: int_nog_kumo_side_model
- 0x80F521A8: int_nog_kumo_komado_model
- 0x80F52200: int_nog_kumo_glass_model
- 0x80F52268: int_nog_kumo_base_model
- 0x80F52308: int_nog_kumo_net_model
- 0x80F52368: cKF_ckcb_r_int_nog_kumo_tbl
- 0x80F52370: cKF_kn_int_nog_kumo_tbl
- 0x80F52374: cKF_c_int_nog_kumo_tbl
- 0x80F523A4: cKF_ds_int_nog_kumo_tbl
- 0x80F5240C: cKF_ba_r_int_nog_kumo
- 0x80F52420: cKF_je_r_int_nog_kumo_tbl
- 0x80F52474: cKF_bs_r_int_nog_kumo
- 0x80F52480: int_nog_kurage_pal
- 0x80F524A0: int_nog_kurage_glass_tex_pic_ci4_pal
- 0x80F524C0: int_nog_kurage_head_tex_txt
- 0x80F525C0: int_nog_kurage_foot_tex_txt
- 0x80F526C0: int_nog_kurage_side_tex_txt
- 0x80F528C0: int_nog_kurage_base_tex_txt
- 0x80F52940: int_nog_kurage_top_tex_txt
- 0x80F52A40: int_nog_kurage_glass_tex_pic_ci4
- 0x80F52B40: int_nog_kurage_v
- 0x80F52F20: int_nog_kurage_head_model
- 0x80F52F90: int_sum_kurage_top_model
- 0x80F52FE8: int_sum_kurage_evw_model
- 0x80F53050: int_sum_kurage_base_model
- 0x80F530E0: int_nog_kurage_foot_model
- 0x80F53150: cKF_ckcb_r_int_nog_kurage_tbl
- 0x80F53158: cKF_kn_int_nog_kurage_tbl
- 0x80F53170: cKF_c_int_nog_kurage_tbl
- 0x80F5318C: cKF_ds_int_nog_kurage_tbl
- 0x80F53228: cKF_ba_r_int_nog_kurage
- 0x80F5323C: cKF_je_r_int_nog_kurage_tbl
- 0x80F53290: cKF_bs_r_int_nog_kurage
- 0x80F532A0: int_nog_lawnmower_pal
- 0x80F532C0: int_nog_lawnmowre_body_tex
- 0x80F536C0: int_nog_lawnmowre_handle_tex
- 0x80F53AC0: int_nog_lawnmower_fade_tex_rgb_i4
- 0x80F53B40: int_nog_lawnmower_grass_tex_rgb_i4
- 0x80F53BC0: int_nog_lawnmower_v
- 0x80F543F0: int_nog_lawnmower_grass_model
- 0x80F54458: int_nog_lawnmower_bodyT_model
- 0x80F545A0: int_nog_maimai_pal
- 0x80F545C0: int_nog_maimai_glass_tex_pic_ci4_pal
- 0x80F545E0: int_nog_maimai_body_tex_txt
- 0x80F547E0: int_nog_maimai_base_tex_txt
- 0x80F54860: int_nog_maimai_top_tex_txt
- 0x80F54A60: int_nog_maimai_side_tex_txt
- 0x80F54C60: int_nog_maimai_glass_tex_txt
- 0x80F54D60: int_nog_maimai_v
- 0x80F55170: int_nog_maimai_body_model
- 0x80F551D8: int_nog_maimai_side_model
- 0x80F55240: int_nog_maimai_komado_model
- 0x80F55298: int_nog_maimai_glass_model
- 0x80F55300: int_nog_maimai_base_model
- 0x80F553A0: cKF_ckcb_r_int_nog_maimai_tbl
- 0x80F553A8: cKF_kn_int_nog_maimai_tbl
- 0x80F553AC: cKF_c_int_nog_maimai_tbl
- 0x80F553D4: cKF_ds_int_nog_maimai_tbl
- 0x80F553E8: cKF_ba_r_int_nog_maimai
- 0x80F553FC: cKF_je_r_int_nog_maimai_tbl
- 0x80F55444: cKF_bs_r_int_nog_maimai
- 0x80F55480: int_nog_medaka_glass_tex_pic_ci4_pal
- 0x80F554A0: int_nog_medaka_body_tex_txt
- 0x80F555A0: int_nog_medaka_top_tex_txt
- 0x80F556A0: int_nog_medaka_side_tex_txt
- 0x80F558A0: int_nog_medaka_base_tex_txt
- 0x80F55920: int_nog_medaka_etc_tex_txt
- 0x80F559A0: int_nog_medaka_glass_tex_pic_ci4
- 0x80F55AA0: int_nog_medaka_v
- 0x80F55ED0: int_nog_medaka_sakana_model
- 0x80F55F60: int_sum_medaka_top_model
- 0x80F55FB8: int_sum_medaka_evw_model
- 0x80F56020: int_sum_medaka_base_model
- 0x80F560D8: cKF_ckcb_r_int_nog_medaka_tbl
- 0x80F560E0: cKF_kn_int_nog_medaka_tbl
- 0x80F560E8: cKF_c_int_nog_medaka_tbl
- 0x80F56108: cKF_ds_int_nog_medaka_tbl
- 0x80F56180: cKF_ba_r_int_nog_medaka
- 0x80F56194: cKF_je_r_int_nog_medaka_tbl
- 0x80F561D0: cKF_bs_r_int_nog_medaka
- 0x80F561E0: int_nog_mikanbox_pal
- 0x80F56200: int_nog_mikanbox_tex
- 0x80F56600: int_nog_mikanbox_v
- 0x80F56780: int_nog_mikanbox_model
- 0x80F56800: int_nog_mino_pal
- 0x80F56820: int_nog_mino_glass_tex_pic_ci4_pal
- 0x80F56840: int_nog_mino_musi_tex_txt
- 0x80F568C0: int_nog_mino_body_tex_txt
- 0x80F569C0: int_nog_mino_base_tex_txt
- 0x80F56A40: int_nog_mino_top_tex_txt
- 0x80F56C40: int_nog_mino_side_tex_txt
- 0x80F56E40: int_nog_mino_glass_tex_txt
- 0x80F56F40: int_nog_mino_v
- 0x80F57380: int_nog_mino_musi_model
- 0x80F573E0: int_nog_mino_side_model
- 0x80F57448: int_nog_mino_komado_model
- 0x80F574A0: int_nog_mino_glass_model
- 0x80F57508: int_nog_mino_base_model
- 0x80F575A8: int_nog_mino_body_model
- 0x80F57610: cKF_ckcb_r_int_nog_mino_tbl
- 0x80F57618: cKF_kn_int_nog_mino_tbl
- 0x80F5761C: cKF_c_int_nog_mino_tbl
- 0x80F5764C: cKF_ds_int_nog_mino_tbl
- 0x80F57670: cKF_ba_r_int_nog_mino
- 0x80F57684: cKF_je_r_int_nog_mino_tbl
- 0x80F576D8: cKF_bs_r_int_nog_mino
- 0x80F576E0: int_nog_museum_pal
- 0x80F57700: int_nog_museum_body_tex
- 0x80F57B00: int_nog_museum_gate_tex
- 0x80F57C00: int_nog_museum_grass_tex
- 0x80F57C80: int_nog_museum_v
- 0x80F58560: int_nog_museum_on_model
- 0x80F585B8: int_nog_museum_onT_model
- 0x80F58700: int_nog_museum_offT_model
- 0x80F58760: int_nog_myhome2_grass_tex
- 0x80F587E0: int_nog_myhome2_body_tex
- 0x80F58DE0: int_nog_myhome2_chimney_tex
- 0x80F58E60: int_nog_myhome2_v
- 0x80F591E0: int_nog_myhome2_on_model
- 0x80F59260: int_nog_myhome2_off_model
- 0x80F592C0: int_nog_myhome2_onT_model
- 0x80F59340: int_nog_myhome4_body_tex
- 0x80F59940: int_nog_myhome4_chimney_tex
- 0x80F599C0: int_nog_myhome4_grass_tex
- 0x80F59A40: int_nog_myhome4_v
- 0x80F5A070: int_nog_myhome4_on_model
- 0x80F5A120: int_nog_myhome4_off_model
- 0x80F5A180: int_nog_myhome4_onT_model
- 0x80F5A220: int_nog_nabe_pal
- 0x80F5A240: int_nog_nabe_switch_tex_txt
- 0x80F5A2C0: int_nog_nabe_fire1_TA_tex_txt
- 0x80F5A340: int_nog_nabe_fire2_TA_tex_txt
- 0x80F5A3C0: int_nog_nabe_fire3_TA_tex_txt
- 0x80F5A440: int_nog_nabe_side_tex_txt
- 0x80F5A4C0: int_nog_nabe_top_tex_txt
- 0x80F5A6C0: int_nog_nabe_conro_tex_txt
- 0x80F5A8C0: int_nog_nabe_v
- 0x80F5AEA0: int_nog_nabe_switch_model
- 0x80F5AEF8: int_nog_nabe_fire_model
- 0x80F5AF68: int_nog_nabe_body_model
- 0x80F5B078: cKF_ckcb_r_int_nog_nabe_tbl
- 0x80F5B07C: cKF_kn_int_nog_nabe_tbl
- 0x80F5B080: cKF_c_int_nog_nabe_tbl
- 0x80F5B09C: cKF_ds_int_nog_nabe_tbl
- 0x80F5B0C0: cKF_ba_r_int_nog_nabe
- 0x80F5B0D4: cKF_je_r_int_nog_nabe_tbl
- 0x80F5B104: cKF_bs_r_int_nog_nabe
- 0x80F5B120: int_nog_pansy_grass_tex
- 0x80F5B1A0: int_nog_pansy_leaf_tex
- 0x80F5B220: int_nog_pansy_flower_tex
- 0x80F5B320: int_nog_pansy_v
- 0x80F5B660: int_nog_pansy_model
- 0x80F5B6B8: int_nog_pansyT_model
- 0x80F5B760: int_nog_pawnB_pal
- 0x80F5B780: int_nog_pawnB_top_tex_txt
- 0x80F5B880: int_nog_pawnB_circle_tex_txt
- 0x80F5B900: int_nog_pawnB_base_tex_txt
- 0x80F5BB00: int_nog_pawnB_v
- 0x80F5BD10: int_nog_pawnB_base_model
- 0x80F5BDA0: int_nog_pawnB_top_model
- 0x80F5BE00: cKF_ckcb_r_int_nog_pawnB_tbl
- 0x80F5BE04: cKF_c_int_nog_pawnB_tbl
- 0x80F5BE1C: cKF_ba_r_int_nog_pawnB
- 0x80F5BE30: cKF_je_r_int_nog_pawnB_tbl
- 0x80F5BE54: cKF_bs_r_int_nog_pawnB
- 0x80F5BE60: int_nog_pawnW_pal
- 0x80F5BE80: int_nog_pawnW_top_tex_txt
- 0x80F5BF80: int_nog_pawnW_circle_tex_txt
- 0x80F5C000: int_nog_pawnW_base_tex_txt
- 0x80F5C200: int_nog_pawnW_v
- 0x80F5C410: int_nog_pawnW_base_model
- 0x80F5C4A0: int_nog_pawnW_top_model
- 0x80F5C500: cKF_ckcb_r_int_nog_pawnW_tbl
- 0x80F5C504: cKF_c_int_nog_pawnW_tbl
- 0x80F5C51C: cKF_ba_r_int_nog_pawnW
- 0x80F5C530: cKF_je_r_int_nog_pawnW_tbl
- 0x80F5C554: cKF_bs_r_int_nog_pawnW
- 0x80F5C580: int_nog_piraluku_glass_tex_pic_ci4_pal
- 0x80F5C5A0: int_nog_pireluku_body_tex_txt
- 0x80F5C9A0: int_nog_pireluku_side_tex_txt
- 0x80F5CBA0: int_nog_pireluku_base_tex_txt
- 0x80F5CC20: int_nog_pireluku_top_tex_txt
- 0x80F5CCA0: int_nog_pireluku_glass_tex_txt
- 0x80F5CDA0: int_nog_piraluku_v
- 0x80F5D190: int_nog_piraluku_sakana_model
- 0x80F5D238: int_sum_piraluku_top_model
- 0x80F5D290: int_sum_piraluku_evw_model
- 0x80F5D2F8: int_sum_piraluku_base_model
- 0x80F5D388: cKF_ckcb_r_int_nog_piraluku_tbl
- 0x80F5D390: cKF_kn_int_nog_piraluku_tbl
- 0x80F5D3A4: cKF_c_int_nog_piraluku_tbl
- 0x80F5D3B8: cKF_ds_int_nog_piraluku_tbl
- 0x80F5D444: cKF_ba_r_int_nog_piraluku
- 0x80F5D458: cKF_je_r_int_nog_piraluku_tbl
- 0x80F5D494: cKF_bs_r_int_nog_piraluku
- 0x80F5D4A0: int_nog_queenB_pal
- 0x80F5D4C0: int_nog_queenB_base_tex
- 0x80F5D6C0: int_nog_queenB_circle_tex
- 0x80F5D740: int_nog_queenB_crown_tex
- 0x80F5D840: int_nog_queenB_v
- 0x80F5DB20: int_nog_queenB_model
- 0x80F5DB98: int_nog_queenBT_model
- 0x80F5DC40: int_nog_queenW_pal
- 0x80F5DC60: int_nog_queenW_base_tex
- 0x80F5DE60: int_nog_queenW_circle_tex
- 0x80F5DEE0: int_nog_queenW_crown_tex
- 0x80F5DFE0: int_nog_queenW_v
- 0x80F5E2C0: int_nog_queenW_model
- 0x80F5E338: int_nog_queenWT_model
- 0x80F5E3E0: int_nog_rail_pal
- 0x80F5E400: int_nog_rail_tex
- 0x80F5E480: int_nog_rail_v
- 0x80F5E580: int_nog_rail_model
- 0x80F5E600: int_nog_rookB_pal
- 0x80F5E620: int_nog_rookB_top_tex
- 0x80F5E6A0: int_nog_rookB_base_tex
- 0x80F5E8A0: int_nog_rookB_crown_tex
- 0x80F5E9A0: int_nog_rookB_v
- 0x80F5EC80: int_nog_rookB_model
- 0x80F5ECE0: int_nog_rookBT_model
- 0x80F5ED80: int_nog_rookW_pal
- 0x80F5EDA0: int_nog_rookW_top_tex
- 0x80F5EE20: int_nog_rookW_base_tex
- 0x80F5F020: int_nog_rookW_crown_tex
- 0x80F5F120: int_nog_rookW_v
- 0x80F5F400: int_nog_rookW_model
- 0x80F5F460: int_nog_rookWT_model
- 0x80F5F500: int_nog_s_tree_pal
- 0x80F5F520: int_nog_s_tree_grass_tex
- 0x80F5F5A0: int_nog_s_tree_leaf_tex
- 0x80F5F7A0: int_nog_s_tree_trunk_tex
- 0x80F5FBA0: int_nog_s_tree_v
- 0x80F600C0: int_nog_s_tree_model
- 0x80F60118: int_nog_s_treeT_model
- 0x80F60240: int_nog_schoolnote_pal
- 0x80F60260: int_nog_schoolnote_tex
- 0x80F60660: int_nog_schoolnote_v
- 0x80F60A30: int_nog_schoolnote_model
- 0x80F60B00: int_nog_shop1_pal
- 0x80F60B20: int_nog_shop1_body_tex
- 0x80F60F20: int_nog_shop1_grass_tex
- 0x80F60FA0: int_nog_shop1_roof_tex
- 0x80F611A0: int_nog_shop1_back_tex
- 0x80F612A0: int_nog_shop1_v
- 0x80F616E0: int_nog_shop1_on_model
- 0x80F61778: int_nog_shop1_onT_model
- 0x80F61808: int_nog_shop1_offT_model
- 0x80F61880: int_nog_shrine_pal
- 0x80F618A0: int_nog_shrine_figure_tex
- 0x80F61AA0: int_nog_shrine_base_tex
- 0x80F61CA0: int_nog_shrine_grass_tex
- 0x80F61D20: int_nog_shrine_water_tex
- 0x80F61DA0: int_nog_shrine_v
- 0x80F62740: int_nog_shrine_grass_model
- 0x80F62798: int_nog_shrine_figure_model
- 0x80F62820: int_nog_shrine_baseT_model
- 0x80F628F8: int_nog_shrine_waterT_model
- 0x80F629A0: int_nog_snowman_pal
- 0x80F629C0: int_nog_snowman_body_tex
- 0x80F62BC0: int_nog_snowman_head_tex
- 0x80F62DC0: int_nog_snowman_v
- 0x80F63120: int_nog_snowman_model
- 0x80F63220: int_noga_sprinkler
- 0x80F63240: int_nog_sprinkler_tex
- 0x80F63A40: int_nog_sprinkler_fade_tex_rgb_i4
- 0x80F63AC0: int_nog_sprinkler_water_tex_rgb_i4
- 0x80F63B40: int_nog_sprinkler_v
- 0x80F64170: int_nog_sprinkler_water_model
- 0x80F641F0: int_nog_sprinkler_bodyT_model
- 0x80F64320: int_nog_station1_base_tex_txt
- 0x80F64520: int_nog_station1_grass_tex_txt
- 0x80F645A0: int_nog_station1_body_tex_txt
- 0x80F649A0: int_nog_station1_roof_tex_txt
- 0x80F64BA0: int_nog_station1_v
- 0x80F657F0: int_nog_station1_long_model
- 0x80F65848: int_nog_station1_body_model
- 0x80F659E8: int_nog_station1_short_model
- 0x80F65A40: cKF_ckcb_r_int_nog_station1_tbl
- 0x80F65A48: cKF_c_int_nog_station1_tbl
- 0x80F65A6C: cKF_ba_r_int_nog_station1
- 0x80F65A80: cKF_je_r_int_nog_station1_tbl
- 0x80F65ABC: cKF_bs_r_int_nog_station1
- 0x80F65AE0: int_nog_station2_bese_tex_txt
- 0x80F65CE0: int_nog_station2_grass_tex_txt
- 0x80F65D60: int_nog_station2_side_tex_txt
- 0x80F66060: int_nog_station2_front_tex_txt
- 0x80F66460: int_nog_station2_v
- 0x80F674F0: int_nog_station2_long_model
- 0x80F67548: int_nog_station2_body_model
- 0x80F67790: int_nog_station2_short_model
- 0x80F677E8: cKF_ckcb_r_int_nog_station2_tbl
- 0x80F677F0: cKF_c_int_nog_station2_tbl
- 0x80F67814: cKF_ba_r_int_nog_station2
- 0x80F67828: cKF_je_r_int_nog_station2_tbl
- 0x80F67864: cKF_bs_r_int_nog_station2
- 0x80F67880: int_nog_station3_bese_tex_txt
- 0x80F67A80: int_nog_station3_side_tex_txt
- 0x80F67C80: int_nog_station3_front_tex_txt
- 0x80F68080: int_nog_station3_grass_tex_txt
- 0x80F68100: int_nog_station3_v
- 0x80F68A40: int_nog_station3_long_model
- 0x80F68A98: int_nog_station3_body_model
- 0x80F68C00: int_nog_station3_short_model
- 0x80F68C58: cKF_ckcb_r_int_nog_station3_tbl
- 0x80F68C60: cKF_c_int_nog_station3_tbl
- 0x80F68C84: cKF_ba_r_int_nog_station3
- 0x80F68C98: cKF_je_r_int_nog_station3_tbl
- 0x80F68CD4: cKF_bs_r_int_nog_station3
- 0x80F68D00: int_nog_suzuki_glass_tex_pic_ci4_pal
- 0x80F68D20: int_nog_suzuki_body_tex_txt
- 0x80F69020: int_nog_suzuki_top_tex_txt
- 0x80F69120: int_nog_suzuki_side_tex_txt
- 0x80F69320: int_nog_suzuki_base_tex_txt
- 0x80F693A0: int_nog_suzuki_glass_tex_txt
- 0x80F694A0: int_nog_suzuki_v
- 0x80F69890: int_nog_suzuki_sakana_model
- 0x80F69938: int_sum_suzuki_top_model
- 0x80F69990: int_sum_suzuki_evw_model
- 0x80F699F8: int_sum_suzuki_base_model
- 0x80F69A88: cKF_ckcb_r_int_nog_suzuki_tbl
- 0x80F69A90: cKF_kn_int_nog_suzuki_tbl
- 0x80F69A98: cKF_c_int_nog_suzuki_tbl
- 0x80F69AB8: cKF_ds_int_nog_suzuki_tbl
- 0x80F69B00: cKF_ba_r_int_nog_suzuki
- 0x80F69B14: cKF_je_r_int_nog_suzuki_tbl
- 0x80F69B50: cKF_bs_r_int_nog_suzuki
- 0x80F69B60: int_nog_systemnote_pal
- 0x80F69B80: int_nog_systemnote_tex
- 0x80F69F80: int_nog_systemnote_v
- 0x80F6A2A0: int_nog_systemnote_model
- 0x80F6A380: int_nog_tai_glass_tex_pic_ci4_pal
- 0x80F6A3A0: int_nog_tai_body_tex_txt
- 0x80F6A6A0: int_nog_tai_top_tex_txt
- 0x80F6A7A0: int_nog_tai_side_tex_txt
- 0x80F6A9A0: int_nog_tai_base_tex_txt
- 0x80F6AA20: int_nog_tai_glass_tex_txt
- 0x80F6AB20: int_nog_tai_v
- 0x80F6AEB0: int_nog_tai_sakana_model
- 0x80F6AF40: int_sum_tai_top_model
- 0x80F6AF98: int_sum_tai_evw_model
- 0x80F6B000: int_sum_tai_base_model
- 0x80F6B090: cKF_ckcb_r_int_nog_tai_tbl
- 0x80F6B098: cKF_kn_int_nog_tai_tbl
- 0x80F6B0A0: cKF_c_int_nog_tai_tbl
- 0x80F6B0C0: cKF_ds_int_nog_tai_tbl
- 0x80F6B114: cKF_ba_r_int_nog_tai
- 0x80F6B128: cKF_je_r_int_nog_tai_tbl
- 0x80F6B164: cKF_bs_r_int_nog_tai
- 0x80F6B180: int_nog_tri_audio01_pal
- 0x80F6B1A0: obj_nog_tri_audio01_tex
- 0x80F6B9A0: int_nog_tri_audio01_v
- 0x80F6BAE0: int_nog_tri_audio01_model
- 0x80F6BB60: int_nog_tri_bed01_pal
- 0x80F6BB80: obj_nog_tri_bed01_tex
- 0x80F6C380: int_nog_tri_bed01_v
- 0x80F6C6B0: int_nog_tri_bed01T_model
- 0x80F6C760: int_nog_tri_chair01_pal
- 0x80F6C780: obj_nog_tri_chair01_tex
- 0x80F6CF80: int_nog_tri_chair01_v
- 0x80F6D380: int_nog_tri_chair01T_model
- 0x80F6D440: int_nog_tri_chest01_pal
- 0x80F6D460: obj_nog_tri_chest01_tex_txt
- 0x80F6DC60: int_nog_tri_chest01_v
- 0x80F6DFE0: int_nog_tri_chest01_door_model
- 0x80F6E060: int_nog_tri_chest01_base_model
- 0x80F6E0D0: cKF_ckcb_r_int_nog_tri_chest01_tbl
- 0x80F6E0D4: cKF_kn_int_nog_tri_chest01_tbl
- 0x80F6E0E8: cKF_c_int_nog_tri_chest01_tbl
- 0x80F6E0F0: cKF_ds_int_nog_tri_chest01_tbl
- 0x80F6E15C: cKF_ba_r_int_nog_tri_chest01
- 0x80F6E170: cKF_je_r_int_nog_tri_chest01_tbl
- 0x80F6E194: cKF_bs_r_int_nog_tri_chest01
- 0x80F6E1A0: int_nog_tri_chest02_pal
- 0x80F6E1C0: obj_nog_tri_chest02_tex_txt
- 0x80F6E9C0: int_nog_tri_chest02_v
- 0x80F6EE70: int_nog_tri_chest02_doorL_model
- 0x80F6EED8: int_nog_tri_chest02_base_model
- 0x80F6EF60: int_nog_tri_chest02_doorR_model
- 0x80F6EFC8: cKF_ckcb_r_int_nog_tri_chest02_tbl
- 0x80F6EFD0: cKF_kn_int_nog_tri_chest02_tbl
- 0x80F6EFE8: cKF_c_int_nog_tri_chest02_tbl
- 0x80F6EFF4: cKF_ds_int_nog_tri_chest02_tbl
- 0x80F6F090: cKF_ba_r_int_nog_tri_chest02
- 0x80F6F0A4: cKF_je_r_int_nog_tri_chest02_tbl
- 0x80F6F0E0: cKF_bs_r_int_nog_tri_chest02
- 0x80F6F100: int_nog_tri_chest03_pal
- 0x80F6F120: obj_nog_tri_chest03_tex_txt
- 0x80F6F920: int_nog_tri_chest03_v
- 0x80F6FCB0: int_nog_tri_chest03_door_model
- 0x80F6FD18: int_nog_tri_chest03_base_model
- 0x80F6FDA0: cKF_ckcb_r_int_nog_tri_chest03_tbl
- 0x80F6FDA4: cKF_kn_int_nog_tri_chest03_tbl
- 0x80F6FDAC: cKF_c_int_nog_tri_chest03_tbl
- 0x80F6FDC0: cKF_ds_int_nog_tri_chest03_tbl
- 0x80F6FDF8: cKF_ba_r_int_nog_tri_chest03
- 0x80F6FE0C: cKF_je_r_int_nog_tri_chest03_tbl
- 0x80F6FE30: cKF_bs_r_int_nog_tri_chest03
- 0x80F6FE40: int_nog_tri_clock01_pal
- 0x80F6FE60: obj_nog_tri_clock01_tex_txt
- 0x80F70660: int_nog_tri_clock01_v
- 0x80F70B80: int_nog_tri_clock01_long_model
- 0x80F70BD8: int_nog_tri_clock01_base_model
- 0x80F70C90: int_nog_tri_clock01_short_model
- 0x80F70CE8: cKF_ckcb_r_int_nog_tri_clock01_tbl
- 0x80F70CF0: cKF_c_int_nog_tri_clock01_tbl
- 0x80F70D14: cKF_ba_r_int_nog_tri_clock01
- 0x80F70D28: cKF_je_r_int_nog_tri_clock01_tbl
- 0x80F70D64: cKF_bs_r_int_nog_tri_clock01
- 0x80F70D80: int_nog_tri_rack01_pal
- 0x80F70DA0: obj_nog_tri_rack01_tex
- 0x80F715A0: int_nog_tri_rack01_v
- 0x80F719A0: int_noga_tri_rack01T_model
- 0x80F71A60: int_nog_tri_sofa01_pal
- 0x80F71A80: obj_nog_tri_sofa01_tex
- 0x80F72280: int_nog_tri_sofa01_v
- 0x80F72640: int_nog_tri_sofa01_model
- 0x80F72700: int_nog_tri_table01_pal
- 0x80F72720: obj_nog_tri_table01_tex
- 0x80F72F20: int_nog_tri_table01_v
- 0x80F731A0: int_nog_tri_table01T_model
- 0x80F73240: int_nog_tudurinote_pal
- 0x80F73260: int_nog_tudurinote_tex
- 0x80F73A60: int_nog_tudurinote_v
- 0x80F73EC0: int_nog_tudurinoteT_model
- 0x80F73FA0: int_nog_turip_grass_tex
- 0x80F74020: int_nog_turip_leaf_tex
- 0x80F740A0: int_nog_turip_flower_tex
- 0x80F741A0: int_nog_turip_v
- 0x80F746B0: int_nog_turip_model
- 0x80F74708: int_nog_turipT_model
- 0x80F747E0: int_nog_uranai_pal
- 0x80F74800: int_nog_uranai_body_tex
- 0x80F74C00: int_nog_uranai_roof_tex
- 0x80F74E00: int_nog_uranai_grass_tex
- 0x80F74E80: int_nog_uranai_v
- 0x80F750D0: int_nog_uranai_on_model
- 0x80F75150: int_nog_uranai_off_model
- 0x80F751A8: int_nog_uranai_onT_model
- 0x80F75220: int_w_tree_pal
- 0x80F75240: int_nog_w_tree_grass_tex
- 0x80F75440: int_nog_w_tree_leaf2_tex
- 0x80F75640: int_nog_w_tree_trunk_tex
- 0x80F75A40: int_nog_w_tree_leaf1_tex
- 0x80F75C40: int_nog_w_tree_v
- 0x80F761B0: int_nog_w_tree_model
- 0x80F76208: int_nog_w_treeT_model
- 0x80F76340: int_plant02_pal
- 0x80F76360: int_nog_xtree_tex
- 0x80F76B60: int_nog_xtree_v
- 0x80F77060: int_nog_xtreeT_model
- 0x80F77160: int_nog_yamishop_pal
- 0x80F77180: int_nog_yamishop_body_tex
- 0x80F77580: int_nog_yamishop_grass_tex
- 0x80F77600: int_nog_yamishop_v
- 0x80F779D0: int_nog_yamishop_on_model
- 0x80F77A28: int_nog_yamishop_onT_model
- 0x80F77AD0: int_nog_yamishop_offT_model
- 0x80F77B40: int_nog_yubin_pal
- 0x80F77B60: int_nog_yubin_body_tex
- 0x80F77F60: int_nog_yubin_roof_tex
- 0x80F78160: int_nog_yubin_grass_tex
- 0x80F781E0: int_nog_yubin_v
- 0x80F784F0: int_nog_yubin_on_model
- 0x80F78548: int_nog_yubin_onT_model
- 0x80F785D0: int_nog_yubin_offT_model
- 0x80F78660: int_nog_zarigani_glass_tex_pic_ci4_pal
- 0x80F78680: int_nog_zarigani_body_tex_txt
- 0x80F78780: int_nog_zarigani_top_tex_txt
- 0x80F78880: int_nog_zarigani_side_tex_txt
- 0x80F78A80: int_nog_zarigani_base_tex_txt
- 0x80F78B00: int_nog_zarigani_etc_tex_txt
- 0x80F78B80: int_nog_zarigani_glass_tex_txt
- 0x80F78C80: int_nog_zarigani_v
- 0x80F78FE0: int_nog_zarigani_sakana_model
- 0x80F79048: int_sum_zarigani_top_model
- 0x80F790A0: int_sum_zarigani_evw_model
- 0x80F79108: int_sum_zarigani_base_model
- 0x80F791C0: cKF_ckcb_r_int_nog_zarigani_tbl
- 0x80F791C8: cKF_kn_int_nog_zarigani_tbl
- 0x80F791D0: cKF_c_int_nog_zarigani_tbl
- 0x80F791F0: cKF_ds_int_nog_zarigani_tbl
- 0x80F79238: cKF_ba_r_int_nog_zarigani
- 0x80F7924C: cKF_je_r_int_nog_zarigani_tbl
- 0x80F79288: cKF_bs_r_int_nog_zarigani
- 0x80F792A0: int_nog_zassou_pal
- 0x80F792C0: int_nog_zassou_body_tex
- 0x80F796C0: int_nog_zassou_grass_tex
- 0x80F798C0: int_nog_zassou_v
- 0x80F79B80: int_nog_zassou_model
- 0x80F79BD8: int_nog_zassouT_model
- 0x80F79C80: obj_art01_pal
- 0x80F79CA0: obj_art01_gaku_tex
- 0x80F79D20: obj_art01_art_tex
- 0x80F7A020: obj_art01_name_tex
- 0x80F7A0A0: obj_art01_v
- 0x80F7A280: obj_art01_model
- 0x80F7A420: obj_art_ang_pal
- 0x80F7A440: obj_art_ang_gaku_tex
- 0x80F7A4C0: obj_art_ang_art_tex
- 0x80F7A7C0: obj_art_ang_name_tex
- 0x80F7A840: obj_art02_v
- 0x80F7AA20: obj_art02_model
- 0x80F7AAC0: obj_art_sya_etc_pal
- 0x80F7AAE0: obj_art_sya_art_pal
- 0x80F7AB00: obj_art_sya_gaku_tex
- 0x80F7AB80: obj_art_sya_art_tex
- 0x80F7AE80: obj_art_sya_name_tex
- 0x80F7AF00: obj_art03_v
- 0x80F7B0E0: obj_art03_model
- 0x80F7B190: obj_art04_pal
- 0x80F7B1B0: obj_art04_gaku_tex
- 0x80F7B230: obj_art04_art_tex
- 0x80F7B530: obj_art04_name_tex
- 0x80F7B5B0: obj_art04_v
- 0x80F7B790: obj_art04_model
- 0x80F7B918: obj_art05_pal
- 0x80F7B938: obj_art05_art_tex
- 0x80F7BC38: obj_art05_gaku_tex
- 0x80F7BCB8: obj_art05_name_tex
- 0x80F7BD38: obj_art05_v
- 0x80F7BF18: obj_art05_model
- 0x80F7C0A0: obj_art06_pal
- 0x80F7C0C0: obj_art06_art_tex
- 0x80F7C3C0: obj_art06_gaku_tex
- 0x80F7C440: obj_art06_name_tex
- 0x80F7C4C0: obj_art06_v
- 0x80F7C6A0: obj_art06_model
- 0x80F7C840: obj_art_fel_etc_pal
- 0x80F7C860: obj_art_fel_art_pal
- 0x80F7C880: obj_art_fel_gaku_tex
- 0x80F7C900: obj_art_fel_name_tex
- 0x80F7C980: obj_art_fel_art_tex
- 0x80F7CE00: obj_art07_v
- 0x80F7CFE0: obj_art07_model
- 0x80F7D088: obj_art08_pal
- 0x80F7D0A8: obj_art08_gaku_tex
- 0x80F7D128: obj_art08_art_tex
- 0x80F7D428: obj_art08_name_tex
- 0x80F7D4A8: obj_art08_v
- 0x80F7D688: obj_art08_model
- 0x80F7D810: obj_art09_pal
- 0x80F7D830: obj_art09_gaku_tex
- 0x80F7D8B0: obj_art09_art_tex
- 0x80F7DBB0: obj_art09_name_tex
- 0x80F7DC30: obj_art09_v
- 0x80F7DE10: obj_art09_model
- 0x80F7DF98: obj_art10_pal
- 0x80F7DFB8: obj_art10_gaku_tex
- 0x80F7E038: obj_art10_art_tex
- 0x80F7E338: obj_art10_name_tex
- 0x80F7E3B8: obj_art10_v
- 0x80F7E598: obj_art10_model
- 0x80F7E720: obj_art11_pal
- 0x80F7E740: obj_art11_art_tex
- 0x80F7EA40: obj_art11_name_tex
- 0x80F7EAC0: obj_art11_gaku_tex
- 0x80F7EB40: obj_art11_v
- 0x80F7ED20: obj_art11_model
- 0x80F7EEC0: obj_art12_pal
- 0x80F7EEE0: obj_art12_gaku_tex
- 0x80F7EF60: obj_art12_art_tex
- 0x80F7F260: obj_art12_name_tex
- 0x80F7F2E0: obj_art12_v
- 0x80F7F4C0: obj_art12_model
- 0x80F7F560: obj_art13_pal
- 0x80F7F580: obj_art13_art_tex
- 0x80F7F880: obj_art13_name_tex
- 0x80F7F900: obj_art13_gaku_tex
- 0x80F7F980: obj_art13_v
- 0x80F7FB60: obj_art13_model
- 0x80F7FCE8: obj_art14_pal
- 0x80F7FD08: obj_art14_gaku_tex
- 0x80F7FD88: obj_art14_art_tex
- 0x80F80088: obj_art14_name_tex
- 0x80F80108: obj_art14_v
- 0x80F802E8: obj_art14_model
- 0x80F80470: obj_art15_pal
- 0x80F80490: obj_art15_gaku_tex
- 0x80F80510: obj_art15_art_tex
- 0x80F80810: obj_art15_name_tex
- 0x80F80890: obj_art15_v
- 0x80F80A70: obj_art15_model
- 0x80F80BF8: obj_art_dummy01_pal
- 0x80F80C18: obj_art_dummy01_back_tex
- 0x80F80F18: obj_art_dummy01_tex
- 0x80F80F98: obj_art_dummy01_name_tex
- 0x80F81018: obj_art_dummy01_v
- 0x80F811F8: obj_art_dummy01_model
- 0x80F81380: obj_art_dummy02_pal
- 0x80F813A0: obj_art_dummy02_tex
- 0x80F81420: obj_art_dummy02_back_tex
- 0x80F81720: obj_art_dummy02_name_tex
- 0x80F817A0: obj_art_dummy02_v
- 0x80F81980: obj_art_dummy02_model
- 0x80F81B20: obj_art_dummy03_pal
- 0x80F81B40: obj_art_dummy03_tex
- 0x80F81BC0: obj_art_dummy03_back_tex
- 0x80F81EC0: obj_art_dummy03_name_tex
- 0x80F81F40: obj_art_dummy03_v
- 0x80F82120: obj_art_dummy03_model
- 0x80F821C0: obj_art_dummy04_pal
- 0x80F821E0: obj_art_dummy04_tex
- 0x80F82260: obj_art_dummy04_back_tex
- 0x80F82560: obj_art_dummy04_name_tex
- 0x80F825E0: obj_art_dummy04_v
- 0x80F827C0: obj_art_dummy04_model
- 0x80F82948: obj_art_dummy05_pal
- 0x80F82968: obj_art_dummy05_tex
- 0x80F829E8: obj_art_dummy05_back_tex
- 0x80F82CE8: obj_art_dummy05_name_tex
- 0x80F82D68: obj_art_dummy05_v
- 0x80F82F48: obj_art_dummy05_model
- 0x80F830D0: obj_art_dummy06_pal
- 0x80F830F0: obj_art_dummy06_tex
- 0x80F83170: obj_art_dummy06_back_tex
- 0x80F83470: obj_art_dummy06_name_tex
- 0x80F834F0: obj_art_dummy06_v
- 0x80F836D0: obj_art_dummy06_model
- 0x80F83858: obj_art_dummy07_pal
- 0x80F83878: obj_art_dummy07_tex
- 0x80F838F8: obj_art_dummy07_back_tex
- 0x80F83BF8: obj_art_dummy07_name_tex
- 0x80F83C78: obj_art_dummy07_v
- 0x80F83E58: obj_art_dummy07_model
- 0x80F83FE0: obj_art_dummy08_pal
- 0x80F84000: obj_art_dummy08_tex
- 0x80F84080: obj_art_dummy08_back_tex
- 0x80F84380: obj_art_dummy08_name_tex
- 0x80F84400: obj_art_dummy08_v
- 0x80F845E0: obj_art_dummy08_model
- 0x80F84768: plant_price_table
- 0x80F84780: myr_kotei_pal
- 0x80F847A0: myr_enter
- 0x80F84BA0: myr_window
- 0x80F853A0: myr_kotei_v
- 0x80F85500: myr_kotei_model
- 0x80F855C8: myr_out_model
- 0x80F85618: myr_koteiT_model
- 0x80F856E0: myr_etc_model
- 0x80F85720: grd_player_select_evw_anime_1
- 0x80F85728: grd_player_select_evw_anime
- 0x80F85740: rom_open_pal
- 0x80F85760: rom_open_floor_tex
- 0x80F85F60: rom_open_shade_tex
- 0x80F86360: rom_open_spot2_tex_rgb_i4
- 0x80F86560: rom_open_spot_tex
- 0x80F86D60: grd_player_select_v
- 0x80F86EA0: grd_player_select_modelT
- 0x80F86F40: grd_player_select_model
- 0x80F86FA0: rom_koban_tel_pal
- 0x80F86FC0: rom_koban_win_pal
- 0x80F86FE0: rom_koban_us_pos_pal
- 0x80F87000: rom_koban_jim_pal
- 0x80F87020: rom_koban_kabe_pal
- 0x80F87040: rom_koban_roc_pal
- 0x80F87060: rom_koban_tel
- 0x80F87260: rom_koban_win
- 0x80F87460: rom_koban_desk_front
- 0x80F87560: rom_koban_desk_side
- 0x80F875E0: rom_koban_desk_top
- 0x80F876E0: rom_koban_yuka
- 0x80F87EE0: rom_koban_us_pos1
- 0x80F881E0: rom_koban_us_pos2
- 0x80F884E0: rom_koban_kage1
- 0x80F885E0: rom_koban_kage2
- 0x80F88660: rom_koban_ent
- 0x80F88A60: rom_koban_jim_front
- 0x80F88C60: rom_koban_jim_side
- 0x80F88D60: rom_koban_jim_top
- 0x80F88E60: rom_koban_kabe1
- 0x80F89660: rom_koban_telcode
- 0x80F896E0: rom_koban_book
- 0x80F89760: rom_koban_roc_s
- 0x80F89860: rom_koban_roc_t
- 0x80F898E0: rom_koban_kabe3
- 0x80F89CE0: rom_koban_isu
- 0x80F89D60: rom_koban_roc_i
- 0x80F89E60: rom_koban_roc_f3
- 0x80F8A260: police_indoor_v
- 0x80F8BCF0: police_indoor_modelT
- 0x80F8BCF8: police_indoor_model
- 0x80F8C2C8: mFM_rail_pal
- 0x80F8C460: mFM_grd_s_rail_tex
- 0x80F8CC60: mFM_grd_s_rail_2_tex
- 0x80F8D460: mFM_grd_s_rail_3_tex
- 0x80F8DC60: mFM_grd_w_rail_tex
- 0x80F8E460: mFM_grd_w_rail_2_tex
- 0x80F8EC60: mFM_grd_w_rail_3_tex
- 0x80F8F460: mFM_grd_s_river_tex
- 0x80F8F860: mFM_grd_s_river_2_tex
- 0x80F8FC60: mFM_grd_s_river_3_tex
- 0x80F90060: mFM_grd_w_river_tex
- 0x80F90460: mFM_grd_w_river_2_tex
- 0x80F90860: mFM_grd_w_river_3_tex
- 0x80F90C60: mFM_grd_s_sand_tex
- 0x80F91060: mFM_grd_s_sand_2_tex
- 0x80F91460: mFM_grd_s_sand_3_tex
- 0x80F91860: mFM_grd_w_sand_tex
- 0x80F91C60: mFM_grd_w_sand_2_tex
- 0x80F92060: mFM_grd_w_sand_3_tex
- 0x80F92460: obj_clock_koban_pal
- 0x80F92480: obj_clock_koban_side_tex_txt
- 0x80F92500: obj_clock_koban_moji_tex_txt
- 0x80F92700: obj_clock_koban_v
- 0x80F92990: obj_clock_koban_body_model
- 0x80F92B38: obj_clock_koban_long_model
- 0x80F92BF0: obj_clock_koban_short_model
- 0x80F92CA8: cKF_ckcb_r_obj_clock_koban_tbl
- 0x80F92CB0: cKF_c_obj_clock_koban_tbl
- 0x80F92CD4: cKF_ba_r_obj_clock_koban
- 0x80F92CE8: cKF_je_r_obj_clock_koban_tbl
- 0x80F92D24: cKF_bs_r_obj_clock_koban
- 0x80F92D30: obj_clock_museum1_hari_tex_txt
- 0x80F93130: obj_clock_museum1_dai_tex_txt
- 0x80F93330: obj_clock_museum1_side_tex_txt
- 0x80F93B30: obj_clock_museum1_front_tex_txt
- 0x80F94730: obj_clock_museum1_v
- 0x80F949E0: obj_clock_museum1_body_model
- 0x80F94B60: obj_clock_museum1_long_model
- 0x80F94BF0: obj_clock_museum1_short_model
- 0x80F94C78: cKF_ckcb_r_obj_clock_museum1_tbl
- 0x80F94C80: cKF_c_obj_clock_museum1_tbl
- 0x80F94CA4: cKF_ba_r_obj_clock_museum1
- 0x80F94CB8: cKF_je_r_obj_clock_museum1_tbl
- 0x80F94CF4: cKF_bs_r_obj_clock_museum1
- 0x80F94D00: obj_clock_tailor_1_tex_txt
- 0x80F95500: obj_clock_tailor_2_tex_txt
- 0x80F95700: obj_clock_tailor_v
- 0x80F95AE0: obj_clock_tailor_base_model
- 0x80F95B90: obj_clock_tailor_long_model
- 0x80F95BE0: obj_clock_tailor_short_model
- 0x80F95C30: obj_clock_tailor_furi_model
- 0x80F95C80: cKF_ckcb_r_obj_clock_tailor_tbl
- 0x80F95C88: cKF_kn_obj_clock_tailor_tbl
- 0x80F95C8C: cKF_c_obj_clock_tailor_tbl
- 0x80F95CBC: cKF_ds_obj_clock_tailor_tbl
- 0x80F95CDC: cKF_ba_r_obj_clock_tailor
- 0x80F95CF0: cKF_je_r_obj_clock_tailor_tbl
- 0x80F95D44: cKF_bs_r_obj_clock_tailor
- 0x80F95D50: obj_shop1_clock_pal
- 0x80F95D70: obj_clock_shop1_tex_txt
- 0x80F96570: obj_clock_shop1_v
- 0x80F96980: obj_clock_shop1_base_model
- 0x80F96AB8: obj_clock_shop1_long_model
- 0x80F96B70: obj_clock_shop1_short_model
- 0x80F96C28: obj_clock_shop1_pend_model
- 0x80F96CE0: cKF_ckcb_r_obj_clock_shop1_tbl
- 0x80F96CE8: cKF_kn_obj_clock_shop1_tbl
- 0x80F96CEC: cKF_c_obj_clock_shop1_tbl
- 0x80F96D1C: cKF_ds_obj_clock_shop1_tbl
- 0x80F96D3C: cKF_ba_r_obj_clock_shop1
- 0x80F96D50: cKF_je_r_obj_clock_shop1_tbl
- 0x80F96DA4: cKF_bs_r_obj_clock_shop1
- 0x80F96DB0: obj_clock_shop2_pal
- 0x80F96DD0: obj_clock_shop2_body_tex_txt
- 0x80F96ED0: obj_clock_shop2_v
- 0x80F97190: obj_clock_shop2_body_model
- 0x80F972C8: obj_clock_shop2_long_model
- 0x80F97380: obj_clock_shop2_short_model
- 0x80F97438: cKF_ckcb_r_obj_clock_shop2_tbl
- 0x80F97440: cKF_c_obj_clock_shop2_tbl
- 0x80F97464: cKF_ba_r_obj_clock_shop2
- 0x80F97478: cKF_je_r_obj_clock_shop2_tbl
- 0x80F974B4: cKF_bs_r_obj_clock_shop2
- 0x80F974C0: obj_clock_shop3_pal
- 0x80F974E0: obj_clock_shop3_hari_tex_txt
- 0x80F97560: obj_clock_shop3_body_tex_txt
- 0x80F97660: obj_clock_shop3_side_tex_txt
- 0x80F976E0: obj_clock_shop3_v
- 0x80F97980: obj_clock_shop3_body_model
- 0x80F97B08: obj_clock_shop3_long_model
- 0x80F97BC0: obj_clock_shop3_short_model
- 0x80F97C78: cKF_ckcb_r_obj_clock_shop3_tbl
- 0x80F97C80: cKF_c_obj_clock_shop3_tbl
- 0x80F97CA4: cKF_ba_r_obj_clock_shop3
- 0x80F97CB8: cKF_je_r_obj_clock_shop3_tbl
- 0x80F97CF4: cKF_bs_r_obj_clock_shop3
- 0x80F97D00: obj_clock_shop4_2_pal
- 0x80F97D20: obj_clock_shop4_2_t4_tex_txt
- 0x80F97F20: obj_clock_shop4_2_t3_tex_txt
- 0x80F980A0: obj_clock_shop4_2_t2_tex_txt
- 0x80F983A0: obj_clock_shop4_2_t1_tex_txt
- 0x80F98820: obj_clock_shop4_v
- 0x80F98920: obj_clock_shop4_front_model
- 0x80F989D8: obj_clock_shop4_long_model
- 0x80F98A90: obj_clock_shop4_short_model
- 0x80F98B48: obj_clock_shop4_huriko_model
- 0x80F98C00: cKF_ckcb_r_obj_clock_shop4_tbl
- 0x80F98C08: cKF_kn_obj_clock_shop4_tbl
- 0x80F98C0C: cKF_c_obj_clock_shop4_tbl
- 0x80F98C3C: cKF_ds_obj_clock_shop4_tbl
- 0x80F98C68: cKF_ba_r_obj_clock_shop4
- 0x80F98C7C: cKF_je_r_obj_clock_shop4_tbl
- 0x80F98CD0: cKF_bs_r_obj_clock_shop4
- 0x80F98CD8: obj_clock_yub_pal
- 0x80F98CF8: obj_clock_yub_t3_txt
- 0x80F98DF8: obj_clock_yub_t1_txt
- 0x80F98FF8: obj_clock_yub_t2_txt
- 0x80F991F8: obj_clock_yub_v
- 0x80F99398: obj_clock_yub_side_model
- 0x80F99480: obj_clock_yub_front_model
- 0x80F99540: obj_clock_yub_long_model
- 0x80F995F8: obj_clock_yub_short_model
- 0x80F996B0: cKF_ckcb_r_obj_clock_yub_tbl
- 0x80F996B8: cKF_c_obj_clock_yub_tbl
- 0x80F996E4: cKF_ba_r_obj_clock_yub
- 0x80F996F8: cKF_je_r_obj_clock_yub_tbl
- 0x80F99740: cKF_bs_r_obj_clock_yub
- 0x80F99A20: rom_conveni_floor_F
- 0x80F9B0A0: rom_shop2w_v
- 0x80F9C3E0: rom_shop2w_modelT
- 0x80F9C448: rom_shop2w_model
- 0x80F9C8A0: rom_shop2f_v
- 0x80F9CC70: rom_shop2f_modelT
- 0x80F9CC78: rom_shop2f_model
- 0x80F9EAE0: rom_shop2_fuku_v
- 0x80F9FAC0: rom_shop2_fuku_modelT
- 0x80F9FB18: rom_shop2_fuku_model
- 0x80F9FFA0: rom_shop4_1_lamp_tex_pal
- 0x80FA0080: rom_shop4_1_us_sign01_tex_pal
- 0x80FA00C0: rom_shop4_1_us_sign03_tex_pal
- 0x80FA0920: rom_shop4_1_lamp_tex
- 0x80FA1BA0: rom_shop4_1_us_sign01_tex
- 0x80FA20A0: rom_shop4_1_us_sign03_tex
- 0x80FA44A0: rom_shop4_1_shadow01_tex
- 0x80FA46A0: rom_shop4_1_lamp02_tex
- 0x80FA4720: rom_shop4_1_shadow03_tex
- 0x80FA4820: rom_shop4_1_v
- 0x80FA5E40: rom_shop4_1_modelT
- 0x80FA5F00: rom_shop4_1_model
- 0x80FA6520: rom_shop4_1_us_sign0_tex_pal
- 0x80FA84A0: rom_shop4_1_us_sign0_tex
- 0x80FAB1A0: rom_shop4_fuku_v
- 0x80FAC8C0: rom_shop4_fuku_modelT
- 0x80FAC928: rom_shop4_fuku_model
- 0x80FACE20: rom_shop4_1_floor_tex_pal
- 0x80FACE40: rom_shop4_2_stair_tex_pal
- 0x80FACE80: rom_shop4_2_wall_tex_pal
- 0x80FACEA0: rom_shop4_2_sign01_tex_pal
- 0x80FACEE0: rom_shop4_2_space_tex_pal
- 0x80FACF00: rom_shop4_2_floor01_tex
- 0x80FAD700: rom_shop4_2_stair01_tex
- 0x80FAD800: rom_shop4_2_table01_tex
- 0x80FAD900: rom_shop4_2_table02_tex
- 0x80FADA00: rom_shop4_2_wall01_tex
- 0x80FAE200: rom_shop4_2_sign05_tex
- 0x80FAE680: rom_shop4_2_space_tex
- 0x80FAEA80: rom_shop4_2_wall02_tex
- 0x80FAF280: rom_shop4_2_floor02_tex
- 0x80FAFA80: rom_shop4_2_floor03_tex
- 0x80FB0280: rom_shop4_2_floor04_tex
- 0x80FB0A80: rom_shop4_2_shadow02_tex
- 0x80FB0B80: rom_shop4_2w_v
- 0x80FB19A0: rom_shop4_2w_modelT
- 0x80FB19F8: rom_shop4_2w_model
- 0x80FB1D30: rom_shop4_2f_v
- 0x80FB2080: rom_shop4_2f_modelT
- 0x80FB2088: rom_shop4_2f_model
- 0x80FB2480: rom_shop3_tana
- 0x80FB2680: rom_shop3_kago_t
- 0x80FB2D80: rom_shop3_mat_a
- 0x80FB2E00: rom_shop3_mat_b
- 0x80FB4400: rom_shop3w_v
- 0x80FB6720: rom_shop3w_modelT
- 0x80FB6728: rom_shop3w_model
- 0x80FB6F20: rom_shop3f_v
- 0x80FB7160: rom_shop3f_modelT
- 0x80FB7168: rom_shop3f_model
- 0x80FB7D60: rom_shop3_tana2
- 0x80FB9AE0: rom_shop3_fuku_v
- 0x80FBBB10: rom_shop3_fuku_modelT
- 0x80FBBB18: rom_shop3_fuku_model
- 0x80FBC2A0: rom_shop1_tubo_pal
- 0x80FBD4C0: rom_shop1_tubo_tex
- 0x80FBD8C0: rom_shop1w_v
- 0x80FBEBA0: rom_shop1w_modelT
- 0x80FBEC28: rom_shop1w_model
- 0x80FBEF98: rom_shop1f_v
- 0x80FBF548: rom_shop1f_modelT
- 0x80FBF550: rom_shop1f_model
- 0x80FBF6A0: rom_shop1_w_pal
- 0x80FBF6C0: rom_shop1_f_pal
- 0x80FC0900: rom_shop1_w1_tex
- 0x80FC1100: rom_shop1_w2_tex
- 0x80FC1900: rom_shop1_f1_tex
- 0x80FC2100: rom_shop1_f2_tex
- 0x80FC2900: rom_shop1_f3_tex
- 0x80FC3100: rom_shop1_f4_tex
- 0x80FC4100: rom_shop1_fuku_v
- 0x80FC4F90: rom_shop1_fuku_modelT
- 0x80FC5000: rom_shop1_fuku_model
- 0x80FC5340: mFM_grd_sprashA_tex
- 0x80FC5540: mFM_grd_sprashC_tex
- 0x80FC5740: mFM_grd_s_station1_pal
- 0x80FC5760: mFM_grd_s_station_tex
- 0x80FC5F60: mFM_grd_s_station_2_tex
- 0x80FC6760: mFM_grd_s_station_3_tex
- 0x80FC6F60: mFM_grd_w_station_tex
- 0x80FC7760: mFM_grd_w_station_2_tex
- 0x80FC7F60: mFM_grd_w_station_3_tex
- 0x80FC8760: mFM_grd_s_stone_tex
- 0x80FC8F60: mFM_grd_s_stone_2_tex
- 0x80FC9760: mFM_grd_s_stone_3_tex
- 0x80FC9F60: mFM_grd_w_stone_tex
- 0x80FCA760: mFM_grd_w_stone_2_tex
- 0x80FCAF60: mFM_grd_w_stone_3_tex
- 0x80FCB760: int_sugi_alchair_pal
- 0x80FCB780: int_sugi_alchair_all_tex_txt
- 0x80FCBF80: int_sugi_alchair_v
- 0x80FCC2C0: sugi_aluminum_c_model
- 0x80FCC3A0: int_sugi_barbecue_pal
- 0x80FCC3C0: int_sugi_barbecue2_pal
- 0x80FCC3E0: int_sugi_barbecue_all_tex_txt
- 0x80FCCBE0: int_sugi_barbecue2_bar_tex_txt
- 0x80FCCDE0: int_sugi_barbecue_v
- 0x80FCD680: sugi_barbecue_b_model
- 0x80FCD6E0: sugi_barbecue_model
- 0x80FCD8A0: int_sugi_chesstable_pal
- 0x80FCD8C0: int_sugi_chesstable_all_tex_txt
- 0x80FCE0C0: int_sugi_chesstable_v
- 0x80FCE4F0: sugi_chesstable_model
- 0x80FCE5C0: int_sugi_kpool_pal
- 0x80FCE5E0: int_sugi_kpool_all_tex_txt
- 0x80FCEDE0: int_sugi_kpool_water_tex_4i4_pic_i4
- 0x80FCEE60: int_sugi_kpool_v
- 0x80FCF580: sugi_kpool_w_model
- 0x80FCF5E8: sugi_kpool_t_model
- 0x80FCF6B8: sugi_kpool_model
- 0x80FCF730: int_sugi_kpool_evw_anime_2
- 0x80FCF738: int_sugi_kpool_evw_anime
- 0x80FCF740: int_sugi_radiator_pal
- 0x80FCF760: int_sugi_radiator_all_tex_txt
- 0x80FCFF60: int_sugi_radiator_v
- 0x80FD0520: sugi_radiator_model
- 0x80FD0640: int_sugi_touch_pal
- 0x80FD0660: int_sugi_touch_all_tex_txt
- 0x80FD0A60: int_fire_a_tex_4i4_pic_i4
- 0x80FD0C60: int_fire_b_tex_4i4_pic_i4
- 0x80FD1060: int_sugi_torch_v
- 0x80FD1720: sugi_tu_core_model
- 0x80FD1818: sugi_tu_bar_model
- 0x80FD1938: sugi_fireto_model
- 0x80FD19B0: cKF_ckcb_r_int_sugi_torch_tbl
- 0x80FD19B4: cKF_c_int_sugi_torch_tbl
- 0x80FD19D4: cKF_ba_r_int_sugi_torch
- 0x80FD19E8: cKF_je_r_int_sugi_torch_tbl
- 0x80FD1A18: cKF_bs_r_int_sugi_torch
- 0x80FD1A20: int_sum_abura_pal
- 0x80FD1A40: int_sum_abura_hand_pic_ci4_pal
- 0x80FD1A60: int_sum_abura_body_txt
- 0x80FD1C60: int_sum_abura_side_txt
- 0x80FD1E60: int_sum_abura_base_txt
- 0x80FD1EE0: int_sum_abura_top_txt
- 0x80FD20E0: int_sum_abura_hand_txt
- 0x80FD21E0: int_sum_abura_v
- 0x80FD2650: int_sum_abura_side_model
- 0x80FD26B8: int_sum_abura_komado_model
- 0x80FD2710: int_sum_abura_glass_model
- 0x80FD2778: int_sum_abura_base_model
- 0x80FD2848: int_sum_abura_body_R_model
- 0x80FD28A0: int_sum_abura_body_L_model
- 0x80FD28F8: cKF_ckcb_r_int_sum_abura_tbl
- 0x80FD2900: cKF_kn_int_sum_abura_tbl
- 0x80FD2914: cKF_c_int_sum_abura_tbl
- 0x80FD2938: cKF_ds_int_sum_abura_tbl
- 0x80FD2A4C: cKF_ba_r_int_sum_abura
- 0x80FD2A60: cKF_je_r_int_sum_abura_tbl
- 0x80FD2AC0: cKF_bs_r_int_sum_abura
- 0x80FD2AE0: int_sum_akiakane_pal
- 0x80FD2B00: int_sum_akiakane_hand_pic_ci4_pal
- 0x80FD2B20: int_sum_akiakane_base_txt
- 0x80FD2BA0: int_sum_akiakane_top_txt
- 0x80FD2DA0: int_sum_akiakane_body_txt
- 0x80FD2F20: int_sum_akiakane_side_txt
- 0x80FD3120: int_sum_akiakane_hand_txt
- 0x80FD3220: int_sum_akiakane_v
- 0x80FD3670: int_sum_akiakane_side_model
- 0x80FD36D8: int_sum_akiakane_komado_model
- 0x80FD3730: int_sum_akiakane_glass_model
- 0x80FD3798: int_sum_akiakane_base_model
- 0x80FD3860: int_sum_akiakane_body_R_model
- 0x80FD38B8: int_sum_akiakane_body_L_model
- 0x80FD3910: cKF_ckcb_r_int_sum_akiakane_tbl
- 0x80FD3918: cKF_kn_int_sum_akiakane_tbl
- 0x80FD392C: cKF_c_int_sum_akiakane_tbl
- 0x80FD3950: cKF_ds_int_sum_akiakane_tbl
- 0x80FD39D4: cKF_ba_r_int_sum_akiakane
- 0x80FD39E8: cKF_je_r_int_sum_akiakane_tbl
- 0x80FD3A48: cKF_bs_r_int_sum_akiakane
- 0x80FD3A60: int_sum_angel_pal
- 0x80FD3A80: int_sum_angel_glass_pic_ci4_pal
- 0x80FD3AA0: int_sum_angel_body_txt
- 0x80FD3DA0: int_sum_angel_top_txt
- 0x80FD3EA0: int_sum_angel_side_txt
- 0x80FD40A0: int_sum_angel_base_txt
- 0x80FD4120: int_sum_angel_etc_txt
- 0x80FD41A0: int_sum_angel_glass_txt
- 0x80FD42A0: int_sum_angel_v
- 0x80FD4610: int_sum_angel_sakana_model
- 0x80FD4680: int_sum_angel_top_model
- 0x80FD46D8: int_sum_angel_evw_model
- 0x80FD4740: int_sum_angel_base_model
- 0x80FD47F8: cKF_ckcb_r_int_sum_angel_tbl
- 0x80FD4800: cKF_kn_int_sum_angel_tbl
- 0x80FD4814: cKF_c_int_sum_angel_tbl
- 0x80FD4828: cKF_ds_int_sum_angel_tbl
- 0x80FD48C0: cKF_ba_r_int_sum_angel
- 0x80FD48D4: cKF_je_r_int_sum_angel_tbl
- 0x80FD4910: cKF_bs_r_int_sum_angel
- 0x80FD4940: int_sum_aroana_glass_pic_ci4_pal
- 0x80FD4960: int_sum_aroana_body_txt
- 0x80FD4C60: int_sum_aroana_side_txt
- 0x80FD4E60: int_sum_aroana_base_txt
- 0x80FD4EE0: int_sum_aroana_top_txt
- 0x80FD4FE0: int_sum_aroana_glass_txt
- 0x80FD50E0: int_sum_aroana_v
- 0x80FD53B0: int_sum_aroana_sakana_model
- 0x80FD5420: int_sum_aroana_top_model
- 0x80FD5478: int_sum_aroana_evw_model
- 0x80FD54E0: int_sum_aroana_base_model
- 0x80FD5570: cKF_ckcb_r_int_sum_aroana_tbl
- 0x80FD5578: cKF_kn_int_sum_aroana_tbl
- 0x80FD558C: cKF_c_int_sum_aroana_tbl
- 0x80FD55A0: cKF_ds_int_sum_aroana_tbl
- 0x80FD5624: cKF_ba_r_int_sum_aroana
- 0x80FD5638: cKF_je_r_int_sum_aroana_tbl
- 0x80FD5674: cKF_bs_r_int_sum_aroana
- 0x80FD5680: int_sum_art01_pal
- 0x80FD56A0: int_sum_art01_front_tex
- 0x80FD58A0: int_sum_art01_stand_tex
- 0x80FD5AA0: int_sum_art01_monariza_tex
- 0x80FD5DA0: int_sum_art01_gaku_tex
- 0x80FD5EA0: int_sum_art01_v
- 0x80FD61E0: int_sum_art01_on_model
- 0x80FD6268: int_sum_art01_onT_model
- 0x80FD6320: int_sum_art04_pal
- 0x80FD6340: int_sum_art04_front_tex
- 0x80FD6540: int_sum_art04_stand_tex
- 0x80FD6740: int_sum_art04_binas_tex
- 0x80FD6A40: int_sum_art04_gaku_tex
- 0x80FD6B40: int_sum_art04_v
- 0x80FD6E80: int_sum_art04_on_model
- 0x80FD6F08: int_sum_art04_onT_model
- 0x80FD6FC0: int_sum_art05_pal
- 0x80FD6FE0: int_sum_art05_front_tex
- 0x80FD71E0: int_sum_art05_stand_tex
- 0x80FD73E0: int_sum_art05_himawari_tex
- 0x80FD76E0: int_sum_art05_gaku_tex
- 0x80FD77E0: int_sum_art05_v
- 0x80FD7B20: int_sum_art05_on_model
- 0x80FD7BA8: int_sum_art05_onT_model
- 0x80FD7C60: int_sum_art06_pal
- 0x80FD7C80: int_sum_art06_front_tex
- 0x80FD7E80: int_sum_art06_stand_tex
- 0x80FD8080: int_sum_art06_ochiba_tex
- 0x80FD8380: int_sum_art06_gaku_tex
- 0x80FD8480: int_sum_art06_v
- 0x80FD87C0: int_sum_art06_on_model
- 0x80FD8848: int_sum_art06_onT_model
- 0x80FD8900: int_sum_art08_pal
- 0x80FD8920: int_sum_art08_front_tex
- 0x80FD8B20: int_sum_art08_stand_tex
- 0x80FD8D20: int_sum_art08_odoriko_tex
- 0x80FD9020: int_sum_art08_gaku_tex
- 0x80FD9120: int_sum_art08_v
- 0x80FD9460: int_sum_art08_on_model
- 0x80FD94E8: int_sum_art08_onT_model
- 0x80FD95A0: int_sum_art09_pal
- 0x80FD95C0: int_sum_art09_gaku_tex
- 0x80FD96C0: int_sum_art09_seurat_tex
- 0x80FD99C0: int_sum_art09_stand_tex
- 0x80FD9BC0: int_sum_art09_front_tex
- 0x80FD9DC0: int_sum_art09_v
- 0x80FDA100: int_sum_art09_on_model
- 0x80FDA190: int_sum_art09_onT_model
- 0x80FDA240: int_sum_art10_pal
- 0x80FDA260: int_sum_art10_gaku_tex
- 0x80FDA360: int_sum_art10_rautrec_tex
- 0x80FDA660: int_sum_art10_stand_tex
- 0x80FDA860: int_sum_art10_front_tex
- 0x80FDAA60: int_sum_art10_v
- 0x80FDADA0: int_sum_art10_on_model
- 0x80FDAE30: int_sum_art10_onT_model
- 0x80FDAEE0: int_sum_art11_pal
- 0x80FDAF00: int_sum_art11_gaku_tex
- 0x80FDB000: int_sum_art11_kiss_tex
- 0x80FDB300: int_sum_art11_stand_tex
- 0x80FDB500: int_sum_art11_front_tex
- 0x80FDB700: int_sum_art11_v
- 0x80FDBA40: int_sum_art11_on_model
- 0x80FDBAD0: int_sum_art11_onT_model
- 0x80FDBB80: int_sum_art12_pal
- 0x80FDBBA0: int_sum_art12_gaku_tex
- 0x80FDBCA0: int_sum_art12_manet_tex
- 0x80FDBFA0: int_sum_art12_stand_tex
- 0x80FDC1A0: int_sum_art12_front_tex
- 0x80FDC3A0: int_sum_art12_v
- 0x80FDC6E0: int_sum_art12_on_model
- 0x80FDC770: int_sum_art12_onT_model
- 0x80FDC820: int_sum_art13_pal
- 0x80FDC840: int_sum_art13_gaku_tex
- 0x80FDC940: int_sum_art13_cezanne_tex
- 0x80FDCC40: int_sum_art13_stand_tex
- 0x80FDCE40: int_sum_art13_front_tex
- 0x80FDD040: int_sum_art13_v
- 0x80FDD380: int_sum_art13_on_model
- 0x80FDD410: int_sum_art13_onT_model
- 0x80FDD4C0: int_sum_art14_pal
- 0x80FDD4E0: int_sum_art14_gaku_tex
- 0x80FDD5E0: int_sum_art14_gogyan_tex
- 0x80FDD8E0: int_sum_art14_stand_tex
- 0x80FDDAE0: int_sum_art14_front_tex
- 0x80FDDCE0: int_sum_art14_v
- 0x80FDE020: int_sum_art14_on_model
- 0x80FDE0B0: int_sum_art14_onT_model
- 0x80FDE160: int_sum_art15_pal
- 0x80FDE180: int_sum_art15_gaku_tex
- 0x80FDE280: int_sum_art15_megami_tex
- 0x80FDE580: int_sum_art15_stand_tex
- 0x80FDE780: int_sum_art15_front_tex
- 0x80FDE980: int_sum_art15_v
- 0x80FDECC0: int_sum_art15_on_model
- 0x80FDED50: int_sum_art15_onT_model
- 0x80FDEE00: int_sum_asi_bed01_pal
- 0x80FDEE20: int_sum_asi_bed01_pillow_tex
- 0x80FDEEA0: int_sum_asi_bed01_top_tex
- 0x80FDF1A0: int_sum_asi_bed01_side_tex
- 0x80FDF2A0: int_sum_asi_bed01_heard_tex
- 0x80FDF5A0: int_sum_asi_bed01_v
- 0x80FDF950: int_sum_asi_bed01_on_model
- 0x80FDF9E0: int_sum_asi_bed01_onT_model
- 0x80FDFAA0: int_sum_asi_chair01_pal
- 0x80FDFAC0: int_sum_asi_chair01_front_tex
- 0x80FDFDC0: int_sum_asi_chair01_seat_tex
- 0x80FDFEC0: int_sum_asi_chair01_arm_tex
- 0x80FDFFC0: int_sum_asi_chair01_foot_tex
- 0x80FE00C0: int_sum_asi_chair01_side_tex
- 0x80FE01C0: int_sum_asi_chair01_v
- 0x80FE0640: int_sum_asi_chair01_on_model
- 0x80FE0698: int_sum_asi_chair01_onT_model
- 0x80FE07C0: int_sum_asi_chair02_pal
- 0x80FE07E0: int_sum_asi_chair02_head_tex
- 0x80FE09E0: int_sum_asi_chair02_side_tex
- 0x80FE0BE0: int_sum_asi_chair02_seat_tex
- 0x80FE0C60: int_sum_asi_chair02_board_tex
- 0x80FE0CE0: int_sum_asi_chair02_arm_tex
- 0x80FE0EE0: int_sum_asi_chair02_armside_tex
- 0x80FE0FE0: int_sum_asi_chair02_v
- 0x80FE1260: int_sum_asi_chair02_on_model
- 0x80FE12D8: int_sum_asi_chair02_onT_model
- 0x80FE13A0: int_sum_asi_chest01_pal
- 0x80FE13C0: int_sum_asi_chest01_front_tex
- 0x80FE19C0: int_sum_asi_chest01_side_tex
- 0x80FE1AC0: int_sum_asi_chest01_foot_tex
- 0x80FE1B40: int_sum_asi_chest01_v
- 0x80FE1E80: int_sum_asi_chest01_on_model
- 0x80FE1F00: int_sum_asi_chest01_onT_model
- 0x80FE1F80: int_sum_asi_chest02_pal
- 0x80FE1FA0: int_sum_asi_chest02_draw_tex_txt
- 0x80FE2020: int_sum_asi_chest02_drawin_tex_txt
- 0x80FE20A0: int_sum_asi_chest02_front_tex_txt
- 0x80FE23A0: int_sum_asi_chest02_side_tex_txt
- 0x80FE25A0: int_sum_asi_chest02_v
- 0x80FE2890: int_sum_asi_chest02_door_model
- 0x80FE2940: int_sum_asi_chest02_base_model
- 0x80FE29C8: cKF_ckcb_r_int_sum_asi_chest02_tbl
- 0x80FE29CC: cKF_kn_int_sum_asi_chest02_tbl
- 0x80FE29E0: cKF_c_int_sum_asi_chest02_tbl
- 0x80FE29E8: cKF_ds_int_sum_asi_chest02_tbl
- 0x80FE2A54: cKF_ba_r_int_sum_asi_chest02
- 0x80FE2A68: cKF_je_r_int_sum_asi_chest02_tbl
- 0x80FE2A8C: cKF_bs_r_int_sum_asi_chest02
- 0x80FE2AA0: int_sum_asi_chair03_pal
- 0x80FE2AC0: int_sum_asi_chest03_door_tex_txt
- 0x80FE2C40: int_sum_asi_chest03_side_tex_txt
- 0x80FE2E40: int_sum_asi_chest03_top_tex_txt
- 0x80FE2EC0: int_sum_asi_chest03_front_tex_txt
- 0x80FE32C0: int_sum_asi_chest03_v
- 0x80FE3640: int_sum_asi_chest03_doorL_model
- 0x80FE36E0: int_sum_asi_chest03_base_model
- 0x80FE37A0: int_sum_asi_chest03_doorR_model
- 0x80FE3840: cKF_ckcb_r_int_sum_asi_chest03_tbl
- 0x80FE3848: cKF_kn_int_sum_asi_chest03_tbl
- 0x80FE3860: cKF_c_int_sum_asi_chest03_tbl
- 0x80FE386C: cKF_ds_int_sum_asi_chest03_tbl
- 0x80FE3908: cKF_ba_r_int_sum_asi_chest03
- 0x80FE391C: cKF_je_r_int_sum_asi_chest03_tbl
- 0x80FE3958: cKF_bs_r_int_sum_asi_chest03
- 0x80FE3960: int_sum_asi_lanp01_pal
- 0x80FE3980: int_sum_asi_lanp01_shade_tex_txt
- 0x80FE3A80: int_sum_asi_lanp01_bin_tex_txt
- 0x80FE3C80: int_sum_asi_lanp01_v
- 0x80FE3E00: int_sum_asi_lanp01_off_model
- 0x80FE3EC0: int_sum_asi_screen01_pal
- 0x80FE3EE0: int_sum_asi_screen01_front_tex
- 0x80FE42E0: int_sum_asi_screen01_v
- 0x80FE43A0: int_sum_asi_screen01_onT_model
- 0x80FE4400: int_sum_asi_table01_pal
- 0x80FE4420: int_sum_asi_table01_front_tex
- 0x80FE4720: int_sum_asi_table01_side_tex
- 0x80FE48A0: int_sum_asi_table01_top_tex
- 0x80FE49A0: int_sum_asi_table01_v
- 0x80FE4CE0: int_sum_asi_table01_on_model
- 0x80FE4D38: int_sum_asi_table01_onT_model
- 0x80FE4DE0: int_sum_asi_table02_pal
- 0x80FE4E00: int_sum_asi_table02_foot_tex
- 0x80FE4F00: int_sum_asi_table02_side_tex
- 0x80FE5100: int_sum_asi_table02_top_tex
- 0x80FE5200: int_sum_asi_table02_v
- 0x80FE5680: int_sum_asi_table02_on_model
- 0x80FE5710: int_sum_asi_table02_onT_model
- 0x80FE57C0: int_sum_asi_taiko_pal
- 0x80FE57E0: int_sum_asi_taiko_side_tex
- 0x80FE58E0: int_sum_asi_taiko_top_tex
- 0x80FE59E0: int_sum_asi_taiko_bese_tex
- 0x80FE5AE0: int_sum_asi_taiko_v
- 0x80FE5DD0: int_sum_asi_taiko_on_model
- 0x80FE5E30: int_sum_asi_taiko_onT_model
- 0x80FE5F00: int_sum_ayu_glass_pic_ci4_pal
- 0x80FE5F20: int_sum_ayu_body_txt
- 0x80FE6220: int_sum_ayu_top_txt
- 0x80FE6320: int_sum_ayu_side_txt
- 0x80FE6520: int_sum_ayu_base_txt
- 0x80FE65A0: int_sum_ayu_etc_txt
- 0x80FE6620: int_sum_ayu_glass_txt
- 0x80FE6720: int_sum_ayu_v
- 0x80FE6A90: int_sum_ayu_sakana_model
- 0x80FE6B00: int_sum_ayu_top_model
- 0x80FE6B58: int_sum_ayu_evw_model
- 0x80FE6BC0: int_sum_ayu_base_model
- 0x80FE6C78: cKF_ckcb_r_int_sum_ayu_tbl
- 0x80FE6C80: cKF_kn_int_sum_ayu_tbl
- 0x80FE6C94: cKF_c_int_sum_ayu_tbl
- 0x80FE6CA8: cKF_ds_int_sum_ayu_tbl
- 0x80FE6D2C: cKF_ba_r_int_sum_ayu
- 0x80FE6D40: cKF_je_r_int_sum_ayu_tbl
- 0x80FE6D7C: cKF_bs_r_int_sum_ayu
- 0x80FE6DA0: int_sum_baketu_pal
- 0x80FE6DC0: int_sum_baketu_side_tex
- 0x80FE70C0: int_sum_baketu_stand_tex
- 0x80FE7340: int_sum_baketu_s_side_tex
- 0x80FE7540: int_sum_baketu_hand_tex
- 0x80FE75C0: int_sum_baketu_v
- 0x80FE77E0: int_sum_baketu_onT_model
- 0x80FE78E0: int_sum_bass_glass_pic_ci4_pal
- 0x80FE7900: int_sum_bass_body_txt
- 0x80FE7B00: int_sum_bass_side_txt
- 0x80FE7D00: int_sum_bass_base_txt
- 0x80FE7D80: int_sum_bass_etc_txt
- 0x80FE7E00: int_sum_bass_top_txt
- 0x80FE7F00: int_sum_bass_glass_txt
- 0x80FE8000: int_sum_bass_v
- 0x80FE8310: int_sum_bass_sakana_model
- 0x80FE8380: int_sum_bass_top_model
- 0x80FE83D8: int_sum_bass_evw_model
- 0x80FE8440: int_sum_bass_base_model
- 0x80FE84F8: cKF_ckcb_r_int_sum_bass_tbl
- 0x80FE8500: cKF_kn_int_sum_bass_tbl
- 0x80FE8514: cKF_c_int_sum_bass_tbl
- 0x80FE8528: cKF_ds_int_sum_bass_tbl
- 0x80FE85C0: cKF_ba_r_int_sum_bass
- 0x80FE85D4: cKF_je_r_int_sum_bass_tbl
- 0x80FE8610: cKF_bs_r_int_sum_bass
- 0x80FE8620: int_sum_bass01_pal
- 0x80FE8640: int_sum_bass01_front_tex
- 0x80FE8940: int_sum_bass01_back_tex
- 0x80FE8AC0: int_sum_bass01_side_tex
- 0x80FE8B40: int_sum_bass01_neck_tex
- 0x80FE8C40: int_sum_bass01_neckback_tex
- 0x80FE8CC0: int_sum_bass01_hand_tex
- 0x80FE8D40: int_sum_bass01_stand_tex
- 0x80FE8E40: int_sum_bass01_v
- 0x80FE91D0: int_sum_bass01_on_model
- 0x80FE9258: int_sum_bass01_onT_model
- 0x80FE9380: int_sum_bassl_glass_pic_ci4_pal
- 0x80FE93A0: int_sum_bassl_body_txt
- 0x80FE96A0: int_sum_bassl_side_txt
- 0x80FE98A0: int_sum_bassl_base_txt
- 0x80FE9920: int_sum_bassl_etc_txt
- 0x80FE99A0: int_sum_bassl_top_txt
- 0x80FE9AA0: int_sum_bassl_glass_pic_ci4
- 0x80FE9BA0: int_sum_bassl_v
- 0x80FE9F10: int_sum_bassl_sakana_model
- 0x80FE9F80: int_sum_bassl_top_model
- 0x80FE9FD8: int_sum_bassl_evw_model
- 0x80FEA040: int_sum_bassl_base_model
- 0x80FEA0F8: cKF_ckcb_r_int_sum_bassl_tbl
- 0x80FEA100: cKF_kn_int_sum_bassl_tbl
- 0x80FEA114: cKF_c_int_sum_bassl_tbl
- 0x80FEA128: cKF_ds_int_sum_bassl_tbl
- 0x80FEA1AC: cKF_ba_r_int_sum_bassl
- 0x80FEA1C0: cKF_je_r_int_sum_bassl_tbl
- 0x80FEA1FC: cKF_bs_r_int_sum_bassl
- 0x80FEA240: int_sum_bassm_glass_pic_ci4_pal
- 0x80FEA260: int_sum_bassm_body_txt
- 0x80FEA560: int_sum_bassm_top_txt
- 0x80FEA660: int_sum_bassm_side_txt
- 0x80FEA860: int_sum_bassm_base_txt
- 0x80FEA8E0: int_sum_bassm_etc_txt
- 0x80FEA960: int_sum_bassm_glass_txt
- 0x80FEAA60: int_sum_bassm_v
- 0x80FEADD0: int_sum_bassm_sakana_model
- 0x80FEAE40: int_sum_bassm_top_model
- 0x80FEAE98: int_sum_bassm_evw_model
- 0x80FEAF00: int_sum_bassm_base_model
- 0x80FEAFB8: cKF_ckcb_r_int_sum_bassm_tbl
- 0x80FEAFC0: cKF_kn_int_sum_bassm_tbl
- 0x80FEAFD4: cKF_c_int_sum_bassm_tbl
- 0x80FEAFE8: cKF_ds_int_sum_bassm_tbl
- 0x80FEB08C: cKF_ba_r_int_sum_bassm
- 0x80FEB0A0: cKF_je_r_int_sum_bassm_tbl
- 0x80FEB0DC: cKF_bs_r_int_sum_bassm
- 0x80FEB100: int_sum_bdcake01_pal
- 0x80FEB120: int_sum_bdcake01_top_tex_txt
- 0x80FEB1A0: int_sum_bdcake01_ichigo_tex_txt
- 0x80FEB3A0: int_sum_bdcake01_mesege_tex_txt
- 0x80FEB6A0: int_sum_bdcake01_side_tex_txt
- 0x80FEB7A0: int_sum_bdcake01_a_candol1_TA_tex_txt
- 0x80FEB7E0: int_sum_bdcake01_a_candol2_TA_tex_txt
- 0x80FEB820: int_sum_bdcake01_b_candol1_TA_tex_txt
- 0x80FEB860: int_sum_bdcake01_b_candol2_TA_tex_txt
- 0x80FEB8A0: int_sum_bdcake01_v
- 0x80FEBDE0: int_sum_bdcake01_on_model
- 0x80FEBEF0: int_sum_bdcake01_off1_model
- 0x80FEBF50: int_sum_bdcake01_off_model
- 0x80FEBFC0: int_sum_billards_pal
- 0x80FEBFE0: int_sum_billiads_cueball_tex
- 0x80FEC060: int_sum_billiads_side_tex
- 0x80FEC0E0: int_sum_billiads_top_tex
- 0x80FEC2E0: int_sum_billiads_foot_tex
- 0x80FEC3E0: int_sum_billiads_sitaside_tex
- 0x80FEC460: int_sum_billiads_cue_tex
- 0x80FEC4E0: int_sum_billiads_ball_tex
- 0x80FEC6E0: int_sum_billiads_v
- 0x80FECB00: int_sum_billiads_on_model
- 0x80FECB80: int_sum_billiads_onT_model
- 0x80FECC80: int_sum_biwa01_pal
- 0x80FECCA0: int_sum_biwa01_front_tex
- 0x80FECEA0: int_sum_biwa01_nec_tex
- 0x80FECFA0: int_sum_biwa01_back_tex
- 0x80FED020: int_sum_biwa01_necback_tex
- 0x80FED0A0: int_sum_biwa01_head_tex
- 0x80FED120: int_sum_biwa01_headtop_tex
- 0x80FED1A0: int_sum_biwa01_headfront_tex
- 0x80FED1E0: int_sum_biwa01_stand_tex
- 0x80FED2E0: int_sum_biwa01_standhand_tex
- 0x80FED360: int_sum_biwa01_v
- 0x80FED770: int_sum_biwa01_on_model
- 0x80FED838: int_sum_biwa01_onT_model
- 0x80FED920: int_sum_bla_bed01_pal
- 0x80FED940: int_sum_bla_bed01_top_tex
- 0x80FEDC40: int_sum_bla_bed01_side_tex
- 0x80FEDCC0: int_sum_bla_bed01_pillow_tex
- 0x80FEDDC0: int_sum_bla_bed01_head_tex
- 0x80FEDF40: int_sum_bla_bed01_headside_tex
- 0x80FEE040: int_sum_bla_bed01_v
- 0x80FEE350: int_sum_bla_bed01_on_model
- 0x80FEE460: int_sum_bla_chair02_pal
- 0x80FEE480: int_sum_bla_chair02_seat_tex
- 0x80FEE780: int_sum_bla_chair02_foot_tex
- 0x80FEEA80: int_sum_bla_chair02_seatside_tex
- 0x80FEEC80: int_sum_bla_chair02_v
- 0x80FEEF50: int_sum_bra_chair02_on_model
- 0x80FEEFD0: int_sum_bra_chair02_onT_model
- 0x80FEF060: int_sum_bla_chest01_pal
- 0x80FEF080: int_sum_bla_chest01_top_tex_txt
- 0x80FEF100: int_sum_bla_chest01_hiki_tex_txt
- 0x80FEF200: int_sum_bla_chest01_side_tex_txt
- 0x80FEF500: int_sum_bla_chest01_front_tex_txt
- 0x80FEF680: int_sum_bla_chest01_v
- 0x80FEF940: int_sum_bra_chest01_door_model
- 0x80FEF9E0: int_sum_bla_chest01_base_model
- 0x80FEFA78: cKF_ckcb_r_int_sum_bla_chest01_tbl
- 0x80FEFA7C: cKF_kn_int_sum_bla_chest01_tbl
- 0x80FEFA90: cKF_c_int_sum_bla_chest01_tbl
- 0x80FEFA98: cKF_ds_int_sum_bla_chest01_tbl
- 0x80FEFB04: cKF_ba_r_int_sum_bla_chest01
- 0x80FEFB18: cKF_je_r_int_sum_bla_chest01_tbl
- 0x80FEFB3C: cKF_bs_r_int_sum_bla_chest01
- 0x80FEFB60: int_sum_bla_chest02_pal
- 0x80FEFB80: int_sum_bla_chest02_glass_tex_rgb_ci4_pal
- 0x80FEFBA0: int_sum_bla_chest02_front_tex
- 0x80FEFFA0: int_sum_bla_chest02_side_tex
- 0x80FF00A0: int_sum_bla_chest02_top_tex
- 0x80FF0120: int_sum_bla_chest02_foot_tex
- 0x80FF01A0: int_sum_bla_chest02_book_tex
- 0x80FF0220: int_sum_bla_chest02_glass_tex
- 0x80FF02A0: int_sum_bla_chest02_v
- 0x80FF06E0: int_sum_bla_chest02_on_model
- 0x80FF0788: int_sum_bla_chest02_onT_model
- 0x80FF0830: int_sum_bla_chest02_evwT_model
- 0x80FF08A0: int_sum_bla_chest03_pal
- 0x80FF08C0: int_sum_bla_chest03_hiki_tex_txt
- 0x80FF0AC0: int_sum_bla_chest03_front_tex_txt
- 0x80FF0DC0: int_sum_bla_chest03_side_tex_txt
- 0x80FF0FC0: int_sum_bla_chest03_v
- 0x80FF13E0: int_sum_bla_chest03_doorL_model
- 0x80FF1440: int_sum_bla_chest03_base_model
- 0x80FF14E0: int_sum_bla_chest03_doorR_model
- 0x80FF1540: cKF_ckcb_r_int_sum_bla_chest03_tbl
- 0x80FF1548: cKF_kn_int_sum_bla_chest03_tbl
- 0x80FF1560: cKF_c_int_sum_bla_chest03_tbl
- 0x80FF156C: cKF_ds_int_sum_bla_chest03_tbl
- 0x80FF1608: cKF_ba_r_int_sum_bla_chest03
- 0x80FF161C: cKF_je_r_int_sum_bla_chest03_tbl
- 0x80FF1658: cKF_bs_r_int_sum_bla_chest03
- 0x80FF1660: int_sum_bla_desk01_pal
- 0x80FF1680: int_sum_bla_desk01_top_tex
- 0x80FF1780: int_sum_bla_desk01_side2_tex
- 0x80FF1F80: int_sum_bla_desk01_v
- 0x80FF21C0: int_sum_bla_desk01_on_model
- 0x80FF2260: int_sum_bla_lanp_pal
- 0x80FF2280: int_sum_bla_lanp_shede_tex
- 0x80FF2380: int_sum_bla_lanp_stand_tex
- 0x80FF2480: int_sum_bla_lanp_base_tex
- 0x80FF2500: int_sum_bla_lanp_top_tex
- 0x80FF2580: int_sum_bla_lanp_hand_tex
- 0x80FF2600: int_sum_bla_lanp_v
- 0x80FF2980: int_sum_bla_lanp_on_model
- 0x80FF29D8: int_sum_bla_lanp_off_model
- 0x80FF2A50: int_sum_bla_lanp_onT_model
- 0x80FF2AE0: int_sum_bla_lanp_offT_model
- 0x80FF2B40: int_sum_bla_sofa02_pal
- 0x80FF2B60: int_sum_bla_sofa02_back_tex
- 0x80FF2D60: int_sum_bla_sofa02_seat_tex
- 0x80FF3060: int_sum_bla_sofa02_seatside_tex
- 0x80FF3160: int_sum_bla_sofa02_backside_tex
- 0x80FF31E0: int_sum_bla_sofa02_foot_tex
- 0x80FF3260: int_sum_bla_sofa02_v
- 0x80FF35F0: int_sum_bla_sofa02_on_model
- 0x80FF36C0: int_sum_bla_sofa02_onT_model
- 0x80FF3740: int_sum_bla_table01_pal
- 0x80FF3760: int_bla_table01_glass_tex_rgb_ci4_pal
- 0x80FF3780: int_sum_bla_table01_top2_tex
- 0x80FF3B80: int_sum_bla_table01_side_tex
- 0x80FF3C80: int_bla_table01_glass_tex_rgb_ci4
- 0x80FF3E80: int_sum_bla_table01_v
- 0x80FF4100: int_sum_bla_table01_onT_model
- 0x80FF41A8: int_sum_bla_table01_evwT_model
- 0x80FF4220: int_sum_bla_table02_pal
- 0x80FF4240: int_sum_bla_table02_top_tex
- 0x80FF4540: int_sum_bla_table02_foot_tex
- 0x80FF4640: int_sum_bla_table02_v
- 0x80FF49A0: int_sum_bla_table02_on_model
- 0x80FF4A10: int_sum_bla_table02_onT_model
- 0x80FF4AA0: int_sum_blue_bed01_pal
- 0x80FF4AC0: int_sum_blue_bed01_topside_tex
- 0x80FF4DC0: int_sum_blue_bed01_head_tex
- 0x80FF4EC0: int_sum_blue_bed01_bou_tex
- 0x80FF4F40: int_sum_blue_bed01_pillow_tex
- 0x80FF4FC0: int_sum_blue_bed01_head2_tex
- 0x80FF50C0: int_sum_blue_bed01_v
- 0x80FF54A0: int_sum_bule_bed01_on_model
- 0x80FF5570: int_sum_bule_bed01_onT_model
- 0x80FF5600: int_sum_blue_bench01_pal
- 0x80FF5620: int_sum_blue_bench01_back_tex
- 0x80FF5820: int_sum_blue_bench01_seat_tex
- 0x80FF5B20: int_sum_blue_bench01_foot_tex
- 0x80FF5C20: int_sum_blue_bench01_v
- 0x80FF5EC0: int_sum_blue_bench01_on_model
- 0x80FF5F28: int_sum_blue_bench01_onT_model
- 0x80FF5FC0: int_sum_blue_bureau01_pal
- 0x80FF5FE0: int_sum_blue_bureau01_hiki_tex_txt
- 0x80FF62E0: int_sum_blue_bureau01_top_tex_txt
- 0x80FF6360: int_sum_blue_bureau01_topin_tex_txt
- 0x80FF63E0: int_sum_blue_bureau01_side_tex_txt
- 0x80FF65E0: int_sum_blue_bureau01_front_tex_txt
- 0x80FF67E0: int_sum_blue_bureau01_v
- 0x80FF6B10: sum_blue_bureau01_base_model
- 0x80FF6BD8: sum_blue_bureau01_door_model
- 0x80FF6C50: cKF_ckcb_r_int_sum_blue_bureau01_tbl
- 0x80FF6C54: cKF_kn_int_sum_blue_bureau01_tbl
- 0x80FF6C60: cKF_c_int_sum_blue_bureau01_tbl
- 0x80FF6C6C: cKF_ds_int_sum_blue_bureau01_tbl
- 0x80FF6CC8: cKF_ba_r_int_sum_blue_bureau01
- 0x80FF6CDC: cKF_je_r_int_sum_blue_bureau01_tbl
- 0x80FF6D00: cKF_bs_r_int_sum_blue_bureau01
- 0x80FF6D20: int_sum_blue_cab01_pal
- 0x80FF6D40: int_sum_blue_cab01_grass_tex_pic_ci4_pal
- 0x80FF6D60: int_sum_blue_cab01_top_tex_txt
- 0x80FF6DE0: int_sum_blue_cab01_hiki_tex_txt
- 0x80FF6EE0: int_sum_blue_cab01_intop_tex_txt
- 0x80FF6F60: int_sum_blue_cab01_front_tex_txt
- 0x80FF70E0: int_sum_blue_cab01_side_tex_txt
- 0x80FF7260: int_sum_blue_cab01_books_tex_txt
- 0x80FF72E0: int_sum_blue_cab01_grass_tex_txt
- 0x80FF7360: int_sum_blue_cab01_v
- 0x80FF7830: int_sum_blue_cab01_doorL_evw_model
- 0x80FF7888: int_sum_blue_cab01_doorL_model
- 0x80FF7908: int_sum_blue_cab01_base_model
- 0x80FF79E8: int_sum_blue_cab01_doorR_evw_model
- 0x80FF7A40: int_sum_blue01_cab01_doorR_model
- 0x80FF7AC0: cKF_ckcb_r_int_sum_blue_cab01_tbl
- 0x80FF7AC8: cKF_kn_int_sum_blue_cab01_tbl
- 0x80FF7AE0: cKF_c_int_sum_blue_cab01_tbl
- 0x80FF7AF8: cKF_ds_int_sum_blue_cab01_tbl
- 0x80FF7B94: cKF_ba_r_int_sum_blue_cab01
- 0x80FF7BA8: cKF_je_r_int_sum_blue_cab01_tbl
- 0x80FF7BFC: cKF_bs_r_int_sum_blue_cab01
- 0x80FF7C20: int_sum_blue_chair01_pal
- 0x80FF7C40: int_sum_blue_chair01_back_tex
- 0x80FF7D40: int_sum_blue_chair01_seat_tex
- 0x80FF7EC0: int_sum_blue_chair01_foot_tex
- 0x80FF7FC0: int_sum_blue_chair01_v
- 0x80FF8260: int_sum_blue_chair01_on_model
- 0x80FF82C8: int_sum_blue_chair01_onT_model
- 0x80FF8360: int_sum_blue_chest01_pal
- 0x80FF8380: int_sum_blue_chest01_front_tex
- 0x80FF8680: int_sum_blue_chest01_back_tex
- 0x80FF8800: int_sum_blue_chest01_top_tex
- 0x80FF8880: int_sum_blue_chest01_lanp_tex
- 0x80FF8900: int_sum_blue_chest01_stand_tex
- 0x80FF8A00: int_sum_blue_chest01_topshade_tex
- 0x80FF8A80: int_sum_blue_chest01_v
- 0x80FF8D60: int_sum_blue_chest01_on_model
- 0x80FF8DB8: int_sum_blue_chest01_onT_model
- 0x80FF8EC0: int_sum_blue_chest02_pal
- 0x80FF8EE0: int_sum_blue_chest02_front_tex
- 0x80FF91E0: int_sum_blue_chest02_back_tex
- 0x80FF9360: int_sum_blue_chest02_top_tex
- 0x80FF9460: int_sum_blue_chest02_book_tex
- 0x80FF9560: int_sum_blue_chest02_v
- 0x80FF9820: int_sum_blue_chest02_on_model
- 0x80FF9880: int_sum_blue_chest02_onT_model
- 0x80FF9940: int_sum_blue_clk_pal
- 0x80FF9960: int_sum_blue_clk_grass_tex_pic_ci4_pal
- 0x80FF9980: int_sum_blue_clk_hari_tex_txt
- 0x80FF9A00: int_sum_blue_clk_intop_tex_txt
- 0x80FF9A80: int_sum_blue_clk_side_tex_txt
- 0x80FF9C80: int_sum_blue_clk_front_tex_txt
- 0x80FFA080: int_sum_blue_clk_fuliko_tex_txt
- 0x80FFA100: int_sum_blue_clk_grass_tex_txt
- 0x80FFA180: int_sum_blue_clk_v
- 0x80FFA490: int_sum_blue_clk_long_model
- 0x80FFA4F0: int_sum_blue_clk_evw_model
- 0x80FFA548: int_sum_blue_clk_base_model
- 0x80FFA628: int_sum_blue_clk_short_model
- 0x80FFA688: int_sum_blue_clk_huriko_model
- 0x80FFA6E0: cKF_ckcb_r_int_sum_blue_clk_tbl
- 0x80FFA6E8: cKF_kn_int_sum_blue_clk_tbl
- 0x80FFA6EC: cKF_c_int_sum_blue_clk_tbl
- 0x80FFA720: cKF_ds_int_sum_blue_clk_tbl
- 0x80FFA734: cKF_ba_r_int_sum_blue_clk
- 0x80FFA748: cKF_je_r_int_sum_blue_clk_tbl
- 0x80FFA7A8: cKF_bs_r_int_sum_blue_clk
- 0x80FFA7C0: int_sum_blue_lowchest01_pal
- 0x80FFA7E0: int_sum_blue_lowchest01_hikiin_tex_txt
- 0x80FFA860: int_sum_blue_lowchest01_hiki_tex_txt
- 0x80FFA960: int_sum_blue_lowchest01_front_tex_txt
- 0x80FFAD60: int_sum_blue_lowchest01_top_tex_txt
- 0x80FFADE0: int_sum_blue_lowchest01_sibe_tex_txt
- 0x80FFAEE0: int_sum_blue_lowchest01_v
- 0x80FFB220: sum_blue_lowchest01_base_model
- 0x80FFB2C8: int_sum_blue_lowchest01_door_1_model
- 0x80FFB358: cKF_ckcb_r_int_sum_blue_lowchest01_tbl
- 0x80FFB35C: cKF_kn_int_sum_blue_lowchest01_tbl
- 0x80FFB370: cKF_c_int_sum_blue_lowchest01_tbl
- 0x80FFB378: cKF_ds_int_sum_blue_lowchest01_tbl
- 0x80FFB3E4: cKF_ba_r_int_sum_blue_lowchest01
- 0x80FFB3F8: cKF_je_r_int_sum_blue_lowchest01_tbl
- 0x80FFB41C: cKF_bs_r_int_sum_blue_lowchest01
- 0x80FFB440: int_sum_blue_table01_pal
- 0x80FFB460: int_sum_blue_table01_top_tex
- 0x80FFB660: int_sum_blue_table01_side_tex
- 0x80FFB760: int_sum_blue_table01_foot_tex
- 0x80FFB860: int_sum_blue_table01_v
- 0x80FFBBA0: int_sum_blue_table01_on_model
- 0x80FFBBF8: int_sum_blue_table01_onT_model
- 0x80FFBCC0: int_sum_bon_boke_pal
- 0x80FFBCE0: int_sum_bon_boke_hachi_tex
- 0x80FFBDE0: int_sum_bon_boke_stand_tex
- 0x80FFC1E0: int_sum_bon_boke_standside_tex
- 0x80FFC3E0: int_sum_bon_boke_hana_tex
- 0x80FFC460: int_sum_bon_boke_earth_tex
- 0x80FFC4E0: int_sum_bon_boke_v
- 0x80FFC880: int_sum_bon_boke_on_model
- 0x80FFC8E0: int_sum_bon_boke_onT_model
- 0x80FFC9E0: int_sum_bon_matu01_pal
- 0x80FFCA00: int_sum_bon_matu01_hachi_tex
- 0x80FFCB00: int_sum_bon_matu01_miki_tex
- 0x80FFCE00: int_sum_bon_matu01_mikiside_tex
- 0x80FFCF80: int_sum_bon_matu01_leaf_tex
- 0x80FFD080: int_sum_bon_matu01_earth_tex
- 0x80FFD180: int_sum_bon_matu01_v
- 0x80FFD6E0: int_sum_bon_matu01_on_model
- 0x80FFD740: int_sum_bon_matu01_onT_model
- 0x80FFD840: int_sum_bon_matu02_pal
- 0x80FFD860: int_sum_bon_matu02_hachi_tex
- 0x80FFD960: int_sum_bon_matu02_stand_tex
- 0x80FFDB60: int_sum_bon_matu02_lowstand_tex
- 0x80FFDC60: int_sum_bon_matu02_leaf_tex
- 0x80FFDDE0: int_sum_bon_matu02_leaf2_tex
- 0x80FFDEE0: int_sum_bon_matu02_earth_tex
- 0x80FFDFE0: int_sum_bon_matu02_v
- 0x80FFE580: int_sum_bon_matu02_on_model
- 0x80FFE5E0: int_sum_bon_matu02_onT_model
- 0x80FFE700: int_sum_bon_matu03_pal
- 0x80FFE720: int_sum_bon_matu03_hachi_tex
- 0x80FFE820: int_sum_bon_matu03_stand_tex
- 0x80FFEC20: int_sum_bon_matu03_standside_tex
- 0x80FFED20: int_sum_bon_matu03_earth_tex
- 0x80FFEDA0: int_sum_bon_matu03_leaf_tex
- 0x80FFEEA0: int_sum_bon_matu03_v
- 0x80FFF3B0: int_sum_bon_matu03_on_model
- 0x80FFF410: int_sum_bon_matu03_onT_model
- 0x80FFF500: int_sum_bon_momiji_pal
- 0x80FFF520: int_sum_bon_momiji_hachi_tex
- 0x80FFF620: int_sum_bon_momiji_tree_tex
- 0x80FFF820: int_sum_bon_momiji_eda_tex
- 0x80FFF920: int_sum_bon_momiji_earth_tex
- 0x80FFF9A0: int_sum_bon_momiji_leaf_tex
- 0x80FFFBA0: int_sum_bon_momiji_v
- 0x81000190: int_sum_bon_momiji_on_model
- 0x810001F0: int_sum_bon_momiji_onT_model
- 0x810002E0: int_sum_bon_pira_pal
- 0x81000300: int_sum_bon_pira_hachi_tex
- 0x81000400: int_sum_bon_pira_tree_tex
- 0x81000500: int_sum_bon_pira_leaf_tex
- 0x81000800: int_sum_bon_pira_treeside_tex
- 0x81000900: int_sum_bon_pira_mi_tex
- 0x81000A00: int_sum_bon_pira_earth_tex
- 0x81000A80: int_sum_bon_pira_minileaf_tex
- 0x81000B00: int_sum_bon_pira_v
- 0x810011E0: int_sum_boke_pira_on_model
- 0x81001240: int_sum_boke_pira_onT_model
- 0x81001380: int_sum_bon_sanshu_pal
- 0x810013A0: int_sum_bon_sanshu_tree_tex
- 0x810015A0: int_sum_bon_sanshu_treetop_tex
- 0x81001720: int_sum_bon_sanshu_eda_tex
- 0x81001820: int_sum_bon_sanshu_eda2_tex
- 0x81001920: int_sum_bon_sanshu_stand_tex
- 0x81001A20: int_sum_bon_sanshu_earth_tex
- 0x81001AA0: int_sum_bon_sanshu_hachi_tex
- 0x81001BA0: int_sum_bon_sanshu_v
- 0x81002170: int_sum_bon_sanshu_on_model
- 0x810021D0: int_sum_bon_sanshu_onT_model
- 0x81002300: int_sum_bon_satuki_pal
- 0x81002320: int_sum_bon_satuki_hachi_tex
- 0x81002420: int_sum_bon_satuki_earth_tex
- 0x810024A0: int_sum_bon_satuki_stand_tex
- 0x810025A0: int_sum_bon_satuki_standside_tex
- 0x810026A0: int_sum_bon_satuki_hana_tex
- 0x810028A0: int_sum_bon_satuki_leaf_tex
- 0x81002AA0: int_sum_bon_satuki_v
- 0x81002F80: int_sum_bon_satuki_on_model
- 0x81002FD8: int_sum_bon_satuki_onT_model
- 0x81003100: int_sum_bon_turu_pal
- 0x81003120: int_sum_bon_turu_stand_tex
- 0x81003320: int_sum_bon_turu_standside_tex
- 0x81003420: int_sum_bon_turu_leaf_tex
- 0x81003620: int_sum_bon_turu_mi_tex
- 0x810036A0: int_sum_bon_turu_hachi_tex
- 0x810037A0: int_sum_bon_turu_earth_tex
- 0x81003820: int_sum_bon_turu_v
- 0x81003D30: int_sum_bon_turu_on_model
- 0x81003D90: int_sum_bon_turu_onT_model
- 0x81003EA0: int_sum_bon_ume_pal
- 0x81003EC0: int_sum_bon_ume_hachi_tex
- 0x81003FC0: int_sum_bon_ume_stand_tex
- 0x810041C0: int_sum_bon_ume_standside_tex
- 0x810042C0: int_sum_bon_ume_hana_tex
- 0x810044C0: int_sum_bon_ume_tubomi_tex
- 0x810045C0: int_sum_bon_ume_earth_tex
- 0x81004640: int_sum_bon_ume_v
- 0x81004A60: int_sum_bon_ume_on_model
- 0x81004AC0: int_sum_bon_ume_onT_model
- 0x81004BE0: int_sum_bookcht01_pal
- 0x81004C00: int_sum_bookcht01_mirror_tex_rgb_ci4_pal
- 0x81004C20: int_sum_bookcht01_front_tex
- 0x81004DA0: int_sum_bookcht01_side_tex
- 0x81004F20: int_sum_bookcht01_back_tex
- 0x810050A0: int_sum_bookcht01_top_tex
- 0x81005120: int_sum_bookcht01_book_tex
- 0x81005320: int_sum_bookcht01_mirror_tex
- 0x810053A0: int_sum_bookcht01_v
- 0x810055E0: int_sum_bookcht01_on_model
- 0x81005668: int_sum_bookcht01_onT_model
- 0x81005700: int_sum_bookcht01_envT_model
- 0x81005760: int_sum_casse01_pal
- 0x81005780: int_sum_casse01_front_tex
- 0x81005D80: int_sum_casse01_side_tex
- 0x81005E80: int_sum_casse01_hand_tex
- 0x81005F00: int_sum_casse01_antena_tex
- 0x81005F80: int_sum_casse01_v
- 0x810062A0: int_sum_casse01_on_model
- 0x81006360: int_sum_casse01_onT_model
- 0x810063C0: int_sum_cello01_pal
- 0x810063E0: int_sum_cello01_front_tex
- 0x810066E0: int_sum_cello01_back_tex
- 0x81006860: int_sum_cello01_side_tex
- 0x810068E0: int_sum_cello01_neck_tex
- 0x810069E0: int_sum_cello01_neckback_tex
- 0x81006A60: int_sum_cello01_hand_tex
- 0x81006AE0: int_sum_cello01_stand_tex
- 0x81006BE0: int_sum_cello01_v
- 0x81006F70: int_sum_cello01_on_model
- 0x81006FF8: int_sum_cello01_onT_model
- 0x81007100: int_sum_chair01_pal
- 0x81007120: int_sum_chair01_side
- 0x81007520: int_sum_chair01_top
- 0x81007620: int_sum_chair01_back
- 0x810076A0: int_sum_chair01_backseat
- 0x810076E0: int_sum_chair01_step
- 0x81007720: int_sum_chair01_frontf
- 0x81007820: int_sum_chair01_backf
- 0x81007860: int_sum_chair01_v
- 0x81007C40: int_sum_chair01_on_model
- 0x81007CE0: int_sum_chair01_onT_model
- 0x81007DC0: int_sum_chikuon01_pal
- 0x81007DE0: int_sum_chikuon01_front_tex
- 0x81007EE0: int_sum_chikuon01_side_tex
- 0x81007F60: int_sum_chikuon01_rapa_f_tex
- 0x81008160: int_sum_chikuon01_rapa_b_tex
- 0x810081E0: int_sum_chikuon01_reco_tex
- 0x810082E0: int_sum_chikuon01_hari_tex
- 0x81008360: int_sum_chikuon01_v
- 0x810086C0: int_sum_chikuon01_on_model
- 0x81008740: int_sum_chikuon01_onT_model
- 0x81008820: int_sum_chikuon02_pal
- 0x81008840: int_sum_chikuon02_top_tex
- 0x81008940: int_sum_chikuon02_back_tex
- 0x81008A40: int_sum_chikuon02_front_tex
- 0x81008C40: int_sum_chikuon02_rid_tex
- 0x81008D40: int_sum_chikuon02_reco_tex
- 0x81008E40: int_sum_chikuon02_in_tex
- 0x81008F40: int_sum_chikuon02_v
- 0x810093B0: int_sum_chikuon02_on_model
- 0x81009478: int_sum_chikuon02_onT_model
- 0x81009520: int_sum_classiccabinet01_pal
- 0x81009540: int_sum_classiccabinet01_front
- 0x81009940: int_sum_classiccabinet01_in
- 0x810099C0: int_sum_classiccabinet01_rack
- 0x81009A40: int_sum_classiccabinet01_back
- 0x81009C40: int_sum_classiccabinet01_saucer
- 0x81009CC0: int_sum_classiccabinet01_saucer2
- 0x81009D40: int_sum_classiccabinet01_v
- 0x8100A1C0: int_sum_classiccabinet01_on_model
- 0x8100A250: int_sum_classiccabinet01_onT_model
- 0x8100A340: int_sum_classicchair01_pal01_pal
- 0x8100A360: int_sum_classicchair01_seat
- 0x8100A460: int_sum_classicchair01_back
- 0x8100A660: int_sum_classicchair01_side
- 0x8100A6E0: int_sum_classicchair01_foot
- 0x8100A7E0: int_sum_classicchair01_frontseat
- 0x8100A820: int_sum_classicchair01_backfoot
- 0x8100A920: int_sum_classicchairspindle
- 0x8100A960: int_sum_classicchair01_backseat
- 0x8100A9A0: int_sum_classicchair01_v
- 0x8100ADD0: int_sum_classicchair01_on_model
- 0x8100AEB8: int_sum_classicchair01_onT_model
- 0x8100AF60: int_sum_clchest01_pal
- 0x8100AF80: int_sum_clchest01_glass_pic_ci4_pal
- 0x8100AFA0: int_sum_clchest01_hiki_txt
- 0x8100B020: int_sum_clchest01_mirback_txt
- 0x8100B0A0: int_sum_clchest01_front_txt
- 0x8100B2A0: int_sum_clchest01_top_txt
- 0x8100B320: int_sum_clchest01_side_txt
- 0x8100B420: int_sum_clchest01_stand_txt
- 0x8100B520: int_sum_clchest01_mirside_txt
- 0x8100B560: int_sum_clchest01_mir_txt
- 0x8100B5E0: int_sum_clchest01_glass_txt
- 0x8100B6E0: int_sum_clchest01_v
- 0x8100BBC0: int_sum_clcht1_door_model
- 0x8100BC60: int_sum_clcht1_evw_model
- 0x8100BCB8: int_sum_clcht1_base_model
- 0x8100BDE8: cKF_ckcb_r_int_sum_clchest01_tbl
- 0x8100BDEC: cKF_kn_int_sum_clchest01_tbl
- 0x8100BE00: cKF_c_int_sum_clchest01_tbl
- 0x8100BE0C: cKF_ds_int_sum_clchest01_tbl
- 0x8100BE78: cKF_ba_r_int_sum_clchest01
- 0x8100BE8C: cKF_je_r_int_sum_clchest01_tbl
- 0x8100BEBC: cKF_bs_r_int_sum_clchest01
- 0x8100BEE0: int_sum_classicchest02_pal01_pal
- 0x8100BF00: int_sum_classicchest02_back
- 0x8100C080: int_sum_classicchest02_side
- 0x8100C200: int_sum_classicchest02_top
- 0x8100C400: int_sum_classicchest02_front
- 0x8100C500: int_sum_classicchest02_tablefront
- 0x8100C540: int_sum_classicchest02_tableside
- 0x8100C580: int_sum_classicchest02_uptop
- 0x8100C600: int_sum_classicchest02_ink
- 0x8100C680: int_sum_classicchest02_pensaki
- 0x8100C6C0: int_sum_classicchest02_pen
- 0x8100C700: int_sum_classicchest02_v
- 0x8100CA20: int_sum_classicchest02_on_model
- 0x8100CAE0: int_sum_classicchest02_onT_model
- 0x8100CBC0: int_sum_dolltable01_pal
- 0x8100CBE0: int_sum_classictable01_top
- 0x8100CDE0: int_sum_classictable01_side
- 0x8100CE60: int_sum_classictable01_lag
- 0x8100CFE0: int_sum_classictable01_foot
- 0x8100D0E0: int_sum_classictable01_v
- 0x8100D430: int_sum_classictable01_on_model
- 0x8100D4B8: int_sum_classictable01_onT_model
- 0x8100D560: int_sum_classicwardrope01_pal01_pal
- 0x8100D580: int_sum_classicwardrope01_mirror_rgb_ci4_pal
- 0x8100D5A0: int_sum_classicwardrope01_back
- 0x8100D7A0: int_sum_classicwardrope01_front
- 0x8100D9A0: int_sum_classicwardrope01_side
- 0x8100DBA0: int_sum_classicwardrope01_top
- 0x8100DC20: int_sum_classicwardrope01_dolls
- 0x8100DD20: int_sum_classicwardrope01_mirror
- 0x8100DDA0: int_sum_classicwardrope01_v
- 0x8100E190: int_sum_classcwardrope01_on_model
- 0x8100E1F0: int_sum_classcwardrope01_onT_model
- 0x8100E2F8: int_sum_classicwardrope_envT_model
- 0x8100E360: int_sum_clbed02_pal
- 0x8100E380: int_sum_clbed02_foot
- 0x8100E480: int_sum_clbed02_head
- 0x8100E580: int_sum_clbed02_mat
- 0x8100E980: int_sum_clbed02_pillow
- 0x8100EB80: int_sum_clbed02_v
- 0x8100EE80: int_sum_clbed02_onT_model
- 0x8100EF80: int_sum_clchair02_pal01_pal
- 0x8100EFA0: int_sum_clchair02_back
- 0x8100F0A0: int_sum_clchair02_seat
- 0x8100F1A0: int_sum_clchair02_foot
- 0x8100F2A0: int_sum_clchair02_foot2
- 0x8100F3A0: int_sum_clchair02_foot3
- 0x8100F4A0: int_sum_clchair02_hiji
- 0x8100F6A0: int_sum_clchair02_hiji2
- 0x8100F720: int_sum_clchair02_v
- 0x8100FB00: int_sum_clcheir02_onT_model
- 0x8100FC60: int_sum_clchest03_pal01_pal
- 0x8100FC80: int_sum_clchest03_hiki_txt
- 0x8100FD80: int_sum_clchest03_hikiura_txt
- 0x8100FE80: int_sum_clchest03_top_txt
- 0x8100FF80: int_sum_clchest03_stand_txt
- 0x81010000: int_sum_clchest03_front_txt
- 0x81010180: int_sum_clchest03_side_txt
- 0x81010300: int_sum_clchest03_hisasi_txt
- 0x81010380: int_sum_clchest03_v
- 0x81010800: int_sum_clchest03_door_model
- 0x81010890: int_sum_clchest03_base_model
- 0x81010988: cKF_ckcb_r_int_sum_clchest03_tbl
- 0x8101098C: cKF_kn_int_sum_clchest03_tbl
- 0x81010998: cKF_c_int_sum_clchest03_tbl
- 0x810109A4: cKF_ds_int_sum_clchest03_tbl
- 0x81010A00: cKF_ba_r_int_sum_clchest03
- 0x81010A14: cKF_je_r_int_sum_clchest03_tbl
- 0x81010A38: cKF_bs_r_int_sum_clchest03
- 0x81010A40: int_sum_col_chair01_pal
- 0x81010A60: int_sum_col_chair01_backboard_tex
- 0x81010BE0: int_sum_col_chair01_front_tex
- 0x81010C20: int_sum_col_chair01_seatside_tex
- 0x81010C60: int_sum_col_chair01_top_tex
- 0x81010CE0: int_sum_col_chair01_boardside_tex
- 0x81010D60: int_sum_col_chair01_foot_tex
- 0x81010E60: int_sum_col_chair01_v
- 0x810111F0: int_sum_col_chair01_on_model
- 0x810112D8: int_sum_col_chair01_onT_model
- 0x81011360: int_sum_col_chair02_pal
- 0x81011380: int_sum_col_chair02_backboard_tex
- 0x81011500: int_sum_col_chair02_front_tex
- 0x81011540: int_sum_col_chair02_seatside_tex
- 0x81011580: int_sum_col_chair02_top_tex
- 0x81011600: int_sum_col_chair02_boardside_tex
- 0x81011680: int_sum_col_chair02_foot_tex
- 0x81011780: int_sum_col_chair02_v
- 0x81011B10: int_sum_col_chair02_on_model
- 0x81011BF8: int_sum_col_chair02_onT_model
- 0x81011C80: int_sum_col_chair03_pal
- 0x81011CA0: int_sum_col_chair03_backboard_tex
- 0x81011E20: int_sum_col_chair03_front_tex
- 0x81011E60: int_sum_col_chair03_seatside_tex
- 0x81011EA0: int_sum_col_chair03_top_tex
- 0x81011F20: int_sum_col_chair03_boardside_tex
- 0x81011FA0: int_sum_col_chair03_foot_tex
- 0x810120A0: int_sum_col_chair03_v
- 0x81012430: int_sum_col_chair03_on_model
- 0x81012518: int_sum_col_chair03_onT_model
- 0x810125A0: int_sum_comp01_pal
- 0x810125C0: int_sum_comp01_front_tex
- 0x810126C0: int_sum_comp01_side_tex
- 0x810127C0: int_sum_comp01_backtop_tex
- 0x81012800: int_sum_comp01_fronttop_tex
- 0x81012840: int_sum_comp01_mainfront
- 0x81012940: int_sum_comp01_key_tex
- 0x81012A40: int_sum_comp01_deskfront_tex
- 0x81012AC0: int_sum_comp01_deskside_tex
- 0x81012BC0: int_sum_comp01_desktop_tex
- 0x81012C40: int_sum_comp01_mainback
- 0x81012CC0: int_sum_comp01_back_tex
- 0x81012D40: int_sum_comp01_v
- 0x810132F0: int_sum_comp01_on_model
- 0x81013450: int_sum_comp01_onT_model
- 0x810134E0: int_sum_conga01_pal
- 0x81013500: int_sum_conga01_side_tex
- 0x81013800: int_sum_conga01_stand_tex
- 0x81013880: int_sum_conga01_top_tex
- 0x81013900: int_sum_conga01_v
- 0x81013BC0: int_sum_conga01_on_model
- 0x81013C48: int_sum_conga01_onT_model
- 0x81013CE0: int_sum_conpo01_pal
- 0x81013D00: int_sum_conpo01_front_tex
- 0x81014000: int_sum_conpo01_s_back_tex
- 0x81014180: int_sum_conpo01_s_front_tex
- 0x81014380: int_sum_conpo01_top_tex
- 0x81014400: int_sum_conpo01_back_tex
- 0x81014500: int_sum_conpo01_v
- 0x810148C0: int_sum_conpo01_on_model
- 0x810149C0: int_sum_conpo02_pal
- 0x810149E0: int_sum_conpo02_glass_tex_rgb_ci4_pal
- 0x81014A00: int_sum_conpo02_front_tex
- 0x81014E00: int_sum_conpo02_p_top_tex
- 0x81014E80: int_sum_conpo02_spika_tex
- 0x81015000: int_sum_conpo02_s_side_tex
- 0x81015180: int_sum_conpo02_glass_tex_rgb_ci4
- 0x81015200: int_sum_conpo02_v
- 0x810156F0: int_sum_conpo02_on_model
- 0x810157B8: int_sum_conpo02_evwT_model
- 0x81015818: int_sum_conpo02_p_topT_model
- 0x81015880: int_sum_cont_bed01_pal
- 0x810158A0: int_sum_cont_bed01_head_tex
- 0x81015AA0: int_sum_cont_bed01_headside_tex
- 0x81015B20: int_sum_cont_bed01_top_tex
- 0x81015D20: int_sum_cont_bed01_topside_tex
- 0x81015E20: int_sum_cont_bed01_pillow_tex
- 0x81015EA0: int_sum_cont_bed01_pillow2_tex
- 0x81015F20: int_sum_cont_bed01_pillow3_tex
- 0x81015FA0: int_sum_cont_bed01_v
- 0x81016320: int_sum_cont_bed01_on_model
- 0x81016410: int_sum_cont_bed01_onT_model
- 0x810164A0: int_sum_cont_cab01_pal
- 0x810164C0: int_sum_cont_cab01_back_tex
- 0x810166C0: int_sum_cont_cab01_front_tex
- 0x810168C0: int_sum_cont_cab01_side_tex
- 0x810169C0: int_sum_cont_cab01_top_tex
- 0x81016A40: int_sum_cont_cab01_upside_tex
- 0x81016B40: int_sum_cont_cab01_bin_tex
- 0x81016BC0: int_sum_cont_cab01_reddish_tex
- 0x81016C40: int_sum_cont_cab01_dish_tex
- 0x81016CC0: int_sum_cont_cab01_v
- 0x81017130: int_sum_cont_cab01_on_model
- 0x81017198: int_sum_cont_cab01_onT_model
- 0x810172E0: int_sum_cont_chair01_pal
- 0x81017300: int_sum_cont_chair01_board_tex
- 0x81017500: int_sum_cont_chair01_seat_tex
- 0x81017600: int_sum_cont_chair01_foot_tex
- 0x81017780: int_sum_cont_chair01_seatside_tex
- 0x81017880: int_sum_cont_chair01_stand_tex
- 0x81017900: int_sum_cont_chair01_v
- 0x81017D20: int_sum_cont_chair01_on_model
- 0x81017D98: int_sum_cont_chair01_onT_model
- 0x81017E80: int_sum_cont_chest01_pal
- 0x81017EA0: int_sum_cont_chest01_back_tex
- 0x810180A0: int_sum_cont_chest01_front_tex
- 0x810182A0: int_sum_cont_chest01_side_tex
- 0x810184A0: int_sum_cont_chest01_top_tex
- 0x81018520: int_sum_cont_chest01_shelf_tex
- 0x81018560: int_sum_cont_chest01_book_tex
- 0x810185A0: int_sum_cont_chest01_book2_tex
- 0x810185E0: int_sum_cont_chest01_book2side_tex
- 0x81018620: int_sum_cont_chest01_box_tex
- 0x810186A0: int_sum_cont_chest01_v
- 0x81018AD0: int_sum_cont_chest01_on_model
- 0x81018BB0: int_sum_cont_chest01_onT_model
- 0x81018C60: int_sum_cont_chest02_pal
- 0x81018C80: int_sum_cont_chest02_door_tex_txt
- 0x81018E00: int_sum_cont_chest02_top_tex_txt
- 0x81018E80: int_sum_cont_chest02_side_tex_txt
- 0x81019080: int_sum_cont_chest02_back_tex_txt
- 0x81019280: int_sum_cont_chest02_front_tex_txt
- 0x81019480: int_sum_cont_chest02_v
- 0x810197E0: int_sum_cont_chest02_doorL_model
- 0x81019868: int_sum_cont_chest02_base_model
- 0x81019940: int_sum_cont_chest02_doorR_model
- 0x810199C8: cKF_ckcb_r_int_sum_cont_chest02_tbl
- 0x810199D0: cKF_kn_int_sum_cont_chest02_tbl
- 0x810199E8: cKF_c_int_sum_cont_chest02_tbl
- 0x810199F4: cKF_ds_int_sum_cont_chest02_tbl
- 0x81019A90: cKF_ba_r_int_sum_cont_chest02
- 0x81019AA4: cKF_je_r_int_sum_cont_chest02_tbl
- 0x81019AE0: cKF_bs_r_int_sum_cont_chest02
- 0x81019B00: int_sum_cont_chest03_pal
- 0x81019B20: int_sum_cont_chest03_hiki_tex_txt
- 0x81019C20: int_sum_cont_chest03_hikiside_tex_txt
- 0x81019CA0: int_sum_cont_chest03_front_tex_txt
- 0x8101A0A0: int_sum_cont_chest03_side_tex_txt
- 0x8101A1A0: int_sum_cont_chest03_top_tex_txt
- 0x8101A2A0: int_sum_cont_chest03_v
- 0x8101A520: int_sum_cont_chest03_door_model
- 0x8101A5B0: int_sum_cont_chest03_base_model
- 0x8101A650: cKF_ckcb_r_int_sum_cont_chest03_tbl
- 0x8101A654: cKF_kn_int_sum_cont_chest03_tbl
- 0x8101A668: cKF_c_int_sum_cont_chest03_tbl
- 0x8101A670: cKF_ds_int_sum_cont_chest03_tbl
- 0x8101A6DC: cKF_ba_r_int_sum_cont_chest03
- 0x8101A6F0: cKF_je_r_int_sum_cont_chest03_tbl
- 0x8101A714: cKF_bs_r_int_sum_cont_chest03
- 0x8101A720: int_sum_cont_sofa01_pal
- 0x8101A740: int_sum_cont_sofa01_seat_tex
- 0x8101A940: int_sum_cont_sofa01_board_tex
- 0x8101AB40: int_sum_cont_sofa01_outside_tex
- 0x8101AC40: int_sum_cont_sofa01_topside_tex
- 0x8101AC80: int_sum_cont_sofa01_frontside_tex
- 0x8101AD80: int_sum_cont_sofa01_boardside_tex
- 0x8101AE80: int_sum_cont_sofa01_seatside_tex
- 0x8101AF00: int_sum_cont_sofa01_v
- 0x8101B370: int_sum_cont_sofa01_on_model
- 0x8101B440: int_sum_cont_sofa01_onT_model
- 0x8101B500: int_sum_cont_sofa02_pal
- 0x8101B520: int_sum_cont_sofa02_seat_tex
- 0x8101B720: int_sum_cont_sofa02_board_tex
- 0x8101B920: int_sum_cont_sofa02_outside_tex
- 0x8101BA20: int_sum_cont_sofa02_topside_tex
- 0x8101BA60: int_sum_cont_sofa02_frontside_tex
- 0x8101BB60: int_sum_cont_sofa02_boardside_tex
- 0x8101BC60: int_sum_cont_sofa02_seatside_tex
- 0x8101BCE0: int_sum_cont_sofa02_v
- 0x8101C150: int_sum_cont_sofa02_on_model
- 0x8101C220: int_sum_cont_sofa02_onT_model
- 0x8101C300: int_sum_cont_table01_top_tex
- 0x8101C480: int_sum_cont_table01_side_tex
- 0x8101C580: int_sum_cont_table01_foot_tex
- 0x8101C780: int_sum_cont_table01_shelf_tex
- 0x8101C880: int_sum_cont_table01_v
- 0x8101CB00: int_sum_cont_table01_on_model
- 0x8101CB98: int_sum_cont_table01_onT_model
- 0x8101CC20: int_sum_cont_table02_pal
- 0x8101CC60: int_sum_cont_table02_top_tex
- 0x8101CEE0: int_sum_cont_table02_side_tex
- 0x8101CF60: int_sum_cont_table02_foot_tex
- 0x8101D160: int_sum_cont_table02_v
- 0x8101D4E0: int_sum_cont_table02_on_model
- 0x8101D5A0: int_sum_cont_table02_onT_model
- 0x8101D620: int_sum_cupboard01_pal
- 0x8101D640: int_sum_cupboard01_mirror_tex_rgb_ci4_pal
- 0x8101D660: int_sum_cupboard01_front_tex
- 0x8101D860: int_sum_cupboard01_side_tex
- 0x8101DA60: int_sum_cupboard01_top_tex
- 0x8101DAE0: int_sum_cupboard01_cup_tex
- 0x8101DC60: int_sum_cupboard01_grass_tex
- 0x8101DDE0: int_sum_cupboard01_mirror_tex
- 0x8101DE60: int_sum_cupboard01_v
- 0x8101E0E0: int_sum_cupboard01_on_model
- 0x8101E140: int_sum_cupboard01_onT_model
- 0x8101E208: int_sum_cupboard01_envT_model
- 0x8101E280: int_sum_danna_pal
- 0x8101E2A0: int_sum_danna_hand_pic_ci4_pal
- 0x8101E2C0: int_sum_danna_base_txt
- 0x8101E340: int_sum_danna_top_txt
- 0x8101E540: int_sum_danna_side_txt
- 0x8101E740: int_sum_danna_body_txt
- 0x8101EA40: int_sum_danna_hand_txt
- 0x8101EAC0: int_sum_danna_v
- 0x8101EEE0: int_sum_danna_side_model
- 0x8101EF48: int_sum_danna_komado_model
- 0x8101EFA0: int_sum_danna_glass_model
- 0x8101F008: int_sum_danna_base_model
- 0x8101F0A0: int_sum_danna_body_model
- 0x8101F108: int_sum_danna_feeler_model
- 0x8101F160: cKF_ckcb_r_int_sum_danna_tbl
- 0x8101F168: cKF_kn_int_sum_danna_tbl
- 0x8101F178: cKF_c_int_sum_danna_tbl
- 0x8101F1A0: cKF_ds_int_sum_danna_tbl
- 0x8101F2B4: cKF_ba_r_int_sum_danna
- 0x8101F2C8: cKF_je_r_int_sum_danna_tbl
- 0x8101F328: cKF_bs_r_int_sum_danna
- 0x8101F360: int_sum_demekin_glass_pic_ci4_pal
- 0x8101F380: int_sum_demekin_front_pic_ci4_pal
- 0x8101F3A0: int_sum_demekin_body_txt
- 0x8101F5A0: int_sum_demekin_kuchi_txt
- 0x8101F620: int_sum_demekin_etc_txt
- 0x8101F6A0: int_sum_demekin_glass_txt
- 0x8101F720: int_sum_demekin_front_txt
- 0x8101F920: int_sum_demekin_v
- 0x8101FC40: int_sum_demekin_sakana_model
- 0x8101FCB0: int_sum_demekin_glass_model
- 0x8101FD18: int_sum_demekin_body_model
- 0x8101FD80: int_sum_demekin_base_model
- 0x8101FDF8: cKF_ckcb_r_int_sum_demekin_tbl
- 0x8101FE00: cKF_kn_int_sum_demekin_tbl
- 0x8101FE14: cKF_c_int_sum_demekin_tbl
- 0x8101FE28: cKF_ds_int_sum_demekin_tbl
- 0x8101FEC0: cKF_ba_r_int_sum_demekin
- 0x8101FED4: cKF_je_r_int_sum_demekin_tbl
- 0x8101FF10: cKF_bs_r_int_sum_demekin
- 0x8101FF20: int_sum_desk01_pal
- 0x8101FF40: int_sum_desk01_side
- 0x81020040: int_sum_desk01_top
- 0x81020140: int_sum_desk01_topside
- 0x81020240: int_sum_desk01_drawer
- 0x81020340: int_sum_desk01_back
- 0x81020540: int_sum_desk01_front
- 0x81020640: int_sum_desk01_light
- 0x810206C0: int_sum_desk01_mini
- 0x81020700: int_sum_desk01_book
- 0x81020740: int_sum_desk01_v
- 0x81020BE0: int_sum_desk01_on_model
- 0x81020CC0: int_sum_desk01_onT_model
- 0x81020DE0: int_sum_dojyo_glass_pic_ci4_pal
- 0x81020E00: int_sum_dojyo_body_txt
- 0x81020F00: int_sum_dojyo_side_txt
- 0x81021100: int_sum_dojyo_base_txt
- 0x81021180: int_sum_dojyo_top_txt
- 0x81021280: int_sum_dojyo_glass_txt
- 0x81021380: int_sum_dojyo_v
- 0x81021650: int_sum_dojyo_sakana_model
- 0x810216C0: int_sum_dojyo_top_model
- 0x81021718: int_sum_dojyo_evw_model
- 0x81021780: int_sum_dojyo_base_model
- 0x81021810: cKF_ckcb_r_int_sum_dojyo_tbl
- 0x81021818: cKF_kn_int_sum_dojyo_tbl
- 0x8102182C: cKF_c_int_sum_dojyo_tbl
- 0x81021840: cKF_ds_int_sum_dojyo_tbl
- 0x810218E4: cKF_ba_r_int_sum_dojyo
- 0x810218F8: cKF_je_r_int_sum_dojyo_tbl
- 0x81021934: cKF_bs_r_int_sum_dojyo
- 0x81021940: int_sum_doll01_pal
- 0x81021960: int_sum_doll01_byubu_txt
- 0x810219E0: int_sum_doll01_hinadan_txt
- 0x81021B60: int_sum_doll01_hina_txt
- 0x81021C60: int_sum_doll01_dairi_txt
- 0x81021D60: int_sum_doll01_kanjyo_txt
- 0x81021E60: int_sum_doll01_gonin_txt
- 0x81021F60: int_sum_doll01_bonbori_txt
- 0x81022060: int_sum_doll01_side_txt
- 0x81022160: int_sum_doll01_v
- 0x810226E0: int_sum_doll01_on_model
- 0x81022748: int_sum_doll01_onT_model
- 0x81022860: int_sum_doll01_offT_model
- 0x810228C0: int_sum_doll02_pal
- 0x810228E0: int_sum_doll02_top_txt_txt
- 0x810229E0: int_sum_doll02_face_txt_txt
- 0x81022BE0: int_sum_doll02_back_txt_txt
- 0x81022CE0: int_sum_doll02_ear_txt_txt
- 0x81022D60: int_sum_doll02_hand_txt_txt
- 0x81022E60: int_sum_doll02_footdown_txt_txt
- 0x81022EE0: int_sum_doll02_foot_txt_txt
- 0x81022FE0: int_sum_doll02_v
- 0x81023480: int_sum_doll02_on_model
- 0x81023660: int_sum_doll03_pal
- 0x81023680: int_sum_doll03_top_txt_txt
- 0x81023780: int_sum_doll03_face_txt_txt
- 0x81023980: int_sum_doll03_back_txt_txt
- 0x81023A80: int_sum_doll03_ear_txt_txt
- 0x81023B00: int_sum_doll03_hand_txt_txt
- 0x81023C00: int_sum_doll03_footdown_txt_txt
- 0x81023C80: int_sum_doll03_foot_txt_txt
- 0x81023D80: int_sum_doll03_v
- 0x81024220: int_sum_doll03_on_model
- 0x81024400: int_sum_doll04_pal
- 0x81024420: int_sum_doll04_top_txt_txt
- 0x81024520: int_sum_doll04_face_txt_txt
- 0x81024720: int_sum_doll04_back_txt_txt
- 0x81024820: int_sum_doll04_ear_txt_txt
- 0x810248A0: int_sum_doll04_hand_txt_txt
- 0x810249A0: int_sum_doll04_footdown_txt_txt
- 0x81024A20: int_sum_doll04_foot_txt_txt
- 0x81024B20: int_sum_doll04_v
- 0x81024FC0: int_sum_doll04_on_model
- 0x810251A0: int_sum_doll05_pal
- 0x810251C0: int_sum_doll05_face_txt_txt
- 0x810255C0: int_sum_doll05_front_txt_txt
- 0x810258C0: int_sum_doll05_v
- 0x81025AD0: int_sum_doll05_on_model
- 0x81025BC0: int_sum_doll06_pal
- 0x81025BE0: int_sum_doll06_face_txt_txt
- 0x81025FE0: int_sum_doll06_front_txt_txt
- 0x810262E0: int_sum_doll06_v
- 0x810264F0: int_sum_doll06_on_model
- 0x810265E0: int_sum_doll07_pal
- 0x81026600: int_sum_doll07_face_txt_txt
- 0x81026A00: int_sum_doll07_front_txt_txt
- 0x81026D00: int_sum_doll07_v
- 0x81026F10: int_sum_doll07_on_model
- 0x81027020: int_sum_doll08_face_txt_txt
- 0x81027420: int_sum_doll08_front_txt_txt
- 0x81027720: int_sum_doll08_v
- 0x81027930: int_sum_doll08_on_model
- 0x81027A40: int_sum_doll09_face_txt_txt
- 0x81027E40: int_sum_doll09_front_txt_txt
- 0x81028140: int_sum_doll09_v
- 0x81028350: int_sum_doll09_on_model
- 0x81028440: int_sum_doll10_pal
- 0x81028460: int_sum_doll10_face_txt_txt
- 0x81028860: int_sum_doll10_front_txt_txt
- 0x81028B60: int_sum_doll10_v
- 0x81028D70: int_sum_doll10_on_model
- 0x81028E60: int_sum_doll11_pal
- 0x81028E80: int_sum_doll11_face_tex_txt
- 0x81029280: int_sum_doll11_front_tex_txt
- 0x81029580: int_sum_doll11_v
- 0x81029790: int_sum_doll11_on_model
- 0x810298A0: int_sum_donko_glass_pic_ci4_pal
- 0x810298C0: int_sum_donko_body_txt
- 0x81029AC0: int_sum_donko_side_txt
- 0x81029CC0: int_sum_donko_base_txt
- 0x81029D40: int_sum_donko_etc_txt
- 0x81029DC0: int_sum_donko_top_txt
- 0x81029EC0: int_sum_donko_glass_txt
- 0x81029FC0: int_sum_donko_v
- 0x8102A330: int_sum_donko_sakana_model
- 0x8102A3A0: int_sum_donko_top_model
- 0x8102A3F8: int_sum_donko_evw_model
- 0x8102A460: int_sum_donko_base_model
- 0x8102A518: cKF_ckcb_r_int_sum_donko_tbl
- 0x8102A520: cKF_kn_int_sum_donko_tbl
- 0x8102A534: cKF_c_int_sum_donko_tbl
- 0x8102A548: cKF_ds_int_sum_donko_tbl
- 0x8102A5E0: cKF_ba_r_int_sum_donko
- 0x8102A5F4: cKF_je_r_int_sum_donko_tbl
- 0x8102A630: cKF_bs_r_int_sum_donko
- 0x8102A640: int_sum_fruitbed01_pal
- 0x8102A660: int_sum_fruitbed01_board_tex
- 0x8102A960: int_sum_fruitbed01_side_tex
- 0x8102AC60: int_sum_fruitbed01_back_tex
- 0x8102AD60: int_sum_fruitbed01_v
- 0x8102AF80: int_sum_fruitbed01_on_model
- 0x8102B020: int_sum_fruitbed01_onT_model
- 0x8102B080: int_sum_fruitchair01_pal
- 0x8102B0A0: int_sum_fruitchair01_leaf_tex_txt
- 0x8102B120: int_sum_fruitchair01_side_tex_txt
- 0x8102B420: int_sum_fruitchair01_seat_tex_txt
- 0x8102B620: int_sum_fruitchair01_top_tex_txt
- 0x8102B6A0: int_sum_fruitchair01_v
- 0x8102B940: int_sum_fruitchair01_on_model
- 0x8102BA80: int_sum_fruitchair02_pal
- 0x8102BAA0: int_sum_fruitchair02_leaf_tex_txt
- 0x8102BB20: int_sum_fruitchair02_side_tex_txt
- 0x8102BE20: int_sum_fruitchair02_seat_tex_txt
- 0x8102C020: int_sum_fruitchair02_top_tex_txt
- 0x8102C0A0: int_sum_fruitchair02_v
- 0x8102C340: int_sum_fruitchair02_on_model
- 0x8102C480: int_sum_fruitchair03_pal
- 0x8102C4A0: int_sum_fruitchair03_turu_tex_txt
- 0x8102C520: int_sum_fruitchair03_back2_tex_txt
- 0x8102C620: int_sum_fruitchair03_back1_tex_txt
- 0x8102C720: int_sum_fruitchair03_seat_tex_txt
- 0x8102C920: int_sum_fruitchair03_v
- 0x8102CBB0: int_sum_fruitchair03_on_model
- 0x8102CCC0: int_sum_fruitchair04_pal
- 0x8102CCE0: int_sum_fruitchair04_turu_tex_txt
- 0x8102CD60: int_sum_fruitchair04_back2_tex_txt
- 0x8102CE60: int_sum_fruitchair04_back1_tex_txt
- 0x8102CF60: int_sum_fruitchair04_seat_tex_txt
- 0x8102D160: int_sum_fruitchair04_v
- 0x8102D3F0: int_sum_fruitchair04_on_model
- 0x8102D500: int_sum_fruitchest01_pal
- 0x8102D520: int_sum_fruitchest01_hiki_tex_txt
- 0x8102D5A0: int_sum_fruitchest01_into_tex_txt
- 0x8102D6A0: int_sum_fruitchest01_kuki_tex_txt
- 0x8102D720: int_sum_fruitchest01_front_tex_txt
- 0x8102DA20: int_sum_fruitchest01_side_tex_txt
- 0x8102DC20: int_sum_fruitchest01_v
- 0x8102E000: int_sum_fruitchest01_door_model
- 0x8102E0A0: int_sum_fruitchest01_base_model
- 0x8102E178: cKF_ckcb_r_int_sum_fruitchest01_tbl
- 0x8102E17C: cKF_kn_int_sum_fruitchest01_tbl
- 0x8102E190: cKF_c_int_sum_fruitchest01_tbl
- 0x8102E198: cKF_ds_int_sum_fruitchest01_tbl
- 0x8102E204: cKF_ba_r_int_sum_fruitchest01
- 0x8102E218: cKF_je_r_int_sum_fruitchest01_tbl
- 0x8102E23C: cKF_bs_r_int_sum_fruitchest01
- 0x8102E260: int_sum_fruitchest03_pal
- 0x8102E280: int_sum_fruitchest03_door_tex_txt
- 0x8102E400: int_sum_fruitchest03_d_side_tex_txt
- 0x8102E480: int_sum_fruitchest03_side_tex_txt
- 0x8102E680: int_sum_fruitchest03_front_tex_txt
- 0x8102E980: int_sum_fruitchest03_kuki_tex_txt
- 0x8102EA00: int_sum_fruitchest03_into_tex_txt
- 0x8102EA80: int_sum_fruitchest03_v
- 0x8102EE80: int_sum_fruitchest03_doorL_model
- 0x8102EF00: int_sum_fruitchest03_base_model
- 0x8102F018: int_sum_fruitchest03_doorR_model
- 0x8102F098: cKF_ckcb_r_int_sum_fruitchest03_tbl
- 0x8102F0A0: cKF_kn_int_sum_fruitchest03_tbl
- 0x8102F0B8: cKF_c_int_sum_fruitchest03_tbl
- 0x8102F0C4: cKF_ds_int_sum_fruitchest03_tbl
- 0x8102F160: cKF_ba_r_int_sum_fruitchest03
- 0x8102F174: cKF_je_r_int_sum_fruitchest03_tbl
- 0x8102F1B0: cKF_bs_r_int_sum_fruitchest03
- 0x8102F1C0: int_sum_fruitclk_pal
- 0x8102F1E0: int_sum_fruitclk_hari_tex_txt
- 0x8102F2E0: int_sum_fruitclk_body_tex_txt
- 0x8102F4E0: int_sum_fruitclk_front_tex_txt
- 0x8102F7E0: int_sum_fruitclk_antena_tex_txt
- 0x8102F860: int_sum_fruitclk_ha_tex_txt
- 0x8102F8E0: int_sum_fruitclk_v
- 0x8102FB50: int_sum_fruitclk_long_model
- 0x8102FBA8: int_sum_fruitclk_base_model
- 0x8102FC98: int_sum_fruitclk_short_model
- 0x8102FCF0: cKF_ckcb_r_int_sum_fruitclk_tbl
- 0x8102FCF8: cKF_c_int_sum_fruitclk_tbl
- 0x8102FD1C: cKF_ba_r_int_sum_fruitclk
- 0x8102FD30: cKF_je_r_int_sum_fruitclk_tbl
- 0x8102FD6C: cKF_bs_r_int_sum_fruitclk
- 0x8102FD80: int_sum_fruittable01_pal
- 0x8102FDA0: int_sum_fruittable01_side_tex_txt
- 0x810300A0: int_sum_fruittable01_top_tex_txt
- 0x810302A0: int_sum_fruittable01_douwnside_tex_txt
- 0x810303A0: int_sum_fruittable01_douwntop_tex_txt
- 0x81030420: int_sum_fruittable01_v
- 0x810306F0: int_sum_fruittable01_on_model
- 0x81030820: int_sum_fruittable02_pal
- 0x81030840: int_sum_fruittable02_side_tex_txt
- 0x81030B40: int_sum_fruittable02_top_tex_txt
- 0x81030D40: int_sum_fruittable02_douwnside_tex_txt
- 0x81030E40: int_sum_fruittable02_douwntop_tex_txt
- 0x81030EC0: int_sum_fruittable02_v
- 0x81031150: int_sum_fruittable02_on_model
- 0x81031260: int_sum_fruittable03_pal
- 0x81031280: int_sum_fruittable03_top_tex_txt
- 0x81031480: int_sum_fruittable03_side_tex_txt
- 0x81031680: int_sum_fruittable03_v
- 0x810318B0: int_sum_fruittable03_on_model
- 0x81031980: int_sum_fruittv01_pal
- 0x810319A0: int_sum_fruittv01_antena_tex_txt
- 0x81031AA0: int_sum_fruittv01_ha_tex_txt
- 0x81031B20: int_sum_fruittv01_foot_tex_txt
- 0x81031BA0: int_sum_fruittv01_front_tex_txt
- 0x81031EA0: int_sum_fruittv01_body_tex_txt
- 0x810320A0: int_sum_fruittv01_front1_TA_tex_txt
- 0x810321A0: int_sum_fruittv01_front2_TA_tex_txt
- 0x810322A0: int_sum_fruittv01_front3_TA_tex_txt
- 0x810323A0: int_sum_fruittv01_front4_TA_tex_txt
- 0x810324A0: int_sum_fruittv01_v
- 0x810327E0: int_sum_fruittv01_on_model
- 0x810328F0: int_sum_fruittv01_off_model
- 0x81032980: int_sum_funa_glass_rgb_ci4_pal
- 0x810329A0: int_sum_funa_body_txt
- 0x81032BA0: int_sum_funa_top_txt
- 0x81032CA0: int_sum_funa_side_txt
- 0x81032EA0: int_sum_funa_base_txt
- 0x81032F20: int_sum_funa_glass_txt
- 0x81033120: int_sum_funa_v
- 0x81033470: int_sum_funa_sakana_model
- 0x810334F0: int_sum_funa_top_model
- 0x81033548: int_sum_funa_evw_model
- 0x810335B0: int_sum_funa_base_model
- 0x81033640: cKF_ckcb_r_int_sum_funa_tbl
- 0x81033648: cKF_kn_int_sum_funa_tbl
- 0x8103365C: cKF_c_int_sum_funa_tbl
- 0x81033670: cKF_ds_int_sum_funa_tbl
- 0x81033708: cKF_ba_r_int_sum_funa
- 0x8103371C: cKF_je_r_int_sum_funa_tbl
- 0x81033758: cKF_bs_r_int_sum_funa
- 0x81033760: int_sum_genji_pal
- 0x81033780: int_sum_genji_hand_pic_ci4_pal
- 0x810337A0: int_sum_genji_body_txt
- 0x810339A0: int_sum_genji_base_txt
- 0x81033A20: int_sum_genji_top_txt
- 0x81033C20: int_sum_genji_side_txt
- 0x81033E20: int_sum_genji_hand_txt
- 0x81033F20: int_sum_genji_v
- 0x810342E0: int_sum_genji_side_model
- 0x81034348: int_sum_genji_komado_model
- 0x810343A0: int_sum_genji_glass_model
- 0x81034408: int_sum_genji_base_model
- 0x810344A0: int_sum_genji_off_model
- 0x81034500: int_sum_genji_body_model
- 0x81034560: cKF_ckcb_r_int_sum_genji_tbl
- 0x81034568: cKF_kn_int_sum_genji_tbl
- 0x81034574: cKF_c_int_sum_genji_tbl
- 0x81034598: cKF_ds_int_sum_genji_tbl
- 0x81034628: cKF_ba_r_int_sum_genji
- 0x8103463C: cKF_je_r_int_sum_genji_tbl
- 0x81034690: cKF_bs_r_int_sum_genji
- 0x810346C0: int_sum_gill_glass_pic_ci4_pal
- 0x810346E0: int_sum_gill_body_txt
- 0x810348E0: int_sum_gill_side_txt
- 0x81034AE0: int_sum_gill_base_txt
- 0x81034B60: int_sum_gill_top_txt
- 0x81034C60: int_sum_gill_glass_txt
- 0x81034D60: int_sum_gill_v
- 0x81035030: int_sum_gill_sakana_model
- 0x810350A0: int_sum_gill_top_model
- 0x810350F8: int_sum_gill_evw_model
- 0x81035160: int_sum_gill_base_model
- 0x810351F0: cKF_ckcb_r_int_sum_gill_tbl
- 0x810351F8: cKF_kn_int_sum_gill_tbl
- 0x8103520C: cKF_c_int_sum_gill_tbl
- 0x81035220: cKF_ds_int_sum_gill_tbl
- 0x810352B8: cKF_ba_r_int_sum_gill
- 0x810352CC: cKF_je_r_int_sum_gill_tbl
- 0x81035308: cKF_bs_r_int_sum_gill
- 0x81035320: int_sum_ginyanma_pal
- 0x81035340: int_sum_ginyanma_hand_pic_ci4_pal
- 0x81035360: int_sum_ginyanma_body_txt
- 0x810354E0: int_sum_ginyanma_base_txt
- 0x81035560: int_sum_ginyanma_top_txt
- 0x81035760: int_sum_ginyanma_side_txt
- 0x81035960: int_sum_ginyanma_hand_txt
- 0x81035A60: int_sum_ginyanma_v
- 0x81035EB0: int_sum_ginyanma_side_model
- 0x81035F18: int_sum_ginyanma_komado_model
- 0x81035F70: int_sum_ginyanma_glass_model
- 0x81035FD8: int_sum_ginyanma_base_model
- 0x810360A0: int_sum_ginyanma_body_R_model
- 0x810360F8: int_sum_ginyanma_body_L_model
- 0x81036150: cKF_ckcb_r_int_sum_ginyanma_tbl
- 0x81036158: cKF_kn_int_sum_ginyanma_tbl
- 0x8103616C: cKF_c_int_sum_ginyanma_tbl
- 0x81036190: cKF_ds_int_sum_ginyanma_tbl
- 0x81036208: cKF_ba_r_int_sum_ginyanma
- 0x8103621C: cKF_je_r_int_sum_ginyanma_tbl
- 0x8103627C: cKF_bs_r_int_sum_ginyanma
- 0x810362A0: int_sum_globe01_pal
- 0x810362C0: int_sum_globe01_stand_tex_txt
- 0x810363C0: int_sum_globe01_standtop_tex_txt
- 0x81036440: int_sum_globe01_standside_tex_txt
- 0x81036640: int_sum_globe01_map_tex_txt
- 0x81036A40: int_sum_globe01_v
- 0x81036CF0: int_sum_globe01_on_model
- 0x81036E40: int_sum_golfbag01_top_tex_txt
- 0x81036F40: int_sum_golfbag01_carry_tex_txt
- 0x810370C0: int_sum_golfbag01_body_tex_txt
- 0x810374C0: int_sum_golfbag01_clab2_tex_txt
- 0x81037540: int_sum_golfbag01_clab1_tex_txt
- 0x810375C0: int_sum_golfbag01_clab3_tex_txt
- 0x81037640: int_sum_golfbag01_v
- 0x81037BA0: int_sum_golfbag01_on_model
- 0x81037DA0: int_sum_golfbag02_pal
- 0x81037DE0: int_sum_golfbag02_top_tex_txt
- 0x81037EE0: int_sum_golfbag02_carry_tex_txt
- 0x81038060: int_sum_golfbag02_body_tex_txt
- 0x81038460: int_sum_golfbag02_clab2_tex_txt
- 0x810384E0: int_sum_golfbag02_clab1_tex_txt
- 0x81038560: int_sum_golfbag02_clab3_tex_txt
- 0x810385E0: int_sum_golfbag02_v
- 0x81038B40: int_sum_golfbag02_on_model
- 0x81038D60: int_sum_golfbag03_pal
- 0x81038D80: int_sum_golfbag03_top_tex_txt
- 0x81038E80: int_sum_golfbag03_carry_tex_txt
- 0x81039000: int_sum_golfbag03_body_tex_txt
- 0x81039400: int_sum_golfbag03_clab2_tex_txt
- 0x81039480: int_sum_golfbag03_clab1_tex_txt
- 0x81039500: int_sum_golfbag03_clab3_tex_txt
- 0x81039580: int_sum_golfbag03_v
- 0x81039AE0: int_sum_golfbag03_on_model
- 0x81039CE0: int_sum_gomadara_pal
- 0x81039D00: int_sum_gomadara_hand_pic_ci4_pal
- 0x81039D20: int_sum_gomadara_body_txt
- 0x81039F20: int_sum_gomadara_base_txt
- 0x81039FA0: int_sum_gomadara_top_txt
- 0x8103A1A0: int_sum_gomadara_side_txt
- 0x8103A3A0: int_sum_gomadara_hand_txt
- 0x8103A4A0: int_sum_gomadara_v
- 0x8103A8D0: int_sum_gomadara_side_model
- 0x8103A938: int_sum_gomadara_komado_model
- 0x8103A990: int_sum_gomadara_glass_model
- 0x8103A9F8: int_sum_gomadara_base_model
- 0x8103AA90: int_sum_gomadara_body_model
- 0x8103AB18: cKF_ckcb_r_int_sum_gomadara_tbl
- 0x8103AB20: cKF_kn_int_sum_gomadara_tbl
- 0x8103AB28: cKF_c_int_sum_gomadara_tbl
- 0x8103AB4C: cKF_ds_int_sum_gomadara_tbl
- 0x8103ABCC: cKF_ba_r_int_sum_gomadara
- 0x8103ABE0: cKF_je_r_int_sum_gomadara_tbl
- 0x8103AC28: cKF_bs_r_int_sum_gomadara
- 0x8103AC40: int_sum_gre_bed01_pal
- 0x8103AC60: int_sum_gre_bed01_headback_tex
- 0x8103AE60: int_sum_gre_bed01_headfront_tex
- 0x8103AF60: int_sum_gre_bed01_top_tex
- 0x8103B260: int_sum_gre_bed01_pillow_tex
- 0x8103B2E0: int_sum_gre_bed01_side2_tex
- 0x8103B3E0: int_sum_gre_bed01_book_tex
- 0x8103B460: int_sum_gre_bed01_v
- 0x8103B7E0: int_sum_gre_bed01_on_model
- 0x8103B860: int_sum_gre_bed01_onT_model
- 0x8103B960: int_sum_gre_chair01_pal
- 0x8103B980: int_sum_gre_chair01_foot_tex
- 0x8103BA80: int_sum_gre_chair01_seatside_tex
- 0x8103BC80: int_sum_gre_chair01_footdouwn_tex
- 0x8103BD80: int_sum_gre_chair01_stand_tex
- 0x8103BE80: int_sum_gre_chair01_seat_tex
- 0x8103C080: int_sum_gre_chair01_v
- 0x8103C480: int_sum_gre_chair01_on_model
- 0x8103C550: int_sum_gre_chair01_onT_model
- 0x8103C600: int_sum_gre_chair02_pal
- 0x8103C620: int_sum_gre_chair02_seat_tex
- 0x8103C720: int_sum_gre_chair02_seathead_tex
- 0x8103CB20: int_sum_gre_chair02_seatside_tex
- 0x8103CC20: int_sum_gre_chair02_cushion_tex
- 0x8103CCA0: int_sum_gre_chair02_foot_tex
- 0x8103CDA0: int_sum_gre_chair02_v
- 0x8103D170: int_sum_gre_chair02_on_model
- 0x8103D210: int_sum_gre_chair02_onT_model
- 0x8103D2C0: int_sum_gre_chest01_pal
- 0x8103D2E0: int_sum_gre_chest01_front_tex
- 0x8103D4E0: int_sum_gre_chest01_side_tex
- 0x8103D7E0: int_sum_gre_chest01_bin_tex
- 0x8103D8E0: int_sum_gre_chest01_kago_tex
- 0x8103D960: int_sum_gre_chest01_v
- 0x8103DD80: int_sum_gre_chest01_on_model
- 0x8103DE38: int_sum_gre_chest01_onT_model
- 0x8103DEE0: int_sum_gre_chest02_pal
- 0x8103DF00: int_sum_gre_chest02_hiki_tex_txt
- 0x8103E080: int_sum_gre_chest02_back_tex_txt
- 0x8103E480: int_sum_gre_chest02_top_tex_txt
- 0x8103E500: int_sum_gre_chest02_front_tex_txt
- 0x8103E700: int_sum_gre_chest02_v
- 0x8103EA60: int_sum_gre_chest02_doorL_model
- 0x8103EAF8: int_sum_gre_chest02_base_model
- 0x8103EBA8: int_sum_gre_chest02_doorR_model
- 0x8103EC40: cKF_ckcb_r_int_sum_gre_chest02_tbl
- 0x8103EC48: cKF_kn_int_sum_gre_chest02_tbl
- 0x8103EC60: cKF_c_int_sum_gre_chest02_tbl
- 0x8103EC6C: cKF_ds_int_sum_gre_chest02_tbl
- 0x8103ED08: cKF_ba_r_int_sum_gre_chest02
- 0x8103ED1C: cKF_je_r_int_sum_gre_chest02_tbl
- 0x8103ED58: cKF_bs_r_int_sum_gre_chest02
- 0x8103ED60: int_sum_gre_chest03_pal
- 0x8103ED80: int_sum_gre_chest03_hiki_tex_txt
- 0x8103EE80: int_sum_gre_chest03_in_tex_txt
- 0x8103EF00: int_sum_gre_chest03_front_tex_txt
- 0x8103F300: int_sum_gre_chest03_top_tex_txt
- 0x8103F400: int_sum_gre_chest03_side_tex_txt
- 0x8103F500: int_sum_gre_chest03_v
- 0x8103F780: int_sum_gre_chest03_door_model
- 0x8103F828: int_sum_gre_chest03_base_model
- 0x8103F8D0: cKF_ckcb_r_int_sum_gre_chest03_tbl
- 0x8103F8D4: cKF_kn_int_sum_gre_chest03_tbl
- 0x8103F8E8: cKF_c_int_sum_gre_chest03_tbl
- 0x8103F8F0: cKF_ds_int_sum_gre_chest03_tbl
- 0x8103F95C: cKF_ba_r_int_sum_gre_chest03
- 0x8103F970: cKF_je_r_int_sum_gre_chest03_tbl
- 0x8103F994: cKF_bs_r_int_sum_gre_chest03
- 0x8103F9A0: int_sum_gre_counter01_pal
- 0x8103F9C0: int_sum_gre_counter01_front_tex
- 0x8103FDC0: int_sum_gre_counter01_side_tex
- 0x8103FEC0: int_sum_gre_counter01_top_tex
- 0x8103FFC0: int_sum_gre_counter01_can_tex
- 0x81040040: int_sum_gre_counter01_wine_tex
- 0x81040140: int_sum_gre_counter01_shadow_tex
- 0x810401C0: int_sum_gre_counter01_v
- 0x81040640: int_sum_counter01_on_model
- 0x810406C8: int_sum_counter01_onT_model
- 0x810407C0: int_sum_gre_desk01_pal
- 0x810407E0: int_sum_gre_desk01_back_tex
- 0x810408E0: int_sum_gre_desk01_side_tex
- 0x81040AE0: int_sum_gre_desk01_top_tex
- 0x81040BE0: int_sum_gre_desk01_foot_tex
- 0x81040CE0: int_sum_gre_desk01_v
- 0x81041040: int_sum_gre_desk01_on_model
- 0x810410D0: int_sum_gre_desk01_onT_model
- 0x81041160: int_sum_gre_lanp01_pal
- 0x81041180: int_sum_gre_lanp01_kasa_tex
- 0x81041280: int_sum_gre_lanp01_stand_tex
- 0x81041380: int_sum_gre_lanp01_topshade_tex
- 0x81041400: int_sum_gre_lanp01_front_tex
- 0x81041600: int_sum_gre_lanp01_side_tex
- 0x81041700: int_sum_gre_lanp01_top_tex
- 0x81041780: int_sum_gre_lanp01_swich_tex
- 0x81041800: int_sum_gre_lanp01_back_tex
- 0x81041900: int_sum_gre_lanp01_v
- 0x81041C20: int_sum_gre_lanp01_on_model
- 0x81041C78: int_sum_gre_lanp01_onT_model
- 0x81041D08: int_sum_gre_lanp01_offT_model
- 0x81041DE0: int_sum_gre_table01_pal
- 0x81041E00: int_sum_gre_table01_foot_tex
- 0x81041F00: int_sum_gre_table01_top_tex
- 0x81042100: int_sum_gre_table01_footdouwn_tex
- 0x81042200: int_sum_gre_table01_stand_tex
- 0x81042300: int_sum_gre_table01_v
- 0x810426C0: int_sum_gre_table01_on_model
- 0x810427A0: int_sum_gre_table01_onT_model
- 0x81042800: int_sum_guitar01_pal
- 0x81042820: int_sum_guitar01_front
- 0x81042C20: int_sum_guitar01_back
- 0x81042D20: int_sum_guitar01_side
- 0x81042DA0: int_sum_guitar01_neck
- 0x81042E20: int_sum_guitar01_headstock
- 0x81042EA0: int_sum_guitar01_hand
- 0x81042F20: int_sum_guitar01_chest
- 0x81043020: int_sum_guitar01_v
- 0x810433E0: int_sum_guitar01_on_model
- 0x810434A0: int_sum_guitar01_onT_model
- 0x81043580: int_sum_guitar02_pal
- 0x810435A0: int_sum_guitar02_front
- 0x81043A20: int_sum_guitar02_back
- 0x81043B20: int_sum_guitar02_neck
- 0x81043BA0: int_sum_guitar02_headstock
- 0x81043C20: int_sum_guitar02_hand
- 0x81043CA0: int_sum_guitar02_chest
- 0x81043DA0: int_sum_guitar02_v
- 0x810441A0: int_sum_guitar02_on_model
- 0x81044238: int_sum_guitar02_onT_model
- 0x81044300: int_sum_guitar03_pal
- 0x81044320: int_sum_guitar03_back_tex
- 0x81044520: int_sum_guitar03_side_tex
- 0x810445A0: int_sum_guitar03_head_tex
- 0x810446A0: int_sum_guitar03_backhead_tex
- 0x81044720: int_sum_guitar03_front_tex
- 0x81044920: int_sum_guitar03_hand_tex
- 0x810449A0: int_sum_guitar03_chest_tex
- 0x81044AA0: int_sum_guitar03_neck_tex
- 0x81044B20: int_sum_guitar03_v
- 0x81044F50: int_sum_guitar_03_on_model
- 0x81044FF8: int_sum_guitar_03_onT_model
- 0x81045100: int_sum_gupi_glass_pic_ci4_pal
- 0x81045120: int_sum_gupi_body_txt
- 0x81045320: int_sum_gupi_top_txt
- 0x81045420: int_sum_gupi_side_txt
- 0x81045620: int_sum_gupi_base_txt
- 0x810456A0: int_sum_gupi_etc_txt
- 0x81045720: int_sum_gupi_glass_txt
- 0x81045820: int_sum_gupi_v
- 0x81045B90: int_sum_gupi_sakana_model
- 0x81045C00: int_sum_gupi_top_model
- 0x81045C58: int_sum_gupi_evw_model
- 0x81045CC0: int_sum_gupi_base_model
- 0x81045D78: cKF_ckcb_r_int_sum_gupi_tbl
- 0x81045D80: cKF_kn_int_sum_gupi_tbl
- 0x81045D94: cKF_c_int_sum_gupi_tbl
- 0x81045DA8: cKF_ds_int_sum_gupi_tbl
- 0x81045E40: cKF_ba_r_int_sum_gupi
- 0x81045E54: cKF_je_r_int_sum_gupi_tbl
- 0x81045E90: cKF_bs_r_int_sum_gupi
- 0x81045EA0: int_sum_hachi_pal
- 0x81045EC0: int_sum_hachi_hand_pic_ci4_pal
- 0x81045EE0: int_sum_hachi_base_txt
- 0x81045F60: int_sum_hachi_top_txt
- 0x81046160: int_sum_hachi_body_txt
- 0x81046260: int_sum_hachi_side_txt
- 0x81046460: int_sum_hachi_hane_txt
- 0x81046560: int_sum_hachi_hand_txt
- 0x81046660: int_sum_hachi_v
- 0x81046AA0: int_sum_hachi_side_model
- 0x81046B08: int_sum_hachi_komado_model
- 0x81046B60: int_sum_hachi_glass_model
- 0x81046BC8: int_sum_hachi_base_model
- 0x81046C98: int_sum_hachi_body_R_model
- 0x81046CF0: int_sum_hachi_body_L_model
- 0x81046D48: cKF_ckcb_r_int_sum_hachi_tbl
- 0x81046D50: cKF_kn_int_sum_hachi_tbl
- 0x81046D64: cKF_c_int_sum_hachi_tbl
- 0x81046D88: cKF_ds_int_sum_hachi_tbl
- 0x81046E00: cKF_ba_r_int_sum_hachi
- 0x81046E14: cKF_je_r_int_sum_hachi_tbl
- 0x81046E74: cKF_bs_r_int_sum_hachi
- 0x81046E80: int_sum_hal_bed01_pal
- 0x81046EA0: int_sum_hal_bed01_head_tex
- 0x810470A0: int_sum_hal_bed01_top_tex
- 0x810472A0: int_sum_hal_bed01_side_tex
- 0x81047320: int_sum_hal_bed01_pillow_tex
- 0x810473A0: int_sum_hal_bed01_kuki_tex
- 0x81047420: int_sum_hal_bed01_foot_tex
- 0x810474A0: int_sum_hal_bed01_v
- 0x81047940: int_sum_hal_bed01_on_model
- 0x81047A18: int_sum_hal_bed01_onT_model
- 0x81047AC0: int_sum_hal_box01_pal
- 0x81047AE0: int_sum_hal_box01_pkin_tex_txt
- 0x81047CE0: int_sum_hal_box01_kuki_tex_txt
- 0x81047D60: int_sum_hal_box01_bane_tex_txt
- 0x81047E60: int_sum_hal_box01_in_tex_txt
- 0x81047EE0: int_sum_hal_box01_boxside_tex_txt
- 0x810480E0: int_sum_hal_box01_boxtop_tex_txt
- 0x81048160: int_sum_hal_box01_v
- 0x810485F0: int_sum_hal_box01_bane_on_model
- 0x81048720: int_sum_hal_box01_bane_off_model
- 0x81048778: int_sum_hal_box01_base_model
- 0x81048808: int_sum_hal_box01_top_model
- 0x81048870: cKF_ckcb_r_int_sum_hal_box01_tbl
- 0x81048878: cKF_kn_int_sum_hal_box01_tbl
- 0x8104887C: cKF_c_int_sum_hal_box01_tbl
- 0x810488A4: cKF_ds_int_sum_hal_box01_tbl
- 0x8104890C: cKF_ba_r_int_sum_hal_box01
- 0x81048920: cKF_je_r_int_sum_hal_box01_tbl
- 0x81048968: cKF_bs_r_int_sum_hal_box01
- 0x81048980: int_sum_hal_chair01_pal
- 0x810489A0: int_sum_hal_chair01_seat_tex
- 0x81048BA0: int_sum_hal_chair01_back_tex
- 0x81048DA0: int_sum_hal_chair01_side_tex
- 0x81048EA0: int_sum_hal_chair01_top_tex
- 0x81048F20: int_sum_hal_chair01_kuki_tex
- 0x81048FA0: int_sum_hal_chair01_armside_tex
- 0x810491A0: int_sum_hal_chair01_v
- 0x81049610: int_sum_hal_chair01_on_model
- 0x810496B0: int_sum_hal_chair01_onT_model
- 0x810497A0: int_sum_hal_chest01_pal
- 0x810497C0: int_sum_hal_chest01_back_tex
- 0x810498C0: int_sum_hal_chest01_front_tex
- 0x81049AC0: int_sum_hal_chest01_top_tex
- 0x81049B40: int_sum_hal_chest01_intop_tex
- 0x81049BC0: int_sum_hal_chest01_inback_tex
- 0x81049CC0: int_sum_hal_chest01_kuki_tex
- 0x81049DC0: int_sum_hal_chest01_book_tex
- 0x81049EC0: int_sum_hal_chest01_v
- 0x8104A2F0: int_sum_hal_chest01_on_model
- 0x8104A3B0: int_sum_hal_chest01_onT_model
- 0x8104A4A0: int_sum_hal_chest02_pal
- 0x8104A4C0: int_sum_hal_chest02_hiki_tex_txt
- 0x8104A6C0: int_sum_hal_chest02_hiite_tex_txt
- 0x8104A740: int_sum_hal_chest02_top_tex_txt
- 0x8104A7C0: int_sum_hal_chest02_front_tex_txt
- 0x8104AAC0: int_sum_hal_chest02_back_tex_txt
- 0x8104AC40: int_sum_hal_chest02_kuki_tex_txt
- 0x8104ACC0: int_sum_hal_chest02_v
- 0x8104B1A0: int_sum_hal_chest01_door_model
- 0x8104B238: int_sum_hal_chest02_base_model
- 0x8104B360: cKF_ckcb_r_int_sum_hal_chest02_tbl
- 0x8104B364: cKF_kn_int_sum_hal_chest02_tbl
- 0x8104B370: cKF_c_int_sum_hal_chest02_tbl
- 0x8104B37C: cKF_ds_int_sum_hal_chest02_tbl
- 0x8104B3D8: cKF_ba_r_int_sum_hal_chest02
- 0x8104B3EC: cKF_je_r_int_sum_hal_chest02_tbl
- 0x8104B410: cKF_bs_r_int_sum_hal_chest02
- 0x8104B420: int_sum_hal_chest03_pal
- 0x8104B440: int_sum_hal_chest03_top_tex_txt
- 0x8104B540: int_sum_hal_chest03_hiki_tex_txt
- 0x8104B640: int_sum_hal_chest03_hikite_tex_txt
- 0x8104B6C0: int_sum_hal_chest03_kuki_tex_txt
- 0x8104B740: int_sum_hal_chest03_side_tex_txt
- 0x8104B840: int_sum_hal_chest03_front_tex_txt
- 0x8104BC40: int_sum_hal_chest03_v
- 0x8104C0C0: int_sum_hal_chest03_door1_model
- 0x8104C188: int_sum_hal_chest03_door_model
- 0x8104C278: cKF_ckcb_r_int_sum_hal_chest03_tbl
- 0x8104C27C: cKF_kn_int_sum_hal_chest03_tbl
- 0x8104C290: cKF_c_int_sum_hal_chest03_tbl
- 0x8104C298: cKF_ds_int_sum_hal_chest03_tbl
- 0x8104C304: cKF_ba_r_int_sum_hal_chest03
- 0x8104C318: cKF_je_r_int_sum_hal_chest03_tbl
- 0x8104C33C: cKF_bs_r_int_sum_hal_chest03
- 0x8104C360: int_sum_hal_clk01_pal
- 0x8104C380: int_sum_hal_clk01_hari_tex_txt
- 0x8104C480: int_sum_hal_clk01_back_tex_txt
- 0x8104C600: int_sum_hal_clk01_base_tex_txt
- 0x8104C680: int_sum_hal_clk01_front_tex_txt
- 0x8104C980: int_sum_hal_clk01_top_tex_txt
- 0x8104CA00: int_sum_hal_clk01_kuki_tex_txt
- 0x8104CA80: int_sum_hal_clk01_hiki_tex_txt
- 0x8104CB00: int_sum_hal_clk01_hari02_tex_txt
- 0x8104CB80: int_sum_hal_clk01_v
- 0x8104D030: int_sum_hal_clk01_long_model
- 0x8104D088: int_sum_hal_clk01_base_model
- 0x8104D1D8: int_sum_hal_clk01_short_model
- 0x8104D230: cKF_ckcb_r_int_sum_hal_clk01_tbl
- 0x8104D238: cKF_c_int_sum_hal_clk01_tbl
- 0x8104D25C: cKF_ba_r_int_sum_hal_clk01
- 0x8104D270: cKF_je_r_int_sum_hal_clk01_tbl
- 0x8104D2AC: cKF_bs_r_int_sum_hal_clk01
- 0x8104D2C0: int_sum_hal_lanp01_pal
- 0x8104D2E0: int_sum_hal_lanp01_kasa_tex
- 0x8104D3E0: int_sum_hal_lanp01_kuki_tex
- 0x8104D460: int_sum_hal_lanp01_light_tex
- 0x8104D4E0: int_sum_hal_lanp01_stand_tex
- 0x8104D5E0: int_sum_hal_lanp01_top_tex
- 0x8104D6E0: int_sum_hal_lanp01_hiku_tex
- 0x8104D760: int_sum_hal_lanp01_face_tex
- 0x8104D860: int_sum_hal_lanp01_v
- 0x8104DB20: int_sum_hal_lanp01_off_model
- 0x8104DB78: int_sum_hal_lanp01_onT_model
- 0x8104DC58: int_sum_hal_lanp01_offT_model
- 0x8104DD20: int_sum_hal_mirror01_pal
- 0x8104DD40: int_sum_hal_mirror01_glass_tex_rgb_ci4_pal
- 0x8104DD60: int_sum_hal_mirror01_front_tex
- 0x8104DE60: int_sum_hal_mirror01_mirror_tex
- 0x8104E160: int_sum_hal_mirror01_top_tex
- 0x8104E1E0: int_sum_hal_mirror01_hikite_tex
- 0x8104E260: int_sum_hal_mirror01_kuki_tex
- 0x8104E2E0: int_sum_hal_mirror01_side_tex
- 0x8104E360: int_sum_hal_mirror01_glass_tex
- 0x8104E560: int_sum_hal_mirror01_v
- 0x8104E9A0: int_sum_hal_mirror01_on_model
- 0x8104EA98: int_sum_hal_mirror01_evw_model
- 0x8104EAF0: int_sum_hal_mirror01_onT_model
- 0x8104EB60: int_sum_hal_pkin_pal
- 0x8104EB80: int_sum_hal_pkin_front_tex
- 0x8104EE80: int_sum_hal_pkin_back_tex
- 0x8104F180: int_sum_hal_pkin_kuki_tex
- 0x8104F200: int_sum_hal_pkin_kukitop_tex
- 0x8104F280: int_sum_hal_pkin_v
- 0x8104F550: int_sum_hal_pkin_on_model
- 0x8104F5C8: int_sum_hal_pkin_onT_model
- 0x8104F680: int_sum_hal_sofa01_pal
- 0x8104F6A0: int_sum_hal_sofa01_seat_tex
- 0x8104F9A0: int_sum_hal_sofa01_arm_tex
- 0x8104FAA0: int_sum_hal_sofa01_side_tex
- 0x8104FBA0: int_sum_hal_sofa01_head_tex
- 0x8104FDA0: int_sum_hal_sofa01_top_tex
- 0x8104FE20: int_sum_hal_sofa01_kuki_tex
- 0x8104FEA0: int_sum_hal_sofa01_v
- 0x810502B0: int_sum_hal_sofa01_on_model
- 0x81050370: int_sum_hal_sofa01_onT_model
- 0x81050420: int_sum_hal_table01_pal
- 0x81050440: int_sum_hal_table01_top_tex
- 0x81050640: int_sum_hal_table01_side_tex
- 0x81050740: int_sum_hal_table01_base_tex
- 0x810507C0: int_sum_hal_table01_stand_tex
- 0x81050BC0: int_sum_hal_table01_standside_tex
- 0x81050C40: int_sum_hal_table01_v
- 0x81051080: int_sum_hal_table01_on_model
- 0x81051160: int_sum_hal_table01_onT_model
- 0x810511E0: int_sum_harp_pal
- 0x81051200: int_sum_harp_stand_tex
- 0x81051300: int_sum_harp_standdown_tex
- 0x81051400: int_sum_harp_borad_tex
- 0x81051500: int_sum_harp_boraddown_tex
- 0x81051600: int_sum_harp_gen_tex
- 0x81051700: int_sum_harp_kata_tex
- 0x81051780: int_sum_harp_pedal_tex
- 0x81051880: int_sum_harp_base_tex
- 0x81051900: int_sum_harp_baseside_tex
- 0x81051980: int_sum_harp_v
- 0x81051D70: int_sum_harp_on_model
- 0x81051E20: int_sum_harp_onT_model
- 0x81051F40: int_sum_hera_glass_pic_ci4_pal
- 0x81051F60: int_sum_hera_body_txt
- 0x81052260: int_sum_hera_top_txt
- 0x81052360: int_sum_hera_side_txt
- 0x81052560: int_sum_hera_base_txt
- 0x810525E0: int_sum_hera_glass_txt
- 0x810527E0: int_sum_hera_v
- 0x81052AB0: int_sum_hera_sakana_model
- 0x81052B20: int_sum_hera_top_model
- 0x81052B80: int_sum_hera_evw_model
- 0x81052BE8: int_sum_hera_base_model
- 0x81052C78: cKF_ckcb_r_int_sum_hera_tbl
- 0x81052C80: cKF_kn_int_sum_hera_tbl
- 0x81052C94: cKF_c_int_sum_hera_tbl
- 0x81052CA8: cKF_ds_int_sum_hera_tbl
- 0x81052D2C: cKF_ba_r_int_sum_hera
- 0x81052D40: cKF_je_r_int_sum_hera_tbl
- 0x81052D7C: cKF_bs_r_int_sum_hera
- 0x81052DA0: int_sum_higurashi_pal
- 0x81052DC0: int_sum_higurashi_hand_pic_ci4_pal
- 0x81052DE0: int_sum_higurashi_base_txt
- 0x81052E60: int_sum_higurashi_top_txt
- 0x81053060: int_sum_higurashi_body_txt
- 0x81053260: int_sum_higurashi_side_txt
- 0x81053460: int_sum_higurashi_hand_pic_ci4
- 0x81053560: int_sum_higurashi_v
- 0x810539D0: int_sum_higurashi_side_model
- 0x81053A38: int_sum_higurashi_komado_model
- 0x81053A90: int_sum_higurashi_glass_model
- 0x81053AF8: int_sum_higurashi_base_model
- 0x81053BC8: int_sum_higurashi_body_R_model
- 0x81053C20: int_sum_higurashi_body_L_model
- 0x81053C78: cKF_ckcb_r_int_sum_higurashi_tbl
- 0x81053C80: cKF_kn_int_sum_higurashi_tbl
- 0x81053C94: cKF_c_int_sum_higurashi_tbl
- 0x81053CB8: cKF_ds_int_sum_higurashi_tbl
- 0x81053E68: cKF_ba_r_int_sum_higurashi
- 0x81053E7C: cKF_je_r_int_sum_higurashi_tbl
- 0x81053EDC: cKF_bs_r_int_sum_higurashi
- 0x81053F00: int_sum_hirata_pal
- 0x81053F20: int_sum_hirata_hand_pic_ci4_pal
- 0x81053F40: int_sum_hirata_base_txt
- 0x81053FC0: int_sum_hirata_top_txt
- 0x810541C0: int_sum_hirata_side_txt
- 0x810543C0: int_sum_hirata_body_txt
- 0x810544C0: int_sum_hirata_hand_txt
- 0x810545C0: int_sum_hirata_v
- 0x81054960: int_sum_hirata_side_model
- 0x810549C8: int_sum_hirata_komado_model
- 0x81054A20: int_sum_hirata_glass_model
- 0x81054A88: int_sum_hirata_base_model
- 0x81054B28: int_sum_hirata_body_model
- 0x81054B90: cKF_ckcb_r_int_sum_hirata_tbl
- 0x81054B98: cKF_kn_int_sum_hirata_tbl
- 0x81054BA4: cKF_c_int_sum_hirata_tbl
- 0x81054BC4: cKF_ds_int_sum_hirata_tbl
- 0x81054C54: cKF_ba_r_int_sum_hirata
- 0x81054C68: cKF_je_r_int_sum_hirata_tbl
- 0x81054CB0: cKF_bs_r_int_sum_hirata
- 0x81054CE0: int_sum_ito_glass_pic_ci4_pal
- 0x81054D00: int_sum_ito_body_txt
- 0x81055100: int_sum_ito_side_txt
- 0x81055300: int_sum_ito_base_txt
- 0x81055380: int_sum_ito_top_txt
- 0x81055480: int_sum_ito_glass_txt
- 0x81055500: int_sum_ito_v
- 0x810557D0: int_sum_ito_sakana_model
- 0x81055840: int_sum_ito_top_model
- 0x81055898: int_sum_ito_evw_model
- 0x81055900: int_sum_ito_base_model
- 0x81055990: cKF_ckcb_r_int_sum_ito_tbl
- 0x81055998: cKF_kn_int_sum_ito_tbl
- 0x810559AC: cKF_c_int_sum_ito_tbl
- 0x810559C0: cKF_ds_int_sum_ito_tbl
- 0x81055A50: cKF_ba_r_int_sum_ito
- 0x81055A64: cKF_je_r_int_sum_ito_tbl
- 0x81055AA0: cKF_bs_r_int_sum_ito
- 0x81055AE0: int_sum_iwana_glass_pic_ci4_pal
- 0x81055B00: int_sum_iwana_body_txt
- 0x81055E00: int_sum_iwana_side_txt
- 0x81056000: int_sum_iwana_base_txt
- 0x81056080: int_sum_iwana_top_txt
- 0x81056180: int_sum_iwana_glass_txt
- 0x81056280: int_sum_iwana_v
- 0x81056550: int_sum_iwana_sakana_model
- 0x810565C0: int_sum_iwana_top_model
- 0x81056618: int_sum_iwana_evw_model
- 0x81056680: int_sum_iwana_base_model
- 0x81056710: cKF_ckcb_r_int_sum_iwana_tbl
- 0x81056718: cKF_kn_int_sum_iwana_tbl
- 0x8105672C: cKF_c_int_sum_iwana_tbl
- 0x81056740: cKF_ds_int_sum_iwana_tbl
- 0x810567C4: cKF_ba_r_int_sum_iwana
- 0x810567D8: cKF_je_r_int_sum_iwana_tbl
- 0x81056814: cKF_bs_r_int_sum_iwana
- 0x81056820: int_sum_jukebox_pal
- 0x81056840: int_sum_jukebox_glass_tex_rgb_ci4_pal
- 0x81056860: int_sum_jukebox_front_tex
- 0x81056B60: int_sum_jukebox_back_tex
- 0x81056CE0: int_sum_jukebox_in_tex
- 0x81056DE0: int_sum_jukebox_reco_tex
- 0x81056EE0: int_sum_jukebox_glass_tex
- 0x81056F60: int_sum_jukebox_v
- 0x81057200: int_sum_jukebox_on_model
- 0x81057260: int_sum_jukebox_evw_model
- 0x810572B8: int_sum_jukebox_onT_model
- 0x810573A0: int_sum_kabuto_pal
- 0x810573C0: int_sum_kabuto_hand_pic_ci4_pal
- 0x810573E0: int_sum_kabuto_body_txt
- 0x810574E0: int_sum_kabuto_base_txt
- 0x81057560: int_sum_kabuto_top_txt
- 0x81057760: int_sum_kabuto_side_txt
- 0x81057960: int_sum_kabuto_hand_txt
- 0x81057A60: int_sum_kabuto_v
- 0x81057DD0: int_sum_kabuto_side_model
- 0x81057E38: int_sum_kabuto_glass_model
- 0x81057EA0: int_sum_kabuto_base_model
- 0x81057F38: int_sum_kabuto_body_model
- 0x81057FA0: cKF_ckcb_r_int_sum_kabuto_tbl
- 0x81057FA8: cKF_kn_int_sum_kabuto_tbl
- 0x81057FB4: cKF_c_int_sum_kabuto_tbl
- 0x81057FCC: cKF_ds_int_sum_kabuto_tbl
- 0x81058050: cKF_ba_r_int_sum_kabuto
- 0x81058064: cKF_je_r_int_sum_kabuto_tbl
- 0x810580A0: cKF_bs_r_int_sum_kabuto
- 0x810580C0: int_sum_kamakiri_pal
- 0x810580E0: int_sum_kamakiri_hand_pic_ci4_pal
- 0x81058100: int_sum_kamakiri_base_txt
- 0x81058180: int_sum_kamakiri_top_txt
- 0x81058380: int_sum_kamakiri_side_txt
- 0x81058580: int_sum_kamakiri_body_txt
- 0x81058700: int_sum_kamakiri_hand_txt
- 0x81058800: int_sum_kamakiri_v
- 0x81058BA0: int_sum_kamakiri_side_model
- 0x81058C08: int_sum_kamakiri_komado_model
- 0x81058C60: int_sum_kamakiri_glass_model
- 0x81058CC8: int_sum_kamakiri_base_model
- 0x81058D68: int_sum_kamakiri_body_model
- 0x81058DC8: cKF_ckcb_r_int_sum_kamakiri_tbl
- 0x81058DD0: cKF_kn_int_sum_kamakiri_tbl
- 0x81058DDC: cKF_c_int_sum_kamakiri_tbl
- 0x81058DFC: cKF_ds_int_sum_kamakiri_tbl
- 0x81058E7C: cKF_ba_r_int_sum_kamakiri
- 0x81058E90: cKF_je_r_int_sum_kamakiri_tbl
- 0x81058ED8: cKF_bs_r_int_sum_kamakiri
- 0x81058EE0: int_sum_kanabun_pal
- 0x81058F00: int_sum_kanabun_hand_pic_ci4_pal
- 0x81058F20: int_sum_kanabun_base_txt
- 0x81058FA0: int_sum_kanabun_top_txt
- 0x810591A0: int_sum_kanabun_side_txt
- 0x810593A0: int_sum_kanabun_body_txt
- 0x810594A0: int_sum_kanabun_hand_txt
- 0x810595A0: int_sum_kanabun_v
- 0x81059930: int_sum_kanabun_side_model
- 0x81059998: int_sum_kanabun_komado_model
- 0x810599F0: int_sum_kanabun_glass_model
- 0x81059A58: int_sum_kanabun_base_model
- 0x81059AF0: int_sum_kanabun_body_model
- 0x81059B58: cKF_ckcb_r_int_sum_kanabun_tbl
- 0x81059B60: cKF_kn_int_sum_kanabun_tbl
- 0x81059B6C: cKF_c_int_sum_kanabun_tbl
- 0x81059B8C: cKF_ds_int_sum_kanabun_tbl
- 0x81059C1C: cKF_ba_r_int_sum_kanabun
- 0x81059C30: cKF_je_r_int_sum_kanabun_tbl
- 0x81059C78: cKF_bs_r_int_sum_kanabun
- 0x81059CA0: int_sum_kaseki_glass_pic_ci4_pal
- 0x81059CC0: int_sum_kaseki_body_txt
- 0x8105A0C0: int_sum_kaseki_side_txt
- 0x8105A2C0: int_sum_kaseki_base_txt
- 0x8105A340: int_sum_kaseki_top_txt
- 0x8105A440: int_sum_kaseki_glass_txt
- 0x8105A4C0: int_sum_kaseki_v
- 0x8105A790: int_sum_kaseki_sakana_model
- 0x8105A800: int_sum_kaseki_top_model
- 0x8105A858: int_sum_kaseki_evw_model
- 0x8105A8C0: int_sum_kaseki_base_model
- 0x8105A950: cKF_ckcb_r_int_sum_kaseki_tbl
- 0x8105A958: cKF_kn_int_sum_kaseki_tbl
- 0x8105A96C: cKF_c_int_sum_kaseki_tbl
- 0x8105A980: cKF_ds_int_sum_kaseki_tbl
- 0x8105AA0C: cKF_ba_r_int_sum_kaseki
- 0x8105AA20: cKF_je_r_int_sum_kaseki_tbl
- 0x8105AA5C: cKF_bs_r_int_sum_kaseki
- 0x8105AA80: int_sum_kiageha_pal
- 0x8105AAA0: int_sum_kiageha_hand_pic_ci4_pal
- 0x8105AAC0: int_sum_kiageha_body_txt
- 0x8105ACC0: int_sum_kiageha_base_txt
- 0x8105AD40: int_sum_kiageha_top_txt
- 0x8105AF40: int_sum_kiageha_side_txt
- 0x8105B140: int_sum_kiageha_hand_txt
- 0x8105B240: int_sum_kiageha_v
- 0x8105B670: int_sum_kiageha_body_L_model
- 0x8105B6C8: int_sum_kiageha_side_model
- 0x8105B730: int_sum_kiageha_komado_model
- 0x8105B788: int_sum_kiageha_glass_model
- 0x8105B7F0: int_sum_kiageha_base_model
- 0x8105B890: int_sum_kiageha_body_R_model
- 0x8105B8E8: cKF_ckcb_r_int_sum_kiageha_tbl
- 0x8105B8F0: cKF_kn_int_sum_kiageha_tbl
- 0x8105B908: cKF_c_int_sum_kiageha_tbl
- 0x8105B928: cKF_ds_int_sum_kiageha_tbl
- 0x8105B9C4: cKF_ba_r_int_sum_kiageha
- 0x8105B9D8: cKF_je_r_int_sum_kiageha_tbl
- 0x8105BA38: cKF_bs_r_int_sum_kiageha
- 0x8105BA60: int_sum_kingyo_top_pic_ci4_pal
- 0x8105BA80: int_sum_kingyo_front_pic_ci4_pal
- 0x8105BAA0: int_sum_kingyo_body_txt
- 0x8105BCA0: int_sum_kingyo_kuchi_txt
- 0x8105BD20: int_sum_kingyo_etc_txt
- 0x8105BDA0: int_sum_kingyo_top_txt
- 0x8105BE20: int_sum_kingyo_front_txt
- 0x8105C020: int_sum_kingyo_v
- 0x8105C340: int_sum_kingyo_sakana_model
- 0x8105C3B0: int_sum_kingyo_glass_model
- 0x8105C418: int_sum_kingyo_body_model
- 0x8105C480: int_sum_kingyo_base_model
- 0x8105C4F8: cKF_ckcb_r_int_sum_kingyo_tbl
- 0x8105C500: cKF_kn_int_sum_kingyo_tbl
- 0x8105C514: cKF_c_int_sum_kingyo_tbl
- 0x8105C528: cKF_ds_int_sum_kingyo_tbl
- 0x8105C5DC: cKF_ba_r_int_sum_kingyo
- 0x8105C5F0: cKF_je_r_int_sum_kingyo_tbl
- 0x8105C62C: cKF_bs_r_int_sum_kingyo
- 0x8105C640: int_sum_kirigirisu_pal
- 0x8105C660: int_sum_kirigirisu_hand_pic_ci4_pal
- 0x8105C680: int_sum_kirigirisu_body_txt
- 0x8105C800: int_sum_kirigirisu_base_txt
- 0x8105C880: int_sum_kirigirisu_top_txt
- 0x8105CA80: int_sum_kirigirisu_side_txt
- 0x8105CC80: int_sum_kirigirisu_hand_txt
- 0x8105CD80: int_sum_kirigirisu_v
- 0x8105D160: int_sum_kirigirisu_side_model
- 0x8105D1C8: int_sum_kirigirisu_komado_model
- 0x8105D220: int_sum_kirigirisu_glass_model
- 0x8105D288: int_sum_kirigirisu_base_model
- 0x8105D328: int_sum_kirigirisu_body_model
- 0x8105D388: int_sum_kirigirisu_body_R_model
- 0x8105D3E0: int_sum_kirigirisu_body_L_model
- 0x8105D438: cKF_ckcb_r_int_sum_kirigirisu_tbl
- 0x8105D444: cKF_kn_int_sum_kirigirisu_tbl
- 0x8105D45C: cKF_c_int_sum_kirigirisu_tbl
- 0x8105D488: cKF_ds_int_sum_kirigirisu_tbl
- 0x8105D560: cKF_ba_r_int_sum_kirigirisu
- 0x8105D574: cKF_je_r_int_sum_kirigirisu_tbl
- 0x8105D5EC: cKF_bs_r_int_sum_kirigirisu
- 0x8105D600: int_sum_kisha_pal
- 0x8105D620: int_sum_kisha_kishafront_tex_txt
- 0x8105D720: int_sum_kisha_kishaside_tex_txt
- 0x8105D820: int_sum_kisha_kishatop_tex_txt
- 0x8105D920: int_sum_kisha_nidai_tex_txt
- 0x8105DA20: int_sum_kisha_top_tex_txt
- 0x8105DC20: int_sum_kisha_yama_tex_txt
- 0x8105DE20: int_sum_kisha_v
- 0x8105E510: int_sum_kisha_kisha_model
- 0x8105E620: int_sum_kisha_base_model
- 0x8105E728: cKF_ckcb_r_int_sum_kisha_tbl
- 0x8105E72C: cKF_kn_int_sum_kisha_tbl
- 0x8105E730: cKF_c_int_sum_kisha_tbl
- 0x8105E748: cKF_ds_int_sum_kisha_tbl
- 0x8105E754: cKF_ba_r_int_sum_kisha
- 0x8105E768: cKF_je_r_int_sum_kisha_tbl
- 0x8105E78C: cKF_bs_r_int_sum_kisha
- 0x8105E7A0: int_sum_kitchair01_pal
- 0x8105E7C0: int_sum_kitchair01_board_tex
- 0x8105E940: int_sum_kitchair01_seat_tex
- 0x8105E9C0: int_sum_kitchair01_seatside_tex
- 0x8105EA00: int_sum_kitchair01_side_tex
- 0x8105EA40: int_sum_kitchair01_backf_tex
- 0x8105EC40: int_sum_kitchair01_frontf_tex
- 0x8105ED40: int_sum_kitchair01_support_tex
- 0x8105EDC0: int_sum_kitchair01_v
- 0x8105F240: it_sum_kitchair01_on_model
- 0x8105F2E8: it_sum_kitchair01_onT_model
- 0x8105F3C0: int_sum_kittable01_pal
- 0x8105F3E0: int_sum_kittable01_side_tex
- 0x8105F460: int_sum_kittable01_top_tex
- 0x8105F660: int_sum_kittable01_draw_tex
- 0x8105F6E0: int_sum_kittable01_foot_tex
- 0x8105F860: int_sum_kittable01_v
- 0x8105FB80: int_sum_kittable01_on_model
- 0x8105FC20: int_sum_kittable01_onT_model
- 0x8105FCC0: int_sum_koi_glass_pic_ci4_pal
- 0x8105FCE0: int_sum_koi_body_txt
- 0x8105FFE0: int_sum_koi_side_txt
- 0x810601E0: int_sum_koi_base_txt
- 0x81060260: int_sum_koi_top_txt
- 0x81060360: int_sum_koi_glass_txt
- 0x81060460: int_sum_koi_v
- 0x81060790: int_sum_koi_sakana_model
- 0x81060800: int_sum_koi_top_model
- 0x81060858: int_sum_koi_evw_model
- 0x810608C0: int_sum_koi_base_model
- 0x81060950: cKF_ckcb_r_int_sum_koi_tbl
- 0x81060958: cKF_kn_int_sum_koi_tbl
- 0x8106096C: cKF_c_int_sum_koi_tbl
- 0x81060980: cKF_ds_int_sum_koi_tbl
- 0x81060A04: cKF_ba_r_int_sum_koi
- 0x81060A18: cKF_je_r_int_sum_koi_tbl
- 0x81060A54: cKF_bs_r_int_sum_koi
- 0x81060A60: int_sum_kokuban_pal
- 0x81060A80: int_sum_kokuban_back_tex
- 0x81060B80: int_sum_kokuban_front_tex
- 0x81060E80: int_sum_kokuban_stand_tex
- 0x81061000: int_sum_kokuban_sab_tex
- 0x81061080: int_sum_kokuban_koro_tex
- 0x81061100: int_sum_kokuban_choku_tex
- 0x81061180: int_sum_kokuban_kesi_tex
- 0x81061200: int_sum_kokuban_v
- 0x810616C0: int_sum_kokuban_on_model
- 0x81061780: int_sum_kokuban_onT_model
- 0x81061840: int_sum_koorogi_pal
- 0x81061860: int_sum_koorogi_hand_pic_ci4_pal
- 0x81061880: int_sum_koorogi_body_txt
- 0x81061A80: int_sum_koorogi_base_txt
- 0x81061B00: int_sum_koorogi_top_txt
- 0x81061D00: int_sum_koorogi_side_txt
- 0x81061F00: int_sum_koorogi_hand_txt
- 0x81062000: int_sum_koorogi_v
- 0x81062400: int_sum_koorogi_side_model
- 0x81062468: int_sum_koorogi_komado_model
- 0x810624C0: int_sum_koorogi_glass_model
- 0x81062528: int_sum_koorogi_base_model
- 0x810625C8: int_sum_koorogi_body_model
- 0x81062628: int_sum_koorogi_body_R_model
- 0x81062680: int_sum_koorogi_body_L_model
- 0x810626D8: cKF_ckcb_r_int_sum_koorogi_tbl
- 0x810626E4: cKF_kn_int_sum_koorogi_tbl
- 0x810626FC: cKF_c_int_sum_koorogi_tbl
- 0x81062728: cKF_ds_int_sum_koorogi_tbl
- 0x81062824: cKF_ba_r_int_sum_koorogi
- 0x81062838: cKF_je_r_int_sum_koorogi_tbl
- 0x810628B0: cKF_bs_r_int_sum_koorogi
- 0x810628C0: int_sum_liccabed_pal
- 0x810628E0: int_sum_liccabed_mat_tex
- 0x81062BE0: int_sum_liccabed_head_tex
- 0x81062DE0: int_sum_liccabed_foot_tex
- 0x81062E60: int_sum_liccabed_pillow_tex
- 0x81062F60: int_sum_liccabed_v
- 0x81063360: int_sum_liccabed_on_model
- 0x810633E8: int_sum_liccabed_onT_model
- 0x810634A0: int_sum_liccachair_pal
- 0x810634C0: int_sum_liccachair_seat_tex
- 0x810635C0: int_sum_liccachair_splat_tex
- 0x810637C0: int_sum_liccachair_leg_tex
- 0x810639C0: int_sum_liccachair_seatside_tex
- 0x81063AC0: int_sum_liccachair_v
- 0x81063E70: int_sum_liccachair_on_model
- 0x81063EF8: int_sum_liccachair_onT_model
- 0x81063FC0: int_sum_liccachest_pal
- 0x81063FE0: int_sum_liccachest_hiki_tex_txt
- 0x81064160: int_sum_liccachest_side_tex_txt
- 0x81064360: int_sum_liccachest_top_tex_txt
- 0x810643E0: int_sum_liccachest_front_tex_txt
- 0x810647E0: int_sum_liccachest_v
- 0x81064C40: int_sum_liccachest_doorL_model
- 0x81064CC0: int_sum_liccachest_base_model
- 0x81064D80: int_sum_liccachest_doorR_model
- 0x81064E00: cKF_ckcb_r_int_sum_liccachest_tbl
- 0x81064E08: cKF_kn_int_sum_liccachest_tbl
- 0x81064E20: cKF_c_int_sum_liccachest_tbl
- 0x81064E2C: cKF_ds_int_sum_liccachest_tbl
- 0x81064EC8: cKF_ba_r_int_sum_liccachest
- 0x81064EDC: cKF_je_r_int_sum_liccachest_tbl
- 0x81064F18: cKF_bs_r_int_sum_liccachest
- 0x81064F20: int_sum_liccakitchen_pal
- 0x81064F40: int_sum_liccakitchen_side_tex
- 0x81065040: int_sum_liccakitchen_tail_tex
- 0x810650C0: int_sum_liccakitchen_top_tex
- 0x810651C0: int_sum_liccakitchen_back_tex
- 0x81065340: int_sum_liccakitchen_jyagu_tex
- 0x810653C0: int_sum_liccakitchen_etc_tex
- 0x810654C0: int_sum_liccakitchen_front_tex
- 0x810656C0: int_sum_liccakitchen_v
- 0x81065A60: int_sum_liccakitchen_on_model
- 0x81065AF8: int_sum_liccakitchen_onT_model
- 0x81065BE0: int_sum_liccalanp_pal
- 0x81065C00: int_sum_liccalanp_shade_tex
- 0x81065D00: int_sum_liccalanp_stand_tex
- 0x81065E80: int_sum_liccalanp_hiki_tex
- 0x81065F00: int_sum_liccalanp_base_tex
- 0x81066000: int_sum_liccalanp_v
- 0x810663D0: int_sum_liccalanp_onT_model
- 0x81066440: int_sum_liccalanp_offT_model
- 0x81066540: int_sum_licca_lowchest_pal
- 0x81066560: int_sum_liccalowchest_hiki_tex_txt
- 0x81066660: int_sum_liccalowchest_in_tex_txt
- 0x810666E0: int_sum_liccalowchest_front_tex_txt
- 0x81066AE0: int_sum_liccalowchest_side_tex_txt
- 0x81066BE0: int_sum_liccalowchest_top_tex_txt
- 0x81066C60: int_sum_liccalowchest_v
- 0x81067020: int_sum_liccalowchest_door_model
- 0x810670B8: int_sum_licca_lowchest_base_model
- 0x81067160: cKF_ckcb_r_int_sum_liccalowchest_tbl
- 0x81067164: cKF_kn_int_sum_liccalowchest_tbl
- 0x81067178: cKF_c_int_sum_liccalowchest_tbl
- 0x81067180: cKF_ds_int_sum_liccalowchest_tbl
- 0x810671EC: cKF_ba_r_int_sum_liccalowchest
- 0x81067200: cKF_je_r_int_sum_liccalowchest_tbl
- 0x81067224: cKF_bs_r_int_sum_liccalowchest
- 0x81067240: int_sum_liccalowtable_pal
- 0x81067260: int_sum_liccalowtable_top_tex
- 0x81067460: int_sum_liccalowtable_side_tex
- 0x81067560: int_sum_liccalowtable_leg_tex
- 0x81067660: int_sum_liccalowtable_shelf_tex
- 0x81067760: int_sum_liccalowtable_v
- 0x81067AA0: int_sum_liccalowtable_on_model
- 0x81067AF8: int_sum_liccalowtable_onT_model
- 0x81067BE0: int_sum_licca_mirror01_pal
- 0x81067C00: int_sum_liccamirror_glass_tex_rgb_ci4_pal
- 0x81067C20: int_sum_liccamirror_front_tex
- 0x81068020: int_sum_liccamirror_side_tex
- 0x81068120: int_sum_liccamirror_top_tex
- 0x810681A0: int_sum_liccamirror_glass_tex
- 0x810683A0: int_sum_liccamirror_v
- 0x81068620: int_sum_liccamirror_on_model
- 0x81068678: int_sum_liccamirror_env_model
- 0x810686D0: int_sum_liccamirror_onT_model
- 0x81068780: int_sum_liccapiano_pal
- 0x810687A0: int_sum_liccapiano_top_txt
- 0x81068AA0: int_sum_liccapiano_side_txt
- 0x81068BA0: int_sum_liccapiano_lid_txt
- 0x81068DA0: int_sum_liccapiano_stand_txt
- 0x81068E20: int_sum_liccapiano_pedal_txt
- 0x81068E60: int_sum_liccapiano_pin_txt
- 0x81068EA0: int_sum_liccapiano_key_txt
- 0x81068FA0: int_sum_liccapiano_v
- 0x81069430: int_sum_liccapiano_on_model
- 0x81069490: int_sum_liccapiano_onT_model
- 0x810695C0: int_sum_liccasofa_pal
- 0x810695E0: int_sum_liccasofa_front_txt
- 0x810699E0: int_sum_liccasofa_back_txt
- 0x81069AE0: int_sum_liccasofa_side_txt
- 0x81069C60: int_sum_liccasofa_frontside_txt
- 0x81069D60: int_sum_liccasofa_backside_txt
- 0x81069DE0: int_sum_liccasofa_v
- 0x8106A180: int_sum_liccasofa_on_model
- 0x8106A2A0: int_sum_liccatable_pal
- 0x8106A2C0: int_sum_liccatable_top_txt
- 0x8106A4C0: int_sum_liccatable_leg_txt
- 0x8106A7C0: int_sum_liccatable_side_txt
- 0x8106A840: int_sum_liccatable_v
- 0x8106AA50: int_sum_liccatable_on_model
- 0x8106AAD8: int_sum_liccatable_onT_model
- 0x8106AB60: int_sum_log_bed01_pal
- 0x8106AB80: int_sum_log_bed01_stand_tex
- 0x8106AC00: int_sum_log_bed01_head_tex
- 0x8106AF00: int_sum_log_bed01_top_tex
- 0x8106B200: int_sum_log_bed01_pillow_tex
- 0x8106B280: int_sum_log_bed01_v
- 0x8106B560: int_sum_log_bed01_on_model
- 0x8106B5E0: int_sum_log_bed01_onT_model
- 0x8106B6A0: int_sum_log_chair01_pal
- 0x8106B6C0: int_sum_log_chair01_head_tex
- 0x8106BAC0: int_sum_log_chair01_cusion_tex
- 0x8106BB40: int_sum_log_chair01_seat_tex
- 0x8106BD40: int_sum_log_chair01_stand_tex
- 0x8106BE40: int_sum_log_chair01_cusion2_tex
- 0x8106BEC0: int_sum_log_chair01_v
- 0x8106C2D0: int_sum_log_chair01_on_model
- 0x8106C388: int_sum_log_chair01_onT_model
- 0x8106C420: int_sum_log_chair02_pal
- 0x8106C440: int_sum_log_chair02_head1_tex
- 0x8106C640: int_sum_log_chair02_seat_tex
- 0x8106C740: int_sum_log_chair02_stand_tex
- 0x8106C840: int_sum_log_chair02_cusion_tex
- 0x8106C8C0: int_sum_log_chair02_head2_tex
- 0x8106C9C0: int_sum_log_chair02_v
- 0x8106CCB0: int_sum_log_chair02_on_model
- 0x8106CD30: int_sum_log_chair02_onT_model
- 0x8106CE00: int_sum_log_chair03_pal
- 0x8106CE20: int_sum_log_chair03_seat_tex
- 0x8106CF20: int_sum_log_chair03_seatside_tex
- 0x8106CFA0: int_sum_log_chair03_head_tex
- 0x8106D0A0: int_sum_log_chair03_headtop_tex
- 0x8106D120: int_sum_log_chair03_foot_tex
- 0x8106D220: int_sum_log_chair03_v
- 0x8106D640: int_sum_log_chair03_on_model
- 0x8106D6B8: int_sum_log_chair03_onT_model
- 0x8106D7A0: int_sum_log_chest01_pal
- 0x8106D7C0: int_sum_log_chest01_draw_tex_txt
- 0x8106D840: int_sum_log_chest01_drawer_tex_txt
- 0x8106D8C0: int_sum_log_chest01_drawerin_tex_txt
- 0x8106D9C0: int_sum_log_chest01_back_tex_txt
- 0x8106DB40: int_sum_log_chest01_front_tex_txt
- 0x8106DE40: int_sum_log_chest01_top_tex_txt
- 0x8106DEC0: int_sum_log_chest01_v
- 0x8106E330: int_sum_log_chest01_door_model
- 0x8106E408: int_sum_log_chest01_base_model
- 0x8106E4D0: cKF_ckcb_r_int_sum_log_chest01_tbl
- 0x8106E4D4: cKF_kn_int_sum_log_chest01_tbl
- 0x8106E4E8: cKF_c_int_sum_log_chest01_tbl
- 0x8106E4F0: cKF_ds_int_sum_log_chest01_tbl
- 0x8106E55C: cKF_ba_r_int_sum_log_chest01
- 0x8106E570: cKF_je_r_int_sum_log_chest01_tbl
- 0x8106E594: cKF_bs_r_int_sum_log_chest01
- 0x8106E5A0: int_sum_log_chest02_pal
- 0x8106E5C0: int_sum_log_chest02_drawside_tex_txt
- 0x8106E640: int_sum_log_chest02_door_tex_txt
- 0x8106E6C0: int_sum_log_chest02_draw_tex_txt
- 0x8106E740: int_sum_log_chest02_back_tex_txt
- 0x8106E840: int_sum_log_chest02_top_tex_txt
- 0x8106E940: int_sum_log_chest02_front_tex_txt
- 0x8106EB40: int_sum_log_chest02_v
- 0x8106F100: int_sum_lg_ch2_doorL_model
- 0x8106F1A8: int_sum_lg_ch2_base_model
- 0x8106F298: int_sum_lg_ch2_doorR_model
- 0x8106F338: cKF_ckcb_r_int_sum_log_chest02_tbl
- 0x8106F340: cKF_kn_int_sum_log_chest02_tbl
- 0x8106F358: cKF_c_int_sum_log_chest02_tbl
- 0x8106F364: cKF_ds_int_sum_log_chest02_tbl
- 0x8106F400: cKF_ba_r_int_sum_log_chest02
- 0x8106F414: cKF_je_r_int_sum_log_chest02_tbl
- 0x8106F450: cKF_bs_r_int_sum_log_chest02
- 0x8106F460: int_sum_log_chest03_pal
- 0x8106F480: int_sum_log_chest03_back_tex
- 0x8106F580: int_sum_log_chest03_front_tex
- 0x8106F780: int_sum_log_chest03_top_tex
- 0x8106F880: int_sum_log_chest03_top2_tex
- 0x8106F900: int_sum_log_chest03_draw_tex
- 0x8106F980: int_sum_log_chest03_side_tex
- 0x8106FA80: int_sum_log_chest03_foot_tex
- 0x8106FB80: int_sum_log_chest03_book_tex
- 0x8106FC00: int_sum_log_chest03_book2_tex
- 0x8106FC80: int_sum_log_chest03_v
- 0x81070140: int_sum_log_chest03_on_model
- 0x81070220: int_sum_log_chest03_onT_model
- 0x81070300: int_sum_hatoclock_pal
- 0x81070320: int_sum_log_clk_pal
- 0x81070340: int_sum_hatoclock_hari_tex_txt
- 0x810703C0: int_sum_log_hatoclk_stand_tex_txt
- 0x810704C0: int_sum_log_hatoclk_base_tex_txt
- 0x81070540: int_sum_log_hatoclk_top_tex_txt
- 0x810705C0: int_sum_log_hatoclk_front_tex_txt
- 0x810708C0: int_sum_log_hatoclk_tana_tex_txt
- 0x81070940: int_sum_hatoclock_jyabara_tex_txt
- 0x810709C0: int_sum_hatoclock_hatoside_tex_txt
- 0x81070A40: int_sum_hatoclock_hatotop_tex_txt
- 0x81070AC0: int_sum_log_hatoclk_door_tex_txt
- 0x81070B40: int_sum_log_hatoclk_v
- 0x81071040: int_sum_log_hatoclk_long_model
- 0x810710A0: int_sum_log_hatoclk_base_model
- 0x810711B8: int_sum_log_hatoclk_short_model
- 0x81071218: int_sum_log_hatoclk_hato1_model
- 0x81071328: int_sum_log_hatoclk_door_model
- 0x81071380: cKF_ckcb_r_int_sum_log_hatoclk_tbl
- 0x8107138C: cKF_kn_int_sum_log_hatoclk_tbl
- 0x81071390: cKF_c_int_sum_log_hatoclk_tbl
- 0x810713C8: cKF_ds_int_sum_log_hatoclk_tbl
- 0x8107144C: cKF_ba_r_int_sum_log_hatoclk
- 0x81071460: cKF_je_r_int_sum_log_hatoclk_tbl
- 0x810714CC: cKF_bs_r_int_sum_log_hatoclk
- 0x810714E0: int_sum_log_table01_pal
- 0x81071500: int_sum_log_table01_top_tex
- 0x81071900: int_sum_log_table01_side_tex
- 0x81071A00: int_sum_log_table01_wood_tex
- 0x81071B00: int_sum_log_table01_v
- 0x81071E20: int_sum_log_table01_on_model
- 0x81071EB8: int_sum_log_table01_onT_model
- 0x81071F40: int_sum_log_table02_pal
- 0x81071F60: int_sum_log_table02_top_tex
- 0x81072360: int_sum_log_table02_side_tex
- 0x81072460: int_sum_log_table02_stand_tex
- 0x81072560: int_sum_log_table02_v
- 0x81072940: int_sum_log_table02_on_model
- 0x810729A0: int_sum_log_table02_onT_model
- 0x81072A60: int_sum_lv_stereo_pal
- 0x81072A80: int_sum_lv_stereo_foot_tex
- 0x81072B00: int_sum_lv_stereo_front_tex
- 0x81072F00: int_sum_lv_stereo_side_tex
- 0x81073100: int_sum_lv_stereo_reco_tex
- 0x81073280: int_sum_lv_stereo_v
- 0x810736C0: int_sum_lv_stereo_on_model
- 0x81073770: int_sum_lv_stereo_onT_model
- 0x81073820: int_sum_matumushi_pal
- 0x81073840: int_sum_matumushi_hand_pic_ci4_pal
- 0x81073860: int_sum_matumushi_base_txt
- 0x810738E0: int_sum_matumushi_top_txt
- 0x81073AE0: int_sum_matumushi_side_txt
- 0x81073CE0: int_sum_matumushi_body_txt
- 0x81073EE0: int_sum_matumushi_hand_txt
- 0x81073FE0: int_sum_matumushi_v
- 0x810743D0: int_sum_matumushi_side_model
- 0x81074438: int_sum_matumushi_komado_model
- 0x81074490: int_sum_matumushi_glass_model
- 0x810744F8: int_sum_matumushi_base_model
- 0x81074598: int_sum_matumushi_body_model
- 0x810745F8: int_sum_matumushi_body_R_model
- 0x81074650: int_sum_matumushi_body_L_model
- 0x810746A8: cKF_ckcb_r_int_sum_matumushi_tbl
- 0x810746B4: cKF_kn_int_sum_matumushi_tbl
- 0x810746CC: cKF_c_int_sum_matumushi_tbl
- 0x810746F8: cKF_ds_int_sum_matumushi_tbl
- 0x810747D0: cKF_ba_r_int_sum_matumushi
- 0x810747E4: cKF_je_r_int_sum_matumushi_tbl
- 0x8107485C: cKF_bs_r_int_sum_matumushi
- 0x81074880: int_sum_md01_pal
- 0x810748A0: int_sum_md01_back_tex_txt
- 0x81074AA0: int_sum_md01_front_tex_txt
- 0x81074EA0: int_sum_md01_hand_tex_txt
- 0x81074F20: int_sum_md01_v
- 0x81075110: int_sum_md01_on_model
- 0x81075200: int_sum_mezaclock_pal
- 0x81075220: int_sum_mezaclock_hand_tex_txt
- 0x81075320: int_sum_mezaclock_hari_tex_txt
- 0x81075420: int_sum_mezaclock_foot_tex_txt
- 0x810754A0: int_sum_mezaclock_kane_tex_txt
- 0x810755A0: int_sum_mezaclock_top_tex_txt
- 0x810757A0: int_sum_mezaclock_side_tex_txt
- 0x810758A0: int_sum_mezaclock_back_tex_txt
- 0x810759A0: int_sum_mezaclock_tataki_tex_txt
- 0x81075A20: int_sum_mezaclock_v
- 0x81075E00: int_sum_mezaclock_long_model
- 0x81075E60: int_sum_mezaclock_base_model
- 0x81075FD0: int_sum_mezaclock_short_model
- 0x81076030: cKF_ckcb_r_int_sum_mezaclock_tbl
- 0x81076038: cKF_c_int_sum_mezaclock_tbl
- 0x8107605C: cKF_ba_r_int_sum_mezaclock
- 0x81076070: cKF_je_r_int_sum_mezaclock_tbl
- 0x810760AC: cKF_bs_r_int_sum_mezaclock
- 0x810760C0: int_sum_minmin_pal
- 0x810760E0: int_sum_minmin_hand_pic_ci4_pal
- 0x81076100: int_sum_minmin_base_txt
- 0x81076180: int_sum_minmin_top_txt
- 0x81076380: int_sum_minmin_body_txt
- 0x81076580: int_sum_minmin_side_txt
- 0x81076780: int_sum_minmin_hand_txt
- 0x81076880: int_sum_minmin_v
- 0x81076CD0: int_sum_minmin_side_model
- 0x81076D38: int_sum_minmin_komado_model
- 0x81076D90: int_sum_minmin_glass_model
- 0x81076DF8: int_sum_minmin_base_model
- 0x81076EC0: int_sum_minmin_body_R_model
- 0x81076F18: int_sum_minmin_body_L_model
- 0x81076F70: cKF_ckcb_r_int_sum_minmin_tbl
- 0x81076F78: cKF_kn_int_sum_minmin_tbl
- 0x81076F8C: cKF_c_int_sum_minmin_tbl
- 0x81076FB0: cKF_ds_int_sum_minmin_tbl
- 0x8107719C: cKF_ba_r_int_sum_minmin
- 0x810771B0: cKF_je_r_int_sum_minmin_tbl
- 0x81077210: cKF_bs_r_int_sum_minmin
- 0x81077220: int_sum_misin01_pal
- 0x81077240: int_sum_misin01_sidefoot_tex
- 0x81077340: int_sum_misin01_desktop_tex
- 0x810773C0: int_sum_misin01_deskfront_tex
- 0x810774C0: int_sum_misin01_deskback_tex
- 0x810775C0: int_sum_misin01_deskside_tex
- 0x81077600: int_sum_misin01_misiside_tex
- 0x81077700: int_sum_misin01_pedal_tex
- 0x81077780: int_sum_misin01_kaiten_tex
- 0x81077800: int_sum_misin01_harigane_tex
- 0x81077880: int_sum_misin01_misibase_tex
- 0x810778C0: int_sum_misin01_top_tex
- 0x810779C0: int_sum_misin01_temaki_tex
- 0x81077A40: int_sum_misin01_v
- 0x81077FA0: int_sum_misin01_on_model
- 0x81078050: int_sum_misin01_onT_model
- 0x810781C0: int_sum_miyama_pal
- 0x810781E0: int_sum_miyama_hand_pic_ci4_pal
- 0x81078200: int_sum_miyama_body_txt
- 0x81078300: int_sum_miyama_base_txt
- 0x81078380: int_sum_miyama_top_txt
- 0x81078580: int_sum_miyama_side_txt
- 0x81078780: int_sum_miyama_hand_txt
- 0x81078880: int_sum_miyama_v
- 0x81078C20: int_sum_miyama_side_model
- 0x81078C88: int_sum_miyama_komado_model
- 0x81078CE0: int_sum_miyama_glass_model
- 0x81078D48: int_sum_miyama_base_model
- 0x81078DE8: int_sum_miyama_body_model
- 0x81078E50: cKF_ckcb_r_int_sum_miyama_tbl
- 0x81078E58: cKF_kn_int_sum_miyama_tbl
- 0x81078E64: cKF_c_int_sum_miyama_tbl
- 0x81078E84: cKF_ds_int_sum_miyama_tbl
- 0x81078F1C: cKF_ba_r_int_sum_miyama
- 0x81078F30: cKF_je_r_int_sum_miyama_tbl
- 0x81078F78: cKF_bs_r_int_sum_miyama
- 0x81078F80: int_sum_mizunomitori_pal
- 0x81078FA0: int_sum_mizunomi_body_tex_pic_ci4_pal
- 0x81078FC0: int_sum_mizunomi_neck_tex_pic_ci4_pal
- 0x81078FE0: int_sum_mizunomi_face_tex_txt
- 0x810791E0: int_sum_mizunomi_hat_tex_txt
- 0x81079260: int_sum_mizunomi_foot_tex_txt
- 0x81079360: int_sum_mizunomi_kuchi_tex_txt
- 0x810793E0: int_sum_mizunomi_hane_tex_txt
- 0x810794E0: int_sum_mizunomi_body_tex_txt
- 0x81079560: int_sum_mizunomi_neck_tex_txt
- 0x81079660: int_sum_mizunomi_v
- 0x810799D0: int_sum_mizunomi_head_model
- 0x81079A88: int_sum_mizunomi_env2_model
- 0x81079AE0: int_sum_mizunomi_env_model
- 0x81079B48: int_sum_mizunomi_base_model
- 0x81079BF0: cKF_ckcb_r_int_sum_mizunomi_tbl
- 0x81079BF4: cKF_kn_int_sum_mizunomi_tbl
- 0x81079BF8: cKF_c_int_sum_mizunomi_tbl
- 0x81079C14: cKF_ds_int_sum_mizunomi_tbl
- 0x81079C34: cKF_ba_r_int_sum_mizunomi
- 0x81079C48: cKF_je_r_int_sum_mizunomi_tbl
- 0x81079C78: cKF_bs_r_int_sum_mizunomi
- 0x81079C80: int_sum_monki_pal
- 0x81079CA0: int_sum_monki_hand_pic_ci4_pal
- 0x81079CC0: int_sum_monki_body_txt
- 0x81079D40: int_sum_monki_base_txt
- 0x81079DC0: int_sum_monki_top_txt
- 0x81079FC0: int_sum_monki_side_txt
- 0x8107A1C0: int_sum_monki_hand_txt
- 0x8107A2C0: int_sum_monki_v
- 0x8107A6F0: int_sum_monki_body_L_model
- 0x8107A748: int_sum_monki_side_model
- 0x8107A7B0: int_sum_monki_komado_model
- 0x8107A808: int_sum_monki_glass_model
- 0x8107A870: int_sum_monki_base_model
- 0x8107A910: int_sum_monki_body_R_model
- 0x8107A968: cKF_ckcb_r_int_sum_monki_tbl
- 0x8107A970: cKF_kn_int_sum_monki_tbl
- 0x8107A988: cKF_c_int_sum_monki_tbl
- 0x8107A9A8: cKF_ds_int_sum_monki_tbl
- 0x8107AA44: cKF_ba_r_int_sum_monki
- 0x8107AA58: cKF_je_r_int_sum_monki_tbl
- 0x8107AAB8: cKF_bs_r_int_sum_monki
- 0x8107AAC0: int_sum_monshiro_pal
- 0x8107AAE0: int_sum_monshiro_hand_pic_ci4_pal
- 0x8107AB00: int_sum_monshiro_body_txt
- 0x8107AB80: int_sum_monshiro_base_txt
- 0x8107AC00: int_sum_monshiro_top_txt
- 0x8107AE00: int_sum_monshiro_side_txt
- 0x8107B000: int_sum_monshiro_hand_txt
- 0x8107B100: int_sum_monshiro_v
- 0x8107B4D0: int_sum_monshiro_body_L_model
- 0x8107B528: int_sum_monshiro_side_model
- 0x8107B590: int_sum_monshiro_komado_model
- 0x8107B5E8: int_sum_monshiro_glass_model
- 0x8107B650: int_sum_monshiro_base_model
- 0x8107B6F0: int_sum_monshiro_body_R_model
- 0x8107B748: cKF_ckcb_r_int_sum_monshiro_tbl
- 0x8107B750: cKF_kn_int_sum_monshiro_tbl
- 0x8107B768: cKF_c_int_sum_monshiro_tbl
- 0x8107B788: cKF_ds_int_sum_monshiro_tbl
- 0x8107B824: cKF_ba_r_int_sum_monshiro
- 0x8107B838: cKF_je_r_int_sum_monshiro_tbl
- 0x8107B898: cKF_bs_r_int_sum_monshiro
- 0x8107B8C0: int_sum_namazu_glass_pic_ci4_pal
- 0x8107B8E0: int_sum_namazu_body_txt
- 0x8107BBE0: int_sum_namazu_side_txt
- 0x8107BDE0: int_sum_namazu_base_txt
- 0x8107BE60: int_sum_namazu_etc_txt
- 0x8107BEE0: int_sum_namazu_top_txt
- 0x8107BFE0: int_sum_namazu_glass_txt
- 0x8107C0E0: int_sum_namazu_v
- 0x8107C3F0: int_sum_namazu_sakana_model
- 0x8107C460: int_sum_namazu_top_model
- 0x8107C4B8: int_sum_namazu_evw_model
- 0x8107C520: int_sum_namazu_base_model
- 0x8107C5D8: cKF_ckcb_r_int_sum_namazu_tbl
- 0x8107C5E0: cKF_kn_int_sum_namazu_tbl
- 0x8107C5F4: cKF_c_int_sum_namazu_tbl
- 0x8107C608: cKF_ds_int_sum_namazu_tbl
- 0x8107C68C: cKF_ba_r_int_sum_namazu
- 0x8107C6A0: cKF_je_r_int_sum_namazu_tbl
- 0x8107C6DC: cKF_bs_r_int_sum_namazu
- 0x8107C700: int_sum_nanahoshi_pal
- 0x8107C720: int_sum_nanahoshi_hand_pic_ci4_pal
- 0x8107C740: int_sum_nanahoshi_body_txt
- 0x8107C840: int_sum_nanahoshi_base_txt
- 0x8107C8C0: int_sum_nanahoshi_top_txt
- 0x8107CAC0: int_sum_nanahoshi_side_txt
- 0x8107CCC0: int_sum_nanahoshi_hand_txt
- 0x8107CDC0: int_sum_nanahoshi_v
- 0x8107D190: int_sum_nanahoshi_side_model
- 0x8107D1F8: int_sum_nanahoshi_komado_model
- 0x8107D250: int_sum_nanahoshi_glass_model
- 0x8107D2B8: int_sum_nanahoshi_base_model
- 0x8107D358: int_sum_nanahoshi_body_model
- 0x8107D3B8: cKF_ckcb_r_int_sum_nanahoshi_tbl
- 0x8107D3C0: cKF_kn_int_sum_nanahoshi_tbl
- 0x8107D3CC: cKF_c_int_sum_nanahoshi_tbl
- 0x8107D3EC: cKF_ds_int_sum_nanahoshi_tbl
- 0x8107D494: cKF_ba_r_int_sum_nanahoshi
- 0x8107D4A8: cKF_je_r_int_sum_nanahoshi_tbl
- 0x8107D4F0: cKF_bs_r_int_sum_nanahoshi
- 0x8107D520: int_sum_nigoi_glass_pic_ci4_pal
- 0x8107D540: int_sum_nigoi_body_txt
- 0x8107D840: int_sum_nigoi_side_txt
- 0x8107DA40: int_sum_nigoi_base_txt
- 0x8107DAC0: int_sum_nigoi_etc_txt
- 0x8107DB40: int_sum_nigoi_top_txt
- 0x8107DC40: int_sum_nigoi_glass_txt
- 0x8107DD40: int_sum_nigoi_v
- 0x8107E0B0: int_sum_nigoi_sakana_model
- 0x8107E120: int_sum_nigoi_top_model
- 0x8107E178: int_sum_nigoi_evw_model
- 0x8107E1E0: int_sum_nigoi_base_model
- 0x8107E298: cKF_ckcb_r_int_sum_nigoi_tbl
- 0x8107E2A0: cKF_kn_int_sum_nigoi_tbl
- 0x8107E2B4: cKF_c_int_sum_nigoi_tbl
- 0x8107E2C8: cKF_ds_int_sum_nigoi_tbl
- 0x8107E34C: cKF_ba_r_int_sum_nigoi
- 0x8107E360: cKF_je_r_int_sum_nigoi_tbl
- 0x8107E39C: cKF_bs_r_int_sum_nigoi
- 0x8107E3E0: int_sum_niji_glass_pic_ci4_pal
- 0x8107E400: int_sum_niji_body_txt
- 0x8107E700: int_sum_niji_side_txt
- 0x8107E900: int_sum_niji_base_txt
- 0x8107E980: int_sum_niji_etc_txt
- 0x8107EA00: int_sum_niji_top_txt
- 0x8107EB00: int_sum_niji_glass_txt
- 0x8107EC00: int_sum_niji_v
- 0x8107EF70: int_sum_niji_sakana_model
- 0x8107EFE0: int_sum_niji_top_model
- 0x8107F038: int_sum_niji_evw_model
- 0x8107F0A0: int_sum_niji_base_model
- 0x8107F158: cKF_ckcb_r_int_sum_niji_tbl
- 0x8107F160: cKF_kn_int_sum_niji_tbl
- 0x8107F174: cKF_c_int_sum_niji_tbl
- 0x8107F188: cKF_ds_int_sum_niji_tbl
- 0x8107F224: cKF_ba_r_int_sum_niji
- 0x8107F238: cKF_je_r_int_sum_niji_tbl
- 0x8107F274: cKF_bs_r_int_sum_niji
- 0x8107F2A0: int_sum_nisiki_glass_pic_ci4_pal
- 0x8107F2C0: int_sum_nisiki_body_txt
- 0x8107F5C0: int_sum_nisiki_side_txt
- 0x8107F7C0: int_sum_nisiki_base_txt
- 0x8107F840: int_sum_nisiki_top_txt
- 0x8107F940: int_sum_nisiki_glass_txt
- 0x8107FA40: int_sum_nisiki_v
- 0x8107FCC0: int_sum_nisiki_sakana_model
- 0x8107FD30: int_sum_nisiki_top_model
- 0x8107FD88: int_sum_nisiki_evw_model
- 0x8107FDF0: int_sum_nisiki_base_model
- 0x8107FE80: cKF_ckcb_r_int_sum_nisiki_tbl
- 0x8107FE88: cKF_kn_int_sum_nisiki_tbl
- 0x8107FE9C: cKF_c_int_sum_nisiki_tbl
- 0x8107FEB0: cKF_ds_int_sum_nisiki_tbl
- 0x8107FF34: cKF_ba_r_int_sum_nisiki
- 0x8107FF48: cKF_je_r_int_sum_nisiki_tbl
- 0x8107FF84: cKF_bs_r_int_sum_nisiki
- 0x8107FFA0: int_sum_nokogiri_pal
- 0x8107FFC0: int_sum_nokogiri_hand_pic_ci4_pal
- 0x8107FFE0: int_sum_nokogiri_base_txt
- 0x81080060: int_sum_nokogiri_top_txt
- 0x81080260: int_sum_nokogiri_side_txt
- 0x81080460: int_sum_nokogiri_body_txt
- 0x81080560: int_sum_nokogiri_hand_txt
- 0x81080660: int_sum_nokogiri_v
- 0x81080A00: int_sum_nokogiri_side_model
- 0x81080A68: int_sum_nokogiri_komado_model
- 0x81080AC0: int_sum_nokogiri_glass_model
- 0x81080B28: int_sum_nokogiri_base_model
- 0x81080BC8: int_sum_nokogiri_body_model
- 0x81080C30: cKF_ckcb_r_int_sum_nokogiri_tbl
- 0x81080C38: cKF_kn_int_sum_nokogiri_tbl
- 0x81080C44: cKF_c_int_sum_nokogiri_tbl
- 0x81080C64: cKF_ds_int_sum_nokogiri_tbl
- 0x81080D18: cKF_ba_r_int_sum_nokogiri
- 0x81080D2C: cKF_je_r_int_sum_nokogiri_tbl
- 0x81080D74: cKF_bs_r_int_sum_nokogiri
- 0x81080D80: int_sum_ohmurasaki_pal
- 0x81080DA0: int_sum_ohmurasaki_hand_pic_ci4_pal
- 0x81080DC0: int_sum_ohmurasaki_body_txt
- 0x81080FC0: int_sum_ohmurasaki_side_txt
- 0x810811C0: int_sum_ohmurasaki_base_txt
- 0x81081240: int_sum_ohmurasaki_top_txt
- 0x81081440: int_sum_ohmurasaki_hand_txt
- 0x81081540: int_sum_ohmurasaki_v
- 0x81081970: int_sum_ohmurasaki_body_L_model
- 0x810819C8: int_sum_ohmursaki_glass_model
- 0x81081A30: int_sum_ohmurasaki_side_model
- 0x81081A98: int_sum_ohmurasaki_komado_model
- 0x81081AF0: int_sum_ohmurasaki_base_model
- 0x81081B90: int_sum_ohmurasaki_body_R_model
- 0x81081BE8: cKF_ckcb_r_int_sum_ohmurasaki_tbl
- 0x81081BF0: cKF_kn_int_sum_ohmurasaki_tbl
- 0x81081C08: cKF_c_int_sum_ohmurasaki_tbl
- 0x81081C28: cKF_ds_int_sum_ohmurasaki_tbl
- 0x81081CC4: cKF_ba_r_int_sum_ohmurasaki
- 0x81081CD8: cKF_je_r_int_sum_ohmurasaki_tbl
- 0x81081D38: cKF_bs_r_int_sum_ohmurasaki
- 0x81081D60: int_sum_oikawa_glass_pic_ci4_pal
- 0x81081D80: int_sum_oikawa_body_txt
- 0x81081F80: int_sum_oikawa_side_txt
- 0x81082180: int_sum_oikawa_base_txt
- 0x81082200: int_sum_oikawa_green_txt
- 0x81082300: int_sum_oikawa_green2_txt
- 0x81082380: int_sum_oikawa_top_txt
- 0x81082480: int_sum_oikawa_glass_txt
- 0x81082580: int_sum_oikawa_v
- 0x81082910: int_sum_oikawa_sakana_model
- 0x81082980: int_sum_oikawa_top_model
- 0x810829D8: int_sum_oikawa_evw_model
- 0x81082A40: int_sum_oikawa_base_model
- 0x81082B10: cKF_ckcb_r_int_sum_oikawa_tbl
- 0x81082B18: cKF_kn_int_sum_oikawa_tbl
- 0x81082B2C: cKF_c_int_sum_oikawa_tbl
- 0x81082B40: cKF_ds_int_sum_oikawa_tbl
- 0x81082BF4: cKF_ba_r_int_sum_oikawa
- 0x81082C08: cKF_je_r_int_sum_oikawa_tbl
- 0x81082C44: cKF_bs_r_int_sum_oikawa
- 0x81082C60: int_sum_okiagari01_pal
- 0x81082C80: int_sum_okiagari01_hand_tex_txt
- 0x81082D00: int_sum_okiagari01_bodyback_tex_txt
- 0x81082E00: int_sum_okiagari01_bodyfront_tex_txt
- 0x81082F00: int_sum_okiagari01_face_tex_txt
- 0x81083100: int_sum_okiagari01_head_tex_txt
- 0x81083200: int_sum_okiagari01_v
- 0x81083540: int_sum_okiagari01_model
- 0x81083668: cKF_ckcb_r_int_sum_okiagari01_tbl
- 0x8108366C: cKF_kn_int_sum_okiagari01_tbl
- 0x81083678: cKF_c_int_sum_okiagari01_tbl
- 0x81083680: cKF_ds_int_sum_okiagari01_tbl
- 0x8108371C: cKF_ba_r_int_sum_okiagari01
- 0x81083730: cKF_je_r_int_sum_okiagari01_tbl
- 0x81083748: cKF_bs_r_int_sum_okiagari01
- 0x81083760: int_sum_okuwa_pal
- 0x81083780: int_sum_okuwa_hand_pic_ci4_pal
- 0x810837A0: int_sum_okuwa_body_txt
- 0x810838A0: int_sum_okuwa_base_txt
- 0x81083920: int_sum_okuwa_top_txt
- 0x81083B20: int_sum_okuwa_side_txt
- 0x81083D20: int_sum_okuwa_hand_txt
- 0x81083E20: int_sum_okuwa_v
- 0x810841C0: int_sum_okuwa_side_model
- 0x81084228: int_sum_okuwa_komado_model
- 0x81084280: int_sum_okuwa_glass_model
- 0x810842E8: int_sum_okuwa_base_model
- 0x81084388: int_sum_okuwa_body_model
- 0x810843F0: cKF_ckcb_r_int_sum_okuwa_tbl
- 0x810843F8: cKF_kn_int_sum_okuwa_tbl
- 0x81084404: cKF_c_int_sum_okuwa_tbl
- 0x81084424: cKF_ds_int_sum_okuwa_tbl
- 0x810844EC: cKF_ba_r_int_sum_okuwa
- 0x81084500: cKF_je_r_int_sum_okuwa_tbl
- 0x81084548: cKF_bs_r_int_sum_okuwa
- 0x81084560: int_sum_classicclock01_pal
- 0x81084580: int_sum_oldclk01_glass_pic_ci4_pal
- 0x810845A0: int_sum_oldclk01_hand_txt
- 0x81084620: int_sum_oldclk01_frko_txt
- 0x810846A0: int_sum_oldclk01_back_txt
- 0x81084820: int_sum_oldclk01_front2_txt
- 0x810848A0: int_sum_oldclk01_side_txt
- 0x810849A0: int_sum_oldclk01_front_txt
- 0x81084B20: int_sum_oldclk01_roof_txt
- 0x81084B60: int_sum_oldclk01_top_txt
- 0x81084BA0: int_sum_oldclk01_glass_txt
- 0x81084C20: int_sum_oldclk01_v
- 0x81085080: int_sum_oldclk01_long_model
- 0x810850D8: int_sum_oldclk01_on_model
- 0x81085250: int_sum_oldclk01_env_model
- 0x810852A8: int_sum_oldclk01_short_model
- 0x81085300: int_sum_oldclk01_frko_model
- 0x81085358: cKF_ckcb_r_int_sum_oldclk01_tbl
- 0x81085360: cKF_kn_int_sum_oldclk01_tbl
- 0x81085364: cKF_c_int_sum_oldclk01_tbl
- 0x81085398: cKF_ds_int_sum_oldclk01_tbl
- 0x810853B8: cKF_ba_r_int_sum_oldclk01
- 0x810853CC: cKF_je_r_int_sum_oldclk01_tbl
- 0x8108542C: cKF_bs_r_int_sum_oldclk01
- 0x81085440: int_sum_oldsofa01_pal
- 0x81085460: int_sum_oldsofa01_seat
- 0x81085660: int_sum_oldsofa01_side1
- 0x81085760: int_sum_oldsofa01_side2
- 0x81085860: int_sum_oldsofa01_top
- 0x81085A60: int_sum_oldsofa01_side3
- 0x81085B60: int_sum_oldsofa01_foot
- 0x81085BE0: int_sum_oldsofa01_v
- 0x81085FD0: int_sum_oldsofa01_onT_model
- 0x81086120: int_sum_oniyanma_pal
- 0x81086140: int_sum_oniyanma_hand_pic_ci4_pal
- 0x81086160: int_sum_oniyanma_base_txt
- 0x810861E0: int_sum_oniyanma_top_txt
- 0x810863E0: int_sum_oniyanma_body_txt
- 0x81086560: int_sum_oniyanma_side_txt
- 0x81086760: int_sum_oniyanma_hand_txt
- 0x81086860: int_sum_oniyanma_v
- 0x81086C50: int_sum_oniyanma_side_model
- 0x81086CB8: int_sum_oniyanma_komado_model
- 0x81086D10: int_sum_oniyanma_glass_model
- 0x81086D78: int_sum_oniyanma_base_model
- 0x81086E40: int_sum_oniyanma_body_R_model
- 0x81086E98: int_sum_oniyanma_body_L_model
- 0x81086EF0: cKF_ckcb_r_int_sum_oniyanma_tbl
- 0x81086EF8: cKF_kn_int_sum_oniyanma_tbl
- 0x81086F0C: cKF_c_int_sum_oniyanma_tbl
- 0x81086F30: cKF_ds_int_sum_oniyanma_tbl
- 0x81086FFC: cKF_ba_r_int_sum_oniyanma
- 0x81087010: cKF_je_r_int_sum_oniyanma_tbl
- 0x81087070: cKF_bs_r_int_sum_oniyanma
- 0x810870A0: int_sum_oonamazu_glass_pic_ci4_pal
- 0x810870C0: int_sum_oonamazu_body_txt
- 0x810874C0: int_sum_oonamazu_side_txt
- 0x810876C0: int_sum_oonamazu_base_txt
- 0x81087740: int_sum_oonamazu_top_txt
- 0x81087840: int_sum_oonamazu_glass_txt
- 0x810878C0: int_sum_oonamazu_v
- 0x81087B90: int_sum_oonamazu_sakana_model
- 0x81087C00: int_sum_oonamazu_top_model
- 0x81087C58: int_sum_oonamazu_evw_model
- 0x81087CC0: int_sum_oonamazu_base_model
- 0x81087D50: cKF_ckcb_r_int_sum_oonamazu_tbl
- 0x81087D58: cKF_kn_int_sum_oonamazu_tbl
- 0x81087D6C: cKF_c_int_sum_oonamazu_tbl
- 0x81087D80: cKF_ds_int_sum_oonamazu_tbl
- 0x81087E04: cKF_ba_r_int_sum_oonamazu
- 0x81087E18: cKF_je_r_int_sum_oonamazu_tbl
- 0x81087E54: cKF_bs_r_int_sum_oonamazu
- 0x81087E60: int_sum_pet01_pal
- 0x81087E80: int_sum_pet01_wing_tex_txt
- 0x81088000: int_sum_pet01_belly_tex_txt
- 0x81088180: int_sum_pet01_stand_tex_txt
- 0x81088300: int_sum_pet01_wood_tex_txt
- 0x81088340: int_sum_pet01_hand_tex_txt
- 0x810883C0: int_sum_pet01_cagedown_tex_txt
- 0x81088440: int_sum_pet01_cage_tex_txt
- 0x810885C0: int_sum_pet01_foot_tex_txt
- 0x81088640: int_sum_pet01_v
- 0x81088B50: int_sum_pet01_bard_model
- 0x81088BE0: int_sum_pet01_cage_model
- 0x81088D98: cKF_ckcb_r_int_sum_pet01_tbl
- 0x81088D9C: cKF_kn_int_sum_pet01_tbl
- 0x81088DA0: cKF_c_int_sum_pet01_tbl
- 0x81088DB8: cKF_ds_int_sum_pet01_tbl
- 0x81088DE4: cKF_ba_r_int_sum_pet01
- 0x81088DF8: cKF_je_r_int_sum_pet01_tbl
- 0x81088E1C: cKF_bs_r_int_sum_pet01
- 0x81088E40: int_sum_piano01_pal
- 0x81088E60: int_sum_piano01_top_tex
- 0x81089160: int_sum_piano01_key_tex
- 0x81089260: int_sum_piano01_side_tex
- 0x81089360: int_sum_piano01_lid_tex
- 0x81089560: int_sum_piano01_stand_tex
- 0x810895E0: int_sum_piano01_pedal_tex
- 0x81089620: int_sum_piano01_pin_tex
- 0x81089660: int_sum_piano01_v
- 0x81089AF0: int_sum_piano01_on_model
- 0x81089B50: int_sum_piano01_onT_model
- 0x81089CA0: int_sum_pirania_glass_pic_ci4_pal
- 0x81089CC0: int_sum_pirania_body_txt
- 0x81089EC0: int_sum_pirania_top_txt
- 0x81089FC0: int_sum_pirania_side_txt
- 0x8108A1C0: int_sum_pirania_base_txt
- 0x8108A240: int_sum_pirania_etc_txt
- 0x8108A2C0: int_sum_pirania_glass_txt
- 0x8108A3C0: int_sum_pirania_v
- 0x8108A730: int_sum_pirania_sakana_model
- 0x8108A7A0: int_sum_pirania_top_model
- 0x8108A7F8: int_sum_pirania_evw_model
- 0x8108A860: int_sum_pirania_base_model
- 0x8108A918: cKF_ckcb_r_int_sum_pirania_tbl
- 0x8108A920: cKF_kn_int_sum_pirania_tbl
- 0x8108A934: cKF_c_int_sum_pirania_tbl
- 0x8108A948: cKF_ds_int_sum_pirania_tbl
- 0x8108A9FC: cKF_ba_r_int_sum_pirania
- 0x8108AA10: cKF_je_r_int_sum_pirania_tbl
- 0x8108AA4C: cKF_bs_r_int_sum_pirania
- 0x8108AA60: int_sum_pl_aloe01_pal
- 0x8108AA80: int_sum_pl_aloe01_leaf_tex
- 0x8108AD80: int_sum_pl_aloe01_earth_tex
- 0x8108AE00: int_sum_pl_aloe01_hachi_tex
- 0x8108AF00: int_sum_pl_aloe01_v
- 0x8108B3C0: int_sum_pl_aloe01_on_model
- 0x8108B418: int_sum_pl_aloe01_onT_model
- 0x8108B500: int_sum_pl_ananas_pal
- 0x8108B520: int_sum_pl_ananas_earth_tex
- 0x8108B5A0: int_sum_pl_ananas_hachi_tex
- 0x8108B6A0: int_sum_pl_ananas_hana_tex
- 0x8108B8A0: int_sum_pl_ananas_leaf_tex
- 0x8108BAA0: int_sum_pl_ananas_v
- 0x8108BF80: int_sum_pl_ananas_on_model
- 0x8108BFE0: int_sum_pl_ananas_onT_model
- 0x8108C0C0: int_sum_pl_benjyami_pal
- 0x8108C0E0: int_sum_pl_benjyami_hachi_tex
- 0x8108C1E0: int_sum_pl_benjyami_earth_tex
- 0x8108C260: int_sum_pl_benjyami_stand_tex
- 0x8108C3E0: int_sum_pl_benjyami_leaf_tex
- 0x8108C5E0: int_sum_pl_benjyami_v
- 0x8108C8C0: int_sum_pl_benjyami_on_model
- 0x8108C920: int_sum_pl_benjyami_onT_model
- 0x8108CA00: int_sum_asi_plant01_pal
- 0x8108CA20: int_sum_asi_plant01_bin_tex
- 0x8108CB20: int_sum_asi_plant01_kuki_tex
- 0x8108CC20: int_sum_asi_plant01_leaf_tex
- 0x8108CE20: int_sum_asi_plant01_tuchi_tex
- 0x8108CEA0: int_sum_asi_plant01_v
- 0x8108D1F0: int_sum_asi_plant01_on_model
- 0x8108D270: int_sum_asi_plant01_onT_model
- 0x8108D320: int_sum_pl_cocos_pal
- 0x8108D340: int_sum_pl_cocos_earth_tex
- 0x8108D3C0: int_sum_pl_cocos_hachi_tex
- 0x8108D4C0: int_sum_pl_cocos_cocos_tex
- 0x8108D5C0: int_sum_pl_cocos_leaf_tex
- 0x8108D740: int_sum_pl_cocos_leaf2_tex
- 0x8108D8C0: int_sum_pl_cocos_v
- 0x8108DBA0: int_sum_pl_cocos_on_model
- 0x8108DC38: int_sum_pl_cocos_onT_model
- 0x8108DCE0: int_sum_pl_compacta_pal
- 0x8108DD00: int_sum_pl_compacta_earth_tex
- 0x8108DD80: int_sum_pl_compacta_hachi_tex
- 0x8108DE80: int_sum_pl_compacta_leaf_tex
- 0x8108E080: int_sum_pl_compacta_leaf2_tex
- 0x8108E280: int_sum_pl_compacta_v
- 0x8108E640: int_sum_pl_compacta_on_model
- 0x8108E6A0: int_sum_pl_compacta_onT_model
- 0x8108E760: int_sum_pl_draca02_pal
- 0x8108E7A0: int_sum_pl_draca02_stand2_tex
- 0x8108E8A0: int_sum_pl_draca02_stand_tex
- 0x8108EA20: int_sum_pl_draca02_leaf_tex
- 0x8108EBA0: int_sum_pl_draca02_hachi_tex
- 0x8108ECA0: int_sum_pl_draca02_earth_tex
- 0x8108ED20: int_sum_pl_draca02_v
- 0x8108F370: int_sum_pl_draca02_on_model
- 0x8108F3C8: int_sum_pl_draca02_onT_model
- 0x8108F4E0: int_sum_pl_dracaena_pal
- 0x8108F500: int_sum_pl_dracaera_earth_tex
- 0x8108F580: int_sum_pl_dracaera_hachi_tex
- 0x8108F680: int_sum_pl_dracaera_leaf_tex
- 0x8108FA80: int_sum_pl_dracaera_base_tex
- 0x8108FC00: int_sum_pl_dracaena_v
- 0x8108FF80: int_sum_pl_dracaena_on_model
- 0x8108FFD8: int_sum_pl_dracaena_onT_model
- 0x810900E0: int_sum_pl_gomunoki_pal
- 0x81090100: int_sum_pl_gomunoki_earth_tex
- 0x81090180: int_sum_pl_gomunoki_hachi_tex
- 0x81090280: int_sum_pl_gomunoki_leaf_tex
- 0x81090480: int_sum_pl_gomunoki_kuki_tex
- 0x81090600: int_sum_pl_gomunoki_leaf2_tex
- 0x81090800: int_sum_pl_gomunoki_v
- 0x81090CE0: int_sum_pl_gomunoki_on_model
- 0x81090D38: int_sum_pl_gomunoki_onT_model
- 0x81090E20: int_sum_pl_hirasabo_pal
- 0x81090E40: int_sum_pl_hirasabo_earth_tex
- 0x81090EC0: int_sum_pl_hirasabo_hachi_tex
- 0x81090FC0: int_sum_pl_hirasabo_sabo1_tex
- 0x810911C0: int_sum_pl_hirasabo_sabo2_tex
- 0x810914C0: int_sum_pl_hirasabo_sabo3_tex
- 0x810915C0: int_sum_pl_hirasabo_v
- 0x810918B0: int_sum_pl_hirasabo_on_model
- 0x81091910: int_sum_pl_hirasabo_onT_model
- 0x81091A20: int_sum_pl_kuroton_leaf_tex
- 0x81091E20: int_sum_pl_kuroton_kuki_tex
- 0x81091F20: int_sum_pl_kuroton_earth_tex
- 0x81091FA0: int_sum_pl_kuroton_hachi_tex
- 0x810920A0: int_sum_pl_kuroton_v
- 0x81092660: int_sum_pl_kuroton_on_model
- 0x810926B8: int_sum_pl_kuroton_onT_model
- 0x810927C0: int_sum_pl_pakila_pal
- 0x810927E0: int_sum_pl_pakila_hachi_tex
- 0x810928E0: int_sum_pl_pakila_earth_tex
- 0x81092960: int_sum_pl_pakila_kuki_tex
- 0x810929E0: int_sum_pl_pakila_leaf_tex
- 0x81092DE0: int_sum_pl_pakila_wood_tex
- 0x81092FE0: int_sum_pl_pakila_v
- 0x81093350: int_sum_pl_pakila_on_model
- 0x810933B0: int_sum_pl_pakila_onT_model
- 0x810934A0: int_sum_pl_pothos_pal
- 0x810934C0: int_sum_pl_pothos_hachi_tex
- 0x810935C0: int_sum_pl_pothos_stand_tex
- 0x81093740: int_sum_pl_pothos_earth_tex
- 0x810937C0: int_sum_pl_pothos_leaf1_tex
- 0x810938C0: int_sum_pl_pothos_leaf2_tex
- 0x81093AC0: int_sum_pl_pothos_v
- 0x81093DA0: int_sum_pl_pothos_on_model
- 0x81093E00: int_sum_pl_pothos_onT_model
- 0x81093EE0: int_sum_asi_plant02_pal
- 0x81093F00: int_sum_asi_plant02_bin_tex
- 0x81094000: int_sum_asi_plant02_tuchi_tex
- 0x81094080: int_sum_asi_plant02_leaf_tex
- 0x81094380: int_sum_asi_plant02_miki_tex
- 0x81094480: int_sum_asi_plant02_kuki_tex
- 0x81094580: int_sum_asi_plant02_v
- 0x810949E0: int_sum_asi_plant02_on_model
- 0x81094A68: int_sum_asi_plant02_onT_model
- 0x81094B40: int_sum_pl_yamayasi_pal
- 0x81094B60: int_sum_pl_yamayasi_earth_tex
- 0x81094BE0: int_sum_pl_yamayasi_hachi_tex
- 0x81094CE0: int_sum_pl_yamayasi_leaf_tex
- 0x810950E0: int_sum_pl_yamayasi_stand_tex
- 0x810951E0: int_sum_pl_yamayasi_v
- 0x81095720: int_sum_pl_yamayasi_on_model
- 0x81095780: int_sum_pl_yamayasi_onT_model
- 0x810958A0: int_sum_popchair01_top_tex
- 0x81095AA0: int_sum_popchair01_standtop_tex
- 0x81095B20: int_sum_popchair01_side1_tex
- 0x81095C20: int_sum_popchair01_stand_tex
- 0x81095D20: int_sum_popchair01_board_tex
- 0x81095F20: int_sum_popchair01_v
- 0x81096240: int_sum_popchair01_onT_model
- 0x81096360: int_sum_popchair02_pal
- 0x81096380: int_sum_popchair02_top_tex
- 0x81096580: int_sum_popchair02_standtop_tex
- 0x81096600: int_sum_popchair02_side1_tex
- 0x81096700: int_sum_popchair02_stand_tex
- 0x81096800: int_sum_popchair02_board_tex
- 0x81096A00: int_sum_popchair02_v
- 0x81096D20: int_sum_popchair02_onT_model
- 0x81096E40: int_sum_popchair03_pal
- 0x81096E60: int_sum_popchair03_top_tex
- 0x81097060: int_sum_popchair03_standtop_tex
- 0x810970E0: int_sum_popchair03_side1_tex
- 0x810971E0: int_sum_popchair03_stand_tex
- 0x810972E0: int_sum_popchair03_board_tex
- 0x810974E0: int_sum_popchair03_v
- 0x81097800: int_sum_popchair03_onT_model
- 0x81097940: int_sum_poptable01_top_tex
- 0x81097B40: int_sum_poptable01_topback_tex
- 0x81097D40: int_sum_poptable01_stand_tex
- 0x81097E40: int_sum_poptable01_standtop_tex
- 0x81097EC0: int_sum_poptable01_standsita_tex
- 0x81097FC0: int_sum_poptable01_v
- 0x81098160: int_sum_poptable01_on_model
- 0x810981C0: int_sum_poptable01_onT_model
- 0x81098280: int_sum_poptable02_pal
- 0x810982A0: int_sum_poptable02_top_tex
- 0x810984A0: int_sum_poptable02_topback_tex
- 0x810986A0: int_sum_poptable02_stand_tex
- 0x810987A0: int_sum_poptable02_standtop_tex
- 0x81098820: int_sum_poptable02_standsita_tex
- 0x81098920: int_sum_poptable02_v
- 0x81098AC0: int_sum_poptable02_on_model
- 0x81098B20: int_sum_poptable02_onT_model
- 0x81098BE0: int_sum_poptable03_pal
- 0x81098C00: int_sum_poptable03_top_tex
- 0x81098E00: int_sum_poptable03_topback_tex
- 0x81099000: int_sum_poptable03_stand_tex
- 0x81099100: int_sum_poptable03_standtop_tex
- 0x81099180: int_sum_poptable03_standsita_tex
- 0x81099280: int_sum_poptable03_v
- 0x81099420: int_sum_poptable03_on_model
- 0x81099480: int_sum_poptable03_onT_model
- 0x81099540: int_radio01_pal
- 0x81099560: int_sum_radio01_front_tex
- 0x810999E0: int_sum_radio01_side_tex
- 0x81099A60: int_sum_radio01_hand_tex
- 0x81099B60: int_sum_radio01_sound_tex
- 0x81099BE0: int_sum_radio01_v
- 0x81099E80: int_sum_radio01_on_model
- 0x81099F00: int_sum_radio01_onT_model
- 0x81099FA0: int_radio02_pal
- 0x81099FC0: int_sum_radio02_front_tex
- 0x8109A440: int_sum_radio02_side_tex
- 0x8109A4C0: int_sum_radio02_hand_tex
- 0x8109A5C0: int_sum_radio02_sound_tex
- 0x8109A640: int_sum_radio02_v
- 0x8109A8C0: int_sum_radio02_on_model
- 0x8109A940: int_sum_radio02_onT_model
- 0x8109AA00: int_sum_raigyo_glass_pic_ci4_pal
- 0x8109AA20: int_sum_raigyo_body_txt
- 0x8109AE20: int_sum_raigyo_side_txt
- 0x8109B020: int_sum_raigyo_base_txt
- 0x8109B0A0: int_sum_raigyo_top_txt
- 0x8109B1A0: int_sum_raigyo_glass_txt
- 0x8109B220: int_sum_raigyo_v
- 0x8109B590: int_sum_raigyo_sakana_model
- 0x8109B620: int_sum_raigyo_top_model
- 0x8109B678: int_sum_raigyo_evw_model
- 0x8109B6E0: int_sum_raigyo_base_model
- 0x8109B770: cKF_ckcb_r_int_sum_raigyo_tbl
- 0x8109B778: cKF_kn_int_sum_raigyo_tbl
- 0x8109B78C: cKF_c_int_sum_raigyo_tbl
- 0x8109B7A0: cKF_ds_int_sum_raigyo_tbl
- 0x8109B824: cKF_ba_r_int_sum_raigyo
- 0x8109B838: cKF_je_r_int_sum_raigyo_tbl
- 0x8109B874: cKF_bs_r_int_sum_raigyo
- 0x8109B880: int_sum_ratan_bed01_pal
- 0x8109B8A0: int_sum_ratan_bed01_top_tax
- 0x8109BA20: int_sum_ratan_bed01_head_tax
- 0x8109BB20: int_sum_ratan_bed01_side_tax
- 0x8109BD20: int_sum_ratan_bed01_foot_tax
- 0x8109BDA0: int_sum_ratan_bed01_pillow_tax
- 0x8109BEA0: int_sum_ratan_bed01_v
- 0x8109C2A0: int_sum_ratan_bed01_on_model
- 0x8109C360: int_sum_ratan_bed01_onT_model
- 0x8109C400: int_sum_ratan_chest01_pal
- 0x8109C420: int_sum_ratan_chest01_door_tax_txt
- 0x8109C4A0: int_sum_ratan_chest01_top_tax_txt
- 0x8109C5A0: int_sum_ratan_chest01_front_tax_txt
- 0x8109C720: int_sum_ratan_chest01_back_tax_txt
- 0x8109C8A0: int_sum_ratan_chest01_side_tax_txt
- 0x8109CA20: int_sum_ratan_chest01_v
- 0x8109CD60: int_sum_ratan_chest01_door_model
- 0x8109CDF0: int_sum_ratan_chest01_base_model
- 0x8109CEA0: cKF_ckcb_r_int_sum_ratan_chest01_tbl
- 0x8109CEA4: cKF_kn_int_sum_ratan_chest01_tbl
- 0x8109CEB8: cKF_c_int_sum_ratan_chest01_tbl
- 0x8109CEC0: cKF_ds_int_sum_ratan_chest01_tbl
- 0x8109CF2C: cKF_ba_r_int_sum_ratan_chest01
- 0x8109CF40: cKF_je_r_int_sum_ratan_chest01_tbl
- 0x8109CF64: cKF_bs_r_int_sum_ratan_chest01
- 0x8109CF80: int_sum_ratan_chest02_pal
- 0x8109CFA0: int_sum_ratan_chest02_hiki_tax_txt
- 0x8109D0A0: int_sum_ratan_chest02_intop_tax_txt
- 0x8109D120: int_sum_ratan_chest02_top_tax_txt
- 0x8109D1A0: int_sum_ratan_chest02_back_tax_txt
- 0x8109D320: int_sum_ratan_chest02_front_tax_txt
- 0x8109D620: int_sum_ratan_chest02_v
- 0x8109D980: int_sum_ratan_chest02_doorL_model
- 0x8109DA00: int_sum_ratan_chest02_base_model
- 0x8109DAD0: int_sum_ratan_chest02_doorR_model
- 0x8109DB50: cKF_ckcb_r_int_sum_ratan_chest02_tbl
- 0x8109DB58: cKF_kn_int_sum_ratan_chest02_tbl
- 0x8109DB70: cKF_c_int_sum_ratan_chest02_tbl
- 0x8109DB7C: cKF_ds_int_sum_ratan_chest02_tbl
- 0x8109DC18: cKF_ba_r_int_sum_ratan_chest02
- 0x8109DC2C: cKF_je_r_int_sum_ratan_chest02_tbl
- 0x8109DC68: cKF_bs_r_int_sum_ratan_chest02
- 0x8109DC80: int_sum_ratan_chest03_pal
- 0x8109DCA0: int_sum_ratan_chest03_front_tax
- 0x8109E0A0: int_sum_ratan_chest03_side_tax
- 0x8109E1A0: int_sum_ratan_chest03_top_tax
- 0x8109E2A0: int_sum_ratan_chest03_book_tax
- 0x8109E3A0: int_sum_ratan_chest03_book2_tax
- 0x8109E420: int_sum_ratan_chest03_v
- 0x8109E800: int_sum_ratan_chest03_on_model
- 0x8109E8A0: int_sum_ratan_chest03_onT_model
- 0x8109E960: int_sum_ratan_isu01_pal
- 0x8109E980: int_sum_ratan_isu01_seat_tax
- 0x8109EA80: int_sum_ratan_isu01_back_tax
- 0x8109EB80: int_sum_ratan_isu01_board_tax
- 0x8109EC80: int_sum_ratan_isu01_side_tax
- 0x8109ED80: int_sum_ratan_isu01_outside_tax
- 0x8109EE80: int_sum_ratan_isu01_sidein_tax
- 0x8109EF80: int_sum_ratan_isu01_foot_tax
- 0x8109F000: int_sum_ratan_isu01_v
- 0x8109F460: int_sum_ratan_isu01_on_model
- 0x8109F550: int_sum_ratan_isu01_onT_model
- 0x8109F5E0: int_sum_ratan_isu02_pal
- 0x8109F600: int_sum_ratan_isu02_seat_tex
- 0x8109F900: int_sum_ratan_isu02_back_tex
- 0x8109FA00: int_sum_ratan_isu02_foot_tex
- 0x8109FB00: int_sum_ratan_isu02_top_tex
- 0x8109FC00: int_sum_ratan_isu02_v
- 0x810A00A0: int_sum_ratan_isu02_on_model
- 0x810A0130: int_sum_ratan_isu02_onT_model
- 0x810A01E0: int_sum_ratan_lanp_pal
- 0x810A0200: int_sum_ratan_lanp_kasa_tax
- 0x810A0300: int_sum_ratan_lanp_stand_tax
- 0x810A0400: int_sum_ratan_lanp_base_tax
- 0x810A0500: int_sum_ratan_lanp_basetop_tax
- 0x810A0580: int_sum_ratan_lanp_hiki_tax
- 0x810A0600: int_sum_ratan_lanp_v
- 0x810A0880: int_sum_ratan_lanp_off_model
- 0x810A0908: int_sum_ratan_lanp_offT_model
- 0x810A09C0: int_sum_ratan_mirror_pal
- 0x810A09E0: int_sum_ratan_mirror_grass_tex_rgb_ci4_pal
- 0x810A0A00: int_sum_ratan_mirror_table_tex
- 0x810A0A80: int_sum_ratan_mirror_head_tex
- 0x810A0B80: int_sum_ratan_mirror_front_tex
- 0x810A0D80: int_sum_ratan_mirror_back_tex
- 0x810A0F80: int_sum_ratan_mirror_side_tex
- 0x810A1000: int_sum_ratan_mirror_bin_tex
- 0x810A1080: int_sum_ratan_mirror_grass_tex
- 0x810A1180: int_sum_ratan_mirror_v
- 0x810A1500: int_sum_ratan_mirror_on_model
- 0x810A15B0: int_sum_ratan_mirror_evw_model
- 0x810A1608: int_sum_ratan_mirror_onT_model
- 0x810A16E0: int_sum_ratan_screen_pal
- 0x810A1700: int_sum_ratan_screen_front_tex
- 0x810A1900: int_sum_ratan_screen_v
- 0x810A19E0: int_sum_ratan_screen_onT_model
- 0x810A1A80: int_sum_ratan_table01_pal
- 0x810A1AA0: int_sum_ratan_table01_grass_tex_rgb_ci4_pal
- 0x810A1AC0: int_sum_ratan_table01_front_tex
- 0x810A1CC0: int_sum_ratan_table01_side_tex
- 0x810A1DC0: int_sum_ratan_table01_top_tex
- 0x810A1EC0: int_sum_ratan_table01_grass_tex
- 0x810A1F40: int_sum_ratan_table01_v
- 0x810A2100: int_sum_ratan_table01_onT_model
- 0x810A21A8: int_sum_ratan_table01_evwT_model
- 0x810A2200: int_sum_reco01_pal
- 0x810A2220: int_sum_reco01_recotop_tex_txt
- 0x810A2420: int_sum_reco01_front_tex_txt
- 0x810A2820: int_sum_reco01_side_tex_txt
- 0x810A29A0: int_sum_reco01_v
- 0x810A2BE0: int_sum_reco01_yellow_model
- 0x810A2C40: int_sum_reco01_base_model
- 0x810A2CC8: int_sum_reco01_red_model
- 0x810A2D28: cKF_ckcb_r_int_sum_reco01_tbl
- 0x810A2D30: cKF_kn_int_sum_reco01_tbl
- 0x810A2D48: cKF_c_int_sum_reco01_tbl
- 0x810A2D54: cKF_ds_int_sum_reco01_tbl
- 0x810A2DE4: cKF_ba_r_int_sum_reco01
- 0x810A2DF8: cKF_je_r_int_sum_reco01_tbl
- 0x810A2E34: cKF_bs_r_int_sum_reco01
- 0x810A2E40: int_roboclk_pal
- 0x810A2E60: int_sum_roboclk_hari_tex_txt
- 0x810A2EE0: int_sum_roboclk_eye1_TA_tex_txt
- 0x810A2F60: int_sum_roboclk_eye2_TA_tex_txt
- 0x810A2FE0: int_sum_roboclk_top_tex_txt
- 0x810A3060: int_sum_roboclk_base_tex_txt
- 0x810A30E0: int_sum_roboclk_front_tex_txt
- 0x810A34E0: int_sum_roboclk_antena_tex_txt
- 0x810A3560: int_sum_roboclk_head_tex_txt
- 0x810A35E0: int_sum_roboclk_hand_tex_txt
- 0x810A3660: int_sum_roboclk_arm_tex_txt
- 0x810A36E0: int_sum_roboclk_v
- 0x810A3CF0: int_sum_roboclk_short_model
- 0x810A3D48: int_sum_roboclk_base_model
- 0x810A3ED0: int_sum_roboclk_long_model
- 0x810A3F28: cKF_ckcb_r_int_sum_roboclk_tbl
- 0x810A3F30: cKF_c_int_sum_roboclk_tbl
- 0x810A3F54: cKF_ba_r_int_sum_roboclk
- 0x810A3F68: cKF_je_r_int_sum_roboclk_tbl
- 0x810A3FA4: cKF_bs_r_int_sum_roboclk
- 0x810A3FC0: int_roboconpo_pal
- 0x810A3FE0: int_sum_roboconpo_stand_tex_txt
- 0x810A4060: int_sum_roboconpo_body_tex_txt
- 0x810A4460: int_sum_roboconpo_spika_tex_txt
- 0x810A4560: int_sum_roboconpo_top_tex_txt
- 0x810A4660: int_sum_roboconpo_face1_TA_tex_txt
- 0x810A46E0: int_sum_roboconpo_face2_TA_tex_txt
- 0x810A4760: int_sum_roboconpo_hed_tex_txt
- 0x810A47E0: int_sum_roboconpo_neck_tex_txt
- 0x810A4860: int_sum_roboconpo_v
- 0x810A4D50: int_sum_roboconpo_on_model
- 0x810A4EA8: cKF_ckcb_r_int_sum_roboconpo_tbl
- 0x810A4EAC: cKF_c_int_sum_roboconpo_tbl
- 0x810A4EB8: cKF_ba_r_int_sum_roboconpo
- 0x810A4ECC: cKF_je_r_int_sum_roboconpo_tbl
- 0x810A4ED8: cKF_bs_r_int_sum_roboconpo
- 0x810A4EE0: int_sum_sabo01_pal
- 0x810A4F00: int_sum_sabo01_main_tex
- 0x810A5300: int_sum_sabo01_hachi_tex
- 0x810A5400: int_sum_sabo01_tuchi_tex
- 0x810A5500: int_sum_sabo01_v
- 0x810A5720: int_sum_sabo01_on_model
- 0x810A5780: int_sum_sabo01_onT_model
- 0x810A5800: int_sum_sabo02_pal
- 0x810A5820: int_sum_sabo02_main_tex
- 0x810A5A20: int_sum_sabo02_hachi_tex
- 0x810A5B20: int_sum_sabo02_tuchi_tex
- 0x810A5C20: int_sum_sabo02_hana_tex
- 0x810A5CA0: int_sum_sabo02_v
- 0x810A5EF0: int_sum_sabo02_on_model
- 0x810A5F50: int_sum_sabo02_onT_model
- 0x810A6000: int_saiconpo_pal
- 0x810A6020: int_sum_saiconpo_body_tex
- 0x810A64A0: int_sum_saiconpo_side_tex
- 0x810A65A0: int_sum_saiconpo_v
- 0x810A66A0: int_sum_saiconpo_on_model
- 0x810A6740: int_sum_sake_glass_pic_ci4_pal
- 0x810A6760: int_sum_sake_body_txt
- 0x810A6A60: int_sum_sake_side_txt
- 0x810A6C60: int_sum_sake_base_txt
- 0x810A6CE0: int_sum_sake_top_txt
- 0x810A6DE0: int_sum_sake_glass_txt
- 0x810A6EE0: int_sum_sake_v
- 0x810A71B0: int_sum_sake_sakana_model
- 0x810A7220: int_sum_sake_top_model
- 0x810A7278: int_sum_sake_evw_model
- 0x810A72E0: int_sum_sake_base_model
- 0x810A7370: cKF_ckcb_r_int_sum_sake_tbl
- 0x810A7378: cKF_kn_int_sum_sake_tbl
- 0x810A738C: cKF_c_int_sum_sake_tbl
- 0x810A73A0: cKF_ds_int_sum_sake_tbl
- 0x810A7424: cKF_ba_r_int_sum_sake
- 0x810A7438: cKF_je_r_int_sum_sake_tbl
- 0x810A7474: cKF_bs_r_int_sum_sake
- 0x810A7480: int_sum_shiokara_pal
- 0x810A74A0: int_sum_shiokara_hand_pic_ci4_pal
- 0x810A74C0: int_sum_shiokara_side_txt
- 0x810A76C0: int_sum_shiokara_base_txt
- 0x810A7740: int_sum_shiokara_top_txt
- 0x810A7940: int_sum_shiokara_body_txt
- 0x810A7AC0: int_sum_shiokara_hand_txt
- 0x810A7BC0: int_sum_shiokara_v
- 0x810A8010: int_sum_shiokara_side_model
- 0x810A8078: int_sum_shiokara_komado_model
- 0x810A80D0: int_sum_shiokara_glass_model
- 0x810A8138: int_sum_shiokara_base_model
- 0x810A8200: int_sum_shiokara_body_R_model
- 0x810A8258: int_sum_shiokara_body_L_model
- 0x810A82B0: cKF_ckcb_r_int_sum_shiokara_tbl
- 0x810A82B8: cKF_kn_int_sum_shiokara_tbl
- 0x810A82CC: cKF_c_int_sum_shiokara_tbl
- 0x810A82F0: cKF_ds_int_sum_shiokara_tbl
- 0x810A8368: cKF_ba_r_int_sum_shiokara
- 0x810A837C: cKF_je_r_int_sum_shiokara_tbl
- 0x810A83DC: cKF_bs_r_int_sum_shiokara
- 0x810A8400: int_sum_shoukaki_pal
- 0x810A8420: int_sum_shoukaki_front_tex_txt
- 0x810A8620: int_sum_shoukaki_cupside_tex_txt
- 0x810A86A0: int_sum_shoukaki_tube_tex_txt
- 0x810A87A0: int_sum_shoukaki_grip_tex_txt
- 0x810A8820: int_sum_shoukaki_pull_tex_txt
- 0x810A88A0: int_sum_shoukaki_griptop_tex_txt
- 0x810A8920: int_sum_shoukaki_gripdown_tex_txt
- 0x810A89A0: int_sum_shoukaki_v
- 0x810A8DC0: int_sum_shoukaki_model
- 0x810A8F40: int_sum_slot_pal
- 0x810A8F60: int_sum_slot_reel1_TA_tex_txt
- 0x810A9060: int_sum_slot_reel2_TA_tex_txt
- 0x810A9160: int_sum_slot_leverbase_tex_txt
- 0x810A9260: int_sum_slot_lever_tex_txt
- 0x810A9360: int_sum_slot_side_tex_txt
- 0x810A9460: int_sum_slot_front_tex_txt
- 0x810A9760: int_sum_slot_foot_tex_txt
- 0x810A9860: int_sum_slot_v
- 0x810A9CD0: int_sum_slot_reel_model
- 0x810A9D48: int_sum_slot_base_model
- 0x810A9E98: int_sum_slot_lever_model
- 0x810A9EF0: cKF_ckcb_r_int_sum_slot_tbl
- 0x810A9EF8: cKF_kn_int_sum_slot_tbl
- 0x810A9EFC: cKF_c_int_sum_slot_tbl
- 0x810A9F1C: cKF_ds_int_sum_slot_tbl
- 0x810A9F84: cKF_ba_r_int_sum_slot
- 0x810A9F98: cKF_je_r_int_sum_slot_tbl
- 0x810A9FD4: cKF_bs_r_int_sum_slot
- 0x810AA020: int_sum_sofe01_back_txt
- 0x810AA4A0: int_sum_sofe01_front_txt
- 0x810AA820: int_sum_sofe01_v
- 0x810AAC30: int_sum_sofe01_on_model
- 0x810AAD60: int_sum_sofe02_pal
- 0x810AADC0: int_sum_sofe02_back_txt
- 0x810AB3C0: int_sum_sofe02_front_txt
- 0x810AB5C0: int_sum_sofe02_v
- 0x810ABA30: int_sum_sofe02_on_model
- 0x810ABB80: int_sum_sofe03_pal
- 0x810ABBA0: int_sum_sofe03_backside_txt
- 0x810ABDA0: int_sum_sofe03_front_txt
- 0x810ABFA0: int_sum_sofe03_side_txt
- 0x810AC1A0: int_sum_sofe03_hijikake_txt
- 0x810AC2A0: int_sum_sofe03_foot_txt
- 0x810AC3A0: int_sum_sofe03_v
- 0x810AC740: int_sum_sofe03_on_model
- 0x810AC828: int_sum_sofe03_onT_model
- 0x810AC8A0: int_sum_stereo01_pal
- 0x810AC8C0: int_sum_stereo01_top
- 0x810AC9C0: int_sum_stereo01_front
- 0x810ACDC0: int_sum_stereo01_back
- 0x810ACEC0: int_sum_stereo01_side
- 0x810ACF40: int_sum_stereo01_foot
- 0x810ACFC0: int_sum_stereo01_record
- 0x810AD040: int_sum_stereo01_armrest
- 0x810AD0C0: int_sum_stereo01_v
- 0x810AD590: int_sum_stereo01_on_model
- 0x810AD670: int_sum_stereo01_onT_model
- 0x810AD760: int_sum_stereo02_pal
- 0x810AD780: int_sum_stereo02_front_tex
- 0x810ADB80: int_sum_stereo02_side_tex
- 0x810ADD80: int_sum_stereo02_top_tex
- 0x810ADE80: int_sum_stereo02_s_side_tex
- 0x810ADF80: int_sum_stereo02_v
- 0x810AE340: int_sum_stereo02_on_model
- 0x810AE440: int_sum_stove01_pal
- 0x810AE460: int_sum_stove01_top
- 0x810AE4E0: int_sum_stove01_side
- 0x810AE7E0: int_sum_stove01_net
- 0x810AE860: int_sum_stove01_douwn
- 0x810AE8E0: int_sum_stove01_side2
- 0x810AE960: int_sum_stove01_top2
- 0x810AE9E0: int_sum_stove01_side3
- 0x810AEA20: int_sum_stove01_swich
- 0x810AEAA0: int_sum_stove01_fire
- 0x810AEB20: int_sum_stove01_v
- 0x810AEF50: int_sum_stove01_on_model
- 0x810AEFE8: int_sum_stove01_onT_model
- 0x810AF0E0: int_sum_stove_offT_model
- 0x810AF140: int_sum_suberi01_pal
- 0x810AF160: int_sum_suberi01_side_tex
- 0x810AF560: int_sum_suberi01_dan_tex
- 0x810AF660: int_sum_suberi01_danue_tex
- 0x810AF6E0: int_sum_suberi01_suberu_tex
- 0x810AF7E0: int_sum_suberi01_danyoko_tex
- 0x810AF820: int_sum_suberi01_v
- 0x810AFC60: int_sum_suberi01_on_model
- 0x810AFD48: int_sum_suberi01_onT_model
- 0x810AFDC0: int_sum_suzumushi_pal
- 0x810AFDE0: int_sum_suzumushi_hand_pic_ci4_pal
- 0x810AFE00: int_sum_suzumushi_base_txt
- 0x810AFE80: int_sum_suzumushi_top_txt
- 0x810B0080: int_sum_suzumushi_side_txt
- 0x810B0280: int_sum_suzumushi_body_txt
- 0x810B0480: int_sum_suzumushi_hand_txt
- 0x810B0580: int_sum_suzumushi_v
- 0x810B09C0: int_sum_suzumushi_side_model
- 0x810B0A28: int_sum_suzumushi_komado_model
- 0x810B0A80: int_sum_suzumushi_glass_model
- 0x810B0AE8: int_sum_suzumushi_base_model
- 0x810B0B80: int_sum_suzumushi_body_model
- 0x810B0BE8: int_sum_suzumushi_body_R_model
- 0x810B0C40: int_sum_suzumushi_body_L_model
- 0x810B0C98: cKF_ckcb_r_int_sum_suzumushi_tbl
- 0x810B0CA4: cKF_kn_int_sum_suzumushi_tbl
- 0x810B0CBC: cKF_c_int_sum_suzumushi_tbl
- 0x810B0CE8: cKF_ds_int_sum_suzumushi_tbl
- 0x810B0DF0: cKF_ba_r_int_sum_suzumushi
- 0x810B0E04: cKF_je_r_int_sum_suzumushi_tbl
- 0x810B0E7C: cKF_bs_r_int_sum_suzumushi
- 0x810B0EA0: int_sum_syouryou_pal
- 0x810B0EC0: int_sum_syouryou_hand_pic_ci4_pal
- 0x810B0EE0: int_sum_syouryou_base_txt
- 0x810B0F60: int_sum_syouryou_top_txt
- 0x810B1160: int_sum_syouryou_side_txt
- 0x810B1360: int_sum_syouryou_body_txt
- 0x810B14E0: int_sum_syouryou_hand_txt
- 0x810B15E0: int_sum_syouryou_v
- 0x810B19C0: int_sum_syouryou_side_model
- 0x810B1A28: int_sum_syouryou_komado_model
- 0x810B1A80: int_sum_syouryou_glass_model
- 0x810B1AE8: int_sum_syouryou_base_model
- 0x810B1B88: int_sum_syouryou_body_model
- 0x810B1BE8: int_sum_syouryou_body_R_model
- 0x810B1C40: int_sum_syouryou_body_L_model
- 0x810B1C98: cKF_ckcb_r_int_sum_syouryou_tbl
- 0x810B1CA4: cKF_kn_int_sum_syouryou_tbl
- 0x810B1CBC: cKF_c_int_sum_syouryou_tbl
- 0x810B1CE8: cKF_ds_int_sum_syouryou_tbl
- 0x810B1E28: cKF_ba_r_int_sum_syouryou
- 0x810B1E3C: cKF_je_r_int_sum_syouryou_tbl
- 0x810B1EB4: cKF_bs_r_int_sum_syouryou
- 0x810B1EC0: int_sum_taiko01_pal
- 0x810B1EE0: int_sum_taiko01_foot_txt_txt
- 0x810B1F60: int_sum_taiko01_standside_txt_txt
- 0x810B20E0: int_sum_taiko01_standfront_txt_txt
- 0x810B2260: int_sum_taiko01_side_txt_txt
- 0x810B2560: int_sum_taiko01_front_txt_txt
- 0x810B2660: int_sum_taiko01_v
- 0x810B29D0: int_sum_taiko01_on_model
- 0x810B2B20: int_sum_takkyu_pal
- 0x810B2B40: int_sum_takkyu_top_tex
- 0x810B2D40: int_sum_takkyu_net_tex
- 0x810B2E40: int_sum_takkyu_foot_tex
- 0x810B2F40: int_sum_takkyu_foot02_tex
- 0x810B3040: int_sum_takkyu_bat_tex
- 0x810B3140: int_sum_takkyu_ball_tex
- 0x810B31C0: int_sum_takkyu_v
- 0x810B3610: int_sum_takkyu_on_model
- 0x810B3678: int_sum_takkyu_onT_model
- 0x810B3780: int_sum_tamamushi_pal
- 0x810B37A0: int_sum_tamamushi_hand_pic_ci4_pal
- 0x810B37C0: int_sum_tamamushi_base_txt
- 0x810B3840: int_sum_tamamushi_top_txt
- 0x810B3A40: int_sum_tamamushi_side_txt
- 0x810B3C40: int_sum_tamamushi_body_txt
- 0x810B3D40: int_sum_tamamushi_hand_txt
- 0x810B3E40: int_sum_tamamushi_v
- 0x810B41E0: int_sum_tamamushi_side_model
- 0x810B4248: int_sum_tamamushi_komado_model
- 0x810B42A0: int_sum_tamamushi_glass_model
- 0x810B4308: int_sum_tamamushi_base_model
- 0x810B43A8: int_sum_tamamushi_body_model
- 0x810B4410: cKF_ckcb_r_int_sum_tamamushi_tbl
- 0x810B4418: cKF_kn_int_sum_tamamushi_tbl
- 0x810B4420: cKF_c_int_sum_tamamushi_tbl
- 0x810B4444: cKF_ds_int_sum_tamamushi_tbl
- 0x810B44DC: cKF_ba_r_int_sum_tamamushi
- 0x810B44F0: cKF_je_r_int_sum_tamamushi_tbl
- 0x810B4538: cKF_bs_r_int_sum_tamamushi
- 0x810B4560: int_sum_tanago_glass_pic_ci4_pal
- 0x810B4580: int_sum_tanago_body_txt
- 0x810B4780: int_sum_tanago_side_txt
- 0x810B4980: int_sum_tanago_base_txt
- 0x810B4A00: int_sum_tanago_etc_txt
- 0x810B4A80: int_sum_tanago_top_txt
- 0x810B4B80: int_sum_tanago_glass_txt
- 0x810B4C80: int_sum_tanago_v
- 0x810B4FF0: int_sum_tanago_sakana_model
- 0x810B5060: int_sum_tanago_top_model
- 0x810B50B8: int_sum_tanago_evw_model
- 0x810B5120: int_sum_tanago_base_model
- 0x810B51C8: cKF_ckcb_r_int_sum_tanago_tbl
- 0x810B51D0: cKF_kn_int_sum_tanago_tbl
- 0x810B51E4: cKF_c_int_sum_tanago_tbl
- 0x810B51F8: cKF_ds_int_sum_tanago_tbl
- 0x810B5290: cKF_ba_r_int_sum_tanago
- 0x810B52A4: cKF_je_r_int_sum_tanago_tbl
- 0x810B52E0: cKF_bs_r_int_sum_tanago
- 0x810B5300: it_sum_taru01_pal
- 0x810B5320: int_sum_taru01_side_tex
- 0x810B5520: int_sum_taru01_top_tex
- 0x810B5920: int_sum_taru01_sentop_tex
- 0x810B59A0: int_sum_taru01_v
- 0x810B5CC0: int_sum_taru01_onT_model
- 0x810B5DC0: it_sum_taru02_pal
- 0x810B5DE0: int_sum_taru02_side_tex
- 0x810B5FE0: int_sum_taru02_top_tex
- 0x810B63E0: int_sum_taru02_sentop_tex
- 0x810B6460: int_sum_taru02_v
- 0x810B6780: int_sum_taru02_onT_model
- 0x810B6880: int_sum_tekin01_pal
- 0x810B68A0: int_sum_tekin01_front_tex
- 0x810B69A0: int_sum_tekin01_top_tex
- 0x810B6BA0: int_sum_tekin01_side_tex
- 0x810B6CA0: int_sum_tekin01_tube_tex
- 0x810B6DA0: int_sum_tekin01_stand_tex
- 0x810B6E20: int_sum_tekin01_onlytube_tex
- 0x810B6E60: int_sum_tekin01_koro_tex
- 0x810B6EE0: int_sum_tekin01_pedal_tex
- 0x810B6F20: int_sum_tekin01_sen_tex
- 0x810B6FA0: int_sum_tekin01_beat_tex
- 0x810B70A0: int_sum_tekin01_v
- 0x810B75F0: int_sum_tekin01_onT_model
- 0x810B77A0: int_sum_tentou_pal
- 0x810B77C0: int_sum_tentou_hand_pic_ci4_pal
- 0x810B77E0: int_sum_tentou_base_txt
- 0x810B7860: int_sum_tentou_top_txt
- 0x810B7A60: int_sum_tentou_side_txt
- 0x810B7C60: int_sum_tentou_body_txt
- 0x810B7D60: int_sum_tentou_hand_txt
- 0x810B7E60: int_sum_tentou_v
- 0x810B8230: int_sum_tentou_side_model
- 0x810B8298: int_sum_tentou_komado_model
- 0x810B82F0: int_sum_tentou_glass_model
- 0x810B8358: int_sum_tentou_base_model
- 0x810B83F8: int_sum_tentou_body_model
- 0x810B8458: cKF_ckcb_r_int_sum_tentou_tbl
- 0x810B8460: cKF_kn_int_sum_tentou_tbl
- 0x810B846C: cKF_c_int_sum_tentou_tbl
- 0x810B848C: cKF_ds_int_sum_tentou_tbl
- 0x810B8530: cKF_ba_r_int_sum_tentou
- 0x810B8544: cKF_je_r_int_sum_tentou_tbl
- 0x810B858C: cKF_bs_r_int_sum_tentou
- 0x810B85A0: int_sum_timpani01_pal
- 0x810B85C0: int_sum_timpani01_legtop_tex_txt
- 0x810B8640: int_sum_timpani01_top_tex_txt
- 0x810B8840: int_sum_timpani01_leg_tex_txt
- 0x810B89C0: int_sum_timpani01_pedal_tex_txt
- 0x810B8AC0: int_sum_timpani01_crown_tex_txt
- 0x810B8CC0: int_sum_timpani01_side_tex_txt
- 0x810B8DC0: int_sum_timpani01_v
- 0x810B92C0: int_sum_timpani01_on_model
- 0x810B9420: int_sum_tonosama_pal
- 0x810B9440: int_sum_tonosama_hand_pic_ci4_pal
- 0x810B9460: int_sum_tonosama_base_txt
- 0x810B94E0: int_sum_tonosama_top_txt
- 0x810B96E0: int_sum_tonosama_side_txt
- 0x810B98E0: int_sum_tonosama_body_txt
- 0x810B9A60: int_sum_tonosama_hand_txt
- 0x810B9B60: int_sum_tonosama_v
- 0x810B9F70: int_sum_tonosama_side_model
- 0x810B9FD8: int_sum_tonosama_komado_model
- 0x810BA030: int_sum_tonosama_glass_model
- 0x810BA098: int_sum_tonosama_base_model
- 0x810BA138: int_sum_tonosama_body_model
- 0x810BA198: int_sum_tonosama_body_R_model
- 0x810BA1F0: int_sum_tonosama_body_L_model
- 0x810BA248: cKF_ckcb_r_int_sum_tonosama_tbl
- 0x810BA254: cKF_kn_int_sum_tonosama_tbl
- 0x810BA26C: cKF_c_int_sum_tonosama_tbl
- 0x810BA298: cKF_ds_int_sum_tonosama_tbl
- 0x810BA3CC: cKF_ba_r_int_sum_tonosama
- 0x810BA3E0: cKF_je_r_int_sum_tonosama_tbl
- 0x810BA458: cKF_bs_r_int_sum_tonosama
- 0x810BA460: int_sum_totemp01_pal
- 0x810BA480: int_sum_totemp01_beak_txt
- 0x810BA4C0: int_sum_totemp01_front_txt
- 0x810BA7C0: int_sum_totemp01_wing_txt
- 0x810BA8C0: int_sum_totemp01_side_txt
- 0x810BABC0: int_sum_totemp01_top_txt
- 0x810BAC40: int_sum_totemp01_v
- 0x810BAEE0: int_sum_totemp01_on_model
- 0x810BAFA0: int_sum_totemp01_onT_model
- 0x810BB020: int_sum_totemp02_pal
- 0x810BB040: int_sum_totemp02_beak_txt
- 0x810BB140: int_sum_totemp02_front_txt
- 0x810BB440: int_sum_totemp02_wing_txt
- 0x810BB4C0: int_sum_totemp02_side_txt
- 0x810BB7C0: int_sum_totemp02_top_txt
- 0x810BB840: int_sum_totemp02_v
- 0x810BBAE0: int_sum_totemp02_on_model
- 0x810BBBA0: int_sum_totemp02_onT_model
- 0x810BBC20: int_sum_totemp03_pal
- 0x810BBC40: int_sum_totemp03_beak_txt
- 0x810BBD40: int_sum_totemp03_front_txt
- 0x810BC040: int_sum_totemp03_wing_txt
- 0x810BC0C0: int_sum_totemp03_side_txt
- 0x810BC3C0: int_sum_totemp03_top_txt
- 0x810BC440: int_sum_totemp03_v
- 0x810BC720: int_sum_totemp03_on_model
- 0x810BC7C8: int_sum_totemp03_onT_model
- 0x810BC860: int_sum_totemp04_pal
- 0x810BC880: int_sum_totemp04_front_txt
- 0x810BCB80: int_sum_totemp04_side_txt
- 0x810BCE80: int_sum_totemp04_top_txt
- 0x810BCF00: int_sum_totemp04_wing_txt
- 0x810BD000: int_sum_totemp04_v
- 0x810BD260: int_sum_totemp04_on_model
- 0x810BD308: int_sum_totemp04_onT_model
- 0x810BD380: int_sum_touro01_pal
- 0x810BD3A0: int_sum_touro01_mado_tex
- 0x810BD4A0: int_sum_touro01_madodown_tex
- 0x810BD520: int_sum_touro01_stand_tex
- 0x810BD720: int_sum_touro01_madotop_tex
- 0x810BD7A0: int_sum_touro01_yanetop_tex
- 0x810BD8A0: int_sum_touro01_kazari_tex
- 0x810BD920: int_sum_touro01_yane_tex
- 0x810BD9A0: int_sum_touro01_v
- 0x810BDDF0: int_sum_touro01_on_model
- 0x810BDEA8: int_sum_touro01_onT_model
- 0x810BDFA0: int_sum_touro02_pal
- 0x810BDFC0: int_sum_touro02_mado_tex
- 0x810BE0C0: int_sum_touro02_madoyoko_tex
- 0x810BE1C0: int_sum_touro02_madosita_tex
- 0x810BE240: int_sum_touro02_madomaru_tex
- 0x810BE340: int_sum_touro02_madotop_tex
- 0x810BE3C0: int_sum_touro02_topside_tex
- 0x810BE4C0: int_sum_touro02_topout_tex
- 0x810BE540: int_sum_touro02_stand_tex
- 0x810BE640: int_sum_touro02_dai_tex
- 0x810BE740: int_sum_touro02_kazari_tex
- 0x810BE7C0: int_sum_touro02_v
- 0x810BECC0: int_sum_touro02_on_model
- 0x810BED40: int_sum_touro02_onT_model
- 0x810BEEC0: int_sum_touro03_pal
- 0x810BEEE0: int_sum_touro03_madoside_tex
- 0x810BEF60: int_sum_touro03_mado_tex
- 0x810BF060: int_sum_touro03_yanetop_tex
- 0x810BF0E0: int_sum_touro03_standup_tex
- 0x810BF160: int_sum_touro03_kazari_tex
- 0x810BF1E0: int_sum_touro03_yane_tex
- 0x810BF2E0: int_sum_touro03_foot_tex
- 0x810BF4E0: int_sum_touro03_footop_tex
- 0x810BF5E0: int_sum_touro03_kazaritop_tex
- 0x810BF660: int_sum_touro03_madotop_tex
- 0x810BF6E0: int_sum_touro03_v
- 0x810BFC50: int_sum_touro03_on_model
- 0x810BFCF8: int_sum_touro03_onT_model
- 0x810BFE20: int_sum_touro04_pal
- 0x810BFE40: int_sum_touro04_mado_tex
- 0x810BFF40: int_sum_touro04_yane_tex
- 0x810C0040: int_sum_touro04_madosita_tex
- 0x810C00C0: int_sum_touro04_madotop_tex
- 0x810C0140: int_sum_touro04_stand_tex
- 0x810C01C0: int_sum_touro04_base_tex
- 0x810C03C0: int_sum_touro04_dan_tex
- 0x810C04C0: int_sum_touro04_dantop_tex
- 0x810C0540: int_sum_touro04_kazari_tex
- 0x810C0640: int_sum_touro04_v
- 0x810C0B90: int_sum_touro04_on_model
- 0x810C0C28: int_sum_touro04_onT_model
- 0x810C0D60: int_sum_tukutuku_pal
- 0x810C0D80: int_sum_tukutuku_hand_pic_ci4_pal
- 0x810C0DA0: int_sum_tukutuku_side_txt
- 0x810C0FA0: int_sum_tukutuku_base_txt
- 0x810C1020: int_sum_tukutuku_top_txt
- 0x810C1220: int_sum_tukutuku_body_txt
- 0x810C1420: int_sum_tukutuku_hand_txt
- 0x810C1520: int_sum_tukutuku_v
- 0x810C1990: int_sum_tukutuku_side_model
- 0x810C19F8: int_sum_tukutuku_komado_model
- 0x810C1A50: int_sum_tukutuku_glass_model
- 0x810C1AB8: int_sum_tukutuku_base_model
- 0x810C1B88: int_sum_tukutuku_body_R_model
- 0x810C1BE0: int_sum_tukutuku_body_L_model
- 0x810C1C38: cKF_ckcb_r_int_sum_tukutuku_tbl
- 0x810C1C40: cKF_kn_int_sum_tukutuku_tbl
- 0x810C1C54: cKF_c_int_sum_tukutuku_tbl
- 0x810C1C78: cKF_ds_int_sum_tukutuku_tbl
- 0x810C1F48: cKF_ba_r_int_sum_tukutuku
- 0x810C1F5C: cKF_je_r_int_sum_tukutuku_tbl
- 0x810C1FBC: cKF_bs_r_int_sum_tukutuku
- 0x810C1FE0: int_sum_tv01_pal
- 0x810C2000: int_sum_tv01_front1_TA_tex_txt
- 0x810C2080: int_sum_tv01_front2_TA_tex_txt
- 0x810C2100: int_sum_tv01_front3_TA_tex_txt
- 0x810C2180: int_sum_tv01_front4_TA_tex_txt
- 0x810C2200: int_sum_tv01_foot_tex_txt
- 0x810C2300: int_sum_tv01_front_tex_txt
- 0x810C2500: int_sum_tv01_back_tex_txt
- 0x810C2600: int_sum_tv01_side_tex_txt
- 0x810C2700: int_sum_tv01_top_tex_txt
- 0x810C2800: int_sum_tv01_v
- 0x810C2AC0: int_sum_tv01_on_model
- 0x810C2BC0: int_sum_tv01_off_model
- 0x810C2C20: int_sum_tv02_pal
- 0x810C2C40: int_sum_tv02_front1_TA_tex_txt
- 0x810C2CC0: int_sum_tv02_front2_TA_tex_txt
- 0x810C2D40: int_sum_tv02_front3_TA_tex_txt
- 0x810C2DC0: int_sum_tv02_koro_tex_txt
- 0x810C2EC0: int_sum_tv02_shelfback_tex_txt
- 0x810C2F40: int_sum_tv02_shelffront_tex_txt
- 0x810C3040: int_sum_tv02_back_tex_txt
- 0x810C30C0: int_sum_tv02_side_tex_txt
- 0x810C32C0: int_sum_tv02_front_tex_txt
- 0x810C34C0: int_sum_tv02_video_tex_txt
- 0x810C3540: int_sum_tv02_v
- 0x810C3A20: int_sum_tv02_on_model
- 0x810C3BD8: int_sum_tv02_off_model
- 0x810C3C60: int_sum_ugui_glass_pic_ci4_pal
- 0x810C3C80: int_sum_ugui_body_txt
- 0x810C3F80: int_sum_ugui_side_txt
- 0x810C4180: int_sum_ugui_base_txt
- 0x810C4200: int_sum_ugui_top_txt
- 0x810C4300: int_sum_ugui_glass_txt
- 0x810C4400: int_sum_ugui_v
- 0x810C46D0: int_sum_ugui_sakana_model
- 0x810C4740: int_sum_ugui_top_model
- 0x810C4798: int_sum_ugui_evw_model
- 0x810C4800: int_sum_ugui_base_model
- 0x810C4890: cKF_ckcb_r_int_sum_ugui_tbl
- 0x810C4898: cKF_kn_int_sum_ugui_tbl
- 0x810C48AC: cKF_c_int_sum_ugui_tbl
- 0x810C48C0: cKF_ds_int_sum_ugui_tbl
- 0x810C4958: cKF_ba_r_int_sum_ugui
- 0x810C496C: cKF_je_r_int_sum_ugui_tbl
- 0x810C49A8: cKF_bs_r_int_sum_ugui
- 0x810C49E0: int_sum_unagi_glass_pic_ci4_pal
- 0x810C4A00: int_sum_unagi_body_txt
- 0x810C4C00: int_sum_unagi_side_txt
- 0x810C4E00: int_sum_unagi_base_txt
- 0x810C4E80: int_sum_unagi_top_txt
- 0x810C4F80: int_sum_unagi_glass_txt
- 0x810C5080: int_sum_unagi_v
- 0x810C5350: int_sum_unagi_sakana_model
- 0x810C53C0: int_sum_unagi_top_model
- 0x810C5418: int_sum_unagi_evw_model
- 0x810C5480: int_sum_unagi_base_model
- 0x810C5510: cKF_ckcb_r_int_sum_unagi_tbl
- 0x810C5518: cKF_kn_int_sum_unagi_tbl
- 0x810C552C: cKF_c_int_sum_unagi_tbl
- 0x810C5540: cKF_ds_int_sum_unagi_tbl
- 0x810C55D0: cKF_ba_r_int_sum_unagi
- 0x810C55E4: cKF_je_r_int_sum_unagi_tbl
- 0x810C5620: cKF_bs_r_int_sum_unagi
- 0x810C5640: int_sum_uwa_cup01_pal
- 0x810C5660: int_sum_uwa_cup01_side
- 0x810C5760: int_sum_uwa_cup01_tote
- 0x810C5860: int_sum_uwa_cup01_kuchi
- 0x810C58E0: int_sum_uwa_cup01_cup
- 0x810C5960: int_sum_uwa_cup01_top
- 0x810C59E0: int_sum_uwa_cup01_cuptote
- 0x810C5A60: int_sum_uwa_cup01_base
- 0x810C5B60: int_sum_uwa_cup01_v
- 0x810C5FB0: int_sum_uwa_cup01_on_model
- 0x810C6048: int_sum_uwa_cup01_onT_model
- 0x810C6160: int_sum_uwa_poto01_pal
- 0x810C6180: int_sum_uwa_poto01_back
- 0x810C6280: int_sum_uwa_poto01_front
- 0x810C6580: int_sum_uwa_poto01_stand
- 0x810C6680: int_sum_uwa_poto01_v
- 0x810C6880: int_sum_uwa_poto01_on_model
- 0x810C6900: int_sum_uwa_poto01_onT_model
- 0x810C6960: int_sum_uwa_vase01_pal
- 0x810C6980: int_sum_uwa_vase01_side
- 0x810C6A80: int_sum_uwa_vase01_red
- 0x810C6B00: int_sum_uwa_vase01_olange
- 0x810C6B80: int_sum_uwa_vase01_top
- 0x810C6C00: int_sum_uwa_vase01_kuki
- 0x810C6D00: int_sum_uwa_vase01_kukiside
- 0x810C6D80: int_sum_uwa_vase01_v
- 0x810C70C0: int_sum_uwa_vase01_on_model
- 0x810C7120: int_sum_uwa_vase01_onT_model
- 0x810C7220: int_sum_uwa_vase02_pal
- 0x810C7240: int_sum_uwa_vase02_side
- 0x810C7340: int_sum_uwa_vase02_frower
- 0x810C7540: int_sum_uwa_vase02_stand
- 0x810C7640: int_sum_uwa_vase02_stand2
- 0x810C7740: int_sum_uwa_vase02_leaf
- 0x810C77C0: int_sum_uwa_vase02_v
- 0x810C7C50: int_sum_uwa_vase02_onT_model
- 0x810C7D60: int_sum_uwa_vase03_pal
- 0x810C7D80: int_sum_uwa_vase03_side
- 0x810C7E80: int_sum_uwa_vase03_kuki
- 0x810C7F80: int_sum_uwa_vase03_leaf
- 0x810C8080: int_sum_uwa_vase03_flawer
- 0x810C8180: int_sum_uwa_vase03_naka
- 0x810C8200: int_sum_uwa_vase03_base
- 0x810C8280: int_sum_uwa_vase03_v
- 0x810C85B0: int_sum_uwa_vase03_on_model
- 0x810C8608: int_sum_uwa_vase03_onT_model
- 0x810C8720: int_sum_viola01_pal
- 0x810C8740: int_sum_viola01_front_tex
- 0x810C8A40: int_sum_viola01_back_tex
- 0x810C8BC0: int_sum_viola01_side_tex
- 0x810C8C40: int_sum_viola01_neck_tex
- 0x810C8D40: int_sum_viola01_neckback_tex
- 0x810C8DC0: int_sum_viola01_hand_tex
- 0x810C8E40: int_sum_viola01_stand_tex
- 0x810C8F40: int_sum_viola01_v
- 0x810C92A0: int_sum_viola01_on_model
- 0x810C9328: int_sum_viola01_onT_model
- 0x810C9440: int_sum_wakasagi_glass_pic_ci4_pal
- 0x810C9460: int_sum_wakasagi_body_txt
- 0x810C9560: int_sum_wakasagi_side_txt
- 0x810C9760: int_sum_wakasagi_base_txt
- 0x810C97E0: int_sum_wakasagi_etc_txt
- 0x810C9860: int_sum_wakasagi_top_txt
- 0x810C9960: int_sum_wakasagi_glass_txt
- 0x810C9A60: int_sum_wakasagi_v
- 0x810C9DD0: int_sum_wakasagi_sakana_model
- 0x810C9E40: int_sum_wakasagi_top_model
- 0x810C9E98: int_sum_wakasagi_evw_model
- 0x810C9F00: int_sum_wakasagi_base_model
- 0x810C9FB8: cKF_ckcb_r_int_sum_wakasagi_tbl
- 0x810C9FC0: cKF_kn_int_sum_wakasagi_tbl
- 0x810C9FD4: cKF_c_int_sum_wakasagi_tbl
- 0x810C9FE8: cKF_ds_int_sum_wakasagi_tbl
- 0x810CA06C: cKF_ba_r_int_sum_wakasagi
- 0x810CA080: cKF_je_r_int_sum_wakasagi_tbl
- 0x810CA0BC: cKF_bs_r_int_sum_wakasagi
- 0x810CA0E0: int_sum_wc01_pal
- 0x810CA100: int_sum_wc01_mizu_tex_rgb_ci4_pal
- 0x810CA120: int_sum_wc01_tankfront_tex
- 0x810CA220: int_sum_wc01_huta_tex
- 0x810CA320: int_sum_wc01_tanktop_tex
- 0x810CA3A0: int_sum_wc01_jyaguchi_tex
- 0x810CA420: int_sum_wc01_tankrevar_tex
- 0x810CA460: int_sum_wc01_paip_tex
- 0x810CA4E0: int_sum_wc01_paipside_tex
- 0x810CA560: int_sum_wc01_base_tex
- 0x810CA660: int_sum_wc01_benza_tex
- 0x810CA760: int_sum_wc01_benzaside_tex
- 0x810CA7E0: int_sum_wc01_benzafront_tex
- 0x810CA860: int_sum_wc01_mizu_tex
- 0x810CA8A0: int_sum_wc01_v
- 0x810CADA0: int_sum_wc01_on_model
- 0x810CAE00: int_sum_wc01_onT_model
- 0x810CAF80: int_sum_wc01_envT_model
- 0x810CAFE0: int_sum_wc02_pal
- 0x810CB000: int_sum_wc02_mizu_tex_rgb_ci4_pal
- 0x810CB020: int_sum_wc02_huta_tex
- 0x810CB0A0: int_sum_wc02_washside_tex
- 0x810CB120: int_sum_wc02_tankfront_tex
- 0x810CB220: int_sum_wc02_benzaside_tex
- 0x810CB320: int_sum_wc02_base_tex
- 0x810CB3A0: int_sum_wc02_paipside_tex
- 0x810CB3E0: int_sum_wc02_paip_tex
- 0x810CB420: int_sum_wc02_tankrevar_tex
- 0x810CB460: int_sum_wc02_shawer_tex
- 0x810CB4A0: int_sum_wc02_washtop_tex
- 0x810CB520: int_sum_wc02_tanktop_tex
- 0x810CB560: int_sum_wc02_benza_tex
- 0x810CB660: int_sum_wc02_boxtop_tex
- 0x810CB6E0: int_sum_wc02_mizu_tex
- 0x810CB720: int_sum_wc02_v
- 0x810CBCA0: int_sum_wc02_on_model
- 0x810CBD18: int_sum_wc02_onT_model
- 0x810CBEB0: int_sum_wc02_evwT_model
- 0x810CBF20: int_sum_whi_bed01_pal
- 0x810CBF40: int_sum_whi_bed01_heard_tex
- 0x810CC140: int_sum_whi_bed01_side_tex
- 0x810CC240: int_sum_whi_bed01_top_tex
- 0x810CC6C0: int_sum_whi_bed01_pillow_tex
- 0x810CC740: int_sum_whi_bed01_v
- 0x810CCA20: int_sum_whi_bed01_on_model
- 0x810CCA90: int_sum_whi_bed01_onT_model
- 0x810CCB60: int_sum_whi_chest01_pal
- 0x810CCB80: int_sum_whi_chest01_top_tex_txt
- 0x810CCC80: int_sum_whi_chest01_hiki_tex_txt
- 0x810CCD80: int_sum_whi_chest01_back_tex_txt
- 0x810CCF00: int_sum_whi_chest01_front_tex_txt
- 0x810CD200: int_sum_whi_chest01_v
- 0x810CD5A0: int_sum_whi_chest01_door_model
- 0x810CD630: int_sum_whi_chest01_base_model
- 0x810CD6D8: cKF_ckcb_r_int_sum_whi_chest01_tbl
- 0x810CD6DC: cKF_kn_int_sum_whi_chest01_tbl
- 0x810CD6F0: cKF_c_int_sum_whi_chest01_tbl
- 0x810CD6F8: cKF_ds_int_sum_whi_chest01_tbl
- 0x810CD764: cKF_ba_r_int_sum_whi_chest01
- 0x810CD778: cKF_je_r_int_sum_whi_chest01_tbl
- 0x810CD79C: cKF_bs_r_int_sum_whi_chest01
- 0x810CD7C0: int_sum_whi_chest02_pal
- 0x810CD7E0: int_sum_whi_chest02_hiki_tex_txt
- 0x810CD8E0: int_sum_whi_chest02_hikiside_tex_txt
- 0x810CD960: int_sum_whi_chest02_back_tex_txt
- 0x810CDB60: int_sum_whi_chest02_front_tex_txt
- 0x810CDE60: int_sum_whi_chest02_v
- 0x810CE280: int_sum_whi_chest02_doorL_model
- 0x810CE2F8: int_sum_whi_chest02_base_model
- 0x810CE390: int_sum_whi_chest02_doorR_model
- 0x810CE408: cKF_ckcb_r_int_sum_whi_chest02_tbl
- 0x810CE410: cKF_kn_int_sum_whi_chest02_tbl
- 0x810CE428: cKF_c_int_sum_whi_chest02_tbl
- 0x810CE434: cKF_ds_int_sum_whi_chest02_tbl
- 0x810CE4D0: cKF_ba_r_int_sum_whi_chest02
- 0x810CE4E4: cKF_je_r_int_sum_whi_chest02_tbl
- 0x810CE520: cKF_bs_r_int_sum_whi_chest02
- 0x810CE540: int_sum_whi_lanp_pal
- 0x810CE560: int_sum_whi_lanp_shade_tex
- 0x810CE660: int_sum_whi_lanp_stand_tex
- 0x810CE7E0: int_sum_whi_lanp_foot_tex
- 0x810CE8E0: int_sum_whi_lanp_down_tex
- 0x810CE960: int_sum_whi_lanp_hiki_tex
- 0x810CEA60: int_sum_whi_lanp_top_tex
- 0x810CEAE0: int_sum_whi_lanp_topside_tex
- 0x810CEB60: int_sum_whi_lanp_v
- 0x810CEF70: int_sum_whi_lanp_on_model
- 0x810CEFD0: int_sum_whi_lanp_onT_model
- 0x810CF078: int_sum_whi_lanp_offT_model
- 0x810CF140: int_sum_whi_mirror_pal
- 0x810CF160: int_sum_whi_mirror_glass_tex_rgb_ci4_pal
- 0x810CF180: int_sum_whi_mirror_front_tex
- 0x810CF300: int_sum_whi_mirror_side_tex
- 0x810CF500: int_sum_whi_mirror_short_tex
- 0x810CF580: int_sum_whi_mirror_mirror_tex
- 0x810CF780: int_sum_whi_mirror_top_tex
- 0x810CF880: int_sum_whi_mirror_up_tex
- 0x810CF900: int_sum_whi_mirror_glass_tex
- 0x810CF980: int_sum_whi_mirror_v
- 0x810CFDA0: int_sum_whi_mirror_on_model
- 0x810CFE30: int_sum_whi_mirror_evw_model
- 0x810CFE88: int_sum_whi_mirror_onT_model
- 0x810CFF80: int_sum_whi_sofa01_pal
- 0x810CFFA0: int_sum_whi_sofa01_seat_tex
- 0x810D01A0: int_sum_whi_sofa01_heard_tex
- 0x810D02A0: int_sum_whi_sofa01_arm_tex
- 0x810D03A0: int_sum_whi_sofa01_foot_tex
- 0x810D04A0: int_sum_whi_sofa01_side_tex
- 0x810D06A0: int_sum_whi_sofa01_top_tex
- 0x810D0720: int_sum_whi_sofa01_v
- 0x810D0AE0: int_sum_whi_sofa01_on_model
- 0x810D0BA0: int_sum_whi_sofa01_onT_model
- 0x810D0C40: int_sum_x_bed01_pal
- 0x810D0C60: int_sum_x_bed01_mat
- 0x810D0F60: int_sum_x_bed01_head
- 0x810D0FE0: int_sum_x_bed01_front
- 0x810D12E0: int_sum_x_bed01_top
- 0x810D13E0: int_sum_x_bed01_sox
- 0x810D1460: int_sum_x_bed01_v
- 0x810D18B0: int_sum_x_bed_on_model
- 0x810D1918: int_sum_x_bed_onT_model
- 0x810D1A00: int_sum_x_chair01_pal
- 0x810D1A20: int_sum_x_chair01_seat
- 0x810D1B20: int_sum_x_chair01_side
- 0x810D1C20: int_sum_x_chair01_leg
- 0x810D1D20: int_sum_x_chair01_head
- 0x810D1DA0: int_sum_x_chair01_base
- 0x810D1F20: int_sum_x_chair01_back
- 0x810D2220: int_sum_x_chair01_v
- 0x810D2630: int_sum_x_chair01_on_model
- 0x810D26B8: int_sum_x_chair01_onT_model
- 0x810D2780: int_sum_x_chest01_pal
- 0x810D27A0: int_sum_x_chest01_hiki_txt
- 0x810D28A0: int_sum_x_chest01_into_txt
- 0x810D29A0: int_sum_x_chest01_front_txt
- 0x810D2BA0: int_sum_x_chest01_side_txt
- 0x810D2EA0: int_sum_x_chest01_head_txt
- 0x810D2F20: int_sum_x_chest01_v
- 0x810D3430: int_sum_x_chest01_L_model
- 0x810D34A8: int_sum_x_chest01_base_model
- 0x810D3580: int_sum_x_chest01_R_model
- 0x810D35F8: cKF_ckcb_r_int_sum_x_chest01_tbl
- 0x810D3600: cKF_kn_int_sum_x_chest01_tbl
- 0x810D3618: cKF_c_int_sum_x_chest01_tbl
- 0x810D3624: cKF_ds_int_sum_x_chest01_tbl
- 0x810D36C0: cKF_ba_r_int_sum_x_chest01
- 0x810D36D4: cKF_je_r_int_sum_x_chest01_tbl
- 0x810D3710: cKF_bs_r_int_sum_x_chest01
- 0x810D3720: int_sum_x_chest02_pal
- 0x810D3740: int_sum_x_chest02_into_txt
- 0x810D37C0: int_sum_x_chest02_hiki_txt
- 0x810D38C0: int_sum_x_chest02_head_txt
- 0x810D3940: int_sum_x_chest02_front_txt
- 0x810D3D40: int_sum_x_chest02_top_txt
- 0x810D3F40: int_sum_x_chest02_v
- 0x810D43C0: int_sum_x_chest02_door_model
- 0x810D4458: int_sum_x_chest02_base_model
- 0x810D4508: cKF_ckcb_r_int_sum_x_chest02_tbl
- 0x810D450C: cKF_kn_int_sum_x_chest02_tbl
- 0x810D4520: cKF_c_int_sum_x_chest02_tbl
- 0x810D4528: cKF_ds_int_sum_x_chest02_tbl
- 0x810D4594: cKF_ba_r_int_sum_x_chest02
- 0x810D45A8: cKF_je_r_int_sum_x_chest02_tbl
- 0x810D45CC: cKF_bs_r_int_sum_x_chest02
- 0x810D45E0: int_sum_x_chest03_pal
- 0x810D4600: int_sum_x_chest03_side
- 0x810D4800: int_sum_x_chest03_into
- 0x810D4880: int_sum_x_chest03_front
- 0x810D4B00: int_sum_x_chest03_head
- 0x810D4B80: int_sum_x_chest03_tree
- 0x810D4C80: int_sum_x_chest03_book
- 0x810D4D80: int_sum_x_chest03_present
- 0x810D4E00: int_sum_x_chest03_v
- 0x810D5340: int_sum_x_chest03_on_model
- 0x810D53C0: int_sum_x_chest03_onT_model
- 0x810D54C0: int_sum_x_clk_pal
- 0x810D54E0: int_sum_x_clk_glass_pic_ci4_pal
- 0x810D5500: int_sum_x_clk_hari_txt
- 0x810D5600: int_sum_x_clk_into_txt
- 0x810D5680: int_sum_x_clk_front_txt
- 0x810D5900: int_sum_x_clk_head_txt
- 0x810D5980: int_sum_x_clk_side_txt
- 0x810D5B80: int_sum_x_clk_huriko_txt
- 0x810D5C00: int_sum_x_clk_glass_txt
- 0x810D5C80: int_sum_x_clk_v
- 0x810D60A0: int_sum_x_clk_long_model
- 0x810D60F8: int_sum_x_clk_evw_model
- 0x810D6150: int_sum_x_clk_base_model
- 0x810D6230: int_sum_x_clk_huriko_model
- 0x810D6288: int_sum_x_clk_short_model
- 0x810D62E0: cKF_ckcb_r_int_sum_x_clk_tbl
- 0x810D62E8: cKF_kn_int_sum_x_clk_tbl
- 0x810D62EC: cKF_c_int_sum_x_clk_tbl
- 0x810D6320: cKF_ds_int_sum_x_clk_tbl
- 0x810D6340: cKF_ba_r_int_sum_x_clk
- 0x810D6354: cKF_je_r_int_sum_x_clk_tbl
- 0x810D63B4: cKF_bs_r_int_sum_x_clk
- 0x810D63C0: int_sum_x_lanp_pal
- 0x810D63E0: int_sum_x_lanp_base
- 0x810D67E0: int_sum_x_lanp_head
- 0x810D6860: int_sum_x_lanp_top
- 0x810D6960: int_sum_x_lanp_shade
- 0x810D6A60: int_sum_x_lanp_stand
- 0x810D6B60: int_sum_x_lanp_hiki
- 0x810D6BE0: int_sum_x_lanp_v
- 0x810D6F90: int_sum_x_lanp_onT_model
- 0x810D7010: int_sum_x_lanp_offT_model
- 0x810D7100: int_sum_x_piano_pal
- 0x810D7120: int_sum_x_piano_back_tex
- 0x810D72A0: int_sum_x_piano_side_tex
- 0x810D74A0: int_sum_x_piano_front_tex
- 0x810D7620: int_sum_x_piano_head_tex
- 0x810D76A0: int_sum_x_piano_key_tex
- 0x810D77A0: int_sum_x_piano_down_tex
- 0x810D78A0: int_sum_x_piano_foot_tex
- 0x810D7920: int_sum_x_piano_v
- 0x810D7E80: int_sum_x_piano_on_model
- 0x810D7EF8: int_sum_x_piano_onT_model
- 0x810D8020: int_sum_x_sofa01_pal
- 0x810D8040: int_sum_x_sofa01_head
- 0x810D80C0: int_sum_x_sofa01_seat
- 0x810D83C0: int_sum_x_sofa01_leg
- 0x810D8440: int_sum_x_sofa01_back
- 0x810D8640: int_sum_x_sofa01_arm
- 0x810D8740: int_sum_x_sofa01_side
- 0x810D8840: int_sum_x_sofa01_v
- 0x810D8CE0: int_sum_x_sofa01_on_model
- 0x810D8DB0: int_sum_x_sofa01_onT_model
- 0x810D8E40: int_sum_x_table01_pal
- 0x810D8E60: int_sum_x_table01_top
- 0x810D9260: int_sum_x_table01_stand
- 0x810D92E0: int_sum_x_table01_leg
- 0x810D95E0: int_sum_x_table01_v
- 0x810D9960: int_sum_x_table01_on_model
- 0x810D99C0: int_sum_x_table01_onT_model
- 0x810D9AA0: int_sum_yamame_glass_pic_ci4_pal
- 0x810D9AC0: int_sum_yamame_body_txt
- 0x810D9DC0: int_sum_yamame_side_txt
- 0x810D9FC0: int_sum_yamame_base_txt
- 0x810DA040: int_sum_yamame_top_txt
- 0x810DA140: int_sum_yamame_glass_txt
- 0x810DA240: int_sum_yamame_v
- 0x810DA510: int_sum_yamame_sakana_model
- 0x810DA580: int_sum_yamame_top_model
- 0x810DA5D8: int_sum_yamame_evw_model
- 0x810DA640: int_sum_yamame_base_model
- 0x810DA6D0: cKF_ckcb_r_int_sum_yamame_tbl
- 0x810DA6D8: cKF_kn_int_sum_yamame_tbl
- 0x810DA6EC: cKF_c_int_sum_yamame_tbl
- 0x810DA700: cKF_ds_int_sum_yamame_tbl
- 0x810DA798: cKF_ba_r_int_sum_yamame
- 0x810DA7AC: cKF_je_r_int_sum_yamame_tbl
- 0x810DA7E8: cKF_bs_r_int_sum_yamame
- 0x810DA800: int_tak_apollo1_pal
- 0x810DA820: int_tak_apollo1_antena1_tex
- 0x810DA8A0: int_tak_apollo1_antena2_tex
- 0x810DA920: int_tak_apollo1_asi2_tex
- 0x810DA9A0: int_tak_apollo1_asi3_tex
- 0x810DAA20: int_tak_apollo1_asi_tex
- 0x810DAAA0: int_tak_apollo1_atama_tex
- 0x810DAB20: int_tak_apollo1_body_tex
- 0x810DAC20: int_tak_apollo1_kosi_tex
- 0x810DACA0: int_tak_apollo1_kutu_tex
- 0x810DAD20: int_tak_apollo1_kao_tex
- 0x810DAE20: int_tak_apollo1_v
- 0x810DB420: int_tak_apollo1_on_model
- 0x810DB4D0: int_tak_apollo1_onT_model
- 0x810DB620: int_tak_arwing_pal
- 0x810DB640: int_tak_arwing_boost
- 0x810DB6C0: int_tak_arwing_bottom
- 0x810DB7C0: int_tak_arwing_bulue1
- 0x810DB840: int_tak_arwing_front
- 0x810DB940: int_tak_arwing_mark
- 0x810DB9C0: int_tak_arwing_side
- 0x810DBAC0: int_tak_arwing_window
- 0x810DBB40: int_tak_arwing_bou
- 0x810DBBC0: int_tak_arwing_dai
- 0x810DBDC0: int_tak_arwing_wing
- 0x810DBE40: int_tak_arwing_v
- 0x810DC550: int_tak_arwing_on_model
- 0x810DC6C0: int_tak_arwing_onT_model
- 0x810DC720: int_tak_asteroid1_pal
- 0x810DC740: int_tak_asteroid1_body_tex_txt
- 0x810DCF40: int_tak_asteroid1_v
- 0x810DD5B0: int_tak_asteroid1_on_model
- 0x810DD678: cKF_ckcb_r_int_tak_asteroid1_tbl
- 0x810DD67C: cKF_kn_int_tak_asteroid1_tbl
- 0x810DD684: cKF_c_int_tak_asteroid1_tbl
- 0x810DD69C: cKF_ds_int_tak_asteroid1_tbl
- 0x810DD728: cKF_ba_r_int_tak_asteroid1
- 0x810DD73C: cKF_je_r_int_tak_asteroid1_tbl
- 0x810DD76C: cKF_bs_r_int_tak_asteroid1
- 0x810DD780: int_tak_astro_pal
- 0x810DD7A0: int_tak_astro_face_tex_pic_ci4_pal
- 0x810DD7C0: int_tak_astro_body_tex_txt
- 0x810DDAC0: int_tak_astro_arm_tex_txt
- 0x810DDBC0: int_tak_astro_head_tex_txt
- 0x810DDC40: int_tak_astro_back_tex_txt
- 0x810DDDC0: int_tak_astro_packtop_tex_txt
- 0x810DDE40: int_tak_astro_pack_tex_txt
- 0x810DDF40: int_tak_astro_face_tex_txt
- 0x810DDFC0: int_tak_astro_v
- 0x810DE400: int_tak_astro_face_env_model
- 0x810DE460: int_tak_astro_body_on_model
- 0x810DE5A0: int_tak_barber_body_pal
- 0x810DE5C0: int_tak_barber_glass_tex_pic_ci4_pal
- 0x810DE5E0: int_tak_barber_body_tex_txt
- 0x810DE6E0: int_tak_barber_kosi_tex_txt
- 0x810DE760: int_tak_barber_kasa_tex_txt
- 0x810DE7E0: int_tak_barber_asi_tex_txt
- 0x810DE860: int_tak_barber_glass_tex_txt
- 0x810DE8E0: int_tak_barber_v
- 0x810DECC0: int_tak_barber_pole_on_model
- 0x810DED38: int_tak_barber_glass_env_model
- 0x810DEDA8: int_tak_barber_body_on_model
- 0x810DEE58: cKF_ckcb_r_int_tak_barber_tbl
- 0x810DEE5C: cKF_kn_int_tak_barber_tbl
- 0x810DEE60: cKF_c_int_tak_barber_tbl
- 0x810DEE7C: cKF_ds_int_tak_barber_tbl
- 0x810DEE88: cKF_ba_r_int_tak_barber
- 0x810DEE9C: cKF_je_r_int_tak_barber_tbl
- 0x810DEECC: cKF_bs_r_int_tak_barber
- 0x810DEF00: int_tak_cone01_asi_tex
- 0x810DEF80: int_tak_cone01_body_tex
- 0x810DF080: int_tak_cone01_top_tex
- 0x810DF100: int_tak_cone01_v
- 0x810DF300: int_tak_cone01_on_model
- 0x810DF368: int_tak_cone01_onT_model
- 0x810DF420: int_tak_cone03_asi_tex
- 0x810DF4A0: int_tak_cone03_body_tex
- 0x810DF5A0: int_tak_cone03_top_tex
- 0x810DF620: int_tak_cone03_v
- 0x810DF820: int_tak_cone03_on_model
- 0x810DF888: int_tak_cone03_onT_model
- 0x810DF920: int_tak_cube_body_tex
- 0x810DF9A0: int_tak_cube_glass_tex
- 0x810DFA20: int_tak_cube_evw_tex_rgb_i4
- 0x810DFAA0: int_tak_cube_v
- 0x810E0340: int_tak_cube_body_on_model
- 0x810E0430: int_tak_cube_evwT_model
- 0x810E04B0: int_tak_cube_glass_onT_model
- 0x810E0540: int_tak_drum02_body_tex_pal
- 0x810E0560: int_tak_drum02_body_tex
- 0x810E0860: int_tak_drum02_top_tex
- 0x810E0960: int_tak_drum02_futa_tex
- 0x810E09E0: int_tak_drum02_v
- 0x810E0BB0: int_tak_drum02_on_model
- 0x810E0C50: int_tak_drum02_onT_model
- 0x810E0CC0: int_tak_eisei_pal
- 0x810E0CE0: int_tak_eisei_hansya_tex_pic_ci4_pal
- 0x810E0D00: int_tak_eisei_omote_tex_txt
- 0x810E0E00: int_tak_eisei_ura_tex_txt
- 0x810E0F00: int_tak_eisei_top_tex_txt
- 0x810E0F80: int_tak_eisei_body_tex_txt
- 0x810E1100: int_tak_eisei_kasa_tex_txt
- 0x810E1180: int_tak_eisei_ten_tex_txt
- 0x810E1200: int_tak_eisei_sasae_tex_txt
- 0x810E1280: int_tak_eisei_antena_tex_txt
- 0x810E1300: int_tak_eisei_hansya_tex_txt
- 0x810E1380: int_tak_eisei_v
- 0x810E1830: int_tak_eisei_ude_on_model
- 0x810E18C0: int_tak_eisei_ude_env_model
- 0x810E1920: int_tak_eisei_base_on_model
- 0x810E1A30: cKF_ckcb_r_int_tak_eisei_tbl
- 0x810E1A34: cKF_kn_int_tak_eisei_tbl
- 0x810E1A38: cKF_c_int_tak_eisei_tbl
- 0x810E1A54: cKF_ds_int_tak_eisei_tbl
- 0x810E1A60: cKF_ba_r_int_tak_eisei
- 0x810E1A74: cKF_je_r_int_tak_eisei_tbl
- 0x810E1AA4: cKF_bs_r_int_tak_eisei
- 0x810E1AC0: int_tak_ham1_pal
- 0x810E1AE0: int_tak_ham1_a1_tex_pic_ci4_pal
- 0x810E1B00: int_tak_ham1_maru_tex_txt
- 0x810E1B80: int_tak_ham1_wa_tex_txt
- 0x810E1BA0: int_tak_ham1_kuzu_tex_txt
- 0x810E1C20: int_tak_ham1_cage_tex_txt
- 0x810E1D20: int_tak_ham1_a1_tex_txt
- 0x810E1DA0: int_tak_ham1_a2_tex_pic_ci4
- 0x810E1E20: int_tak_ham1_v
- 0x810E2460: int_tak_ham1_wa_model
- 0x810E24D8: int_tak_ham1_maru_model
- 0x810E2530: int_tak_ham1_kuzu_model
- 0x810E2588: int_tak_ham1_cage_model
- 0x810E2680: int_tak_ham1_a1_model
- 0x810E26D8: cKF_ckcb_r_int_tak_ham1_tbl
- 0x810E26E0: cKF_kn_int_tak_ham1_tbl
- 0x810E26E4: cKF_c_int_tak_ham1_tbl
- 0x810E2710: cKF_ds_int_tak_ham1_tbl
- 0x810E2778: cKF_ba_r_int_tak_ham1
- 0x810E278C: cKF_je_r_int_tak_ham1_tbl
- 0x810E27E0: cKF_bs_r_int_tak_ham1
- 0x810E2800: int_tak_hole01_ue_tex_pal
- 0x810E2820: int_tak_hole01_ue_tex
- 0x810E2A20: int_tak_hole01_v
- 0x810E2A70: int_tak_hole01_onT_model
- 0x810E2AE0: int_tak_ice_pal
- 0x810E2B00: int_tak_ice_bou2_tex_txt
- 0x810E2B40: int_tak_ice_wa1_tex_txt
- 0x810E2BC0: int_tak_ice_bou_tex_txt
- 0x810E2BE0: int_tak_ice_block_tex_txt
- 0x810E2C60: int_tak_ice_top_tex_txt
- 0x810E2CA0: int_tak_ice_body_tex_txt
- 0x810E2EA0: int_tak_ice_dai_tex_txt
- 0x810E2EC0: int_tak_ice_sara_tex_txt
- 0x810E2F40: int_tak_ice_cup_tex_txt
- 0x810E2F60: int_tak_ice_wa2_tex_txt
- 0x810E2FA0: int_tak_ice_yuki_tex_pic_i4
- 0x810E30A0: int_tak_ice_v
- 0x810E38A0: int_tak_ice_rot_model
- 0x810E3938: int_tak_ice_yuki_model
- 0x810E39A0: int_tak_ice_base_model
- 0x810E3B28: int_tak_ice_block_model
- 0x810E3BA8: cKF_ckcb_r_int_tak_ice_tbl
- 0x810E3BB0: cKF_kn_int_tak_ice_tbl
- 0x810E3BB4: cKF_c_int_tak_ice_tbl
- 0x810E3BDC: cKF_ds_int_tak_ice_tbl
- 0x810E3BF4: cKF_ba_r_int_tak_ice
- 0x810E3C08: cKF_je_r_int_tak_ice_tbl
- 0x810E3C50: cKF_bs_r_int_tak_ice
- 0x810E3C60: int_tak_isu03_pal
- 0x810E3C80: int_tak_isu03_zabu_tex
- 0x810E3E80: int_tak_isu03_under_tex
- 0x810E3F00: int_tak_isu03_bou_tex
- 0x810E3F80: int_tak_isu03_asi_tex
- 0x810E4000: int_tak_isu03_v
- 0x810E42A0: int_tak_isu03_onT_model
- 0x810E43A0: int_tak_lion_pal
- 0x810E43C0: int_tak_lion_water_tex_rgb_ci4_pal
- 0x810E43E0: int_tak_lion_back_tex
- 0x810E45E0: int_tak_lion_body_tex
- 0x810E4600: int_tak_lion_face_tex
- 0x810E4A00: int_tak_lion_tail2_tex
- 0x810E4B80: int_tak_lion_water_tex
- 0x810E4BA0: int_tak_lion_v
- 0x810E50C0: int_tak_lion_on_model
- 0x810E5150: int_tak_lion_onT_model
- 0x810E5290: int_tak_lion_alphaT_model
- 0x810E5320: int_tak_magami_pal
- 0x810E5340: int_tak_megami_fire_tex
- 0x810E5360: int_tak_megami_ita_tex
- 0x810E53E0: int_tak_megami_totte_tex
- 0x810E5420: int_tak_megami_face_tex
- 0x810E54A0: int_tak_megami_body_tex
- 0x810E58A0: int_tak_megami_suso_tex
- 0x810E5920: int_tak_megami_hand_tex
- 0x810E59A0: int_tak_megami_sode_tex
- 0x810E5A20: int_tak_megami_asi_tex
- 0x810E5AA0: int_tak_megami_dai_tex
- 0x810E5AE0: int_tak_megami_top_tex
- 0x810E5B00: int_tak_megami_v
- 0x810E6650: int_tak_megami_on_model
- 0x810E67A0: int_tak_megami_offT_model
- 0x810E6808: int_tak_megami_onT_model
- 0x810E69A0: int_tak_metro_pal
- 0x810E69C0: int_tak_metro_hari_tex_txt
- 0x810E6A40: int_tak_metro_neji_tex_txt
- 0x810E6AC0: int_tak_metro_side_tex_txt
- 0x810E6C40: int_tak_metro_front2_tex_txt
- 0x810E6CC0: int_tak_metro_front_tex_txt
- 0x810E6DC0: int_tak_metro_v
- 0x810E7190: int_tak_metro_hari_on_model
- 0x810E71E8: int_tak_metro_body_on_model
- 0x810E72E0: cKF_ckcb_r_int_tak_metro_tbl
- 0x810E72E4: cKF_kn_int_tak_metro_tbl
- 0x810E72E8: cKF_c_int_tak_metro_tbl
- 0x810E7300: cKF_ds_int_tak_metro_tbl
- 0x810E7320: cKF_ba_r_int_tak_metro
- 0x810E7334: cKF_je_r_int_tak_metro_tbl
- 0x810E7358: cKF_bs_r_int_tak_metro
- 0x810E7360: int_tak_money_pal
- 0x810E7380: int_tak_money_front_tex_txt
- 0x810E7780: int_tak_money_side_tex_txt
- 0x810E7980: int_tak_money_v
- 0x810E7D00: int_tak_money_side_model
- 0x810E7DA8: int_tak_money_front_model
- 0x810E7E20: cKF_ckcb_r_int_tak_money_tbl
- 0x810E7E24: cKF_kn_int_tak_money_tbl
- 0x810E7E28: cKF_c_int_tak_money_tbl
- 0x810E7E40: cKF_ds_int_tak_money_tbl
- 0x810E7E4C: cKF_ba_r_int_tak_money
- 0x810E7E60: cKF_je_r_int_tak_money_tbl
- 0x810E7E84: cKF_bs_r_int_tak_money
- 0x810E7EA0: int_tak_moon_pal
- 0x810E7EC0: int_tak_moon_tex_txt
- 0x810E86C0: int_tak_moon_v
- 0x810E8A50: int_tak_moon_on_model
- 0x810E8B58: cKF_ckcb_r_int_tak_moon_tbl
- 0x810E8B5C: cKF_c_int_tak_moon_tbl
- 0x810E8B70: cKF_ba_r_int_tak_moon
- 0x810E8B84: cKF_je_r_int_tak_moon_tbl
- 0x810E8B9C: cKF_bs_r_int_tak_moon
- 0x810E8BC0: int_tak_mooncar_pal
- 0x810E8BE0: int_tak_mooncar_bou1_tex
- 0x810E8C60: int_tak_mooncar_base_tex
- 0x810E8D60: int_tak_mooncar_body_tex
- 0x810E8E60: int_tak_mooncar_kasa_tex
- 0x810E8EE0: int_tak_mooncar_se_tex
- 0x810E8F60: int_tak_mooncar_cover2_tex
- 0x810E8FE0: int_tak_mooncar_ant_tex
- 0x810E9060: int_tak_mooncar_bodyside_tex
- 0x810E90E0: int_tak_mooncar_tire2_tex
- 0x810E9160: int_tak_mooncar_bou2_tex
- 0x810E91E0: int_tak_mooncar_kasa2_tex
- 0x810E9260: int_tak_mooncar_v
- 0x810E9770: int_tak_mooncar_on_model
- 0x810E97F0: int_tak_mooncar_onT_model
- 0x810E9960: int_tak_moti_pal
- 0x810E9980: int_tak_moti_body_tex
- 0x810E9D80: int_tak_moti_maru_tex
- 0x810E9E00: int_tak_moti_moti_tex
- 0x810E9E80: int_tak_moti_kine_tex
- 0x810EA080: int_tak_moti_v
- 0x810EA540: int_tak_moti_onT_model
- 0x810EA660: int_tak_neko_pal
- 0x810EA680: int_tak_neko_asi_tex
- 0x810EA880: int_tak_neko_body_tex
- 0x810EA900: int_tak_neko_hand_tex
- 0x810EA980: int_tak_neko_scop_tex
- 0x810EAA00: int_tak_neko_tire_tex
- 0x810EAA80: int_tak_neko_tuti_tex
- 0x810EAB00: int_tak_neko_ude_tex
- 0x810EAD00: int_tak_neko_side_tex
- 0x810EAE00: int_tak_neko_v
- 0x810EB2A0: int_tak_neko_on_model
- 0x810EB300: int_tak_neko_onT_model
- 0x810EB460: int_tak_nes01_pal
- 0x810EB480: int_tak_nes_cl_pal
- 0x810EB4A0: int_tak_nes_af_tex_rgb_ci4_pal
- 0x810EB4C0: int_tak_nes_bb_tex_rgb_ci4_pal
- 0x810EB4E0: int_tak_nes_bf_tex_rgb_ci4_pal
- 0x810EB500: int_tak_nes_d2_tex_rgb_ci4_pal
- 0x810EB520: int_tak_nes_d3_tex_rgb_ci4_pal
- 0x810EB540: int_tak_nes_dk_tex_rgb_ci4_pal
- 0x810EB560: int_tak_nes_eb_tex_rgb_ci4_pal
- 0x810EB580: int_tak_nes_g_tex_rgb_ci4_pal
- 0x810EB5A0: int_tak_nes_ic_tex_rgb_ci4_pal
- 0x810EB5C0: int_tak_nes_mb_tex_rgb_ci4_pal
- 0x810EB5E0: int_tak_nes_pb_tex_rgb_ci4_pal
- 0x810EB600: int_tak_nes_po_tex_rgb_ci4_pal
- 0x810EB620: int_tak_nes_sa_tex_rgb_ci4_pal
- 0x810EB640: int_tak_nes_sm_tex_rgb_ci4_pal
- 0x810EB660: int_tak_nes_so_tex_rgb_ci4_pal
- 0x810EB680: int_tak_nes_t_tex_rgb_ci4_pal
- 0x810EB6A0: int_tak_nes_wm_tex_rgb_ci4_pal
- 0x810EB6C0: int_tak_nes_zl_tex_rgb_ci4_pal
- 0x810EB6E0: int_tak_nes01_top_tex
- 0x810EB8E0: int_tak_nes01_side_tex
- 0x810EBCE0: int_tak_nes01_con_tex
- 0x810EBD20: int_tak_nes01_code_tex
- 0x810EBDA0: int_tak_nes_cl_tex
- 0x810EBFA0: int_tak_nes_af_tex_rgb_ci4
- 0x810EC1A0: int_tak_nes_bb_tex_rgb_ci4
- 0x810EC3A0: int_tak_nes_bf_tex_rgb_ci4
- 0x810EC5A0: int_tak_nes_d2_tex_rgb_ci4
- 0x810EC7A0: int_tak_nes_d3_tex_rgb_ci4
- 0x810EC9A0: int_tak_nes_dk_tex_rgb_ci4
- 0x810ECBA0: int_tak_nes_eb_tex_rgb_ci4
- 0x810ECDA0: int_tak_nes_g_tex_rgb_ci4
- 0x810ECFA0: int_tak_nes_ic_tex_rgb_ci4
- 0x810ED1A0: int_tak_nes_mb_tex_rgb_ci4
- 0x810ED3A0: int_tak_nes_pb_tex_rgb_ci4
- 0x810ED5A0: int_tak_nes_po_tex_rgb_ci4
- 0x810ED7A0: int_tak_nes_sa_tex_rgb_ci4
- 0x810ED9A0: int_tak_nes_sm_tex_rgb_ci4
- 0x810EDBA0: int_tak_nes_so_tex_rgb_ci4
- 0x810EDDA0: int_tak_nes_t_tex_rgb_ci4
- 0x810EDFA0: int_tak_nes_wm_tex_rgb_ci4
- 0x810EE1A0: int_tak_nes_zl_tex_rgb_ci4
- 0x810EE3A0: int_tak_nes_ds_tex_rgb_i4
- 0x810EE5A0: int_tak_nes01_v
- 0x810EEBE0: int_tak_nes01_on_model
- 0x810EECD0: int_tak_nes01_game_on_model
- 0x810EED38: int_tak_nes01_onT_model
- 0x810EEDA0: int_tak_nikki01_name_pal
- 0x810EEDC0: int_tak_nikki01_base_tex
- 0x810EEFC0: int_tak_nikki01_himo_tex
- 0x810EF0C0: int_tak_nikki01_name_tex
- 0x810EF100: int_tak_nikki01_pen_tex
- 0x810EF180: int_tak_nikki01_maki_tex
- 0x810EF1A0: int_tak_nikki01_v
- 0x810EF5C0: int_tak_nikki01_on_model
- 0x810EF6D8: int_tak_nikki01_onT_model
- 0x810EF740: int_tak_noise_pal
- 0x810EF760: int_tak_noise_1_tex
- 0x810EF960: int_tak_noise_2_tex
- 0x810EF9E0: int_tak_noise_3_tex
- 0x810EFA20: int_tak_noise_v
- 0x810EFE50: int_tak_noise_on_model
- 0x810EFF00: int_tak_noise_onT_model
- 0x810EFF80: int_tak_rocket1_pal
- 0x810EFFA0: int_tak_rocket1_wing_tex
- 0x810F00A0: int_tak_rocket1_body1_tex
- 0x810F02A0: int_tak_rocket1_body2_tex
- 0x810F05A0: int_tak_rocket1_dai_tex
- 0x810F0620: int_tak_rocket1_hone_tex
- 0x810F06A0: int_tak_rocket1_hasi1_tex
- 0x810F0720: int_tak_rocket1_hasi2_tex
- 0x810F07A0: int_tak_rocket1_v
- 0x810F0BC0: int_tak_rocket1_on_model
- 0x810F0C80: int_tak_rocket1_onT_model
- 0x810F0D40: int_tak_shuttle_pal
- 0x810F0D60: int_tak_shuttle_back
- 0x810F0DE0: int_tak_shuttle_eg
- 0x810F0E60: int_tak_shuttle_fin
- 0x810F0EE0: int_tak_shuttle_wing
- 0x810F10E0: int_tak_shuttle_face1
- 0x810F1160: int_tak_shuttle_face2
- 0x810F11E0: int_tak_shuttle_face4
- 0x810F1260: int_tak_shuttle_body3
- 0x810F1560: int_tak_shuttle_v
- 0x810F1990: int_tak_shuttle_on_model
- 0x810F1AD0: int_tak_shuttle_onT_model
- 0x810F1B60: int_tak_snoisu_tex_pal
- 0x810F1B80: int_tak_snowisu_back_tex
- 0x810F1C80: int_tak_snowisu_face_tex
- 0x810F1D80: int_tak_snowisu_futi_tex
- 0x810F1E00: int_tak_snowisu_body2_tex
- 0x810F1F00: int_tak_snowisu_side_tex
- 0x810F1F80: int_tak_snowisu_v
- 0x810F22A0: int_tak_snowisu_on_model
- 0x810F2318: int_tak_snowisu_onT_model
- 0x810F2400: int_tak_snowlamp_tex_pal
- 0x810F2420: int_tak_snowlamp_face_tex
- 0x810F24A0: int_tak_snowlamp_back_tex
- 0x810F2520: int_tak_snowlamp_bou_tex
- 0x810F2620: int_tak_snowlamp_asi_tex
- 0x810F26A0: int_tak_snowlamp_body_tex
- 0x810F28A0: int_tak_snowlamp_side_tex
- 0x810F2920: int_tak_snowlamp_v
- 0x810F2C90: int_tak_snowlamp_off_model
- 0x810F2D38: int_tak_snowlamp_offT_model
- 0x810F2E00: int_tak_sori01_pal
- 0x810F2E20: int_tak_sori01_body_tex
- 0x810F3220: int_tak_sori01_ita_tex
- 0x810F32A0: int_tak_sori01_sofa_tex
- 0x810F33A0: int_tak_sori01_ropeside_tex
- 0x810F33E0: int_tak_sori01_v
- 0x810F3DC0: int_tak_sori01_on_model
- 0x810F3F30: int_tak_sori01_onT_model
- 0x810F4000: int_tak_station_pal
- 0x810F4020: int_tak_station_wa_tex_txt
- 0x810F4220: int_tak_station_side_tex_txt
- 0x810F42A0: int_tak_station_bou_tex_txt
- 0x810F4320: int_tak_station_top_tex_txt
- 0x810F43A0: int_tak_station_mado_tex_txt
- 0x810F4420: int_tak_station_v
- 0x810F4880: int_tak_station_on_model
- 0x810F49C8: cKF_ckcb_r_int_tak_station_tbl
- 0x810F49CC: cKF_kn_int_tak_station_tbl
- 0x810F49D0: cKF_c_int_tak_station_tbl
- 0x810F49E8: cKF_ds_int_tak_station_tbl
- 0x810F49F4: cKF_ba_r_int_tak_station
- 0x810F4A08: cKF_je_r_int_tak_station_tbl
- 0x810F4A2C: cKF_bs_r_int_tak_station
- 0x810F4A40: int_tak_stew_a1_pal
- 0x810F4A60: int_tak_stew_nabe_pal
- 0x810F4A80: int_tak_stew_a1_tex
- 0x810F4C80: int_tak_stew_nabe_tex
- 0x810F4D00: int_tak_stew_etc_tex
- 0x810F4D80: int_tak_stew_a2_tex_rgb_ci4
- 0x810F4F80: int_tak_stew_v
- 0x810F5380: int_tak_stew_nabe_on_model
- 0x810F53F8: int_tak_stew_nabe_onT_model
- 0x810F54A0: int_tak_stew_a1T_model
- 0x810F5500: int_tak_syogi01_pal
- 0x810F5520: int_tak_syogi01_1_tex
- 0x810F5920: int_tak_syogi_v
- 0x810F5AC0: int_tak_syogi01_on_model
- 0x810F5B40: int_tak_table02_pal
- 0x810F5B60: int_tak_table02_top_tex
- 0x810F5F60: int_tak_table02_under_tex
- 0x810F6160: int_tak_table02_wa_tex
- 0x810F61E0: int_tak_table02_asi_tex
- 0x810F62E0: int_tak_table02_v
- 0x810F64A0: int_tak_table02_onT_model
- 0x810F6560: int_tak_tailor_pal
- 0x810F6580: int_tak_tailor_body_tex
- 0x810F6980: int_tak_tailor_grass_tex
- 0x810F6A00: int_tak_tailor_roof_tex
- 0x810F6A80: int_tak_tailor_sign_tex
- 0x810F6B80: int_tak_tailor_tent_tex
- 0x810F6BA0: int_tak_tailor_v
- 0x810F72A0: int_tak_tailor_on_model
- 0x810F7318: int_tak_tailor_onT_model
- 0x810F7410: int_tak_tailor_offT_model
- 0x810F7480: int_tak_tekkin_tex_pal
- 0x810F74A0: int_tak_tekkin_top_tex
- 0x810F75A0: int_tak_tekkin_side_tex
- 0x810F76A0: int_tak_tekkin_futi_tex
- 0x810F77A0: int_tak_tekkin_front_tex
- 0x810F7820: int_tak_tekkin_v
- 0x810F7CA0: int_tak_tekkin_on_model
- 0x810F7D08: int_tak_tekkin_onT_model
- 0x810F7DE0: int_tak_tent_pal
- 0x810F7E00: int_tak_tent_1_tex
- 0x810F8000: int_tak_tent_2_tex
- 0x810F8080: int_tak_tent_v
- 0x810F89F0: int_tak_tent_green_on_model
- 0x810F8A48: int_tak_tent_body_onT_model
- 0x810F8AB0: int_tak_tent_etc_onT_model
- 0x810F8BC0: int_tak_tent_light_offT_model
- 0x810F8C20: int_tak_tent_box_pal
- 0x810F8C40: int_tak_tent_box_2_tex
- 0x810F8CC0: int_tak_tent_box_1_tex
- 0x810F90C0: int_tak_tent_box_v
- 0x810F94D0: int_tak_tent_box_on_model
- 0x810F95C0: int_tak_tent_lamp_pal
- 0x810F95E0: int_tak_tent_lamp_tex
- 0x810F97E0: int_tak_tent_lamp_v
- 0x810F9C40: obj_tent_lamp_offT_model
- 0x810F9D20: int_tak_tetra_pal
- 0x810F9D40: int_tak_tetra_side_tex
- 0x810F9F40: int_tak_tetra_top_tex
- 0x810F9FC0: int_tak_tetra_v
- 0x810FA4D0: int_tak_tetra_on_model
- 0x810FA5E0: int_tak_toudai_pal
- 0x810FA600: int_tak_toudai_evw_tex_pic_ci4_pal
- 0x810FA620: int_tak_toudai_right_tex_txt
- 0x810FA6A0: int_tak_toudai_dai_tex_txt
- 0x810FA6E0: int_tak_toudai_grass_tex_txt
- 0x810FA760: int_tak_toudai_tesuri_tex_txt
- 0x810FA7A0: int_tak_toudai_body2_tex_txt
- 0x810FA8A0: int_tak_toudai_body_tex_txt
- 0x810FA920: int_tak_toudai_evw_tex_txt
- 0x810FA940: int_tak_toudai_v
- 0x810FB050: int_tak_toudai_right_model
- 0x810FB0B8: int_tak_toudai_back_model
- 0x810FB110: int_tak_toudai_tesuri_model
- 0x810FB198: int_tak_toudai_grass_model
- 0x810FB1F0: int_tak_toudai_evw_model
- 0x810FB260: int_tak_toudai_dai_model
- 0x810FB2D0: int_tak_toudai_body_model
- 0x810FB360: cKF_ckcb_r_int_tak_toudai_tbl
- 0x810FB368: cKF_kn_int_tak_toudai_tbl
- 0x810FB36C: cKF_c_int_tak_toudai_tbl
- 0x810FB3A0: cKF_ds_int_tak_toudai_tbl
- 0x810FB3AC: cKF_ba_r_int_tak_toudai
- 0x810FB3C0: cKF_je_r_int_tak_toudai_tbl
- 0x810FB420: cKF_bs_r_int_tak_toudai
- 0x810FB440: int_tak_ufo_pal
- 0x810FB460: int_tak_ufo_yane_tex_txt
- 0x810FB4E0: int_tak_ufo_body_tex_txt
- 0x810FB5E0: int_tak_ufo_mado_tex_txt
- 0x810FB660: int_tak_ufo_asi_tex_txt
- 0x810FB6E0: int_tak_ufo_hikari_tex_txt
- 0x810FB760: int_tak_ufo_v
- 0x810FBD10: int_tak_ufo_on_model
- 0x810FBDD0: int_tak_ufo_off_model
- 0x810FBE68: cKF_ckcb_r_int_tak_ufo_tbl
- 0x810FBE6C: cKF_kn_int_tak_ufo_tbl
- 0x810FBE70: cKF_c_int_tak_ufo_tbl
- 0x810FBE8C: cKF_ds_int_tak_ufo_tbl
- 0x810FBE98: cKF_ba_r_int_tak_ufo
- 0x810FBEAC: cKF_je_r_int_tak_ufo_tbl
- 0x810FBEDC: cKF_bs_r_int_tak_ufo
- 0x810FBF00: int_tak_yaji_pal
- 0x810FBF20: int_tak_yaji_top_tex
- 0x810FBFA0: int_tak_yaji_front_tex
- 0x810FC0A0: int_tak_yaji_side_tex
- 0x810FC1A0: int_tak_yaji_back_tex
- 0x810FC220: int_tak_yaji_v
- 0x810FC3A0: int_tak_yaji_on_model
- 0x810FC438: int_tak_yaji_onT_model
- 0x810FC4A0: int_tak_yoroi_pal
- 0x810FC4C0: int_tak_yoroi_yari_tex
- 0x810FC500: int_tak_yoroi_head_tex
- 0x810FC600: int_tak_yoroi_body_tex
- 0x810FC800: int_tak_yoroi_leg_tex
- 0x810FCA00: int_tak_yoroi_arm_tex
- 0x810FCC00: int_tak_yoroi_v
- 0x810FD560: int_tak_yoroi_on_model
- 0x810FD6D0: int_tak_yoroi_onT_model
- 0x810FD7A0: mFM_grd_s_tekkyo_tex
- 0x810FDFA0: mFM_grd_s_tekkyo_2_tex
- 0x810FE7A0: mFM_grd_s_tekkyo_3_tex
- 0x810FEFA0: mFM_grd_w_tekkyo_tex
- 0x810FF7A0: mFM_grd_w_tekkyo_2_tex
- 0x810FFFA0: mFM_grd_w_tekkyo_3_tex
- 0x811007A0: rom_tent_box_pal
- 0x811007C0: rom_tent_can_pal
- 0x811007E0: rom_tent_mono1_pal
- 0x81100800: rom_tent_gas_pal
- 0x81100820: rom_tent_enter
- 0x81100C20: rom_tent_floor
- 0x81101420: rom_tent_wall1
- 0x81101C20: rom_tent_wall2
- 0x81102420: rom_tent_bou
- 0x81102440: rom_tent_mono1
- 0x81102C40: rom_tent_can
- 0x81102D40: rom_tent_conpas
- 0x81102DC0: rom_tent_box
- 0x811031C0: rom_tent_kage_m
- 0x81103240: rom_tent_gas
- 0x81103440: rom_tent_kage_s
- 0x811034C0: rom_tent_kage_b
- 0x811035C0: rom_tent_v
- 0x81104B90: rom_tent_modelT
- 0x81104B98: rom_tent_model
- 0x81104FE0: room
- 0x81105000: room_floor
- 0x81105400: room_wall
- 0x81105C00: room_window
- 0x81106400: room01_v
- 0x81106980: room01_grp_room01__edge
- 0x81106A18: room01_grp_room_out01
- 0x81106A48: room01_grp_room01
- 0x81106C18: room01_model
- 0x81106C68: tool_price_table
- 0x81106D40: rom_train_1_pal
- 0x81106D60: rom_train_2_pal
- 0x81106DA0: rom_train_seat1_tex
- 0x811075A0: rom_train_seat2_tex
- 0x81107DA0: rom_train_floor_tex
- 0x811085A0: rom_train_wall1_tex
- 0x81108DA0: rom_train_roof_tex
- 0x811095A0: rom_train_wall2_tex
- 0x81109DA0: rom_train_net_tex
- 0x8110A5A0: rom_train_glass_tex
- 0x8110A620: rom_train_light_tex
- 0x8110A820: rom_train_in_v
- 0x8110C910: rom_train_in_modelT
- 0x8110C9C0: rom_train_in_model
- 0x8110CE00: mFM_grd_s_tunnel_tex
- 0x8110D600: mFM_grd_s_tunnel_2_tex
- 0x8110DE00: mFM_grd_s_tunnel_3_tex
- 0x8110E600: mFM_grd_w_tunnel_2_tex
- 0x8110EE00: mFM_grd_w_tunnel_3_tex
- 0x8110F600: rom_uranai_evw_anime_2
- 0x8110F608: rom_uranai_evw_anime_3
- 0x8110F610: rom_uranai_evw_anime
- 0x8110F620: rom_uranai_floor_tex_pal
- 0x8110F640: rom_uranai_wall_tex_pal
- 0x8110F660: rom_uranai_table_tex_pal
- 0x8110F680: rom_uranai_tubo_tex_pal
- 0x8110F6A0: rom_uranai_stand_tex_pal
- 0x8110F6C0: rom_uranai_tex_nuno_pal
- 0x8110F6E0: rom_uranai_tex_bace_pal
- 0x8110F700: rom_uranai_card_tex_pal
- 0x8110F720: rom_uranai_floor_tex
- 0x8110FF20: rom_uranai_wall01_tex
- 0x81110520: rom_uranai_wall02_tex
- 0x81110920: rom_uranai_wall03_tex
- 0x81110D20: rom_uranai_table01_tex
- 0x81110DA0: rom_uranai_table02_tex
- 0x81110E20: rom_uranai_tubo_tex
- 0x81111020: rom_uranai_shadow01_tex
- 0x81111120: rom_uranai_vell_tex
- 0x81111520: rom_uranai_vell02_tex
- 0x81111920: rom_uranai_stand01_tex
- 0x81111B20: rom_uranai_nuno01_tex
- 0x81111BA0: rom_uranai_nuno02_tex
- 0x81111C20: rom_uranai_bace_tex
- 0x81111E20: rom_uranai_card01_tex
- 0x81112020: rom_uranai_shadow02_tex
- 0x81112120: rom_uranai_card02_tex
- 0x811125A0: rom_uranai_cris02_tex
- 0x81112DA0: rom_uranai_cris01_tex_rgb_ia8
- 0x811131A0: rom_uranai_hi02_tex_rgb_i4
- 0x811133A0: rom_uranai_hi03_tex_rgb_i4
- 0x811135A0: rom_uranai_v
- 0x81114A80: rom_uranai_modelT
- 0x81114F80: rom_uranai_model
- 0x81115868: wall_listA
- 0x81115888: wall_listB
- 0x811158A8: wall_listC
- 0x811158C8: wall_listEvent
- 0x811158F0: wall_listChristmas
- 0x811158F4: wall_listSnow
- 0x811158F8: wall_listHalloween
- 0x811158FC: wall_listHalloween2
- 0x81115900: wall_listHomePage
- 0x81115904: wall_listHarvest
- 0x81115908: mSP_wall_list
- 0x81115968: wall_price_table
- 0x811159F0: mFM_grd_water1_tex
- 0x81115BF0: mFM_grd_water2_tex
- 0x81115DF0: mFM_grd_wave1_tex
- 0x811161F0: mFM_grd_wave2_tex
- 0x811169F0: mFM_grd_wave3_tex
- 0x81116E00: int_yaz_b_bath_pal
- 0x81116E20: int_yaz_b_bath_kobu_tex_txt
- 0x81116F20: int_yaz_b_bath_base_tex_txt
- 0x81117120: int_yaz_b_bath_sara2_tex_txt
- 0x81117320: int_yaz_b_bath_pole_tex_txt
- 0x81117420: int_yaz_b_bath_water5_tex_4i4_pic_i4
- 0x811174A0: int_yaz_b_bath_v
- 0x811178A0: int_yaz_b_bath_water_model
- 0x81117900: int_yaz_b_bath_body_model
- 0x81117A20: int_yaz_b_house_pal
- 0x81117A40: int_yaz_b_house_kabu_tex_txt
- 0x81117B40: int_yaz_b_house_kabe01_tex_txt
- 0x81117DC0: int_yaz_b_house_kabe02_tex_txt
- 0x81118040: int_yaz_b_house_ita_tex_txt
- 0x81118140: int_yaz_b_house_pole_tex_txt
- 0x81118240: int_yaz_b_house_v
- 0x81118730: int_yaz_b_house_body_model
- 0x811188A0: int_yaz_candle_pal
- 0x811188C0: int_yaz_candle_fire1_tex_pic_ci4_pal
- 0x811188E0: int_yaz_candle_base_tex_txt
- 0x81118AE0: int_yaz_candle_base2_tex_txt
- 0x81118B60: int_yaz_candle_green_tex_txt
- 0x81118C60: int_yaz_candle_red_tex_txt
- 0x81118D60: int_yaz_candle_black_tex_txt
- 0x81118E60: int_yaz_candle_fire1_tex_txt
- 0x81118F60: int_yaz_candle_fire2_tex_txt
- 0x81119060: int_yaz_candle_v
- 0x811196A0: int_yaz_candle_fire_model
- 0x81119720: int_yaz_candle_body_model
- 0x81119840: int_yaz_fish_trophy_fish_txt
- 0x81119940: int_yaz_fish_trophy_grip_txt
- 0x81119A40: int_yaz_fish_trophy_base_txt
- 0x81119C40: int_yaz_fish_trophy_body_txt
- 0x81119D40: int_yaz_fish_trophy_v
- 0x8111A390: int_yaz_fish_trophy_cup_model
- 0x8111A488: int_yaz_fish_trophy_base_model
- 0x8111A540: int_yaz_mario_flower_a_pal
- 0x8111A560: int_yaz_mario_flower_b_pal
- 0x8111A580: int_yaz_mario_flower_c_pal
- 0x8111A5A0: int_yaz_mario_flower_d_pal
- 0x8111A5C0: int_yaz_mario_flower_hana_a_tex_txt
- 0x8111A7C0: int_yaz_mario_flower_ha_tex_txt
- 0x8111AAC0: int_yaz_mario_flower_v
- 0x8111ACB0: int_yaz_mario_flower_hana_model
- 0x8111AD18: int_yaz_mario_flower_body_model
- 0x8111ADC0: int_yaz_rocket_pal
- 0x8111ADE0: int_yaz_rocket_body_tex_txt
- 0x8111B1E0: int_yaz_rocket_himo_tex_txt
- 0x8111B5E0: int_yaz_rocket_v
- 0x8111B8E0: int_yaz_rocket_himo_model
- 0x8111B938: int_yaz_rocket_body_model
- 0x8111B9E0: int_yaz_telescope_pal
- 0x8111BA00: int_yaz_telescope_body_tex_txt
- 0x8111BC80: int_yaz_telescope_tutu_tex_txt
- 0x8111BD00: int_yaz_telescope_lens_tex_txt
- 0x8111BF00: int_yaz_telescope_maru_tex_txt
- 0x8111BF80: int_yaz_telescope_ashi_tex_txt
- 0x8111C100: int_yaz_telescope_tome_tex_txt
- 0x8111C200: int_yaz_telescope_v
- 0x8111C5A0: int_yaz_telescope_body_model
- 0x8111C6E0: int_yaz_tub_pal
- 0x8111C700: int_yaz_tub_wood2_txt
- 0x8111C900: int_yaz_tub_wood_txt
- 0x8111CD00: int_yaz_tub_water_4i4_pic_i4
- 0x8111CE00: int_yaz_tub_v
- 0x8111D380: int_yaz_tub_water_model
- 0x8111D3D8: int_yaz_tub_body_model
- 0x8111D4A0: int_yaz_turkey_chair_pal
- 0x8111D4C0: int_yaz_turkey_chair_side_tex_txt
- 0x8111D6C0: int_yaz_turkey_chair_seet_tex_txt
- 0x8111D8C0: int_yaz_turkey_chair_hane_asi_tex_txt
- 0x8111DCC0: int_yaz_turkey_chair_v
- 0x8111E260: int_yaz_turkey_chair_body_model
- 0x8111E360: int_yaz_turkey_chest_pal
- 0x8111E380: int_yaz_turkey_chest_drwr_tex_txt
- 0x8111E480: int_yaz_turkey_chest_drwr_frnt_tex_txt
- 0x8111E580: int_yaz_turkey_chest_knob_tex_txt
- 0x8111E600: int_yaz_turkey_chest_asi_tex_txt
- 0x8111E640: int_yaz_turkey_chest_back_tex_txt
- 0x8111E840: int_yaz_turkey_chest_side_tex_txt
- 0x8111E940: int_yaz_turkey_chest_frnt_tex_txt
- 0x8111EB40: int_yaz_turkey_chest_v
- 0x8111F0C0: int_yaz_turkey_chest_door_model
- 0x8111F190: int_yaz_turkey_chest_body_model
- 0x8111F2B0: cKF_ckcb_r_int_yaz_turkey_chest_tbl
- 0x8111F2B4: cKF_kn_int_yaz_turkey_chest_tbl
- 0x8111F2C8: cKF_c_int_yaz_turkey_chest_tbl
- 0x8111F2D0: cKF_ds_int_yaz_turkey_chest_tbl
- 0x8111F33C: cKF_ba_r_int_yaz_turkey_chest
- 0x8111F350: cKF_je_r_int_yaz_turkey_chest_tbl
- 0x8111F374: cKF_bs_r_int_yaz_turkey_chest
- 0x8111F380: int_yaz_turkey_closet_pal
- 0x8111F3A0: int_yaz_turkey_closet_door_tex_txt
- 0x8111F4A0: int_yaz_turkey_closet_knob_tex_txt
- 0x8111F520: int_yaz_turkey_closet_back_tex_txt
- 0x8111F620: int_yaz_turkey_closet_side2_tex_txt
- 0x8111F720: int_yaz_turkey_closet_asi_tex_txt
- 0x8111F760: int_yaz_turkey_closet_frnt_tex_txt
- 0x8111FB60: int_yaz_turkey_closet_v
- 0x81120040: int_yaz_turkey_closet_doorL_model
- 0x811200B8: int_yaz_turkey_closet_body_model
- 0x811201F8: int_yaz_turkey_closet_doorR_model
- 0x81120270: cKF_ckcb_r_int_yaz_turkey_closet_tbl
- 0x81120278: cKF_kn_int_yaz_turkey_closet_tbl
- 0x81120290: cKF_c_int_yaz_turkey_closet_tbl
- 0x8112029C: cKF_ds_int_yaz_turkey_closet_tbl
- 0x81120338: cKF_ba_r_int_yaz_turkey_closet
- 0x8112034C: cKF_je_r_int_yaz_turkey_closet_tbl
- 0x81120388: cKF_bs_r_int_yaz_turkey_closet
- 0x811203A0: int_yaz_wagon_pal
- 0x811203C0: int_yaz_wagon_wood_tex_txt
- 0x811205C0: int_yaz_wagon_jiku_tex_txt
- 0x811205E0: int_yaz_wagon_horo2_tex_txt
- 0x81120700: int_yaz_wagon_horo_tex_txt
- 0x81120A00: int_yaz_wagon_wheel_tex_txt
- 0x81120C00: int_yaz_wagon_v
- 0x811211D0: int_wagon_body_model
- 0x81121320: int_yaz_b_feeder_pal
- 0x81121340: int_yaz_b_feeder_pole_tex_txt
- 0x81121500: int_yaz_b_feeder_ana_tex_txt
- 0x81121680: int_yaz_b_feeder_ura_tex_txt
- 0x81121800: int_yaz_b_feeder_wood_tex_txt
- 0x81121880: int_yaz_b_feeder_yane_tex_txt
- 0x81121900: int_yaz_b_feeder_wa_tex_txt
- 0x81121B00: int_yos_b_feeder_v
- 0x81121F10: int_yaz_b_feeder_body_model
- 0x811220A0: int_yos_cactus_pal
- 0x811220C0: int_yos_cactus_bou_tex_txt
- 0x811224C0: int_yos_cactus_v
- 0x81122840: int_yos_cactus_obj_model
- 0x81122900: int_yos_flamingo_pal
- 0x81122920: int_yos_flamingo_kao_tex_txt
- 0x81122D20: int_yos_flamingo_dou_tex_txt
- 0x81123120: int_yos_flamingo_v
- 0x81123570: int_yos_flamingo_body_model
- 0x81123680: int_yos_flamingo2_pal
- 0x811236A0: int_yos_flamingo2_kao_tex_txt
- 0x81123AA0: int_yos_flamingo2_dou_tex_txt
- 0x81123EA0: int_yos_flamingo2_v
- 0x811242F0: int_yos_flamingo2_body_model
- 0x81124400: int_yos_gnome_pal
- 0x81124420: int_yos_gnome_all_tex_txt
- 0x81124C20: int_yos_gnome_v
- 0x811250A0: int_yos_gnome_body_model
- 0x81125200: int_yos_kflag_pat
- 0x81125220: int_yos_kflag_pole_tex_txt
- 0x811252A0: int_yos_kflag_flag_tex_txt
- 0x81125420: int_yos_kflag_v
- 0x81125870: int_yos_kflag_obj_model
- 0x81125940: int_yos_luigi_pal
- 0x81125960: int_yos_luigi_dai_tex_txt
- 0x811259A0: int_yos_luigi_zubon_tex_txt
- 0x81125BA0: int_yos_luigi_kao_tex_txt
- 0x81125DA0: int_yos_luigi_hana_tex_txt
- 0x81125DC0: int_yos_luigi_mimi_tex_txt
- 0x81125E40: int_yos_luigi_boushimae_tex_txt
- 0x81125F40: int_yos_luigi_boushiushiro_tex_txt
- 0x81125FC0: int_yos_luigi_tuba_tex_txt
- 0x81126040: int_yos_luigi_ude_tex_txt
- 0x811260C0: int_yos_luigi_te_tex_txt
- 0x81126140: int_yos_luigi_kutu_tex_txt
- 0x811261C0: int_yos_luigi_fuda_tex_txt
- 0x811261E0: int_yos_luigi_v
- 0x81126770: int_yos_luigi_body_model
- 0x81126980: int_yos_mailbox_pal
- 0x811269A0: int_yos_mailbox_mae_tex_txt
- 0x81126CA0: int_yos_mailbox_ana_tex_txt
- 0x81126DA0: int_yos_mailbox_sokumen_tex_txt
- 0x811270A0: int_yos_mailbox_rabel_tex_txt
- 0x811271A0: int_yos_mailbox_v
- 0x811274E0: int_yos_mailbox_body_model
- 0x811275E0: int_yos_mario_pal
- 0x81127600: int_yos_mario_dai_tex_txt
- 0x81127640: int_yos_mario_zubon_tex_txt
- 0x81127840: int_yos_mario_kao_tex_txt
- 0x81127A40: int_yos_mario_hana_tex_txt
- 0x81127A60: int_yos_mario_mimi_tex_txt
- 0x81127AE0: int_yos_mario_boushimae_tex_txt
- 0x81127B60: int_yos_mario_boushiushiro_tex_txt
- 0x81127BE0: int_yos_mario_tuba_tex_txt
- 0x81127C60: int_yos_mario_ude_tex_txt
- 0x81127CE0: int_yos_mario_te_tex_txt
- 0x81127D60: int_yos_mario_kutu_tex_txt
- 0x81127DE0: int_yos_mario_fuda_tex_txt
- 0x81127E00: int_yos_mario_v
- 0x81128390: int_yos_mario_body_model
- 0x811285A0: int_yos_pbstove_pal
- 0x811285C0: int_yos_pbstove_conpane_asi_tex_txt
- 0x811287C0: int_yos_pbstove_sima_tex_txt
- 0x81128940: int_yos_pbstove_mado_tex_txt
- 0x81128B40: int_yos_pbstove_lever_tex_txt
- 0x81128BC0: int_yos_pbstove_huta_tex_txt
- 0x81128DC0: int_yos_pbstove_v
- 0x811293A0: int_yos_pbstove_body_model
- 0x81129540: int_yos_terrace_pal
- 0x81129560: int_yos_terrace_yuka_tex_txt
- 0x81129760: int_yos_terrace_yane_tex_txt
- 0x81129960: int_yos_terrace_yuka_yoko_tex_txt
- 0x811299A0: int_yos_terrace_kabe_tex_txt
- 0x81129BA0: int_yos_terrace_enshita_tex_txt
- 0x81129BE0: int_yos_terrace_v
- 0x8112A2E0: int_yos_terrace_obj_model
- 0x8112A480: int_yos_turkey_mirror_pal
- 0x8112A4A0: int_yos_turkey_mirror_env_tex_rgb_ci4_pal
- 0x8112A4C0: int_yos_turkey_mirror_yoko_tex_txt
- 0x8112A5C0: int_yos_turkey_mirror_dai_tex_txt
- 0x8112A7C0: int_yos_turkey_mirror_asi_tex_txt
- 0x8112A840: int_yos_turkey_mirror_ue_tex_txt
- 0x8112A940: int_yos_turkey_mirror_waku_tex_txt
- 0x8112AD40: int_yos_turkey_mirror_yubi_tex_txt
- 0x8112ADC0: int_yos_turkey_mirror_env_tex_txt
- 0x8112AE40: int_yos_turkey_mirror_v
- 0x8112B280: int_yos_turkey_mirror_obj_model
- 0x8112B3F8: int_yos_turkey_mirror_env_model
- 0x8112B460: int_yos_turkey_clk_pal
- 0x8112B480: int_yos_turkey_clk_hari_tex_txt
- 0x8112B580: int_yos_turkey_clk_ashi_tex_txt
- 0x8112B600: int_yos_turkey_clk_yubi_tex_txt
- 0x8112B680: int_yos_turkey_clk_sukart_tex_txt
- 0x8112B780: int_yos_turkey_clk_mae_tex_txt
- 0x8112BB80: int_yos_turkey_clk_ato_tex_txt
- 0x8112BBA0: int_yos_turkey_watch_v
- 0x8112BE80: int_yos_turkey_clk_long_model
- 0x8112BED8: int_yos_turkey_clk_obj_model
- 0x8112BFD8: int_yos_turkey_clk_short_model
- 0x8112C030: cKF_ckcb_r_int_yos_turkey_watch_tbl
- 0x8112C038: cKF_c_int_yos_turkey_watch_tbl
- 0x8112C05C: cKF_ba_r_int_yos_turkey_watch
- 0x8112C070: cKF_je_r_int_yos_turkey_watch_tbl
- 0x8112C0AC: cKF_bs_r_int_yos_turkey_watch
- 0x8112C0C0: int_yos_wheel_pal
- 0x8112C0E0: int_yos_wheel_nakatyu_tex_txt
- 0x8112C1E0: int_yos_wheel_tyu_tex_txt
- 0x8112C260: int_yos_wheel_bo_tex_txt
- 0x8112C360: int_yos_wheel_sotowa_tex_txt
- 0x8112C560: int_yos_wheel_v
- 0x8112C8E0: int_yos_wheel_obj_model
- 0x8125A7C0: construct_skip
- 0x8125A7C8: l_fossil_num_debug
- 0x8125A7CC: l_haniwa_num_debug
- 0x8125A7D0: l_fossil_block
- 0x8125A7DC: l_haniwa_block
- 0x8125A828: actor_dlftbls_num
- 0x8125A830: banti
- 0x8125AC80: sprashC_tex_dummy
- 0x8125AE80: sprashA_tex_dummy
- 0x8125B080: wave3_tex_dummy
- 0x8125B480: wave2_tex_dummy
- 0x8125BC80: wave1_tex_dummy
- 0x8125C080: sand_tex_dummy
- 0x8125C480: beach_pal_dummy2
- 0x8125C4A0: beach2_tex_dummy2
- 0x8125C5A0: beach1_tex_dummy2
- 0x8125C9A0: beach_tex_dummy
- 0x8125D1A0: tunnel_tex_dummy
- 0x8125D9A0: rail_pal_dummy
- 0x8125D9C0: bush_pal_dummy
- 0x8125D9E0: cliff_pal_dummy
- 0x8125DA00: earth_pal_dummy
- 0x8125DA20: station_pal_dummy
- 0x8125DA40: bridge_2_pal_dummy
- 0x8125DA60: bridge_1_pal_dummy
- 0x8125DA80: tekkyo_tex_dummy
- 0x8125E280: bridge_2_tex_dummy
- 0x8125EA80: bridge_1_tex_dummy
- 0x8125F280: water_2_tex_dummy
- 0x8125F480: water_1_tex_dummy
- 0x8125F680: river_tex_dummy
- 0x8125FA80: stone_tex_dummy
- 0x81260280: station_tex_dummy
- 0x81260A80: rail_tex_dummy
- 0x81261280: grass_tex_dummy
- 0x81261480: bush_b_tex_dummy
- 0x81261880: bush_a_tex_dummy
- 0x81262080: cliff_tex_dummy
- 0x81262880: earth_tex_dummy
- 0x81263080: mBI_make_proc
- 0x81263088: M_bgm
- 0x812633A0: Choice_table_rom_start
- 0x812633A4: Choice_rom_start
- 0x81263428: l_ActorInf
- 0x81263498: l_VecInf
- 0x812650B0: l_mBgMgr
- 0x812651B4: l_mCoBG_boat_move_bg_data
- 0x81265214: mCoBG_regist_decal_circle_count
- 0x81265218: mCoBG_regist_circle_info
- 0x81265278: mCoBG_decal_circle
- 0x812652E4: pre_work
- 0x812653E8: bk_work
- 0x812658EC: l_crtutInf
- 0x81266254: mCoBG_block_bgcheck_mode
- 0x81266258: mCoBG_wave_cos
- 0x8126625C: Virtual_Actor
- 0x812663D0: mco_work
- 0x81266400: common_data
- 0x81294000: debug_mode
- 0x81294008: debug_display
- 0x81294010: debug_print_flg
- 0x81294014: debug_print2_count
- 0x81294018: debug_print2_buffer
- 0x81294DE0: draw_status
- 0x81294DE4: bg_draw_status
- 0x81294DE8: bg_draw_status2
- 0x81294DEC: quest_draw_status
- 0x81294DF0: shop_draw_status
- 0x81294DF4: event_status
- 0x81294DF8: zelda_malloc_status
- 0x81294DFC: famicom_status
- 0x81294E00: npc_draw_status
- 0x81294E04: field_assessment_status
- 0x81294E18: demo_data
- 0x81295150: crcTable
- 0x81295550: n_today_events
- 0x81295554: status_edge
- 0x81295558: funeral
- 0x8129555C: dead
- 0x81295560: weekday1st_year
- 0x81295564: weekday1st
- 0x81295574: event_today
- 0x81295674: index_today
- 0x812956EC: n_rumor
- 0x812956F0: rumor_table
- 0x81295790: l_good_block_num
- 0x81295794: l_field_assessment_rank
- 0x812957A0: l_bg_disp_num
- 0x812957A4: l_bg_disp_size
- 0x812957C0: mFM_pal_area
- 0x81295920: g_fdinfo
- 0x81295924: l_block_kind
- 0x81295A3C: l_block_type
- 0x81295A88: l_register_bg_info
- 0x81295AC8: l_barea
- 0x81295AE8: l_mfi_player_bk_kind
- 0x81295B6C: l_player_wade
- 0x81295B70: l_set_fg_table
- 0x81295BA4: l_reserve_set_shell
- 0x81295BC4: mFI_now_bg_num
- 0x81295BC8: l_mFI_climate
- 0x81295BD8: l_mfrm_msg_idx
- 0x81295BDC: l_mfrm_now_color
- 0x81295BE0: l_mfrm_err_info
- 0x81295C70: fuusen_DEBUG_mode_flag
- 0x81295C80: Ps_table_rom_start
- 0x81295C84: Ps_rom_start
- 0x81295C88: Handbill_table_rom_start
- 0x81295C8C: Handbill_rom_start
- 0x81295C90: Super_table_rom_start
- 0x81295C94: Super_rom_start
- 0x81295C98: Handbillz_rom_start
- 0x81295C9C: Handbillz_start
- 0x81295CA0: mHandbill_data
- 0x81295F20: mHandbill_mail_buff
- 0x81296028: mHandbillz_table_pos
- 0x8129603C: mHandbillz_data_pos
- 0x81296128: l_mld_start_flag
- 0x81296140: l_keepIsland
- 0x81297A40: l_keepIslandComb
- 0x81297A44: l_misl_count_table
- 0x81297A68: l_mEnv_electric_light
- 0x81297B10: S_get_light_list
- 0x81297B18: light_list_buf
- 0x81297D28: l_ml_mail
- 0x81297E80: Msg_table_rom_start
- 0x81297E84: Msg_rom_start
- 0x81297E88: mMsg_window
- 0x81298340: mMsg_data
- 0x81298A00: l_mmsm_mail
- 0x81298F60: mNW_swap_work
- 0x81299180: mNtc_auto_nwrite_data
- 0x812992F0: l_npc_mail
- 0x812999F8: l_mnpc_remove_in_animal
- 0x8129A380: l_mnpc_goodby_mail
- 0x8129A3E8: l_npc_name_cache
- 0x8129A474: l_npc_talk_info
- 0x8129A53C: l_mnpc_get_ftr
- 0x8129A540: l_mnpc_get_letter
- 0x8129A544: l_mnpc_chk_ftr_msg
- 0x8129A548: l_mnpc_island_ftr
- 0x8129A574: l_island_npc_room_data
- 0x8129CA4C: l_mnpc_island_present_ftr
- 0x8129CA7C: l_npc_hp_mail
- 0x8129CC2C: l_mnpc_display
- 0x8129CC30: l_mnpc_addd
- 0x8129CC48: l_goal_block
- 0x8129CC58: l_arrive_stay_count
- 0x8129CC98: Player_actor_ct_func
- 0x8129CC9C: Player_actor_dt_func
- 0x8129CCA0: Player_actor_move_func
- 0x8129CCA4: Player_actor_draw_func
- 0x8129CCA8: Player_bank_ID_Index
- 0x8129CCAC: Player_face_bank_ID_Index
- 0x8129CCB0: change_data_from_submenu
- 0x8129CD00: controller_data_for_title_demo
- 0x8129CD40: g_foreigner_private
- 0x8129F180: l_mpr_mail
- 0x8129F2B0: l_mqst_grab
- 0x8129F2E8: fbdemo_mode
- 0x8129F2F0: mRmTp_melody
- 0x8129F300: mRmTp_famicom_idx
- 0x8129F304: l_mRmTp_switch_data
- 0x8129F308: mSP_what_special_sale
- 0x8129F30C: l_mItemDebug_work_data
- 0x8129F320: String_table_rom_start
- 0x8129F324: String_rom_start
- 0x8129F400: SubmenuArea_visit
- 0x8129F404: SubmenuArea_allocp
- 0x8129F408: S_tdemo_frame
- 0x8129F40C: S_titledemo_to_play
- 0x8129F410: debug_disp
- 0x8129F414: l_renew_is
- 0x8129F420: S_watch_my_step
- 0x8129F450: S_navigate
- 0x8129F45C: S_mybell_conf
- 0x8129F480: l_mcd_err_result
- 0x8129F484: l_mcd_bg_info
- 0x8129F4D8: l_keepSave_set
- 0x8129F4DC: l_mcd_keep_startCond
- 0x8129F4E0: l_aram_access_bit
- 0x8129F4E4: l_aram_block_p_table
- 0x8129F500: l_keepSave
- 0x812C5500: l_memMgr
- 0x812C66DC: l_mcd_card_private_table
- 0x812C6AB8: l_mcd_card_private
- 0x812C6B00: l_mcd_foreigner_file
- 0x812CAB00: l_keep_noLandCode
- 0x812CAB08: l_mCD_wctrl
- 0x812CAB80: l_keepMail
- 0x812D6B80: l_keepOriginal
- 0x812E4B80: l_keepDiary
- 0x812F0C00: l_mcd_keep_private
- 0x812F3040: l_paks_info
- 0x812F3098: mVib_info
- 0x812F31B8: gamePT
- 0x812F31BC: last_now_button
- 0x812F31C4: last_on_trigger
- 0x812F31CC: last_button
- 0x812F31D4: game_GameFrame
- 0x812F31D8: game_GameFrameF
- 0x812F31DC: game_GameFrame_2F
- 0x812F31E0: game_GameFrame__1F
- 0x812F31E4: game_class_p
- 0x812F31E8: frame
- 0x812F31EC: SoftResetEnable
- 0x812F31F0: skip_frame
- 0x812F31F8: graph_class
- 0x812F3560: ResetStatus
- 0x812F3568: ResetTime
- 0x812F3570: RetraceTime
- 0x812F3578: RetraceCount
- 0x812F3580: irqmgr_class
- 0x812F3992: vc_retraceCount
- 0x812F3994: vc_msgq
- 0x812F3998: vc_msg
- 0x812F39A0: viThread
- 0x812F3CB0: viThreadStack
- 0x812F4CB0: l_lbRTC_IsSampled
- 0x812F4CB4: l_lbRTC_Time
- 0x812F4CC0: l_serialMsgQ
- 0x812F4CE0: serialMsgBuf
- 0x812F4CE8: graphThread
- 0x812F4FF8: SegmentBaseAddress
- 0x812F5038: frame
- 0x812F5040: padmgr_class
- 0x812F5668: Matrix_stack
- 0x812F566C: Matrix_now
- 0x812F5670: irqmgrStack
- 0x812F6670: padmgrStack
- 0x812F7670: graphStack
- 0x812F9670: zurumode_flag
- 0x812F9674: zuruKeyCheck
- 0x812F9680: gspS2DEX2_fifoDataStart
- 0x812F9688: gspS2DEX2_fifoTextStart
- 0x812F9690: gspF3DZEX2_NoN_PosLight_fifoDataStart
- 0x812F9698: gspF3DZEX2_NoN_PosLight_fifoTextStart
- 0x812F96E0: Global_Actor_p
- 0x812F96E8: aBTD_clip
- 0x812F96F0: efbg_start_p
- 0x812F9824: wpppp
- 0x812F9828: spppp
- 0x812F982C: dpppp
- 0x812F9830: tpppp
- 0x812F9834: fluc
- 0x812F9838: n_today_event
- 0x812F983C: today_event
- 0x812F9C20: aFD_position_offset
- 0x812F9C28: aHOI_clip
- 0x812F9C50: aID_clip
- 0x812F9C60: tex
- 0x812FBC60: pal
- 0x812FBE80: MF_Control_Actor
- 0x812FBE98: MI_Control_Actor
- 0x812FBEB0: l_aMR_work
- 0x812FBEBC: l_bank_index_table
- 0x812FC3B0: l_bank_address_table
- 0x812FC5E8: aPRD_clip
- 0x812FC5F0: aPT_receive_buf
- 0x812FC920: l_client_p
- 0x812FC928: l_quest_memory_p
- 0x812FC92C: l_quest_actor_p
- 0x812FC930: l_quest_manager_hello
- 0x812FC934: l_aQMgr_hand_start
- 0x812FCCD0: aRSD_clip
- 0x812FCCD8: aROD_clip
- 0x812FD270: SG_angle_y
- 0x812FD470: Glb_shop_goods_actor
- 0x812FD474: picture_count
- 0x812FD478: mode
- 0x812FD480: aSI_se_mode
- 0x812FD498: aTOL_clip
- 0x812FDDC8: draw_work
- 0x812FE708: eEC_ctrl_work
- 0x81300BB4: eEL_light_data
- 0x81300BCC: eMH_special_point_light_num
- 0x81300BD8: mMkRm_letter_bit
- 0x81300BE0: ftr_fg_table1
- 0x81300DE0: mMkRm_search_table
- 0x81300ED0: ftr_fg_table2
- 0x81301160: l_use_data
- 0x813011EC: mRF_river_left_right_info
- 0x81301278: mRF_cliff_up_down_info
- 0x813013E0: l_candidate_num
- 0x81301440: l_candidate_flat_num
- 0x81301460: l_cancel_ut
- 0x81301844: aNPC_aroundNpcInfoList
- 0x813019F0: aNPC_n_actor_cl_tbl
- 0x81307288: aNPC_n_overlay
- 0x81307A90: aNPC_s_overlay
- 0x8130BAA0: aNPC_k_overlay
- 0x81314AB8: aNPC_e_overlay
- 0x81319BFC: tbl
- 0x8131A0C8: l_ResetTime
- 0x8131A0D0: aNMD_selectIdx
- 0x8131A0D4: aNMD_actor_p
- 0x8131A0E0: aNNW_trance_data
- 0x8131B1E8: static_str
- 0x8131B258: aSEN_matrix
- 0x8131B298: aTS0_delete_flag
- 0x8131B29C: aTS0_regist_sum
- 0x8131B2A0: aTS0_failure_actor_p
- 0x8131B2A8: aTMN1_flag
- 0x8131B2B0: regist_cnt
- 0x8131B2B4: turiActorx
- 0x8131B2C8: aINS_ctrlActor
- 0x8131B2D0: aINS_overlay
- 0x813206E8: aINS_clip
- 0x81320738: aGYO_ctrlActor
- 0x81320740: aGYO_overlay
- 0x81327F40: aCOU_clip
- 0x81327F48: pipeinfo
- 0x81327F68: aMKBC_clip
- 0x81327F98: totakeke_str
- 0x81328098: staffroll_info
- 0x813280B0: aMHS_door_closed_flag
- 0x813280C0: aSHR_present
- 0x813280D8: aSHR_clip
- 0x813280E8: aSTC_clip
- 0x813280F0: aSTR_actor_cl
- 0x81329AAC: aSTR_overlay
- 0x8133DEB0: aTRC_clip
- 0x8133DEC0: adrs_ovl_data
- 0x8133E0A8: bn_ovl_data
- 0x8133E0C0: birthday_ovl_data
- 0x8133E0C8: board_ovl_data
- 0x8133E210: cpedit_ovl_data
- 0x8133E218: cpmail_ovl_data
- 0x8133EDE0: co_ovl_data
- 0x8133EE78: cpwarning_ovl_data
- 0x8133EE88: diary_ovl_data
- 0x8133EEE0: de_ovl_data
- 0x8133F5C0: ee_ovl_data
- 0x8133F5C8: edit_ovl_data
- 0x8133F600: gb_ovl_change_flg
- 0x8133F608: hand_ovl_data
- 0x8133F980: hp_ovl_data
- 0x8133FAA0: haniwa_ovl_data
- 0x8133FAE0: inv_ovl_data
- 0x813400D0: mLE_md_name
- 0x81340440: mLE_npc_end_word_edit
- 0x81340450: mail_ovl_data
- 0x81340468: kan_win_wakuT_model_p
- 0x8134046C: kan_win_waku1T_model_p
- 0x81340470: kan_win_waku2T_model_p
- 0x81340474: kan_win_waku3T_model_p
- 0x81340478: kan_win_waku4T_model_p
- 0x8134047C: kan_win_color0_mode_p
- 0x81340480: kan_win_color1_mode_p
- 0x81340488: mscore_ovl_data
- 0x813404B0: music_ovl_data
- 0x813404D0: notice_ovl_data
- 0x813405A8: rp_ovl_data
- 0x813405C0: ovl_base
- 0x81340FC8: tag_ovl_data
- 0x81341390: ti_ovl_data
- 0x813413B0: wr_ovl_data
- 0x813413B8: pm_ovl_data
- 0x813413D0: pc_ovl_data
- 0x813413F8: sys_dynamic
- 0x81361820: S_back_title_timer
- 0x81361822: S_se_endcheck_timeout
- 0x81361828: fbdemo
- 0x81361920: gxbuf
- 0x81361A60: prbuf
- 0x8148DA60: sound_ok
- 0x8148DA61: contpad_ok
- 0x8148DA62: frame_count
- 0x8148DA68: famicom_done
- 0x8148DA6C: famicom_done_countdown
- 0x8148DA70: freeXfbBase
- 0x8148DA74: freeXfbSize
- 0x8148DA78: S_ongenpos_refuse_fg
-src/static/bankread.c:
- 0x800305e0: PTconvert__FPPvUl
-src/static/waveread.c:
- 0x800309c0: PTconvert__FPPvUl
-src/static/famicom.cpp:
- 0x80041614: calcSum__FPUcUl
- 0x800d9984: __RTTI__13JKRFileFinder
-src/static/famicom_nesinfo.cpp:
- 0x80046d88: calcSum__FPUcUl
-src/static/JKRAram.cpp:
- 0x80066a08: decompSZS_subroutine__FPUcPUc
- 0x80066c8c: firstSrcData__Fv
- 0x80066d24: nextSrcData__FPUc
- 0x80217ee0: __RTTI__11JKRDisposer
- 0x80217ee8: __RTTI__9JKRThread
- 0x80218724: szpBuf
- 0x80218728: szpEnd
- 0x8021872c: refBuf
- 0x80218730: refEnd
- 0x80218734: refCurrent
- 0x80218738: srcOffset
- 0x8021873c: transLeft
- 0x80218740: srcLimit
- 0x80218748: fileOffset
- 0x8021874c: readCount
- 0x80218750: maxDest
-src/static/JKRDvdRipper.cpp:
- 0x8006c42c: decompSZS_subroutine__FPUcPUc
- 0x8006c6c0: firstSrcData__Fv
- 0x8006c774: nextSrcData__FPUc
- 0x80218778: szpBuf
- 0x8021877c: szpEnd
- 0x80218780: refBuf
- 0x80218784: refEnd
- 0x80218788: refCurrent
- 0x8021878c: srcOffset
- 0x80218790: transLeft
- 0x80218794: srcLimit
- 0x80218798: srcFile
- 0x8021879c: fileOffset
- 0x802187a0: readCount
- 0x802187a4: maxDest
-src/static/JKRDvdAramRipper.cpp:
- 0x8006d370: firstSrcData__Fv
- 0x8006d424: nextSrcData__FPUc
- 0x802187a8: szpBuf
- 0x802187ac: szpEnd
- 0x802187b0: refBuf
- 0x802187b4: refEnd
- 0x802187b8: refCurrent
- 0x802187c8: srcOffset
- 0x802187cc: transLeft
- 0x802187d0: srcLimit
- 0x802187d4: srcFile
- 0x802187d8: fileOffset
- 0x802187dc: readCount
- 0x802187e0: maxDest
-src/static/GBA.c:
- 0x80048120: OnReset
- 0x800da9c8: ResetFunctionInfo
-src/static/OSMemory.c:
- 0x8007bf04: OnReset
- 0x8007c070: Config24MB
- 0x8007c0f0: Config48MB
- 0x800e01a8: ResetFunctionInfo
-src/static/libforest/ReconfigBATs.c:
- 0x8005adac: Config24MB
- 0x8005ae18: Config48MB
-src/static/SIBios.c:
- 0x80082924: AlarmHandler
- 0x800e0a3c: Type
-src/static/dvdlow.c:
- 0x80083bdc: AlarmHandler
- 0x80218998: Callback
-src/static/dvd.c:
- 0x80085dfc: AlarmHandler
- 0x80218a3c: LastState
-src/static/Pad.c:
- 0x8008b664: OnReset
- 0x800e1430: ResetFunctionInfo
- 0x80208490: Type
-src/static/CARDBios.c:
- 0x8008e504: OnReset
- 0x800e1440: ResetFunctionInfo
-src/static/CARDBlock.c:
- 0x8008e7dc: WriteCallback
- 0x8008e8b0: EraseCallback
-src/static/CARDDir.c:
- 0x8008ebe0: WriteCallback
- 0x8008ecb0: EraseCallback
-src/static/CARDWrite.c:
- 0x80091e88: WriteCallback
- 0x80091ff8: EraseCallback
-src/static/__init_cpp_exceptions.cpp:
- 0x800a97c0: __destroy_global_chain_reference
-src/static/global_destructor_chain.c:
- 0x800a97c8: __destroy_global_chain_reference
-src/static/bootdata.obj:
- 0x800b9a40: att_win_waku1_tex
- 0x800b9e40: att_win_waku2_tex
- 0x800ba240: att_win_waku3_tex
- 0x800ba640: att_win_waku4_tex
- 0x800baa40: att_win_waku5_tex
- 0x800bae40: att_win_waku6_tex
- 0x800bb500: gam_win_moji3_tex
- 0x800bbf00: att_win_waku1_tex
- 0x800bc300: att_win_waku2_tex
- 0x800bc700: att_win_waku3_tex
- 0x800bcb00: att_win_waku4_tex
- 0x800bcf00: att_win_waku5_tex
- 0x800bd300: att_win_waku6_tex
- 0x800bd820: gam_win_moji3_tex
-src/static/emusound.c:
- 0x800cea20: NOISE_TABLE
-src/static/driver.c:
- 0x800d0298: NOISE_TABLE
-src/static/dspbuf.c:
- 0x801864b0: dsp_buf
-src/static/cpubuf.c:
- 0x801864c0: dsp_buf
-src/static/audiothread.c:
- 0x8017ffe0: msgbuf
-src/static/dvdthread.c:
- 0x801865b0: msgbuf
-src/static/JKRHeap.cpp:
- 0x80217e6c: __RTTI__11JKRDisposer
- 0x80217e74: __RTTI__7JKRHeap
-src/static/JKRExpHeap.cpp:
- 0x80217ea0: __RTTI__11JKRDisposer
- 0x80217eb0: __RTTI__7JKRHeap
-src/static/JKRDisposer.cpp:
- 0x80217ec0: __RTTI__11JKRDisposer
-src/static/JKRThread.cpp:
- 0x80217ec8: __RTTI__11JKRDisposer
- 0x80217ed0: __RTTI__9JKRThread
-src/static/JKRAramHeap.cpp:
- 0x80217ef8: __RTTI__11JKRDisposer
-src/static/JKRAramStream.cpp:
- 0x80217f20: __RTTI__11JKRDisposer
- 0x80217f28: __RTTI__9JKRThread
-src/static/JKRFileLoader.cpp:
- 0x80217f40: __RTTI__11JKRDisposer
- 0x80217f48: __RTTI__13JKRFileLoader
-src/static/JKRFileFinder.cpp:
- 0x80217f50: __RTTI__13JKRFileFinder
-src/static/JKRArchivePub.cpp:
- 0x80217f60: __RTTI__11JKRDisposer
- 0x80217f68: __RTTI__13JKRFileLoader
- 0x80217f70: __RTTI__10JKRArchive
-src/static/JKRMemArchive.cpp:
- 0x80217f78: __RTTI__11JKRDisposer
- 0x80217f80: __RTTI__13JKRFileLoader
- 0x80217f88: __RTTI__10JKRArchive
-src/static/JKRAramArchive.cpp:
- 0x80217fa0: __RTTI__11JKRDisposer
- 0x80217fa8: __RTTI__7JKRFile
- 0x80217fb0: __RTTI__13JKRFileLoader
- 0x80217fb8: __RTTI__10JKRArchive
-src/static/JKRDvdArchive.cpp:
- 0x80217fc8: __RTTI__11JKRDisposer
- 0x80217fd0: __RTTI__13JKRFileLoader
- 0x80217fd8: __RTTI__10JKRArchive
-src/static/JKRCompArchive.cpp:
- 0x80217fe8: __RTTI__11JKRDisposer
- 0x80217ff0: __RTTI__13JKRFileLoader
- 0x80217ff8: __RTTI__10JKRArchive
-src/static/JKRDvdFile.cpp:
- 0x80218008: __RTTI__11JKRDisposer
- 0x80218018: __RTTI__7JKRFile
-src/static/JKRDecomp.cpp:
- 0x80218038: __RTTI__11JKRDisposer
- 0x80218040: __RTTI__9JKRThread
-src/static/JSUInputStream.cpp:
- 0x80218050: __RTTI__10JSUIosBase
- 0x80218058: __RTTI__14JSUInputStream
- 0x80218060: __RTTI__20JSURandomInputStream
-src/static/JSUFileStream.cpp:
- 0x80218068: __RTTI__10JSUIosBase
- 0x80218070: __RTTI__14JSUInputStream
- 0x80218078: __RTTI__20JSURandomInputStream
-src/static/JUTFont.cpp:
- 0x80218098: __RTTI__7JUTFont
-src/static/JUTResFont.cpp:
- 0x802180a8: __RTTI__7JUTFont
-src/static/JUTGamePad.cpp:
- 0x802180c0: __RTTI__11JKRDisposer
-src/static/JUTException.cpp:
- 0x80218100: __RTTI__11JKRDisposer
- 0x80218108: __RTTI__9JKRThread
-src/static/J2DGrafContext.cpp:
- 0x80218158: __RTTI__14J2DGrafContext
-src/static/J2DOrthoGraph.cpp:
- 0x80218160: __RTTI__14J2DGrafContext
-src/static/dvderr.c:
- 0x800a97f8: this
- 0x800b1c60: ctl_att_w1_tex
- 0x800b2060: ctl_att_w2_tex
- 0x800b2460: ctl_att_w3_tex
- 0x800b2860: ctl_att_w4_tex
- 0x800b2c60: ctl_att_w5_tex
- 0x800b3060: ctl_att_w6_tex
-src/static/fault.c:
- 0x80218628: this
-src/static/OSReboot.c:
- 0x8007c6e0: Callback
-src/static/OS.c:
- 0x802188b0: BootInfo
-src/static/dvdfs.c:
- 0x802189d8: BootInfo
-src/static/OSResetSW.c:
- 0x80218938: LastState
-#src/static/boot.c:
-# 0x800060f8: main
-#src/main.c:
-# 0x80407CB9: main
-src/ac_quest_talk_island.c:
- 0x8048D768: aQMgr_init_normal_info
- 0x8048D7A4: aQMgr_set_number_free_str
- 0x8048D808: aQMgr_set_number_item_str
- 0x8048D870: aQMgr_set_number_free_str_add_gatu
- 0x8048D8FC: aQMgr_set_number_free_str_add_nichi
- 0x8048D988: aQMgr_normal_set_free_str
- 0x8048D9F0: aQMgr_set_calendar_free_str
- 0x8048DA90: aQMgr_get_rnd_no_cut_10
- 0x8048DBBC: aQMgr_get_possession_ftr_cpt_wl_rnd
- 0x8048DD20: aQMgr_get_possession_item_rnd
- 0x8048E294: aQMgr_order_decide_trade_common_item
- 0x8048E468: aQMgr_order_decide_trade_common_pay
- 0x8048E49C: aQMgr_order_decide_trade_common
- 0x8048E4E8: aQMgr_trade_give_item
- 0x8048E5A8: aQMgr_trade_take_item
- 0x8048E630: aQMgr_trade_take_money
- 0x8048E664: aQMgr_trade_give_money
- 0x8048E748: aQMgr_set_give_and_take_mode_GIVE
- 0x8048E7F0: aQMgr_set_give_item_and_take_money_mode_GIVE
- 0x8048E854: aQMgr_set_give_money_and_take_item_mode_GIVE
- 0x8048E8E4: aQMgr_set_give_money_and_take_item_mode_TAKE
- 0x8048E940: aQMgr_set_give_and_take_mode_TAKE
- 0x8048E9C4: aQMgr_order_change_roof_color
- 0x8048EA6C: aQMgr_order_change_gobi
- 0x8048EAB4: aQMgr_order_cancel_remove
- 0x8048EAF4: aQMgr_control_animal_info
- 0x8048EB58: aQMgr_order_decide_trade_1
- 0x8048EBA0: aQMgr_order_decide_trade_2
- 0x8048EBE8: aQMgr_order_decide_trade_3
- 0x8048EC44: aQMgr_order_decide_trade_4
- 0x8048ECA8: aQMgr_order_decide_trade_5
- 0x8048ECF0: aQMgr_order_decide_trade_6
- 0x8048ED38: aQMgr_order_decide_trade_7
- 0x8048ED80: aQMgr_order_decide_trade_8
- 0x8048EDC8: aQMgr_order_decide_trade_9
- 0x8048EE24: aQMgr_order_decide_trade_10
- 0x8048EE88: aQMgr_order_decide_trade_11
- 0x8048EED0: aQMgr_order_decide_trade_12
- 0x8048EF18: aQMgr_order_decide_trade_13
- 0x8048EF60: aQMgr_order_decide_trade_14
- 0x8048EF8C: aQMgr_order_decide_trade_15
- 0x8048EFB8: aQMgr_order_decide_trade_16
- 0x8048EFE4: aQMgr_order_decide_trade_17
- 0x8048F510: aQMgr_order_decide_trade
- 0x8048F558: aQMgr_order_move_trade_no_term
- 0x8048F5E4: aQMgr_order_move_trade_1
- 0x8048F608: aQMgr_order_move_trade_2
- 0x8048F62C: aQMgr_order_move_trade_3
- 0x8048F650: aQMgr_order_move_trade_4
- 0x8048F674: aQMgr_order_move_trade_5
- 0x8048F698: aQMgr_order_move_trade_6
- 0x8048F6BC: aQMgr_order_move_trade_7
- 0x8048F6E0: aQMgr_order_move_trade_8
- 0x8048F704: aQMgr_order_move_trade_9
- 0x8048F724: aQMgr_order_move_trade_10
- 0x8048F744: aQMgr_order_move_trade_11
- 0x8048F764: aQMgr_order_move_trade_12
- 0x8048F784: aQMgr_order_move_trade_13
- 0x8048F7A4: aQMgr_order_move_trade_14
- 0x8048F7D4: aQMgr_order_move_trade_15
- 0x8048F804: aQMgr_order_move_trade_16
- 0x8048F834: aQMgr_order_move_trade_17
- 0x8048F864: aQMgr_order_move_trade_18
- 0x8048F894: aQMgr_order_move_trade_19
- 0x8048F8C4: aQMgr_order_move_trade_20
- 0x8048F8F4: aQMgr_order_move_trade_21
- 0x8048F924: aQMgr_order_move_trade_22
- 0x8048FA90: aQMgr_order_trade
- 0x8048FAE0: aQMgr_order_show_letter
- 0x8048FB70: aQMgr_order_fluctuation_friendship
- 0x8048FBB0: aQMgr_order_play_memory_melody
- 0x8048FC10: aQMgr_order_set_calendar
- 0x8048FC98: aQMgr_order_input_birthday
- 0x8048FD30: aQMgr_set_random_string
- 0x8048FDD0: aQMgr_order_set_string_1
- 0x8048FE94: aQMgr_set_random_number_item_str
- 0x8048FF0C: aQMgr_order_set_string_2
- 0x8048FFC0: aQMgr_order_set_string_3
- 0x80490034: aQMgr_order_set_string_4
- 0x80490244: aQMgr_order_set_string
- 0x804910E8: aQMgr_talk_normal_open_letter
- 0x80491308: aQMgr_talk_normal_open_birthday
- 0x80491354: aQMgr_talk_normal_open_gobi
- 0x804913B0: aQMgr_talk_normal_open_msg
- 0x80491400: aQMgr_talk_normal_give_item
- 0x80491450: aQMgr_talk_normal_to_wait_order
- 0x8068B310: l_quest_category_0
- 0x8068B31C: l_quest_category_1
- 0x8068B424: constellation_table
- 0x812FCAA8: l_aqmgr_str
- 0x812FCAB8: l_normal_info
-src/ac_quest_talk_normal_init.c:
- 0x804915F4: aQMgr_init_normal_info
- 0x80491630: aQMgr_set_number_free_str
- 0x80491694: aQMgr_set_number_item_str
- 0x80491774: aQMgr_set_number_free_str_add_gatu
- 0x80491800: aQMgr_set_number_free_str_add_nichi
- 0x8049293C: aQMgr_normal_set_free_str
- 0x80492A60: aQMgr_set_calendar_free_str
- 0x80492B14: aQMgr_get_rnd_no_cut_10
- 0x80492B9C: aQMgr_get_possession_ftr_cpt_wl_rnd
- 0x80492D10: aQMgr_get_possession_item_rnd
- 0x80492E34: aQMgr_order_decide_trade_common_item
- 0x80493064: aQMgr_order_decide_trade_common_pay
- 0x80493098: aQMgr_order_decide_trade_common
- 0x804930EC: aQMgr_trade_give_item
- 0x8049313C: aQMgr_trade_take_item
- 0x804931A0: aQMgr_trade_take_money
- 0x804931D4: aQMgr_trade_give_money
- 0x804932B8: aQMgr_set_give_and_take_mode_GIVE
- 0x80493360: aQMgr_set_give_item_and_take_money_mode_GIVE
- 0x804933C4: aQMgr_set_give_money_and_take_item_mode_GIVE
- 0x80493454: aQMgr_set_give_money_and_take_item_mode_TAKE
- 0x804934B0: aQMgr_set_give_and_take_mode_TAKE
- 0x80494460: aQMgr_order_change_roof_color
- 0x80494508: aQMgr_order_change_gobi
- 0x80494550: aQMgr_order_cancel_remove
- 0x80494590: aQMgr_control_animal_info
- 0x804945F4: aQMgr_order_decide_trade_1
- 0x80494644: aQMgr_order_decide_trade_2
- 0x80494694: aQMgr_order_decide_trade_3
- 0x804946F4: aQMgr_order_decide_trade_4
- 0x8049475C: aQMgr_order_decide_trade_5
- 0x804947AC: aQMgr_order_decide_trade_6
- 0x804947FC: aQMgr_order_decide_trade_7
- 0x8049484C: aQMgr_order_decide_trade_8
- 0x8049489C: aQMgr_order_decide_trade_9
- 0x804948FC: aQMgr_order_decide_trade_10
- 0x80494964: aQMgr_order_decide_trade_11
- 0x804949B4: aQMgr_order_decide_trade_12
- 0x80494A04: aQMgr_order_decide_trade_13
- 0x80494A54: aQMgr_order_decide_trade_14
- 0x80494A80: aQMgr_order_decide_trade_15
- 0x80494AAC: aQMgr_order_decide_trade_16
- 0x80494AD8: aQMgr_order_decide_trade_17
- 0x80494B04: aQMgr_order_decide_trade
- 0x80494B50: aQMgr_order_move_trade_no_term
- 0x80494BE4: aQMgr_order_move_trade_1
- 0x80494C08: aQMgr_order_move_trade_2
- 0x80494C2C: aQMgr_order_move_trade_3
- 0x80494C50: aQMgr_order_move_trade_4
- 0x80494C74: aQMgr_order_move_trade_5
- 0x80494C98: aQMgr_order_move_trade_6
- 0x80494CBC: aQMgr_order_move_trade_7
- 0x80494CE0: aQMgr_order_move_trade_8
- 0x80494D04: aQMgr_order_move_trade_9
- 0x80494D24: aQMgr_order_move_trade_10
- 0x80494D44: aQMgr_order_move_trade_11
- 0x80494D64: aQMgr_order_move_trade_12
- 0x80494D84: aQMgr_order_move_trade_13
- 0x80494DA4: aQMgr_order_move_trade_14
- 0x80494DD4: aQMgr_order_move_trade_15
- 0x80494E04: aQMgr_order_move_trade_16
- 0x80494E34: aQMgr_order_move_trade_17
- 0x80494E64: aQMgr_order_move_trade_18
- 0x80494E94: aQMgr_order_move_trade_19
- 0x80494EC4: aQMgr_order_move_trade_20
- 0x80494EF4: aQMgr_order_move_trade_21
- 0x80494F24: aQMgr_order_move_trade_22
- 0x80494F44: aQMgr_order_trade
- 0x80494F90: aQMgr_order_show_letter
- 0x80494FD8: aQMgr_order_fluctuation_friendship
- 0x80495018: aQMgr_order_play_memory_melody
- 0x80495078: aQMgr_order_set_calendar
- 0x80495100: aQMgr_order_input_birthday
- 0x80495148: aQMgr_set_random_string
- 0x804951E8: aQMgr_order_set_string_1
- 0x804952AC: aQMgr_set_random_number_item_str
- 0x80495324: aQMgr_order_set_string_2
- 0x80495400: aQMgr_order_set_string_3
- 0x80495474: aQMgr_order_set_string_4
- 0x80495684: aQMgr_order_set_string
- 0x80495974: aQMgr_talk_normal_open_letter
- 0x80495A68: aQMgr_talk_normal_open_birthday
- 0x80495AB4: aQMgr_talk_normal_open_gobi
- 0x80495B18: aQMgr_talk_normal_open_msg
- 0x80495B68: aQMgr_talk_normal_give_item
- 0x80495BB8: aQMgr_talk_normal_to_wait_order
- 0x8068B748: l_quest_category_0
- 0x8068B754: l_quest_category_1
- 0x8068B9F4: constellation_table
- 0x812FCB5C: l_aqmgr_str
- 0x812FCB6C: l_normal_info
-src/bg_cherry_item.c:
- 0x804AFE74: bIT_copy_vtx
- 0x804AFEC8: bIT_draw_shadow
- 0x804B003C: bIT_clip_ct
- 0x804B01A0: bIT_clip_dt
- 0x804B01E8: bit_draw_ta_set
- 0x804B0238: bit_draw_ta_clr
- 0x804B0284: bIT_individual_draw_check
- 0x804B02C0: mFI_search_unit_around_high
- 0x804B0420: bIT_actor_fade_entry
- 0x804B0554: bIT_actor_fade_move
- 0x804B05A0: bIT_actor_fade_draw
- 0x804B0638: bIT_actor_ten_coin_entryR
- 0x804B0A28: bIT_actor_ten_coin_entry
- 0x804B0AA8: bg_item_ten_coin_entry_ex
- 0x804B0AEC: bIT_actor_ten_coin_move
- 0x804B0C14: bIT_actor_ten_coin_draw_af
- 0x804B0C58: bIT_actor_ten_coin_draw_bf
- 0x804B0CB8: bIT_actor_ten_coin_draw
- 0x804B0EB8: bIT_actor_ten_coin_destruct
- 0x804B0F40: bg_item_common_palload
- 0x804B0F84: bIT_actor_rand_pos_get_blk_correct
- 0x804B0FB8: bIT_actor_rand_pos_get_plus
- 0x804B1098: bIT_actor_rand_pos_get
- 0x804B1148: bIT_actor_shin_effect_entry
- 0x804B1290: bIT_actor_shin_effect_check
- 0x804B12CC: bIT_actor_shin_effect_move
- 0x804B1474: bIT_actor_drop_move_plant_destruct
- 0x804B14E0: bIT_common_moneytree_check
- 0x804B159C: bIT_common_bury_after
- 0x804B178C: bIT_common_hole_throw
- 0x804B193C: bIT_actor_drop_move_fly_destruct
- 0x804B1A08: func_calc_spec_drop_time
- 0x804B1A50: bIT_actor_drop_entry_main
- 0x804B1CD8: fruit_set
- 0x804B22E4: bIT_fruit_set
- 0x804B230C: drop_fruit
- 0x804B24FC: BIT_actor_tree_cutcount_check
- 0x804B25CC: bg_item_tree_fruit_drop
- 0x804B2748: bIT_actor_dig_hole_effect_entry
- 0x804B2810: bIT_actor_bury_hole_effect_entry
- 0x804B2864: bIT_actor_hole_effect_entry
- 0x804B2AB0: bIT_actor_hole_effect_destruct
- 0x804B2B9C: bIT_actor_hole_effect_move
- 0x804B2D6C: bIT_actor_hole_effect_draw
- 0x804B2DE4: bIT_actor_player_drop_entry
- 0x804B2FC8: bIT_drop_entry_v1
- 0x804B310C: bIT_actor_fly_entry
- 0x804B3324: bIT_actor_drop_entry
- 0x804B349C: bIT_actor_drop_move
- 0x804B356C: bIT_actor_drop_destruct
- 0x804B35E8: bIT_actor_drop_move_plant
- 0x804B3820: bIT_actor_drop_move_bury_destruct
- 0x804B3840: bIT_actor_drop_move_bury
- 0x804B388C: bIT_actor_drop_move_bury_change
- 0x804B390C: bIT_actor_drop_wait_bee
- 0x804B3978: bIT_actor_drop_move_wait
- 0x804B39E0: bIT_actor_drop_move_fly
- 0x804B3F70: bIT_actor_drop_draw
- 0x804B3FE8: bIT_actor_drop_draw_nrm
- 0x804B408C: bit_cmn_s_single_draw_loop_type1
- 0x804B4148: bit_cmn_single_draw_loop_type1
- 0x804B42B8: bit_cmn_single_draw_item_shadow
- 0x804B43CC: bit_cmn_single_draw_BT_shadow
- 0x804B44F0: fg_no2fg_type
- 0x804B46B4: bit_cmn_single_drawS_shadow
- 0x804B478C: bit_cmn_single_draw_item_body
- 0x804B4844: bit_cmn_single_draw
- 0x804B48EC: bit_cmn_single_draw_BT
- 0x804B4AD4: bit_cmn_single_drawS
- 0x804B4BAC: bIT_common_info_tbl_copy
- 0x804B4BCC: bIT_common_clear_treeatr
- 0x804B4C7C: m_GetCItTable_TreeTblChk
- 0x804B4F84: bIT_actor_pit_entry
- 0x804B5094: bIT_actor_pit_move
- 0x804B53AC: bIT_actor_pit_destruct
- 0x804B542C: bg_item_common_chg_BGDataR_b
- 0x804B55A8: bg_item_common_chg_BGDataR
- 0x804B5620: bg_item_common_outPutData
- 0x804B5694: bg_item_common_classifyitemDataTable
- 0x804B59DC: bg_item_common_set_draw_tbl
- 0x804B5A7C: bg_shin_effect_being_check
- 0x804B5C34: bg_item_common_chg_draw_tbl_perfect
- 0x804B5F4C: bg_item_common_renew_draw_and_crs_data_perfect
- 0x804B5FD0: bg_item_common_destruct
- 0x804B6034: bg_item_common_culling_check
- 0x804B6084: bg_item_common_culling_check_talk
- 0x804B60F0: bg_item_common_culling_check_loop
- 0x804B618C: bg_item_common_culling_check_talk_loop
- 0x804B6228: bg_item_common_check_talk_tree
- 0x804B6280: bg_item_common_draw_check
- 0x804B6328: bg_item_common_move
- 0x804B6448: bIT_actor_pit_entry_del
- 0x804B64B4: bIT_actor_pit_fall
- 0x804B658C: bIT_actor_pit_fall_stop
- 0x804B6658: bIT_actor_pit_exit
- 0x804B6704: bg_item_common_draw_loop_type1
- 0x804B67E8: bg_item_common_s_draw_loop_type1
- 0x804B68CC: bg_item_common_draw_item_body
- 0x804B6948: bg_item_common_draw_item_shadow
- 0x804B6A64: bg_item_common_draw_item
- 0x804B6BB8: bIT_actor_pit_draw_nrm
- 0x804B6C1C: bIT_actor_pit_draw
- 0x804B6C9C: bg_item_common_draw
- 0x804B6E58: bg_item_common_construct
- 0x8068FC8C: pos_table
- 0x8068FCCC: pos_table2
- 0x80690828: typeData_table_dummy
- 0x80690908: tree4_ap_list
- 0x80690910: tree4_or_list
- 0x80690918: tree4_ph_list
- 0x80690920: tree4_pr_list
- 0x80690928: tree4_nt_list
- 0x80690930: tree4_bg_list
- 0x80690960: tree4_ap_list_table
- 0x8069096C: tree4_or_list_table
- 0x80690978: tree4_ph_list_table
- 0x80690984: tree4_pr_list_table
- 0x80690990: tree4_nt_list_table
- 0x8069099C: tree4_bg_list_table
- 0x80690A50: tree4_ap_part
- 0x80690A70: tree4_or_part
- 0x80690A90: tree4_ph_part
- 0x80690AB0: tree4_pr_part
- 0x80690AD0: tree4_nt_part
- 0x80690AF0: tree4_bg_part
- 0x80690B30: palm_DL_table
- 0x80690B98: palm1_list
- 0x80690BA0: palm1_dead_list
- 0x80690BA8: palm2_list
- 0x80690BB0: palm3_leaf_list
- 0x80690BB8: palm3_trunk_list
- 0x80690BC0: palm4_leaf_list
- 0x80690BC8: palm4_trunk_list
- 0x80690BD0: palm5_leaf_list
- 0x80690BD8: palm5_trunk_list
- 0x80690BE0: palm5_coco_list
- 0x80690BE8: palm3_shadow_list
- 0x80690BF0: palm4_shadow_list
- 0x80690BF8: palm5_shadow_list
- 0x80690C00: palm1_list_table
- 0x80690C04: palm2_list_table
- 0x80690C08: palm3_list_table
- 0x80690C10: palm4_list_table
- 0x80690C18: palm5_list_table
- 0x80690C20: palm5_cc_list_table
- 0x80690C2C: palm1_dead_list_table
- 0x80690C30: palm3_shadow_v_fix
- 0x80690C34: palm5_shadow_v_fix
- 0x80690C38: palm000_part
- 0x80690C58: palm001_part
- 0x80690C78: palm002_part
- 0x80690C98: palm003_part
- 0x80690CB8: palm004_part
- 0x80690CD8: palm004_cc_part
- 0x80690CF8: palm000_dead_part
- 0x80690D18: Cedar_DL_table
- 0x80690D78: cedar3_shadow_list
- 0x80690D80: cedar4_shadow_list
- 0x80690D88: cedar5_shadow_list
- 0x80690D90: cedar1_list
- 0x80690D98: cedar1_dead_list
- 0x80690DA0: cedar2_list
- 0x80690DA8: cedar3_leaf_list
- 0x80690DB0: cedar3_trunk_list
- 0x80690DB8: cedar4_leaf_list
- 0x80690DC0: cedar4_trunk_list
- 0x80690DC8: cedar5_leaf_list
- 0x80690DD0: cedar5_trunk_list
- 0x80690DD8: cedar1_list_table
- 0x80690DDC: cedar1_dead_list_table
- 0x80690DE0: cedar2_list_table
- 0x80690DE4: cedar3_list_table
- 0x80690DEC: cedar4_list_table
- 0x80690DF4: cedar5_list_table
- 0x80690DFC: cedar_shadow_v_fix
- 0x80690E00: cedar000_part
- 0x80690E20: cedar001_part
- 0x80690E40: cedar002_part
- 0x80690E60: cedar003_part
- 0x80690E80: cedar004_part
- 0x80690EA0: cedar000_dead_part
- 0x80690EC0: GTree_DL_table
- 0x80690F20: gold_tree1_list
- 0x80690F28: gold_tree1_dead_list
- 0x80690F30: gold_tree2_list
- 0x80690F38: gold_tree3_leaf_list
- 0x80690F40: gold_tree3_trunk_list
- 0x80690F48: gold_tree4_leaf_list
- 0x80690F50: gold_tree4_trunk_list
- 0x80690F58: gold_tree5_leaf_list
- 0x80690F60: gold_tree5_trunk_list
- 0x80690F68: gold_tree3_shadow_list
- 0x80690F70: gold_tree4_shadow_list
- 0x80690F78: gold_tree5_shadow_list
- 0x80690F80: gold_tree1_list_table
- 0x80690F84: gold_tree1_dead_list_table
- 0x80690F88: gold_tree2_list_table
- 0x80690F8C: gold_tree3_list_table
- 0x80690F94: gold_tree4_list_table
- 0x80690F9C: gold_tree5_list_table
- 0x80690FA4: gold_tree_shadow_v_fix
- 0x80690FA8: gold_tree000_part
- 0x80690FC8: gold_tree001_part
- 0x80690FE8: gold_tree002_part
- 0x80691008: gold_tree003_part
- 0x80691028: gold_tree004_part
- 0x80691048: gold_tree000_dead_part
- 0x8069116C: palm_stump_DL_table
- 0x806911A4: pstump3_shadow_list
- 0x806911AC: pstump4_shadow_list
- 0x806911B4: pstump5_shadow_list
- 0x806911BC: pstump2_list
- 0x806911C4: pstump3_list
- 0x806911CC: pstump4_list
- 0x806911D4: pstump5_list
- 0x806911DC: pstump2_list_table
- 0x806911E0: pstump3_list_table
- 0x806911E4: pstump4_list_table
- 0x806911E8: pstump5_list_table
- 0x806911EC: pstump3_shadow_v_fix
- 0x806911F0: pstump5_shadow_v_fix
- 0x806911F4: palm_stump001_part
- 0x80691214: palm_stump002_part
- 0x80691234: palm_stump003_part
- 0x80691254: palm_stump004_part
- 0x80691274: CedarStump_DL_table
- 0x806912AC: cstump3_shadow_list
- 0x806912B4: cstump4_shadow_list
- 0x806912BC: cstump5_shadow_list
- 0x806912C4: cstump2_list
- 0x806912CC: cstump3_list
- 0x806912D4: cstump4_list
- 0x806912DC: cstump5_list
- 0x806912E4: cstump2_list_table
- 0x806912E8: cstump3_list_table
- 0x806912EC: cstump4_list_table
- 0x806912F0: cstump5_list_table
- 0x806912F4: cstump_shadow_v_fix
- 0x806912F8: cedar_stump001_part
- 0x80691318: cedar_stump002_part
- 0x80691338: cedar_stump003_part
- 0x80691358: cedar_stump004_part
- 0x80691378: GStump_DL_table
- 0x806913B0: gold_stump2_list
- 0x806913B8: gold_stump3_list
- 0x806913C0: gold_stump4_list
- 0x806913C8: gold_stump5_list
- 0x806913D0: gold_stump3_shadow_list
- 0x806913D8: gold_stump4_shadow_list
- 0x806913E0: gold_stump5_shadow_list
- 0x806913E8: gold_stump2_list_table
- 0x806913EC: gold_stump3_list_table
- 0x806913F0: gold_stump4_list_table
- 0x806913F4: gold_stump5_list_table
- 0x806913F8: gold_stump_shadow_v_fix
- 0x806913FC: gold_tree_stump001_part
- 0x8069141C: gold_tree_stump002_part
- 0x8069143C: gold_tree_stump003_part
- 0x8069145C: gold_tree_stump004_part
- 0x806915E4: hole_DL_table
- 0x80691650: hole00_g_list
- 0x80691658: hole00_g_list_table
- 0x8069165C: hole00_g_part
- 0x8069167C: hole00_s_list
- 0x80691684: hole00_s_list_table
- 0x80691688: hole00_s_part
- 0x806916A8: crack_DL_table
- 0x80691714: crack00_g_list
- 0x8069171C: crack00_g_list_table
- 0x80691720: crack00_g_part
- 0x80691740: crack00_s_list
- 0x80691748: crack00_s_list_table
- 0x8069174C: crack00_s_part
- 0x80691878: honycomb_DL_table
- 0x80691880: honycomb_list
- 0x80691888: honycomb_list_table
- 0x8069188C: honycomb_part
- 0x806918AC: stone_a_shadow_v_fix
- 0x806918B8: stone_b_shadow_v_fix
- 0x806918C4: stone_c_shadow_v_fix
- 0x806918D0: stone_d_shadow_v_fix
- 0x806918D8: stone_e_shadow_v_fix
- 0x806918E4: stone_DL_table
- 0x80691914: stone_a_list
- 0x8069191C: stone_a_shadow_list
- 0x80691924: stone_a_list_table
- 0x80691928: stone_a_part
- 0x80691948: stone_b_part
- 0x80691968: stone_c_part
- 0x80691988: stone_d_part
- 0x806919A8: stone_e_part
- 0x806919C8: tane_DL_table
- 0x806919D0: tane_list
- 0x806919D8: tane_list_table
- 0x806919DC: tane_part
- 0x806919FC: typeData_table_item1
- 0x80691A08: typeData_table_ftr
- 0x80691A14: typeData_table_crack
- 0x80691A20: apple_DL_table
- 0x80691A28: apple_list
- 0x80691A30: apple_list_table
- 0x80691A34: apple_part
- 0x80691A54: orange_DL_table
- 0x80691A5C: orange_list
- 0x80691A64: orange_list_table
- 0x80691A68: orange_part
- 0x80691A88: peach_DL_table
- 0x80691A90: peach_list
- 0x80691A98: peach_list_table
- 0x80691A9C: peach_part
- 0x80691ABC: pear_DL_table
- 0x80691AC4: pear_list
- 0x80691ACC: pear_list_table
- 0x80691AD0: pear_part
- 0x80691AF0: nuts_DL_table
- 0x80691AF8: nuts_list
- 0x80691B00: nuts_list_table
- 0x80691B04: nuts_part
- 0x80691B24: matutake_DL_table
- 0x80691B2C: matutake_list
- 0x80691B34: matutake_list_table
- 0x80691B38: matutake_part
- 0x80691B58: kabu_DL_table
- 0x80691B60: kabu_list
- 0x80691B68: kabu_list_table
- 0x80691B6C: kabu_part
- 0x80691B8C: fish_DL_table
- 0x80691B94: fish_list
- 0x80691B9C: fish_list_table
- 0x80691BA0: fish_part
- 0x80691BC0: bag_DL_table
- 0x80691BC8: bag_list
- 0x80691BD0: bag_list_table
- 0x80691BD4: bag_part
- 0x80691BF4: leaf_DL_table
- 0x80691BFC: leaf_list
- 0x80691C04: leaf_list_table
- 0x80691C08: leaf_part
- 0x80691C28: roll_DL_table
- 0x80691C30: roll_list
- 0x80691C38: roll_list_table
- 0x80691C3C: roll_part
- 0x80691C5C: box_DL_table
- 0x80691C64: box_list
- 0x80691C6C: box_list_table
- 0x80691C70: box_part
- 0x80691C90: pack_DL_table
- 0x80691C98: pack_list
- 0x80691CA0: pack_list_table
- 0x80691CA4: pack_part
- 0x80691CC4: present_DL_table
- 0x80691CCC: present_list
- 0x80691CD4: present_list_table
- 0x80691CD8: present_part
- 0x80691CF8: seed_DL_table
- 0x80691D00: seed_list
- 0x80691D08: seed_list_table
- 0x80691D0C: seed_part
- 0x80691D2C: haniwa_DL_table
- 0x80691D34: haniwa_list
- 0x80691D3C: haniwa_list_table
- 0x80691D40: haniwa_part
- 0x80691D60: other_DL_table
- 0x80691D68: other_list
- 0x80691D70: other_list_table
- 0x80691D74: other_part
- 0x80691D94: tool_DL_table
- 0x80691D9C: tool_list
- 0x80691DA4: tool_list_table
- 0x80691DA8: tool_part
- 0x80691DC8: fossil_DL_table
- 0x80691DD0: fossil_list
- 0x80691DD8: fossil_list_table
- 0x80691DDC: fossil_part
- 0x80691DFC: trash_DL_table
- 0x80691E04: trash_list
- 0x80691E0C: trash_list_table
- 0x80691E10: trash_part
- 0x80691E30: otosi_DL_table
- 0x80691E38: otosi_list
- 0x80691E40: otosi_list_table
- 0x80691E44: otosi_part
- 0x80691E64: shell_DL_table
- 0x80691E7C: shell_a_list
- 0x80691E84: shell_b_list
- 0x80691E8C: shell_c_list
- 0x80691E94: shell_a_list_table
- 0x80691E98: shell_b_list_table
- 0x80691E9C: shell_c_list_table
- 0x80691EA0: shell_a_part
- 0x80691EC0: shell_b_part
- 0x80691EE0: shell_c_part
- 0x80691F00: candy_DL_table
- 0x80691F08: candy_list
- 0x80691F10: candy_list_table
- 0x80691F14: candy_part
- 0x80691F34: coconut_DL_table
- 0x80691F3C: coconut_list
- 0x80691F44: coconut_list_table
- 0x80691F48: coconut_part
- 0x80691F68: cloth_DL_table
- 0x80691F70: cloth_list
- 0x80691F78: cloth_list_table
- 0x80691F7C: cloth_part
- 0x80691F9C: carpet_DL_table
- 0x80691FA4: carpet_list
- 0x80691FAC: carpet_list_table
- 0x80691FB0: carpet_part
- 0x80691FD0: wall_DL_table
- 0x80691FD8: wall_list
- 0x80691FE0: wall_list_table
- 0x80691FE4: wall_part
- 0x80692004: axe_DL_table
- 0x8069200C: axe_list
- 0x80692014: axe_list_table
- 0x80692018: axe_part
- 0x80692038: net_DL_table
- 0x80692040: net_list
- 0x80692048: net_list_table
- 0x8069204C: net_part
- 0x8069206C: rod_DL_table
- 0x80692074: rod_list
- 0x8069207C: rod_list_table
- 0x80692080: rod_part
- 0x806920A0: scoop_DL_table
- 0x806920A8: scoop_list
- 0x806920B0: scoop_list_table
- 0x806920B4: scoop_part
- 0x806920D4: gold_axe_DL_table
- 0x806920DC: gold_axe_list
- 0x806920E4: gold_axe_list_table
- 0x806920E8: gold_axe_part
- 0x80692108: gold_net_DL_table
- 0x80692110: gold_net_list
- 0x80692118: gold_net_list_table
- 0x8069211C: gold_net_part
- 0x8069213C: gold_rod_DL_table
- 0x80692144: gold_rod_list
- 0x8069214C: gold_rod_list_table
- 0x80692150: gold_rod_part
- 0x80692170: gold_scoop_DL_table
- 0x80692178: gold_scoop_list
- 0x80692180: gold_scoop_list_table
- 0x80692184: gold_scoop_part
- 0x806921A4: umbrella_DL_table
- 0x806921AC: umbrella_list
- 0x806921B4: umbrella_list_table
- 0x806921B8: umbrella_part
- 0x806921D8: pinwheel_DL_table
- 0x806921E0: pinwheel_list
- 0x806921E8: pinwheel_list_table
- 0x806921EC: pinwheel_part
- 0x8069220C: fan_DL_table
- 0x80692214: fan_list
- 0x8069221C: fan_list_table
- 0x80692220: fan_part
- 0x80692240: paper_DL_table
- 0x80692248: paper_list
- 0x80692250: paper_list_table
- 0x80692254: paper_part
- 0x80692274: seedbag_DL_table
- 0x8069227C: seedbag_list
- 0x80692284: seedbag_list_table
- 0x80692288: seedbag_part
- 0x806922A8: luckbag_DL_table
- 0x806922B0: luckbag_list
- 0x806922B8: luckbag_list_table
- 0x806922BC: luckbag_part
- 0x806922DC: gymcard_DL_table
- 0x806922E4: gymcard_list
- 0x806922EC: gymcard_list_table
- 0x806922F0: gymcard_part
- 0x80692310: music_DL_table
- 0x80692318: music_list
- 0x80692320: music_list_table
- 0x80692324: music_part
- 0x80692344: lottery_DL_table
- 0x8069234C: lottery_list
- 0x80692354: lottery_list_table
- 0x80692358: lottery_part
- 0x80692378: bone_DL_table
- 0x80692380: bone_list
- 0x80692388: bone_list_table
- 0x8069238C: bone_part
- 0x806923AC: diary_DL_table
- 0x806923B4: diary_list
- 0x806923BC: diary_list_table
- 0x806923C0: diary_part
- 0x806923E0: fork_DL_table
- 0x806923E8: fork_list
- 0x806923F0: fork_list_table
- 0x806923F4: fork_part
- 0x80692414: draw_part_table_a
- 0x806927EC: rnd_data_x
- 0x8069282C: rnd_data_z
- 0x80692BC8: type_data_table_p_a
-src/bg_item.c:
- 0x804B71F8: bIT_copy_vtx
- 0x804B724C: bIT_draw_shadow
- 0x804B73C0: bIT_clip_ct
- 0x804B7524: bIT_clip_dt
- 0x804B756C: bit_draw_ta_set
- 0x804B75BC: bit_draw_ta_clr
- 0x804B7608: bIT_individual_draw_check
- 0x804B7644: mFI_search_unit_around_high
- 0x804B77A4: bIT_actor_fade_entry
- 0x804B78D8: bIT_actor_fade_move
- 0x804B7924: bIT_actor_fade_draw
- 0x804B79BC: bIT_actor_ten_coin_entryR
- 0x804B7DAC: bIT_actor_ten_coin_entry
- 0x804B7E2C: bg_item_ten_coin_entry_ex
- 0x804B7E70: bIT_actor_ten_coin_move
- 0x804B7F98: bIT_actor_ten_coin_draw_af
- 0x804B7FDC: bIT_actor_ten_coin_draw_bf
- 0x804B803C: bIT_actor_ten_coin_draw
- 0x804B823C: bIT_actor_ten_coin_destruct
- 0x804B82C4: bg_item_common_palload
- 0x804B8308: bIT_actor_rand_pos_get_blk_correct
- 0x804B833C: bIT_actor_rand_pos_get_plus
- 0x804B841C: bIT_actor_rand_pos_get
- 0x804B84CC: bIT_actor_shin_effect_entry
- 0x804B8614: bIT_actor_shin_effect_check
- 0x804B8650: bIT_actor_shin_effect_move
- 0x804B87F8: bIT_actor_drop_move_plant_destruct
- 0x804B8864: bIT_common_moneytree_check
- 0x804B8920: bIT_common_bury_after
- 0x804B8B10: bIT_common_hole_throw
- 0x804B8CC0: bIT_actor_drop_move_fly_destruct
- 0x804B8D8C: func_calc_spec_drop_time
- 0x804B8DD4: bIT_actor_drop_entry_main
- 0x804B905C: fruit_set
- 0x804B9668: bIT_fruit_set
- 0x804B9690: drop_fruit
- 0x804B9880: BIT_actor_tree_cutcount_check
- 0x804B9950: bg_item_tree_fruit_drop
- 0x804B9ACC: bIT_actor_dig_hole_effect_entry
- 0x804B9B94: bIT_actor_bury_hole_effect_entry
- 0x804B9BE8: bIT_actor_hole_effect_entry
- 0x804B9E34: bIT_actor_hole_effect_destruct
- 0x804B9F20: bIT_actor_hole_effect_move
- 0x804BA0F0: bIT_actor_hole_effect_draw
- 0x804BA168: bIT_actor_player_drop_entry
- 0x804BA34C: bIT_drop_entry_v1
- 0x804BA490: bIT_actor_fly_entry
- 0x804BA6A8: bIT_actor_drop_entry
- 0x804BA820: bIT_actor_drop_move
- 0x804BA8F0: bIT_actor_drop_destruct
- 0x804BA96C: bIT_actor_drop_move_plant
- 0x804BABA4: bIT_actor_drop_move_bury_destruct
- 0x804BABC4: bIT_actor_drop_move_bury
- 0x804BAC10: bIT_actor_drop_move_bury_change
- 0x804BAC90: bIT_actor_drop_wait_bee
- 0x804BACFC: bIT_actor_drop_move_wait
- 0x804BAD64: bIT_actor_drop_move_fly
- 0x804BB2F4: bIT_actor_drop_draw
- 0x804BB36C: bIT_actor_drop_draw_nrm
- 0x804BB410: bit_cmn_s_single_draw_loop_type1
- 0x804BB4CC: bit_cmn_single_draw_loop_type1
- 0x804BB63C: bit_cmn_single_draw_item_shadow
- 0x804BB750: bit_cmn_single_draw_BT_shadow
- 0x804BB874: fg_no2fg_type
- 0x804BBA38: bit_cmn_single_drawS_shadow
- 0x804BBB10: bit_cmn_single_draw_item_body
- 0x804BBBC8: bit_cmn_single_draw
- 0x804BBC70: bit_cmn_single_draw_BT
- 0x804BBE58: bit_cmn_single_drawS
- 0x804BBF30: bIT_common_info_tbl_copy
- 0x804BBF50: bIT_common_clear_treeatr
- 0x804BC000: m_GetCItTable_TreeTblChk
- 0x804BC308: bIT_actor_pit_entry
- 0x804BC418: bIT_actor_pit_move
- 0x804BC730: bIT_actor_pit_destruct
- 0x804BC7B0: bg_item_common_chg_BGDataR_b
- 0x804BC92C: bg_item_common_chg_BGDataR
- 0x804BC9A4: bg_item_common_outPutData
- 0x804BCA18: bg_item_common_classifyitemDataTable
- 0x804BCD60: bg_item_common_set_draw_tbl
- 0x804BCE00: bg_shin_effect_being_check
- 0x804BCFB8: bg_item_common_chg_draw_tbl_perfect
- 0x804BD2D0: bg_item_common_renew_draw_and_crs_data_perfect
- 0x804BD354: bg_item_common_destruct
- 0x804BD3B8: bg_item_common_culling_check
- 0x804BD408: bg_item_common_culling_check_talk
- 0x804BD474: bg_item_common_culling_check_loop
- 0x804BD510: bg_item_common_culling_check_talk_loop
- 0x804BD5AC: bg_item_common_check_talk_tree
- 0x804BD604: bg_item_common_draw_check
- 0x804BD6AC: bg_item_common_move
- 0x804BD7CC: bIT_actor_pit_entry_del
- 0x804BD838: bIT_actor_pit_fall
- 0x804BD910: bIT_actor_pit_fall_stop
- 0x804BD9DC: bIT_actor_pit_exit
- 0x804BDA88: bg_item_common_draw_loop_type1
- 0x804BDB6C: bg_item_common_s_draw_loop_type1
- 0x804BDC50: bg_item_common_draw_item_body
- 0x804BDCCC: bg_item_common_draw_item_shadow
- 0x804BDDE8: bg_item_common_draw_item
- 0x804BDF3C: bIT_actor_pit_draw_nrm
- 0x804BDFA0: bIT_actor_pit_draw
- 0x804BE020: bg_item_common_draw
- 0x804BE1DC: bg_item_common_construct
- 0x80692C04: pos_table
- 0x80692C44: pos_table2
- 0x806937A0: typeData_table_dummy
- 0x80693868: tree4_ap_list
- 0x80693870: tree4_or_list
- 0x80693878: tree4_ph_list
- 0x80693880: tree4_pr_list
- 0x80693888: tree4_nt_list
- 0x80693890: tree4_bg_list
- 0x806938C0: tree4_ap_list_table
- 0x806938CC: tree4_or_list_table
- 0x806938D8: tree4_ph_list_table
- 0x806938E4: tree4_pr_list_table
- 0x806938F0: tree4_nt_list_table
- 0x806938FC: tree4_bg_list_table
- 0x806939B0: tree4_ap_part
- 0x806939D0: tree4_or_part
- 0x806939F0: tree4_ph_part
- 0x80693A10: tree4_pr_part
- 0x80693A30: tree4_nt_part
- 0x80693A50: tree4_bg_part
- 0x80693A90: palm_DL_table
- 0x80693AF8: palm1_list
- 0x80693B00: palm1_dead_list
- 0x80693B08: palm2_list
- 0x80693B10: palm3_leaf_list
- 0x80693B18: palm3_trunk_list
- 0x80693B20: palm4_leaf_list
- 0x80693B28: palm4_trunk_list
- 0x80693B30: palm5_leaf_list
- 0x80693B38: palm5_trunk_list
- 0x80693B40: palm5_coco_list
- 0x80693B48: palm3_shadow_list
- 0x80693B50: palm4_shadow_list
- 0x80693B58: palm5_shadow_list
- 0x80693B60: palm1_list_table
- 0x80693B64: palm2_list_table
- 0x80693B68: palm3_list_table
- 0x80693B70: palm4_list_table
- 0x80693B78: palm5_list_table
- 0x80693B80: palm5_cc_list_table
- 0x80693B8C: palm1_dead_list_table
- 0x80693B90: palm3_shadow_v_fix
- 0x80693B94: palm5_shadow_v_fix
- 0x80693B98: palm000_part
- 0x80693BB8: palm001_part
- 0x80693BD8: palm002_part
- 0x80693BF8: palm003_part
- 0x80693C18: palm004_part
- 0x80693C38: palm004_cc_part
- 0x80693C58: palm000_dead_part
- 0x80693C78: Cedar_DL_table
- 0x80693CD8: cedar3_shadow_list
- 0x80693CE0: cedar4_shadow_list
- 0x80693CE8: cedar5_shadow_list
- 0x80693CF0: cedar1_list
- 0x80693CF8: cedar1_dead_list
- 0x80693D00: cedar2_list
- 0x80693D08: cedar3_leaf_list
- 0x80693D10: cedar3_trunk_list
- 0x80693D18: cedar4_leaf_list
- 0x80693D20: cedar4_trunk_list
- 0x80693D28: cedar5_leaf_list
- 0x80693D30: cedar5_trunk_list
- 0x80693D38: cedar1_list_table
- 0x80693D3C: cedar1_dead_list_table
- 0x80693D40: cedar2_list_table
- 0x80693D44: cedar3_list_table
- 0x80693D4C: cedar4_list_table
- 0x80693D54: cedar5_list_table
- 0x80693D5C: cedar_shadow_v_fix
- 0x80693D60: cedar000_part
- 0x80693D80: cedar001_part
- 0x80693DA0: cedar002_part
- 0x80693DC0: cedar003_part
- 0x80693DE0: cedar004_part
- 0x80693E00: cedar000_dead_part
- 0x80693E20: GTree_DL_table
- 0x80693E80: gold_tree1_list
- 0x80693E88: gold_tree1_dead_list
- 0x80693E90: gold_tree2_list
- 0x80693E98: gold_tree3_leaf_list
- 0x80693EA0: gold_tree3_trunk_list
- 0x80693EA8: gold_tree4_leaf_list
- 0x80693EB0: gold_tree4_trunk_list
- 0x80693EB8: gold_tree5_leaf_list
- 0x80693EC0: gold_tree5_trunk_list
- 0x80693EC8: gold_tree3_shadow_list
- 0x80693ED0: gold_tree4_shadow_list
- 0x80693ED8: gold_tree5_shadow_list
- 0x80693EE0: gold_tree1_list_table
- 0x80693EE4: gold_tree1_dead_list_table
- 0x80693EE8: gold_tree2_list_table
- 0x80693EEC: gold_tree3_list_table
- 0x80693EF4: gold_tree4_list_table
- 0x80693EFC: gold_tree5_list_table
- 0x80693F04: gold_tree_shadow_v_fix
- 0x80693F08: gold_tree000_part
- 0x80693F28: gold_tree001_part
- 0x80693F48: gold_tree002_part
- 0x80693F68: gold_tree003_part
- 0x80693F88: gold_tree004_part
- 0x80693FA8: gold_tree000_dead_part
- 0x806940CC: palm_stump_DL_table
- 0x80694104: pstump3_shadow_list
- 0x8069410C: pstump4_shadow_list
- 0x80694114: pstump5_shadow_list
- 0x8069411C: pstump2_list
- 0x80694124: pstump3_list
- 0x8069412C: pstump4_list
- 0x80694134: pstump5_list
- 0x8069413C: pstump2_list_table
- 0x80694140: pstump3_list_table
- 0x80694144: pstump4_list_table
- 0x80694148: pstump5_list_table
- 0x8069414C: pstump3_shadow_v_fix
- 0x80694150: pstump5_shadow_v_fix
- 0x80694154: palm_stump001_part
- 0x80694174: palm_stump002_part
- 0x80694194: palm_stump003_part
- 0x806941B4: palm_stump004_part
- 0x806941D4: CedarStump_DL_table
- 0x8069420C: cstump3_shadow_list
- 0x80694214: cstump4_shadow_list
- 0x8069421C: cstump5_shadow_list
- 0x80694224: cstump2_list
- 0x8069422C: cstump3_list
- 0x80694234: cstump4_list
- 0x8069423C: cstump5_list
- 0x80694244: cstump2_list_table
- 0x80694248: cstump3_list_table
- 0x8069424C: cstump4_list_table
- 0x80694250: cstump5_list_table
- 0x80694254: cstump_shadow_v_fix
- 0x80694258: cedar_stump001_part
- 0x80694278: cedar_stump002_part
- 0x80694298: cedar_stump003_part
- 0x806942B8: cedar_stump004_part
- 0x806942D8: GStump_DL_table
- 0x80694310: gold_stump2_list
- 0x80694318: gold_stump3_list
- 0x80694320: gold_stump4_list
- 0x80694328: gold_stump5_list
- 0x80694330: gold_stump3_shadow_list
- 0x80694338: gold_stump4_shadow_list
- 0x80694340: gold_stump5_shadow_list
- 0x80694348: gold_stump2_list_table
- 0x8069434C: gold_stump3_list_table
- 0x80694350: gold_stump4_list_table
- 0x80694354: gold_stump5_list_table
- 0x80694358: gold_stump_shadow_v_fix
- 0x8069435C: gold_tree_stump001_part
- 0x8069437C: gold_tree_stump002_part
- 0x8069439C: gold_tree_stump003_part
- 0x806943BC: gold_tree_stump004_part
- 0x806944FC: flower_DL_table
- 0x806945CC: grass_DL_table
- 0x806945DC: grass_list
- 0x806945E4: grass_list_table
- 0x80694650: hole_DL_table
- 0x806946BC: hole00_g_list
- 0x806946C4: hole00_g_list_table
- 0x806946C8: hole00_g_part
- 0x806946E8: hole00_s_list
- 0x806946F0: hole00_s_list_table
- 0x806946F4: hole00_s_part
- 0x80694714: crack_DL_table
- 0x80694780: crack00_g_list
- 0x80694788: crack00_g_list_table
- 0x8069478C: crack00_g_part
- 0x806947AC: crack00_s_list
- 0x806947B4: crack00_s_list_table
- 0x806947B8: crack00_s_part
- 0x806947D8: honycomb_DL_table
- 0x806947E0: honycomb_list
- 0x806947E8: honycomb_list_table
- 0x806947EC: honycomb_part
- 0x8069480C: stone_a_shadow_v_fix
- 0x80694818: stone_b_shadow_v_fix
- 0x80694824: stone_c_shadow_v_fix
- 0x80694830: stone_d_shadow_v_fix
- 0x80694838: stone_e_shadow_v_fix
- 0x80694844: stone_DL_table
- 0x80694874: stone_a_list
- 0x8069487C: stone_a_shadow_list
- 0x80694884: stone_a_list_table
- 0x80694888: stone_a_part
- 0x806948A8: stone_b_part
- 0x806948C8: stone_c_part
- 0x806948E8: stone_d_part
- 0x80694908: stone_e_part
- 0x80694928: tane_DL_table
- 0x80694930: tane_list
- 0x80694938: tane_list_table
- 0x8069493C: tane_part
- 0x8069495C: typeData_table_item1
- 0x80694968: typeData_table_ftr
- 0x80694974: typeData_table_crack
- 0x80694980: apple_DL_table
- 0x80694988: apple_list
- 0x80694990: apple_list_table
- 0x80694994: apple_part
- 0x806949B4: orange_DL_table
- 0x806949BC: orange_list
- 0x806949C4: orange_list_table
- 0x806949C8: orange_part
- 0x806949E8: peach_DL_table
- 0x806949F0: peach_list
- 0x806949F8: peach_list_table
- 0x806949FC: peach_part
- 0x80694A1C: pear_DL_table
- 0x80694A24: pear_list
- 0x80694A2C: pear_list_table
- 0x80694A30: pear_part
- 0x80694A50: nuts_DL_table
- 0x80694A58: nuts_list
- 0x80694A60: nuts_list_table
- 0x80694A64: nuts_part
- 0x80694A84: matutake_DL_table
- 0x80694A8C: matutake_list
- 0x80694A94: matutake_list_table
- 0x80694A98: matutake_part
- 0x80694AB8: kabu_DL_table
- 0x80694AC0: kabu_list
- 0x80694AC8: kabu_list_table
- 0x80694ACC: kabu_part
- 0x80694AEC: fish_DL_table
- 0x80694AF4: fish_list
- 0x80694AFC: fish_list_table
- 0x80694B00: fish_part
- 0x80694B20: bag_DL_table
- 0x80694B28: bag_list
- 0x80694B30: bag_list_table
- 0x80694B34: bag_part
- 0x80694B54: leaf_DL_table
- 0x80694B5C: leaf_list
- 0x80694B64: leaf_list_table
- 0x80694B68: leaf_part
- 0x80694B88: roll_DL_table
- 0x80694B90: roll_list
- 0x80694B98: roll_list_table
- 0x80694B9C: roll_part
- 0x80694BBC: box_DL_table
- 0x80694BC4: box_list
- 0x80694BCC: box_list_table
- 0x80694BD0: box_part
- 0x80694BF0: pack_DL_table
- 0x80694BF8: pack_list
- 0x80694C00: pack_list_table
- 0x80694C04: pack_part
- 0x80694C24: present_DL_table
- 0x80694C2C: present_list
- 0x80694C34: present_list_table
- 0x80694C38: present_part
- 0x80694C58: seed_DL_table
- 0x80694C60: seed_list
- 0x80694C68: seed_list_table
- 0x80694C6C: seed_part
- 0x80694C8C: haniwa_DL_table
- 0x80694C94: haniwa_list
- 0x80694C9C: haniwa_list_table
- 0x80694CA0: haniwa_part
- 0x80694CC0: other_DL_table
- 0x80694CC8: other_list
- 0x80694CD0: other_list_table
- 0x80694CD4: other_part
- 0x80694CF4: tool_DL_table
- 0x80694CFC: tool_list
- 0x80694D04: tool_list_table
- 0x80694D08: tool_part
- 0x80694D28: fossil_DL_table
- 0x80694D30: fossil_list
- 0x80694D38: fossil_list_table
- 0x80694D3C: fossil_part
- 0x80694D5C: trash_DL_table
- 0x80694D64: trash_list
- 0x80694D6C: trash_list_table
- 0x80694D70: trash_part
- 0x80694D90: otosi_DL_table
- 0x80694D98: otosi_list
- 0x80694DA0: otosi_list_table
- 0x80694DA4: otosi_part
- 0x80694DC4: shell_DL_table
- 0x80694DDC: shell_a_list
- 0x80694DE4: shell_b_list
- 0x80694DEC: shell_c_list
- 0x80694DF4: shell_a_list_table
- 0x80694DF8: shell_b_list_table
- 0x80694DFC: shell_c_list_table
- 0x80694E00: shell_a_part
- 0x80694E20: shell_b_part
- 0x80694E40: shell_c_part
- 0x80694E60: candy_DL_table
- 0x80694E68: candy_list
- 0x80694E70: candy_list_table
- 0x80694E74: candy_part
- 0x80694E94: coconut_DL_table
- 0x80694E9C: coconut_list
- 0x80694EA4: coconut_list_table
- 0x80694EA8: coconut_part
- 0x80694EC8: cloth_DL_table
- 0x80694ED0: cloth_list
- 0x80694ED8: cloth_list_table
- 0x80694EDC: cloth_part
- 0x80694EFC: carpet_DL_table
- 0x80694F04: carpet_list
- 0x80694F0C: carpet_list_table
- 0x80694F10: carpet_part
- 0x80694F30: wall_DL_table
- 0x80694F38: wall_list
- 0x80694F40: wall_list_table
- 0x80694F44: wall_part
- 0x80694F64: axe_DL_table
- 0x80694F6C: axe_list
- 0x80694F74: axe_list_table
- 0x80694F78: axe_part
- 0x80694F98: net_DL_table
- 0x80694FA0: net_list
- 0x80694FA8: net_list_table
- 0x80694FAC: net_part
- 0x80694FCC: rod_DL_table
- 0x80694FD4: rod_list
- 0x80694FDC: rod_list_table
- 0x80694FE0: rod_part
- 0x80695000: scoop_DL_table
- 0x80695008: scoop_list
- 0x80695010: scoop_list_table
- 0x80695014: scoop_part
- 0x80695034: gold_axe_DL_table
- 0x8069503C: gold_axe_list
- 0x80695044: gold_axe_list_table
- 0x80695048: gold_axe_part
- 0x80695068: gold_net_DL_table
- 0x80695070: gold_net_list
- 0x80695078: gold_net_list_table
- 0x8069507C: gold_net_part
- 0x8069509C: gold_rod_DL_table
- 0x806950A4: gold_rod_list
- 0x806950AC: gold_rod_list_table
- 0x806950B0: gold_rod_part
- 0x806950D0: gold_scoop_DL_table
- 0x806950D8: gold_scoop_list
- 0x806950E0: gold_scoop_list_table
- 0x806950E4: gold_scoop_part
- 0x80695104: umbrella_DL_table
- 0x8069510C: umbrella_list
- 0x80695114: umbrella_list_table
- 0x80695118: umbrella_part
- 0x80695138: pinwheel_DL_table
- 0x80695140: pinwheel_list
- 0x80695148: pinwheel_list_table
- 0x8069514C: pinwheel_part
- 0x8069516C: fan_DL_table
- 0x80695174: fan_list
- 0x8069517C: fan_list_table
- 0x80695180: fan_part
- 0x806951A0: paper_DL_table
- 0x806951A8: paper_list
- 0x806951B0: paper_list_table
- 0x806951B4: paper_part
- 0x806951D4: seedbag_DL_table
- 0x806951DC: seedbag_list
- 0x806951E4: seedbag_list_table
- 0x806951E8: seedbag_part
- 0x80695208: luckbag_DL_table
- 0x80695210: luckbag_list
- 0x80695218: luckbag_list_table
- 0x8069521C: luckbag_part
- 0x8069523C: gymcard_DL_table
- 0x80695244: gymcard_list
- 0x8069524C: gymcard_list_table
- 0x80695250: gymcard_part
- 0x80695270: music_DL_table
- 0x80695278: music_list
- 0x80695280: music_list_table
- 0x80695284: music_part
- 0x806952A4: lottery_DL_table
- 0x806952AC: lottery_list
- 0x806952B4: lottery_list_table
- 0x806952B8: lottery_part
- 0x806952D8: bone_DL_table
- 0x806952E0: bone_list
- 0x806952E8: bone_list_table
- 0x806952EC: bone_part
- 0x8069530C: diary_DL_table
- 0x80695314: diary_list
- 0x8069531C: diary_list_table
- 0x80695320: diary_part
- 0x80695340: fork_DL_table
- 0x80695348: fork_list
- 0x80695350: fork_list_table
- 0x80695354: fork_part
- 0x80695374: draw_part_table_a
- 0x8069574C: rnd_data_x
- 0x8069578C: rnd_data_z
- 0x80695B20: type_data_table_p_a
-src/bg_winter_item.c:
- 0x804BECF0: bIT_copy_vtx
- 0x804BED44: bIT_draw_shadow
- 0x804BEEB8: bIT_clip_ct
- 0x804BF01C: bIT_clip_dt
- 0x804BF064: bit_draw_ta_set
- 0x804BF0B4: bit_draw_ta_clr
- 0x804BF100: bIT_individual_draw_check
- 0x804BF13C: mFI_search_unit_around_high
- 0x804BF29C: bIT_actor_fade_entry
- 0x804BF3D0: bIT_actor_fade_move
- 0x804BF41C: bIT_actor_fade_draw
- 0x804BF4B4: bIT_actor_ten_coin_entryR
- 0x804BF8A4: bIT_actor_ten_coin_entry
- 0x804BF924: bg_item_ten_coin_entry_ex
- 0x804BF968: bIT_actor_ten_coin_move
- 0x804BFA90: bIT_actor_ten_coin_draw_af
- 0x804BFAD4: bIT_actor_ten_coin_draw_bf
- 0x804BFB34: bIT_actor_ten_coin_draw
- 0x804BFD34: bIT_actor_ten_coin_destruct
- 0x804BFDBC: bg_item_common_palload
- 0x804BFE00: bIT_actor_rand_pos_get_blk_correct
- 0x804BFE34: bIT_actor_rand_pos_get_plus
- 0x804BFF14: bIT_actor_rand_pos_get
- 0x804BFFC4: bIT_actor_shin_effect_entry
- 0x804C010C: bIT_actor_shin_effect_check
- 0x804C0148: bIT_actor_shin_effect_move
- 0x804C02F0: bIT_actor_drop_move_plant_destruct
- 0x804C035C: bIT_common_moneytree_check
- 0x804C0418: bIT_common_bury_after
- 0x804C0608: bIT_common_hole_throw
- 0x804C07B8: bIT_actor_drop_move_fly_destruct
- 0x804C0884: func_calc_spec_drop_time
- 0x804C08CC: bIT_actor_drop_entry_main
- 0x804C0B54: fruit_set
- 0x804C1160: bIT_fruit_set
- 0x804C1188: drop_fruit
- 0x804C1378: BIT_actor_tree_cutcount_check
- 0x804C1448: bg_item_tree_fruit_drop
- 0x804C15C4: bIT_actor_dig_hole_effect_entry
- 0x804C168C: bIT_actor_bury_hole_effect_entry
- 0x804C16E0: bIT_actor_hole_effect_entry
- 0x804C192C: bIT_actor_hole_effect_destruct
- 0x804C1A18: bIT_actor_hole_effect_move
- 0x804C1BE8: bIT_actor_hole_effect_draw
- 0x804C1C60: bIT_actor_player_drop_entry
- 0x804C1E44: bIT_drop_entry_v1
- 0x804C1F88: bIT_actor_fly_entry
- 0x804C21A0: bIT_actor_drop_entry
- 0x804C2318: bIT_actor_drop_move
- 0x804C23E8: bIT_actor_drop_destruct
- 0x804C2464: bIT_actor_drop_move_plant
- 0x804C269C: bIT_actor_drop_move_bury_destruct
- 0x804C26BC: bIT_actor_drop_move_bury
- 0x804C2708: bIT_actor_drop_move_bury_change
- 0x804C2788: bIT_actor_drop_wait_bee
- 0x804C27F4: bIT_actor_drop_move_wait
- 0x804C285C: bIT_actor_drop_move_fly
- 0x804C2DEC: bIT_actor_drop_draw
- 0x804C2E64: bIT_actor_drop_draw_nrm
- 0x804C2F08: bit_cmn_s_single_draw_loop_type1
- 0x804C2FC4: bit_cmn_single_draw_loop_type1
- 0x804C3134: bit_cmn_single_draw_item_shadow
- 0x804C3248: bit_cmn_single_draw_BT_shadow
- 0x804C336C: fg_no2fg_type
- 0x804C3530: bit_cmn_single_drawS_shadow
- 0x804C3608: bit_cmn_single_draw_item_body
- 0x804C36C0: bit_cmn_single_draw
- 0x804C3768: bit_cmn_single_draw_BT
- 0x804C3950: bit_cmn_single_drawS
- 0x804C3A28: bIT_common_info_tbl_copy
- 0x804C3A48: bIT_common_clear_treeatr
- 0x804C3AF8: m_GetCItTable_TreeTblChk
- 0x804C3E00: bIT_actor_pit_entry
- 0x804C3F10: bIT_actor_pit_move
- 0x804C4228: bIT_actor_pit_destruct
- 0x804C42A8: bg_item_common_chg_BGDataR_b
- 0x804C4424: bg_item_common_chg_BGDataR
- 0x804C449C: bg_item_common_outPutData
- 0x804C4510: bg_item_common_classifyitemDataTable
- 0x804C4858: bg_item_common_set_draw_tbl
- 0x804C48F8: bg_shin_effect_being_check
- 0x804C4AB0: bg_item_common_chg_draw_tbl_perfect
- 0x804C4DC8: bg_item_common_renew_draw_and_crs_data_perfect
- 0x804C4E4C: bg_item_common_destruct
- 0x804C4EB0: bg_item_common_culling_check
- 0x804C4F00: bg_item_common_culling_check_talk
- 0x804C4F6C: bg_item_common_culling_check_loop
- 0x804C5008: bg_item_common_culling_check_talk_loop
- 0x804C50A4: bg_item_common_check_talk_tree
- 0x804C50FC: bg_item_common_draw_check
- 0x804C51A4: bg_item_common_move
- 0x804C52C4: bIT_actor_pit_entry_del
- 0x804C5330: bIT_actor_pit_fall
- 0x804C5408: bIT_actor_pit_fall_stop
- 0x804C54D4: bIT_actor_pit_exit
- 0x804C5580: bg_item_common_draw_loop_type1
- 0x804C5664: bg_item_common_s_draw_loop_type1
- 0x804C5748: bg_item_common_draw_item_body
- 0x804C57C4: bg_item_common_draw_item_shadow
- 0x804C58E0: bg_item_common_draw_item
- 0x804C5A34: bIT_actor_pit_draw_nrm
- 0x804C5A98: bIT_actor_pit_draw
- 0x804C5B18: bg_item_common_draw
- 0x804C5CD4: bg_item_common_construct
- 0x80695DBC: pos_table
- 0x80695DFC: pos_table2
- 0x80696958: typeData_table_dummy
- 0x80696A38: tree4_ap_list
- 0x80696A40: tree4_or_list
- 0x80696A48: tree4_ph_list
- 0x80696A50: tree4_pr_list
- 0x80696A58: tree4_nt_list
- 0x80696A60: tree4_bg_list
- 0x80696A90: tree4_ap_list_table
- 0x80696A9C: tree4_or_list_table
- 0x80696AA8: tree4_ph_list_table
- 0x80696AB4: tree4_pr_list_table
- 0x80696AC0: tree4_nt_list_table
- 0x80696ACC: tree4_bg_list_table
- 0x80696B80: tree4_ap_part
- 0x80696BA0: tree4_or_part
- 0x80696BC0: tree4_ph_part
- 0x80696BE0: tree4_pr_part
- 0x80696C00: tree4_nt_part
- 0x80696C20: tree4_bg_part
- 0x80696C60: palm_DL_table
- 0x80696CC8: palm1_list
- 0x80696CD0: palm1_dead_list
- 0x80696CD8: palm2_list
- 0x80696CE0: palm3_leaf_list
- 0x80696CE8: palm3_trunk_list
- 0x80696CF0: palm4_leaf_list
- 0x80696CF8: palm4_trunk_list
- 0x80696D00: palm5_leaf_list
- 0x80696D08: palm5_trunk_list
- 0x80696D10: palm5_coco_list
- 0x80696D18: palm3_shadow_list
- 0x80696D20: palm4_shadow_list
- 0x80696D28: palm5_shadow_list
- 0x80696D30: palm1_list_table
- 0x80696D34: palm2_list_table
- 0x80696D38: palm3_list_table
- 0x80696D40: palm4_list_table
- 0x80696D48: palm5_list_table
- 0x80696D50: palm5_cc_list_table
- 0x80696D5C: palm1_dead_list_table
- 0x80696D60: palm3_shadow_v_fix
- 0x80696D64: palm5_shadow_v_fix
- 0x80696D68: palm000_part
- 0x80696D88: palm001_part
- 0x80696DA8: palm002_part
- 0x80696DC8: palm003_part
- 0x80696DE8: palm004_part
- 0x80696E08: palm004_cc_part
- 0x80696E28: palm000_dead_part
- 0x80696E48: Cedar_DL_table
- 0x80696EA8: cedar3_shadow_list
- 0x80696EB0: cedar4_shadow_list
- 0x80696EB8: cedar5_shadow_list
- 0x80696EC0: cedar1_list
- 0x80696EC8: cedar1_dead_list
- 0x80696ED0: cedar2_list
- 0x80696ED8: cedar3_leaf_list
- 0x80696EE0: cedar3_trunk_list
- 0x80696EE8: cedar4_leaf_list
- 0x80696EF0: cedar4_trunk_list
- 0x80696EF8: cedar5_leaf_list
- 0x80696F00: cedar5_trunk_list
- 0x80696F08: cedar1_list_table
- 0x80696F0C: cedar1_dead_list_table
- 0x80696F10: cedar2_list_table
- 0x80696F14: cedar3_list_table
- 0x80696F1C: cedar4_list_table
- 0x80696F24: cedar5_list_table
- 0x80696F2C: cedar_shadow_v_fix
- 0x80696F30: cedar000_part
- 0x80696F50: cedar001_part
- 0x80696F70: cedar002_part
- 0x80696F90: cedar003_part
- 0x80696FB0: cedar004_part
- 0x80696FD0: cedar000_dead_part
- 0x80696FF0: GTree_DL_table
- 0x80697050: gold_tree1_list
- 0x80697058: gold_tree1_dead_list
- 0x80697060: gold_tree2_list
- 0x80697068: gold_tree3_leaf_list
- 0x80697070: gold_tree3_trunk_list
- 0x80697078: gold_tree4_leaf_list
- 0x80697080: gold_tree4_trunk_list
- 0x80697088: gold_tree5_leaf_list
- 0x80697090: gold_tree5_trunk_list
- 0x80697098: gold_tree3_shadow_list
- 0x806970A0: gold_tree4_shadow_list
- 0x806970A8: gold_tree5_shadow_list
- 0x806970B0: gold_tree1_list_table
- 0x806970B4: gold_tree1_dead_list_table
- 0x806970B8: gold_tree2_list_table
- 0x806970BC: gold_tree3_list_table
- 0x806970C4: gold_tree4_list_table
- 0x806970CC: gold_tree5_list_table
- 0x806970D4: gold_tree_shadow_v_fix
- 0x806970D8: gold_tree000_part
- 0x806970F8: gold_tree001_part
- 0x80697118: gold_tree002_part
- 0x80697138: gold_tree003_part
- 0x80697158: gold_tree004_part
- 0x80697178: gold_tree000_dead_part
- 0x8069729C: palm_stump_DL_table
- 0x806972D4: pstump3_shadow_list
- 0x806972DC: pstump4_shadow_list
- 0x806972E4: pstump5_shadow_list
- 0x806972EC: pstump2_list
- 0x806972F4: pstump3_list
- 0x806972FC: pstump4_list
- 0x80697304: pstump5_list
- 0x8069730C: pstump2_list_table
- 0x80697310: pstump3_list_table
- 0x80697314: pstump4_list_table
- 0x80697318: pstump5_list_table
- 0x8069731C: pstump3_shadow_v_fix
- 0x80697320: pstump5_shadow_v_fix
- 0x80697324: palm_stump001_part
- 0x80697344: palm_stump002_part
- 0x80697364: palm_stump003_part
- 0x80697384: palm_stump004_part
- 0x806973A4: CedarStump_DL_table
- 0x806973DC: cstump3_shadow_list
- 0x806973E4: cstump4_shadow_list
- 0x806973EC: cstump5_shadow_list
- 0x806973F4: cstump2_list
- 0x806973FC: cstump3_list
- 0x80697404: cstump4_list
- 0x8069740C: cstump5_list
- 0x80697414: cstump2_list_table
- 0x80697418: cstump3_list_table
- 0x8069741C: cstump4_list_table
- 0x80697420: cstump5_list_table
- 0x80697424: cstump_shadow_v_fix
- 0x80697428: cedar_stump001_part
- 0x80697448: cedar_stump002_part
- 0x80697468: cedar_stump003_part
- 0x80697488: cedar_stump004_part
- 0x806974A8: GStump_DL_table
- 0x806974E0: gold_stump2_list
- 0x806974E8: gold_stump3_list
- 0x806974F0: gold_stump4_list
- 0x806974F8: gold_stump5_list
- 0x80697500: gold_stump3_shadow_list
- 0x80697508: gold_stump4_shadow_list
- 0x80697510: gold_stump5_shadow_list
- 0x80697518: gold_stump2_list_table
- 0x8069751C: gold_stump3_list_table
- 0x80697520: gold_stump4_list_table
- 0x80697524: gold_stump5_list_table
- 0x80697528: gold_stump_shadow_v_fix
- 0x8069752C: gold_tree_stump001_part
- 0x8069754C: gold_tree_stump002_part
- 0x8069756C: gold_tree_stump003_part
- 0x8069758C: gold_tree_stump004_part
- 0x8069763C: grass_DL_table
- 0x8069764C: grass_list
- 0x80697654: grass_list_table
- 0x80697784: flower_DL_table
- 0x80697820: hole_DL_table
- 0x8069788C: hole00_g_list
- 0x80697894: hole00_g_list_table
- 0x80697898: hole00_g_part
- 0x806978B8: hole00_s_list
- 0x806978C0: hole00_s_list_table
- 0x806978C4: hole00_s_part
- 0x806978E4: crack_DL_table
- 0x80697950: crack00_g_list
- 0x80697958: crack00_g_list_table
- 0x8069795C: crack00_g_part
- 0x8069797C: crack00_s_list
- 0x80697984: crack00_s_list_table
- 0x80697988: crack00_s_part
- 0x806979A8: honycomb_DL_table
- 0x806979B0: honycomb_list
- 0x806979B8: honycomb_list_table
- 0x806979BC: honycomb_part
- 0x806979DC: stone_a_shadow_v_fix
- 0x806979E8: stone_b_shadow_v_fix
- 0x806979F4: stone_c_shadow_v_fix
- 0x80697A00: stone_d_shadow_v_fix
- 0x80697A08: stone_e_shadow_v_fix
- 0x80697A14: stone_DL_table
- 0x80697A44: stone_a_list
- 0x80697A4C: stone_a_shadow_list
- 0x80697A54: stone_a_list_table
- 0x80697A58: stone_a_part
- 0x80697A78: stone_b_part
- 0x80697A98: stone_c_part
- 0x80697AB8: stone_d_part
- 0x80697AD8: stone_e_part
- 0x80697AF8: tane_DL_table
- 0x80697B00: tane_list
- 0x80697B08: tane_list_table
- 0x80697B0C: tane_part
- 0x80697B2C: typeData_table_item1
- 0x80697B38: typeData_table_ftr
- 0x80697B44: typeData_table_crack
- 0x80697B50: apple_DL_table
- 0x80697B58: apple_list
- 0x80697B60: apple_list_table
- 0x80697B64: apple_part
- 0x80697B84: orange_DL_table
- 0x80697B8C: orange_list
- 0x80697B94: orange_list_table
- 0x80697B98: orange_part
- 0x80697BB8: peach_DL_table
- 0x80697BC0: peach_list
- 0x80697BC8: peach_list_table
- 0x80697BCC: peach_part
- 0x80697BEC: pear_DL_table
- 0x80697BF4: pear_list
- 0x80697BFC: pear_list_table
- 0x80697C00: pear_part
- 0x80697C20: nuts_DL_table
- 0x80697C28: nuts_list
- 0x80697C30: nuts_list_table
- 0x80697C34: nuts_part
- 0x80697C54: matutake_DL_table
- 0x80697C5C: matutake_list
- 0x80697C64: matutake_list_table
- 0x80697C68: matutake_part
- 0x80697C88: kabu_DL_table
- 0x80697C90: kabu_list
- 0x80697C98: kabu_list_table
- 0x80697C9C: kabu_part
- 0x80697CBC: fish_DL_table
- 0x80697CC4: fish_list
- 0x80697CCC: fish_list_table
- 0x80697CD0: fish_part
- 0x80697CF0: bag_DL_table
- 0x80697CF8: bag_list
- 0x80697D00: bag_list_table
- 0x80697D04: bag_part
- 0x80697D24: leaf_DL_table
- 0x80697D2C: leaf_list
- 0x80697D34: leaf_list_table
- 0x80697D38: leaf_part
- 0x80697D58: roll_DL_table
- 0x80697D60: roll_list
- 0x80697D68: roll_list_table
- 0x80697D6C: roll_part
- 0x80697D8C: box_DL_table
- 0x80697D94: box_list
- 0x80697D9C: box_list_table
- 0x80697DA0: box_part
- 0x80697DC0: pack_DL_table
- 0x80697DC8: pack_list
- 0x80697DD0: pack_list_table
- 0x80697DD4: pack_part
- 0x80697DF4: present_DL_table
- 0x80697DFC: present_list
- 0x80697E04: present_list_table
- 0x80697E08: present_part
- 0x80697E28: seed_DL_table
- 0x80697E30: seed_list
- 0x80697E38: seed_list_table
- 0x80697E3C: seed_part
- 0x80697E5C: haniwa_DL_table
- 0x80697E64: haniwa_list
- 0x80697E6C: haniwa_list_table
- 0x80697E70: haniwa_part
- 0x80697E90: other_DL_table
- 0x80697E98: other_list
- 0x80697EA0: other_list_table
- 0x80697EA4: other_part
- 0x80697EC4: tool_DL_table
- 0x80697ECC: tool_list
- 0x80697ED4: tool_list_table
- 0x80697ED8: tool_part
- 0x80697EF8: fossil_DL_table
- 0x80697F00: fossil_list
- 0x80697F08: fossil_list_table
- 0x80697F0C: fossil_part
- 0x80697F2C: trash_DL_table
- 0x80697F34: trash_list
- 0x80697F3C: trash_list_table
- 0x80697F40: trash_part
- 0x80697F60: otosi_DL_table
- 0x80697F68: otosi_list
- 0x80697F70: otosi_list_table
- 0x80697F74: otosi_part
- 0x80697F94: shell_DL_table
- 0x80697FAC: shell_a_list
- 0x80697FB4: shell_b_list
- 0x80697FBC: shell_c_list
- 0x80697FC4: shell_a_list_table
- 0x80697FC8: shell_b_list_table
- 0x80697FCC: shell_c_list_table
- 0x80697FD0: shell_a_part
- 0x80697FF0: shell_b_part
- 0x80698010: shell_c_part
- 0x80698030: candy_DL_table
- 0x80698038: candy_list
- 0x80698040: candy_list_table
- 0x80698044: candy_part
- 0x80698064: coconut_DL_table
- 0x8069806C: coconut_list
- 0x80698074: coconut_list_table
- 0x80698078: coconut_part
- 0x80698098: cloth_DL_table
- 0x806980A0: cloth_list
- 0x806980A8: cloth_list_table
- 0x806980AC: cloth_part
- 0x806980CC: carpet_DL_table
- 0x806980D4: carpet_list
- 0x806980DC: carpet_list_table
- 0x806980E0: carpet_part
- 0x80698100: wall_DL_table
- 0x80698108: wall_list
- 0x80698110: wall_list_table
- 0x80698114: wall_part
- 0x80698134: axe_DL_table
- 0x8069813C: axe_list
- 0x80698144: axe_list_table
- 0x80698148: axe_part
- 0x80698168: net_DL_table
- 0x80698170: net_list
- 0x80698178: net_list_table
- 0x8069817C: net_part
- 0x8069819C: rod_DL_table
- 0x806981A4: rod_list
- 0x806981AC: rod_list_table
- 0x806981B0: rod_part
- 0x806981D0: scoop_DL_table
- 0x806981D8: scoop_list
- 0x806981E0: scoop_list_table
- 0x806981E4: scoop_part
- 0x80698204: gold_axe_DL_table
- 0x8069820C: gold_axe_list
- 0x80698214: gold_axe_list_table
- 0x80698218: gold_axe_part
- 0x80698238: gold_net_DL_table
- 0x80698240: gold_net_list
- 0x80698248: gold_net_list_table
- 0x8069824C: gold_net_part
- 0x8069826C: gold_rod_DL_table
- 0x80698274: gold_rod_list
- 0x8069827C: gold_rod_list_table
- 0x80698280: gold_rod_part
- 0x806982A0: gold_scoop_DL_table
- 0x806982A8: gold_scoop_list
- 0x806982B0: gold_scoop_list_table
- 0x806982B4: gold_scoop_part
- 0x806982D4: umbrella_DL_table
- 0x806982DC: umbrella_list
- 0x806982E4: umbrella_list_table
- 0x806982E8: umbrella_part
- 0x80698308: pinwheel_DL_table
- 0x80698310: pinwheel_list
- 0x80698318: pinwheel_list_table
- 0x8069831C: pinwheel_part
- 0x8069833C: fan_DL_table
- 0x80698344: fan_list
- 0x8069834C: fan_list_table
- 0x80698350: fan_part
- 0x80698370: paper_DL_table
- 0x80698378: paper_list
- 0x80698380: paper_list_table
- 0x80698384: paper_part
- 0x806983A4: seedbag_DL_table
- 0x806983AC: seedbag_list
- 0x806983B4: seedbag_list_table
- 0x806983B8: seedbag_part
- 0x806983D8: luckbag_DL_table
- 0x806983E0: luckbag_list
- 0x806983E8: luckbag_list_table
- 0x806983EC: luckbag_part
- 0x8069840C: gymcard_DL_table
- 0x80698414: gymcard_list
- 0x8069841C: gymcard_list_table
- 0x80698420: gymcard_part
- 0x80698440: music_DL_table
- 0x80698448: music_list
- 0x80698450: music_list_table
- 0x80698454: music_part
- 0x80698474: lottery_DL_table
- 0x8069847C: lottery_list
- 0x80698484: lottery_list_table
- 0x80698488: lottery_part
- 0x806984A8: bone_DL_table
- 0x806984B0: bone_list
- 0x806984B8: bone_list_table
- 0x806984BC: bone_part
- 0x806984DC: diary_DL_table
- 0x806984E4: diary_list
- 0x806984EC: diary_list_table
- 0x806984F0: diary_part
- 0x80698510: fork_DL_table
- 0x80698518: fork_list
- 0x80698520: fork_list_table
- 0x80698524: fork_part
- 0x80698544: draw_part_table_a
- 0x8069891C: rnd_data_x
- 0x8069895C: rnd_data_z
- 0x80698CF8: type_data_table_p_a
-src/bg_xmas_item.c:
- 0x804C6108: bIT_copy_vtx
- 0x804C615C: bIT_draw_shadow
- 0x804C62D0: bIT_clip_ct
- 0x804C6434: bIT_clip_dt
- 0x804C647C: bit_draw_ta_set
- 0x804C64CC: bit_draw_ta_clr
- 0x804C6518: bIT_individual_draw_check
- 0x804C6554: mFI_search_unit_around_high
- 0x804C66B4: bIT_actor_fade_entry
- 0x804C67E8: bIT_actor_fade_move
- 0x804C6834: bIT_actor_fade_draw
- 0x804C68CC: bIT_actor_ten_coin_entryR
- 0x804C6CBC: bIT_actor_ten_coin_entry
- 0x804C6D3C: bg_item_ten_coin_entry_ex
- 0x804C6D80: bIT_actor_ten_coin_move
- 0x804C6EA8: bIT_actor_ten_coin_draw_af
- 0x804C6EEC: bIT_actor_ten_coin_draw_bf
- 0x804C6F4C: bIT_actor_ten_coin_draw
- 0x804C714C: bIT_actor_ten_coin_destruct
- 0x804C71D4: bg_item_common_palload
- 0x804C7218: bIT_actor_rand_pos_get_blk_correct
- 0x804C724C: bIT_actor_rand_pos_get_plus
- 0x804C732C: bIT_actor_rand_pos_get
- 0x804C73DC: bIT_actor_shin_effect_entry
- 0x804C7524: bIT_actor_shin_effect_check
- 0x804C7560: bIT_actor_shin_effect_move
- 0x804C7708: bIT_actor_drop_move_plant_destruct
- 0x804C7774: bIT_common_moneytree_check
- 0x804C7830: bIT_common_bury_after
- 0x804C7A20: bIT_common_hole_throw
- 0x804C7BD0: bIT_actor_drop_move_fly_destruct
- 0x804C7C9C: func_calc_spec_drop_time
- 0x804C7CE4: bIT_actor_drop_entry_main
- 0x804C7F6C: fruit_set
- 0x804C8578: bIT_fruit_set
- 0x804C85A0: drop_fruit
- 0x804C8790: BIT_actor_tree_cutcount_check
- 0x804C8860: bg_item_tree_fruit_drop
- 0x804C89DC: bIT_actor_dig_hole_effect_entry
- 0x804C8AA4: bIT_actor_bury_hole_effect_entry
- 0x804C8AF8: bIT_actor_hole_effect_entry
- 0x804C8D44: bIT_actor_hole_effect_destruct
- 0x804C8E30: bIT_actor_hole_effect_move
- 0x804C9000: bIT_actor_hole_effect_draw
- 0x804C9078: bIT_actor_player_drop_entry
- 0x804C925C: bIT_drop_entry_v1
- 0x804C93A0: bIT_actor_fly_entry
- 0x804C95B8: bIT_actor_drop_entry
- 0x804C9730: bIT_actor_drop_move
- 0x804C9800: bIT_actor_drop_destruct
- 0x804C987C: bIT_actor_drop_move_plant
- 0x804C9AB4: bIT_actor_drop_move_bury_destruct
- 0x804C9AD4: bIT_actor_drop_move_bury
- 0x804C9B20: bIT_actor_drop_move_bury_change
- 0x804C9BA0: bIT_actor_drop_wait_bee
- 0x804C9C0C: bIT_actor_drop_move_wait
- 0x804C9C74: bIT_actor_drop_move_fly
- 0x804CA204: bIT_actor_drop_draw
- 0x804CA27C: bIT_actor_drop_draw_nrm
- 0x804CA320: bit_cmn_s_single_draw_loop_type1
- 0x804CA3DC: bit_cmn_single_draw_loop_type1
- 0x804CA54C: bit_cmn_single_draw_item_shadow
- 0x804CA660: bit_cmn_single_draw_BT_shadow
- 0x804CA784: fg_no2fg_type
- 0x804CA948: bit_cmn_single_drawS_shadow
- 0x804CAA20: bit_cmn_single_draw_item_body
- 0x804CAAD8: bit_cmn_single_draw
- 0x804CAB80: bit_cmn_single_draw_BT
- 0x804CAD68: bit_cmn_single_drawS
- 0x804CAE40: bIT_common_info_tbl_copy
- 0x804CAE60: bIT_common_clear_treeatr
- 0x804CAF10: m_GetCItTable_TreeTblChk
- 0x804CB218: bIT_actor_pit_entry
- 0x804CB328: bIT_actor_pit_move
- 0x804CB640: bIT_actor_pit_destruct
- 0x804CB6C0: bg_item_common_chg_BGDataR_b
- 0x804CB83C: bg_item_common_chg_BGDataR
- 0x804CB8B4: bg_item_common_outPutData
- 0x804CB928: bg_item_common_classifyitemDataTable
- 0x804CBC70: bg_item_common_set_draw_tbl
- 0x804CBD10: bg_shin_effect_being_check
- 0x804CBEC8: bg_item_common_chg_draw_tbl_perfect
- 0x804CC1E0: bg_item_common_renew_draw_and_crs_data_perfect
- 0x804CC264: bg_item_common_destruct
- 0x804CC2C8: bg_item_common_culling_check
- 0x804CC318: bg_item_common_culling_check_talk
- 0x804CC384: bg_item_common_culling_check_loop
- 0x804CC420: bg_item_common_culling_check_talk_loop
- 0x804CC4BC: bg_item_common_check_talk_tree
- 0x804CC514: bg_item_common_draw_check
- 0x804CC5BC: bg_item_common_move
- 0x804CC6DC: bIT_actor_pit_entry_del
- 0x804CC748: bIT_actor_pit_fall
- 0x804CC820: bIT_actor_pit_fall_stop
- 0x804CC8EC: bIT_actor_pit_exit
- 0x804CC998: bg_item_common_draw_loop_type1
- 0x804CCA7C: bg_item_common_s_draw_loop_type1
- 0x804CCB60: bg_item_common_draw_item_body
- 0x804CCBDC: bg_item_common_draw_item_shadow
- 0x804CCCF8: bg_item_common_draw_item
- 0x804CCE4C: bIT_actor_pit_draw_nrm
- 0x804CCEB0: bIT_actor_pit_draw
- 0x804CCF30: bg_item_common_draw
- 0x804CD0EC: bg_item_common_construct
- 0x80698D34: pos_table
- 0x80698D74: pos_table2
- 0x806998D0: typeData_table_dummy
- 0x806999B8: tree4_ap_list
- 0x806999C0: tree4_or_list
- 0x806999C8: tree4_ph_list
- 0x806999D0: tree4_pr_list
- 0x806999D8: tree4_nt_list
- 0x806999E0: tree4_bg_list
- 0x80699A18: tree4_ap_list_table
- 0x80699A24: tree4_or_list_table
- 0x80699A30: tree4_ph_list_table
- 0x80699A3C: tree4_pr_list_table
- 0x80699A48: tree4_nt_list_table
- 0x80699A54: tree4_bg_list_table
- 0x80699B14: tree4_ap_part
- 0x80699B34: tree4_or_part
- 0x80699B54: tree4_ph_part
- 0x80699B74: tree4_pr_part
- 0x80699B94: tree4_nt_part
- 0x80699BB4: tree4_bg_part
- 0x80699C14: palm_DL_table
- 0x80699C7C: palm1_list
- 0x80699C84: palm1_dead_list
- 0x80699C8C: palm2_list
- 0x80699C94: palm3_leaf_list
- 0x80699C9C: palm3_trunk_list
- 0x80699CA4: palm4_leaf_list
- 0x80699CAC: palm4_trunk_list
- 0x80699CB4: palm5_leaf_list
- 0x80699CBC: palm5_trunk_list
- 0x80699CC4: palm5_coco_list
- 0x80699CCC: palm3_shadow_list
- 0x80699CD4: palm4_shadow_list
- 0x80699CDC: palm5_shadow_list
- 0x80699CE4: palm1_list_table
- 0x80699CE8: palm2_list_table
- 0x80699CEC: palm3_list_table
- 0x80699CF4: palm4_list_table
- 0x80699CFC: palm5_list_table
- 0x80699D04: palm5_cc_list_table
- 0x80699D10: palm1_dead_list_table
- 0x80699D14: palm3_shadow_v_fix
- 0x80699D18: palm5_shadow_v_fix
- 0x80699D1C: palm000_part
- 0x80699D3C: palm001_part
- 0x80699D5C: palm002_part
- 0x80699D7C: palm003_part
- 0x80699D9C: palm004_part
- 0x80699DBC: palm004_cc_part
- 0x80699DDC: palm000_dead_part
- 0x80699DFC: Cedar_DL_table
- 0x80699E64: cedar3_shadow_list
- 0x80699E6C: cedar4_shadow_list
- 0x80699E74: cedar5_shadow_list
- 0x80699E7C: cedar1_list
- 0x80699E84: cedar1_dead_list
- 0x80699E8C: cedar2_list
- 0x80699E94: cedar3_leaf_list
- 0x80699E9C: cedar3_trunk_list
- 0x80699EA4: cedar4_leaf_list
- 0x80699EAC: cedar4_trunk_list
- 0x80699EB4: cedar5_leaf_list
- 0x80699EBC: cedar5_trunk_list
- 0x80699ECC: cedar1_list_table
- 0x80699ED0: cedar1_dead_list_table
- 0x80699ED4: cedar2_list_table
- 0x80699ED8: cedar3_list_table
- 0x80699EE0: cedar4_list_table
- 0x80699EE8: cedar5_list_table
- 0x80699EFC: cedar_shadow_v_fix
- 0x80699F00: cedar000_part
- 0x80699F20: cedar001_part
- 0x80699F40: cedar002_part
- 0x80699F60: cedar003_part
- 0x80699F80: cedar004_part
- 0x80699FC0: cedar000_dead_part
- 0x80699FE0: GTree_DL_table
- 0x8069A040: gold_tree1_list
- 0x8069A048: gold_tree1_dead_list
- 0x8069A050: gold_tree2_list
- 0x8069A058: gold_tree3_leaf_list
- 0x8069A060: gold_tree3_trunk_list
- 0x8069A068: gold_tree4_leaf_list
- 0x8069A070: gold_tree4_trunk_list
- 0x8069A078: gold_tree5_leaf_list
- 0x8069A080: gold_tree5_trunk_list
- 0x8069A088: gold_tree3_shadow_list
- 0x8069A090: gold_tree4_shadow_list
- 0x8069A098: gold_tree5_shadow_list
- 0x8069A0A0: gold_tree1_list_table
- 0x8069A0A4: gold_tree1_dead_list_table
- 0x8069A0A8: gold_tree2_list_table
- 0x8069A0AC: gold_tree3_list_table
- 0x8069A0B4: gold_tree4_list_table
- 0x8069A0BC: gold_tree5_list_table
- 0x8069A0C4: gold_tree_shadow_v_fix
- 0x8069A0C8: gold_tree000_part
- 0x8069A0E8: gold_tree001_part
- 0x8069A108: gold_tree002_part
- 0x8069A128: gold_tree003_part
- 0x8069A148: gold_tree004_part
- 0x8069A168: gold_tree000_dead_part
- 0x8069A28C: palm_stump_DL_table
- 0x8069A2C4: pstump3_shadow_list
- 0x8069A2CC: pstump4_shadow_list
- 0x8069A2D4: pstump5_shadow_list
- 0x8069A2DC: pstump2_list
- 0x8069A2E4: pstump3_list
- 0x8069A2EC: pstump4_list
- 0x8069A2F4: pstump5_list
- 0x8069A2FC: pstump2_list_table
- 0x8069A300: pstump3_list_table
- 0x8069A304: pstump4_list_table
- 0x8069A308: pstump5_list_table
- 0x8069A30C: pstump3_shadow_v_fix
- 0x8069A310: pstump5_shadow_v_fix
- 0x8069A314: palm_stump001_part
- 0x8069A334: palm_stump002_part
- 0x8069A354: palm_stump003_part
- 0x8069A374: palm_stump004_part
- 0x8069A394: CedarStump_DL_table
- 0x8069A3CC: cstump3_shadow_list
- 0x8069A3D4: cstump4_shadow_list
- 0x8069A3DC: cstump5_shadow_list
- 0x8069A3E4: cstump2_list
- 0x8069A3EC: cstump3_list
- 0x8069A3F4: cstump4_list
- 0x8069A3FC: cstump5_list
- 0x8069A404: cstump2_list_table
- 0x8069A408: cstump3_list_table
- 0x8069A40C: cstump4_list_table
- 0x8069A410: cstump5_list_table
- 0x8069A414: cstump_shadow_v_fix
- 0x8069A418: cedar_stump001_part
- 0x8069A438: cedar_stump002_part
- 0x8069A458: cedar_stump003_part
- 0x8069A478: cedar_stump004_part
- 0x8069A498: GStump_DL_table
- 0x8069A4D0: gold_stump2_list
- 0x8069A4D8: gold_stump3_list
- 0x8069A4E0: gold_stump4_list
- 0x8069A4E8: gold_stump5_list
- 0x8069A4F0: gold_stump3_shadow_list
- 0x8069A4F8: gold_stump4_shadow_list
- 0x8069A500: gold_stump5_shadow_list
- 0x8069A508: gold_stump2_list_table
- 0x8069A50C: gold_stump3_list_table
- 0x8069A510: gold_stump4_list_table
- 0x8069A514: gold_stump5_list_table
- 0x8069A518: gold_stump_shadow_v_fix
- 0x8069A51C: gold_tree_stump001_part
- 0x8069A53C: gold_tree_stump002_part
- 0x8069A55C: gold_tree_stump003_part
- 0x8069A57C: gold_tree_stump004_part
- 0x8069A62C: grass_DL_table
- 0x8069A63C: grass_list
- 0x8069A644: grass_list_table
- 0x8069A6F8: hole_DL_table
- 0x8069A764: hole00_g_list
- 0x8069A76C: hole00_g_list_table
- 0x8069A770: hole00_g_part
- 0x8069A790: hole00_s_list
- 0x8069A798: hole00_s_list_table
- 0x8069A79C: hole00_s_part
- 0x8069A7BC: crack_DL_table
- 0x8069A828: crack00_g_list
- 0x8069A830: crack00_g_list_table
- 0x8069A834: crack00_g_part
- 0x8069A854: crack00_s_list
- 0x8069A85C: crack00_s_list_table
- 0x8069A860: crack00_s_part
- 0x8069A8FC: flower_DL_table
- 0x8069A998: honycomb_DL_table
- 0x8069A9A0: honycomb_list
- 0x8069A9A8: honycomb_list_table
- 0x8069A9AC: honycomb_part
- 0x8069A9CC: stone_a_shadow_v_fix
- 0x8069A9D8: stone_b_shadow_v_fix
- 0x8069A9E4: stone_c_shadow_v_fix
- 0x8069A9F0: stone_d_shadow_v_fix
- 0x8069A9F8: stone_e_shadow_v_fix
- 0x8069AA04: stone_DL_table
- 0x8069AA34: stone_a_list
- 0x8069AA3C: stone_a_shadow_list
- 0x8069AA44: stone_a_list_table
- 0x8069AA48: stone_a_part
- 0x8069AA68: stone_b_part
- 0x8069AA88: stone_c_part
- 0x8069AAA8: stone_d_part
- 0x8069AAC8: stone_e_part
- 0x8069AAE8: tane_DL_table
- 0x8069AAF0: tane_list
- 0x8069AAF8: tane_list_table
- 0x8069AAFC: tane_part
- 0x8069AB1C: typeData_table_item1
- 0x8069AB28: typeData_table_ftr
- 0x8069AB34: typeData_table_crack
- 0x8069AB40: apple_DL_table
- 0x8069AB48: apple_list
- 0x8069AB50: apple_list_table
- 0x8069AB54: apple_part
- 0x8069AB74: orange_DL_table
- 0x8069AB7C: orange_list
- 0x8069AB84: orange_list_table
- 0x8069AB88: orange_part
- 0x8069ABA8: peach_DL_table
- 0x8069ABB0: peach_list
- 0x8069ABB8: peach_list_table
- 0x8069ABBC: peach_part
- 0x8069ABDC: pear_DL_table
- 0x8069ABE4: pear_list
- 0x8069ABEC: pear_list_table
- 0x8069ABF0: pear_part
- 0x8069AC10: nuts_DL_table
- 0x8069AC18: nuts_list
- 0x8069AC20: nuts_list_table
- 0x8069AC24: nuts_part
- 0x8069AC44: matutake_DL_table
- 0x8069AC4C: matutake_list
- 0x8069AC54: matutake_list_table
- 0x8069AC58: matutake_part
- 0x8069AC78: kabu_DL_table
- 0x8069AC80: kabu_list
- 0x8069AC88: kabu_list_table
- 0x8069AC8C: kabu_part
- 0x8069ACAC: fish_DL_table
- 0x8069ACB4: fish_list
- 0x8069ACBC: fish_list_table
- 0x8069ACC0: fish_part
- 0x8069ACE0: bag_DL_table
- 0x8069ACE8: bag_list
- 0x8069ACF0: bag_list_table
- 0x8069ACF4: bag_part
- 0x8069AD14: leaf_DL_table
- 0x8069AD1C: leaf_list
- 0x8069AD24: leaf_list_table
- 0x8069AD28: leaf_part
- 0x8069AD48: roll_DL_table
- 0x8069AD50: roll_list
- 0x8069AD58: roll_list_table
- 0x8069AD5C: roll_part
- 0x8069AD7C: box_DL_table
- 0x8069AD84: box_list
- 0x8069AD8C: box_list_table
- 0x8069AD90: box_part
- 0x8069ADB0: pack_DL_table
- 0x8069ADB8: pack_list
- 0x8069ADC0: pack_list_table
- 0x8069ADC4: pack_part
- 0x8069ADE4: present_DL_table
- 0x8069ADEC: present_list
- 0x8069ADF4: present_list_table
- 0x8069ADF8: present_part
- 0x8069AE18: seed_DL_table
- 0x8069AE20: seed_list
- 0x8069AE28: seed_list_table
- 0x8069AE2C: seed_part
- 0x8069AE4C: haniwa_DL_table
- 0x8069AE54: haniwa_list
- 0x8069AE5C: haniwa_list_table
- 0x8069AE60: haniwa_part
- 0x8069AE80: other_DL_table
- 0x8069AE88: other_list
- 0x8069AE90: other_list_table
- 0x8069AE94: other_part
- 0x8069AEB4: tool_DL_table
- 0x8069AEBC: tool_list
- 0x8069AEC4: tool_list_table
- 0x8069AEC8: tool_part
- 0x8069AEE8: fossil_DL_table
- 0x8069AEF0: fossil_list
- 0x8069AEF8: fossil_list_table
- 0x8069AEFC: fossil_part
- 0x8069AF1C: trash_DL_table
- 0x8069AF24: trash_list
- 0x8069AF2C: trash_list_table
- 0x8069AF30: trash_part
- 0x8069AF50: otosi_DL_table
- 0x8069AF58: otosi_list
- 0x8069AF60: otosi_list_table
- 0x8069AF64: otosi_part
- 0x8069AF84: shell_DL_table
- 0x8069AF9C: shell_a_list
- 0x8069AFA4: shell_b_list
- 0x8069AFAC: shell_c_list
- 0x8069AFB4: shell_a_list_table
- 0x8069AFB8: shell_b_list_table
- 0x8069AFBC: shell_c_list_table
- 0x8069AFC0: shell_a_part
- 0x8069AFE0: shell_b_part
- 0x8069B000: shell_c_part
- 0x8069B020: candy_DL_table
- 0x8069B028: candy_list
- 0x8069B030: candy_list_table
- 0x8069B034: candy_part
- 0x8069B054: coconut_DL_table
- 0x8069B05C: coconut_list
- 0x8069B064: coconut_list_table
- 0x8069B068: coconut_part
- 0x8069B088: cloth_DL_table
- 0x8069B090: cloth_list
- 0x8069B098: cloth_list_table
- 0x8069B09C: cloth_part
- 0x8069B0BC: carpet_DL_table
- 0x8069B0C4: carpet_list
- 0x8069B0CC: carpet_list_table
- 0x8069B0D0: carpet_part
- 0x8069B0F0: wall_DL_table
- 0x8069B0F8: wall_list
- 0x8069B100: wall_list_table
- 0x8069B104: wall_part
- 0x8069B124: axe_DL_table
- 0x8069B12C: axe_list
- 0x8069B134: axe_list_table
- 0x8069B138: axe_part
- 0x8069B158: net_DL_table
- 0x8069B160: net_list
- 0x8069B168: net_list_table
- 0x8069B16C: net_part
- 0x8069B18C: rod_DL_table
- 0x8069B194: rod_list
- 0x8069B19C: rod_list_table
- 0x8069B1A0: rod_part
- 0x8069B1C0: scoop_DL_table
- 0x8069B1C8: scoop_list
- 0x8069B1D0: scoop_list_table
- 0x8069B1D4: scoop_part
- 0x8069B1F4: gold_axe_DL_table
- 0x8069B1FC: gold_axe_list
- 0x8069B204: gold_axe_list_table
- 0x8069B208: gold_axe_part
- 0x8069B228: gold_net_DL_table
- 0x8069B230: gold_net_list
- 0x8069B238: gold_net_list_table
- 0x8069B23C: gold_net_part
- 0x8069B25C: gold_rod_DL_table
- 0x8069B264: gold_rod_list
- 0x8069B26C: gold_rod_list_table
- 0x8069B270: gold_rod_part
- 0x8069B290: gold_scoop_DL_table
- 0x8069B298: gold_scoop_list
- 0x8069B2A0: gold_scoop_list_table
- 0x8069B2A4: gold_scoop_part
- 0x8069B2C4: umbrella_DL_table
- 0x8069B2CC: umbrella_list
- 0x8069B2D4: umbrella_list_table
- 0x8069B2D8: umbrella_part
- 0x8069B2F8: pinwheel_DL_table
- 0x8069B300: pinwheel_list
- 0x8069B308: pinwheel_list_table
- 0x8069B30C: pinwheel_part
- 0x8069B32C: fan_DL_table
- 0x8069B334: fan_list
- 0x8069B33C: fan_list_table
- 0x8069B340: fan_part
- 0x8069B360: paper_DL_table
- 0x8069B368: paper_list
- 0x8069B370: paper_list_table
- 0x8069B374: paper_part
- 0x8069B394: seedbag_DL_table
- 0x8069B39C: seedbag_list
- 0x8069B3A4: seedbag_list_table
- 0x8069B3A8: seedbag_part
- 0x8069B3C8: luckbag_DL_table
- 0x8069B3D0: luckbag_list
- 0x8069B3D8: luckbag_list_table
- 0x8069B3DC: luckbag_part
- 0x8069B3FC: gymcard_DL_table
- 0x8069B404: gymcard_list
- 0x8069B40C: gymcard_list_table
- 0x8069B410: gymcard_part
- 0x8069B430: music_DL_table
- 0x8069B438: music_list
- 0x8069B440: music_list_table
- 0x8069B444: music_part
- 0x8069B464: lottery_DL_table
- 0x8069B46C: lottery_list
- 0x8069B474: lottery_list_table
- 0x8069B478: lottery_part
- 0x8069B498: bone_DL_table
- 0x8069B4A0: bone_list
- 0x8069B4A8: bone_list_table
- 0x8069B4AC: bone_part
- 0x8069B4CC: diary_DL_table
- 0x8069B4D4: diary_list
- 0x8069B4DC: diary_list_table
- 0x8069B4E0: diary_part
- 0x8069B500: fork_DL_table
- 0x8069B508: fork_list
- 0x8069B510: fork_list_table
- 0x8069B514: fork_part
- 0x8069B534: draw_part_table_a
- 0x8069B91C: rnd_data_x
- 0x8069B95C: rnd_data_z
- 0x8069BCF4: type_data_table_p_a
-src/m_all_grow.c:
- 0x80373BD8: mAGrw_ChangeItemBlock2
-src/m_all_grow_ovl.c:
- 0x80510F98: mAGrw_ChangeItemBlock2
-src/ac_ev_ghost.c:
- 0x8051FED8: aEGH_change_talk_proc
- 0x806A07E0: umbrella_list
- 0x806A08D4: dt_tbl
- 0x806A08F8: proc_table
- 0x806A090C: init_table
-src/ac_ev_soncho.c:
- 0x8052438C: aEGH_change_talk_proc
-src/ac_hatumode_control.c:
- 0x80429580: aHN0_set_request_act
- 0x80683F5C: dt_tbl
- 0x80684044: init_table
-src/ac_hanabi_npc0.c:
- 0x80528514: aHN0_actor_ct
- 0x80528598: aHN0_actor_save
- 0x805285D0: aHN0_actor_dt
- 0x80528608: aHN0_actor_init
- 0x80528640: aHN0_actor_move
- 0x80528678: aHN0_actor_draw
- 0x80528708: aHN0_set_request_act
- 0x80528C28: aHN0_think_main_proc
- 0x80528D58: aHN0_think_init_proc
- 0x80528D94: aHN0_think_proc
- 0x80528DC8: aHN0_schedule_init_proc
- 0x80528E7C: aHN0_schedule_main_proc
- 0x80528F08: aHN0_schedule_proc
- 0x80528FCC: aHN0_talk_init
- 0x80528FF0: aHN0_talk_end_chk
-src/ac_hatumode_npc0.c:
- 0x8052AB54: aHN0_actor_ct
- 0x8052AC70: aHN0_actor_save
- 0x8052AC90: aHN0_actor_dt
- 0x8052AD14: aHN0_actor_init
- 0x8052AD4C: aHN0_actor_move
- 0x8052AE08: aHN0_actor_draw
- 0x8052B024: aHN0_talk_init
- 0x8052B068: aHN0_talk_end_chk
- 0x8052BA4C: aHN0_think_main_proc
- 0x8052BAE8: aHN0_think_init_proc
- 0x8052BBB4: aHN0_think_proc
- 0x8052BBF4: aHN0_schedule_init_proc
- 0x8052BC40: aHN0_schedule_main_proc
- 0x8052BCF8: aHN0_schedule_proc
- 0x806A1428: proc_table
-src/ac_npc.c:
- 0x8052C130: aNPC_dma_cloth_data
- 0x8052C1EC: aNPC_getP_cloth_tex_rom
- 0x8052C250: aNPC_getP_cloth_pal_rom
- 0x8052C2B4: aNPC_dma_cloth_tex_data_fg
- 0x8052C2F8: aNPC_dma_cloth_pal_data_fg
- 0x8052C33C: aNPC_dma_cloth_data_fg
- 0x8052C3E4: aNPC_reset_trans_condition_cloth_data
- 0x8052C43C: aNPC_get_same_cloth_data_area
- 0x8052C474: aNPC_dma_cloth_data_check
- 0x8052C500: aNPC_get_new_cloth_data_area
- 0x8052C540: aNPC_get_no_use_cloth_data_area
- 0x8052C598: aNPC_cancel_cloth_data
- 0x8052C5D0: aNPC_dma_regist_cloth_data
- 0x8052C6A4: aNPC_dma_regist_check_cloth_data
- 0x8052C700: aNPC_keep_cloth_data_area
- 0x8052C7EC: aNPC_rebuild_cloth_data
- 0x8052C810: aNPC_change_cloth_data
- 0x8052C8F8: aNPC_setup_chg_cloth
- 0x8052C904: aNPC_setup_next_cloth
- 0x8052C910: aNPC_setup_cloth
- 0x8052C928: aNPC_get_feel_info
- 0x8052C950: aNPC_clear_all_morph_counter
- 0x8052C968: aNPC_check_talk_anime
- 0x8052CA0C: aNPC_set_anime_se_info
- 0x8052CAF8: aNPC_Animation_init
- 0x8052CDF0: aNPC_check_anime_timing
- 0x8052CEA4: aNPC_anime_proc_foot
- 0x8052D004: aNPC_anime_proc_other
- 0x8052D050: aNPC_anime_se_proc
- 0x8052D0D8: aNPC_anime_proc
- 0x8052D1AC: aNPC_check_kutipaku
- 0x8052D23C: aNPC_getP_anmData
- 0x8052D268: aNPC_get_seq_cnt
- 0x8052D288: aNPC_set_tex_anime
- 0x8052D388: aNPC_tex_anm_ctrl_stop_seq
- 0x8052D3B4: aNPC_tex_anm_ctrl_set_pat
- 0x8052D428: aNPC_tex_anm_ctrl_rnd_seq
- 0x8052D57C: aNPC_tex_anm_ctrl_talk_seq
- 0x8052D6B0: aNPC_tex_anm_ctrl_fix_seq
- 0x8052D6C8: aNPC_tex_anm_ctrl
- 0x8052D844: aNPC_set_frame_sub_speed
- 0x8052D880: aNPC_set_anime_speed
- 0x8052D8AC: aNPC_OngenTrgStart
- 0x8052DA60: aNPC_putaway_right_item
- 0x8052DAFC: aNPC_takeout_right_item
- 0x8052DC4C: aNPC_chk_right_hand
- 0x8052DCE4: aNPC_clear_left_hand_info
- 0x8052DD00: aNPC_chk_left_hand
- 0x8052DDEC: aNPC_check_look_range
- 0x8052DE6C: aNPC_check_look_player
- 0x8052DEEC: aNPC_check_attention
- 0x8052DFD4: aNPC_look_target
- 0x8052E0CC: aNPC_check_condition_search_eye
- 0x8052E0F8: aNPC_search_eye_target_sub
- 0x8052E1BC: aNPC_search_eye_target
- 0x8052E2C0: aNPC_set_head_request_sub
- 0x8052E30C: aNPC_set_head_request
- 0x8052E380: aNPC_force_call_req_proc
- 0x8052E40C: aNPC_check_manpu_demoCode
- 0x8052E544: aNPC_clear_timing_demoCode
- 0x8052E5BC: aNPC_check_timing_demoCode
- 0x8052E760: aNPC_check_feel_demoCode
- 0x8052E854: aNPC_setup_talk_start
- 0x8052E8D4: aNPC_setup_talk_end
- 0x8052E924: aNPC_set_talk_info_talk_request_check
- 0x8052E9CC: aNPC_talk_request_event_npc
- 0x8052EAA0: aNPC_normal_talk_request
- 0x8052EB20: aNPC_set_talk_info_force_call
- 0x8052EB70: aNPC_force_talk_request
- 0x8052EC60: aNPC_talk_request_normal_npc
- 0x8052ED40: aNPC_talk_request_check
- 0x8052EE00: aNPC_BGcheck
- 0x8052F668: aNPC_set_over_friendship
- 0x8052F8CC: aNPC_set_mv_angl
- 0x8052F914: aNPC_set_avoid_pos
- 0x8052F940: aNPC_set_dst_pos
- 0x8052F974: aNPC_check_feel_tim
- 0x8052F9D4: aNPC_calc_force_call_timer
- 0x8052FA34: aNPC_calc_timer
- 0x8052FA70: aNPC_position_move
- 0x8052FAF4: aNPC_angle_calc
- 0x8052FB34: aNPC_set_body_angle
- 0x8052FD34: aNPC_calc_fatigue
- 0x8052FE14: aNPC_setupAction
- 0x8052FEAC: aNPC_actor_move_hide
- 0x8052FEF8: aNPC_actor_move_show_before
- 0x8052FF58: aNPC_actor_move_show_after
- 0x8052FFDC: aNPC_actor_move_show
- 0x80530090: aNPC_actor_move
- 0x805300E0: aNPC_check_mask_cat_type
- 0x80530138: aNPC_set_shadow_pos
- 0x805301B0: aNPC_set_chn_base
- 0x8053027C: aNPC_set_head_angl
- 0x805302E8: aNPC_actor_draw_before
- 0x8053032C: aNPC_set_right_hand_item
- 0x805303C8: aNPC_set_left_hand_item
- 0x80530450: aNPC_set_foot_eff
- 0x80530488: aNPC_set_feel_eff
- 0x805304BC: aNPC_set_accessory_mtx
- 0x80530550: aNPC_actor_draw_after
- 0x805305B0: aNPC_actor_draw_sub
- 0x805308BC: aNPC_actor_draw
- 0x805308FC: aNPC_set_eff
- 0x80530998: aNPC_set_feel_effect
- 0x80530B1C: aNPC_set_other_effect
- 0x80530C74: aNPC_check_arrive_destination
- 0x80530DB4: aNPC_set_feel_info
- 0x80530E10: aNPC_set_act_obj
- 0x80530F28: aNPC_check_live_target
- 0x80530F58: aNPC_act_wait
- 0x80530F98: aNPC_act_move
- 0x80530FE8: aNPC_act_search_move
- 0x80531148: aNPC_act_avoid_move
- 0x80531324: aNPC_act_to_point_move
- 0x805313FC: aNPC_act_turn
- 0x8053141C: aNPC_act_search_turn
- 0x80531494: aNPC_act_to_point_turn
- 0x80531524: aNPC_act_anm_seq
- 0x8053153C: aNPC_act_return_trans_item
- 0x805315C0: aNPC_act_special_proc
- 0x805315E8: aNPC_chk_request_act
- 0x805316E4: aNPC_set_request_act
- 0x80531740: aNPC_action_proc
- 0x805317C8: aNPC_act_wait_main_proc
- 0x80531840: aNPC_act_wait_chg_data_proc
- 0x80531894: aNPC_act_wait_init_proc
- 0x805318EC: aNPC_act_wait_proc
- 0x80531920: aNPC_act_walk_setupAction
- 0x80531974: aNPC_act_walk_main_proc
- 0x805319F4: aNPC_act_walk_chg_data_proc
- 0x80531A58: aNPC_act_walk_init_proc
- 0x80531AD4: aNPC_act_walk_proc
- 0x80531B08: aNPC_act_turn_main_proc
- 0x80531B5C: aNPC_act_turn_chg_data_proc
- 0x80531BC0: aNPC_act_turn_init_proc
- 0x80531CA4: aNPC_act_turn_proc
- 0x805331C0: aNPC_Init_OrderValue
- 0x8053321C: aNPC_talk_demo_proc
- 0x80533258: aNPC_talk_end_check
- 0x805332DC: aNPC_act_talk_chg_step
- 0x80533310: aNPC_act_talk_turn
- 0x80533350: aNPC_act_talk_wait
- 0x80533430: aNPC_act_talk
- 0x80533488: aNPC_act_talk_main_proc
- 0x805334C0: aNPC_act_talk_init_proc
- 0x8053356C: aNPC_act_talk_proc
- 0x80533DEC: aNPC_act_trans_chg_step
- 0x80533EC8: aNPC_act_trans_set_arg_data
- 0x80533EEC: aNPC_act_trans_move
- 0x80533F64: aNPC_act_trans
- 0x80533FD0: aNPC_act_trans_wait
- 0x80534028: aNPC_act_trans_send_mail
- 0x8053409C: aNPC_act_trans_main_proc
- 0x80534124: aNPC_act_trans_chg_data_proc
- 0x80534130: aNPC_act_trans_init_proc
- 0x805341B4: aNPC_act_trans_proc
- 0x805341E8: aNPC_act_get_chg_step
- 0x80534368: aNPC_act_get_move
- 0x805343D8: aNPC_act_get
- 0x8053446C: aNPC_act_get_pull
- 0x805344E8: aNPC_act_get_pull_wait
- 0x805345F4: aNPC_act_get_putaway
- 0x80534634: aNPC_act_get_chg_cloth
- 0x80534914: aNPC_act_get_return
- 0x80534988: aNPC_act_estimate
- 0x805349E8: aNPC_act_get_main_proc
- 0x80534A70: aNPC_act_get_chg_data_proc
- 0x80534A7C: aNPC_act_get_init_proc
- 0x80534AFC: aNPC_act_get_proc
- 0x80534B30: aNPC_act_ensou_main_proc
- 0x80534B54: aNPC_act_ensou_init_proc
- 0x80534B88: aNPC_act_ensou_proc
- 0x80535254: aNPC_check_uzai_cross
- 0x8053533C: aNPC_check_uzai
- 0x80535B2C: aNPC_avoid_obstacle
- 0x80535C58: aNPC_chk_talk_start
- 0x805360A0: aNPC_check_fatigue
- 0x805361A8: aNPC_hate_player
- 0x80536254: aNPC_love_player
- 0x805363D4: aNPC_chk_friendship_lv
- 0x8053644C: aNPC_chk_friendship_sub
- 0x805364D8: aNPC_chk_friendship
- 0x805365BC: aNPC_think_chk_interrupt_proc
- 0x805368A0: aNPC_think_wait_init_proc
- 0x805368D4: aNPC_think_wait_proc
- 0x805368FC: aNPC_think_special_proc
- 0x80536924: aNPC_think_init_proc
- 0x80536980: aNPC_think_main_proc
- 0x805369BC: aNPC_think_proc
- 0x80536D2C: aNPC_think_wander_decide_next
- 0x80536F78: aNPC_think_wander_next_act
- 0x80536FA4: aNPC_think_wander_main_proc
- 0x80536FE0: aNPC_think_wander_init_proc
- 0x80537104: aNPC_think_wander_proc
- 0x80537D78: aNPC_set_hide_request
- 0x80537DC8: aNPC_set_hide_flg
- 0x80537E8C: aNPC_stand_schedule_main_proc
- 0x80537F0C: aNPC_stand_schedule_init_proc
- 0x80537F60: aNPC_stand_schedule_proc
- 0x80537F94: aNPC_wander_schedule_main_proc
- 0x80537FE8: aNPC_wander_schedule_init_proc
- 0x80538034: aNPC_wander_schedule_proc
- 0x805380E8: aNPC_special_schedule_proc
- 0x80538110: aNPC_schedule_init
- 0x805381AC: aNPC_chg_schedule
- 0x805381D0: aNPC_set_schedule
- 0x805381F8: aNPC_schedule_proc
- 0x8053829C: aNPC_first_set_schedule
- 0x80538318: aNPC_field_schedule_think_init
- 0x80538378: aNPC_field_schedule_main_proc
- 0x80538450: aNPC_field_schedule_init_proc
- 0x805384B8: aNPC_field_schedule_proc
- 0x805384EC: aNPC_in_house_schedule_think_init
- 0x80538520: aNPC_in_house_schedule_main_proc
- 0x80538630: aNPC_in_house_schedule_init_proc
- 0x805386D8: aNPC_in_house_schedule_proc
- 0x805387B0: aNPC_sleep_schedule_main_proc
- 0x80538878: aNPC_sleep_schedule_init_proc
- 0x805388E4: aNPC_sleep_schedule_proc
- 0x80538918: aNPC_actor_init_common_proc
- 0x8053898C: aNPC_actor_init_for_normal
- 0x805389F0: aNPC_actor_init_for_special
- 0x80538B24: aNPC_actor_init
- 0x80538B6C: aNPC_make_accessory
- 0x80538C00: aNPC_setP_friendship
- 0x80538CB0: aNPC_set_start_pos
- 0x80538CE0: aNPC_actor_schedule
- 0x80538D94: aNPC_actor_ct
- 0x80539300: aNPC_actor_dt
- 0x8053941C: aNPC_actor_save_for_normal
- 0x8053953C: aNPC_actor_save_for_special
- 0x80539594: aNPC_actor_save
- 0x80539618: aNPC_actor_birth_check
- 0x8053972C: aNPC_rebuild_dma
- 0x8053974C: aNPC_set_attention_request_proc
- 0x80539794: aNPC_get_draw_data_idx
- 0x8053986C: aNPC_check_dma_cloth_data
- 0x80539904: aNPC_check_dma_cloth_data_sub
- 0x80539954: aNPC_check_dma_eventNpc_cloth_data
- 0x805399C4: aNPC_check_dma_maskNpc_cloth_data
- 0x805399FC: aNPC_setupNpc_check
- 0x80539A8C: aNPC_setupActor_sub
- 0x80539B44: aNPC_setupActor_proc
- 0x8053A13C: aNPC_free_actor_area_proc
- 0x8053A184: aNPC_dma_draw_data_proc
- 0x8053A354: aNPC_actor_ct_c
- 0x8053A6FC: aNPC_actor_dt_c
- 0x8053A784: aNPC_check_cond_to_greeting
- 0x8053A804: aNPC_greeting_area_check
- 0x8053A944: aNPC_set_attention
- 0x8053AAB0: aNPC_actor_move_c
- 0x806A1500: aNPC_req_default_data
- 0x806A1530: aNPC_animeTable
- 0x806A1CE0: aNPC_animeSeqNoTable
- 0x806A1D54: aNPC_sub_animeSeqNoTable
- 0x806A1D5C: aNPC_CoInfoData
- 0x806A1D6C: aNPC_StatusData
- 0x806A1D78: aNPC_part_tbl00
- 0x806A1D94: aNPC_part_tbl01
- 0x806A1DB0: aNPC_part_tbl10
- 0x806A1DCC: aNPC_part_tbl11
- 0x806A1DE8: aNPC_part_tbl
- 0x806A1DF8: aNPC_spd_data
- 0x806A1E1C: aNPC_uzai_feel
- 0x806A2568: aNPC_wait_action
- 0x806A2890: aNPC_act_proc
- 0x806A2A54: aNPC_think_proc_tbl
- 0x806A2AE0: aNPC_sche_proc
- 0x81301840: aNPC_ctrlActor
- 0x81319AC8: aNPC_clip
-src/ac_npc2.c:
- 0x8053AD40: aNPC_dma_cloth_data
- 0x8053ADFC: aNPC_getP_cloth_tex_rom
- 0x8053AE60: aNPC_getP_cloth_pal_rom
- 0x8053AEC4: aNPC_dma_cloth_tex_data_fg
- 0x8053AF08: aNPC_dma_cloth_pal_data_fg
- 0x8053AF4C: aNPC_dma_cloth_data_fg
- 0x8053AFF4: aNPC_reset_trans_condition_cloth_data
- 0x8053B04C: aNPC_get_same_cloth_data_area
- 0x8053B084: aNPC_dma_cloth_data_check
- 0x8053B110: aNPC_get_new_cloth_data_area
- 0x8053B150: aNPC_get_no_use_cloth_data_area
- 0x8053B1A8: aNPC_cancel_cloth_data
- 0x8053B1E0: aNPC_dma_regist_cloth_data
- 0x8053B2B4: aNPC_dma_regist_check_cloth_data
- 0x8053B310: aNPC_keep_cloth_data_area
- 0x8053B3FC: aNPC_rebuild_cloth_data
- 0x8053B420: aNPC_change_cloth_data
- 0x8053B508: aNPC_setup_chg_cloth
- 0x8053B514: aNPC_setup_next_cloth
- 0x8053B520: aNPC_setup_cloth
- 0x8053B538: aNPC_get_feel_info
- 0x8053B560: aNPC_clear_all_morph_counter
- 0x8053B578: aNPC_check_talk_anime
- 0x8053B61C: aNPC_set_anime_se_info
- 0x8053B708: aNPC_Animation_init
- 0x8053BA00: aNPC_check_anime_timing
- 0x8053BAB4: aNPC_anime_proc_foot
- 0x8053BBFC: aNPC_anime_proc_other
- 0x8053BC48: aNPC_anime_se_proc
- 0x8053BCD0: aNPC_anime_proc
- 0x8053BDA4: aNPC_check_kutipaku
- 0x8053BE34: aNPC_getP_anmData
- 0x8053BE60: aNPC_get_seq_cnt
- 0x8053BE80: aNPC_set_tex_anime
- 0x8053BF80: aNPC_tex_anm_ctrl_stop_seq
- 0x8053BFAC: aNPC_tex_anm_ctrl_set_pat
- 0x8053C020: aNPC_tex_anm_ctrl_rnd_seq
- 0x8053C174: aNPC_tex_anm_ctrl_talk_seq
- 0x8053C2A8: aNPC_tex_anm_ctrl_fix_seq
- 0x8053C2C0: aNPC_tex_anm_ctrl
- 0x8053C43C: aNPC_set_frame_sub_speed
- 0x8053C478: aNPC_set_anime_speed
- 0x8053C4A4: aNPC_OngenTrgStart
- 0x8053C550: aNPC_putaway_right_item
- 0x8053C5EC: aNPC_takeout_right_item
- 0x8053C728: aNPC_chk_right_hand
- 0x8053C7C0: aNPC_clear_left_hand_info
- 0x8053C7DC: aNPC_chk_left_hand
- 0x8053C8C8: aNPC_check_look_range
- 0x8053C948: aNPC_check_look_player
- 0x8053C9C8: aNPC_check_attention
- 0x8053CAB0: aNPC_look_target
- 0x8053CBA0: aNPC_check_condition_search_eye
- 0x8053CBCC: aNPC_search_eye_target_sub
- 0x8053CC90: aNPC_search_eye_target
- 0x8053CD94: aNPC_set_head_request_sub
- 0x8053CDE0: aNPC_set_head_request
- 0x8053CE54: aNPC_force_call_req_proc
- 0x8053CEE0: aNPC_check_manpu_demoCode
- 0x8053D018: aNPC_clear_timing_demoCode
- 0x8053D090: aNPC_check_timing_demoCode
- 0x8053D2E8: aNPC_check_feel_demoCode
- 0x8053D3DC: aNPC_setup_talk_start
- 0x8053D45C: aNPC_setup_talk_end
- 0x8053D4B4: aNPC_set_talk_info_talk_request_check
- 0x8053D55C: aNPC_talk_request_event_npc
- 0x8053D630: aNPC_normal_talk_request
- 0x8053D6B0: aNPC_set_talk_info_force_call
- 0x8053D700: aNPC_force_talk_request
- 0x8053D7F0: aNPC_talk_request_normal_npc
- 0x8053D8D0: aNPC_talk_request_check
- 0x8053D9C4: aNPC_BGcheck
- 0x8053DB00: aNPC_set_over_friendship
- 0x8053DBA0: aNPC_set_mv_angl
- 0x8053DBE8: aNPC_set_avoid_pos
- 0x8053DC10: aNPC_set_dst_pos
- 0x8053DC40: aNPC_check_feel_tim
- 0x8053DC84: aNPC_calc_force_call_timer
- 0x8053DCCC: aNPC_calc_timer
- 0x8053DCEC: aNPC_position_move
- 0x8053DD50: aNPC_angle_calc
- 0x8053DD90: aNPC_set_body_angle
- 0x8053DDFC: aNPC_calc_fatigue
- 0x8053DE38: aNPC_setupAction
- 0x8053DED0: aNPC_actor_move_hide
- 0x8053DF1C: aNPC_actor_move_show_before
- 0x8053DF64: aNPC_actor_move_show_after
- 0x8053DFE8: aNPC_actor_move_show
- 0x8053E06C: aNPC_actor_move
- 0x8053E0BC: aNPC_check_mask_cat_type
- 0x8053E114: aNPC_set_shadow_pos
- 0x8053E18C: aNPC_set_chn_base
- 0x8053E258: aNPC_set_head_angl
- 0x8053E2C4: aNPC_actor_draw_before
- 0x8053E308: aNPC_set_right_hand_item
- 0x8053E3A4: aNPC_set_left_hand_item
- 0x8053E42C: aNPC_set_foot_eff
- 0x8053E464: aNPC_set_feel_eff
- 0x8053E498: aNPC_set_accessory_mtx
- 0x8053E52C: aNPC_actor_draw_after
- 0x8053E58C: aNPC_actor_draw_sub
- 0x8053E898: aNPC_actor_draw
- 0x8053E8D8: aNPC_set_eff
- 0x8053E974: aNPC_set_feel_effect
- 0x8053EAF8: aNPC_set_other_effect
- 0x8053EBB8: aNPC_check_arrive_destination
- 0x8053ED20: aNPC_set_feel_info
- 0x8053ED7C: aNPC_set_act_obj
- 0x8053EDFC: aNPC_check_live_target
- 0x8053EE2C: aNPC_act_wait
- 0x8053EE6C: aNPC_act_move
- 0x8053EEBC: aNPC_act_search_move
- 0x8053EF7C: aNPC_act_avoid_move
- 0x8053F074: aNPC_act_to_point_move
- 0x8053F170: aNPC_act_turn
- 0x8053F190: aNPC_act_search_turn
- 0x8053F208: aNPC_act_to_point_turn
- 0x8053F298: aNPC_act_anm_seq
- 0x8053F2EC: aNPC_act_return_trans_item
- 0x8053F364: aNPC_act_special_proc
- 0x8053F38C: aNPC_chk_request_act
- 0x8053F488: aNPC_set_request_act
- 0x8053F4E4: aNPC_action_proc
- 0x8053F56C: aNPC_act_wait_main_proc
- 0x8053F5E4: aNPC_act_wait_chg_data_proc
- 0x8053F638: aNPC_act_wait_init_proc
- 0x8053F690: aNPC_act_wait_proc
- 0x8053F6C4: aNPC_act_walk_setupAction
- 0x8053F718: aNPC_act_walk_main_proc
- 0x8053F7A8: aNPC_act_walk_chg_data_proc
- 0x8053F800: aNPC_act_walk_init_proc
- 0x8053F84C: aNPC_act_walk_proc
- 0x8053F880: aNPC_act_turn_main_proc
- 0x8053F8D4: aNPC_act_turn_chg_data_proc
- 0x8053F938: aNPC_act_turn_init_proc
- 0x8053FA14: aNPC_act_turn_proc
- 0x8053FA48: aNPC_Init_OrderValue
- 0x8053FAA4: aNPC_talk_demo_proc
- 0x8053FAE0: aNPC_talk_end_check
- 0x8053FB64: aNPC_act_talk_chg_step
- 0x8053FBB0: aNPC_act_talk_turn
- 0x8053FBF0: aNPC_act_talk_wait
- 0x8053FCD0: aNPC_act_talk
- 0x8053FD28: aNPC_act_talk_main_proc
- 0x8053FD60: aNPC_act_talk_init_proc
- 0x8053FDF0: aNPC_act_talk_proc
- 0x8053FF68: aNPC_act_trans_chg_step
- 0x80540044: aNPC_act_trans_set_arg_data
- 0x80540068: aNPC_act_trans_move
- 0x805400E0: aNPC_act_trans
- 0x8054014C: aNPC_act_trans_wait
- 0x805401A4: aNPC_act_trans_send_mail
- 0x80540218: aNPC_act_trans_main_proc
- 0x805402A0: aNPC_act_trans_chg_data_proc
- 0x805402AC: aNPC_act_trans_init_proc
- 0x80540330: aNPC_act_trans_proc
- 0x80540364: aNPC_act_get_chg_step
- 0x805404E4: aNPC_act_get_move
- 0x80540554: aNPC_act_get
- 0x805405E8: aNPC_act_get_pull
- 0x80540664: aNPC_act_get_pull_wait
- 0x80540770: aNPC_act_get_putaway
- 0x805407B0: aNPC_act_get_chg_cloth
- 0x8054087C: aNPC_act_get_return
- 0x805408F0: aNPC_act_estimate
- 0x80540950: aNPC_act_get_main_proc
- 0x805409D8: aNPC_act_get_chg_data_proc
- 0x805409E4: aNPC_act_get_init_proc
- 0x80540A64: aNPC_act_get_proc
- 0x80540FA4: aNPC_act_ensou_main_proc
- 0x80540FB8: aNPC_act_ensou_init_proc
- 0x80540FEC: aNPC_act_ensou_proc
- 0x8054105C: aNPC_check_uzai_cross
- 0x80541110: aNPC_check_uzai
- 0x805412C4: aNPC_chk_talk_start
- 0x80541354: aNPC_check_fatigue
- 0x80541EEC: aNPC_avoid_obstacle
- 0x80541F7C: aNPC_hate_player
- 0x8054216C: aNPC_love_player
- 0x8054235C: aNPC_chk_friendship_lv
- 0x805423B4: aNPC_chk_friendship_sub
- 0x80542434: aNPC_chk_friendship
- 0x805424AC: aNPC_think_chk_interrupt_proc
- 0x805425AC: aNPC_think_wait_init_proc
- 0x805425E0: aNPC_think_wait_proc
- 0x805426A0: aNPC_think_special_proc
- 0x805426C8: aNPC_think_init_proc
- 0x80542724: aNPC_think_main_proc
- 0x80542760: aNPC_think_proc
- 0x805427C8: aNPC_think_wander_decide_next
- 0x80542984: aNPC_think_wander_next_act
- 0x805429B0: aNPC_think_wander_main_proc
- 0x805429FC: aNPC_think_wander_init_proc
- 0x80542A3C: aNPC_think_wander_proc
- 0x8054313C: aNPC_set_hide_request
- 0x8054318C: aNPC_set_hide_flg
- 0x805431D0: aNPC_sleep_schedule_main_proc
- 0x80543204: aNPC_sleep_schedule_init_proc
- 0x80543250: aNPC_sleep_schedule_proc
- 0x80543284: aNPC_stand_schedule_main_proc
- 0x805432FC: aNPC_stand_schedule_init_proc
- 0x80543348: aNPC_stand_schedule_proc
- 0x8054337C: aNPC_wander_schedule_main_proc
- 0x8054339C: aNPC_wander_schedule_init_proc
- 0x805433E8: aNPC_wander_schedule_proc
- 0x8054341C: aNPC_special_schedule_proc
- 0x80543444: aNPC_schedule_init
- 0x80543480: aNPC_chg_schedule
- 0x805434A4: aNPC_set_schedule
- 0x805434CC: aNPC_schedule_proc
- 0x80543510: aNPC_first_set_schedule
- 0x80543568: aNPC_field_schedule_think_init
- 0x8054359C: aNPC_field_schedule_main_proc
- 0x80543648: aNPC_field_schedule_init_proc
- 0x805436C4: aNPC_field_schedule_proc
- 0x805436F8: aNPC_in_house_schedule_think_init
- 0x8054372C: aNPC_in_house_schedule_main_proc
- 0x805437C4: aNPC_in_house_schedule_init_proc
- 0x80543850: aNPC_in_house_schedule_proc
- 0x80543884: aNPC_actor_init_common_proc
- 0x805438F8: aNPC_actor_init_for_normal
- 0x8054395C: aNPC_actor_init_for_special
- 0x80543A90: aNPC_actor_init
- 0x80543AD8: aNPC_make_accessory
- 0x80543B6C: aNPC_setP_friendship
- 0x80543D04: aNPC_set_start_pos
- 0x80543E58: aNPC_actor_schedule
- 0x80543F0C: aNPC_actor_ct
- 0x805443FC: aNPC_actor_dt
- 0x805444F8: aNPC_actor_save_for_normal
- 0x805445B8: aNPC_actor_save_for_special
- 0x80544610: aNPC_actor_save
- 0x80544670: aNPC_actor_birth_check
- 0x80544784: aNPC_rebuild_dma
- 0x805449D4: aNPC_set_attention_request_proc
- 0x80544A1C: aNPC_get_draw_data_idx
- 0x80544AF4: aNPC_check_dma_cloth_data
- 0x80544B8C: aNPC_check_dma_cloth_data_sub
- 0x80544BDC: aNPC_check_dma_eventNpc_cloth_data
- 0x80544C4C: aNPC_check_dma_maskNpc_cloth_data
- 0x80544C84: aNPC_setupNpc_check
- 0x80544D14: aNPC_setupActor_sub
- 0x80544DCC: aNPC_setupActor_proc
- 0x80544FC8: aNPC_free_actor_area_proc
- 0x80544FE8: aNPC_dma_draw_data_proc
- 0x80545034: aNPC_actor_ct_c
- 0x805453B8: aNPC_actor_dt_c
- 0x805453DC: aNPC_check_cond_to_greeting
- 0x8054545C: aNPC_greeting_area_check
- 0x8054559C: aNPC_set_attention
- 0x80545604: aNPC_actor_move_c
- 0x806A2C78: aNPC_req_default_data
- 0x806A2CA8: aNPC_animeTable
- 0x806A3458: aNPC_animeSeqNoTable
- 0x806A34B0: aNPC_sub_animeSeqNoTable
- 0x806A34B8: aNPC_CoInfoData
- 0x806A34C8: aNPC_StatusData
- 0x806A34D4: aNPC_part_tbl00
- 0x806A34F0: aNPC_part_tbl01
- 0x806A350C: aNPC_part_tbl10
- 0x806A3528: aNPC_part_tbl11
- 0x806A3544: aNPC_part_tbl
- 0x806A3554: aNPC_spd_data
- 0x806A3578: aNPC_uzai_feel
- 0x806A3C48: aNPC_wait_action
- 0x806A3E0C: aNPC_act_proc
- 0x806A3F44: aNPC_think_proc_tbl
- 0x806A3FA0: aNPC_sche_proc
- 0x81319BF8: aNPC_ctrlActor
- 0x81319F94: aNPC_clip
-src/ac_npc_conv_master.c:
- 0x80545B7C: aNSC_set_animation
- 0x80545BCC: aNSC_BGcheck
- 0x80545C10: aNSC_check_present_balloon
- 0x80545C7C: aNSC_calc_talk_start_tim
- 0x80545CA4: aNSC_request_show_camera
- 0x80545D18: aNSC_Set_ListenAble
- 0x80545D3C: aNSC_set_sell_camera
- 0x80545DD0: aNSC_sell_camera
- 0x80545E70: aNSC_talk_demo_proc
- 0x80545EE0: aNSC_set_stop_spd
- 0x80545EFC: aNSC_set_walk_spd
- 0x80545F28: aNSC_set_run_spd
- 0x80545F54: aNSC_set_rehouse_order_date
- 0x80545F7C: aNSC_set_make_basement_info
- 0x80545FD8: aNSC_getP_free_ftr_order
- 0x80546010: aNSC_set_ftr_order
- 0x8054605C: aNSC_set_last_day_str
- 0x805460B0: aNSC_set_pw_name_str
- 0x8054610C: aNSC_set_value_str
- 0x80546168: aNSC_set_item_name_str
- 0x805461CC: aNSC_set_item_str
- 0x80546224: aNSC_set_pw_password_str
- 0x80546284: aNSC_set_pw_info_str
- 0x805462EC: aNSC_pc_check_password_famicom
- 0x80546334: aNSC_pc_check_password_npc
- 0x805463A0: aNSC_pc_check_password_card_e
- 0x805463A8: aNSC_pc_check_password_magazine
- 0x8054641C: aNSC_pc_check_password_card_e_mini
- 0x80546434: aNSC_pc_check_password_user
- 0x8054647C: aNSC_pc_check_password
- 0x80546540: aNSC_check_possession_item_make_password
- 0x805465EC: aNSC_set_buy_sum_str
- 0x805466C0: aNSC_decide_next_move_act
- 0x805467D0: aNSC_set_zone_data
- 0x80546854: aNSC_set_player_angl
- 0x80546860: aNSC_money_check
- 0x80546880: aNSC_get_sell_price
- 0x805468A0: aNSC_check_money_overflow
- 0x80546934: aNSC_check_buy_item_sub
- 0x805469D8: aNSC_check_buy_paper
- 0x80546AC8: aNSC_check_buy_item_single
- 0x80546BE0: aNSC_check_buy_item_plural
- 0x80546C6C: aNSC_check_buy_item
- 0x80546CA0: aNSC_check_item_with_ticket
- 0x80546D20: aNSC_setup_ticket_remain
- 0x80546D68: aNSC_check_same_month_ticket
- 0x80546DCC: aNSC_get_msg_no
- 0x80546E14: aNSC_Set_continue_msg_num
- 0x80546E54: aNSC_ChangeMsgData
- 0x80546E94: aNSC_set_player_angle
- 0x80546F9C: aNSC_set_talk_info_show_item
- 0x80546FD4: aNSC_set_talk_info_show_cloth
- 0x8054700C: aNSC_set_talk_info_sell_item
- 0x805470CC: aNSC_set_talk_info_message_ctrl
- 0x805470F4: aNSC_set_talk_info_message_ctrl_aprilfool
- 0x8054713C: aNSC_set_talk_info_message_ctrl_tokubai
- 0x80547164: aNSC_message_ctrl
- 0x80547544: aNSC_buy_item_single
- 0x80547634: aNSC_buy_paper
- 0x80547744: aNSC_buy_item_only_one
- 0x80547954: aNSC_get_start_call_msg_no
- 0x80547990: aNSC_set_talk_info_start_wait
- 0x80547B84: aNSC_set_talk_info_start_wait1
- 0x80547C64: aNSC_set_talk_info_start_wait2
- 0x80547CB0: aNSC_set_talk_info_start_wait3
- 0x80547CEC: aNSC_set_talk_info_start_wait4
- 0x80547D14: aNSC_start_wait
- 0x80547FC8: aNSC_say_hello_approach
- 0x80548058: aNSC_say_hello_end_wait
- 0x805480CC: aNSC_check_col_chg_or_make_basement
- 0x80548198: aNSC_check_roof_col_order
- 0x805482D0: aNSC_check_roof_col_order2
- 0x805483C4: aNSC_present_balloon_start_wait
- 0x80548420: aNSC_present_balloon_trans_move
- 0x8054845C: aNSC_present_balloon_trans_takeout
- 0x80548538: aNSC_present_balloon_trans_wait
- 0x80548578: aNSC_present_balloon_end_wait
- 0x805485E0: aNSC_set_talk_info_request_Q_start_wait
- 0x80548610: aNSC_request_Q_start_wait
- 0x80548694: aNSC_request_Q_answer_wait
- 0x805487A8: aNSC_request_Q_answer_wait2
- 0x80548938: aNSC_request_Q_end_wait
- 0x805489AC: aNSC_answer_buy_item
- 0x80548A28: aNSC_buy_menu_open_wait
- 0x80548A80: aNSC_buy_menu_close_wait
- 0x80548AB4: aNSC_msg_win_open_wait
- 0x80548B7C: aNSC_buy_sum_check
- 0x80548C78: aNSC_buy_check
- 0x80548EF8: aNSC_buy_after_service
- 0x80548F74: aNSC_buy_continue_check
- 0x80549060: aNSC_receive_check
- 0x80549104: aNSC_msg_win_open_wait2
- 0x805491CC: aNSC_order_check
- 0x805492C8: aNSC_sell_check_before
- 0x80549330: aNSC_sell_check
- 0x805493E8: aNSC_sell_answer0
- 0x8054961C: aNSC_sell_item_with_ticket
- 0x805496D4: aNSC_show_item_check
- 0x805498A0: aNSC_chg_cloth_start_wait
- 0x80549968: aNSC_chg_cloth_end_wait
- 0x805499C4: aNSC_pw_entry_send_addr_start_wait
- 0x80549A3C: aNSC_pw_msg_win_open_wait
- 0x80549AE8: aNSC_pw_send_addr_check
- 0x80549BC4: aNSC_pw_sel_item_start_wait
- 0x80549C3C: aNSC_pw_msg_win_open_wait2
- 0x80549CEC: aNSC_pw_send_check
- 0x80549E18: aNSC_pw_retry_sel_item_check
- 0x80549EE0: aNSC_pc_input_pw_start_wait
- 0x80549F58: aNSC_pc_msg_win_open_wait
- 0x80549FEC: aNSC_pc_retry_input_pw_check
- 0x8054A0E0: aNSC_pc_present_start_wait
- 0x8054A13C: aNSC_pc_present_trans_takeout
- 0x8054A218: aNSC_pc_present_trans_wait
- 0x8054A258: aNSC_pc_present_end_wait
- 0x8054A2C0: aNSC_wait
- 0x8054A338: aNSC_walk_pl_other_zone
- 0x8054A3B0: aNSC_turn
- 0x8054A448: aNSC_set_talk_info_goodbye_wait
- 0x8054A478: aNSC_goodbye_wait
- 0x8054A514: aNSC_say_goodbye
- 0x8054A574: aNSC_exit_wait
- 0x8054A5E8: aNSC_say_hello_approach_init
- 0x8054A608: aNSC_say_hello_end_wait_init
- 0x8054A630: aNSC_check_col_chg_or_make_basement_init
- 0x8054A650: aNSC_check_roof_col_order_init
- 0x8054A690: aNSC_check_roof_col_order2_init
- 0x8054A6BC: aNSC_present_balloon_start_wait_init
- 0x8054A6D8: aNSC_present_balloon_trans_move_init
- 0x8054A764: aNSC_present_balloon_trans_takeout_init
- 0x8054A7A4: aNSC_present_balloon_end_wait_init
- 0x8054A7B4: aNSC_request_Q_answer_wait_init
- 0x8054A7F4: aNSC_request_Q_end_wait_init
- 0x8054A814: aNSC_answer_buy_item_init
- 0x8054A840: aNSC_buy_menu_open_wait_init
- 0x8054A864: aNSC_buy_menu_close_wait_init
- 0x8054A8A8: aNSC_msg_win_open_wait_init
- 0x8054A8CC: aNSC_buy_sum_check_init
- 0x8054A8F8: aNSC_buy_check_init
- 0x8054A9F0: aNSC_buy_after_service_init
- 0x8054AA1C: aNSC_order_select_menu_close_wait_init
- 0x8054AA60: aNSC_order_check_init
- 0x8054AA8C: aNSC_sell_check_before_init
- 0x8054AACC: aNSC_sell_answer0_init
- 0x8054ABE4: aNSC_sell_answer1_init
- 0x8054AC18: aNSC_sell_item_init
- 0x8054AC7C: aNSC_sell_item_with_ticket_init
- 0x8054ACCC: aNSC_sell_refuse0_init
- 0x8054ACD8: aNSC_show_item_check_init
- 0x8054ACF8: aNSC_chg_cloth_start_wait_init
- 0x8054AD1C: aNSC_pw_entry_send_addr_start_wait_init
- 0x8054AD48: aNSC_pw_make_menu_close_wait_init
- 0x8054ADAC: aNSC_pw_send_addr_check_init
- 0x8054ADCC: aNSC_pw_sel_item_menu_close_wait_init
- 0x8054AE10: aNSC_pc_input_pw_start_wait_init
- 0x8054AE4C: aNSC_pc_chk_menu_close_wait_init
- 0x8054AE94: aNSC_pc_present_trans_takeout_init
- 0x8054AF1C: aNSC_pc_present_end_wait_init
- 0x8054AF2C: aNSC_wait_init
- 0x8054AF4C: aNSC_walk_pl_same_zone_init
- 0x8054AF6C: aNSC_run_pl_same_zone_init
- 0x8054AF8C: aNSC_goodbye_wait_init
- 0x8054AFAC: aNSC_say_goodbye_init
- 0x8054AFD0: aNSC_init_proc
- 0x8054B004: aNSC_setupAction
- 0x806A4640: aNSC_item1_0_tanni_type
- 0x806A4740: aNSC_item1_1_tanni_type
- 0x806A4744: aNSC_item1_2_tanni_type
- 0x806A47A0: aNSC_item1_3_tanni_type
- 0x806A47C8: aNSC_item1_4_tanni_type
- 0x806A48C8: aNSC_item1_5_tanni_type
- 0x806A48FC: aNSC_item1_6_tanni_type
- 0x806A4940: aNSC_item1_7_tanni_type
- 0x806A4984: aNSC_item1_8_tanni_type
- 0x806A498C: aNSC_item1_9_tanni_type
- 0x806A4998: aNSC_item1_A_tanni_type
- 0x806A49D0: aNSC_item1_B_tanni_type
- 0x806A49E0: aNSC_item1_C_tanni_type
- 0x806A4A40: aNSC_item1_D_tanni_type
- 0x806A4A70: aNSC_item1_E_tanni_type
- 0x806A4A74: aNSC_item1_F_tanni_type
- 0x806A4A78: aNSC_item_tanni_type
- 0x806A4B6C: aNSC_exchange_itemNo
-src/ac_npc_depart_master.c:
- 0x8054D494: aNSC_set_animation
- 0x8054D4E4: aNSC_BGcheck
- 0x8054D528: aNSC_check_present_balloon
- 0x8054D594: aNSC_calc_talk_start_tim
- 0x8054D5BC: aNSC_request_show_camera
- 0x8054D630: aNSC_Set_ListenAble
- 0x8054D654: aNSC_set_sell_camera
- 0x8054D6E8: aNSC_sell_camera
- 0x8054D788: aNSC_talk_demo_proc
- 0x8054D7F8: aNSC_set_stop_spd
- 0x8054D814: aNSC_set_walk_spd
- 0x8054D840: aNSC_set_run_spd
- 0x8054D86C: aNSC_set_rehouse_order_date
- 0x8054D894: aNSC_set_make_basement_info
- 0x8054D8F0: aNSC_getP_free_ftr_order
- 0x8054D928: aNSC_set_ftr_order
- 0x8054D974: aNSC_set_last_day_str
- 0x8054D9C8: aNSC_set_pw_name_str
- 0x8054DA24: aNSC_set_value_str
- 0x8054DA80: aNSC_set_item_name_str
- 0x8054DAE4: aNSC_set_item_str
- 0x8054DB3C: aNSC_set_pw_password_str
- 0x8054DB9C: aNSC_set_pw_info_str
- 0x8054DC04: aNSC_pc_check_password_famicom
- 0x8054DC4C: aNSC_pc_check_password_npc
- 0x8054DCB8: aNSC_pc_check_password_card_e
- 0x8054DCC0: aNSC_pc_check_password_magazine
- 0x8054DD34: aNSC_pc_check_password_card_e_mini
- 0x8054DD4C: aNSC_pc_check_password_user
- 0x8054DD94: aNSC_pc_check_password
- 0x8054DE58: aNSC_check_possession_item_make_password
- 0x8054DF04: aNSC_set_buy_sum_str
- 0x8054DFD8: aNSC_decide_next_move_act
- 0x8054E0E8: aNSC_set_zone_data
- 0x8054E16C: aNSC_set_player_angl
- 0x8054E178: aNSC_money_check
- 0x8054E198: aNSC_get_sell_price
- 0x8054E1B8: aNSC_check_money_overflow
- 0x8054E24C: aNSC_check_buy_item_sub
- 0x8054E2F0: aNSC_check_buy_paper
- 0x8054E3E0: aNSC_check_buy_item_single
- 0x8054E4F8: aNSC_check_buy_item_plural
- 0x8054E584: aNSC_check_buy_item
- 0x8054E5B8: aNSC_check_item_with_ticket
- 0x8054E638: aNSC_setup_ticket_remain
- 0x8054E680: aNSC_check_same_month_ticket
- 0x8054E6E4: aNSC_get_msg_no
- 0x8054E72C: aNSC_Set_continue_msg_num
- 0x8054E76C: aNSC_ChangeMsgData
- 0x8054E7AC: aNSC_set_player_angle
- 0x8054E8B4: aNSC_set_talk_info_show_item
- 0x8054E8EC: aNSC_set_talk_info_show_cloth
- 0x8054E924: aNSC_set_talk_info_sell_item
- 0x8054E9E4: aNSC_set_talk_info_message_ctrl
- 0x8054EA0C: aNSC_set_talk_info_message_ctrl_aprilfool
- 0x8054EA54: aNSC_set_talk_info_message_ctrl_tokubai
- 0x8054EA7C: aNSC_message_ctrl
- 0x8054EE5C: aNSC_buy_item_single
- 0x8054EF4C: aNSC_buy_paper
- 0x8054F05C: aNSC_buy_item_only_one
- 0x8054F26C: aNSC_get_start_call_msg_no
- 0x8054F2A8: aNSC_set_talk_info_start_wait
- 0x8054F49C: aNSC_set_talk_info_start_wait1
- 0x8054F57C: aNSC_set_talk_info_start_wait2
- 0x8054F5C8: aNSC_set_talk_info_start_wait3
- 0x8054F604: aNSC_set_talk_info_start_wait4
- 0x8054F62C: aNSC_start_wait
- 0x8054F8E0: aNSC_say_hello_approach
- 0x8054F970: aNSC_say_hello_end_wait
- 0x8054F9E4: aNSC_check_col_chg_or_make_basement
- 0x8054FAB0: aNSC_check_roof_col_order
- 0x8054FBE8: aNSC_check_roof_col_order2
- 0x8054FCDC: aNSC_present_balloon_start_wait
- 0x8054FD38: aNSC_present_balloon_trans_move
- 0x8054FD74: aNSC_present_balloon_trans_takeout
- 0x8054FE50: aNSC_present_balloon_trans_wait
- 0x8054FE90: aNSC_present_balloon_end_wait
- 0x8054FEF8: aNSC_set_talk_info_request_Q_start_wait
- 0x8054FF28: aNSC_request_Q_start_wait
- 0x8054FFAC: aNSC_request_Q_answer_wait
- 0x805500C0: aNSC_request_Q_answer_wait2
- 0x80550250: aNSC_request_Q_end_wait
- 0x805502C4: aNSC_answer_buy_item
- 0x80550340: aNSC_buy_menu_open_wait
- 0x80550398: aNSC_buy_menu_close_wait
- 0x805503CC: aNSC_msg_win_open_wait
- 0x80550494: aNSC_buy_sum_check
- 0x80550590: aNSC_buy_check
- 0x80550810: aNSC_buy_after_service
- 0x8055088C: aNSC_buy_continue_check
- 0x80550978: aNSC_receive_check
- 0x80550A1C: aNSC_msg_win_open_wait2
- 0x80550AE4: aNSC_order_check
- 0x80550BE0: aNSC_sell_check_before
- 0x80550C48: aNSC_sell_check
- 0x80550D00: aNSC_sell_answer0
- 0x80550F34: aNSC_sell_item_with_ticket
- 0x80550FEC: aNSC_show_item_check
- 0x805511B8: aNSC_chg_cloth_start_wait
- 0x80551280: aNSC_chg_cloth_end_wait
- 0x805512DC: aNSC_pw_entry_send_addr_start_wait
- 0x80551354: aNSC_pw_msg_win_open_wait
- 0x80551400: aNSC_pw_send_addr_check
- 0x805514DC: aNSC_pw_sel_item_start_wait
- 0x80551554: aNSC_pw_msg_win_open_wait2
- 0x80551604: aNSC_pw_send_check
- 0x80551730: aNSC_pw_retry_sel_item_check
- 0x805517F8: aNSC_pc_input_pw_start_wait
- 0x80551870: aNSC_pc_msg_win_open_wait
- 0x80551904: aNSC_pc_retry_input_pw_check
- 0x805519F8: aNSC_pc_present_start_wait
- 0x80551A54: aNSC_pc_present_trans_takeout
- 0x80551B30: aNSC_pc_present_trans_wait
- 0x80551B70: aNSC_pc_present_end_wait
- 0x80551BD8: aNSC_wait
- 0x80551C50: aNSC_walk_pl_other_zone
- 0x80551CC8: aNSC_turn
- 0x80551D60: aNSC_set_talk_info_goodbye_wait
- 0x80551D90: aNSC_goodbye_wait
- 0x80551E2C: aNSC_say_goodbye
- 0x80551E8C: aNSC_exit_wait
- 0x80551F00: aNSC_say_hello_approach_init
- 0x80551F20: aNSC_say_hello_end_wait_init
- 0x80551F48: aNSC_check_col_chg_or_make_basement_init
- 0x80551F68: aNSC_check_roof_col_order_init
- 0x80551FA8: aNSC_check_roof_col_order2_init
- 0x80551FD4: aNSC_present_balloon_start_wait_init
- 0x80551FF0: aNSC_present_balloon_trans_move_init
- 0x8055207C: aNSC_present_balloon_trans_takeout_init
- 0x805520BC: aNSC_present_balloon_end_wait_init
- 0x805520CC: aNSC_request_Q_answer_wait_init
- 0x8055210C: aNSC_request_Q_end_wait_init
- 0x8055212C: aNSC_answer_buy_item_init
- 0x80552158: aNSC_buy_menu_open_wait_init
- 0x8055217C: aNSC_buy_menu_close_wait_init
- 0x805521C0: aNSC_msg_win_open_wait_init
- 0x805521E4: aNSC_buy_sum_check_init
- 0x80552210: aNSC_buy_check_init
- 0x80552308: aNSC_buy_after_service_init
- 0x80552334: aNSC_order_select_menu_close_wait_init
- 0x80552378: aNSC_order_check_init
- 0x805523A4: aNSC_sell_check_before_init
- 0x805523E4: aNSC_sell_answer0_init
- 0x805524FC: aNSC_sell_answer1_init
- 0x80552530: aNSC_sell_item_init
- 0x80552594: aNSC_sell_item_with_ticket_init
- 0x805525E4: aNSC_sell_refuse0_init
- 0x805525F0: aNSC_show_item_check_init
- 0x80552610: aNSC_chg_cloth_start_wait_init
- 0x80552634: aNSC_pw_entry_send_addr_start_wait_init
- 0x80552660: aNSC_pw_make_menu_close_wait_init
- 0x805526C4: aNSC_pw_send_addr_check_init
- 0x805526E4: aNSC_pw_sel_item_menu_close_wait_init
- 0x80552728: aNSC_pc_input_pw_start_wait_init
- 0x80552764: aNSC_pc_chk_menu_close_wait_init
- 0x805527AC: aNSC_pc_present_trans_takeout_init
- 0x80552834: aNSC_pc_present_end_wait_init
- 0x80552844: aNSC_wait_init
- 0x80552864: aNSC_walk_pl_same_zone_init
- 0x80552884: aNSC_run_pl_same_zone_init
- 0x805528A4: aNSC_goodbye_wait_init
- 0x805528C4: aNSC_say_goodbye_init
- 0x805528E8: aNSC_init_proc
- 0x8055291C: aNSC_setupAction
- 0x806A5854: aNSC_item1_0_tanni_type
- 0x806A5954: aNSC_item1_1_tanni_type
- 0x806A5958: aNSC_item1_2_tanni_type
- 0x806A59B4: aNSC_item1_3_tanni_type
- 0x806A59DC: aNSC_item1_4_tanni_type
- 0x806A5ADC: aNSC_item1_5_tanni_type
- 0x806A5B10: aNSC_item1_6_tanni_type
- 0x806A5B54: aNSC_item1_7_tanni_type
- 0x806A5B98: aNSC_item1_8_tanni_type
- 0x806A5BA0: aNSC_item1_9_tanni_type
- 0x806A5BAC: aNSC_item1_A_tanni_type
- 0x806A5BE4: aNSC_item1_B_tanni_type
- 0x806A5BF4: aNSC_item1_C_tanni_type
- 0x806A5C54: aNSC_item1_D_tanni_type
- 0x806A5C84: aNSC_item1_E_tanni_type
- 0x806A5C88: aNSC_item1_F_tanni_type
- 0x806A5C8C: aNSC_item_tanni_type
- 0x806A5D80: aNSC_exchange_itemNo
-src/ac_npc_mamedanuki.c:
- 0x8055A4EC: aNSC_set_animation
- 0x8055A53C: aNSC_BGcheck
- 0x8055A580: aNSC_calc_talk_start_tim
- 0x8055A5A8: aNSC_request_show_camera
- 0x8055A61C: aNSC_Set_ListenAble
- 0x8055A640: aNSC_set_sell_camera
- 0x8055A6D4: aNSC_sell_camera
- 0x8055A774: aNSC_talk_demo_proc
- 0x8055A7E4: aNSC_set_stop_spd
- 0x8055A800: aNSC_set_walk_spd
- 0x8055A82C: aNSC_set_run_spd
- 0x8055A858: aNSC_getP_free_ftr_order
- 0x8055A890: aNSC_set_ftr_order
- 0x8055A8DC: aNSC_set_last_day_str
- 0x8055A930: aNSC_set_pw_name_str
- 0x8055A98C: aNSC_set_value_str
- 0x8055A9E8: aNSC_set_item_name_str
- 0x8055AA4C: aNSC_set_item_str
- 0x8055AAA4: aNSC_set_pw_password_str
- 0x8055AB04: aNSC_set_pw_info_str
- 0x8055AB6C: aNSC_pc_check_password_famicom
- 0x8055ABB4: aNSC_pc_check_password_npc
- 0x8055AC20: aNSC_pc_check_password_card_e
- 0x8055AC28: aNSC_pc_check_password_magazine
- 0x8055AC9C: aNSC_pc_check_password_card_e_mini
- 0x8055ACB4: aNSC_pc_check_password_user
- 0x8055ACFC: aNSC_pc_check_password
- 0x8055ADC0: aNSC_check_possession_item_make_password
- 0x8055AE6C: aNSC_set_buy_sum_str
- 0x8055AF40: aNSC_decide_next_move_act
- 0x8055B0C4: aNSC_set_zone_data
- 0x8055B14C: aNSC_set_player_angl
- 0x8055B158: aNSC_money_check
- 0x8055B178: aNSC_get_sell_price
- 0x8055B198: aNSC_check_money_overflow
- 0x8055B22C: aNSC_check_buy_item_sub
- 0x8055B2D0: aNSC_check_buy_paper
- 0x8055B3C0: aNSC_check_buy_item_single
- 0x8055B4D8: aNSC_check_buy_item_plural
- 0x8055B564: aNSC_check_buy_item
- 0x8055B598: aNSC_check_item_with_ticket
- 0x8055B618: aNSC_setup_ticket_remain
- 0x8055B660: aNSC_check_same_month_ticket
- 0x8055B6C4: aNSC_get_msg_no
- 0x8055B6FC: aNSC_Set_continue_msg_num
- 0x8055B73C: aNSC_ChangeMsgData
- 0x8055B77C: aNSC_set_player_angle
- 0x8055B884: aNSC_set_talk_info_show_item
- 0x8055B8BC: aNSC_set_talk_info_show_cloth
- 0x8055B8F4: aNSC_set_talk_info_sell_item
- 0x8055B9B4: aNSC_set_talk_info_message_ctrl
- 0x8055BF0C: aNSC_message_ctrl
- 0x8055BFFC: aNSC_buy_item_single
- 0x8055C0EC: aNSC_buy_paper
- 0x8055C1FC: aNSC_buy_item_only_one
- 0x8055C40C: aNSC_set_talk_info_start_wait
- 0x8055C460: aNSC_start_wait
- 0x8055C4E4: aNSC_say_hello_approach
- 0x8055C57C: aNSC_say_hello_end_wait
- 0x8055C5F0: aNSC_set_talk_info_request_Q_start_wait
- 0x8055C620: aNSC_request_Q_start_wait
- 0x8055C6A4: aNSC_request_Q_answer_wait
- 0x8055C7B8: aNSC_request_Q_answer_wait2
- 0x8055C948: aNSC_request_Q_end_wait
- 0x8055C9BC: aNSC_answer_buy_item
- 0x8055CA38: aNSC_buy_menu_open_wait
- 0x8055CA90: aNSC_buy_menu_close_wait
- 0x8055CAC4: aNSC_msg_win_open_wait
- 0x8055CB8C: aNSC_buy_sum_check
- 0x8055CC88: aNSC_buy_check
- 0x8055CF08: aNSC_buy_after_service
- 0x8055CF84: aNSC_buy_continue_check
- 0x8055D070: aNSC_receive_check
- 0x8055D114: aNSC_msg_win_open_wait2
- 0x8055D1DC: aNSC_order_check
- 0x8055D2D8: aNSC_sell_check_before
- 0x8055D340: aNSC_sell_check
- 0x8055D3F8: aNSC_sell_answer0
- 0x8055D62C: aNSC_sell_item_with_ticket
- 0x8055D6E4: aNSC_show_item_check
- 0x8055D8B0: aNSC_chg_cloth_start_wait
- 0x8055D978: aNSC_chg_cloth_end_wait
- 0x8055D9D4: aNSC_pw_entry_send_addr_start_wait
- 0x8055DA4C: aNSC_pw_msg_win_open_wait
- 0x8055DAF8: aNSC_pw_send_addr_check
- 0x8055DBD4: aNSC_pw_sel_item_start_wait
- 0x8055DC4C: aNSC_pw_msg_win_open_wait2
- 0x8055DCFC: aNSC_pw_send_check
- 0x8055DE28: aNSC_pw_retry_sel_item_check
- 0x8055DEF0: aNSC_pc_input_pw_start_wait
- 0x8055DF68: aNSC_pc_msg_win_open_wait
- 0x8055DFFC: aNSC_pc_retry_input_pw_check
- 0x8055E0F0: aNSC_pc_present_start_wait
- 0x8055E14C: aNSC_pc_present_trans_takeout
- 0x8055E228: aNSC_pc_present_trans_wait
- 0x8055E268: aNSC_pc_present_end_wait
- 0x8055E2D0: aNSC_wait
- 0x8055E348: aNSC_walk_pl_other_zone
- 0x8055E3C0: aNSC_turn
- 0x8055E458: aNSC_set_talk_info_goodbye_wait
- 0x8055E488: aNSC_goodbye_wait
- 0x8055E554: aNSC_say_goodbye
- 0x8055E5B4: aNSC_exit_wait
- 0x8055E620: aNSC_say_hello_approach_init
- 0x8055E640: aNSC_say_hello_end_wait_init
- 0x8055E668: aNSC_request_Q_answer_wait_init
- 0x8055E6A8: aNSC_request_Q_end_wait_init
- 0x8055E6C8: aNSC_answer_buy_item_init
- 0x8055E6F4: aNSC_buy_menu_open_wait_init
- 0x8055E718: aNSC_buy_menu_close_wait_init
- 0x8055E75C: aNSC_msg_win_open_wait_init
- 0x8055E780: aNSC_buy_sum_check_init
- 0x8055E7AC: aNSC_buy_check_init
- 0x8055E8A4: aNSC_buy_after_service_init
- 0x8055E8D0: aNSC_order_select_menu_close_wait_init
- 0x8055E914: aNSC_order_check_init
- 0x8055E940: aNSC_sell_check_before_init
- 0x8055E980: aNSC_sell_answer0_init
- 0x8055EA98: aNSC_sell_answer1_init
- 0x8055EACC: aNSC_sell_item_init
- 0x8055EB30: aNSC_sell_item_with_ticket_init
- 0x8055EB80: aNSC_sell_refuse0_init
- 0x8055EB8C: aNSC_show_item_check_init
- 0x8055EBAC: aNSC_chg_cloth_start_wait_init
- 0x8055EBD0: aNSC_pw_entry_send_addr_start_wait_init
- 0x8055EBFC: aNSC_pw_make_menu_close_wait_init
- 0x8055EC60: aNSC_pw_send_addr_check_init
- 0x8055EC80: aNSC_pw_sel_item_menu_close_wait_init
- 0x8055ECC4: aNSC_pc_input_pw_start_wait_init
- 0x8055ED00: aNSC_pc_chk_menu_close_wait_init
- 0x8055ED48: aNSC_pc_present_trans_takeout_init
- 0x8055EDD0: aNSC_pc_present_end_wait_init
- 0x8055EDE0: aNSC_wait_init
- 0x8055EE00: aNSC_walk_pl_same_zone_init
- 0x8055EE20: aNSC_run_pl_same_zone_init
- 0x8055EE40: aNSC_goodbye_wait_init
- 0x8055EE60: aNSC_say_goodbye_init
- 0x8055EE84: aNSC_init_proc
- 0x8055EEB8: aNSC_setupAction
- 0x806A99E4: aNSC_item1_0_tanni_type
- 0x806A9AE4: aNSC_item1_1_tanni_type
- 0x806A9AE8: aNSC_item1_2_tanni_type
- 0x806A9B44: aNSC_item1_3_tanni_type
- 0x806A9B6C: aNSC_item1_4_tanni_type
- 0x806A9C6C: aNSC_item1_5_tanni_type
- 0x806A9CA0: aNSC_item1_6_tanni_type
- 0x806A9CE4: aNSC_item1_7_tanni_type
- 0x806A9D28: aNSC_item1_8_tanni_type
- 0x806A9D30: aNSC_item1_9_tanni_type
- 0x806A9D3C: aNSC_item1_A_tanni_type
- 0x806A9D74: aNSC_item1_B_tanni_type
- 0x806A9D84: aNSC_item1_C_tanni_type
- 0x806A9DE4: aNSC_item1_D_tanni_type
- 0x806A9E14: aNSC_item1_E_tanni_type
- 0x806A9E18: aNSC_item1_F_tanni_type
- 0x806A9E1C: aNSC_item_tanni_type
- 0x806A9F30: aNSC_exchange_itemNo
-src/ac_npc_shop_master.c:
- 0x80577114: aNSC_set_animation
- 0x80577164: aNSC_BGcheck
- 0x805771A8: aNSC_check_present_balloon
- 0x80577214: aNSC_calc_talk_start_tim
- 0x8057723C: aNSC_request_show_camera
- 0x805772B0: aNSC_Set_ListenAble
- 0x805772D4: aNSC_set_sell_camera
- 0x80577368: aNSC_sell_camera
- 0x80577408: aNSC_talk_demo_proc
- 0x80577478: aNSC_set_stop_spd
- 0x80577494: aNSC_set_walk_spd
- 0x805774C0: aNSC_set_run_spd
- 0x805774EC: aNSC_set_rehouse_order_date
- 0x80577514: aNSC_set_make_basement_info
- 0x80577570: aNSC_getP_free_ftr_order
- 0x805775A8: aNSC_set_ftr_order
- 0x805775F4: aNSC_set_last_day_str
- 0x80577648: aNSC_set_pw_name_str
- 0x805776A4: aNSC_set_value_str
- 0x80577700: aNSC_set_item_name_str
- 0x80577764: aNSC_set_item_str
- 0x805777BC: aNSC_set_pw_password_str
- 0x8057781C: aNSC_set_pw_info_str
- 0x80577884: aNSC_pc_check_password_famicom
- 0x805778CC: aNSC_pc_check_password_npc
- 0x80577938: aNSC_pc_check_password_card_e
- 0x80577940: aNSC_pc_check_password_magazine
- 0x805779B4: aNSC_pc_check_password_card_e_mini
- 0x805779CC: aNSC_pc_check_password_user
- 0x80577A14: aNSC_pc_check_password
- 0x80577AD8: aNSC_check_possession_item_make_password
- 0x80577B84: aNSC_set_buy_sum_str
- 0x80577C58: aNSC_decide_next_move_act
- 0x80577D68: aNSC_set_zone_data
- 0x80577DEC: aNSC_set_player_angl
- 0x80577DF8: aNSC_money_check
- 0x80577E18: aNSC_get_sell_price
- 0x80577E38: aNSC_check_money_overflow
- 0x80577ECC: aNSC_check_buy_item_sub
- 0x80577F70: aNSC_check_buy_paper
- 0x80578060: aNSC_check_buy_item_single
- 0x80578178: aNSC_check_buy_item_plural
- 0x80578204: aNSC_check_buy_item
- 0x80578238: aNSC_check_item_with_ticket
- 0x805782B8: aNSC_setup_ticket_remain
- 0x80578300: aNSC_check_same_month_ticket
- 0x80578364: aNSC_get_msg_no
- 0x805783AC: aNSC_Set_continue_msg_num
- 0x805783EC: aNSC_ChangeMsgData
- 0x8057842C: aNSC_set_player_angle
- 0x80578534: aNSC_set_talk_info_show_item
- 0x8057856C: aNSC_set_talk_info_show_cloth
- 0x805785A4: aNSC_set_talk_info_sell_item
- 0x80578664: aNSC_set_talk_info_message_ctrl
- 0x8057868C: aNSC_set_talk_info_message_ctrl_aprilfool
- 0x805786D4: aNSC_set_talk_info_message_ctrl_tokubai
- 0x805786FC: aNSC_message_ctrl
- 0x80578ADC: aNSC_buy_item_single
- 0x80578BCC: aNSC_buy_paper
- 0x80578CDC: aNSC_buy_item_only_one
- 0x80578EEC: aNSC_get_start_call_msg_no
- 0x80578F28: aNSC_set_talk_info_start_wait
- 0x8057911C: aNSC_set_talk_info_start_wait1
- 0x805791FC: aNSC_set_talk_info_start_wait2
- 0x80579248: aNSC_set_talk_info_start_wait3
- 0x80579284: aNSC_set_talk_info_start_wait4
- 0x805792AC: aNSC_start_wait
- 0x80579560: aNSC_say_hello_approach
- 0x805795F0: aNSC_say_hello_end_wait
- 0x80579664: aNSC_check_col_chg_or_make_basement
- 0x80579730: aNSC_check_roof_col_order
- 0x80579868: aNSC_check_roof_col_order2
- 0x8057995C: aNSC_present_balloon_start_wait
- 0x805799B8: aNSC_present_balloon_trans_move
- 0x805799F4: aNSC_present_balloon_trans_takeout
- 0x80579AD0: aNSC_present_balloon_trans_wait
- 0x80579B10: aNSC_present_balloon_end_wait
- 0x80579B78: aNSC_set_talk_info_request_Q_start_wait
- 0x80579BA8: aNSC_request_Q_start_wait
- 0x80579C2C: aNSC_request_Q_answer_wait
- 0x80579D40: aNSC_request_Q_answer_wait2
- 0x80579ED0: aNSC_request_Q_end_wait
- 0x80579F44: aNSC_answer_buy_item
- 0x80579FC0: aNSC_buy_menu_open_wait
- 0x8057A018: aNSC_buy_menu_close_wait
- 0x8057A04C: aNSC_msg_win_open_wait
- 0x8057A114: aNSC_buy_sum_check
- 0x8057A210: aNSC_buy_check
- 0x8057A490: aNSC_buy_after_service
- 0x8057A50C: aNSC_buy_continue_check
- 0x8057A5F8: aNSC_receive_check
- 0x8057A69C: aNSC_msg_win_open_wait2
- 0x8057A764: aNSC_order_check
- 0x8057A860: aNSC_sell_check_before
- 0x8057A8C8: aNSC_sell_check
- 0x8057A980: aNSC_sell_answer0
- 0x8057ABB4: aNSC_sell_item_with_ticket
- 0x8057AC6C: aNSC_show_item_check
- 0x8057AE38: aNSC_chg_cloth_start_wait
- 0x8057AF00: aNSC_chg_cloth_end_wait
- 0x8057AF5C: aNSC_pw_entry_send_addr_start_wait
- 0x8057AFD4: aNSC_pw_msg_win_open_wait
- 0x8057B080: aNSC_pw_send_addr_check
- 0x8057B15C: aNSC_pw_sel_item_start_wait
- 0x8057B1D4: aNSC_pw_msg_win_open_wait2
- 0x8057B284: aNSC_pw_send_check
- 0x8057B3B0: aNSC_pw_retry_sel_item_check
- 0x8057B478: aNSC_pc_input_pw_start_wait
- 0x8057B4F0: aNSC_pc_msg_win_open_wait
- 0x8057B584: aNSC_pc_retry_input_pw_check
- 0x8057B678: aNSC_pc_present_start_wait
- 0x8057B6D4: aNSC_pc_present_trans_takeout
- 0x8057B7B0: aNSC_pc_present_trans_wait
- 0x8057B7F0: aNSC_pc_present_end_wait
- 0x8057B858: aNSC_wait
- 0x8057B8D0: aNSC_walk_pl_other_zone
- 0x8057B948: aNSC_turn
- 0x8057B9E0: aNSC_set_talk_info_goodbye_wait
- 0x8057BA10: aNSC_goodbye_wait
- 0x8057BAAC: aNSC_say_goodbye
- 0x8057BB0C: aNSC_exit_wait
- 0x8057BB80: aNSC_say_hello_approach_init
- 0x8057BBA0: aNSC_say_hello_end_wait_init
- 0x8057BBC8: aNSC_check_col_chg_or_make_basement_init
- 0x8057BBE8: aNSC_check_roof_col_order_init
- 0x8057BC28: aNSC_check_roof_col_order2_init
- 0x8057BC54: aNSC_present_balloon_start_wait_init
- 0x8057BC70: aNSC_present_balloon_trans_move_init
- 0x8057BCFC: aNSC_present_balloon_trans_takeout_init
- 0x8057BD3C: aNSC_present_balloon_end_wait_init
- 0x8057BD4C: aNSC_request_Q_answer_wait_init
- 0x8057BD8C: aNSC_request_Q_end_wait_init
- 0x8057BDAC: aNSC_answer_buy_item_init
- 0x8057BDD8: aNSC_buy_menu_open_wait_init
- 0x8057BDFC: aNSC_buy_menu_close_wait_init
- 0x8057BE40: aNSC_msg_win_open_wait_init
- 0x8057BE64: aNSC_buy_sum_check_init
- 0x8057BE90: aNSC_buy_check_init
- 0x8057BF88: aNSC_buy_after_service_init
- 0x8057BFB4: aNSC_order_select_menu_close_wait_init
- 0x8057BFF8: aNSC_order_check_init
- 0x8057C024: aNSC_sell_check_before_init
- 0x8057C064: aNSC_sell_answer0_init
- 0x8057C17C: aNSC_sell_answer1_init
- 0x8057C1B0: aNSC_sell_item_init
- 0x8057C214: aNSC_sell_item_with_ticket_init
- 0x8057C264: aNSC_sell_refuse0_init
- 0x8057C270: aNSC_show_item_check_init
- 0x8057C290: aNSC_chg_cloth_start_wait_init
- 0x8057C2B4: aNSC_pw_entry_send_addr_start_wait_init
- 0x8057C2E0: aNSC_pw_make_menu_close_wait_init
- 0x8057C344: aNSC_pw_send_addr_check_init
- 0x8057C364: aNSC_pw_sel_item_menu_close_wait_init
- 0x8057C3A8: aNSC_pc_input_pw_start_wait_init
- 0x8057C3E4: aNSC_pc_chk_menu_close_wait_init
- 0x8057C42C: aNSC_pc_present_trans_takeout_init
- 0x8057C4B4: aNSC_pc_present_end_wait_init
- 0x8057C4C4: aNSC_wait_init
- 0x8057C4E4: aNSC_walk_pl_same_zone_init
- 0x8057C504: aNSC_run_pl_same_zone_init
- 0x8057C524: aNSC_goodbye_wait_init
- 0x8057C544: aNSC_say_goodbye_init
- 0x8057C568: aNSC_init_proc
- 0x8057C59C: aNSC_setupAction
- 0x806BFE18: aNSC_item1_0_tanni_type
- 0x806BFF18: aNSC_item1_1_tanni_type
- 0x806BFF1C: aNSC_item1_2_tanni_type
- 0x806BFF78: aNSC_item1_3_tanni_type
- 0x806BFFA0: aNSC_item1_4_tanni_type
- 0x806C00A0: aNSC_item1_5_tanni_type
- 0x806C00D4: aNSC_item1_6_tanni_type
- 0x806C0118: aNSC_item1_7_tanni_type
- 0x806C015C: aNSC_item1_8_tanni_type
- 0x806C0164: aNSC_item1_9_tanni_type
- 0x806C0170: aNSC_item1_A_tanni_type
- 0x806C01A8: aNSC_item1_B_tanni_type
- 0x806C01B8: aNSC_item1_C_tanni_type
- 0x806C0218: aNSC_item1_D_tanni_type
- 0x806C0248: aNSC_item1_E_tanni_type
- 0x806C024C: aNSC_item1_F_tanni_type
- 0x806C0250: aNSC_item_tanni_type
- 0x806C0344: aNSC_exchange_itemNo
-src/ac_npc_needlework.c:
- 0x80564CA0: player_go_away
- 0x80564CE0: player_buy
- 0x806BE35C: dt_tbl
- 0x806BE3A8: proc_table
- 0x806BE3C8: init_table
-src/ac_npc_shop_mastersp.c:
- 0x8057CB60: player_go_away
- 0x8057CBB8: player_buy
-src/ac_npc_p_sel2.c:
- 0x805682D0: aNPS2_make_door_data
- 0x8056852C: aNPS2_setup_game_start
-src/ac_npc_station_master.c:
- 0x8057F7C0: aNPS2_make_door_data
- 0x8057F824: aNPS2_setup_game_start
- 0x806C0C14: proc_table
- 0x806C0C5C: dt_tbl
- 0x806C0CCC: init_table
-src/ac_npc_super_master.c:
- 0x80580C20: aNSC_set_animation
- 0x80580C70: aNSC_BGcheck
- 0x80580CB4: aNSC_check_present_balloon
- 0x80580D20: aNSC_calc_talk_start_tim
- 0x80580D48: aNSC_request_show_camera
- 0x80580DBC: aNSC_Set_ListenAble
- 0x80580DE0: aNSC_set_sell_camera
- 0x80580E74: aNSC_sell_camera
- 0x80580F14: aNSC_talk_demo_proc
- 0x80580F84: aNSC_set_stop_spd
- 0x80580FA0: aNSC_set_walk_spd
- 0x80580FCC: aNSC_set_run_spd
- 0x80580FF8: aNSC_set_rehouse_order_date
- 0x80581020: aNSC_set_make_basement_info
- 0x8058107C: aNSC_getP_free_ftr_order
- 0x805810B4: aNSC_set_ftr_order
- 0x80581100: aNSC_set_last_day_str
- 0x80581154: aNSC_set_pw_name_str
- 0x805811B0: aNSC_set_value_str
- 0x8058120C: aNSC_set_item_name_str
- 0x80581270: aNSC_set_item_str
- 0x805812C8: aNSC_set_pw_password_str
- 0x80581328: aNSC_set_pw_info_str
- 0x80581390: aNSC_pc_check_password_famicom
- 0x805813D8: aNSC_pc_check_password_npc
- 0x80581444: aNSC_pc_check_password_card_e
- 0x8058144C: aNSC_pc_check_password_magazine
- 0x805814C0: aNSC_pc_check_password_card_e_mini
- 0x805814D8: aNSC_pc_check_password_user
- 0x80581520: aNSC_pc_check_password
- 0x805815E4: aNSC_check_possession_item_make_password
- 0x80581690: aNSC_set_buy_sum_str
- 0x80581764: aNSC_decide_next_move_act
- 0x80581874: aNSC_set_zone_data
- 0x805818F8: aNSC_set_player_angl
- 0x80581904: aNSC_money_check
- 0x80581924: aNSC_get_sell_price
- 0x80581944: aNSC_check_money_overflow
- 0x805819D8: aNSC_check_buy_item_sub
- 0x80581A7C: aNSC_check_buy_paper
- 0x80581B6C: aNSC_check_buy_item_single
- 0x80581C84: aNSC_check_buy_item_plural
- 0x80581D10: aNSC_check_buy_item
- 0x80581D44: aNSC_check_item_with_ticket
- 0x80581DC4: aNSC_setup_ticket_remain
- 0x80581E0C: aNSC_check_same_month_ticket
- 0x80581E70: aNSC_get_msg_no
- 0x80581EB8: aNSC_Set_continue_msg_num
- 0x80581EF8: aNSC_ChangeMsgData
- 0x80581F38: aNSC_set_player_angle
- 0x80582040: aNSC_set_talk_info_show_item
- 0x80582078: aNSC_set_talk_info_show_cloth
- 0x805820B0: aNSC_set_talk_info_sell_item
- 0x80582170: aNSC_set_talk_info_message_ctrl
- 0x80582198: aNSC_set_talk_info_message_ctrl_aprilfool
- 0x805821E0: aNSC_set_talk_info_message_ctrl_tokubai
- 0x80582208: aNSC_message_ctrl
- 0x805825E8: aNSC_buy_item_single
- 0x805826D8: aNSC_buy_paper
- 0x805827E8: aNSC_buy_item_only_one
- 0x805829F8: aNSC_get_start_call_msg_no
- 0x80582A34: aNSC_set_talk_info_start_wait
- 0x80582C28: aNSC_set_talk_info_start_wait1
- 0x80582D08: aNSC_set_talk_info_start_wait2
- 0x80582D54: aNSC_set_talk_info_start_wait3
- 0x80582D90: aNSC_set_talk_info_start_wait4
- 0x80582DB8: aNSC_start_wait
- 0x8058306C: aNSC_say_hello_approach
- 0x805830FC: aNSC_say_hello_end_wait
- 0x80583170: aNSC_check_col_chg_or_make_basement
- 0x8058323C: aNSC_check_roof_col_order
- 0x80583374: aNSC_check_roof_col_order2
- 0x80583468: aNSC_present_balloon_start_wait
- 0x805834C4: aNSC_present_balloon_trans_move
- 0x80583500: aNSC_present_balloon_trans_takeout
- 0x805835DC: aNSC_present_balloon_trans_wait
- 0x8058361C: aNSC_present_balloon_end_wait
- 0x80583684: aNSC_set_talk_info_request_Q_start_wait
- 0x805836B4: aNSC_request_Q_start_wait
- 0x80583738: aNSC_request_Q_answer_wait
- 0x8058384C: aNSC_request_Q_answer_wait2
- 0x805839DC: aNSC_request_Q_end_wait
- 0x80583A50: aNSC_answer_buy_item
- 0x80583ACC: aNSC_buy_menu_open_wait
- 0x80583B24: aNSC_buy_menu_close_wait
- 0x80583B58: aNSC_msg_win_open_wait
- 0x80583C20: aNSC_buy_sum_check
- 0x80583D1C: aNSC_buy_check
- 0x80583F9C: aNSC_buy_after_service
- 0x80584018: aNSC_buy_continue_check
- 0x80584104: aNSC_receive_check
- 0x805841A8: aNSC_msg_win_open_wait2
- 0x80584270: aNSC_order_check
- 0x8058436C: aNSC_sell_check_before
- 0x805843D4: aNSC_sell_check
- 0x8058448C: aNSC_sell_answer0
- 0x805846C0: aNSC_sell_item_with_ticket
- 0x80584778: aNSC_show_item_check
- 0x80584944: aNSC_chg_cloth_start_wait
- 0x80584A0C: aNSC_chg_cloth_end_wait
- 0x80584A68: aNSC_pw_entry_send_addr_start_wait
- 0x80584AE0: aNSC_pw_msg_win_open_wait
- 0x80584B8C: aNSC_pw_send_addr_check
- 0x80584C68: aNSC_pw_sel_item_start_wait
- 0x80584CE0: aNSC_pw_msg_win_open_wait2
- 0x80584D90: aNSC_pw_send_check
- 0x80584EBC: aNSC_pw_retry_sel_item_check
- 0x80584F84: aNSC_pc_input_pw_start_wait
- 0x80584FFC: aNSC_pc_msg_win_open_wait
- 0x80585090: aNSC_pc_retry_input_pw_check
- 0x80585184: aNSC_pc_present_start_wait
- 0x805851E0: aNSC_pc_present_trans_takeout
- 0x805852BC: aNSC_pc_present_trans_wait
- 0x805852FC: aNSC_pc_present_end_wait
- 0x80585364: aNSC_wait
- 0x805853DC: aNSC_walk_pl_other_zone
- 0x80585454: aNSC_turn
- 0x805854EC: aNSC_set_talk_info_goodbye_wait
- 0x8058551C: aNSC_goodbye_wait
- 0x805855B8: aNSC_say_goodbye
- 0x80585618: aNSC_exit_wait
- 0x8058568C: aNSC_say_hello_approach_init
- 0x805856AC: aNSC_say_hello_end_wait_init
- 0x805856D4: aNSC_check_col_chg_or_make_basement_init
- 0x805856F4: aNSC_check_roof_col_order_init
- 0x80585734: aNSC_check_roof_col_order2_init
- 0x80585760: aNSC_present_balloon_start_wait_init
- 0x8058577C: aNSC_present_balloon_trans_move_init
- 0x80585808: aNSC_present_balloon_trans_takeout_init
- 0x80585848: aNSC_present_balloon_end_wait_init
- 0x80585858: aNSC_request_Q_answer_wait_init
- 0x80585898: aNSC_request_Q_end_wait_init
- 0x805858B8: aNSC_answer_buy_item_init
- 0x805858E4: aNSC_buy_menu_open_wait_init
- 0x80585908: aNSC_buy_menu_close_wait_init
- 0x8058594C: aNSC_msg_win_open_wait_init
- 0x80585970: aNSC_buy_sum_check_init
- 0x8058599C: aNSC_buy_check_init
- 0x80585A94: aNSC_buy_after_service_init
- 0x80585AC0: aNSC_order_select_menu_close_wait_init
- 0x80585B04: aNSC_order_check_init
- 0x80585B30: aNSC_sell_check_before_init
- 0x80585B70: aNSC_sell_answer0_init
- 0x80585C88: aNSC_sell_answer1_init
- 0x80585CBC: aNSC_sell_item_init
- 0x80585D20: aNSC_sell_item_with_ticket_init
- 0x80585D70: aNSC_sell_refuse0_init
- 0x80585D7C: aNSC_show_item_check_init
- 0x80585D9C: aNSC_chg_cloth_start_wait_init
- 0x80585DC0: aNSC_pw_entry_send_addr_start_wait_init
- 0x80585DEC: aNSC_pw_make_menu_close_wait_init
- 0x80585E50: aNSC_pw_send_addr_check_init
- 0x80585E70: aNSC_pw_sel_item_menu_close_wait_init
- 0x80585EB4: aNSC_pc_input_pw_start_wait_init
- 0x80585EF0: aNSC_pc_chk_menu_close_wait_init
- 0x80585F38: aNSC_pc_present_trans_takeout_init
- 0x80585FC0: aNSC_pc_present_end_wait_init
- 0x80585FD0: aNSC_wait_init
- 0x80585FF0: aNSC_walk_pl_same_zone_init
- 0x80586010: aNSC_run_pl_same_zone_init
- 0x80586030: aNSC_goodbye_wait_init
- 0x80586050: aNSC_say_goodbye_init
- 0x80586074: aNSC_init_proc
- 0x805860A8: aNSC_setupAction
- 0x806C135C: aNSC_item1_0_tanni_type
- 0x806C145C: aNSC_item1_1_tanni_type
- 0x806C1460: aNSC_item1_2_tanni_type
- 0x806C14BC: aNSC_item1_3_tanni_type
- 0x806C14E4: aNSC_item1_4_tanni_type
- 0x806C15E4: aNSC_item1_5_tanni_type
- 0x806C1618: aNSC_item1_6_tanni_type
- 0x806C165C: aNSC_item1_7_tanni_type
- 0x806C16A0: aNSC_item1_8_tanni_type
- 0x806C16A8: aNSC_item1_9_tanni_type
- 0x806C16B4: aNSC_item1_A_tanni_type
- 0x806C16EC: aNSC_item1_B_tanni_type
- 0x806C16FC: aNSC_item1_C_tanni_type
- 0x806C175C: aNSC_item1_D_tanni_type
- 0x806C178C: aNSC_item1_E_tanni_type
- 0x806C1790: aNSC_item1_F_tanni_type
- 0x806C1794: aNSC_item_tanni_type
- 0x806C1888: aNSC_exchange_itemNo
-src/ac_tokyoso_control.c:
- 0x804AB040: aTKN1_set_request_act
- 0x8068F438: init_table
-src/ac_tokyoso_npc1.c:
- 0x8058C3BC: aTKN1_set_request_act
- 0x806C2400: dt_tbl
- 0x806C2474: proc_table
-src/ac_br_shop.c:
- 0x805A8768: change_FGUnit
-src/ac_buggy.c:
- 0x805A9E18: change_FGUnit
-src/ac_count02.c:
- 0x805AB8B8: aCOU_actor_ct
- 0x805AB988: aCOU_actor_dt
- 0x805ABAE8: aCOU_wait
- 0x805ABC04: aCOU_setup_action
- 0x805ABCA0: aCOU_actor_move
- 0x805ABDAC: aCOU_actor_init
- 0x805ABE24: aCOU_actor_draw_before
- 0x805ABE88: aCOU_actor_draw
-src/ac_countdown.c:
- 0x805AC0AC: aCOU_actor_ct
- 0x805AC120: aCOU_actor_dt
- 0x805AC334: aCOU_wait
- 0x805AC400: aCOU_setup_action
- 0x805AC4A0: aCOU_actor_move
- 0x805AC5EC: aCOU_actor_init
- 0x805AC664: aCOU_actor_draw_before
- 0x805AC7B0: aCOU_actor_draw
-src/ac_house.c:
- 0x805AFB2C: change_FGUnit
-src/ac_kamakura.c:
- 0x805B1DE4: change_FGUnit
-src/ac_mikanbox.c:
- 0x805B3010: aMIK_actor_ct
- 0x805B3E59: aMIK_actor_init
- 0x805B4054: aMIK_actor_draw
- 0x806C5BB0: init_table
- 0x806C5BD0: obj_e_mikanbox_v
-src/ac_mikuji.c:
- 0x805B414C: aMIK_actor_ct
- 0x805B437C: aMIK_actor_init
- 0x805B43F4: aMIK_actor_draw
-src/ac_turi_npc0.c:
- 0x805900B0: aTR0_actor_ct
- 0x805901D8: aTR0_actor_dt
- 0x80590284: aTR0_actor_move
- 0x805902BC: aTR0_actor_draw
-src/ac_train0.c:
- 0x805BFC28: aTR0_actor_ct
- 0x805BFCDC: aTR0_actor_dt
- 0x805C00F4: calc_speed1
- 0x805C014C: calc_speed2
- 0x805C03EC: aTR0_actor_move
- 0x805C04E0: aTR0_actor_draw
-src/ac_train1.c:
- 0x805C0708: calc_speed1
- 0x805C0760: calc_speed2
-src/ac_ev_angler.c:
- 0x80518394: get_fish_save_area
- 0x805186F4: getP_top_of_angler_pID
- 0x80518718: set_top_of_angler_pID
- 0x80518750: get_top_of_angler_size
-src/ac_turi.c:
- 0x805C1290: get_fish_save_area
- 0x805C12F0: get_top_of_angler_size
- 0x805C1314: set_top_of_angler_pID
- 0x805C134C: getP_top_of_angler_pID
-src/m_submenu.c:
- 0x803EFD78: mSM_move_End
-src/m_submenu_ovl.c:
- 0x805EF448: mSM_move_End
-src/m_inventory_ovl.c:
- 0x805E448C: mIV_get_win_posY
-src/m_tag_ovl.c:
- 0x805F89B0: mIV_get_win_posY
-src/ef_turi_hane0.c:
- 0x80624048: eTH0_init
- 0x806240BC: eTH0_ct
- 0x80624138: eTH0_mv
- 0x8062413C: eTH0_dw
-src/ef_turi_hane1.c:
- 0x80624260: eTH0_init
- 0x806242D4: eTH0_ct
- 0x806242F4: eTH0_mv
- 0x806242F8: eTH0_dw
-src/ef_takurami.c:
- 0x80620A7C: eTM_init
- 0x80620BC4: eTM_ct
- 0x80620D04: eTM_mv
- 0x80620DBC: eTM_dw
-src/ef_turi_mizu.c:
- 0x806247C0: eTM_init
- 0x80624890: eTM_ct
- 0x80624988: eTM_mv
- 0x80624B10: eTM_dw
-src/padmgr.c:
- 0x8065F138: this
-src/ac_gyo_release.c:
- 0x80682D1C: gyoei_type
- 0x80682E84: aGYO_funa_dl
- 0x80682E90: aGYO_hera_dl
- 0x80682E9C: aGYO_koi_dl
- 0x80682EA8: aGYO_nisiki_dl
- 0x80682EB4: aGYO_namazu_dl
- 0x80682EC0: aGYO_bass_s_dl
- 0x80682ECC: aGYO_bass_m_dl
- 0x80682ED8: aGYO_bass_l_dl
- 0x80682EE4: aGYO_blue_gill_dl
- 0x80682EF0: aGYO_oonamazu_dl
- 0x80682EFC: aGYO_raigyo_dl
- 0x80682F08: aGYO_nigoi_dl
- 0x80682F14: aGYO_ugui_dl
- 0x80682F20: aGYO_oikawa_dl
- 0x80682F2C: aGYO_tanago_dl
- 0x80682F38: aGYO_dojyo_dl
- 0x80682F44: aGYO_wakasagi_dl
- 0x80682F50: aGYO_ayu_dl
- 0x80682F5C: aGYO_yamame_dl
- 0x80682F68: aGYO_iwana_dl
- 0x80682F74: aGYO_niji_dl
- 0x80682F80: aGYO_ito_dl
- 0x80682F8C: aGYO_sake_dl
- 0x80682F98: aGYO_kingyo_dl
- 0x80682FA4: aGYO_pirania_dl
- 0x80682FB0: aGYO_aroana_dl
- 0x80682FBC: aGYO_unagi_dl
- 0x80682FC8: aGYO_donko_dl
- 0x80682FD4: aGYO_angel_dl
- 0x80682FE0: aGYO_gupi_dl
- 0x80682FEC: aGYO_demekin_dl
- 0x80682FF8: aGYO_kaseki_dl
- 0x80683004: aGYO_zarigani_dl
- 0x80683010: aGYO_kaeru_dl
- 0x8068301C: aGYO_medaka_dl
- 0x80683028: aGYO_kurage_dl
- 0x80683034: aGYO_suzuki_dl
- 0x80683040: aGYO_tai_dl
- 0x8068304C: aGYO_ishidai_dl
- 0x80683058: aGYO_piraluku_dl
- 0x80683064: aGYO_akikan_dl
- 0x80683070: aGYO_nagagutu_dl
- 0x8068307C: aGYO_taiya_dl
- 0x80683088: aGYO_displayList
- 0x8068313C: aGYO_shadow_scale
-src/ac_handOverItem.c:
- 0x806832E4: aGYO_funa_dl
- 0x806832F0: aGYO_hera_dl
- 0x806832FC: aGYO_koi_dl
- 0x80683308: aGYO_nisiki_dl
- 0x80683314: aGYO_namazu_dl
- 0x80683320: aGYO_bass_s_dl
- 0x8068332C: aGYO_bass_m_dl
- 0x80683338: aGYO_bass_l_dl
- 0x80683344: aGYO_blue_gill_dl
- 0x80683350: aGYO_oonamazu_dl
- 0x8068335C: aGYO_raigyo_dl
- 0x80683368: aGYO_nigoi_dl
- 0x80683374: aGYO_ugui_dl
- 0x80683380: aGYO_oikawa_dl
- 0x8068338C: aGYO_tanago_dl
- 0x80683398: aGYO_dojyo_dl
- 0x806833A4: aGYO_wakasagi_dl
- 0x806833B0: aGYO_ayu_dl
- 0x806833BC: aGYO_yamame_dl
- 0x806833C8: aGYO_iwana_dl
- 0x806833D4: aGYO_niji_dl
- 0x806833E0: aGYO_ito_dl
- 0x806833EC: aGYO_sake_dl
- 0x806833F8: aGYO_kingyo_dl
- 0x80683404: aGYO_pirania_dl
- 0x80683410: aGYO_aroana_dl
- 0x8068341C: aGYO_unagi_dl
- 0x80683428: aGYO_donko_dl
- 0x80683434: aGYO_angel_dl
- 0x80683440: aGYO_gupi_dl
- 0x8068344C: aGYO_demekin_dl
- 0x80683458: aGYO_kaseki_dl
- 0x80683464: aGYO_zarigani_dl
- 0x80683470: aGYO_kaeru_dl
- 0x8068347C: aGYO_medaka_dl
- 0x80683488: aGYO_kurage_dl
- 0x80683494: aGYO_suzuki_dl
- 0x806834A0: aGYO_tai_dl
- 0x806834AC: aGYO_ishidai_dl
- 0x806834B8: aGYO_piraluku_dl
- 0x806834C4: aGYO_akikan_dl
- 0x806834D0: aGYO_nagagutu_dl
- 0x806834DC: aGYO_taiya_dl
- 0x806834E8: aGYO_displayList
- 0x8068359C: mode_DL_table
- 0x80683670: vtx_DL_table
-src/m_collision_bg.c:
- 0x80650D78: norm_table
-src/ac_my_room.c:
- 0x806874B4: furniture_quality
- 0x80688F78: norm_table
-src/ac_uki.c:
- 0x8068F898: gyoei_type
-src/bg_police_item.c:
- 0x80695B5C: mode_DL_table
- 0x80695C30: vtx_DL_table
-src/m_huusui_room_ovl.c:
- 0x8069C0F0: mMkRm_ftr_info
-src/m_mark_room_ovl.c:
- 0x8069CFFC: mMkRm_ftr_info
-src/ac_ev_dozaemon.c:
- 0x806A0658: dt_tbl
- 0x806A0674: proc_table
- 0x806A067C: init_table
-src/ac_ev_soncho2.c:
- 0x806A0DE4: dt_tbl
- 0x806A0E30: proc_table
- 0x806A0E50: init_table
-src/ac_npc_soncho.c:
- 0x806C0B68: dt_tbl
- 0x806C0B70: proc_table
- 0x806C0B74: init_table
-src/ac_npc_totakeke.c:
- 0x806C1D34: proc_table
- 0x806C1D50: dt_tbl
-src/ac_tamaire_npc0.c:
- 0x806C2154: dt_tbl
- 0x806C2184: proc_table
- 0x806C2198: init_table
-src/ac_tamaire_npc1.c:
- 0x806C222C: dt_tbl
- 0x806C2264: proc_table
- 0x806C228C: init_table
-src/ac_tokyoso_npc0.c:
- 0x806C2338: dt_tbl
- 0x806C2360: proc_table
- 0x806C237C: init_table
-src/ac_tunahiki_npc0.c:
- 0x806C2710: dt_tbl
- 0x806C271C: proc_table
- 0x806C2724: init_table
-src/ac_tunahiki_npc1.c:
- 0x806C27A8: dt_tbl
- 0x806C27BC: proc_table
- 0x806C27C8: init_table
-src/ac_gyoei.c:
- 0x806C37FC: aGYO_funa_dl
- 0x806C3808: aGYO_hera_dl
- 0x806C3814: aGYO_koi_dl
- 0x806C3820: aGYO_nisiki_dl
- 0x806C382C: aGYO_namazu_dl
- 0x806C3838: aGYO_bass_s_dl
- 0x806C3844: aGYO_bass_m_dl
- 0x806C3850: aGYO_bass_l_dl
- 0x806C385C: aGYO_blue_gill_dl
- 0x806C3868: aGYO_oonamazu_dl
- 0x806C3874: aGYO_raigyo_dl
- 0x806C3880: aGYO_nigoi_dl
- 0x806C388C: aGYO_ugui_dl
- 0x806C3898: aGYO_oikawa_dl
- 0x806C38A4: aGYO_tanago_dl
- 0x806C38B0: aGYO_dojyo_dl
- 0x806C38BC: aGYO_wakasagi_dl
- 0x806C38C8: aGYO_ayu_dl
- 0x806C38D4: aGYO_yamame_dl
- 0x806C38E0: aGYO_iwana_dl
- 0x806C38EC: aGYO_niji_dl
- 0x806C38F8: aGYO_ito_dl
- 0x806C3904: aGYO_sake_dl
- 0x806C3910: aGYO_kingyo_dl
- 0x806C391C: aGYO_pirania_dl
- 0x806C3928: aGYO_aroana_dl
- 0x806C3934: aGYO_unagi_dl
- 0x806C3940: aGYO_donko_dl
- 0x806C394C: aGYO_angel_dl
- 0x806C3958: aGYO_gupi_dl
- 0x806C3964: aGYO_demekin_dl
- 0x806C3970: aGYO_kaseki_dl
- 0x806C397C: aGYO_zarigani_dl
- 0x806C3988: aGYO_kaeru_dl
- 0x806C3994: aGYO_medaka_dl
- 0x806C39A0: aGYO_kurage_dl
- 0x806C39AC: aGYO_suzuki_dl
- 0x806C39B8: aGYO_tai_dl
- 0x806C39C4: aGYO_ishidai_dl
- 0x806C39D0: aGYO_piraluku_dl
- 0x806C39DC: aGYO_akikan_dl
- 0x806C39E8: aGYO_nagagutu_dl
- 0x806C39F4: aGYO_taiya_dl
- 0x806C3A00: aGYO_displayList
- 0x806C3B38: aGYO_texture_table
- 0x806C3B48: aGYO_2tile_texture_idx
- 0x806C3B70: aGYO_prim_f
-src/ac_gyo_kage.c:
- 0x80682C7C: aGYO_texture_table
- 0x80682C8C: aGYO_2tile_texture_idx
- 0x80682CB4: aGYO_prim_f
-src/ac_gyo_test.c:
- 0x806C3D58: gyoei_type
- 0x806C3F30: aGYO_shadow_scale
-src/ac_gyo_kaseki.c:
- 0x806C40A8: gyoei_type
-src/m_catalog_ovl.c:
- 0x806C8AB0: furniture_quality
- 0x806C9E78: paper_disp_model
- 0x806CA278: paper_disp_sen_model
-src/m_board_ovl.c:
- 0x806C7C60: paper_disp_model
- 0x806C8060: paper_disp_sen_model
- 0x806C8460: letter_color
-src/m_diary_ovl.c:
- 0x806CBA70: letter_color
-src/ef_effect_control.c:
- 0x8069BD10: profile_tbl
-src/ac_weather.c:
- 0x806D1D50: profile_tbl
-src/ac_museum_fish.c:
- 0x80684F7C: suisou_pos
-src/ef_suisou_awa.c:
- 0x806D37F0: suisou_pos
-src/dataobject.obj:
- 0x8074FE80: obj_flower_tex
- 0x807508C0: obj_flower_tex
- 0x80752700: obj_melody_pal
- 0x80753280: obj_notice_pal
- 0x80754160: obj_pstump_shadow_tex
- 0x807543E0: obj_pstump_shadow_tex
- 0x80754660: obj_pstump_shadow_tex
- 0x80754C60: obj_s_palm_young_tex
- 0x80755520: obj_s_palm_leaf_tex
- 0x80755D20: obj_s_palm_young_tex
- 0x80756720: obj_s_palm_leaf_tex
- 0x80756F20: obj_s_palm_trunk_tex
- 0x80757A20: obj_s_palm_leaf_tex
- 0x80758220: obj_s_palm_trunk_tex
- 0x80758F00: obj_s_palm_young_tex
- 0x807597C0: obj_s_palm_young_tex
- 0x8075A080: obj_s_palm_stump_tex
- 0x8075A540: obj_s_palm_stump_tex
- 0x8075AA00: obj_sightmap_pal
- 0x8075CC00: obj_item_tane_pal
- 0x8075CC20: obj_item_tane_tex
- 0x8075CCA0: obj_item_tane_v
- 0x80762F60: obj_melody_pal
- 0x80763860: obj_notice_pal
- 0x807644E0: obj_w_palm_young_tex
- 0x80764DA0: obj_w_palm_leaf_tex
- 0x807655A0: obj_w_palm_young_tex
- 0x80765FA0: obj_w_palm_leaf_tex
- 0x807667A0: obj_w_palm_trunk_tex
- 0x807672C0: obj_w_palm_leaf_tex
- 0x80767AC0: obj_w_palm_trunk_tex
- 0x807687A0: obj_w_palm_young_tex
- 0x80769060: obj_w_palm_young_tex
- 0x80769920: obj_w_palm_stump_tex
- 0x80769DE0: obj_w_palm_stump_tex
- 0x8076A2A0: obj_sightmap_pal
- 0x8076D520: obj_cedar_light_pal
- 0x807C3320: tol_sao_1_pal
- 0x807C3B40: tol_sao_2_pal
- 0x807C5D80: tol_balloon1_wire_tex_txt
- 0x807CDA80: tol_kaza_1_pal
- 0x807CDAA0: tol_kaza_1_a_tex_txt
- 0x807CDCA0: tol_kaza_1_c_tex_txt
- 0x807CDEA0: tol_kaza_1_b_tex_txt
- 0x807CE3E0: tol_kaza_2_pal
- 0x807CE400: tol_kaza_2_a_tex_txt
- 0x807CE600: tol_kaza_2_c_tex_txt
- 0x807CE800: tol_kaza_2_b_tex_txt
- 0x807CED40: tol_kaza_3_pal
- 0x807CED60: tol_kaza_3_a_tex_txt
- 0x807CEF60: tol_kaza_3_c_tex_txt
- 0x807CF160: tol_kaza_3_b_tex_txt
- 0x807CF6A0: tol_kaza_4_pal
- 0x807CF6C0: tol_kaza_4_a_tex_txt
- 0x807CF8C0: tol_kaza_4_c_tex_txt
- 0x807CFAC0: tol_kaza_4_b_tex_txt
- 0x807D0000: tol_kaza_5_pal
- 0x807D0020: tol_kaza_5_a_tex_txt
- 0x807D0220: tol_kaza_5_c_tex_txt
- 0x807D0420: tol_kaza_5_b_tex_txt
- 0x807D0960: tol_kaza_6_pal
- 0x807D0980: tol_kaza_6_a_tex_txt
- 0x807D0B80: tol_kaza_6_c_tex_txt
- 0x807D0D80: tol_kaza_6_b_tex_txt
- 0x807D12C0: tol_kaza_7_pal
- 0x807D12E0: tol_kaza_7_a_tex_txt
- 0x807D14E0: tol_kaza_7_c_tex_txt
- 0x807D16E0: tol_kaza_7_d_tex_txt
- 0x807D1760: tol_kaza_7_b_tex_txt
- 0x807D2460: tol_kaza_8_pal
- 0x807D2480: tol_kaza_8_d_tex_txt
- 0x807D2500: tol_kaza_8_a_tex_txt
- 0x807D2700: tol_kaza_8_c_tex_txt
- 0x807D2900: tol_kaza_8_e_tex_txt
- 0x807D2980: tol_kaza_8_b_tex_txt
- 0x807D3520: tol_fan1_pal
- 0x807D3540: tol_fan1_tex_txt
- 0x807D3A20: tol_fan2_pal
- 0x807D3A40: tol_fan2_tex_txt
- 0x807D3F20: tol_fan3_pal
- 0x807D3F40: tol_fan3_tex_txt
- 0x807D4420: tol_fan4_pal
- 0x807D4440: tol_fan4_tex_txt
- 0x807D4920: tol_fan5_pal
- 0x807D4940: tol_fan5_tex_txt
- 0x807D4E20: tol_fan6_pal
- 0x807D4E40: tol_fan6_tex_txt
- 0x807D5560: tol_fan7_pal
- 0x807D5580: tol_fan7_tex_txt
- 0x807D5A60: tol_fan8_pal
- 0x807D5A80: tol_fan8_tex_txt
- 0x80822488: Lfoot2_rcd_model
- 0x80889DA0: int_nog_isidai_pal
- 0x8088AAE0: int_nog_kaeru_pal
- 0x8088C8C0: act_f37_kurage_pal
- 0x8088CEE0: int_nog_medaka_pal
- 0x808900C0: int_nog_piraluku_pal
- 0x80891A60: int_nog_suzuki_pal
- 0x80892080: int_nog_tai_pal
- 0x80894520: int_nog_zarigani_pal
- 0x808AF5C0: act_m_abura_pal
- 0x808AF5E0: act_m_abura
- 0x808AF7E0: act_m_abura_v
- 0x808AFA60: act_m_akiakane_pal
- 0x808AFA80: act_m_akiakane
- 0x808AFC00: act_m_akiakane_v
- 0x808AFE40: act_m_amenbo_pal
- 0x808AFE60: act_m_amenbo_tex
- 0x808AFFE0: act_m_amenbo_v
- 0x808B0180: act_m_ari_pal
- 0x808B01A0: act_m_ari_tex
- 0x808B02A0: act_m_ari_v
- 0x808B0360: act_m_dango_pal
- 0x808B0380: act_m_dango_tex
- 0x808B0500: act_m_dango_v
- 0x808B0680: act_m_danna_pal
- 0x808B06A0: act_m_danna
- 0x808B08A0: act_m_danna_v
- 0x808B0A20: act_m_genji_h1_txt
- 0x808B0C20: act_m_genji2_v
- 0x808B0E80: act_m_ginyanma_pal
- 0x808B0EA0: act_m_ginyanma
- 0x808B1020: act_m_ginyanma_v
- 0x808B1260: act_m_gomadara_pal
- 0x808B1280: act_m_gomadara
- 0x808B1480: act_m_gomadara_v
- 0x808B1600: act_m_higurashi_pal
- 0x808B1620: act_m_higurashi
- 0x808B1820: act_m_higurashi_v
- 0x808B1AA0: act_m_hirata_pal
- 0x808B1AC0: act_m_hirata
- 0x808B1CC0: act_m_hirata_v
- 0x808B2360: act_m_ka_pal
- 0x808B2380: act_m_ka_tex
- 0x808B2500: act_m_ka_v
- 0x808B27A0: act_m_kabuto_pal
- 0x808B27C0: act_m_kabuto
- 0x808B29C0: act_m_kabuto_v
- 0x808B2B60: act_m_kamakiri_pal
- 0x808B2B80: act_m_kamakiri
- 0x808B2D80: act_m_kamakiri_v
- 0x808B2F60: act_m_kanabun_pal
- 0x808B2F80: act_m_kanabun
- 0x808B3180: act_m_kanabun_v
- 0x808B3300: act_m_kera_pal
- 0x808B3320: act_m_kera_tex
- 0x808B3420: act_m_kera_v
- 0x808B34E0: act_m_kiageha_pal
- 0x808B3500: act_m_kiageha
- 0x808B3700: act_m_kiageha_v
- 0x808B3880: act_m_kirigirisu_pal
- 0x808B38A0: act_m_kirigirisu
- 0x808B3AA0: act_m_kirigirisu_v
- 0x808B3CA0: act_m_koorogi_pal
- 0x808B3CC0: act_m_koorogi
- 0x808B3E40: act_m_koorogi_v
- 0x808B3F40: act_m_hachi_pal
- 0x808B3F60: act_m_hachi
- 0x808B4160: act_m_hachi_v
- 0x808B43E0: act_m_kumo_pal
- 0x808B4400: act_m_kumo_tex
- 0x808B4580: act_m_kumo_v
- 0x808B47A0: act_m_maimai_pal
- 0x808B47C0: act_m_maimai_tex
- 0x808B49C0: act_m_maimai_v
- 0x808B4B40: act_m_matumushi_pal
- 0x808B4B60: act_m_matumushi
- 0x808B4CE0: act_m_matumushi_v
- 0x808B4DE0: act_m_minmin_pal
- 0x808B4E00: act_m_minmin
- 0x808B5000: act_m_minmin_v
- 0x808B5280: act_m_mino_pal
- 0x808B52A0: act_m_mino_tex
- 0x808B54A0: act_m_mino_v
- 0x808B5700: act_m_miyama_pal
- 0x808B5720: act_m_miyama
- 0x808B5920: act_m_miyama_v
- 0x808B5AA0: act_m_monki_pal
- 0x808B5AC0: act_m_monki
- 0x808B5B40: act_m_monki_v
- 0x808B5CC0: act_m_monshiro_pal
- 0x808B5CE0: act_m_monshiro
- 0x808B5D60: act_m_monshiro_v
- 0x808B5EE0: act_m_nanahoshi_pal
- 0x808B5F00: act_m_nanahoshi
- 0x808B6000: act_m_nanahoshi_v
- 0x808B62C0: act_m_nokogiri_pal
- 0x808B62E0: act_m_nokogiri
- 0x808B64E0: act_m_nokogiri_v
- 0x808B6660: act_m_ohmurasaki_pal
- 0x808B6680: act_m_ohmurasaki
- 0x808B6880: act_m_ohmurasaki_v
- 0x808B6A00: act_m_okuwa_pal
- 0x808B6A20: act_m_okuwa
- 0x808B6C20: act_m_okuwa_v
- 0x808B6DA0: act_m_oniyanma_pal
- 0x808B6DC0: act_m_oniyanma
- 0x808B6F40: act_m_oniyanma_v
- 0x808B7180: act_m_shiokara_pal
- 0x808B71A0: act_m_shiokara
- 0x808B7320: act_m_shiokara_v
- 0x808B7560: act_m_suzumushi_pal
- 0x808B7580: act_m_suzumushi
- 0x808B7780: act_m_suzumushi_v
- 0x808B78E0: act_m_syouryou_pal
- 0x808B7900: act_m_syouryou
- 0x808B7B00: act_m_syouryou_v
- 0x808B7CE0: act_m_tamamushi_pal
- 0x808B7D00: act_m_tamamushi
- 0x808B7F00: act_m_tamamushi_v
- 0x808B8080: act_m_tentou_pal
- 0x808B80A0: act_m_tentou
- 0x808B81A0: act_m_tentou_v
- 0x808B8460: act_m_tonosama_pal
- 0x808B8480: act_m_tonosama
- 0x808B8680: act_m_tonosama_v
- 0x808B8860: act_m_tukutuku_pal
- 0x808B8880: act_m_tukutuku
- 0x808B8A80: act_m_tukutuku_v
- 0x808F2CB8: Lfoot2_rcd_model
- 0x80905000: rom_myhome_pal
- 0x80905020: rom_myhome_window_tex
- 0x80905220: rom_myhome_enter2_tex
- 0x80906B00: rom_myhome_pal
- 0x80906B20: rom_myhome_window_tex
- 0x80908200: rom_myhome_pal
- 0x80908220: rom_myhome_window_tex
- 0x80908420: rom_myhome_enter2_tex
- 0x80909FC0: rom_myhome_pal
- 0x80909FE0: rom_myhome_window_tex
- 0x8090A1E0: rom_myhome_enter2_tex
- 0x8090BC60: rom_myhome_pal
- 0x8090BC80: rom_myhome_window_tex
- 0x8090BE80: rom_myhome_enter2_tex
- 0x8090D940: rom_myhome_pal
- 0x8090D960: rom_myhome_window_tex
- 0x8090DB60: rom_myhome_enter2_tex
- 0x8090EF60: rom_myhome_pal
- 0x8090F780: rom_myhome_enter2_tex
- 0x809197A0: npc_1_a_r10_tex_index
- 0x809197AC: npc_1_a_r11_tex_index
- 0x8091A388: npc_1_a_r10_tex_index
- 0x8091A394: npc_1_a_r11_tex_index
- 0x8091BEE4: lfoot_se_chk_pat
- 0x8091BEE8: lfoot_se_dt
- 0x8091BEF0: rfoot_se_chk_pat
- 0x8091BEF4: rfoot_se_dt
- 0x8091BEFC: se_dt_tbl
- 0x80920F58: other_se_chk_pat
- 0x80920F5C: other_se_dt
- 0x80920F68: se_dt_tbl
- 0x80923564: lfoot_se_chk_pat
- 0x80923574: lfoot_se_dt
- 0x8092357C: rfoot_se_chk_pat
- 0x80923588: rfoot_se_dt
- 0x80923590: se_dt_tbl
- 0x80923A2C: other_se_chk_pat
- 0x80923A34: other_se_dt
- 0x80923A40: se_dt_tbl
- 0x80924200: other_se_chk_pat
- 0x80924214: other_se_dt
- 0x80924220: se_dt_tbl
- 0x80924D10: other_se_chk_pat
- 0x80924D18: other_se_dt
- 0x80924D24: se_dt_tbl
- 0x80925240: other_se_chk_pat
- 0x80925244: other_se_dt
- 0x80925250: se_dt_tbl
- 0x80928518: other_se_chk_pat
- 0x80928528: other_se_dt
- 0x80928534: se_dt_tbl
- 0x8092E0C8: lfoot_se_chk_pat
- 0x8092E0CC: lfoot_se_dt
- 0x8092E0D4: rfoot_se_chk_pat
- 0x8092E0D8: rfoot_se_dt
- 0x8092E0E0: se_dt_tbl
- 0x8093477C: other_se_chk_pat
- 0x80934780: other_se_dt
- 0x8093478C: se_dt_tbl
- 0x80936560: other_se_dt
- 0x80936578: se_dt_tbl
- 0x80937CF8: npc_1_muka10_tex_index
- 0x80937D08: npc_1_muka11_tex_index
- 0x8093DE2C: lfoot_se_chk_pat
- 0x8093DE34: lfoot_se_dt
- 0x8093DE3C: rfoot_se_chk_pat
- 0x8093DE44: rfoot_se_dt
- 0x8093DE54: other_se_dt
- 0x8093DE6C: se_dt_tbl
- 0x8093F1E0: other_se_chk_pat
- 0x8093F1E4: other_se_dt
- 0x8093F1F0: se_dt_tbl
- 0x80943AF0: other_se_chk_pat
- 0x80943AF4: other_se_dt
- 0x80943B00: se_dt_tbl
- 0x809440B4: other_se_chk_pat
- 0x809440B8: other_se_dt
- 0x809440C4: se_dt_tbl
- 0x809459F8: lfoot_se_chk_pat
- 0x809459FC: lfoot_se_dt
- 0x80945A04: rfoot_se_chk_pat
- 0x80945A08: rfoot_se_dt
- 0x80945A10: se_dt_tbl
- 0x809461EC: feel_eff_set
- 0x80946A14: feel_eff_set
- 0x80946A18: feel_eff
- 0x809470C0: feel_eff_set
- 0x809470C4: feel_eff
- 0x809475CC: feel_eff_set
- 0x809475D4: feel_eff
- 0x80947AC0: lfoot_se_chk_pat
- 0x80947AC4: lfoot_se_dt
- 0x80947ACC: rfoot_se_chk_pat
- 0x80947AD0: rfoot_se_dt
- 0x80947AD8: se_dt_tbl
- 0x80947FC8: feel_eff_set
- 0x80947FCC: feel_eff
- 0x80947FD4: lfoot_se_chk_pat
- 0x80947FD8: lfoot_se_dt
- 0x80947FE0: rfoot_se_chk_pat
- 0x80947FE4: rfoot_se_dt
- 0x80947FEC: se_dt_tbl
- 0x809486B8: feel_eff_set
- 0x809486BC: feel_eff
- 0x809486C4: lfoot_se_chk_pat
- 0x809486C8: lfoot_se_dt
- 0x809486D0: rfoot_se_chk_pat
- 0x809486D4: rfoot_se_dt
- 0x809486DC: se_dt_tbl
- 0x80948D30: lfoot_se_chk_pat
- 0x80948D34: lfoot_se_dt
- 0x80948D3C: rfoot_se_chk_pat
- 0x80948D40: rfoot_se_dt
- 0x80948D48: se_dt_tbl
- 0x80949490: npc_1_muka10_tex_index
- 0x809494A0: npc_1_muka11_tex_index
- 0x809617A8: lfoot_se_chk_pat
- 0x809617AC: lfoot_se_dt
- 0x809617B4: se_dt_tbl
- 0x8096B960: lfoot_se_chk_pat
- 0x8096B968: lfoot_se_dt
- 0x8096B970: rfoot_se_chk_pat
- 0x8096B978: rfoot_se_dt
- 0x8096B980: se_dt_tbl
- 0x809DACE0: obj_item_apple_pal
- 0x809DAD00: obj_item_apple_tex
- 0x809DAF00: obj_item_apple_v
- 0x809DBEB8: obj_item_fish_pal
- 0x809DBED8: obj_item_fish_tex
- 0x809DC1E0: obj_item_fossil_pal
- 0x809DC400: obj_item_fossil_v
- 0x809DCB60: obj_item_kabu_pal
- 0x809DCB80: obj_item_kabu_tex
- 0x809DCD80: obj_item_kabu_v
- 0x809DD1A0: tol_kaza_1_pal
- 0x809DD1C0: tol_kaza_1_b_tex_txt
- 0x809DD2C0: tol_kaza_1_a_tex_txt
- 0x809DD4C0: tol_kaza_1_c_tex_txt
- 0x809DDB20: tol_kaza_2_pal
- 0x809DDB40: tol_kaza_2_a_tex_txt
- 0x809DDD40: tol_kaza_2_c_tex_txt
- 0x809DDF40: tol_kaza_2_b_tex_txt
- 0x809DE4A0: tol_kaza_3_pal
- 0x809DE4C0: tol_kaza_3_a_tex_txt
- 0x809DE6C0: tol_kaza_3_c_tex_txt
- 0x809DE8C0: tol_kaza_3_b_tex_txt
- 0x809DEE20: tol_kaza_4_pal
- 0x809DEE40: tol_kaza_4_a_tex_txt
- 0x809DF040: tol_kaza_4_c_tex_txt
- 0x809DF240: tol_kaza_4_b_tex_txt
- 0x809DF7A0: tol_kaza_5_pal
- 0x809DF7C0: tol_kaza_5_a_tex_txt
- 0x809DF9C0: tol_kaza_5_c_tex_txt
- 0x809DFBC0: tol_kaza_5_b_tex_txt
- 0x809E0120: tol_kaza_6_pal
- 0x809E0140: tol_kaza_6_a_tex_txt
- 0x809E0340: tol_kaza_6_c_tex_txt
- 0x809E0540: tol_kaza_6_b_tex_txt
- 0x809E0AA0: tol_kaza_7_pal
- 0x809E0AC0: tol_kaza_7_a_tex_txt
- 0x809E0CC0: tol_kaza_7_c_tex_txt
- 0x809E0EC0: tol_kaza_7_d_tex_txt
- 0x809E0F40: tol_kaza_7_b_tex_txt
- 0x809E1C00: tol_kaza_8_pal
- 0x809E1C20: tol_kaza_8_d_tex_txt
- 0x809E1CA0: tol_kaza_8_a_tex_txt
- 0x809E1EA0: tol_kaza_8_c_tex_txt
- 0x809E20A0: tol_kaza_8_e_tex_txt
- 0x809E2120: tol_kaza_8_b_tex_txt
- 0x809E2C20: obj_item_matutake_pal
- 0x809E2C40: obj_item_matutake_tex
- 0x809E2E40: obj_item_matutake_v
- 0x809E3DA0: obj_item_peach_pal
- 0x809E3DC0: obj_item_orange_tex
- 0x809E3FC0: obj_item_orange_v
- 0x809E6D20: obj_shop_net2_pal
- 0x809E7160: obj_shop_net2_pal
- 0x809E7520: obj_shop_rod2_pal
- 0x809E79C0: obj_shop_shovel2_pal
- 0x809E7E00: obj_shop_akican_pal
- 0x809E8400: obj_shop_akican_pal
- 0x809E8F20: tol_fan1_pal
- 0x809E8F40: tol_fan1_tex_txt
- 0x809E9440: tol_fan2_pal
- 0x809E9460: tol_fan2_tex_txt
- 0x809E9960: tol_fan3_pal
- 0x809E9980: tol_fan3_tex_txt
- 0x809E9E80: tol_fan4_pal
- 0x809E9EA0: tol_fan4_tex_txt
- 0x809EA3A0: tol_fan5_pal
- 0x809EA3C0: tol_fan5_tex_txt
- 0x809EA8C0: tol_fan6_pal
- 0x809EA8E0: tol_fan6_tex_txt
- 0x809EADE0: tol_fan7_pal
- 0x809EAE00: tol_fan7_tex_txt
- 0x809EB300: tol_fan8_pal
- 0x809EB320: tol_fan8_tex_txt
- 0x809ECDC0: tol_umb02_pal
- 0x809ECDE0: tol_umb02_kasa2_tex_txt
- 0x809ECFE0: tol_umb02_kasa1_tex_txt
- 0x809ED1E0: tol_umb02_tuka_tex_txt
- 0x809EEB80: tol_umb_05_pal
- 0x809EEBA0: tol_umb_05_kasa_tex_txt
- 0x809EEDA0: tol_umb_05_tuka_tex_txt
- 0x809EFEC0: tol_umb07_pal
- 0x809EFEE0: tol_umb07_kasa2_tex_txt
- 0x809EFFE0: tol_umb07_kasa1_tex_txt
- 0x809F03E0: tol_umb07_tuka_tex_txt
- 0x809F0940: tol_umb08_pal
- 0x809F0960: tol_umb08_kasa1_tex_txt
- 0x809F0B60: tol_umb08_kasa2_tex_txt
- 0x809F0BA0: tol_umb08_tuka_tex_txt
- 0x809F1220: tol_umb09_pal
- 0x809F1240: tol_umb09_kasa1_tex_txt
- 0x809F1440: tol_umb09_kasa2_tex_txt
- 0x809F1480: tol_umb09_tuka_tex_txt
- 0x809F1B00: tol_umb10_pal
- 0x809F1B20: tol_umb10_kasa1_tex_txt
- 0x809F1D20: tol_umb10_kasa2_tex_txt
- 0x809F1D60: tol_umb10_tuka_tex_txt
- 0x809F23E0: tol_umb11_pal
- 0x809F2400: tol_umb11_kasa1_tex_txt
- 0x809F2600: tol_umb11_kasa2_tex_txt
- 0x809F2640: tol_umb11_tuka_tex_txt
- 0x809F2CC0: tol_umb12_pal
- 0x809F2CE0: tol_umb12_kasa1_tex_txt
- 0x809F30E0: tol_umb12_kasa2_tex_txt
- 0x809F3120: tol_umb12_tuka_tex_txt
- 0x809F37A0: tol_umb13_pal
- 0x809F37C0: tol_umb13_kasa1_tex_txt
- 0x809F39C0: tol_umb13_kasa2_tex_txt
- 0x809F3A00: tol_umb13_tuka_tex_txt
- 0x809F4080: tol_umb_14_pal
- 0x809F40A0: tol_umb_14_kasa_tex_txt
- 0x809F42A0: tol_umb_14_tuka_tex_txt
- 0x809F64E0: tol_umb18_pal
- 0x809F6500: tol_umb18_kasa1_tex_txt
- 0x809F6600: tol_umb18_kasa2_tex_txt
- 0x809F6680: tol_umb18_tuka_tex_txt
- 0x809F8900: tol_umb_22_pal
- 0x809FA740: tol_umb_25_pal
- 0x809FA760: tol_umb_25_ya_tex_txt
- 0x809FA960: tol_umb_25_kasa_tex_txt
- 0x809FD4A0: obj_shop_umb_30_pal
- 0x809FE5E0: obj_shop_umb_32_pal
- 0x809FE600: obj_shop_umb_32_tuka1_tex_txt
- 0x809FE800: obj_shop_umb_32_kasa1_tex_txt
- 0x809FEE40: tol_umb_w_tuka_pal
- 0x809FEE60: tol_umb_w_tuka_tex_txt
- 0x80A037A0: fkm_win_fuki2_tex
- 0x80A041A0: fri_win_bell_tex
- 0x80A042A0: fri_win_cash_tex
- 0x80A04CA0: fkm_win_w4_tex
- 0x80A04D20: fkm_win_w3_tex
- 0x80A04F20: fkm_win_w2_tex
- 0x80A05120: fkm_win_w1_tex
- 0x80A0AA60: mra_win_fuki_tex
- 0x80A0DC80: lat_fusen_TXT
- 0x80A0DF20: ctl_win_tagu3_tex
- 0x80A0E1C0: inv_mwin_nwaku_tex
- 0x80A107C0: ctl_win_tagu2_tex
- 0x80A109C0: ctl_win_waku1_tex
- 0x80A111C0: ctl_win_waku2_tex
- 0x80A16E40: ctl_att_w1_tex
- 0x80A17240: ctl_att_w2_tex
- 0x80A17640: ctl_att_w3_tex
- 0x80A17A40: ctl_att_w4_tex
- 0x80A17E40: ctl_att_w5_tex
- 0x80A18240: ctl_att_w6_tex
- 0x80A18B00: lat_sousa_2b1_tex
- 0x80A19100: std_tex
- 0x80A1B900: lat_tegami_b3_tex
- 0x80A1D0C0: lat_sousa_2b1_tex
- 0x80A1DAC0: lat_tegami_b3_tex
- 0x80A32D60: yaji
- 0x80A33460: ctl_win_tagu2_tex
- 0x80A355A0: inv_mwin_3Dma_tex
- 0x80A35DA0: fri_win_bell_tex
- 0x80A3D120: ctl_win_tagu3_tex
- 0x80A3D460: inv_original_futa2_tex
- 0x80A3DF60: sav_win_waku_tex
- 0x80A40160: ctl_win_tagu2_tex
- 0x80A40360: ctl_win_waku1_tex
- 0x80A40B60: ctl_win_waku2_tex
- 0x80A51A00: kei_win_quit_tex
- 0x80A533A0: kei_win_quit_tex
- 0x80A535A0: lat_tegami_b2_tex
- 0x80A53FA0: lat_tegami_b3_tex
- 0x80A547A0: kei_win_2b1_tex_rgb_i4
- 0x80A54AA0: kei_win_b2_model
- 0x80A54B20: kei_win_amojiT_model
- 0x80A54BE0: lat_letter01_pal
- 0x80A54D00: lat_letter01_04_tex
- 0x80A54D80: lat_tegami_fusen_tex
- 0x80A580A0: lat_letter01_pal
- 0x80A580C0: lat_letter01_04_tex
- 0x80A58140: lat_tegami_fusen_tex
- 0x80A58320: lat_letter01_pal
- 0x80A58340: lat_letter01_04_tex
- 0x80A583C0: lat_tegami_fusen_tex
- 0x80A612C0: kai_sousa_button3_tex
- 0x80A70D80: sav_win_waku_tex
- 0x80A72280: inv_original_futa2_tex
- 0x80A74510: lat_fusen_TXT
- 0x80A76D90: inv_mwin_3Dma_tex
- 0x80A7AA00: inv_mwin_nwaku_tex
- 0x80A7E500: inv_mwin_3Dma_tex
- 0x80A814E0: inv_mushi_w5_tex_rgb_ci4_pal
- 0x80A81500: inv_mushi_w1_tex_rgb_ci4_pal
- 0x80A81520: inv_mushi_w2_tex_rgb_ci4_pal
- 0x80A81540: inv_mushi_w3_tex_rgb_ci4_pal
- 0x80A81560: inv_mushi_w4_tex_rgb_ci4_pal
- 0x80A81580: inv_mushi_w6_tex_rgb_ci4_pal
- 0x80A815A0: inv_mushi_w7_tex_rgb_ci4_pal
- 0x80A815C0: inv_mwin_nwaku_tex
- 0x80A81BC0: inv_mwin_shirushi_tex
- 0x80A81FC0: inv_mushi_aw1_tex
- 0x80A821C0: inv_mushi_aw2_tex
- 0x80A825C0: inv_mushi_aw3_tex
- 0x80A829C0: inv_mushi_aw4_tex
- 0x80A833C0: inv_mushi_aw7_tex
- 0x80A83CC0: inv_mushi_w5_tex_rgb_ci4
- 0x80A83D40: inv_mushi_w1_tex_rgb_ci4
- 0x80A83F40: inv_mushi_w2_tex_rgb_ci4
- 0x80A84340: inv_mushi_w3_tex_rgb_ci4
- 0x80A84740: inv_mushi_w4_tex_rgb_ci4
- 0x80A84940: inv_mushi_w6_tex_rgb_ci4
- 0x80A84D40: inv_mushi_w7_tex_rgb_ci4
- 0x80A860E0: inv_mwin_nwaku_tex
- 0x80A879E0: inv_mwin_3Dma_tex
- 0x80A88DE0: inv_mwin_aw5_tex
- 0x80A8C280: inv_mushi_w5_tex_rgb_ci4_pal
- 0x80A8C2C0: inv_mushi_w1_tex_rgb_ci4_pal
- 0x80A8C2E0: inv_mushi_w2_tex_rgb_ci4_pal
- 0x80A8C300: inv_mushi_w3_tex_rgb_ci4_pal
- 0x80A8C320: inv_mushi_w4_tex_rgb_ci4_pal
- 0x80A8C340: inv_mushi_w6_tex_rgb_ci4_pal
- 0x80A8C360: inv_mushi_w7_tex_rgb_ci4_pal
- 0x80A8C380: inv_mwin_nwaku_tex
- 0x80A8C980: inv_mwin_shirushi_tex
- 0x80A8CD80: inv_mushi_aw1_tex
- 0x80A8CF80: inv_mushi_aw2_tex
- 0x80A8D380: inv_mushi_aw3_tex
- 0x80A8D780: inv_mushi_aw4_tex
- 0x80A8E180: inv_mushi_aw7_tex
- 0x80A8EF80: inv_mwin_aw5_tex
- 0x80A8F000: inv_mushi_w5_tex_rgb_ci4
- 0x80A8F280: inv_mushi_w1_tex_rgb_ci4
- 0x80A8F480: inv_mushi_w2_tex_rgb_ci4
- 0x80A8F880: inv_mushi_w3_tex_rgb_ci4
- 0x80A8FC80: inv_mushi_w4_tex_rgb_ci4
- 0x80A8FE80: inv_mushi_w6_tex_rgb_ci4
- 0x80A90280: inv_mushi_w7_tex_rgb_ci4
- 0x80A915D0: tol_sao_1_pal
- 0x80A915F0: tol_sao_1_uki1_tex_txt
- 0x80A916F0: tol_uki_1_v
- 0x80A91990: tol_uki_2_v
- 0x80A91B10: tol_sao_2_pal
- 0x80A91B30: tol_sao_2_uki1_tex_txt
- 0x80AAA120: nam_win_fuki_tex
- 0x80AB23C0: mra_win_w1_tex
- 0x80AB27C0: mra_win_w2_tex
- 0x80AB2BC0: mra_win_w3_tex
- 0x80AB2DC0: mra_win_w4_tex
- 0x80AB31C0: mra_win_w5_tex
- 0x80AB35C0: mra_win_fuki_tex
- 0x80AB8820: nam_win_fuki_tex
- 0x80ABCE20: req_win_w1_tex
- 0x80ABD220: req_win_w2_tex
- 0x80ABD620: req_win_w3_tex
- 0x80ABEC20: req_win_w4_tex
- 0x80AC0A20: req_win_w1_tex
- 0x80AC0E20: req_win_w2_tex
- 0x80AC1220: req_win_w3_tex
- 0x80AC1CA0: req_win_w4_tex
- 0x80AC36E0: mra_win_w1_tex
- 0x80AC3AE0: mra_win_w2_tex
- 0x80AC3EE0: mra_win_w3_tex
- 0x80AC40E0: mra_win_w4_tex
- 0x80AC44E0: mra_win_w5_tex
- 0x80AC48E0: mra_win_fuki_tex
- 0x80AD3DC0: lat_letter01_pal
- 0x80AD4B80: lat_letter01_04_tex
- 0x80AD4C00: lat_tegami_fusen_tex
- 0x80AEF740: onp_hyouji_v
- 0x80AF1300: onp_hyouji_v
- # 0x80AF14C0: onp_win_rmoji_model
- 0x80AF68A8: onp_win_rmoji_model_1
- 0x80AF6B40: inv_mwin_nwaku_tex
- 0x80AFBB60: kan_hyouji_v
- 0x80AFC700: kan_hyouji_v
- 0x80B084A0: inv_mwin_nwaku_tex
- 0x80B0D6A0: sav_win_waku_tex
- 0x80B0D8A0: inv_original_futa2_tex
- 0x80B11820: kei_win_quit_tex
- 0x80B12220: std_tex
- 0x80B12A20: yaji
- 0x80B12AA0: ct_tex
- 0x80B18EA0: lat_tegami_b2_tex
- 0x80B196A0: lat_tegami_b3_tex
- 0x80B19EA0: kei_win_2b1_tex_rgb_i4
- 0x80B1A418: kei_win_b2_model
- 0x80B1A548: kei_win_amojiT_model
- 0x80B1DB80: fkm_win_fuki2_tex
- 0x80B21680: kai_sousa_button3_tex
- 0x80B21D60: fkm_win_fuki2_tex
- 0x80B22E60: fkm_win_w4_tex
- 0x80B22EE0: fkm_win_w3_tex
- 0x80B230E0: fkm_win_w2_tex
- 0x80B232E0: fkm_win_w1_tex
- 0x80B25700: fkm_win_fuki2_tex
- 0x80B26100: fri_win_cash_tex
- 0x80B26300: fri_win_bell_tex
- 0x80B26C80: fkm_win_w4_tex
- 0x80B26D00: fkm_win_w3_tex
- 0x80B26F00: fkm_win_w2_tex
- 0x80B27100: fkm_win_w1_tex
- 0x80B29AE0: sen_itemw_yaji_tex
- 0x80B29B60: sen_itemw_yaji2_tex
- 0x80B2A280: sen_win_yaji2_tex
- 0x80B2AB80: sen_itemw_yaji2_tex
- 0x80B2AE00: sen_itemw_yaji_tex
- 0x80B2AE80: sen_item2_yaji_tex
- 0x80B2E320: sen_win_yaji2_tex
- 0x80B2E420: sen_item2_yaji_tex
- 0x80B36B00: att_win_waku1_tex
- 0x80B36F00: att_win_waku2_tex
- 0x80B37300: att_win_waku3_tex
- 0x80B37700: att_win_waku4_tex
- 0x80B37B00: att_win_waku5_tex
- 0x80B37F00: att_win_waku6_tex
- 0x80B38500: act_daruma_pal
- 0x80B38A88: act_daruma_pal
- 0x80B4E100: obj_w_house3_a_pal
- 0x80B4EC00: obj_w_kamakura_pal
- 0x80B4EC20: obj_s_shrine_pal
- 0x80B4EC40: obj_w_shrine_pal
- 0x80B4ED80: obj_e_turi_pal
- 0x80B70860: obj_fall_rainbow_1_tex_rgb_rgba16
- 0x80B70960: obj_fall_rainbowA_tex_rgb_i4
- 0x80B709E0: obj_fallCA1_tex_rgb_ia8
- 0x80B70DE0: obj_fallA2_tex_rgb_i4
- 0x80B70FE0: obj_fallA3_tex_rgb_i4
- 0x80B71060: obj_fallC2_tex_rgb_i4
- 0x80B71260: obj_fallC3_tex_rgb_i4
- 0x80B71AE0: obj_fall_rainbow_1_tex_rgb_rgba16
- 0x80B71BE0: obj_fall_rainbowA_tex_rgb_i4
- 0x80B71C60: obj_fallCA1_tex_rgb_ia8
- 0x80B72060: obj_fallA2_tex_rgb_i4
- 0x80B72260: obj_fallA3_tex_rgb_i4
- 0x80B722E0: obj_fallC2_tex_rgb_i4
- 0x80B724E0: obj_fallC3_tex_rgb_i4
- 0x80B82BC0: obj_w_kamakura_pal
- 0x80B88D00: obj_e_mikanbox_v
- 0x80BA35E0: obj_w_house3_a_pal
- 0x80BDC2A0: obj_s_shrine_pal
- 0x80BE0960: obj_w_shrine_pal
- 0x80C03EC0: obj_e_turi_pal
- 0x80C16E60: ef_tamaire01_r_pal
- 0x80C17080: ef_tamaire01_r_v
- 0x80C18860: tol_umb02_pal
- 0x80C18880: tol_umb02_kasa2_tex_txt
- 0x80C18A80: tol_umb02_kasa1_tex_txt
- 0x80C18C80: tol_umb02_tuka_tex_txt
- 0x80C1A6C0: tol_umb_05_pal
- 0x80C1A6E0: tol_umb_05_kasa_tex_txt
- 0x80C1A8E0: tol_umb_05_tuka_tex_txt
- 0x80C1BA80: tol_umb07_pal
- 0x80C1BAA0: tol_umb07_kasa2_tex_txt
- 0x80C1BBA0: tol_umb07_kasa1_tex_txt
- 0x80C1BFA0: tol_umb07_tuka_tex_txt
- 0x80C1C520: tol_umb08_pal
- 0x80C1C540: tol_umb08_kasa1_tex_txt
- 0x80C1C740: tol_umb08_kasa2_tex_txt
- 0x80C1C780: tol_umb08_tuka_tex_txt
- 0x80C1CE20: tol_umb09_pal
- 0x80C1CE40: tol_umb09_kasa1_tex_txt
- 0x80C1D040: tol_umb09_kasa2_tex_txt
- 0x80C1D080: tol_umb09_tuka_tex_txt
- 0x80C1D720: tol_umb10_pal
- 0x80C1D740: tol_umb10_kasa1_tex_txt
- 0x80C1D940: tol_umb10_kasa2_tex_txt
- 0x80C1D980: tol_umb10_tuka_tex_txt
- 0x80C1E020: tol_umb11_pal
- 0x80C1E040: tol_umb11_kasa1_tex_txt
- 0x80C1E240: tol_umb11_kasa2_tex_txt
- 0x80C1E280: tol_umb11_tuka_tex_txt
- 0x80C1E920: tol_umb12_pal
- 0x80C1E940: tol_umb12_kasa1_tex_txt
- 0x80C1ED40: tol_umb12_kasa2_tex_txt
- 0x80C1ED80: tol_umb12_tuka_tex_txt
- 0x80C1F420: tol_umb13_pal
- 0x80C1F440: tol_umb13_kasa1_tex_txt
- 0x80C1F640: tol_umb13_kasa2_tex_txt
- 0x80C1F680: tol_umb13_tuka_tex_txt
- 0x80C1FD20: tol_umb_14_pal
- 0x80C1FD40: tol_umb_14_kasa_tex_txt
- 0x80C1FF40: tol_umb_14_tuka_tex_txt
- 0x80C22240: tol_umb18_pal
- 0x80C22260: tol_umb18_kasa1_tex_txt
- 0x80C22360: tol_umb18_kasa2_tex_txt
- 0x80C223A0: tol_umb18_tuka_tex_txt
- 0x80C246C0: tol_umb_22_pal
- 0x80C26360: tol_umb_25_pal
- 0x80C26380: tol_umb_25_kasa_tex_txt
- 0x80C26580: tol_umb_25_ya_tex_txt
- 0x80C29180: obj_shop_umb_30_pal
- 0x80C2A320: obj_shop_umb_32_pal
- 0x80C2A340: obj_shop_umb_32_kasa1_tex_txt
- 0x80C2A540: obj_shop_umb_32_tuka1_tex_txt
- 0x80C2ABC0: tol_umb_w_tuka_pal
- 0x80C2ABE0: tol_umb_w_tuka_tex_txt
- 0x80C33F20: logo_us_pal
- 0x80C35940: logo_us_i_tex_txt
- 0x80C35F40: logo_us_n_tex_txt
- 0x80C3C040: logo_us_pal
- 0x80C3C060: logo_us_s_tex_txt
- 0x80C3EC60: logo_us_pal
- 0x80C3F880: logo_us_n_tex_txt
- 0x80C40080: logo_us_i_tex_txt
- 0x80C40680: logo_us_s_tex_txt
- 0x80C49C00: rom_train_3_pal
- 0x80C4EF20: tol_sao_1_pal
- 0x80C4EF40: tol_sao_1_uki1_tex_txt
- 0x80C4F040: tol_uki_1_v
- 0x80C4F260: tol_sao_2_pal
- 0x80C4F280: tol_sao_2_uki1_tex_txt
- 0x80C4F380: tol_uki_2_v
- 0x80C56940: int_ari_nagaisu1_pal
- 0x80C58A60: int_ari_nagaisu1_pal
- 0x80C6B908: grd_s_grass_tex
- 0x80C6D498: grd_s_grass_tex
- 0x80C7D980: int_din_bront_pal
- 0x80C7E700: int_din_bront_pal
- 0x80C7EA20: int_din_bront_pal
- 0x80C7F620: int_din_bront_pal
- 0x80C811E0: int_din_hutaba_pal
- 0x80C81E20: int_din_hutaba_pal
- 0x80C82140: int_din_hutaba_pal
- 0x80C82E40: int_din_hutaba_pal
- 0x80C836C0: int_din_mammoth_pal
- 0x80C84540: int_din_mammoth_pal
- 0x80C84860: int_din_mammoth_pal
- 0x80C85460: int_din_ptera_pal
- 0x80C85600: int_din_ptera_baceA_tex
- 0x80C85800: int_din_ptera_poleA_tex
- 0x80C85880: int_din_ptera_Lwing_tex
- 0x80C85CC0: int_din_ptera_pal
- 0x80C85CE0: int_din_ptera_baceA_tex
- 0x80C85EE0: int_din_ptera_poleA_tex
- 0x80C860E0: int_din_ptera_Lwing_tex
- 0x80C86540: int_din_ptera_pal
- 0x80C86860: int_din_ptera_pal
- 0x80C87680: int_din_stego_pal
- 0x80C87B20: int_din_stego_fin_tex
- 0x80C88420: int_din_stego_pal
- 0x80C88440: int_din_stego_dummy_tex
- 0x80C88740: int_din_stego_pal
- 0x80C88760: int_din_stego_dummy_tex
- 0x80C88A60: int_din_stego_pal
- 0x80C89420: int_din_stego_pal
- 0x80C89440: int_din_stego_fin_tex
- 0x80C8A900: int_din_trex_pal
- 0x80C8B700: int_din_trex_pal
- 0x80C8BA20: int_din_trex_pal
- 0x80C8C600: int_din_trex_pal
- 0x80C8CFE0: int_din_trikera_pal
- 0x80C8DD40: int_din_trikera_pal
- 0x80C8E060: int_din_trikera_pal
- 0x80C8EC80: int_din_trikera_pal
- 0x80CA4B60: obj_cedar_light_pal
- 0x80CAD4A0: ef_ase01_0
- 0x80CAD640: ef_ase01_0
- 0x80CB97E0: ef_moon01_1_int_i4
- 0x80CBAAC0: ef_moon01_1_int_i4
- 0x80CC06C0: ef_tamaire01_r_pal
- 0x80CC08E0: ef_tamaire01_r_v
- 0x80CC6D00: int_sum_aroana_pal
- 0x80CC7540: int_sum_ayu_pal
- 0x80CC7560: act_mus_ayu_body_txt
- 0x80CC7E60: int_sum_bass_pal
- 0x80CC8600: int_sum_bassl_pal
- 0x80CC8EA0: int_sum_bassm_pal
- 0x80CC9740: int_sum_demekin_pal
- 0x80CCA260: int_sum_dojyo_pal
- 0x80CCA960: int_sum_donko_pal
- 0x80CCB100: int_sum_funa_pal
- 0x80CCB880: int_sum_gill_pal
- 0x80CCC000: int_sum_gupi_pal
- 0x80CCC7C0: int_sum_hera_pal
- 0x80CCD0C0: int_nog_isidai_pal
- 0x80CCDA00: int_sum_ito_pal
- 0x80CCE500: int_sum_iwana_pal
- 0x80CCEE00: act_mus_kaeru_a1_body_tex_txt
- 0x80CCF600: act_mus_kaeru_a1_foot_tex_txt
- 0x80CD08A0: int_sum_kaseki_pal
- 0x80CD14C0: int_sum_kingyo_pal
- 0x80CD1F60: int_sum_koi_pal
- 0x80CD2760: act_f37_kurage_pal
- 0x80CD2EA0: int_nog_medaka_pal
- 0x80CD34A0: int_sum_namazu_pal
- 0x80CD3FC0: int_sum_nigoi_pal
- 0x80CD48E0: int_sum_niji_pal
- 0x80CD51C0: int_sum_nisiki_pal
- 0x80CD5AA0: int_sum_oikawa_pal
- 0x80CD6220: int_sum_oonamazu_pal
- 0x80CD6EE0: int_nog_piraluku_pal
- 0x80CD7C60: int_sum_pirania_pal
- 0x80CD8400: int_sum_raigyo_pal
- 0x80CD8D40: int_sum_sake_pal
- 0x80CD9640: int_nog_suzuki_pal
- 0x80CD9F00: int_nog_tai_pal
- 0x80CDA7C0: int_sum_tanago_pal
- 0x80CDAF00: int_sum_ugui_pal
- 0x80CDB600: int_sum_unagi_pal
- 0x80CDC500: int_sum_wakasagi_pal
- 0x80CDCBE0: int_sum_yamame_pal
- 0x80CE2580: obj_museum5_kusa1_tex_txt
- 0x80CE3580: obj_museum5_kusa1_tex_txt
- 0x80E61560: int_iid_diary
- 0x80E617E0: int_iid_diary_esaki_tex
- 0x80E62440: int_iid_diary
- 0x80E626C0: int_iid_diary_esaki_tex
- 0x80E8A4C0: int_ike_kama_danro01_pal
- 0x80E8AB60: int_ike_kama_danrotree1_tex_txt
- 0x80E8F8A0: int_ike_prores_ling01_pal
- 0x80E8F8C0: int_ike_prores_ling01_lope2_tex
- 0x80E8F940: int_ike_prores_ling01_lope_tex
- 0x80E8FA40: int_ike_prores_ling01_pole_tex
- 0x80E8FAC0: int_ike_prores_ling01_floor_tex
- 0x80E8FCC0: int_ike_prores_ling01_floorside_tex
- 0x80E8FD40: int_ike_prores_ling01_pole2_tex
- 0x80E8FDC0: int_ike_prores_ling01_base_tex
- 0x80E904C0: int_ike_prores_ling01_pal
- 0x80E904E0: int_ike_prores_ling01_lope2_tex
- 0x80E90560: int_ike_prores_ling01_lope_tex
- 0x80E90660: int_ike_prores_ling01_pole_tex
- 0x80E906E0: int_ike_prores_ling01_floor_tex
- 0x80E908E0: int_ike_prores_ling01_floorside_tex
- 0x80E90960: int_ike_prores_ling01_pole2_tex
- 0x80E909E0: int_ike_prores_ling01_base_tex
- 0x80E97260: int_sum_ayu_pal
- 0x80E972A0: int_ike_kama_danro01_pal
- 0x80E972C0: act_mus_ayu_body_txt
- 0x80E97740: int_ike_kama_danrotree1_tex_txt
- 0x80EB8FA0: act_m_abura_v
- 0x80EB9100: act_m_abura_pal
- 0x80EB9120: act_m_abura
- 0x80EB94B0: act_m_akiakane_v
- 0x80EB95D0: act_m_akiakane_pal
- 0x80EB95F0: act_m_akiakane
- 0x80EB99C8: act_m_amenbo_v
- 0x80EB9AA8: act_m_amenbo_pal
- 0x80EB9AC8: act_m_amenbo_tex
- 0x80EB9DD8: act_m_ari_v
- 0x80EB9E38: act_m_ari_pal
- 0x80EB9E58: act_m_ari_tex
- 0x80EBA020: act_m_dango_v
- 0x80EBA0D0: act_m_dango_pal
- 0x80EBA0F0: act_m_dango_tex
- 0x80EBA400: act_m_danna_v
- 0x80EBA4C0: act_m_danna_pal
- 0x80EBA4E0: act_m_danna
- 0x80EBAA60: act_m_genji2_v
- 0x80EBAB60: act_m_genji_h1_txt
- 0x80EBAFC0: act_m_ginyanma_v
- 0x80EBB0E0: act_m_ginyanma_pal
- 0x80EBB100: act_m_ginyanma
- 0x80EBB4D8: act_m_gomadara_v
- 0x80EBB598: act_m_gomadara_pal
- 0x80EBB5B8: act_m_gomadara
- 0x80EBB880: act_m_hachi_v
- 0x80EBB9E0: act_m_hachi_pal
- 0x80EBBA00: act_m_hachi
- 0x80EBBE58: act_m_higurashi_v
- 0x80EBBFB8: act_m_higurashi_pal
- 0x80EBBFD8: act_m_higurashi
- 0x80EBC368: act_m_hirata_v
- 0x80EBC428: act_m_hirata_pal
- 0x80EBC448: act_m_hirata
- 0x80EBD310: act_m_ka_v
- 0x80EBD490: act_m_ka_pal
- 0x80EBD4B0: act_m_ka_tex
- 0x80EBD888: act_m_kabuto_v
- 0x80EBD968: act_m_kabuto_pal
- 0x80EBD988: act_m_kabuto
- 0x80EBDC58: act_m_kamakiri_v
- 0x80EBDD78: act_m_kamakiri_pal
- 0x80EBDD98: act_m_kamakiri
- 0x80EBE168: act_m_kanabun_v
- 0x80EBE228: act_m_kanabun_pal
- 0x80EBE248: act_m_kanabun
- 0x80EBE510: act_m_kera_v
- 0x80EBE570: act_m_kera_pal
- 0x80EBE590: act_m_kera_tex
- 0x80EBE758: act_m_kiageha_v
- 0x80EBE818: act_m_kiageha_pal
- 0x80EBE838: act_m_kiageha
- 0x80EBEBC8: act_m_kirigirisu_v
- 0x80EBECF8: act_m_kirigirisu_pal
- 0x80EBED18: act_m_kirigirisu
- 0x80EBF0B8: act_m_koorogi_v
- 0x80EBF158: act_m_koorogi_pal
- 0x80EBF178: act_m_koorogi
- 0x80EBF480: act_m_kumo_v
- 0x80EBF580: act_m_kumo_pal
- 0x80EBF5A0: act_m_kumo_tex
- 0x80EBF970: act_m_maimai_v
- 0x80EBFA70: act_m_maimai_pal
- 0x80EBFA90: act_m_maimai_tex
- 0x80EBFD80: act_m_matumushi_v
- 0x80EBFE20: act_m_matumushi_pal
- 0x80EBFE40: act_m_matumushi
- 0x80EC0148: act_m_minmin_v
- 0x80EC02A8: act_m_minmin_pal
- 0x80EC02C8: act_m_minmin
- 0x80EC0658: act_m_mino_v
- 0x80EC0788: act_m_mino_pal
- 0x80EC07A8: act_m_mino_tex
- 0x80EC0C00: act_m_miyama_v
- 0x80EC0CC0: act_m_miyama_pal
- 0x80EC0CE0: act_m_miyama
- 0x80EC1BA8: act_m_monki_v
- 0x80EC1C68: act_m_monki_pal
- 0x80EC1C88: act_m_monki
- 0x80EC1E98: act_m_monshiro_v
- 0x80EC1F58: act_m_monshiro_pal
- 0x80EC1F78: act_m_monshiro
- 0x80EC2188: act_m_nanahoshi_v
- 0x80EC2358: act_m_nanahoshi_pal
- 0x80EC2378: act_m_nanahoshi
- 0x80EC2668: act_m_nokogiri_v
- 0x80EC2728: act_m_nokogiri_pal
- 0x80EC2748: act_m_nokogiri
- 0x80EC3610: act_m_ohmurasaki_v
- 0x80EC36D0: act_m_ohmurasaki_pal
- 0x80EC36F0: act_m_ohmurasaki
- 0x80EC3A80: act_m_okuwa_v
- 0x80EC3B40: act_m_okuwa_pal
- 0x80EC3B60: act_m_okuwa
- 0x80EC4A30: act_m_oniyanma_v
- 0x80EC4B50: act_m_oniyanma_pal
- 0x80EC4B70: act_m_oniyanma
- 0x80EC4F48: ef_shadow_in_v
- 0x80EC5010: act_m_shiokara_v
- 0x80EC5130: act_m_shiokara_pal
- 0x80EC5150: act_m_shiokara
- 0x80EC5528: act_m_suzumushi_v
- 0x80EC55C8: act_m_suzumushi_pal
- 0x80EC55E8: act_m_suzumushi
- 0x80EC5970: act_m_syouryou_v
- 0x80EC5A80: act_m_syouryou_pal
- 0x80EC5AA0: act_m_syouryou
- 0x80EC5E38: act_m_tamamushi_v
- 0x80EC5EF8: act_m_tamamushi_pal
- 0x80EC5F18: act_m_tamamushi
- 0x80EC61E0: act_m_tentou_v
- 0x80EC63B0: act_m_tentou_pal
- 0x80EC63D0: act_m_tentou
- 0x80EC66C0: act_m_tonosama_v
- 0x80EC67E0: act_m_tonosama_pal
- 0x80EC6800: act_m_tonosama
- 0x80EC6B98: act_m_tukutuku_v
- 0x80EC6CF8: act_m_tukutuku_pal
- 0x80EC6D18: act_m_tukutuku
- 0x80ECBF40: ct_tex
- 0x80ECCB40: yaji
- 0x80EDA878: ef_shadow_in_v
- 0x80EDC500: obj_shop_rod2_pal
- 0x80EDCD40: obj_shop_shovel2_pal
- 0x80EDDB00: obj_item_apple_pal
- 0x80EDDB20: obj_item_apple_tex
- 0x80EDDD20: obj_item_apple_v
- 0x80EDF420: obj_item_fish_pal
- 0x80EDF440: obj_item_fish_tex
- 0x80EDF9C0: obj_item_fossil_pal
- 0x80EDFBE0: obj_item_fossil_v
- 0x80EDFF40: obj_item_kabu_pal
- 0x80EDFF60: obj_item_kabu_tex
- 0x80EE0160: obj_item_kabu_v
- 0x80EE0200: obj_item_peach_pal
- 0x80EE0780: obj_item_matutake_pal
- 0x80EE07A0: obj_item_matutake_tex
- 0x80EE09A0: obj_item_matutake_v
- 0x80EE0FC0: obj_item_peach_pal
- 0x80EE0FE0: obj_item_orange_tex
- 0x80EE11E0: obj_item_orange_v
- 0x80EE1AC0: obj_item_peach_pal
- 0x80EE25C0: obj_item_tane_pal
- 0x80EE25E0: obj_item_tane_tex
- 0x80EE2660: obj_item_tane_v
- 0x80EE2700: obj_item_shell_pal
- 0x80EE2840: obj_item_shell_pal
- 0x80EE2980: obj_item_shell_pal
- 0x80EE2D80: obj_item_trash_pal
- 0x80EE3DA0: fri_win_bell_tex
- 0x80EF2980: int_kon_isi01_pal
- 0x80EF5220: int_kon_isi01_pal
- 0x80EFF000: int_kon_snowtansu_tex_pal
- 0x80F013E0: int_kon_snowtansu_tex_pal
- 0x80F19DE0: rom_museum5_wall_pal
- 0x80F1A040: rom_museum5_wallA_tex
- 0x80F1CCA0: rom_museum5_wall_pal
- 0x80F1CCC0: rom_museum5_wallA_tex
- 0x80F20BA0: rom_museum4_wall_pal
- 0x80F21800: rom_museum4_wallA_tex
- 0x80F23B20: rom_museum4_wall_pal
- 0x80F23B40: rom_museum4_wallA_tex
- 0x80F28880: rom_myhome_pal
- 0x80F33CC0: tol_balloon1_wire_tex_txt
- 0x80F34CC0: tol_balloon1_wire_tex_txt
- 0x80F35CC0: tol_balloon1_wire_tex_txt
- 0x80F36CC0: tol_balloon1_wire_tex_txt
- 0x80F37CC0: tol_balloon1_wire_tex_txt
- 0x80F38DC0: tol_balloon1_wire_tex_txt
- 0x80F3A680: tol_balloon1_wire_tex_txt
- 0x80F3BF40: tol_balloon1_wire_tex_txt
- 0x80F44240: obj_item_trash_pal
- 0x80F489E0: int_nog_isidai_pal
- 0x80F4A6E0: int_nog_kaeru_pal
- 0x80F4A720: act_mus_kaeru_a1_body_tex_txt
- 0x80F4AF20: act_mus_kaeru_a1_foot_tex_txt
- 0x80F55460: int_nog_medaka_pal
- 0x80F5C560: int_nog_piraluku_pal
- 0x80F68CE0: int_nog_suzuki_pal
- 0x80F6A360: int_nog_tai_pal
- 0x80F78640: int_nog_zarigani_pal
- 0x80F99760: rom_conveni_ent_pal
- 0x80F99780: rom_conveni_floor_E_pal
- 0x80F997A0: rom_conveni_cooler_pal
- 0x80F997C0: rom_conveni_tana_pal
- 0x80F997E0: rom_conveni_leji_pal
- 0x80F99800: rom_conveni_mirror_rgb_ci4_pal
- 0x80F99820: rom_conveni_ent
- 0x80F99E20: rom_conveni_maruwaku
- 0x80F9A020: rom_conveni_counter
- 0x80F9A220: rom_conveni_bou
- 0x80F9A2A0: rom_conveni_tana_bf2
- 0x80F9A320: rom_conveni_floor_E
- 0x80F9A520: rom_conveni_tana_f
- 0x80F9A5A0: rom_convevi_kage1
- 0x80F9A6A0: rom_conveni_leji_e
- 0x80F9A720: rom_conveni_leji_k
- 0x80F9A7A0: rom_conveni_leji_s
- 0x80F9A820: rom_conveni_leji_t
- 0x80F9A8A0: rom_conveni_wall_C
- 0x80F9ACA0: rom_conveni_door
- 0x80F9AFA0: rom_conveni_tana_bf
- 0x80F9B020: rom_conveni_mirror_rgb_ci4
- 0x80F9CD80: rom_conveni_ent_pal
- 0x80F9CDA0: rom_conveni_cooler_pal
- 0x80F9CDC0: rom_shop_kouhaku_pal
- 0x80F9CDE0: rom_conveni_tana_pal
- 0x80F9CE00: rom_conveni_floor_E_pal
- 0x80F9CE20: rom_conveni_leji_pal
- 0x80F9CE40: rom_conveni_mirror_rgb_ci4_pal
- 0x80F9CE60: rom_conveni_ent
- 0x80F9D060: rom_conveni_maruwaku
- 0x80F9D260: rom_shop_kouhaku_tex
- 0x80F9DA60: rom_conveni_counter
- 0x80F9DC60: rom_conveni_bou
- 0x80F9DCE0: rom_conveni_tana_bf2
- 0x80F9DD60: rom_conveni_floor_E
- 0x80F9DF60: rom_conveni_tana_f
- 0x80F9DFE0: rom_convevi_kage1
- 0x80F9E0E0: rom_conveni_leji_e
- 0x80F9E160: rom_conveni_leji_k
- 0x80F9E1E0: rom_conveni_leji_s
- 0x80F9E260: rom_conveni_leji_t
- 0x80F9E2E0: rom_conveni_wall_C
- 0x80F9E6E0: rom_conveni_door
- 0x80F9E9E0: rom_conveni_tana_bf
- 0x80F9EA60: rom_conveni_mirror_rgb_ci4
- 0x80F9FF80: rom_shop4_1_floor_tex_pal
- 0x80F9FFC0: rom_shop4_1_base_tex_pal
- 0x80F9FFE0: rom_shop4_1_stair_tex_pal
- 0x80FA0000: rom_shop4_1_table_tex_pal
- 0x80FA0020: rom_shop4_1_wall_tex_pal
- 0x80FA0040: rom_shop4_1_sign01_tex_pal
- 0x80FA0060: rom_shop4_1_kaunta_tex_pal
- 0x80FA00A0: rom_shop4_1_us_sign02_tex_pal
- 0x80FA00E0: rom_shop4_1_sign03_tex_pal
- 0x80FA0100: rom_shop4_1_reji_tex_pal
- 0x80FA0120: rom_shop4_1_floor01_tex
- 0x80FA09A0: rom_shop4_1_base_tex
- 0x80FA0BA0: rom_shop4_1_stair01_tex
- 0x80FA0CA0: rom_shop4_1_table01_tex
- 0x80FA0DA0: rom_shop4_1_table02_tex
- 0x80FA0EA0: rom_shop4_1_wall01_tex
- 0x80FA16A0: rom_shop4_1_wall02_tex
- 0x80FA18A0: rom_shop4_1_sign05_tex
- 0x80FA1920: rom_shop4_1_kaunta01_tex
- 0x80FA1B20: rom_shop4_1_kaunta02_tex
- 0x80FA1FA0: rom_shop4_1_us_sign02_tex
- 0x80FA26A0: rom_shop4_1_sign04_tex
- 0x80FA27A0: rom_shop4_1_reji01_tex
- 0x80FA2AA0: rom_shop4_1_reji02_tex
- 0x80FA2BA0: rom_shop4_1_reji03_tex
- 0x80FA2CA0: rom_shop4_1_floor02_tex
- 0x80FA34A0: rom_shop4_1_floor03_tex
- 0x80FA3CA0: rom_shop4_1_floor04_tex
- 0x80FA45A0: rom_shop4_1_shadow02_tex
- 0x80FA6400: rom_shop4_1_floor_tex_pal
- 0x80FA6420: rom_shop4_1_base_tex_pal
- 0x80FA6440: rom_shop4_1_stair_tex_pal
- 0x80FA6460: rom_shop4_1_table_tex_pal
- 0x80FA6480: rom_shop4_1_wall_tex_pal
- 0x80FA64A0: rom_shop4_1_sign01_tex_pal
- 0x80FA64C0: rom_shop4_1_kaunta_tex_pal
- 0x80FA64E0: rom_shop4_2_sign01_us_tex_pal
- 0x80FA6500: rom_shop4_1_us_sign02_tex_pal
- 0x80FA6540: rom_shop4_1_sign03_tex_pal
- 0x80FA6560: rom_shop4_1_reji_tex_pal
- 0x80FA6580: rom_shop_kouhaku_pal
- 0x80FA65A0: rom_shop4_1_floor01_tex
- 0x80FA6DA0: rom_shop4_1_base_tex
- 0x80FA6FA0: rom_shop4_1_stair01_tex
- 0x80FA70A0: rom_shop4_1_table01_tex
- 0x80FA71A0: rom_shop4_1_table02_tex
- 0x80FA72A0: rom_shop4_1_wall01_tex
- 0x80FA7AA0: rom_shop4_1_wall02_tex
- 0x80FA7CA0: rom_shop4_1_sign05_tex
- 0x80FA7D20: rom_shop4_1_kaunta01_tex
- 0x80FA7F20: rom_shop4_1_kaunta02_tex
- 0x80FA7FA0: rom_shop4_2_us_sign01_tex
- 0x80FA83A0: rom_shop4_1_us_sign02_tex
- 0x80FA8AA0: rom_shop4_1_sign04_tex
- 0x80FA8BA0: rom_shop4_1_reji01_tex
- 0x80FA8EA0: rom_shop4_1_reji02_tex
- 0x80FA8FA0: rom_shop4_1_reji03_tex
- 0x80FA90A0: rom_shop4_1_floor02_tex
- 0x80FA98A0: rom_shop4_1_floor03_tex
- 0x80FAA0A0: rom_shop4_1_floor04_tex
- 0x80FAA8A0: rom_shop4_1_shadow02_tex
- 0x80FAA9A0: rom_shop_kouhaku_tex
- 0x80FACE20: rom_shop4_1_floor_tex_pal
- 0x80FACE60: rom_shop4_1_table_tex_pal
- 0x80FACEC0: rom_shop4_2_sign01_us_tex_pal
- 0x80FAE280: rom_shop4_2_us_sign01_tex
- 0x80FB21A0: rom_shop3_ent_pal
- 0x80FB21C0: rom_shop3_tana_pal
- 0x80FB21E0: rom_shop3_leji_pal
- 0x80FB2200: rom_shop3_desk_pal
- 0x80FB2220: rom_shop3_mat_pal
- 0x80FB2240: rom_shop3_bini_pal
- 0x80FB2260: rom_shop3_wallC_pal
- 0x80FB2280: rom_shop3_ent
- 0x80FB2580: rom_shop3_kago_b
- 0x80FB2700: rom_shop3_leji_f
- 0x80FB2780: rom_shop3_leji_k
- 0x80FB2800: rom_shop3_leji_b
- 0x80FB2880: rom_shop3_desk_a
- 0x80FB2A80: rom_shop3_desk_b
- 0x80FB2B00: rom_shop3_desk_c
- 0x80FB2D00: rom_shop3_tana_t
- 0x80FB2F00: rom_shop3_bini
- 0x80FB2F80: rom_shop3_bini_b
- 0x80FB3000: rom_shop3_car
- 0x80FB3100: rom_shop3_bini_a
- 0x80FB3180: rom_shop3_wallC
- 0x80FB3980: rom_shop3_wallD
- 0x80FB4180: rom_shop3_floorE
- 0x80FB4380: rom_shop3_kage1
- 0x80FB7260: rom_shop3_ent_pal
- 0x80FB7280: rom_shop_kouhaku_pal
- 0x80FB72A0: rom_shop3_tana_pal
- 0x80FB72C0: rom_shop3_leji_pal
- 0x80FB72E0: rom_shop3_desk_pal
- 0x80FB7300: rom_shop3_bini_pal
- 0x80FB7320: rom_shop3_mat_pal
- 0x80FB7340: rom_shop3_wallC_pal
- 0x80FB7360: rom_shop3_ent
- 0x80FB7560: rom_shop_kouhaku_tex
- 0x80FB7E60: rom_shop3_kago_b
- 0x80FB7F60: rom_shop3_leji_f
- 0x80FB7FE0: rom_shop3_leji_k
- 0x80FB8060: rom_shop3_leji_b
- 0x80FB80E0: rom_shop3_desk_a
- 0x80FB82E0: rom_shop3_desk_b
- 0x80FB8360: rom_shop3_desk_c
- 0x80FB8560: rom_shop3_tana_t
- 0x80FB85E0: rom_shop3_bini
- 0x80FB8660: rom_shop3_bini_b
- 0x80FB86E0: rom_shop3_car
- 0x80FB87E0: rom_shop3_bini_a
- 0x80FB8860: rom_shop3_wallC
- 0x80FB9060: rom_shop3_wallD
- 0x80FB9860: rom_shop3_floorE
- 0x80FB9A60: rom_shop3_kage1
- 0x80FBC280: rom_shop1_pal
- 0x80FBC2C0: rom_shop1_table_tex
- 0x80FBC8C0: rom_shop1_window_tex
- 0x80FBD0C0: rom_shop1_shadow_tex
- 0x80FBF680: rom_shop1_pal
- 0x80FBF6E0: rom_shop_kouhaku_pal
- 0x80FBF700: rom_shop1_table_tex
- 0x80FBFD00: rom_shop1_window_tex
- 0x80FC0500: rom_shop1_shadow_tex
- 0x80FC3900: rom_shop_kouhaku_tex
- 0x80FD4920: int_sum_aroana_pal
- 0x80FE5EE0: int_sum_ayu_pal
- 0x80FE78C0: int_sum_bass_pal
- 0x80FE9360: int_sum_bassl_pal
- 0x80FEA220: int_sum_bassm_pal
- 0x8101C2E0: int_sum_cont_table01_pal
- 0x8101C400: int_sum_cont_table01_topside_tex
- 0x8101CC40: int_sum_cont_table01_pal
- 0x8101CE60: int_sum_cont_table01_topside_tex
- 0x8101F340: int_sum_demekin_pal
- 0x81020DC0: int_sum_dojyo_pal
- 0x81027000: int_sum_doll09_pal
- 0x81027A20: int_sum_doll09_pal
- 0x81029880: int_sum_donko_pal
- 0x81032960: int_sum_funa_pal
- 0x810346A0: int_sum_gill_pal
- 0x81036E20: int_sum_golfbag_pal
- 0x81037DC0: int_sum_golfbag_pal
- 0x810450E0: int_sum_gupi_pal
- 0x81051F20: int_sum_hera_pal
- 0x81054CC0: int_sum_ito_pal
- 0x81055AC0: int_sum_iwana_pal
- 0x81059C80: int_sum_kaseki_pal
- 0x8105BA40: int_sum_kingyo_pal
- 0x8105FCA0: int_sum_koi_pal
- 0x8107B8A0: int_sum_namazu_pal
- 0x8107D500: int_sum_nigoi_pal
- 0x8107E3C0: int_sum_niji_pal
- 0x8107F280: int_sum_nisiki_pal
- 0x81081D40: int_sum_oikawa_pal
- 0x81087080: int_sum_oonamazu_pal
- 0x81089C80: int_sum_pirania_pal
- 0x8108E780: int_sum_pl_kuroton_pal
- 0x81091A00: int_sum_pl_kuroton_pal
- 0x81095880: int_sum_poptable01_pal
- 0x81097920: int_sum_poptable01_pal
- 0x8109A9E0: int_sum_raigyo_pal
- 0x810A6720: int_sum_sake_pal
- 0x810A9FE0: int_sum_sofe01_pal
- 0x810AA000: int_sofe01_pal
- 0x810AA320: int_sum_sofe01_facet_txt
- 0x810AA6A0: int_sum_sofe01_side_txt
- 0x810AA7A0: int_sum_sofe01_backside_txt
- 0x810AAD80: int_sum_sofe01_pal
- 0x810AADA0: int_sofe01_pal
- 0x810AB0C0: int_sum_sofe01_facet_txt
- 0x810AB240: int_sum_sofe01_side_txt
- 0x810AB340: int_sum_sofe01_backside_txt
- 0x810B4540: int_sum_tanago_pal
- 0x810C3C40: int_sum_ugui_pal
- 0x810C49C0: int_sum_unagi_pal
- 0x810C9420: int_sum_wakasagi_pal
- 0x810D9A80: int_sum_yamame_pal
- 0x810DEEE0: int_tak_cone02_asi_tex_pal
- 0x810DF400: int_tak_cone02_asi_tex_pal
- 0x81106D80: rom_train_3_pal
-src/irqmgr.c:
- 0x812F357C: this
-src/m_malloc.c:
- 0x81297CA0: zelda_arena
-foresta.rel:
- 0x80641254: _ctors
- 0x80641258: _dtors
diff --git a/configure.py b/configure.py
index 3cd53d4b..54d422f6 100644
--- a/configure.py
+++ b/configure.py
@@ -1,958 +1,2704 @@
-"""
-Creates a build script for ninja
-"""
-from abc import ABC, abstractmethod
-from collections import defaultdict
-from dataclasses import dataclass
+#!/usr/bin/env python3
+###
+# Generates build files for the project.
+# This file also includes the project configuration,
+# such as compiler flags and the object matching status.
+#
+# Usage:
+# python3 configure.py
+# ninja
+#
+# Append --help to see available options.
+###
+
+import argparse
import json
import os
-import pickle
import re
-import subprocess
-import yaml
-from io import StringIO
+import sys
+import urllib.request
+from pathlib import Path
+from typing import Any, Dict, List
-from sys import executable as PYTHON, platform
-from typing import List, Tuple
-from ninja_syntax import Writer
-
-import common as c
-
-####################
-# Setup Validation #
-####################
-
-# Rename main.dol to static.dol
-if os.path.exists("dump/main.dol"):
- os.rename("dump/main.dol", "dump/static.dol")
-
-# Check CodeWarrior was added
-assert os.path.exists("tools/1.3.2/mwcceppc.exe") and \
- os.path.exists("tools/1.2.5n/mwcceppc.exe"), \
- "Error: Codewarrior not found!"
-
-# Check if foresta.rel.szs exists but not foresta.rel, and if so, decompress
-if not os.path.exists(c.REL) and os.path.exists(c.REL_SZS):
- print("Decompressing foresta.rel.szs to foresta.rel")
- subprocess.call([f'./{c.ORTHRUS}', 'ncompress', 'yaz0', '-d', c.REL_SZS, c.REL])
-
-# Check binaries were added
-assert os.path.exists(c.DOL) and os.path.exists(c.REL), \
- "Error: Base binaries not found!"
-
-#Check if binaries are correct
-dol_hash = c.get_file_sha1(c.DOL)
-rel_hash = c.get_file_sha1(c.REL)
-
-assert dol_hash == bytes.fromhex("2ae8f56e7791d37e165bd5900921f2269f9515bf") and rel_hash == bytes.fromhex("c59d278ad8542bb05d6cbb632f60a0db05bef203"), \
- "Error: Base binaries hashes aren't correct!"
-
-#Check submodules added
-assert os.path.exists(c.PPCDIS), \
- "Error: Git submodules not initialised!"
-
-###############
-# Ninja Setup #
-###############
-
-outbuf = StringIO()
-n = Writer(outbuf)
-n.variable("ninja_required_version", "1.3")
-n.newline()
-
-################
-# Project Dirs #
-################
-
-n.variable("builddir", c.BUILDDIR)
-n.variable("outdir", c.OUTDIR)
-n.variable("dump", c.ORIG)
-n.variable("tools", c.TOOLS)
-n.variable("config", c.CONFIG)
-n.newline()
-
-os.makedirs(c.BUILDDIR, exist_ok=True)
-
-#########
-# Tools #
-#########
-
-n.variable("python", c.PYTHON)
-n.variable("ppcdis", c.PPCDIS)
-n.variable("relextern", c.RELEXTERN)
-n.variable("analyser", c.ANALYSER)
-n.variable("disassembler", c.DISASSEMBLER)
-n.variable("orderstrings", c.ORDERSTRINGS)
-n.variable("orderfloats", c.ORDERFLOATS)
-n.variable("assetrip", c.ASSETRIP)
-n.variable("assetinc", c.ASSETINC)
-n.variable("forceactivegen", c.FORCEACTIVEGEN)
-n.variable("elf2dol", c.ELF2DOL)
-n.variable("elf2rel", c.ELF2REL)
-n.variable("codewarrior", c.CODEWARRIOR)
-n.variable("cc", c.CC_R)
-n.variable("occ", c.OCC)
-n.variable("align16", c.ALIGN16)
-n.variable("ld", c.LD)
-n.variable("devkitppc", c.DEVKITPPC)
-n.variable("as", c.AS)
-n.variable("cpp", c.CPP)
-n.variable("forcefilesgen", c.FORCEFILESGEN)
-n.variable("vtxdis", c.VTXDIS)
-n.variable("pal16dis", c.PAL16DIS)
-n.variable("arctool", c.ARC_TOOL)
-n.variable("sjiswrap", c.SJISWRAP)
-n.variable("batchassetrip", c.BATCHASSETRIP)
-n.newline()
-
-##############
-# Tool Flags #
-##############
-
-n.variable("asflags", c.ASFLAGS)
-n.variable("ldflags", c.LDFLAGS)
-n.variable("cppflags", c.CPPFLAGS)
-n.variable("cplflags", c.CPLFLAGS)
-n.variable("ppcdis_analysis_flags", c.PPCDIS_ANALYSIS_FLAGS)
-n.newline()
-
-#########
-# Rules #
-#########
-
-# Windows can't use && without this statement
-ALLOW_CHAIN = "cmd /c " if os.name == "nt" else ""
-mwcc_cmd = ALLOW_CHAIN + f"$cpp -M $in -MF $out.d $cppflags && $sjiswrap $cc $cflags -c $in -o $out"
-
-n.rule(
- "relextern",
- command = "$relextern $out $in",
- description = "ppcdis rel extern $in"
+from tools.project import (
+ Object,
+ ProgressCategory,
+ ProjectConfig,
+ calculate_progress,
+ generate_build,
+ is_windows,
)
-n.rule(
- "analyse",
- command = "$analyser $in $out $analysisflags",
- description = "ppcdis analysis $in",
- pool="console"
+# Game versions
+DEFAULT_VERSION = 0
+VERSIONS = [
+ "GAFE01_00", # USA Rev 0
+]
+
+parser = argparse.ArgumentParser()
+parser.add_argument(
+ "mode",
+ choices=["configure", "progress"],
+ default="configure",
+ help="script mode (default: configure)",
+ nargs="?",
)
-
-n.rule(
- "disasm",
- command = "$disassembler $in $out -q $disasmflags",
- description = "ppcdis full disassembly $out"
+parser.add_argument(
+ "-v",
+ "--version",
+ choices=VERSIONS,
+ type=str.upper,
+ default=VERSIONS[DEFAULT_VERSION],
+ help="version to build",
)
-
-n.rule(
- "disasm_slice",
- command = "$disassembler $in $out -q $disasmflags -s $slice",
- description = "ppcdis disassembly $out"
+parser.add_argument(
+ "--build-dir",
+ metavar="DIR",
+ type=Path,
+ default=Path("build"),
+ help="base build directory (default: build)",
)
-
-n.rule(
- "disasm_single",
- command = "$disassembler $in $out -f $addr -q -i $disasmflags",
- description = "ppcdis function disassembly $addr"
+parser.add_argument(
+ "--binutils",
+ metavar="BINARY",
+ type=Path,
+ help="path to binutils (optional)",
)
-
-n.rule(
- "jumptable",
- command = "$disassembler $in $out -j $addr -q $disasmflags",
- description = "Jumptable $addr"
+parser.add_argument(
+ "--compilers",
+ metavar="DIR",
+ type=Path,
+ help="path to compilers (optional)",
)
-
-n.rule(
- "orderstrings",
- command = "$orderstrings $in $addrs $out $flags --enc shift-jis --pool",
- description = "Order strings $in $addrs"
+parser.add_argument(
+ "--map",
+ action="store_true",
+ help="generate map file(s)",
)
-
-n.rule(
- "orderfloats",
- command = "$orderfloats $in $addrs $out $flags",
- description = "Order floats $in $addrs"
+parser.add_argument(
+ "--debug",
+ action="store_true",
+ help="build with debug info (non-matching)",
)
-
-n.rule(
- "assetrip",
- command = "$assetrip $in $addrs $out",
- description = "Asset rip $out"
-)
-
-n.rule(
- "assetinc",
- command = "$assetinc $in $out",
- description = "Asset include generation $out"
-)
-
-n.rule(
- "batchassetrip",
- command = "$batchassetrip $in $asset_yml",
- description="Batch asset rip $asset_yml"
-)
-
-n.rule(
- "forceactivegen",
- command = "$forceactivegen $in $out",
- description = "LCF FORCEACTIVEGEN generation $in"
-)
-
-n.rule(
- "elf2dol",
- command = "$elf2dol $in -o $out",
- description = "elf2dol $in"
-)
-
-n.rule(
- "elf2rel",
- command = "$elf2rel $in -o $out $flags",
- description = "elf2rel $in"
-)
-
-n.rule(
- "sha1sum",
- command = ALLOW_CHAIN + "sha1sum -c $in && touch $out",
- description ="Verify $in",
- pool ="console"
-)
-
-n.rule(
- "as",
- command = f"$as $asflags -c $in -o $out",
- description = "AS $in"
-)
-
-n.rule(
- "cc",
- command = mwcc_cmd,
- description = "CC $in",
- deps = "gcc",
- depfile = "$out.d"
-)
-
-n.rule(
- "ccs",
- command = ALLOW_CHAIN + f"$cpp -M $in -MF $out.d $cppflags && $sjiswrap $cc $cflags -S $in -o $out",
- description = "CC -S $in",
- deps = "gcc",
- depfile = "$out.d"
-)
-
-n.rule(
- "ld",
- command = "$ld $ldflags -map $map -lcf $lcf $in -o $out",
- description = "LD $out",
-)
-
-n.rule(
- "forcefiles",
- command = "$forcefilesgen $in $out $forcefiles",
- description = "LCF FORCEFILES generation $in"
-)
-
-n.rule(
- "vtxdis",
- command = "$vtxdis $in $out",
- description = "vtxdis.py $in $out"
-)
-
-n.rule(
- "pal16dis",
- command = "$pal16dis $in $out",
- description = "pal16dis.py $in $out"
-)
-
-n.rule(
- "arctool",
- command = "$arctool -v $in $out",
- description = "$arctool -v $in $out"
-)
-
-n.rule(
- "sjiswrap",
- command = "$sjiswrap $in",
- description = "sjiswrap $in",
-)
-
-##########
-# Assets #
-##########
-
-@dataclass
-class Asset:
- binary: str
- path: str
- convtype: str
- start: int
- end: int
-
- def load(yml_path: str):
- return {
- asset : Asset(binary, asset, adat.get("type", "u8"), *adat["addrs"])
- for binary, bdat in c.load_from_yaml(yml_path).items()
- for asset, adat in bdat.items()
- }
-assets = Asset.load(c.ASSETS_YML)
-###########
-# Sources #
-###########
-
-class GeneratedInclude(ABC):
- def __init__(self, ctx: c.SourceContext, source_name: str, path: str):
- self.ctx = ctx
- self.source_name = source_name
- self.path = path
-
- @abstractmethod
- def build(self):
- raise NotImplementedError
-
- def find(ctx: c.SourceContext, source_name: str, txt: str) -> List["GeneratedInclude"]:
- return [
- cl(ctx, source_name, match)
- for cl in (
- AsmInclude,
- JumptableInclude,
- StringInclude,
- FloatInclude,
- DoubleInclude,
- AssetInclude
- )
- for match in re.findall(cl.REGEX, txt)
- ]
-
-class AsmInclude(GeneratedInclude):
- REGEX = r'#include "asm\/([0-9a-f]{8})\.s"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: str):
- self.addr = match
- super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/asm/{self.addr}.s")
-
- def build(includes: List["AsmInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Get ctx from first include (all should be equal)
- ctx = includes[0].ctx
-
- # Sort by source name
- batches = defaultdict(list)
- for inc in includes:
- batches[inc.source_name].append(inc)
-
- # Compile by source name
- for source_name, incs in batches.items():
- n.build(
- [inc.path for inc in incs],
- rule="disasm_single",
- inputs=[ctx.binary, ctx.labels, ctx.relocs],
- implicit=[c.GAME_SYMBOLS, ctx.disasm_overrides],
- variables={
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides} -n {source_name}",
- "addr" : ' '.join(inc.addr for inc in incs) }
- )
-
- def _repr__(self):
- return f"AsmInclude({self.addr})"
-
-class JumptableInclude(GeneratedInclude):
- REGEX = r'#include "jumptable\/([0-9a-f]{8})\.inc"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: str):
- self.addr = match
- super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/jumptable/{self.addr}.inc")
-
- def build(includes: List["JumptableInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Get context from first include (all should be equal)
- ctx = includes[0].ctx
-
- # Sort by source name
- batches = defaultdict(list)
- for inc in includes:
- batches[inc.source_name].append(inc)
-
- # Compile by source name
- # TODO: subdivide large batches
- for source_name, incs in batches.items():
- n.build(
- [inc.path for inc in incs],
- rule="jumptable",
- inputs=[ctx.binary, ctx.labels, ctx.relocs],
- implicit=[c.GAME_SYMBOLS, ctx.disasm_overrides],
- variables={
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides} -n {source_name}",
- "addr" : ' '.join(inc.addr for inc in incs)
- }
- )
-
- def __repr__(self):
- return f"JumptableInclude({self.addr})"
-
-
-class StringInclude(GeneratedInclude):
- REGEX = r'#include "orderstrings\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
- self.start, self.end = match
- super().__init__(ctx, source_name,
- f"{c.BUILD_INCDIR}/orderstrings/{self.start}_{self.end}.inc")
-
- def build(includes: List["StringInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Get context from first include (all should be equal)
- ctx = includes[0].ctx
-
- # Build
- for inc in includes:
- n.build(
- inc.path,
- rule="orderstrings",
- inputs=ctx.binary,
- variables={
- "addrs" : f"{inc.start} {inc.end}"
- }
- )
-
- def __repr__(self):
- return f"StringInclude({self.start}, {self.end})"
-
-
-class FloatInclude(GeneratedInclude):
- REGEX = r'#include "(orderfloats(m?))\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
- folder, manual, self.start, self.end = match
- self.manual = manual != ''
- super().__init__(ctx, source_name,
- f"{c.BUILD_INCDIR}/{folder}/{self.start}_{self.end}.inc")
-
- def build(includes: List["FloatInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Get context from first include (all should be equal)
- ctx = includes[0].ctx
-
- # Build
- for inc in includes:
- sda = "--sda " if ctx.sdata2_threshold >= 4 else ""
- asm = "" if inc.manual else "" #--asm
- n.build(
- inc.path,
- rule="orderfloats",
- inputs=inc.ctx.binary,
- variables={
- "addrs" : f"{inc.start} {inc.end}",
- "flags" : f"{sda} {asm}"
- }
- )
-
- def __repr__(self):
- return f"FloatInclude({self.start}, {self.end})"
-
-class DoubleInclude(GeneratedInclude):
- REGEX = r'#include "orderdoubles\/([0-9a-f]{8})_([0-9a-f]{8})\.inc"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
- self.start, self.end = match
- super().__init__(ctx, source_name,
- f"{c.BUILD_INCDIR}/orderdoubles/{self.start}_{self.end}.inc")
-
- def build(includes: List["DoubleInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Get context from first include (all should be equal)
- ctx = includes[0].ctx
-
- # Build
- for inc in includes:
- n.build(
- inc.path,
- rule="orderfloats",
- inputs=ctx.binary,
- variables={
- "addrs" : f"{inc.start} {inc.end}",
- "flags" : f"--double"
- }
- )
-
- def __repr__(self):
- return f"DoubleInclude({self.start}, {self.end})"
-
-class AssetInclude(GeneratedInclude):
- REGEX = r'#include "assets\/(.+)\.inc"'
-
- def __init__(self, ctx: c.SourceContext, source_name: str, match: Tuple[str]):
- self.asset = assets[match]
- self.asset_path = f"{c.ASSETS}/{self.asset.path}"
- assert ctx.binary == self.asset.binary, f"Tried to include from other binary"
- super().__init__(ctx, source_name, f"{c.BUILD_INCDIR}/assets/{self.asset.path}.inc")
-
- def build(includes: List["AssetInclude"]):
- # Skip empty list
- if len(includes) == 0:
- return
-
- # Build
- binary = None
- asset_entries = {}
- expected_files = []
- for inc in includes:
- if binary == None:
- binary = inc.asset.binary
- asset_entries[inc.asset_path] = [inc.asset.start, inc.asset.end]
- expected_files.append(inc.asset_path)
-
- with open(f"{c.BUILDDIR}/{binary[7:10]}_assetrip.yml", 'w') as asset_yml:
- yaml.dump(asset_entries, asset_yml)
-
- n.build(
- outputs=expected_files,
- rule = "batchassetrip",
- inputs = binary,
- variables = {
- "asset_yml": f"{c.BUILDDIR}/{binary[7:10]}_assetrip.yml"
- }
- )
-
- # Include
- for inc in includes:
- if inc.asset.convtype == "vtx":
- n.build(
- inc.path,
- rule="vtxdis",
- inputs=inc.asset_path
- )
- elif inc.asset.convtype == "pal16":
- n.build(
- inc.path,
- rule="pal16dis",
- inputs=inc.asset_path
- )
- else:
- n.build(
- inc.path,
- rule="assetinc",
- inputs=inc.asset_path
- )
-
- def __repr__(self):
- return f"AssetInclude({self.asset})"
-
-class Source(ABC):
- def __init__(self, decompiled: bool, src_path: str, o_path: str,
- gen_includes: List[GeneratedInclude] = []):
- self.decompiled = decompiled
- self.src_path = src_path
- self.o_path = o_path
- self.o_stem = o_path[:-2]
- self.i_path = o_path[:-2] + ".i"
- self.gen_includes = gen_includes
-
- def build(self):
- raise NotImplementedError
-
- def make(ctx: c.SourceContext, source: c.SourceDesc):
- if isinstance(source, str):
- print(source)
- ext = source.split('.')[-1].lower()
- if ext in ("c", "cpp", "cxx", "cc"):
- return CSource(ctx, source)
- elif ext == "s":
- return AsmSource(ctx, source)
- else:
- assert 0, f"Unknown source type .{ext}"
- else:
- return GenAsmSource(ctx, *source)
-
-class GenAsmSource(Source):
- def __init__(self, ctx: c.SourceContext, section: str, start: int, end: int):
- self.start = start
- self.end = end
- self.ctx = ctx
- name = f"{section}_{start:x}_{end:x}.s"
- src_path = f"$builddir/asm/{name}"
- super().__init__(False, src_path, src_path + ".o")
-
- # Add ctors to forcefiles
- if section == ".ctors":
- forcefiles.append(name + ".o")
-
-
- def build(self):
- n.build(
- self.src_path,
- rule = "disasm_slice",
- inputs = [self.ctx.binary, self.ctx.labels, self.ctx.relocs],
- implicit = [c.GAME_SYMBOLS, self.ctx.disasm_overrides],
- variables = {
- "slice" : f"{self.start:x} {self.end:x}",
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {self.ctx.disasm_overrides}"
- }
- )
- n.build(
- self.o_path,
- rule="as",
- inputs=self.src_path
- )
- def batch_build(sources: List["GenAsmSource"], batch_size=20):
- # TODO: configure batch size based on cpu core count
-
- # Skip empty list
- if len(sources) == 0:
- return
-
- # Get context from first include (all should be equal)
- ctx = sources[0].ctx
-
- for src in sources:
- n.build(
- src.o_path,
- rule="as",
- inputs=src.src_path
- )
-
- while len(sources) > 0:
- batch, sources = sources[:batch_size], sources[batch_size:]
- n.build(
- [src.src_path for src in batch],
- rule = "disasm_slice",
- inputs = [ctx.binary, ctx.labels, ctx.relocs],
- implicit = [c.GAME_SYMBOLS, ctx.disasm_overrides],
- variables = {
- "slice" : ' '.join(
- f"{src.start:x} {src.end:x}"
- for src in batch
- ),
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {ctx.disasm_overrides}"
- }
- )
-
-class AsmSource(Source):
- def __init__(self, ctx: c.SourceContext, path: str):
- super().__init__(True, path, f"$builddir/{path}.o")
-
- def build(self):
- n.build(
- self.o_path,
- rule = "as",
- inputs = self.src_path
- )
-
-class CSource(Source):
- def __init__(self, ctx: c.SourceContext, path: str):
- if path.startswith("src/static/dolphin/"):
- self.cflags = c.SDK_FLAGS
- self.cc = c.OCC
- elif path.startswith("src/static/jaudio_NES/"):
- if path.startswith("src/static/jaudio_NES/internal/"):
- self.cflags = c.JAUDIO_FUNC_ALIGN_32_CFLAGS
- elif path.startswith("src/static/jaudio_NES/game/"):
- self.cflags = c.JAUDIO_USER_CFLAGS
- else:
- self.cflags = c.JAUDIO_CFLAGS
- self.cc = c.CC
- elif path.startswith("src/static/JSystem/JGadget/"):
- self.cflags = c.JSYSTEM_JGADGET_CFLAGS
- self.cc = c.CC
- elif path.startswith("src/static/JSystem/"):
- self.cflags = c.JSYSTEM_CFLAGS
- self.cc = c.CC
- elif path.startswith("src/static/Famicom/"):
- self.cflags = c.FAMICOM_CLFAGS
- if "ksNes" in path: # ksNes doesn't have rodata pooling off
- self.cc = c.CC
- else:
- self.cc = c.CC_R
- elif path.startswith("src/static/GBA2/"):
- self.cflags = c.DOL_CFLAGS_SDATA0_CFLAGS
- self.cc = c.CC
- elif path.startswith("src/static/bootdata/") or path == "src/static/boot.c" or path == "src/static/initial_menu.c":
- self.cflags = c.DOL_BOOT_CFLAGS
- self.cc = c.CC
- elif path == "src/static/dvderr.c":
- self.cflags = c.DOL_DVDERR_CFLAGS
- self.cc = c.CC
- elif path.startswith("src/static/jaudio_NES"):
- self.cc = c.CC
- self.cflags = c.DOL_CPPFLAGS
- elif path.startswith("src/static/TRK") and not path.startswith("src/static/TRK/init"):
- self.cc = c.CC
- self.cflags = c.DOL_TRK_CFLAGS
- elif os.path.dirname(path).endswith("src/static"):
- self.cflags = c.DOL_CFLAGS_SDATA0_CFLAGS
- self.cc = c.CC
- else:
- self.cflags = ctx.cflags
- self.cc = c.CC_R
-
- # Find generated includes
- with open(path, encoding="utf-8") as f:
- gen_includes = GeneratedInclude.find(ctx, path, f.read())
-
- self.s_path = f"$builddir/{path}.s"
- super().__init__(True, path, f"$builddir/{os.path.splitext(path)[0]}.o", gen_includes)
-
- def build(self):
- n.build(
- self.o_path,
- rule = "cc",
- inputs = self.src_path,
- implicit = [inc.path for inc in self.gen_includes],
- variables = {
- "cc" : self.cc,
- "cflags" : self.cflags
- }
- )
-
- # Optional manual debug target
- n.build(
- self.s_path,
- rule = "ccs",
- inputs = self.src_path,
- implicit = [inc.path for inc in self.gen_includes],
- variables = {
- "cflags" : self.cflags
- }
- )
-
-def load_sources(ctx: c.SourceContext):
- raw = c.get_cmd_stdout(
- f"{c.SLICES} {ctx.binary} {ctx.slices} -o -p {ctx.srcdir}/"
+if not is_windows():
+ parser.add_argument(
+ "--wrapper",
+ metavar="BINARY",
+ type=Path,
+ help="path to wibo or wine (optional)",
)
- return [Source.make(ctx, s) for s in json.loads(raw)]
-
-def find_gen_includes(sources: List[Source]):
- ret = defaultdict(list)
- for source in sources:
- if not isinstance(source, CSource):
- continue
-
- for inc in source.gen_includes:
- ret[type(inc)].append(inc)
+parser.add_argument(
+ "--dtk",
+ metavar="BINARY | DIR",
+ type=Path,
+ help="path to decomp-toolkit binary or source (optional)",
+)
+parser.add_argument(
+ "--objdiff",
+ metavar="BINARY | DIR",
+ type=Path,
+ help="path to objdiff-cli binary or source (optional)",
+)
+parser.add_argument(
+ "--sjiswrap",
+ metavar="EXE",
+ type=Path,
+ help="path to sjiswrap.exe (optional)",
+)
+parser.add_argument(
+ "--verbose",
+ action="store_true",
+ help="print verbose output",
+)
+parser.add_argument(
+ "--non-matching",
+ dest="non_matching",
+ action="store_true",
+ help="builds equivalent (but non-matching) or modded objects",
+)
+parser.add_argument(
+ "--no-progress",
+ dest="progress",
+ action="store_false",
+ help="disable progress calculation",
+)
+args = parser.parse_args()
- return ret
+config = ProjectConfig()
+config.version = str(args.version)
+version_num = VERSIONS.index(config.version)
-def make_asm_list(path: str, asm_includes: List[AsmInclude]):
- with open(path, 'wb') as f:
- pickle.dump(
- [
- int(inc.addr, 16)
- for inc in asm_includes
- ],
- f
- )
+# Apply arguments
+config.build_dir = args.build_dir
+config.dtk_path = args.dtk
+config.objdiff_path = args.objdiff
+config.binutils_path = args.binutils
+config.compilers_path = args.compilers
+config.generate_map = args.map
+config.non_matching = args.non_matching
+config.sjiswrap_path = args.sjiswrap
+config.progress = args.progress
+if not is_windows():
+ config.wrapper = args.wrapper
+# Don't build asm unless we're --non-matching
+if not config.non_matching:
+ config.asm_dir = None
-forcefiles = []
+# Tool versions
+config.binutils_tag = "2.42-1"
+config.compilers_tag = "20240706"
+config.dtk_tag = "v1.2.0"
+config.objdiff_tag = "v2.3.4"
+config.sjiswrap_tag = "v1.2.0"
+config.wibo_tag = "0.6.11"
-def remove_prefix(text, prefix):
- if text.startswith(prefix):
- return text[len(prefix):]
- return text
+# Project
+config.config_path = Path("config") / config.version / "config.yml"
+config.check_sha_path = Path("config") / config.version / "build.sha1"
+config.asflags = [
+ "-mgekko",
+ "--strip-local-absolute",
+ "-I include",
+ f"-I build/{config.version}/include",
+ f"-I build/{config.version}/bin/assets", # needed for JUTResFONT_Ascfont_fix12
+ f"--defsym version={version_num}",
+]
+config.ldflags = [
+ "-fp hardware",
+ "-nodefaults",
+ "-warn off",
+]
+if args.debug:
+ config.ldflags.append("-g")
+if args.map:
+ config.ldflags.append("-nomapunused")
-def make_objdiff_json(sources: List[Source]):
- data = {
- 'min_version' : "0.4.3",
- 'custom_make' : "ninja",
- 'target_dir' : f"{c.EXPECTED}/build",
- 'base_dir' : f"{c.BUILDDIR}",
- 'build_target' : False,
- 'objects' : [
- {
- 'path' : remove_prefix(src.o_path, "$builddir/"),
- 'name' : src.src_path,
- }
- for src in sources
- if src.decompiled
- ]
+# Use for any additional files that should cause a re-configure when modified
+config.reconfig_deps = []
+
+# Base flags, common to most GC/Wii games.
+# Generally leave untouched, with overrides added below.
+cflags_base = [
+ # Platform Definitions
+ "-nodefaults",
+ "-proc gekko",
+ "-align powerpc",
+ "-enum int",
+ # Multibyte Definitions
+ "-multibyte",
+ "-char unsigned",
+ # Gekko Specific Definitions
+ "-fp hardware",
+ "-Cpp_exceptions off",
+ '-pragma "cats off"',
+ # Default compiler flags (turn off if needed)
+ # "-W all",
+ # "-O4,p",
+ # "-inline auto",
+ '-pragma "warn_notinlined off"',
+ # Helpful linker flags
+ "-maxerrors 1",
+ "-nosyspath",
+ # dtk-specific includes
+ "-i include",
+ f"-i build/{config.version}/include",
+ f"-DVERSION={version_num}",
+]
+
+# Debug flags
+if args.debug:
+ cflags_base.extend(["-sym on", "-DDEBUG=1", "-D_DEBUG"])
+else:
+ cflags_base.extend(["-sym on", "-DDEBUG=0", "-DNDEBUG"])
+
+cflags_common = [
+ # Needed for N64 SDK
+ "-d _LANGUAGE_C",
+ "-d F3DEX_GBI_2",
+ # Project-specific stuff
+ "-d MUST_MATCH",
+]
+
+# DOL flags
+cflags_static = [
+ *cflags_base,
+ *cflags_common,
+ "-O4,s",
+]
+
+# Metrowerks library flags
+cflags_runtime = [
+ *cflags_base,
+ "-O4,p",
+ "-inline all",
+]
+
+# REL flags
+cflags_foresta = [
+ *cflags_base,
+ *cflags_common,
+ "-O4,s",
+ "-sdata 0",
+ "-sdata2 0",
+ "-d IS_REL",
+]
+
+config.linker_version = "GC/1.3.2"
+
+
+# Helper function for Dolphin libraries
+def DolphinLib(lib_name: str, objects: List[Object]) -> Dict[str, Any]:
+ return {
+ "lib": lib_name,
+ "mw_version": "GC/1.2.5n",
+ "cflags": [*cflags_runtime],
+ "progress_category": "sdk",
+ "src_dir": "src/static",
+ "objects": objects,
}
- with open("objdiff.json", 'w') as f:
- json.dump(data, f, indent=4)
-dol_sources = load_sources(c.DOL_CTX)
-dol_gen_includes = find_gen_includes(dol_sources)
-make_asm_list(c.DOL_ASM_LIST, dol_gen_includes[AsmInclude])
-rel_sources = load_sources(c.REL_CTX)
-rel_gen_includes = find_gen_includes(rel_sources)
-make_asm_list(c.REL_ASM_LIST, rel_gen_includes[AsmInclude])
-
-make_objdiff_json(dol_sources + rel_sources)
-
-##########
-# Builds #
-##########
-
-n.build(
- c.EXTERNS,
- rule = "relextern",
- inputs = c.REL_YML
-)
-
-n.build(
- f"{c.OUTDIR}/forest_1st.arc",
- rule = "arctool",
- inputs = f"{c.FOREST_1STDIR}"
-)
-
-n.build(
- f"{c.OUTDIR}/forest_2nd.arc",
- rule = "arctool",
- inputs = f"{c.FOREST_2NDDIR}"
-)
-
-n.build(
- [c.REL_LABELS, c.REL_RELOCS],
- rule = "analyse",
- inputs = c.REL_YML,
- implicit = [c.ANALYSIS_OVERRIDES, c.EXTERNS],
- variables = {
- "analysisflags" : "$ppcdis_analysis_flags"
+def JSystemLib(lib_name: str, objects: List[Object]) -> Dict[str, Any]:
+ return {
+ "lib": lib_name,
+ "mw_version": "GC/1.3.2",
+ "cflags": [*cflags_base, "-O4,s", "-char signed"],
+ "progress_category": "jsystem",
+ "src_dir": "src/static",
+ "objects": objects,
}
-)
-n.build(
- [c.DOL_LABELS, c.DOL_RELOCS],
- rule = "analyse",
- inputs = c.DOL_YML,
- implicit = [c.ANALYSIS_OVERRIDES, c.EXTERNS],
- variables = {
- "analysisflags" : f"$ppcdis_analysis_flags"
+
+# Helper function for REL script objects
+def Rel(lib_name: str, objects: List[Object]) -> Dict[str, Any]:
+ return {
+ "lib": lib_name,
+ "mw_version": "GC/1.3.2r",
+ "cflags": cflags_foresta,
+ "progress_category": "game",
+ "objects": objects,
}
-)
-for cl, includes in dol_gen_includes.items():
- cl.build(includes)
-for cl, includes in rel_gen_includes.items():
- cl.build(includes)
+Matching = True # Object matches and should be linked
+NonMatching = False # Object does not match and should not be linked
+Equivalent = (
+ config.non_matching
+) # Object should be linked when configured with --non-matching
-dol_gen_asm = []
-for source in dol_sources:
- if isinstance(source, GenAsmSource):
- dol_gen_asm.append(source)
- else:
- source.build()
-GenAsmSource.batch_build(dol_gen_asm)
-rel_gen_asm = []
-for source in rel_sources:
- if isinstance(source, GenAsmSource):
- rel_gen_asm.append(source)
- else:
- source.build()
-GenAsmSource.batch_build(rel_gen_asm)
+# Object is only matching for specific versions
+def MatchingFor(*versions):
+ return config.version in versions
-n.build(
- c.DOL_LCF_TEMP,
- rule="forceactivegen",
- inputs=[c.DOL_LCF_TEMPLATE, c.DOL_YML, c.DOL_LABELS, c.GAME_SYMBOLS, c.EXTERNS]
-)
-n.build(
- c.DOL_LCF,
- rule="forcefiles",
- inputs=c.DOL_LCF_TEMP,
- variables={
- "forcefiles" : ' '.join(forcefiles)
- }
-)
+config.warn_missing_config = False
+config.warn_missing_source = False
+config.libs = [
+ {
+ "lib": "boot",
+ "mw_version": config.linker_version,
+ "cflags": [
+ *cflags_static,
+ "-sdata 0",
+ "-sdata2 0",
+ "-inline on",
+ ],
+ "progress_category": "game",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "boot.c"),
+ Object(Matching, "jsyswrap.cpp"),
+ Object(Matching, "version.c"),
+ Object(Matching, "initial_menu.c"),
+ Object(Matching, "dvderr.c", extra_cflags=["-pool off"]),
+ Object(Matching, "bootdata/gam_win1.c"),
+ Object(Matching, "bootdata/gam_win2.c"),
+ Object(Matching, "bootdata/gam_win3.c"),
+ Object(Matching, "bootdata/logo_nin.c"),
+ Object(Matching, "nintendo_hi_0.c"),
+ Object(Matching, "GBA2/JoyBoot.c"),
+ ],
+ },
+ {
+ "lib": "libforest",
+ "mw_version": config.linker_version,
+ "cflags": cflags_static,
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "libforest/emu64/emu64.cc"),
+ Object(Matching, "libforest/osreport.c"),
+ Object(Matching, "libforest/fault.c"),
+ Object(Matching, "libforest/ReconfigBATs.c"),
+ ],
+ },
+ {
+ "lib": "libu64",
+ "mw_version": config.linker_version,
+ "cflags": cflags_static,
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "libu64/debug.c"),
+ Object(Matching, "libu64/gfxprint.c"),
+ Object(Matching, "libu64/gfxprint_data.c"),
+ Object(Matching, "libu64/pad.c"),
+ ],
+ },
+ {
+ "lib": "libc64",
+ "mw_version": config.linker_version,
+ "cflags": cflags_static,
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "libc64/__osMalloc.c"),
+ Object(Matching, "libc64/aprintf.c"),
+ Object(Matching, "libc64/math64.c"),
+ Object(Matching, "libc64/qrand.c"),
+ Object(Matching, "libc64/sleep.c"),
+ Object(Matching, "libc64/sprintf.c"),
+ Object(Matching, "libc64/malloc.c"),
+ ],
+ },
+ {
+ "lib": "libultra",
+ "mw_version": config.linker_version,
+ "cflags": [*cflags_static, "-O4,p", "-inline on"],
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "libultra/contquery.c"),
+ Object(NonMatching, "libultra/contreaddata.c"),
+ Object(NonMatching, "libultra/controller.c"),
+ Object(NonMatching, "libultra/contsetch.c"),
+ Object(NonMatching, "libultra/coss.c"),
+ Object(NonMatching, "libultra/createmesgqueue.c"),
+ Object(NonMatching, "libultra/createthread.c"),
+ Object(NonMatching, "libultra/destroythread.c"),
+ Object(NonMatching, "libultra/getthreadid.c"),
+ Object(NonMatching, "libultra/gettime.c"),
+ Object(NonMatching, "libultra/initialize.c"),
+ Object(NonMatching, "libultra/lookat.c"),
+ Object(NonMatching, "libultra/gu/lookathil.c"),
+ Object(NonMatching, "libultra/gu/mtxutil.c"),
+ Object(Matching, "libultra/gu/normalize.c"),
+ Object(NonMatching, "libultra/gu/ortho.c"),
+ Object(NonMatching, "libultra/perspective.c"),
+ Object(NonMatching, "libultra/recvmesg.c"),
+ Object(NonMatching, "libultra/rotate.c"),
+ Object(Matching, "libultra/gu/scale.c"),
+ Object(NonMatching, "libultra/sendmesg.c"),
+ Object(NonMatching, "libultra/setthreadpri.c"),
+ Object(NonMatching, "libultra/settimer.c"),
+ Object(NonMatching, "libultra/shutdown.c"),
+ Object(Matching, "libultra/gu/sins.c"),
+ Object(NonMatching, "libultra/startthread.c"),
+ Object(NonMatching, "libultra/stoptimer.c"),
+ Object(NonMatching, "libultra/timerintr.c"),
+ Object(Matching, "libultra/gu/translate.c"),
+ Object(Matching, "libultra/ultra.c"),
+ Object(NonMatching, "libultra/xldtob.c"),
+ Object(NonMatching, "libultra/xlitob.c"),
+ Object(NonMatching, "libultra/xprintf.c"),
+ ],
+ },
+ {
+ "lib": "libjsys",
+ "mw_version": config.linker_version,
+ "cflags": cflags_static,
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "libjsys/jsyswrapper.cpp"),
+ ],
+ },
+ DolphinLib(
+ "ai",
+ [
+ Object(NonMatching, "dolphin/ai/ai.c"),
+ ],
+ ),
+ DolphinLib(
+ "ar",
+ [
+ Object(NonMatching, "dolphin/ar/ar.c"),
+ Object(NonMatching, "dolphin/ar/arq.c"),
+ ],
+ ),
+ DolphinLib(
+ "amcstubs",
+ [
+ Object(Matching, "dolphin/amcstubs/AmcExi2Stubs.c"),
+ ],
+ ),
+ DolphinLib(
+ "base",
+ [
+ Object(Matching, "dolphin/base/PPCArch.c"),
+ ],
+ ),
+ DolphinLib(
+ "card",
+ [
+ Object(NonMatching, "dolphin/card/CARDBios.c"),
+ Object(NonMatching, "dolphin/card/CARDBlock.c"),
+ Object(NonMatching, "dolphin/card/CARDCheck.c"),
+ Object(NonMatching, "dolphin/card/CARDCreate.c"),
+ Object(NonMatching, "dolphin/card/CARDDelete.c"),
+ Object(NonMatching, "dolphin/card/CARDDir.c"),
+ Object(NonMatching, "dolphin/card/CARDFormat.c"),
+ Object(NonMatching, "dolphin/card/CARDMount.c"),
+ Object(NonMatching, "dolphin/card/CARDNet.c"),
+ Object(NonMatching, "dolphin/card/CARDOpen.c"),
+ Object(NonMatching, "dolphin/card/CARDRdwr.c"),
+ Object(NonMatching, "dolphin/card/CARDRead.c"),
+ Object(NonMatching, "dolphin/card/CARDRename.c"),
+ Object(NonMatching, "dolphin/card/CARDStat.c"),
+ Object(NonMatching, "dolphin/card/CARDStatEx.c"),
+ Object(NonMatching, "dolphin/card/CARDWrite.c"),
+ ],
+ ),
+ DolphinLib(
+ "db",
+ [
+ Object(NonMatching, "dolphin/db/db.c"),
+ ],
+ ),
+ DolphinLib(
+ "dsp",
+ [
+ Object(NonMatching, "dolphin/dsp/dsp.c"),
+ ],
+ ),
+ DolphinLib(
+ "dvd",
+ [
+ Object(NonMatching, "dolphin/dvd/dvd.c"),
+ Object(NonMatching, "dolphin/dvd/dvderror.c"),
+ Object(NonMatching, "dolphin/dvd/dvdfs.c"),
+ Object(NonMatching, "dolphin/dvd/dvdlow.c"),
+ Object(NonMatching, "dolphin/dvd/dvdqueue.c"),
+ Object(NonMatching, "dolphin/dvd/fstload.c"),
+ ],
+ ),
+ DolphinLib(
+ "exi",
+ [
+ Object(NonMatching, "dolphin/exi/EXIBios.c"),
+ Object(NonMatching, "dolphin/exi/EXIUart.c"),
+ ],
+ ),
+ DolphinLib(
+ "gba",
+ [
+ Object(NonMatching, "dolphin/gba/GBA.c"),
+ Object(NonMatching, "dolphin/gba/GBAGetProcessStatus.c"),
+ Object(NonMatching, "dolphin/gba/GBAJoyBoot.c"),
+ Object(NonMatching, "dolphin/gba/GBARead.c"),
+ Object(NonMatching, "dolphin/gba/GBAWrite.c"),
+ Object(NonMatching, "dolphin/gba/GBAXfer.c"),
+ ],
+ ),
+ DolphinLib(
+ "gx",
+ [
+ Object(NonMatching, "dolphin/gx/GXAttr.c"),
+ Object(NonMatching, "dolphin/gx/GXBump.c"),
+ Object(NonMatching, "dolphin/gx/GXDisplayList.c"),
+ Object(NonMatching, "dolphin/gx/GXFifo.c"),
+ Object(NonMatching, "dolphin/gx/GXFrameBuf.c"),
+ Object(NonMatching, "dolphin/gx/GXGeometry.c"),
+ Object(NonMatching, "dolphin/gx/GXInit.c"),
+ Object(NonMatching, "dolphin/gx/GXLight.c"),
+ Object(NonMatching, "dolphin/gx/GXMisc.c"),
+ Object(NonMatching, "dolphin/gx/GXPerf.c"),
+ Object(NonMatching, "dolphin/gx/GXPixel.c"),
+ Object(Matching, "dolphin/gx/GXStubs.c"),
+ Object(NonMatching, "dolphin/gx/GXTev.c"),
+ Object(NonMatching, "dolphin/gx/GXTexture.c"),
+ Object(NonMatching, "dolphin/gx/GXTransform.c"),
+ ],
+ ),
+ DolphinLib(
+ "mtx",
+ [
+ Object(NonMatching, "dolphin/mtx/mtx.c"),
+ Object(NonMatching, "dolphin/mtx/mtx44.c"),
+ Object(NonMatching, "dolphin/mtx/mtxvec.c"),
+ Object(NonMatching, "dolphin/mtx/vec.c"),
+ ],
+ ),
+ DolphinLib(
+ "OdemuExi2",
+ [
+ Object(NonMatching, "dolphin/OdemuExi2/DebuggerDriver.c"),
+ ],
+ ),
+ DolphinLib(
+ "odenotstub",
+ [
+ Object(Matching, "dolphin/odenotstub/odenotstub.c"),
+ ],
+ ),
+ DolphinLib(
+ "os",
+ [
+ Object(Matching, "dolphin/os/__ppc_eabi_init.cpp"),
+ Object(Matching, "dolphin/os/__start.c"),
+ Object(NonMatching, "dolphin/os/OS.c"),
+ Object(Matching, "dolphin/os/OSAlarm.c"),
+ Object(NonMatching, "dolphin/os/OSAlloc.c"),
+ Object(Matching, "dolphin/os/OSArena.c"),
+ Object(Matching, "dolphin/os/OSAudioSystem.c"),
+ Object(Matching, "dolphin/os/OSCache.c"),
+ Object(Matching, "dolphin/os/OSContext.c"),
+ Object(Matching, "dolphin/os/OSError.c"),
+ Object(NonMatching, "dolphin/os/OSFont.c"),
+ Object(NonMatching, "dolphin/os/OSInterrupt.c"),
+ Object(NonMatching, "dolphin/os/OSLink.c"),
+ Object(NonMatching, "dolphin/os/OSMemory.c"),
+ Object(NonMatching, "dolphin/os/OSMessage.c"),
+ Object(NonMatching, "dolphin/os/OSMutex.c"),
+ Object(NonMatching, "dolphin/os/OSReboot.c"),
+ Object(NonMatching, "dolphin/os/OSReset.c"),
+ Object(NonMatching, "dolphin/os/OSResetSW.c"),
+ Object(Matching, "dolphin/os/OSRtc.c"),
+ Object(NonMatching, "dolphin/os/OSSync.c"),
+ Object(NonMatching, "dolphin/os/OSThread.c"),
+ Object(NonMatching, "dolphin/os/OSTime.c"),
+ ],
+ ),
+ DolphinLib(
+ "pad",
+ [
+ Object(NonMatching, "dolphin/pad/Pad.c"),
+ Object(NonMatching, "dolphin/pad/Padclamp.c"),
+ ],
+ ),
+ DolphinLib(
+ "si",
+ [
+ Object(NonMatching, "dolphin/si/SIBios.c"),
+ Object(NonMatching, "dolphin/si/SISamplingRate.c"),
+ ],
+ ),
+ DolphinLib(
+ "vi",
+ [
+ Object(NonMatching, "dolphin/vi/vi.c"),
+ ],
+ ),
+ JSystemLib(
+ "J2DGraph",
+ [
+ Object(NonMatching, "JSystem/J2DGraph/J2DGrafContext.cpp"),
+ Object(NonMatching, "JSystem/J2DGraph/J2DOrthoGraph.cpp"),
+ ],
+ ),
+ JSystemLib(
+ "JFramework",
+ [
+ Object(NonMatching, "JSystem/JFramework/JFWDisplay.cpp"),
+ Object(NonMatching, "JSystem/JFramework/JFWSystem.cpp"),
+ ],
+ ),
+ JSystemLib(
+ "JGadget",
+ [
+ Object(Matching, "JSystem/JGadget/linklist.cpp"),
+ ],
+ ),
+ JSystemLib(
+ "JKernel",
+ [
+ Object(Matching, "JSystem/JKernel/JKRAram.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRAramArchive.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRAramBlock.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRAramHeap.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRAramPiece.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRAramStream.cpp"),
+ Object(NonMatching, "JSystem/JKernel/JKRArchivePri.cpp"),
+ Object(NonMatching, "JSystem/JKernel/JKRArchivePub.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRCompArchive.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDecomp.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDisposer.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDvdAramRipper.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDvdArchive.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDvdFile.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRDvdRipper.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRExpHeap.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRFileFinder.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRFileLoader.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRHeap.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRMemArchive.cpp"),
+ Object(Matching, "JSystem/JKernel/JKRThread.cpp"),
+ ],
+ ),
+ JSystemLib(
+ "JSupport",
+ [
+ Object(NonMatching, "JSystem/JSupport/JSUFileStream.cpp"),
+ Object(Matching, "JSystem/JSupport/JSUInputStream.cpp"),
+ Object(NonMatching, "JSystem/JSupport/JSUList.cpp"),
+ ],
+ ),
+ JSystemLib(
+ "JUtility",
+ [
+ Object(NonMatching, "JSystem/JUtility/JUTAssert.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTConsole.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTDbPrint.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTDirectFile.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTDirectPrint.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTException.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTFader.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTFont.cpp"),
+ Object(Matching, "JSystem/JUtility/JUTFontData_Ascfont_fix12.s"),
+ Object(Matching, "JSystem/JUtility/JUTGamePad.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTGraphFifo.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTProcBar.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTResFont.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTVideo.cpp"),
+ Object(NonMatching, "JSystem/JUtility/JUTXfb.cpp"),
+ ],
+ ),
+ {
+ "lib": "jaudio_NES",
+ "mw_version": config.linker_version,
+ "cflags": [*cflags_static, "-lang=c++", "-O4,s", "-str readonly"],
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "jaudio_NES/aramcall.c"),
+ Object(NonMatching, "jaudio_NES/audioconst.c"),
+ Object(NonMatching, "jaudio_NES/audiotable.c"),
+ Object(NonMatching, "jaudio_NES/audiowork.c"),
+ Object(NonMatching, "jaudio_NES/bankdrv.c"),
+ Object(NonMatching, "jaudio_NES/bankread.c"),
+ Object(NonMatching, "jaudio_NES/centcalc.c"),
+ Object(NonMatching, "jaudio_NES/channel.c"),
+ Object(NonMatching, "jaudio_NES/cmdstack.c"),
+ Object(NonMatching, "jaudio_NES/connect.c"),
+ Object(NonMatching, "jaudio_NES/driver.c"),
+ Object(NonMatching, "jaudio_NES/driverinterface.c"),
+ Object(NonMatching, "jaudio_NES/dsp_cardunlock.c"),
+ Object(NonMatching, "jaudio_NES/dsp_GBAKey.c"),
+ Object(NonMatching, "jaudio_NES/dspdriver.c"),
+ Object(NonMatching, "jaudio_NES/dspinterface.c"),
+ Object(NonMatching, "jaudio_NES/effect.c"),
+ Object(NonMatching, "jaudio_NES/fat.c"),
+ Object(NonMatching, "jaudio_NES/fxinterface.c"),
+ Object(NonMatching, "jaudio_NES/heapctrl.c"),
+ Object(NonMatching, "jaudio_NES/ipldec.c"),
+ Object(NonMatching, "jaudio_NES/ja_calc.c"),
+ Object(NonMatching, "jaudio_NES/jammain_2.c"),
+ Object(NonMatching, "jaudio_NES/jamosc.c"),
+ Object(NonMatching, "jaudio_NES/memory.c"),
+ Object(NonMatching, "jaudio_NES/midplay.c"),
+ Object(NonMatching, "jaudio_NES/noteon.c"),
+ Object(NonMatching, "jaudio_NES/oneshot.c"),
+ Object(NonMatching, "jaudio_NES/rate.c"),
+ Object(NonMatching, "jaudio_NES/rspsim.c"),
+ Object(NonMatching, "jaudio_NES/seqsetup.c"),
+ Object(NonMatching, "jaudio_NES/system.c"),
+ Object(NonMatching, "jaudio_NES/tables.c"),
+ Object(NonMatching, "jaudio_NES/waveread.c"),
+ ],
+ },
+ {
+ "lib": "jaudio_NES_game",
+ "mw_version": config.linker_version,
+ "cflags": [*cflags_static, "-O0", "-inline off", "-lang=c++"],
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "jaudio_NES/game/audioheaders.c"),
+ Object(Matching, "jaudio_NES/game/dummyprobe.c"),
+ Object(NonMatching, "jaudio_NES/game/emusound.c"),
+ Object(NonMatching, "jaudio_NES/game/game64.c"),
+ Object(Matching, "jaudio_NES/game/kappa.c"),
+ Object(Matching, "jaudio_NES/game/melody.c"),
+ Object(Matching, "jaudio_NES/game/radio.c"),
+ Object(Matching, "jaudio_NES/game/rhythm.c"),
+ Object(Matching, "jaudio_NES/game/staff.c"),
+ Object(Matching, "jaudio_NES/game/verysimple.c"),
+ ],
+ },
+ {
+ "lib": "jaudio_NES_internal",
+ "mw_version": config.linker_version,
+ "cflags": [
+ *cflags_static,
+ "-lang=c++",
+ "-common on",
+ "-func_align 32",
+ "-inline off",
+ "-str readonly",
+ "-char signed",
+ "-sdata 8",
+ "-sdata2 8",
+ ],
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "jaudio_NES/internal/aictrl.c"),
+ Object(Matching, "jaudio_NES/internal/astest.c"),
+ Object(Matching, "jaudio_NES/internal/audiothread.c"),
+ Object(Matching, "jaudio_NES/internal/cpubuf.c"),
+ Object(Matching, "jaudio_NES/internal/dspboot.c"),
+ Object(Matching, "jaudio_NES/internal/dspbuf.c"),
+ Object(Matching, "jaudio_NES/internal/dspproc.c"),
+ Object(Matching, "jaudio_NES/internal/dummyrom.c"),
+ Object(Matching, "jaudio_NES/internal/dvdthread.c"),
+ Object(Matching, "jaudio_NES/internal/neosthread.c"),
+ Object(Matching, "jaudio_NES/internal/os.c"),
+ Object(Matching, "jaudio_NES/internal/playercall.c"),
+ Object(Matching, "jaudio_NES/internal/random.c"),
+ Object(Matching, "jaudio_NES/internal/sample.c"),
+ Object(Matching, "jaudio_NES/internal/streamctrl.c"),
+ Object(Matching, "jaudio_NES/internal/sub_sys.c"),
+ Object(Matching, "jaudio_NES/internal/track.c"),
+ ],
+ },
+ {
+ "lib": "Famicom",
+ "mw_version": "GC/1.3.2r",
+ "cflags": [
+ *cflags_static,
+ "-sdata 0",
+ "-sdata2 0",
+ "-sym on",
+ ],
+ "progress_category": "library",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "Famicom/ks_nes_core.cpp"),
+ Object(NonMatching, "Famicom/ks_nes_draw.cpp"),
+ # TODO: get ~J2DOrthoGraph's dtor in here somehow? 0x800468fc
+ # also add in JUTGamePad::getPortStatus when JUTGamePad is linked?
+ Object(NonMatching, "Famicom/famicom.cpp"),
+ Object(Matching, "Famicom/famicom_nesinfo.cpp"),
+ ],
+ },
+ {
+ "lib": "MSL_C.PPCEABI.bare.H",
+ "mw_version": config.linker_version,
+ "cflags": cflags_runtime,
+ "progress_category": "sdk",
+ "src_dir": "src/static",
+ "objects": [
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/abort_exit.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/ansi_files.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/ansi_fp.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/arith.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/buffer_io.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/ctype.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/direct_io.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/e_acos.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/e_atan2.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/e_rem_pio2.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/errno.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/file_io.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/FILE_POS.C"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/float.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/k_cos.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/k_rem_pio2.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/k_sin.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/mbstring.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/mem.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/mem_funcs.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/misc_io.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/printf.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/rand.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_atan.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_copysign.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_cos.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_floor.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_frexp.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_ldexp.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_modf.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/s_sin.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/scanf.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/string.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/strtoul.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/uart_console_io.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/w_acos.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/w_atan2.c"),
+ Object(NonMatching, "MSL_C.PPCEABI.bare.H/wchar_io.c"),
+ ],
+ },
+ {
+ "lib": "Runtime.PPCEABI.H",
+ "mw_version": config.linker_version,
+ "cflags": cflags_runtime,
+ "progress_category": "sdk",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "Runtime.PPCEABI.H/__init_cpp_exceptions.cpp"),
+ Object(Matching, "Runtime.PPCEABI.H/__mem.c"),
+ Object(NonMatching, "Runtime.PPCEABI.H/__va_arg.c"),
+ Object(NonMatching, "Runtime.PPCEABI.H/CPlusLibPPC.cp"),
+ Object(NonMatching, "Runtime.PPCEABI.H/Gecko_ExceptionPPC.cp"),
+ Object(Matching, "Runtime.PPCEABI.H/global_destructor_chain.c"),
+ Object(NonMatching, "Runtime.PPCEABI.H/NMWException.cp"),
+ Object(NonMatching, "Runtime.PPCEABI.H/ptmf.c"),
+ Object(NonMatching, "Runtime.PPCEABI.H/runtime.c"),
+ ],
+ },
+ {
+ "lib": "TRK_MINNOW_DOLPHIN",
+ "mw_version": "GC/1.3",
+ "cflags": [
+ *cflags_static,
+ "-O4,p",
+ "-sdata 0",
+ "-sdata2 0",
+ "-inline deferred",
+ "-rostr",
+ "-char signed",
+ ],
+ "progress_category": "sdk",
+ "src_dir": "src/static",
+ "objects": [
+ Object(Matching, "TRK_MINNOW_DOLPHIN/__exception.s"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/dispatch.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/dolphin_trk.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/dolphin_trk_glue.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/flush_cache.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/main_TRK.c"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/mainloop.c"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/mem_TRK.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/mpc_7xx_603e.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/msg.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/msgbuf.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/msghndlr.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/mslsupp.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/mutex_TRK.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/notify.c"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/nubevent.c"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/nubinit.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/serpoll.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/support.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/targcont.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/target_options.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/targimpl.c"),
+ Object(NonMatching, "TRK_MINNOW_DOLPHIN/targsupp.s"),
+ Object(Matching, "TRK_MINNOW_DOLPHIN/usr_put.c"),
+ ],
+ },
+ Rel(
+ "foresta",
+ [
+ Object(Matching, "audio.c"),
+ Object(Matching, "bg_cherry_item.c"),
+ Object(Matching, "bg_item.c"),
+ Object(Matching, "bg_police_item.c"),
+ Object(Matching, "bg_post_item.c"),
+ Object(Matching, "bg_winter_item.c"),
+ Object(Matching, "bg_xmas_item.c"),
+ Object(Matching, "c_keyframe.c"),
+ Object(Matching, "ev_cherry_manager.c"),
+ Object(Matching, "evw_anime.c"),
+ Object(Matching, "executor.c"),
+ Object(Matching, "f_furniture.c"),
+ Object(Matching, "famicom_emu.c"),
+ Object(Matching, "first_game.c"),
+ Object(Matching, "game.c"),
+ Object(Matching, "gamealloc.c"),
+ Object(Matching, "gfxalloc.c"),
+ Object(Matching, "graph.c"),
+ Object(Matching, "irqmgr.c"),
+ Object(Matching, "lb_reki.c"),
+ Object(Matching, "lb_rtc.c"),
+ Object(Matching, "main.c"),
+ Object(Matching, "padmgr.c"),
+ Object(Matching, "player_select.c"),
+ Object(Matching, "PreRender.c"),
+ Object(NonMatching, "s_cpak.c"),
+ Object(Matching, "save_menu.c"),
+ Object(Matching, "second_game.c"),
+ Object(Matching, "THA_GA.c"),
+ Object(Matching, "TwoHeadArena.c"),
+ Object(Matching, "zurumode.c"),
+ ],
+ ),
+ Rel(
+ "actor",
+ [
+ Object(Matching, "actor/ac_airplane.c"),
+ Object(Matching, "actor/ac_animal_logo.c"),
+ Object(NonMatching, "actor/ac_ant.c"),
+ Object(Matching, "actor/ac_aprilfool_control.c"),
+ Object(NonMatching, "actor/ac_arrange_ftr.c"),
+ Object(Matching, "actor/ac_arrange_room.c"),
+ Object(Matching, "actor/ac_ball.c"),
+ Object(NonMatching, "actor/ac_balloon.c"),
+ Object(NonMatching, "actor/ac_bee.c"),
+ Object(Matching, "actor/ac_birth_control.c"),
+ Object(Matching, "actor/ac_boat.c"),
+ Object(Matching, "actor/ac_boat_demo.c"),
+ Object(Matching, "actor/ac_boxManager.c"),
+ Object(Matching, "actor/ac_boxMove.c"),
+ Object(Matching, "actor/ac_boxTrick01.c"),
+ Object(Matching, "actor/ac_br_shop.c"),
+ Object(Matching, "actor/ac_bridge_a.c"),
+ Object(NonMatching, "actor/ac_broker_design.c"),
+ Object(Matching, "actor/ac_buggy.c"),
+ Object(NonMatching, "actor/ac_conveni.c"),
+ Object(Matching, "actor/ac_cottage.c"),
+ Object(NonMatching, "actor/ac_count02.c"),
+ Object(NonMatching, "actor/ac_countdown.c"),
+ Object(NonMatching, "actor/ac_countdown_npc0.c"),
+ Object(NonMatching, "actor/ac_countdown_npc1.c"),
+ Object(NonMatching, "actor/ac_depart.c"),
+ Object(Matching, "actor/ac_douzou.c"),
+ Object(Matching, "actor/ac_dummy.c"),
+ Object(Matching, "actor/ac_dump.c"),
+ Object(NonMatching, "actor/ac_effectbg.c"),
+ Object(NonMatching, "actor/ac_ev_angler.c"),
+ Object(NonMatching, "actor/ac_ev_artist.c"),
+ Object(Matching, "actor/ac_ev_broker.c"),
+ Object(NonMatching, "actor/ac_ev_broker2.c"),
+ Object(NonMatching, "actor/ac_ev_carpetPeddler.c"),
+ Object(Matching, "actor/ac_ev_castaway.c"),
+ Object(NonMatching, "actor/ac_ev_designer.c"),
+ Object(Matching, "actor/ac_ev_dokutu.c"),
+ Object(NonMatching, "actor/ac_ev_dozaemon.c"),
+ Object(Matching, "actor/ac_ev_ghost.c"),
+ Object(Matching, "actor/ac_ev_gypsy.c"),
+ Object(Matching, "actor/ac_ev_kabuPeddler.c"),
+ Object(Matching, "actor/ac_ev_majin.c"),
+ Object(NonMatching, "actor/ac_ev_miko.c"),
+ Object(NonMatching, "actor/ac_ev_pumpkin.c"),
+ Object(Matching, "actor/ac_ev_santa.c"),
+ Object(Matching, "actor/ac_ev_soncho.c"),
+ Object(NonMatching, "actor/ac_ev_soncho2.c"),
+ Object(NonMatching, "actor/ac_ev_speech_soncho.c"),
+ Object(NonMatching, "actor/ac_ev_turkey.c"),
+ Object(NonMatching, "actor/ac_ev_yomise.c"),
+ Object(NonMatching, "actor/ac_event_manager.c"),
+ Object(Matching, "actor/ac_fallS.c"),
+ Object(Matching, "actor/ac_fallSESW.c"),
+ Object(Matching, "actor/ac_field_draw.c"),
+ Object(NonMatching, "actor/ac_fieldm_draw.c"),
+ Object(Matching, "actor/ac_flag.c"),
+ Object(Matching, "actor/ac_fuusen.c"),
+ Object(NonMatching, "actor/ac_garagara.c"),
+ Object(NonMatching, "actor/ac_ghog.c"),
+ Object(Matching, "actor/ac_go_home_npc.c"),
+ Object(Matching, "actor/ac_goza.c"),
+ Object(Matching, "actor/ac_groundhog_control.c"),
+ Object(NonMatching, "actor/ac_groundhog_npc0.c"),
+ Object(NonMatching, "actor/ac_gyo_kage.c"),
+ Object(NonMatching, "actor/ac_gyo_kaseki.c"),
+ Object(NonMatching, "actor/ac_gyo_release.c"),
+ Object(NonMatching, "actor/ac_gyo_test.c"),
+ Object(NonMatching, "actor/ac_gyoei.c"),
+ Object(NonMatching, "actor/ac_halloween_npc.c"),
+ Object(NonMatching, "actor/ac_hanabi_npc0.c"),
+ Object(NonMatching, "actor/ac_hanabi_npc1.c"),
+ Object(NonMatching, "actor/ac_hanami_npc0.c"),
+ Object(NonMatching, "actor/ac_hanami_npc1.c"),
+ Object(Matching, "actor/ac_handOverItem.c"),
+ Object(Matching, "actor/ac_haniwa.c"),
+ Object(NonMatching, "actor/ac_harvest_npc0.c"),
+ Object(NonMatching, "actor/ac_harvest_npc1.c"),
+ Object(NonMatching, "actor/ac_hatumode_control.c"),
+ Object(NonMatching, "actor/ac_hatumode_npc0.c"),
+ Object(NonMatching, "actor/ac_house.c"),
+ Object(NonMatching, "actor/ac_house_clock.c"),
+ Object(NonMatching, "actor/ac_house_goki.c"),
+ Object(NonMatching, "actor/ac_htable.c"),
+ Object(Matching, "actor/ac_ins_amenbo.c"),
+ Object(Matching, "actor/ac_ins_batta.c"),
+ Object(Matching, "actor/ac_ins_chou.c"),
+ Object(Matching, "actor/ac_ins_dango.c"),
+ Object(Matching, "actor/ac_ins_goki.c"),
+ Object(Matching, "actor/ac_ins_hitodama.c"),
+ Object(NonMatching, "actor/ac_ins_hotaru.c"),
+ Object(Matching, "actor/ac_ins_ka.c"),
+ Object(Matching, "actor/ac_ins_kabuto.c"),
+ Object(NonMatching, "actor/ac_ins_kera.c"),
+ Object(NonMatching, "actor/ac_ins_mino.c"),
+ Object(NonMatching, "actor/ac_ins_semi.c"),
+ Object(NonMatching, "actor/ac_ins_tentou.c"),
+ Object(NonMatching, "actor/ac_ins_tonbo.c"),
+ Object(Matching, "actor/ac_insect.c"),
+ Object(Matching, "actor/ac_intro_demo.c"),
+ Object(Matching, "actor/ac_kago.c"),
+ Object(Matching, "actor/ac_kamakura.c"),
+ Object(NonMatching, "actor/ac_kamakura_indoor.c"),
+ Object(NonMatching, "actor/ac_kamakura_npc0.c"),
+ Object(Matching, "actor/ac_koinobori.c"),
+ Object(NonMatching, "actor/ac_lighthouse_switch.c"),
+ Object(Matching, "actor/ac_lotus.c"),
+ Object(NonMatching, "actor/ac_mailbox.c"),
+ Object(Matching, "actor/ac_mbg.c"),
+ Object(NonMatching, "actor/ac_mikanbox.c"),
+ Object(Matching, "actor/ac_mikuji.c"),
+ Object(Matching, "actor/ac_misin.c"),
+ Object(NonMatching, "actor/ac_mscore_control.c"),
+ Object(Matching, "actor/ac_mural.c"),
+ Object(Matching, "actor/ac_museum.c"),
+ Object(NonMatching, "actor/ac_museum_fish.c"),
+ Object(Matching, "actor/ac_museum_fossil.c"),
+ Object(NonMatching, "actor/ac_museum_indoor.c"),
+ Object(NonMatching, "actor/ac_museum_insect.c"),
+ Object(Matching, "actor/ac_museum_picture.c"),
+ Object(Matching, "actor/ac_my_house.c"),
+ Object(Matching, "actor/ac_my_indoor.c"),
+ Object(Matching, "actor/ac_my_room.c"),
+ Object(Matching, "actor/ac_nameplate.c"),
+ Object(NonMatching, "actor/ac_needlework_indoor.c"),
+ Object(Matching, "actor/ac_needlework_shop.c"),
+ Object(NonMatching, "actor/ac_normal_npc.c"),
+ Object(NonMatching, "actor/ac_npc.c"),
+ Object(NonMatching, "actor/ac_npc2.c"),
+ Object(NonMatching, "actor/ac_npc_conv_master.c"),
+ Object(Matching, "actor/ac_npc_curator.c"),
+ Object(NonMatching, "actor/ac_npc_depart_master.c"),
+ Object(Matching, "actor/ac_npc_engineer.c"),
+ Object(Matching, "actor/ac_npc_guide.c"),
+ Object(Matching, "actor/ac_npc_guide2.c"),
+ Object(NonMatching, "actor/ac_npc_hem.c"),
+ Object(NonMatching, "actor/ac_npc_majin.c"),
+ Object(NonMatching, "actor/ac_npc_majin2.c"),
+ Object(NonMatching, "actor/ac_npc_majin3.c"),
+ Object(NonMatching, "actor/ac_npc_majin4.c"),
+ Object(NonMatching, "actor/ac_npc_majin5.c"),
+ Object(NonMatching, "actor/ac_npc_mamedanuki.c"),
+ Object(NonMatching, "actor/ac_npc_mask_cat.c"),
+ Object(NonMatching, "actor/ac_npc_mask_cat2.c"),
+ Object(NonMatching, "actor/ac_npc_needlework.c"),
+ Object(Matching, "actor/ac_npc_p_sel.c"),
+ Object(NonMatching, "actor/ac_npc_p_sel2.c"),
+ Object(NonMatching, "actor/ac_npc_police.c"),
+ Object(NonMatching, "actor/ac_npc_police2.c"),
+ Object(NonMatching, "actor/ac_npc_post_girl.c"),
+ Object(NonMatching, "actor/ac_npc_post_man.c"),
+ Object(Matching, "actor/ac_npc_rcn_guide.c"),
+ Object(Matching, "actor/ac_npc_rcn_guide2.c"),
+ Object(NonMatching, "actor/ac_npc_restart.c"),
+ Object(Matching, "actor/ac_npc_rtc.c"),
+ Object(Matching, "actor/ac_npc_sendo.c"),
+ Object(NonMatching, "actor/ac_npc_shasho.c"),
+ Object(NonMatching, "actor/ac_npc_shop_master.c"),
+ Object(NonMatching, "actor/ac_npc_shop_mastersp.c"),
+ Object(NonMatching, "actor/ac_npc_sleep_obaba.c"),
+ Object(NonMatching, "actor/ac_npc_soncho.c"),
+ Object(NonMatching, "actor/ac_npc_station_master.c"),
+ Object(NonMatching, "actor/ac_npc_super_master.c"),
+ Object(NonMatching, "actor/ac_npc_totakeke.c"),
+ Object(Matching, "actor/ac_police_box.c"),
+ Object(Matching, "actor/ac_post_office.c"),
+ Object(NonMatching, "actor/ac_present_demo.c"),
+ Object(NonMatching, "actor/ac_present_npc.c"),
+ Object(Matching, "actor/ac_psnowman.c"),
+ Object(NonMatching, "actor/ac_pterminal.c"),
+ Object(Matching, "actor/ac_quest_manager.c"),
+ Object(Matching, "actor/ac_quest_talk_fj_init.c"),
+ Object(Matching, "actor/ac_quest_talk_greeting.c"),
+ Object(Matching, "actor/ac_quest_talk_init.c"),
+ Object(NonMatching, "actor/ac_quest_talk_island.c"),
+ Object(NonMatching, "actor/ac_quest_talk_normal_init.c"),
+ Object(Matching, "actor/ac_radio.c"),
+ Object(Matching, "actor/ac_reserve.c"),
+ Object(NonMatching, "actor/ac_reset_demo.c"),
+ Object(Matching, "actor/ac_ride_off_demo.c"),
+ Object(Matching, "actor/ac_rope.c"),
+ Object(Matching, "actor/ac_s_car.c"),
+ Object(Matching, "actor/ac_sample.c"),
+ Object(Matching, "actor/ac_set_manager.c"),
+ Object(NonMatching, "actor/ac_set_npc_manager.c"),
+ Object(Matching, "actor/ac_set_ovl_gyoei.c"),
+ Object(Matching, "actor/ac_set_ovl_insect.c"),
+ Object(Matching, "actor/ac_shop.c"),
+ Object(Matching, "actor/ac_shop_design.c"),
+ Object(Matching, "actor/ac_shop_goods.c"),
+ Object(Matching, "actor/ac_shop_indoor.c"),
+ Object(Matching, "actor/ac_shop_level.c"),
+ Object(NonMatching, "actor/ac_shop_manekin.c"),
+ Object(NonMatching, "actor/ac_shop_umbrella.c"),
+ Object(Matching, "actor/ac_shrine.c"),
+ Object(Matching, "actor/ac_sign.c"),
+ Object(NonMatching, "actor/ac_snowman.c"),
+ Object(NonMatching, "actor/ac_station.c"),
+ Object(Matching, "actor/ac_structure.c"),
+ Object(NonMatching, "actor/ac_super.c"),
+ Object(NonMatching, "actor/ac_taisou_npc0.c"),
+ Object(Matching, "actor/ac_tama.c"),
+ Object(NonMatching, "actor/ac_tamaire_npc0.c"),
+ Object(NonMatching, "actor/ac_tamaire_npc1.c"),
+ Object(Matching, "actor/ac_tent.c"),
+ Object(NonMatching, "actor/ac_tokyoso_control.c"),
+ Object(NonMatching, "actor/ac_tokyoso_npc0.c"),
+ Object(NonMatching, "actor/ac_tokyoso_npc1.c"),
+ Object(Matching, "actor/ac_tools.c"),
+ Object(Matching, "actor/ac_toudai.c"),
+ Object(Matching, "actor/ac_train0.c"),
+ Object(Matching, "actor/ac_train1.c"),
+ Object(Matching, "actor/ac_train_door.c"),
+ Object(Matching, "actor/ac_train_window.c"),
+ Object(Matching, "actor/ac_tukimi.c"),
+ Object(NonMatching, "actor/ac_tukimi_npc0.c"),
+ Object(NonMatching, "actor/ac_tukimi_npc1.c"),
+ Object(NonMatching, "actor/ac_tunahiki_control.c"),
+ Object(NonMatching, "actor/ac_tunahiki_npc0.c"),
+ Object(NonMatching, "actor/ac_tunahiki_npc1.c"),
+ Object(NonMatching, "actor/ac_turi.c"),
+ Object(NonMatching, "actor/ac_turi_npc0.c"),
+ Object(Matching, "actor/ac_uki.c"),
+ Object(Matching, "actor/ac_weather.c"),
+ Object(Matching, "actor/ac_weather_fine.c"),
+ Object(Matching, "actor/ac_weather_leaf.c"),
+ Object(Matching, "actor/ac_weather_rain.c"),
+ Object(Matching, "actor/ac_weather_sakura.c"),
+ Object(Matching, "actor/ac_weather_snow.c"),
+ Object(Matching, "actor/ac_windmill.c"),
+ Object(Matching, "actor/ac_yatai.c"),
+ ],
+ ),
+ Rel(
+ "actor_tool",
+ [
+ Object(Matching, "actor/tool/ac_t_anrium1.c"),
+ Object(Matching, "actor/tool/ac_t_bag1.c"),
+ Object(Matching, "actor/tool/ac_t_bag2.c"),
+ Object(Matching, "actor/tool/ac_t_biscus1.c"),
+ Object(Matching, "actor/tool/ac_t_biscus2.c"),
+ Object(Matching, "actor/tool/ac_t_biscus3.c"),
+ Object(Matching, "actor/tool/ac_t_biscus4.c"),
+ Object(Matching, "actor/tool/ac_t_cobra1.c"),
+ Object(Matching, "actor/tool/ac_t_cracker.c"),
+ Object(Matching, "actor/tool/ac_t_flag.c"),
+ Object(Matching, "actor/tool/ac_t_hanabi.c"),
+ Object(Matching, "actor/tool/ac_t_hasu1.c"),
+ Object(Matching, "actor/tool/ac_t_hat1.c"),
+ Object(Matching, "actor/tool/ac_t_hat2.c"),
+ Object(Matching, "actor/tool/ac_t_hat3.c"),
+ Object(Matching, "actor/tool/ac_t_keitai.c"),
+ Object(Matching, "actor/tool/ac_t_npc_sao.c"),
+ Object(Matching, "actor/tool/ac_t_pistol.c"),
+ Object(Matching, "actor/tool/ac_t_rei1.c"),
+ Object(Matching, "actor/tool/ac_t_rei2.c"),
+ Object(Matching, "actor/tool/ac_t_tama.c"),
+ Object(Matching, "actor/tool/ac_t_tumbler.c"),
+ Object(Matching, "actor/tool/ac_t_umbrella.c"),
+ Object(Matching, "actor/tool/ac_t_utiwa.c"),
+ Object(Matching, "actor/tool/ac_t_zinnia1.c"),
+ Object(Matching, "actor/tool/ac_t_zinnia2.c"),
+ ],
+ ),
+ Rel(
+ "effect",
+ [
+ Object(Matching, "effect/ef_ami_mizu.c"),
+ Object(Matching, "effect/ef_anahikari.c"),
+ Object(Matching, "effect/ef_ase.c"),
+ Object(Matching, "effect/ef_ase2.c"),
+ Object(Matching, "effect/ef_ase_ch.c"),
+ Object(Matching, "effect/ef_break_axe.c"),
+ Object(Matching, "effect/ef_bubu.c"),
+ Object(Matching, "effect/ef_buruburu.c"),
+ Object(Matching, "effect/ef_bush_happa.c"),
+ Object(Matching, "effect/ef_bush_yuki.c"),
+ Object(Matching, "effect/ef_car_blight.c"),
+ Object(Matching, "effect/ef_car_light.c"),
+ Object(Matching, "effect/ef_clacker.c"),
+ Object(Matching, "effect/ef_coin.c"),
+ Object(Matching, "effect/ef_dash_asimoto.c"),
+ Object(Matching, "effect/ef_dig_hole.c"),
+ Object(Matching, "effect/ef_dig_mud.c"),
+ Object(Matching, "effect/ef_dig_scoop.c"),
+ Object(Matching, "effect/ef_douzou_light.c"),
+ Object(Matching, "effect/ef_doyon.c"),
+ Object(NonMatching, "effect/ef_dust.c"),
+ Object(Matching, "effect/ef_effect_control.c"),
+ Object(Matching, "effect/ef_flash.c"),
+ Object(Matching, "effect/ef_footprint.c"),
+ Object(NonMatching, "effect/ef_furo_yuge.c"),
+ Object(NonMatching, "effect/ef_gimonhu.c"),
+ Object(NonMatching, "effect/ef_goki.c"),
+ Object(NonMatching, "effect/ef_ha.c"),
+ Object(Matching, "effect/ef_halloween.c"),
+ Object(Matching, "effect/ef_halloween_smoke.c"),
+ Object(NonMatching, "effect/ef_hanabi_botan1.c"),
+ Object(NonMatching, "effect/ef_hanabi_botan2.c"),
+ Object(Matching, "effect/ef_hanabi_dummy.c"),
+ Object(NonMatching, "effect/ef_hanabi_hoshi.c"),
+ Object(NonMatching, "effect/ef_hanabi_set.c"),
+ Object(NonMatching, "effect/ef_hanabi_switch.c"),
+ Object(NonMatching, "effect/ef_hanabi_yanagi.c"),
+ Object(NonMatching, "effect/ef_hanabira.c"),
+ Object(Matching, "effect/ef_hanatiri.c"),
+ Object(NonMatching, "effect/ef_hirameki_den.c"),
+ Object(NonMatching, "effect/ef_hirameki_hikari.c"),
+ Object(NonMatching, "effect/ef_ikigire.c"),
+ Object(Matching, "effect/ef_impact_star.c"),
+ Object(NonMatching, "effect/ef_kagu_happa.c"),
+ Object(NonMatching, "effect/ef_kamifubuki.c"),
+ Object(NonMatching, "effect/ef_kangaeru.c"),
+ Object(NonMatching, "effect/ef_kantanhu.c"),
+ Object(Matching, "effect/ef_kasamizu.c"),
+ Object(NonMatching, "effect/ef_kasamizutama.c"),
+ Object(NonMatching, "effect/ef_kaze.c"),
+ Object(NonMatching, "effect/ef_kaze_happa.c"),
+ Object(NonMatching, "effect/ef_kigae.c"),
+ Object(NonMatching, "effect/ef_kigae_light.c"),
+ Object(NonMatching, "effect/ef_kikuzu.c"),
+ Object(Matching, "effect/ef_killer.c"),
+ Object(NonMatching, "effect/ef_kisha_kemuri.c"),
+ Object(NonMatching, "effect/ef_konpu.c"),
+ Object(NonMatching, "effect/ef_kpun.c"),
+ Object(NonMatching, "effect/ef_kyousou_onpu.c"),
+ Object(Matching, "effect/ef_lamp_light.c"),
+ Object(NonMatching, "effect/ef_lovelove.c"),
+ Object(NonMatching, "effect/ef_lovelove2.c"),
+ Object(NonMatching, "effect/ef_lovelove_heart.c"),
+ Object(Matching, "effect/ef_make_hem.c"),
+ Object(NonMatching, "effect/ef_mizutama.c"),
+ Object(NonMatching, "effect/ef_motiyuge.c"),
+ Object(NonMatching, "effect/ef_muka.c"),
+ Object(NonMatching, "effect/ef_naku.c"),
+ Object(NonMatching, "effect/ef_namida.c"),
+ Object(NonMatching, "effect/ef_neboke.c"),
+ Object(NonMatching, "effect/ef_neboke_akubi.c"),
+ Object(NonMatching, "effect/ef_neboke_awa.c"),
+ Object(NonMatching, "effect/ef_night13_moon.c"),
+ Object(NonMatching, "effect/ef_night15_moon.c"),
+ Object(NonMatching, "effect/ef_ongen.c"),
+ Object(NonMatching, "effect/ef_otikomi.c"),
+ Object(Matching, "effect/ef_otosiana.c"),
+ Object(Matching, "effect/ef_pun.c"),
+ Object(Matching, "effect/ef_pun_sekimen.c"),
+ Object(Matching, "effect/ef_pun_yuge.c"),
+ Object(NonMatching, "effect/ef_reset_hole.c"),
+ Object(Matching, "effect/ef_room_sunshine.c"),
+ Object(Matching, "effect/ef_room_sunshine_minsect.c"),
+ Object(Matching, "effect/ef_room_sunshine_museum.c"),
+ Object(Matching, "effect/ef_room_sunshine_police.c"),
+ Object(Matching, "effect/ef_room_sunshine_posthouse.c"),
+ Object(NonMatching, "effect/ef_sandsplash.c"),
+ Object(NonMatching, "effect/ef_shock.c"),
+ Object(NonMatching, "effect/ef_shooting.c"),
+ Object(NonMatching, "effect/ef_shooting_kira.c"),
+ Object(NonMatching, "effect/ef_shooting_set.c"),
+ Object(NonMatching, "effect/ef_siawase_hana.c"),
+ Object(NonMatching, "effect/ef_siawase_hana_ch.c"),
+ Object(NonMatching, "effect/ef_siawase_hikari.c"),
+ Object(NonMatching, "effect/ef_sibuki.c"),
+ Object(NonMatching, "effect/ef_situren.c"),
+ Object(NonMatching, "effect/ef_slip.c"),
+ Object(NonMatching, "effect/ef_slip_footprint.c"),
+ Object(NonMatching, "effect/ef_soba_yuge.c"),
+ Object(NonMatching, "effect/ef_steam.c"),
+ Object(NonMatching, "effect/ef_string.c"),
+ Object(NonMatching, "effect/ef_suisou_awa.c"),
+ Object(NonMatching, "effect/ef_swing_axe.c"),
+ Object(NonMatching, "effect/ef_swing_net.c"),
+ Object(NonMatching, "effect/ef_swing_rod.c"),
+ Object(NonMatching, "effect/ef_taberu.c"),
+ Object(NonMatching, "effect/ef_takurami.c"),
+ Object(NonMatching, "effect/ef_takurami_kira.c"),
+ Object(NonMatching, "effect/ef_tamaire.c"),
+ Object(NonMatching, "effect/ef_tape.c"),
+ Object(Matching, "effect/ef_tent_lamp.c"),
+ Object(NonMatching, "effect/ef_tumble.c"),
+ Object(NonMatching, "effect/ef_tumble_bodyprint.c"),
+ Object(NonMatching, "effect/ef_tumble_dust.c"),
+ Object(NonMatching, "effect/ef_turi_hamon.c"),
+ Object(NonMatching, "effect/ef_turi_hane0.c"),
+ Object(NonMatching, "effect/ef_turi_hane1.c"),
+ Object(NonMatching, "effect/ef_turi_mizu.c"),
+ Object(NonMatching, "effect/ef_turi_suiteki.c"),
+ Object(NonMatching, "effect/ef_turn_asimoto.c"),
+ Object(NonMatching, "effect/ef_turn_footprint.c"),
+ Object(NonMatching, "effect/ef_uranai.c"),
+ Object(NonMatching, "effect/ef_wait_asimoto.c"),
+ Object(NonMatching, "effect/ef_walk_asimoto.c"),
+ Object(NonMatching, "effect/ef_warau.c"),
+ Object(NonMatching, "effect/ef_yajirushi.c"),
+ Object(NonMatching, "effect/ef_young_tree.c"),
+ Object(Matching, "effect/ef_yukidama.c"),
+ Object(Matching, "effect/ef_yukidaruma.c"),
+ Object(Matching, "effect/ef_yukihane.c"),
+ ],
+ ),
+ Rel(
+ "game",
+ [
+ Object(Matching, "game/m_actor.c"),
+ Object(Matching, "game/m_actor_dlftbls.c"),
+ Object(Matching, "game/m_actor_shadow.c"),
+ Object(NonMatching, "game/m_address_ovl.c"),
+ Object(Matching, "game/m_all_grow.c"),
+ Object(Matching, "game/m_all_grow_ovl.c"),
+ Object(Matching, "game/m_bank_ovl.c"),
+ Object(Matching, "game/m_banti.c"),
+ Object(Matching, "game/m_bg_item.c"),
+ Object(Matching, "game/m_bg_tex.c"),
+ Object(Matching, "game/m_bgm.c"),
+ Object(Matching, "game/m_birthday_ovl.c"),
+ Object(Matching, "game/m_board_ovl.c"),
+ Object(Matching, "game/m_calendar.c"),
+ Object(NonMatching, "game/m_calendar_ovl.c"),
+ Object(Matching, "game/m_camera2.c"),
+ Object(NonMatching, "game/m_card.c"),
+ Object(Matching, "game/m_catalog_ovl.c"),
+ Object(Matching, "game/m_choice.c"),
+ Object(Matching, "game/m_clip.c"),
+ Object(Matching, "game/m_cockroach.c"),
+ Object(NonMatching, "game/m_collision_bg.c"),
+ Object(Matching, "game/m_collision_obj.c"),
+ Object(Matching, "game/m_common_data.c"),
+ Object(Matching, "game/m_controller.c"),
+ Object(Matching, "game/m_cpak.c"),
+ Object(Matching, "game/m_cpedit_ovl.c"),
+ Object(NonMatching, "game/m_cpmail_ovl.c"),
+ Object(NonMatching, "game/m_cporiginal_ovl.c"),
+ Object(Matching, "game/m_cpwarning_ovl.c"),
+ Object(Matching, "game/m_debug.c"),
+ Object(Matching, "game/m_debug_display.c"),
+ Object(Matching, "game/m_debug_hayakawa.c"),
+ Object(Matching, "game/m_debug_mode.c"),
+ Object(Matching, "game/m_demo.c"),
+ Object(NonMatching, "game/m_design_ovl.c"),
+ Object(NonMatching, "game/m_diary.c"),
+ Object(NonMatching, "game/m_diary_ovl.c"),
+ Object(Matching, "game/m_eappli.c"),
+ Object(Matching, "game/m_editEndChk_ovl.c"),
+ Object(Matching, "game/m_editor_ovl.c"),
+ Object(Matching, "game/m_event.c"),
+ Object(NonMatching, "game/m_event_map_npc.c"),
+ Object(Matching, "game/m_fbdemo.c"),
+ Object(Matching, "game/m_fbdemo_fade.c"),
+ Object(Matching, "game/m_fbdemo_triforce.c"),
+ Object(Matching, "game/m_fbdemo_wipe1.c"),
+ Object(Matching, "game/m_field_assessment.c"),
+ Object(Matching, "game/m_field_info.c"),
+ Object(Matching, "game/m_field_make.c"),
+ Object(Matching, "game/m_fishrecord.c"),
+ Object(Matching, "game/m_flashrom.c"),
+ Object(Matching, "game/m_font.c"),
+ Object(Matching, "game/m_fuusen.c"),
+ Object(Matching, "game/m_game_dlftbls.c"),
+ Object(Matching, "game/m_gba_ovl.c"),
+ Object(Matching, "game/m_hand_ovl.c"),
+ Object(Matching, "game/m_handbill.c"),
+ Object(NonMatching, "game/m_haniwa_ovl.c"),
+ Object(Matching, "game/m_haniwaPortrait_ovl.c"),
+ Object(Matching, "game/m_hboard_ovl.c"),
+ Object(Matching, "game/m_home.c"),
+ Object(Matching, "game/m_house.c"),
+ Object(Matching, "game/m_huusui_room.c"),
+ Object(Matching, "game/m_huusui_room_ovl.c"),
+ Object(Matching, "game/m_inventory_ovl.c"),
+ Object(Matching, "game/m_island.c"),
+ Object(Matching, "game/m_item_name.c"),
+ Object(Matching, "game/m_kabu_manager.c"),
+ Object(Matching, "game/m_kankyo.c"),
+ Object(Matching, "game/m_land.c"),
+ Object(NonMatching, "game/m_ledit_ovl.c"),
+ Object(Matching, "game/m_lib.c"),
+ Object(Matching, "game/m_lights.c"),
+ Object(Matching, "game/m_mail.c"),
+ Object(Matching, "game/m_mail_check.c"),
+ Object(Matching, "game/m_mail_check_ovl.c"),
+ Object(Matching, "game/m_mail_password_check.c"),
+ Object(NonMatching, "game/m_mailbox_ovl.c"),
+ Object(Matching, "game/m_malloc.c"),
+ Object(Matching, "game/m_map_ovl.c"),
+ Object(Matching, "game/m_mark_room.c"),
+ Object(Matching, "game/m_mark_room_ovl.c"),
+ Object(Matching, "game/m_melody.c"),
+ Object(Matching, "game/m_mscore_ovl.c"),
+ Object(Matching, "game/m_msg.c"),
+ Object(Matching, "game/m_museum.c"),
+ Object(Matching, "game/m_museum_display.c"),
+ Object(Matching, "game/m_mushroom.c"),
+ Object(NonMatching, "game/m_music_ovl.c"),
+ Object(Matching, "game/m_name_table.c"),
+ Object(Matching, "game/m_needlework.c"),
+ Object(Matching, "game/m_needlework_ovl.c"),
+ Object(Matching, "game/m_notice.c"),
+ Object(Matching, "game/m_notice_ovl.c"),
+ Object(Matching, "game/m_npc.c"),
+ Object(Matching, "game/m_npc_schedule.c"),
+ Object(Matching, "game/m_npc_walk.c"),
+ Object(Matching, "game/m_olib.c"),
+ Object(Matching, "game/m_passwordChk_ovl.c"),
+ Object(Matching, "game/m_passwordMake_ovl.c"),
+ Object(Matching, "game/m_pause.c"),
+ Object(Matching, "game/m_play.c"),
+ Object(Matching, "game/m_player.c"),
+ Object(Matching, "game/m_player_call.c"),
+ Object(Matching, "game/m_player_lib.c"),
+ Object(Matching, "game/m_police_box.c"),
+ Object(Matching, "game/m_post_office.c"),
+ Object(Matching, "game/m_prenmi.c"),
+ Object(Matching, "game/m_private.c"),
+ Object(Matching, "game/m_quest.c"),
+ Object(Matching, "game/m_random_field.c"),
+ Object(Matching, "game/m_random_field_ovl.c"),
+ Object(Matching, "game/m_rcp.c"),
+ Object(Matching, "game/m_repay_ovl.c"),
+ Object(Matching, "game/m_roll_lib.c"),
+ Object(Matching, "game/m_room_type.c"),
+ Object(Matching, "game/m_scene.c"),
+ Object(Matching, "game/m_scene_ftr.c"),
+ Object(NonMatching, "game/m_scene_table.c"),
+ Object(Matching, "game/m_select.c"),
+ Object(NonMatching, "game/m_shop.c"),
+ Object(Matching, "game/m_skin_matrix.c"),
+ Object(Matching, "game/m_snowman.c"),
+ Object(Matching, "game/m_soncho.c"),
+ Object(Matching, "game/m_start_data_init.c"),
+ Object(Matching, "game/m_string.c"),
+ Object(Matching, "game/m_submenu.c"),
+ Object(Matching, "game/m_submenu_ovl.c"),
+ Object(Matching, "game/m_tag_ovl.c"),
+ Object(Matching, "game/m_time.c"),
+ Object(Matching, "game/m_timeIn_ovl.c"),
+ Object(Matching, "game/m_titledemo.c"),
+ Object(Matching, "game/m_trademark.c"),
+ Object(Matching, "game/m_train_control.c"),
+ Object(Matching, "game/m_vibctl.c"),
+ Object(Matching, "game/m_view.c"),
+ Object(Matching, "game/m_warning_ovl.c"),
+ Object(NonMatching, "game/m_watch_my_step.c"),
+ ],
+ ),
+ Rel(
+ "system",
+ [
+ Object(Matching, "system/sys_dynamic.c"),
+ Object(Matching, "system/sys_math.c"),
+ Object(Matching, "system/sys_math3d.c"),
+ Object(Matching, "system/sys_math_atan.c"),
+ Object(Matching, "system/sys_matrix.c"),
+ Object(Matching, "system/sys_romcheck.c"),
+ Object(Matching, "system/sys_stacks.c"),
+ Object(Matching, "system/sys_ucode.c"),
+ Object(Matching, "system/sys_vimgr.c"),
+ ],
+ ),
+ Rel(
+ "dataobject",
+ [
+ Object(Matching, "data/npc/model/mdl/bev_1.c"),
+ Object(Matching, "data/npc/model/tex/bev_1.c"),
+ Object(Matching, "data/npc/model/mdl/ant_1.c"),
+ Object(Matching, "data/npc/model/tex/ant_1.c"),
+ Object(Matching, "data/npc/model/tex/ant_2.c"),
+ Object(Matching, "data/npc/model/tex/ant_3.c"),
+ Object(Matching, "data/npc/model/tex/ant_4.c"),
+ Object(Matching, "data/npc/model/tex/ant_5.c"),
+ Object(Matching, "data/npc/model/mdl/wls_1.c"),
+ Object(Matching, "data/npc/model/tex/wls_1.c"),
+ Object(Matching, "data/scene/BG_TEST01.c"),
+ Object(Matching, "data/scene/BG_TEST01_XLU.c"),
+ Object(Matching, "data/scene/broker_shop.c"),
+ Object(Matching, "data/scene/buggy.c"),
+ Object(Matching, "data/npc/model/mdl/bea_1.c"),
+ Object(Matching, "data/npc/model/tex/bea_1.c"),
+ Object(Matching, "data/npc/model/tex/bea_2.c"),
+ Object(Matching, "data/npc/model/tex/bea_3.c"),
+ Object(Matching, "data/npc/model/tex/bea_5.c"),
+ Object(Matching, "data/npc/model/tex/bea_6.c"),
+ Object(Matching, "data/npc/model/tex/bea_7.c"),
+ Object(Matching, "data/npc/model/tex/bea_8.c"),
+ Object(Matching, "data/npc/model/tex/bea_9.c"),
+ Object(Matching, "data/npc/model/tex/bea_10.c"),
+ Object(Matching, "data/field/bg/acre/bg_data.c"),
+ Object(Matching, "data/field/bg/flower/obj_flower.c"),
+ Object(Matching, "data/field/bg/flower/obj_flower_leaf.c"),
+ Object(Matching, "data/npc/model/mdl/pbr_1.c"),
+ Object(Matching, "data/npc/model/tex/pbr_1.c"),
+ Object(Matching, "data/npc/model/tex/pbr_2.c"),
+ Object(Matching, "data/npc/model/tex/pbr_3.c"),
+ Object(Matching, "data/npc/model/tex/pbr_4.c"),
+ Object(Matching, "data/npc/model/tex/pbr_5.c"),
+ Object(Matching, "data/npc/model/mdl/brd_1.c"),
+ Object(Matching, "data/npc/model/tex/brd_1.c"),
+ Object(Matching, "data/npc/model/tex/brd_2.c"),
+ Object(Matching, "data/npc/model/tex/brd_11.c"),
+ Object(Matching, "data/npc/model/tex/brd_3.c"),
+ Object(Matching, "data/npc/model/tex/brd_4.c"),
+ Object(Matching, "data/npc/model/tex/brd_5.c"),
+ Object(Matching, "data/npc/model/tex/brd_6.c"),
+ Object(Matching, "data/npc/model/tex/brd_7.c"),
+ Object(Matching, "data/npc/model/tex/brd_8.c"),
+ Object(Matching, "data/npc/model/tex/brd_9.c"),
+ Object(Matching, "data/npc/model/tex/brd_10.c"),
+ Object(Matching, "data/player/BOY_part_data.c"),
+ Object(Matching, "data/npc/model/mdl/fox_1.c"),
+ Object(Matching, "data/npc/model/tex/fox_1.c"),
+ Object(Matching, "data/npc/model/mdl/bul_1.c"),
+ Object(Matching, "data/npc/model/tex/bul_1.c"),
+ Object(Matching, "data/npc/model/tex/bul_2.c"),
+ Object(Matching, "data/npc/model/tex/bul_3.c"),
+ Object(Matching, "data/npc/model/tex/bul_4.c"),
+ Object(Matching, "data/npc/model/mdl/cml_1.c"),
+ Object(Matching, "data/npc/model/tex/cml_1.c"),
+ Object(Matching, "data/npc/model/mdl/cat_1.c"),
+ Object(Matching, "data/npc/model/tex/cat_1.c"),
+ Object(Matching, "data/npc/model/tex/cat_2.c"),
+ Object(Matching, "data/npc/model/tex/cat_11.c"),
+ Object(Matching, "data/npc/model/tex/cat_12.c"),
+ Object(Matching, "data/npc/model/tex/cat_13.c"),
+ Object(Matching, "data/npc/model/tex/cat_14.c"),
+ Object(Matching, "data/npc/model/tex/cat_15.c"),
+ Object(Matching, "data/npc/model/tex/cat_3.c"),
+ Object(Matching, "data/npc/model/tex/cat_4.c"),
+ Object(Matching, "data/npc/model/tex/cat_5.c"),
+ Object(Matching, "data/npc/model/tex/cat_6.c"),
+ Object(Matching, "data/npc/model/tex/cat_7.c"),
+ Object(Matching, "data/npc/model/tex/cat_8.c"),
+ Object(Matching, "data/npc/model/tex/cat_9.c"),
+ Object(Matching, "data/npc/model/tex/cat_10.c"),
+ Object(Matching, "data/npc/model/mdl/chn_1.c"),
+ Object(Matching, "data/npc/model/tex/chn_1.c"),
+ Object(Matching, "data/npc/model/tex/chn_2.c"),
+ Object(Matching, "data/npc/model/tex/chn_3.c"),
+ Object(Matching, "data/npc/model/tex/chn_4.c"),
+ Object(Matching, "data/npc/model/tex/chn_5.c"),
+ Object(Matching, "data/npc/model/tex/chn_6.c"),
+ Object(Matching, "data/npc/model/tex/chn_7.c"),
+ Object(Matching, "data/npc/model/tex/chn_8.c"),
+ Object(Matching, "data/npc/model/tex/chn_9.c"),
+ Object(Matching, "data/npc/model/mdl/cbr_1.c"),
+ Object(Matching, "data/npc/model/tex/cbr_1.c"),
+ Object(Matching, "data/npc/model/tex/cbr_2.c"),
+ Object(Matching, "data/npc/model/tex/cbr_11.c"),
+ Object(Matching, "data/npc/model/tex/cbr_3.c"),
+ Object(Matching, "data/npc/model/tex/cbr_4.c"),
+ Object(Matching, "data/npc/model/tex/cbr_5.c"),
+ Object(Matching, "data/npc/model/tex/cbr_6.c"),
+ Object(Matching, "data/npc/model/tex/cbr_7.c"),
+ Object(Matching, "data/npc/model/tex/cbr_8.c"),
+ Object(Matching, "data/npc/model/tex/cbr_9.c"),
+ Object(Matching, "data/npc/model/tex/cbr_10.c"),
+ Object(Matching, "data/combi/data_combi.c"),
+ Object(Matching, "data/npc/model/mdl/rcc_1.c"),
+ Object(Matching, "data/npc/model/tex/rcc_1.c"),
+ Object(Matching, "data/npc/model/mdl/cow_1.c"),
+ Object(Matching, "data/npc/model/tex/cow_1.c"),
+ Object(Matching, "data/npc/model/tex/cow_2.c"),
+ Object(Matching, "data/npc/model/tex/cow_3.c"),
+ Object(Matching, "data/npc/model/tex/cow_4.c"),
+ Object(Matching, "data/npc/model/mdl/crd_1.c"),
+ Object(Matching, "data/npc/model/tex/crd_1.c"),
+ Object(Matching, "data/npc/model/tex/crd_2.c"),
+ Object(Matching, "data/npc/model/tex/crd_3.c"),
+ Object(Matching, "data/npc/model/tex/crd_4.c"),
+ Object(Matching, "data/npc/model/mdl/owl_1.c"),
+ Object(Matching, "data/npc/model/tex/owl_1.c"),
+ Object(Matching, "data/npc/model/mdl/rcd_1.c"),
+ Object(Matching, "data/npc/model/tex/rcd_1.c"),
+ Object(Matching, "data/npc/model/mdl/grf_1.c"),
+ Object(Matching, "data/npc/model/tex/grf_1.c"),
+ Object(Matching, "data/npc/model/mdl/dog_1.c"),
+ Object(Matching, "data/npc/model/tex/dog_1.c"),
+ Object(Matching, "data/npc/model/tex/dog_2.c"),
+ Object(Matching, "data/npc/model/tex/dog_3.c"),
+ Object(Matching, "data/npc/model/tex/dog_4.c"),
+ Object(Matching, "data/npc/model/tex/dog_5.c"),
+ Object(Matching, "data/npc/model/tex/dog_6.c"),
+ Object(Matching, "data/npc/model/tex/dog_7.c"),
+ Object(Matching, "data/npc/model/tex/dog_8.c"),
+ Object(Matching, "data/npc/model/tex/dog_9.c"),
+ Object(Matching, "data/npc/model/tex/dog_10.c"),
+ Object(Matching, "data/npc/model/mdl/seg_1.c"),
+ Object(Matching, "data/npc/model/tex/seg_1.c"),
+ Object(Matching, "data/npc/model/mdl/duk_1.c"),
+ Object(Matching, "data/npc/model/tex/duk_1.c"),
+ Object(Matching, "data/npc/model/tex/duk_2.c"),
+ Object(Matching, "data/npc/model/tex/duk_11.c"),
+ Object(Matching, "data/npc/model/tex/duk_3.c"),
+ Object(Matching, "data/npc/model/tex/duk_4.c"),
+ Object(Matching, "data/npc/model/tex/duk_5.c"),
+ Object(Matching, "data/npc/model/tex/duk_6.c"),
+ Object(Matching, "data/npc/model/tex/duk_7.c"),
+ Object(Matching, "data/npc/model/tex/duk_8.c"),
+ Object(Matching, "data/npc/model/tex/duk_9.c"),
+ Object(Matching, "data/npc/model/tex/duk_10.c"),
+ Object(Matching, "data/scene/event_notification.c"),
+ Object(Matching, "data/npc/model/mdl/elp_1.c"),
+ Object(Matching, "data/npc/model/tex/elp_1.c"),
+ Object(Matching, "data/npc/model/tex/elp_2.c"),
+ Object(Matching, "data/npc/model/tex/elp_3.c"),
+ Object(Matching, "data/npc/model/tex/elp_4.c"),
+ Object(Matching, "data/npc/model/tex/elp_5.c"),
+ Object(Matching, "data/npc/model/tex/elp_6.c"),
+ Object(Matching, "data/npc/model/tex/elp_7.c"),
+ Object(Matching, "data/scene/fg_tool_in.c"),
+ Object(Matching, "data/scene/field_tool_field.c"),
+ Object(Matching, "data/npc/model/mdl/flg_1.c"),
+ Object(Matching, "data/npc/model/tex/flg_1.c"),
+ Object(Matching, "data/npc/model/tex/flg_2.c"),
+ Object(Matching, "data/npc/model/tex/flg_11.c"),
+ Object(Matching, "data/npc/model/tex/flg_12.c"),
+ Object(Matching, "data/npc/model/tex/flg_13.c"),
+ Object(Matching, "data/npc/model/tex/flg_3.c"),
+ Object(Matching, "data/npc/model/tex/flg_4.c"),
+ Object(Matching, "data/npc/model/tex/flg_5.c"),
+ Object(Matching, "data/npc/model/tex/flg_6.c"),
+ Object(Matching, "data/npc/model/tex/flg_7.c"),
+ Object(Matching, "data/npc/model/tex/flg_8.c"),
+ Object(Matching, "data/npc/model/tex/flg_9.c"),
+ Object(Matching, "data/npc/model/tex/flg_10.c"),
+ Object(Matching, "data/npc/model/mdl/rcf_1.c"),
+ Object(Matching, "data/npc/model/tex/rcf_1.c"),
+ Object(Matching, "data/npc/model/mdl/gst_1.c"),
+ Object(Matching, "data/npc/model/tex/gst_1.c"),
+ Object(Matching, "data/npc/model/mdl/goa_1.c"),
+ Object(Matching, "data/npc/model/tex/goa_1.c"),
+ Object(Matching, "data/npc/model/tex/goa_2.c"),
+ Object(Matching, "data/npc/model/tex/goa_3.c"),
+ Object(Matching, "data/npc/model/tex/goa_4.c"),
+ Object(Matching, "data/npc/model/tex/goa_5.c"),
+ Object(Matching, "data/npc/model/tex/goa_6.c"),
+ Object(Matching, "data/npc/model/mdl/gor_1.c"),
+ Object(Matching, "data/npc/model/tex/gor_1.c"),
+ Object(Matching, "data/npc/model/tex/gor_2.c"),
+ Object(Matching, "data/npc/model/tex/gor_3.c"),
+ Object(Matching, "data/npc/model/tex/gor_4.c"),
+ Object(Matching, "data/npc/model/tex/gor_5.c"),
+ Object(Matching, "data/npc/model/mdl/xct_1.c"),
+ Object(Matching, "data/npc/model/tex/xct_1.c"),
+ Object(Matching, "data/npc/model/mdl/bpt_1.c"),
+ Object(Matching, "data/npc/model/tex/bpt_1.c"),
+ Object(Matching, "data/npc/model/mdl/pkn_1.c"),
+ Object(Matching, "data/npc/model/tex/pkn_1.c"),
+ Object(Matching, "data/npc/model/mdl/hem_1.c"),
+ Object(Matching, "data/npc/model/tex/hem_1.c"),
+ Object(Matching, "data/npc/model/mdl/hip_1.c"),
+ Object(Matching, "data/npc/model/tex/hip_1.c"),
+ Object(Matching, "data/npc/model/tex/hip_2.c"),
+ Object(Matching, "data/npc/model/tex/hip_3.c"),
+ Object(Matching, "data/npc/model/tex/hip_4.c"),
+ Object(Matching, "data/npc/model/tex/hip_5.c"),
+ Object(Matching, "data/npc/model/tex/hip_6.c"),
+ Object(Matching, "data/npc/model/tex/hip_7.c"),
+ Object(Matching, "data/npc/model/mdl/hrs_1.c"),
+ Object(Matching, "data/npc/model/tex/hrs_1.c"),
+ Object(Matching, "data/npc/model/tex/hrs_2.c"),
+ Object(Matching, "data/npc/model/tex/hrs_3.c"),
+ Object(Matching, "data/npc/model/tex/hrs_4.c"),
+ Object(Matching, "data/npc/model/tex/hrs_5.c"),
+ Object(Matching, "data/npc/model/tex/hrs_6.c"),
+ Object(Matching, "data/npc/model/tex/hrs_7.c"),
+ Object(Matching, "data/npc/model/tex/hrs_8.c"),
+ Object(Matching, "data/npc/model/mdl/plj_1.c"),
+ Object(Matching, "data/npc/model/tex/plj_1.c"),
+ Object(Matching, "data/npc/model/mdl/xsq_1.c"),
+ Object(Matching, "data/npc/model/tex/xsq_1.c"),
+ Object(Matching, "data/item/item_name.c"),
+ Object(Matching, "data/scene/kamakura.c"),
+ Object(Matching, "data/npc/model/mdl/boa_1.c"),
+ Object(Matching, "data/npc/model/tex/boa_1.c"),
+ Object(Matching, "data/npc/model/mdl/kgr_1.c"),
+ Object(Matching, "data/npc/model/tex/kgr_1.c"),
+ Object(Matching, "data/npc/model/tex/kgr_2.c"),
+ Object(Matching, "data/npc/model/tex/kgr_3.c"),
+ Object(Matching, "data/npc/model/tex/kgr_4.c"),
+ Object(Matching, "data/npc/model/tex/kgr_5.c"),
+ Object(Matching, "data/npc/model/tex/kgr_6.c"),
+ Object(Matching, "data/npc/model/mdl/fob_1.c"),
+ Object(Matching, "data/npc/model/tex/fob_1.c"),
+ Object(Matching, "data/npc/model/mdl/kal_1.c"),
+ Object(Matching, "data/npc/model/tex/kal_1.c"),
+ Object(Matching, "data/npc/model/tex/kal_2.c"),
+ Object(Matching, "data/npc/model/tex/kal_3.c"),
+ Object(Matching, "data/npc/model/tex/kal_4.c"),
+ Object(Matching, "data/npc/model/tex/kal_5.c"),
+ Object(Matching, "data/npc/model/tex/kal_6.c"),
+ Object(Matching, "data/scene/lighthouse.c"),
+ Object(Matching, "data/npc/model/mdl/lon_1.c"),
+ Object(Matching, "data/npc/model/tex/lon_1.c"),
+ Object(Matching, "data/npc/model/tex/lon_2.c"),
+ Object(Matching, "data/npc/model/tex/lon_3.c"),
+ Object(Matching, "data/npc/model/tex/lon_4.c"),
+ Object(Matching, "data/scene/museum_entrance.c"),
+ Object(Matching, "data/scene/museum_fish.c"),
+ Object(Matching, "data/scene/museum_fossil.c"),
+ Object(Matching, "data/scene/museum_insect.c"),
+ Object(Matching, "data/scene/museum_picture.c"),
+ Object(Matching, "data/npc/model/mdl/mos_1.c"),
+ Object(Matching, "data/npc/model/tex/mos_1.c"),
+ Object(Matching, "data/npc/model/mdl/mol_1.c"),
+ Object(Matching, "data/npc/model/tex/mol_1.c"),
+ Object(Matching, "data/npc/model/mdl/lrc_1.c"),
+ Object(Matching, "data/npc/model/tex/lrc_1.c"),
+ Object(Matching, "data/npc/model/mdl/mka_1.c"),
+ Object(Matching, "data/npc/model/tex/mka_1.c"),
+ Object(Matching, "data/npc/model/mdl/mus_1.c"),
+ Object(Matching, "data/npc/model/tex/mus_1.c"),
+ Object(Matching, "data/npc/model/tex/mus_2.c"),
+ Object(Matching, "data/npc/model/tex/mus_3.c"),
+ Object(Matching, "data/npc/model/tex/mus_4.c"),
+ Object(Matching, "data/npc/model/tex/mus_5.c"),
+ Object(Matching, "data/npc/model/tex/mus_6.c"),
+ Object(Matching, "data/npc/model/tex/mus_7.c"),
+ Object(Matching, "data/npc/model/tex/mus_8.c"),
+ Object(Matching, "data/npc/model/tex/mus_9.c"),
+ Object(Matching, "data/npc/model/tex/mus_10.c"),
+ Object(Matching, "data/model/mural/obj_mural.c"),
+ Object(Matching, "data/scene/NEEDLEWORK.c"),
+ Object(Matching, "data/scene/npc_room01.c"),
+ Object(Matching, "data/scene/npc_room_island.c"),
+ Object(Matching, "data/npc/model/mdl/hgh_1.c"),
+ Object(Matching, "data/npc/model/tex/hgh_1.c"),
+ Object(Matching, "data/npc/model/mdl/hgs_1.c"),
+ Object(Matching, "data/npc/model/tex/hgs_1.c"),
+ Object(Matching, "data/npc/default_list.c"),
+ Object(Matching, "data/npc/npc_draw_data.c"),
+ Object(Matching, "data/npc/grow_list.c"),
+ Object(Matching, "data/npc/house_list.c"),
+ Object(Matching, "data/npc/model/mdl/oct_1.c"),
+ Object(Matching, "data/npc/model/tex/oct_1.c"),
+ Object(Matching, "data/npc/model/mdl/ost_1.c"),
+ Object(Matching, "data/npc/model/tex/ost_1.c"),
+ Object(Matching, "data/npc/model/tex/ost_2.c"),
+ Object(Matching, "data/npc/model/tex/ost_3.c"),
+ Object(Matching, "data/npc/model/tex/ost_4.c"),
+ Object(Matching, "data/scene/player_room_island.c"),
+ Object(Matching, "data/scene/player_room_ll1.c"),
+ Object(Matching, "data/scene/player_room_ll2.c"),
+ Object(Matching, "data/scene/player_room_l.c"),
+ Object(Matching, "data/scene/player_room_m.c"),
+ Object(Matching, "data/scene/player_room_s.c"),
+ Object(Matching, "data/scene/PLAYER_SELECT2.c"),
+ Object(Matching, "data/scene/PLAYER_SELECT3.c"),
+ Object(Matching, "data/scene/PLAYER_SELECT4.c"),
+ Object(Matching, "data/scene/player_select.c"),
+ Object(Matching, "data/scene/police_box.c"),
+ Object(Matching, "data/scene/post_office.c"),
+ Object(Matching, "data/scene/p_room_bm_ll1.c"),
+ Object(Matching, "data/scene/p_room_bm_l.c"),
+ Object(Matching, "data/scene/p_room_bm_m.c"),
+ Object(Matching, "data/scene/p_room_bm_s.c"),
+ Object(Matching, "data/npc/model/mdl/pgn_1.c"),
+ Object(Matching, "data/npc/model/tex/pgn_1.c"),
+ Object(Matching, "data/npc/model/tex/pgn_2.c"),
+ Object(Matching, "data/npc/model/tex/pgn_3.c"),
+ Object(Matching, "data/npc/model/tex/pgn_4.c"),
+ Object(Matching, "data/npc/model/tex/pgn_5.c"),
+ Object(Matching, "data/npc/model/tex/pgn_6.c"),
+ Object(Matching, "data/npc/model/tex/pgn_7.c"),
+ Object(Matching, "data/npc/model/tex/pgn_8.c"),
+ Object(Matching, "data/npc/model/mdl/pig_1.c"),
+ Object(Matching, "data/npc/model/tex/pig_1.c"),
+ Object(Matching, "data/npc/model/tex/pig_2.c"),
+ Object(Matching, "data/npc/model/tex/pig_11.c"),
+ Object(Matching, "data/npc/model/tex/pig_3.c"),
+ Object(Matching, "data/npc/model/tex/pig_4.c"),
+ Object(Matching, "data/npc/model/tex/pig_5.c"),
+ Object(Matching, "data/npc/model/tex/pig_6.c"),
+ Object(Matching, "data/npc/model/tex/pig_7.c"),
+ Object(Matching, "data/npc/model/tex/pig_8.c"),
+ Object(Matching, "data/npc/model/tex/pig_9.c"),
+ Object(Matching, "data/npc/model/tex/pig_10.c"),
+ Object(Matching, "data/npc/model/mdl/pla_1.c"),
+ Object(Matching, "data/npc/model/mdl/plc_1.c"),
+ Object(Matching, "data/npc/model/tex/plc_1.c"),
+ Object(Matching, "data/npc/model/tex/pla_1.c"),
+ Object(Matching, "data/npc/model/mdl/pga_1.c"),
+ Object(Matching, "data/npc/model/tex/pga_1.c"),
+ Object(Matching, "data/npc/model/mdl/pgb_1.c"),
+ Object(Matching, "data/npc/model/tex/pgb_1.c"),
+ Object(Matching, "data/npc/model/mdl/plb_1.c"),
+ Object(Matching, "data/npc/model/tex/plb_1.c"),
+ Object(Matching, "data/npc/model/mdl/rbt_1.c"),
+ Object(Matching, "data/npc/model/tex/rbt_1.c"),
+ Object(Matching, "data/npc/model/tex/rbt_2.c"),
+ Object(Matching, "data/npc/model/tex/rbt_11.c"),
+ Object(Matching, "data/npc/model/tex/rbt_3.c"),
+ Object(Matching, "data/npc/model/tex/rbt_4.c"),
+ Object(Matching, "data/npc/model/tex/rbt_5.c"),
+ Object(Matching, "data/npc/model/tex/rbt_6.c"),
+ Object(Matching, "data/npc/model/tex/rbt_7.c"),
+ Object(Matching, "data/npc/model/tex/rbt_8.c"),
+ Object(Matching, "data/npc/model/tex/rbt_9.c"),
+ Object(Matching, "data/npc/model/tex/rbt_10.c"),
+ Object(Matching, "data/npc/model/mdl/mob_1.c"),
+ Object(Matching, "data/npc/model/tex/mob_1.c"),
+ Object(Matching, "data/npc/model/mdl/rhn_1.c"),
+ Object(Matching, "data/npc/model/tex/rhn_1.c"),
+ Object(Matching, "data/npc/model/tex/rhn_2.c"),
+ Object(Matching, "data/npc/model/tex/rhn_3.c"),
+ Object(Matching, "data/npc/model/tex/rhn_4.c"),
+ Object(Matching, "data/scene/shop01.c"),
+ Object(Matching, "data/scene/shop02.c"),
+ Object(Matching, "data/scene/shop03.c"),
+ Object(Matching, "data/scene/shop04_1f.c"),
+ Object(Matching, "data/scene/shop04_2f.c"),
+ Object(Matching, "data/scene/start_demo1.c"),
+ Object(Matching, "data/scene/start_demo2.c"),
+ Object(Matching, "data/scene/start_demo3.c"),
+ Object(Matching, "data/npc/model/mdl/snt_1.c"),
+ Object(Matching, "data/npc/model/tex/snt_1.c"),
+ Object(Matching, "data/npc/model/mdl/wip_1.c"),
+ Object(Matching, "data/npc/model/tex/wip_1.c"),
+ Object(Matching, "data/npc/model/mdl/shp_1.c"),
+ Object(Matching, "data/npc/model/tex/shp_1.c"),
+ Object(Matching, "data/npc/model/tex/shp_2.c"),
+ Object(Matching, "data/npc/model/tex/shp_3.c"),
+ Object(Matching, "data/npc/model/tex/shp_4.c"),
+ Object(Matching, "data/npc/model/tex/shp_5.c"),
+ Object(Matching, "data/npc/model/tex/shp_6.c"),
+ Object(Matching, "data/npc/model/mdl/rcn_1.c"),
+ Object(Matching, "data/npc/model/tex/rcn_1.c"),
+ Object(Matching, "data/npc/model/mdl/kab_1.c"),
+ Object(Matching, "data/npc/model/tex/kab_1.c"),
+ Object(Matching, "data/npc/model/mdl/ttl_1.c"),
+ Object(Matching, "data/npc/model/tex/ttl_1.c"),
+ Object(Matching, "data/npc/model/mdl/squ_1.c"),
+ Object(Matching, "data/npc/model/tex/squ_1.c"),
+ Object(Matching, "data/npc/model/tex/squ_2.c"),
+ Object(Matching, "data/npc/model/tex/squ_11.c"),
+ Object(Matching, "data/npc/model/tex/squ_3.c"),
+ Object(Matching, "data/npc/model/tex/squ_4.c"),
+ Object(Matching, "data/npc/model/tex/squ_5.c"),
+ Object(Matching, "data/npc/model/tex/squ_6.c"),
+ Object(Matching, "data/npc/model/tex/squ_7.c"),
+ Object(Matching, "data/npc/model/tex/squ_8.c"),
+ Object(Matching, "data/npc/model/tex/squ_9.c"),
+ Object(Matching, "data/npc/model/tex/squ_10.c"),
+ Object(Matching, "data/npc/model/mdl/mnk_1.c"),
+ Object(Matching, "data/npc/model/tex/mnk_1.c"),
+ Object(Matching, "data/npc/model/mdl/rcs_1.c"),
+ Object(Matching, "data/npc/model/tex/rcs_1.c"),
+ Object(Matching, "data/scene/tent.c"),
+ Object(Matching, "data/scene/test_fd_npc_land.c"),
+ Object(Matching, "data/scene/water_test.c"),
+ Object(Matching, "data/scene/test_step01.c"),
+ Object(Matching, "data/scene/title_demo.c"),
+ Object(Matching, "data/scene/test01.c"),
+ Object(Matching, "data/scene/test02.c"),
+ Object(Matching, "data/scene/test03.c"),
+ Object(Matching, "data/scene/test04.c"),
+ Object(Matching, "data/scene/test05.c"),
+ Object(Matching, "data/npc/model/mdl/tig_1.c"),
+ Object(Matching, "data/npc/model/tex/tig_1.c"),
+ Object(Matching, "data/npc/model/tex/tig_2.c"),
+ Object(Matching, "data/npc/model/tex/tig_3.c"),
+ Object(Matching, "data/npc/model/tex/tig_4.c"),
+ Object(Matching, "data/titledemo/pact0.c"),
+ Object(Matching, "data/titledemo/pact1.c"),
+ Object(Matching, "data/titledemo/pact2.c"),
+ Object(Matching, "data/titledemo/pact3.c"),
+ Object(Matching, "data/titledemo/pact4.c"),
+ Object(Matching, "data/npc/model/mdl/end_1.c"),
+ Object(Matching, "data/npc/model/tex/end_1.c"),
+ Object(Matching, "data/npc/model/mdl/tuk_1.c"),
+ Object(Matching, "data/npc/model/tex/tuk_1.c"),
+ Object(Matching, "data/npc/model/mdl/wol_1.c"),
+ Object(Matching, "data/npc/model/tex/wol_1.c"),
+ Object(Matching, "data/npc/model/tex/wol_2.c"),
+ Object(Matching, "data/npc/model/tex/wol_3.c"),
+ Object(Matching, "data/npc/model/tex/wol_4.c"),
+ Object(Matching, "data/npc/model/tex/wol_5.c"),
+ Object(Matching, "data/npc/model/tex/wol_6.c"),
+ Object(Matching, "data/field/bg/beach_pal.c"),
+ Object(Matching, "data/field/bg/acre/grd_yamishop/grd_yamishop.c"),
+ Object(Matching, "data/field/bg/acre/grd_post_office/grd_post_office.c"),
+ Object(Matching, "data/field/bg/acre/tmp4/tmp4.c"),
+ Object(Matching, "data/field/bg/acre/tmpr4/tmpr4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/tmpr4/tmpr4.c"),
+ Object(Matching, "data/field/bg/acre/tmp3/tmp3.c"),
+ Object(Matching, "data/field/bg/acre/tmpr3/tmpr3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/tmpr3/tmpr3.c"),
+ Object(Matching, "data/field/bg/acre/tmp/tmp.c"),
+ Object(Matching, "data/field/bg/acre/tmpr/tmpr_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/tmpr/tmpr.c"),
+ Object(Matching, "data/field/bg/acre/tmp2/tmp2.c"),
+ Object(Matching, "data/field/bg/acre/tmpr2/tmpr2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/tmpr2/tmpr2.c"),
+ Object(Matching, "data/field/bg/bush_pal.c"),
+ Object(Matching, "data/field/bg/cliff_pal.c"),
+ Object(Matching, "data/field/bg/earth_pal.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_1/grd_s_c1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_2/grd_s_c1_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_3/grd_s_c1_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_4/grd_s_c1_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_5/grd_s_c1_5.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r1_1/grd_s_c1_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r1_2/grd_s_c1_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r1_3/grd_s_c1_r1_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r2_1/grd_s_c1_r2_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r2_2/grd_s_c1_r2_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r2_3/grd_s_c1_r2_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r3_1/grd_s_c1_r3_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r3_2/grd_s_c1_r3_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_r3_3/grd_s_c1_r3_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_s_1/grd_s_c1_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_s_2/grd_s_c1_s_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_s_3/grd_s_c1_s_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c1_s_4/grd_s_c1_s_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_1/grd_s_c2_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_2/grd_s_c2_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_3/grd_s_c2_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_3/grd_s_c2_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_r1_1/grd_s_c2_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_r1_2/grd_s_c2_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_r2_1/grd_s_c2_r2_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_r2_2/grd_s_c2_r2_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_s_1/grd_s_c2_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_s_2/grd_s_c2_s_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c2_s_3/grd_s_c2_s_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_1/grd_s_c3_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_2/grd_s_c3_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_2/grd_s_c3_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_3/grd_s_c3_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_r1_1/grd_s_c3_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_r1_2/grd_s_c3_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_r2_1/grd_s_c3_r2_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_r2_2/grd_s_c3_r2_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c3_s_1/grd_s_c3_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_1/grd_s_c4_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_2/grd_s_c4_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_3/grd_s_c4_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r1_1/grd_s_c4_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r1_2/grd_s_c4_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r2_1/grd_s_c4_r2_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r2_2/grd_s_c4_r2_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r3_1/grd_s_c4_r3_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_r3_2/grd_s_c4_r3_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_s_1/grd_s_c4_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c4_s_2/grd_s_c4_s_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_1/grd_s_c5_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_2/grd_s_c5_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_3/grd_s_c5_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r1_1/grd_s_c5_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r1_2/grd_s_c5_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r2_1/grd_s_c5_r2_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r2_2/grd_s_c5_r2_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r3_1/grd_s_c5_r3_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_r3_2/grd_s_c5_r3_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_s_1/grd_s_c5_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c5_s_2/grd_s_c5_s_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_1/grd_s_c6_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_2/grd_s_c6_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_3/grd_s_c6_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_r1_1/grd_s_c6_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_r1_2/grd_s_c6_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_r3_1/grd_s_c6_r3_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c6_s_1/grd_s_c6_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_1/grd_s_c7_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_2/grd_s_c7_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_3/grd_s_c7_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_3/grd_s_c7_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_r1_1/grd_s_c7_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_r1_2/grd_s_c7_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_r3_1/grd_s_c7_r3_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_r3_2/grd_s_c7_r3_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_s_1/grd_s_c7_s_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_s_2/grd_s_c7_s_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_c7_s_3/grd_s_c7_s_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e1_1/grd_s_e1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_e1_r1_1/grd_s_e1_r1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e2_1/grd_s_e2_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e2_c1_1/grd_s_e2_c1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e2_m_1/grd_s_e2_m_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e2_o_1/grd_s_e2_o_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e2_t_1/grd_s_e2_t_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e3_1/grd_s_e3_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e3_c1_1/grd_s_e3_c1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e3_m_1/grd_s_e3_m_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e3_o_1/grd_s_e3_o_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e3_t_1/grd_s_e3_t_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e4_1/grd_s_e4_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_e5_1/grd_s_e5_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_1/grd_s_f_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_10/grd_s_f_10.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_2/grd_s_f_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_3/grd_s_f_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_4/grd_s_f_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_4/grd_s_f_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_5/grd_s_f_5_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_5/grd_s_f_5.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_6/grd_s_f_6_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_6/grd_s_f_6.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_7/grd_s_f_7.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_8/grd_s_f_8.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_9/grd_s_f_9.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_ko_1/grd_s_f_ko_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_ko_2/grd_s_f_ko_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_f_ko_3/grd_s_f_ko_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mh_1/grd_s_f_mh_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mh_2/grd_s_f_mh_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mh_3/grd_s_f_mh_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mu_1/grd_s_f_mu_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mu_2/grd_s_f_mu_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_f_mu_3/grd_s_f_mu_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_pk_1/grd_s_f_pk_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_pk_2/grd_s_f_pk_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_f_pk_3/grd_s_f_pk_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_hole_test/grd_s_hole_test.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_il_1/grd_s_il_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_il_2/grd_s_il_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_il_3/grd_s_il_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_il_4/grd_s_il_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_ir_1/grd_s_ir_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_ir_2/grd_s_ir_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_ir_3/grd_s_ir_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_ir_4/grd_s_ir_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_1/grd_s_m_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_10/grd_s_m_10.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_2/grd_s_m_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_3/grd_s_m_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_4/grd_s_m_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_5/grd_s_m_5.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_6/grd_s_m_6.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_7/grd_s_m_7.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_8/grd_s_m_8.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_m_9/grd_s_m_9.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_1/grd_s_m_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_2/grd_s_m_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_3/grd_s_m_r1_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_4/grd_s_m_r1_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_5/grd_s_m_r1_5.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_b_1/grd_s_m_r1_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_b_2/grd_s_m_r1_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_r1_b_3/grd_s_m_r1_b_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_ta_1/grd_s_m_ta_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_ta_2/grd_s_m_ta_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_ta_3/grd_s_m_ta_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_wf_1/grd_s_m_wf_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_wf_2/grd_s_m_wf_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_m_wf_3/grd_s_m_wf_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_1/grd_s_o_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_1/grd_s_o_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_10/grd_s_o_10_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_10/grd_s_o_10.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_2/grd_s_o_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_2/grd_s_o_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_3/grd_s_o_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_3/grd_s_o_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_4/grd_s_o_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_4/grd_s_o_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_5/grd_s_o_5_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_5/grd_s_o_5.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_6/grd_s_o_6_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_6/grd_s_o_6.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_7/grd_s_o_7_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_7/grd_s_o_7.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_8/grd_s_o_8_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_8/grd_s_o_8.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_9/grd_s_o_9_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_9/grd_s_o_9.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_i_1/grd_s_o_i_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_o_i_2/grd_s_o_i_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_1/grd_s_o_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_2/grd_s_o_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_3/grd_s_o_r1_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_4/grd_s_o_r1_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_5/grd_s_o_r1_5.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_b_1/grd_s_o_r1_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_b_2/grd_s_o_r1_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_r1_b_3/grd_s_o_r1_b_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_ta_1/grd_s_o_ta_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_ta_2/grd_s_o_ta_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_ta_3/grd_s_o_ta_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_wf_1/grd_s_o_wf_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_wf_2/grd_s_o_wf_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_o_wf_3/grd_s_o_wf_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_1/grd_s_r1_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_1/grd_s_r1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_2/grd_s_r1_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_2/grd_s_r1_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_3/grd_s_r1_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_3/grd_s_r1_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_4/grd_s_r1_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_4/grd_s_r1_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_b_1/grd_s_r1_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_b_2/grd_s_r1_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_b_3/grd_s_r1_b_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r1_p_1/grd_s_r1_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_1/grd_s_r2_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_1/grd_s_r2_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_2/grd_s_r2_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_2/grd_s_r2_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_3/grd_s_r2_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_3/grd_s_r2_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_4/grd_s_r2_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_4/grd_s_r2_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_b_1/grd_s_r2_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_b_2/grd_s_r2_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_b_3/grd_s_r2_b_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r2_p_1/grd_s_r2_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_1/grd_s_r3_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_1/grd_s_r3_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_2/grd_s_r3_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_2/grd_s_r3_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_3/grd_s_r3_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_3/grd_s_r3_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_4/grd_s_r3_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_4/grd_s_r3_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_b_1/grd_s_r3_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_b_2/grd_s_r3_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_b_3/grd_s_r3_b_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r3_p_1/grd_s_r3_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_1/grd_s_r4_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_1/grd_s_r4_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_2/grd_s_r4_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_2/grd_s_r4_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_3/grd_s_r4_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_3/grd_s_r4_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_b_1/grd_s_r4_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_b_2/grd_s_r4_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r4_p_1/grd_s_r4_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_1/grd_s_r5_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_1/grd_s_r5_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_2/grd_s_r5_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_2/grd_s_r5_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_3/grd_s_r5_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_3/grd_s_r5_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_b_1/grd_s_r5_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_b_2/grd_s_r5_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r5_p_1/grd_s_r5_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_1/grd_s_r6_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_1/grd_s_r6_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_2/grd_s_r6_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_2/grd_s_r6_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_3/grd_s_r6_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_3/grd_s_r6_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_b_1/grd_s_r6_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_b_2/grd_s_r6_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r6_p_1/grd_s_r6_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_1/grd_s_r7_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_1/grd_s_r7_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_2/grd_s_r7_2_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_2/grd_s_r7_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_3/grd_s_r7_3_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_3/grd_s_r7_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_b_1/grd_s_r7_b_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_b_2/grd_s_r7_b_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_r7_p_1/grd_s_r7_p_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_1/grd_s_t_1_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_1/grd_s_t_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_10/grd_s_t_10.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_2/grd_s_t_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_3/grd_s_t_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_4/grd_s_t_4_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_4/grd_s_t_4.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_5/grd_s_t_5_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_5/grd_s_t_5.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_6/grd_s_t_6.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_7/grd_s_t_7.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_8/grd_s_t_8.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_9/grd_s_t_9.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_po_1/grd_s_t_po_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_po_2/grd_s_t_po_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_po_3/grd_s_t_po_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_r1_1/grd_s_t_r1_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_r1_2/grd_s_t_r1_2.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_r1_3/grd_s_t_r1_3.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_r1_4/grd_s_t_r1_4.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_r1_5/grd_s_t_r1_5.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_sh_1/grd_s_t_sh_1.c"),
+ Object(
+ Matching, "data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2_evw_anime.c"
+ ),
+ Object(Matching, "data/field/bg/acre/grd_s_t_sh_2/grd_s_t_sh_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_sh_3/grd_s_t_sh_3.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_st1_1/grd_s_t_st1_1.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_st1_2/grd_s_t_st1_2.c"),
+ Object(Matching, "data/field/bg/acre/grd_s_t_st1_3/grd_s_t_st1_3.c"),
+ Object(Matching, "data/field/bg/acre/rom_toudai/rom_toudai.c"),
+ Object(Matching, "data/submenu/map/kan_tizu.c"),
+ Object(Matching, "data/submenu/map/kan_tizu2.c"),
+ Object(Matching, "data/field/bg/acre/rom_museum1/rom_museum1.c"),
+ Object(Matching, "data/field/bg/acre/rom_museum5/rom_museum5.c"),
+ Object(Matching, "data/field/bg/acre/rom_museum2/rom_museum2.c"),
+ Object(Matching, "data/field/bg/acre/rom_museum3/rom_museum3.c"),
+ Object(Matching, "data/field/bg/acre/rom_tailor/rom_tailor.c"),
+ Object(Matching, "data/field/bg/acre/myr_etc/myr_etc.c"),
+ Object(
+ Matching,
+ "data/field/bg/acre/grd_player_select/grd_player_select_evw_anime.c",
+ ),
+ Object(
+ Matching, "data/field/bg/acre/grd_player_select/grd_player_select.c"
+ ),
+ Object(Matching, "data/field/bg/acre/police_indoor/police_indoor.c"),
+ Object(Matching, "data/field/bg/rail_pal.c"),
+ Object(Matching, "data/field/bg/acre/rom_shop4_1/rom_shop4_1.c"),
+ Object(Matching, "data/field/bg/acre/rom_shop4_fuku/rom_shop4_fuku.c"),
+ Object(Matching, "data/field/bg/acre/rom_tent/rom_tent.c"),
+ Object(Matching, "data/field/bg/acre/room01/room01.c"),
+ Object(Matching, "data/field/bg/acre/rom_train_in/rom_train_in.c"),
+ Object(Matching, "data/field/bg/acre/rom_uranai/rom_uranai_evw_anime.c"),
+ Object(Matching, "data/field/bg/acre/rom_uranai/rom_uranai.c"),
+ ],
+ ),
+]
-n.build(
- c.DOL_ELF,
- rule="ld",
- inputs=[s.o_path for s in dol_sources],
- implicit=c.DOL_LCF,
- implicit_outputs=c.DOL_MAP,
- variables={
- "map" : c.DOL_MAP,
- "lcf" : c.DOL_LCF,
- "ldflags": c.DOL_LDFLAGS
- }
-)
+# Define our custom asset processing scripts
+config.custom_build_rules = [
+ {
+ "name": "convert_pal16",
+ "command": "$python tools/converters/pal16dis.py $in $out",
+ "description": "CONVERT $symbol",
+ },
+ # We run the script in "scan" mode first to generate a .dd (dyndep) file
+ # This allows ninja to understand what files are generated by the script
+ {
+ "name": "scan_pal16_chunked",
+ "command": "$python tools/converters/pal16dis_chunked.py $in $base -s $stamp -d $out",
+ "description": "SCAN $symbol",
+ },
+ {
+ "name": "convert_pal16_chunked",
+ "command": "$python tools/converters/pal16dis_chunked.py $in $base -s $out",
+ "description": "CONVERT $symbol",
+ },
+ {
+ "name": "convert_vtx",
+ "command": "$python tools/converters/vtxdis.py $in $out",
+ "description": "CONVERT $symbol",
+ },
+]
+config.custom_build_steps = {}
-n.build(
- c.DOL_OUT,
- rule="elf2dol",
- inputs=c.DOL_ELF,
-)
+# Grab the specific GameID so we can format our strings properly
+version = VERSIONS[version_num]
+out_dir = config.build_dir / version
-n.build(
- c.DOL_OK,
- rule = "sha1sum",
- inputs = c.DOL_SHA,
- implicit = [c.DOL_OUT]
-)
-n.default(c.DOL_OK)
-n.build(
- c.REL_PLF,
- rule="ld",
- inputs=[s.o_path for s in rel_sources],
- implicit=c.REL_LCF,
- implicit_outputs=c.REL_MAP,
- variables={
- "map" : c.REL_MAP,
- "lcf" : c.REL_LCF,
- "ldflags" : c.LDFLAGS + " -r1 -m _prolog"
- }
-)
+# This generates the build steps needed for preprocessing
+def emit_build_rule(asset):
+ steps = config.custom_build_steps.setdefault("pre-compile", [])
-n.build(
- c.REL_OUT,
- rule="elf2rel",
- inputs=[c.REL_PLF, c.DOL_ELF],
- variables={
- "flags" : f"-n 20 --name-size 0x38 -v 2 -r {c.REL_YML}"
- }
-)
+ match asset.get("custom_type"):
+ case None:
+ return
-n.build(
- c.REL_OK,
- rule = "sha1sum",
- inputs = c.REL_SHA,
- implicit = [c.REL_OUT]
-)
+ case "pal16":
+ steps.append(
+ {
+ "rule": "convert_pal16",
+ "inputs": out_dir / "bin" / asset["binary"],
+ "outputs": out_dir / "include" / asset["header"],
+ "variables": {
+ "symbol": asset["symbol"],
+ },
+ "implicit": Path("tools/converters/pal16dis.py"),
+ }
+ )
-n.default(c.REL_OK)
+ case "pal16c":
+ # Run the script in scan mode first to generate a .dd file
+ input = out_dir / "bin" / asset["binary"]
+ out_base = out_dir / "include" / asset["header"]
+ dyndep = out_dir / "include" / f"{asset['header']}.dd"
+ # We need a stamp file to use as a marker for ninja
+ stamp = out_dir / "include" / f"{asset['header']}.stamp"
+ steps.append(
+ {
+ "rule": "scan_pal16_chunked",
+ "inputs": input,
+ "outputs": dyndep,
+ "variables": {
+ "base": out_base,
+ "stamp": stamp,
+ "symbol": asset["symbol"],
+ },
+ "implicit": Path("tools/converters/pal16dis_chunked.py"),
+ }
+ )
+ # Now the script will generate all the dynamic outputs and stamp file
+ steps.append(
+ {
+ "rule": "convert_pal16_chunked",
+ "inputs": input,
+ "outputs": stamp,
+ "variables": {
+ "base": out_base,
+ "symbol": asset["symbol"],
+ },
+ "implicit": Path("tools/converters/pal16dis_chunked.py"),
+ "dyndep": dyndep,
+ "order_only": dyndep,
+ }
+ )
-# Optional full binary disassembly
-n.build(
- c.DOL_FULL,
- rule = "disasm",
- inputs=[c.DOL_YML, c.DOL_LABELS, c.DOL_RELOCS],
- implicit=[c.GAME_SYMBOLS, c.DOL_DISASM_OVERRIDES],
- variables={
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {c.REL_DISASM_OVERRIDES}"
- }
-)
+ case "vtx":
+ steps.append(
+ {
+ "rule": "convert_vtx",
+ "inputs": out_dir / "bin" / asset["binary"],
+ "outputs": out_dir / "include" / asset["header"],
+ "variables": {
+ "symbol": asset["symbol"],
+ },
+ "implicit": Path("tools/converters/vtxdis.py"),
+ }
+ )
-n.build(
- c.REL_FULL,
- rule = "disasm",
- inputs=[c.REL_YML, c.REL_LABELS, c.REL_RELOCS],
- implicit=[c.GAME_SYMBOLS, c.REL_DISASM_OVERRIDES],
- variables={
- "disasmflags" : f"-m {c.GAME_SYMBOLS} -o {c.REL_DISASM_OVERRIDES}"
- }
-)
+ case _:
+ print("Unknown asset type: " + asset["custom_type"])
-##########
-# Ouptut #
-##########
-with open("build.ninja", 'w') as f:
- f.write(outbuf.getvalue())
-n.close()
+# Parse the config and create the build rules for all our assets
+config_path = out_dir / "config.json"
+if config_path.exists():
+ config_data = json.load(open(config_path))
+ for asset in config_data.get("extract", []):
+ emit_build_rule(asset)
+ for module in config_data.get("modules", []):
+ for asset in module.get("extract", []):
+ emit_build_rule(asset)
+
+N64_SDK_urls = [
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/PR/abi.h",
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/PR/gbi.h",
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/PR/gs2dex.h",
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/PR/mbi.h",
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/PR/ultratypes.h",
+ "https://raw.githubusercontent.com/decompals/ultralib/main/include/gcc/stdlib.h",
+]
+
+# If we don't have these downloaded, we need to grab em
+for url in N64_SDK_urls:
+ file_path = os.path.join("include", url.split("include/")[-1])
+
+ if not os.path.exists(file_path):
+ os.makedirs(os.path.dirname(file_path), exist_ok=True)
+
+ print(f"Fetching {file_path} from {url}")
+ req = urllib.request.Request(url, headers={"User-Agent": "Mozilla/5.0"})
+ with urllib.request.urlopen(req) as response:
+ if response.getcode() == 200:
+ content = response.read()
+
+ # We need to modify gbi.h for AC
+ if os.path.normpath(file_path) == os.path.normpath("include/PR/gbi.h"):
+ content = re.sub(
+ rb"unsigned char\s+param:8;", b"unsigned int\tparam:8;", content
+ )
+
+ with open(file_path, "wb") as file:
+ file.write(content)
+ else:
+ print(
+ f"Failed to download {file_path}. Status code: {response.getcode()}"
+ )
+
+# Optional extra categories for progress tracking
+# Adjust as desired for your project
+config.progress_categories = [
+ ProgressCategory("game", "Game Code"),
+ ProgressCategory("sdk", "SDK Code"),
+ ProgressCategory("jsystem", "JSystem Code"),
+ ProgressCategory("library", "Library Code"), # catch-all for the rest of static
+]
+config.progress_each_module = args.verbose
+
+if args.mode == "configure":
+ # Write build.ninja and objdiff.json
+ generate_build(config)
+elif args.mode == "progress":
+ # Print progress and write progress.json
+ calculate_progress(config)
+else:
+ sys.exit("Unknown mode: " + args.mode)
diff --git a/diff.py b/diff.py
deleted file mode 100644
index 5000d1d4..00000000
--- a/diff.py
+++ /dev/null
@@ -1,3117 +0,0 @@
-#!/usr/bin/env python3
-# PYTHON_ARGCOMPLETE_OK
-
-##############################################################
-# Imported from https://github.com/simonlindholm/asm-differ/ #
-# on commit e7d0aaf06ce7f73acc2870bbc0f6ef66c76cb46a #
-##############################################################
-
-import argparse
-import sys
-from typing import (
- Any,
- Callable,
- Dict,
- Iterator,
- List,
- Match,
- NoReturn,
- Optional,
- Pattern,
- Set,
- Tuple,
- Type,
- Union,
-)
-
-
-def fail(msg: str) -> NoReturn:
- print(msg, file=sys.stderr)
- sys.exit(1)
-
-
-def static_assert_unreachable(x: NoReturn) -> NoReturn:
- raise Exception("Unreachable! " + repr(x))
-
-
-# ==== COMMAND-LINE ====
-
-if __name__ == "__main__":
- # Prefer to use diff_settings.py from the current working directory
- sys.path.insert(0, ".")
- try:
- import diff_settings
- except ModuleNotFoundError:
- fail("Unable to find diff_settings.py in the same directory.")
- sys.path.pop(0)
-
- try:
- import argcomplete
- except ModuleNotFoundError:
- argcomplete = None
-
- parser = argparse.ArgumentParser(
- description="Diff MIPS, PPC, AArch64, or ARM32 assembly."
- )
-
- start_argument = parser.add_argument(
- "start",
- help="Function name or address to start diffing from.",
- )
-
- if argcomplete:
-
- def complete_symbol(
- prefix: str, parsed_args: argparse.Namespace, **kwargs: object
- ) -> List[str]:
- if not prefix or prefix.startswith("-"):
- # skip reading the map file, which would
- # result in a lot of useless completions
- return []
- config: Dict[str, Any] = {}
- diff_settings.apply(config, parsed_args) # type: ignore
- mapfile = config.get("mapfile")
- if not mapfile:
- return []
- completes = []
- with open(mapfile) as f:
- data = f.read()
- # assume symbols are prefixed by a space character
- search = f" {prefix}"
- pos = data.find(search)
- while pos != -1:
- # skip the space character in the search string
- pos += 1
- # assume symbols are suffixed by either a space
- # character or a (unix-style) line return
- spacePos = data.find(" ", pos)
- lineReturnPos = data.find("\n", pos)
- if lineReturnPos == -1:
- endPos = spacePos
- elif spacePos == -1:
- endPos = lineReturnPos
- else:
- endPos = min(spacePos, lineReturnPos)
- if endPos == -1:
- match = data[pos:]
- pos = -1
- else:
- match = data[pos:endPos]
- pos = data.find(search, endPos)
- completes.append(match)
- return completes
-
- setattr(start_argument, "completer", complete_symbol)
-
- parser.add_argument(
- "end",
- nargs="?",
- help="Address to end diff at.",
- )
- parser.add_argument(
- "-o",
- dest="diff_obj",
- action="store_true",
- help="""Diff .o files rather than a whole binary. This makes it possible to
- see symbol names. (Recommended)""",
- )
- parser.add_argument(
- "-f",
- "--objfile",
- dest="objfile",
- type=str,
- help="""File path for an object file being diffed. When used
- the map file isn't searched for the function given. Useful for dynamically
- linked libraries.""",
- )
- parser.add_argument(
- "-e",
- "--elf",
- dest="diff_elf_symbol",
- metavar="SYMBOL",
- help="""Diff a given function in two ELFs, one being stripped and the other
- one non-stripped. Requires objdump from binutils 2.33+.""",
- )
- parser.add_argument(
- "-c",
- "--source",
- dest="show_source",
- action="store_true",
- help="Show source code (if possible). Only works with -o or -e.",
- )
- parser.add_argument(
- "-C",
- "--source-old-binutils",
- dest="source_old_binutils",
- action="store_true",
- help="""Tweak --source handling to make it work with binutils < 2.33.
- Implies --source.""",
- )
- parser.add_argument(
- "-j",
- "--section",
- dest="diff_section",
- default=".text",
- metavar="SECTION",
- help="Diff restricted to a given output section.",
- )
- parser.add_argument(
- "-L",
- "--line-numbers",
- dest="show_line_numbers",
- action="store_const",
- const=True,
- help="""Show source line numbers in output, when available. May be enabled by
- default depending on diff_settings.py.""",
- )
- parser.add_argument(
- "--no-line-numbers",
- dest="show_line_numbers",
- action="store_const",
- const=False,
- help="Hide source line numbers in output.",
- )
- parser.add_argument(
- "--inlines",
- dest="inlines",
- action="store_true",
- help="Show inline function calls (if possible). Only works with -o or -e.",
- )
- parser.add_argument(
- "--base-asm",
- dest="base_asm",
- metavar="FILE",
- help="Read assembly from given file instead of configured base img.",
- )
- parser.add_argument(
- "--write-asm",
- dest="write_asm",
- metavar="FILE",
- help="Write the current assembly output to file, e.g. for use with --base-asm.",
- )
- parser.add_argument(
- "-m",
- "--make",
- dest="make",
- action="store_true",
- help="Automatically run 'make' on the .o file or binary before diffing.",
- )
- parser.add_argument(
- "-l",
- "--skip-lines",
- dest="skip_lines",
- metavar="LINES",
- type=int,
- default=0,
- help="Skip the first LINES lines of output.",
- )
- parser.add_argument(
- "-s",
- "--stop-at-ret",
- dest="stop_at_ret",
- action="store_true",
- help="""Stop disassembling at the first return instruction.
- Some functions have multiple return points, so use with care!""",
- )
- parser.add_argument(
- "-i",
- "--ignore-large-imms",
- dest="ignore_large_imms",
- action="store_true",
- help="Pretend all large enough immediates are the same.",
- )
- parser.add_argument(
- "-I",
- "--ignore-addr-diffs",
- dest="ignore_addr_diffs",
- action="store_true",
- help="Ignore address differences. Currently only affects AArch64 and ARM32.",
- )
- parser.add_argument(
- "-B",
- "--no-show-branches",
- dest="show_branches",
- action="store_false",
- help="Don't visualize branches/branch targets.",
- )
- parser.add_argument(
- "-S",
- "--base-shift",
- dest="base_shift",
- metavar="N",
- type=str,
- default="0",
- help="""Diff position N in our img against position N + shift in the base img.
- Arithmetic is allowed, so e.g. |-S "0x1234 - 0x4321"| is a reasonable
- flag to pass if it is known that position 0x1234 in the base img syncs
- up with position 0x4321 in our img. Not supported together with -o.""",
- )
- parser.add_argument(
- "-w",
- "--watch",
- dest="watch",
- action="store_true",
- help="""Automatically update when source/object files change.
- Recommended in combination with -m.""",
- )
- parser.add_argument(
- "-3",
- "--threeway=prev",
- dest="threeway",
- action="store_const",
- const="prev",
- help="""Show a three-way diff between target asm, current asm, and asm
- prior to -w rebuild. Requires -w.""",
- )
- parser.add_argument(
- "-b",
- "--threeway=base",
- dest="threeway",
- action="store_const",
- const="base",
- help="""Show a three-way diff between target asm, current asm, and asm
- when diff.py was started. Requires -w.""",
- )
- parser.add_argument(
- "--width",
- dest="column_width",
- metavar="COLS",
- type=int,
- default=50,
- help="Sets the width of the left and right view column.",
- )
- parser.add_argument(
- "--algorithm",
- dest="algorithm",
- default="levenshtein",
- choices=["levenshtein", "difflib"],
- help="""Diff algorithm to use. Levenshtein gives the minimum diff, while difflib
- aims for long sections of equal opcodes. Defaults to %(default)s.""",
- )
- parser.add_argument(
- "--max-size",
- "--max-lines",
- metavar="LINES",
- dest="max_lines",
- type=int,
- default=1024,
- help="The maximum length of the diff, in lines.",
- )
- parser.add_argument(
- "--no-pager",
- dest="no_pager",
- action="store_true",
- help="""Disable the pager; write output directly to stdout, then exit.
- Incompatible with --watch.""",
- )
- parser.add_argument(
- "--format",
- choices=("color", "plain", "html", "json"),
- default="color",
- help="Output format, default is color. --format=html or json implies --no-pager.",
- )
- parser.add_argument(
- "-U",
- "--compress-matching",
- metavar="N",
- dest="compress_matching",
- type=int,
- help="""Compress streaks of matching lines, leaving N lines of context
- around non-matching parts.""",
- )
- parser.add_argument(
- "-V",
- "--compress-sameinstr",
- metavar="N",
- dest="compress_sameinstr",
- type=int,
- help="""Compress streaks of lines with same instructions (but possibly
- different regalloc), leaving N lines of context around other parts.""",
- )
-
- # Project-specific flags, e.g. different versions/make arguments.
- add_custom_arguments_fn = getattr(diff_settings, "add_custom_arguments", None)
- if add_custom_arguments_fn:
- add_custom_arguments_fn(parser)
-
- if argcomplete:
- argcomplete.autocomplete(parser)
-
-# ==== IMPORTS ====
-
-# (We do imports late to optimize auto-complete performance.)
-
-import abc
-import ast
-from collections import Counter, defaultdict
-from dataclasses import asdict, dataclass, field, replace
-import difflib
-import enum
-import html
-import itertools
-import json
-import os
-import queue
-import re
-import string
-import struct
-import subprocess
-import threading
-import time
-import traceback
-
-
-MISSING_PREREQUISITES = (
- "Missing prerequisite python module {}. "
- "Run `python3 -m pip install --user colorama watchdog python-Levenshtein cxxfilt` to install prerequisites (cxxfilt only needed with --source)."
-)
-
-try:
- from colorama import Back, Fore, Style
- import watchdog
-except ModuleNotFoundError as e:
- fail(MISSING_PREREQUISITES.format(e.name))
-
-# ==== CONFIG ====
-
-
-@dataclass
-class ProjectSettings:
- arch_str: str
- objdump_executable: str
- objdump_flags: List[str]
- build_command: List[str]
- map_format: str
- mw_build_dir: str
- baseimg: Optional[str]
- myimg: Optional[str]
- mapfile: Optional[str]
- source_directories: Optional[List[str]]
- source_extensions: List[str]
- show_line_numbers_default: bool
- disassemble_all: bool
-
-
-@dataclass
-class Compress:
- context: int
- same_instr: bool
-
-
-@dataclass
-class Config:
- arch: "ArchSettings"
-
- # Build/objdump options
- diff_obj: bool
- objfile: Optional[str]
- make: bool
- source_old_binutils: bool
- diff_section: str
- inlines: bool
- max_function_size_lines: int
- max_function_size_bytes: int
-
- # Display options
- formatter: "Formatter"
- threeway: Optional[str]
- base_shift: int
- skip_lines: int
- compress: Optional[Compress]
- show_branches: bool
- show_line_numbers: bool
- show_source: bool
- stop_at_ret: bool
- ignore_large_imms: bool
- ignore_addr_diffs: bool
- algorithm: str
-
- # Score options
- score_stack_differences = True
- penalty_stackdiff = 1
- penalty_regalloc = 5
- penalty_reordering = 60
- penalty_insertion = 100
- penalty_deletion = 100
-
-
-def create_project_settings(settings: Dict[str, Any]) -> ProjectSettings:
- return ProjectSettings(
- arch_str=settings.get("arch", "mips"),
- baseimg=settings.get("baseimg"),
- myimg=settings.get("myimg"),
- mapfile=settings.get("mapfile"),
- build_command=settings.get(
- "make_command", ["make", *settings.get("makeflags", [])]
- ),
- source_directories=settings.get("source_directories"),
- source_extensions=settings.get(
- "source_extensions", [".c", ".h", ".cpp", ".hpp", ".s"]
- ),
- objdump_executable=get_objdump_executable(settings.get("objdump_executable")),
- objdump_flags=settings.get("objdump_flags", []),
- map_format=settings.get("map_format", "gnu"),
- mw_build_dir=settings.get("mw_build_dir", "build/"),
- show_line_numbers_default=settings.get("show_line_numbers_default", True),
- disassemble_all=settings.get("disassemble_all", False),
- )
-
-
-def create_config(args: argparse.Namespace, project: ProjectSettings) -> Config:
- arch = get_arch(project.arch_str)
-
- formatter: Formatter
- if args.format == "plain":
- formatter = PlainFormatter(column_width=args.column_width)
- elif args.format == "color":
- formatter = AnsiFormatter(column_width=args.column_width)
- elif args.format == "html":
- formatter = HtmlFormatter()
- elif args.format == "json":
- formatter = JsonFormatter(arch_str=arch.name)
- else:
- raise ValueError(f"Unsupported --format: {args.format}")
-
- compress = None
- if args.compress_matching is not None:
- compress = Compress(args.compress_matching, False)
- if args.compress_sameinstr is not None:
- if compress is not None:
- raise ValueError(
- "Cannot pass both --compress-matching and --compress-sameinstr"
- )
- compress = Compress(args.compress_sameinstr, True)
-
- show_line_numbers = args.show_line_numbers
- if show_line_numbers is None:
- show_line_numbers = project.show_line_numbers_default
-
- return Config(
- arch=arch,
- # Build/objdump options
- diff_obj=args.diff_obj,
- objfile=args.objfile,
- make=args.make,
- source_old_binutils=args.source_old_binutils,
- diff_section=args.diff_section,
- inlines=args.inlines,
- max_function_size_lines=args.max_lines,
- max_function_size_bytes=args.max_lines * 4,
- # Display options
- formatter=formatter,
- threeway=args.threeway,
- base_shift=eval_int(
- args.base_shift, "Failed to parse --base-shift (-S) argument as an integer."
- ),
- skip_lines=args.skip_lines,
- compress=compress,
- show_branches=args.show_branches,
- show_line_numbers=show_line_numbers,
- show_source=args.show_source or args.source_old_binutils,
- stop_at_ret=args.stop_at_ret,
- ignore_large_imms=args.ignore_large_imms,
- ignore_addr_diffs=args.ignore_addr_diffs,
- algorithm=args.algorithm,
- )
-
-
-def get_objdump_executable(objdump_executable: Optional[str]) -> str:
- if objdump_executable is not None:
- return objdump_executable
-
- objdump_candidates = [
- "mips-linux-gnu-objdump",
- "mips64-elf-objdump",
- "mips-elf-objdump",
- ]
- for objdump_cand in objdump_candidates:
- try:
- subprocess.check_call(
- [objdump_cand, "--version"],
- stdout=subprocess.DEVNULL,
- stderr=subprocess.DEVNULL,
- )
- return objdump_cand
- except subprocess.CalledProcessError:
- pass
- except FileNotFoundError:
- pass
-
- return fail(
- f"Missing binutils; please ensure {' or '.join(objdump_candidates)} exists, or configure objdump_executable."
- )
-
-
-def get_arch(arch_str: str) -> "ArchSettings":
- for settings in ARCH_SETTINGS:
- if arch_str == settings.name:
- return settings
- raise ValueError(f"Unknown architecture: {arch_str}")
-
-
-BUFFER_CMD: List[str] = ["tail", "-c", str(10**9)]
-
-# -S truncates long lines instead of wrapping them
-# -R interprets color escape sequences
-# -i ignores case when searching
-# -c something about how the screen gets redrawn; I don't remember the purpose
-# -#6 makes left/right arrow keys scroll by 6 characters
-LESS_CMD: List[str] = ["less", "-SRic", "-#6"]
-
-DEBOUNCE_DELAY: float = 0.1
-
-# ==== FORMATTING ====
-
-
-@enum.unique
-class BasicFormat(enum.Enum):
- NONE = enum.auto()
- IMMEDIATE = enum.auto()
- STACK = enum.auto()
- REGISTER = enum.auto()
- DELAY_SLOT = enum.auto()
- DIFF_CHANGE = enum.auto()
- DIFF_ADD = enum.auto()
- DIFF_REMOVE = enum.auto()
- SOURCE_FILENAME = enum.auto()
- SOURCE_FUNCTION = enum.auto()
- SOURCE_LINE_NUM = enum.auto()
- SOURCE_OTHER = enum.auto()
-
-
-@dataclass(frozen=True)
-class RotationFormat:
- group: str
- index: int
- key: str
-
-
-Format = Union[BasicFormat, RotationFormat]
-FormatFunction = Callable[[str], Format]
-
-
-class Text:
- segments: List[Tuple[str, Format]]
-
- def __init__(self, line: str = "", f: Format = BasicFormat.NONE) -> None:
- self.segments = [(line, f)] if line else []
-
- def reformat(self, f: Format) -> "Text":
- return Text(self.plain(), f)
-
- def plain(self) -> str:
- return "".join(s for s, f in self.segments)
-
- def __repr__(self) -> str:
- return f""
-
- def __bool__(self) -> bool:
- return any(s for s, f in self.segments)
-
- def __str__(self) -> str:
- # Use Formatter.apply(...) instead
- return NotImplemented
-
- def __eq__(self, other: object) -> bool:
- return NotImplemented
-
- def __add__(self, other: Union["Text", str]) -> "Text":
- if isinstance(other, str):
- other = Text(other)
- result = Text()
- # If two adjacent segments have the same format, merge their lines
- if (
- self.segments
- and other.segments
- and self.segments[-1][1] == other.segments[0][1]
- ):
- result.segments = (
- self.segments[:-1]
- + [(self.segments[-1][0] + other.segments[0][0], self.segments[-1][1])]
- + other.segments[1:]
- )
- else:
- result.segments = self.segments + other.segments
- return result
-
- def __radd__(self, other: Union["Text", str]) -> "Text":
- if isinstance(other, str):
- other = Text(other)
- return other + self
-
- def finditer(self, pat: Pattern[str]) -> Iterator[Match[str]]:
- """Replacement for `pat.finditer(text)` that operates on the inner text,
- and returns the exact same matches as `Text.sub(pat, ...)`."""
- for chunk, f in self.segments:
- for match in pat.finditer(chunk):
- yield match
-
- def sub(self, pat: Pattern[str], sub_fn: Callable[[Match[str]], "Text"]) -> "Text":
- result = Text()
- for chunk, f in self.segments:
- i = 0
- for match in pat.finditer(chunk):
- start, end = match.start(), match.end()
- assert i <= start <= end <= len(chunk)
- sub = sub_fn(match)
- if i != start:
- result.segments.append((chunk[i:start], f))
- result.segments.extend(sub.segments)
- i = end
- if chunk[i:]:
- result.segments.append((chunk[i:], f))
- return result
-
- def ljust(self, column_width: int) -> "Text":
- length = sum(len(x) for x, _ in self.segments)
- return self + " " * max(column_width - length, 0)
-
-
-@dataclass
-class TableMetadata:
- headers: Tuple[Text, ...]
- current_score: int
- max_score: int
- previous_score: Optional[int]
-
-
-class Formatter(abc.ABC):
- @abc.abstractmethod
- def apply_format(self, chunk: str, f: Format) -> str:
- """Apply the formatting `f` to `chunk` and escape the contents."""
- ...
-
- @abc.abstractmethod
- def table(self, meta: TableMetadata, lines: List[Tuple["OutputLine", ...]]) -> str:
- """Format a multi-column table with metadata"""
- ...
-
- def apply(self, text: Text) -> str:
- return "".join(self.apply_format(chunk, f) for chunk, f in text.segments)
-
- @staticmethod
- def outputline_texts(lines: Tuple["OutputLine", ...]) -> Tuple[Text, ...]:
- return tuple([lines[0].base or Text()] + [line.fmt2 for line in lines[1:]])
-
-
-@dataclass
-class PlainFormatter(Formatter):
- column_width: int
-
- def apply_format(self, chunk: str, f: Format) -> str:
- return chunk
-
- def table(self, meta: TableMetadata, lines: List[Tuple["OutputLine", ...]]) -> str:
- rows = [meta.headers] + [self.outputline_texts(ls) for ls in lines]
- return "\n".join(
- "".join(self.apply(x.ljust(self.column_width)) for x in row) for row in rows
- )
-
-
-@dataclass
-class AnsiFormatter(Formatter):
- # Additional ansi escape codes not in colorama. See:
- # https://en.wikipedia.org/wiki/ANSI_escape_code#SGR_(Select_Graphic_Rendition)_parameters
- STYLE_UNDERLINE = "\x1b[4m"
- STYLE_NO_UNDERLINE = "\x1b[24m"
- STYLE_INVERT = "\x1b[7m"
- STYLE_RESET = "\x1b[0m"
-
- BASIC_ANSI_CODES = {
- BasicFormat.NONE: "",
- BasicFormat.IMMEDIATE: Fore.LIGHTBLUE_EX,
- BasicFormat.STACK: Fore.YELLOW,
- BasicFormat.REGISTER: Fore.YELLOW,
- BasicFormat.DELAY_SLOT: Fore.LIGHTBLACK_EX,
- BasicFormat.DIFF_CHANGE: Fore.LIGHTBLUE_EX,
- BasicFormat.DIFF_ADD: Fore.GREEN,
- BasicFormat.DIFF_REMOVE: Fore.RED,
- BasicFormat.SOURCE_FILENAME: Style.DIM + Style.BRIGHT,
- BasicFormat.SOURCE_FUNCTION: Style.DIM + Style.BRIGHT + STYLE_UNDERLINE,
- BasicFormat.SOURCE_LINE_NUM: Fore.LIGHTBLACK_EX,
- BasicFormat.SOURCE_OTHER: Style.DIM,
- }
-
- BASIC_ANSI_CODES_UNDO = {
- BasicFormat.NONE: "",
- BasicFormat.SOURCE_FILENAME: Style.NORMAL,
- BasicFormat.SOURCE_FUNCTION: Style.NORMAL + STYLE_NO_UNDERLINE,
- BasicFormat.SOURCE_OTHER: Style.NORMAL,
- }
-
- ROTATION_ANSI_COLORS = [
- Fore.MAGENTA,
- Fore.CYAN,
- Fore.GREEN,
- Fore.RED,
- Fore.LIGHTYELLOW_EX,
- Fore.LIGHTMAGENTA_EX,
- Fore.LIGHTCYAN_EX,
- Fore.LIGHTGREEN_EX,
- Fore.LIGHTBLACK_EX,
- ]
-
- column_width: int
-
- def apply_format(self, chunk: str, f: Format) -> str:
- if f == BasicFormat.NONE:
- return chunk
- undo_ansi_code = Fore.RESET
- if isinstance(f, BasicFormat):
- ansi_code = self.BASIC_ANSI_CODES[f]
- undo_ansi_code = self.BASIC_ANSI_CODES_UNDO.get(f, undo_ansi_code)
- elif isinstance(f, RotationFormat):
- ansi_code = self.ROTATION_ANSI_COLORS[
- f.index % len(self.ROTATION_ANSI_COLORS)
- ]
- else:
- static_assert_unreachable(f)
- return f"{ansi_code}{chunk}{undo_ansi_code}"
-
- def table(self, meta: TableMetadata, lines: List[Tuple["OutputLine", ...]]) -> str:
- rows = [(meta.headers, False)] + [
- (self.outputline_texts(line), line[1].is_data_ref) for line in lines
- ]
- return "\n".join(
- "".join(
- (self.STYLE_INVERT if is_data_ref else "")
- + self.apply(x.ljust(self.column_width))
- + (self.STYLE_RESET if is_data_ref else "")
- for x in row
- )
- for (row, is_data_ref) in rows
- )
-
-
-@dataclass
-class HtmlFormatter(Formatter):
- rotation_formats: int = 9
-
- def apply_format(self, chunk: str, f: Format) -> str:
- chunk = html.escape(chunk)
- if f == BasicFormat.NONE:
- return chunk
- if isinstance(f, BasicFormat):
- class_name = f.name.lower().replace("_", "-")
- data_attr = ""
- elif isinstance(f, RotationFormat):
- class_name = f"rotation-{f.index % self.rotation_formats}"
- rotation_key = html.escape(f"{f.group};{f.key}", quote=True)
- data_attr = f'data-rotation="{rotation_key}"'
- else:
- static_assert_unreachable(f)
- return f"{chunk}"
-
- def table(self, meta: TableMetadata, lines: List[Tuple["OutputLine", ...]]) -> str:
- def table_row(line: Tuple[Text, ...], is_data_ref: bool, cell_el: str) -> str:
- tr_attrs = " class='data-ref'" if is_data_ref else ""
- output_row = f" "
- for cell in line:
- cell_html = self.apply(cell)
- output_row += f"<{cell_el}>{cell_html}{cell_el}>"
- output_row += "
\n"
- return output_row
-
- output = "\n"
- output += " \n"
- output += table_row(meta.headers, False, "th")
- output += " \n"
- output += " \n"
- output += "".join(
- table_row(self.outputline_texts(line), line[1].is_data_ref, "td")
- for line in lines
- )
- output += " \n"
- output += "
\n"
- return output
-
-
-@dataclass
-class JsonFormatter(Formatter):
- arch_str: str
-
- def apply_format(self, chunk: str, f: Format) -> str:
- # This method is unused by this formatter
- return NotImplemented
-
- def table(self, meta: TableMetadata, rows: List[Tuple["OutputLine", ...]]) -> str:
- def serialize_format(s: str, f: Format) -> Dict[str, Any]:
- if f == BasicFormat.NONE:
- return {"text": s}
- elif isinstance(f, BasicFormat):
- return {"text": s, "format": f.name.lower()}
- elif isinstance(f, RotationFormat):
- attrs = asdict(f)
- attrs.update({"text": s, "format": "rotation"})
- return attrs
- else:
- static_assert_unreachable(f)
-
- def serialize(text: Optional[Text]) -> List[Dict[str, Any]]:
- if text is None:
- return []
- return [serialize_format(s, f) for s, f in text.segments]
-
- is_threeway = len(meta.headers) == 3
-
- output: Dict[str, Any] = {}
- output["arch_str"] = self.arch_str
- output["header"] = {
- name: serialize(h)
- for h, name in zip(meta.headers, ("base", "current", "previous"))
- }
- output["current_score"] = meta.current_score
- output["max_score"] = meta.max_score
- if meta.previous_score is not None:
- output["previous_score"] = meta.previous_score
- output_rows: List[Dict[str, Any]] = []
- for row in rows:
- output_row: Dict[str, Any] = {}
- output_row["key"] = row[0].key2
- output_row["is_data_ref"] = row[1].is_data_ref
- iters = [
- ("base", row[0].base, row[0].line1),
- ("current", row[1].fmt2, row[1].line2),
- ]
- if is_threeway:
- iters.append(("previous", row[2].fmt2, row[2].line2))
- if all(line is None for _, _, line in iters):
- # Skip rows that were only for displaying source code
- continue
- for column_name, text, line in iters:
- column: Dict[str, Any] = {}
- column["text"] = serialize(text)
- if line:
- if line.line_num is not None:
- column["line"] = line.line_num
- if line.branch_target is not None:
- column["branch"] = line.branch_target
- if line.source_lines:
- column["src"] = line.source_lines
- if line.comment is not None:
- column["src_comment"] = line.comment
- if line.source_line_num is not None:
- column["src_line"] = line.source_line_num
- if line or column["text"]:
- output_row[column_name] = column
- output_rows.append(output_row)
- output["rows"] = output_rows
- return json.dumps(output)
-
-
-def format_fields(
- pat: Pattern[str],
- out1: Text,
- out2: Text,
- color1: FormatFunction,
- color2: Optional[FormatFunction] = None,
-) -> Tuple[Text, Text]:
- diffs = [
- of.group() != nf.group()
- for (of, nf) in zip(out1.finditer(pat), out2.finditer(pat))
- ]
-
- it = iter(diffs)
-
- def maybe_color(color: FormatFunction, s: str) -> Text:
- return Text(s, color(s)) if next(it, False) else Text(s)
-
- out1 = out1.sub(pat, lambda m: maybe_color(color1, m.group()))
- it = iter(diffs)
- out2 = out2.sub(pat, lambda m: maybe_color(color2 or color1, m.group()))
-
- return out1, out2
-
-
-def symbol_formatter(group: str, base_index: int) -> FormatFunction:
- symbol_formats: Dict[str, Format] = {}
-
- def symbol_format(s: str) -> Format:
- # TODO: it would be nice to use a unique Format for each symbol, so we could
- # add extra UI elements in the HTML version
- f = symbol_formats.get(s)
- if f is None:
- index = len(symbol_formats) + base_index
- f = RotationFormat(key=s, index=index, group=group)
- symbol_formats[s] = f
- return f
-
- return symbol_format
-
-
-# ==== LOGIC ====
-
-ObjdumpCommand = Tuple[List[str], str, Optional[str]]
-
-
-def maybe_eval_int(expr: str) -> Optional[int]:
- try:
- ret = ast.literal_eval(expr)
- if not isinstance(ret, int):
- raise Exception("not an integer")
- return ret
- except Exception:
- return None
-
-
-def eval_int(expr: str, emsg: str) -> int:
- ret = maybe_eval_int(expr)
- if ret is None:
- fail(emsg)
- return ret
-
-
-def eval_line_num(expr: str) -> Optional[int]:
- expr = expr.strip().replace(":", "")
- if expr == "":
- return None
- return int(expr, 16)
-
-
-def run_make(target: str, project: ProjectSettings) -> None:
- subprocess.check_call(project.build_command + [target])
-
-
-def run_make_capture_output(
- target: str, project: ProjectSettings
-) -> "subprocess.CompletedProcess[bytes]":
- return subprocess.run(
- project.build_command + [target],
- stderr=subprocess.PIPE,
- stdout=subprocess.PIPE,
- )
-
-
-def restrict_to_function(dump: str, fn_name: str) -> str:
- try:
- ind = dump.index("\n", dump.index(f"<{fn_name}>:"))
- return dump[ind + 1 :]
- except ValueError:
- return ""
-
-
-def serialize_rodata_references(references: List[Tuple[int, int, str]]) -> str:
- return "".join(
- f"DATAREF {text_offset} {from_offset} {from_section}\n"
- for (text_offset, from_offset, from_section) in references
- )
-
-
-def maybe_get_objdump_source_flags(config: Config) -> List[str]:
- flags = []
-
- if config.show_line_numbers or config.show_source:
- flags.append("--line-numbers")
-
- if config.show_source:
- flags.append("--source")
-
- if not config.source_old_binutils:
- flags.append("--source-comment=│ ")
-
- if config.inlines:
- flags.append("--inlines")
-
- return flags
-
-
-def run_objdump(cmd: ObjdumpCommand, config: Config, project: ProjectSettings) -> str:
- flags, target, restrict = cmd
- try:
- out = subprocess.run(
- [project.objdump_executable]
- + config.arch.arch_flags
- + project.objdump_flags
- + flags
- + [target],
- check=True,
- stdout=subprocess.PIPE,
- stderr=subprocess.PIPE,
- universal_newlines=True,
- ).stdout
- except subprocess.CalledProcessError as e:
- print(e.stdout)
- print(e.stderr)
- if "unrecognized option '--source-comment" in e.stderr:
- fail("** Try using --source-old-binutils instead of --source **")
- raise e
-
- obj_data: Optional[bytes] = None
- if config.diff_obj:
- with open(target, "rb") as f:
- obj_data = f.read()
-
- return preprocess_objdump_out(restrict, obj_data, out, config)
-
-
-def preprocess_objdump_out(
- restrict: Optional[str], obj_data: Optional[bytes], objdump_out: str, config: Config
-) -> str:
- """
- Preprocess the output of objdump into a format that `process()` expects.
- This format is suitable for saving to disk with `--write-asm`.
-
- - Optionally filter the output to a single function (`restrict`)
- - Otherwise, strip objdump header (7 lines)
- - Prepend .data references ("DATAREF" lines) when working with object files
- """
- out = objdump_out
-
- if restrict is not None:
- out = restrict_to_function(out, restrict)
- else:
- for i in range(7):
- out = out[out.find("\n") + 1 :]
- out = out.rstrip("\n")
-
- if obj_data:
- out = (
- serialize_rodata_references(parse_elf_rodata_references(obj_data, config))
- + out
- )
-
- return out
-
-
-def search_map_file(
- fn_name: str, project: ProjectSettings, config: Config
-) -> Tuple[Optional[str], Optional[int]]:
- if not project.mapfile:
- fail(f"No map file configured; cannot find function {fn_name}.")
-
- try:
- with open(project.mapfile) as f:
- contents = f.read()
- except Exception:
- fail(f"Failed to open map file {project.mapfile} for reading.")
-
- if project.map_format == "gnu":
- lines = contents.split("\n")
-
- try:
- cur_objfile = None
- ram_to_rom = None
- cands = []
- last_line = ""
- for line in lines:
- if line.startswith(" " + config.diff_section):
- cur_objfile = line.split()[3]
- if "load address" in line:
- tokens = last_line.split() + line.split()
- ram = int(tokens[1], 0)
- rom = int(tokens[5], 0)
- ram_to_rom = rom - ram
- if line.endswith(" " + fn_name) or f" {fn_name} = 0x" in line:
- ram = int(line.split()[0], 0)
- if cur_objfile is not None and ram_to_rom is not None:
- cands.append((cur_objfile, ram + ram_to_rom))
- last_line = line
- except Exception as e:
- traceback.print_exc()
- fail(f"Internal error while parsing map file")
-
- if len(cands) > 1:
- fail(f"Found multiple occurrences of function {fn_name} in map file.")
- if len(cands) == 1:
- return cands[0]
- elif project.map_format == "mw":
- find = re.findall(
- re.compile(
- # ram elf rom alignment
- r" \S+ (\S+) (\S+) +\S+ "
- + re.escape(fn_name)
- + r"(?: \(entry of "
- + re.escape(config.diff_section)
- + r"\))? \t"
- # object name
- + "(\S+)"
- ),
- contents,
- )
- if len(find) > 1:
- fail(f"Found multiple occurrences of function {fn_name} in map file.")
- if len(find) == 1:
- rom = int(find[0][1], 16)
- objname = find[0][2]
- # The metrowerks linker map format does not contain the full object path,
- # so we must complete it manually.
- objfiles = [
- os.path.join(dirpath, f)
- for dirpath, _, filenames in os.walk(project.mw_build_dir)
- for f in filenames
- if f == objname
- ]
- if len(objfiles) > 1:
- all_objects = "\n".join(objfiles)
- fail(
- f"Found multiple objects of the same name {objname} in {project.mw_build_dir}, "
- f"cannot determine which to diff against: \n{all_objects}"
- )
- if len(objfiles) == 1:
- objfile = objfiles[0]
- # TODO Currently the ram-rom conversion only works for diffing ELF
- # executables, but it would likely be more convenient to diff DOLs.
- # At this time it is recommended to always use -o when running the diff
- # script as this mode does not make use of the ram-rom conversion.
- return objfile, rom
- else:
- fail(f"Linker map format {project.map_format} unrecognised.")
- return None, None
-
-
-def parse_elf_rodata_references(
- data: bytes, config: Config
-) -> List[Tuple[int, int, str]]:
- e_ident = data[:16]
- if e_ident[:4] != b"\x7FELF":
- return []
-
- SHT_SYMTAB = 2
- SHT_REL = 9
- SHT_RELA = 4
-
- is_32bit = e_ident[4] == 1
- is_little_endian = e_ident[5] == 1
- str_end = "<" if is_little_endian else ">"
- str_off = "I" if is_32bit else "Q"
-
- def read(spec: str, offset: int) -> Tuple[int, ...]:
- spec = spec.replace("P", str_off)
- size = struct.calcsize(spec)
- return struct.unpack(str_end + spec, data[offset : offset + size])
-
- (
- e_type,
- e_machine,
- e_version,
- e_entry,
- e_phoff,
- e_shoff,
- e_flags,
- e_ehsize,
- e_phentsize,
- e_phnum,
- e_shentsize,
- e_shnum,
- e_shstrndx,
- ) = read("HHIPPPIHHHHHH", 16)
- if e_type != 1: # relocatable
- return []
- assert e_shoff != 0
- assert e_shnum != 0 # don't support > 0xFF00 sections
- assert e_shstrndx != 0
-
- @dataclass
- class Section:
- sh_name: int
- sh_type: int
- sh_flags: int
- sh_addr: int
- sh_offset: int
- sh_size: int
- sh_link: int
- sh_info: int
- sh_addralign: int
- sh_entsize: int
-
- sections = [
- Section(*read("IIPPPPIIPP", e_shoff + i * e_shentsize)) for i in range(e_shnum)
- ]
- shstr = sections[e_shstrndx]
- sec_name_offs = [shstr.sh_offset + s.sh_name for s in sections]
- sec_names = [data[offset : data.index(b"\0", offset)] for offset in sec_name_offs]
-
- symtab_sections = [i for i in range(e_shnum) if sections[i].sh_type == SHT_SYMTAB]
- assert len(symtab_sections) == 1
- symtab = sections[symtab_sections[0]]
-
- section_name = config.diff_section.encode("utf-8")
- text_sections = [
- i
- for i in range(e_shnum)
- if sec_names[i] == section_name and sections[i].sh_size != 0
- ]
- if len(text_sections) != 1:
- return []
- text_section = text_sections[0]
-
- ret: List[Tuple[int, int, str]] = []
- for s in sections:
- if s.sh_type == SHT_REL or s.sh_type == SHT_RELA:
- if s.sh_info == text_section:
- # Skip section_name -> section_name references
- continue
- sec_name = sec_names[s.sh_info].decode("latin1")
- if sec_name != ".rodata":
- continue
- sec_base = sections[s.sh_info].sh_offset
- for i in range(0, s.sh_size, s.sh_entsize):
- if s.sh_type == SHT_REL:
- r_offset, r_info = read("PP", s.sh_offset + i)
- else:
- r_offset, r_info, r_addend = read("PPP", s.sh_offset + i)
-
- if is_32bit:
- r_sym = r_info >> 8
- r_type = r_info & 0xFF
- sym_offset = symtab.sh_offset + symtab.sh_entsize * r_sym
- st_name, st_value, st_size, st_info, st_other, st_shndx = read(
- "IIIBBH", sym_offset
- )
- else:
- r_sym = r_info >> 32
- r_type = r_info & 0xFFFFFFFF
- sym_offset = symtab.sh_offset + symtab.sh_entsize * r_sym
- st_name, st_info, st_other, st_shndx, st_value, st_size = read(
- "IBBHQQ", sym_offset
- )
- if st_shndx == text_section:
- if s.sh_type == SHT_REL:
- if e_machine == 8 and r_type == 2: # R_MIPS_32
- (r_addend,) = read("I", sec_base + r_offset)
- else:
- continue
- text_offset = (st_value + r_addend) & 0xFFFFFFFF
- ret.append((text_offset, r_offset, sec_name))
- return ret
-
-
-def dump_elf(
- start: str,
- end: Optional[str],
- diff_elf_symbol: str,
- config: Config,
- project: ProjectSettings,
-) -> Tuple[str, ObjdumpCommand, ObjdumpCommand]:
- if not project.baseimg or not project.myimg:
- fail("Missing myimg/baseimg in config.")
- if config.base_shift:
- fail("--base-shift not compatible with -e")
-
- start_addr = eval_int(start, "Start address must be an integer expression.")
-
- if end is not None:
- end_addr = eval_int(end, "End address must be an integer expression.")
- else:
- end_addr = start_addr + config.max_function_size_bytes
-
- flags1 = [
- f"--start-address={start_addr}",
- f"--stop-address={end_addr}",
- ]
-
- if project.disassemble_all:
- disassemble_flag = "-D"
- else:
- disassemble_flag = "-d"
-
- flags2 = [
- f"--disassemble={diff_elf_symbol}",
- ]
-
- objdump_flags = [disassemble_flag, "-rz", "-j", config.diff_section]
- return (
- project.myimg,
- (objdump_flags + flags1, project.baseimg, None),
- (
- objdump_flags + flags2 + maybe_get_objdump_source_flags(config),
- project.myimg,
- None,
- ),
- )
-
-
-def dump_objfile(
- start: str, end: Optional[str], config: Config, project: ProjectSettings
-) -> Tuple[str, ObjdumpCommand, ObjdumpCommand]:
- if config.base_shift:
- fail("--base-shift not compatible with -o")
- if end is not None:
- fail("end address not supported together with -o")
- if start.startswith("0"):
- fail("numerical start address not supported with -o; pass a function name")
-
- objfile = config.objfile
- if not objfile:
- objfile, _ = search_map_file(start, project, config)
-
- if not objfile:
- fail("Not able to find .o file for function.")
-
- if config.make:
- run_make(objfile, project)
-
- if not os.path.isfile(objfile):
- fail(f"Not able to find .o file for function: {objfile} is not a file.")
-
- refobjfile = "expected/" + objfile
- if not os.path.isfile(refobjfile):
- fail(f'Please ensure an OK .o file exists at "{refobjfile}".')
-
- if project.disassemble_all:
- disassemble_flag = "-D"
- else:
- disassemble_flag = "-d"
-
- objdump_flags = [disassemble_flag, "-rz", "-j", config.diff_section]
- return (
- objfile,
- (objdump_flags, refobjfile, start),
- (objdump_flags + maybe_get_objdump_source_flags(config), objfile, start),
- )
-
-
-def dump_binary(
- start: str, end: Optional[str], config: Config, project: ProjectSettings
-) -> Tuple[str, ObjdumpCommand, ObjdumpCommand]:
- if not project.baseimg or not project.myimg:
- fail("Missing myimg/baseimg in config.")
- if config.make:
- run_make(project.myimg, project)
- start_addr = maybe_eval_int(start)
- if start_addr is None:
- _, start_addr = search_map_file(start, project, config)
- if start_addr is None:
- fail("Not able to find function in map file.")
- if end is not None:
- end_addr = eval_int(end, "End address must be an integer expression.")
- else:
- end_addr = start_addr + config.max_function_size_bytes
- objdump_flags = ["-Dz", "-bbinary"] + ["-EB" if config.arch.big_endian else "-EL"]
- flags1 = [
- f"--start-address={start_addr + config.base_shift}",
- f"--stop-address={end_addr + config.base_shift}",
- ]
- flags2 = [f"--start-address={start_addr}", f"--stop-address={end_addr}"]
- return (
- project.myimg,
- (objdump_flags + flags1, project.baseimg, None),
- (objdump_flags + flags2, project.myimg, None),
- )
-
-
-# Example: "ldr r4, [pc, #56] ; (4c )"
-ARM32_LOAD_POOL_PATTERN = r"(ldr\s+r([0-9]|1[0-3]),\s+\[pc,.*;\s*)(\([a-fA-F0-9]+.*\))"
-
-
-# The base class is a no-op.
-class AsmProcessor:
- def __init__(self, config: Config) -> None:
- self.config = config
-
- def pre_process(
- self, mnemonic: str, args: str, next_row: Optional[str]
- ) -> Tuple[str, str]:
- return mnemonic, args
-
- def process_reloc(self, row: str, prev: str) -> Tuple[str, Optional[str]]:
- return prev, None
-
- def normalize(self, mnemonic: str, row: str) -> str:
- """This should be called exactly once for each line."""
- arch = self.config.arch
- row = self._normalize_arch_specific(mnemonic, row)
- if self.config.ignore_large_imms and mnemonic not in arch.branch_instructions:
- row = re.sub(self.config.arch.re_large_imm, "", row)
- return row
-
- def _normalize_arch_specific(self, mnemonic: str, row: str) -> str:
- return row
-
- def post_process(self, lines: List["Line"]) -> None:
- return
-
-
-class AsmProcessorMIPS(AsmProcessor):
- def process_reloc(self, row: str, prev: str) -> Tuple[str, Optional[str]]:
- arch = self.config.arch
- if "R_MIPS_NONE" in row or "R_MIPS_JALR" in row:
- # GNU as emits no-op relocations immediately after real ones when
- # assembling with -mabi=64. Return without trying to parse 'imm' as an
- # integer.
- return prev, None
- before, imm, after = parse_relocated_line(prev)
- repl = row.split()[-1] + reloc_addend_from_imm(imm, before, self.config.arch)
- if "R_MIPS_LO16" in row:
- repl = f"%lo({repl})"
- elif "R_MIPS_HI16" in row:
- # Ideally we'd pair up R_MIPS_LO16 and R_MIPS_HI16 to generate a
- # correct addend for each, but objdump doesn't give us the order of
- # the relocations, so we can't find the right LO16. :(
- repl = f"%hi({repl})"
- elif "R_MIPS_26" in row:
- # Function calls
- pass
- elif "R_MIPS_PC16" in row:
- # Branch to glabel. This gives confusing output, but there's not much
- # we can do here.
- pass
- elif "R_MIPS_GPREL16" in row:
- repl = f"%gp_rel({repl})"
- elif "R_MIPS_GOT16" in row:
- repl = f"%got({repl})"
- elif "R_MIPS_CALL16" in row:
- repl = f"%call16({repl})"
- else:
- assert False, f"unknown relocation type '{row}' for line '{prev}'"
- return before + repl + after, repl
-
-
-class AsmProcessorPPC(AsmProcessor):
- def pre_process(
- self, mnemonic: str, args: str, next_row: Optional[str]
- ) -> Tuple[str, str]:
-
- if next_row and "R_PPC_EMB_SDA21" in next_row:
- # With sda21 relocs, the linker transforms `r0` into `r2`/`r13`, and
- # we may encounter this in either pre-transformed or post-transformed
- # versions depending on if the .o file comes from compiler output or
- # from disassembly. Normalize, to make sure both forms are treated as
- # equivalent.
-
- args = args.replace("(r2)", "(0)")
- args = args.replace("(r13)", "(0)")
- args = args.replace(",r2,", ",0,")
- args = args.replace(",r13,", ",0,")
-
- # We want to convert li and lis with an sda21 reloc,
- # because the r0 to r2/r13 transformation results in
- # turning an li/lis into an addi/addis with r2/r13 arg
- # our preprocessing normalizes all versions to addi with a 0 arg
- if mnemonic in {"li", "lis"}:
- mnemonic = mnemonic.replace("li", "addi")
- args_parts = args.split(",")
- args = args_parts[0] + ",0," + args_parts[1]
-
- return mnemonic, args
-
- def process_reloc(self, row: str, prev: str) -> Tuple[str, Optional[str]]:
- arch = self.config.arch
- assert any(
- r in row
- for r in ["R_PPC_REL24", "R_PPC_ADDR16", "R_PPC_EMB_SDA21", "R_PPC_REL14"]
- ), f"unknown relocation type '{row}' for line '{prev}'"
- before, imm, after = parse_relocated_line(prev)
- repl = row.split()[-1]
- if "R_PPC_REL24" in row:
- # function calls
- pass
- if "R_PPC_REL14" in row:
- pass
- elif "R_PPC_ADDR16_HI" in row:
- # absolute hi of addr
- repl = f"{repl}@h"
- elif "R_PPC_ADDR16_HA" in row:
- # adjusted hi of addr
- repl = f"{repl}@ha"
- elif "R_PPC_ADDR16_LO" in row:
- # lo of addr
- repl = f"{repl}@l"
- elif "R_PPC_ADDR16" in row:
- # 16-bit absolute addr
- if "+0x7" in repl:
- # remove the very large addends as they are an artifact of (label-_SDA(2)_BASE_)
- # computations and are unimportant in a diff setting.
- if int(repl.split("+")[1], 16) > 0x70000000:
- repl = repl.split("+")[0]
- elif "R_PPC_EMB_SDA21" in row:
- # sda21 relocations; r2/r13 --> 0 swaps are performed in pre_process
- repl = f"{repl}@sda21"
-
- return before + repl + after, repl
-
-
-class AsmProcessorARM32(AsmProcessor):
- def process_reloc(self, row: str, prev: str) -> Tuple[str, Optional[str]]:
- arch = self.config.arch
- if "R_ARM_ABS32" in row and not prev.startswith(".word"):
- # Don't crash on R_ARM_ABS32 relocations incorrectly applied to code.
- # (We may want to do something more fancy here that actually shows the
- # related symbol, but this serves as a stop-gap.)
- return prev, None
- before, imm, after = parse_relocated_line(prev)
- repl = row.split()[-1] + reloc_addend_from_imm(imm, before, self.config.arch)
- return before + repl + after, repl
-
- def _normalize_arch_specific(self, mnemonic: str, row: str) -> str:
- if self.config.ignore_addr_diffs:
- row = self._normalize_bl(mnemonic, row)
- row = self._normalize_data_pool(row)
- return row
-
- def _normalize_bl(self, mnemonic: str, row: str) -> str:
- if mnemonic != "bl":
- return row
-
- row, _ = split_off_address(row)
- return row + ""
-
- def _normalize_data_pool(self, row: str) -> str:
- pool_match = re.search(ARM32_LOAD_POOL_PATTERN, row)
- return pool_match.group(1) if pool_match else row
-
- def post_process(self, lines: List["Line"]) -> None:
- lines_by_line_number = {}
- for line in lines:
- lines_by_line_number[line.line_num] = line
- for line in lines:
- if line.data_pool_addr is None:
- continue
-
- # Add data symbol and its address to the line.
- line_original = lines_by_line_number[line.data_pool_addr].original
- value = line_original.split()[1]
- addr = "{:x}".format(line.data_pool_addr)
- line.original = line.normalized_original + f"={value} ({addr})"
-
-
-class AsmProcessorAArch64(AsmProcessor):
- def __init__(self, config: Config) -> None:
- super().__init__(config)
- self._adrp_pair_registers: Set[str] = set()
-
- def _normalize_arch_specific(self, mnemonic: str, row: str) -> str:
- if self.config.ignore_addr_diffs:
- row = self._normalize_adrp_differences(mnemonic, row)
- row = self._normalize_bl(mnemonic, row)
- return row
-
- def _normalize_bl(self, mnemonic: str, row: str) -> str:
- if mnemonic != "bl":
- return row
-
- row, _ = split_off_address(row)
- return row + ""
-
- def _normalize_adrp_differences(self, mnemonic: str, row: str) -> str:
- """Identifies ADRP + LDR/ADD pairs that are used to access the GOT and
- suppresses any immediate differences.
-
- Whenever an ADRP is seen, the destination register is added to the set of registers
- that are part of an ADRP + LDR/ADD pair. Registers are removed from the set as soon
- as they are used for an LDR or ADD instruction which completes the pair.
-
- This method is somewhat crude but should manage to detect most such pairs.
- """
- row_parts = row.split("\t", 1)
- if mnemonic == "adrp":
- self._adrp_pair_registers.add(row_parts[1].strip().split(",")[0])
- row, _ = split_off_address(row)
- return row + ""
- elif mnemonic == "ldr":
- for reg in self._adrp_pair_registers:
- # ldr xxx, [reg]
- # ldr xxx, [reg, ]
- if f", [{reg}" in row_parts[1]:
- self._adrp_pair_registers.remove(reg)
- return normalize_imms(row, AARCH64_SETTINGS)
- elif mnemonic == "add":
- for reg in self._adrp_pair_registers:
- # add reg, reg,
- if row_parts[1].startswith(f"{reg}, {reg}, "):
- self._adrp_pair_registers.remove(reg)
- return normalize_imms(row, AARCH64_SETTINGS)
-
- return row
-
-
-@dataclass
-class ArchSettings:
- name: str
- re_int: Pattern[str]
- re_comment: Pattern[str]
- re_reg: Pattern[str]
- re_sprel: Pattern[str]
- re_large_imm: Pattern[str]
- re_imm: Pattern[str]
- re_reloc: Pattern[str]
- branch_instructions: Set[str]
- instructions_with_address_immediates: Set[str]
- forbidden: Set[str] = field(default_factory=lambda: set(string.ascii_letters + "_"))
- arch_flags: List[str] = field(default_factory=list)
- branch_likely_instructions: Set[str] = field(default_factory=set)
- proc: Type[AsmProcessor] = AsmProcessor
- big_endian: Optional[bool] = True
- delay_slot_instructions: Set[str] = field(default_factory=set)
-
-
-MIPS_BRANCH_LIKELY_INSTRUCTIONS = {
- "beql",
- "bnel",
- "beqzl",
- "bnezl",
- "bgezl",
- "bgtzl",
- "blezl",
- "bltzl",
- "bc1tl",
- "bc1fl",
-}
-MIPS_BRANCH_INSTRUCTIONS = MIPS_BRANCH_LIKELY_INSTRUCTIONS.union(
- {
- "b",
- "beq",
- "bne",
- "beqz",
- "bnez",
- "bgez",
- "bgtz",
- "blez",
- "bltz",
- "bc1t",
- "bc1f",
- }
-)
-
-ARM32_PREFIXES = {"b", "bl"}
-ARM32_CONDS = {
- "",
- "eq",
- "ne",
- "cs",
- "cc",
- "mi",
- "pl",
- "vs",
- "vc",
- "hi",
- "ls",
- "ge",
- "lt",
- "gt",
- "le",
- "al",
-}
-ARM32_SUFFIXES = {"", ".n", ".w"}
-ARM32_BRANCH_INSTRUCTIONS = {
- f"{prefix}{cond}{suffix}"
- for prefix in ARM32_PREFIXES
- for cond in ARM32_CONDS
- for suffix in ARM32_SUFFIXES
-}
-
-AARCH64_BRANCH_INSTRUCTIONS = {
- "b",
- "b.eq",
- "b.ne",
- "b.cs",
- "b.hs",
- "b.cc",
- "b.lo",
- "b.mi",
- "b.pl",
- "b.vs",
- "b.vc",
- "b.hi",
- "b.ls",
- "b.ge",
- "b.lt",
- "b.gt",
- "b.le",
- "cbz",
- "cbnz",
- "tbz",
- "tbnz",
-}
-
-PPC_BRANCH_INSTRUCTIONS = {
- "b",
- "beq",
- "beq+",
- "beq-",
- "bne",
- "bne+",
- "bne-",
- "blt",
- "blt+",
- "blt-",
- "ble",
- "ble+",
- "ble-",
- "bdnz",
- "bdnz+",
- "bdnz-",
- "bge",
- "bge+",
- "bge-",
- "bgt",
- "bgt+",
- "bgt-",
-}
-
-MIPS_SETTINGS = ArchSettings(
- name="mips",
- re_int=re.compile(r"[0-9]+"),
- re_comment=re.compile(r"<.*>"),
- # Includes:
- # - General purpose registers v0..1, a0..7, t0..9, s0..8, zero, at, fp, k0..1/kt0..1
- # - Float registers f0..31, or fv0..1, fa0..7, ft0..15, fs0..8 plus odd complements
- # (actually used number depends on ABI)
- # sp, gp should not be in this list
- re_reg=re.compile(r"\$?\b([astv][0-9]|at|f[astv]?[0-9]+f?|kt?[01]|fp|ra|zero)\b"),
- re_sprel=re.compile(r"(?<=,)([0-9]+|0x[0-9a-f]+)\(sp\)"),
- re_large_imm=re.compile(r"-?[1-9][0-9]{2,}|-?0x[0-9a-f]{3,}"),
- re_imm=re.compile(r"(\b|-)([0-9]+|0x[0-9a-fA-F]+)\b(?!\(sp)|%(lo|hi)\([^)]*\)"),
- re_reloc=re.compile(r"R_MIPS_"),
- arch_flags=["-m", "mips:4300"],
- branch_likely_instructions=MIPS_BRANCH_LIKELY_INSTRUCTIONS,
- branch_instructions=MIPS_BRANCH_INSTRUCTIONS,
- instructions_with_address_immediates=MIPS_BRANCH_INSTRUCTIONS.union({"jal", "j"}),
- delay_slot_instructions=MIPS_BRANCH_INSTRUCTIONS.union({"j", "jal", "jr", "jalr"}),
- proc=AsmProcessorMIPS,
-)
-
-MIPSEL_SETTINGS = replace(MIPS_SETTINGS, name="mipsel", big_endian=False)
-
-ARM32_SETTINGS = ArchSettings(
- name="arm32",
- re_int=re.compile(r"[0-9]+"),
- re_comment=re.compile(r"(<.*>|//.*$)"),
- # Includes:
- # - General purpose registers: r0..13
- # - Frame pointer registers: lr (r14), pc (r15)
- # - VFP/NEON registers: s0..31, d0..31, q0..15, fpscr, fpexc, fpsid
- # SP should not be in this list.
- re_reg=re.compile(
- r"\$?\b([rq][0-9]|[rq]1[0-5]|pc|lr|[ds][12]?[0-9]|[ds]3[01]|fp(scr|exc|sid))\b"
- ),
- re_sprel=re.compile(r"sp, #-?(0x[0-9a-fA-F]+|[0-9]+)\b"),
- re_large_imm=re.compile(r"-?[1-9][0-9]{2,}|-?0x[0-9a-f]{3,}"),
- re_imm=re.compile(r"(?|//.*$)"),
- # GPRs and FP registers: X0-X30, W0-W30, [BHSDVQ]0..31
- # (FP registers may be followed by data width and number of elements, e.g. V0.4S)
- # The zero registers and SP should not be in this list.
- re_reg=re.compile(
- r"\$?\b([bhsdvq]([12]?[0-9]|3[01])(\.\d\d?[bhsdvq])?|[xw][12]?[0-9]|[xw]30)\b"
- ),
- re_sprel=re.compile(r"sp, #-?(0x[0-9a-fA-F]+|[0-9]+)\b"),
- re_large_imm=re.compile(r"-?[1-9][0-9]{2,}|-?0x[0-9a-f]{3,}"),
- re_imm=re.compile(r"(?|//.*$)"),
- # r1 not included
- re_reg=re.compile(r"\$?\b([rf](?:[02-9]|[1-9][0-9]+)|f1)\b"),
- re_sprel=re.compile(r"(?<=,)(-?[0-9]+|-?0x[0-9a-f]+)\(r1\)"),
- re_large_imm=re.compile(r"-?[1-9][0-9]{2,}|-?0x[0-9a-f]{3,}"),
- re_imm=re.compile(
- r"(\b|-)([0-9]+|0x[0-9a-fA-F]+)\b(?!\(r1)|[^ \t,]+@(l|ha|h|sda21)"
- ),
- re_reloc=re.compile(r"R_PPC_"),
- arch_flags=["-m", "powerpc", "-M", "broadway"],
- branch_instructions=PPC_BRANCH_INSTRUCTIONS,
- instructions_with_address_immediates=PPC_BRANCH_INSTRUCTIONS.union({"bl"}),
- proc=AsmProcessorPPC,
-)
-
-ARCH_SETTINGS = [
- MIPS_SETTINGS,
- MIPSEL_SETTINGS,
- ARM32_SETTINGS,
- ARMEL_SETTINGS,
- AARCH64_SETTINGS,
- PPC_SETTINGS,
-]
-
-
-def hexify_int(row: str, pat: Match[str], arch: ArchSettings) -> str:
- full = pat.group(0)
- if len(full) <= 1:
- # leave one-digit ints alone
- return full
- start, end = pat.span()
- if start and row[start - 1] in arch.forbidden:
- return full
- if end < len(row) and row[end] in arch.forbidden:
- return full
- return hex(int(full))
-
-
-def parse_relocated_line(line: str) -> Tuple[str, str, str]:
- # Pick out the last argument
- for c in ",\t ":
- if c in line:
- ind2 = line.rindex(c)
- break
- else:
- raise Exception(f"failed to parse relocated line: {line}")
- before = line[: ind2 + 1]
- after = line[ind2 + 1 :]
- # Move an optional ($reg) part of it to 'after'
- ind2 = after.find("(")
- if ind2 == -1:
- imm, after = after, ""
- else:
- imm, after = after[:ind2], after[ind2:]
- return before, imm, after
-
-
-def reloc_addend_from_imm(imm: str, before: str, arch: ArchSettings) -> str:
- """For architectures like MIPS where relocations have addends embedded in
- the code as immediates, convert such an immediate into an addition/
- subtraction that can occur just after the symbol."""
- # TODO this is incorrect for MIPS %lo/%hi which need to be paired up
- # and combined. In practice, this means we only get symbol offsets within
- # %lo, while %hi just shows the symbol. Unfortunately, objdump's output
- # loses relocation order, so we cannot do this without parsing ELF relocs
- # ourselves...
- mnemonic = before.split()[0]
- if mnemonic in arch.instructions_with_address_immediates:
- addend = int(imm, 16)
- else:
- addend = int(imm, 0)
- if addend == 0:
- return ""
- elif addend < 0:
- return hex(addend)
- else:
- return "+" + hex(addend)
-
-
-def pad_mnemonic(line: str) -> str:
- if "\t" not in line:
- return line
- mn, args = line.split("\t", 1)
- return f"{mn:<7s} {args}"
-
-
-@dataclass
-class Line:
- mnemonic: str
- diff_row: str
- original: str
- normalized_original: str
- scorable_line: str
- symbol: Optional[str] = None
- line_num: Optional[int] = None
- branch_target: Optional[int] = None
- data_pool_addr: Optional[int] = None
- source_filename: Optional[str] = None
- source_line_num: Optional[int] = None
- source_lines: List[str] = field(default_factory=list)
- comment: Optional[str] = None
-
-
-def process(dump: str, config: Config) -> List[Line]:
- arch = config.arch
- processor = arch.proc(config)
- skip_next = False
- source_lines = []
- source_filename = None
- source_line_num = None
-
- i = 0
- num_instr = 0
- data_refs: Dict[int, Dict[str, List[int]]] = defaultdict(lambda: defaultdict(list))
- output: List[Line] = []
- stop_after_delay_slot = False
- lines = dump.split("\n")
- while i < len(lines):
- row = lines[i]
- i += 1
-
- if not row:
- continue
-
- if re.match(r"^[0-9a-f]+ <.*>:$", row):
- continue
-
- if row.startswith("DATAREF"):
- parts = row.split(" ", 3)
- text_offset = int(parts[1])
- from_offset = int(parts[2])
- from_section = parts[3]
- data_refs[text_offset][from_section].append(from_offset)
- continue
-
- if config.diff_obj and num_instr >= config.max_function_size_lines:
- output.append(
- Line(
- mnemonic="...",
- diff_row="...",
- original="...",
- normalized_original="...",
- scorable_line="...",
- )
- )
- break
-
- if not re.match(r"^\s+[0-9a-f]+:\s+", row):
- # This regex is conservative, and assumes the file path does not contain "weird"
- # characters like tabs or angle brackets.
- if re.match(
- r"^[^ \t<>][^\t<>]*:[0-9]+( \(discriminator [0-9]+\))?$", row
- ):
- source_filename, _, tail = row.rpartition(":")
- source_line_num = int(tail.partition(" ")[0])
- source_lines.append(row)
- continue
-
- # If the instructions loads a data pool symbol, extract the address of
- # the symbol.
- data_pool_addr = None
- pool_match = re.search(ARM32_LOAD_POOL_PATTERN, row)
- if pool_match:
- offset = pool_match.group(3).split(" ")[0][1:]
- data_pool_addr = int(offset, 16)
-
- m_comment = re.search(arch.re_comment, row)
- comment = m_comment[0] if m_comment else None
- row = re.sub(arch.re_comment, "", row)
- line_num_str = row.split(":")[0]
- row = row.rstrip()
- tabs = row.split("\t")
- row = "\t".join(tabs[2:])
- line_num = eval_line_num(line_num_str.strip())
-
- if line_num in data_refs:
- refs = data_refs[line_num]
- ref_str = "; ".join(
- section_name + "+" + ",".join(hex(off) for off in offs)
- for section_name, offs in refs.items()
- )
- output.append(
- Line(
- mnemonic="",
- diff_row="",
- original=ref_str,
- normalized_original=ref_str,
- scorable_line="",
- )
- )
-
- if "\t" in row:
- row_parts = row.split("\t", 1)
- else:
- # powerpc-eabi-objdump doesn't use tabs
- row_parts = [part.lstrip() for part in row.split(" ", 1)]
-
- mnemonic = row_parts[0].strip()
- args = row_parts[1].strip() if len(row_parts) >= 2 else ""
-
- next_line = lines[i] if i < len(lines) else None
- mnemonic, args = processor.pre_process(mnemonic, args, next_line)
- row = mnemonic + "\t" + args.replace("\t", " ")
-
- addr = ""
- if mnemonic in arch.instructions_with_address_immediates:
- row, addr = split_off_address(row)
- # objdump prefixes addresses with 0x/-0x if they don't resolve to some
- # symbol + offset. Strip that.
- addr = addr.replace("0x", "")
-
- row = re.sub(arch.re_int, lambda m: hexify_int(row, m, arch), row)
- row += addr
-
- # Let 'original' be 'row' with relocations applied, while we continue
- # transforming 'row' into a coarser version that ignores registers and
- # immediates.
- original = row
-
- symbol = None
- while i < len(lines):
- reloc_row = lines[i]
- if re.search(arch.re_reloc, reloc_row):
- original, reloc_symbol = processor.process_reloc(reloc_row, original)
- if reloc_symbol is not None:
- symbol = reloc_symbol
- else:
- break
- i += 1
-
- normalized_original = processor.normalize(mnemonic, original)
-
- scorable_line = normalized_original
- if not config.score_stack_differences:
- scorable_line = re.sub(arch.re_sprel, "addr(sp)", scorable_line)
-
- if skip_next:
- skip_next = False
- row = ""
- mnemonic = ""
- scorable_line = ""
- if mnemonic in arch.branch_likely_instructions:
- skip_next = True
-
- row = re.sub(arch.re_reg, "", row)
- row = re.sub(arch.re_sprel, "addr(sp)", row)
- row_with_imm = row
- if mnemonic in arch.instructions_with_address_immediates:
- row = row.strip()
- row, _ = split_off_address(row)
- row += ""
- else:
- row = normalize_imms(row, arch)
-
- branch_target = None
- if mnemonic in arch.branch_instructions:
- branch_target = int(args.split(",")[-1], 16)
-
- output.append(
- Line(
- mnemonic=mnemonic,
- diff_row=row,
- original=original,
- normalized_original=normalized_original,
- scorable_line=scorable_line,
- symbol=symbol,
- line_num=line_num,
- branch_target=branch_target,
- data_pool_addr=data_pool_addr,
- source_filename=source_filename,
- source_line_num=source_line_num,
- source_lines=source_lines,
- comment=comment,
- )
- )
- num_instr += 1
- source_lines = []
-
- if config.stop_at_ret:
- if config.arch.name == "mips":
- if mnemonic == "jr" and args == "ra":
- stop_after_delay_slot = True
- elif stop_after_delay_slot:
- break
- if config.arch.name == "ppc":
- if mnemonic == "blr":
- break
-
- processor.post_process(output)
- return output
-
-
-def normalize_imms(row: str, arch: ArchSettings) -> str:
- return re.sub(arch.re_imm, "", row)
-
-
-def normalize_stack(row: str, arch: ArchSettings) -> str:
- return re.sub(arch.re_sprel, "addr(sp)", row)
-
-
-def check_for_symbol_mismatch(
- old_line: Line, new_line: Line, symbol_map: Dict[str, str]
-) -> bool:
-
- assert old_line.symbol is not None
- assert new_line.symbol is not None
-
- if new_line.symbol.startswith("%hi"):
- return False
-
- if old_line.symbol not in symbol_map:
- symbol_map[old_line.symbol] = new_line.symbol
- return False
- elif symbol_map[old_line.symbol] == new_line.symbol:
- return False
-
- return True
-
-
-def field_matches_any_symbol(field: str, arch: ArchSettings) -> bool:
- if arch.name == "ppc":
- if "..." in field:
- return True
-
- parts = field.rsplit("@", 1)
- if len(parts) == 2 and parts[1] in {"l", "h", "ha", "sda21"}:
- field = parts[0]
-
- return re.fullmatch((r"^@\d+$"), field) is not None
-
- if arch.name == "mips":
- return "." in field
-
- # Example: ".text+0x34"
- if arch.name == "arm32":
- return "." in field
-
- return False
-
-
-def split_off_address(line: str) -> Tuple[str, str]:
- """Split e.g. 'beqz $r0,1f0' into 'beqz $r0,' and '1f0'."""
- parts = line.split(",")
- if len(parts) < 2:
- parts = line.split(None, 1)
- if len(parts) < 2:
- parts.append("")
- off = len(line) - len(parts[-1].strip())
- return line[:off], line[off:]
-
-
-def diff_sequences_difflib(
- seq1: List[str], seq2: List[str]
-) -> List[Tuple[str, int, int, int, int]]:
- differ = difflib.SequenceMatcher(a=seq1, b=seq2, autojunk=False)
- return differ.get_opcodes()
-
-
-def diff_sequences(
- seq1: List[str], seq2: List[str], algorithm: str
-) -> List[Tuple[str, int, int, int, int]]:
- if (
- algorithm != "levenshtein"
- or len(seq1) * len(seq2) > 4 * 10**8
- or len(seq1) + len(seq2) >= 0x110000
- ):
- return diff_sequences_difflib(seq1, seq2)
-
- # The Levenshtein library assumes that we compare strings, not lists. Convert.
- # (Per the check above we know we have fewer than 0x110000 unique elements, so chr() works.)
- remapping: Dict[str, str] = {}
-
- def remap(seq: List[str]) -> str:
- seq = seq[:]
- for i in range(len(seq)):
- val = remapping.get(seq[i])
- if val is None:
- val = chr(len(remapping))
- remapping[seq[i]] = val
- seq[i] = val
- return "".join(seq)
-
- rem1 = remap(seq1)
- rem2 = remap(seq2)
- import Levenshtein
-
- ret: List[Tuple[str, int, int, int, int]] = Levenshtein.opcodes(rem1, rem2)
- return ret
-
-
-def diff_lines(
- lines1: List[Line],
- lines2: List[Line],
- algorithm: str,
-) -> List[Tuple[Optional[Line], Optional[Line]]]:
- ret = []
- for (tag, i1, i2, j1, j2) in diff_sequences(
- [line.mnemonic for line in lines1],
- [line.mnemonic for line in lines2],
- algorithm,
- ):
- for line1, line2 in itertools.zip_longest(lines1[i1:i2], lines2[j1:j2]):
- if tag == "replace":
- if line1 is None:
- tag = "insert"
- elif line2 is None:
- tag = "delete"
- elif tag == "insert":
- assert line1 is None
- elif tag == "delete":
- assert line2 is None
- ret.append((line1, line2))
-
- return ret
-
-
-def diff_sameline(
- old_line: Line, new_line: Line, config: Config, symbol_map: Dict[str, str]
-) -> Tuple[int, int, bool]:
-
- old = old_line.scorable_line
- new = new_line.scorable_line
- if old == new:
- return (0, 0, False)
-
- num_stack_penalties = 0
- num_regalloc_penalties = 0
- has_symbol_mismatch = False
-
- ignore_last_field = False
- if config.score_stack_differences:
- oldsp = re.search(config.arch.re_sprel, old)
- newsp = re.search(config.arch.re_sprel, new)
- if oldsp and newsp:
- oldrel = int(oldsp.group(1) or "0", 0)
- newrel = int(newsp.group(1) or "0", 0)
- num_stack_penalties += abs(oldrel - newrel)
- ignore_last_field = True
-
- # Probably regalloc difference, or signed vs unsigned
-
- # Compare each field in order
- new_parts, old_parts = new.split(None, 1), old.split(None, 1)
- newfields, oldfields = new_parts[1].split(","), old_parts[1].split(",")
- if ignore_last_field:
- newfields = newfields[:-1]
- oldfields = oldfields[:-1]
- else:
- # If the last field has a parenthesis suffix, e.g. "0x38(r7)"
- # we split that part out to make it a separate field
- # however, we don't split if it has a proceeding %hi/%lo e.g."%lo(.data)" or "%hi(.rodata + 0x10)"
- re_paren = re.compile(r"(? int:
- # This logic is copied from `scorer.py` from the decomp permuter project
- # https://github.com/simonlindholm/decomp-permuter/blob/main/src/scorer.py
- num_stack_penalties = 0
- num_regalloc_penalties = 0
- num_reordering_penalties = 0
- num_insertion_penalties = 0
- num_deletion_penalties = 0
- deletions = []
- insertions = []
-
- def diff_insert(line: str) -> None:
- # Reordering or totally different codegen.
- # Defer this until later when we can tell.
- insertions.append(line)
-
- def diff_delete(line: str) -> None:
- deletions.append(line)
-
- # Find the end of the last long streak of matching mnemonics, if it looks
- # like the objdump output was truncated. This is used to skip scoring
- # misaligned lines at the end of the diff.
- last_mismatch = -1
- max_index = None
- lines_were_truncated = False
- for index, (line1, line2) in enumerate(lines):
- if (line1 and line1.original == "...") or (line2 and line2.original == "..."):
- lines_were_truncated = True
- if line1 and line2 and line1.mnemonic == line2.mnemonic:
- if index - last_mismatch >= 50:
- max_index = index
- else:
- last_mismatch = index
- if not lines_were_truncated:
- max_index = None
-
- for index, (line1, line2) in enumerate(lines):
- if max_index is not None and index > max_index:
- break
- if line1 and line2 and line1.mnemonic == line2.mnemonic:
- sp, rp, _ = diff_sameline(line1, line2, config, symbol_map)
- num_stack_penalties += sp
- num_regalloc_penalties += rp
- else:
- if line1:
- diff_delete(line1.scorable_line)
- if line2:
- diff_insert(line2.scorable_line)
-
- insertions_co = Counter(insertions)
- deletions_co = Counter(deletions)
- for item in insertions_co + deletions_co:
- ins = insertions_co[item]
- dels = deletions_co[item]
- common = min(ins, dels)
- num_insertion_penalties += ins - common
- num_deletion_penalties += dels - common
- num_reordering_penalties += common
-
- return (
- num_stack_penalties * config.penalty_stackdiff
- + num_regalloc_penalties * config.penalty_regalloc
- + num_reordering_penalties * config.penalty_reordering
- + num_insertion_penalties * config.penalty_insertion
- + num_deletion_penalties * config.penalty_deletion
- )
-
-
-@dataclass(frozen=True)
-class OutputLine:
- base: Optional[Text] = field(compare=False)
- fmt2: Text = field(compare=False)
- key2: Optional[str]
- boring: bool = field(compare=False)
- is_data_ref: bool = field(compare=False)
- line1: Optional[Line] = field(compare=False)
- line2: Optional[Line] = field(compare=False)
-
-
-@dataclass(frozen=True)
-class Diff:
- lines: List[OutputLine]
- score: int
- max_score: int
-
-
-def trim_nops(lines: List[Line], arch: ArchSettings) -> List[Line]:
- lines = lines[:]
- while (
- lines
- and lines[-1].mnemonic == "nop"
- and (len(lines) == 1 or lines[-2].mnemonic not in arch.delay_slot_instructions)
- ):
- lines.pop()
- return lines
-
-
-def do_diff(lines1: List[Line], lines2: List[Line], config: Config) -> Diff:
- if config.show_source:
- import cxxfilt
- arch = config.arch
- fmt = config.formatter
- output: List[OutputLine] = []
- symbol_map: Dict[str, str] = {}
-
- sc1 = symbol_formatter("base-reg", 0)
- sc2 = symbol_formatter("my-reg", 0)
- sc3 = symbol_formatter("base-stack", 4)
- sc4 = symbol_formatter("my-stack", 4)
- sc5 = symbol_formatter("base-branch", 0)
- sc6 = symbol_formatter("my-branch", 0)
- bts1: Set[int] = set()
- bts2: Set[int] = set()
-
- if config.show_branches:
- for (lines, btset, sc) in [
- (lines1, bts1, sc5),
- (lines2, bts2, sc6),
- ]:
- for line in lines:
- bt = line.branch_target
- if bt is not None:
- btset.add(bt)
- sc(str(bt))
-
- lines1 = trim_nops(lines1, arch)
- lines2 = trim_nops(lines2, arch)
-
- diffed_lines = diff_lines(lines1, lines2, config.algorithm)
- score = score_diff_lines(diffed_lines, config, symbol_map)
- max_score = len(lines1) * config.penalty_deletion
-
- line_num_base = -1
- line_num_offset = 0
- line_num_2to1 = {}
- for (line1, line2) in diffed_lines:
- if line1 is not None and line1.line_num is not None:
- line_num_base = line1.line_num
- line_num_offset = 0
- else:
- line_num_offset += 1
- if line2 is not None and line2.line_num is not None:
- line_num_2to1[line2.line_num] = (line_num_base, line_num_offset)
-
- for (line1, line2) in diffed_lines:
- line_color1 = line_color2 = sym_color = BasicFormat.NONE
- line_prefix = " "
- is_data_ref = False
- out1 = Text() if not line1 else Text(pad_mnemonic(line1.original))
- out2 = Text() if not line2 else Text(pad_mnemonic(line2.original))
- if line1 and line2 and line1.diff_row == line2.diff_row:
- if line1.diff_row == "":
- if line1.normalized_original != line2.normalized_original:
- line_prefix = "i"
- sym_color = BasicFormat.DIFF_CHANGE
- out1 = out1.reformat(sym_color)
- out2 = out2.reformat(sym_color)
- is_data_ref = True
- elif (
- line1.normalized_original == line2.normalized_original
- and line2.branch_target is None
- ):
- # Fast path: no coloring needed. We don't include branch instructions
- # in this case because we need to check that their targets line up in
- # the diff, and don't just happen to have the are the same address
- # by accident.
- pass
- elif line1.diff_row == "":
- # Don't draw attention to differing branch-likely delay slots: they
- # typically mirror the branch destination - 1 so the real difference
- # is elsewhere. Still, do mark them as different to avoid confusion.
- # No need to consider branches because delay slots can't branch.
- out1 = out1.reformat(BasicFormat.DELAY_SLOT)
- out2 = out2.reformat(BasicFormat.DELAY_SLOT)
- else:
- mnemonic = line1.original.split()[0]
- branchless1, address1 = out1.plain(), ""
- branchless2, address2 = out2.plain(), ""
- if mnemonic in arch.instructions_with_address_immediates:
- branchless1, address1 = split_off_address(branchless1)
- branchless2, address2 = split_off_address(branchless2)
-
- out1 = Text(branchless1)
- out2 = Text(branchless2)
- out1, out2 = format_fields(
- arch.re_imm, out1, out2, lambda _: BasicFormat.IMMEDIATE
- )
-
- if line2.branch_target is not None:
- target = line2.branch_target
- line2_target = line_num_2to1.get(line2.branch_target)
- if line2_target is None:
- # If the target is outside the disassembly, extrapolate.
- # This only matters near the bottom.
- assert line2.line_num is not None
- line2_line = line_num_2to1[line2.line_num]
- line2_target = (line2_line[0] + (target - line2.line_num), 0)
-
- # Adjust the branch target for scoring and three-way diffing.
- norm2, norm_branch2 = split_off_address(line2.normalized_original)
- if norm_branch2 != "":
- retargetted = hex(line2_target[0]).replace("0x", "")
- if line2_target[1] != 0:
- retargetted += f"+{line2_target[1]}"
- line2.normalized_original = norm2 + retargetted
- sc_base, _ = split_off_address(line2.scorable_line)
- line2.scorable_line = sc_base + retargetted
- same_target = line2_target == (line1.branch_target, 0)
- else:
- # Do a naive comparison for non-branches (e.g. function calls).
- same_target = address1 == address2
-
- if normalize_imms(branchless1, arch) == normalize_imms(
- branchless2, arch
- ):
- (
- stack_penalties,
- regalloc_penalties,
- has_symbol_mismatch,
- ) = diff_sameline(line1, line2, config, symbol_map)
-
- if (
- regalloc_penalties == 0
- and stack_penalties == 0
- and not has_symbol_mismatch
- ):
- # ignore differences due to %lo(.rodata + ...) vs symbol
- out1 = out1.reformat(BasicFormat.NONE)
- out2 = out2.reformat(BasicFormat.NONE)
- elif line2.branch_target is not None and same_target:
- # same-target branch, don't color
- pass
- else:
- # must have an imm difference (or else we would have hit the
- # fast path)
- sym_color = BasicFormat.IMMEDIATE
- line_prefix = "i"
- else:
- out1, out2 = format_fields(arch.re_sprel, out1, out2, sc3, sc4)
- if normalize_stack(branchless1, arch) == normalize_stack(
- branchless2, arch
- ):
- # only stack differences (luckily stack and imm
- # differences can't be combined in MIPS, so we
- # don't have to think about that case)
- sym_color = BasicFormat.STACK
- line_prefix = "s"
- else:
- # reg differences and maybe imm as well
- out1, out2 = format_fields(arch.re_reg, out1, out2, sc1, sc2)
- line_color1 = line_color2 = sym_color = BasicFormat.REGISTER
- line_prefix = "r"
-
- if same_target:
- address_imm_fmt = BasicFormat.NONE
- else:
- address_imm_fmt = BasicFormat.IMMEDIATE
- out1 += Text(address1, address_imm_fmt)
- out2 += Text(address2, address_imm_fmt)
- elif line1 and line2:
- line_prefix = "|"
- line_color1 = line_color2 = sym_color = BasicFormat.DIFF_CHANGE
- out1 = out1.reformat(line_color1)
- out2 = out2.reformat(line_color2)
- elif line1:
- line_prefix = "<"
- line_color1 = sym_color = BasicFormat.DIFF_REMOVE
- out1 = out1.reformat(line_color1)
- out2 = Text()
- elif line2:
- line_prefix = ">"
- line_color2 = sym_color = BasicFormat.DIFF_ADD
- out1 = Text()
- out2 = out2.reformat(line_color2)
-
- if config.show_source and line2 and line2.comment:
- out2 += f" {line2.comment}"
-
- def format_part(
- out: Text,
- line: Optional[Line],
- line_color: Format,
- btset: Set[int],
- sc: FormatFunction,
- ) -> Optional[Text]:
- if line is None:
- return None
- if line.line_num is None:
- return out
- in_arrow = Text(" ")
- out_arrow = Text()
- if config.show_branches:
- if line.line_num in btset:
- in_arrow = Text("~>", sc(str(line.line_num)))
- if line.branch_target is not None:
- out_arrow = " " + Text("~>", sc(str(line.branch_target)))
- formatted_line_num = Text(hex(line.line_num)[2:] + ":", line_color)
- return formatted_line_num + " " + in_arrow + " " + out + out_arrow
-
- part1 = format_part(out1, line1, line_color1, bts1, sc5)
- part2 = format_part(out2, line2, line_color2, bts2, sc6)
-
- if config.show_source and line2:
- for source_line in line2.source_lines:
- line_format = BasicFormat.SOURCE_OTHER
- if config.source_old_binutils:
- if source_line and re.fullmatch(".*\.c(?:pp)?:\d+", source_line):
- line_format = BasicFormat.SOURCE_FILENAME
- elif source_line and source_line.endswith("():"):
- line_format = BasicFormat.SOURCE_FUNCTION
- try:
- source_line = cxxfilt.demangle(
- source_line[:-3], external_only=False
- )
- except:
- pass
- else:
- # File names and function names
- if source_line and source_line[0] != "│":
- line_format = BasicFormat.SOURCE_FILENAME
- # Function names
- if source_line.endswith("():"):
- line_format = BasicFormat.SOURCE_FUNCTION
- try:
- source_line = cxxfilt.demangle(
- source_line[:-3], external_only=False
- )
- except:
- pass
- padding = " " * 7 if config.show_line_numbers else " " * 2
- output.append(
- OutputLine(
- base=None,
- fmt2=padding + Text(source_line, line_format),
- key2=source_line,
- boring=True,
- is_data_ref=False,
- line1=None,
- line2=None,
- )
- )
-
- key2 = line2.normalized_original if line2 else None
- boring = False
- if line_prefix == " ":
- boring = True
- elif config.compress and config.compress.same_instr and line_prefix in "irs":
- boring = True
-
- if config.show_line_numbers:
- if line2 and line2.source_line_num is not None:
- num_color = (
- BasicFormat.SOURCE_LINE_NUM
- if sym_color == BasicFormat.NONE
- else sym_color
- )
- num2 = Text(f"{line2.source_line_num:5}", num_color)
- else:
- num2 = Text(" " * 5)
- else:
- num2 = Text()
-
- fmt2 = Text(line_prefix, sym_color) + num2 + " " + (part2 or Text())
-
- output.append(
- OutputLine(
- base=part1,
- fmt2=fmt2,
- key2=key2,
- boring=boring,
- is_data_ref=is_data_ref,
- line1=line1,
- line2=line2,
- )
- )
-
- output = output[config.skip_lines :]
-
- return Diff(lines=output, score=score, max_score=max_score)
-
-
-def chunk_diff_lines(
- diff: List[OutputLine],
-) -> List[Union[List[OutputLine], OutputLine]]:
- """Chunk a diff into an alternating list like A B A B ... A, where:
- * A is a List[OutputLine] of insertions,
- * B is a single non-insertion OutputLine, with .base != None."""
- cur_right: List[OutputLine] = []
- chunks: List[Union[List[OutputLine], OutputLine]] = []
- for output_line in diff:
- if output_line.base is not None:
- chunks.append(cur_right)
- chunks.append(output_line)
- cur_right = []
- else:
- cur_right.append(output_line)
- chunks.append(cur_right)
- return chunks
-
-
-def compress_matching(
- li: List[Tuple[OutputLine, ...]], context: int
-) -> List[Tuple[OutputLine, ...]]:
- ret: List[Tuple[OutputLine, ...]] = []
- matching_streak: List[Tuple[OutputLine, ...]] = []
- context = max(context, 0)
-
- def flush_matching() -> None:
- if len(matching_streak) <= 2 * context + 1:
- ret.extend(matching_streak)
- else:
- ret.extend(matching_streak[:context])
- skipped = len(matching_streak) - 2 * context
- filler = OutputLine(
- base=Text(f"<{skipped} lines>", BasicFormat.SOURCE_OTHER),
- fmt2=Text(),
- key2=None,
- boring=False,
- is_data_ref=False,
- line1=None,
- line2=None,
- )
- columns = len(matching_streak[0])
- ret.append(tuple([filler] * columns))
- if context > 0:
- ret.extend(matching_streak[-context:])
- matching_streak.clear()
-
- for line in li:
- if line[0].boring:
- matching_streak.append(line)
- else:
- flush_matching()
- ret.append(line)
-
- flush_matching()
- return ret
-
-
-def align_diffs(
- old_diff: Diff, new_diff: Diff, config: Config
-) -> Tuple[TableMetadata, List[Tuple[OutputLine, ...]]]:
- meta: TableMetadata
- diff_lines: List[Tuple[OutputLine, ...]]
- padding = " " * 7 if config.show_line_numbers else " " * 2
-
- if config.threeway:
- meta = TableMetadata(
- headers=(
- Text("TARGET"),
- Text(f"{padding}CURRENT ({new_diff.score})"),
- Text(f"{padding}PREVIOUS ({old_diff.score})"),
- ),
- current_score=new_diff.score,
- max_score=new_diff.max_score,
- previous_score=old_diff.score,
- )
- old_chunks = chunk_diff_lines(old_diff.lines)
- new_chunks = chunk_diff_lines(new_diff.lines)
- diff_lines = []
- empty = OutputLine(Text(), Text(), None, True, False, None, None)
- assert len(old_chunks) == len(new_chunks), "same target"
- for old_chunk, new_chunk in zip(old_chunks, new_chunks):
- if isinstance(old_chunk, list):
- assert isinstance(new_chunk, list)
- if not old_chunk and not new_chunk:
- # Most of the time lines sync up without insertions/deletions,
- # and there's no interdiffing to be done.
- continue
- differ = difflib.SequenceMatcher(
- a=old_chunk, b=new_chunk, autojunk=False
- )
- for (tag, i1, i2, j1, j2) in differ.get_opcodes():
- if tag in ["equal", "replace"]:
- for i, j in zip(range(i1, i2), range(j1, j2)):
- diff_lines.append((empty, new_chunk[j], old_chunk[i]))
- if tag in ["insert", "replace"]:
- for j in range(j1 + i2 - i1, j2):
- diff_lines.append((empty, new_chunk[j], empty))
- if tag in ["delete", "replace"]:
- for i in range(i1 + j2 - j1, i2):
- diff_lines.append((empty, empty, old_chunk[i]))
- else:
- assert isinstance(new_chunk, OutputLine)
- # old_chunk.base and new_chunk.base have the same text since
- # both diffs are based on the same target, but they might
- # differ in color. Use the new version.
- diff_lines.append((new_chunk, new_chunk, old_chunk))
- diff_lines = [
- (base, new, old if old != new else empty) for base, new, old in diff_lines
- ]
- else:
- meta = TableMetadata(
- headers=(
- Text("TARGET"),
- Text(f"{padding}CURRENT ({new_diff.score})"),
- ),
- current_score=new_diff.score,
- max_score=new_diff.max_score,
- previous_score=None,
- )
- diff_lines = [(line, line) for line in new_diff.lines]
- if config.compress:
- diff_lines = compress_matching(diff_lines, config.compress.context)
- return meta, diff_lines
-
-
-def debounced_fs_watch(
- targets: List[str],
- outq: "queue.Queue[Optional[float]]",
- config: Config,
- project: ProjectSettings,
-) -> None:
- import watchdog.events
- import watchdog.observers
-
- class WatchEventHandler(watchdog.events.FileSystemEventHandler):
- def __init__(
- self, queue: "queue.Queue[float]", file_targets: List[str]
- ) -> None:
- self.queue = queue
- self.file_targets = file_targets
-
- def on_modified(self, ev: object) -> None:
- if isinstance(ev, watchdog.events.FileModifiedEvent):
- self.changed(ev.src_path)
-
- def on_moved(self, ev: object) -> None:
- if isinstance(ev, watchdog.events.FileMovedEvent):
- self.changed(ev.dest_path)
-
- def should_notify(self, path: str) -> bool:
- for target in self.file_targets:
- if os.path.normpath(path) == target:
- return True
- if config.make and any(
- path.endswith(suffix) for suffix in project.source_extensions
- ):
- return True
- return False
-
- def changed(self, path: str) -> None:
- if self.should_notify(path):
- self.queue.put(time.time())
-
- def debounce_thread() -> NoReturn:
- listenq: "queue.Queue[float]" = queue.Queue()
- file_targets: List[str] = []
- event_handler = WatchEventHandler(listenq, file_targets)
- observer = watchdog.observers.Observer()
- observed = set()
- for target in targets:
- if os.path.isdir(target):
- observer.schedule(event_handler, target, recursive=True)
- else:
- file_targets.append(os.path.normpath(target))
- target = os.path.dirname(target) or "."
- if target not in observed:
- observed.add(target)
- observer.schedule(event_handler, target)
- observer.start()
- while True:
- t = listenq.get()
- more = True
- while more:
- delay = t + DEBOUNCE_DELAY - time.time()
- if delay > 0:
- time.sleep(delay)
- # consume entire queue
- more = False
- try:
- while True:
- t = listenq.get(block=False)
- more = True
- except queue.Empty:
- pass
- outq.put(t)
-
- th = threading.Thread(target=debounce_thread, daemon=True)
- th.start()
-
-
-class Display:
- basedump: str
- mydump: str
- last_refresh_key: object
- config: Config
- emsg: Optional[str]
- last_diff_output: Optional[Diff]
- pending_update: Optional[str]
- ready_queue: "queue.Queue[None]"
- watch_queue: "queue.Queue[Optional[float]]"
- less_proc: "Optional[subprocess.Popen[bytes]]"
-
- def __init__(self, basedump: str, mydump: str, config: Config) -> None:
- self.config = config
- self.base_lines = process(basedump, config)
- self.mydump = mydump
- self.emsg = None
- self.last_refresh_key = None
- self.last_diff_output = None
-
- def run_diff(self) -> Tuple[str, object]:
- if self.emsg is not None:
- return (self.emsg, self.emsg)
-
- my_lines = process(self.mydump, self.config)
- diff_output = do_diff(self.base_lines, my_lines, self.config)
- last_diff_output = self.last_diff_output or diff_output
- if self.config.threeway != "base" or not self.last_diff_output:
- self.last_diff_output = diff_output
-
- meta, diff_lines = align_diffs(last_diff_output, diff_output, self.config)
- output = self.config.formatter.table(meta, diff_lines)
-
- refresh_key = (
- [line.key2 for line in diff_output.lines],
- diff_output.score,
- )
-
- return (output, refresh_key)
-
- def run_less(
- self, output: str
- ) -> "Tuple[subprocess.Popen[bytes], subprocess.Popen[bytes]]":
- # Pipe the output through 'tail' and only then to less, to ensure the
- # write call doesn't block. ('tail' has to buffer all its input before
- # it starts writing.) This also means we don't have to deal with pipe
- # closure errors.
- buffer_proc = subprocess.Popen(
- BUFFER_CMD, stdin=subprocess.PIPE, stdout=subprocess.PIPE
- )
- less_proc = subprocess.Popen(LESS_CMD, stdin=buffer_proc.stdout)
- assert buffer_proc.stdin
- assert buffer_proc.stdout
- buffer_proc.stdin.write(output.encode())
- buffer_proc.stdin.close()
- buffer_proc.stdout.close()
- return (buffer_proc, less_proc)
-
- def run_sync(self) -> None:
- output, _ = self.run_diff()
- proca, procb = self.run_less(output)
- procb.wait()
- proca.wait()
-
- def run_async(self, watch_queue: "queue.Queue[Optional[float]]") -> None:
- self.watch_queue = watch_queue
- self.ready_queue = queue.Queue()
- self.pending_update = None
- output, refresh_key = self.run_diff()
- self.last_refresh_key = refresh_key
- dthread = threading.Thread(target=self.display_thread, args=(output,))
- dthread.start()
- self.ready_queue.get()
-
- def display_thread(self, initial_output: str) -> None:
- proca, procb = self.run_less(initial_output)
- self.less_proc = procb
- self.ready_queue.put(None)
- while True:
- ret = procb.wait()
- proca.wait()
- self.less_proc = None
- if ret != 0:
- # fix the terminal
- os.system("tput reset")
- if ret != 0 and self.pending_update is not None:
- # killed by program with the intent to refresh
- output = self.pending_update
- self.pending_update = None
- proca, procb = self.run_less(output)
- self.less_proc = procb
- self.ready_queue.put(None)
- else:
- # terminated by user, or killed
- self.watch_queue.put(None)
- self.ready_queue.put(None)
- break
-
- def progress(self, msg: str) -> None:
- # Write message to top-left corner
- sys.stdout.write("\x1b7\x1b[1;1f{}\x1b8".format(msg + " "))
- sys.stdout.flush()
-
- def update(self, text: str, error: bool) -> None:
- if not error and not self.emsg and text == self.mydump:
- self.progress("Unchanged. ")
- return
- if not error:
- self.mydump = text
- self.emsg = None
- else:
- self.emsg = text
- output, refresh_key = self.run_diff()
- if refresh_key == self.last_refresh_key:
- self.progress("Unchanged. ")
- return
- self.last_refresh_key = refresh_key
- self.pending_update = output
- if not self.less_proc:
- return
- self.less_proc.kill()
- self.ready_queue.get()
-
- def terminate(self) -> None:
- if not self.less_proc:
- return
- self.less_proc.kill()
- self.ready_queue.get()
-
-
-def main() -> None:
- args = parser.parse_args()
-
- # Apply project-specific configuration.
- settings: Dict[str, Any] = {}
- diff_settings.apply(settings, args) # type: ignore
- project = create_project_settings(settings)
-
- try:
- config = create_config(args, project)
- except ValueError as e:
- fail(str(e))
-
- if config.algorithm == "levenshtein":
- try:
- import Levenshtein
- except ModuleNotFoundError as e:
- fail(MISSING_PREREQUISITES.format(e.name))
-
- if config.show_source:
- try:
- import cxxfilt
- except ModuleNotFoundError as e:
- fail(MISSING_PREREQUISITES.format(e.name))
-
- if config.threeway and not args.watch:
- fail("Threeway diffing requires -w.")
-
- if args.diff_elf_symbol:
- make_target, basecmd, mycmd = dump_elf(
- args.start, args.end, args.diff_elf_symbol, config, project
- )
- elif config.diff_obj:
- make_target, basecmd, mycmd = dump_objfile(
- args.start, args.end, config, project
- )
- else:
- make_target, basecmd, mycmd = dump_binary(args.start, args.end, config, project)
-
- map_build_target_fn = getattr(diff_settings, "map_build_target", None)
- if map_build_target_fn:
- make_target = map_build_target_fn(make_target=make_target)
-
- if args.write_asm is not None:
- mydump = run_objdump(mycmd, config, project)
- with open(args.write_asm, "w") as f:
- f.write(mydump)
- print(f"Wrote assembly to {args.write_asm}.")
- sys.exit(0)
-
- if args.base_asm is not None:
- with open(args.base_asm) as f:
- basedump = f.read()
- else:
- basedump = run_objdump(basecmd, config, project)
-
- mydump = run_objdump(mycmd, config, project)
-
- display = Display(basedump, mydump, config)
-
- if args.no_pager or args.format in ("html", "json"):
- print(display.run_diff()[0])
- elif not args.watch:
- display.run_sync()
- else:
- if not args.make:
- yn = input(
- "Warning: watch-mode (-w) enabled without auto-make (-m). "
- "You will have to run make manually. Ok? (Y/n) "
- )
- if yn.lower() == "n":
- return
- if args.make:
- watch_sources = None
- watch_sources_for_target_fn = getattr(
- diff_settings, "watch_sources_for_target", None
- )
- if watch_sources_for_target_fn:
- watch_sources = watch_sources_for_target_fn(make_target)
- watch_sources = watch_sources or project.source_directories
- if not watch_sources:
- fail("Missing source_directories config, don't know what to watch.")
- else:
- watch_sources = [make_target]
- q: "queue.Queue[Optional[float]]" = queue.Queue()
- debounced_fs_watch(watch_sources, q, config, project)
- display.run_async(q)
- last_build = 0.0
- try:
- while True:
- t = q.get()
- if t is None:
- break
- if t < last_build:
- continue
- last_build = time.time()
- if args.make:
- display.progress("Building...")
- ret = run_make_capture_output(make_target, project)
- if ret.returncode != 0:
- display.update(
- ret.stderr.decode("utf-8-sig", "replace")
- or ret.stdout.decode("utf-8-sig", "replace"),
- error=True,
- )
- continue
- mydump = run_objdump(mycmd, config, project)
- display.update(mydump, error=False)
- except KeyboardInterrupt:
- display.terminate()
-
-
-if __name__ == "__main__":
- main()
diff --git a/diff_settings.py b/diff_settings.py
deleted file mode 100644
index 9078478d..00000000
--- a/diff_settings.py
+++ /dev/null
@@ -1,24 +0,0 @@
-from argparse import ArgumentParser, Namespace
-import common as c
-
-def apply(config, args: Namespace):
- if args.rel:
- config["mapfile"] = c.REL_MAP
- config["myimg"] = c.REL_PLF
- config["baseimg"] = c.REL_EXPECTED
- config["source_directories"] = [c.REL_SRCDIR, c.INCDIR]
- else:
- config["mapfile"] = c.DOL_MAP
- config["myimg"] = c.DOL_ELF
- config["baseimg"] = c.DOL_EXPECTED
- config["source_directories"] = [c.DOL_SRCDIR, c.INCDIR]
- config["make_command"] = ["ninja"]
- config["makeflags"] = []
- config["arch"] = "ppc"
- config["map_format"] = "mw"
- config["mw_build_dir"] = c.BUILDDIR
- config["objdump_executable"] = c.OBJDUMP
- config["show_line_numbers_default"] = True
-
-def add_custom_arguments(parser: ArgumentParser):
- parser.add_argument("-r", "--rel", action="store_true", help="(AC) Diff a function in foresta.rel")
\ No newline at end of file
diff --git a/docker-setup.bat b/docker-setup.bat
deleted file mode 100644
index ede1c919..00000000
--- a/docker-setup.bat
+++ /dev/null
@@ -1,26 +0,0 @@
-@echo off
-echo "Please ensure Docker Desktop is running before continuing."
-pause
-:: Check if the compilers are present. If any one compiler doesn't exist, the download process will be initiated.
-IF exist tools\1.2.5n\ ( echo 1.2.5n exists ) ELSE ( goto compilers )
-IF exist tools\1.3.2\ ( echo 1.3.2 exists ) ELSE ( goto compilers )
-IF exist tools\1.3.2r\ ( echo 1.3.2r exists ) ELSE ( goto compilers )
-goto buildimage
-
-:buildimage
-docker build -t ac-decomp .
-echo "Docker image setup is now complete. You may proceed with the instructions."
-pause
-exit
-
-:compilers
-curl -O https://files.decomp.dev/compilers_latest.zip
-mkdir compilers_temp
-powershell -command "Expand-Archive -LiteralPath 'compilers_latest.zip' -DestinationPath compilers_temp"
-:: Only copy compilers that the user doesn't already have.
-IF exist tools\1.2.5n\ ( echo 1.2.5n already exists, skipping copy ) ELSE ( xcopy compilers_temp\GC\1.2.5n\ tools\1.2.5n\ /E /I )
-IF exist tools\1.3.2\ ( echo 1.3.2 already exists, skipping copy ) ELSE ( xcopy compilers_temp\GC\1.3.2\ tools\1.3.2\ /E /I )
-IF exist tools\1.3.2r\ ( echo 1.3.2r already exists, skipping copy ) ELSE ( xcopy compilers_temp\GC\1.3.2r\ tools\1.3.2r\ /E /I )
-del compilers_latest.zip
-rmdir /S /Q compilers_temp\
-goto buildimage
diff --git a/docker-setup.sh b/docker-setup.sh
deleted file mode 100644
index d30b10a3..00000000
--- a/docker-setup.sh
+++ /dev/null
@@ -1,31 +0,0 @@
-echo "Please ensure Docker is installed before continuing."
-read -p "Press Enter to continue or CTRL-C to exit."
-if [ -d "tools/1.2.5n" ]; then echo "1.2.5n exists" && export one_two_five_n_exist=1; fi
-if [ -d "tools/1.3.2" ]; then echo "1.3.2 exists" && export one_three_two_exist=1; fi
-if [ -d "tools/1.3.2r" ]; then echo "1.3.2r exists" && export one_three_two_r_exist=1; fi
-if [ "$one_two_five_n_exist" -eq 1 ] && [ "$one_three_two_exist" -eq 1 ] && [ "$one_three_two_r_exist" -eq 1 ]; then docker build -t ac-decomp . && echo "Docker image setup is now complete. You may proceed with the instructions." && exit; fi
-
-
-if command -v curl &> /dev/null; then
- curl -O https://files.decomp.dev/compilers_latest.zip
-elif command -v wget &> /dev/null; then
- wget https://files.decomp.dev/compilers_latest.zip
-else
- echo "You do not seem to have curl or wget installed on this system. Please install one or the other to continue."
- exit 0
-fi
-
-mkdir compilers_temp
-if command -v unzip &> /dev/null; then
- unzip compilers_latest.zip -d compilers_temp
-else
- echo "You do not seem to have unzip installed on this system. Please install it to continue."
- rm -r compilers_temp compilers_latest.zip
- exit 1
-fi
-if [ ! -d "tools/1.2.5n" ]; then mv compilers_temp/GC/1.2.5n/ tools/; fi
-if [ ! -d "tools/1.3.2" ]; then mv compilers_temp/GC/1.3.2/ tools/; fi
-if [ ! -d "tools/1.3.2r" ]; then mv compilers_temp/GC/1.3.2r/ tools/; fi
-rm -r compilers_temp compilers_latest.zip
-docker build -t ac-decomp .
-echo "Docker image setup is now complete. You may proceed with the instructions."
diff --git a/dump/foresta.rel.sha1 b/dump/foresta.rel.sha1
deleted file mode 100644
index d93b11ea..00000000
--- a/dump/foresta.rel.sha1
+++ /dev/null
@@ -1 +0,0 @@
-c59d278ad8542bb05d6cbb632f60a0db05bef203 *out/foresta.rel
\ No newline at end of file
diff --git a/dump/static.dol.sha1 b/dump/static.dol.sha1
deleted file mode 100644
index 8f332595..00000000
--- a/dump/static.dol.sha1
+++ /dev/null
@@ -1 +0,0 @@
-2ae8f56e7791d37e165bd5900921f2269f9515bf *out/static.dol
\ No newline at end of file
diff --git a/expected.py b/expected.py
deleted file mode 100644
index f2e34854..00000000
--- a/expected.py
+++ /dev/null
@@ -1,17 +0,0 @@
-"""
-Creates the expected folder for diff.py
-"""
-
-from shutil import copytree, rmtree
-
-import common as c
-
-# Remove it if already existing
-try:
- rmtree(c.EXPECTED)
-except FileNotFoundError:
- pass
-
-# Copy in builddir and outdir
-copytree(c.BUILDDIR, f"{c.EXPECTED}/build")
-copytree(c.OUTDIR, f"{c.EXPECTED}/out")
\ No newline at end of file
diff --git a/generate_progress.py b/generate_progress.py
deleted file mode 100644
index 5c97a49e..00000000
--- a/generate_progress.py
+++ /dev/null
@@ -1,47 +0,0 @@
-from argparse import ArgumentParser
-import os.path
-import pickle
-import json
-from typing import Dict, Tuple
-
-import common as c
-
-def load_progress_info(ctx: c.SourceContext, asm_list: str
- ) -> Tuple[Dict[str, int], Dict[str, int]]:
- assert os.path.exists(ctx.labels), "Error: analysis has not ran!"
-
- # Get data
- raw = c.get_cmd_stdout(f"{c.PROGRESS} {ctx.binary} {ctx.labels} {ctx.slices}")
- dat = json.loads(raw)
- assert dat.get("version") == 2, "Outdated progress json version, try a clean & rebuild"
- decomp_sizes = dat["decomp_slices_sizes"]
- total_sizes = dat["total_sizes"]
- symbol_sizes = dat["symbol_sizes"]
-
- # Subtract undecompiled functions in decompiled slices
- # TODO: this assumes none of .init is decompiled
- with open(asm_list, 'rb') as f:
- funcs = pickle.load(f)
- for func in funcs:
- decomp_sizes[".text"] -= symbol_sizes[str(func)]
-
- return decomp_sizes, total_sizes
-
-def generate_frogress_json(dol_size, dol_total, rel_size, rel_total):
- return json.dumps({
- "rel": {
- "code": rel_size,
- "code/total": rel_total
- },
- "dol": {
- "code": dol_size,
- "code/total": dol_total
- }
- })
-
-if __name__=="__main__":
- decomp_sizes, total_sizes = load_progress_info(c.DOL_CTX, c.DOL_ASM_LIST)
- rel_decomp_sizes, rel_total_sizes = load_progress_info(c.REL_CTX, c.REL_ASM_LIST)
- json_str = generate_frogress_json(decomp_sizes[".text"], total_sizes[".text"], rel_decomp_sizes[".text"], rel_total_sizes[".text"])
- with open("out/progress.json", "w") as f:
- f.write(json_str)
diff --git a/include/GBA/GBAPriv.h b/include/GBA/GBAPriv.h
index 0ab7aa03..05ce2ab1 100644
--- a/include/GBA/GBAPriv.h
+++ b/include/GBA/GBAPriv.h
@@ -14,54 +14,57 @@ extern "C" {
typedef void (*GBATransferCallback)(s32 chan);
typedef struct GBASecParam {
- u8 readbuf[4];
- s32 paletteColor;
- s32 paletteSpeed;
- s32 length;
- u32* out;
- u8 _padding0[12];
- u32 keyA;
- s32 keyB;
- u8 _padding1[24];
+ // total size: 0x40
+ u8 readbuf[4]; // offset 0x0, size 0x4
+ s32 paletteColor; // offset 0x4, size 0x4
+ s32 paletteSpeed; // offset 0x8, size 0x4
+ s32 length; // offset 0xC, size 0x4
+ u32* out; // offset 0x10, size 0x4
+ u8 _padding0[12]; // offset 0x14, size 0xC
+ u32 keyA; // offset 0x20, size 0x4
+ s32 keyB; // offset 0x24, size 0x4
+ u8 _padding1[24]; // offset 0x28, size 0x18
} GBASecParam;
typedef struct GBABootInfo {
- s32 paletteColor;
- s32 paletteSpeed;
- u8* programp;
- s32 length;
- u8* status;
- GBACallback callback;
- u8 readbuf[4];
- u8 writebuf[4];
- int i;
- OSTick start;
- OSTime begin;
- int firstXfer;
- int curOffset;
- u32 crc;
- u32 dummyWord[7];
- u32 keyA;
- s32 keyB;
- u32 initialCode;
- int realLength;
+ // total size: 0x68
+ s32 paletteColor; // offset 0x0, size 0x4
+ s32 paletteSpeed; // offset 0x4, size 0x4
+ u8* programp; // offset 0x8, size 0x4
+ s32 length; // offset 0xC, size 0x4
+ u8* status; // offset 0x10, size 0x4
+ GBACallback callback; // offset 0x14, size 0x4
+ u8 readbuf[4]; // offset 0x18, size 0x4
+ u8 writebuf[4]; // offset 0x1C, size 0x4
+ int i; // offset 0x20, size 0x4
+ OSTick start; // offset 0x24, size 0x4
+ OSTime begin; // offset 0x28, size 0x8
+ BOOL firstXfer; // offset 0x30, size 0x4
+ int curOffset; // offset 0x34, size 0x4
+ u32 crc; // offset 0x38, size 0x4
+ u32 dummyWord[7]; // offset 0x3C, size 0x1C
+ u32 keyA; // offset 0x58, size 0x4
+ s32 keyB; // offset 0x5C, size 0x4
+ u32 initialCode; // offset 0x60, size 0x4
+ int realLength; // offset 0x64, size 0x4
} GBABootInfo;
typedef struct GBAControl {
- u8 output[5];
- u8 input[5];
- s32 outputBytes;
- s32 inputBytes;
- u8* status;
- u8* ptr;
- GBACallback callback;
- s32 ret;
- OSThreadQueue threadQueue;
- OSTime delay;
- GBATransferCallback proc;
- GBABootInfo bootInfo;
- DSPTaskInfo task;
- GBASecParam* param;
+ // total size: 0x100
+ u8 output[5]; // offset 0x0, size 0x5
+ u8 input[5]; // offset 0x5, size 0x5
+ u32 outputBytes; // offset 0xC, size 0x4
+ u32 inputBytes; // offset 0x10, size 0x4
+ u8* status; // offset 0x14, size 0x4
+ void* ptr; // offset 0x18, size 0x4
+ GBACallback callback; // offset 0x1C, size 0x4
+ s32 ret; // offset 0x20, size 0x4
+ OSThreadQueue threadQueue; // offset 0x24, size 0x8
+ OSTime delay; // offset 0x30, size 0x8
+ GBATransferCallback proc; // offset 0x38, size 0x4
+ GBABootInfo bootInfo; // offset 0x40, size 0x68
+ DSPTaskInfo task; // offset 0xA8, size 0x50
+ GBASecParam * param; // offset 0xF8, size 0x4
} GBAControl;
extern GBAControl __GBA[4];
@@ -71,7 +74,9 @@ void __GBAHandler(s32 chan, u32 error, OSContext* context);
void __GBASyncCallback(s32 chan, s32 ret);
s32 __GBASync(s32 chan);
OSTime __GBASetDelay(s32 chan, OSTime delay);
-s32 __GBATransfer(s32 chan, s32 w1, s32 w2, GBATransferCallback callback);
+s32 __GBATransfer(s32 chan, u32 outputBytes, u32 inputBytes, GBATransferCallback proc);
+void __GBAX01(s32 chan, s32 ret);
+void __GBAX02(s32 chan, u8* readbuf);
#ifdef __cplusplus
}
diff --git a/include/GBA/gba.h b/include/GBA/gba.h
index edb915a7..f19e3c7f 100644
--- a/include/GBA/gba.h
+++ b/include/GBA/gba.h
@@ -13,7 +13,7 @@ extern "C" {
#define GBA_CHAN3 3
#define GBA_MAX_CHAN 4
-#define GBA_ALL_KEY_MASK 0x03ff
+#define GBA_ALL_KEY_MASK 0x03FF
#define GBA_A_BUTTON 0x0001
#define GBA_B_BUTTON 0x0002
#define GBA_SELECT_BUTTON 0x0004
@@ -25,7 +25,7 @@ extern "C" {
#define GBA_R_BUTTON 0x0100
#define GBA_L_BUTTON 0x0200
-#define GBA_JSTAT_MASK 0x3a
+#define GBA_JSTAT_MASK 0x3A
#define GBA_JSTAT_FLAGS_SHIFT 4
#define GBA_JSTAT_FLAGS_MASK 0x30
#define GBA_JSTAT_PSF1 0x20
@@ -41,9 +41,11 @@ extern "C" {
#define GBA_JOYBOOT_PROGRAM_SIZE_MAX 0x40000
-#define GBA_JOYBOOT_BOOTPARAM_OFFSET 0xc8
+#define GBA_JOYBOOT_BOOTPARAM_OFFSET 0xC8
#define GBA_JOYBOOT_BOOTPARAM_SIZE 0x18
+
typedef void (*GBACallback)(s32 chan, s32 ret);
+
void GBAInit(void);
s32 GBAGetStatus(s32 chan, u8* status);
s32 GBAGetStatusAsync(s32 chan, u8* status, GBACallback callback);
@@ -58,6 +60,7 @@ s32 GBAJoyBoot(s32 chan, s32 palette_color, s32 palette_speed, u8* programp, s32
u8* status);
s32 GBAJoyBootAsync(s32 chan, s32 palette_color, s32 palette_speed, u8* programp, s32 length,
u8* status, GBACallback callback);
+
#ifdef __cplusplus
}
#endif
diff --git a/include/JSystem/JGadget/define.h b/include/JSystem/JGadget/define.h
index 9efdcd66..a589b3f0 100644
--- a/include/JSystem/JGadget/define.h
+++ b/include/JSystem/JGadget/define.h
@@ -25,24 +25,12 @@ private:
int mLine;
};
-#ifdef DEBUG
-
-#define JGADGET_ASSERTWARN(cond) \
- ((cond) || ((JGadget_outMessage(JGadget_outMessage::warning, __FILE__, __LINE__) << (#cond)), false))
-
-#define JGADGET_EXITWARN(cond) \
- if (!(cond)) { JGadget_outMessage(JGadget_outMessage::warning, __FILE__, __LINE__) << (#cond), false; return false; }
-
-#else
-
#define JGADGET_ASSERTWARN(cond) \
((cond) || (false))
#define JGADGET_EXITWARN(cond) \
if (!(cond)) { false; return false; }
-#endif
-
}
#endif
diff --git a/include/JSystem/JGadget/linklist.h b/include/JSystem/JGadget/linklist.h
index acf64a7c..bb4622ff 100644
--- a/include/JSystem/JGadget/linklist.h
+++ b/include/JSystem/JGadget/linklist.h
@@ -92,7 +92,6 @@ public:
}
TLinkListNode& operator*() const {
- JUT_ASSERT(p_!=0);
return *this->p_;
}
diff --git a/include/JSystem/JSupport/JSUList.h b/include/JSystem/JSupport/JSUList.h
index 58bd0aca..09612855 100644
--- a/include/JSystem/JSupport/JSUList.h
+++ b/include/JSystem/JSupport/JSUList.h
@@ -3,9 +3,6 @@
#include "types.h"
-#ifdef __cplusplus
-extern "C" {
-
class JSUPtrLink;
class JSUPtrList
@@ -174,11 +171,11 @@ public:
bool insertChild(JSUTree *before, JSUTree *child) { return this->insert(before, child); }
JSUTree *getEndChild() const { return nullptr; }
- JSUTree *getFirstChild() const { return (JSUTree *)getFirstLink(); }
+ JSUTree *getFirstChild() const { return (JSUTree *)this->getFirstLink(); }
JSUTree *getLastChild() const { return (JSUTree *)this->getLast(); }
- JSUTree *getNextChild() const { return (JSUTree *)mNext; }
+ JSUTree *getNextChild() const { return (JSUTree *)this->mNext; }
JSUTree *getPrevChild() const { return (JSUTree *)this->getPrev(); }
- u32 getNumChildren() const { return mLinkCount; }
+ u32 getNumChildren() const { return this->mLinkCount; }
T *getObject() const { return (T *)this->mData; }
JSUTree *getParent() const { return (JSUTree *)this->mPtrList; }
};
@@ -223,7 +220,4 @@ private:
JSUTree *mTree;
};
-}
-#endif
-
-#endif /* JSULIST_H */
\ No newline at end of file
+#endif /* JSULIST_H */
diff --git a/include/JSystem/JUtility/JUTAssertion.h b/include/JSystem/JUtility/JUTAssertion.h
index 7dff4264..de3a3506 100644
--- a/include/JSystem/JUtility/JUTAssertion.h
+++ b/include/JSystem/JUtility/JUTAssertion.h
@@ -44,22 +44,8 @@ namespace JUTAssertion
#define JUT_MINMAX_ASSERT(...)
#define JUT_MAX_ASSERT(...)
#define JUT_LOG_F(...)
-
-#if defined(DEBUG) || 1
#define JUT_ASSERT(...)
#define JUT_ASSERT_F(...)
-#else
-
-#define JUT_ASSERT(COND) \
- ((COND)) ? (void)0 : (JUTAssertion::showAssert(JUTAssertion::getSDevice(), __FILE__, __LINE__, #COND), OSHalt("Halt"));
-
-#define JUT_ASSERT_F(COND, ...) \
- if ((COND) == false) \
- { \
- JUTAssertion::showAssert_f(JUTAssertion::getSDevice(), __FILE__, __LINE__, __VA_ARGS__); \
- OSHalt("Halt"); \
- }
-#endif
}
#endif
diff --git a/include/JSystem/JUtility/JUTDbPrint.h b/include/JSystem/JUtility/JUTDbPrint.h
index d1a14116..c8474fa9 100644
--- a/include/JSystem/JUtility/JUTDbPrint.h
+++ b/include/JSystem/JUtility/JUTDbPrint.h
@@ -1,9 +1,17 @@
#ifndef _JSYSTEM_JUT_JUTDBPRINT_H
#define _JSYSTEM_JUT_JUTDBPRINT_H
+#ifdef __cplusplus
+extern "C" {
+#endif
+
void* JC_JUTDbPrint_getManager(void);
void JC_JUTDbPrint_setVisible(void*, int); // I know these are C++ but these were used to match a c function so I'll fix these when I need them or fix zurumode update.
void JUTReport(int x, int y, int show_count, const char* fmt, ...);
-#endif
\ No newline at end of file
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/MSL_C/rand.h b/include/MSL_C/rand.h
index eccef3bf..daed9b2e 100644
--- a/include/MSL_C/rand.h
+++ b/include/MSL_C/rand.h
@@ -1,8 +1,8 @@
-#ifndef RAND_H
-#define RAND_H
-#include "types.h"
-
-void srand(u32 seed);
-int rand(void);
-
-#endif
+#ifndef RAND_H
+#define RAND_H
+#include "types.h"
+
+void srand(u32 seed);
+int rand(void);
+
+#endif
diff --git a/include/_mem.h b/include/_mem.h
index 9174dcae..46cc8408 100644
--- a/include/_mem.h
+++ b/include/_mem.h
@@ -1,22 +1,22 @@
-#ifndef _MEM_H
-#define _MEM_H
-
-#include "types.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-#pragma section code_type ".init"
-
-void * memcpy(void * dst, const void * src, size_t n);
-void * memset(void * dst, int val, size_t n);
-int memcmp(const void* src1, const void* src2, size_t n);
-void __fill_mem(void * dst, int val, unsigned long n);
-
-#pragma section code_type
-
-#ifdef __cplusplus
-};
-#endif
+#ifndef _MEM_H
+#define _MEM_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#pragma section code_type ".init"
+
+void * memcpy(void * dst, const void * src, size_t n);
+void * memset(void * dst, int val, size_t n);
+int memcmp(const void* src1, const void* src2, size_t n);
+void __fill_mem(void * dst, int val, unsigned long n);
+
+#pragma section code_type
+
+#ifdef __cplusplus
+};
+#endif
#endif
\ No newline at end of file
diff --git a/include/bootdata.h b/include/bootdata.h
index 7bdb1677..b6dc7793 100644
--- a/include/bootdata.h
+++ b/include/bootdata.h
@@ -2,7 +2,7 @@
#define BOOTDATA_H
#include "types.h"
-#include "PR/mbi.h"
+#include "PR/gbi.h"
#ifdef __cplusplus
extern "C" {
diff --git a/include/dolphin/BASE/ppcarch.h b/include/dolphin/BASE/ppcarch.h
deleted file mode 100644
index 4a21e84b..00000000
--- a/include/dolphin/BASE/ppcarch.h
+++ /dev/null
@@ -1,36 +0,0 @@
-#ifndef PPCARCH_H
-#define PPCARCH_H
-#include "types.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-u32 PPCMfmsr(void);
-void PPCMtmsr(u32);
-
-u32 PPCMfhid0(void);
-void PPCMthid0(u32);
-
-u32 PPCMfl2cr(void);
-void PPCMtl2cr(u32);
-
-void PPCMtdec(u32);
-
-void PPCSync(void);
-void PPCHalt(void);
-
-u32 PPCMfhid2(void);
-void PPCMthid2(u32);
-
-
-void PPCMtwpar(u32);
-
-void PPCDisableSpeculation(void);
-void PPCSetFpNonIEEEMode(void);
-
-
-#ifdef __cplusplus
-}
-#endif
-#endif
diff --git a/include/dolphin/base/PPCArch.h b/include/dolphin/base/PPCArch.h
new file mode 100644
index 00000000..fb10dba8
--- /dev/null
+++ b/include/dolphin/base/PPCArch.h
@@ -0,0 +1,100 @@
+#ifndef PPCARCH_H
+#define PPCARCH_H
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+u32 PPCMfmsr(void);
+void PPCMtmsr(u32);
+
+u32 PPCMfhid0(void);
+void PPCMthid0(u32);
+
+u32 PPCMfl2cr(void);
+void PPCMtl2cr(u32);
+
+void PPCMtdec(u32);
+
+void PPCSync(void);
+void PPCHalt(void);
+
+u32 PPCMfhid2(void);
+void PPCMthid2(u32);
+
+
+void PPCMtwpar(u32);
+
+void PPCDisableSpeculation(void);
+void PPCSetFpNonIEEEMode(void);
+
+#define HID0_EMCP 0x80000000u // Enable MCP
+#define HID0_DBP 0x40000000u // Enable 60x bus address and data parity chk
+#define HID0_EBA 0x20000000u // Enable 60x address parity checking
+#define HID0_EBD 0x10000000u // Enable 60x data parity checking
+#define HID0_BCLK 0x08000000u // CLK_OUT output enable and clk selection
+#define HID0_ECLK 0x02000000u // CLK_OUT output enable and clk selection
+#define HID0_PAR 0x01000000u // Disable !ARTRY precharge
+#define HID0_DOZE 0x00800000u // Doze mode enable
+#define HID0_NAP 0x00400000u // Nap mode enable
+#define HID0_SLEEP 0x00200000u // Sleep mode enable
+#define HID0_DPM 0x00100000u // Dynamic power management enable
+#define HID0_NHR 0x00010000u // Not hard reset (0 hard reset if s/w set it)
+#define HID0_ICE 0x00008000u // Instruction cache enable
+#define HID0_DCE 0x00004000u // Data cache enable
+#define HID0_ILOCK 0x00002000u // ICache lock
+#define HID0_DLOCK 0x00001000u // DCache lock
+#define HID0_ICFI 0x00000800u // ICache flash invalidate
+#define HID0_DCFI 0x00000400u // DCache flash invalidate
+#define HID0_SPD 0x00000200u // Speculative cache access enable (0 enable)
+#define HID0_IFEM 0x00000100u // Enable M bit on bus for Ifetch
+#define HID0_SGE 0x00000080u // Store gathering enable
+#define HID0_DCFA 0x00000040u // DCache flush assist - set before a flush
+#define HID0_BTIC 0x00000020u // Branch target icache enable
+#define HID0_ABE 0x00000008u // Address bcast enable
+#define HID0_BHT 0x00000004u // Branch history table enable
+#define HID0_NOOPTI 0x00000001u // No-op Dcache touch instructions
+
+#define HID2_DCHERR 0x00800000 // ERROR: dcbz_l cache hit
+#define HID2_DNCERR 0x00400000 // ERROR: DMA access to normal cache
+#define HID2_DCMERR 0x00200000 // ERROR: DMA cache miss error
+#define HID2_DQOERR 0x00100000 // ERROR: DMA queue overflow
+#define HID2_DCHEE 0x00080000 // dcbz_l cache hit error enable
+#define HID2_DNCEE 0x00040000 // DMA access to normal cache error enable
+#define HID2_DCMEE 0x00020000 // DMA cache miss error error enable
+#define HID2_DQOEE 0x00010000 // DMA queue overflow error enable
+
+#define SRR1_DMA_BIT 0x00200000
+#define SRR1_L2DP_BIT 0x00100000
+
+#define L2CR_L2E 0x80000000 // L2 Enable
+#define L2CR_L2PE 0x40000000 // L2 data parity generation and checking enable
+
+#define L2CR_L2DO 0x00400000 // Data only
+#define L2CR_L2I 0x00200000 // Global invalidate
+#define L2CR_L2CTL 0x00100000 // ZZ enable
+#define L2CR_L2WT 0x00080000 // L2 write through
+#define L2CR_L2TS 0x00040000 // L2 test support
+
+#define MSR_POW 0x00040000 // Power Management
+#define MSR_ILE 0x00010000 // Interrupt Little Endian
+#define MSR_EE 0x00008000 // external interrupt
+#define MSR_PR 0x00004000 // privilege level(should be 0)
+#define MSR_FP 0x00002000 // floating point available
+#define MSR_ME 0x00001000 // machine check enable
+#define MSR_FE0 0x00000800 // floating point exception enable
+#define MSR_SE 0x00000400 // single step trace enable
+#define MSR_BE 0x00000200 // branch trace enable
+#define MSR_FE1 0x00000100 // floating point exception enable
+#define MSR_IP 0x00000040 // Exception prefix
+#define MSR_IR 0x00000020 // instruction relocate
+#define MSR_DR 0x00000010 // data relocate
+#define MSR_PM 0x00000004 // Performance monitor marked mode
+#define MSR_RI 0x00000002 // Recoverable interrupt
+#define MSR_LE 0x00000001 // Little Endian
+
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/dolphin/os/OSAudioSystem.h b/include/dolphin/os/OSAudioSystem.h
new file mode 100644
index 00000000..66a634d1
--- /dev/null
+++ b/include/dolphin/os/OSAudioSystem.h
@@ -0,0 +1,6 @@
+#ifndef OS_AUDIO_SYSTEM_H
+#define OS_AUDIO_SYSTEM_H
+
+#include "types.h"
+
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os/OSContext.h b/include/dolphin/os/OSContext.h
index 0a5fb8ab..91ec653d 100644
--- a/include/dolphin/os/OSContext.h
+++ b/include/dolphin/os/OSContext.h
@@ -1,45 +1,173 @@
-#ifndef OS_CONTEXT_H
-#define OS_CONTEXT_H
+#ifndef _DOLPHIN_OSCONTEXT_H_
+#define _DOLPHIN_OSCONTEXT_H_
+
#include "types.h"
#ifdef __cplusplus
extern "C" {
#endif
-typedef struct OSContext{
- u32 gprs[32];
- u32 cr;
- u32 lr;
- u32 ctr;
- u32 xer;
- f64 fprs[32];
- u32 fpscr_tmp;
- u32 fpscr;
- u32 srr0;
- u32 srr1;
- u16 mode;
- u16 state;
- u32 gqrs[8];
- char UNK_0x1C4;
- f64 psfs[32];
+#define __OS_CONTEXT_FRAME 768
+
+#define OS_CONTEXT_R0 0
+#define OS_CONTEXT_R1 4
+#define OS_CONTEXT_R2 8
+#define OS_CONTEXT_R3 12
+#define OS_CONTEXT_R4 16
+#define OS_CONTEXT_R5 20
+#define OS_CONTEXT_R6 24
+#define OS_CONTEXT_R7 28
+#define OS_CONTEXT_R8 32
+#define OS_CONTEXT_R9 36
+#define OS_CONTEXT_R10 40
+#define OS_CONTEXT_R11 44
+#define OS_CONTEXT_R12 48
+#define OS_CONTEXT_R13 52
+#define OS_CONTEXT_R14 56
+#define OS_CONTEXT_R15 60
+#define OS_CONTEXT_R16 64
+#define OS_CONTEXT_R17 68
+#define OS_CONTEXT_R18 72
+#define OS_CONTEXT_R19 76
+#define OS_CONTEXT_R20 80
+#define OS_CONTEXT_R21 84
+#define OS_CONTEXT_R22 88
+#define OS_CONTEXT_R23 92
+#define OS_CONTEXT_R24 96
+#define OS_CONTEXT_R25 100
+#define OS_CONTEXT_R26 104
+#define OS_CONTEXT_R27 108
+#define OS_CONTEXT_R28 112
+#define OS_CONTEXT_R29 116
+#define OS_CONTEXT_R30 120
+#define OS_CONTEXT_R31 124
+
+#define OS_CONTEXT_CR 128
+#define OS_CONTEXT_LR 132
+#define OS_CONTEXT_CTR 136
+#define OS_CONTEXT_XER 140
+
+#define OS_CONTEXT_FPR0 144
+#define OS_CONTEXT_FPR1 152
+#define OS_CONTEXT_FPR2 160
+#define OS_CONTEXT_FPR3 168
+#define OS_CONTEXT_FPR4 176
+#define OS_CONTEXT_FPR5 184
+#define OS_CONTEXT_FPR6 192
+#define OS_CONTEXT_FPR7 200
+#define OS_CONTEXT_FPR8 208
+#define OS_CONTEXT_FPR9 216
+#define OS_CONTEXT_FPR10 224
+#define OS_CONTEXT_FPR11 232
+#define OS_CONTEXT_FPR12 240
+#define OS_CONTEXT_FPR13 248
+#define OS_CONTEXT_FPR14 256
+#define OS_CONTEXT_FPR15 264
+#define OS_CONTEXT_FPR16 272
+#define OS_CONTEXT_FPR17 280
+#define OS_CONTEXT_FPR18 288
+#define OS_CONTEXT_FPR19 296
+#define OS_CONTEXT_FPR20 304
+#define OS_CONTEXT_FPR21 312
+#define OS_CONTEXT_FPR22 320
+#define OS_CONTEXT_FPR23 328
+#define OS_CONTEXT_FPR24 336
+#define OS_CONTEXT_FPR25 344
+#define OS_CONTEXT_FPR26 352
+#define OS_CONTEXT_FPR27 360
+#define OS_CONTEXT_FPR28 368
+#define OS_CONTEXT_FPR29 376
+#define OS_CONTEXT_FPR30 384
+#define OS_CONTEXT_FPR31 392
+
+#define OS_CONTEXT_FPSCR 400
+
+#define OS_CONTEXT_SRR0 408
+#define OS_CONTEXT_SRR1 412
+
+#define OS_CONTEXT_MODE 416
+#define OS_CONTEXT_STATE 418
+
+#define OS_CONTEXT_GQR0 420
+#define OS_CONTEXT_GQR1 424
+#define OS_CONTEXT_GQR2 428
+#define OS_CONTEXT_GQR3 432
+#define OS_CONTEXT_GQR4 436
+#define OS_CONTEXT_GQR5 440
+#define OS_CONTEXT_GQR6 444
+#define OS_CONTEXT_GQR7 448
+#define __OSCONTEXT_PADDING 452
+
+#define OS_CONTEXT_PSF0 456
+#define OS_CONTEXT_PSF1 464
+#define OS_CONTEXT_PSF2 472
+#define OS_CONTEXT_PSF3 480
+#define OS_CONTEXT_PSF4 488
+#define OS_CONTEXT_PSF5 496
+#define OS_CONTEXT_PSF6 504
+#define OS_CONTEXT_PSF7 512
+#define OS_CONTEXT_PSF8 520
+#define OS_CONTEXT_PSF9 528
+#define OS_CONTEXT_PSF10 536
+#define OS_CONTEXT_PSF11 544
+#define OS_CONTEXT_PSF12 552
+#define OS_CONTEXT_PSF13 560
+#define OS_CONTEXT_PSF14 568
+#define OS_CONTEXT_PSF15 576
+#define OS_CONTEXT_PSF16 584
+#define OS_CONTEXT_PSF17 592
+#define OS_CONTEXT_PSF18 600
+#define OS_CONTEXT_PSF19 608
+#define OS_CONTEXT_PSF20 616
+#define OS_CONTEXT_PSF21 624
+#define OS_CONTEXT_PSF22 632
+#define OS_CONTEXT_PSF23 640
+#define OS_CONTEXT_PSF24 648
+#define OS_CONTEXT_PSF25 656
+#define OS_CONTEXT_PSF26 664
+#define OS_CONTEXT_PSF27 672
+#define OS_CONTEXT_PSF28 680
+#define OS_CONTEXT_PSF29 688
+#define OS_CONTEXT_PSF30 696
+#define OS_CONTEXT_PSF31 704
+#define OS_CONTEXT_STATE_EXC 0x02u
+
+#define OS_CONTEXT_STATE_FPSAVED 0x01u
+
+typedef struct OSContext
+{
+ /*0x000*/ u32 gpr[32];
+ /*0x080*/ u32 cr;
+ /*0x084*/ u32 lr;
+ /*0x088*/ u32 ctr;
+ /*0x08C*/ u32 xer;
+ /*0x090*/ f64 fpr[32];
+ /*0x190*/ u32 fpscr_pad;
+ /*0x194*/ u32 fpscr;
+ /*0x198*/ u32 srr0;
+ /*0x19C*/ u32 srr1;
+ /*0x1A0*/ u16 mode;
+ /*0x1A2*/ u16 state;
+ /*0x1A4*/ u32 gqr[8];
+ /*0x1C4*/ f64 psf[32];
} OSContext;
-OSContext* OS_CURRENT_CONTEXT_PHYS AT_ADDRESS(0x800000C0);
-OSContext* OS_CURRENT_CONTEXT AT_ADDRESS(0x800000D4);
-OSContext* OS_CURRENT_FPU_CONTEXT AT_ADDRESS(0x800000D8);
+u32 OSGetStackPointer(void);
+void OSDumpContext(OSContext *context);
+void OSLoadContext(OSContext *context);
+u32 OSSaveContext(OSContext *context);
+void OSClearContext(OSContext *context);
+OSContext *OSGetCurrentContext(void);
+void OSSetCurrentContext(OSContext *context);
+void OSLoadFPUContext(OSContext *fpuContext);
+void OSSaveFPUContext(OSContext *fpuContext);
+u32 OSSwitchStack(u32 newsp);
+int OSSwitchFiber(u32 pc, u32 newsp);
+void OSInitContext(OSContext *context, u32 pc, u32 newsp);
+void OSFillFPUContext(OSContext *context);
-void OSSaveFPUContext(OSContext*);
-void OSSetCurrentContext(OSContext*);
-OSContext* OSGetCurrentContext(void);
-BOOL OSSaveContext(OSContext*);
-void OSLoadContext(OSContext*);
-void* OSGetStackPointer(void);
-void OSClearContext(OSContext*);
-void OSInitContext(register OSContext*, register u32 srr, register u32 sp);
-void OSDumpContext(const OSContext*);
-
-void __OSContextInit(void);
#ifdef __cplusplus
-};
+}
#endif
+
#endif
diff --git a/include/dolphin/os/OSError.h b/include/dolphin/os/OSError.h
index df6f7132..61ebbcd9 100644
--- a/include/dolphin/os/OSError.h
+++ b/include/dolphin/os/OSError.h
@@ -1,32 +1,37 @@
-#ifndef OS_ERROR_H
-#define OS_ERROR_H
-#include "types.h"
+#ifndef _DOLPHIN_OSERROR_H_
+#define _DOLPHIN_OSERROR_H_
+
+#include
#ifdef __cplusplus
-extern "C"{
+extern "C" {
#endif
-typedef enum {
- OS_ERR_SYSTEM_RESET,
- OS_ERR_MACHINE_CHECK,
- OS_ERR_DSI,
- OS_ERR_ISI,
- OS_ERR_EXT_INTERRUPT,
- OS_ERR_ALIGMENT,
- OS_ERR_PROGRAM,
- OS_ERR_FP_UNAVAIL,
- OS_ERR_DECREMENTER,
- OS_ERR_SYSTEM_CALL,
- OS_ERR_TRACE,
- OS_ERR_PERF_MONITOR,
- OS_ERR_IABR,
- OS_ERR_SMI,
- OS_ERR_THERMAL_INT,
- OS_ERR_PROTECTION,
- OS_ERR_FP_EXCEPTION,
- OS_ERR_MAX,
-};
+typedef u16 OSError;
+typedef void (*OSErrorHandler)(OSError error, OSContext *context, ...);
+
+#define OS_ERROR_SYSTEM_RESET 0
+#define OS_ERROR_MACHINE_CHECK 1
+#define OS_ERROR_DSI 2
+#define OS_ERROR_ISI 3
+#define OS_ERROR_EXTERNAL_INTERRUPT 4
+#define OS_ERROR_ALIGNMENT 5
+#define OS_ERROR_PROGRAM 6
+#define OS_ERROR_FLOATING_POINT 7
+#define OS_ERROR_DECREMENTER 8
+#define OS_ERROR_SYSTEM_CALL 9
+#define OS_ERROR_TRACE 10
+#define OS_ERROR_PERFORMACE_MONITOR 11
+#define OS_ERROR_BREAKPOINT 12
+#define OS_ERROR_SYSTEM_INTERRUPT 13
+#define OS_ERROR_THERMAL_INTERRUPT 14
+#define OS_ERROR_PROTECTION 15
+#define OS_ERROR_MAX (OS_ERROR_THERMAL_INTERRUPT + 1)
+
+OSErrorHandler OSSetErrorHandler(OSError error, OSErrorHandler handler);
+
#ifdef __cplusplus
}
#endif
-#endif
+
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os/OSException.h b/include/dolphin/os/OSException.h
index a6ad8a2d..1a3ca131 100644
--- a/include/dolphin/os/OSException.h
+++ b/include/dolphin/os/OSException.h
@@ -1,9 +1,37 @@
-#ifndef DOLPHIN_OSEXCEPTION_H
-#define DOLPHIN_OSEXCEPTION_H
+#ifndef _DOLPHIN_OSEXCEPTION_H_
+#define _DOLPHIN_OSEXCEPTION_H_
-typedef enum OSException {
- OS_EXCEPTION_FLOATING_POINT = 7,
- OS_EXCEPTION_COUNT = 15,
-} OSException;
+#include
+#include "types.h"
+#ifdef __cplusplus
+extern "C" {
#endif
+#define __OS_EXCEPTION_SYSTEM_RESET 0
+#define __OS_EXCEPTION_MACHINE_CHECK 1
+#define __OS_EXCEPTION_DSI 2
+#define __OS_EXCEPTION_ISI 3
+#define __OS_EXCEPTION_EXTERNAL_INTERRUPT 4
+#define __OS_EXCEPTION_ALIGNMENT 5
+#define __OS_EXCEPTION_PROGRAM 6
+#define __OS_EXCEPTION_FLOATING_POINT 7
+#define __OS_EXCEPTION_DECREMENTER 8
+#define __OS_EXCEPTION_SYSTEM_CALL 9
+#define __OS_EXCEPTION_TRACE 10
+#define __OS_EXCEPTION_PERFORMACE_MONITOR 11
+#define __OS_EXCEPTION_BREAKPOINT 12
+#define __OS_EXCEPTION_SYSTEM_INTERRUPT 13
+#define __OS_EXCEPTION_THERMAL_INTERRUPT 14
+#define __OS_EXCEPTION_MAX (__OS_EXCEPTION_THERMAL_INTERRUPT + 1)
+
+typedef u8 __OSException;
+typedef void (*__OSExceptionHandler)(__OSException exception, OSContext* context);
+
+__OSExceptionHandler __OSSetExceptionHandler(__OSException exception, __OSExceptionHandler handler);
+__OSExceptionHandler __OSGetExceptionHandler(__OSException exception);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // _DOLPHIN_OSEXCEPTION_H_
diff --git a/include/dolphin/os/OSInterrupt.h b/include/dolphin/os/OSInterrupt.h
index 943cfa85..17a6265b 100644
--- a/include/dolphin/os/OSInterrupt.h
+++ b/include/dolphin/os/OSInterrupt.h
@@ -126,7 +126,7 @@ u32 __OSMaskInterrupts(u32);
u32 __OSUnmaskInterrupts(u32);
u32 SetInterruptMask(OSInterruptMask mask, OSInterruptMask current);
-void __OSDispatchInterrupt(OSException exception, OSContext* context);
+void __OSDispatchInterrupt(__OSException exception, OSContext* context);
#ifdef __cplusplus
diff --git a/include/dolphin/os/OSReset.h b/include/dolphin/os/OSReset.h
index 994f29c2..fa200677 100644
--- a/include/dolphin/os/OSReset.h
+++ b/include/dolphin/os/OSReset.h
@@ -30,6 +30,7 @@ u32 OSGetResetCode();
void OSResetSystem(int reset, u32 resetCode, BOOL forceMenu);
BOOL OSGetResetSwitchState();
void OSGetSaveRegion(void** start, void** end);
+void OSRegisterResetFunction(OSResetFunctionInfo* info);
#ifdef __cplusplus
}
diff --git a/include/dolphin/os/OSTime.h b/include/dolphin/os/OSTime.h
index ba759c5f..a2213e7b 100644
--- a/include/dolphin/os/OSTime.h
+++ b/include/dolphin/os/OSTime.h
@@ -26,6 +26,7 @@ u32 __busclock AT_ADDRESS(0x800000F8);
#define OSNanosecondsToTicks(nsec) (((nsec) * (OS_TIMER_CLOCK / 125000)) / 8000)
OSTime OSGetTime(void);
+OSTime __OSGetSystemTime(void);
OSTick OSGetTick(void);
typedef struct OSCalendarTime_s {
diff --git a/include/dolphin/os/__ppc_eabi_init.h b/include/dolphin/os/__ppc_eabi_init.h
index 41a83654..053460e3 100644
--- a/include/dolphin/os/__ppc_eabi_init.h
+++ b/include/dolphin/os/__ppc_eabi_init.h
@@ -1,6 +1,8 @@
#ifndef PPC_EABI_INIT_H
#define PPC_EABI_INIT_H
+#include "types.h"
+
#ifdef __cplusplus
extern "C"{
#endif
@@ -61,7 +63,6 @@ DECL_BSS_SECTION(_sbss2);
void __init_hardware(void);
void __flush_cache(void*, size_t);
void __init_user(void);
-void __fini_cpp(void);
void _ExitProcess(void);
typedef struct RomSection {
diff --git a/include/dolphin/os1/OSAddress.h b/include/dolphin/os1/OSAddress.h
new file mode 100644
index 00000000..2888e45e
--- /dev/null
+++ b/include/dolphin/os1/OSAddress.h
@@ -0,0 +1,32 @@
+#ifndef OS_ADDRESS_H
+#define OS_ADDRESS_H
+
+// maybe put this in OSUtil instead
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+// Defines for cached and uncached memory.
+#define OS_BASE_CACHED (0x80000000)
+#define OS_BASE_UNCACHED (0xC0000000)
+
+// Address conversions.
+#define OSPhysicalToCached(paddr) ((void *)((u32)(paddr) + OS_BASE_CACHED))
+#define OSPhysicalToUncached(paddr) ((void *)((u32)(paddr) + OS_BASE_UNCACHED))
+#define OSCachedToPhysical(caddr) ((u32)((u8 *)(caddr)-OS_BASE_CACHED))
+#define OSUncachedToPhysical(ucaddr) ((u32)((u8 *)(ucaddr)-OS_BASE_UNCACHED))
+#define OSCachedToUncached(caddr) ((void *)((u8 *)(caddr) + (OS_BASE_UNCACHED - OS_BASE_CACHED)))
+#define OSUncachedToCached(ucaddr) ((void *)((u8 *)(ucaddr) - (OS_BASE_UNCACHED - OS_BASE_CACHED)))
+
+#define OS_CACHED_REGION_PREFIX 0x8000
+#define OS_UNCACHED_REGION_PREFIX 0xC000
+#define OS_PHYSICAL_MASK 0x3FFF
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os1/OSAlarm.h b/include/dolphin/os1/OSAlarm.h
new file mode 100644
index 00000000..96ab650a
--- /dev/null
+++ b/include/dolphin/os1/OSAlarm.h
@@ -0,0 +1,41 @@
+#ifndef DOLPHIN_OS_ALARM_H
+#define DOLPHIN_OS_ALARM_H
+
+#include "types.h"
+#include "dolphin/os/OSTime.h"
+#include "dolphin/os/OSContext.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct OSAlarm OSAlarm;
+typedef void (*OSAlarmHandler)(OSAlarm* alarm, OSContext* context);
+
+struct OSAlarm
+{
+ OSAlarmHandler handler;
+ OSTime fire;
+ OSAlarm *prev;
+ OSAlarm *next;
+
+ // Periodic alarm
+ OSTime period;
+ OSTime start;
+};
+
+void OSInitAlarm(void);
+void OSSetAlarm(OSAlarm *alarm, OSTime tick, OSAlarmHandler handler);
+void OSSetAbsAlarm(OSAlarm *alarm, OSTime time, OSAlarmHandler handler);
+void OSSetPeriodicAlarm(OSAlarm *alarm, OSTime start, OSTime period,
+ OSAlarmHandler handler);
+void OSCreateAlarm(OSAlarm *alarm);
+void OSCancelAlarm(OSAlarm *alarm);
+
+BOOL OSCheckAlarmQueue(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // DOLPHIN_OS_ALARM_H
diff --git a/include/dolphin/os1/OSAlloc.h b/include/dolphin/os1/OSAlloc.h
new file mode 100644
index 00000000..ae2f1cba
--- /dev/null
+++ b/include/dolphin/os1/OSAlloc.h
@@ -0,0 +1,32 @@
+#ifndef OS_ALLOC_H
+#define OS_ALLOC_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef int OSHeapHandle;
+
+extern volatile OSHeapHandle __OSCurrHeap;
+
+void* OSAllocFromHeap(int heap, unsigned long size);
+void* OSAllocFixed(void* rstart, void* rend);
+void OSFreeToHeap(int heap, void* ptr);
+int OSSetCurrentHeap(int heap);
+void* OSInitAlloc(void* arenaStart, void* arenaEnd, int maxHeaps);
+int OSCreateHeap(void* start, void* end);
+void OSDestroyHeap(int heap);
+void OSAddToHeap(int heap, void* start, void* end);
+long OSCheckHeap(int heap);
+unsigned long OSReferentSize(void* ptr);
+void OSDumpHeap(int heap);
+void OSVisitAllocated(void (*visitor)(void*, unsigned long));
+
+#define OSAlloc(size) OSAllocFromHeap(__OSCurrHeap, (size))
+#define OSFree(ptr) OSFreeToHeap(__OSCurrHeap, (ptr))
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSArena.h b/include/dolphin/os1/OSArena.h
new file mode 100644
index 00000000..1ece78e8
--- /dev/null
+++ b/include/dolphin/os1/OSArena.h
@@ -0,0 +1,18 @@
+#ifndef OS_ARENA_H
+#define OS_ARENA_H
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+void* OSGetArenaHi(void);
+void* OSGetArenaLo(void);
+
+void OSSetArenaHi(void*);
+void OSSetArenaLo(void*);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os1/OSCache.h b/include/dolphin/os1/OSCache.h
new file mode 100644
index 00000000..dc777120
--- /dev/null
+++ b/include/dolphin/os1/OSCache.h
@@ -0,0 +1,30 @@
+#ifndef OS_CACHE_H
+#define OS_CACHE_H
+#include "types.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void DCEnable(void);
+void DCInvalidateRange(void*, u32);
+void DCFlushRange(void*, u32);
+void DCStoreRange(void*, u32);
+void DCFlushRangeNoSync(void*, u32);
+void DCStoreRangeNoSync(void*, u32);
+void DCZeroRange(void*, u32);
+void DCTouchRange(void*, u32 len);
+void ICInvalidateRange(void*, u32);
+void ICFlashInvalidate(void);
+void ICEnable(void);
+void LCDisable(void);
+
+//void L2GlobalInvalidate(void);
+
+//void DMAErrorHandler(u8, struct OSContext*, u32, u32, ...);
+
+//void __OSCacheInit(void);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/dolphin/os1/OSContext.h b/include/dolphin/os1/OSContext.h
new file mode 100644
index 00000000..0a5fb8ab
--- /dev/null
+++ b/include/dolphin/os1/OSContext.h
@@ -0,0 +1,45 @@
+#ifndef OS_CONTEXT_H
+#define OS_CONTEXT_H
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct OSContext{
+ u32 gprs[32];
+ u32 cr;
+ u32 lr;
+ u32 ctr;
+ u32 xer;
+ f64 fprs[32];
+ u32 fpscr_tmp;
+ u32 fpscr;
+ u32 srr0;
+ u32 srr1;
+ u16 mode;
+ u16 state;
+ u32 gqrs[8];
+ char UNK_0x1C4;
+ f64 psfs[32];
+} OSContext;
+
+OSContext* OS_CURRENT_CONTEXT_PHYS AT_ADDRESS(0x800000C0);
+OSContext* OS_CURRENT_CONTEXT AT_ADDRESS(0x800000D4);
+OSContext* OS_CURRENT_FPU_CONTEXT AT_ADDRESS(0x800000D8);
+
+void OSSaveFPUContext(OSContext*);
+void OSSetCurrentContext(OSContext*);
+OSContext* OSGetCurrentContext(void);
+BOOL OSSaveContext(OSContext*);
+void OSLoadContext(OSContext*);
+void* OSGetStackPointer(void);
+void OSClearContext(OSContext*);
+void OSInitContext(register OSContext*, register u32 srr, register u32 sp);
+void OSDumpContext(const OSContext*);
+
+void __OSContextInit(void);
+#ifdef __cplusplus
+};
+#endif
+#endif
diff --git a/include/dolphin/os1/OSError.h b/include/dolphin/os1/OSError.h
new file mode 100644
index 00000000..df6f7132
--- /dev/null
+++ b/include/dolphin/os1/OSError.h
@@ -0,0 +1,32 @@
+#ifndef OS_ERROR_H
+#define OS_ERROR_H
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+typedef enum {
+ OS_ERR_SYSTEM_RESET,
+ OS_ERR_MACHINE_CHECK,
+ OS_ERR_DSI,
+ OS_ERR_ISI,
+ OS_ERR_EXT_INTERRUPT,
+ OS_ERR_ALIGMENT,
+ OS_ERR_PROGRAM,
+ OS_ERR_FP_UNAVAIL,
+ OS_ERR_DECREMENTER,
+ OS_ERR_SYSTEM_CALL,
+ OS_ERR_TRACE,
+ OS_ERR_PERF_MONITOR,
+ OS_ERR_IABR,
+ OS_ERR_SMI,
+ OS_ERR_THERMAL_INT,
+ OS_ERR_PROTECTION,
+ OS_ERR_FP_EXCEPTION,
+ OS_ERR_MAX,
+};
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/dolphin/os1/OSException.h b/include/dolphin/os1/OSException.h
new file mode 100644
index 00000000..a6ad8a2d
--- /dev/null
+++ b/include/dolphin/os1/OSException.h
@@ -0,0 +1,9 @@
+#ifndef DOLPHIN_OSEXCEPTION_H
+#define DOLPHIN_OSEXCEPTION_H
+
+typedef enum OSException {
+ OS_EXCEPTION_FLOATING_POINT = 7,
+ OS_EXCEPTION_COUNT = 15,
+} OSException;
+
+#endif
diff --git a/include/dolphin/os1/OSExi.h b/include/dolphin/os1/OSExi.h
new file mode 100644
index 00000000..b11ede2d
--- /dev/null
+++ b/include/dolphin/os1/OSExi.h
@@ -0,0 +1,72 @@
+#ifndef DOLPHIN_OSEXI_H
+#define DOLPHIN_OSEXI_H
+
+#include "dolphin/os/OSContext.h"
+#include "dolphin/os/OSInterrupt.h"
+#include "types.h"
+
+typedef enum {
+ EXI_STATE_DMA_ACCESS = (1 << 0),
+ EXI_STATE_IMM_ACCESS = (1 << 1),
+ EXI_STATE_SELECTED = (1 << 2),
+ EXI_STATE_ATTACHED = (1 << 3),
+ EXI_STATE_LOCKED = (1 << 4),
+ EXI_STATE_BUSY = EXI_STATE_DMA_ACCESS | EXI_STATE_IMM_ACCESS
+} EXIState;
+
+typedef enum {
+ EXI_CHAN_0,
+ EXI_CHAN_1,
+ EXI_CHAN_2,
+ EXI_MAX_CHAN
+} EXIChannel;
+
+typedef enum {
+ EXI_READ,
+ EXI_WRITE,
+ EXI_TYPE_2,
+ EXI_MAX_TYPE
+} EXIType;
+
+typedef void (*EXICallback)(EXIChannel, OSContext*);
+
+typedef struct EXIControl {
+ EXICallback exiCallback;
+ EXICallback tcCallback;
+ EXICallback extCallback;
+ vu32 state;
+ int immLen;
+ u8* immBuf;
+ u32 dev;
+ u32 id;
+ s32 idTime;
+ int items;
+ struct {
+ u32 dev;
+ EXICallback callback;
+ } queue[3];
+} EXIControl;
+
+#define EXI_REG_MAX 5
+extern vu32 __EXIRegs[EXI_MAX_CHAN][EXI_REG_MAX] AT_ADDRESS(0xCC006800);
+
+void SetExiInterruptMask(EXIChannel, volatile EXIControl*);
+BOOL EXIImm(EXIChannel, void* buf, s32 len, u32 type, EXICallback);
+BOOL EXIImmEx(EXIChannel, void* buf, s32 len, u32 mode);
+BOOL EXIDma(EXIChannel, void* buf, s32 len, u32 type, EXICallback);
+BOOL EXISync(EXIChannel);
+u32 EXIClearInterrupts(EXIChannel, BOOL exi, BOOL tc, BOOL ext);
+EXICallback EXISetExiCallback(EXIChannel, EXICallback exiCallback);
+BOOL EXIProbe(EXIChannel);
+s32 EXIProbeEx(EXIChannel);
+BOOL EXIAttach(EXIChannel, EXICallback);
+BOOL EXIDetach(EXIChannel);
+BOOL EXISelect(EXIChannel, u32 dev, u32 freq);
+BOOL EXIDeselect(EXIChannel);
+void EXIInit(void);
+BOOL EXILock(EXIChannel, u32 dev, EXICallback unlockedCallback);
+BOOL EXIUnlock(EXIChannel);
+u32 EXIGetState(EXIChannel);
+s32 EXIGetID(EXIChannel, u32 dev, u32* id);
+
+#endif
diff --git a/include/dolphin/os1/OSFastCast.h b/include/dolphin/os1/OSFastCast.h
new file mode 100644
index 00000000..8b573249
--- /dev/null
+++ b/include/dolphin/os1/OSFastCast.h
@@ -0,0 +1,124 @@
+#ifndef _DOLPHIN_OS_OSFASTCAST_H
+#define _DOLPHIN_OS_OSFASTCAST_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif // ifdef __cplusplus
+
+/////// FAST CAST DEFINES ////////
+// GQR formats.
+#define OS_GQR_U8 (0x0004) // GQR 1
+#define OS_GQR_U16 (0x0005) // GQR 2
+#define OS_GQR_S8 (0x0006) // GQR 3
+#define OS_GQR_S16 (0x0007) // GQR 4
+
+// GQRs for fast casting.
+#define OS_FASTCAST_U8 (2)
+#define OS_FASTCAST_U16 (3)
+#define OS_FASTCAST_S8 (4)
+#define OS_FASTCAST_S16 (5)
+
+//////////////////////////////////
+
+/////// FAST CAST INLINES ////////
+// Initialise fast casting.
+static inline void OSInitFastCast() {
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ li r3, OS_GQR_U8
+ oris r3, r3, OS_GQR_U8
+ mtspr 0x392, r3
+ li r3, OS_GQR_U16
+ oris r3, r3, OS_GQR_U16
+ mtspr 0x393, r3
+ li r3, OS_GQR_S8
+ oris r3, r3, OS_GQR_S8
+ mtspr 0x394, r3
+ li r3, OS_GQR_S16
+ oris r3, r3, OS_GQR_S16
+ mtspr 0x395, r3
+ }
+#endif // clang-format on
+}
+
+// Float to int.
+static inline s16 __OSf32tos16(register f32 inF) {
+ register s16 out;
+ u32 tmp;
+ register u32* tmpPtr = &tmp;
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ psq_st inF, 0(tmpPtr), 0x1, OS_FASTCAST_S16
+ lha out, 0(tmpPtr)
+ }
+#endif // clang-format on
+
+ return out;
+}
+
+static inline void OSf32tos16(f32* f, s16* out) {
+ *out = __OSf32tos16(*f);
+}
+
+static inline u8 __OSf32tou8(register f32 inF) {
+ register u8 out;
+ u32 tmp;
+ register u32* tmpPtr = &tmp;
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ psq_st inF, 0(tmpPtr), 0x1, OS_FASTCAST_U8
+ lbz out, 0(tmpPtr)
+ }
+#endif // clang-format on
+
+ return out;
+}
+
+static inline void OSf32tou8(f32* f, u8* out) {
+ *out = __OSf32tou8(*f);
+}
+
+static inline s8 __OSf32tos8(register f32 inF) {
+ register s8 out;
+ u32 tmp;
+ register u32* tmpPtr = &tmp;
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ psq_st inF, 0(tmpPtr), 0x1, OS_FASTCAST_S8
+ lbz out, 0(tmpPtr)
+ extsb out, out
+ }
+#endif // clang-format on
+
+ return out;
+}
+
+static inline void OSf32tos8(f32* f, s8* out) {
+ *out = __OSf32tos8(*f);
+}
+
+static inline float __OSs16tof32(register s16* s) {
+ register float f;
+
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ psq_l f, 0(s), 1, 5
+ }
+#endif // clang-format on
+
+ return f;
+}
+
+static inline void OSs16tof32(register s16* s, volatile register f32* f) {
+ *f = __OSs16tof32(s);
+}
+
+//////////////////////////////////
+
+#ifdef __cplusplus
+};
+#endif // ifdef __cplusplus
+
+#endif
diff --git a/include/dolphin/os1/OSFont.h b/include/dolphin/os1/OSFont.h
new file mode 100644
index 00000000..dd16efb8
--- /dev/null
+++ b/include/dolphin/os1/OSFont.h
@@ -0,0 +1,55 @@
+#ifndef OSFONT_H
+#define OSFONT_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct OSFontHeader {
+ u16 fontType; // _00
+ u16 firstChar; // _02, first char code defined in font.
+ u16 lastChar; // _04, last char code defined in font.
+ u16 invalChar; // _06, code to sub for invalid chars.
+ u16 ascent; // _08
+ u16 descent; // _0A
+ u16 width; // _0C, max width.
+ u16 leading; // _0E
+ u16 cellWidth; // _10
+ u16 cellHeight; // _12
+ u32 sheetSize; // _14
+ u16 sheetFormat; // _18, see GX_TF_* part of GXTexFmt enum
+ u16 sheetColumn; // _1A
+ u16 sheetRow; // _1C
+ u16 sheetWidth; // _1E
+ u16 sheetHeight; // _20
+ u16 widthTable; // _22
+ u32 sheetImage; // _24
+ u32 sheetFullSize; // _28
+ u8 c0; // _2C, font color components?
+ u8 c1; // _2D
+ u8 c2; // _2E
+ u8 c3; // _2F
+} OSFontHeader;
+
+#define OS_FONT_ENCODE_NULL -1
+#define OS_FONT_ENCODE_ANSI 0u
+#define OS_FONT_ENCODE_SJIS 1u
+#define OS_FONT_ENCODE_UTF8 3u // UTF-8 [RFC 3629]
+#define OS_FONT_ENCODE_UTF16 4u // UTF-16BE [RFC 2781]
+#define OS_FONT_ENCODE_UTF32 5u // UTF-32
+#define OS_FONT_ENCODE_MAX 5u
+#define OS_FONT_ENCODE_VOID 0xffffu
+
+#define OS_FONT_PROPORTIONAL FALSE
+#define OS_FONT_FIXED TRUE
+
+u16 OSGetFontEncode(void);
+u16 OSSetFontEncode(u16 encode);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSInterrupt.h b/include/dolphin/os1/OSInterrupt.h
new file mode 100644
index 00000000..943cfa85
--- /dev/null
+++ b/include/dolphin/os1/OSInterrupt.h
@@ -0,0 +1,136 @@
+#ifndef DOLPHIN_OSINTERRUPT_H
+#define DOLPHIN_OSINTERRUPT_H
+
+#include "dolphin/os/OSContext.h"
+#include "dolphin/os/OSException.h"
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef s16 __OSInterrupt;
+typedef u32 OSInterruptMask;
+
+typedef enum OSInterruptType {
+ OS_INTR_MEM_0,
+ OS_INTR_MEM_1,
+ OS_INTR_MEM_2,
+ OS_INTR_MEM_3,
+ OS_INTR_MEM_ADDRESS,
+ OS_INTR_DSP_AI,
+ OS_INTR_DSP_ARAM,
+ OS_INTR_DSP_DSP,
+ OS_INTR_AI_AI,
+ OS_INTR_EXI_0_EXI,
+ OS_INTR_EXI_0_TC,
+ OS_INTR_EXI_0_EXT,
+ OS_INTR_EXI_1_EXI,
+ OS_INTR_EXI_1_TC,
+ OS_INTR_EXI_1_EXT,
+ OS_INTR_EXI_2_EXI,
+ OS_INTR_EXI_2_TC,
+ OS_INTR_PI_CP,
+ OS_INTR_PI_PE_TOKEN,
+ OS_INTR_PI_PE_FINISH,
+ OS_INTR_PI_SI,
+ OS_INTR_PI_DI,
+ OS_INTR_PI_RSW,
+ OS_INTR_PI_ERROR,
+ OS_INTR_PI_VI,
+ OS_INTR_PI_DEBUG,
+ OS_INTR_PI_HSP,
+ OS_INTR_PI_ACR,
+ OS_INTR_28,
+ OS_INTR_29,
+ OS_INTR_30,
+ OS_INTR_31,
+
+ OS_INTR_MAX
+} OSInterruptType;
+
+#define OS_INTRMASK_MEM_0 (0x80000000U >> OS_INTR_MEM_0)
+#define OS_INTRMASK_MEM_1 (0x80000000U >> OS_INTR_MEM_1)
+#define OS_INTRMASK_MEM_2 (0x80000000U >> OS_INTR_MEM_2)
+#define OS_INTRMASK_MEM_3 (0x80000000U >> OS_INTR_MEM_3)
+#define OS_INTRMASK_MEM_ADDRESS (0x80000000U >> OS_INTR_MEM_ADDRESS)
+#define OS_INTRMASK_DSP_AI (0x80000000U >> OS_INTR_DSP_AI)
+#define OS_INTRMASK_DSP_ARAM (0x80000000U >> OS_INTR_DSP_ARAM)
+#define OS_INTRMASK_DSP_DSP (0x80000000U >> OS_INTR_DSP_DSP)
+#define OS_INTRMASK_AI_AI (0x80000000U >> OS_INTR_AI_AI)
+#define OS_INTRMASK_EXI_0_EXI (0x80000000U >> OS_INTR_EXI_0_EXI)
+#define OS_INTRMASK_EXI_0_TC (0x80000000U >> OS_INTR_EXI_0_TC)
+#define OS_INTRMASK_EXI_0_EXT (0x80000000U >> OS_INTR_EXI_0_EXT)
+#define OS_INTRMASK_EXI_1_EXI (0x80000000U >> OS_INTR_EXI_1_EXI)
+#define OS_INTRMASK_EXI_1_TC (0x80000000U >> OS_INTR_EXI_1_TC)
+#define OS_INTRMASK_EXI_1_EXT (0x80000000U >> OS_INTR_EXI_1_EXT)
+#define OS_INTRMASK_EXI_2_EXI (0x80000000U >> OS_INTR_EXI_2_EXI)
+#define OS_INTRMASK_EXI_2_TC (0x80000000U >> OS_INTR_EXI_2_TC)
+#define OS_INTRMASK_PI_CP (0x80000000U >> OS_INTR_PI_CP)
+#define OS_INTRMASK_PI_PE_TOKEN (0x80000000U >> OS_INTR_PI_PE_TOKEN)
+#define OS_INTRMASK_PI_PE_FINISH (0x80000000U >> OS_INTR_PI_PE_FINISH)
+#define OS_INTRMASK_PI_SI (0x80000000U >> OS_INTR_PI_SI)
+#define OS_INTRMASK_PI_DI (0x80000000U >> OS_INTR_PI_DI)
+#define OS_INTRMASK_PI_RSW (0x80000000U >> OS_INTR_PI_RSW)
+#define OS_INTRMASK_PI_ERROR (0x80000000U >> OS_INTR_PI_ERROR)
+#define OS_INTRMASK_PI_VI (0x80000000U >> OS_INTR_PI_VI)
+#define OS_INTRMASK_PI_DEBUG (0x80000000U >> OS_INTR_PI_DEBUG)
+#define OS_INTRMASK_PI_HSP (0x80000000U >> OS_INTR_PI_HSP)
+
+#define OS_INTRMASK_MEM \
+ (OS_INTRMASK_MEM_0 | OS_INTRMASK_MEM_1 | OS_INTRMASK_MEM_2 | \
+ OS_INTRMASK_MEM_3 | OS_INTRMASK_MEM_ADDRESS)
+
+#define OS_INTRMASK_AI (OS_INTRMASK_AI_AI)
+
+#define OS_INTRMASK_DSP \
+ (OS_INTRMASK_DSP_AI | OS_INTRMASK_DSP_ARAM | OS_INTRMASK_DSP_DSP)
+
+#define OS_INTRMASK_EXI_0 \
+ (OS_INTRMASK_EXI_0_EXI | OS_INTRMASK_EXI_0_TC | OS_INTRMASK_EXI_0_EXT)
+#define OS_INTRMASK_EXI_1 \
+ (OS_INTRMASK_EXI_1_EXI | OS_INTRMASK_EXI_1_TC | OS_INTRMASK_EXI_1_EXT)
+#define OS_INTRMASK_EXI_2 (OS_INTRMASK_EXI_2_EXI | OS_INTRMASK_EXI_2_TC)
+#define OS_INTRMASK_EXI \
+ (OS_INTRMASK_EXI_0_EXI | OS_INTRMASK_EXI_0_TC | OS_INTRMASK_EXI_0_EXT | \
+ OS_INTRMASK_EXI_1_EXI | OS_INTRMASK_EXI_1_TC | OS_INTRMASK_EXI_1_EXT | \
+ OS_INTRMASK_EXI_2_EXI | OS_INTRMASK_EXI_2_TC)
+
+#define OS_INTRMASK_PI \
+ (OS_INTRMASK_PI_CP | OS_INTRMASK_PI_SI | OS_INTRMASK_PI_DI | \
+ OS_INTRMASK_PI_RSW | OS_INTRMASK_PI_ERROR | OS_INTRMASK_PI_VI | \
+ OS_INTRMASK_PI_PE_TOKEN | OS_INTRMASK_PI_PE_FINISH | \
+ OS_INTRMASK_PI_DEBUG | OS_INTRMASK_PI_HSP)
+
+#define OS_INTRMASK_PI_PE (OS_INTRMASK_PI_PE_TOKEN | OS_INTRMASK_PI_PE_FINISH)
+
+typedef void (*OSInterruptHandler)(__OSInterrupt, OSContext*);
+
+extern volatile u32 __OSLastInterruptSrr0;
+extern volatile s16 __OSLastInterrupt;
+extern volatile s64 __OSLastInterruptTime;
+
+void __RAS_OSDisableInterrupts_begin(void);
+void __RAS_OSDisableInterrupts_end(void);
+
+BOOL OSDisableInterrupts(void);
+BOOL OSEnableInterrupts(void);
+BOOL OSRestoreInterrupts(BOOL);
+
+OSInterruptHandler __OSSetInterruptHandler(__OSInterrupt, OSInterruptHandler);
+OSInterruptHandler __OSGetInterruptHandler(__OSInterrupt);
+
+void __OSInterruptInit(void);
+
+u32 __OSMaskInterrupts(u32);
+u32 __OSUnmaskInterrupts(u32);
+
+u32 SetInterruptMask(OSInterruptMask mask, OSInterruptMask current);
+void __OSDispatchInterrupt(OSException exception, OSContext* context);
+
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSMemory.h b/include/dolphin/os1/OSMemory.h
new file mode 100644
index 00000000..601cf2cc
--- /dev/null
+++ b/include/dolphin/os1/OSMemory.h
@@ -0,0 +1,17 @@
+#ifndef OS_MEMORY_H
+#define OS_MEMORY_H
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define SIM_MEM *(u32 *)0x800000f0
+static void Config24MB();
+static void Config48MB();
+u32 OSGetConsoleSimulatedMemSize(void);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os1/OSMessage.h b/include/dolphin/os1/OSMessage.h
new file mode 100644
index 00000000..0e2cce86
--- /dev/null
+++ b/include/dolphin/os1/OSMessage.h
@@ -0,0 +1,51 @@
+#ifndef _DOLPHIN_OS_OSMESSAGE_H
+#define _DOLPHIN_OS_OSMESSAGE_H
+
+#include "types.h"
+#include "dolphin/os/OSUtil.h"
+#include "dolphin/os/OSThread.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif // ifdef __cplusplus
+
+///////// MESSAGE TYPES //////////
+typedef struct OSMessageQueue OSMessageQueue;
+
+// Useful typedef for messages.
+typedef void* OSMessage;
+
+// Struct for managing the message queue.
+struct OSMessageQueue {
+ OSThreadQueue queueSend; // _00
+ OSThreadQueue queueReceive; // _08
+ OSMessage* msgArray; // _10, array of messages.
+ int msgCount; // _14, array limit size.
+ int firstIndex; // _18, first message index in array.
+ int usedCount; // _1C, actual number of used messages.
+};
+
+// Defines for message flags for sending/receiving.
+#define OS_MESSAGE_NOBLOCK (0)
+#define OS_MESSAGE_BLOCK (1)
+
+typedef enum {
+ OS_MSG_PERSISTENT = (1 << 0),
+} OSMessageFlags;
+
+//////////////////////////////////
+
+/////// MESSAGE FUNCTIONS ////////
+// Functions for handling messages.
+void OSInitMessageQueue(OSMessageQueue* queue, OSMessage* msgArray, int msgCount);
+BOOL OSSendMessage(OSMessageQueue* queue, OSMessage msg, int flags);
+BOOL OSJamMessage(OSMessageQueue* queue, OSMessage msg, int flags);
+BOOL OSReceiveMessage(OSMessageQueue* queue, OSMessage* msgPtr, int flags);
+
+//////////////////////////////////
+
+#ifdef __cplusplus
+};
+#endif // ifdef __cplusplus
+
+#endif
diff --git a/include/dolphin/os1/OSModule.h b/include/dolphin/os1/OSModule.h
new file mode 100644
index 00000000..ba06e28f
--- /dev/null
+++ b/include/dolphin/os1/OSModule.h
@@ -0,0 +1,72 @@
+#ifndef DOLPHIN_OSMODULE_H
+#define DOLPHIN_OSMODULE_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct OSModuleInfo_s OSModuleInfo;
+
+typedef struct OSModuleQueue_s {
+ OSModuleInfo* head;
+ OSModuleInfo* tail;
+} OSModuleQueue;
+
+typedef struct OSModuleLink_s {
+ OSModuleInfo* next;
+ OSModuleInfo* prev;
+} OSModuleLink;
+
+typedef struct OSModuleInfo_s {
+ u32 id;
+ OSModuleLink link;
+ u32 numSections;
+ u32 sectionInfoOfs;
+ u32 nameOfs;
+ u32 nameSize;
+ u32 version;
+} OSModuleInfo;
+
+typedef struct OSModuleHeader_s {
+ OSModuleInfo info;
+ u32 bssSize;
+ u32 relOfs;
+ u32 impOfs;
+ u32 impSize;
+
+ u8 prologSection;
+ u8 epilogSection;
+ u8 unresolvedSection;
+ u8 bssSection;
+
+ u32 prolog;
+ u32 epilog;
+ u32 unresolved;
+ /* OS_MODULE_VERSION >= 2 */
+
+ u32 align;
+ u32 bssAlign;
+} OSModuleHeader;
+
+typedef struct OSSectionInfo_s {
+ u32 offset;
+ u32 size;
+} OSSectionInfo;
+
+#define OSGetSectionInfo(module) \
+ ((OSSectionInfo*) (((OSModuleInfo*) (module))->sectionInfoOfs))
+
+#define OS_SECTIONINFO_EXEC 1
+#define OS_SECTIONINFO_OFFSET(offset) ((offset) & ~OS_SECTIONINFO_EXEC)
+
+void OSSetStringTable (const void* strTable);
+BOOL OSLink(OSModuleInfo* module, void* bss);
+BOOL OSUnlink(OSModuleInfo* module);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSMutex.h b/include/dolphin/os1/OSMutex.h
new file mode 100644
index 00000000..297c1800
--- /dev/null
+++ b/include/dolphin/os1/OSMutex.h
@@ -0,0 +1,36 @@
+#ifndef OS_MUTEX_H
+#define OS_MUTEX_H
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#include "dolphin/os/OSThread.h"
+
+struct OSMutex
+{
+ OSThreadQueue queue;
+ OSThread *thread; // the current owner
+ s32 count; // lock count
+ OSMutexLink link; // for OSThread.queueMutex
+};
+
+struct OSCond
+{
+ OSThreadQueue queue;
+};
+
+void OSInitMutex(OSMutex *mutex);
+void OSLockMutex(OSMutex *mutex);
+void OSUnlockMutex(OSMutex *mutex);
+BOOL OSTryLockMutex(OSMutex *mutex);
+void OSInitCond(OSCond *cond);
+void OSWaitCond(OSCond *cond, OSMutex *mutex);
+void OSSignalCond(OSCond *cond);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // DOLPHIN_OSMUTEX_H
diff --git a/include/dolphin/os1/OSReset.h b/include/dolphin/os1/OSReset.h
new file mode 100644
index 00000000..994f29c2
--- /dev/null
+++ b/include/dolphin/os1/OSReset.h
@@ -0,0 +1,38 @@
+#ifndef OSRESET_H
+#define OSRESET_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define OS_RESETCODE_RESTART 0x80000000
+
+#define OS_RESET_RESTART 0
+#define OS_RESET_HOTRESET 1 /* Soft reset */
+#define OS_RESET_SHUTDOWN 2
+
+typedef BOOL (*OSResetFunction)(BOOL final);
+typedef struct OSResetFunctionInfo OSResetFunctionInfo;
+
+struct OSResetFunctionInfo {
+ // public
+ OSResetFunction func;
+ u32 priority;
+
+ // private
+ OSResetFunctionInfo* next;
+ OSResetFunctionInfo* prev;
+};
+
+u32 OSGetResetCode();
+void OSResetSystem(int reset, u32 resetCode, BOOL forceMenu);
+BOOL OSGetResetSwitchState();
+void OSGetSaveRegion(void** start, void** end);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSResetSW.h b/include/dolphin/os1/OSResetSW.h
new file mode 100644
index 00000000..fe9b4045
--- /dev/null
+++ b/include/dolphin/os1/OSResetSW.h
@@ -0,0 +1,16 @@
+#ifndef OSRESETSW_H
+#define OSRESETSW_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+BOOL OSGetResetSwitchState();
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSRtc.h b/include/dolphin/os1/OSRtc.h
new file mode 100644
index 00000000..4edc389c
--- /dev/null
+++ b/include/dolphin/os1/OSRtc.h
@@ -0,0 +1,111 @@
+#ifndef DOLPHIN_OSRTC_H
+#define DOLPHIN_OSTRC_H
+
+#include "types.h"
+#include "dolphin/os/OSExi.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define OS_SOUND_MODE_MONO 0
+#define OS_SOUND_MODE_STEREO 1
+
+#define OS_PROGRESSIVE_MODE_OFF 0
+#define OS_PROGRESSIVE_MODE_ON 1
+
+#define OS_BOOT_MODE_DEBUG (0 << 7)
+#define OS_BOOT_MODE_RETAIL (1 << 7)
+
+#define RTC_CMD_READ 0x20000000
+#define RTC_CMD_WRITE 0xA0000000
+
+#define RTC_SRAM_ADDR 0x00000100
+#define RTC_SRAM_SIZE 64
+
+#define RTC_CHAN EXI_CHAN_0
+#define RTC_DEVICE 1
+#define RTC_FREQUENCY 3
+
+typedef struct OSSram_s {
+ u16 checkSum;
+ u16 checkSumInv;
+ u32 ead0;
+ u32 ead1;
+ u32 counterBias;
+ s8 displayOffsetH;
+ u8 ntd;
+ u8 language;
+ u8 flags;
+} OSSram;
+
+typedef struct OSSramEx_s {
+ u8 flashID[2][12];
+ u32 wirelessKeyboardID;
+ u16 wirelessPadID[4];
+ u8 dvdErrorCode;
+ u8 pad0;
+ u8 flashIDCheckSum[2];
+ u16 gbs;
+ u8 pad1[2];
+} OSSramEx;
+
+typedef struct SramControlBlock_s {
+ u8 sram[RTC_SRAM_SIZE];
+ u32 offset;
+ BOOL enabled;
+ BOOL locked;
+ BOOL sync;
+ void (*callback)(void);
+} SramControlBlock;
+
+// static void GetRTC();
+// extern void __OSGetRTC();
+// extern void __OSSetRTC();
+static inline BOOL ReadSram(void* buffer);
+static void WriteSramCallback(EXIChannel chan, OSContext* ctx);
+static BOOL WriteSram(void* buffer, u32 offset, u32 size);
+extern void __OSInitSram();
+static inline void* LockSram(u32 offset);
+extern OSSram* __OSLockSram();
+extern OSSramEx* __OSLockSramEx();
+static BOOL UnlockSram(BOOL commit, u32 offset);
+extern void __OSUnlockSram(BOOL commit);
+extern void __OSUnlockSramEx(BOOL commit);
+extern BOOL __OSSyncSram();
+// extern void __OSCheckSram();
+// extern void __OSReadROM();
+// extern void __OSReadROMCallback();
+// extern void __OSReadROMAsync();
+extern u32 OSGetSoundMode();
+extern void OSSetSoundMode(u32 mode);
+extern u32 OSGetProgressiveMode();
+extern void OSSetProgressiveMode(u32 on);
+// extern void OSGetVideoMode();
+// extern void OSSetVideoMode();
+// extern void OSGetLanguage();
+// extern void OSSetLanguage();
+// extern void __OSGetBootMode();
+extern void __OSSetBootMode(u8 mode);
+// extern void OSGetEuRgb60Mode();
+// extern void OSSetEuRgb60Mode();
+extern u16 OSGetWirelessID(u32 chan);
+extern void OSSetWirelessID(u32 chan, u16 id);
+
+#define GET_SOUNDMODE(flags) ((flags) & (1 << 2))
+#define CLR_SOUNDMODE(flags) ((flags) & (~(1 << 2)))
+#define SET_SOUNDMODE(mode) (((mode) & 1) << 2)
+
+#define GET_PROGMODE(flags) ((flags) & (1 << 7))
+#define CLR_PROGMODE(flags) ((flags) & (~(1 << 7)))
+#define SET_PROGMODE(mode) (((mode) & 1) << 7)
+
+#define GET_BOOTMODE(flags) ((flags) & (1 << 7))
+#define CLR_BOOTMODE(flags) ((flags) & (~(1 << 7)))
+#define SET_BOOTMODE(mode) (mode)
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSSerial.h b/include/dolphin/os1/OSSerial.h
new file mode 100644
index 00000000..254cec0a
--- /dev/null
+++ b/include/dolphin/os1/OSSerial.h
@@ -0,0 +1,70 @@
+#ifndef DOLPHIN_OSSERIAL
+#define DOLPHIN_OSSERIAL
+
+#include
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define SI_MAX_CHAN 4
+#define SI_MAX_COMCSR_INLNGTH 128
+#define SI_MAX_COMCSR_OUTLNGTH 128
+#define SI_ERROR_UNDER_RUN 0x0001
+#define SI_ERROR_OVER_RUN 0x0002
+#define SI_ERROR_COLLISION 0x0004
+#define SI_ERROR_NO_RESPONSE 0x0008
+#define SI_ERROR_WRST 0x0010
+#define SI_ERROR_RDST 0x0020
+#define SI_ERROR_UNKNOWN 0x0040
+#define SI_ERROR_BUSY 0x0080
+#define SI_CHAN0 0
+#define SI_CHAN1 1
+#define SI_CHAN2 2
+#define SI_CHAN3 3
+#define SI_CHAN0_BIT 0x80000000
+#define SI_CHAN1_BIT 0x40000000
+#define SI_CHAN2_BIT 0x20000000
+#define SI_CHAN3_BIT 0x10000000
+#define SI_CHAN_BIT(chan) (SI_CHAN0_BIT >> (chan))
+#define SI_TYPE_MASK 0x18000000u
+#define SI_TYPE_N64 0x00000000u
+#define SI_TYPE_DOLPHIN 0x08000000u
+#define SI_TYPE_GC SI_TYPE_DOLPHIN
+#define SI_GC_WIRELESS 0x80000000
+#define SI_GC_NOMOTOR 0x20000000
+#define SI_GC_STANDARD 0x01000000
+#define SI_WIRELESS_RECEIVED 0x40000000
+#define SI_WIRELESS_IR 0x04000000
+#define SI_WIRELESS_STATE 0x02000000
+#define SI_WIRELESS_ORIGIN 0x00200000
+#define SI_WIRELESS_FIX_ID 0x00100000
+#define SI_WIRELESS_TYPE 0x000f0000
+#define SI_WIRELESS_LITE_MASK 0x000c0000
+#define SI_WIRELESS_LITE 0x00040000
+#define SI_WIRELESS_CONT_MASK 0x00080000
+#define SI_WIRELESS_CONT 0x00000000
+#define SI_WIRELESS_ID 0x00c0ff00
+#define SI_WIRELESS_TYPE_ID (SI_WIRELESS_TYPE | SI_WIRELESS_ID)
+#define SI_N64_CONTROLLER (SI_TYPE_N64 | 0x05000000)
+#define SI_N64_MIC (SI_TYPE_N64 | 0x00010000)
+#define SI_N64_KEYBOARD (SI_TYPE_N64 | 0x00020000)
+#define SI_N64_MOUSE (SI_TYPE_N64 | 0x02000000)
+#define SI_GBA (SI_TYPE_N64 | 0x00040000)
+#define SI_GC_CONTROLLER (SI_TYPE_GC | SI_GC_STANDARD)
+#define SI_GC_RECEIVER (SI_TYPE_GC | SI_GC_WIRELESS)
+#define SI_GC_WAVEBIRD \
+ (SI_TYPE_GC | SI_GC_WIRELESS | SI_GC_STANDARD | SI_WIRELESS_STATE | SI_WIRELESS_FIX_ID)
+#define SI_GC_KEYBOARD (SI_TYPE_GC | 0x00200000)
+#define SI_GC_STEERING (SI_TYPE_GC | 0x00000000)
+
+u32 SIProbe(s32 chan);
+char* SIGetTypeString(u32 type);
+void SIRefreshSamplingRate(void);
+void SISetSamplingRate(u32 msec);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSThread.h b/include/dolphin/os1/OSThread.h
new file mode 100644
index 00000000..6a5a7869
--- /dev/null
+++ b/include/dolphin/os1/OSThread.h
@@ -0,0 +1,129 @@
+#ifndef OS_THREAD_H
+#define OS_THREAD_H
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#include "dolphin/os/OSContext.h"
+
+typedef struct OSThread OSThread;
+typedef struct OSThreadQueue OSThreadQueue;
+typedef struct OSThreadLink OSThreadLink;
+typedef s32 OSPriority; // 0 highest, 31 lowest
+
+typedef struct OSMutex OSMutex;
+typedef struct OSMutexQueue OSMutexQueue;
+typedef struct OSMutexLink OSMutexLink;
+typedef struct OSCond OSCond;
+
+typedef void (*OSIdleFunction)(void *param);
+
+struct OSThreadQueue
+{
+ OSThread *head;
+ OSThread *tail;
+};
+
+struct OSThreadLink
+{
+ OSThread *next;
+ OSThread *prev;
+};
+
+struct OSMutexQueue
+{
+ OSMutex *head;
+ OSMutex *tail;
+};
+
+struct OSMutexLink
+{
+ OSMutex *next;
+ OSMutex *prev;
+};
+
+struct OSThread
+{
+ OSContext context; // register context
+
+ u16 state; // OS_THREAD_STATE_*
+ u16 attr; // OS_THREAD_ATTR_*
+ s32 suspend; // suspended if the count is greater than zero
+ OSPriority priority; // effective scheduling priority
+ OSPriority base; // base scheduling priority
+ void *val; // exit value
+
+ OSThreadQueue *queue; // queue thread is on
+ OSThreadLink link; // queue link
+
+ OSThreadQueue queueJoin; // list of threads waiting for termination (join)
+
+ OSMutex *mutex; // mutex trying to lock
+ OSMutexQueue queueMutex; // list of mutexes owned
+
+ OSThreadLink linkActive; // link of all threads for debugging
+
+ u8 *stackBase; // the thread's designated stack (high address)
+ u32 *stackEnd; // last word of stack (low address)
+};
+
+// Thread states
+enum OS_THREAD_STATE
+{
+ OS_THREAD_STATE_READY = 1,
+ OS_THREAD_STATE_RUNNING = 2,
+ OS_THREAD_STATE_WAITING = 4,
+ OS_THREAD_STATE_MORIBUND = 8
+};
+
+// Thread priorities
+#define OS_PRIORITY_MIN 0 // highest
+#define OS_PRIORITY_MAX 31 // lowest
+#define OS_PRIORITY_IDLE OS_PRIORITY_MAX
+
+// Thread attributes
+#define OS_THREAD_ATTR_DETACH 0x0001u // detached
+
+// Stack magic value
+#define OS_THREAD_STACK_MAGIC 0xDEADBABE
+
+ void OSInitThreadQueue(OSThreadQueue *queue);
+ OSThread *OSGetCurrentThread(void);
+ BOOL OSIsThreadSuspended(OSThread *thread);
+ BOOL OSIsThreadTerminated(OSThread *thread);
+ s32 OSDisableScheduler(void);
+ s32 OSEnableScheduler(void);
+ void OSYieldThread(void);
+ BOOL OSCreateThread(OSThread *thread,
+ void *(*func)(void *),
+ void *param,
+ void *stack,
+ u32 stackSize,
+ OSPriority priority,
+ u16 attr);
+ void OSExitThread(void *val);
+ void OSCancelThread(OSThread *thread);
+ BOOL OSJoinThread(OSThread *thread, void **val);
+ void OSDetachThread(OSThread *thread);
+ s32 OSResumeThread(OSThread *thread);
+ s32 OSSuspendThread(OSThread *thread);
+ BOOL OSSetThreadPriority(OSThread *thread, OSPriority priority);
+ OSPriority OSGetThreadPriority(OSThread *thread);
+ void OSSleepThread(OSThreadQueue *queue);
+ void OSWakeupThread(OSThreadQueue *queue);
+
+ OSThread *OSSetIdleFunction(OSIdleFunction idleFunction,
+ void *param,
+ void *stack,
+ u32 stackSize);
+ OSThread *OSGetIdleFunction(void);
+
+ long OSCheckActiveThreads(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif // DOLPHIN_OSTHREAD_H
diff --git a/include/dolphin/os1/OSTime.h b/include/dolphin/os1/OSTime.h
new file mode 100644
index 00000000..ba759c5f
--- /dev/null
+++ b/include/dolphin/os1/OSTime.h
@@ -0,0 +1,51 @@
+#ifndef OS_TIME_H
+#define OS_TIME_H
+#include "types.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#define OSDiffTick(tick1, tick0) ((s32)(tick1) - (s32)(tick0))
+
+typedef s64 OSTime;
+typedef u32 OSTick;
+
+u32 __busclock AT_ADDRESS(0x800000F8);
+
+#define OS_BUS_CLOCK __busclock
+
+#define OS_TIMER_CLOCK (OS_BUS_CLOCK / 4)
+
+#define OSTicksToSeconds(ticks) ((ticks) / OS_TIMER_CLOCK)
+#define OSTicksToMilliseconds(ticks) ((ticks) / (OS_TIMER_CLOCK / 1000))
+#define OSTicksToMicroseconds(ticks) (((ticks)*8) / (OS_TIMER_CLOCK / 125000))
+#define OSTicksToNanoseconds(ticks) (((ticks)*8000) / (OS_TIMER_CLOCK / 125000))
+#define OSSecondsToTicks(sec) ((sec)*OS_TIMER_CLOCK)
+#define OSMillisecondsToTicks(msec) ((msec) * (OS_TIMER_CLOCK / 1000))
+#define OSMicrosecondsToTicks(usec) (((usec) * (OS_TIMER_CLOCK / 125000)) / 8)
+#define OSNanosecondsToTicks(nsec) (((nsec) * (OS_TIMER_CLOCK / 125000)) / 8000)
+
+OSTime OSGetTime(void);
+OSTick OSGetTick(void);
+
+typedef struct OSCalendarTime_s {
+ int sec;
+ int min;
+ int hour;
+ int mday;
+ int mon;
+ int year;
+ int wday;
+ int yday;
+
+ int msec;
+ int usec;
+} OSCalendarTime;
+
+OSTime OSCalendarTimeToTicks(OSCalendarTime* td);
+void OSTicksToCalendarTime(OSTime ticks, OSCalendarTime* td);
+
+#ifdef __cplusplus
+}
+#endif
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os1/OSTimer.h b/include/dolphin/os1/OSTimer.h
new file mode 100644
index 00000000..e1ec2433
--- /dev/null
+++ b/include/dolphin/os1/OSTimer.h
@@ -0,0 +1,28 @@
+/* TODO: not sure if this should live here or in libultra/OSTimer.h */
+
+#ifndef DOLPHIN_OS_TIMER_H
+#define DOLPHIN_OS_TIMER_H
+
+#include "types.h"
+#include "dolphin/os/OSAlarm.h"
+#include "dolphin/os/OSMessage.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct OSTimer_s {
+ OSAlarm alarm;
+ struct OSTimer_s* next;
+ struct OSTimer_s* prev;
+ OSTime interval;
+ OSTime value;
+ OSMessageQueue* mq;
+ OSMessage msg;
+} OSTimer;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/dolphin/os1/OSUtil.h b/include/dolphin/os1/OSUtil.h
new file mode 100644
index 00000000..70f5071a
--- /dev/null
+++ b/include/dolphin/os1/OSUtil.h
@@ -0,0 +1,18 @@
+#ifndef OS_UTIL_H
+#define OS_UTIL_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C"
+{
+#endif
+
+#define OSRoundUp32B(x) (((u32)(x) + 0x1F) & ~(0x1F))
+#define OSRoundDown32B(x) (((u32)(x)) & ~(0x1F))
+
+#ifdef __cplusplus
+};
+#endif
+
+#endif
\ No newline at end of file
diff --git a/include/dolphin/os1/__ppc_eabi_init.h b/include/dolphin/os1/__ppc_eabi_init.h
new file mode 100644
index 00000000..af1e2ee6
--- /dev/null
+++ b/include/dolphin/os1/__ppc_eabi_init.h
@@ -0,0 +1,94 @@
+#ifndef PPC_EABI_INIT_H
+#define PPC_EABI_INIT_H
+
+#include "types.h"
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+typedef void (*voidfunctionptr)(void); // pointer to function returning void
+__declspec(section ".ctors") extern voidfunctionptr _ctors[];
+__declspec(section ".dtors") extern voidfunctionptr _dtors[];
+
+/**
+ * Linker Generated Symbols
+ */
+
+// Declare linker symbols for a section in the ROM
+#define DECL_ROM_SECTION(x) \
+ extern u8 _f##x[]; \
+ extern u8 _f##x##_rom[]; \
+ extern u8 _e##x[];
+
+// Declare linker symbols for a BSS section
+#define DECL_BSS_SECTION(x) \
+ extern u8 _f##x[]; \
+ extern u8 _e##x[];
+
+// Debugger stack
+extern u8 _db_stack_addr[];
+extern u8 _db_stack_end[];
+
+// Program arena
+extern u8 __ArenaLo[];
+extern u8 __ArenaHi[];
+
+// Program stack
+extern u8 _stack_addr[];
+extern u8 _stack_end[];
+
+// Small data bases
+extern u8 _SDA_BASE_[];
+extern u8 _SDA2_BASE_[];
+
+// ROM sections
+DECL_ROM_SECTION(_init);
+DECL_ROM_SECTION(extab);
+DECL_ROM_SECTION(extabindex);
+DECL_ROM_SECTION(_text);
+DECL_ROM_SECTION(_ctors);
+DECL_ROM_SECTION(_dtors);
+DECL_ROM_SECTION(_rodata);
+DECL_ROM_SECTION(_data);
+DECL_ROM_SECTION(_sdata);
+DECL_ROM_SECTION(_sdata2);
+DECL_ROM_SECTION(_stack);
+
+// BSS sections
+DECL_BSS_SECTION(_bss);
+DECL_BSS_SECTION(_sbss);
+DECL_BSS_SECTION(_sbss2);
+
+void __init_hardware(void);
+extern void __flush_cache(void *address, unsigned int size);
+void __init_user(void);
+void __fini_cpp(void);
+void _ExitProcess(void);
+
+typedef struct RomSection {
+ void* romOfs; // at 0x4
+ void* virtualOfs; // at 0x0
+ size_t size; // at 0x8
+} RomSection;
+
+typedef struct BssSection {
+ void* virtualOfs; // at 0x0
+ size_t size; // at 0x8
+} BssSection;
+
+typedef struct ExtabIndexInfo {
+ void* etiStart; // at 0x0
+ void* etiEnd; // at 0x4
+ void* codeStart; // at 0x8
+ u32 codeSize; // at 0x10
+} ExtabIndexInfo;
+
+__declspec(section ".init") extern RomSection _rom_copy_info[];
+__declspec(section ".init") extern BssSection _bss_init_info[];
+__declspec(section ".init") extern ExtabIndexInfo _eti_init_info[];
+
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/jaudio_NES/audiothread.h b/include/jaudio_NES/audiothread.h
index 664c537d..c1c22ae0 100644
--- a/include/jaudio_NES/audiothread.h
+++ b/include/jaudio_NES/audiothread.h
@@ -10,9 +10,6 @@
#define AUDIO_THREAD_FLAG_NEOS (1 << 2)
extern volatile int intcount;
-OSThread jac_audioThread[3];
-OSThread jac_neosThread;
-OSThread jac_dvdThread;
extern void NeosSync(void);
diff --git a/include/libc/math.h b/include/libc/math.h
index 6cda6927..c5cf9acf 100644
--- a/include/libc/math.h
+++ b/include/libc/math.h
@@ -1,21 +1,21 @@
-#ifndef LIB_C_MATH_H
-#define LIB_C_MATH_H
-
-#include "types.h"
-
-#define SQRT_OF_2_F 1.41421356237309504880f
-#define SQRT_OF_3_F 1.73205080756887729353f
-
-#define SQRT_3_OVER_3_F (SQRT_OF_3_F / 3.0f)
-
-#define M_PI 3.14159265358979323846f
-
-s16 sins(u16);
-s16 coss(u16);
-
-f32 fatan2(f32, f32);
-
-f64 fsqrt(f32);
-
-f32 facos(f32);
-#endif
+#ifndef LIB_C_MATH_H
+#define LIB_C_MATH_H
+
+#include "types.h"
+
+#define SQRT_OF_2_F 1.41421356237309504880f
+#define SQRT_OF_3_F 1.73205080756887729353f
+
+#define SQRT_3_OVER_3_F (SQRT_OF_3_F / 3.0f)
+
+#define M_PI 3.14159265358979323846f
+
+s16 sins(u16);
+s16 coss(u16);
+
+f32 fatan2(f32, f32);
+
+f64 fsqrt(f32);
+
+f32 facos(f32);
+#endif
diff --git a/include/libc64/sleep.h b/include/libc64/sleep.h
index 09d85103..64593964 100644
--- a/include/libc64/sleep.h
+++ b/include/libc64/sleep.h
@@ -4,16 +4,15 @@
#include "types.h"
#include "dolphin/os/OSTime.h"
-
#ifdef __cplusplus
extern "C" {
#endif
void csleep(OSTime c);
-void msleep(int);
+void msleep(u32);
#ifdef __cplusplus
}
#endif
-#endif
\ No newline at end of file
+#endif
diff --git a/include/libforest/batconfig.h b/include/libforest/batconfig.h
index d1bed333..7dd429d2 100644
--- a/include/libforest/batconfig.h
+++ b/include/libforest/batconfig.h
@@ -1,22 +1,22 @@
-#ifndef BATCONFIG_H
-#define BATCONFIG_H
-
-#include "types.h"
-#include "dolphin/os/OSMemory.h"
-#include "dolphin/os/OSInterrupt.h"
-
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-void Config24MB();
-void Config48MB();
-void ReconfigBATs();
-
-
-#ifdef __cplusplus
-}
-#endif
-
+#ifndef BATCONFIG_H
+#define BATCONFIG_H
+
+#include "types.h"
+#include "dolphin/os/OSMemory.h"
+#include "dolphin/os/OSInterrupt.h"
+
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+void Config24MB();
+void Config48MB();
+void ReconfigBATs();
+
+
+#ifdef __cplusplus
+}
+#endif
+
#endif
\ No newline at end of file
diff --git a/include/libforest/emu64/emu64.hpp b/include/libforest/emu64/emu64.hpp
index 106f7542..1cb8fcdf 100644
--- a/include/libforest/emu64/emu64.hpp
+++ b/include/libforest/emu64/emu64.hpp
@@ -23,7 +23,7 @@
#define EMU64_TEX_BLOCK_SIZE_Y 4
#define NUM_COMMANDS 64
-#define NUM_SEGMENTS 16
+#define EMU64_NUM_SEGMENTS 16
#define DL_MAX_STACK_LEVEL 18
#define DL_HISTORY_COUNT 16
#define NUM_TILES 8
@@ -494,70 +494,6 @@ class emu64_print {
#define EMU64_ASSERT(cond) EMU64_PANICLINE(cond, __LINE__)
-class emu64_print {
- public:
- void Printf(const char* fmt, ...) {
- va_list list;
-
- if ((this->print_flags & EMU64_PRINTF_FLAG)) {
- va_start(list, fmt);
- this->Vprintf(fmt, list);
- va_end(list);
- }
- }
-
- void Printf0(const char* fmt, ...) {
- va_list list;
-
- va_start(list, fmt);
- this->Vprintf(fmt, list);
- va_end(list);
- }
-
- void Printf1(const char* fmt, ...) {
- va_list list;
-
- if ((this->print_flags & EMU64_PRINTF1_FLAG)) {
- va_start(list, fmt);
- this->Vprintf(fmt, list);
- va_end(list);
- }
- }
-
- void Printf2(const char* fmt, ...) {
- va_list list;
-
- if ((this->print_flags & EMU64_PRINTF2_FLAG)) {
- va_start(list, fmt);
- this->Vprintf(fmt, list);
- va_end(list);
- }
- }
-
- void Printf3(const char* fmt, ...) {
- va_list list;
-
- if ((this->print_flags & EMU64_PRINTF3_FLAG)) {
- va_start(list, fmt);
- this->Vprintf(fmt, list);
- va_end(list);
- }
- }
-
- protected:
- u8 print_flags;
-
- private:
- void Vprintf(const char* fmt, std::__tag_va_List* va_list) {
- vprintf(fmt, va_list);
- }
-};
-
-#define EMU64_ASSERTLINE(cond, line) \
- if (!(cond)) { \
- this->panic(#cond, __FILE__, line); \
- }
-
#define EMU64_PRINTF(msg, ...) this->Printf0(msg, __VA_ARGS__);
#ifdef EMU64_DEBUG
@@ -604,8 +540,6 @@ class emu64_print {
} while (0)
#endif
-#define EMU64_ASSERT(cond) EMU64_ASSERTLINE(cond, __LINE__)
-
#define EMU64_PRINT_MEMBER(member) \
do { \
this->Printf0(#member " = %u\n", this->##member); \
@@ -786,7 +720,7 @@ class emu64 : public emu64_print {
/* 0x0060 */ ucode_info* ucode_info_p;
/* 0x0064 */ int ucode_type; // maybe?
/* 0x0068 */ int _0068; /* ??? */
- /* 0x006C */ u32 segments[NUM_SEGMENTS];
+ /* 0x006C */ u32 segments[EMU64_NUM_SEGMENTS];
/* 0x00AC */ u32 DL_stack[DL_MAX_STACK_LEVEL];
/* 0x00F4 */ s8 DL_stack_level;
/* 0x00F8 */ u32 othermode_high;
diff --git a/include/libforest/fault.h b/include/libforest/fault.h
index f5d29ae0..e3c64d02 100644
--- a/include/libforest/fault.h
+++ b/include/libforest/fault.h
@@ -1,59 +1,59 @@
-#ifndef FAULT_H
-#define FAULT_H
-#include "types.h"
-#include "dolphin/os/OSInterrupt.h"
-#include "libultra/libultra.h"
-
-
-#ifdef __cplusplus
-extern "C"{
-#endif
-
-#define FAULT_MIN_PRIORITY 0
-
-#define FAULT_STAGE_POST 0
-#define FAULT_STAGE_PRE 1
-
-#define FAULT_FLAG_POSTEXCEPTION (1 << FAULT_STAGE_POST)
-#define FAULT_FLAG_PREEXCEPTION (1 << FAULT_STAGE_PRE)
-
-#define FAULT_FLAG_SKIP_DRAW_SEPARATOR (1 << 2)
-#define FAULT_FLAG_SKIP_DRAW_CALLBACK_INFO (1 << 3)
-
-#define FAULT_PAD_READ_SUCCESS 0
-#define FAULT_PAD_READ_FAILED -1
-
-typedef void (*FaultCallback)(const char* msg, u32 param);
-typedef struct fault_client_s fault_client;
-
-struct fault_client_s {
- fault_client* next;
- FaultCallback callback;
- const char* msg;
- u32 param;
- u8 priority;
- u8 flags;
-};
-
-typedef struct {
- u8 _0, _1, _2, _3;
- u8 num_clients;
- fault_client* first_client;
-} fault;
-
-
-extern void fault_AddClientEx(fault_client* client, FaultCallback callback, const char* msg, u32 param, u8 priority, u8 flags);
-extern void fault_AddClient(fault_client* client, FaultCallback callback, const char* msg, u32 param);
-extern void fault_Printf(const char* msg, ...);
-static void fault_DrawUpdate();
-extern void fault_WaitTime(u32 waitTime);
-extern int fault_ReadPad(u32* outTriggers, u32* outButtons);
-static void fault_CallBackFunc(int stage);
-
-extern void fault_Init();
-static void my_PreExceptionCallback();
-static void my_PostExceptionCallback();
-#ifdef __cplusplus
-}
-#endif
-#endif
+#ifndef FAULT_H
+#define FAULT_H
+#include "types.h"
+#include "dolphin/os/OSInterrupt.h"
+#include "libultra/libultra.h"
+
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+#define FAULT_MIN_PRIORITY 0
+
+#define FAULT_STAGE_POST 0
+#define FAULT_STAGE_PRE 1
+
+#define FAULT_FLAG_POSTEXCEPTION (1 << FAULT_STAGE_POST)
+#define FAULT_FLAG_PREEXCEPTION (1 << FAULT_STAGE_PRE)
+
+#define FAULT_FLAG_SKIP_DRAW_SEPARATOR (1 << 2)
+#define FAULT_FLAG_SKIP_DRAW_CALLBACK_INFO (1 << 3)
+
+#define FAULT_PAD_READ_SUCCESS 0
+#define FAULT_PAD_READ_FAILED -1
+
+typedef void (*FaultCallback)(const char* msg, u32 param);
+typedef struct fault_client_s fault_client;
+
+struct fault_client_s {
+ fault_client* next;
+ FaultCallback callback;
+ const char* msg;
+ u32 param;
+ u8 priority;
+ u8 flags;
+};
+
+typedef struct {
+ u8 _0, _1, _2, _3;
+ u8 num_clients;
+ fault_client* first_client;
+} fault;
+
+
+extern void fault_AddClientEx(fault_client* client, FaultCallback callback, const char* msg, u32 param, u8 priority, u8 flags);
+extern void fault_AddClient(fault_client* client, FaultCallback callback, const char* msg, u32 param);
+extern void fault_Printf(const char* msg, ...);
+static void fault_DrawUpdate();
+extern void fault_WaitTime(u32 waitTime);
+extern int fault_ReadPad(u32* outTriggers, u32* outButtons);
+static void fault_CallBackFunc(int stage);
+
+extern void fault_Init();
+static void my_PreExceptionCallback();
+static void my_PostExceptionCallback();
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/libu64/gfxprint.h b/include/libu64/gfxprint.h
index 27c588b3..4af36e11 100644
--- a/include/libu64/gfxprint.h
+++ b/include/libu64/gfxprint.h
@@ -1,129 +1,129 @@
-#ifndef GFXPRINT_H
-#define GFXPRINT_H
-
-#include "types.h"
-#include "libu64/u64types.h"
-#include "PR/mbi.h"
-#include "va_args.h"
-
-#ifdef __cplusplus
-extern "C"{
-#endif
-
-#define GFXPRINT_NUM_SUBPIXELS 4
-#define GFXPRINT_PIXELS_PER_BLOCK 8
-#define GFXPRINT_PAD GFXPRINT_PIXELS_PER_BLOCK * GFXPRINT_NUM_SUBPIXELS
-
-#define GFXPRINT_FLAG_KANA_MODE (1 << 0) /* Japanese characters displayed as hiragana or katakana */
-#define GFXPRINT_FLAG_GRADIENT (1 << 1) /* Gradient state */
-#define GFXPRINT_FLAG_SHADOW (1 << 2) /* Shadow state */
-#define GFXPRINT_FLAG_CHANGED (1 << 3) /* Text changed */
-/* Unused...? */
-#define GFXPRINT_FLAG_HIGHRES (1 << 6) /* Highres text */
-#define GFXPRINT_FLAG_OPENED (1 << 7) /* Open state */
-
-#define GFXPRINT_KANA_MODE_KATAKANA 0
-#define GFXPRINT_KANA_MODE_HIRAGANA 1
-
-#define GFXPRINT_CLEAR_GRADIENT_CHAR "\x8A"
-#define GFXPRINT_ENABLE_GRADIENT_CHAR "\x8B"
-
-#define GFXPRINT_KATAKANA_MODE_CHAR "\x8C"
-#define GFXPRINT_HIRAGANA_MODE_CHAR "\x8D"
-
-#define GFXPRINT_UNUSED_CHAR "\x8E"
-
-/* NOTE: this should be a void return type but we're going to use a void* for readibility */
-typedef void* (*PrintCallback)(void*, const char*, int);
-typedef struct gfxprint_obj {
- PrintCallback prout_func; /* Current print out func */
- Gfx* glistp; /* Current display list to write text to */
- u16 position_x; /* Display coords (sub-pixel units) */
- u16 position_y; /* Display coords (sub-pixel units) */
- u16 offset_x; /* Display offset */
- u8 offset_y; /* Display offset */
- u8 flags; /* 1: Kana mode -> 0: Katakana/1: Hiragana
- 2: Gradient displayed
- 4: Shadow displayed
- 8: Attribute changed
- 64: Low-res -> high-res conversion
- 128: Opened state */
- rgba8888 color; /* Current font color */
- u8 dummy[28]; /* For size compatibility */
-} gfxprint_t;
-
-/* Default gfxprint flag values set in game_ct func, default value is 0x40 (GFXPRINT_FLAG_HIGHRES on) */
-extern u8 __gfxprint_default_flags;
-
-extern u16 gfxprint_moji_tlut[];
-extern u8 gfxprint_font[];
-
-/* Macros for quickly checking state of gfxprint struct */
-#define gfxprint_isFlagOn(this, flag) ((this->flags & flag) != 0)
-#define gfxprint_setFlag(this, flag) (this->flags |= flag)
-#define gfxprint_clrFlag(this, flag) (this->flags &= ~flag)
-
-#define gfxprint_isOpened(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_OPENED))
-#define gfxprint_setOpened(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_OPENED))
-#define gfxprint_clrOpened(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_OPENED))
-
-#define gfxprint_isHighres(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_HIGHRES))
-#define gfxprint_setHighres(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_HIGHRES))
-#define gfxprint_clrHighres(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_HIGHRES))
-
-#define gfxprint_isHiragana(this) ((this->flags & GFXPRINT_FLAG_KANA_MODE) != GFXPRINT_KANA_MODE_KATAKANA)
-#define gfxprint_isKatakana(this) ((this->flags & GFXPRINT_FLAG_KANA_MODE) == GFXPRINT_KANA_MODE_KATAKANA)
-#define gfxprint_setHiragana(this) (this->flags |= GFXPRINT_FLAG_KANA_MODE)
-#define gfxprint_setKatakana(this) (this->flags &= ~GFXPRINT_FLAG_KANA_MODE)
-
-#define gfxprint_isGradient(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_GRADIENT))
-#define gfxprint_setGradient(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_GRADIENT))
-#define gfxprint_clrGradient(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_GRADIENT))
-
-#define gfxprint_isShadow(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_SHADOW))
-#define gfxprint_setShadow(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_SHADOW))
-#define gfxprint_clrShadow(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_SHADOW))
-
-#define gfxprint_isChanged(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_CHANGED))
-#define gfxprint_setChanged(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_CHANGED))
-#define gfxprint_clrChanged(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_CHANGED))
-
-static void gfxprint_setup(gfxprint_t* this);
-static void gfxprint_putc1(gfxprint_t* this, char c);
-static void* gfxprint_prout(void* this, const char* buffer, int n);
-
-extern void gfxprint_color(gfxprint_t* this, u32 r, u32 g, u32 b, u32 a);
-
-extern void gfxprint_locate(gfxprint_t* this, int x, int y);
-extern void gfxprint_locate8x8(gfxprint_t* this, int x, int y);
-extern void gfxprint_setoffset(gfxprint_t* this, int x, int y);
-
-extern void gfxprint_putc(gfxprint_t* this, char c);
-extern void gfxprint_write(gfxprint_t* this, const void* buffer, size_t size, size_t n);
-extern void gfxprint_puts(gfxprint_t* this, char* string);
-
-extern void gfxprint_init(gfxprint_t* this);
-extern void gfxprint_cleanup(gfxprint_t* this);
-
-extern void gfxprint_open(gfxprint_t* this, Gfx* glistp);
-extern Gfx* gfxprint_close(gfxprint_t* this);
-
-extern int gfxprint_vprintf(gfxprint_t* this, const char* fmt, va_list ap);
-extern int gfxprint_printf(gfxprint_t* this, const char* fmt, ...);
-
-/* Custom macro to match gDPLoadTLUT_pal16 but with N palette entries */
-#define gDPLoadTLUT_palX(pkt, pal, dram, count) \
-do { \
- gDPSetTextureImage(pkt, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, dram); \
- gDPTileSync(pkt); \
- gDPSetTile(pkt, 0, 0, 0, (256+(((pal)&0xf)*16)), \
- G_TX_LOADTILE, 0 , 0, 0, 0, 0, 0, 0); \
- gDPLoadSync(pkt); \
- gDPLoadTLUTCmd(pkt, G_TX_LOADTILE, (count)-1); \
- gDPPipeSync(pkt); \
-} while (0)
-
-#ifdef __cplusplus
-}
-#endif
-#endif
+#ifndef GFXPRINT_H
+#define GFXPRINT_H
+
+#include "types.h"
+#include "libu64/u64types.h"
+#include "PR/mbi.h"
+#include "va_args.h"
+
+#ifdef __cplusplus
+extern "C"{
+#endif
+
+#define GFXPRINT_NUM_SUBPIXELS 4
+#define GFXPRINT_PIXELS_PER_BLOCK 8
+#define GFXPRINT_PAD GFXPRINT_PIXELS_PER_BLOCK * GFXPRINT_NUM_SUBPIXELS
+
+#define GFXPRINT_FLAG_KANA_MODE (1 << 0) /* Japanese characters displayed as hiragana or katakana */
+#define GFXPRINT_FLAG_GRADIENT (1 << 1) /* Gradient state */
+#define GFXPRINT_FLAG_SHADOW (1 << 2) /* Shadow state */
+#define GFXPRINT_FLAG_CHANGED (1 << 3) /* Text changed */
+/* Unused...? */
+#define GFXPRINT_FLAG_HIGHRES (1 << 6) /* Highres text */
+#define GFXPRINT_FLAG_OPENED (1 << 7) /* Open state */
+
+#define GFXPRINT_KANA_MODE_KATAKANA 0
+#define GFXPRINT_KANA_MODE_HIRAGANA 1
+
+#define GFXPRINT_CLEAR_GRADIENT_CHAR "\x8A"
+#define GFXPRINT_ENABLE_GRADIENT_CHAR "\x8B"
+
+#define GFXPRINT_KATAKANA_MODE_CHAR "\x8C"
+#define GFXPRINT_HIRAGANA_MODE_CHAR "\x8D"
+
+#define GFXPRINT_UNUSED_CHAR "\x8E"
+
+/* NOTE: this should be a void return type but we're going to use a void* for readibility */
+typedef void* (*PrintCallback)(void*, const char*, int);
+typedef struct gfxprint_obj {
+ PrintCallback prout_func; /* Current print out func */
+ Gfx* glistp; /* Current display list to write text to */
+ u16 position_x; /* Display coords (sub-pixel units) */
+ u16 position_y; /* Display coords (sub-pixel units) */
+ u16 offset_x; /* Display offset */
+ u8 offset_y; /* Display offset */
+ u8 flags; /* 1: Kana mode -> 0: Katakana/1: Hiragana
+ 2: Gradient displayed
+ 4: Shadow displayed
+ 8: Attribute changed
+ 64: Low-res -> high-res conversion
+ 128: Opened state */
+ rgba8888 color; /* Current font color */
+ u8 dummy[28]; /* For size compatibility */
+} gfxprint_t;
+
+/* Default gfxprint flag values set in game_ct func, default value is 0x40 (GFXPRINT_FLAG_HIGHRES on) */
+extern u8 __gfxprint_default_flags;
+
+extern u16 gfxprint_moji_tlut[];
+extern u8 gfxprint_font[];
+
+/* Macros for quickly checking state of gfxprint struct */
+#define gfxprint_isFlagOn(this, flag) ((this->flags & flag) != 0)
+#define gfxprint_setFlag(this, flag) (this->flags |= flag)
+#define gfxprint_clrFlag(this, flag) (this->flags &= ~flag)
+
+#define gfxprint_isOpened(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_OPENED))
+#define gfxprint_setOpened(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_OPENED))
+#define gfxprint_clrOpened(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_OPENED))
+
+#define gfxprint_isHighres(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_HIGHRES))
+#define gfxprint_setHighres(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_HIGHRES))
+#define gfxprint_clrHighres(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_HIGHRES))
+
+#define gfxprint_isHiragana(this) ((this->flags & GFXPRINT_FLAG_KANA_MODE) != GFXPRINT_KANA_MODE_KATAKANA)
+#define gfxprint_isKatakana(this) ((this->flags & GFXPRINT_FLAG_KANA_MODE) == GFXPRINT_KANA_MODE_KATAKANA)
+#define gfxprint_setHiragana(this) (this->flags |= GFXPRINT_FLAG_KANA_MODE)
+#define gfxprint_setKatakana(this) (this->flags &= ~GFXPRINT_FLAG_KANA_MODE)
+
+#define gfxprint_isGradient(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_GRADIENT))
+#define gfxprint_setGradient(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_GRADIENT))
+#define gfxprint_clrGradient(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_GRADIENT))
+
+#define gfxprint_isShadow(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_SHADOW))
+#define gfxprint_setShadow(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_SHADOW))
+#define gfxprint_clrShadow(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_SHADOW))
+
+#define gfxprint_isChanged(this) (gfxprint_isFlagOn(this, GFXPRINT_FLAG_CHANGED))
+#define gfxprint_setChanged(this) (gfxprint_setFlag(this, GFXPRINT_FLAG_CHANGED))
+#define gfxprint_clrChanged(this) (gfxprint_clrFlag(this, GFXPRINT_FLAG_CHANGED))
+
+static void gfxprint_setup(gfxprint_t* this);
+static void gfxprint_putc1(gfxprint_t* this, char c);
+static void* gfxprint_prout(void* this, const char* buffer, int n);
+
+extern void gfxprint_color(gfxprint_t* this, u32 r, u32 g, u32 b, u32 a);
+
+extern void gfxprint_locate(gfxprint_t* this, int x, int y);
+extern void gfxprint_locate8x8(gfxprint_t* this, int x, int y);
+extern void gfxprint_setoffset(gfxprint_t* this, int x, int y);
+
+extern void gfxprint_putc(gfxprint_t* this, char c);
+extern void gfxprint_write(gfxprint_t* this, const void* buffer, size_t size, size_t n);
+extern void gfxprint_puts(gfxprint_t* this, char* string);
+
+extern void gfxprint_init(gfxprint_t* this);
+extern void gfxprint_cleanup(gfxprint_t* this);
+
+extern void gfxprint_open(gfxprint_t* this, Gfx* glistp);
+extern Gfx* gfxprint_close(gfxprint_t* this);
+
+extern int gfxprint_vprintf(gfxprint_t* this, const char* fmt, va_list ap);
+extern int gfxprint_printf(gfxprint_t* this, const char* fmt, ...);
+
+/* Custom macro to match gDPLoadTLUT_pal16 but with N palette entries */
+#define gDPLoadTLUT_palX(pkt, pal, dram, count) \
+do { \
+ gDPSetTextureImage(pkt, G_IM_FMT_RGBA, G_IM_SIZ_16b, 1, dram); \
+ gDPTileSync(pkt); \
+ gDPSetTile(pkt, 0, 0, 0, (256+(((pal)&0xf)*16)), \
+ G_TX_LOADTILE, 0 , 0, 0, 0, 0, 0, 0); \
+ gDPLoadSync(pkt); \
+ gDPLoadTLUTCmd(pkt, G_TX_LOADTILE, (count)-1); \
+ gDPPipeSync(pkt); \
+} while (0)
+
+#ifdef __cplusplus
+}
+#endif
+#endif
diff --git a/include/libultra/libultra.h b/include/libultra/libultra.h
index c5e4bc40..065f536a 100644
--- a/include/libultra/libultra.h
+++ b/include/libultra/libultra.h
@@ -1,41 +1,41 @@
-#ifndef LIBULTRA_H
-#define LIBULTRA_H
-
-#include "types.h"
-#include "dolphin/os/OSTime.h"
-#include "dolphin/os/OSCache.h"
-#include "libultra/gu.h"
-#include "libultra/osMesg.h"
-#include "libultra/shutdown.h"
-#include "libultra/os_timer.h"
-#include "libultra/os_thread.h"
-#include "libultra/os_pi.h"
-#include "libultra/initialize.h"
-#include "libc/math.h" /* TODO: sins and coss belong in libultra */
-
-#define N64_SCREEN_HEIGHT 240
-#define N64_SCREEN_WIDTH 320
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef u64 Z_OSTime;
-
-int bcmp(void* v1, void* v2, u32 size);
-void bcopy(void* src, void* dst, size_t n);
-void bzero(void* ptr, size_t size);
-void osSyncPrintf(const char* fmt, ...);
-void osWritebackDCache(void* vaddr, u32 nbytes);
-u32 osGetCount(void);
-OSTime osGetTime(void);
-
-extern s32 osAppNMIBuffer[];
-extern int osShutdown;
-extern u8 __osResetSwitchPressed;
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
+#ifndef LIBULTRA_H
+#define LIBULTRA_H
+
+#include "types.h"
+#include "dolphin/os/OSTime.h"
+#include "dolphin/os/OSCache.h"
+#include "libultra/gu.h"
+#include "libultra/osMesg.h"
+#include "libultra/shutdown.h"
+#include "libultra/os_timer.h"
+#include "libultra/os_thread.h"
+#include "libultra/os_pi.h"
+#include "libultra/initialize.h"
+#include "libc/math.h" /* TODO: sins and coss belong in libultra */
+
+#define N64_SCREEN_HEIGHT 240
+#define N64_SCREEN_WIDTH 320
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef u64 Z_OSTime;
+
+int bcmp(void* v1, void* v2, u32 size);
+void bcopy(void* src, void* dst, size_t n);
+void bzero(void* ptr, size_t size);
+void osSyncPrintf(const char* fmt, ...);
+void osWritebackDCache(void* vaddr, u32 nbytes);
+u32 osGetCount(void);
+OSTime osGetTime(void);
+
+extern s32 osAppNMIBuffer[];
+extern int osShutdown;
+extern u8 __osResetSwitchPressed;
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/include/m_font.h b/include/m_font.h
index a2bd2982..e949369f 100644
--- a/include/m_font.h
+++ b/include/m_font.h
@@ -28,22 +28,22 @@ extern "C" {
#define CHAR_ACUTE_I 14
#define CHAR_CIRCUMFLEX_I 15
#define CHAR_DIARESIS_I 16
-#define CHAR_ETH 17 /* Đ */
+#define CHAR_ETH 17
#define CHAR_TILDE_N 18
#define CHAR_GRAVE_O 19
#define CHAR_ACUTE_O 20
#define CHAR_CIRCUMFLEX_O 21
#define CHAR_TILDE_O 22
#define CHAR_DIARESIS_O 23
-#define CHAR_OE 24 /* Ø */
+#define CHAR_OE 24
#define CHAR_GRAVE_U 25
#define CHAR_ACUTE_U 26
#define CHAR_CIRCUMFLEX_U 27
#define CHAR_DIARESIS_U 28
-#define CHAR_LOWER_BETA 29 /* β */
-#define CHAR_THORN 30 /* Þ */
+#define CHAR_LOWER_BETA 29
+#define CHAR_THORN 30
#define CHAR_GRAVE_a 31
-#define CHAR_SPACE 32 /* ' ' */
+#define CHAR_SPACE 32
#define CHAR_EXCLAMATION 33
#define CHAR_QUOTATION 34
#define CHAR_ACUTE_a 35
@@ -144,8 +144,8 @@ extern "C" {
#define CHAR_ACUTE_i 130
#define CHAR_CIRCUMFLEX_i 131
#define CHAR_DIARESIS_i 132
-#define CHAR_INTERPUNCT 133 /* · */
-#define CHAR_LOWER_ETH 134 /* đ */
+#define CHAR_INTERPUNCT 133
+#define CHAR_LOWER_ETH 134
#define CHAR_TILDE_n 135
#define CHAR_GRAVE_o 136
#define CHAR_ACUTE_o 137
@@ -162,10 +162,10 @@ extern "C" {
#define CHAR_DIARESIS_y 148
#define CHAR_LOWER_THORN 149
#define CHAR_ACUTE_Y 150
-#define CHAR_BROKEN_BAR 151 /* ¦ */
-#define CHAR_SILCROW 152 /* § */
+#define CHAR_BROKEN_BAR 151
+#define CHAR_SILCROW 152
#define CHAR_FEMININE_ORDINAL 153
-#define CHAR_MASCULINE_ORDINAL 154 /* ° */
+#define CHAR_MASCULINE_ORDINAL 154
#define CHAR_DOUBLE_VERTICAL_BAR 155
#define CHAR_LATIN_MU 156
#define CHAR_SUPERSCRIPT_THREE 157
diff --git a/include/m_music_ovl.h b/include/m_music_ovl.h
index a589892c..8bf54a0f 100644
--- a/include/m_music_ovl.h
+++ b/include/m_music_ovl.h
@@ -4,6 +4,7 @@
#include "types.h"
#include "m_music_ovl_h.h"
#include "m_submenu_ovl.h"
+#include "m_item_name.h"
#ifdef __cplusplus
extern "C" {
diff --git a/include/m_room_type.h b/include/m_room_type.h
index 90f89746..c8219c1c 100644
--- a/include/m_room_type.h
+++ b/include/m_room_type.h
@@ -1,184 +1,184 @@
-#ifndef ROOM_TYPE_H
-#define ROOM_TYPE_H
-
-#include "types.h"
-#include "libu64/gfxprint.h"
-#include "m_actor_type.h"
-#include "m_play_h.h"
-
-#define mRmTp_FTR_UNIT_MAX 4
-
-enum {
- mRmTp_FTRSIZE_1x1, /* x */
- mRmTp_FTRSIZE_1x2, /* yy OR y */
- /* y */
- mRmTp_FTRSIZE_2x2, /* zz */
- /* zz */
- mRmTp_FTRSIZE_NUM
-};
-
-enum birth_type {
- mRmTp_BIRTH_TYPE_GRP_A = 0,
- mRmTp_BIRTH_TYPE_GRP_B = 1,
- mRmTp_BIRTH_TYPE_GRP_C = 2,
- mRmTp_BIRTH_TYPE_EVENT = 3,
- mRmTp_BIRTH_TYPE_BIRTHDAY = 4,
- mRmTp_BIRTH_TYPE_HALLOWEEN = 5,
- mRmTp_BIRTH_TYPE_HANIWA = 6,
- mRmTp_BIRTH_TYPE_LOTTERY = 7,
- mRmTp_BIRTH_TYPE_FTR_CLOTH = 8,
- mRmTp_BIRTH_TYPE_FTR_UMBRELLA = 9,
- mRmTp_BIRTH_TYPE_FTR_INSECT = 10,
- mRmTp_BIRTH_TYPE_FTR_FISH = 11,
- mRmTp_BIRTH_TYPE_SINGLE_FOSSIL = 12,
- mRmTp_BIRTH_TYPE_MULTI_FOSSIL = 13,
- mRmTp_BIRTH_TYPE_XMAS = 14,
- mRmTp_BIRTH_TYPE_SANTA = 15,
- mRmTp_BIRTH_TYPE_UNOBTAINABLE = 16,
- mRmTp_BIRTH_TYPE_SNOWMAN = 17,
- mRmTp_BIRTH_TYPE_HALLOWEEN_TRICK = 18,
- mRmTp_BIRTH_TYPE_POST_OFFICE = 19,
- mRmTp_BIRTH_TYPE_MARK_ROOM = 20,
- mRmTp_BIRTH_TYPE_SONCHO = 21,
- mRmTp_BIRTH_TYPE_JONASON = 22,
- mRmTp_BIRTH_TYPE_UNUSED_23 = 23,
- mRmTp_BIRTH_TYPE_FAMICOM_EREADER = 24,
- mRmTp_BIRTH_TYPE_ISLAND = 25,
- mRmTp_BIRTH_TYPE_FAMICOM_ISLAND = 26,
- mRmTp_BIRTH_TYPE_MY_ORIGINAL = 27,
- mRmTp_BIRTH_TYPE_FAMICOM_CODE = 28,
- mRmTp_BIRTH_TYPE_MUSEUM = 29,
- mRmTp_BIRTH_TYPE_SONCHO_LIGHTHOUSE_QUEST = 30,
- mRmTp_BIRTH_TYPE_FTR_DIARY = 31,
- mRmTp_BIRTH_TYPE_GROUNDHOG = 32,
- mRmTp_BIRTH_TYPE_KAMAKURA = 33,
- mRmTp_BIRTH_TYPE_NINTENDO_CODE = 34,
- mRmTp_BIRTH_TYPE_HARVEST_FESTIVAL = 35,
- mRmTp_BIRTH_TYPE_UNUSED_36 = 36,
- mRmTp_BIRTH_TYPE_SUMMER_CAMPER = 37,
-
- mRmTp_BIRTH_TYPE_NUM
-};
-
-enum {
- mRmTp_DIRECT_SOUTH,
- mRmTp_DIRECT_EAST,
- mRmTp_DIRECT_NORTH,
- mRmTp_DIRECT_WEST,
-
- mRmTp_DIRECT_NUM
-};
-
-enum {
- mRmTp_FTR_SE_NONE,
- mRmTp_FTR_SE_SOFT_CHAIR,
- mRmTp_FTR_SE_HARD_CHAIR,
- mRmTp_FTR_SE_BUBU_CHAIR,
- mRmTp_FTR_SE_TOILET_CHAIR,
-
- mRmTp_FTR_SE_NUM
-};
-
-enum {
- mRmTp_CHAIR_ACTION_SIT,
- mRmTp_CHAIR_ACTION_STAND,
-
- mRmTp_CHAIR_ACTION_NUM
-};
-
-typedef struct room_type_place_info_one_s {
- int exists;
- int ut_x;
- int ut_z;
-} mRmTp_FtrPlaceInfoOne_t;
-
-#define FTR_NUM 1266
-
-#define FTR_GET_ROTATION(f) ((f)&3)
-#define FTR_IDX_2_NO(f) ((f) >> 2)
-#define FTR_NO_2_IDX(f) ((f) << 2)
-#define FTR_NO_ROT_2_IDX(f, rot) (FTR_NO_2_IDX(f) | ((rot)&3))
-
-// TEMPORARY. Should be generated with .decl files
-#define ITEM0_NO_START 0x0000
-#define ITEM0_1_NO_START ITEM0_NO_START + 0x800
-
-#define FTR0_NO_START 0x1000
-
-#define ITEM1_NO_START 0x2000
-#define ITEM1_0_NO_START ITEM0_1_NO_START // paper
-#define ITEM1_1_NO_START ITEM1_NO_START + 0x100 // money
-#define ITEM1_2_NO_START ITEM1_NO_START + 0x200 // tools
-#define ITEM1_3_NO_START ITEM1_NO_START + 0x300 // fish
-#define ITEM1_4_NO_START ITEM1_NO_START + 0x400 // clothing
-#define ITEM1_5_NO_START ITEM1_NO_START + 0x500 // etc
-#define ITEM1_6_NO_START ITEM1_NO_START + 0x600 // carpets
-#define ITEM1_7_NO_START ITEM1_NO_START + 0x700 // wallpaper
-#define ITEM1_8_NO_START ITEM1_NO_START + 0x800 // food
-#define ITEM1_9_NO_START ITEM1_NO_START + 0x900 // seeds
-#define ITEM1_A_NO_START ITEM1_NO_START + 0xA00 // mini disks
-#define ITEM1_B_NO_START ITEM1_NO_START + 0xB00 // diaries
-#define ITEM1_C_NO_START ITEM1_NO_START + 0xC00 // tickets
-#define ITEM1_D_NO_START ITEM1_NO_START + 0xD00 // insects
-#define ITEM1_E_NO_START ITEM1_NO_START + 0xE00 // hukubukuro
-#define ITEM1_F_NO_START ITEM1_NO_START + 0xF00 // kabu
-
-#define FTR1_NO_START 0x3000
-
-enum {
- mRmTp_LIGHT_SWITCH_HOUSE0_MAIN_UPPER,
- mRmTp_LIGHT_SWITCH_HOUSE0_BASEMENT,
- mRmTp_LIGHT_SWITCH_HOUSE1_MAIN_UPPER,
- mRmTp_LIGHT_SWITCH_HOUSE1_BASEMENT,
- mRmTp_LIGHT_SWITCH_HOUSE2_MAIN_UPPER,
- mRmTp_LIGHT_SWITCH_HOUSE2_BASEMENT,
- mRmTp_LIGHT_SWITCH_HOUSE3_MAIN_UPPER,
- mRmTp_LIGHT_SWITCH_HOUSE3_BASEMENT,
- mRmTp_LIGHT_SWITCH_COTTAGE_MY,
- mRmTp_LIGHT_SWITCH_9,
- mRmTp_LIGHT_SWITCH_NPC,
- mRmTp_LIGHT_SWITCH_LIGHTHOUSE,
- mRmTp_LIGHT_SWITCH_TENT,
-
- mRmTp_LIGHT_SWITCH_NUM
-};
-
-extern int mRmTp_ItemNo2FtrSize(mActor_name_t item_no);
-extern int mRmTp_GetFurnitureData(mActor_name_t ftr, int ut_x, int ut_z, mRmTp_FtrPlaceInfoOne_t* place_info);
-extern void mRmTp_MakeFtrNoTable(mActor_name_t* dst, mActor_name_t* src);
-extern int mRmTp_GetFtrActionSE(int ftr_idx, int mode);
-extern u8* mRmTp_CheckFtrBirthInfoTop();
-extern int mRmTp_GetFloorIdx();
-extern int mRmTp_GetWallIdx();
-extern mActor_name_t mRmTp_Item1ItemNo2FtrItemNo_AtPlayerRoom(mActor_name_t item1_no, int no_convert_tools);
-extern mActor_name_t mRmTp_FtrItemNo2Item1ItemNo(mActor_name_t ftr_no, int no_convert_tools);
-extern void mRmTp_MakeMelodyData();
-extern u8* mRmTp_GetMelodyData();
-extern void mRmTp_DrawFamicomInfo(gfxprint_t* gfxprint);
-extern void mRmTp_MakeFamicom_Fdebug();
-extern mActor_name_t mRmTp_GetPlayerRoomCollisionIdx(mActor_name_t field_id, mActor_name_t bg_idx);
-extern int mRmTp_FurnitureIdx2FurnitureKind(int ftr_idx);
-extern void mRmTp_CopyWallData(u8* dst, int wall_no);
-extern void mRmTp_CopyFloorData(u8* dst, int floor_no);
-extern int mRmTp_CheckTalkAble(s16* rot, xyz_t* pos, int required_dir, f32 max_dist, GAME_PLAY* play);
-extern int mRmTp_CheckWallIsMyOriginalInThisScene();
-extern int mRmTp_CheckFloorIsMyOriginalInThisScene();
-extern int mRmTp_GetEntranceBasePosition(xyz_t* pos);
-extern int mRmTp_GetNowSceneLightSwitchIndex();
-extern int mRmTp_PleaseDrawLightSwitch();
-extern int mRmTp_NowSceneLightSwitchON();
-extern int mRmTp_IndexLightSwitchON(int switch_index);
-extern int mRmTp_NowSceneLightSwitchOFF();
-extern int mRmTp_IndexLightSwitchOFF(int switch_index);
-extern int mRmTp_Index2LightSwitchStatus(int switch_index);
-extern int mRmTp_SetDefaultLightSwitchData(int state);
-extern void mRmTp_DecideCottageDefaultLightSwitch();
-extern int mRmTp_GetNowSceneOriginalWallStatus();
-extern int mRmTp_GetNowSceneOriginalFloorStatus();
-extern void mRmTp_SetNowSceneOriginalWallStatus(int enabled);
-extern void mRmTp_SetNowSceneOriginalFloorStatus(int enabled);
-extern int mRmTp_FtrItemNo2FtrIdx(mActor_name_t ftr_item_no);
-extern mActor_name_t mRmTp_FtrIdx2FtrItemNo(int ftr_idx, int direct);
-extern int mRmTp_SoundStepWalkSE(xyz_t* wpos);
-
+#ifndef ROOM_TYPE_H
+#define ROOM_TYPE_H
+
+#include "types.h"
+#include "libu64/gfxprint.h"
+#include "m_actor_type.h"
+#include "m_play_h.h"
+
+#define mRmTp_FTR_UNIT_MAX 4
+
+enum {
+ mRmTp_FTRSIZE_1x1, /* x */
+ mRmTp_FTRSIZE_1x2, /* yy OR y */
+ /* y */
+ mRmTp_FTRSIZE_2x2, /* zz */
+ /* zz */
+ mRmTp_FTRSIZE_NUM
+};
+
+enum birth_type {
+ mRmTp_BIRTH_TYPE_GRP_A = 0,
+ mRmTp_BIRTH_TYPE_GRP_B = 1,
+ mRmTp_BIRTH_TYPE_GRP_C = 2,
+ mRmTp_BIRTH_TYPE_EVENT = 3,
+ mRmTp_BIRTH_TYPE_BIRTHDAY = 4,
+ mRmTp_BIRTH_TYPE_HALLOWEEN = 5,
+ mRmTp_BIRTH_TYPE_HANIWA = 6,
+ mRmTp_BIRTH_TYPE_LOTTERY = 7,
+ mRmTp_BIRTH_TYPE_FTR_CLOTH = 8,
+ mRmTp_BIRTH_TYPE_FTR_UMBRELLA = 9,
+ mRmTp_BIRTH_TYPE_FTR_INSECT = 10,
+ mRmTp_BIRTH_TYPE_FTR_FISH = 11,
+ mRmTp_BIRTH_TYPE_SINGLE_FOSSIL = 12,
+ mRmTp_BIRTH_TYPE_MULTI_FOSSIL = 13,
+ mRmTp_BIRTH_TYPE_XMAS = 14,
+ mRmTp_BIRTH_TYPE_SANTA = 15,
+ mRmTp_BIRTH_TYPE_UNOBTAINABLE = 16,
+ mRmTp_BIRTH_TYPE_SNOWMAN = 17,
+ mRmTp_BIRTH_TYPE_HALLOWEEN_TRICK = 18,
+ mRmTp_BIRTH_TYPE_POST_OFFICE = 19,
+ mRmTp_BIRTH_TYPE_MARK_ROOM = 20,
+ mRmTp_BIRTH_TYPE_SONCHO = 21,
+ mRmTp_BIRTH_TYPE_JONASON = 22,
+ mRmTp_BIRTH_TYPE_UNUSED_23 = 23,
+ mRmTp_BIRTH_TYPE_FAMICOM_EREADER = 24,
+ mRmTp_BIRTH_TYPE_ISLAND = 25,
+ mRmTp_BIRTH_TYPE_FAMICOM_ISLAND = 26,
+ mRmTp_BIRTH_TYPE_MY_ORIGINAL = 27,
+ mRmTp_BIRTH_TYPE_FAMICOM_CODE = 28,
+ mRmTp_BIRTH_TYPE_MUSEUM = 29,
+ mRmTp_BIRTH_TYPE_SONCHO_LIGHTHOUSE_QUEST = 30,
+ mRmTp_BIRTH_TYPE_FTR_DIARY = 31,
+ mRmTp_BIRTH_TYPE_GROUNDHOG = 32,
+ mRmTp_BIRTH_TYPE_KAMAKURA = 33,
+ mRmTp_BIRTH_TYPE_NINTENDO_CODE = 34,
+ mRmTp_BIRTH_TYPE_HARVEST_FESTIVAL = 35,
+ mRmTp_BIRTH_TYPE_UNUSED_36 = 36,
+ mRmTp_BIRTH_TYPE_SUMMER_CAMPER = 37,
+
+ mRmTp_BIRTH_TYPE_NUM
+};
+
+enum {
+ mRmTp_DIRECT_SOUTH,
+ mRmTp_DIRECT_EAST,
+ mRmTp_DIRECT_NORTH,
+ mRmTp_DIRECT_WEST,
+
+ mRmTp_DIRECT_NUM
+};
+
+enum {
+ mRmTp_FTR_SE_NONE,
+ mRmTp_FTR_SE_SOFT_CHAIR,
+ mRmTp_FTR_SE_HARD_CHAIR,
+ mRmTp_FTR_SE_BUBU_CHAIR,
+ mRmTp_FTR_SE_TOILET_CHAIR,
+
+ mRmTp_FTR_SE_NUM
+};
+
+enum {
+ mRmTp_CHAIR_ACTION_SIT,
+ mRmTp_CHAIR_ACTION_STAND,
+
+ mRmTp_CHAIR_ACTION_NUM
+};
+
+typedef struct room_type_place_info_one_s {
+ int exists;
+ int ut_x;
+ int ut_z;
+} mRmTp_FtrPlaceInfoOne_t;
+
+#define FTR_NUM 1266
+
+#define FTR_GET_ROTATION(f) ((f)&3)
+#define FTR_IDX_2_NO(f) ((f) >> 2)
+#define FTR_NO_2_IDX(f) ((f) << 2)
+#define FTR_NO_ROT_2_IDX(f, rot) (FTR_NO_2_IDX(f) | ((rot)&3))
+
+// TEMPORARY. Should be generated with .decl files
+#define ITEM0_NO_START 0x0000
+#define ITEM0_1_NO_START ITEM0_NO_START + 0x800
+
+#define FTR0_NO_START 0x1000
+
+#define ITEM1_NO_START 0x2000
+#define ITEM1_0_NO_START ITEM0_1_NO_START // paper
+#define ITEM1_1_NO_START ITEM1_NO_START + 0x100 // money
+#define ITEM1_2_NO_START ITEM1_NO_START + 0x200 // tools
+#define ITEM1_3_NO_START ITEM1_NO_START + 0x300 // fish
+#define ITEM1_4_NO_START ITEM1_NO_START + 0x400 // clothing
+#define ITEM1_5_NO_START ITEM1_NO_START + 0x500 // etc
+#define ITEM1_6_NO_START ITEM1_NO_START + 0x600 // carpets
+#define ITEM1_7_NO_START ITEM1_NO_START + 0x700 // wallpaper
+#define ITEM1_8_NO_START ITEM1_NO_START + 0x800 // food
+#define ITEM1_9_NO_START ITEM1_NO_START + 0x900 // seeds
+#define ITEM1_A_NO_START ITEM1_NO_START + 0xA00 // mini disks
+#define ITEM1_B_NO_START ITEM1_NO_START + 0xB00 // diaries
+#define ITEM1_C_NO_START ITEM1_NO_START + 0xC00 // tickets
+#define ITEM1_D_NO_START ITEM1_NO_START + 0xD00 // insects
+#define ITEM1_E_NO_START ITEM1_NO_START + 0xE00 // hukubukuro
+#define ITEM1_F_NO_START ITEM1_NO_START + 0xF00 // kabu
+
+#define FTR1_NO_START 0x3000
+
+enum {
+ mRmTp_LIGHT_SWITCH_HOUSE0_MAIN_UPPER,
+ mRmTp_LIGHT_SWITCH_HOUSE0_BASEMENT,
+ mRmTp_LIGHT_SWITCH_HOUSE1_MAIN_UPPER,
+ mRmTp_LIGHT_SWITCH_HOUSE1_BASEMENT,
+ mRmTp_LIGHT_SWITCH_HOUSE2_MAIN_UPPER,
+ mRmTp_LIGHT_SWITCH_HOUSE2_BASEMENT,
+ mRmTp_LIGHT_SWITCH_HOUSE3_MAIN_UPPER,
+ mRmTp_LIGHT_SWITCH_HOUSE3_BASEMENT,
+ mRmTp_LIGHT_SWITCH_COTTAGE_MY,
+ mRmTp_LIGHT_SWITCH_9,
+ mRmTp_LIGHT_SWITCH_NPC,
+ mRmTp_LIGHT_SWITCH_LIGHTHOUSE,
+ mRmTp_LIGHT_SWITCH_TENT,
+
+ mRmTp_LIGHT_SWITCH_NUM
+};
+
+extern int mRmTp_ItemNo2FtrSize(mActor_name_t item_no);
+extern int mRmTp_GetFurnitureData(mActor_name_t ftr, int ut_x, int ut_z, mRmTp_FtrPlaceInfoOne_t* place_info);
+extern void mRmTp_MakeFtrNoTable(mActor_name_t* dst, mActor_name_t* src);
+extern int mRmTp_GetFtrActionSE(int ftr_idx, int mode);
+extern u8* mRmTp_CheckFtrBirthInfoTop();
+extern int mRmTp_GetFloorIdx();
+extern int mRmTp_GetWallIdx();
+extern mActor_name_t mRmTp_Item1ItemNo2FtrItemNo_AtPlayerRoom(mActor_name_t item1_no, int no_convert_tools);
+extern mActor_name_t mRmTp_FtrItemNo2Item1ItemNo(mActor_name_t ftr_no, int no_convert_tools);
+extern void mRmTp_MakeMelodyData();
+extern u8* mRmTp_GetMelodyData();
+extern void mRmTp_DrawFamicomInfo(gfxprint_t* gfxprint);
+extern void mRmTp_MakeFamicom_Fdebug();
+extern mActor_name_t mRmTp_GetPlayerRoomCollisionIdx(mActor_name_t field_id, mActor_name_t bg_idx);
+extern int mRmTp_FurnitureIdx2FurnitureKind(int ftr_idx);
+extern void mRmTp_CopyWallData(u8* dst, int wall_no);
+extern void mRmTp_CopyFloorData(u8* dst, int floor_no);
+extern int mRmTp_CheckTalkAble(s16* rot, xyz_t* pos, int required_dir, f32 max_dist, GAME_PLAY* play);
+extern int mRmTp_CheckWallIsMyOriginalInThisScene();
+extern int mRmTp_CheckFloorIsMyOriginalInThisScene();
+extern int mRmTp_GetEntranceBasePosition(xyz_t* pos);
+extern int mRmTp_GetNowSceneLightSwitchIndex();
+extern int mRmTp_PleaseDrawLightSwitch();
+extern int mRmTp_NowSceneLightSwitchON();
+extern int mRmTp_IndexLightSwitchON(int switch_index);
+extern int mRmTp_NowSceneLightSwitchOFF();
+extern int mRmTp_IndexLightSwitchOFF(int switch_index);
+extern int mRmTp_Index2LightSwitchStatus(int switch_index);
+extern int mRmTp_SetDefaultLightSwitchData(int state);
+extern void mRmTp_DecideCottageDefaultLightSwitch();
+extern int mRmTp_GetNowSceneOriginalWallStatus();
+extern int mRmTp_GetNowSceneOriginalFloorStatus();
+extern void mRmTp_SetNowSceneOriginalWallStatus(int enabled);
+extern void mRmTp_SetNowSceneOriginalFloorStatus(int enabled);
+extern int mRmTp_FtrItemNo2FtrIdx(mActor_name_t ftr_item_no);
+extern mActor_name_t mRmTp_FtrIdx2FtrItemNo(int ftr_idx, int direct);
+extern int mRmTp_SoundStepWalkSE(xyz_t* wpos);
+
#endif
\ No newline at end of file
diff --git a/include/main.h b/include/main.h
index 9c31fac9..ffeea12f 100644
--- a/include/main.h
+++ b/include/main.h
@@ -20,7 +20,7 @@ extern int ScreenHeight;
extern OSThread graphThread;
extern u8 SegmentBaseAddress[0x40];
-void foresta_main();
+void main();
extern void mainproc(void* val);
#ifdef __cplusplus
diff --git a/include/random_field.h b/include/random_field.h
index a9d38a39..481d31ee 100644
--- a/include/random_field.h
+++ b/include/random_field.h
@@ -1,11 +1,11 @@
-#ifndef RANDOM_FIELD_H
-#define RANDOM_FIELD_H
-
-#include "types.h"
-
-#define mRF_PERFECT_BIT 9
-
-int mRF_GetRandom(int val);
-
-
+#ifndef RANDOM_FIELD_H
+#define RANDOM_FIELD_H
+
+#include "types.h"
+
+#define mRF_PERFECT_BIT 9
+
+int mRF_GetRandom(int val);
+
+
#endif
\ No newline at end of file
diff --git a/include/types.h b/include/types.h
index 22ed5c24..529431cc 100644
--- a/include/types.h
+++ b/include/types.h
@@ -1,139 +1,173 @@
-#ifndef TYPES_H
-#define TYPES_H
-
-#include "../tools/ppcdis/include/ppcdis.h"
-
-#ifdef IS_REL
-// #pragma section const_type sconst_type ".rodata" ".rodata" data_mode=far_abs code_mode=pc_rel
-#endif
-
-typedef signed char s8;
-typedef signed short s16;
-typedef signed long s32;
-typedef signed long long s64;
-typedef unsigned char u8;
-typedef unsigned short u16;
-typedef unsigned long u32;
-typedef unsigned long size_t;
-typedef unsigned long long u64;
-typedef unsigned int uint;
-
-typedef volatile u8 vu8;
-typedef volatile u16 vu16;
-typedef volatile u32 vu32;
-typedef volatile u64 vu64;
-typedef volatile s8 vs8;
-typedef volatile s16 vs16;
-typedef volatile s32 vs32;
-typedef volatile s64 vs64;
-
-typedef float f32;
-typedef double f64;
-typedef volatile f32 vf32;
-typedef volatile f64 vf64;
-
-typedef int BOOL;
-typedef unsigned int uintptr_t; // Manually added
-
-// Pointer to unknown, to be determined at a later date.
-typedef void* unkptr;
-typedef u32 unknown;
-
-#define TRUE 1
-#define FALSE 0
-
-#define NULL ((void*)0)
-#define nullptr 0
-
-#define AT_ADDRESS(x) : (x)
-
-#define ALIGN_PREV(u, align) (u & (~(align - 1)))
-#define ALIGN_NEXT(u, align) ((u + (align - 1)) & (~(align - 1)))
-#define IS_ALIGNED(X, N) (((X) & ((N) - 1)) == 0)
-#define IS_NOT_ALIGNED(X, N) (((X) & ((N) - 1)) != 0)
-
-#define FLAG_ON(V, F) (((V) & (F)) == 0)
-#define FLAG_OFF(V, F) (((V) & (F)) != 0)
-
-#ifndef ATTRIBUTE_ALIGN
-#if defined(__MWERKS__) || defined(__GNUC__)
-#define ATTRIBUTE_ALIGN(num) __attribute__((aligned(num)))
-#elif defined(_MSC_VER)
-#define ATTRIBUTE_ALIGN(num)
-#else
-#error unknown compiler
-#endif
-#endif
-
-#define BUTTON_NONE 0x0000
-#define BUTTON_CRIGHT 0x0001
-#define BUTTON_CLEFT 0x0002
-#define BUTTON_CDOWN 0x0004
-#define BUTTON_CUP 0x0008
-#define BUTTON_R 0x0010
-#define BUTTON_L 0x0020
-#define BUTTON_X 0x0040
-#define BUTTON_Y 0x0080
-#define BUTTON_DRIGHT 0x0100
-#define BUTTON_DLEFT 0x0200
-#define BUTTON_DDOWN 0x0400
-#define BUTTON_DUP 0x0800
-#define BUTTON_START 0x1000
-#define BUTTON_Z 0x2000
-#define BUTTON_B 0x4000
-#define BUTTON_A 0x8000
-
-#define FRAMES_PER_SECOND 60
-
-#define ARRAY_SIZE(arr, type) (sizeof(arr) / sizeof(type))
-#define ARRAY_COUNT(arr) (int)(sizeof(arr) / sizeof(arr[0]))
-
-#define MAX(a, b) (((a) > (b)) ? (a) : (b))
-#define MIN(a, b) (((a) < (b)) ? (a) : (b))
-
-#define FLOOR(n, f) (((n) / (f)) * (f))
-
-#define F32_IS_ZERO(v) (fabsf(v) < 0.008f)
-
-/* ARGB8 color format (32 bits) to RGB5A3 color format (16 bits) */
-#define ARGB8_to_RGB5A3(argb8) \
- ((u16)(((argb8) & 0xFF000000) >= 0xE0000000 \
- ? /* Fully opaque, 5 bits per color channel */ (0x8000 | ((((argb8) >> 16) & 0xF8) << 7) | \
- ((((argb8) >> 8) & 0xF8) << 2) | \
- (((argb8) & 0xFF) >> 3)) \
- : /* 3 bits of transparency, 4 bits per color channel */ ( \
- ((((argb8) >> 24) & 0xE0) << 7) | ((((argb8) >> 16) & 0xF0) << 4) | (((argb8) >> 8) & 0xF0) | \
- (((argb8) & 0xF0) >> 4))))
-
-#define GPACK_RGB5A3(r, g, b, a) \
- ARGB8_to_RGB5A3((((a) & 0xFF) << 24) | (((r) & 0xFF) << 16) | (((g) & 0xFF) << 8) | ((b) & 0xFF))
-
-#pragma section RX "forcestrip"
-#ifndef __INTELLISENSE__
-#define FORCESTRIP __declspec(section "forcestrip")
-#else
-#define FORCESTRIP
-#endif
-
-#ifdef MUST_MATCH
-#define MATCH_FORCESTRIP FORCESTRIP
-#else
-#define MATCH_FORCESTRIP
-#endif
-
-#if !defined(__INTELLISENSE__) && defined(MUST_MATCH)
-#define BSS_ORDER_GROUP_START FORCESTRIP ORDER_BSS_DATA {
-#define BSS_ORDER_GROUP_END }
-#define BSS_ORDER_ITEM(v) ORDER_BSS(v)
-#else
-#define BSS_ORDER_GROUP_START
-#define BSS_ORDER_GROUP_END
-#define BSS_ORDER_ITEM(v)
-#endif
-
-#ifndef __cplusplus
-// Some definitions rely on wchar_t being defined
-typedef short wchar_t;
-#endif
-
-#endif
+#ifndef TYPES_H
+#define TYPES_H
+
+typedef signed char s8;
+typedef signed short s16;
+typedef signed long s32;
+typedef signed long long s64;
+typedef unsigned char u8;
+typedef unsigned short u16;
+typedef unsigned long u32;
+#ifndef _SIZE_T_DEF
+#define _SIZE_T_DEF
+typedef unsigned long size_t;
+#endif
+typedef unsigned long long u64;
+typedef unsigned int uint;
+
+typedef volatile u8 vu8;
+typedef volatile u16 vu16;
+typedef volatile u32 vu32;
+typedef volatile u64 vu64;
+typedef volatile s8 vs8;
+typedef volatile s16 vs16;
+typedef volatile s32 vs32;
+typedef volatile s64 vs64;
+
+typedef float f32;
+typedef double f64;
+typedef volatile f32 vf32;
+typedef volatile f64 vf64;
+
+typedef int BOOL;
+typedef unsigned int uintptr_t; // Manually added
+
+// Pointer to unknown, to be determined at a later date.
+typedef void* unkptr;
+typedef u32 unknown;
+
+#define TRUE 1
+#define FALSE 0
+
+#ifndef NULL
+#define NULL ((void*)0)
+#endif
+#define nullptr 0
+
+#ifdef __MWERKS__
+#define AT_ADDRESS(x) : (x)
+#else
+#define AT_ADDRESS(x) __attribute__((section(".data." #x)))
+#endif
+
+#define ALIGN_PREV(u, align) (u & (~(align - 1)))
+#define ALIGN_NEXT(u, align) ((u + (align - 1)) & (~(align - 1)))
+#define IS_ALIGNED(X, N) (((X) & ((N) - 1)) == 0)
+#define IS_NOT_ALIGNED(X, N) (((X) & ((N) - 1)) != 0)
+
+#define FLAG_ON(V, F) (((V) & (F)) == 0)
+#define FLAG_OFF(V, F) (((V) & (F)) != 0)
+
+#ifndef ATTRIBUTE_ALIGN
+#if defined(__MWERKS__) || defined(__GNUC__)
+#define ATTRIBUTE_ALIGN(num) __attribute__((aligned(num)))
+#elif defined(_MSC_VER)
+#define ATTRIBUTE_ALIGN(num)
+#else
+#error unknown compiler
+#endif
+#endif
+
+#define BUTTON_NONE 0x0000
+#define BUTTON_CRIGHT 0x0001
+#define BUTTON_CLEFT 0x0002
+#define BUTTON_CDOWN 0x0004
+#define BUTTON_CUP 0x0008
+#define BUTTON_R 0x0010
+#define BUTTON_L 0x0020
+#define BUTTON_X 0x0040
+#define BUTTON_Y 0x0080
+#define BUTTON_DRIGHT 0x0100
+#define BUTTON_DLEFT 0x0200
+#define BUTTON_DDOWN 0x0400
+#define BUTTON_DUP 0x0800
+#define BUTTON_START 0x1000
+#define BUTTON_Z 0x2000
+#define BUTTON_B 0x4000
+#define BUTTON_A 0x8000
+
+#define FRAMES_PER_SECOND 60
+
+#define ARRAY_SIZE(arr, type) (sizeof(arr) / sizeof(type))
+#define ARRAY_COUNT(arr) (int)(sizeof(arr) / sizeof(arr[0]))
+
+#ifndef MAX
+#define MAX(a, b) (((a) > (b)) ? (a) : (b))
+#endif
+#ifndef MIN
+#define MIN(a, b) (((a) < (b)) ? (a) : (b))
+#endif
+
+#define FLOOR(n, f) (((n) / (f)) * (f))
+
+#define F32_IS_ZERO(v) (fabsf(v) < 0.008f)
+
+/* ARGB8 color format (32 bits) to RGB5A3 color format (16 bits) */
+#define ARGB8_to_RGB5A3(argb8) \
+ ((u16)(((argb8) & 0xFF000000) >= 0xE0000000 \
+ ? /* Fully opaque, 5 bits per color channel */ (0x8000 | ((((argb8) >> 16) & 0xF8) << 7) | \
+ ((((argb8) >> 8) & 0xF8) << 2) | \
+ (((argb8) & 0xFF) >> 3)) \
+ : /* 3 bits of transparency, 4 bits per color channel */ ( \
+ ((((argb8) >> 24) & 0xE0) << 7) | ((((argb8) >> 16) & 0xF0) << 4) | (((argb8) >> 8) & 0xF0) | \
+ (((argb8) & 0xF0) >> 4))))
+
+#define GPACK_RGB5A3(r, g, b, a) \
+ ARGB8_to_RGB5A3((((a) & 0xFF) << 24) | (((r) & 0xFF) << 16) | (((g) & 0xFF) << 8) | ((b) & 0xFF))
+
+#pragma section RX "forcestrip"
+#ifndef __INTELLISENSE__
+#define FORCESTRIP __declspec(section "forcestrip")
+#else
+#define FORCESTRIP
+#endif
+
+#if defined(MUST_MATCH) && defined(__MWERKS__)
+#define MATCH_FORCESTRIP FORCESTRIP
+#else
+#define MATCH_FORCESTRIP
+#endif
+
+#if !defined(__INTELLISENSE__) && defined(MUST_MATCH)
+#define ORDER_BSS_DATA static asm void order_bss()
+#define ORDER_BSS(s) lis r3, s @ha
+#define BSS_ORDER_GROUP_START FORCESTRIP ORDER_BSS_DATA {
+#define BSS_ORDER_GROUP_END }
+#define BSS_ORDER_ITEM(v) ORDER_BSS(v)
+#else
+#define BSS_ORDER_GROUP_START
+#define BSS_ORDER_GROUP_END
+#define BSS_ORDER_ITEM(v)
+#endif
+
+#ifndef __cplusplus
+// Some definitions rely on wchar_t being defined
+typedef short wchar_t;
+#endif
+
+#if DEBUG
+#define ASSERTLINE(line, cond) \
+ ((cond) || (OSPanic(__FILE__, line, "Failed assertion " #cond), 0))
+
+#define ASSERTMSGLINE(line, cond, msg) \
+ ((cond) || (OSPanic(__FILE__, line, msg), 0))
+
+// This is dumb but we dont have a Metrowerks way to do variadic macros in the macro to make this done in a not scrubby way.
+#define ASSERTMSG1LINE(line, cond, msg, arg1) \
+ ((cond) || (OSPanic(__FILE__, line, msg, arg1), 0))
+
+#define ASSERTMSG2LINE(line, cond, msg, arg1, arg2) \
+ ((cond) || (OSPanic(__FILE__, line, msg, arg1, arg2), 0))
+
+#define ASSERTMSGLINEV(line, cond, ...) \
+ ((cond) || (OSPanic(__FILE__, line, __VA_ARGS__), 0))
+
+#else
+#define ASSERTLINE(line, cond) (void)0
+#define ASSERTMSGLINE(line, cond, msg) (void)0
+#define ASSERTMSG1LINE(line, cond, msg, arg1) (void)0
+#define ASSERTMSG2LINE(line, cond, msg, arg1, arg2) (void)0
+#define ASSERTMSGLINEV(line, cond, ...) (void)0
+#endif
+
+#endif
diff --git a/include/zurumode.h b/include/zurumode.h
index f727f856..6e5466d4 100644
--- a/include/zurumode.h
+++ b/include/zurumode.h
@@ -1,55 +1,55 @@
-#ifndef ZURUMODE_H
-#define ZURUMODE_H
-
-#include "types.h"
-#include "m_controller.h"
-#include "dolphin/os.h"
-
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-typedef struct zuru_keycheck {
- u8 state;
- u8 progressing;
- u16 last_controller;
- u8 zurumode_enabled;
-} zuru_keycheck;
-
-extern s32 zurumode_flag;
-
-extern void zurumode_cleanup(void);
-extern void zurumode_init(void);
-
-#define ZURUMODE_RESET 0
-#define ZURUMODE_PROGRESSING 1
-
-enum zurumode_stage {
- ZURUMODE_STAGE_BEGIN_e = 0,
-
- ZURUMODE_STAGE_0_e = ZURUMODE_STAGE_BEGIN_e,
- ZURUMODE_STAGE_1_e,
- ZURUMODE_STAGE_2_e,
- ZURUMODE_STAGE_3_e,
- ZURUMODE_STAGE_4_e,
- ZURUMODE_STAGE_5_e,
- ZURUMODE_STAGE_6_e,
- ZURUMODE_STAGE_7_e,
- ZURUMODE_STAGE_8_e,
- ZURUMODE_STAGE_9_e,
- ZURUMODE_STAGE_91_e = 91,
- ZURUMODE_STAGE_92_e = 92,
- ZURUMODE_STAGE_10_e = 10,
- ZURUMODE_STAGE_11_e,
-
- ZURUMODE_STAGE_FINAL_e = ZURUMODE_STAGE_11_e
-};
-
-#define ZURUMODE_ENABLED() (zurumode_flag >= 1)
-#define ZURUMODE2_ENABLED() (zurumode_flag >= 2)
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif
+#ifndef ZURUMODE_H
+#define ZURUMODE_H
+
+#include "types.h"
+#include "m_controller.h"
+#include "dolphin/os.h"
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct zuru_keycheck {
+ u8 state;
+ u8 progressing;
+ u16 last_controller;
+ u8 zurumode_enabled;
+} zuru_keycheck;
+
+extern s32 zurumode_flag;
+
+extern void zurumode_cleanup(void);
+extern void zurumode_init(void);
+
+#define ZURUMODE_RESET 0
+#define ZURUMODE_PROGRESSING 1
+
+enum zurumode_stage {
+ ZURUMODE_STAGE_BEGIN_e = 0,
+
+ ZURUMODE_STAGE_0_e = ZURUMODE_STAGE_BEGIN_e,
+ ZURUMODE_STAGE_1_e,
+ ZURUMODE_STAGE_2_e,
+ ZURUMODE_STAGE_3_e,
+ ZURUMODE_STAGE_4_e,
+ ZURUMODE_STAGE_5_e,
+ ZURUMODE_STAGE_6_e,
+ ZURUMODE_STAGE_7_e,
+ ZURUMODE_STAGE_8_e,
+ ZURUMODE_STAGE_9_e,
+ ZURUMODE_STAGE_91_e = 91,
+ ZURUMODE_STAGE_92_e = 92,
+ ZURUMODE_STAGE_10_e = 10,
+ ZURUMODE_STAGE_11_e,
+
+ ZURUMODE_STAGE_FINAL_e = ZURUMODE_STAGE_11_e
+};
+
+#define ZURUMODE_ENABLED() (zurumode_flag >= 1)
+#define ZURUMODE2_ENABLED() (zurumode_flag >= 2)
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
diff --git a/orig/GAFE01_00/.gitkeep b/orig/GAFE01_00/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/progress.py b/progress.py
deleted file mode 100644
index 2d62f99f..00000000
--- a/progress.py
+++ /dev/null
@@ -1,94 +0,0 @@
-"""
-Progress message generation
-"""
-
-from argparse import ArgumentParser
-import os.path
-import pickle
-import json
-from typing import Dict, List, Tuple
-
-from prettytable import PrettyTable
-
-import common as c
-
-def load_progress_info(ctx: c.SourceContext, asm_list: str
- ) -> Tuple[Dict[str, int], Dict[str, int]]:
- assert os.path.exists(ctx.labels), "Error: analysis has not ran!"
-
- # Get data
- raw = c.get_cmd_stdout(f"{c.PROGRESS} {ctx.binary} {ctx.labels} {ctx.slices}")
- dat = json.loads(raw)
- assert dat.get("version") == 2, "Outdated progress json version, try a clean & rebuild"
- decomp_sizes = dat["decomp_slices_sizes"]
- total_sizes = dat["total_sizes"]
- symbol_sizes = dat["symbol_sizes"]
-
- # Subtract undecompiled functions in decompiled slices
- # TODO: this assumes none of .init is decompiled
- with open(asm_list, 'rb') as f:
- funcs = pickle.load(f)
- for func in funcs:
- decomp_sizes[".text"] -= symbol_sizes[str(func)]
-
- return decomp_sizes, total_sizes
-
-def print_binary_progress(sections: List[str], decomp_sizes: Dict[str, int],
- total_sizes: Dict[str, int], binary: str, show_total: bool):
- table = PrettyTable(["Section", "Decompiled Bytes", "Total Bytes", "Percentage"])
- bin_decomp_size = 0
- bin_total_size = 0
- pct = lambda d, t: f"{(d/t)*100:.4f}"
- for sec in sections:
- decomp_size = decomp_sizes[sec]
- total_size = total_sizes[sec]
- bin_decomp_size += decomp_size
- bin_total_size += total_size
- table.add_row([
- sec,
- hex(decomp_size),
- hex(total_size),
- pct(decomp_size, total_size)
- ])
- if show_total:
- table.add_row([
- "Total",
- hex(bin_decomp_size),
- hex(bin_total_size),
- pct(bin_decomp_size, bin_total_size)
- ])
- print(f"{binary} progress:")
- print(table)
-
-if __name__=="__main__":
- parser = ArgumentParser()
- parser.add_argument("-f", "--full", action="store_true", help="Print progress of all sections")
- args = parser.parse_args()
- decomp_sizes, total_sizes = load_progress_info(c.DOL_CTX, c.DOL_ASM_LIST)
- rel_decomp_sizes, rel_total_sizes = load_progress_info(c.REL_CTX, c.REL_ASM_LIST)
- if args.full:
- print("Warning: progress for sections other than .text isn't fully accurate")
- dol_secs = [
- ".init",
- "extab_",
- "extabindex_",
- ".text",
- ".ctors",
- ".dtors",
- ".rodata",
- ".data",
- ".bss",
- ".sdata",
- ".sbss",
- ".sdata2",
- ]
- rel_secs = [
- ".text",
- ".rodata",
- ".data",
- ".bss",
- ]
- else:
- dol_secs = rel_secs = [".text"]
- print_binary_progress(dol_secs, decomp_sizes, total_sizes, "static.dol", args.full)
- print_binary_progress(rel_secs, rel_decomp_sizes, rel_total_sizes, "foresta.rel", args.full)
\ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
deleted file mode 100644
index 2814ab46..00000000
--- a/requirements.txt
+++ /dev/null
@@ -1,11 +0,0 @@
--r ./tools/ppcdis/requirements.txt
-
-cxxfilt
-ninja_syntax
-prettytable
-python-Levenshtein
-watchdog
-pyjkernel
-pcpp
-pyperclip
-ruamel.yaml
\ No newline at end of file
diff --git a/src/ac_airplane.c b/src/actor/ac_airplane.c
similarity index 100%
rename from src/ac_airplane.c
rename to src/actor/ac_airplane.c
diff --git a/src/ac_animal_logo.c b/src/actor/ac_animal_logo.c
similarity index 99%
rename from src/ac_animal_logo.c
rename to src/actor/ac_animal_logo.c
index bd16e0bc..e6b95eec 100644
--- a/src/ac_animal_logo.c
+++ b/src/actor/ac_animal_logo.c
@@ -67,9 +67,7 @@ ACTOR_PROFILE Animal_Logo_Profile = {
NULL
};
-
-// TODO: once proper building is possible, fix this
-//#include "../src/ac_animal_logo_misc.c"
+#include "../src/actor/ac_animal_logo_misc.c"
static void aAL_setupAction(ANIMAL_LOGO_ACTOR* actor, GAME* game, int action);
static void aAL_title_decide_p_sel_npc();
diff --git a/src/ac_animal_logo_misc.c b/src/actor/ac_animal_logo_misc.c
similarity index 100%
rename from src/ac_animal_logo_misc.c
rename to src/actor/ac_animal_logo_misc.c
diff --git a/src/ac_aprilfool_control.c b/src/actor/ac_aprilfool_control.c
similarity index 100%
rename from src/ac_aprilfool_control.c
rename to src/actor/ac_aprilfool_control.c
diff --git a/src/ac_arrange_room.c b/src/actor/ac_arrange_room.c
similarity index 100%
rename from src/ac_arrange_room.c
rename to src/actor/ac_arrange_room.c
diff --git a/src/ac_ball.c b/src/actor/ac_ball.c
similarity index 100%
rename from src/ac_ball.c
rename to src/actor/ac_ball.c
diff --git a/src/ac_birth_control.c b/src/actor/ac_birth_control.c
similarity index 100%
rename from src/ac_birth_control.c
rename to src/actor/ac_birth_control.c
diff --git a/src/ac_boat.c b/src/actor/ac_boat.c
similarity index 99%
rename from src/ac_boat.c
rename to src/actor/ac_boat.c
index 040d718e..32380625 100644
--- a/src/ac_boat.c
+++ b/src/actor/ac_boat.c
@@ -132,7 +132,7 @@ static void aBT_actor_dt(ACTOR* actorx, GAME* game) {
mCoBG_DeleteBoatCollision(actorx);
}
-#include "../src/ac_boat_move.c_inc"
+#include "../src/actor/ac_boat_move.c_inc"
static u32 aBT_calc_furrow_alpha(BOAT_ACTOR* boat_actor) {
f32 speed = boat_actor->actor_class.speed;
diff --git a/src/ac_boat_demo.c b/src/actor/ac_boat_demo.c
similarity index 97%
rename from src/ac_boat_demo.c
rename to src/actor/ac_boat_demo.c
index 26c700ae..89fe6755 100644
--- a/src/ac_boat_demo.c
+++ b/src/actor/ac_boat_demo.c
@@ -70,6 +70,6 @@ static void aBTD_actor_dt(ACTOR* actorx, GAME* game) {
}
}
-#include "../src/ac_boat_demo_move.c_inc"
+#include "../src/actor/ac_boat_demo_move.c_inc"
#pragma pop
diff --git a/src/ac_boat_demo_move.c_inc b/src/actor/ac_boat_demo_move.c_inc
similarity index 100%
rename from src/ac_boat_demo_move.c_inc
rename to src/actor/ac_boat_demo_move.c_inc
diff --git a/src/ac_boat_move.c_inc b/src/actor/ac_boat_move.c_inc
similarity index 100%
rename from src/ac_boat_move.c_inc
rename to src/actor/ac_boat_move.c_inc
diff --git a/src/ac_boxManager.c b/src/actor/ac_boxManager.c
similarity index 100%
rename from src/ac_boxManager.c
rename to src/actor/ac_boxManager.c
diff --git a/src/ac_boxMove.c b/src/actor/ac_boxMove.c
similarity index 100%
rename from src/ac_boxMove.c
rename to src/actor/ac_boxMove.c
diff --git a/src/ac_boxTrick01.c b/src/actor/ac_boxTrick01.c
similarity index 100%
rename from src/ac_boxTrick01.c
rename to src/actor/ac_boxTrick01.c
diff --git a/src/ac_br_shop.c b/src/actor/ac_br_shop.c
similarity index 97%
rename from src/ac_br_shop.c
rename to src/actor/ac_br_shop.c
index 86a12d72..29a693f8 100644
--- a/src/ac_br_shop.c
+++ b/src/actor/ac_br_shop.c
@@ -111,5 +111,5 @@ static void aBRS_actor_dt(ACTOR* actor, GAME* game) {
}
}
-#include "../src/ac_br_shop_move.c_inc"
-#include "../src/ac_br_shop_draw.c_inc"
+#include "../src/actor/ac_br_shop_move.c_inc"
+#include "../src/actor/ac_br_shop_draw.c_inc"
diff --git a/src/ac_br_shop_draw.c_inc b/src/actor/ac_br_shop_draw.c_inc
similarity index 100%
rename from src/ac_br_shop_draw.c_inc
rename to src/actor/ac_br_shop_draw.c_inc
diff --git a/src/ac_br_shop_move.c_inc b/src/actor/ac_br_shop_move.c_inc
similarity index 100%
rename from src/ac_br_shop_move.c_inc
rename to src/actor/ac_br_shop_move.c_inc
diff --git a/src/ac_bridge_a.c b/src/actor/ac_bridge_a.c
similarity index 100%
rename from src/ac_bridge_a.c
rename to src/actor/ac_bridge_a.c
diff --git a/src/ac_buggy.c b/src/actor/ac_buggy.c
similarity index 97%
rename from src/ac_buggy.c
rename to src/actor/ac_buggy.c
index d2179637..c6daa06a 100644
--- a/src/ac_buggy.c
+++ b/src/actor/ac_buggy.c
@@ -124,6 +124,6 @@ static void aBGY_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&buggy->keyframe);
}
-#include "../src/ac_buggy_move.c_inc"
+#include "../src/actor/ac_buggy_move.c_inc"
-#include "../src/ac_buggy_draw.c_inc"
+#include "../src/actor/ac_buggy_draw.c_inc"
diff --git a/src/ac_buggy_draw.c_inc b/src/actor/ac_buggy_draw.c_inc
similarity index 100%
rename from src/ac_buggy_draw.c_inc
rename to src/actor/ac_buggy_draw.c_inc
diff --git a/src/ac_buggy_move.c_inc b/src/actor/ac_buggy_move.c_inc
similarity index 100%
rename from src/ac_buggy_move.c_inc
rename to src/actor/ac_buggy_move.c_inc
diff --git a/src/ac_cottage.c b/src/actor/ac_cottage.c
similarity index 100%
rename from src/ac_cottage.c
rename to src/actor/ac_cottage.c
diff --git a/src/ac_douzou.c b/src/actor/ac_douzou.c
similarity index 96%
rename from src/ac_douzou.c
rename to src/actor/ac_douzou.c
index fda4c6d6..877cf8dd 100644
--- a/src/ac_douzou.c
+++ b/src/actor/ac_douzou.c
@@ -146,9 +146,9 @@ static f32 xpostbl[mHS_HOUSE_NUM] = { 0.0f, 200.0f, -40.0f, 160.0f };
extern Vtx obj_s_douzou_shadow_v[];
extern Gfx obj_s_douzou_shadow_model[];
-static u8 aDOU_vtx_fix_flg_tbl[8] = { TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE };
+static u8 aDOU_shadow_vtx_fix_flg_table[8] = { TRUE, FALSE, TRUE, FALSE, TRUE, FALSE, TRUE, FALSE };
static bIT_ShadowData_c aDOU_shadow_data = {
- 8, aDOU_vtx_fix_flg_tbl,
+ 8, aDOU_shadow_vtx_fix_flg_table,
60.0f,
obj_s_douzou_shadow_v,
obj_s_douzou_shadow_model
@@ -191,5 +191,5 @@ static void aDOU_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&douzou->keyframe);
}
-#include "../src/ac_douzou_move.c_inc"
-#include "../src/ac_douzou_draw.c_inc"
+#include "../src/actor/ac_douzou_move.c_inc"
+#include "../src/actor/ac_douzou_draw.c_inc"
diff --git a/src/ac_douzou_draw.c_inc b/src/actor/ac_douzou_draw.c_inc
similarity index 95%
rename from src/ac_douzou_draw.c_inc
rename to src/actor/ac_douzou_draw.c_inc
index 5beadaff..fd4f81b9 100644
--- a/src/ac_douzou_draw.c_inc
+++ b/src/actor/ac_douzou_draw.c_inc
@@ -6,7 +6,7 @@
static int aDOU_actor_draw_before(GAME* game, cKF_SkeletonInfo_R_c* keyframe, int joint_idx, Gfx** joint_shape, u8* joint_flags, void* arg, s_xyz* joint_rot, xyz_t* joint_pos) {
- static rgba_t primcolor[mHS_HOUSE_NUM] = {
+ static rgba_t prmcolor[mHS_HOUSE_NUM] = {
{ 255, 255, 0, 255 },
{ 200, 200, 255, 255 },
{ 255, 100, 50, 255 },
@@ -64,7 +64,7 @@ static int aDOU_actor_draw_before(GAME* game, cKF_SkeletonInfo_R_c* keyframe, in
gfx = NOW_POLY_OPA_DISP;
gDPPipeSync(gfx++);
gDPSetEnvColor(gfx++, envcolor[color].r, envcolor[color].g, envcolor[color].b, 255);
- gDPSetPrimColor(gfx++, 0, 255, primcolor[color].r, primcolor[color].g, primcolor[color].b, primcolor[color].a);
+ gDPSetPrimColor(gfx++, 0, 255, prmcolor[color].r, prmcolor[color].g, prmcolor[color].b, prmcolor[color].a);
SET_POLY_OPA_DISP(gfx);
CLOSE_DISP(graph);
diff --git a/src/ac_douzou_move.c_inc b/src/actor/ac_douzou_move.c_inc
similarity index 100%
rename from src/ac_douzou_move.c_inc
rename to src/actor/ac_douzou_move.c_inc
diff --git a/src/ac_dummy.c b/src/actor/ac_dummy.c
similarity index 100%
rename from src/ac_dummy.c
rename to src/actor/ac_dummy.c
diff --git a/src/ac_dump.c b/src/actor/ac_dump.c
similarity index 100%
rename from src/ac_dump.c
rename to src/actor/ac_dump.c
diff --git a/src/ac_ev_broker.c b/src/actor/ac_ev_broker.c
similarity index 98%
rename from src/ac_ev_broker.c
rename to src/actor/ac_ev_broker.c
index 1dc867fa..04b93407 100644
--- a/src/ac_ev_broker.c
+++ b/src/actor/ac_ev_broker.c
@@ -103,4 +103,4 @@ static void aEBRK_actor_draw(ACTOR* actorx, GAME* game) {
Common_Get(clip).npc_clip->draw_proc(actorx, game);
}
-#include "../src/ac_ev_broker_move.c_inc"
+#include "../src/actor/ac_ev_broker_move.c_inc"
diff --git a/src/ac_ev_broker_move.c_inc b/src/actor/ac_ev_broker_move.c_inc
similarity index 100%
rename from src/ac_ev_broker_move.c_inc
rename to src/actor/ac_ev_broker_move.c_inc
diff --git a/src/ac_ev_castaway.c b/src/actor/ac_ev_castaway.c
similarity index 95%
rename from src/ac_ev_castaway.c
rename to src/actor/ac_ev_castaway.c
index 85a6dd0b..7fb80851 100644
--- a/src/ac_ev_castaway.c
+++ b/src/actor/ac_ev_castaway.c
@@ -69,9 +69,9 @@ static void aECST_schedule_main_proc(NPC_ACTOR* actorx, GAME_PLAY* play) {
}
static void aECST_schedule_proc(NPC_ACTOR* actorx, GAME_PLAY* play, int type) {
- static aNPC_SUB_PROC sched_proc[2] = { (aNPC_SUB_PROC)&none_proc1, aECST_schedule_main_proc };
+ static aNPC_SUB_PROC sche_proc[2] = { (aNPC_SUB_PROC)&none_proc1, aECST_schedule_main_proc };
- (*sched_proc[type])(actorx, play);
+ (*sche_proc[type])(actorx, play);
}
static void aECST_actor_move(ACTOR* actorx, GAME* game) {
diff --git a/src/ac_ev_dokutu.c b/src/actor/ac_ev_dokutu.c
similarity index 97%
rename from src/ac_ev_dokutu.c
rename to src/actor/ac_ev_dokutu.c
index 5bee6989..847671ce 100644
--- a/src/ac_ev_dokutu.c
+++ b/src/actor/ac_ev_dokutu.c
@@ -2,7 +2,7 @@
#include "m_common_data.h"
-#include "../src/ac_ev_dokutu_talk.c_inc"
+#include "../src/actor/ac_ev_dokutu_talk.c_inc"
static void aEVD_actor_ct(ACTOR* actorx, GAME* game);
static void aEVD_actor_dt(ACTOR* actorx, GAME* game);
diff --git a/src/ac_ev_dokutu_talk.c_inc b/src/actor/ac_ev_dokutu_talk.c_inc
similarity index 100%
rename from src/ac_ev_dokutu_talk.c_inc
rename to src/actor/ac_ev_dokutu_talk.c_inc
diff --git a/src/ac_ev_ghost.c b/src/actor/ac_ev_ghost.c
similarity index 98%
rename from src/ac_ev_ghost.c
rename to src/actor/ac_ev_ghost.c
index 1978d4b1..c3d61b26 100644
--- a/src/ac_ev_ghost.c
+++ b/src/actor/ac_ev_ghost.c
@@ -302,5 +302,5 @@ static void aEGH_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_ev_ghost_talk.c_inc"
-#include "../src/ac_ev_ghost_schedule.c_inc"
+#include "../src/actor/ac_ev_ghost_talk.c_inc"
+#include "../src/actor/ac_ev_ghost_schedule.c_inc"
diff --git a/src/ac_ev_ghost_schedule.c_inc b/src/actor/ac_ev_ghost_schedule.c_inc
similarity index 100%
rename from src/ac_ev_ghost_schedule.c_inc
rename to src/actor/ac_ev_ghost_schedule.c_inc
diff --git a/src/ac_ev_ghost_talk.c_inc b/src/actor/ac_ev_ghost_talk.c_inc
similarity index 100%
rename from src/ac_ev_ghost_talk.c_inc
rename to src/actor/ac_ev_ghost_talk.c_inc
diff --git a/src/ac_ev_gypsy.c b/src/actor/ac_ev_gypsy.c
similarity index 98%
rename from src/ac_ev_gypsy.c
rename to src/actor/ac_ev_gypsy.c
index a99ff63c..f958f15c 100644
--- a/src/ac_ev_gypsy.c
+++ b/src/actor/ac_ev_gypsy.c
@@ -90,4 +90,4 @@ static void aEGPS_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_ev_gypsy_move.c_inc"
+#include "../src/actor/ac_ev_gypsy_move.c_inc"
diff --git a/src/ac_ev_gypsy_move.c_inc b/src/actor/ac_ev_gypsy_move.c_inc
similarity index 100%
rename from src/ac_ev_gypsy_move.c_inc
rename to src/actor/ac_ev_gypsy_move.c_inc
diff --git a/src/ac_ev_kabuPeddler.c b/src/actor/ac_ev_kabuPeddler.c
similarity index 97%
rename from src/ac_ev_kabuPeddler.c
rename to src/actor/ac_ev_kabuPeddler.c
index 5b56a53b..75a36f2b 100644
--- a/src/ac_ev_kabuPeddler.c
+++ b/src/actor/ac_ev_kabuPeddler.c
@@ -81,4 +81,4 @@ static void aEKPD_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_ev_kabuPeddler_move.c_inc"
+#include "../src/actor/ac_ev_kabuPeddler_move.c_inc"
diff --git a/src/ac_ev_kabuPeddler_move.c_inc b/src/actor/ac_ev_kabuPeddler_move.c_inc
similarity index 100%
rename from src/ac_ev_kabuPeddler_move.c_inc
rename to src/actor/ac_ev_kabuPeddler_move.c_inc
diff --git a/src/ac_ev_majin.c b/src/actor/ac_ev_majin.c
similarity index 98%
rename from src/ac_ev_majin.c
rename to src/actor/ac_ev_majin.c
index 82a995ac..99ff9397 100644
--- a/src/ac_ev_majin.c
+++ b/src/actor/ac_ev_majin.c
@@ -70,4 +70,4 @@ void aEMJ_actor_draw(ACTOR* actor, GAME* game) {
Common_Get(clip.npc_clip)->draw_proc(actor, game);
}
-#include "../src/ac_ev_majin_move.c_inc"
+#include "../src/actor/ac_ev_majin_move.c_inc"
diff --git a/src/ac_ev_majin_move.c_inc b/src/actor/ac_ev_majin_move.c_inc
similarity index 100%
rename from src/ac_ev_majin_move.c_inc
rename to src/actor/ac_ev_majin_move.c_inc
diff --git a/src/ac_ev_santa.c b/src/actor/ac_ev_santa.c
similarity index 98%
rename from src/ac_ev_santa.c
rename to src/actor/ac_ev_santa.c
index a88a16f9..b6996fb8 100644
--- a/src/ac_ev_santa.c
+++ b/src/actor/ac_ev_santa.c
@@ -137,4 +137,4 @@ static void aESNT_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_ev_santa_move.c_inc"
+#include "../src/actor/ac_ev_santa_move.c_inc"
diff --git a/src/ac_ev_santa_move.c_inc b/src/actor/ac_ev_santa_move.c_inc
similarity index 100%
rename from src/ac_ev_santa_move.c_inc
rename to src/actor/ac_ev_santa_move.c_inc
diff --git a/src/ac_ev_soncho.c b/src/actor/ac_ev_soncho.c
similarity index 97%
rename from src/ac_ev_soncho.c
rename to src/actor/ac_ev_soncho.c
index 80cdeb6a..f844cbb8 100644
--- a/src/ac_ev_soncho.c
+++ b/src/actor/ac_ev_soncho.c
@@ -80,4 +80,4 @@ static void aESC_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_ev_soncho_talk.c_inc"
+#include "../src/actor/ac_ev_soncho_talk.c_inc"
diff --git a/src/ac_ev_soncho_talk.c_inc b/src/actor/ac_ev_soncho_talk.c_inc
similarity index 100%
rename from src/ac_ev_soncho_talk.c_inc
rename to src/actor/ac_ev_soncho_talk.c_inc
diff --git a/src/ac_fallS.c b/src/actor/ac_fallS.c
similarity index 88%
rename from src/ac_fallS.c
rename to src/actor/ac_fallS.c
index 5da6bd69..21fe6fa6 100644
--- a/src/ac_fallS.c
+++ b/src/actor/ac_fallS.c
@@ -29,6 +29,6 @@ ACTOR_PROFILE FallS_Profile = {
NULL,
};
-#include "../src/ac_fallS_move.c_inc"
+#include "../src/actor/ac_fallS_move.c_inc"
-#include "../src/ac_fallS_draw.c_inc"
+#include "../src/actor/ac_fallS_draw.c_inc"
diff --git a/src/ac_fallSESW.c b/src/actor/ac_fallSESW.c
similarity index 88%
rename from src/ac_fallSESW.c
rename to src/actor/ac_fallSESW.c
index 1b5c05b8..21012ebf 100644
--- a/src/ac_fallSESW.c
+++ b/src/actor/ac_fallSESW.c
@@ -29,6 +29,6 @@ ACTOR_PROFILE FallSESW_Profile = {
NULL,
};
-#include "../src/ac_fallSESW_move.c_inc"
+#include "../src/actor/ac_fallSESW_move.c_inc"
-#include "../src/ac_fallSESW_draw.c_inc"
+#include "../src/actor/ac_fallSESW_draw.c_inc"
diff --git a/src/ac_fallSESW_draw.c_inc b/src/actor/ac_fallSESW_draw.c_inc
similarity index 100%
rename from src/ac_fallSESW_draw.c_inc
rename to src/actor/ac_fallSESW_draw.c_inc
diff --git a/src/ac_fallSESW_move.c_inc b/src/actor/ac_fallSESW_move.c_inc
similarity index 100%
rename from src/ac_fallSESW_move.c_inc
rename to src/actor/ac_fallSESW_move.c_inc
diff --git a/src/ac_fallS_draw.c_inc b/src/actor/ac_fallS_draw.c_inc
similarity index 100%
rename from src/ac_fallS_draw.c_inc
rename to src/actor/ac_fallS_draw.c_inc
diff --git a/src/ac_fallS_move.c_inc b/src/actor/ac_fallS_move.c_inc
similarity index 100%
rename from src/ac_fallS_move.c_inc
rename to src/actor/ac_fallS_move.c_inc
diff --git a/src/ac_field_draw.c b/src/actor/ac_field_draw.c
similarity index 100%
rename from src/ac_field_draw.c
rename to src/actor/ac_field_draw.c
diff --git a/src/ac_flag.c b/src/actor/ac_flag.c
similarity index 100%
rename from src/ac_flag.c
rename to src/actor/ac_flag.c
diff --git a/src/ac_furniture_data.c_inc b/src/actor/ac_furniture_data.c_inc
similarity index 99%
rename from src/ac_furniture_data.c_inc
rename to src/actor/ac_furniture_data.c_inc
index bebf2289..93f37b5e 100644
--- a/src/ac_furniture_data.c_inc
+++ b/src/actor/ac_furniture_data.c_inc
@@ -15,7 +15,7 @@ static aFTR_size_info_c* aMR_furniture_size_table[] = {
&l_size_typeB_90, &l_size_typeB_180, &l_size_typeB_270, &l_size_typeB_0, &l_size_typeA, &l_size_typeC,
};
-#include "../src/ac_furniture_profile_data.c_inc"
+#include "../src/actor/ac_furniture_profile_data.c_inc"
// clang-format off
static u8 l_place_table[] = {
diff --git a/src/ac_furniture_profile_data.c_inc b/src/actor/ac_furniture_profile_data.c_inc
similarity index 100%
rename from src/ac_furniture_profile_data.c_inc
rename to src/actor/ac_furniture_profile_data.c_inc
diff --git a/src/ac_fuusen.c b/src/actor/ac_fuusen.c
similarity index 100%
rename from src/ac_fuusen.c
rename to src/actor/ac_fuusen.c
diff --git a/src/ac_go_home_npc.c b/src/actor/ac_go_home_npc.c
similarity index 100%
rename from src/ac_go_home_npc.c
rename to src/actor/ac_go_home_npc.c
diff --git a/src/ac_goza.c b/src/actor/ac_goza.c
similarity index 96%
rename from src/ac_goza.c
rename to src/actor/ac_goza.c
index 3cf4f2ab..9dfc6bd1 100644
--- a/src/ac_goza.c
+++ b/src/actor/ac_goza.c
@@ -105,6 +105,6 @@ static void aGOZ_actor_ct(ACTOR* actor, GAME* game) {
aGOZ_set_bgOffset(goza, 1);
}
-#include "../src/ac_goza_move.c_inc"
+#include "../src/actor/ac_goza_move.c_inc"
-#include "../src/ac_goza_draw.c_inc"
+#include "../src/actor/ac_goza_draw.c_inc"
diff --git a/src/ac_goza_draw.c_inc b/src/actor/ac_goza_draw.c_inc
similarity index 100%
rename from src/ac_goza_draw.c_inc
rename to src/actor/ac_goza_draw.c_inc
diff --git a/src/ac_goza_move.c_inc b/src/actor/ac_goza_move.c_inc
similarity index 100%
rename from src/ac_goza_move.c_inc
rename to src/actor/ac_goza_move.c_inc
diff --git a/src/ac_groundhog_control.c b/src/actor/ac_groundhog_control.c
similarity index 100%
rename from src/ac_groundhog_control.c
rename to src/actor/ac_groundhog_control.c
diff --git a/src/ac_gyoei_type.c_inc b/src/actor/ac_gyoei_type.c_inc
similarity index 100%
rename from src/ac_gyoei_type.c_inc
rename to src/actor/ac_gyoei_type.c_inc
diff --git a/src/ac_handOverItem.c b/src/actor/ac_handOverItem.c
similarity index 99%
rename from src/ac_handOverItem.c
rename to src/actor/ac_handOverItem.c
index 311a614e..0d8620e0 100644
--- a/src/ac_handOverItem.c
+++ b/src/actor/ac_handOverItem.c
@@ -658,13 +658,13 @@ static Gfx* vtx_DL_table[mNT_ITEM_TYPE_NUM] = {
};
/* Clip */
-#include "../src/ac_handOverItem_clip.c_inc"
+#include "../src/actor/ac_handOverItem_clip.c_inc"
/* Move */
-#include "../src/ac_handOverItem_move.c_inc"
+#include "../src/actor/ac_handOverItem_move.c_inc"
/* Draw */
-#include "../src/ac_handOverItem_draw.c_inc"
+#include "../src/actor/ac_handOverItem_draw.c_inc"
static void aHOI_actor_ct(ACTOR* actorx, GAME* game) {
aHOI_init_clip_area(actorx, game);
diff --git a/src/ac_handOverItem_clip.c_inc b/src/actor/ac_handOverItem_clip.c_inc
similarity index 100%
rename from src/ac_handOverItem_clip.c_inc
rename to src/actor/ac_handOverItem_clip.c_inc
diff --git a/src/ac_handOverItem_draw.c_inc b/src/actor/ac_handOverItem_draw.c_inc
similarity index 100%
rename from src/ac_handOverItem_draw.c_inc
rename to src/actor/ac_handOverItem_draw.c_inc
diff --git a/src/ac_handOverItem_move.c_inc b/src/actor/ac_handOverItem_move.c_inc
similarity index 100%
rename from src/ac_handOverItem_move.c_inc
rename to src/actor/ac_handOverItem_move.c_inc
diff --git a/src/ac_haniwa.c b/src/actor/ac_haniwa.c
similarity index 98%
rename from src/ac_haniwa.c
rename to src/actor/ac_haniwa.c
index 37cd434d..5b24b831 100644
--- a/src/ac_haniwa.c
+++ b/src/actor/ac_haniwa.c
@@ -78,7 +78,7 @@ static void aHNW_actor_dt(ACTOR* actor, GAME* game) {
ClObjPipe_dt(game, &haniwa->common_actor_class.col_pipe);
}
-#include "../src/ac_haniwa_move.c_inc"
+#include "../src/actor/ac_haniwa_move.c_inc"
static void aHNW_actor_draw(ACTOR* actor, GAME* game) {
static Gfx hnw_tex_model[] = {
diff --git a/src/ac_haniwa_move.c_inc b/src/actor/ac_haniwa_move.c_inc
similarity index 100%
rename from src/ac_haniwa_move.c_inc
rename to src/actor/ac_haniwa_move.c_inc
diff --git a/src/ac_ins_amenbo.c b/src/actor/ac_ins_amenbo.c
similarity index 100%
rename from src/ac_ins_amenbo.c
rename to src/actor/ac_ins_amenbo.c
diff --git a/src/ac_ins_batta.c b/src/actor/ac_ins_batta.c
similarity index 100%
rename from src/ac_ins_batta.c
rename to src/actor/ac_ins_batta.c
diff --git a/src/ac_ins_chou.c b/src/actor/ac_ins_chou.c
similarity index 100%
rename from src/ac_ins_chou.c
rename to src/actor/ac_ins_chou.c
diff --git a/src/ac_ins_dango.c b/src/actor/ac_ins_dango.c
similarity index 100%
rename from src/ac_ins_dango.c
rename to src/actor/ac_ins_dango.c
diff --git a/src/ac_ins_goki.c b/src/actor/ac_ins_goki.c
similarity index 100%
rename from src/ac_ins_goki.c
rename to src/actor/ac_ins_goki.c
diff --git a/src/ac_ins_hitodama.c b/src/actor/ac_ins_hitodama.c
similarity index 100%
rename from src/ac_ins_hitodama.c
rename to src/actor/ac_ins_hitodama.c
diff --git a/src/ac_ins_ka.c b/src/actor/ac_ins_ka.c
similarity index 100%
rename from src/ac_ins_ka.c
rename to src/actor/ac_ins_ka.c
diff --git a/src/ac_ins_kabuto.c b/src/actor/ac_ins_kabuto.c
similarity index 100%
rename from src/ac_ins_kabuto.c
rename to src/actor/ac_ins_kabuto.c
diff --git a/src/ac_insect.c b/src/actor/ac_insect.c
similarity index 91%
rename from src/ac_insect.c
rename to src/actor/ac_insect.c
index 4a374b69..dfa754fa 100644
--- a/src/ac_insect.c
+++ b/src/actor/ac_insect.c
@@ -46,10 +46,10 @@ ACTOR_PROFILE Insect_Profile = {
static void aINS_position_move(ACTOR* actorx);
-#include "../src/ac_insect_data.c_inc"
-#include "../src/ac_insect_clip.c_inc"
-#include "../src/ac_insect_move.c_inc"
-#include "../src/ac_insect_draw.c_inc"
+#include "../src/actor/ac_insect_data.c_inc"
+#include "../src/actor/ac_insect_clip.c_inc"
+#include "../src/actor/ac_insect_move.c_inc"
+#include "../src/actor/ac_insect_draw.c_inc"
static void aINS_actor_ct(ACTOR* actorx, GAME* game) {
aINS_CTRL_ACTOR* ctrl_actor = (aINS_CTRL_ACTOR*)actorx;
diff --git a/src/ac_insect_clip.c_inc b/src/actor/ac_insect_clip.c_inc
similarity index 100%
rename from src/ac_insect_clip.c_inc
rename to src/actor/ac_insect_clip.c_inc
diff --git a/src/ac_insect_data.c_inc b/src/actor/ac_insect_data.c_inc
similarity index 100%
rename from src/ac_insect_data.c_inc
rename to src/actor/ac_insect_data.c_inc
diff --git a/src/ac_insect_draw.c_inc b/src/actor/ac_insect_draw.c_inc
similarity index 100%
rename from src/ac_insect_draw.c_inc
rename to src/actor/ac_insect_draw.c_inc
diff --git a/src/ac_insect_move.c_inc b/src/actor/ac_insect_move.c_inc
similarity index 100%
rename from src/ac_insect_move.c_inc
rename to src/actor/ac_insect_move.c_inc
diff --git a/src/ac_intro_demo.c b/src/actor/ac_intro_demo.c
similarity index 98%
rename from src/ac_intro_demo.c
rename to src/actor/ac_intro_demo.c
index 83a54b03..394efd4f 100644
--- a/src/ac_intro_demo.c
+++ b/src/actor/ac_intro_demo.c
@@ -93,4 +93,4 @@ static void aID_actor_dt(ACTOR* actorx, GAME* game) {
}
}
-#include "../src/ac_intro_demo_move.c_inc"
+#include "../src/actor/ac_intro_demo_move.c_inc"
diff --git a/src/ac_intro_demo_move.c_inc b/src/actor/ac_intro_demo_move.c_inc
similarity index 100%
rename from src/ac_intro_demo_move.c_inc
rename to src/actor/ac_intro_demo_move.c_inc
diff --git a/src/ac_kago.c b/src/actor/ac_kago.c
similarity index 94%
rename from src/ac_kago.c
rename to src/actor/ac_kago.c
index 1cdb8f6f..7200bcbe 100644
--- a/src/ac_kago.c
+++ b/src/actor/ac_kago.c
@@ -47,6 +47,6 @@ static void aKAG_actor_ct(ACTOR* actor, GAME* game) {
aKAG_set_bgOffset(kago, 1);
}
-#include "../src/ac_kago_move.c_inc"
+#include "../src/actor/ac_kago_move.c_inc"
-#include "../src/ac_kago_draw.c_inc"
+#include "../src/actor/ac_kago_draw.c_inc"
diff --git a/src/ac_kago_draw.c_inc b/src/actor/ac_kago_draw.c_inc
similarity index 100%
rename from src/ac_kago_draw.c_inc
rename to src/actor/ac_kago_draw.c_inc
diff --git a/src/ac_kago_move.c_inc b/src/actor/ac_kago_move.c_inc
similarity index 100%
rename from src/ac_kago_move.c_inc
rename to src/actor/ac_kago_move.c_inc
diff --git a/src/ac_kamakura.c b/src/actor/ac_kamakura.c
similarity index 96%
rename from src/ac_kamakura.c
rename to src/actor/ac_kamakura.c
index 845bab26..c6a6d6d1 100644
--- a/src/ac_kamakura.c
+++ b/src/actor/ac_kamakura.c
@@ -93,6 +93,6 @@ static void aKKR_actor_dt(ACTOR* actor, GAME* game) {
change_FGUnit(kamakura, 0);
}
-#include "../src/ac_kamakura_move.c_inc"
+#include "../src/actor/ac_kamakura_move.c_inc"
-#include "../src/ac_kamakura_draw.c_inc"
+#include "../src/actor/ac_kamakura_draw.c_inc"
diff --git a/src/ac_kamakura_draw.c_inc b/src/actor/ac_kamakura_draw.c_inc
similarity index 100%
rename from src/ac_kamakura_draw.c_inc
rename to src/actor/ac_kamakura_draw.c_inc
diff --git a/src/ac_kamakura_move.c_inc b/src/actor/ac_kamakura_move.c_inc
similarity index 100%
rename from src/ac_kamakura_move.c_inc
rename to src/actor/ac_kamakura_move.c_inc
diff --git a/src/ac_koinobori.c b/src/actor/ac_koinobori.c
similarity index 81%
rename from src/ac_koinobori.c
rename to src/actor/ac_koinobori.c
index 87be99ff..7774c656 100644
--- a/src/ac_koinobori.c
+++ b/src/actor/ac_koinobori.c
@@ -7,18 +7,6 @@
#include "m_common_data.h"
#include "m_player_lib.h"
-#ifdef MUST_MATCH
-#ifndef __INTELLISENSE__
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-FORCESTRIP static u16 __hack_pal0[] = {
- #include "assets/aKOI_obj_e_koinobori_a_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal1[] = {
- #include "assets/obj_e_koinobori_b_pal.inc"
-};
-#endif
-#endif
-
enum {
aKOI_ACTION_WAIT,
};
@@ -78,6 +66,6 @@ static void aKOI_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&koinobori->structure_class.keyframe);
}
-#include "../src/ac_koinobori_move.c_inc"
+#include "../src/actor/ac_koinobori_move.c_inc"
-#include "../src/ac_koinobori_draw.c_inc"
+#include "../src/actor/ac_koinobori_draw.c_inc"
diff --git a/src/ac_koinobori_draw.c_inc b/src/actor/ac_koinobori_draw.c_inc
similarity index 100%
rename from src/ac_koinobori_draw.c_inc
rename to src/actor/ac_koinobori_draw.c_inc
diff --git a/src/ac_koinobori_move.c_inc b/src/actor/ac_koinobori_move.c_inc
similarity index 100%
rename from src/ac_koinobori_move.c_inc
rename to src/actor/ac_koinobori_move.c_inc
diff --git a/src/ac_lotus.c b/src/actor/ac_lotus.c
similarity index 68%
rename from src/ac_lotus.c
rename to src/actor/ac_lotus.c
index 6d3bfbc6..7413685b 100644
--- a/src/ac_lotus.c
+++ b/src/actor/ac_lotus.c
@@ -7,39 +7,6 @@
#include "m_common_data.h"
#include "m_player_lib.h"
-#ifdef MUST_MATCH
-#ifndef __INTELLISENSE__
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-FORCESTRIP static u16 __hack_pal0[] = {
- #include "assets/aLOT_obj_01_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal1[] = {
- #include "assets/obj_02_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal3[] = {
- #include "assets/obj_03_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal4[] = {
- #include "assets/obj_04_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal5[] = {
- #include "assets/obj_05_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal6[] = {
- #include "assets/obj_06_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal7[] = {
- #include "assets/obj_07_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal8[] = {
- #include "assets/obj_08_lotus_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal9[] = {
- #include "assets/obj_09_lotus_pal.inc"
-};
-#endif
-#endif
-
enum {
aLOT_ACTION_WAIT1,
aLOT_ACTION_WAIT2,
@@ -111,6 +78,6 @@ static void aLOT_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&lotus->structure_class.keyframe);
}
-#include "../src/ac_lotus_move.c_inc"
+#include "../src/actor/ac_lotus_move.c_inc"
-#include "../src/ac_lotus_draw.c_inc"
+#include "../src/actor/ac_lotus_draw.c_inc"
diff --git a/src/ac_lotus_draw.c_inc b/src/actor/ac_lotus_draw.c_inc
similarity index 100%
rename from src/ac_lotus_draw.c_inc
rename to src/actor/ac_lotus_draw.c_inc
diff --git a/src/ac_lotus_move.c_inc b/src/actor/ac_lotus_move.c_inc
similarity index 100%
rename from src/ac_lotus_move.c_inc
rename to src/actor/ac_lotus_move.c_inc
diff --git a/src/ac_mbg.c b/src/actor/ac_mbg.c
similarity index 100%
rename from src/ac_mbg.c
rename to src/actor/ac_mbg.c
diff --git a/src/ac_mikuji.c b/src/actor/ac_mikuji.c
similarity index 92%
rename from src/ac_mikuji.c
rename to src/actor/ac_mikuji.c
index 2029c3c0..4022db67 100644
--- a/src/ac_mikuji.c
+++ b/src/actor/ac_mikuji.c
@@ -48,5 +48,5 @@ static void aMIK_actor_ct(ACTOR* actor, GAME* game)
aMIK_set_bgOffset((MIKUJI_ACTOR*)actor, 1);
}
-#include "../src/ac_mikuji_move.c_inc"
-#include "../src/ac_mikuji_draw.c_inc"
+#include "../src/actor/ac_mikuji_move.c_inc"
+#include "../src/actor/ac_mikuji_draw.c_inc"
diff --git a/src/ac_mikuji_draw.c_inc b/src/actor/ac_mikuji_draw.c_inc
similarity index 100%
rename from src/ac_mikuji_draw.c_inc
rename to src/actor/ac_mikuji_draw.c_inc
diff --git a/src/ac_mikuji_move.c_inc b/src/actor/ac_mikuji_move.c_inc
similarity index 100%
rename from src/ac_mikuji_move.c_inc
rename to src/actor/ac_mikuji_move.c_inc
diff --git a/src/ac_misin.c b/src/actor/ac_misin.c
similarity index 100%
rename from src/ac_misin.c
rename to src/actor/ac_misin.c
diff --git a/src/ac_mural.c b/src/actor/ac_mural.c
similarity index 100%
rename from src/ac_mural.c
rename to src/actor/ac_mural.c
diff --git a/src/ac_museum.c b/src/actor/ac_museum.c
similarity index 100%
rename from src/ac_museum.c
rename to src/actor/ac_museum.c
diff --git a/src/ac_museum_fossil.c b/src/actor/ac_museum_fossil.c
similarity index 97%
rename from src/ac_museum_fossil.c
rename to src/actor/ac_museum_fossil.c
index 5d5f7f73..64fc37c8 100644
--- a/src/ac_museum_fossil.c
+++ b/src/actor/ac_museum_fossil.c
@@ -65,7 +65,7 @@ static void Museum_Fossil_Actor_draw(ACTOR* actorx, GAME* game) {
}
static void aMF_SetTalkInfo(ACTOR* actorx) {
- static rgba_t aMP_window_color = { 255, 255, 205, 255 };
+ static rgba_t aMF_window_color = { 255, 255, 205, 255 };
MUSEUM_FOSSIL_ACTOR* museum_fossil = (MUSEUM_FOSSIL_ACTOR*)actorx;
mDemo_Set_msg_num(museum_fossil->msg_no);
@@ -73,7 +73,7 @@ static void aMF_SetTalkInfo(ACTOR* actorx) {
mDemo_Set_ListenAble();
mDemo_Set_camera(CAMERA2_PROCESS_NORMAL);
mDemo_Set_use_zoom_sound(TRUE);
- mDemo_Set_talk_window_color(&aMP_window_color);
+ mDemo_Set_talk_window_color(&aMF_window_color);
mMsg_Set_continue_msg_num(mMsg_Get_base_window_p(), -1);
}
diff --git a/src/ac_museum_picture.c b/src/actor/ac_museum_picture.c
similarity index 100%
rename from src/ac_museum_picture.c
rename to src/actor/ac_museum_picture.c
diff --git a/src/ac_my_house.c b/src/actor/ac_my_house.c
similarity index 98%
rename from src/ac_my_house.c
rename to src/actor/ac_my_house.c
index a6bc4128..75d9fe28 100644
--- a/src/ac_my_house.c
+++ b/src/actor/ac_my_house.c
@@ -208,5 +208,5 @@ static void aMHS_actor_dt(ACTOR* actorx, GAME* game) {
actorx->world.position.z -= 20.0f;
}
-#include "../src/ac_my_house_move.c_inc"
-#include "../src/ac_my_house_draw.c_inc"
+#include "../src/actor/ac_my_house_move.c_inc"
+#include "../src/actor/ac_my_house_draw.c_inc"
diff --git a/src/ac_my_house_draw.c_inc b/src/actor/ac_my_house_draw.c_inc
similarity index 100%
rename from src/ac_my_house_draw.c_inc
rename to src/actor/ac_my_house_draw.c_inc
diff --git a/src/ac_my_house_move.c_inc b/src/actor/ac_my_house_move.c_inc
similarity index 100%
rename from src/ac_my_house_move.c_inc
rename to src/actor/ac_my_house_move.c_inc
diff --git a/src/ac_my_indoor.c b/src/actor/ac_my_indoor.c
similarity index 100%
rename from src/ac_my_indoor.c
rename to src/actor/ac_my_indoor.c
diff --git a/src/ac_my_room.c b/src/actor/ac_my_room.c
similarity index 99%
rename from src/ac_my_room.c
rename to src/actor/ac_my_room.c
index cd3e5c23..2ad40ec8 100644
--- a/src/ac_my_room.c
+++ b/src/actor/ac_my_room.c
@@ -131,8 +131,8 @@ ACTOR_PROFILE My_Room_Profile = {
};
// clang-format on
-#include "../src/ac_furniture_data.c_inc"
-#include "../src/ac_my_room_data.c_inc"
+#include "../src/actor/ac_furniture_data.c_inc"
+#include "../src/actor/ac_my_room_data.c_inc"
typedef struct my_room_work_s {
FTR_ACTOR* ftr_actor_list;
@@ -1461,7 +1461,7 @@ static int aMR_GetSceneFurnitureMax(void) {
return 3;
}
-#include "../src/ac_my_room_msg_ctrl.c_inc"
+#include "../src/actor/ac_my_room_msg_ctrl.c_inc"
static void aMR_SecureFurnitureRam(ACTOR* actorx) {
l_aMR_work.ftr_actor_list = (FTR_ACTOR*)zelda_malloc(l_aMR_work.list_size * sizeof(FTR_ACTOR));
@@ -1937,7 +1937,7 @@ static int aMR_PickupFtrLayer(void) {
return mCoBG_LAYER0;
}
-#include "../src/ac_my_room_goki.c_inc"
+#include "../src/actor/ac_my_room_goki.c_inc"
static void aMR_LeafStartPos(xyz_t* pos) {
static xyz_t leaf_start0 = { 0.0f, 0.0f, 0.0f };
@@ -2019,9 +2019,9 @@ static void My_Room_Actor_dt(ACTOR* actorx, GAME* game) {
}
}
-#include "../src/ac_my_room_melody.c_inc"
-#include "../src/ac_my_room_move.c_inc"
-#include "../src/ac_my_room_draw.c_inc"
+#include "../src/actor/ac_my_room_melody.c_inc"
+#include "../src/actor/ac_my_room_move.c_inc"
+#include "../src/actor/ac_my_room_draw.c_inc"
static void aMR_RedmaFtrBank(void) {
int i;
diff --git a/src/ac_my_room_action.c_inc b/src/actor/ac_my_room_action.c_inc
similarity index 100%
rename from src/ac_my_room_action.c_inc
rename to src/actor/ac_my_room_action.c_inc
diff --git a/src/ac_my_room_data.c_inc b/src/actor/ac_my_room_data.c_inc
similarity index 100%
rename from src/ac_my_room_data.c_inc
rename to src/actor/ac_my_room_data.c_inc
diff --git a/src/ac_my_room_draw.c_inc b/src/actor/ac_my_room_draw.c_inc
similarity index 100%
rename from src/ac_my_room_draw.c_inc
rename to src/actor/ac_my_room_draw.c_inc
diff --git a/src/ac_my_room_goki.c_inc b/src/actor/ac_my_room_goki.c_inc
similarity index 100%
rename from src/ac_my_room_goki.c_inc
rename to src/actor/ac_my_room_goki.c_inc
diff --git a/src/ac_my_room_melody.c_inc b/src/actor/ac_my_room_melody.c_inc
similarity index 100%
rename from src/ac_my_room_melody.c_inc
rename to src/actor/ac_my_room_melody.c_inc
diff --git a/src/ac_my_room_move.c_inc b/src/actor/ac_my_room_move.c_inc
similarity index 99%
rename from src/ac_my_room_move.c_inc
rename to src/actor/ac_my_room_move.c_inc
index 9b7b662b..54bb82ff 100644
--- a/src/ac_my_room_move.c_inc
+++ b/src/actor/ac_my_room_move.c_inc
@@ -1332,7 +1332,7 @@ static void aMR_MngFtrContactAction(ACTOR* actorx, GAME* game) {
}
}
-#include "../src/ac_my_room_action.c_inc"
+#include "../src/actor/ac_my_room_action.c_inc"
static f32 aMR_GetDistXZ(const xyz_t* pos0, const xyz_t* pos1) {
f32 diff_x = pos0->x - pos1->x;
diff --git a/src/ac_my_room_msg_ctrl.c_inc b/src/actor/ac_my_room_msg_ctrl.c_inc
similarity index 100%
rename from src/ac_my_room_msg_ctrl.c_inc
rename to src/actor/ac_my_room_msg_ctrl.c_inc
diff --git a/src/ac_nameplate.c b/src/actor/ac_nameplate.c
similarity index 100%
rename from src/ac_nameplate.c
rename to src/actor/ac_nameplate.c
diff --git a/src/ac_needlework_shop.c b/src/actor/ac_needlework_shop.c
similarity index 96%
rename from src/ac_needlework_shop.c
rename to src/actor/ac_needlework_shop.c
index 30c07cf2..944a53f2 100644
--- a/src/ac_needlework_shop.c
+++ b/src/actor/ac_needlework_shop.c
@@ -102,6 +102,6 @@ static void aNW_actor_dt(ACTOR* actor, GAME* game) {
actor->world.position.z -= 20.0f;
}
-#include "../src/ac_needlework_shop_move.c_inc"
+#include "../src/actor/ac_needlework_shop_move.c_inc"
-#include "../src/ac_needlework_shop_draw.c_inc"
+#include "../src/actor/ac_needlework_shop_draw.c_inc"
diff --git a/src/ac_needlework_shop_draw.c_inc b/src/actor/ac_needlework_shop_draw.c_inc
similarity index 100%
rename from src/ac_needlework_shop_draw.c_inc
rename to src/actor/ac_needlework_shop_draw.c_inc
diff --git a/src/ac_needlework_shop_move.c_inc b/src/actor/ac_needlework_shop_move.c_inc
similarity index 100%
rename from src/ac_needlework_shop_move.c_inc
rename to src/actor/ac_needlework_shop_move.c_inc
diff --git a/src/ac_npc_curator.c b/src/actor/ac_npc_curator.c
similarity index 98%
rename from src/ac_npc_curator.c
rename to src/actor/ac_npc_curator.c
index cf916c33..9ef37dfe 100644
--- a/src/ac_npc_curator.c
+++ b/src/actor/ac_npc_curator.c
@@ -123,4 +123,4 @@ static void aCR_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_npc_curator_move.c_inc"
+#include "../src/actor/ac_npc_curator_move.c_inc"
diff --git a/src/ac_npc_curator_move.c_inc b/src/actor/ac_npc_curator_move.c_inc
similarity index 99%
rename from src/ac_npc_curator_move.c_inc
rename to src/actor/ac_npc_curator_move.c_inc
index 99f76271..4e14cfbf 100644
--- a/src/ac_npc_curator_move.c_inc
+++ b/src/actor/ac_npc_curator_move.c_inc
@@ -155,9 +155,9 @@ static void aCR_schedule_main_proc(NPC_ACTOR* actorx, GAME_PLAY* play) {
typedef void (*aCR_SCHEDULE_PROC)(NPC_ACTOR*, GAME_PLAY*);
static void aCR_schedule_proc(NPC_ACTOR* actorx, GAME_PLAY* play, int proc_idx) {
- static aCR_SCHEDULE_PROC sched_proc[] = { &aCR_schedule_init_proc, &aCR_schedule_main_proc };
+ static aCR_SCHEDULE_PROC sche_proc[] = { &aCR_schedule_init_proc, &aCR_schedule_main_proc };
- (*sched_proc[proc_idx])(actorx, play);
+ (*sche_proc[proc_idx])(actorx, play);
}
enum {
diff --git a/src/ac_npc_engineer.c b/src/actor/ac_npc_engineer.c
similarity index 100%
rename from src/ac_npc_engineer.c
rename to src/actor/ac_npc_engineer.c
diff --git a/src/ac_npc_guide.c b/src/actor/ac_npc_guide.c
similarity index 97%
rename from src/ac_npc_guide.c
rename to src/actor/ac_npc_guide.c
index b8fc7bf4..17f731a6 100644
--- a/src/ac_npc_guide.c
+++ b/src/actor/ac_npc_guide.c
@@ -148,5 +148,5 @@ static void aNGD_actor_draw(ACTOR* actorx, GAME* game) {
Common_Get(clip).npc_clip->draw_proc(actorx, game);
}
-#include "../src/ac_npc_guide_animation.c_inc"
-#include "../src/ac_npc_guide_move.c_inc"
+#include "../src/actor/ac_npc_guide_animation.c_inc"
+#include "../src/actor/ac_npc_guide_move.c_inc"
diff --git a/src/ac_npc_guide2.c b/src/actor/ac_npc_guide2.c
similarity index 97%
rename from src/ac_npc_guide2.c
rename to src/actor/ac_npc_guide2.c
index 73008c9b..e8ff0fae 100644
--- a/src/ac_npc_guide2.c
+++ b/src/actor/ac_npc_guide2.c
@@ -134,5 +134,5 @@ static void aNG2_actor_draw(ACTOR* actorx, GAME* game) {
Common_Get(clip).npc_clip->draw_proc(actorx, game);
}
-#include "../src/ac_npc_guide2_animation.c_inc"
-#include "../src/ac_npc_guide2_move.c_inc"
+#include "../src/actor/ac_npc_guide2_animation.c_inc"
+#include "../src/actor/ac_npc_guide2_move.c_inc"
diff --git a/src/ac_npc_guide2_animation.c_inc b/src/actor/ac_npc_guide2_animation.c_inc
similarity index 100%
rename from src/ac_npc_guide2_animation.c_inc
rename to src/actor/ac_npc_guide2_animation.c_inc
diff --git a/src/ac_npc_guide2_move.c_inc b/src/actor/ac_npc_guide2_move.c_inc
similarity index 100%
rename from src/ac_npc_guide2_move.c_inc
rename to src/actor/ac_npc_guide2_move.c_inc
diff --git a/src/ac_npc_guide_animation.c_inc b/src/actor/ac_npc_guide_animation.c_inc
similarity index 100%
rename from src/ac_npc_guide_animation.c_inc
rename to src/actor/ac_npc_guide_animation.c_inc
diff --git a/src/ac_npc_guide_move.c_inc b/src/actor/ac_npc_guide_move.c_inc
similarity index 100%
rename from src/ac_npc_guide_move.c_inc
rename to src/actor/ac_npc_guide_move.c_inc
diff --git a/src/ac_npc_p_sel.c b/src/actor/ac_npc_p_sel.c
similarity index 98%
rename from src/ac_npc_p_sel.c
rename to src/actor/ac_npc_p_sel.c
index a92976f0..e5c7bb17 100644
--- a/src/ac_npc_p_sel.c
+++ b/src/actor/ac_npc_p_sel.c
@@ -158,5 +158,5 @@ static void aNPS_actor_draw(ACTOR* actorx, GAME* game) {
CLIP(npc_clip)->draw_proc(actorx, game);
}
-#include "../src/ac_npc_p_sel_schedule.c_inc"
-#include "../src/ac_npc_p_sel_talk.c_inc"
+#include "../src/actor/ac_npc_p_sel_schedule.c_inc"
+#include "../src/actor/ac_npc_p_sel_talk.c_inc"
diff --git a/src/ac_npc_p_sel_schedule.c_inc b/src/actor/ac_npc_p_sel_schedule.c_inc
similarity index 100%
rename from src/ac_npc_p_sel_schedule.c_inc
rename to src/actor/ac_npc_p_sel_schedule.c_inc
diff --git a/src/ac_npc_p_sel_talk.c_inc b/src/actor/ac_npc_p_sel_talk.c_inc
similarity index 100%
rename from src/ac_npc_p_sel_talk.c_inc
rename to src/actor/ac_npc_p_sel_talk.c_inc
diff --git a/src/ac_npc_rcn_guide.c b/src/actor/ac_npc_rcn_guide.c
similarity index 96%
rename from src/ac_npc_rcn_guide.c
rename to src/actor/ac_npc_rcn_guide.c
index 97c9b91e..7803e062 100644
--- a/src/ac_npc_rcn_guide.c
+++ b/src/actor/ac_npc_rcn_guide.c
@@ -157,6 +157,6 @@ static void aNRG_actor_draw(ACTOR* actorx, GAME* game) {
Common_Get(clip).npc_clip->draw_proc(actorx, game);
}
-#include "../src/ac_npc_rcn_guide_move.c_inc"
-#include "../src/ac_npc_rcn_guide_talk.c_inc"
-#include "../src/ac_npc_rcn_guide_schedule.c_inc"
+#include "../src/actor/ac_npc_rcn_guide_move.c_inc"
+#include "../src/actor/ac_npc_rcn_guide_talk.c_inc"
+#include "../src/actor/ac_npc_rcn_guide_schedule.c_inc"
diff --git a/src/ac_npc_rcn_guide2.c b/src/actor/ac_npc_rcn_guide2.c
similarity index 97%
rename from src/ac_npc_rcn_guide2.c
rename to src/actor/ac_npc_rcn_guide2.c
index 95531d34..7f435616 100644
--- a/src/ac_npc_rcn_guide2.c
+++ b/src/actor/ac_npc_rcn_guide2.c
@@ -224,6 +224,6 @@ static void aNRG2_actor_draw(ACTOR* actorx, GAME* game) {
Common_Get(clip).npc_clip->draw_proc(actorx, game);
}
-#include "../src/ac_npc_rcn_guide2_move.c_inc"
-#include "../src/ac_npc_rcn_guide2_talk.c_inc"
-#include "../src/ac_npc_rcn_guide2_schedule.c_inc"
+#include "../src/actor/ac_npc_rcn_guide2_move.c_inc"
+#include "../src/actor/ac_npc_rcn_guide2_talk.c_inc"
+#include "../src/actor/ac_npc_rcn_guide2_schedule.c_inc"
diff --git a/src/ac_npc_rcn_guide2_move.c_inc b/src/actor/ac_npc_rcn_guide2_move.c_inc
similarity index 100%
rename from src/ac_npc_rcn_guide2_move.c_inc
rename to src/actor/ac_npc_rcn_guide2_move.c_inc
diff --git a/src/ac_npc_rcn_guide2_schedule.c_inc b/src/actor/ac_npc_rcn_guide2_schedule.c_inc
similarity index 100%
rename from src/ac_npc_rcn_guide2_schedule.c_inc
rename to src/actor/ac_npc_rcn_guide2_schedule.c_inc
diff --git a/src/ac_npc_rcn_guide2_talk.c_inc b/src/actor/ac_npc_rcn_guide2_talk.c_inc
similarity index 99%
rename from src/ac_npc_rcn_guide2_talk.c_inc
rename to src/actor/ac_npc_rcn_guide2_talk.c_inc
index fdabbd42..136ad22d 100644
--- a/src/ac_npc_rcn_guide2_talk.c_inc
+++ b/src/actor/ac_npc_rcn_guide2_talk.c_inc
@@ -59,7 +59,7 @@ static void aNRG2_set_str_proc(void) {
static void aNRG2_set_possession(void) {
// clang-format off
- static mActor_name_t set_item[] = {
+ static mActor_name_t set_itemNo[] = {
ITM_CLOTH016,
ITM_WHITE_PANSY_BAG,
EMPTY_NO,
@@ -101,14 +101,14 @@ static void aNRG2_set_possession(void) {
case aNRG2_JOB7:
case aNRG2_JOB8:
/* Set the static job item with normal condition */
- mPr_SetFreePossessionItem(Now_Private, set_item[job_kind], mPr_ITEM_COND_NORMAL);
+ mPr_SetFreePossessionItem(Now_Private, set_itemNo[job_kind], mPr_ITEM_COND_NORMAL);
break;
case aNRG2_JOB2:
case aNRG2_JOB6:
case aNRG2_JOB9:
default:
/* Set the static job item with quest condition */
- mPr_SetFreePossessionItem(Now_Private, set_item[job_kind], mPr_ITEM_COND_QUEST);
+ mPr_SetFreePossessionItem(Now_Private, set_itemNo[job_kind], mPr_ITEM_COND_QUEST);
break;
case aNRG2_JOB10:
case aNRG2_JOB11:
diff --git a/src/ac_npc_rcn_guide_move.c_inc b/src/actor/ac_npc_rcn_guide_move.c_inc
similarity index 100%
rename from src/ac_npc_rcn_guide_move.c_inc
rename to src/actor/ac_npc_rcn_guide_move.c_inc
diff --git a/src/ac_npc_rcn_guide_schedule.c_inc b/src/actor/ac_npc_rcn_guide_schedule.c_inc
similarity index 100%
rename from src/ac_npc_rcn_guide_schedule.c_inc
rename to src/actor/ac_npc_rcn_guide_schedule.c_inc
diff --git a/src/ac_npc_rcn_guide_talk.c_inc b/src/actor/ac_npc_rcn_guide_talk.c_inc
similarity index 100%
rename from src/ac_npc_rcn_guide_talk.c_inc
rename to src/actor/ac_npc_rcn_guide_talk.c_inc
diff --git a/src/ac_npc_rtc.c b/src/actor/ac_npc_rtc.c
similarity index 98%
rename from src/ac_npc_rtc.c
rename to src/actor/ac_npc_rtc.c
index cf9a772a..bdc2fce1 100644
--- a/src/ac_npc_rtc.c
+++ b/src/actor/ac_npc_rtc.c
@@ -161,5 +161,5 @@ static void aNRTC_actor_draw(ACTOR* actor, GAME* game) {
Common_Get(clip.npc_clip)->draw_proc(actor, game);
}
-#include "../src/ac_npc_rtc_think.c.inc"
-#include "../src/ac_npc_rtc_talk.c.inc"
+#include "../src/actor/ac_npc_rtc_think.c.inc"
+#include "../src/actor/ac_npc_rtc_talk.c.inc"
diff --git a/src/ac_npc_rtc_talk.c.inc b/src/actor/ac_npc_rtc_talk.c.inc
similarity index 100%
rename from src/ac_npc_rtc_talk.c.inc
rename to src/actor/ac_npc_rtc_talk.c.inc
diff --git a/src/ac_npc_rtc_think.c.inc b/src/actor/ac_npc_rtc_think.c.inc
similarity index 100%
rename from src/ac_npc_rtc_think.c.inc
rename to src/actor/ac_npc_rtc_think.c.inc
diff --git a/src/ac_npc_sendo.c b/src/actor/ac_npc_sendo.c
similarity index 97%
rename from src/ac_npc_sendo.c
rename to src/actor/ac_npc_sendo.c
index fc8d40b9..d5063f61 100644
--- a/src/ac_npc_sendo.c
+++ b/src/actor/ac_npc_sendo.c
@@ -82,4 +82,4 @@ static void aSEN_actor_draw(ACTOR* actorx, GAME* game) {
(*Common_Get(clip).npc_clip->draw_proc)(actorx, game);
}
-#include "../src/ac_npc_sendo_move.c_inc"
+#include "../src/actor/ac_npc_sendo_move.c_inc"
diff --git a/src/ac_npc_sendo_move.c_inc b/src/actor/ac_npc_sendo_move.c_inc
similarity index 100%
rename from src/ac_npc_sendo_move.c_inc
rename to src/actor/ac_npc_sendo_move.c_inc
diff --git a/src/ac_police_box.c b/src/actor/ac_police_box.c
similarity index 95%
rename from src/ac_police_box.c
rename to src/actor/ac_police_box.c
index ba33ef4e..e41fe17c 100644
--- a/src/ac_police_box.c
+++ b/src/actor/ac_police_box.c
@@ -86,6 +86,6 @@ static void aPBOX_actor_ct(ACTOR* actor, GAME* game) {
}
}
-#include "../src/ac_police_box_move.c_inc"
+#include "../src/actor/ac_police_box_move.c_inc"
-#include "../src/ac_police_box_draw.c_inc"
+#include "../src/actor/ac_police_box_draw.c_inc"
diff --git a/src/ac_police_box_draw.c_inc b/src/actor/ac_police_box_draw.c_inc
similarity index 100%
rename from src/ac_police_box_draw.c_inc
rename to src/actor/ac_police_box_draw.c_inc
diff --git a/src/ac_police_box_move.c_inc b/src/actor/ac_police_box_move.c_inc
similarity index 100%
rename from src/ac_police_box_move.c_inc
rename to src/actor/ac_police_box_move.c_inc
diff --git a/src/ac_post_office.c b/src/actor/ac_post_office.c
similarity index 96%
rename from src/ac_post_office.c
rename to src/actor/ac_post_office.c
index d7623b4c..578052b0 100644
--- a/src/ac_post_office.c
+++ b/src/actor/ac_post_office.c
@@ -112,6 +112,6 @@ static void aPOFF_actor_dt(ACTOR* actor, GAME* game) {
actor->world.position.z -= 20.0f;
}
-#include "../src/ac_post_office_move.c_inc"
+#include "../src/actor/ac_post_office_move.c_inc"
-#include "../src/ac_post_office_draw.c_inc"
+#include "../src/actor/ac_post_office_draw.c_inc"
diff --git a/src/ac_post_office_draw.c_inc b/src/actor/ac_post_office_draw.c_inc
similarity index 100%
rename from src/ac_post_office_draw.c_inc
rename to src/actor/ac_post_office_draw.c_inc
diff --git a/src/ac_post_office_move.c_inc b/src/actor/ac_post_office_move.c_inc
similarity index 100%
rename from src/ac_post_office_move.c_inc
rename to src/actor/ac_post_office_move.c_inc
diff --git a/src/ac_psnowman.c b/src/actor/ac_psnowman.c
similarity index 100%
rename from src/ac_psnowman.c
rename to src/actor/ac_psnowman.c
diff --git a/src/ac_quest_contest.c_inc b/src/actor/ac_quest_contest.c_inc
similarity index 98%
rename from src/ac_quest_contest.c_inc
rename to src/actor/ac_quest_contest.c_inc
index 6d70f3e9..22a39ccb 100644
--- a/src/ac_quest_contest.c_inc
+++ b/src/actor/ac_quest_contest.c_inc
@@ -4,7 +4,7 @@ static void aQMgr_actor_check_limit_and_clear_quest(mQst_contest_c* contest) {
}
}
-static void aQMgr_contest_check_limit(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist) {
+static void aQMgr_actor_contest_check_limit(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist) {
aQMgr_actor_check_limit_and_clear_quest((mQst_contest_c*)regist->quest_info);
}
diff --git a/src/ac_quest_errand.c_inc b/src/actor/ac_quest_errand.c_inc
similarity index 100%
rename from src/ac_quest_errand.c_inc
rename to src/actor/ac_quest_errand.c_inc
diff --git a/src/ac_quest_manager.c b/src/actor/ac_quest_manager.c
similarity index 99%
rename from src/ac_quest_manager.c
rename to src/actor/ac_quest_manager.c
index a3913f0e..218a1ef0 100644
--- a/src/ac_quest_manager.c
+++ b/src/actor/ac_quest_manager.c
@@ -343,7 +343,7 @@ static void aQMgr_move_own_errand_seed(QUEST_MANAGER_ACTOR* manager, aQMgr_regis
static void aQMgr_move_own_errand_letter(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist);
static void aQMgr_move_own_errand_hello(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist);
-static void aQMgr_contest_check_limit(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist) ;
+static void aQMgr_actor_contest_check_limit(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist) ;
static int aQMgr_actor_check_fin_fruit(mQst_base_c* quest_info, Animal_c* animal);
static int aQMgr_actor_check_fin_soccer(mQst_base_c* quest_info, Animal_c* animal);
static void aQMgr_actor_contest_snowman_clear(QUEST_MANAGER_ACTOR* manager, aQMgr_regist_c* regist);
@@ -378,13 +378,13 @@ static aQMgr_CHECK_LIMIT_PROC l_errand_proc[mQst_ERRAND_NUM] = {
};
static aQMgr_CHECK_LIMIT_PROC l_contest_proc[mQst_CONTEST_KIND_NUM] = {
- &aQMgr_contest_check_limit,
- &aQMgr_contest_check_limit,
+ &aQMgr_actor_contest_check_limit,
+ &aQMgr_actor_contest_check_limit,
&aQMgr_actor_contest_snowman_clear,
&aQMgr_actor_contest_flower_clear,
- &aQMgr_contest_check_limit,
+ &aQMgr_actor_contest_check_limit,
&aQMgr_actor_contest_insect_clear,
- &aQMgr_contest_check_limit
+ &aQMgr_actor_contest_check_limit
};
static aQMgr_CHECK_FINISH_PROC l_contest_check[mQst_CONTEST_KIND_NUM] = {
@@ -1033,8 +1033,8 @@ static int aQMgr_talk_common_proc(QUEST_MANAGER_ACTOR* manager, int proc) {
return (*common_proc[proc])(manager);
}
-#include "../src/ac_quest_errand.c_inc"
-#include "../src/ac_quest_contest.c_inc"
+#include "../src/actor/ac_quest_errand.c_inc"
+#include "../src/actor/ac_quest_contest.c_inc"
static void aQMgr_clear_talk_wait_info(aQMgr_talk_wait_info_c* wait_info) {
bzero(wait_info, sizeof(aQMgr_talk_wait_info_c));
diff --git a/src/ac_quest_talk_fj_init.c b/src/actor/ac_quest_talk_fj_init.c
similarity index 100%
rename from src/ac_quest_talk_fj_init.c
rename to src/actor/ac_quest_talk_fj_init.c
diff --git a/src/ac_quest_talk_greeting.c b/src/actor/ac_quest_talk_greeting.c
similarity index 100%
rename from src/ac_quest_talk_greeting.c
rename to src/actor/ac_quest_talk_greeting.c
diff --git a/src/ac_quest_talk_init.c b/src/actor/ac_quest_talk_init.c
similarity index 100%
rename from src/ac_quest_talk_init.c
rename to src/actor/ac_quest_talk_init.c
diff --git a/src/ac_radio.c b/src/actor/ac_radio.c
similarity index 93%
rename from src/ac_radio.c
rename to src/actor/ac_radio.c
index e2d781d2..1d3a072e 100644
--- a/src/ac_radio.c
+++ b/src/actor/ac_radio.c
@@ -52,6 +52,6 @@ static void aRAD_actor_ct(ACTOR* actor, GAME* game){
aRAD_set_bgOffset(radio, 1);
}
-#include "../src/ac_radio_move.c_inc"
+#include "../src/actor/ac_radio_move.c_inc"
-#include "../src/ac_radio_draw.c_inc"
+#include "../src/actor/ac_radio_draw.c_inc"
diff --git a/src/ac_radio_draw.c_inc b/src/actor/ac_radio_draw.c_inc
similarity index 100%
rename from src/ac_radio_draw.c_inc
rename to src/actor/ac_radio_draw.c_inc
diff --git a/src/ac_radio_move.c_inc b/src/actor/ac_radio_move.c_inc
similarity index 95%
rename from src/ac_radio_move.c_inc
rename to src/actor/ac_radio_move.c_inc
index 9270e19e..04c470e2 100644
--- a/src/ac_radio_move.c_inc
+++ b/src/actor/ac_radio_move.c_inc
@@ -22,9 +22,9 @@ static void aRAD_wait(RADIO_ACTOR* radio, GAME_PLAY* play){
}
static void aRAD_setup_action(RADIO_ACTOR* radio, int action){
- static RADIO_PROC proc[] = {aRAD_wait};
+ static RADIO_PROC process[] = {aRAD_wait};
- radio->proc = proc[action];
+ radio->proc = process[action];
radio->current_action = action;
}
diff --git a/src/ac_reserve.c b/src/actor/ac_reserve.c
similarity index 94%
rename from src/ac_reserve.c
rename to src/actor/ac_reserve.c
index 3f60e511..2786e0bd 100644
--- a/src/ac_reserve.c
+++ b/src/actor/ac_reserve.c
@@ -59,5 +59,5 @@ static bIT_ShadowData_c aRSV_kappa_shadow_data = {
4, aRSV_shadow_vtx_fix_flg_table, 60.0f, obj_attention_shadow_v, obj_attention_shadowT_model,
};
-#include "../src/ac_reserve_move.c_inc"
-#include "../src/ac_reserve_draw.c_inc"
+#include "../src/actor/ac_reserve_move.c_inc"
+#include "../src/actor/ac_reserve_draw.c_inc"
diff --git a/src/ac_reserve_draw.c_inc b/src/actor/ac_reserve_draw.c_inc
similarity index 100%
rename from src/ac_reserve_draw.c_inc
rename to src/actor/ac_reserve_draw.c_inc
diff --git a/src/ac_reserve_move.c_inc b/src/actor/ac_reserve_move.c_inc
similarity index 100%
rename from src/ac_reserve_move.c_inc
rename to src/actor/ac_reserve_move.c_inc
diff --git a/src/ac_ride_off_demo.c b/src/actor/ac_ride_off_demo.c
similarity index 95%
rename from src/ac_ride_off_demo.c
rename to src/actor/ac_ride_off_demo.c
index bf506be6..af1d6b07 100644
--- a/src/ac_ride_off_demo.c
+++ b/src/actor/ac_ride_off_demo.c
@@ -42,4 +42,4 @@ static void aROD_actor_dt(ACTOR* actor, GAME* game) {
}
}
-#include "../src/ac_ride_off_demo_move.c_inc"
+#include "../src/actor/ac_ride_off_demo_move.c_inc"
diff --git a/src/ac_ride_off_demo_move.c_inc b/src/actor/ac_ride_off_demo_move.c_inc
similarity index 100%
rename from src/ac_ride_off_demo_move.c_inc
rename to src/actor/ac_ride_off_demo_move.c_inc
diff --git a/src/ac_rope.c b/src/actor/ac_rope.c
similarity index 100%
rename from src/ac_rope.c
rename to src/actor/ac_rope.c
diff --git a/src/ac_s_car.c b/src/actor/ac_s_car.c
similarity index 95%
rename from src/ac_s_car.c
rename to src/actor/ac_s_car.c
index b951255f..aae9f40c 100644
--- a/src/ac_s_car.c
+++ b/src/actor/ac_s_car.c
@@ -57,6 +57,6 @@ static void aSCR_actor_dt(ACTOR* actor, GAME* game) {
}
}
-#include "../src/ac_s_car_move.c_inc"
+#include "../src/actor/ac_s_car_move.c_inc"
-#include "../src/ac_s_car_draw.c_inc"
+#include "../src/actor/ac_s_car_draw.c_inc"
diff --git a/src/ac_s_car_draw.c_inc b/src/actor/ac_s_car_draw.c_inc
similarity index 100%
rename from src/ac_s_car_draw.c_inc
rename to src/actor/ac_s_car_draw.c_inc
diff --git a/src/ac_s_car_move.c_inc b/src/actor/ac_s_car_move.c_inc
similarity index 100%
rename from src/ac_s_car_move.c_inc
rename to src/actor/ac_s_car_move.c_inc
diff --git a/src/ac_sample.c b/src/actor/ac_sample.c
similarity index 100%
rename from src/ac_sample.c
rename to src/actor/ac_sample.c
diff --git a/src/ac_set_manager.c b/src/actor/ac_set_manager.c
similarity index 100%
rename from src/ac_set_manager.c
rename to src/actor/ac_set_manager.c
diff --git a/src/ac_set_ovl_gyoei.c b/src/actor/ac_set_ovl_gyoei.c
similarity index 100%
rename from src/ac_set_ovl_gyoei.c
rename to src/actor/ac_set_ovl_gyoei.c
diff --git a/src/ac_set_ovl_insect.c b/src/actor/ac_set_ovl_insect.c
similarity index 100%
rename from src/ac_set_ovl_insect.c
rename to src/actor/ac_set_ovl_insect.c
diff --git a/src/ac_shop.c b/src/actor/ac_shop.c
similarity index 97%
rename from src/ac_shop.c
rename to src/actor/ac_shop.c
index bf639e61..ac655188 100644
--- a/src/ac_shop.c
+++ b/src/actor/ac_shop.c
@@ -132,6 +132,6 @@ static void aSHOP_actor_dt(ACTOR* actor, GAME* game) {
actor->world.position.z = actor->world.position.z - 20.0f;
}
-#include "../src/ac_shop_move.c_inc"
+#include "../src/actor/ac_shop_move.c_inc"
-#include "../src/ac_shop_draw.c_inc"
+#include "../src/actor/ac_shop_draw.c_inc"
diff --git a/src/ac_shop_design.c b/src/actor/ac_shop_design.c
similarity index 100%
rename from src/ac_shop_design.c
rename to src/actor/ac_shop_design.c
diff --git a/src/ac_shop_draw.c_inc b/src/actor/ac_shop_draw.c_inc
similarity index 100%
rename from src/ac_shop_draw.c_inc
rename to src/actor/ac_shop_draw.c_inc
diff --git a/src/ac_shop_goods.c b/src/actor/ac_shop_goods.c
similarity index 99%
rename from src/ac_shop_goods.c
rename to src/actor/ac_shop_goods.c
index a3155114..0ac393c1 100644
--- a/src/ac_shop_goods.c
+++ b/src/actor/ac_shop_goods.c
@@ -30,7 +30,7 @@ ACTOR_PROFILE Shop_Goods_Profile = {
#define aSG_DATA_ROTATE_Y_FLAG (1 << 0)
-#include "../src/ac_shop_goods_data.c_inc"
+#include "../src/actor/ac_shop_goods_data.c_inc"
#define aSG_SCALE_FLAG (1 << 0)
diff --git a/src/ac_shop_goods_data.c_inc b/src/actor/ac_shop_goods_data.c_inc
similarity index 100%
rename from src/ac_shop_goods_data.c_inc
rename to src/actor/ac_shop_goods_data.c_inc
diff --git a/src/ac_shop_indoor.c b/src/actor/ac_shop_indoor.c
similarity index 100%
rename from src/ac_shop_indoor.c
rename to src/actor/ac_shop_indoor.c
diff --git a/src/ac_shop_level.c b/src/actor/ac_shop_level.c
similarity index 100%
rename from src/ac_shop_level.c
rename to src/actor/ac_shop_level.c
diff --git a/src/ac_shop_move.c_inc b/src/actor/ac_shop_move.c_inc
similarity index 100%
rename from src/ac_shop_move.c_inc
rename to src/actor/ac_shop_move.c_inc
diff --git a/src/ac_shrine.c b/src/actor/ac_shrine.c
similarity index 95%
rename from src/ac_shrine.c
rename to src/actor/ac_shrine.c
index 904a2a3f..cf24a3b6 100644
--- a/src/ac_shrine.c
+++ b/src/actor/ac_shrine.c
@@ -115,6 +115,6 @@ static void aSHR_actor_dt(ACTOR* actorx, GAME* game) {
cKF_SkeletonInfo_R_dt(&shrine->structure_class.keyframe);
}
-#include "../src/ac_shrine_clip.c_inc"
-#include "../src/ac_shrine_move.c_inc"
-#include "../src/ac_shrine_draw.c_inc"
+#include "../src/actor/ac_shrine_clip.c_inc"
+#include "../src/actor/ac_shrine_move.c_inc"
+#include "../src/actor/ac_shrine_draw.c_inc"
diff --git a/src/ac_shrine_clip.c_inc b/src/actor/ac_shrine_clip.c_inc
similarity index 100%
rename from src/ac_shrine_clip.c_inc
rename to src/actor/ac_shrine_clip.c_inc
diff --git a/src/ac_shrine_draw.c_inc b/src/actor/ac_shrine_draw.c_inc
similarity index 100%
rename from src/ac_shrine_draw.c_inc
rename to src/actor/ac_shrine_draw.c_inc
diff --git a/src/ac_shrine_move.c_inc b/src/actor/ac_shrine_move.c_inc
similarity index 100%
rename from src/ac_shrine_move.c_inc
rename to src/actor/ac_shrine_move.c_inc
diff --git a/src/ac_sign.c b/src/actor/ac_sign.c
similarity index 100%
rename from src/ac_sign.c
rename to src/actor/ac_sign.c
diff --git a/src/ac_structure.c b/src/actor/ac_structure.c
similarity index 97%
rename from src/ac_structure.c
rename to src/actor/ac_structure.c
index 206526f4..e87237b0 100644
--- a/src/ac_structure.c
+++ b/src/actor/ac_structure.c
@@ -25,7 +25,7 @@ ACTOR_PROFILE Structure_Profile = { mAc_PROFILE_STRUCTURE,
static u8 aSTR_overlay[aSTR_ACTOR_TBL_COUNT][aSTR_OVERLAY_SIZE];
static STRUCTURE_ACTOR aSTR_actor_cl[aSTR_ACTOR_TBL_COUNT];
-#include "../src/ac_structure_clip.c_inc"
+#include "../src/actor/ac_structure_clip.c_inc"
static void aSTR_actor_ct(ACTOR* actor, GAME* game) {
STRUCTURE_CONTROL_ACTOR* structure = (STRUCTURE_CONTROL_ACTOR*)actor;
diff --git a/src/ac_structure_clip.c_inc b/src/actor/ac_structure_clip.c_inc
similarity index 100%
rename from src/ac_structure_clip.c_inc
rename to src/actor/ac_structure_clip.c_inc
diff --git a/src/ac_tama.c b/src/actor/ac_tama.c
similarity index 91%
rename from src/ac_tama.c
rename to src/actor/ac_tama.c
index 80e50890..ef8d6eb2 100644
--- a/src/ac_tama.c
+++ b/src/actor/ac_tama.c
@@ -34,6 +34,6 @@ static void aTAM_actor_ct(ACTOR* actorx, GAME* game) {
tama->structure_class.structure_pal = aSTR_PAL_KAGO_R + tama->structure_class.action;
}
-#include "../src/ac_tama_move.c_inc"
+#include "../src/actor/ac_tama_move.c_inc"
-#include "../src/ac_tama_draw.c_inc"
+#include "../src/actor/ac_tama_draw.c_inc"
diff --git a/src/ac_tama_draw.c_inc b/src/actor/ac_tama_draw.c_inc
similarity index 100%
rename from src/ac_tama_draw.c_inc
rename to src/actor/ac_tama_draw.c_inc
diff --git a/src/ac_tama_move.c_inc b/src/actor/ac_tama_move.c_inc
similarity index 100%
rename from src/ac_tama_move.c_inc
rename to src/actor/ac_tama_move.c_inc
diff --git a/src/ac_tent.c b/src/actor/ac_tent.c
similarity index 98%
rename from src/ac_tent.c
rename to src/actor/ac_tent.c
index bce9c0eb..d56cdc05 100644
--- a/src/ac_tent.c
+++ b/src/actor/ac_tent.c
@@ -21,13 +21,13 @@ ACTOR_PROFILE Tent_Profile = {
extern Vtx obj_s_tent_shadow_v[];
extern Gfx obj_s_tent_shadow_modelT[];
-u8 aTNT_shadow_vtx_fix_flg_table[] = {
+u8 aTnt_shadow_vtx_fix_flg_table[] = {
FALSE, FALSE, FALSE, FALSE, FALSE, FALSE, TRUE, TRUE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE,
TRUE, FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, TRUE, FALSE, FALSE, TRUE, TRUE, FALSE,
};
bIT_ShadowData_c aTnt_shadow_data = {
- 28, aTNT_shadow_vtx_fix_flg_table, 60.0f, obj_s_tent_shadow_v, obj_s_tent_shadow_modelT,
+ 28, aTnt_shadow_vtx_fix_flg_table, 60.0f, obj_s_tent_shadow_v, obj_s_tent_shadow_modelT,
};
Door_data_c aTnt_tent_enter_data = {
diff --git a/src/ac_tools.c b/src/actor/ac_tools.c
similarity index 100%
rename from src/ac_tools.c
rename to src/actor/ac_tools.c
diff --git a/src/ac_toudai.c b/src/actor/ac_toudai.c
similarity index 97%
rename from src/ac_toudai.c
rename to src/actor/ac_toudai.c
index f7e271e5..ce297de4 100644
--- a/src/ac_toudai.c
+++ b/src/actor/ac_toudai.c
@@ -116,6 +116,6 @@ static void aTOU_actor_dt(ACTOR* actor, GAME* game) {
light->actor_class.world.position.z += 20.0f;
}
-#include "../src/ac_toudai_move.c_inc"
+#include "../src/actor/ac_toudai_move.c_inc"
-#include "../src/ac_toudai_draw.c_inc"
+#include "../src/actor/ac_toudai_draw.c_inc"
diff --git a/src/ac_toudai_draw.c_inc b/src/actor/ac_toudai_draw.c_inc
similarity index 100%
rename from src/ac_toudai_draw.c_inc
rename to src/actor/ac_toudai_draw.c_inc
diff --git a/src/ac_toudai_move.c_inc b/src/actor/ac_toudai_move.c_inc
similarity index 100%
rename from src/ac_toudai_move.c_inc
rename to src/actor/ac_toudai_move.c_inc
diff --git a/src/ac_train0.c b/src/actor/ac_train0.c
similarity index 95%
rename from src/ac_train0.c
rename to src/actor/ac_train0.c
index f2f2cdde..7c0f6e86 100644
--- a/src/ac_train0.c
+++ b/src/actor/ac_train0.c
@@ -62,6 +62,6 @@ static void aTR0_actor_dt(ACTOR* actor, GAME* game) {
Common_Set(train_exists_flag, 0);
}
-#include "../src/ac_train0_move.c_inc"
+#include "../src/actor/ac_train0_move.c_inc"
-#include "../src/ac_train0_draw.c_inc"
+#include "../src/actor/ac_train0_draw.c_inc"
diff --git a/src/ac_train0_draw.c_inc b/src/actor/ac_train0_draw.c_inc
similarity index 100%
rename from src/ac_train0_draw.c_inc
rename to src/actor/ac_train0_draw.c_inc
diff --git a/src/ac_train0_move.c_inc b/src/actor/ac_train0_move.c_inc
similarity index 100%
rename from src/ac_train0_move.c_inc
rename to src/actor/ac_train0_move.c_inc
diff --git a/src/ac_train1.c b/src/actor/ac_train1.c
similarity index 94%
rename from src/ac_train1.c
rename to src/actor/ac_train1.c
index 66f58e31..88c7f4ab 100644
--- a/src/ac_train1.c
+++ b/src/actor/ac_train1.c
@@ -60,6 +60,6 @@ static void aTR1_actor_dt(ACTOR* actor, GAME* game){
cKF_SkeletonInfo_R_dt(&train1->keyframe);
}
-#include "../src/ac_train1_move.c_inc"
+#include "../src/actor/ac_train1_move.c_inc"
-#include "../src/ac_train1_draw.c_inc"
+#include "../src/actor/ac_train1_draw.c_inc"
diff --git a/src/ac_train1_draw.c_inc b/src/actor/ac_train1_draw.c_inc
similarity index 100%
rename from src/ac_train1_draw.c_inc
rename to src/actor/ac_train1_draw.c_inc
diff --git a/src/ac_train1_move.c_inc b/src/actor/ac_train1_move.c_inc
similarity index 100%
rename from src/ac_train1_move.c_inc
rename to src/actor/ac_train1_move.c_inc
diff --git a/src/ac_train_door.c b/src/actor/ac_train_door.c
similarity index 100%
rename from src/ac_train_door.c
rename to src/actor/ac_train_door.c
diff --git a/src/ac_train_window.c b/src/actor/ac_train_window.c
similarity index 100%
rename from src/ac_train_window.c
rename to src/actor/ac_train_window.c
diff --git a/src/ac_tukimi.c b/src/actor/ac_tukimi.c
similarity index 96%
rename from src/ac_tukimi.c
rename to src/actor/ac_tukimi.c
index 151f2ff9..d8645f0c 100644
--- a/src/ac_tukimi.c
+++ b/src/actor/ac_tukimi.c
@@ -75,6 +75,6 @@ static void aTUK_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&tukimi->keyframe);
}
-#include "../src/ac_tukimi_move.c_inc"
+#include "../src/actor/ac_tukimi_move.c_inc"
-#include "../src/ac_tukimi_draw.c_inc"
+#include "../src/actor/ac_tukimi_draw.c_inc"
diff --git a/src/ac_tukimi_draw.c_inc b/src/actor/ac_tukimi_draw.c_inc
similarity index 100%
rename from src/ac_tukimi_draw.c_inc
rename to src/actor/ac_tukimi_draw.c_inc
diff --git a/src/ac_tukimi_move.c_inc b/src/actor/ac_tukimi_move.c_inc
similarity index 100%
rename from src/ac_tukimi_move.c_inc
rename to src/actor/ac_tukimi_move.c_inc
diff --git a/src/ac_uki.c b/src/actor/ac_uki.c
similarity index 95%
rename from src/ac_uki.c
rename to src/actor/ac_uki.c
index 202421a0..9163a016 100644
--- a/src/ac_uki.c
+++ b/src/actor/ac_uki.c
@@ -57,7 +57,7 @@ static ClObjPipeData_c aUKI_CoInfoData = {
static StatusData_c aUKI_StatusData = { 0, 8, 8, 0, 50 };
-#include "../src/ac_gyoei_type.c_inc"
+#include "../src/actor/ac_gyoei_type.c_inc"
typedef struct uki_vib_s {
int n_frames;
@@ -113,5 +113,5 @@ static void aUKI_actor_dt(ACTOR* actorx, GAME* game) {
ClObjPipe_dt(game, &uki->col_pipe);
}
-#include "../src/ac_uki_move.c_inc"
-#include "../src/ac_uki_draw.c_inc"
+#include "../src/actor/ac_uki_move.c_inc"
+#include "../src/actor/ac_uki_draw.c_inc"
diff --git a/src/ac_uki_draw.c_inc b/src/actor/ac_uki_draw.c_inc
similarity index 100%
rename from src/ac_uki_draw.c_inc
rename to src/actor/ac_uki_draw.c_inc
diff --git a/src/ac_uki_move.c_inc b/src/actor/ac_uki_move.c_inc
similarity index 100%
rename from src/ac_uki_move.c_inc
rename to src/actor/ac_uki_move.c_inc
diff --git a/src/ac_weather.c b/src/actor/ac_weather.c
similarity index 100%
rename from src/ac_weather.c
rename to src/actor/ac_weather.c
diff --git a/src/ac_weather_fine.c b/src/actor/ac_weather_fine.c
similarity index 100%
rename from src/ac_weather_fine.c
rename to src/actor/ac_weather_fine.c
diff --git a/src/ac_weather_leaf.c b/src/actor/ac_weather_leaf.c
similarity index 100%
rename from src/ac_weather_leaf.c
rename to src/actor/ac_weather_leaf.c
diff --git a/src/ac_weather_rain.c b/src/actor/ac_weather_rain.c
similarity index 100%
rename from src/ac_weather_rain.c
rename to src/actor/ac_weather_rain.c
diff --git a/src/ac_weather_sakura.c b/src/actor/ac_weather_sakura.c
similarity index 100%
rename from src/ac_weather_sakura.c
rename to src/actor/ac_weather_sakura.c
diff --git a/src/ac_weather_snow.c b/src/actor/ac_weather_snow.c
similarity index 100%
rename from src/ac_weather_snow.c
rename to src/actor/ac_weather_snow.c
diff --git a/src/ac_windmill.c b/src/actor/ac_windmill.c
similarity index 91%
rename from src/ac_windmill.c
rename to src/actor/ac_windmill.c
index 7eaefad1..23518ff4 100644
--- a/src/ac_windmill.c
+++ b/src/actor/ac_windmill.c
@@ -36,6 +36,6 @@ static void aWIN_actor_dt(ACTOR* actor, GAME* game) {
cKF_SkeletonInfo_R_dt(&windmill->keyframe);
}
-#include "../src/ac_windmill_move.c_inc"
+#include "../src/actor/ac_windmill_move.c_inc"
-#include "../src/ac_windmill_draw.c_inc"
+#include "../src/actor/ac_windmill_draw.c_inc"
diff --git a/src/ac_windmill_draw.c_inc b/src/actor/ac_windmill_draw.c_inc
similarity index 100%
rename from src/ac_windmill_draw.c_inc
rename to src/actor/ac_windmill_draw.c_inc
diff --git a/src/ac_windmill_move.c_inc b/src/actor/ac_windmill_move.c_inc
similarity index 100%
rename from src/ac_windmill_move.c_inc
rename to src/actor/ac_windmill_move.c_inc
diff --git a/src/ac_yatai.c b/src/actor/ac_yatai.c
similarity index 94%
rename from src/ac_yatai.c
rename to src/actor/ac_yatai.c
index 5bc6220c..5209a420 100644
--- a/src/ac_yatai.c
+++ b/src/actor/ac_yatai.c
@@ -47,6 +47,6 @@ static void aYAT_actor_ct(ACTOR* actor, GAME* game) {
aYAT_set_bgOffset(yatai, yatai->arg0 + 2);
}
-#include "../src/ac_yatai_move.c_inc"
+#include "../src/actor/ac_yatai_move.c_inc"
-#include "../src/ac_yatai_draw.c_inc"
+#include "../src/actor/ac_yatai_draw.c_inc"
diff --git a/src/ac_yatai_draw.c_inc b/src/actor/ac_yatai_draw.c_inc
similarity index 100%
rename from src/ac_yatai_draw.c_inc
rename to src/actor/ac_yatai_draw.c_inc
diff --git a/src/ac_yatai_move.c_inc b/src/actor/ac_yatai_move.c_inc
similarity index 100%
rename from src/ac_yatai_move.c_inc
rename to src/actor/ac_yatai_move.c_inc
diff --git a/src/actor/npc/.gitkeep b/src/actor/npc/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/src/ac_t_anrium1.c b/src/actor/tool/ac_t_anrium1.c
similarity index 100%
rename from src/ac_t_anrium1.c
rename to src/actor/tool/ac_t_anrium1.c
diff --git a/src/ac_t_bag1.c b/src/actor/tool/ac_t_bag1.c
similarity index 100%
rename from src/ac_t_bag1.c
rename to src/actor/tool/ac_t_bag1.c
diff --git a/src/ac_t_bag2.c b/src/actor/tool/ac_t_bag2.c
similarity index 100%
rename from src/ac_t_bag2.c
rename to src/actor/tool/ac_t_bag2.c
diff --git a/src/ac_t_biscus1.c b/src/actor/tool/ac_t_biscus1.c
similarity index 100%
rename from src/ac_t_biscus1.c
rename to src/actor/tool/ac_t_biscus1.c
diff --git a/src/ac_t_biscus2.c b/src/actor/tool/ac_t_biscus2.c
similarity index 100%
rename from src/ac_t_biscus2.c
rename to src/actor/tool/ac_t_biscus2.c
diff --git a/src/ac_t_biscus3.c b/src/actor/tool/ac_t_biscus3.c
similarity index 100%
rename from src/ac_t_biscus3.c
rename to src/actor/tool/ac_t_biscus3.c
diff --git a/src/ac_t_biscus4.c b/src/actor/tool/ac_t_biscus4.c
similarity index 100%
rename from src/ac_t_biscus4.c
rename to src/actor/tool/ac_t_biscus4.c
diff --git a/src/ac_t_cobra1.c b/src/actor/tool/ac_t_cobra1.c
similarity index 100%
rename from src/ac_t_cobra1.c
rename to src/actor/tool/ac_t_cobra1.c
diff --git a/src/ac_t_cracker.c b/src/actor/tool/ac_t_cracker.c
similarity index 100%
rename from src/ac_t_cracker.c
rename to src/actor/tool/ac_t_cracker.c
diff --git a/src/ac_t_flag.c b/src/actor/tool/ac_t_flag.c
similarity index 100%
rename from src/ac_t_flag.c
rename to src/actor/tool/ac_t_flag.c
diff --git a/src/ac_t_hanabi.c b/src/actor/tool/ac_t_hanabi.c
similarity index 100%
rename from src/ac_t_hanabi.c
rename to src/actor/tool/ac_t_hanabi.c
diff --git a/src/ac_t_hasu1.c b/src/actor/tool/ac_t_hasu1.c
similarity index 100%
rename from src/ac_t_hasu1.c
rename to src/actor/tool/ac_t_hasu1.c
diff --git a/src/ac_t_hat1.c b/src/actor/tool/ac_t_hat1.c
similarity index 100%
rename from src/ac_t_hat1.c
rename to src/actor/tool/ac_t_hat1.c
diff --git a/src/ac_t_hat2.c b/src/actor/tool/ac_t_hat2.c
similarity index 100%
rename from src/ac_t_hat2.c
rename to src/actor/tool/ac_t_hat2.c
diff --git a/src/ac_t_hat3.c b/src/actor/tool/ac_t_hat3.c
similarity index 100%
rename from src/ac_t_hat3.c
rename to src/actor/tool/ac_t_hat3.c
diff --git a/src/ac_t_keitai.c b/src/actor/tool/ac_t_keitai.c
similarity index 100%
rename from src/ac_t_keitai.c
rename to src/actor/tool/ac_t_keitai.c
diff --git a/src/ac_t_npc_sao.c b/src/actor/tool/ac_t_npc_sao.c
similarity index 100%
rename from src/ac_t_npc_sao.c
rename to src/actor/tool/ac_t_npc_sao.c
diff --git a/src/ac_t_pistol.c b/src/actor/tool/ac_t_pistol.c
similarity index 100%
rename from src/ac_t_pistol.c
rename to src/actor/tool/ac_t_pistol.c
diff --git a/src/ac_t_rei1.c b/src/actor/tool/ac_t_rei1.c
similarity index 100%
rename from src/ac_t_rei1.c
rename to src/actor/tool/ac_t_rei1.c
diff --git a/src/ac_t_rei2.c b/src/actor/tool/ac_t_rei2.c
similarity index 100%
rename from src/ac_t_rei2.c
rename to src/actor/tool/ac_t_rei2.c
diff --git a/src/ac_t_tama.c b/src/actor/tool/ac_t_tama.c
similarity index 100%
rename from src/ac_t_tama.c
rename to src/actor/tool/ac_t_tama.c
diff --git a/src/ac_t_tumbler.c b/src/actor/tool/ac_t_tumbler.c
similarity index 100%
rename from src/ac_t_tumbler.c
rename to src/actor/tool/ac_t_tumbler.c
diff --git a/src/ac_t_umbrella.c b/src/actor/tool/ac_t_umbrella.c
similarity index 100%
rename from src/ac_t_umbrella.c
rename to src/actor/tool/ac_t_umbrella.c
diff --git a/src/ac_t_utiwa.c b/src/actor/tool/ac_t_utiwa.c
similarity index 100%
rename from src/ac_t_utiwa.c
rename to src/actor/tool/ac_t_utiwa.c
diff --git a/src/ac_t_zinnia1.c b/src/actor/tool/ac_t_zinnia1.c
similarity index 100%
rename from src/ac_t_zinnia1.c
rename to src/actor/tool/ac_t_zinnia1.c
diff --git a/src/ac_t_zinnia2.c b/src/actor/tool/ac_t_zinnia2.c
similarity index 100%
rename from src/ac_t_zinnia2.c
rename to src/actor/tool/ac_t_zinnia2.c
diff --git a/src/ef_ami_mizu.c b/src/effect/ef_ami_mizu.c
similarity index 100%
rename from src/ef_ami_mizu.c
rename to src/effect/ef_ami_mizu.c
diff --git a/src/ef_anahikari.c b/src/effect/ef_anahikari.c
similarity index 100%
rename from src/ef_anahikari.c
rename to src/effect/ef_anahikari.c
diff --git a/src/ef_ase.c b/src/effect/ef_ase.c
similarity index 100%
rename from src/ef_ase.c
rename to src/effect/ef_ase.c
diff --git a/src/ef_ase2.c b/src/effect/ef_ase2.c
similarity index 100%
rename from src/ef_ase2.c
rename to src/effect/ef_ase2.c
diff --git a/src/ef_ase_ch.c b/src/effect/ef_ase_ch.c
similarity index 100%
rename from src/ef_ase_ch.c
rename to src/effect/ef_ase_ch.c
diff --git a/src/ef_break_axe.c b/src/effect/ef_break_axe.c
similarity index 100%
rename from src/ef_break_axe.c
rename to src/effect/ef_break_axe.c
diff --git a/src/ef_bubu.c b/src/effect/ef_bubu.c
similarity index 100%
rename from src/ef_bubu.c
rename to src/effect/ef_bubu.c
diff --git a/src/ef_buruburu.c b/src/effect/ef_buruburu.c
similarity index 100%
rename from src/ef_buruburu.c
rename to src/effect/ef_buruburu.c
diff --git a/src/ef_bush_happa.c b/src/effect/ef_bush_happa.c
similarity index 100%
rename from src/ef_bush_happa.c
rename to src/effect/ef_bush_happa.c
diff --git a/src/ef_bush_yuki.c b/src/effect/ef_bush_yuki.c
similarity index 100%
rename from src/ef_bush_yuki.c
rename to src/effect/ef_bush_yuki.c
diff --git a/src/ef_car_blight.c b/src/effect/ef_car_blight.c
similarity index 100%
rename from src/ef_car_blight.c
rename to src/effect/ef_car_blight.c
diff --git a/src/ef_car_light.c b/src/effect/ef_car_light.c
similarity index 100%
rename from src/ef_car_light.c
rename to src/effect/ef_car_light.c
diff --git a/src/ef_clacker.c b/src/effect/ef_clacker.c
similarity index 100%
rename from src/ef_clacker.c
rename to src/effect/ef_clacker.c
diff --git a/src/ef_coin.c b/src/effect/ef_coin.c
similarity index 100%
rename from src/ef_coin.c
rename to src/effect/ef_coin.c
diff --git a/src/ef_dash_asimoto.c b/src/effect/ef_dash_asimoto.c
similarity index 100%
rename from src/ef_dash_asimoto.c
rename to src/effect/ef_dash_asimoto.c
diff --git a/src/ef_dig_hole.c b/src/effect/ef_dig_hole.c
similarity index 100%
rename from src/ef_dig_hole.c
rename to src/effect/ef_dig_hole.c
diff --git a/src/ef_dig_mud.c b/src/effect/ef_dig_mud.c
similarity index 100%
rename from src/ef_dig_mud.c
rename to src/effect/ef_dig_mud.c
diff --git a/src/ef_dig_scoop.c b/src/effect/ef_dig_scoop.c
similarity index 100%
rename from src/ef_dig_scoop.c
rename to src/effect/ef_dig_scoop.c
diff --git a/src/ef_douzou_light.c b/src/effect/ef_douzou_light.c
similarity index 100%
rename from src/ef_douzou_light.c
rename to src/effect/ef_douzou_light.c
diff --git a/src/ef_doyon.c b/src/effect/ef_doyon.c
similarity index 100%
rename from src/ef_doyon.c
rename to src/effect/ef_doyon.c
diff --git a/src/ef_dust.c b/src/effect/ef_dust.c
similarity index 100%
rename from src/ef_dust.c
rename to src/effect/ef_dust.c
diff --git a/src/ef_effect_control.c b/src/effect/ef_effect_control.c
similarity index 99%
rename from src/ef_effect_control.c
rename to src/effect/ef_effect_control.c
index e82ceda4..12813113 100644
--- a/src/ef_effect_control.c
+++ b/src/effect/ef_effect_control.c
@@ -167,7 +167,7 @@ ACTOR_PROFILE Effect_Control_Profile = {
static eEC_work_c eEC_ctrl_work;
-#include "../src/ef_effect_lib.c"
+#include "../src/effect/ef_effect_lib.c"
static void eEC_Name2EffectMake(int effect_id, xyz_t pos, int prio, s16 angle, GAME* game, u16 item_name, s16 arg0,
s16 arg1) {
diff --git a/src/ef_effect_lib.c b/src/effect/ef_effect_lib.c
similarity index 100%
rename from src/ef_effect_lib.c
rename to src/effect/ef_effect_lib.c
diff --git a/src/ef_flash.c b/src/effect/ef_flash.c
similarity index 100%
rename from src/ef_flash.c
rename to src/effect/ef_flash.c
diff --git a/src/ef_footprint.c b/src/effect/ef_footprint.c
similarity index 100%
rename from src/ef_footprint.c
rename to src/effect/ef_footprint.c
diff --git a/src/ef_furo_yuge.c b/src/effect/ef_furo_yuge.c
similarity index 100%
rename from src/ef_furo_yuge.c
rename to src/effect/ef_furo_yuge.c
diff --git a/src/ef_gimonhu.c b/src/effect/ef_gimonhu.c
similarity index 100%
rename from src/ef_gimonhu.c
rename to src/effect/ef_gimonhu.c
diff --git a/src/ef_goki.c b/src/effect/ef_goki.c
similarity index 100%
rename from src/ef_goki.c
rename to src/effect/ef_goki.c
diff --git a/src/ef_ha.c b/src/effect/ef_ha.c
similarity index 100%
rename from src/ef_ha.c
rename to src/effect/ef_ha.c
diff --git a/src/ef_halloween.c b/src/effect/ef_halloween.c
similarity index 100%
rename from src/ef_halloween.c
rename to src/effect/ef_halloween.c
diff --git a/src/ef_halloween_smoke.c b/src/effect/ef_halloween_smoke.c
similarity index 100%
rename from src/ef_halloween_smoke.c
rename to src/effect/ef_halloween_smoke.c
diff --git a/src/ef_hanabi_botan1.c b/src/effect/ef_hanabi_botan1.c
similarity index 100%
rename from src/ef_hanabi_botan1.c
rename to src/effect/ef_hanabi_botan1.c
diff --git a/src/ef_hanabi_botan2.c b/src/effect/ef_hanabi_botan2.c
similarity index 100%
rename from src/ef_hanabi_botan2.c
rename to src/effect/ef_hanabi_botan2.c
diff --git a/src/ef_hanabi_dummy.c b/src/effect/ef_hanabi_dummy.c
similarity index 100%
rename from src/ef_hanabi_dummy.c
rename to src/effect/ef_hanabi_dummy.c
diff --git a/src/ef_hanabi_hoshi.c b/src/effect/ef_hanabi_hoshi.c
similarity index 100%
rename from src/ef_hanabi_hoshi.c
rename to src/effect/ef_hanabi_hoshi.c
diff --git a/src/ef_hanabi_set.c b/src/effect/ef_hanabi_set.c
similarity index 100%
rename from src/ef_hanabi_set.c
rename to src/effect/ef_hanabi_set.c
diff --git a/src/ef_hanabi_switch.c b/src/effect/ef_hanabi_switch.c
similarity index 100%
rename from src/ef_hanabi_switch.c
rename to src/effect/ef_hanabi_switch.c
diff --git a/src/ef_hanabi_yanagi.c b/src/effect/ef_hanabi_yanagi.c
similarity index 100%
rename from src/ef_hanabi_yanagi.c
rename to src/effect/ef_hanabi_yanagi.c
diff --git a/src/ef_hanabira.c b/src/effect/ef_hanabira.c
similarity index 100%
rename from src/ef_hanabira.c
rename to src/effect/ef_hanabira.c
diff --git a/src/ef_hanatiri.c b/src/effect/ef_hanatiri.c
similarity index 100%
rename from src/ef_hanatiri.c
rename to src/effect/ef_hanatiri.c
diff --git a/src/ef_hirameki_den.c b/src/effect/ef_hirameki_den.c
similarity index 100%
rename from src/ef_hirameki_den.c
rename to src/effect/ef_hirameki_den.c
diff --git a/src/ef_hirameki_hikari.c b/src/effect/ef_hirameki_hikari.c
similarity index 100%
rename from src/ef_hirameki_hikari.c
rename to src/effect/ef_hirameki_hikari.c
diff --git a/src/ef_ikigire.c b/src/effect/ef_ikigire.c
similarity index 100%
rename from src/ef_ikigire.c
rename to src/effect/ef_ikigire.c
diff --git a/src/ef_impact_star.c b/src/effect/ef_impact_star.c
similarity index 100%
rename from src/ef_impact_star.c
rename to src/effect/ef_impact_star.c
diff --git a/src/ef_kagu_happa.c b/src/effect/ef_kagu_happa.c
similarity index 100%
rename from src/ef_kagu_happa.c
rename to src/effect/ef_kagu_happa.c
diff --git a/src/ef_kamifubuki.c b/src/effect/ef_kamifubuki.c
similarity index 100%
rename from src/ef_kamifubuki.c
rename to src/effect/ef_kamifubuki.c
diff --git a/src/ef_kangaeru.c b/src/effect/ef_kangaeru.c
similarity index 100%
rename from src/ef_kangaeru.c
rename to src/effect/ef_kangaeru.c
diff --git a/src/ef_kantanhu.c b/src/effect/ef_kantanhu.c
similarity index 100%
rename from src/ef_kantanhu.c
rename to src/effect/ef_kantanhu.c
diff --git a/src/ef_kasamizu.c b/src/effect/ef_kasamizu.c
similarity index 100%
rename from src/ef_kasamizu.c
rename to src/effect/ef_kasamizu.c
diff --git a/src/ef_kasamizutama.c b/src/effect/ef_kasamizutama.c
similarity index 100%
rename from src/ef_kasamizutama.c
rename to src/effect/ef_kasamizutama.c
diff --git a/src/ef_kaze.c b/src/effect/ef_kaze.c
similarity index 100%
rename from src/ef_kaze.c
rename to src/effect/ef_kaze.c
diff --git a/src/ef_kaze_happa.c b/src/effect/ef_kaze_happa.c
similarity index 100%
rename from src/ef_kaze_happa.c
rename to src/effect/ef_kaze_happa.c
diff --git a/src/ef_kigae.c b/src/effect/ef_kigae.c
similarity index 100%
rename from src/ef_kigae.c
rename to src/effect/ef_kigae.c
diff --git a/src/ef_kigae_light.c b/src/effect/ef_kigae_light.c
similarity index 100%
rename from src/ef_kigae_light.c
rename to src/effect/ef_kigae_light.c
diff --git a/src/ef_kikuzu.c b/src/effect/ef_kikuzu.c
similarity index 100%
rename from src/ef_kikuzu.c
rename to src/effect/ef_kikuzu.c
diff --git a/src/ef_killer.c b/src/effect/ef_killer.c
similarity index 100%
rename from src/ef_killer.c
rename to src/effect/ef_killer.c
diff --git a/src/ef_kisha_kemuri.c b/src/effect/ef_kisha_kemuri.c
similarity index 100%
rename from src/ef_kisha_kemuri.c
rename to src/effect/ef_kisha_kemuri.c
diff --git a/src/ef_konpu.c b/src/effect/ef_konpu.c
similarity index 100%
rename from src/ef_konpu.c
rename to src/effect/ef_konpu.c
diff --git a/src/ef_kpun.c b/src/effect/ef_kpun.c
similarity index 100%
rename from src/ef_kpun.c
rename to src/effect/ef_kpun.c
diff --git a/src/ef_kyousou_onpu.c b/src/effect/ef_kyousou_onpu.c
similarity index 100%
rename from src/ef_kyousou_onpu.c
rename to src/effect/ef_kyousou_onpu.c
diff --git a/src/ef_lamp_light.c b/src/effect/ef_lamp_light.c
similarity index 100%
rename from src/ef_lamp_light.c
rename to src/effect/ef_lamp_light.c
diff --git a/src/ef_lovelove.c b/src/effect/ef_lovelove.c
similarity index 100%
rename from src/ef_lovelove.c
rename to src/effect/ef_lovelove.c
diff --git a/src/ef_lovelove2.c b/src/effect/ef_lovelove2.c
similarity index 100%
rename from src/ef_lovelove2.c
rename to src/effect/ef_lovelove2.c
diff --git a/src/ef_lovelove_heart.c b/src/effect/ef_lovelove_heart.c
similarity index 100%
rename from src/ef_lovelove_heart.c
rename to src/effect/ef_lovelove_heart.c
diff --git a/src/ef_make_hem.c b/src/effect/ef_make_hem.c
similarity index 100%
rename from src/ef_make_hem.c
rename to src/effect/ef_make_hem.c
diff --git a/src/ef_mizutama.c b/src/effect/ef_mizutama.c
similarity index 100%
rename from src/ef_mizutama.c
rename to src/effect/ef_mizutama.c
diff --git a/src/ef_motiyuge.c b/src/effect/ef_motiyuge.c
similarity index 100%
rename from src/ef_motiyuge.c
rename to src/effect/ef_motiyuge.c
diff --git a/src/ef_muka.c b/src/effect/ef_muka.c
similarity index 100%
rename from src/ef_muka.c
rename to src/effect/ef_muka.c
diff --git a/src/ef_naku.c b/src/effect/ef_naku.c
similarity index 100%
rename from src/ef_naku.c
rename to src/effect/ef_naku.c
diff --git a/src/ef_namida.c b/src/effect/ef_namida.c
similarity index 100%
rename from src/ef_namida.c
rename to src/effect/ef_namida.c
diff --git a/src/ef_neboke.c b/src/effect/ef_neboke.c
similarity index 100%
rename from src/ef_neboke.c
rename to src/effect/ef_neboke.c
diff --git a/src/ef_neboke_akubi.c b/src/effect/ef_neboke_akubi.c
similarity index 100%
rename from src/ef_neboke_akubi.c
rename to src/effect/ef_neboke_akubi.c
diff --git a/src/ef_neboke_awa.c b/src/effect/ef_neboke_awa.c
similarity index 100%
rename from src/ef_neboke_awa.c
rename to src/effect/ef_neboke_awa.c
diff --git a/src/ef_night13_moon.c b/src/effect/ef_night13_moon.c
similarity index 100%
rename from src/ef_night13_moon.c
rename to src/effect/ef_night13_moon.c
diff --git a/src/ef_night15_moon.c b/src/effect/ef_night15_moon.c
similarity index 100%
rename from src/ef_night15_moon.c
rename to src/effect/ef_night15_moon.c
diff --git a/src/ef_ongen.c b/src/effect/ef_ongen.c
similarity index 100%
rename from src/ef_ongen.c
rename to src/effect/ef_ongen.c
diff --git a/src/ef_otikomi.c b/src/effect/ef_otikomi.c
similarity index 100%
rename from src/ef_otikomi.c
rename to src/effect/ef_otikomi.c
diff --git a/src/ef_otosiana.c b/src/effect/ef_otosiana.c
similarity index 100%
rename from src/ef_otosiana.c
rename to src/effect/ef_otosiana.c
diff --git a/src/ef_pun.c b/src/effect/ef_pun.c
similarity index 100%
rename from src/ef_pun.c
rename to src/effect/ef_pun.c
diff --git a/src/ef_pun_sekimen.c b/src/effect/ef_pun_sekimen.c
similarity index 100%
rename from src/ef_pun_sekimen.c
rename to src/effect/ef_pun_sekimen.c
diff --git a/src/ef_pun_yuge.c b/src/effect/ef_pun_yuge.c
similarity index 100%
rename from src/ef_pun_yuge.c
rename to src/effect/ef_pun_yuge.c
diff --git a/src/ef_reset_hole.c b/src/effect/ef_reset_hole.c
similarity index 100%
rename from src/ef_reset_hole.c
rename to src/effect/ef_reset_hole.c
diff --git a/src/ef_room_sunshine.c b/src/effect/ef_room_sunshine.c
similarity index 100%
rename from src/ef_room_sunshine.c
rename to src/effect/ef_room_sunshine.c
diff --git a/src/ef_room_sunshine_minsect.c b/src/effect/ef_room_sunshine_minsect.c
similarity index 100%
rename from src/ef_room_sunshine_minsect.c
rename to src/effect/ef_room_sunshine_minsect.c
diff --git a/src/ef_room_sunshine_museum.c b/src/effect/ef_room_sunshine_museum.c
similarity index 100%
rename from src/ef_room_sunshine_museum.c
rename to src/effect/ef_room_sunshine_museum.c
diff --git a/src/ef_room_sunshine_police.c b/src/effect/ef_room_sunshine_police.c
similarity index 100%
rename from src/ef_room_sunshine_police.c
rename to src/effect/ef_room_sunshine_police.c
diff --git a/src/ef_room_sunshine_posthouse.c b/src/effect/ef_room_sunshine_posthouse.c
similarity index 98%
rename from src/ef_room_sunshine_posthouse.c
rename to src/effect/ef_room_sunshine_posthouse.c
index 2cdb8cf4..43f92cec 100644
--- a/src/ef_room_sunshine_posthouse.c
+++ b/src/effect/ef_room_sunshine_posthouse.c
@@ -82,7 +82,7 @@ static f32 calc_scale_Ef_Room_Sunshine_Posthouse(int flag, int sec) {
}
}
-static int calc_alpha_Ef_Room_SunshinePosthouse() {
+static int calc_alpha_Ef_Room_Sunshine_Posthouse() {
f32 ret;
int sec;
@@ -156,7 +156,7 @@ static void setup_mode_Ef_Room_Sunshine_Posthouse(ACTOR* actor, GAME_PLAY* play)
color = play->kankyo.base_light.moon_color_window;
}
- calc = ((u8)calc_alpha_Ef_Room_SunshinePosthouse() * mKK_windowlight_alpha_get());
+ calc = ((u8)calc_alpha_Ef_Room_Sunshine_Posthouse() * mKK_windowlight_alpha_get());
gDPSetPrimColor(NEXT_POLY_XLU_DISP, 0, calc, color[0], color[1], color[2], 255);
CLOSE_DISP(graph);
diff --git a/src/ef_sandsplash.c b/src/effect/ef_sandsplash.c
similarity index 100%
rename from src/ef_sandsplash.c
rename to src/effect/ef_sandsplash.c
diff --git a/src/ef_shock.c b/src/effect/ef_shock.c
similarity index 100%
rename from src/ef_shock.c
rename to src/effect/ef_shock.c
diff --git a/src/ef_shooting.c b/src/effect/ef_shooting.c
similarity index 100%
rename from src/ef_shooting.c
rename to src/effect/ef_shooting.c
diff --git a/src/ef_shooting_kira.c b/src/effect/ef_shooting_kira.c
similarity index 100%
rename from src/ef_shooting_kira.c
rename to src/effect/ef_shooting_kira.c
diff --git a/src/ef_shooting_set.c b/src/effect/ef_shooting_set.c
similarity index 100%
rename from src/ef_shooting_set.c
rename to src/effect/ef_shooting_set.c
diff --git a/src/ef_siawase_hana.c b/src/effect/ef_siawase_hana.c
similarity index 100%
rename from src/ef_siawase_hana.c
rename to src/effect/ef_siawase_hana.c
diff --git a/src/ef_siawase_hana_ch.c b/src/effect/ef_siawase_hana_ch.c
similarity index 100%
rename from src/ef_siawase_hana_ch.c
rename to src/effect/ef_siawase_hana_ch.c
diff --git a/src/ef_siawase_hikari.c b/src/effect/ef_siawase_hikari.c
similarity index 100%
rename from src/ef_siawase_hikari.c
rename to src/effect/ef_siawase_hikari.c
diff --git a/src/ef_sibuki.c b/src/effect/ef_sibuki.c
similarity index 100%
rename from src/ef_sibuki.c
rename to src/effect/ef_sibuki.c
diff --git a/src/ef_situren.c b/src/effect/ef_situren.c
similarity index 100%
rename from src/ef_situren.c
rename to src/effect/ef_situren.c
diff --git a/src/ef_slip.c b/src/effect/ef_slip.c
similarity index 100%
rename from src/ef_slip.c
rename to src/effect/ef_slip.c
diff --git a/src/ef_slip_footprint.c b/src/effect/ef_slip_footprint.c
similarity index 100%
rename from src/ef_slip_footprint.c
rename to src/effect/ef_slip_footprint.c
diff --git a/src/ef_soba_yuge.c b/src/effect/ef_soba_yuge.c
similarity index 100%
rename from src/ef_soba_yuge.c
rename to src/effect/ef_soba_yuge.c
diff --git a/src/ef_steam.c b/src/effect/ef_steam.c
similarity index 100%
rename from src/ef_steam.c
rename to src/effect/ef_steam.c
diff --git a/src/ef_string.c b/src/effect/ef_string.c
similarity index 100%
rename from src/ef_string.c
rename to src/effect/ef_string.c
diff --git a/src/ef_suisou_awa.c b/src/effect/ef_suisou_awa.c
similarity index 100%
rename from src/ef_suisou_awa.c
rename to src/effect/ef_suisou_awa.c
diff --git a/src/ef_swing_axe.c b/src/effect/ef_swing_axe.c
similarity index 100%
rename from src/ef_swing_axe.c
rename to src/effect/ef_swing_axe.c
diff --git a/src/ef_swing_net.c b/src/effect/ef_swing_net.c
similarity index 100%
rename from src/ef_swing_net.c
rename to src/effect/ef_swing_net.c
diff --git a/src/ef_swing_rod.c b/src/effect/ef_swing_rod.c
similarity index 100%
rename from src/ef_swing_rod.c
rename to src/effect/ef_swing_rod.c
diff --git a/src/ef_taberu.c b/src/effect/ef_taberu.c
similarity index 100%
rename from src/ef_taberu.c
rename to src/effect/ef_taberu.c
diff --git a/src/ef_takurami.c b/src/effect/ef_takurami.c
similarity index 100%
rename from src/ef_takurami.c
rename to src/effect/ef_takurami.c
diff --git a/src/ef_takurami_kira.c b/src/effect/ef_takurami_kira.c
similarity index 100%
rename from src/ef_takurami_kira.c
rename to src/effect/ef_takurami_kira.c
diff --git a/src/ef_tamaire.c b/src/effect/ef_tamaire.c
similarity index 100%
rename from src/ef_tamaire.c
rename to src/effect/ef_tamaire.c
diff --git a/src/ef_tape.c b/src/effect/ef_tape.c
similarity index 100%
rename from src/ef_tape.c
rename to src/effect/ef_tape.c
diff --git a/src/ef_tent_lamp.c b/src/effect/ef_tent_lamp.c
similarity index 100%
rename from src/ef_tent_lamp.c
rename to src/effect/ef_tent_lamp.c
diff --git a/src/ef_tumble.c b/src/effect/ef_tumble.c
similarity index 100%
rename from src/ef_tumble.c
rename to src/effect/ef_tumble.c
diff --git a/src/ef_tumble_bodyprint.c b/src/effect/ef_tumble_bodyprint.c
similarity index 100%
rename from src/ef_tumble_bodyprint.c
rename to src/effect/ef_tumble_bodyprint.c
diff --git a/src/ef_tumble_dust.c b/src/effect/ef_tumble_dust.c
similarity index 100%
rename from src/ef_tumble_dust.c
rename to src/effect/ef_tumble_dust.c
diff --git a/src/ef_turi_hamon.c b/src/effect/ef_turi_hamon.c
similarity index 100%
rename from src/ef_turi_hamon.c
rename to src/effect/ef_turi_hamon.c
diff --git a/src/ef_turi_hane0.c b/src/effect/ef_turi_hane0.c
similarity index 100%
rename from src/ef_turi_hane0.c
rename to src/effect/ef_turi_hane0.c
diff --git a/src/ef_turi_hane1.c b/src/effect/ef_turi_hane1.c
similarity index 100%
rename from src/ef_turi_hane1.c
rename to src/effect/ef_turi_hane1.c
diff --git a/src/ef_turi_mizu.c b/src/effect/ef_turi_mizu.c
similarity index 100%
rename from src/ef_turi_mizu.c
rename to src/effect/ef_turi_mizu.c
diff --git a/src/ef_turi_suiteki.c b/src/effect/ef_turi_suiteki.c
similarity index 100%
rename from src/ef_turi_suiteki.c
rename to src/effect/ef_turi_suiteki.c
diff --git a/src/ef_turn_asimoto.c b/src/effect/ef_turn_asimoto.c
similarity index 100%
rename from src/ef_turn_asimoto.c
rename to src/effect/ef_turn_asimoto.c
diff --git a/src/ef_turn_footprint.c b/src/effect/ef_turn_footprint.c
similarity index 100%
rename from src/ef_turn_footprint.c
rename to src/effect/ef_turn_footprint.c
diff --git a/src/ef_uranai.c b/src/effect/ef_uranai.c
similarity index 100%
rename from src/ef_uranai.c
rename to src/effect/ef_uranai.c
diff --git a/src/ef_wait_asimoto.c b/src/effect/ef_wait_asimoto.c
similarity index 100%
rename from src/ef_wait_asimoto.c
rename to src/effect/ef_wait_asimoto.c
diff --git a/src/ef_walk_asimoto.c b/src/effect/ef_walk_asimoto.c
similarity index 100%
rename from src/ef_walk_asimoto.c
rename to src/effect/ef_walk_asimoto.c
diff --git a/src/ef_warau.c b/src/effect/ef_warau.c
similarity index 100%
rename from src/ef_warau.c
rename to src/effect/ef_warau.c
diff --git a/src/ef_yajirushi.c b/src/effect/ef_yajirushi.c
similarity index 100%
rename from src/ef_yajirushi.c
rename to src/effect/ef_yajirushi.c
diff --git a/src/ef_young_tree.c b/src/effect/ef_young_tree.c
similarity index 100%
rename from src/ef_young_tree.c
rename to src/effect/ef_young_tree.c
diff --git a/src/ef_yukidama.c b/src/effect/ef_yukidama.c
similarity index 100%
rename from src/ef_yukidama.c
rename to src/effect/ef_yukidama.c
diff --git a/src/ef_yukidaruma.c b/src/effect/ef_yukidaruma.c
similarity index 100%
rename from src/ef_yukidaruma.c
rename to src/effect/ef_yukidaruma.c
diff --git a/src/ef_yukihane.c b/src/effect/ef_yukihane.c
similarity index 100%
rename from src/ef_yukihane.c
rename to src/effect/ef_yukihane.c
diff --git a/src/executor.c b/src/executor.c
index c91871cb..9d6c14a6 100644
--- a/src/executor.c
+++ b/src/executor.c
@@ -17,7 +17,7 @@ void _prolog() {
(*constructor)();
}
}
- foresta_main();
+ main();
}
void _epilog() {
@@ -41,4 +41,4 @@ void _unresolved() {
}
OSReport("\n" VT_RST "\n");
-}
\ No newline at end of file
+}
diff --git a/src/f_furniture.c b/src/f_furniture.c
index 8204548c..3c1473fe 100644
--- a/src/f_furniture.c
+++ b/src/f_furniture.c
@@ -13,131 +13,6 @@
#include "m_house.h"
#include "m_vibctl.h"
-#ifdef MUST_MATCH
-#ifndef __INTELLISENSE__
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-FORCESTRIP static u16 __hack_pal0[] = {
- #include "assets/int_nog_kamakura_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal1[] = {
- #include "assets/int_nog_kamakura_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal2[] = {
- #include "assets/int_nog_kouban_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal3[] = {
- #include "assets/int_nog_kouban_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal4[] = {
- #include "assets/int_nog_museum_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal5[] = {
- #include "assets/int_nog_museum_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal6[] = {
- #include "assets/int_nog_station1_a_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal7[] = {
- #include "assets/int_nog_station1_b_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal8[] = {
- #include "assets/int_nog_station1_c_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal9[] = {
- #include "assets/int_nog_station1_d_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal10[] = {
- #include "assets/int_nog_station1_e_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal11[] = {
- #include "assets/int_nog_station2_a_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal12[] = {
- #include "assets/int_nog_station2_b_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal13[] = {
- #include "assets/int_nog_station2_c_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal14[] = {
- #include "assets/int_nog_station2_d_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal15[] = {
- #include "assets/int_nog_station2_e_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal16[] = {
- #include "assets/int_nog_station3_a_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal17[] = {
- #include "assets/int_nog_station3_b_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal18[] = {
- #include "assets/int_nog_station3_c_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal19[] = {
- #include "assets/int_nog_station3_d_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal20[] = {
- #include "assets/int_nog_station3_e_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal21[] = {
- #include "assets/int_nog_shop1_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal22[] = {
- #include "assets/int_nog_shop1_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal23[] = {
- #include "assets/int_nog_uranai_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal24[] = {
- #include "assets/int_nog_uranai_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal25[] = {
- #include "assets/int_nog_yamishop_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal26[] = {
- #include "assets/int_nog_yamishop_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal27[] = {
- #include "assets/int_nog_yubin_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal28[] = {
- #include "assets/int_nog_yubin_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal29[] = {
- #include "assets/int_tak_tailor_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal30[] = {
- #include "assets/int_tak_tailor_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal31[] = {
- #include "assets/radio_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal32[] = {
- #include "assets/int_yaz_fish_trophy_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal33[] = {
- #include "assets/int_tak_tent_on_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal34[] = {
- #include "assets/int_tak_tent_off_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal35[] = {
- #include "assets/int_yaz_fish_trophy2_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal36[] = {
- #include "assets/int_nog_flower_a_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal37[] = {
- #include "assets/int_nog_flower_b_pal.inc"
-};
-FORCESTRIP static u16 __hack_pal38[] = {
- #include "assets/int_nog_flower_c_pal.inc"
-};
-
-#endif
-#endif
-
-
static u16 fFTR_myhome_off_pal_table[][16] ATTRIBUTE_ALIGN(32) = {
// clang-format off
{ 0x8EC9, 0x8EAE, 0x81E9, 0xFFFC, 0xEF79, 0xD274, 0xB58F, 0xFE8C, 0xE988, 0xC8E6, 0xB085, 0xFD68, 0xF907, 0xECC6, 0x8000, 0x0622 },
@@ -266,699 +141,699 @@ static Gfx* fFTR_GetTwoTileGfx(int width0, int height0, int scroll_x0, int scrol
* 2. uncomment the #include
*/
-#include "../src/ftr/ac_ari_isu01.c"
-#include "../src/ftr/ac_ari_kitchen01.c"
-#include "../src/ftr/ac_ari_reizou01.c"
-#include "../src/ftr/ac_ari_table01.c"
-#include "../src/ftr/ac_din_amber.c"
-#include "../src/ftr/ac_din_ammonite.c"
-#include "../src/ftr/ac_din_bront_body.c"
-#include "../src/ftr/ac_din_bront_dummy.c"
-#include "../src/ftr/ac_din_bront_head.c"
-#include "../src/ftr/ac_din_bront_tail.c"
-#include "../src/ftr/ac_din_dummy.c"
-#include "../src/ftr/ac_din_egg.c"
-#include "../src/ftr/ac_din_hutaba_body.c"
-#include "../src/ftr/ac_din_hutaba_dummy.c"
-#include "../src/ftr/ac_din_hutaba_head.c"
-#include "../src/ftr/ac_din_hutaba_neck.c"
-#include "../src/ftr/ac_din_mammoth_body.c"
-#include "../src/ftr/ac_din_mammoth_dummy.c"
-#include "../src/ftr/ac_din_mammoth_head.c"
-#include "../src/ftr/ac_din_ptera_dummy.c"
-#include "../src/ftr/ac_din_ptera_Lwing.c"
-#include "../src/ftr/ac_din_ptera_Rwing.c"
-#include "../src/ftr/ac_din_ptera_head.c"
-#include "../src/ftr/ac_din_stego_body.c"
-#include "../src/ftr/ac_din_stego_dummyA.c"
-#include "../src/ftr/ac_din_stego_dummyB.c"
-#include "../src/ftr/ac_din_stego_head.c"
-#include "../src/ftr/ac_din_stego_tail.c"
-#include "../src/ftr/ac_din_stump.c"
-#include "../src/ftr/ac_din_trex_body.c"
-#include "../src/ftr/ac_din_trex_dummy.c"
-#include "../src/ftr/ac_din_trex_head.c"
-#include "../src/ftr/ac_din_trex_tail.c"
-#include "../src/ftr/ac_din_trikera_body.c"
-#include "../src/ftr/ac_din_trikera_dummy.c"
-#include "../src/ftr/ac_din_trikera_head.c"
-#include "../src/ftr/ac_din_trikera_tail.c"
-#include "../src/ftr/ac_din_trilobite.c"
-#include "../src/ftr/ac_famicom_common.c"
-#include "../src/ftr/ac_fmanekin.c"
-#include "../src/ftr/ac_fumbrella.c"
-#include "../src/ftr/ac_hnw_common.c"
-#include "../src/ftr/ac_ike_art_ang.c"
-#include "../src/ftr/ac_ike_art_fel.c"
-#include "../src/ftr/ac_ike_island_hako01.c"
-#include "../src/ftr/ac_ike_island_sensui01.c"
-#include "../src/ftr/ac_ike_island_uku01.c"
-#include "../src/ftr/ac_ike_jny_afmen01.c"
-#include "../src/ftr/ac_ike_jny_botle01.c"
-#include "../src/ftr/ac_ike_jny_gate01.c"
-#include "../src/ftr/ac_ike_jny_gojyu01.c"
-#include "../src/ftr/ac_ike_jny_hariko01.c"
-#include "../src/ftr/ac_ike_jny_houi01.c"
-#include "../src/ftr/ac_ike_jny_kibori01.c"
-#include "../src/ftr/ac_ike_jny_makada01.c"
-#include "../src/ftr/ac_ike_jny_moai01.c"
-#include "../src/ftr/ac_ike_jny_ningyo01.c"
-#include "../src/ftr/ac_ike_jny_pisa01.c"
-#include "../src/ftr/ac_ike_jny_rosia01.c"
-#include "../src/ftr/ac_ike_jny_sirser01.c"
-#include "../src/ftr/ac_ike_jny_sirser201.c"
-#include "../src/ftr/ac_ike_jny_syon01.c"
-#include "../src/ftr/ac_ike_jny_tower01.c"
-#include "../src/ftr/ac_ike_jny_truth01.c"
-#include "../src/ftr/ac_ike_jpn_tansu01.c"
-#include "../src/ftr/ac_ike_kama_danro01.c"
-#include "../src/ftr/ac_ike_k_count01.c"
-#include "../src/ftr/ac_ike_k_iveboy01.c"
-#include "../src/ftr/ac_ike_k_kid01.c"
-#include "../src/ftr/ac_ike_k_kid02.c"
-#include "../src/ftr/ac_ike_k_mame01.c"
-#include "../src/ftr/ac_ike_k_sum01.c"
-#include "../src/ftr/ac_ike_k_otome01.c"
-#include "../src/ftr/ac_ike_k_sinnen01.c"
-#include "../src/ftr/ac_ike_k_tanabata01.c"
-#include "../src/ftr/ac_ike_k_turis01.c"
-#include "../src/ftr/ac_ike_nikki_fan1.c"
-#include "../src/ftr/ac_ike_nikki_fan2.c"
-#include "../src/ftr/ac_ike_nikki_fan3.c"
-#include "../src/ftr/ac_ike_nikki_fan4.c"
-#include "../src/ftr/ac_ike_nikki_fan5.c"
-#include "../src/ftr/ac_ike_nikki_wafu1.c"
-#include "../src/ftr/ac_ike_pst_pig01.c"
-#include "../src/ftr/ac_ike_pst_tesyu01.c"
-#include "../src/ftr/ac_kob_disksystem8.c"
-#include "../src/ftr/ac_kob_getabako1.c"
-#include "../src/ftr/ac_kob_getabako2.c"
-#include "../src/ftr/ac_kob_jimudesk.c"
-#include "../src/ftr/ac_kob_jimuisu.c"
-#include "../src/ftr/ac_kob_locker1.c"
-#include "../src/ftr/ac_kob_mastersword.c"
-#include "../src/ftr/ac_kob_ncube.c"
-#include "../src/ftr/ac_kob_pipeisu.c"
-#include "../src/ftr/ac_kob_rika_desk.c"
-#include "../src/ftr/ac_kob_tobibako.c"
-#include "../src/ftr/ac_kon_ameclock.c"
-#include "../src/ftr/ac_kon_atqclock.c"
-#include "../src/ftr/ac_kon_blueclock.c"
-#include "../src/ftr/ac_kon_cracker.c"
-#include "../src/ftr/ac_kon_gomi03.c"
-#include "../src/ftr/ac_kon_gomi04.c"
-#include "../src/ftr/ac_kon_grclock.c"
-#include "../src/ftr/ac_kon_isi01.c"
-#include "../src/ftr/ac_kon_isi02.c"
-#include "../src/ftr/ac_kon_isi03.c"
-#include "../src/ftr/ac_kon_isi04.c"
-#include "../src/ftr/ac_kon_isi05.c"
-#include "../src/ftr/ac_kon_isi06.c"
-#include "../src/ftr/ac_kon_jihanki02.c"
-#include "../src/ftr/ac_kon_jihanki03.c"
-#include "../src/ftr/ac_kon_mimiclock.c"
-#include "../src/ftr/ac_kon_musya.c"
-#include "../src/ftr/ac_kon_pound.c"
-#include "../src/ftr/ac_kon_redclock.c"
-#include "../src/ftr/ac_kon_sisiodosi.c"
-#include "../src/ftr/ac_kon_snowbed.c"
-#include "../src/ftr/ac_kon_snowbox.c"
-#include "../src/ftr/ac_kon_snowclock.c"
-#include "../src/ftr/ac_kon_snowfreezer.c"
-#include "../src/ftr/ac_kon_snowsofa.c"
-#include "../src/ftr/ac_kon_snowtable.c"
-#include "../src/ftr/ac_kon_snowtansu.c"
-#include "../src/ftr/ac_kon_snowtv.c"
-#include "../src/ftr/ac_kon_taiju.c"
-#include "../src/ftr/ac_kon_tubo.c"
-#include "../src/ftr/ac_kon_tubo2.c"
-#include "../src/ftr/ac_kon_tubo3.c"
-#include "../src/ftr/ac_kon_tukue.c"
-#include "../src/ftr/ac_kon_waclock.c"
-#include "../src/ftr/ac_kon_xtree02.c"
-#include "../src/ftr/ac_myfmanekin.c"
-#include "../src/ftr/ac_myfumbrella.c"
-#include "../src/ftr/ac_nog_amenbo.c"
-#include "../src/ftr/ac_nog_ari.c"
-#include "../src/ftr/ac_nog_balloon_common.c"
-#include "../src/ftr/ac_nog_beachbed.c"
-#include "../src/ftr/ac_nog_beachtable.c"
-#include "../src/ftr/ac_nog_bishopB.c"
-#include "../src/ftr/ac_nog_bishopW.c"
-#include "../src/ftr/ac_nog_dango.c"
-#include "../src/ftr/ac_nog_collegenote.c"
-#include "../src/ftr/ac_nog_dump.c"
-#include "../src/ftr/ac_nog_earth.c"
-#include "../src/ftr/ac_nog_fan01.c"
-#include "../src/ftr/ac_nog_flat.c"
-#include "../src/ftr/ac_nog_harddiary.c"
-#include "../src/ftr/ac_nog_isidai.c"
-#include "../src/ftr/ac_nog_ka.c"
-#include "../src/ftr/ac_nog_kaeru.c"
-#include "../src/ftr/ac_nog_kamakura.c"
-#include "../src/ftr/ac_nog_kera.c"
-#include "../src/ftr/ac_nog_kingB.c"
-#include "../src/ftr/ac_nog_kingW.c"
-#include "../src/ftr/ac_nog_knightB.c"
-#include "../src/ftr/ac_nog_knightW.c"
-#include "../src/ftr/ac_nog_koban.c"
-#include "../src/ftr/ac_nog_kumo.c"
-#include "../src/ftr/ac_nog_kurage.c"
-#include "../src/ftr/ac_nog_maimai.c"
-#include "../src/ftr/ac_nog_mino.c"
-#include "../src/ftr/ac_nog_mikanbox.c"
-#include "../src/ftr/ac_nog_medaka.c"
-#include "../src/ftr/ac_nog_museum.c"
-#include "../src/ftr/ac_nog_myhome2.c"
-#include "../src/ftr/ac_nog_myhome4.c"
-#include "../src/ftr/ac_nog_nabe.c"
-#include "../src/ftr/ac_nog_pawnB.c"
-#include "../src/ftr/ac_nog_pawnW.c"
-#include "../src/ftr/ac_nog_piraluku.c"
-#include "../src/ftr/ac_nog_queenB.c"
-#include "../src/ftr/ac_nog_queenW.c"
-#include "../src/ftr/ac_nog_rail.c"
-#include "../src/ftr/ac_nog_rookB.c"
-#include "../src/ftr/ac_nog_rookW.c"
-#include "../src/ftr/ac_nog_schoolnote.c"
-#include "../src/ftr/ac_nog_shrine.c"
-#include "../src/ftr/ac_nog_snowman.c"
-#include "../src/ftr/ac_nog_station.c"
-#include "../src/ftr/ac_nog_systemnote.c"
-#include "../src/ftr/ac_nog_s_tree.c"
-#include "../src/ftr/ac_nog_f_tree.c"
-#include "../src/ftr/ac_nog_suzuki.c"
-#include "../src/ftr/ac_nog_shop1.c"
-#include "../src/ftr/ac_nog_tai.c"
-#include "../src/ftr/ac_nog_tri_audio01.c"
-#include "../src/ftr/ac_nog_tri_bed01.c"
-#include "../src/ftr/ac_nog_tri_chair01.c"
-#include "../src/ftr/ac_nog_tri_chest01.c"
-#include "../src/ftr/ac_nog_tri_chest02.c"
-#include "../src/ftr/ac_nog_tri_chest03.c"
-#include "../src/ftr/ac_nog_tri_clock01.c"
-#include "../src/ftr/ac_nog_tri_rack01.c"
-#include "../src/ftr/ac_nog_tri_sofa01.c"
-#include "../src/ftr/ac_nog_tri_table01.c"
-#include "../src/ftr/ac_nog_tudurinote.c"
-#include "../src/ftr/ac_nog_xtree.c"
-#include "../src/ftr/ac_nog_uranai.c"
-#include "../src/ftr/ac_nog_yamishop.c"
-#include "../src/ftr/ac_nog_yubin.c"
-#include "../src/ftr/ac_nog_zarigani.c"
-#include "../src/ftr/ac_nog_zassou.c"
-#include "../src/ftr/ac_nog_w_tree.c"
-#include "../src/ftr/ac_sum_abura.c"
-#include "../src/ftr/ac_sum_akiakane.c"
-#include "../src/ftr/ac_sum_angel.c"
-#include "../src/ftr/ac_sum_aroana.c"
-#include "../src/ftr/ac_sum_art01.c"
-#include "../src/ftr/ac_sum_art04.c"
-#include "../src/ftr/ac_sum_art05.c"
-#include "../src/ftr/ac_sum_art06.c"
-#include "../src/ftr/ac_ike_art_sya.c"
-#include "../src/ftr/ac_sum_art08.c"
-#include "../src/ftr/ac_sum_art09.c"
-#include "../src/ftr/ac_sum_art10.c"
-#include "../src/ftr/ac_sum_art11.c"
-#include "../src/ftr/ac_sum_art12.c"
-#include "../src/ftr/ac_sum_art13.c"
-#include "../src/ftr/ac_sum_art14.c"
-#include "../src/ftr/ac_sum_art15.c"
-#include "../src/ftr/ac_sum_asi_bed01.c"
-#include "../src/ftr/ac_sum_asi_chair01.c"
-#include "../src/ftr/ac_sum_asi_chair02.c"
-#include "../src/ftr/ac_sum_asi_chest01.c"
-#include "../src/ftr/ac_sum_asi_chest02.c"
-#include "../src/ftr/ac_sum_asi_chest03.c"
-#include "../src/ftr/ac_sum_asi_lanp01.c"
-#include "../src/ftr/ac_sum_asi_screen01.c"
-#include "../src/ftr/ac_sum_asi_table01.c"
-#include "../src/ftr/ac_sum_asi_table02.c"
-#include "../src/ftr/ac_sum_asi_taiko.c"
-#include "../src/ftr/ac_sum_ayu.c"
-#include "../src/ftr/ac_sum_baketu.c"
-#include "../src/ftr/ac_sum_bass.c"
-#include "../src/ftr/ac_sum_bass01.c"
-#include "../src/ftr/ac_sum_bassl.c"
-#include "../src/ftr/ac_sum_bassm.c"
-#include "../src/ftr/ac_sum_bdcake01.c"
-#include "../src/ftr/ac_sum_billiads.c"
-#include "../src/ftr/ac_sum_biwa01.c"
-#include "../src/ftr/ac_sum_bla_bed01.c"
-#include "../src/ftr/ac_sum_bla_chair02.c"
-#include "../src/ftr/ac_sum_bla_chest01.c"
-#include "../src/ftr/ac_sum_bla_chest02.c"
-#include "../src/ftr/ac_sum_bla_chest03.c"
-#include "../src/ftr/ac_sum_bla_desk01.c"
-#include "../src/ftr/ac_sum_bla_lanp.c"
-#include "../src/ftr/ac_sum_bla_sofa02.c"
-#include "../src/ftr/ac_sum_bla_table01.c"
-#include "../src/ftr/ac_sum_bla_table02.c"
-#include "../src/ftr/ac_sum_blue_bed01.c"
-#include "../src/ftr/ac_sum_blue_bench01.c"
-#include "../src/ftr/ac_sum_blue_bureau01.c"
-#include "../src/ftr/ac_sum_blue_cab01.c"
-#include "../src/ftr/ac_sum_blue_chair01.c"
-#include "../src/ftr/ac_sum_blue_chest01.c"
-#include "../src/ftr/ac_sum_blue_chest02.c"
-#include "../src/ftr/ac_sum_blue_clk.c"
-#include "../src/ftr/ac_sum_blue_lowchest01.c"
-#include "../src/ftr/ac_sum_blue_table01.c"
-#include "../src/ftr/ac_sum_bon_boke.c"
-#include "../src/ftr/ac_sum_bon_matu01.c"
-#include "../src/ftr/ac_sum_bon_matu02.c"
-#include "../src/ftr/ac_sum_bon_matu03.c"
-#include "../src/ftr/ac_sum_bon_momiji.c"
-#include "../src/ftr/ac_sum_bon_pira.c"
-#include "../src/ftr/ac_sum_bon_sanshu.c"
-#include "../src/ftr/ac_sum_bon_satuki.c"
-#include "../src/ftr/ac_sum_bon_turu.c"
-#include "../src/ftr/ac_sum_bon_ume.c"
-#include "../src/ftr/ac_sum_bookcht01.c"
-#include "../src/ftr/ac_sum_casse01.c"
-#include "../src/ftr/ac_sum_cello01.c"
-#include "../src/ftr/ac_sum_chair01.c"
-#include "../src/ftr/ac_sum_chikuon01.c"
-#include "../src/ftr/ac_sum_chikuon02.c"
-#include "../src/ftr/ac_sum_classiccabinet01.c"
-#include "../src/ftr/ac_sum_classicchair01.c"
-#include "../src/ftr/ac_sum_classicchest01.c"
-#include "../src/ftr/ac_sum_classicchest02.c"
-#include "../src/ftr/ac_sum_classictable01.c"
-#include "../src/ftr/ac_sum_classicwardrope01.c"
-#include "../src/ftr/ac_sum_clbed02.c"
-#include "../src/ftr/ac_sum_clchair02.c"
-#include "../src/ftr/ac_sum_clchest03.c"
-#include "../src/ftr/ac_sum_col_chair01.c"
-#include "../src/ftr/ac_sum_col_chair02.c"
-#include "../src/ftr/ac_sum_col_chair03.c"
-#include "../src/ftr/ac_sum_comp01.c"
-#include "../src/ftr/ac_sum_conga01.c"
-#include "../src/ftr/ac_sum_conpo01.c"
-#include "../src/ftr/ac_sum_conpo02.c"
-#include "../src/ftr/ac_sum_cont_bed01.c"
-#include "../src/ftr/ac_sum_cont_cab01.c"
-#include "../src/ftr/ac_sum_cont_chair01.c"
-#include "../src/ftr/ac_sum_cont_chest01.c"
-#include "../src/ftr/ac_sum_cont_chest02.c"
-#include "../src/ftr/ac_sum_cont_chest03.c"
-#include "../src/ftr/ac_sum_cont_sofa01.c"
-#include "../src/ftr/ac_sum_cont_sofa02.c"
-#include "../src/ftr/ac_sum_cont_table01.c"
-#include "../src/ftr/ac_sum_cont_table02.c"
-#include "../src/ftr/ac_sum_cupboard01.c"
-#include "../src/ftr/ac_sum_danna.c"
-#include "../src/ftr/ac_sum_demekin.c"
-#include "../src/ftr/ac_sum_desk01.c"
-#include "../src/ftr/ac_sum_dojyo.c"
-#include "../src/ftr/ac_sum_doll01.c"
-#include "../src/ftr/ac_sum_doll02.c"
-#include "../src/ftr/ac_sum_doll03.c"
-#include "../src/ftr/ac_sum_doll04.c"
-#include "../src/ftr/ac_sum_doll05.c"
-#include "../src/ftr/ac_sum_doll06.c"
-#include "../src/ftr/ac_sum_doll07.c"
-#include "../src/ftr/ac_sum_doll08.c"
-#include "../src/ftr/ac_sum_doll09.c"
-#include "../src/ftr/ac_sum_doll10.c"
-#include "../src/ftr/ac_sum_doll11.c"
-#include "../src/ftr/ac_sum_donko.c"
-#include "../src/ftr/ac_sum_fruitbed01.c"
-#include "../src/ftr/ac_sum_fruitchair01.c"
-#include "../src/ftr/ac_sum_fruitchair02.c"
-#include "../src/ftr/ac_sum_fruitchair03.c"
-#include "../src/ftr/ac_sum_fruitchair04.c"
-#include "../src/ftr/ac_sum_fruitchest01.c"
-#include "../src/ftr/ac_sum_fruitchest03.c"
-#include "../src/ftr/ac_sum_fruitclk.c"
-#include "../src/ftr/ac_sum_fruittable01.c"
-#include "../src/ftr/ac_sum_fruittable02.c"
-#include "../src/ftr/ac_sum_fruittable03.c"
-#include "../src/ftr/ac_sum_fruittv01.c"
-#include "../src/ftr/ac_sum_funa.c"
-#include "../src/ftr/ac_sum_genji.c"
-#include "../src/ftr/ac_sum_gill.c"
-#include "../src/ftr/ac_sum_ginyanma.c"
-#include "../src/ftr/ac_sum_globe01.c"
-#include "../src/ftr/ac_sum_golfbag01.c"
-#include "../src/ftr/ac_sum_golfbag02.c"
-#include "../src/ftr/ac_sum_golfbag03.c"
-#include "../src/ftr/ac_sum_gomadara.c"
-#include "../src/ftr/ac_sum_gre_bed01.c"
-#include "../src/ftr/ac_sum_gre_chair01.c"
-#include "../src/ftr/ac_sum_gre_chair02.c"
-#include "../src/ftr/ac_sum_gre_chest01.c"
-#include "../src/ftr/ac_sum_gre_chest02.c"
-#include "../src/ftr/ac_sum_gre_chest03.c"
-#include "../src/ftr/ac_sum_gre_counter01.c"
-#include "../src/ftr/ac_sum_gre_desk01.c"
-#include "../src/ftr/ac_sum_gre_lanp01.c"
-#include "../src/ftr/ac_sum_gre_table01.c"
-#include "../src/ftr/ac_sum_guitar01.c"
-#include "../src/ftr/ac_sum_guitar02.c"
-#include "../src/ftr/ac_sum_guitar03.c"
-#include "../src/ftr/ac_sum_gupi.c"
-#include "../src/ftr/ac_sum_hachi.c"
-#include "../src/ftr/ac_sum_hal_bed01.c"
-#include "../src/ftr/ac_sum_hal_box01.c"
-#include "../src/ftr/ac_sum_hal_chair01.c"
-#include "../src/ftr/ac_sum_hal_chest01.c"
-#include "../src/ftr/ac_sum_hal_chest02.c"
-#include "../src/ftr/ac_sum_hal_chest03.c"
-#include "../src/ftr/ac_sum_hal_clk01.c"
-#include "../src/ftr/ac_sum_hal_lanp01.c"
-#include "../src/ftr/ac_sum_hal_mirror01.c"
-#include "../src/ftr/ac_sum_hal_pkin.c"
-#include "../src/ftr/ac_sum_hal_sofa01.c"
-#include "../src/ftr/ac_sum_hal_table01.c"
-#include "../src/ftr/ac_sum_harp.c"
-#include "../src/ftr/ac_sum_hera.c"
-#include "../src/ftr/ac_sum_higurashi.c"
-#include "../src/ftr/ac_sum_hirata.c"
-#include "../src/ftr/ac_sum_ito.c"
-#include "../src/ftr/ac_sum_iwana.c"
-#include "../src/ftr/ac_sum_jukebox.c"
-#include "../src/ftr/ac_sum_kabuto.c"
-#include "../src/ftr/ac_sum_kamakiri.c"
-#include "../src/ftr/ac_sum_kanabun.c"
-#include "../src/ftr/ac_sum_kaseki.c"
-#include "../src/ftr/ac_sum_kiageha.c"
-#include "../src/ftr/ac_sum_kingyo.c"
-#include "../src/ftr/ac_sum_kirigirisu.c"
-#include "../src/ftr/ac_sum_kisha.c"
-#include "../src/ftr/ac_sum_kitchair01.c"
-#include "../src/ftr/ac_sum_kittable01.c"
-#include "../src/ftr/ac_sum_koi.c"
-#include "../src/ftr/ac_sum_kokuban.c"
-#include "../src/ftr/ac_sum_koorogi.c"
-#include "../src/ftr/ac_sum_liccabed.c"
-#include "../src/ftr/ac_sum_liccachair.c"
-#include "../src/ftr/ac_sum_liccachest.c"
-#include "../src/ftr/ac_sum_liccakitchen.c"
-#include "../src/ftr/ac_sum_liccalanp.c"
-#include "../src/ftr/ac_sum_liccalowchest.c"
-#include "../src/ftr/ac_sum_liccalowtable.c"
-#include "../src/ftr/ac_sum_liccamirror.c"
-#include "../src/ftr/ac_sum_liccapiano.c"
-#include "../src/ftr/ac_sum_liccasofa.c"
-#include "../src/ftr/ac_sum_liccatable.c"
-#include "../src/ftr/ac_sum_log_bed01.c"
-#include "../src/ftr/ac_sum_log_chair01.c"
-#include "../src/ftr/ac_sum_log_chair02.c"
-#include "../src/ftr/ac_sum_log_chair03.c"
-#include "../src/ftr/ac_sum_log_chest01.c"
-#include "../src/ftr/ac_sum_log_chest02.c"
-#include "../src/ftr/ac_sum_log_chest03.c"
-#include "../src/ftr/ac_sum_log_hatoclk.c"
-#include "../src/ftr/ac_sum_log_table01.c"
-#include "../src/ftr/ac_sum_log_table02.c"
-#include "../src/ftr/ac_sum_lv_stereo.c"
-#include "../src/ftr/ac_sum_matumushi.c"
-#include "../src/ftr/ac_sum_md01.c"
-#include "../src/ftr/ac_sum_mezaclock.c"
-#include "../src/ftr/ac_sum_minmin.c"
-#include "../src/ftr/ac_sum_misin01.c"
-#include "../src/ftr/ac_sum_miyama.c"
-#include "../src/ftr/ac_sum_mizunomi.c"
-#include "../src/ftr/ac_sum_monki.c"
-#include "../src/ftr/ac_sum_monshiro.c"
-#include "../src/ftr/ac_sum_namazu.c"
-#include "../src/ftr/ac_sum_nanahoshi.c"
-#include "../src/ftr/ac_sum_nigoi.c"
-#include "../src/ftr/ac_sum_niji.c"
-#include "../src/ftr/ac_sum_nisiki.c"
-#include "../src/ftr/ac_sum_nokogiri.c"
-#include "../src/ftr/ac_sum_ohmurasaki.c"
-#include "../src/ftr/ac_sum_oikawa.c"
-#include "../src/ftr/ac_sum_okiagari01.c"
-#include "../src/ftr/ac_sum_okuwa.c"
-#include "../src/ftr/ac_sum_oldclk01.c"
-#include "../src/ftr/ac_sum_oldsofa01.c"
-#include "../src/ftr/ac_sum_oniyanma.c"
-#include "../src/ftr/ac_sum_oonamazu.c"
-#include "../src/ftr/ac_sum_pet01.c"
-#include "../src/ftr/ac_sum_piano01.c"
-#include "../src/ftr/ac_sum_pirania.c"
-#include "../src/ftr/ac_sum_pl_aloe01.c"
-#include "../src/ftr/ac_sum_pl_ananas.c"
-#include "../src/ftr/ac_sum_pl_benjyami.c"
-#include "../src/ftr/ac_sum_pl_caladium01.c"
-#include "../src/ftr/ac_sum_pl_cocos.c"
-#include "../src/ftr/ac_sum_pl_compacta.c"
-#include "../src/ftr/ac_sum_pl_draca02.c"
-#include "../src/ftr/ac_sum_pl_dracaena.c"
-#include "../src/ftr/ac_sum_pl_gomunoki.c"
-#include "../src/ftr/ac_sum_pl_hirasabo.c"
-#include "../src/ftr/ac_sum_pl_kuroton.c"
-#include "../src/ftr/ac_sum_pl_pakila.c"
-#include "../src/ftr/ac_sum_pl_pothos.c"
-#include "../src/ftr/ac_sum_pl_shuroci.c"
-#include "../src/ftr/ac_sum_pl_yamayasi.c"
-#include "../src/ftr/ac_sum_popchair01.c"
-#include "../src/ftr/ac_sum_popchair02.c"
-#include "../src/ftr/ac_sum_popchair03.c"
-#include "../src/ftr/ac_sum_poptable01.c"
-#include "../src/ftr/ac_sum_poptable02.c"
-#include "../src/ftr/ac_sum_poptable03.c"
-#include "../src/ftr/ac_sum_radio01.c"
-#include "../src/ftr/ac_sum_radio02.c"
-#include "../src/ftr/ac_sum_raigyo.c"
-#include "../src/ftr/ac_sum_ratan_bed01.c"
-#include "../src/ftr/ac_sum_ratan_chest01.c"
-#include "../src/ftr/ac_sum_ratan_chest02.c"
-#include "../src/ftr/ac_sum_ratan_chest03.c"
-#include "../src/ftr/ac_sum_ratan_isu01.c"
-#include "../src/ftr/ac_sum_ratan_isu02.c"
-#include "../src/ftr/ac_sum_ratan_lanp.c"
-#include "../src/ftr/ac_sum_ratan_mirror.c"
-#include "../src/ftr/ac_sum_ratan_screen.c"
-#include "../src/ftr/ac_sum_ratan_table01.c"
-#include "../src/ftr/ac_sum_reco01.c"
-#include "../src/ftr/ac_sum_roboclk.c"
-#include "../src/ftr/ac_sum_roboconpo.c"
-#include "../src/ftr/ac_sum_sabo01.c"
-#include "../src/ftr/ac_sum_sabo02.c"
-#include "../src/ftr/ac_sum_saiconpo.c"
-#include "../src/ftr/ac_sum_sake.c"
-#include "../src/ftr/ac_sum_shiokara.c"
-#include "../src/ftr/ac_sum_shoukaki.c"
-#include "../src/ftr/ac_sum_slot.c"
-#include "../src/ftr/ac_sum_sofe01.c"
-#include "../src/ftr/ac_sum_sofe02.c"
-#include "../src/ftr/ac_sum_sofe03.c"
-#include "../src/ftr/ac_sum_stereo01.c"
-#include "../src/ftr/ac_sum_stereo02.c"
-#include "../src/ftr/ac_sum_stove01.c"
-#include "../src/ftr/ac_sum_suberi01.c"
-#include "../src/ftr/ac_sum_suzumushi.c"
-#include "../src/ftr/ac_sum_syouryou.c"
-#include "../src/ftr/ac_sum_taiko01.c"
-#include "../src/ftr/ac_sum_takkyu.c"
-#include "../src/ftr/ac_sum_tamamushi.c"
-#include "../src/ftr/ac_sum_tanago.c"
-#include "../src/ftr/ac_sum_taru01.c"
-#include "../src/ftr/ac_sum_taru02.c"
-#include "../src/ftr/ac_sum_tekin01.c"
-#include "../src/ftr/ac_sum_tentou.c"
-#include "../src/ftr/ac_sum_timpani01.c"
-#include "../src/ftr/ac_sum_tonosama.c"
-#include "../src/ftr/ac_sum_totemp01.c"
-#include "../src/ftr/ac_sum_totemp02.c"
-#include "../src/ftr/ac_sum_totemp03.c"
-#include "../src/ftr/ac_sum_totemp04.c"
-#include "../src/ftr/ac_sum_touro01.c"
-#include "../src/ftr/ac_sum_touro02.c"
-#include "../src/ftr/ac_sum_touro03.c"
-#include "../src/ftr/ac_sum_touro04.c"
-#include "../src/ftr/ac_sum_tukutuku.c"
-#include "../src/ftr/ac_sum_tv01.c"
-#include "../src/ftr/ac_sum_tv02.c"
-#include "../src/ftr/ac_sum_ugui.c"
-#include "../src/ftr/ac_sum_unagi.c"
-#include "../src/ftr/ac_sum_uwa_cup01.c"
-#include "../src/ftr/ac_sum_uwa_poto01.c"
-#include "../src/ftr/ac_sum_uwa_vase01.c"
-#include "../src/ftr/ac_sum_uwa_vase02.c"
-#include "../src/ftr/ac_sum_uwa_vase03.c"
-#include "../src/ftr/ac_sum_viola01.c"
-#include "../src/ftr/ac_sum_wakasagi.c"
-#include "../src/ftr/ac_sum_wc01.c"
-#include "../src/ftr/ac_sum_wc02.c"
-#include "../src/ftr/ac_sum_whi_bed01.c"
-#include "../src/ftr/ac_sum_whi_chest01.c"
-#include "../src/ftr/ac_sum_whi_chest02.c"
-#include "../src/ftr/ac_sum_whi_lanp.c"
-#include "../src/ftr/ac_sum_whi_mirror.c"
-#include "../src/ftr/ac_sum_whi_sofa01.c"
-#include "../src/ftr/ac_sum_x_bed01.c"
-#include "../src/ftr/ac_sum_x_chair01.c"
-#include "../src/ftr/ac_sum_x_chest01.c"
-#include "../src/ftr/ac_sum_x_chest02.c"
-#include "../src/ftr/ac_sum_x_chest03.c"
-#include "../src/ftr/ac_sum_x_clk.c"
-#include "../src/ftr/ac_sum_x_lanp.c"
-#include "../src/ftr/ac_sum_x_piano.c"
-#include "../src/ftr/ac_sum_x_sofa01.c"
-#include "../src/ftr/ac_sum_x_table01.c"
-#include "../src/ftr/ac_sum_yamame.c"
-#include "../src/ftr/ac_tak_apollo1.c"
-#include "../src/ftr/ac_tak_arwing.c"
-#include "../src/ftr/ac_tak_asteroid1.c"
-#include "../src/ftr/ac_tak_astro.c"
-#include "../src/ftr/ac_tak_barber.c"
-#include "../src/ftr/ac_tak_cone01.c"
-#include "../src/ftr/ac_tak_cone03.c"
-#include "../src/ftr/ac_tak_cube.c"
-#include "../src/ftr/ac_tak_drum02.c"
-#include "../src/ftr/ac_tak_eisei.c"
-#include "../src/ftr/ac_tak_hole01.c"
-#include "../src/ftr/ac_tak_ice.c"
-#include "../src/ftr/ac_tak_isu03.c"
-#include "../src/ftr/ac_tak_lion.c"
-#include "../src/ftr/ac_tak_megami.c"
-#include "../src/ftr/ac_tak_metro.c"
-#include "../src/ftr/ac_tak_money.c"
-#include "../src/ftr/ac_tak_moon.c"
-#include "../src/ftr/ac_tak_mooncar.c"
-#include "../src/ftr/ac_tak_moti.c"
-#include "../src/ftr/ac_tak_neko.c"
-#include "../src/ftr/ac_tak_nikki01.c"
-#include "../src/ftr/ac_tak_rocket1.c"
-#include "../src/ftr/ac_tak_sori01.c"
-#include "../src/ftr/ac_tak_syogi.c"
-#include "../src/ftr/ac_tak_shuttle.c"
-#include "../src/ftr/ac_tak_snowisu.c"
-#include "../src/ftr/ac_tak_snowlamp.c"
-#include "../src/ftr/ac_tak_station.c"
-#include "../src/ftr/ac_tak_table02.c"
-#include "../src/ftr/ac_tak_tailor.c"
-#include "../src/ftr/ac_tak_tekkin.c"
-#include "../src/ftr/ac_tak_tetra.c"
-#include "../src/ftr/ac_tak_toudai.c"
-#include "../src/ftr/ac_tak_ufo.c"
-#include "../src/ftr/ac_tak_yaji.c"
-#include "../src/ftr/ac_tak_yoroi.c"
-#include "../src/ftr/ac_iid_benti.c"
-#include "../src/ftr/ac_iid_diary.c"
-#include "../src/ftr/ac_iid_funediary.c"
-#include "../src/ftr/ac_iid_mdiary.c"
-#include "../src/ftr/ac_iid_newdiary.c"
-#include "../src/ftr/ac_iid_ningyou.c"
-#include "../src/ftr/ac_iid_snow.c"
-#include "../src/ftr/ac_iid_surf.c"
-#include "../src/ftr/ac_iid_yuki.c"
-#include "../src/ftr/ac_hayakawa_famicom.c"
-#include "../src/ftr/ac_radio_test.c"
-#include "../src/ftr/ac_gold_item.c"
-#include "../src/ftr/ac_utiwa.c"
-#include "../src/ftr/ac_kazaguruma.c"
-#include "../src/ftr/ac_tool.c"
-#include "../src/ftr/ac_hos_deskL.c"
-#include "../src/ftr/ac_hos_deskR.c"
-#include "../src/ftr/ac_hos_flip.c"
-#include "../src/ftr/ac_hos_mario_hata.c"
-#include "../src/ftr/ac_hos_mario_kinoko.c"
-#include "../src/ftr/ac_hos_piknic.c"
-#include "../src/ftr/ac_hos_Tdesk.c"
-#include "../src/ftr/ac_iku_bugzapper.c"
-#include "../src/ftr/ac_hos_turkey_sofa.c"
-#include "../src/ftr/ac_iku_busstop.c"
-#include "../src/ftr/ac_iku_candy.c"
-#include "../src/ftr/ac_iku_cement.c"
-#include "../src/ftr/ac_iku_chair.c"
-#include "../src/ftr/ac_iku_cocoa.c"
-#include "../src/ftr/ac_iku_cow.c"
-#include "../src/ftr/ac_iku_denko.c"
-#include "../src/ftr/ac_iku_flagman.c"
-#include "../src/ftr/ac_iku_flip_top.c"
-#include "../src/ftr/ac_iku_gold_green.c"
-#include "../src/ftr/ac_iku_gold_red.c"
-#include "../src/ftr/ac_iku_ham.c"
-#include "../src/ftr/ac_iku_hazardous_top.c"
-#include "../src/ftr/ac_iku_ido.c"
-#include "../src/ftr/ac_iku_jack.c"
-#include "../src/ftr/ac_iku_jersey.c"
-#include "../src/ftr/ac_iku_mario_coin.c"
-#include "../src/ftr/ac_iku_mario_dokan.c"
-#include "../src/ftr/ac_iku_mario_hatena.c"
-#include "../src/ftr/ac_iku_mario_koura.c"
-#include "../src/ftr/ac_iku_mario_renga.c"
-#include "../src/ftr/ac_iku_mario_taihou.c"
-#include "../src/ftr/ac_iku_mario_star.c"
-#include "../src/ftr/ac_iku_orange.c"
-#include "../src/ftr/ac_iku_reducespeed.c"
-#include "../src/ftr/ac_iku_roller.c"
-#include "../src/ftr/ac_iku_saku_a.c"
-#include "../src/ftr/ac_iku_saku_b.c"
-#include "../src/ftr/ac_iku_sawhousev.c"
-#include "../src/ftr/ac_iku_slip.c"
-#include "../src/ftr/ac_iku_tumble.c"
-#include "../src/ftr/ac_iku_turkey_bed.c"
-#include "../src/ftr/ac_iku_turkey_lamp.c"
-#include "../src/ftr/ac_iku_turkey_table.c"
-#include "../src/ftr/ac_iku_turkey_TV.c"
-#include "../src/ftr/ac_iku_ukai.c"
-#include "../src/ftr/ac_iku_work.c"
-#include "../src/ftr/ac_sugi_alchair.c"
-#include "../src/ftr/ac_sugi_barbecue.c"
-#include "../src/ftr/ac_sugi_chesstable.c"
-#include "../src/ftr/ac_sugi_kpool.c"
-#include "../src/ftr/ac_sugi_radiatorl.c"
-#include "../src/ftr/ac_sugi_torch.c"
-#include "../src/ftr/ac_yaz_b_bath.c"
-#include "../src/ftr/ac_yaz_b_house.c"
-#include "../src/ftr/ac_yaz_candle.c"
-#include "../src/ftr/ac_yaz_fish_trophy.c"
-#include "../src/ftr/ac_yaz_mario_flower.c"
-#include "../src/ftr/ac_yaz_telescope.c"
-#include "../src/ftr/ac_yaz_tub.c"
-#include "../src/ftr/ac_yaz_turkey_chair.c"
-#include "../src/ftr/ac_yaz_turkey_chest.c"
-#include "../src/ftr/ac_yaz_turkey_closet.c"
-#include "../src/ftr/ac_yaz_rocket.c"
-#include "../src/ftr/ac_yaz_wagon.c"
-#include "../src/ftr/ac_yos_b_feeder.c"
-#include "../src/ftr/ac_yos_cactus.c"
-#include "../src/ftr/ac_yos_flamingo.c"
-#include "../src/ftr/ac_yos_flamingo2.c"
-#include "../src/ftr/ac_yos_gnome.c"
-#include "../src/ftr/ac_yos_kflag.c"
-#include "../src/ftr/ac_yos_pbstove.c"
-#include "../src/ftr/ac_yos_mailbox.c"
-#include "../src/ftr/ac_yos_mario.c"
-#include "../src/ftr/ac_yos_luigi.c"
-#include "../src/ftr/ac_yos_terrace.c"
-#include "../src/ftr/ac_yos_turkey_mirror.c"
-#include "../src/ftr/ac_yos_turkey_watch.c"
-#include "../src/ftr/ac_yos_wheel.c"
-#include "../src/ftr/ac_tak_ham1.c"
-#include "../src/ftr/ac_tak_nes01.c"
-#include "../src/ftr/ac_tak_noise.c"
-#include "../src/ftr/ac_tak_stew.c"
-#include "../src/ftr/ac_tak_tent.c"
-#include "../src/ftr/ac_tak_tent_box.c"
-#include "../src/ftr/ac_tak_tent_lamp.c"
-#include "../src/ftr/ac_ike_fish_tro2.c"
-#include "../src/ftr/ac_ike_prores_bench01.c"
-#include "../src/ftr/ac_ike_prores_fense01.c"
-#include "../src/ftr/ac_ike_prores_ling01.c"
-#include "../src/ftr/ac_ike_prores_ling02.c"
-#include "../src/ftr/ac_ike_prores_ling03.c"
-#include "../src/ftr/ac_ike_prores_mat01.c"
-#include "../src/ftr/ac_ike_prores_punch01.c"
-#include "../src/ftr/ac_ike_prores_sandbag01.c"
-#include "../src/ftr/ac_ike_prores_table01.c"
-#include "../src/ftr/ac_ike_tent_bike01.c"
-#include "../src/ftr/ac_ike_tent_fire01.c"
-#include "../src/ftr/ac_ike_tent_fire02.c"
-#include "../src/ftr/ac_ike_tent_kayak01.c"
-#include "../src/ftr/ac_ike_tent_knap01.c"
-#include "../src/ftr/ac_ike_tent_sleepbag01.c"
-#include "../src/ftr/ac_nog_burner.c"
-#include "../src/ftr/ac_nog_cornucopia.c"
-#include "../src/ftr/ac_nog_flower.c"
-#include "../src/ftr/ac_nog_gong.c"
-#include "../src/ftr/ac_nog_lawnmower.c"
-#include "../src/ftr/ac_nog_sprinkler.c"
-#include "../src/ftr/ac_dummy.c"
+#include "../src/furniture/ac_ari_isu01.c"
+#include "../src/furniture/ac_ari_kitchen01.c"
+#include "../src/furniture/ac_ari_reizou01.c"
+#include "../src/furniture/ac_ari_table01.c"
+#include "../src/furniture/ac_din_amber.c"
+#include "../src/furniture/ac_din_ammonite.c"
+#include "../src/furniture/ac_din_bront_body.c"
+#include "../src/furniture/ac_din_bront_dummy.c"
+#include "../src/furniture/ac_din_bront_head.c"
+#include "../src/furniture/ac_din_bront_tail.c"
+#include "../src/furniture/ac_din_dummy.c"
+#include "../src/furniture/ac_din_egg.c"
+#include "../src/furniture/ac_din_hutaba_body.c"
+#include "../src/furniture/ac_din_hutaba_dummy.c"
+#include "../src/furniture/ac_din_hutaba_head.c"
+#include "../src/furniture/ac_din_hutaba_neck.c"
+#include "../src/furniture/ac_din_mammoth_body.c"
+#include "../src/furniture/ac_din_mammoth_dummy.c"
+#include "../src/furniture/ac_din_mammoth_head.c"
+#include "../src/furniture/ac_din_ptera_dummy.c"
+#include "../src/furniture/ac_din_ptera_Lwing.c"
+#include "../src/furniture/ac_din_ptera_Rwing.c"
+#include "../src/furniture/ac_din_ptera_head.c"
+#include "../src/furniture/ac_din_stego_body.c"
+#include "../src/furniture/ac_din_stego_dummyA.c"
+#include "../src/furniture/ac_din_stego_dummyB.c"
+#include "../src/furniture/ac_din_stego_head.c"
+#include "../src/furniture/ac_din_stego_tail.c"
+#include "../src/furniture/ac_din_stump.c"
+#include "../src/furniture/ac_din_trex_body.c"
+#include "../src/furniture/ac_din_trex_dummy.c"
+#include "../src/furniture/ac_din_trex_head.c"
+#include "../src/furniture/ac_din_trex_tail.c"
+#include "../src/furniture/ac_din_trikera_body.c"
+#include "../src/furniture/ac_din_trikera_dummy.c"
+#include "../src/furniture/ac_din_trikera_head.c"
+#include "../src/furniture/ac_din_trikera_tail.c"
+#include "../src/furniture/ac_din_trilobite.c"
+#include "../src/furniture/ac_famicom_common.c"
+#include "../src/furniture/ac_fmanekin.c"
+#include "../src/furniture/ac_fumbrella.c"
+#include "../src/furniture/ac_hnw_common.c"
+#include "../src/furniture/ac_ike_art_ang.c"
+#include "../src/furniture/ac_ike_art_fel.c"
+#include "../src/furniture/ac_ike_island_hako01.c"
+#include "../src/furniture/ac_ike_island_sensui01.c"
+#include "../src/furniture/ac_ike_island_uku01.c"
+#include "../src/furniture/ac_ike_jny_afmen01.c"
+#include "../src/furniture/ac_ike_jny_botle01.c"
+#include "../src/furniture/ac_ike_jny_gate01.c"
+#include "../src/furniture/ac_ike_jny_gojyu01.c"
+#include "../src/furniture/ac_ike_jny_hariko01.c"
+#include "../src/furniture/ac_ike_jny_houi01.c"
+#include "../src/furniture/ac_ike_jny_kibori01.c"
+#include "../src/furniture/ac_ike_jny_makada01.c"
+#include "../src/furniture/ac_ike_jny_moai01.c"
+#include "../src/furniture/ac_ike_jny_ningyo01.c"
+#include "../src/furniture/ac_ike_jny_pisa01.c"
+#include "../src/furniture/ac_ike_jny_rosia01.c"
+#include "../src/furniture/ac_ike_jny_sirser01.c"
+#include "../src/furniture/ac_ike_jny_sirser201.c"
+#include "../src/furniture/ac_ike_jny_syon01.c"
+#include "../src/furniture/ac_ike_jny_tower01.c"
+#include "../src/furniture/ac_ike_jny_truth01.c"
+#include "../src/furniture/ac_ike_jpn_tansu01.c"
+#include "../src/furniture/ac_ike_kama_danro01.c"
+#include "../src/furniture/ac_ike_k_count01.c"
+#include "../src/furniture/ac_ike_k_iveboy01.c"
+#include "../src/furniture/ac_ike_k_kid01.c"
+#include "../src/furniture/ac_ike_k_kid02.c"
+#include "../src/furniture/ac_ike_k_mame01.c"
+#include "../src/furniture/ac_ike_k_sum01.c"
+#include "../src/furniture/ac_ike_k_otome01.c"
+#include "../src/furniture/ac_ike_k_sinnen01.c"
+#include "../src/furniture/ac_ike_k_tanabata01.c"
+#include "../src/furniture/ac_ike_k_turis01.c"
+#include "../src/furniture/ac_ike_nikki_fan1.c"
+#include "../src/furniture/ac_ike_nikki_fan2.c"
+#include "../src/furniture/ac_ike_nikki_fan3.c"
+#include "../src/furniture/ac_ike_nikki_fan4.c"
+#include "../src/furniture/ac_ike_nikki_fan5.c"
+#include "../src/furniture/ac_ike_nikki_wafu1.c"
+#include "../src/furniture/ac_ike_pst_pig01.c"
+#include "../src/furniture/ac_ike_pst_tesyu01.c"
+#include "../src/furniture/ac_kob_disksystem8.c"
+#include "../src/furniture/ac_kob_getabako1.c"
+#include "../src/furniture/ac_kob_getabako2.c"
+#include "../src/furniture/ac_kob_jimudesk.c"
+#include "../src/furniture/ac_kob_jimuisu.c"
+#include "../src/furniture/ac_kob_locker1.c"
+#include "../src/furniture/ac_kob_mastersword.c"
+#include "../src/furniture/ac_kob_ncube.c"
+#include "../src/furniture/ac_kob_pipeisu.c"
+#include "../src/furniture/ac_kob_rika_desk.c"
+#include "../src/furniture/ac_kob_tobibako.c"
+#include "../src/furniture/ac_kon_ameclock.c"
+#include "../src/furniture/ac_kon_atqclock.c"
+#include "../src/furniture/ac_kon_blueclock.c"
+#include "../src/furniture/ac_kon_cracker.c"
+#include "../src/furniture/ac_kon_gomi03.c"
+#include "../src/furniture/ac_kon_gomi04.c"
+#include "../src/furniture/ac_kon_grclock.c"
+#include "../src/furniture/ac_kon_isi01.c"
+#include "../src/furniture/ac_kon_isi02.c"
+#include "../src/furniture/ac_kon_isi03.c"
+#include "../src/furniture/ac_kon_isi04.c"
+#include "../src/furniture/ac_kon_isi05.c"
+#include "../src/furniture/ac_kon_isi06.c"
+#include "../src/furniture/ac_kon_jihanki02.c"
+#include "../src/furniture/ac_kon_jihanki03.c"
+#include "../src/furniture/ac_kon_mimiclock.c"
+#include "../src/furniture/ac_kon_musya.c"
+#include "../src/furniture/ac_kon_pound.c"
+#include "../src/furniture/ac_kon_redclock.c"
+#include "../src/furniture/ac_kon_sisiodosi.c"
+#include "../src/furniture/ac_kon_snowbed.c"
+#include "../src/furniture/ac_kon_snowbox.c"
+#include "../src/furniture/ac_kon_snowclock.c"
+#include "../src/furniture/ac_kon_snowfreezer.c"
+#include "../src/furniture/ac_kon_snowsofa.c"
+#include "../src/furniture/ac_kon_snowtable.c"
+#include "../src/furniture/ac_kon_snowtansu.c"
+#include "../src/furniture/ac_kon_snowtv.c"
+#include "../src/furniture/ac_kon_taiju.c"
+#include "../src/furniture/ac_kon_tubo.c"
+#include "../src/furniture/ac_kon_tubo2.c"
+#include "../src/furniture/ac_kon_tubo3.c"
+#include "../src/furniture/ac_kon_tukue.c"
+#include "../src/furniture/ac_kon_waclock.c"
+#include "../src/furniture/ac_kon_xtree02.c"
+#include "../src/furniture/ac_myfmanekin.c"
+#include "../src/furniture/ac_myfumbrella.c"
+#include "../src/furniture/ac_nog_amenbo.c"
+#include "../src/furniture/ac_nog_ari.c"
+#include "../src/furniture/ac_nog_balloon_common.c"
+#include "../src/furniture/ac_nog_beachbed.c"
+#include "../src/furniture/ac_nog_beachtable.c"
+#include "../src/furniture/ac_nog_bishopB.c"
+#include "../src/furniture/ac_nog_bishopW.c"
+#include "../src/furniture/ac_nog_dango.c"
+#include "../src/furniture/ac_nog_collegenote.c"
+#include "../src/furniture/ac_nog_dump.c"
+#include "../src/furniture/ac_nog_earth.c"
+#include "../src/furniture/ac_nog_fan01.c"
+#include "../src/furniture/ac_nog_flat.c"
+#include "../src/furniture/ac_nog_harddiary.c"
+#include "../src/furniture/ac_nog_isidai.c"
+#include "../src/furniture/ac_nog_ka.c"
+#include "../src/furniture/ac_nog_kaeru.c"
+#include "../src/furniture/ac_nog_kamakura.c"
+#include "../src/furniture/ac_nog_kera.c"
+#include "../src/furniture/ac_nog_kingB.c"
+#include "../src/furniture/ac_nog_kingW.c"
+#include "../src/furniture/ac_nog_knightB.c"
+#include "../src/furniture/ac_nog_knightW.c"
+#include "../src/furniture/ac_nog_koban.c"
+#include "../src/furniture/ac_nog_kumo.c"
+#include "../src/furniture/ac_nog_kurage.c"
+#include "../src/furniture/ac_nog_maimai.c"
+#include "../src/furniture/ac_nog_mino.c"
+#include "../src/furniture/ac_nog_mikanbox.c"
+#include "../src/furniture/ac_nog_medaka.c"
+#include "../src/furniture/ac_nog_museum.c"
+#include "../src/furniture/ac_nog_myhome2.c"
+#include "../src/furniture/ac_nog_myhome4.c"
+#include "../src/furniture/ac_nog_nabe.c"
+#include "../src/furniture/ac_nog_pawnB.c"
+#include "../src/furniture/ac_nog_pawnW.c"
+#include "../src/furniture/ac_nog_piraluku.c"
+#include "../src/furniture/ac_nog_queenB.c"
+#include "../src/furniture/ac_nog_queenW.c"
+#include "../src/furniture/ac_nog_rail.c"
+#include "../src/furniture/ac_nog_rookB.c"
+#include "../src/furniture/ac_nog_rookW.c"
+#include "../src/furniture/ac_nog_schoolnote.c"
+#include "../src/furniture/ac_nog_shrine.c"
+#include "../src/furniture/ac_nog_snowman.c"
+#include "../src/furniture/ac_nog_station.c"
+#include "../src/furniture/ac_nog_systemnote.c"
+#include "../src/furniture/ac_nog_s_tree.c"
+#include "../src/furniture/ac_nog_f_tree.c"
+#include "../src/furniture/ac_nog_suzuki.c"
+#include "../src/furniture/ac_nog_shop1.c"
+#include "../src/furniture/ac_nog_tai.c"
+#include "../src/furniture/ac_nog_tri_audio01.c"
+#include "../src/furniture/ac_nog_tri_bed01.c"
+#include "../src/furniture/ac_nog_tri_chair01.c"
+#include "../src/furniture/ac_nog_tri_chest01.c"
+#include "../src/furniture/ac_nog_tri_chest02.c"
+#include "../src/furniture/ac_nog_tri_chest03.c"
+#include "../src/furniture/ac_nog_tri_clock01.c"
+#include "../src/furniture/ac_nog_tri_rack01.c"
+#include "../src/furniture/ac_nog_tri_sofa01.c"
+#include "../src/furniture/ac_nog_tri_table01.c"
+#include "../src/furniture/ac_nog_tudurinote.c"
+#include "../src/furniture/ac_nog_xtree.c"
+#include "../src/furniture/ac_nog_uranai.c"
+#include "../src/furniture/ac_nog_yamishop.c"
+#include "../src/furniture/ac_nog_yubin.c"
+#include "../src/furniture/ac_nog_zarigani.c"
+#include "../src/furniture/ac_nog_zassou.c"
+#include "../src/furniture/ac_nog_w_tree.c"
+#include "../src/furniture/ac_sum_abura.c"
+#include "../src/furniture/ac_sum_akiakane.c"
+#include "../src/furniture/ac_sum_angel.c"
+#include "../src/furniture/ac_sum_aroana.c"
+#include "../src/furniture/ac_sum_art01.c"
+#include "../src/furniture/ac_sum_art04.c"
+#include "../src/furniture/ac_sum_art05.c"
+#include "../src/furniture/ac_sum_art06.c"
+#include "../src/furniture/ac_ike_art_sya.c"
+#include "../src/furniture/ac_sum_art08.c"
+#include "../src/furniture/ac_sum_art09.c"
+#include "../src/furniture/ac_sum_art10.c"
+#include "../src/furniture/ac_sum_art11.c"
+#include "../src/furniture/ac_sum_art12.c"
+#include "../src/furniture/ac_sum_art13.c"
+#include "../src/furniture/ac_sum_art14.c"
+#include "../src/furniture/ac_sum_art15.c"
+#include "../src/furniture/ac_sum_asi_bed01.c"
+#include "../src/furniture/ac_sum_asi_chair01.c"
+#include "../src/furniture/ac_sum_asi_chair02.c"
+#include "../src/furniture/ac_sum_asi_chest01.c"
+#include "../src/furniture/ac_sum_asi_chest02.c"
+#include "../src/furniture/ac_sum_asi_chest03.c"
+#include "../src/furniture/ac_sum_asi_lanp01.c"
+#include "../src/furniture/ac_sum_asi_screen01.c"
+#include "../src/furniture/ac_sum_asi_table01.c"
+#include "../src/furniture/ac_sum_asi_table02.c"
+#include "../src/furniture/ac_sum_asi_taiko.c"
+#include "../src/furniture/ac_sum_ayu.c"
+#include "../src/furniture/ac_sum_baketu.c"
+#include "../src/furniture/ac_sum_bass.c"
+#include "../src/furniture/ac_sum_bass01.c"
+#include "../src/furniture/ac_sum_bassl.c"
+#include "../src/furniture/ac_sum_bassm.c"
+#include "../src/furniture/ac_sum_bdcake01.c"
+#include "../src/furniture/ac_sum_billiads.c"
+#include "../src/furniture/ac_sum_biwa01.c"
+#include "../src/furniture/ac_sum_bla_bed01.c"
+#include "../src/furniture/ac_sum_bla_chair02.c"
+#include "../src/furniture/ac_sum_bla_chest01.c"
+#include "../src/furniture/ac_sum_bla_chest02.c"
+#include "../src/furniture/ac_sum_bla_chest03.c"
+#include "../src/furniture/ac_sum_bla_desk01.c"
+#include "../src/furniture/ac_sum_bla_lanp.c"
+#include "../src/furniture/ac_sum_bla_sofa02.c"
+#include "../src/furniture/ac_sum_bla_table01.c"
+#include "../src/furniture/ac_sum_bla_table02.c"
+#include "../src/furniture/ac_sum_blue_bed01.c"
+#include "../src/furniture/ac_sum_blue_bench01.c"
+#include "../src/furniture/ac_sum_blue_bureau01.c"
+#include "../src/furniture/ac_sum_blue_cab01.c"
+#include "../src/furniture/ac_sum_blue_chair01.c"
+#include "../src/furniture/ac_sum_blue_chest01.c"
+#include "../src/furniture/ac_sum_blue_chest02.c"
+#include "../src/furniture/ac_sum_blue_clk.c"
+#include "../src/furniture/ac_sum_blue_lowchest01.c"
+#include "../src/furniture/ac_sum_blue_table01.c"
+#include "../src/furniture/ac_sum_bon_boke.c"
+#include "../src/furniture/ac_sum_bon_matu01.c"
+#include "../src/furniture/ac_sum_bon_matu02.c"
+#include "../src/furniture/ac_sum_bon_matu03.c"
+#include "../src/furniture/ac_sum_bon_momiji.c"
+#include "../src/furniture/ac_sum_bon_pira.c"
+#include "../src/furniture/ac_sum_bon_sanshu.c"
+#include "../src/furniture/ac_sum_bon_satuki.c"
+#include "../src/furniture/ac_sum_bon_turu.c"
+#include "../src/furniture/ac_sum_bon_ume.c"
+#include "../src/furniture/ac_sum_bookcht01.c"
+#include "../src/furniture/ac_sum_casse01.c"
+#include "../src/furniture/ac_sum_cello01.c"
+#include "../src/furniture/ac_sum_chair01.c"
+#include "../src/furniture/ac_sum_chikuon01.c"
+#include "../src/furniture/ac_sum_chikuon02.c"
+#include "../src/furniture/ac_sum_classiccabinet01.c"
+#include "../src/furniture/ac_sum_classicchair01.c"
+#include "../src/furniture/ac_sum_classicchest01.c"
+#include "../src/furniture/ac_sum_classicchest02.c"
+#include "../src/furniture/ac_sum_classictable01.c"
+#include "../src/furniture/ac_sum_classicwardrope01.c"
+#include "../src/furniture/ac_sum_clbed02.c"
+#include "../src/furniture/ac_sum_clchair02.c"
+#include "../src/furniture/ac_sum_clchest03.c"
+#include "../src/furniture/ac_sum_col_chair01.c"
+#include "../src/furniture/ac_sum_col_chair02.c"
+#include "../src/furniture/ac_sum_col_chair03.c"
+#include "../src/furniture/ac_sum_comp01.c"
+#include "../src/furniture/ac_sum_conga01.c"
+#include "../src/furniture/ac_sum_conpo01.c"
+#include "../src/furniture/ac_sum_conpo02.c"
+#include "../src/furniture/ac_sum_cont_bed01.c"
+#include "../src/furniture/ac_sum_cont_cab01.c"
+#include "../src/furniture/ac_sum_cont_chair01.c"
+#include "../src/furniture/ac_sum_cont_chest01.c"
+#include "../src/furniture/ac_sum_cont_chest02.c"
+#include "../src/furniture/ac_sum_cont_chest03.c"
+#include "../src/furniture/ac_sum_cont_sofa01.c"
+#include "../src/furniture/ac_sum_cont_sofa02.c"
+#include "../src/furniture/ac_sum_cont_table01.c"
+#include "../src/furniture/ac_sum_cont_table02.c"
+#include "../src/furniture/ac_sum_cupboard01.c"
+#include "../src/furniture/ac_sum_danna.c"
+#include "../src/furniture/ac_sum_demekin.c"
+#include "../src/furniture/ac_sum_desk01.c"
+#include "../src/furniture/ac_sum_dojyo.c"
+#include "../src/furniture/ac_sum_doll01.c"
+#include "../src/furniture/ac_sum_doll02.c"
+#include "../src/furniture/ac_sum_doll03.c"
+#include "../src/furniture/ac_sum_doll04.c"
+#include "../src/furniture/ac_sum_doll05.c"
+#include "../src/furniture/ac_sum_doll06.c"
+#include "../src/furniture/ac_sum_doll07.c"
+#include "../src/furniture/ac_sum_doll08.c"
+#include "../src/furniture/ac_sum_doll09.c"
+#include "../src/furniture/ac_sum_doll10.c"
+#include "../src/furniture/ac_sum_doll11.c"
+#include "../src/furniture/ac_sum_donko.c"
+#include "../src/furniture/ac_sum_fruitbed01.c"
+#include "../src/furniture/ac_sum_fruitchair01.c"
+#include "../src/furniture/ac_sum_fruitchair02.c"
+#include "../src/furniture/ac_sum_fruitchair03.c"
+#include "../src/furniture/ac_sum_fruitchair04.c"
+#include "../src/furniture/ac_sum_fruitchest01.c"
+#include "../src/furniture/ac_sum_fruitchest03.c"
+#include "../src/furniture/ac_sum_fruitclk.c"
+#include "../src/furniture/ac_sum_fruittable01.c"
+#include "../src/furniture/ac_sum_fruittable02.c"
+#include "../src/furniture/ac_sum_fruittable03.c"
+#include "../src/furniture/ac_sum_fruittv01.c"
+#include "../src/furniture/ac_sum_funa.c"
+#include "../src/furniture/ac_sum_genji.c"
+#include "../src/furniture/ac_sum_gill.c"
+#include "../src/furniture/ac_sum_ginyanma.c"
+#include "../src/furniture/ac_sum_globe01.c"
+#include "../src/furniture/ac_sum_golfbag01.c"
+#include "../src/furniture/ac_sum_golfbag02.c"
+#include "../src/furniture/ac_sum_golfbag03.c"
+#include "../src/furniture/ac_sum_gomadara.c"
+#include "../src/furniture/ac_sum_gre_bed01.c"
+#include "../src/furniture/ac_sum_gre_chair01.c"
+#include "../src/furniture/ac_sum_gre_chair02.c"
+#include "../src/furniture/ac_sum_gre_chest01.c"
+#include "../src/furniture/ac_sum_gre_chest02.c"
+#include "../src/furniture/ac_sum_gre_chest03.c"
+#include "../src/furniture/ac_sum_gre_counter01.c"
+#include "../src/furniture/ac_sum_gre_desk01.c"
+#include "../src/furniture/ac_sum_gre_lanp01.c"
+#include "../src/furniture/ac_sum_gre_table01.c"
+#include "../src/furniture/ac_sum_guitar01.c"
+#include "../src/furniture/ac_sum_guitar02.c"
+#include "../src/furniture/ac_sum_guitar03.c"
+#include "../src/furniture/ac_sum_gupi.c"
+#include "../src/furniture/ac_sum_hachi.c"
+#include "../src/furniture/ac_sum_hal_bed01.c"
+#include "../src/furniture/ac_sum_hal_box01.c"
+#include "../src/furniture/ac_sum_hal_chair01.c"
+#include "../src/furniture/ac_sum_hal_chest01.c"
+#include "../src/furniture/ac_sum_hal_chest02.c"
+#include "../src/furniture/ac_sum_hal_chest03.c"
+#include "../src/furniture/ac_sum_hal_clk01.c"
+#include "../src/furniture/ac_sum_hal_lanp01.c"
+#include "../src/furniture/ac_sum_hal_mirror01.c"
+#include "../src/furniture/ac_sum_hal_pkin.c"
+#include "../src/furniture/ac_sum_hal_sofa01.c"
+#include "../src/furniture/ac_sum_hal_table01.c"
+#include "../src/furniture/ac_sum_harp.c"
+#include "../src/furniture/ac_sum_hera.c"
+#include "../src/furniture/ac_sum_higurashi.c"
+#include "../src/furniture/ac_sum_hirata.c"
+#include "../src/furniture/ac_sum_ito.c"
+#include "../src/furniture/ac_sum_iwana.c"
+#include "../src/furniture/ac_sum_jukebox.c"
+#include "../src/furniture/ac_sum_kabuto.c"
+#include "../src/furniture/ac_sum_kamakiri.c"
+#include "../src/furniture/ac_sum_kanabun.c"
+#include "../src/furniture/ac_sum_kaseki.c"
+#include "../src/furniture/ac_sum_kiageha.c"
+#include "../src/furniture/ac_sum_kingyo.c"
+#include "../src/furniture/ac_sum_kirigirisu.c"
+#include "../src/furniture/ac_sum_kisha.c"
+#include "../src/furniture/ac_sum_kitchair01.c"
+#include "../src/furniture/ac_sum_kittable01.c"
+#include "../src/furniture/ac_sum_koi.c"
+#include "../src/furniture/ac_sum_kokuban.c"
+#include "../src/furniture/ac_sum_koorogi.c"
+#include "../src/furniture/ac_sum_liccabed.c"
+#include "../src/furniture/ac_sum_liccachair.c"
+#include "../src/furniture/ac_sum_liccachest.c"
+#include "../src/furniture/ac_sum_liccakitchen.c"
+#include "../src/furniture/ac_sum_liccalanp.c"
+#include "../src/furniture/ac_sum_liccalowchest.c"
+#include "../src/furniture/ac_sum_liccalowtable.c"
+#include "../src/furniture/ac_sum_liccamirror.c"
+#include "../src/furniture/ac_sum_liccapiano.c"
+#include "../src/furniture/ac_sum_liccasofa.c"
+#include "../src/furniture/ac_sum_liccatable.c"
+#include "../src/furniture/ac_sum_log_bed01.c"
+#include "../src/furniture/ac_sum_log_chair01.c"
+#include "../src/furniture/ac_sum_log_chair02.c"
+#include "../src/furniture/ac_sum_log_chair03.c"
+#include "../src/furniture/ac_sum_log_chest01.c"
+#include "../src/furniture/ac_sum_log_chest02.c"
+#include "../src/furniture/ac_sum_log_chest03.c"
+#include "../src/furniture/ac_sum_log_hatoclk.c"
+#include "../src/furniture/ac_sum_log_table01.c"
+#include "../src/furniture/ac_sum_log_table02.c"
+#include "../src/furniture/ac_sum_lv_stereo.c"
+#include "../src/furniture/ac_sum_matumushi.c"
+#include "../src/furniture/ac_sum_md01.c"
+#include "../src/furniture/ac_sum_mezaclock.c"
+#include "../src/furniture/ac_sum_minmin.c"
+#include "../src/furniture/ac_sum_misin01.c"
+#include "../src/furniture/ac_sum_miyama.c"
+#include "../src/furniture/ac_sum_mizunomi.c"
+#include "../src/furniture/ac_sum_monki.c"
+#include "../src/furniture/ac_sum_monshiro.c"
+#include "../src/furniture/ac_sum_namazu.c"
+#include "../src/furniture/ac_sum_nanahoshi.c"
+#include "../src/furniture/ac_sum_nigoi.c"
+#include "../src/furniture/ac_sum_niji.c"
+#include "../src/furniture/ac_sum_nisiki.c"
+#include "../src/furniture/ac_sum_nokogiri.c"
+#include "../src/furniture/ac_sum_ohmurasaki.c"
+#include "../src/furniture/ac_sum_oikawa.c"
+#include "../src/furniture/ac_sum_okiagari01.c"
+#include "../src/furniture/ac_sum_okuwa.c"
+#include "../src/furniture/ac_sum_oldclk01.c"
+#include "../src/furniture/ac_sum_oldsofa01.c"
+#include "../src/furniture/ac_sum_oniyanma.c"
+#include "../src/furniture/ac_sum_oonamazu.c"
+#include "../src/furniture/ac_sum_pet01.c"
+#include "../src/furniture/ac_sum_piano01.c"
+#include "../src/furniture/ac_sum_pirania.c"
+#include "../src/furniture/ac_sum_pl_aloe01.c"
+#include "../src/furniture/ac_sum_pl_ananas.c"
+#include "../src/furniture/ac_sum_pl_benjyami.c"
+#include "../src/furniture/ac_sum_pl_caladium01.c"
+#include "../src/furniture/ac_sum_pl_cocos.c"
+#include "../src/furniture/ac_sum_pl_compacta.c"
+#include "../src/furniture/ac_sum_pl_draca02.c"
+#include "../src/furniture/ac_sum_pl_dracaena.c"
+#include "../src/furniture/ac_sum_pl_gomunoki.c"
+#include "../src/furniture/ac_sum_pl_hirasabo.c"
+#include "../src/furniture/ac_sum_pl_kuroton.c"
+#include "../src/furniture/ac_sum_pl_pakila.c"
+#include "../src/furniture/ac_sum_pl_pothos.c"
+#include "../src/furniture/ac_sum_pl_shuroci.c"
+#include "../src/furniture/ac_sum_pl_yamayasi.c"
+#include "../src/furniture/ac_sum_popchair01.c"
+#include "../src/furniture/ac_sum_popchair02.c"
+#include "../src/furniture/ac_sum_popchair03.c"
+#include "../src/furniture/ac_sum_poptable01.c"
+#include "../src/furniture/ac_sum_poptable02.c"
+#include "../src/furniture/ac_sum_poptable03.c"
+#include "../src/furniture/ac_sum_radio01.c"
+#include "../src/furniture/ac_sum_radio02.c"
+#include "../src/furniture/ac_sum_raigyo.c"
+#include "../src/furniture/ac_sum_ratan_bed01.c"
+#include "../src/furniture/ac_sum_ratan_chest01.c"
+#include "../src/furniture/ac_sum_ratan_chest02.c"
+#include "../src/furniture/ac_sum_ratan_chest03.c"
+#include "../src/furniture/ac_sum_ratan_isu01.c"
+#include "../src/furniture/ac_sum_ratan_isu02.c"
+#include "../src/furniture/ac_sum_ratan_lanp.c"
+#include "../src/furniture/ac_sum_ratan_mirror.c"
+#include "../src/furniture/ac_sum_ratan_screen.c"
+#include "../src/furniture/ac_sum_ratan_table01.c"
+#include "../src/furniture/ac_sum_reco01.c"
+#include "../src/furniture/ac_sum_roboclk.c"
+#include "../src/furniture/ac_sum_roboconpo.c"
+#include "../src/furniture/ac_sum_sabo01.c"
+#include "../src/furniture/ac_sum_sabo02.c"
+#include "../src/furniture/ac_sum_saiconpo.c"
+#include "../src/furniture/ac_sum_sake.c"
+#include "../src/furniture/ac_sum_shiokara.c"
+#include "../src/furniture/ac_sum_shoukaki.c"
+#include "../src/furniture/ac_sum_slot.c"
+#include "../src/furniture/ac_sum_sofe01.c"
+#include "../src/furniture/ac_sum_sofe02.c"
+#include "../src/furniture/ac_sum_sofe03.c"
+#include "../src/furniture/ac_sum_stereo01.c"
+#include "../src/furniture/ac_sum_stereo02.c"
+#include "../src/furniture/ac_sum_stove01.c"
+#include "../src/furniture/ac_sum_suberi01.c"
+#include "../src/furniture/ac_sum_suzumushi.c"
+#include "../src/furniture/ac_sum_syouryou.c"
+#include "../src/furniture/ac_sum_taiko01.c"
+#include "../src/furniture/ac_sum_takkyu.c"
+#include "../src/furniture/ac_sum_tamamushi.c"
+#include "../src/furniture/ac_sum_tanago.c"
+#include "../src/furniture/ac_sum_taru01.c"
+#include "../src/furniture/ac_sum_taru02.c"
+#include "../src/furniture/ac_sum_tekin01.c"
+#include "../src/furniture/ac_sum_tentou.c"
+#include "../src/furniture/ac_sum_timpani01.c"
+#include "../src/furniture/ac_sum_tonosama.c"
+#include "../src/furniture/ac_sum_totemp01.c"
+#include "../src/furniture/ac_sum_totemp02.c"
+#include "../src/furniture/ac_sum_totemp03.c"
+#include "../src/furniture/ac_sum_totemp04.c"
+#include "../src/furniture/ac_sum_touro01.c"
+#include "../src/furniture/ac_sum_touro02.c"
+#include "../src/furniture/ac_sum_touro03.c"
+#include "../src/furniture/ac_sum_touro04.c"
+#include "../src/furniture/ac_sum_tukutuku.c"
+#include "../src/furniture/ac_sum_tv01.c"
+#include "../src/furniture/ac_sum_tv02.c"
+#include "../src/furniture/ac_sum_ugui.c"
+#include "../src/furniture/ac_sum_unagi.c"
+#include "../src/furniture/ac_sum_uwa_cup01.c"
+#include "../src/furniture/ac_sum_uwa_poto01.c"
+#include "../src/furniture/ac_sum_uwa_vase01.c"
+#include "../src/furniture/ac_sum_uwa_vase02.c"
+#include "../src/furniture/ac_sum_uwa_vase03.c"
+#include "../src/furniture/ac_sum_viola01.c"
+#include "../src/furniture/ac_sum_wakasagi.c"
+#include "../src/furniture/ac_sum_wc01.c"
+#include "../src/furniture/ac_sum_wc02.c"
+#include "../src/furniture/ac_sum_whi_bed01.c"
+#include "../src/furniture/ac_sum_whi_chest01.c"
+#include "../src/furniture/ac_sum_whi_chest02.c"
+#include "../src/furniture/ac_sum_whi_lanp.c"
+#include "../src/furniture/ac_sum_whi_mirror.c"
+#include "../src/furniture/ac_sum_whi_sofa01.c"
+#include "../src/furniture/ac_sum_x_bed01.c"
+#include "../src/furniture/ac_sum_x_chair01.c"
+#include "../src/furniture/ac_sum_x_chest01.c"
+#include "../src/furniture/ac_sum_x_chest02.c"
+#include "../src/furniture/ac_sum_x_chest03.c"
+#include "../src/furniture/ac_sum_x_clk.c"
+#include "../src/furniture/ac_sum_x_lanp.c"
+#include "../src/furniture/ac_sum_x_piano.c"
+#include "../src/furniture/ac_sum_x_sofa01.c"
+#include "../src/furniture/ac_sum_x_table01.c"
+#include "../src/furniture/ac_sum_yamame.c"
+#include "../src/furniture/ac_tak_apollo1.c"
+#include "../src/furniture/ac_tak_arwing.c"
+#include "../src/furniture/ac_tak_asteroid1.c"
+#include "../src/furniture/ac_tak_astro.c"
+#include "../src/furniture/ac_tak_barber.c"
+#include "../src/furniture/ac_tak_cone01.c"
+#include "../src/furniture/ac_tak_cone03.c"
+#include "../src/furniture/ac_tak_cube.c"
+#include "../src/furniture/ac_tak_drum02.c"
+#include "../src/furniture/ac_tak_eisei.c"
+#include "../src/furniture/ac_tak_hole01.c"
+#include "../src/furniture/ac_tak_ice.c"
+#include "../src/furniture/ac_tak_isu03.c"
+#include "../src/furniture/ac_tak_lion.c"
+#include "../src/furniture/ac_tak_megami.c"
+#include "../src/furniture/ac_tak_metro.c"
+#include "../src/furniture/ac_tak_money.c"
+#include "../src/furniture/ac_tak_moon.c"
+#include "../src/furniture/ac_tak_mooncar.c"
+#include "../src/furniture/ac_tak_moti.c"
+#include "../src/furniture/ac_tak_neko.c"
+#include "../src/furniture/ac_tak_nikki01.c"
+#include "../src/furniture/ac_tak_rocket1.c"
+#include "../src/furniture/ac_tak_sori01.c"
+#include "../src/furniture/ac_tak_syogi.c"
+#include "../src/furniture/ac_tak_shuttle.c"
+#include "../src/furniture/ac_tak_snowisu.c"
+#include "../src/furniture/ac_tak_snowlamp.c"
+#include "../src/furniture/ac_tak_station.c"
+#include "../src/furniture/ac_tak_table02.c"
+#include "../src/furniture/ac_tak_tailor.c"
+#include "../src/furniture/ac_tak_tekkin.c"
+#include "../src/furniture/ac_tak_tetra.c"
+#include "../src/furniture/ac_tak_toudai.c"
+#include "../src/furniture/ac_tak_ufo.c"
+#include "../src/furniture/ac_tak_yaji.c"
+#include "../src/furniture/ac_tak_yoroi.c"
+#include "../src/furniture/ac_iid_benti.c"
+#include "../src/furniture/ac_iid_diary.c"
+#include "../src/furniture/ac_iid_funediary.c"
+#include "../src/furniture/ac_iid_mdiary.c"
+#include "../src/furniture/ac_iid_newdiary.c"
+#include "../src/furniture/ac_iid_ningyou.c"
+#include "../src/furniture/ac_iid_snow.c"
+#include "../src/furniture/ac_iid_surf.c"
+#include "../src/furniture/ac_iid_yuki.c"
+#include "../src/furniture/ac_hayakawa_famicom.c"
+#include "../src/furniture/ac_radio_test.c"
+#include "../src/furniture/ac_gold_item.c"
+#include "../src/furniture/ac_utiwa.c"
+#include "../src/furniture/ac_kazaguruma.c"
+#include "../src/furniture/ac_tool.c"
+#include "../src/furniture/ac_hos_deskL.c"
+#include "../src/furniture/ac_hos_deskR.c"
+#include "../src/furniture/ac_hos_flip.c"
+#include "../src/furniture/ac_hos_mario_hata.c"
+#include "../src/furniture/ac_hos_mario_kinoko.c"
+#include "../src/furniture/ac_hos_piknic.c"
+#include "../src/furniture/ac_hos_Tdesk.c"
+#include "../src/furniture/ac_iku_bugzapper.c"
+#include "../src/furniture/ac_hos_turkey_sofa.c"
+#include "../src/furniture/ac_iku_busstop.c"
+#include "../src/furniture/ac_iku_candy.c"
+#include "../src/furniture/ac_iku_cement.c"
+#include "../src/furniture/ac_iku_chair.c"
+#include "../src/furniture/ac_iku_cocoa.c"
+#include "../src/furniture/ac_iku_cow.c"
+#include "../src/furniture/ac_iku_denko.c"
+#include "../src/furniture/ac_iku_flagman.c"
+#include "../src/furniture/ac_iku_flip_top.c"
+#include "../src/furniture/ac_iku_gold_green.c"
+#include "../src/furniture/ac_iku_gold_red.c"
+#include "../src/furniture/ac_iku_ham.c"
+#include "../src/furniture/ac_iku_hazardous_top.c"
+#include "../src/furniture/ac_iku_ido.c"
+#include "../src/furniture/ac_iku_jack.c"
+#include "../src/furniture/ac_iku_jersey.c"
+#include "../src/furniture/ac_iku_mario_coin.c"
+#include "../src/furniture/ac_iku_mario_dokan.c"
+#include "../src/furniture/ac_iku_mario_hatena.c"
+#include "../src/furniture/ac_iku_mario_koura.c"
+#include "../src/furniture/ac_iku_mario_renga.c"
+#include "../src/furniture/ac_iku_mario_taihou.c"
+#include "../src/furniture/ac_iku_mario_star.c"
+#include "../src/furniture/ac_iku_orange.c"
+#include "../src/furniture/ac_iku_reducespeed.c"
+#include "../src/furniture/ac_iku_roller.c"
+#include "../src/furniture/ac_iku_saku_a.c"
+#include "../src/furniture/ac_iku_saku_b.c"
+#include "../src/furniture/ac_iku_sawhousev.c"
+#include "../src/furniture/ac_iku_slip.c"
+#include "../src/furniture/ac_iku_tumble.c"
+#include "../src/furniture/ac_iku_turkey_bed.c"
+#include "../src/furniture/ac_iku_turkey_lamp.c"
+#include "../src/furniture/ac_iku_turkey_table.c"
+#include "../src/furniture/ac_iku_turkey_TV.c"
+#include "../src/furniture/ac_iku_ukai.c"
+#include "../src/furniture/ac_iku_work.c"
+#include "../src/furniture/ac_sugi_alchair.c"
+#include "../src/furniture/ac_sugi_barbecue.c"
+#include "../src/furniture/ac_sugi_chesstable.c"
+#include "../src/furniture/ac_sugi_kpool.c"
+#include "../src/furniture/ac_sugi_radiatorl.c"
+#include "../src/furniture/ac_sugi_torch.c"
+#include "../src/furniture/ac_yaz_b_bath.c"
+#include "../src/furniture/ac_yaz_b_house.c"
+#include "../src/furniture/ac_yaz_candle.c"
+#include "../src/furniture/ac_yaz_fish_trophy.c"
+#include "../src/furniture/ac_yaz_mario_flower.c"
+#include "../src/furniture/ac_yaz_telescope.c"
+#include "../src/furniture/ac_yaz_tub.c"
+#include "../src/furniture/ac_yaz_turkey_chair.c"
+#include "../src/furniture/ac_yaz_turkey_chest.c"
+#include "../src/furniture/ac_yaz_turkey_closet.c"
+#include "../src/furniture/ac_yaz_rocket.c"
+#include "../src/furniture/ac_yaz_wagon.c"
+#include "../src/furniture/ac_yos_b_feeder.c"
+#include "../src/furniture/ac_yos_cactus.c"
+#include "../src/furniture/ac_yos_flamingo.c"
+#include "../src/furniture/ac_yos_flamingo2.c"
+#include "../src/furniture/ac_yos_gnome.c"
+#include "../src/furniture/ac_yos_kflag.c"
+#include "../src/furniture/ac_yos_pbstove.c"
+#include "../src/furniture/ac_yos_mailbox.c"
+#include "../src/furniture/ac_yos_mario.c"
+#include "../src/furniture/ac_yos_luigi.c"
+#include "../src/furniture/ac_yos_terrace.c"
+#include "../src/furniture/ac_yos_turkey_mirror.c"
+#include "../src/furniture/ac_yos_turkey_watch.c"
+#include "../src/furniture/ac_yos_wheel.c"
+#include "../src/furniture/ac_tak_ham1.c"
+#include "../src/furniture/ac_tak_nes01.c"
+#include "../src/furniture/ac_tak_noise.c"
+#include "../src/furniture/ac_tak_stew.c"
+#include "../src/furniture/ac_tak_tent.c"
+#include "../src/furniture/ac_tak_tent_box.c"
+#include "../src/furniture/ac_tak_tent_lamp.c"
+#include "../src/furniture/ac_ike_fish_tro2.c"
+#include "../src/furniture/ac_ike_prores_bench01.c"
+#include "../src/furniture/ac_ike_prores_fense01.c"
+#include "../src/furniture/ac_ike_prores_ling01.c"
+#include "../src/furniture/ac_ike_prores_ling02.c"
+#include "../src/furniture/ac_ike_prores_ling03.c"
+#include "../src/furniture/ac_ike_prores_mat01.c"
+#include "../src/furniture/ac_ike_prores_punch01.c"
+#include "../src/furniture/ac_ike_prores_sandbag01.c"
+#include "../src/furniture/ac_ike_prores_table01.c"
+#include "../src/furniture/ac_ike_tent_bike01.c"
+#include "../src/furniture/ac_ike_tent_fire01.c"
+#include "../src/furniture/ac_ike_tent_fire02.c"
+#include "../src/furniture/ac_ike_tent_kayak01.c"
+#include "../src/furniture/ac_ike_tent_knap01.c"
+#include "../src/furniture/ac_ike_tent_sleepbag01.c"
+#include "../src/furniture/ac_nog_burner.c"
+#include "../src/furniture/ac_nog_cornucopia.c"
+#include "../src/furniture/ac_nog_flower.c"
+#include "../src/furniture/ac_nog_gong.c"
+#include "../src/furniture/ac_nog_lawnmower.c"
+#include "../src/furniture/ac_nog_sprinkler.c"
+#include "../src/furniture/ac_dummy.c"
diff --git a/src/ftr/ac_ari_isu01.c b/src/furniture/ac_ari_isu01.c
similarity index 100%
rename from src/ftr/ac_ari_isu01.c
rename to src/furniture/ac_ari_isu01.c
diff --git a/src/ftr/ac_ari_kitchen01.c b/src/furniture/ac_ari_kitchen01.c
similarity index 100%
rename from src/ftr/ac_ari_kitchen01.c
rename to src/furniture/ac_ari_kitchen01.c
diff --git a/src/ftr/ac_ari_reizou01.c b/src/furniture/ac_ari_reizou01.c
similarity index 100%
rename from src/ftr/ac_ari_reizou01.c
rename to src/furniture/ac_ari_reizou01.c
diff --git a/src/ftr/ac_ari_table01.c b/src/furniture/ac_ari_table01.c
similarity index 100%
rename from src/ftr/ac_ari_table01.c
rename to src/furniture/ac_ari_table01.c
diff --git a/src/ftr/ac_din_amber.c b/src/furniture/ac_din_amber.c
similarity index 100%
rename from src/ftr/ac_din_amber.c
rename to src/furniture/ac_din_amber.c
diff --git a/src/ftr/ac_din_ammonite.c b/src/furniture/ac_din_ammonite.c
similarity index 100%
rename from src/ftr/ac_din_ammonite.c
rename to src/furniture/ac_din_ammonite.c
diff --git a/src/ftr/ac_din_bront_body.c b/src/furniture/ac_din_bront_body.c
similarity index 100%
rename from src/ftr/ac_din_bront_body.c
rename to src/furniture/ac_din_bront_body.c
diff --git a/src/ftr/ac_din_bront_dummy.c b/src/furniture/ac_din_bront_dummy.c
similarity index 100%
rename from src/ftr/ac_din_bront_dummy.c
rename to src/furniture/ac_din_bront_dummy.c
diff --git a/src/ftr/ac_din_bront_head.c b/src/furniture/ac_din_bront_head.c
similarity index 100%
rename from src/ftr/ac_din_bront_head.c
rename to src/furniture/ac_din_bront_head.c
diff --git a/src/ftr/ac_din_bront_tail.c b/src/furniture/ac_din_bront_tail.c
similarity index 100%
rename from src/ftr/ac_din_bront_tail.c
rename to src/furniture/ac_din_bront_tail.c
diff --git a/src/ftr/ac_din_dummy.c b/src/furniture/ac_din_dummy.c
similarity index 100%
rename from src/ftr/ac_din_dummy.c
rename to src/furniture/ac_din_dummy.c
diff --git a/src/ftr/ac_din_egg.c b/src/furniture/ac_din_egg.c
similarity index 100%
rename from src/ftr/ac_din_egg.c
rename to src/furniture/ac_din_egg.c
diff --git a/src/ftr/ac_din_hutaba_body.c b/src/furniture/ac_din_hutaba_body.c
similarity index 100%
rename from src/ftr/ac_din_hutaba_body.c
rename to src/furniture/ac_din_hutaba_body.c
diff --git a/src/ftr/ac_din_hutaba_dummy.c b/src/furniture/ac_din_hutaba_dummy.c
similarity index 100%
rename from src/ftr/ac_din_hutaba_dummy.c
rename to src/furniture/ac_din_hutaba_dummy.c
diff --git a/src/ftr/ac_din_hutaba_head.c b/src/furniture/ac_din_hutaba_head.c
similarity index 100%
rename from src/ftr/ac_din_hutaba_head.c
rename to src/furniture/ac_din_hutaba_head.c
diff --git a/src/ftr/ac_din_hutaba_neck.c b/src/furniture/ac_din_hutaba_neck.c
similarity index 100%
rename from src/ftr/ac_din_hutaba_neck.c
rename to src/furniture/ac_din_hutaba_neck.c
diff --git a/src/ftr/ac_din_mammoth_body.c b/src/furniture/ac_din_mammoth_body.c
similarity index 100%
rename from src/ftr/ac_din_mammoth_body.c
rename to src/furniture/ac_din_mammoth_body.c
diff --git a/src/ftr/ac_din_mammoth_dummy.c b/src/furniture/ac_din_mammoth_dummy.c
similarity index 100%
rename from src/ftr/ac_din_mammoth_dummy.c
rename to src/furniture/ac_din_mammoth_dummy.c
diff --git a/src/ftr/ac_din_mammoth_head.c b/src/furniture/ac_din_mammoth_head.c
similarity index 100%
rename from src/ftr/ac_din_mammoth_head.c
rename to src/furniture/ac_din_mammoth_head.c
diff --git a/src/ftr/ac_din_ptera_Lwing.c b/src/furniture/ac_din_ptera_Lwing.c
similarity index 100%
rename from src/ftr/ac_din_ptera_Lwing.c
rename to src/furniture/ac_din_ptera_Lwing.c
diff --git a/src/ftr/ac_din_ptera_Rwing.c b/src/furniture/ac_din_ptera_Rwing.c
similarity index 100%
rename from src/ftr/ac_din_ptera_Rwing.c
rename to src/furniture/ac_din_ptera_Rwing.c
diff --git a/src/ftr/ac_din_ptera_dummy.c b/src/furniture/ac_din_ptera_dummy.c
similarity index 100%
rename from src/ftr/ac_din_ptera_dummy.c
rename to src/furniture/ac_din_ptera_dummy.c
diff --git a/src/ftr/ac_din_ptera_head.c b/src/furniture/ac_din_ptera_head.c
similarity index 100%
rename from src/ftr/ac_din_ptera_head.c
rename to src/furniture/ac_din_ptera_head.c
diff --git a/src/ftr/ac_din_stego_body.c b/src/furniture/ac_din_stego_body.c
similarity index 100%
rename from src/ftr/ac_din_stego_body.c
rename to src/furniture/ac_din_stego_body.c
diff --git a/src/ftr/ac_din_stego_dummyA.c b/src/furniture/ac_din_stego_dummyA.c
similarity index 100%
rename from src/ftr/ac_din_stego_dummyA.c
rename to src/furniture/ac_din_stego_dummyA.c
diff --git a/src/ftr/ac_din_stego_dummyB.c b/src/furniture/ac_din_stego_dummyB.c
similarity index 100%
rename from src/ftr/ac_din_stego_dummyB.c
rename to src/furniture/ac_din_stego_dummyB.c
diff --git a/src/ftr/ac_din_stego_head.c b/src/furniture/ac_din_stego_head.c
similarity index 100%
rename from src/ftr/ac_din_stego_head.c
rename to src/furniture/ac_din_stego_head.c
diff --git a/src/ftr/ac_din_stego_tail.c b/src/furniture/ac_din_stego_tail.c
similarity index 100%
rename from src/ftr/ac_din_stego_tail.c
rename to src/furniture/ac_din_stego_tail.c
diff --git a/src/ftr/ac_din_stump.c b/src/furniture/ac_din_stump.c
similarity index 100%
rename from src/ftr/ac_din_stump.c
rename to src/furniture/ac_din_stump.c
diff --git a/src/ftr/ac_din_trex_body.c b/src/furniture/ac_din_trex_body.c
similarity index 100%
rename from src/ftr/ac_din_trex_body.c
rename to src/furniture/ac_din_trex_body.c
diff --git a/src/ftr/ac_din_trex_dummy.c b/src/furniture/ac_din_trex_dummy.c
similarity index 100%
rename from src/ftr/ac_din_trex_dummy.c
rename to src/furniture/ac_din_trex_dummy.c
diff --git a/src/ftr/ac_din_trex_head.c b/src/furniture/ac_din_trex_head.c
similarity index 100%
rename from src/ftr/ac_din_trex_head.c
rename to src/furniture/ac_din_trex_head.c
diff --git a/src/ftr/ac_din_trex_tail.c b/src/furniture/ac_din_trex_tail.c
similarity index 100%
rename from src/ftr/ac_din_trex_tail.c
rename to src/furniture/ac_din_trex_tail.c
diff --git a/src/ftr/ac_din_trikera_body.c b/src/furniture/ac_din_trikera_body.c
similarity index 100%
rename from src/ftr/ac_din_trikera_body.c
rename to src/furniture/ac_din_trikera_body.c
diff --git a/src/ftr/ac_din_trikera_dummy.c b/src/furniture/ac_din_trikera_dummy.c
similarity index 100%
rename from src/ftr/ac_din_trikera_dummy.c
rename to src/furniture/ac_din_trikera_dummy.c
diff --git a/src/ftr/ac_din_trikera_head.c b/src/furniture/ac_din_trikera_head.c
similarity index 100%
rename from src/ftr/ac_din_trikera_head.c
rename to src/furniture/ac_din_trikera_head.c
diff --git a/src/ftr/ac_din_trikera_tail.c b/src/furniture/ac_din_trikera_tail.c
similarity index 100%
rename from src/ftr/ac_din_trikera_tail.c
rename to src/furniture/ac_din_trikera_tail.c
diff --git a/src/ftr/ac_din_trilobite.c b/src/furniture/ac_din_trilobite.c
similarity index 100%
rename from src/ftr/ac_din_trilobite.c
rename to src/furniture/ac_din_trilobite.c
diff --git a/src/ftr/ac_dummy.c b/src/furniture/ac_dummy.c
similarity index 100%
rename from src/ftr/ac_dummy.c
rename to src/furniture/ac_dummy.c
diff --git a/src/ftr/ac_famicom_common.c b/src/furniture/ac_famicom_common.c
similarity index 100%
rename from src/ftr/ac_famicom_common.c
rename to src/furniture/ac_famicom_common.c
diff --git a/src/ftr/ac_fmanekin.c b/src/furniture/ac_fmanekin.c
similarity index 100%
rename from src/ftr/ac_fmanekin.c
rename to src/furniture/ac_fmanekin.c
diff --git a/src/ftr/ac_fumbrella.c b/src/furniture/ac_fumbrella.c
similarity index 100%
rename from src/ftr/ac_fumbrella.c
rename to src/furniture/ac_fumbrella.c
diff --git a/src/ftr/ac_gold_item.c b/src/furniture/ac_gold_item.c
similarity index 100%
rename from src/ftr/ac_gold_item.c
rename to src/furniture/ac_gold_item.c
diff --git a/src/ftr/ac_hayakawa_famicom.c b/src/furniture/ac_hayakawa_famicom.c
similarity index 100%
rename from src/ftr/ac_hayakawa_famicom.c
rename to src/furniture/ac_hayakawa_famicom.c
diff --git a/src/ftr/ac_hnw_common.c b/src/furniture/ac_hnw_common.c
similarity index 100%
rename from src/ftr/ac_hnw_common.c
rename to src/furniture/ac_hnw_common.c
diff --git a/src/ftr/ac_hos_Tdesk.c b/src/furniture/ac_hos_Tdesk.c
similarity index 100%
rename from src/ftr/ac_hos_Tdesk.c
rename to src/furniture/ac_hos_Tdesk.c
diff --git a/src/ftr/ac_hos_deskL.c b/src/furniture/ac_hos_deskL.c
similarity index 100%
rename from src/ftr/ac_hos_deskL.c
rename to src/furniture/ac_hos_deskL.c
diff --git a/src/ftr/ac_hos_deskR.c b/src/furniture/ac_hos_deskR.c
similarity index 100%
rename from src/ftr/ac_hos_deskR.c
rename to src/furniture/ac_hos_deskR.c
diff --git a/src/ftr/ac_hos_flip.c b/src/furniture/ac_hos_flip.c
similarity index 100%
rename from src/ftr/ac_hos_flip.c
rename to src/furniture/ac_hos_flip.c
diff --git a/src/ftr/ac_hos_mario_hata.c b/src/furniture/ac_hos_mario_hata.c
similarity index 100%
rename from src/ftr/ac_hos_mario_hata.c
rename to src/furniture/ac_hos_mario_hata.c
diff --git a/src/ftr/ac_hos_mario_kinoko.c b/src/furniture/ac_hos_mario_kinoko.c
similarity index 100%
rename from src/ftr/ac_hos_mario_kinoko.c
rename to src/furniture/ac_hos_mario_kinoko.c
diff --git a/src/ftr/ac_hos_piknic.c b/src/furniture/ac_hos_piknic.c
similarity index 100%
rename from src/ftr/ac_hos_piknic.c
rename to src/furniture/ac_hos_piknic.c
diff --git a/src/ftr/ac_hos_turkey_sofa.c b/src/furniture/ac_hos_turkey_sofa.c
similarity index 100%
rename from src/ftr/ac_hos_turkey_sofa.c
rename to src/furniture/ac_hos_turkey_sofa.c
diff --git a/src/ftr/ac_iid_benti.c b/src/furniture/ac_iid_benti.c
similarity index 100%
rename from src/ftr/ac_iid_benti.c
rename to src/furniture/ac_iid_benti.c
diff --git a/src/ftr/ac_iid_diary.c b/src/furniture/ac_iid_diary.c
similarity index 100%
rename from src/ftr/ac_iid_diary.c
rename to src/furniture/ac_iid_diary.c
diff --git a/src/ftr/ac_iid_funediary.c b/src/furniture/ac_iid_funediary.c
similarity index 100%
rename from src/ftr/ac_iid_funediary.c
rename to src/furniture/ac_iid_funediary.c
diff --git a/src/ftr/ac_iid_mdiary.c b/src/furniture/ac_iid_mdiary.c
similarity index 100%
rename from src/ftr/ac_iid_mdiary.c
rename to src/furniture/ac_iid_mdiary.c
diff --git a/src/ftr/ac_iid_newdiary.c b/src/furniture/ac_iid_newdiary.c
similarity index 100%
rename from src/ftr/ac_iid_newdiary.c
rename to src/furniture/ac_iid_newdiary.c
diff --git a/src/ftr/ac_iid_ningyou.c b/src/furniture/ac_iid_ningyou.c
similarity index 100%
rename from src/ftr/ac_iid_ningyou.c
rename to src/furniture/ac_iid_ningyou.c
diff --git a/src/ftr/ac_iid_snow.c b/src/furniture/ac_iid_snow.c
similarity index 100%
rename from src/ftr/ac_iid_snow.c
rename to src/furniture/ac_iid_snow.c
diff --git a/src/ftr/ac_iid_surf.c b/src/furniture/ac_iid_surf.c
similarity index 100%
rename from src/ftr/ac_iid_surf.c
rename to src/furniture/ac_iid_surf.c
diff --git a/src/ftr/ac_iid_yuki.c b/src/furniture/ac_iid_yuki.c
similarity index 100%
rename from src/ftr/ac_iid_yuki.c
rename to src/furniture/ac_iid_yuki.c
diff --git a/src/ftr/ac_ike_art_ang.c b/src/furniture/ac_ike_art_ang.c
similarity index 100%
rename from src/ftr/ac_ike_art_ang.c
rename to src/furniture/ac_ike_art_ang.c
diff --git a/src/ftr/ac_ike_art_fel.c b/src/furniture/ac_ike_art_fel.c
similarity index 100%
rename from src/ftr/ac_ike_art_fel.c
rename to src/furniture/ac_ike_art_fel.c
diff --git a/src/ftr/ac_ike_art_sya.c b/src/furniture/ac_ike_art_sya.c
similarity index 100%
rename from src/ftr/ac_ike_art_sya.c
rename to src/furniture/ac_ike_art_sya.c
diff --git a/src/ftr/ac_ike_fish_tro2.c b/src/furniture/ac_ike_fish_tro2.c
similarity index 100%
rename from src/ftr/ac_ike_fish_tro2.c
rename to src/furniture/ac_ike_fish_tro2.c
diff --git a/src/ftr/ac_ike_island_hako01.c b/src/furniture/ac_ike_island_hako01.c
similarity index 100%
rename from src/ftr/ac_ike_island_hako01.c
rename to src/furniture/ac_ike_island_hako01.c
diff --git a/src/ftr/ac_ike_island_sensui01.c b/src/furniture/ac_ike_island_sensui01.c
similarity index 100%
rename from src/ftr/ac_ike_island_sensui01.c
rename to src/furniture/ac_ike_island_sensui01.c
diff --git a/src/ftr/ac_ike_island_uku01.c b/src/furniture/ac_ike_island_uku01.c
similarity index 100%
rename from src/ftr/ac_ike_island_uku01.c
rename to src/furniture/ac_ike_island_uku01.c
diff --git a/src/ftr/ac_ike_jny_afmen01.c b/src/furniture/ac_ike_jny_afmen01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_afmen01.c
rename to src/furniture/ac_ike_jny_afmen01.c
diff --git a/src/ftr/ac_ike_jny_botle01.c b/src/furniture/ac_ike_jny_botle01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_botle01.c
rename to src/furniture/ac_ike_jny_botle01.c
diff --git a/src/ftr/ac_ike_jny_gate01.c b/src/furniture/ac_ike_jny_gate01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_gate01.c
rename to src/furniture/ac_ike_jny_gate01.c
diff --git a/src/ftr/ac_ike_jny_gojyu01.c b/src/furniture/ac_ike_jny_gojyu01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_gojyu01.c
rename to src/furniture/ac_ike_jny_gojyu01.c
diff --git a/src/ftr/ac_ike_jny_hariko01.c b/src/furniture/ac_ike_jny_hariko01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_hariko01.c
rename to src/furniture/ac_ike_jny_hariko01.c
diff --git a/src/ftr/ac_ike_jny_houi01.c b/src/furniture/ac_ike_jny_houi01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_houi01.c
rename to src/furniture/ac_ike_jny_houi01.c
diff --git a/src/ftr/ac_ike_jny_kibori01.c b/src/furniture/ac_ike_jny_kibori01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_kibori01.c
rename to src/furniture/ac_ike_jny_kibori01.c
diff --git a/src/ftr/ac_ike_jny_makada01.c b/src/furniture/ac_ike_jny_makada01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_makada01.c
rename to src/furniture/ac_ike_jny_makada01.c
diff --git a/src/ftr/ac_ike_jny_moai01.c b/src/furniture/ac_ike_jny_moai01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_moai01.c
rename to src/furniture/ac_ike_jny_moai01.c
diff --git a/src/ftr/ac_ike_jny_ningyo01.c b/src/furniture/ac_ike_jny_ningyo01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_ningyo01.c
rename to src/furniture/ac_ike_jny_ningyo01.c
diff --git a/src/ftr/ac_ike_jny_pisa01.c b/src/furniture/ac_ike_jny_pisa01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_pisa01.c
rename to src/furniture/ac_ike_jny_pisa01.c
diff --git a/src/ftr/ac_ike_jny_rosia01.c b/src/furniture/ac_ike_jny_rosia01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_rosia01.c
rename to src/furniture/ac_ike_jny_rosia01.c
diff --git a/src/ftr/ac_ike_jny_sirser01.c b/src/furniture/ac_ike_jny_sirser01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_sirser01.c
rename to src/furniture/ac_ike_jny_sirser01.c
diff --git a/src/ftr/ac_ike_jny_sirser201.c b/src/furniture/ac_ike_jny_sirser201.c
similarity index 100%
rename from src/ftr/ac_ike_jny_sirser201.c
rename to src/furniture/ac_ike_jny_sirser201.c
diff --git a/src/ftr/ac_ike_jny_syon01.c b/src/furniture/ac_ike_jny_syon01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_syon01.c
rename to src/furniture/ac_ike_jny_syon01.c
diff --git a/src/ftr/ac_ike_jny_tower01.c b/src/furniture/ac_ike_jny_tower01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_tower01.c
rename to src/furniture/ac_ike_jny_tower01.c
diff --git a/src/ftr/ac_ike_jny_truth01.c b/src/furniture/ac_ike_jny_truth01.c
similarity index 100%
rename from src/ftr/ac_ike_jny_truth01.c
rename to src/furniture/ac_ike_jny_truth01.c
diff --git a/src/ftr/ac_ike_jpn_tansu01.c b/src/furniture/ac_ike_jpn_tansu01.c
similarity index 100%
rename from src/ftr/ac_ike_jpn_tansu01.c
rename to src/furniture/ac_ike_jpn_tansu01.c
diff --git a/src/ftr/ac_ike_k_count01.c b/src/furniture/ac_ike_k_count01.c
similarity index 100%
rename from src/ftr/ac_ike_k_count01.c
rename to src/furniture/ac_ike_k_count01.c
diff --git a/src/ftr/ac_ike_k_iveboy01.c b/src/furniture/ac_ike_k_iveboy01.c
similarity index 100%
rename from src/ftr/ac_ike_k_iveboy01.c
rename to src/furniture/ac_ike_k_iveboy01.c
diff --git a/src/ftr/ac_ike_k_kid01.c b/src/furniture/ac_ike_k_kid01.c
similarity index 100%
rename from src/ftr/ac_ike_k_kid01.c
rename to src/furniture/ac_ike_k_kid01.c
diff --git a/src/ftr/ac_ike_k_kid02.c b/src/furniture/ac_ike_k_kid02.c
similarity index 100%
rename from src/ftr/ac_ike_k_kid02.c
rename to src/furniture/ac_ike_k_kid02.c
diff --git a/src/ftr/ac_ike_k_mame01.c b/src/furniture/ac_ike_k_mame01.c
similarity index 100%
rename from src/ftr/ac_ike_k_mame01.c
rename to src/furniture/ac_ike_k_mame01.c
diff --git a/src/ftr/ac_ike_k_otome01.c b/src/furniture/ac_ike_k_otome01.c
similarity index 100%
rename from src/ftr/ac_ike_k_otome01.c
rename to src/furniture/ac_ike_k_otome01.c
diff --git a/src/ftr/ac_ike_k_sinnen01.c b/src/furniture/ac_ike_k_sinnen01.c
similarity index 100%
rename from src/ftr/ac_ike_k_sinnen01.c
rename to src/furniture/ac_ike_k_sinnen01.c
diff --git a/src/ftr/ac_ike_k_sum01.c b/src/furniture/ac_ike_k_sum01.c
similarity index 100%
rename from src/ftr/ac_ike_k_sum01.c
rename to src/furniture/ac_ike_k_sum01.c
diff --git a/src/ftr/ac_ike_k_tanabata01.c b/src/furniture/ac_ike_k_tanabata01.c
similarity index 100%
rename from src/ftr/ac_ike_k_tanabata01.c
rename to src/furniture/ac_ike_k_tanabata01.c
diff --git a/src/ftr/ac_ike_k_turis01.c b/src/furniture/ac_ike_k_turis01.c
similarity index 100%
rename from src/ftr/ac_ike_k_turis01.c
rename to src/furniture/ac_ike_k_turis01.c
diff --git a/src/ftr/ac_ike_kama_danro01.c b/src/furniture/ac_ike_kama_danro01.c
similarity index 100%
rename from src/ftr/ac_ike_kama_danro01.c
rename to src/furniture/ac_ike_kama_danro01.c
diff --git a/src/ftr/ac_ike_nikki_fan1.c b/src/furniture/ac_ike_nikki_fan1.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_fan1.c
rename to src/furniture/ac_ike_nikki_fan1.c
diff --git a/src/ftr/ac_ike_nikki_fan2.c b/src/furniture/ac_ike_nikki_fan2.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_fan2.c
rename to src/furniture/ac_ike_nikki_fan2.c
diff --git a/src/ftr/ac_ike_nikki_fan3.c b/src/furniture/ac_ike_nikki_fan3.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_fan3.c
rename to src/furniture/ac_ike_nikki_fan3.c
diff --git a/src/ftr/ac_ike_nikki_fan4.c b/src/furniture/ac_ike_nikki_fan4.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_fan4.c
rename to src/furniture/ac_ike_nikki_fan4.c
diff --git a/src/ftr/ac_ike_nikki_fan5.c b/src/furniture/ac_ike_nikki_fan5.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_fan5.c
rename to src/furniture/ac_ike_nikki_fan5.c
diff --git a/src/ftr/ac_ike_nikki_wafu1.c b/src/furniture/ac_ike_nikki_wafu1.c
similarity index 100%
rename from src/ftr/ac_ike_nikki_wafu1.c
rename to src/furniture/ac_ike_nikki_wafu1.c
diff --git a/src/ftr/ac_ike_prores_bench01.c b/src/furniture/ac_ike_prores_bench01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_bench01.c
rename to src/furniture/ac_ike_prores_bench01.c
diff --git a/src/ftr/ac_ike_prores_fense01.c b/src/furniture/ac_ike_prores_fense01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_fense01.c
rename to src/furniture/ac_ike_prores_fense01.c
diff --git a/src/ftr/ac_ike_prores_ling01.c b/src/furniture/ac_ike_prores_ling01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_ling01.c
rename to src/furniture/ac_ike_prores_ling01.c
diff --git a/src/ftr/ac_ike_prores_ling02.c b/src/furniture/ac_ike_prores_ling02.c
similarity index 100%
rename from src/ftr/ac_ike_prores_ling02.c
rename to src/furniture/ac_ike_prores_ling02.c
diff --git a/src/ftr/ac_ike_prores_ling03.c b/src/furniture/ac_ike_prores_ling03.c
similarity index 100%
rename from src/ftr/ac_ike_prores_ling03.c
rename to src/furniture/ac_ike_prores_ling03.c
diff --git a/src/ftr/ac_ike_prores_mat01.c b/src/furniture/ac_ike_prores_mat01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_mat01.c
rename to src/furniture/ac_ike_prores_mat01.c
diff --git a/src/ftr/ac_ike_prores_punch01.c b/src/furniture/ac_ike_prores_punch01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_punch01.c
rename to src/furniture/ac_ike_prores_punch01.c
diff --git a/src/ftr/ac_ike_prores_sandbag01.c b/src/furniture/ac_ike_prores_sandbag01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_sandbag01.c
rename to src/furniture/ac_ike_prores_sandbag01.c
diff --git a/src/ftr/ac_ike_prores_table01.c b/src/furniture/ac_ike_prores_table01.c
similarity index 100%
rename from src/ftr/ac_ike_prores_table01.c
rename to src/furniture/ac_ike_prores_table01.c
diff --git a/src/ftr/ac_ike_pst_pig01.c b/src/furniture/ac_ike_pst_pig01.c
similarity index 100%
rename from src/ftr/ac_ike_pst_pig01.c
rename to src/furniture/ac_ike_pst_pig01.c
diff --git a/src/ftr/ac_ike_pst_tesyu01.c b/src/furniture/ac_ike_pst_tesyu01.c
similarity index 100%
rename from src/ftr/ac_ike_pst_tesyu01.c
rename to src/furniture/ac_ike_pst_tesyu01.c
diff --git a/src/ftr/ac_ike_tent_bike01.c b/src/furniture/ac_ike_tent_bike01.c
similarity index 100%
rename from src/ftr/ac_ike_tent_bike01.c
rename to src/furniture/ac_ike_tent_bike01.c
diff --git a/src/ftr/ac_ike_tent_fire01.c b/src/furniture/ac_ike_tent_fire01.c
similarity index 100%
rename from src/ftr/ac_ike_tent_fire01.c
rename to src/furniture/ac_ike_tent_fire01.c
diff --git a/src/ftr/ac_ike_tent_fire02.c b/src/furniture/ac_ike_tent_fire02.c
similarity index 100%
rename from src/ftr/ac_ike_tent_fire02.c
rename to src/furniture/ac_ike_tent_fire02.c
diff --git a/src/ftr/ac_ike_tent_kayak01.c b/src/furniture/ac_ike_tent_kayak01.c
similarity index 100%
rename from src/ftr/ac_ike_tent_kayak01.c
rename to src/furniture/ac_ike_tent_kayak01.c
diff --git a/src/ftr/ac_ike_tent_knap01.c b/src/furniture/ac_ike_tent_knap01.c
similarity index 100%
rename from src/ftr/ac_ike_tent_knap01.c
rename to src/furniture/ac_ike_tent_knap01.c
diff --git a/src/ftr/ac_ike_tent_sleepbag01.c b/src/furniture/ac_ike_tent_sleepbag01.c
similarity index 100%
rename from src/ftr/ac_ike_tent_sleepbag01.c
rename to src/furniture/ac_ike_tent_sleepbag01.c
diff --git a/src/ftr/ac_iku_bugzapper.c b/src/furniture/ac_iku_bugzapper.c
similarity index 100%
rename from src/ftr/ac_iku_bugzapper.c
rename to src/furniture/ac_iku_bugzapper.c
diff --git a/src/ftr/ac_iku_busstop.c b/src/furniture/ac_iku_busstop.c
similarity index 100%
rename from src/ftr/ac_iku_busstop.c
rename to src/furniture/ac_iku_busstop.c
diff --git a/src/ftr/ac_iku_candy.c b/src/furniture/ac_iku_candy.c
similarity index 100%
rename from src/ftr/ac_iku_candy.c
rename to src/furniture/ac_iku_candy.c
diff --git a/src/ftr/ac_iku_cement.c b/src/furniture/ac_iku_cement.c
similarity index 100%
rename from src/ftr/ac_iku_cement.c
rename to src/furniture/ac_iku_cement.c
diff --git a/src/ftr/ac_iku_chair.c b/src/furniture/ac_iku_chair.c
similarity index 100%
rename from src/ftr/ac_iku_chair.c
rename to src/furniture/ac_iku_chair.c
diff --git a/src/ftr/ac_iku_cocoa.c b/src/furniture/ac_iku_cocoa.c
similarity index 100%
rename from src/ftr/ac_iku_cocoa.c
rename to src/furniture/ac_iku_cocoa.c
diff --git a/src/ftr/ac_iku_cow.c b/src/furniture/ac_iku_cow.c
similarity index 100%
rename from src/ftr/ac_iku_cow.c
rename to src/furniture/ac_iku_cow.c
diff --git a/src/ftr/ac_iku_denko.c b/src/furniture/ac_iku_denko.c
similarity index 100%
rename from src/ftr/ac_iku_denko.c
rename to src/furniture/ac_iku_denko.c
diff --git a/src/ftr/ac_iku_flagman.c b/src/furniture/ac_iku_flagman.c
similarity index 100%
rename from src/ftr/ac_iku_flagman.c
rename to src/furniture/ac_iku_flagman.c
diff --git a/src/ftr/ac_iku_flip_top.c b/src/furniture/ac_iku_flip_top.c
similarity index 100%
rename from src/ftr/ac_iku_flip_top.c
rename to src/furniture/ac_iku_flip_top.c
diff --git a/src/ftr/ac_iku_gold_green.c b/src/furniture/ac_iku_gold_green.c
similarity index 100%
rename from src/ftr/ac_iku_gold_green.c
rename to src/furniture/ac_iku_gold_green.c
diff --git a/src/ftr/ac_iku_gold_red.c b/src/furniture/ac_iku_gold_red.c
similarity index 100%
rename from src/ftr/ac_iku_gold_red.c
rename to src/furniture/ac_iku_gold_red.c
diff --git a/src/ftr/ac_iku_ham.c b/src/furniture/ac_iku_ham.c
similarity index 100%
rename from src/ftr/ac_iku_ham.c
rename to src/furniture/ac_iku_ham.c
diff --git a/src/ftr/ac_iku_hazardous_top.c b/src/furniture/ac_iku_hazardous_top.c
similarity index 100%
rename from src/ftr/ac_iku_hazardous_top.c
rename to src/furniture/ac_iku_hazardous_top.c
diff --git a/src/ftr/ac_iku_ido.c b/src/furniture/ac_iku_ido.c
similarity index 100%
rename from src/ftr/ac_iku_ido.c
rename to src/furniture/ac_iku_ido.c
diff --git a/src/ftr/ac_iku_jack.c b/src/furniture/ac_iku_jack.c
similarity index 100%
rename from src/ftr/ac_iku_jack.c
rename to src/furniture/ac_iku_jack.c
diff --git a/src/ftr/ac_iku_jersey.c b/src/furniture/ac_iku_jersey.c
similarity index 100%
rename from src/ftr/ac_iku_jersey.c
rename to src/furniture/ac_iku_jersey.c
diff --git a/src/ftr/ac_iku_mario_coin.c b/src/furniture/ac_iku_mario_coin.c
similarity index 100%
rename from src/ftr/ac_iku_mario_coin.c
rename to src/furniture/ac_iku_mario_coin.c
diff --git a/src/ftr/ac_iku_mario_dokan.c b/src/furniture/ac_iku_mario_dokan.c
similarity index 100%
rename from src/ftr/ac_iku_mario_dokan.c
rename to src/furniture/ac_iku_mario_dokan.c
diff --git a/src/ftr/ac_iku_mario_hatena.c b/src/furniture/ac_iku_mario_hatena.c
similarity index 100%
rename from src/ftr/ac_iku_mario_hatena.c
rename to src/furniture/ac_iku_mario_hatena.c
diff --git a/src/ftr/ac_iku_mario_koura.c b/src/furniture/ac_iku_mario_koura.c
similarity index 100%
rename from src/ftr/ac_iku_mario_koura.c
rename to src/furniture/ac_iku_mario_koura.c
diff --git a/src/ftr/ac_iku_mario_renga.c b/src/furniture/ac_iku_mario_renga.c
similarity index 100%
rename from src/ftr/ac_iku_mario_renga.c
rename to src/furniture/ac_iku_mario_renga.c
diff --git a/src/ftr/ac_iku_mario_star.c b/src/furniture/ac_iku_mario_star.c
similarity index 100%
rename from src/ftr/ac_iku_mario_star.c
rename to src/furniture/ac_iku_mario_star.c
diff --git a/src/ftr/ac_iku_mario_taihou.c b/src/furniture/ac_iku_mario_taihou.c
similarity index 100%
rename from src/ftr/ac_iku_mario_taihou.c
rename to src/furniture/ac_iku_mario_taihou.c
diff --git a/src/ftr/ac_iku_orange.c b/src/furniture/ac_iku_orange.c
similarity index 100%
rename from src/ftr/ac_iku_orange.c
rename to src/furniture/ac_iku_orange.c
diff --git a/src/ftr/ac_iku_reducespeed.c b/src/furniture/ac_iku_reducespeed.c
similarity index 100%
rename from src/ftr/ac_iku_reducespeed.c
rename to src/furniture/ac_iku_reducespeed.c
diff --git a/src/ftr/ac_iku_roller.c b/src/furniture/ac_iku_roller.c
similarity index 100%
rename from src/ftr/ac_iku_roller.c
rename to src/furniture/ac_iku_roller.c
diff --git a/src/ftr/ac_iku_saku_a.c b/src/furniture/ac_iku_saku_a.c
similarity index 100%
rename from src/ftr/ac_iku_saku_a.c
rename to src/furniture/ac_iku_saku_a.c
diff --git a/src/ftr/ac_iku_saku_b.c b/src/furniture/ac_iku_saku_b.c
similarity index 100%
rename from src/ftr/ac_iku_saku_b.c
rename to src/furniture/ac_iku_saku_b.c
diff --git a/src/ftr/ac_iku_sawhousev.c b/src/furniture/ac_iku_sawhousev.c
similarity index 100%
rename from src/ftr/ac_iku_sawhousev.c
rename to src/furniture/ac_iku_sawhousev.c
diff --git a/src/ftr/ac_iku_slip.c b/src/furniture/ac_iku_slip.c
similarity index 100%
rename from src/ftr/ac_iku_slip.c
rename to src/furniture/ac_iku_slip.c
diff --git a/src/ftr/ac_iku_tumble.c b/src/furniture/ac_iku_tumble.c
similarity index 100%
rename from src/ftr/ac_iku_tumble.c
rename to src/furniture/ac_iku_tumble.c
diff --git a/src/ftr/ac_iku_turkey_TV.c b/src/furniture/ac_iku_turkey_TV.c
similarity index 100%
rename from src/ftr/ac_iku_turkey_TV.c
rename to src/furniture/ac_iku_turkey_TV.c
diff --git a/src/ftr/ac_iku_turkey_bed.c b/src/furniture/ac_iku_turkey_bed.c
similarity index 100%
rename from src/ftr/ac_iku_turkey_bed.c
rename to src/furniture/ac_iku_turkey_bed.c
diff --git a/src/ftr/ac_iku_turkey_lamp.c b/src/furniture/ac_iku_turkey_lamp.c
similarity index 100%
rename from src/ftr/ac_iku_turkey_lamp.c
rename to src/furniture/ac_iku_turkey_lamp.c
diff --git a/src/ftr/ac_iku_turkey_table.c b/src/furniture/ac_iku_turkey_table.c
similarity index 100%
rename from src/ftr/ac_iku_turkey_table.c
rename to src/furniture/ac_iku_turkey_table.c
diff --git a/src/ftr/ac_iku_ukai.c b/src/furniture/ac_iku_ukai.c
similarity index 100%
rename from src/ftr/ac_iku_ukai.c
rename to src/furniture/ac_iku_ukai.c
diff --git a/src/ftr/ac_iku_work.c b/src/furniture/ac_iku_work.c
similarity index 100%
rename from src/ftr/ac_iku_work.c
rename to src/furniture/ac_iku_work.c
diff --git a/src/ftr/ac_kazaguruma.c b/src/furniture/ac_kazaguruma.c
similarity index 100%
rename from src/ftr/ac_kazaguruma.c
rename to src/furniture/ac_kazaguruma.c
diff --git a/src/ftr/ac_kob_disksystem8.c b/src/furniture/ac_kob_disksystem8.c
similarity index 100%
rename from src/ftr/ac_kob_disksystem8.c
rename to src/furniture/ac_kob_disksystem8.c
diff --git a/src/ftr/ac_kob_getabako1.c b/src/furniture/ac_kob_getabako1.c
similarity index 100%
rename from src/ftr/ac_kob_getabako1.c
rename to src/furniture/ac_kob_getabako1.c
diff --git a/src/ftr/ac_kob_getabako2.c b/src/furniture/ac_kob_getabako2.c
similarity index 100%
rename from src/ftr/ac_kob_getabako2.c
rename to src/furniture/ac_kob_getabako2.c
diff --git a/src/ftr/ac_kob_jimudesk.c b/src/furniture/ac_kob_jimudesk.c
similarity index 100%
rename from src/ftr/ac_kob_jimudesk.c
rename to src/furniture/ac_kob_jimudesk.c
diff --git a/src/ftr/ac_kob_jimuisu.c b/src/furniture/ac_kob_jimuisu.c
similarity index 100%
rename from src/ftr/ac_kob_jimuisu.c
rename to src/furniture/ac_kob_jimuisu.c
diff --git a/src/ftr/ac_kob_locker1.c b/src/furniture/ac_kob_locker1.c
similarity index 100%
rename from src/ftr/ac_kob_locker1.c
rename to src/furniture/ac_kob_locker1.c
diff --git a/src/ftr/ac_kob_mastersword.c b/src/furniture/ac_kob_mastersword.c
similarity index 100%
rename from src/ftr/ac_kob_mastersword.c
rename to src/furniture/ac_kob_mastersword.c
diff --git a/src/ftr/ac_kob_ncube.c b/src/furniture/ac_kob_ncube.c
similarity index 100%
rename from src/ftr/ac_kob_ncube.c
rename to src/furniture/ac_kob_ncube.c
diff --git a/src/ftr/ac_kob_pipeisu.c b/src/furniture/ac_kob_pipeisu.c
similarity index 100%
rename from src/ftr/ac_kob_pipeisu.c
rename to src/furniture/ac_kob_pipeisu.c
diff --git a/src/ftr/ac_kob_rika_desk.c b/src/furniture/ac_kob_rika_desk.c
similarity index 100%
rename from src/ftr/ac_kob_rika_desk.c
rename to src/furniture/ac_kob_rika_desk.c
diff --git a/src/ftr/ac_kob_tobibako.c b/src/furniture/ac_kob_tobibako.c
similarity index 100%
rename from src/ftr/ac_kob_tobibako.c
rename to src/furniture/ac_kob_tobibako.c
diff --git a/src/ftr/ac_kon_ameclock.c b/src/furniture/ac_kon_ameclock.c
similarity index 100%
rename from src/ftr/ac_kon_ameclock.c
rename to src/furniture/ac_kon_ameclock.c
diff --git a/src/ftr/ac_kon_atqclock.c b/src/furniture/ac_kon_atqclock.c
similarity index 100%
rename from src/ftr/ac_kon_atqclock.c
rename to src/furniture/ac_kon_atqclock.c
diff --git a/src/ftr/ac_kon_blueclock.c b/src/furniture/ac_kon_blueclock.c
similarity index 100%
rename from src/ftr/ac_kon_blueclock.c
rename to src/furniture/ac_kon_blueclock.c
diff --git a/src/ftr/ac_kon_cracker.c b/src/furniture/ac_kon_cracker.c
similarity index 100%
rename from src/ftr/ac_kon_cracker.c
rename to src/furniture/ac_kon_cracker.c
diff --git a/src/ftr/ac_kon_gomi03.c b/src/furniture/ac_kon_gomi03.c
similarity index 100%
rename from src/ftr/ac_kon_gomi03.c
rename to src/furniture/ac_kon_gomi03.c
diff --git a/src/ftr/ac_kon_gomi04.c b/src/furniture/ac_kon_gomi04.c
similarity index 100%
rename from src/ftr/ac_kon_gomi04.c
rename to src/furniture/ac_kon_gomi04.c
diff --git a/src/ftr/ac_kon_grclock.c b/src/furniture/ac_kon_grclock.c
similarity index 100%
rename from src/ftr/ac_kon_grclock.c
rename to src/furniture/ac_kon_grclock.c
diff --git a/src/ftr/ac_kon_isi01.c b/src/furniture/ac_kon_isi01.c
similarity index 100%
rename from src/ftr/ac_kon_isi01.c
rename to src/furniture/ac_kon_isi01.c
diff --git a/src/ftr/ac_kon_isi02.c b/src/furniture/ac_kon_isi02.c
similarity index 100%
rename from src/ftr/ac_kon_isi02.c
rename to src/furniture/ac_kon_isi02.c
diff --git a/src/ftr/ac_kon_isi03.c b/src/furniture/ac_kon_isi03.c
similarity index 100%
rename from src/ftr/ac_kon_isi03.c
rename to src/furniture/ac_kon_isi03.c
diff --git a/src/ftr/ac_kon_isi04.c b/src/furniture/ac_kon_isi04.c
similarity index 100%
rename from src/ftr/ac_kon_isi04.c
rename to src/furniture/ac_kon_isi04.c
diff --git a/src/ftr/ac_kon_isi05.c b/src/furniture/ac_kon_isi05.c
similarity index 100%
rename from src/ftr/ac_kon_isi05.c
rename to src/furniture/ac_kon_isi05.c
diff --git a/src/ftr/ac_kon_isi06.c b/src/furniture/ac_kon_isi06.c
similarity index 100%
rename from src/ftr/ac_kon_isi06.c
rename to src/furniture/ac_kon_isi06.c
diff --git a/src/ftr/ac_kon_jihanki02.c b/src/furniture/ac_kon_jihanki02.c
similarity index 100%
rename from src/ftr/ac_kon_jihanki02.c
rename to src/furniture/ac_kon_jihanki02.c
diff --git a/src/ftr/ac_kon_jihanki03.c b/src/furniture/ac_kon_jihanki03.c
similarity index 100%
rename from src/ftr/ac_kon_jihanki03.c
rename to src/furniture/ac_kon_jihanki03.c
diff --git a/src/ftr/ac_kon_mimiclock.c b/src/furniture/ac_kon_mimiclock.c
similarity index 100%
rename from src/ftr/ac_kon_mimiclock.c
rename to src/furniture/ac_kon_mimiclock.c
diff --git a/src/ftr/ac_kon_musya.c b/src/furniture/ac_kon_musya.c
similarity index 100%
rename from src/ftr/ac_kon_musya.c
rename to src/furniture/ac_kon_musya.c
diff --git a/src/ftr/ac_kon_pound.c b/src/furniture/ac_kon_pound.c
similarity index 100%
rename from src/ftr/ac_kon_pound.c
rename to src/furniture/ac_kon_pound.c
diff --git a/src/ftr/ac_kon_redclock.c b/src/furniture/ac_kon_redclock.c
similarity index 100%
rename from src/ftr/ac_kon_redclock.c
rename to src/furniture/ac_kon_redclock.c
diff --git a/src/ftr/ac_kon_sisiodosi.c b/src/furniture/ac_kon_sisiodosi.c
similarity index 100%
rename from src/ftr/ac_kon_sisiodosi.c
rename to src/furniture/ac_kon_sisiodosi.c
diff --git a/src/ftr/ac_kon_snowbed.c b/src/furniture/ac_kon_snowbed.c
similarity index 100%
rename from src/ftr/ac_kon_snowbed.c
rename to src/furniture/ac_kon_snowbed.c
diff --git a/src/ftr/ac_kon_snowbox.c b/src/furniture/ac_kon_snowbox.c
similarity index 100%
rename from src/ftr/ac_kon_snowbox.c
rename to src/furniture/ac_kon_snowbox.c
diff --git a/src/ftr/ac_kon_snowclock.c b/src/furniture/ac_kon_snowclock.c
similarity index 100%
rename from src/ftr/ac_kon_snowclock.c
rename to src/furniture/ac_kon_snowclock.c
diff --git a/src/ftr/ac_kon_snowfreezer.c b/src/furniture/ac_kon_snowfreezer.c
similarity index 100%
rename from src/ftr/ac_kon_snowfreezer.c
rename to src/furniture/ac_kon_snowfreezer.c
diff --git a/src/ftr/ac_kon_snowsofa.c b/src/furniture/ac_kon_snowsofa.c
similarity index 100%
rename from src/ftr/ac_kon_snowsofa.c
rename to src/furniture/ac_kon_snowsofa.c
diff --git a/src/ftr/ac_kon_snowtable.c b/src/furniture/ac_kon_snowtable.c
similarity index 100%
rename from src/ftr/ac_kon_snowtable.c
rename to src/furniture/ac_kon_snowtable.c
diff --git a/src/ftr/ac_kon_snowtansu.c b/src/furniture/ac_kon_snowtansu.c
similarity index 100%
rename from src/ftr/ac_kon_snowtansu.c
rename to src/furniture/ac_kon_snowtansu.c
diff --git a/src/ftr/ac_kon_snowtv.c b/src/furniture/ac_kon_snowtv.c
similarity index 100%
rename from src/ftr/ac_kon_snowtv.c
rename to src/furniture/ac_kon_snowtv.c
diff --git a/src/ftr/ac_kon_taiju.c b/src/furniture/ac_kon_taiju.c
similarity index 100%
rename from src/ftr/ac_kon_taiju.c
rename to src/furniture/ac_kon_taiju.c
diff --git a/src/ftr/ac_kon_tubo.c b/src/furniture/ac_kon_tubo.c
similarity index 100%
rename from src/ftr/ac_kon_tubo.c
rename to src/furniture/ac_kon_tubo.c
diff --git a/src/ftr/ac_kon_tubo2.c b/src/furniture/ac_kon_tubo2.c
similarity index 100%
rename from src/ftr/ac_kon_tubo2.c
rename to src/furniture/ac_kon_tubo2.c
diff --git a/src/ftr/ac_kon_tubo3.c b/src/furniture/ac_kon_tubo3.c
similarity index 100%
rename from src/ftr/ac_kon_tubo3.c
rename to src/furniture/ac_kon_tubo3.c
diff --git a/src/ftr/ac_kon_tukue.c b/src/furniture/ac_kon_tukue.c
similarity index 100%
rename from src/ftr/ac_kon_tukue.c
rename to src/furniture/ac_kon_tukue.c
diff --git a/src/ftr/ac_kon_waclock.c b/src/furniture/ac_kon_waclock.c
similarity index 100%
rename from src/ftr/ac_kon_waclock.c
rename to src/furniture/ac_kon_waclock.c
diff --git a/src/ftr/ac_kon_xtree02.c b/src/furniture/ac_kon_xtree02.c
similarity index 100%
rename from src/ftr/ac_kon_xtree02.c
rename to src/furniture/ac_kon_xtree02.c
diff --git a/src/ftr/ac_myfmanekin.c b/src/furniture/ac_myfmanekin.c
similarity index 100%
rename from src/ftr/ac_myfmanekin.c
rename to src/furniture/ac_myfmanekin.c
diff --git a/src/ftr/ac_myfumbrella.c b/src/furniture/ac_myfumbrella.c
similarity index 100%
rename from src/ftr/ac_myfumbrella.c
rename to src/furniture/ac_myfumbrella.c
diff --git a/src/ftr/ac_nog_amenbo.c b/src/furniture/ac_nog_amenbo.c
similarity index 100%
rename from src/ftr/ac_nog_amenbo.c
rename to src/furniture/ac_nog_amenbo.c
diff --git a/src/ftr/ac_nog_ari.c b/src/furniture/ac_nog_ari.c
similarity index 100%
rename from src/ftr/ac_nog_ari.c
rename to src/furniture/ac_nog_ari.c
diff --git a/src/ftr/ac_nog_balloon_common.c b/src/furniture/ac_nog_balloon_common.c
similarity index 100%
rename from src/ftr/ac_nog_balloon_common.c
rename to src/furniture/ac_nog_balloon_common.c
diff --git a/src/ftr/ac_nog_beachbed.c b/src/furniture/ac_nog_beachbed.c
similarity index 100%
rename from src/ftr/ac_nog_beachbed.c
rename to src/furniture/ac_nog_beachbed.c
diff --git a/src/ftr/ac_nog_beachtable.c b/src/furniture/ac_nog_beachtable.c
similarity index 100%
rename from src/ftr/ac_nog_beachtable.c
rename to src/furniture/ac_nog_beachtable.c
diff --git a/src/ftr/ac_nog_bishopB.c b/src/furniture/ac_nog_bishopB.c
similarity index 100%
rename from src/ftr/ac_nog_bishopB.c
rename to src/furniture/ac_nog_bishopB.c
diff --git a/src/ftr/ac_nog_bishopW.c b/src/furniture/ac_nog_bishopW.c
similarity index 100%
rename from src/ftr/ac_nog_bishopW.c
rename to src/furniture/ac_nog_bishopW.c
diff --git a/src/ftr/ac_nog_burner.c b/src/furniture/ac_nog_burner.c
similarity index 100%
rename from src/ftr/ac_nog_burner.c
rename to src/furniture/ac_nog_burner.c
diff --git a/src/ftr/ac_nog_collegenote.c b/src/furniture/ac_nog_collegenote.c
similarity index 100%
rename from src/ftr/ac_nog_collegenote.c
rename to src/furniture/ac_nog_collegenote.c
diff --git a/src/ftr/ac_nog_cornucopia.c b/src/furniture/ac_nog_cornucopia.c
similarity index 100%
rename from src/ftr/ac_nog_cornucopia.c
rename to src/furniture/ac_nog_cornucopia.c
diff --git a/src/ftr/ac_nog_dango.c b/src/furniture/ac_nog_dango.c
similarity index 100%
rename from src/ftr/ac_nog_dango.c
rename to src/furniture/ac_nog_dango.c
diff --git a/src/ftr/ac_nog_dump.c b/src/furniture/ac_nog_dump.c
similarity index 100%
rename from src/ftr/ac_nog_dump.c
rename to src/furniture/ac_nog_dump.c
diff --git a/src/ftr/ac_nog_earth.c b/src/furniture/ac_nog_earth.c
similarity index 100%
rename from src/ftr/ac_nog_earth.c
rename to src/furniture/ac_nog_earth.c
diff --git a/src/ftr/ac_nog_f_tree.c b/src/furniture/ac_nog_f_tree.c
similarity index 100%
rename from src/ftr/ac_nog_f_tree.c
rename to src/furniture/ac_nog_f_tree.c
diff --git a/src/ftr/ac_nog_fan01.c b/src/furniture/ac_nog_fan01.c
similarity index 100%
rename from src/ftr/ac_nog_fan01.c
rename to src/furniture/ac_nog_fan01.c
diff --git a/src/ftr/ac_nog_flat.c b/src/furniture/ac_nog_flat.c
similarity index 100%
rename from src/ftr/ac_nog_flat.c
rename to src/furniture/ac_nog_flat.c
diff --git a/src/ftr/ac_nog_flower.c b/src/furniture/ac_nog_flower.c
similarity index 100%
rename from src/ftr/ac_nog_flower.c
rename to src/furniture/ac_nog_flower.c
diff --git a/src/ftr/ac_nog_gong.c b/src/furniture/ac_nog_gong.c
similarity index 100%
rename from src/ftr/ac_nog_gong.c
rename to src/furniture/ac_nog_gong.c
diff --git a/src/ftr/ac_nog_harddiary.c b/src/furniture/ac_nog_harddiary.c
similarity index 100%
rename from src/ftr/ac_nog_harddiary.c
rename to src/furniture/ac_nog_harddiary.c
diff --git a/src/ftr/ac_nog_isidai.c b/src/furniture/ac_nog_isidai.c
similarity index 100%
rename from src/ftr/ac_nog_isidai.c
rename to src/furniture/ac_nog_isidai.c
diff --git a/src/ftr/ac_nog_ka.c b/src/furniture/ac_nog_ka.c
similarity index 100%
rename from src/ftr/ac_nog_ka.c
rename to src/furniture/ac_nog_ka.c
diff --git a/src/ftr/ac_nog_kaeru.c b/src/furniture/ac_nog_kaeru.c
similarity index 100%
rename from src/ftr/ac_nog_kaeru.c
rename to src/furniture/ac_nog_kaeru.c
diff --git a/src/ftr/ac_nog_kamakura.c b/src/furniture/ac_nog_kamakura.c
similarity index 100%
rename from src/ftr/ac_nog_kamakura.c
rename to src/furniture/ac_nog_kamakura.c
diff --git a/src/ftr/ac_nog_kera.c b/src/furniture/ac_nog_kera.c
similarity index 100%
rename from src/ftr/ac_nog_kera.c
rename to src/furniture/ac_nog_kera.c
diff --git a/src/ftr/ac_nog_kingB.c b/src/furniture/ac_nog_kingB.c
similarity index 100%
rename from src/ftr/ac_nog_kingB.c
rename to src/furniture/ac_nog_kingB.c
diff --git a/src/ftr/ac_nog_kingW.c b/src/furniture/ac_nog_kingW.c
similarity index 100%
rename from src/ftr/ac_nog_kingW.c
rename to src/furniture/ac_nog_kingW.c
diff --git a/src/ftr/ac_nog_knightB.c b/src/furniture/ac_nog_knightB.c
similarity index 100%
rename from src/ftr/ac_nog_knightB.c
rename to src/furniture/ac_nog_knightB.c
diff --git a/src/ftr/ac_nog_knightW.c b/src/furniture/ac_nog_knightW.c
similarity index 100%
rename from src/ftr/ac_nog_knightW.c
rename to src/furniture/ac_nog_knightW.c
diff --git a/src/ftr/ac_nog_koban.c b/src/furniture/ac_nog_koban.c
similarity index 100%
rename from src/ftr/ac_nog_koban.c
rename to src/furniture/ac_nog_koban.c
diff --git a/src/ftr/ac_nog_kumo.c b/src/furniture/ac_nog_kumo.c
similarity index 100%
rename from src/ftr/ac_nog_kumo.c
rename to src/furniture/ac_nog_kumo.c
diff --git a/src/ftr/ac_nog_kurage.c b/src/furniture/ac_nog_kurage.c
similarity index 100%
rename from src/ftr/ac_nog_kurage.c
rename to src/furniture/ac_nog_kurage.c
diff --git a/src/ftr/ac_nog_lawnmower.c b/src/furniture/ac_nog_lawnmower.c
similarity index 100%
rename from src/ftr/ac_nog_lawnmower.c
rename to src/furniture/ac_nog_lawnmower.c
diff --git a/src/ftr/ac_nog_maimai.c b/src/furniture/ac_nog_maimai.c
similarity index 100%
rename from src/ftr/ac_nog_maimai.c
rename to src/furniture/ac_nog_maimai.c
diff --git a/src/ftr/ac_nog_medaka.c b/src/furniture/ac_nog_medaka.c
similarity index 100%
rename from src/ftr/ac_nog_medaka.c
rename to src/furniture/ac_nog_medaka.c
diff --git a/src/ftr/ac_nog_mikanbox.c b/src/furniture/ac_nog_mikanbox.c
similarity index 100%
rename from src/ftr/ac_nog_mikanbox.c
rename to src/furniture/ac_nog_mikanbox.c
diff --git a/src/ftr/ac_nog_mino.c b/src/furniture/ac_nog_mino.c
similarity index 100%
rename from src/ftr/ac_nog_mino.c
rename to src/furniture/ac_nog_mino.c
diff --git a/src/ftr/ac_nog_museum.c b/src/furniture/ac_nog_museum.c
similarity index 100%
rename from src/ftr/ac_nog_museum.c
rename to src/furniture/ac_nog_museum.c
diff --git a/src/ftr/ac_nog_myhome2.c b/src/furniture/ac_nog_myhome2.c
similarity index 100%
rename from src/ftr/ac_nog_myhome2.c
rename to src/furniture/ac_nog_myhome2.c
diff --git a/src/ftr/ac_nog_myhome4.c b/src/furniture/ac_nog_myhome4.c
similarity index 100%
rename from src/ftr/ac_nog_myhome4.c
rename to src/furniture/ac_nog_myhome4.c
diff --git a/src/ftr/ac_nog_nabe.c b/src/furniture/ac_nog_nabe.c
similarity index 100%
rename from src/ftr/ac_nog_nabe.c
rename to src/furniture/ac_nog_nabe.c
diff --git a/src/ftr/ac_nog_pawnB.c b/src/furniture/ac_nog_pawnB.c
similarity index 100%
rename from src/ftr/ac_nog_pawnB.c
rename to src/furniture/ac_nog_pawnB.c
diff --git a/src/ftr/ac_nog_pawnW.c b/src/furniture/ac_nog_pawnW.c
similarity index 100%
rename from src/ftr/ac_nog_pawnW.c
rename to src/furniture/ac_nog_pawnW.c
diff --git a/src/ftr/ac_nog_piraluku.c b/src/furniture/ac_nog_piraluku.c
similarity index 100%
rename from src/ftr/ac_nog_piraluku.c
rename to src/furniture/ac_nog_piraluku.c
diff --git a/src/ftr/ac_nog_queenB.c b/src/furniture/ac_nog_queenB.c
similarity index 100%
rename from src/ftr/ac_nog_queenB.c
rename to src/furniture/ac_nog_queenB.c
diff --git a/src/ftr/ac_nog_queenW.c b/src/furniture/ac_nog_queenW.c
similarity index 100%
rename from src/ftr/ac_nog_queenW.c
rename to src/furniture/ac_nog_queenW.c
diff --git a/src/ftr/ac_nog_rail.c b/src/furniture/ac_nog_rail.c
similarity index 100%
rename from src/ftr/ac_nog_rail.c
rename to src/furniture/ac_nog_rail.c
diff --git a/src/ftr/ac_nog_rookB.c b/src/furniture/ac_nog_rookB.c
similarity index 100%
rename from src/ftr/ac_nog_rookB.c
rename to src/furniture/ac_nog_rookB.c
diff --git a/src/ftr/ac_nog_rookW.c b/src/furniture/ac_nog_rookW.c
similarity index 100%
rename from src/ftr/ac_nog_rookW.c
rename to src/furniture/ac_nog_rookW.c
diff --git a/src/ftr/ac_nog_s_tree.c b/src/furniture/ac_nog_s_tree.c
similarity index 100%
rename from src/ftr/ac_nog_s_tree.c
rename to src/furniture/ac_nog_s_tree.c
diff --git a/src/ftr/ac_nog_schoolnote.c b/src/furniture/ac_nog_schoolnote.c
similarity index 100%
rename from src/ftr/ac_nog_schoolnote.c
rename to src/furniture/ac_nog_schoolnote.c
diff --git a/src/ftr/ac_nog_shop1.c b/src/furniture/ac_nog_shop1.c
similarity index 100%
rename from src/ftr/ac_nog_shop1.c
rename to src/furniture/ac_nog_shop1.c
diff --git a/src/ftr/ac_nog_shrine.c b/src/furniture/ac_nog_shrine.c
similarity index 100%
rename from src/ftr/ac_nog_shrine.c
rename to src/furniture/ac_nog_shrine.c
diff --git a/src/ftr/ac_nog_snowman.c b/src/furniture/ac_nog_snowman.c
similarity index 100%
rename from src/ftr/ac_nog_snowman.c
rename to src/furniture/ac_nog_snowman.c
diff --git a/src/ftr/ac_nog_sprinkler.c b/src/furniture/ac_nog_sprinkler.c
similarity index 100%
rename from src/ftr/ac_nog_sprinkler.c
rename to src/furniture/ac_nog_sprinkler.c
diff --git a/src/ftr/ac_nog_station.c b/src/furniture/ac_nog_station.c
similarity index 100%
rename from src/ftr/ac_nog_station.c
rename to src/furniture/ac_nog_station.c
diff --git a/src/ftr/ac_nog_suzuki.c b/src/furniture/ac_nog_suzuki.c
similarity index 100%
rename from src/ftr/ac_nog_suzuki.c
rename to src/furniture/ac_nog_suzuki.c
diff --git a/src/ftr/ac_nog_systemnote.c b/src/furniture/ac_nog_systemnote.c
similarity index 100%
rename from src/ftr/ac_nog_systemnote.c
rename to src/furniture/ac_nog_systemnote.c
diff --git a/src/ftr/ac_nog_tai.c b/src/furniture/ac_nog_tai.c
similarity index 100%
rename from src/ftr/ac_nog_tai.c
rename to src/furniture/ac_nog_tai.c
diff --git a/src/ftr/ac_nog_tri_audio01.c b/src/furniture/ac_nog_tri_audio01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_audio01.c
rename to src/furniture/ac_nog_tri_audio01.c
diff --git a/src/ftr/ac_nog_tri_bed01.c b/src/furniture/ac_nog_tri_bed01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_bed01.c
rename to src/furniture/ac_nog_tri_bed01.c
diff --git a/src/ftr/ac_nog_tri_chair01.c b/src/furniture/ac_nog_tri_chair01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_chair01.c
rename to src/furniture/ac_nog_tri_chair01.c
diff --git a/src/ftr/ac_nog_tri_chest01.c b/src/furniture/ac_nog_tri_chest01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_chest01.c
rename to src/furniture/ac_nog_tri_chest01.c
diff --git a/src/ftr/ac_nog_tri_chest02.c b/src/furniture/ac_nog_tri_chest02.c
similarity index 100%
rename from src/ftr/ac_nog_tri_chest02.c
rename to src/furniture/ac_nog_tri_chest02.c
diff --git a/src/ftr/ac_nog_tri_chest03.c b/src/furniture/ac_nog_tri_chest03.c
similarity index 100%
rename from src/ftr/ac_nog_tri_chest03.c
rename to src/furniture/ac_nog_tri_chest03.c
diff --git a/src/ftr/ac_nog_tri_clock01.c b/src/furniture/ac_nog_tri_clock01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_clock01.c
rename to src/furniture/ac_nog_tri_clock01.c
diff --git a/src/ftr/ac_nog_tri_rack01.c b/src/furniture/ac_nog_tri_rack01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_rack01.c
rename to src/furniture/ac_nog_tri_rack01.c
diff --git a/src/ftr/ac_nog_tri_sofa01.c b/src/furniture/ac_nog_tri_sofa01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_sofa01.c
rename to src/furniture/ac_nog_tri_sofa01.c
diff --git a/src/ftr/ac_nog_tri_table01.c b/src/furniture/ac_nog_tri_table01.c
similarity index 100%
rename from src/ftr/ac_nog_tri_table01.c
rename to src/furniture/ac_nog_tri_table01.c
diff --git a/src/ftr/ac_nog_tudurinote.c b/src/furniture/ac_nog_tudurinote.c
similarity index 100%
rename from src/ftr/ac_nog_tudurinote.c
rename to src/furniture/ac_nog_tudurinote.c
diff --git a/src/ftr/ac_nog_uranai.c b/src/furniture/ac_nog_uranai.c
similarity index 100%
rename from src/ftr/ac_nog_uranai.c
rename to src/furniture/ac_nog_uranai.c
diff --git a/src/ftr/ac_nog_w_tree.c b/src/furniture/ac_nog_w_tree.c
similarity index 100%
rename from src/ftr/ac_nog_w_tree.c
rename to src/furniture/ac_nog_w_tree.c
diff --git a/src/ftr/ac_nog_xtree.c b/src/furniture/ac_nog_xtree.c
similarity index 100%
rename from src/ftr/ac_nog_xtree.c
rename to src/furniture/ac_nog_xtree.c
diff --git a/src/ftr/ac_nog_yamishop.c b/src/furniture/ac_nog_yamishop.c
similarity index 100%
rename from src/ftr/ac_nog_yamishop.c
rename to src/furniture/ac_nog_yamishop.c
diff --git a/src/ftr/ac_nog_yubin.c b/src/furniture/ac_nog_yubin.c
similarity index 100%
rename from src/ftr/ac_nog_yubin.c
rename to src/furniture/ac_nog_yubin.c
diff --git a/src/ftr/ac_nog_zarigani.c b/src/furniture/ac_nog_zarigani.c
similarity index 100%
rename from src/ftr/ac_nog_zarigani.c
rename to src/furniture/ac_nog_zarigani.c
diff --git a/src/ftr/ac_nog_zassou.c b/src/furniture/ac_nog_zassou.c
similarity index 100%
rename from src/ftr/ac_nog_zassou.c
rename to src/furniture/ac_nog_zassou.c
diff --git a/src/ftr/ac_radio_test.c b/src/furniture/ac_radio_test.c
similarity index 100%
rename from src/ftr/ac_radio_test.c
rename to src/furniture/ac_radio_test.c
diff --git a/src/ftr/ac_sugi_alchair.c b/src/furniture/ac_sugi_alchair.c
similarity index 100%
rename from src/ftr/ac_sugi_alchair.c
rename to src/furniture/ac_sugi_alchair.c
diff --git a/src/ftr/ac_sugi_barbecue.c b/src/furniture/ac_sugi_barbecue.c
similarity index 100%
rename from src/ftr/ac_sugi_barbecue.c
rename to src/furniture/ac_sugi_barbecue.c
diff --git a/src/ftr/ac_sugi_chesstable.c b/src/furniture/ac_sugi_chesstable.c
similarity index 100%
rename from src/ftr/ac_sugi_chesstable.c
rename to src/furniture/ac_sugi_chesstable.c
diff --git a/src/ftr/ac_sugi_kpool.c b/src/furniture/ac_sugi_kpool.c
similarity index 100%
rename from src/ftr/ac_sugi_kpool.c
rename to src/furniture/ac_sugi_kpool.c
diff --git a/src/ftr/ac_sugi_radiatorl.c b/src/furniture/ac_sugi_radiatorl.c
similarity index 100%
rename from src/ftr/ac_sugi_radiatorl.c
rename to src/furniture/ac_sugi_radiatorl.c
diff --git a/src/ftr/ac_sugi_torch.c b/src/furniture/ac_sugi_torch.c
similarity index 100%
rename from src/ftr/ac_sugi_torch.c
rename to src/furniture/ac_sugi_torch.c
diff --git a/src/ftr/ac_sum_abura.c b/src/furniture/ac_sum_abura.c
similarity index 100%
rename from src/ftr/ac_sum_abura.c
rename to src/furniture/ac_sum_abura.c
diff --git a/src/ftr/ac_sum_akiakane.c b/src/furniture/ac_sum_akiakane.c
similarity index 100%
rename from src/ftr/ac_sum_akiakane.c
rename to src/furniture/ac_sum_akiakane.c
diff --git a/src/ftr/ac_sum_angel.c b/src/furniture/ac_sum_angel.c
similarity index 100%
rename from src/ftr/ac_sum_angel.c
rename to src/furniture/ac_sum_angel.c
diff --git a/src/ftr/ac_sum_aroana.c b/src/furniture/ac_sum_aroana.c
similarity index 100%
rename from src/ftr/ac_sum_aroana.c
rename to src/furniture/ac_sum_aroana.c
diff --git a/src/ftr/ac_sum_art01.c b/src/furniture/ac_sum_art01.c
similarity index 100%
rename from src/ftr/ac_sum_art01.c
rename to src/furniture/ac_sum_art01.c
diff --git a/src/ftr/ac_sum_art04.c b/src/furniture/ac_sum_art04.c
similarity index 100%
rename from src/ftr/ac_sum_art04.c
rename to src/furniture/ac_sum_art04.c
diff --git a/src/ftr/ac_sum_art05.c b/src/furniture/ac_sum_art05.c
similarity index 100%
rename from src/ftr/ac_sum_art05.c
rename to src/furniture/ac_sum_art05.c
diff --git a/src/ftr/ac_sum_art06.c b/src/furniture/ac_sum_art06.c
similarity index 100%
rename from src/ftr/ac_sum_art06.c
rename to src/furniture/ac_sum_art06.c
diff --git a/src/ftr/ac_sum_art08.c b/src/furniture/ac_sum_art08.c
similarity index 100%
rename from src/ftr/ac_sum_art08.c
rename to src/furniture/ac_sum_art08.c
diff --git a/src/ftr/ac_sum_art09.c b/src/furniture/ac_sum_art09.c
similarity index 100%
rename from src/ftr/ac_sum_art09.c
rename to src/furniture/ac_sum_art09.c
diff --git a/src/ftr/ac_sum_art10.c b/src/furniture/ac_sum_art10.c
similarity index 100%
rename from src/ftr/ac_sum_art10.c
rename to src/furniture/ac_sum_art10.c
diff --git a/src/ftr/ac_sum_art11.c b/src/furniture/ac_sum_art11.c
similarity index 100%
rename from src/ftr/ac_sum_art11.c
rename to src/furniture/ac_sum_art11.c
diff --git a/src/ftr/ac_sum_art12.c b/src/furniture/ac_sum_art12.c
similarity index 100%
rename from src/ftr/ac_sum_art12.c
rename to src/furniture/ac_sum_art12.c
diff --git a/src/ftr/ac_sum_art13.c b/src/furniture/ac_sum_art13.c
similarity index 100%
rename from src/ftr/ac_sum_art13.c
rename to src/furniture/ac_sum_art13.c
diff --git a/src/ftr/ac_sum_art14.c b/src/furniture/ac_sum_art14.c
similarity index 100%
rename from src/ftr/ac_sum_art14.c
rename to src/furniture/ac_sum_art14.c
diff --git a/src/ftr/ac_sum_art15.c b/src/furniture/ac_sum_art15.c
similarity index 100%
rename from src/ftr/ac_sum_art15.c
rename to src/furniture/ac_sum_art15.c
diff --git a/src/ftr/ac_sum_asi_bed01.c b/src/furniture/ac_sum_asi_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_bed01.c
rename to src/furniture/ac_sum_asi_bed01.c
diff --git a/src/ftr/ac_sum_asi_chair01.c b/src/furniture/ac_sum_asi_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_chair01.c
rename to src/furniture/ac_sum_asi_chair01.c
diff --git a/src/ftr/ac_sum_asi_chair02.c b/src/furniture/ac_sum_asi_chair02.c
similarity index 100%
rename from src/ftr/ac_sum_asi_chair02.c
rename to src/furniture/ac_sum_asi_chair02.c
diff --git a/src/ftr/ac_sum_asi_chest01.c b/src/furniture/ac_sum_asi_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_chest01.c
rename to src/furniture/ac_sum_asi_chest01.c
diff --git a/src/ftr/ac_sum_asi_chest02.c b/src/furniture/ac_sum_asi_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_asi_chest02.c
rename to src/furniture/ac_sum_asi_chest02.c
diff --git a/src/ftr/ac_sum_asi_chest03.c b/src/furniture/ac_sum_asi_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_asi_chest03.c
rename to src/furniture/ac_sum_asi_chest03.c
diff --git a/src/ftr/ac_sum_asi_lanp01.c b/src/furniture/ac_sum_asi_lanp01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_lanp01.c
rename to src/furniture/ac_sum_asi_lanp01.c
diff --git a/src/ftr/ac_sum_asi_screen01.c b/src/furniture/ac_sum_asi_screen01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_screen01.c
rename to src/furniture/ac_sum_asi_screen01.c
diff --git a/src/ftr/ac_sum_asi_table01.c b/src/furniture/ac_sum_asi_table01.c
similarity index 100%
rename from src/ftr/ac_sum_asi_table01.c
rename to src/furniture/ac_sum_asi_table01.c
diff --git a/src/ftr/ac_sum_asi_table02.c b/src/furniture/ac_sum_asi_table02.c
similarity index 100%
rename from src/ftr/ac_sum_asi_table02.c
rename to src/furniture/ac_sum_asi_table02.c
diff --git a/src/ftr/ac_sum_asi_taiko.c b/src/furniture/ac_sum_asi_taiko.c
similarity index 100%
rename from src/ftr/ac_sum_asi_taiko.c
rename to src/furniture/ac_sum_asi_taiko.c
diff --git a/src/ftr/ac_sum_ayu.c b/src/furniture/ac_sum_ayu.c
similarity index 100%
rename from src/ftr/ac_sum_ayu.c
rename to src/furniture/ac_sum_ayu.c
diff --git a/src/ftr/ac_sum_baketu.c b/src/furniture/ac_sum_baketu.c
similarity index 100%
rename from src/ftr/ac_sum_baketu.c
rename to src/furniture/ac_sum_baketu.c
diff --git a/src/ftr/ac_sum_bass.c b/src/furniture/ac_sum_bass.c
similarity index 100%
rename from src/ftr/ac_sum_bass.c
rename to src/furniture/ac_sum_bass.c
diff --git a/src/ftr/ac_sum_bass01.c b/src/furniture/ac_sum_bass01.c
similarity index 100%
rename from src/ftr/ac_sum_bass01.c
rename to src/furniture/ac_sum_bass01.c
diff --git a/src/ftr/ac_sum_bassl.c b/src/furniture/ac_sum_bassl.c
similarity index 100%
rename from src/ftr/ac_sum_bassl.c
rename to src/furniture/ac_sum_bassl.c
diff --git a/src/ftr/ac_sum_bassm.c b/src/furniture/ac_sum_bassm.c
similarity index 100%
rename from src/ftr/ac_sum_bassm.c
rename to src/furniture/ac_sum_bassm.c
diff --git a/src/ftr/ac_sum_bdcake01.c b/src/furniture/ac_sum_bdcake01.c
similarity index 100%
rename from src/ftr/ac_sum_bdcake01.c
rename to src/furniture/ac_sum_bdcake01.c
diff --git a/src/ftr/ac_sum_billiads.c b/src/furniture/ac_sum_billiads.c
similarity index 100%
rename from src/ftr/ac_sum_billiads.c
rename to src/furniture/ac_sum_billiads.c
diff --git a/src/ftr/ac_sum_biwa01.c b/src/furniture/ac_sum_biwa01.c
similarity index 100%
rename from src/ftr/ac_sum_biwa01.c
rename to src/furniture/ac_sum_biwa01.c
diff --git a/src/ftr/ac_sum_bla_bed01.c b/src/furniture/ac_sum_bla_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_bla_bed01.c
rename to src/furniture/ac_sum_bla_bed01.c
diff --git a/src/ftr/ac_sum_bla_chair02.c b/src/furniture/ac_sum_bla_chair02.c
similarity index 100%
rename from src/ftr/ac_sum_bla_chair02.c
rename to src/furniture/ac_sum_bla_chair02.c
diff --git a/src/ftr/ac_sum_bla_chest01.c b/src/furniture/ac_sum_bla_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_bla_chest01.c
rename to src/furniture/ac_sum_bla_chest01.c
diff --git a/src/ftr/ac_sum_bla_chest02.c b/src/furniture/ac_sum_bla_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_bla_chest02.c
rename to src/furniture/ac_sum_bla_chest02.c
diff --git a/src/ftr/ac_sum_bla_chest03.c b/src/furniture/ac_sum_bla_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_bla_chest03.c
rename to src/furniture/ac_sum_bla_chest03.c
diff --git a/src/ftr/ac_sum_bla_desk01.c b/src/furniture/ac_sum_bla_desk01.c
similarity index 100%
rename from src/ftr/ac_sum_bla_desk01.c
rename to src/furniture/ac_sum_bla_desk01.c
diff --git a/src/ftr/ac_sum_bla_lanp.c b/src/furniture/ac_sum_bla_lanp.c
similarity index 100%
rename from src/ftr/ac_sum_bla_lanp.c
rename to src/furniture/ac_sum_bla_lanp.c
diff --git a/src/ftr/ac_sum_bla_sofa02.c b/src/furniture/ac_sum_bla_sofa02.c
similarity index 100%
rename from src/ftr/ac_sum_bla_sofa02.c
rename to src/furniture/ac_sum_bla_sofa02.c
diff --git a/src/ftr/ac_sum_bla_table01.c b/src/furniture/ac_sum_bla_table01.c
similarity index 100%
rename from src/ftr/ac_sum_bla_table01.c
rename to src/furniture/ac_sum_bla_table01.c
diff --git a/src/ftr/ac_sum_bla_table02.c b/src/furniture/ac_sum_bla_table02.c
similarity index 100%
rename from src/ftr/ac_sum_bla_table02.c
rename to src/furniture/ac_sum_bla_table02.c
diff --git a/src/ftr/ac_sum_blue_bed01.c b/src/furniture/ac_sum_blue_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_bed01.c
rename to src/furniture/ac_sum_blue_bed01.c
diff --git a/src/ftr/ac_sum_blue_bench01.c b/src/furniture/ac_sum_blue_bench01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_bench01.c
rename to src/furniture/ac_sum_blue_bench01.c
diff --git a/src/ftr/ac_sum_blue_bureau01.c b/src/furniture/ac_sum_blue_bureau01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_bureau01.c
rename to src/furniture/ac_sum_blue_bureau01.c
diff --git a/src/ftr/ac_sum_blue_cab01.c b/src/furniture/ac_sum_blue_cab01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_cab01.c
rename to src/furniture/ac_sum_blue_cab01.c
diff --git a/src/ftr/ac_sum_blue_chair01.c b/src/furniture/ac_sum_blue_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_chair01.c
rename to src/furniture/ac_sum_blue_chair01.c
diff --git a/src/ftr/ac_sum_blue_chest01.c b/src/furniture/ac_sum_blue_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_chest01.c
rename to src/furniture/ac_sum_blue_chest01.c
diff --git a/src/ftr/ac_sum_blue_chest02.c b/src/furniture/ac_sum_blue_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_blue_chest02.c
rename to src/furniture/ac_sum_blue_chest02.c
diff --git a/src/ftr/ac_sum_blue_clk.c b/src/furniture/ac_sum_blue_clk.c
similarity index 100%
rename from src/ftr/ac_sum_blue_clk.c
rename to src/furniture/ac_sum_blue_clk.c
diff --git a/src/ftr/ac_sum_blue_lowchest01.c b/src/furniture/ac_sum_blue_lowchest01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_lowchest01.c
rename to src/furniture/ac_sum_blue_lowchest01.c
diff --git a/src/ftr/ac_sum_blue_table01.c b/src/furniture/ac_sum_blue_table01.c
similarity index 100%
rename from src/ftr/ac_sum_blue_table01.c
rename to src/furniture/ac_sum_blue_table01.c
diff --git a/src/ftr/ac_sum_bon_boke.c b/src/furniture/ac_sum_bon_boke.c
similarity index 100%
rename from src/ftr/ac_sum_bon_boke.c
rename to src/furniture/ac_sum_bon_boke.c
diff --git a/src/ftr/ac_sum_bon_matu01.c b/src/furniture/ac_sum_bon_matu01.c
similarity index 100%
rename from src/ftr/ac_sum_bon_matu01.c
rename to src/furniture/ac_sum_bon_matu01.c
diff --git a/src/ftr/ac_sum_bon_matu02.c b/src/furniture/ac_sum_bon_matu02.c
similarity index 100%
rename from src/ftr/ac_sum_bon_matu02.c
rename to src/furniture/ac_sum_bon_matu02.c
diff --git a/src/ftr/ac_sum_bon_matu03.c b/src/furniture/ac_sum_bon_matu03.c
similarity index 100%
rename from src/ftr/ac_sum_bon_matu03.c
rename to src/furniture/ac_sum_bon_matu03.c
diff --git a/src/ftr/ac_sum_bon_momiji.c b/src/furniture/ac_sum_bon_momiji.c
similarity index 100%
rename from src/ftr/ac_sum_bon_momiji.c
rename to src/furniture/ac_sum_bon_momiji.c
diff --git a/src/ftr/ac_sum_bon_pira.c b/src/furniture/ac_sum_bon_pira.c
similarity index 100%
rename from src/ftr/ac_sum_bon_pira.c
rename to src/furniture/ac_sum_bon_pira.c
diff --git a/src/ftr/ac_sum_bon_sanshu.c b/src/furniture/ac_sum_bon_sanshu.c
similarity index 100%
rename from src/ftr/ac_sum_bon_sanshu.c
rename to src/furniture/ac_sum_bon_sanshu.c
diff --git a/src/ftr/ac_sum_bon_satuki.c b/src/furniture/ac_sum_bon_satuki.c
similarity index 100%
rename from src/ftr/ac_sum_bon_satuki.c
rename to src/furniture/ac_sum_bon_satuki.c
diff --git a/src/ftr/ac_sum_bon_turu.c b/src/furniture/ac_sum_bon_turu.c
similarity index 100%
rename from src/ftr/ac_sum_bon_turu.c
rename to src/furniture/ac_sum_bon_turu.c
diff --git a/src/ftr/ac_sum_bon_ume.c b/src/furniture/ac_sum_bon_ume.c
similarity index 100%
rename from src/ftr/ac_sum_bon_ume.c
rename to src/furniture/ac_sum_bon_ume.c
diff --git a/src/ftr/ac_sum_bookcht01.c b/src/furniture/ac_sum_bookcht01.c
similarity index 100%
rename from src/ftr/ac_sum_bookcht01.c
rename to src/furniture/ac_sum_bookcht01.c
diff --git a/src/ftr/ac_sum_casse01.c b/src/furniture/ac_sum_casse01.c
similarity index 100%
rename from src/ftr/ac_sum_casse01.c
rename to src/furniture/ac_sum_casse01.c
diff --git a/src/ftr/ac_sum_cello01.c b/src/furniture/ac_sum_cello01.c
similarity index 100%
rename from src/ftr/ac_sum_cello01.c
rename to src/furniture/ac_sum_cello01.c
diff --git a/src/ftr/ac_sum_chair01.c b/src/furniture/ac_sum_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_chair01.c
rename to src/furniture/ac_sum_chair01.c
diff --git a/src/ftr/ac_sum_chikuon01.c b/src/furniture/ac_sum_chikuon01.c
similarity index 100%
rename from src/ftr/ac_sum_chikuon01.c
rename to src/furniture/ac_sum_chikuon01.c
diff --git a/src/ftr/ac_sum_chikuon02.c b/src/furniture/ac_sum_chikuon02.c
similarity index 100%
rename from src/ftr/ac_sum_chikuon02.c
rename to src/furniture/ac_sum_chikuon02.c
diff --git a/src/ftr/ac_sum_classiccabinet01.c b/src/furniture/ac_sum_classiccabinet01.c
similarity index 100%
rename from src/ftr/ac_sum_classiccabinet01.c
rename to src/furniture/ac_sum_classiccabinet01.c
diff --git a/src/ftr/ac_sum_classicchair01.c b/src/furniture/ac_sum_classicchair01.c
similarity index 100%
rename from src/ftr/ac_sum_classicchair01.c
rename to src/furniture/ac_sum_classicchair01.c
diff --git a/src/ftr/ac_sum_classicchest01.c b/src/furniture/ac_sum_classicchest01.c
similarity index 100%
rename from src/ftr/ac_sum_classicchest01.c
rename to src/furniture/ac_sum_classicchest01.c
diff --git a/src/ftr/ac_sum_classicchest02.c b/src/furniture/ac_sum_classicchest02.c
similarity index 100%
rename from src/ftr/ac_sum_classicchest02.c
rename to src/furniture/ac_sum_classicchest02.c
diff --git a/src/ftr/ac_sum_classictable01.c b/src/furniture/ac_sum_classictable01.c
similarity index 100%
rename from src/ftr/ac_sum_classictable01.c
rename to src/furniture/ac_sum_classictable01.c
diff --git a/src/ftr/ac_sum_classicwardrope01.c b/src/furniture/ac_sum_classicwardrope01.c
similarity index 100%
rename from src/ftr/ac_sum_classicwardrope01.c
rename to src/furniture/ac_sum_classicwardrope01.c
diff --git a/src/ftr/ac_sum_clbed02.c b/src/furniture/ac_sum_clbed02.c
similarity index 100%
rename from src/ftr/ac_sum_clbed02.c
rename to src/furniture/ac_sum_clbed02.c
diff --git a/src/ftr/ac_sum_clchair02.c b/src/furniture/ac_sum_clchair02.c
similarity index 100%
rename from src/ftr/ac_sum_clchair02.c
rename to src/furniture/ac_sum_clchair02.c
diff --git a/src/ftr/ac_sum_clchest03.c b/src/furniture/ac_sum_clchest03.c
similarity index 100%
rename from src/ftr/ac_sum_clchest03.c
rename to src/furniture/ac_sum_clchest03.c
diff --git a/src/ftr/ac_sum_col_chair01.c b/src/furniture/ac_sum_col_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_col_chair01.c
rename to src/furniture/ac_sum_col_chair01.c
diff --git a/src/ftr/ac_sum_col_chair02.c b/src/furniture/ac_sum_col_chair02.c
similarity index 100%
rename from src/ftr/ac_sum_col_chair02.c
rename to src/furniture/ac_sum_col_chair02.c
diff --git a/src/ftr/ac_sum_col_chair03.c b/src/furniture/ac_sum_col_chair03.c
similarity index 100%
rename from src/ftr/ac_sum_col_chair03.c
rename to src/furniture/ac_sum_col_chair03.c
diff --git a/src/ftr/ac_sum_comp01.c b/src/furniture/ac_sum_comp01.c
similarity index 100%
rename from src/ftr/ac_sum_comp01.c
rename to src/furniture/ac_sum_comp01.c
diff --git a/src/ftr/ac_sum_conga01.c b/src/furniture/ac_sum_conga01.c
similarity index 100%
rename from src/ftr/ac_sum_conga01.c
rename to src/furniture/ac_sum_conga01.c
diff --git a/src/ftr/ac_sum_conpo01.c b/src/furniture/ac_sum_conpo01.c
similarity index 100%
rename from src/ftr/ac_sum_conpo01.c
rename to src/furniture/ac_sum_conpo01.c
diff --git a/src/ftr/ac_sum_conpo02.c b/src/furniture/ac_sum_conpo02.c
similarity index 100%
rename from src/ftr/ac_sum_conpo02.c
rename to src/furniture/ac_sum_conpo02.c
diff --git a/src/ftr/ac_sum_cont_bed01.c b/src/furniture/ac_sum_cont_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_bed01.c
rename to src/furniture/ac_sum_cont_bed01.c
diff --git a/src/ftr/ac_sum_cont_cab01.c b/src/furniture/ac_sum_cont_cab01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_cab01.c
rename to src/furniture/ac_sum_cont_cab01.c
diff --git a/src/ftr/ac_sum_cont_chair01.c b/src/furniture/ac_sum_cont_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_chair01.c
rename to src/furniture/ac_sum_cont_chair01.c
diff --git a/src/ftr/ac_sum_cont_chest01.c b/src/furniture/ac_sum_cont_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_chest01.c
rename to src/furniture/ac_sum_cont_chest01.c
diff --git a/src/ftr/ac_sum_cont_chest02.c b/src/furniture/ac_sum_cont_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_cont_chest02.c
rename to src/furniture/ac_sum_cont_chest02.c
diff --git a/src/ftr/ac_sum_cont_chest03.c b/src/furniture/ac_sum_cont_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_cont_chest03.c
rename to src/furniture/ac_sum_cont_chest03.c
diff --git a/src/ftr/ac_sum_cont_sofa01.c b/src/furniture/ac_sum_cont_sofa01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_sofa01.c
rename to src/furniture/ac_sum_cont_sofa01.c
diff --git a/src/ftr/ac_sum_cont_sofa02.c b/src/furniture/ac_sum_cont_sofa02.c
similarity index 100%
rename from src/ftr/ac_sum_cont_sofa02.c
rename to src/furniture/ac_sum_cont_sofa02.c
diff --git a/src/ftr/ac_sum_cont_table01.c b/src/furniture/ac_sum_cont_table01.c
similarity index 100%
rename from src/ftr/ac_sum_cont_table01.c
rename to src/furniture/ac_sum_cont_table01.c
diff --git a/src/ftr/ac_sum_cont_table02.c b/src/furniture/ac_sum_cont_table02.c
similarity index 100%
rename from src/ftr/ac_sum_cont_table02.c
rename to src/furniture/ac_sum_cont_table02.c
diff --git a/src/ftr/ac_sum_cupboard01.c b/src/furniture/ac_sum_cupboard01.c
similarity index 100%
rename from src/ftr/ac_sum_cupboard01.c
rename to src/furniture/ac_sum_cupboard01.c
diff --git a/src/ftr/ac_sum_danna.c b/src/furniture/ac_sum_danna.c
similarity index 100%
rename from src/ftr/ac_sum_danna.c
rename to src/furniture/ac_sum_danna.c
diff --git a/src/ftr/ac_sum_demekin.c b/src/furniture/ac_sum_demekin.c
similarity index 100%
rename from src/ftr/ac_sum_demekin.c
rename to src/furniture/ac_sum_demekin.c
diff --git a/src/ftr/ac_sum_desk01.c b/src/furniture/ac_sum_desk01.c
similarity index 100%
rename from src/ftr/ac_sum_desk01.c
rename to src/furniture/ac_sum_desk01.c
diff --git a/src/ftr/ac_sum_dojyo.c b/src/furniture/ac_sum_dojyo.c
similarity index 100%
rename from src/ftr/ac_sum_dojyo.c
rename to src/furniture/ac_sum_dojyo.c
diff --git a/src/ftr/ac_sum_doll01.c b/src/furniture/ac_sum_doll01.c
similarity index 100%
rename from src/ftr/ac_sum_doll01.c
rename to src/furniture/ac_sum_doll01.c
diff --git a/src/ftr/ac_sum_doll02.c b/src/furniture/ac_sum_doll02.c
similarity index 100%
rename from src/ftr/ac_sum_doll02.c
rename to src/furniture/ac_sum_doll02.c
diff --git a/src/ftr/ac_sum_doll03.c b/src/furniture/ac_sum_doll03.c
similarity index 100%
rename from src/ftr/ac_sum_doll03.c
rename to src/furniture/ac_sum_doll03.c
diff --git a/src/ftr/ac_sum_doll04.c b/src/furniture/ac_sum_doll04.c
similarity index 100%
rename from src/ftr/ac_sum_doll04.c
rename to src/furniture/ac_sum_doll04.c
diff --git a/src/ftr/ac_sum_doll05.c b/src/furniture/ac_sum_doll05.c
similarity index 100%
rename from src/ftr/ac_sum_doll05.c
rename to src/furniture/ac_sum_doll05.c
diff --git a/src/ftr/ac_sum_doll06.c b/src/furniture/ac_sum_doll06.c
similarity index 100%
rename from src/ftr/ac_sum_doll06.c
rename to src/furniture/ac_sum_doll06.c
diff --git a/src/ftr/ac_sum_doll07.c b/src/furniture/ac_sum_doll07.c
similarity index 100%
rename from src/ftr/ac_sum_doll07.c
rename to src/furniture/ac_sum_doll07.c
diff --git a/src/ftr/ac_sum_doll08.c b/src/furniture/ac_sum_doll08.c
similarity index 100%
rename from src/ftr/ac_sum_doll08.c
rename to src/furniture/ac_sum_doll08.c
diff --git a/src/ftr/ac_sum_doll09.c b/src/furniture/ac_sum_doll09.c
similarity index 100%
rename from src/ftr/ac_sum_doll09.c
rename to src/furniture/ac_sum_doll09.c
diff --git a/src/ftr/ac_sum_doll10.c b/src/furniture/ac_sum_doll10.c
similarity index 100%
rename from src/ftr/ac_sum_doll10.c
rename to src/furniture/ac_sum_doll10.c
diff --git a/src/ftr/ac_sum_doll11.c b/src/furniture/ac_sum_doll11.c
similarity index 100%
rename from src/ftr/ac_sum_doll11.c
rename to src/furniture/ac_sum_doll11.c
diff --git a/src/ftr/ac_sum_donko.c b/src/furniture/ac_sum_donko.c
similarity index 100%
rename from src/ftr/ac_sum_donko.c
rename to src/furniture/ac_sum_donko.c
diff --git a/src/ftr/ac_sum_fruitbed01.c b/src/furniture/ac_sum_fruitbed01.c
similarity index 100%
rename from src/ftr/ac_sum_fruitbed01.c
rename to src/furniture/ac_sum_fruitbed01.c
diff --git a/src/ftr/ac_sum_fruitchair01.c b/src/furniture/ac_sum_fruitchair01.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchair01.c
rename to src/furniture/ac_sum_fruitchair01.c
diff --git a/src/ftr/ac_sum_fruitchair02.c b/src/furniture/ac_sum_fruitchair02.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchair02.c
rename to src/furniture/ac_sum_fruitchair02.c
diff --git a/src/ftr/ac_sum_fruitchair03.c b/src/furniture/ac_sum_fruitchair03.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchair03.c
rename to src/furniture/ac_sum_fruitchair03.c
diff --git a/src/ftr/ac_sum_fruitchair04.c b/src/furniture/ac_sum_fruitchair04.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchair04.c
rename to src/furniture/ac_sum_fruitchair04.c
diff --git a/src/ftr/ac_sum_fruitchest01.c b/src/furniture/ac_sum_fruitchest01.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchest01.c
rename to src/furniture/ac_sum_fruitchest01.c
diff --git a/src/ftr/ac_sum_fruitchest03.c b/src/furniture/ac_sum_fruitchest03.c
similarity index 100%
rename from src/ftr/ac_sum_fruitchest03.c
rename to src/furniture/ac_sum_fruitchest03.c
diff --git a/src/ftr/ac_sum_fruitclk.c b/src/furniture/ac_sum_fruitclk.c
similarity index 100%
rename from src/ftr/ac_sum_fruitclk.c
rename to src/furniture/ac_sum_fruitclk.c
diff --git a/src/ftr/ac_sum_fruittable01.c b/src/furniture/ac_sum_fruittable01.c
similarity index 100%
rename from src/ftr/ac_sum_fruittable01.c
rename to src/furniture/ac_sum_fruittable01.c
diff --git a/src/ftr/ac_sum_fruittable02.c b/src/furniture/ac_sum_fruittable02.c
similarity index 100%
rename from src/ftr/ac_sum_fruittable02.c
rename to src/furniture/ac_sum_fruittable02.c
diff --git a/src/ftr/ac_sum_fruittable03.c b/src/furniture/ac_sum_fruittable03.c
similarity index 100%
rename from src/ftr/ac_sum_fruittable03.c
rename to src/furniture/ac_sum_fruittable03.c
diff --git a/src/ftr/ac_sum_fruittv01.c b/src/furniture/ac_sum_fruittv01.c
similarity index 100%
rename from src/ftr/ac_sum_fruittv01.c
rename to src/furniture/ac_sum_fruittv01.c
diff --git a/src/ftr/ac_sum_funa.c b/src/furniture/ac_sum_funa.c
similarity index 100%
rename from src/ftr/ac_sum_funa.c
rename to src/furniture/ac_sum_funa.c
diff --git a/src/ftr/ac_sum_genji.c b/src/furniture/ac_sum_genji.c
similarity index 100%
rename from src/ftr/ac_sum_genji.c
rename to src/furniture/ac_sum_genji.c
diff --git a/src/ftr/ac_sum_gill.c b/src/furniture/ac_sum_gill.c
similarity index 100%
rename from src/ftr/ac_sum_gill.c
rename to src/furniture/ac_sum_gill.c
diff --git a/src/ftr/ac_sum_ginyanma.c b/src/furniture/ac_sum_ginyanma.c
similarity index 100%
rename from src/ftr/ac_sum_ginyanma.c
rename to src/furniture/ac_sum_ginyanma.c
diff --git a/src/ftr/ac_sum_globe01.c b/src/furniture/ac_sum_globe01.c
similarity index 100%
rename from src/ftr/ac_sum_globe01.c
rename to src/furniture/ac_sum_globe01.c
diff --git a/src/ftr/ac_sum_golfbag01.c b/src/furniture/ac_sum_golfbag01.c
similarity index 100%
rename from src/ftr/ac_sum_golfbag01.c
rename to src/furniture/ac_sum_golfbag01.c
diff --git a/src/ftr/ac_sum_golfbag02.c b/src/furniture/ac_sum_golfbag02.c
similarity index 100%
rename from src/ftr/ac_sum_golfbag02.c
rename to src/furniture/ac_sum_golfbag02.c
diff --git a/src/ftr/ac_sum_golfbag03.c b/src/furniture/ac_sum_golfbag03.c
similarity index 100%
rename from src/ftr/ac_sum_golfbag03.c
rename to src/furniture/ac_sum_golfbag03.c
diff --git a/src/ftr/ac_sum_gomadara.c b/src/furniture/ac_sum_gomadara.c
similarity index 100%
rename from src/ftr/ac_sum_gomadara.c
rename to src/furniture/ac_sum_gomadara.c
diff --git a/src/ftr/ac_sum_gre_bed01.c b/src/furniture/ac_sum_gre_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_bed01.c
rename to src/furniture/ac_sum_gre_bed01.c
diff --git a/src/ftr/ac_sum_gre_chair01.c b/src/furniture/ac_sum_gre_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_chair01.c
rename to src/furniture/ac_sum_gre_chair01.c
diff --git a/src/ftr/ac_sum_gre_chair02.c b/src/furniture/ac_sum_gre_chair02.c
similarity index 100%
rename from src/ftr/ac_sum_gre_chair02.c
rename to src/furniture/ac_sum_gre_chair02.c
diff --git a/src/ftr/ac_sum_gre_chest01.c b/src/furniture/ac_sum_gre_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_chest01.c
rename to src/furniture/ac_sum_gre_chest01.c
diff --git a/src/ftr/ac_sum_gre_chest02.c b/src/furniture/ac_sum_gre_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_gre_chest02.c
rename to src/furniture/ac_sum_gre_chest02.c
diff --git a/src/ftr/ac_sum_gre_chest03.c b/src/furniture/ac_sum_gre_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_gre_chest03.c
rename to src/furniture/ac_sum_gre_chest03.c
diff --git a/src/ftr/ac_sum_gre_counter01.c b/src/furniture/ac_sum_gre_counter01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_counter01.c
rename to src/furniture/ac_sum_gre_counter01.c
diff --git a/src/ftr/ac_sum_gre_desk01.c b/src/furniture/ac_sum_gre_desk01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_desk01.c
rename to src/furniture/ac_sum_gre_desk01.c
diff --git a/src/ftr/ac_sum_gre_lanp01.c b/src/furniture/ac_sum_gre_lanp01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_lanp01.c
rename to src/furniture/ac_sum_gre_lanp01.c
diff --git a/src/ftr/ac_sum_gre_table01.c b/src/furniture/ac_sum_gre_table01.c
similarity index 100%
rename from src/ftr/ac_sum_gre_table01.c
rename to src/furniture/ac_sum_gre_table01.c
diff --git a/src/ftr/ac_sum_guitar01.c b/src/furniture/ac_sum_guitar01.c
similarity index 100%
rename from src/ftr/ac_sum_guitar01.c
rename to src/furniture/ac_sum_guitar01.c
diff --git a/src/ftr/ac_sum_guitar02.c b/src/furniture/ac_sum_guitar02.c
similarity index 100%
rename from src/ftr/ac_sum_guitar02.c
rename to src/furniture/ac_sum_guitar02.c
diff --git a/src/ftr/ac_sum_guitar03.c b/src/furniture/ac_sum_guitar03.c
similarity index 100%
rename from src/ftr/ac_sum_guitar03.c
rename to src/furniture/ac_sum_guitar03.c
diff --git a/src/ftr/ac_sum_gupi.c b/src/furniture/ac_sum_gupi.c
similarity index 100%
rename from src/ftr/ac_sum_gupi.c
rename to src/furniture/ac_sum_gupi.c
diff --git a/src/ftr/ac_sum_hachi.c b/src/furniture/ac_sum_hachi.c
similarity index 100%
rename from src/ftr/ac_sum_hachi.c
rename to src/furniture/ac_sum_hachi.c
diff --git a/src/ftr/ac_sum_hal_bed01.c b/src/furniture/ac_sum_hal_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_bed01.c
rename to src/furniture/ac_sum_hal_bed01.c
diff --git a/src/ftr/ac_sum_hal_box01.c b/src/furniture/ac_sum_hal_box01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_box01.c
rename to src/furniture/ac_sum_hal_box01.c
diff --git a/src/ftr/ac_sum_hal_chair01.c b/src/furniture/ac_sum_hal_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_chair01.c
rename to src/furniture/ac_sum_hal_chair01.c
diff --git a/src/ftr/ac_sum_hal_chest01.c b/src/furniture/ac_sum_hal_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_chest01.c
rename to src/furniture/ac_sum_hal_chest01.c
diff --git a/src/ftr/ac_sum_hal_chest02.c b/src/furniture/ac_sum_hal_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_hal_chest02.c
rename to src/furniture/ac_sum_hal_chest02.c
diff --git a/src/ftr/ac_sum_hal_chest03.c b/src/furniture/ac_sum_hal_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_hal_chest03.c
rename to src/furniture/ac_sum_hal_chest03.c
diff --git a/src/ftr/ac_sum_hal_clk01.c b/src/furniture/ac_sum_hal_clk01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_clk01.c
rename to src/furniture/ac_sum_hal_clk01.c
diff --git a/src/ftr/ac_sum_hal_lanp01.c b/src/furniture/ac_sum_hal_lanp01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_lanp01.c
rename to src/furniture/ac_sum_hal_lanp01.c
diff --git a/src/ftr/ac_sum_hal_mirror01.c b/src/furniture/ac_sum_hal_mirror01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_mirror01.c
rename to src/furniture/ac_sum_hal_mirror01.c
diff --git a/src/ftr/ac_sum_hal_pkin.c b/src/furniture/ac_sum_hal_pkin.c
similarity index 100%
rename from src/ftr/ac_sum_hal_pkin.c
rename to src/furniture/ac_sum_hal_pkin.c
diff --git a/src/ftr/ac_sum_hal_sofa01.c b/src/furniture/ac_sum_hal_sofa01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_sofa01.c
rename to src/furniture/ac_sum_hal_sofa01.c
diff --git a/src/ftr/ac_sum_hal_table01.c b/src/furniture/ac_sum_hal_table01.c
similarity index 100%
rename from src/ftr/ac_sum_hal_table01.c
rename to src/furniture/ac_sum_hal_table01.c
diff --git a/src/ftr/ac_sum_harp.c b/src/furniture/ac_sum_harp.c
similarity index 100%
rename from src/ftr/ac_sum_harp.c
rename to src/furniture/ac_sum_harp.c
diff --git a/src/ftr/ac_sum_hera.c b/src/furniture/ac_sum_hera.c
similarity index 100%
rename from src/ftr/ac_sum_hera.c
rename to src/furniture/ac_sum_hera.c
diff --git a/src/ftr/ac_sum_higurashi.c b/src/furniture/ac_sum_higurashi.c
similarity index 100%
rename from src/ftr/ac_sum_higurashi.c
rename to src/furniture/ac_sum_higurashi.c
diff --git a/src/ftr/ac_sum_hirata.c b/src/furniture/ac_sum_hirata.c
similarity index 100%
rename from src/ftr/ac_sum_hirata.c
rename to src/furniture/ac_sum_hirata.c
diff --git a/src/ftr/ac_sum_ito.c b/src/furniture/ac_sum_ito.c
similarity index 100%
rename from src/ftr/ac_sum_ito.c
rename to src/furniture/ac_sum_ito.c
diff --git a/src/ftr/ac_sum_iwana.c b/src/furniture/ac_sum_iwana.c
similarity index 100%
rename from src/ftr/ac_sum_iwana.c
rename to src/furniture/ac_sum_iwana.c
diff --git a/src/ftr/ac_sum_jukebox.c b/src/furniture/ac_sum_jukebox.c
similarity index 100%
rename from src/ftr/ac_sum_jukebox.c
rename to src/furniture/ac_sum_jukebox.c
diff --git a/src/ftr/ac_sum_kabuto.c b/src/furniture/ac_sum_kabuto.c
similarity index 100%
rename from src/ftr/ac_sum_kabuto.c
rename to src/furniture/ac_sum_kabuto.c
diff --git a/src/ftr/ac_sum_kamakiri.c b/src/furniture/ac_sum_kamakiri.c
similarity index 100%
rename from src/ftr/ac_sum_kamakiri.c
rename to src/furniture/ac_sum_kamakiri.c
diff --git a/src/ftr/ac_sum_kanabun.c b/src/furniture/ac_sum_kanabun.c
similarity index 100%
rename from src/ftr/ac_sum_kanabun.c
rename to src/furniture/ac_sum_kanabun.c
diff --git a/src/ftr/ac_sum_kaseki.c b/src/furniture/ac_sum_kaseki.c
similarity index 100%
rename from src/ftr/ac_sum_kaseki.c
rename to src/furniture/ac_sum_kaseki.c
diff --git a/src/ftr/ac_sum_kiageha.c b/src/furniture/ac_sum_kiageha.c
similarity index 100%
rename from src/ftr/ac_sum_kiageha.c
rename to src/furniture/ac_sum_kiageha.c
diff --git a/src/ftr/ac_sum_kingyo.c b/src/furniture/ac_sum_kingyo.c
similarity index 100%
rename from src/ftr/ac_sum_kingyo.c
rename to src/furniture/ac_sum_kingyo.c
diff --git a/src/ftr/ac_sum_kirigirisu.c b/src/furniture/ac_sum_kirigirisu.c
similarity index 100%
rename from src/ftr/ac_sum_kirigirisu.c
rename to src/furniture/ac_sum_kirigirisu.c
diff --git a/src/ftr/ac_sum_kisha.c b/src/furniture/ac_sum_kisha.c
similarity index 100%
rename from src/ftr/ac_sum_kisha.c
rename to src/furniture/ac_sum_kisha.c
diff --git a/src/ftr/ac_sum_kitchair01.c b/src/furniture/ac_sum_kitchair01.c
similarity index 100%
rename from src/ftr/ac_sum_kitchair01.c
rename to src/furniture/ac_sum_kitchair01.c
diff --git a/src/ftr/ac_sum_kittable01.c b/src/furniture/ac_sum_kittable01.c
similarity index 100%
rename from src/ftr/ac_sum_kittable01.c
rename to src/furniture/ac_sum_kittable01.c
diff --git a/src/ftr/ac_sum_koi.c b/src/furniture/ac_sum_koi.c
similarity index 100%
rename from src/ftr/ac_sum_koi.c
rename to src/furniture/ac_sum_koi.c
diff --git a/src/ftr/ac_sum_kokuban.c b/src/furniture/ac_sum_kokuban.c
similarity index 100%
rename from src/ftr/ac_sum_kokuban.c
rename to src/furniture/ac_sum_kokuban.c
diff --git a/src/ftr/ac_sum_koorogi.c b/src/furniture/ac_sum_koorogi.c
similarity index 100%
rename from src/ftr/ac_sum_koorogi.c
rename to src/furniture/ac_sum_koorogi.c
diff --git a/src/ftr/ac_sum_liccabed.c b/src/furniture/ac_sum_liccabed.c
similarity index 100%
rename from src/ftr/ac_sum_liccabed.c
rename to src/furniture/ac_sum_liccabed.c
diff --git a/src/ftr/ac_sum_liccachair.c b/src/furniture/ac_sum_liccachair.c
similarity index 100%
rename from src/ftr/ac_sum_liccachair.c
rename to src/furniture/ac_sum_liccachair.c
diff --git a/src/ftr/ac_sum_liccachest.c b/src/furniture/ac_sum_liccachest.c
similarity index 100%
rename from src/ftr/ac_sum_liccachest.c
rename to src/furniture/ac_sum_liccachest.c
diff --git a/src/ftr/ac_sum_liccakitchen.c b/src/furniture/ac_sum_liccakitchen.c
similarity index 100%
rename from src/ftr/ac_sum_liccakitchen.c
rename to src/furniture/ac_sum_liccakitchen.c
diff --git a/src/ftr/ac_sum_liccalanp.c b/src/furniture/ac_sum_liccalanp.c
similarity index 100%
rename from src/ftr/ac_sum_liccalanp.c
rename to src/furniture/ac_sum_liccalanp.c
diff --git a/src/ftr/ac_sum_liccalowchest.c b/src/furniture/ac_sum_liccalowchest.c
similarity index 100%
rename from src/ftr/ac_sum_liccalowchest.c
rename to src/furniture/ac_sum_liccalowchest.c
diff --git a/src/ftr/ac_sum_liccalowtable.c b/src/furniture/ac_sum_liccalowtable.c
similarity index 100%
rename from src/ftr/ac_sum_liccalowtable.c
rename to src/furniture/ac_sum_liccalowtable.c
diff --git a/src/ftr/ac_sum_liccamirror.c b/src/furniture/ac_sum_liccamirror.c
similarity index 100%
rename from src/ftr/ac_sum_liccamirror.c
rename to src/furniture/ac_sum_liccamirror.c
diff --git a/src/ftr/ac_sum_liccapiano.c b/src/furniture/ac_sum_liccapiano.c
similarity index 100%
rename from src/ftr/ac_sum_liccapiano.c
rename to src/furniture/ac_sum_liccapiano.c
diff --git a/src/ftr/ac_sum_liccasofa.c b/src/furniture/ac_sum_liccasofa.c
similarity index 100%
rename from src/ftr/ac_sum_liccasofa.c
rename to src/furniture/ac_sum_liccasofa.c
diff --git a/src/ftr/ac_sum_liccatable.c b/src/furniture/ac_sum_liccatable.c
similarity index 100%
rename from src/ftr/ac_sum_liccatable.c
rename to src/furniture/ac_sum_liccatable.c
diff --git a/src/ftr/ac_sum_log_bed01.c b/src/furniture/ac_sum_log_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_log_bed01.c
rename to src/furniture/ac_sum_log_bed01.c
diff --git a/src/ftr/ac_sum_log_chair01.c b/src/furniture/ac_sum_log_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_log_chair01.c
rename to src/furniture/ac_sum_log_chair01.c
diff --git a/src/ftr/ac_sum_log_chair02.c b/src/furniture/ac_sum_log_chair02.c
similarity index 100%
rename from src/ftr/ac_sum_log_chair02.c
rename to src/furniture/ac_sum_log_chair02.c
diff --git a/src/ftr/ac_sum_log_chair03.c b/src/furniture/ac_sum_log_chair03.c
similarity index 100%
rename from src/ftr/ac_sum_log_chair03.c
rename to src/furniture/ac_sum_log_chair03.c
diff --git a/src/ftr/ac_sum_log_chest01.c b/src/furniture/ac_sum_log_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_log_chest01.c
rename to src/furniture/ac_sum_log_chest01.c
diff --git a/src/ftr/ac_sum_log_chest02.c b/src/furniture/ac_sum_log_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_log_chest02.c
rename to src/furniture/ac_sum_log_chest02.c
diff --git a/src/ftr/ac_sum_log_chest03.c b/src/furniture/ac_sum_log_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_log_chest03.c
rename to src/furniture/ac_sum_log_chest03.c
diff --git a/src/ftr/ac_sum_log_hatoclk.c b/src/furniture/ac_sum_log_hatoclk.c
similarity index 100%
rename from src/ftr/ac_sum_log_hatoclk.c
rename to src/furniture/ac_sum_log_hatoclk.c
diff --git a/src/ftr/ac_sum_log_table01.c b/src/furniture/ac_sum_log_table01.c
similarity index 100%
rename from src/ftr/ac_sum_log_table01.c
rename to src/furniture/ac_sum_log_table01.c
diff --git a/src/ftr/ac_sum_log_table02.c b/src/furniture/ac_sum_log_table02.c
similarity index 100%
rename from src/ftr/ac_sum_log_table02.c
rename to src/furniture/ac_sum_log_table02.c
diff --git a/src/ftr/ac_sum_lv_stereo.c b/src/furniture/ac_sum_lv_stereo.c
similarity index 100%
rename from src/ftr/ac_sum_lv_stereo.c
rename to src/furniture/ac_sum_lv_stereo.c
diff --git a/src/ftr/ac_sum_matumushi.c b/src/furniture/ac_sum_matumushi.c
similarity index 100%
rename from src/ftr/ac_sum_matumushi.c
rename to src/furniture/ac_sum_matumushi.c
diff --git a/src/ftr/ac_sum_md01.c b/src/furniture/ac_sum_md01.c
similarity index 100%
rename from src/ftr/ac_sum_md01.c
rename to src/furniture/ac_sum_md01.c
diff --git a/src/ftr/ac_sum_mezaclock.c b/src/furniture/ac_sum_mezaclock.c
similarity index 100%
rename from src/ftr/ac_sum_mezaclock.c
rename to src/furniture/ac_sum_mezaclock.c
diff --git a/src/ftr/ac_sum_minmin.c b/src/furniture/ac_sum_minmin.c
similarity index 100%
rename from src/ftr/ac_sum_minmin.c
rename to src/furniture/ac_sum_minmin.c
diff --git a/src/ftr/ac_sum_misin01.c b/src/furniture/ac_sum_misin01.c
similarity index 100%
rename from src/ftr/ac_sum_misin01.c
rename to src/furniture/ac_sum_misin01.c
diff --git a/src/ftr/ac_sum_miyama.c b/src/furniture/ac_sum_miyama.c
similarity index 100%
rename from src/ftr/ac_sum_miyama.c
rename to src/furniture/ac_sum_miyama.c
diff --git a/src/ftr/ac_sum_mizunomi.c b/src/furniture/ac_sum_mizunomi.c
similarity index 100%
rename from src/ftr/ac_sum_mizunomi.c
rename to src/furniture/ac_sum_mizunomi.c
diff --git a/src/ftr/ac_sum_monki.c b/src/furniture/ac_sum_monki.c
similarity index 100%
rename from src/ftr/ac_sum_monki.c
rename to src/furniture/ac_sum_monki.c
diff --git a/src/ftr/ac_sum_monshiro.c b/src/furniture/ac_sum_monshiro.c
similarity index 100%
rename from src/ftr/ac_sum_monshiro.c
rename to src/furniture/ac_sum_monshiro.c
diff --git a/src/ftr/ac_sum_namazu.c b/src/furniture/ac_sum_namazu.c
similarity index 100%
rename from src/ftr/ac_sum_namazu.c
rename to src/furniture/ac_sum_namazu.c
diff --git a/src/ftr/ac_sum_nanahoshi.c b/src/furniture/ac_sum_nanahoshi.c
similarity index 100%
rename from src/ftr/ac_sum_nanahoshi.c
rename to src/furniture/ac_sum_nanahoshi.c
diff --git a/src/ftr/ac_sum_nigoi.c b/src/furniture/ac_sum_nigoi.c
similarity index 100%
rename from src/ftr/ac_sum_nigoi.c
rename to src/furniture/ac_sum_nigoi.c
diff --git a/src/ftr/ac_sum_niji.c b/src/furniture/ac_sum_niji.c
similarity index 100%
rename from src/ftr/ac_sum_niji.c
rename to src/furniture/ac_sum_niji.c
diff --git a/src/ftr/ac_sum_nisiki.c b/src/furniture/ac_sum_nisiki.c
similarity index 100%
rename from src/ftr/ac_sum_nisiki.c
rename to src/furniture/ac_sum_nisiki.c
diff --git a/src/ftr/ac_sum_nokogiri.c b/src/furniture/ac_sum_nokogiri.c
similarity index 100%
rename from src/ftr/ac_sum_nokogiri.c
rename to src/furniture/ac_sum_nokogiri.c
diff --git a/src/ftr/ac_sum_ohmurasaki.c b/src/furniture/ac_sum_ohmurasaki.c
similarity index 100%
rename from src/ftr/ac_sum_ohmurasaki.c
rename to src/furniture/ac_sum_ohmurasaki.c
diff --git a/src/ftr/ac_sum_oikawa.c b/src/furniture/ac_sum_oikawa.c
similarity index 100%
rename from src/ftr/ac_sum_oikawa.c
rename to src/furniture/ac_sum_oikawa.c
diff --git a/src/ftr/ac_sum_okiagari01.c b/src/furniture/ac_sum_okiagari01.c
similarity index 100%
rename from src/ftr/ac_sum_okiagari01.c
rename to src/furniture/ac_sum_okiagari01.c
diff --git a/src/ftr/ac_sum_okuwa.c b/src/furniture/ac_sum_okuwa.c
similarity index 100%
rename from src/ftr/ac_sum_okuwa.c
rename to src/furniture/ac_sum_okuwa.c
diff --git a/src/ftr/ac_sum_oldclk01.c b/src/furniture/ac_sum_oldclk01.c
similarity index 100%
rename from src/ftr/ac_sum_oldclk01.c
rename to src/furniture/ac_sum_oldclk01.c
diff --git a/src/ftr/ac_sum_oldsofa01.c b/src/furniture/ac_sum_oldsofa01.c
similarity index 100%
rename from src/ftr/ac_sum_oldsofa01.c
rename to src/furniture/ac_sum_oldsofa01.c
diff --git a/src/ftr/ac_sum_oniyanma.c b/src/furniture/ac_sum_oniyanma.c
similarity index 100%
rename from src/ftr/ac_sum_oniyanma.c
rename to src/furniture/ac_sum_oniyanma.c
diff --git a/src/ftr/ac_sum_oonamazu.c b/src/furniture/ac_sum_oonamazu.c
similarity index 100%
rename from src/ftr/ac_sum_oonamazu.c
rename to src/furniture/ac_sum_oonamazu.c
diff --git a/src/ftr/ac_sum_pet01.c b/src/furniture/ac_sum_pet01.c
similarity index 100%
rename from src/ftr/ac_sum_pet01.c
rename to src/furniture/ac_sum_pet01.c
diff --git a/src/ftr/ac_sum_piano01.c b/src/furniture/ac_sum_piano01.c
similarity index 100%
rename from src/ftr/ac_sum_piano01.c
rename to src/furniture/ac_sum_piano01.c
diff --git a/src/ftr/ac_sum_pirania.c b/src/furniture/ac_sum_pirania.c
similarity index 100%
rename from src/ftr/ac_sum_pirania.c
rename to src/furniture/ac_sum_pirania.c
diff --git a/src/ftr/ac_sum_pl_aloe01.c b/src/furniture/ac_sum_pl_aloe01.c
similarity index 100%
rename from src/ftr/ac_sum_pl_aloe01.c
rename to src/furniture/ac_sum_pl_aloe01.c
diff --git a/src/ftr/ac_sum_pl_ananas.c b/src/furniture/ac_sum_pl_ananas.c
similarity index 100%
rename from src/ftr/ac_sum_pl_ananas.c
rename to src/furniture/ac_sum_pl_ananas.c
diff --git a/src/ftr/ac_sum_pl_benjyami.c b/src/furniture/ac_sum_pl_benjyami.c
similarity index 100%
rename from src/ftr/ac_sum_pl_benjyami.c
rename to src/furniture/ac_sum_pl_benjyami.c
diff --git a/src/ftr/ac_sum_pl_caladium01.c b/src/furniture/ac_sum_pl_caladium01.c
similarity index 100%
rename from src/ftr/ac_sum_pl_caladium01.c
rename to src/furniture/ac_sum_pl_caladium01.c
diff --git a/src/ftr/ac_sum_pl_cocos.c b/src/furniture/ac_sum_pl_cocos.c
similarity index 100%
rename from src/ftr/ac_sum_pl_cocos.c
rename to src/furniture/ac_sum_pl_cocos.c
diff --git a/src/ftr/ac_sum_pl_compacta.c b/src/furniture/ac_sum_pl_compacta.c
similarity index 100%
rename from src/ftr/ac_sum_pl_compacta.c
rename to src/furniture/ac_sum_pl_compacta.c
diff --git a/src/ftr/ac_sum_pl_draca02.c b/src/furniture/ac_sum_pl_draca02.c
similarity index 100%
rename from src/ftr/ac_sum_pl_draca02.c
rename to src/furniture/ac_sum_pl_draca02.c
diff --git a/src/ftr/ac_sum_pl_dracaena.c b/src/furniture/ac_sum_pl_dracaena.c
similarity index 100%
rename from src/ftr/ac_sum_pl_dracaena.c
rename to src/furniture/ac_sum_pl_dracaena.c
diff --git a/src/ftr/ac_sum_pl_gomunoki.c b/src/furniture/ac_sum_pl_gomunoki.c
similarity index 100%
rename from src/ftr/ac_sum_pl_gomunoki.c
rename to src/furniture/ac_sum_pl_gomunoki.c
diff --git a/src/ftr/ac_sum_pl_hirasabo.c b/src/furniture/ac_sum_pl_hirasabo.c
similarity index 100%
rename from src/ftr/ac_sum_pl_hirasabo.c
rename to src/furniture/ac_sum_pl_hirasabo.c
diff --git a/src/ftr/ac_sum_pl_kuroton.c b/src/furniture/ac_sum_pl_kuroton.c
similarity index 100%
rename from src/ftr/ac_sum_pl_kuroton.c
rename to src/furniture/ac_sum_pl_kuroton.c
diff --git a/src/ftr/ac_sum_pl_pakila.c b/src/furniture/ac_sum_pl_pakila.c
similarity index 100%
rename from src/ftr/ac_sum_pl_pakila.c
rename to src/furniture/ac_sum_pl_pakila.c
diff --git a/src/ftr/ac_sum_pl_pothos.c b/src/furniture/ac_sum_pl_pothos.c
similarity index 100%
rename from src/ftr/ac_sum_pl_pothos.c
rename to src/furniture/ac_sum_pl_pothos.c
diff --git a/src/ftr/ac_sum_pl_shuroci.c b/src/furniture/ac_sum_pl_shuroci.c
similarity index 100%
rename from src/ftr/ac_sum_pl_shuroci.c
rename to src/furniture/ac_sum_pl_shuroci.c
diff --git a/src/ftr/ac_sum_pl_yamayasi.c b/src/furniture/ac_sum_pl_yamayasi.c
similarity index 100%
rename from src/ftr/ac_sum_pl_yamayasi.c
rename to src/furniture/ac_sum_pl_yamayasi.c
diff --git a/src/ftr/ac_sum_popchair01.c b/src/furniture/ac_sum_popchair01.c
similarity index 100%
rename from src/ftr/ac_sum_popchair01.c
rename to src/furniture/ac_sum_popchair01.c
diff --git a/src/ftr/ac_sum_popchair02.c b/src/furniture/ac_sum_popchair02.c
similarity index 100%
rename from src/ftr/ac_sum_popchair02.c
rename to src/furniture/ac_sum_popchair02.c
diff --git a/src/ftr/ac_sum_popchair03.c b/src/furniture/ac_sum_popchair03.c
similarity index 100%
rename from src/ftr/ac_sum_popchair03.c
rename to src/furniture/ac_sum_popchair03.c
diff --git a/src/ftr/ac_sum_poptable01.c b/src/furniture/ac_sum_poptable01.c
similarity index 100%
rename from src/ftr/ac_sum_poptable01.c
rename to src/furniture/ac_sum_poptable01.c
diff --git a/src/ftr/ac_sum_poptable02.c b/src/furniture/ac_sum_poptable02.c
similarity index 100%
rename from src/ftr/ac_sum_poptable02.c
rename to src/furniture/ac_sum_poptable02.c
diff --git a/src/ftr/ac_sum_poptable03.c b/src/furniture/ac_sum_poptable03.c
similarity index 100%
rename from src/ftr/ac_sum_poptable03.c
rename to src/furniture/ac_sum_poptable03.c
diff --git a/src/ftr/ac_sum_radio01.c b/src/furniture/ac_sum_radio01.c
similarity index 100%
rename from src/ftr/ac_sum_radio01.c
rename to src/furniture/ac_sum_radio01.c
diff --git a/src/ftr/ac_sum_radio02.c b/src/furniture/ac_sum_radio02.c
similarity index 100%
rename from src/ftr/ac_sum_radio02.c
rename to src/furniture/ac_sum_radio02.c
diff --git a/src/ftr/ac_sum_raigyo.c b/src/furniture/ac_sum_raigyo.c
similarity index 100%
rename from src/ftr/ac_sum_raigyo.c
rename to src/furniture/ac_sum_raigyo.c
diff --git a/src/ftr/ac_sum_ratan_bed01.c b/src/furniture/ac_sum_ratan_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_bed01.c
rename to src/furniture/ac_sum_ratan_bed01.c
diff --git a/src/ftr/ac_sum_ratan_chest01.c b/src/furniture/ac_sum_ratan_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_chest01.c
rename to src/furniture/ac_sum_ratan_chest01.c
diff --git a/src/ftr/ac_sum_ratan_chest02.c b/src/furniture/ac_sum_ratan_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_chest02.c
rename to src/furniture/ac_sum_ratan_chest02.c
diff --git a/src/ftr/ac_sum_ratan_chest03.c b/src/furniture/ac_sum_ratan_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_chest03.c
rename to src/furniture/ac_sum_ratan_chest03.c
diff --git a/src/ftr/ac_sum_ratan_isu01.c b/src/furniture/ac_sum_ratan_isu01.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_isu01.c
rename to src/furniture/ac_sum_ratan_isu01.c
diff --git a/src/ftr/ac_sum_ratan_isu02.c b/src/furniture/ac_sum_ratan_isu02.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_isu02.c
rename to src/furniture/ac_sum_ratan_isu02.c
diff --git a/src/ftr/ac_sum_ratan_lanp.c b/src/furniture/ac_sum_ratan_lanp.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_lanp.c
rename to src/furniture/ac_sum_ratan_lanp.c
diff --git a/src/ftr/ac_sum_ratan_mirror.c b/src/furniture/ac_sum_ratan_mirror.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_mirror.c
rename to src/furniture/ac_sum_ratan_mirror.c
diff --git a/src/ftr/ac_sum_ratan_screen.c b/src/furniture/ac_sum_ratan_screen.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_screen.c
rename to src/furniture/ac_sum_ratan_screen.c
diff --git a/src/ftr/ac_sum_ratan_table01.c b/src/furniture/ac_sum_ratan_table01.c
similarity index 100%
rename from src/ftr/ac_sum_ratan_table01.c
rename to src/furniture/ac_sum_ratan_table01.c
diff --git a/src/ftr/ac_sum_reco01.c b/src/furniture/ac_sum_reco01.c
similarity index 100%
rename from src/ftr/ac_sum_reco01.c
rename to src/furniture/ac_sum_reco01.c
diff --git a/src/ftr/ac_sum_roboclk.c b/src/furniture/ac_sum_roboclk.c
similarity index 100%
rename from src/ftr/ac_sum_roboclk.c
rename to src/furniture/ac_sum_roboclk.c
diff --git a/src/ftr/ac_sum_roboconpo.c b/src/furniture/ac_sum_roboconpo.c
similarity index 100%
rename from src/ftr/ac_sum_roboconpo.c
rename to src/furniture/ac_sum_roboconpo.c
diff --git a/src/ftr/ac_sum_sabo01.c b/src/furniture/ac_sum_sabo01.c
similarity index 100%
rename from src/ftr/ac_sum_sabo01.c
rename to src/furniture/ac_sum_sabo01.c
diff --git a/src/ftr/ac_sum_sabo02.c b/src/furniture/ac_sum_sabo02.c
similarity index 100%
rename from src/ftr/ac_sum_sabo02.c
rename to src/furniture/ac_sum_sabo02.c
diff --git a/src/ftr/ac_sum_saiconpo.c b/src/furniture/ac_sum_saiconpo.c
similarity index 100%
rename from src/ftr/ac_sum_saiconpo.c
rename to src/furniture/ac_sum_saiconpo.c
diff --git a/src/ftr/ac_sum_sake.c b/src/furniture/ac_sum_sake.c
similarity index 100%
rename from src/ftr/ac_sum_sake.c
rename to src/furniture/ac_sum_sake.c
diff --git a/src/ftr/ac_sum_shiokara.c b/src/furniture/ac_sum_shiokara.c
similarity index 100%
rename from src/ftr/ac_sum_shiokara.c
rename to src/furniture/ac_sum_shiokara.c
diff --git a/src/ftr/ac_sum_shoukaki.c b/src/furniture/ac_sum_shoukaki.c
similarity index 100%
rename from src/ftr/ac_sum_shoukaki.c
rename to src/furniture/ac_sum_shoukaki.c
diff --git a/src/ftr/ac_sum_slot.c b/src/furniture/ac_sum_slot.c
similarity index 100%
rename from src/ftr/ac_sum_slot.c
rename to src/furniture/ac_sum_slot.c
diff --git a/src/ftr/ac_sum_sofe01.c b/src/furniture/ac_sum_sofe01.c
similarity index 100%
rename from src/ftr/ac_sum_sofe01.c
rename to src/furniture/ac_sum_sofe01.c
diff --git a/src/ftr/ac_sum_sofe02.c b/src/furniture/ac_sum_sofe02.c
similarity index 100%
rename from src/ftr/ac_sum_sofe02.c
rename to src/furniture/ac_sum_sofe02.c
diff --git a/src/ftr/ac_sum_sofe03.c b/src/furniture/ac_sum_sofe03.c
similarity index 100%
rename from src/ftr/ac_sum_sofe03.c
rename to src/furniture/ac_sum_sofe03.c
diff --git a/src/ftr/ac_sum_stereo01.c b/src/furniture/ac_sum_stereo01.c
similarity index 100%
rename from src/ftr/ac_sum_stereo01.c
rename to src/furniture/ac_sum_stereo01.c
diff --git a/src/ftr/ac_sum_stereo02.c b/src/furniture/ac_sum_stereo02.c
similarity index 100%
rename from src/ftr/ac_sum_stereo02.c
rename to src/furniture/ac_sum_stereo02.c
diff --git a/src/ftr/ac_sum_stove01.c b/src/furniture/ac_sum_stove01.c
similarity index 100%
rename from src/ftr/ac_sum_stove01.c
rename to src/furniture/ac_sum_stove01.c
diff --git a/src/ftr/ac_sum_suberi01.c b/src/furniture/ac_sum_suberi01.c
similarity index 100%
rename from src/ftr/ac_sum_suberi01.c
rename to src/furniture/ac_sum_suberi01.c
diff --git a/src/ftr/ac_sum_suzumushi.c b/src/furniture/ac_sum_suzumushi.c
similarity index 100%
rename from src/ftr/ac_sum_suzumushi.c
rename to src/furniture/ac_sum_suzumushi.c
diff --git a/src/ftr/ac_sum_syouryou.c b/src/furniture/ac_sum_syouryou.c
similarity index 100%
rename from src/ftr/ac_sum_syouryou.c
rename to src/furniture/ac_sum_syouryou.c
diff --git a/src/ftr/ac_sum_taiko01.c b/src/furniture/ac_sum_taiko01.c
similarity index 100%
rename from src/ftr/ac_sum_taiko01.c
rename to src/furniture/ac_sum_taiko01.c
diff --git a/src/ftr/ac_sum_takkyu.c b/src/furniture/ac_sum_takkyu.c
similarity index 100%
rename from src/ftr/ac_sum_takkyu.c
rename to src/furniture/ac_sum_takkyu.c
diff --git a/src/ftr/ac_sum_tamamushi.c b/src/furniture/ac_sum_tamamushi.c
similarity index 100%
rename from src/ftr/ac_sum_tamamushi.c
rename to src/furniture/ac_sum_tamamushi.c
diff --git a/src/ftr/ac_sum_tanago.c b/src/furniture/ac_sum_tanago.c
similarity index 100%
rename from src/ftr/ac_sum_tanago.c
rename to src/furniture/ac_sum_tanago.c
diff --git a/src/ftr/ac_sum_taru01.c b/src/furniture/ac_sum_taru01.c
similarity index 100%
rename from src/ftr/ac_sum_taru01.c
rename to src/furniture/ac_sum_taru01.c
diff --git a/src/ftr/ac_sum_taru02.c b/src/furniture/ac_sum_taru02.c
similarity index 100%
rename from src/ftr/ac_sum_taru02.c
rename to src/furniture/ac_sum_taru02.c
diff --git a/src/ftr/ac_sum_tekin01.c b/src/furniture/ac_sum_tekin01.c
similarity index 100%
rename from src/ftr/ac_sum_tekin01.c
rename to src/furniture/ac_sum_tekin01.c
diff --git a/src/ftr/ac_sum_tentou.c b/src/furniture/ac_sum_tentou.c
similarity index 100%
rename from src/ftr/ac_sum_tentou.c
rename to src/furniture/ac_sum_tentou.c
diff --git a/src/ftr/ac_sum_timpani01.c b/src/furniture/ac_sum_timpani01.c
similarity index 100%
rename from src/ftr/ac_sum_timpani01.c
rename to src/furniture/ac_sum_timpani01.c
diff --git a/src/ftr/ac_sum_tonosama.c b/src/furniture/ac_sum_tonosama.c
similarity index 100%
rename from src/ftr/ac_sum_tonosama.c
rename to src/furniture/ac_sum_tonosama.c
diff --git a/src/ftr/ac_sum_totemp01.c b/src/furniture/ac_sum_totemp01.c
similarity index 100%
rename from src/ftr/ac_sum_totemp01.c
rename to src/furniture/ac_sum_totemp01.c
diff --git a/src/ftr/ac_sum_totemp02.c b/src/furniture/ac_sum_totemp02.c
similarity index 100%
rename from src/ftr/ac_sum_totemp02.c
rename to src/furniture/ac_sum_totemp02.c
diff --git a/src/ftr/ac_sum_totemp03.c b/src/furniture/ac_sum_totemp03.c
similarity index 100%
rename from src/ftr/ac_sum_totemp03.c
rename to src/furniture/ac_sum_totemp03.c
diff --git a/src/ftr/ac_sum_totemp04.c b/src/furniture/ac_sum_totemp04.c
similarity index 100%
rename from src/ftr/ac_sum_totemp04.c
rename to src/furniture/ac_sum_totemp04.c
diff --git a/src/ftr/ac_sum_touro01.c b/src/furniture/ac_sum_touro01.c
similarity index 100%
rename from src/ftr/ac_sum_touro01.c
rename to src/furniture/ac_sum_touro01.c
diff --git a/src/ftr/ac_sum_touro02.c b/src/furniture/ac_sum_touro02.c
similarity index 100%
rename from src/ftr/ac_sum_touro02.c
rename to src/furniture/ac_sum_touro02.c
diff --git a/src/ftr/ac_sum_touro03.c b/src/furniture/ac_sum_touro03.c
similarity index 100%
rename from src/ftr/ac_sum_touro03.c
rename to src/furniture/ac_sum_touro03.c
diff --git a/src/ftr/ac_sum_touro04.c b/src/furniture/ac_sum_touro04.c
similarity index 100%
rename from src/ftr/ac_sum_touro04.c
rename to src/furniture/ac_sum_touro04.c
diff --git a/src/ftr/ac_sum_tukutuku.c b/src/furniture/ac_sum_tukutuku.c
similarity index 100%
rename from src/ftr/ac_sum_tukutuku.c
rename to src/furniture/ac_sum_tukutuku.c
diff --git a/src/ftr/ac_sum_tv01.c b/src/furniture/ac_sum_tv01.c
similarity index 100%
rename from src/ftr/ac_sum_tv01.c
rename to src/furniture/ac_sum_tv01.c
diff --git a/src/ftr/ac_sum_tv02.c b/src/furniture/ac_sum_tv02.c
similarity index 100%
rename from src/ftr/ac_sum_tv02.c
rename to src/furniture/ac_sum_tv02.c
diff --git a/src/ftr/ac_sum_ugui.c b/src/furniture/ac_sum_ugui.c
similarity index 100%
rename from src/ftr/ac_sum_ugui.c
rename to src/furniture/ac_sum_ugui.c
diff --git a/src/ftr/ac_sum_unagi.c b/src/furniture/ac_sum_unagi.c
similarity index 100%
rename from src/ftr/ac_sum_unagi.c
rename to src/furniture/ac_sum_unagi.c
diff --git a/src/ftr/ac_sum_uwa_cup01.c b/src/furniture/ac_sum_uwa_cup01.c
similarity index 100%
rename from src/ftr/ac_sum_uwa_cup01.c
rename to src/furniture/ac_sum_uwa_cup01.c
diff --git a/src/ftr/ac_sum_uwa_poto01.c b/src/furniture/ac_sum_uwa_poto01.c
similarity index 100%
rename from src/ftr/ac_sum_uwa_poto01.c
rename to src/furniture/ac_sum_uwa_poto01.c
diff --git a/src/ftr/ac_sum_uwa_vase01.c b/src/furniture/ac_sum_uwa_vase01.c
similarity index 100%
rename from src/ftr/ac_sum_uwa_vase01.c
rename to src/furniture/ac_sum_uwa_vase01.c
diff --git a/src/ftr/ac_sum_uwa_vase02.c b/src/furniture/ac_sum_uwa_vase02.c
similarity index 100%
rename from src/ftr/ac_sum_uwa_vase02.c
rename to src/furniture/ac_sum_uwa_vase02.c
diff --git a/src/ftr/ac_sum_uwa_vase03.c b/src/furniture/ac_sum_uwa_vase03.c
similarity index 100%
rename from src/ftr/ac_sum_uwa_vase03.c
rename to src/furniture/ac_sum_uwa_vase03.c
diff --git a/src/ftr/ac_sum_viola01.c b/src/furniture/ac_sum_viola01.c
similarity index 100%
rename from src/ftr/ac_sum_viola01.c
rename to src/furniture/ac_sum_viola01.c
diff --git a/src/ftr/ac_sum_wakasagi.c b/src/furniture/ac_sum_wakasagi.c
similarity index 100%
rename from src/ftr/ac_sum_wakasagi.c
rename to src/furniture/ac_sum_wakasagi.c
diff --git a/src/ftr/ac_sum_wc01.c b/src/furniture/ac_sum_wc01.c
similarity index 100%
rename from src/ftr/ac_sum_wc01.c
rename to src/furniture/ac_sum_wc01.c
diff --git a/src/ftr/ac_sum_wc02.c b/src/furniture/ac_sum_wc02.c
similarity index 100%
rename from src/ftr/ac_sum_wc02.c
rename to src/furniture/ac_sum_wc02.c
diff --git a/src/ftr/ac_sum_whi_bed01.c b/src/furniture/ac_sum_whi_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_whi_bed01.c
rename to src/furniture/ac_sum_whi_bed01.c
diff --git a/src/ftr/ac_sum_whi_chest01.c b/src/furniture/ac_sum_whi_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_whi_chest01.c
rename to src/furniture/ac_sum_whi_chest01.c
diff --git a/src/ftr/ac_sum_whi_chest02.c b/src/furniture/ac_sum_whi_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_whi_chest02.c
rename to src/furniture/ac_sum_whi_chest02.c
diff --git a/src/ftr/ac_sum_whi_lanp.c b/src/furniture/ac_sum_whi_lanp.c
similarity index 100%
rename from src/ftr/ac_sum_whi_lanp.c
rename to src/furniture/ac_sum_whi_lanp.c
diff --git a/src/ftr/ac_sum_whi_mirror.c b/src/furniture/ac_sum_whi_mirror.c
similarity index 100%
rename from src/ftr/ac_sum_whi_mirror.c
rename to src/furniture/ac_sum_whi_mirror.c
diff --git a/src/ftr/ac_sum_whi_sofa01.c b/src/furniture/ac_sum_whi_sofa01.c
similarity index 100%
rename from src/ftr/ac_sum_whi_sofa01.c
rename to src/furniture/ac_sum_whi_sofa01.c
diff --git a/src/ftr/ac_sum_x_bed01.c b/src/furniture/ac_sum_x_bed01.c
similarity index 100%
rename from src/ftr/ac_sum_x_bed01.c
rename to src/furniture/ac_sum_x_bed01.c
diff --git a/src/ftr/ac_sum_x_chair01.c b/src/furniture/ac_sum_x_chair01.c
similarity index 100%
rename from src/ftr/ac_sum_x_chair01.c
rename to src/furniture/ac_sum_x_chair01.c
diff --git a/src/ftr/ac_sum_x_chest01.c b/src/furniture/ac_sum_x_chest01.c
similarity index 100%
rename from src/ftr/ac_sum_x_chest01.c
rename to src/furniture/ac_sum_x_chest01.c
diff --git a/src/ftr/ac_sum_x_chest02.c b/src/furniture/ac_sum_x_chest02.c
similarity index 100%
rename from src/ftr/ac_sum_x_chest02.c
rename to src/furniture/ac_sum_x_chest02.c
diff --git a/src/ftr/ac_sum_x_chest03.c b/src/furniture/ac_sum_x_chest03.c
similarity index 100%
rename from src/ftr/ac_sum_x_chest03.c
rename to src/furniture/ac_sum_x_chest03.c
diff --git a/src/ftr/ac_sum_x_clk.c b/src/furniture/ac_sum_x_clk.c
similarity index 100%
rename from src/ftr/ac_sum_x_clk.c
rename to src/furniture/ac_sum_x_clk.c
diff --git a/src/ftr/ac_sum_x_lanp.c b/src/furniture/ac_sum_x_lanp.c
similarity index 100%
rename from src/ftr/ac_sum_x_lanp.c
rename to src/furniture/ac_sum_x_lanp.c
diff --git a/src/ftr/ac_sum_x_piano.c b/src/furniture/ac_sum_x_piano.c
similarity index 100%
rename from src/ftr/ac_sum_x_piano.c
rename to src/furniture/ac_sum_x_piano.c
diff --git a/src/ftr/ac_sum_x_sofa01.c b/src/furniture/ac_sum_x_sofa01.c
similarity index 100%
rename from src/ftr/ac_sum_x_sofa01.c
rename to src/furniture/ac_sum_x_sofa01.c
diff --git a/src/ftr/ac_sum_x_table01.c b/src/furniture/ac_sum_x_table01.c
similarity index 100%
rename from src/ftr/ac_sum_x_table01.c
rename to src/furniture/ac_sum_x_table01.c
diff --git a/src/ftr/ac_sum_yamame.c b/src/furniture/ac_sum_yamame.c
similarity index 100%
rename from src/ftr/ac_sum_yamame.c
rename to src/furniture/ac_sum_yamame.c
diff --git a/src/ftr/ac_tak_apollo1.c b/src/furniture/ac_tak_apollo1.c
similarity index 100%
rename from src/ftr/ac_tak_apollo1.c
rename to src/furniture/ac_tak_apollo1.c
diff --git a/src/ftr/ac_tak_arwing.c b/src/furniture/ac_tak_arwing.c
similarity index 100%
rename from src/ftr/ac_tak_arwing.c
rename to src/furniture/ac_tak_arwing.c
diff --git a/src/ftr/ac_tak_asteroid1.c b/src/furniture/ac_tak_asteroid1.c
similarity index 100%
rename from src/ftr/ac_tak_asteroid1.c
rename to src/furniture/ac_tak_asteroid1.c
diff --git a/src/ftr/ac_tak_astro.c b/src/furniture/ac_tak_astro.c
similarity index 100%
rename from src/ftr/ac_tak_astro.c
rename to src/furniture/ac_tak_astro.c
diff --git a/src/ftr/ac_tak_barber.c b/src/furniture/ac_tak_barber.c
similarity index 100%
rename from src/ftr/ac_tak_barber.c
rename to src/furniture/ac_tak_barber.c
diff --git a/src/ftr/ac_tak_cone01.c b/src/furniture/ac_tak_cone01.c
similarity index 100%
rename from src/ftr/ac_tak_cone01.c
rename to src/furniture/ac_tak_cone01.c
diff --git a/src/ftr/ac_tak_cone03.c b/src/furniture/ac_tak_cone03.c
similarity index 100%
rename from src/ftr/ac_tak_cone03.c
rename to src/furniture/ac_tak_cone03.c
diff --git a/src/ftr/ac_tak_cube.c b/src/furniture/ac_tak_cube.c
similarity index 100%
rename from src/ftr/ac_tak_cube.c
rename to src/furniture/ac_tak_cube.c
diff --git a/src/ftr/ac_tak_drum02.c b/src/furniture/ac_tak_drum02.c
similarity index 100%
rename from src/ftr/ac_tak_drum02.c
rename to src/furniture/ac_tak_drum02.c
diff --git a/src/ftr/ac_tak_eisei.c b/src/furniture/ac_tak_eisei.c
similarity index 100%
rename from src/ftr/ac_tak_eisei.c
rename to src/furniture/ac_tak_eisei.c
diff --git a/src/ftr/ac_tak_ham1.c b/src/furniture/ac_tak_ham1.c
similarity index 100%
rename from src/ftr/ac_tak_ham1.c
rename to src/furniture/ac_tak_ham1.c
diff --git a/src/ftr/ac_tak_hole01.c b/src/furniture/ac_tak_hole01.c
similarity index 100%
rename from src/ftr/ac_tak_hole01.c
rename to src/furniture/ac_tak_hole01.c
diff --git a/src/ftr/ac_tak_ice.c b/src/furniture/ac_tak_ice.c
similarity index 100%
rename from src/ftr/ac_tak_ice.c
rename to src/furniture/ac_tak_ice.c
diff --git a/src/ftr/ac_tak_isu03.c b/src/furniture/ac_tak_isu03.c
similarity index 100%
rename from src/ftr/ac_tak_isu03.c
rename to src/furniture/ac_tak_isu03.c
diff --git a/src/ftr/ac_tak_lion.c b/src/furniture/ac_tak_lion.c
similarity index 100%
rename from src/ftr/ac_tak_lion.c
rename to src/furniture/ac_tak_lion.c
diff --git a/src/ftr/ac_tak_megami.c b/src/furniture/ac_tak_megami.c
similarity index 100%
rename from src/ftr/ac_tak_megami.c
rename to src/furniture/ac_tak_megami.c
diff --git a/src/ftr/ac_tak_metro.c b/src/furniture/ac_tak_metro.c
similarity index 100%
rename from src/ftr/ac_tak_metro.c
rename to src/furniture/ac_tak_metro.c
diff --git a/src/ftr/ac_tak_money.c b/src/furniture/ac_tak_money.c
similarity index 100%
rename from src/ftr/ac_tak_money.c
rename to src/furniture/ac_tak_money.c
diff --git a/src/ftr/ac_tak_moon.c b/src/furniture/ac_tak_moon.c
similarity index 100%
rename from src/ftr/ac_tak_moon.c
rename to src/furniture/ac_tak_moon.c
diff --git a/src/ftr/ac_tak_mooncar.c b/src/furniture/ac_tak_mooncar.c
similarity index 100%
rename from src/ftr/ac_tak_mooncar.c
rename to src/furniture/ac_tak_mooncar.c
diff --git a/src/ftr/ac_tak_moti.c b/src/furniture/ac_tak_moti.c
similarity index 100%
rename from src/ftr/ac_tak_moti.c
rename to src/furniture/ac_tak_moti.c
diff --git a/src/ftr/ac_tak_neko.c b/src/furniture/ac_tak_neko.c
similarity index 100%
rename from src/ftr/ac_tak_neko.c
rename to src/furniture/ac_tak_neko.c
diff --git a/src/ftr/ac_tak_nes01.c b/src/furniture/ac_tak_nes01.c
similarity index 100%
rename from src/ftr/ac_tak_nes01.c
rename to src/furniture/ac_tak_nes01.c
diff --git a/src/ftr/ac_tak_nikki01.c b/src/furniture/ac_tak_nikki01.c
similarity index 100%
rename from src/ftr/ac_tak_nikki01.c
rename to src/furniture/ac_tak_nikki01.c
diff --git a/src/ftr/ac_tak_noise.c b/src/furniture/ac_tak_noise.c
similarity index 100%
rename from src/ftr/ac_tak_noise.c
rename to src/furniture/ac_tak_noise.c
diff --git a/src/ftr/ac_tak_rocket1.c b/src/furniture/ac_tak_rocket1.c
similarity index 100%
rename from src/ftr/ac_tak_rocket1.c
rename to src/furniture/ac_tak_rocket1.c
diff --git a/src/ftr/ac_tak_shuttle.c b/src/furniture/ac_tak_shuttle.c
similarity index 100%
rename from src/ftr/ac_tak_shuttle.c
rename to src/furniture/ac_tak_shuttle.c
diff --git a/src/ftr/ac_tak_snowisu.c b/src/furniture/ac_tak_snowisu.c
similarity index 100%
rename from src/ftr/ac_tak_snowisu.c
rename to src/furniture/ac_tak_snowisu.c
diff --git a/src/ftr/ac_tak_snowlamp.c b/src/furniture/ac_tak_snowlamp.c
similarity index 100%
rename from src/ftr/ac_tak_snowlamp.c
rename to src/furniture/ac_tak_snowlamp.c
diff --git a/src/ftr/ac_tak_sori01.c b/src/furniture/ac_tak_sori01.c
similarity index 100%
rename from src/ftr/ac_tak_sori01.c
rename to src/furniture/ac_tak_sori01.c
diff --git a/src/ftr/ac_tak_station.c b/src/furniture/ac_tak_station.c
similarity index 100%
rename from src/ftr/ac_tak_station.c
rename to src/furniture/ac_tak_station.c
diff --git a/src/ftr/ac_tak_stew.c b/src/furniture/ac_tak_stew.c
similarity index 100%
rename from src/ftr/ac_tak_stew.c
rename to src/furniture/ac_tak_stew.c
diff --git a/src/ftr/ac_tak_syogi.c b/src/furniture/ac_tak_syogi.c
similarity index 100%
rename from src/ftr/ac_tak_syogi.c
rename to src/furniture/ac_tak_syogi.c
diff --git a/src/ftr/ac_tak_table02.c b/src/furniture/ac_tak_table02.c
similarity index 100%
rename from src/ftr/ac_tak_table02.c
rename to src/furniture/ac_tak_table02.c
diff --git a/src/ftr/ac_tak_tailor.c b/src/furniture/ac_tak_tailor.c
similarity index 100%
rename from src/ftr/ac_tak_tailor.c
rename to src/furniture/ac_tak_tailor.c
diff --git a/src/ftr/ac_tak_tekkin.c b/src/furniture/ac_tak_tekkin.c
similarity index 100%
rename from src/ftr/ac_tak_tekkin.c
rename to src/furniture/ac_tak_tekkin.c
diff --git a/src/ftr/ac_tak_tent.c b/src/furniture/ac_tak_tent.c
similarity index 100%
rename from src/ftr/ac_tak_tent.c
rename to src/furniture/ac_tak_tent.c
diff --git a/src/ftr/ac_tak_tent_box.c b/src/furniture/ac_tak_tent_box.c
similarity index 100%
rename from src/ftr/ac_tak_tent_box.c
rename to src/furniture/ac_tak_tent_box.c
diff --git a/src/ftr/ac_tak_tent_lamp.c b/src/furniture/ac_tak_tent_lamp.c
similarity index 100%
rename from src/ftr/ac_tak_tent_lamp.c
rename to src/furniture/ac_tak_tent_lamp.c
diff --git a/src/ftr/ac_tak_tetra.c b/src/furniture/ac_tak_tetra.c
similarity index 100%
rename from src/ftr/ac_tak_tetra.c
rename to src/furniture/ac_tak_tetra.c
diff --git a/src/ftr/ac_tak_toudai.c b/src/furniture/ac_tak_toudai.c
similarity index 100%
rename from src/ftr/ac_tak_toudai.c
rename to src/furniture/ac_tak_toudai.c
diff --git a/src/ftr/ac_tak_ufo.c b/src/furniture/ac_tak_ufo.c
similarity index 100%
rename from src/ftr/ac_tak_ufo.c
rename to src/furniture/ac_tak_ufo.c
diff --git a/src/ftr/ac_tak_yaji.c b/src/furniture/ac_tak_yaji.c
similarity index 100%
rename from src/ftr/ac_tak_yaji.c
rename to src/furniture/ac_tak_yaji.c
diff --git a/src/ftr/ac_tak_yoroi.c b/src/furniture/ac_tak_yoroi.c
similarity index 100%
rename from src/ftr/ac_tak_yoroi.c
rename to src/furniture/ac_tak_yoroi.c
diff --git a/src/ftr/ac_tool.c b/src/furniture/ac_tool.c
similarity index 100%
rename from src/ftr/ac_tool.c
rename to src/furniture/ac_tool.c
diff --git a/src/ftr/ac_utiwa.c b/src/furniture/ac_utiwa.c
similarity index 100%
rename from src/ftr/ac_utiwa.c
rename to src/furniture/ac_utiwa.c
diff --git a/src/ftr/ac_yaz_b_bath.c b/src/furniture/ac_yaz_b_bath.c
similarity index 100%
rename from src/ftr/ac_yaz_b_bath.c
rename to src/furniture/ac_yaz_b_bath.c
diff --git a/src/ftr/ac_yaz_b_house.c b/src/furniture/ac_yaz_b_house.c
similarity index 100%
rename from src/ftr/ac_yaz_b_house.c
rename to src/furniture/ac_yaz_b_house.c
diff --git a/src/ftr/ac_yaz_candle.c b/src/furniture/ac_yaz_candle.c
similarity index 100%
rename from src/ftr/ac_yaz_candle.c
rename to src/furniture/ac_yaz_candle.c
diff --git a/src/ftr/ac_yaz_fish_trophy.c b/src/furniture/ac_yaz_fish_trophy.c
similarity index 100%
rename from src/ftr/ac_yaz_fish_trophy.c
rename to src/furniture/ac_yaz_fish_trophy.c
diff --git a/src/ftr/ac_yaz_mario_flower.c b/src/furniture/ac_yaz_mario_flower.c
similarity index 100%
rename from src/ftr/ac_yaz_mario_flower.c
rename to src/furniture/ac_yaz_mario_flower.c
diff --git a/src/ftr/ac_yaz_rocket.c b/src/furniture/ac_yaz_rocket.c
similarity index 100%
rename from src/ftr/ac_yaz_rocket.c
rename to src/furniture/ac_yaz_rocket.c
diff --git a/src/ftr/ac_yaz_telescope.c b/src/furniture/ac_yaz_telescope.c
similarity index 100%
rename from src/ftr/ac_yaz_telescope.c
rename to src/furniture/ac_yaz_telescope.c
diff --git a/src/ftr/ac_yaz_tub.c b/src/furniture/ac_yaz_tub.c
similarity index 100%
rename from src/ftr/ac_yaz_tub.c
rename to src/furniture/ac_yaz_tub.c
diff --git a/src/ftr/ac_yaz_turkey_chair.c b/src/furniture/ac_yaz_turkey_chair.c
similarity index 100%
rename from src/ftr/ac_yaz_turkey_chair.c
rename to src/furniture/ac_yaz_turkey_chair.c
diff --git a/src/ftr/ac_yaz_turkey_chest.c b/src/furniture/ac_yaz_turkey_chest.c
similarity index 100%
rename from src/ftr/ac_yaz_turkey_chest.c
rename to src/furniture/ac_yaz_turkey_chest.c
diff --git a/src/ftr/ac_yaz_turkey_closet.c b/src/furniture/ac_yaz_turkey_closet.c
similarity index 100%
rename from src/ftr/ac_yaz_turkey_closet.c
rename to src/furniture/ac_yaz_turkey_closet.c
diff --git a/src/ftr/ac_yaz_wagon.c b/src/furniture/ac_yaz_wagon.c
similarity index 100%
rename from src/ftr/ac_yaz_wagon.c
rename to src/furniture/ac_yaz_wagon.c
diff --git a/src/ftr/ac_yos_b_feeder.c b/src/furniture/ac_yos_b_feeder.c
similarity index 100%
rename from src/ftr/ac_yos_b_feeder.c
rename to src/furniture/ac_yos_b_feeder.c
diff --git a/src/ftr/ac_yos_cactus.c b/src/furniture/ac_yos_cactus.c
similarity index 100%
rename from src/ftr/ac_yos_cactus.c
rename to src/furniture/ac_yos_cactus.c
diff --git a/src/ftr/ac_yos_flamingo.c b/src/furniture/ac_yos_flamingo.c
similarity index 100%
rename from src/ftr/ac_yos_flamingo.c
rename to src/furniture/ac_yos_flamingo.c
diff --git a/src/ftr/ac_yos_flamingo2.c b/src/furniture/ac_yos_flamingo2.c
similarity index 100%
rename from src/ftr/ac_yos_flamingo2.c
rename to src/furniture/ac_yos_flamingo2.c
diff --git a/src/ftr/ac_yos_gnome.c b/src/furniture/ac_yos_gnome.c
similarity index 100%
rename from src/ftr/ac_yos_gnome.c
rename to src/furniture/ac_yos_gnome.c
diff --git a/src/ftr/ac_yos_kflag.c b/src/furniture/ac_yos_kflag.c
similarity index 100%
rename from src/ftr/ac_yos_kflag.c
rename to src/furniture/ac_yos_kflag.c
diff --git a/src/ftr/ac_yos_luigi.c b/src/furniture/ac_yos_luigi.c
similarity index 100%
rename from src/ftr/ac_yos_luigi.c
rename to src/furniture/ac_yos_luigi.c
diff --git a/src/ftr/ac_yos_mailbox.c b/src/furniture/ac_yos_mailbox.c
similarity index 100%
rename from src/ftr/ac_yos_mailbox.c
rename to src/furniture/ac_yos_mailbox.c
diff --git a/src/ftr/ac_yos_mario.c b/src/furniture/ac_yos_mario.c
similarity index 100%
rename from src/ftr/ac_yos_mario.c
rename to src/furniture/ac_yos_mario.c
diff --git a/src/ftr/ac_yos_pbstove.c b/src/furniture/ac_yos_pbstove.c
similarity index 100%
rename from src/ftr/ac_yos_pbstove.c
rename to src/furniture/ac_yos_pbstove.c
diff --git a/src/ftr/ac_yos_terrace.c b/src/furniture/ac_yos_terrace.c
similarity index 100%
rename from src/ftr/ac_yos_terrace.c
rename to src/furniture/ac_yos_terrace.c
diff --git a/src/ftr/ac_yos_turkey_mirror.c b/src/furniture/ac_yos_turkey_mirror.c
similarity index 100%
rename from src/ftr/ac_yos_turkey_mirror.c
rename to src/furniture/ac_yos_turkey_mirror.c
diff --git a/src/ftr/ac_yos_turkey_watch.c b/src/furniture/ac_yos_turkey_watch.c
similarity index 100%
rename from src/ftr/ac_yos_turkey_watch.c
rename to src/furniture/ac_yos_turkey_watch.c
diff --git a/src/ftr/ac_yos_wheel.c b/src/furniture/ac_yos_wheel.c
similarity index 100%
rename from src/ftr/ac_yos_wheel.c
rename to src/furniture/ac_yos_wheel.c
diff --git a/src/m_actor.c b/src/game/m_actor.c
similarity index 99%
rename from src/m_actor.c
rename to src/game/m_actor.c
index 7841654d..0ea2c35d 100644
--- a/src/m_actor.c
+++ b/src/game/m_actor.c
@@ -19,15 +19,6 @@
#include "m_malloc.h"
#include "m_common_data.h"
-#ifdef MUST_MATCH
-#include "ppcdis.h"
-
-void _savefpr_29();
-void _restfpr_29();
-// #include "orderstrings/8064d600_8064d604.inc"
-static char lbl_8064d600[] = "";
-#endif
-
#ifdef MUST_MATCH
/* @unused | necessary for proper float ordering*/
extern void __declspec(section "forcestrip") projection_pos_set(GAME_PLAY* play, xyz_t* pos, xyz_t* proj_pos,
diff --git a/src/m_actor_dlftbls.c b/src/game/m_actor_dlftbls.c
similarity index 100%
rename from src/m_actor_dlftbls.c
rename to src/game/m_actor_dlftbls.c
diff --git a/src/m_actor_shadow.c b/src/game/m_actor_shadow.c
similarity index 100%
rename from src/m_actor_shadow.c
rename to src/game/m_actor_shadow.c
diff --git a/src/m_all_grow.c b/src/game/m_all_grow.c
similarity index 100%
rename from src/m_all_grow.c
rename to src/game/m_all_grow.c
diff --git a/src/m_all_grow_ovl.c b/src/game/m_all_grow_ovl.c
similarity index 100%
rename from src/m_all_grow_ovl.c
rename to src/game/m_all_grow_ovl.c
diff --git a/src/m_bank_ovl.c b/src/game/m_bank_ovl.c
similarity index 100%
rename from src/m_bank_ovl.c
rename to src/game/m_bank_ovl.c
diff --git a/src/m_banti.c b/src/game/m_banti.c
similarity index 100%
rename from src/m_banti.c
rename to src/game/m_banti.c
diff --git a/src/m_bg_item.c b/src/game/m_bg_item.c
similarity index 100%
rename from src/m_bg_item.c
rename to src/game/m_bg_item.c
diff --git a/src/m_bg_tex.c b/src/game/m_bg_tex.c
similarity index 100%
rename from src/m_bg_tex.c
rename to src/game/m_bg_tex.c
diff --git a/src/m_bgm.c b/src/game/m_bgm.c
similarity index 100%
rename from src/m_bgm.c
rename to src/game/m_bgm.c
diff --git a/src/m_birthday_ovl.c b/src/game/m_birthday_ovl.c
similarity index 100%
rename from src/m_birthday_ovl.c
rename to src/game/m_birthday_ovl.c
diff --git a/src/m_board_ovl.c b/src/game/m_board_ovl.c
similarity index 99%
rename from src/m_board_ovl.c
rename to src/game/m_board_ovl.c
index 2aaf9832..411d4f3c 100644
--- a/src/m_board_ovl.c
+++ b/src/game/m_board_ovl.c
@@ -841,7 +841,7 @@ static void mBD_end_board(Submenu* submenu, mSM_MenuInfo_c* menu_info) {
(*submenu->overlay->return_func_proc)(submenu, address_menu);
}
-static void mBD_move_play(Submenu* submenu, mSM_MenuInfo_c* menu_info) {
+static void mBD_move_Play(Submenu* submenu, mSM_MenuInfo_c* menu_info) {
mSM_MenuInfo_c* editor_menu = &submenu->overlay->menu_info[mSM_OVL_EDITOR];
if (editor_menu->next_proc_status == mSM_OVL_PROC_END) {
@@ -947,7 +947,7 @@ static void mBD_move_End(Submenu* submenu, mSM_MenuInfo_c* menu_info) {
typedef void (*mBD_OVL_MOVE_PROC)(Submenu*, mSM_MenuInfo_c*);
static void mBD_board_ovl_move(Submenu* submenu) {
- static mBD_OVL_MOVE_PROC ovl_move_proc[mSM_OVL_PROC_NUM] = { &mBD_move_Move, &mBD_move_play, &mBD_move_Wait,
+ static mBD_OVL_MOVE_PROC ovl_move_proc[mSM_OVL_PROC_NUM] = { &mBD_move_Move, &mBD_move_Play, &mBD_move_Wait,
&mBD_move_Obey, &mBD_move_End };
mSM_MenuInfo_c* menu_info = &submenu->overlay->menu_info[mSM_OVL_BOARD];
diff --git a/src/m_calendar.c b/src/game/m_calendar.c
similarity index 100%
rename from src/m_calendar.c
rename to src/game/m_calendar.c
diff --git a/src/m_camera2.c b/src/game/m_camera2.c
similarity index 100%
rename from src/m_camera2.c
rename to src/game/m_camera2.c
diff --git a/src/m_card.c b/src/game/m_card.c
similarity index 98%
rename from src/m_card.c
rename to src/game/m_card.c
index c22b49b6..ea5de84c 100644
--- a/src/m_card.c
+++ b/src/game/m_card.c
@@ -150,7 +150,7 @@ static int mCD_check_sector_size(s32 req_sector_size, s32 chan) {
return res;
}
-static int mCD_get_file_num_common(s32 chan) {
+static int mCD_get_file_num_com(s32 chan) {
CARDFileInfo fileInfo;
s32 num = 0;
s32 file_no;
@@ -176,7 +176,7 @@ static int mCD_get_file_num(void* workArea, s32 chan) {
if (result == CARD_RESULT_READY || result == CARD_RESULT_BROKEN) {
result = CARDCheck(chan);
- num = mCD_get_file_num_common(chan);
+ num = mCD_get_file_num_com(chan);
CARDUnmount(chan);
} else if (result == CARD_RESULT_ENCODING) {
CARDUnmount(chan);
diff --git a/src/m_catalog_ovl.c b/src/game/m_catalog_ovl.c
similarity index 99%
rename from src/m_catalog_ovl.c
rename to src/game/m_catalog_ovl.c
index a679f0a2..f735c709 100644
--- a/src/m_catalog_ovl.c
+++ b/src/game/m_catalog_ovl.c
@@ -47,9 +47,9 @@ typedef struct {
Gfx* sel_gfx1;
} mCL_win_data_c;
-#include "../src/ac_furniture_profile_data.c_inc" /* furniture quality */
-#include "../src/m_catalog_ovl_paper_data.c_inc"
-#include "../src/m_catalog_ovl_data.c_inc"
+#include "../src/actor/ac_furniture_profile_data.c_inc" /* furniture quality */
+#include "../src/game/m_catalog_ovl_paper_data.c_inc"
+#include "../src/game/m_catalog_ovl_data.c_inc"
#define mCL_ITEM_INFO(list) \
{ (list), ARRAY_COUNT(list) }
diff --git a/src/m_catalog_ovl_data.c_inc b/src/game/m_catalog_ovl_data.c_inc
similarity index 100%
rename from src/m_catalog_ovl_data.c_inc
rename to src/game/m_catalog_ovl_data.c_inc
diff --git a/src/m_catalog_ovl_paper_data.c_inc b/src/game/m_catalog_ovl_paper_data.c_inc
similarity index 100%
rename from src/m_catalog_ovl_paper_data.c_inc
rename to src/game/m_catalog_ovl_paper_data.c_inc
diff --git a/src/m_choice.c b/src/game/m_choice.c
similarity index 82%
rename from src/m_choice.c
rename to src/game/m_choice.c
index ab0123b0..9d5f8e52 100644
--- a/src/m_choice.c
+++ b/src/game/m_choice.c
@@ -15,21 +15,6 @@ static void mChoice_MainSetup(mChoice_c* choice, GAME* game);
static u32 Choice_table_rom_start = 0;
static u32 Choice_rom_start = 0;
-#ifdef MUST_MATCH
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-static u8 unused_con_waku_swaku3_tex[] = {
- #ifndef __INTELLISENSE__
- #include "assets/con_waku_swaku3_tex.inc"
- #endif
-};
-
-static Vtx unused_con_sentaku2_v[] = {
- #ifndef __INTELLISENSE__
- #include "assets/con_sentaku2_v.inc"
- #endif
-};
-#endif
-
static void mChoice_MainSetup_Hide(mChoice_c*, GAME*);
static void mChoice_MainSetup_Appear(mChoice_c*, GAME*);
static void mChoice_MainSetup_Normal(mChoice_c*, GAME*);
@@ -112,10 +97,10 @@ extern void mChoice_ct(mChoice_c* choice, GAME* game) {
extern void mChoice_dt(mChoice_c* choice, GAME* game) { }
-#include "../src/m_choice_main.c_inc"
-#include "../src/m_choice_sound.c_inc"
-#include "../src/m_choice_main_hide.c_inc"
-#include "../src/m_choice_main_appear.c_inc"
-#include "../src/m_choice_main_normal.c_inc"
-#include "../src/m_choice_main_disappear.c_inc"
-#include "../src/m_choice_draw.c_inc"
+#include "../src/game/m_choice_main.c_inc"
+#include "../src/game/m_choice_sound.c_inc"
+#include "../src/game/m_choice_main_hide.c_inc"
+#include "../src/game/m_choice_main_appear.c_inc"
+#include "../src/game/m_choice_main_normal.c_inc"
+#include "../src/game/m_choice_main_disappear.c_inc"
+#include "../src/game/m_choice_draw.c_inc"
diff --git a/src/m_choice_draw.c_inc b/src/game/m_choice_draw.c_inc
similarity index 100%
rename from src/m_choice_draw.c_inc
rename to src/game/m_choice_draw.c_inc
diff --git a/src/m_choice_main.c_inc b/src/game/m_choice_main.c_inc
similarity index 100%
rename from src/m_choice_main.c_inc
rename to src/game/m_choice_main.c_inc
diff --git a/src/m_choice_main_appear.c_inc b/src/game/m_choice_main_appear.c_inc
similarity index 100%
rename from src/m_choice_main_appear.c_inc
rename to src/game/m_choice_main_appear.c_inc
diff --git a/src/m_choice_main_disappear.c_inc b/src/game/m_choice_main_disappear.c_inc
similarity index 100%
rename from src/m_choice_main_disappear.c_inc
rename to src/game/m_choice_main_disappear.c_inc
diff --git a/src/m_choice_main_hide.c_inc b/src/game/m_choice_main_hide.c_inc
similarity index 100%
rename from src/m_choice_main_hide.c_inc
rename to src/game/m_choice_main_hide.c_inc
diff --git a/src/m_choice_main_normal.c_inc b/src/game/m_choice_main_normal.c_inc
similarity index 100%
rename from src/m_choice_main_normal.c_inc
rename to src/game/m_choice_main_normal.c_inc
diff --git a/src/m_choice_sound.c_inc b/src/game/m_choice_sound.c_inc
similarity index 100%
rename from src/m_choice_sound.c_inc
rename to src/game/m_choice_sound.c_inc
diff --git a/src/m_clip.c b/src/game/m_clip.c
similarity index 100%
rename from src/m_clip.c
rename to src/game/m_clip.c
diff --git a/src/m_cockroach.c b/src/game/m_cockroach.c
similarity index 100%
rename from src/m_cockroach.c
rename to src/game/m_cockroach.c
diff --git a/src/m_collision_bg.c b/src/game/m_collision_bg.c
similarity index 100%
rename from src/m_collision_bg.c
rename to src/game/m_collision_bg.c
diff --git a/src/m_collision_obj.c b/src/game/m_collision_obj.c
similarity index 100%
rename from src/m_collision_obj.c
rename to src/game/m_collision_obj.c
diff --git a/src/m_common_data.c b/src/game/m_common_data.c
similarity index 95%
rename from src/m_common_data.c
rename to src/game/m_common_data.c
index ad6458d9..82d813ce 100644
--- a/src/m_common_data.c
+++ b/src/game/m_common_data.c
@@ -2,6 +2,8 @@
#include "libultra/libultra.h"
+common_data_t common_data;
+
extern void common_data_reinit(){
@@ -26,4 +28,4 @@ extern void common_data_init(){
extern void common_data_clear(){
clip_clear();
-}
\ No newline at end of file
+}
diff --git a/src/m_controller.c b/src/game/m_controller.c
similarity index 100%
rename from src/m_controller.c
rename to src/game/m_controller.c
diff --git a/src/m_cpak.c b/src/game/m_cpak.c
similarity index 100%
rename from src/m_cpak.c
rename to src/game/m_cpak.c
diff --git a/src/m_cpedit_ovl.c b/src/game/m_cpedit_ovl.c
similarity index 100%
rename from src/m_cpedit_ovl.c
rename to src/game/m_cpedit_ovl.c
diff --git a/src/m_cpwarning_ovl.c b/src/game/m_cpwarning_ovl.c
similarity index 100%
rename from src/m_cpwarning_ovl.c
rename to src/game/m_cpwarning_ovl.c
diff --git a/src/m_debug.c b/src/game/m_debug.c
similarity index 100%
rename from src/m_debug.c
rename to src/game/m_debug.c
diff --git a/src/m_debug_display.c b/src/game/m_debug_display.c
similarity index 100%
rename from src/m_debug_display.c
rename to src/game/m_debug_display.c
diff --git a/src/m_debug_hayakawa.c b/src/game/m_debug_hayakawa.c
similarity index 100%
rename from src/m_debug_hayakawa.c
rename to src/game/m_debug_hayakawa.c
diff --git a/src/m_debug_mode.c b/src/game/m_debug_mode.c
similarity index 100%
rename from src/m_debug_mode.c
rename to src/game/m_debug_mode.c
diff --git a/src/m_demo.c b/src/game/m_demo.c
similarity index 100%
rename from src/m_demo.c
rename to src/game/m_demo.c
diff --git a/src/m_eappli.c b/src/game/m_eappli.c
similarity index 100%
rename from src/m_eappli.c
rename to src/game/m_eappli.c
diff --git a/src/m_editEndChk_ovl.c b/src/game/m_editEndChk_ovl.c
similarity index 100%
rename from src/m_editEndChk_ovl.c
rename to src/game/m_editEndChk_ovl.c
diff --git a/src/m_editor_ovl.c b/src/game/m_editor_ovl.c
similarity index 99%
rename from src/m_editor_ovl.c
rename to src/game/m_editor_ovl.c
index d4022d36..aa5b82fb 100644
--- a/src/m_editor_ovl.c
+++ b/src/game/m_editor_ovl.c
@@ -2577,7 +2577,7 @@ static void mED_StringsDraw_keyboard(mED_Ovl_c* editor_ovl, GAME* game, f32 x, f
}
static void mED_StringsDraw_select(mED_Ovl_c* editor_ovl, GAME* game, f32 x, f32 y) {
- static rgba_t sp_color = { 255, 255, 255, 255 };
+ static rgba_t sp_col = { 255, 255, 255, 255 };
u8 code = mED_get_code(editor_ovl, editor_ovl->select_col, editor_ovl->select_row);
if (code != CHAR_SPACE_3) {
@@ -2590,7 +2590,7 @@ static void mED_StringsDraw_select(mED_Ovl_c* editor_ovl, GAME* game, f32 x, f32
switch (code) {
case CHAR_SPACE:
- mED_StringsDraw_spaceCode(game, &sp_color, text_x, text_y);
+ mED_StringsDraw_spaceCode(game, &sp_col, text_x, text_y);
break;
default:
mFont_SetLineStrings(game, &code, 1, text_x, text_y, 255, 255, 255, 255, FALSE, FALSE, 1.0f, 1.0f, mFont_MODE_POLY);
diff --git a/src/m_event.c b/src/game/m_event.c
similarity index 99%
rename from src/m_event.c
rename to src/game/m_event.c
index db5f96eb..14ee5710 100644
--- a/src/m_event.c
+++ b/src/game/m_event.c
@@ -299,7 +299,7 @@ extern void mEv_GetEventWeather(s16* weather, s16* intensity) {
static mEv_event_today_c event_today[mEv_TODAY_EVENT_NUM];
static int n_today_events = 0;
-#include "../src/m_event_schedule.c_inc"
+#include "../src/game/m_event_schedule.c_inc"
static int status_edge = 0;
diff --git a/src/m_event_schedule.c_inc b/src/game/m_event_schedule.c_inc
similarity index 100%
rename from src/m_event_schedule.c_inc
rename to src/game/m_event_schedule.c_inc
diff --git a/src/m_fbdemo.c b/src/game/m_fbdemo.c
similarity index 100%
rename from src/m_fbdemo.c
rename to src/game/m_fbdemo.c
diff --git a/src/m_fbdemo_fade.c b/src/game/m_fbdemo_fade.c
similarity index 100%
rename from src/m_fbdemo_fade.c
rename to src/game/m_fbdemo_fade.c
diff --git a/src/m_fbdemo_triforce.c b/src/game/m_fbdemo_triforce.c
similarity index 100%
rename from src/m_fbdemo_triforce.c
rename to src/game/m_fbdemo_triforce.c
diff --git a/src/m_fbdemo_wipe1.c b/src/game/m_fbdemo_wipe1.c
similarity index 100%
rename from src/m_fbdemo_wipe1.c
rename to src/game/m_fbdemo_wipe1.c
diff --git a/src/m_field_assessment.c b/src/game/m_field_assessment.c
similarity index 100%
rename from src/m_field_assessment.c
rename to src/game/m_field_assessment.c
diff --git a/src/m_field_info.c b/src/game/m_field_info.c
similarity index 100%
rename from src/m_field_info.c
rename to src/game/m_field_info.c
diff --git a/src/m_field_make.c b/src/game/m_field_make.c
similarity index 100%
rename from src/m_field_make.c
rename to src/game/m_field_make.c
diff --git a/src/m_fishrecord.c b/src/game/m_fishrecord.c
similarity index 100%
rename from src/m_fishrecord.c
rename to src/game/m_fishrecord.c
diff --git a/src/m_flashrom.c b/src/game/m_flashrom.c
similarity index 100%
rename from src/m_flashrom.c
rename to src/game/m_flashrom.c
diff --git a/src/m_font.c b/src/game/m_font.c
similarity index 96%
rename from src/m_font.c
rename to src/game/m_font.c
index 43996b13..eeed0f43 100644
--- a/src/m_font.c
+++ b/src/game/m_font.c
@@ -17,10 +17,10 @@
#define mFont_CC_FONT 0, 0, 0, PRIMITIVE, PRIMITIVE, 0, TEXEL0, 0
#define mFont_CC_NOFONT 0, 0, 0, PRIMITIVE, 0, PRIMITIVE, TEXEL0, PRIMITIVE
-#include "../src/m_font_offset.c_inc"
-#include "../src/m_font_main.c_inc"
-#include "../src/m_font_mark.c_inc"
-#include "../src/m_font_rect.c_inc"
+#include "../src/game/m_font_offset.c_inc"
+#include "../src/game/m_font_main.c_inc"
+#include "../src/game/m_font_mark.c_inc"
+#include "../src/game/m_font_rect.c_inc"
/* @unused static u8* mFont_Get_end_load_texture() */
diff --git a/src/m_font_main.c_inc b/src/game/m_font_main.c_inc
similarity index 100%
rename from src/m_font_main.c_inc
rename to src/game/m_font_main.c_inc
diff --git a/src/m_font_mark.c_inc b/src/game/m_font_mark.c_inc
similarity index 100%
rename from src/m_font_mark.c_inc
rename to src/game/m_font_mark.c_inc
diff --git a/src/m_font_offset.c_inc b/src/game/m_font_offset.c_inc
similarity index 100%
rename from src/m_font_offset.c_inc
rename to src/game/m_font_offset.c_inc
diff --git a/src/m_font_rect.c_inc b/src/game/m_font_rect.c_inc
similarity index 100%
rename from src/m_font_rect.c_inc
rename to src/game/m_font_rect.c_inc
diff --git a/src/m_fuusen.c b/src/game/m_fuusen.c
similarity index 100%
rename from src/m_fuusen.c
rename to src/game/m_fuusen.c
diff --git a/src/m_game_dlftbls.c b/src/game/m_game_dlftbls.c
similarity index 100%
rename from src/m_game_dlftbls.c
rename to src/game/m_game_dlftbls.c
diff --git a/src/m_gba_ovl.c b/src/game/m_gba_ovl.c
similarity index 100%
rename from src/m_gba_ovl.c
rename to src/game/m_gba_ovl.c
diff --git a/src/m_hand_ovl.c b/src/game/m_hand_ovl.c
similarity index 100%
rename from src/m_hand_ovl.c
rename to src/game/m_hand_ovl.c
diff --git a/src/m_handbill.c b/src/game/m_handbill.c
similarity index 100%
rename from src/m_handbill.c
rename to src/game/m_handbill.c
diff --git a/src/m_haniwaPortrait_ovl.c b/src/game/m_haniwaPortrait_ovl.c
similarity index 100%
rename from src/m_haniwaPortrait_ovl.c
rename to src/game/m_haniwaPortrait_ovl.c
diff --git a/src/m_hboard_ovl.c b/src/game/m_hboard_ovl.c
similarity index 100%
rename from src/m_hboard_ovl.c
rename to src/game/m_hboard_ovl.c
diff --git a/src/m_home.c b/src/game/m_home.c
similarity index 100%
rename from src/m_home.c
rename to src/game/m_home.c
diff --git a/src/m_house.c b/src/game/m_house.c
similarity index 100%
rename from src/m_house.c
rename to src/game/m_house.c
diff --git a/src/m_huusui_room.c b/src/game/m_huusui_room.c
similarity index 100%
rename from src/m_huusui_room.c
rename to src/game/m_huusui_room.c
diff --git a/src/m_huusui_room_ovl.c b/src/game/m_huusui_room_ovl.c
similarity index 99%
rename from src/m_huusui_room_ovl.c
rename to src/game/m_huusui_room_ovl.c
index 185c08f6..1952c776 100644
--- a/src/m_huusui_room_ovl.c
+++ b/src/game/m_huusui_room_ovl.c
@@ -28,7 +28,7 @@ typedef struct huusui_room_ftr_info_s {
/* table of feng shui data for every item, clearly copy-pasted... should be mHsRm_ftr_info */
static mHsRm_ftr_info_c mMkRm_ftr_info[FTR_NUM] = {
-#include "../src/m_huusui_room_ovl_data.inc" /* data moved out of file due to length */
+#include "../src/game/m_huusui_room_ovl_data.inc" /* data moved out of file due to length */
};
/* maximum unit position for each main floor size */
diff --git a/src/m_huusui_room_ovl_data.inc b/src/game/m_huusui_room_ovl_data.inc
similarity index 100%
rename from src/m_huusui_room_ovl_data.inc
rename to src/game/m_huusui_room_ovl_data.inc
diff --git a/src/m_inventory_ovl.c b/src/game/m_inventory_ovl.c
similarity index 99%
rename from src/m_inventory_ovl.c
rename to src/game/m_inventory_ovl.c
index fed22d4b..01735f72 100644
--- a/src/m_inventory_ovl.c
+++ b/src/game/m_inventory_ovl.c
@@ -656,7 +656,7 @@ extern Gfx kasa_umb_w_model[];
static void mIV_pl_shape_item_draw_umbrella(Submenu* submenu, GAME* game) {
// clang-format off
- static mIV_umbrella_data_c umb_data[] = {
+ static mIV_umbrella_data_c pl_umb_data[] = {
{ e_umb01_model, kasa_umb01_model },
{ e_umb02_model, kasa_umb02_model },
{ e_umb03_model, kasa_umb03_model },
@@ -701,7 +701,7 @@ static void mIV_pl_shape_item_draw_umbrella(Submenu* submenu, GAME* game) {
// clang-format on
GRAPH* graph = game->graph;
int umbrella_idx = submenu->overlay->segment.umbrella_ids[submenu->overlay->segment.player_umbrella_bank_idx];
- mIV_umbrella_data_c* umb_data_p = &umb_data[umbrella_idx];
+ mIV_umbrella_data_c* pl_umb_data_p = &pl_umb_data[umbrella_idx];
int umbrella_item_kind = mPlayer_ITEM_KIND_UMBRELLA00 + umbrella_idx;
_texture_z_light_fog_prim_npc(graph);
@@ -714,7 +714,7 @@ static void mIV_pl_shape_item_draw_umbrella(Submenu* submenu, GAME* game) {
Matrix_translate(800.0f, 0.0f, 0.0f, 1);
gSPMatrix(POLY_OPA_DISP++, _Matrix_to_Mtx_new(graph), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
- gSPDisplayList(POLY_OPA_DISP++, umb_data_p->e_model);
+ gSPDisplayList(POLY_OPA_DISP++, pl_umb_data_p->e_model);
Matrix_translate(4000.0f, 0.0f, 0.0f, 1);
/* Handle custom designs */
@@ -726,7 +726,7 @@ static void mIV_pl_shape_item_draw_umbrella(Submenu* submenu, GAME* game) {
}
gSPMatrix(POLY_OPA_DISP++, _Matrix_to_Mtx_new(graph), G_MTX_NOPUSH | G_MTX_LOAD | G_MTX_MODELVIEW);
- gSPDisplayList(POLY_OPA_DISP++, umb_data_p->kasa_model);
+ gSPDisplayList(POLY_OPA_DISP++, pl_umb_data_p->kasa_model);
CLOSE_POLY_OPA_DISP(graph);
}
diff --git a/src/m_island.c b/src/game/m_island.c
similarity index 100%
rename from src/m_island.c
rename to src/game/m_island.c
diff --git a/src/m_item_debug.c b/src/game/m_item_debug.c
similarity index 100%
rename from src/m_item_debug.c
rename to src/game/m_item_debug.c
diff --git a/src/m_item_name.c b/src/game/m_item_name.c
similarity index 100%
rename from src/m_item_name.c
rename to src/game/m_item_name.c
diff --git a/src/m_kabu_manager.c b/src/game/m_kabu_manager.c
similarity index 100%
rename from src/m_kabu_manager.c
rename to src/game/m_kabu_manager.c
diff --git a/src/m_kankyo.c b/src/game/m_kankyo.c
similarity index 99%
rename from src/m_kankyo.c
rename to src/game/m_kankyo.c
index 3eb8b0e0..fb857523 100644
--- a/src/m_kankyo.c
+++ b/src/game/m_kankyo.c
@@ -10,7 +10,7 @@
#define mEnv_TIME_TO_SECS(hour, min, sec) ((hour) * mTM_SECONDS_IN_HOUR + (min) * mTM_SECONDS_IN_MINUTE + (sec))
-static int klight_chg_time[mEnv_TERM_NUM + 1] = {
+static int klight_chg_tim[mEnv_TERM_NUM + 1] = {
mEnv_TIME_TO_SECS(0, 0, 0), mEnv_TIME_TO_SECS(4, 0, 0), mEnv_TIME_TO_SECS(6, 0, 0),
mEnv_TIME_TO_SECS(8, 0, 0), mEnv_TIME_TO_SECS(12, 0, 0), mEnv_TIME_TO_SECS(16, 0, 0),
mEnv_TIME_TO_SECS(18, 0, 0), mEnv_TIME_TO_SECS(20, 0, 0), mEnv_TIME_TO_SECS(24, 0, 0),
@@ -921,7 +921,7 @@ static f32 mEnv_DiffuseLightEffectRate() {
return l_mEnv_electric_light.diffuse_light_effect_rate;
}
-#include "../src/m_kankyo_weather.c_inc"
+#include "../src/game/m_kankyo_weather.c_inc"
extern void mEnv_regist_nature(Kankyo* kankyo, NATURE_PROC nature_proc, void* arg) {
kankyo->nature.proc = nature_proc;
@@ -1699,7 +1699,7 @@ static int mEnv_GetNowTerm() {
int i;
for (i = 0; i < mEnv_TERM_NUM; i++) {
- if (klight_chg_time[i + 1] >= now_sec) {
+ if (klight_chg_tim[i + 1] >= now_sec) {
return i;
}
}
@@ -1713,7 +1713,7 @@ static void mEnv_SetBaseLight(Kankyo* kankyo) {
int weather = l_mEnv_electric_light.now_weather;
int fog_disabled = TRUE;
int next_term = term + 1;
- f32 percent_towards_next_term = get_percent(klight_chg_time[next_term], klight_chg_time[term], now_sec);
+ f32 percent_towards_next_term = get_percent(klight_chg_tim[next_term], klight_chg_tim[term], now_sec);
switch (Common_Get(field_draw_type)) {
case FIELD_DRAW_TYPE_TRAIN: {
diff --git a/src/m_kankyo_weather.c_inc b/src/game/m_kankyo_weather.c_inc
similarity index 100%
rename from src/m_kankyo_weather.c_inc
rename to src/game/m_kankyo_weather.c_inc
diff --git a/src/m_land.c b/src/game/m_land.c
similarity index 100%
rename from src/m_land.c
rename to src/game/m_land.c
diff --git a/src/m_lib.c b/src/game/m_lib.c
similarity index 100%
rename from src/m_lib.c
rename to src/game/m_lib.c
diff --git a/src/m_lights.c b/src/game/m_lights.c
similarity index 100%
rename from src/m_lights.c
rename to src/game/m_lights.c
diff --git a/src/m_mail.c b/src/game/m_mail.c
similarity index 100%
rename from src/m_mail.c
rename to src/game/m_mail.c
diff --git a/src/m_mail_check.c b/src/game/m_mail_check.c
similarity index 100%
rename from src/m_mail_check.c
rename to src/game/m_mail_check.c
diff --git a/src/m_mail_check_ovl.c b/src/game/m_mail_check_ovl.c
similarity index 100%
rename from src/m_mail_check_ovl.c
rename to src/game/m_mail_check_ovl.c
diff --git a/src/m_mail_password_check.c b/src/game/m_mail_password_check.c
similarity index 100%
rename from src/m_mail_password_check.c
rename to src/game/m_mail_password_check.c
diff --git a/src/m_malloc.c b/src/game/m_malloc.c
similarity index 100%
rename from src/m_malloc.c
rename to src/game/m_malloc.c
diff --git a/src/m_map_ovl.c b/src/game/m_map_ovl.c
similarity index 100%
rename from src/m_map_ovl.c
rename to src/game/m_map_ovl.c
diff --git a/src/m_mark_room.c b/src/game/m_mark_room.c
similarity index 100%
rename from src/m_mark_room.c
rename to src/game/m_mark_room.c
diff --git a/src/m_mark_room_ovl.c b/src/game/m_mark_room_ovl.c
similarity index 100%
rename from src/m_mark_room_ovl.c
rename to src/game/m_mark_room_ovl.c
diff --git a/src/m_melody.c b/src/game/m_melody.c
similarity index 100%
rename from src/m_melody.c
rename to src/game/m_melody.c
diff --git a/src/m_mscore_ovl.c b/src/game/m_mscore_ovl.c
similarity index 100%
rename from src/m_mscore_ovl.c
rename to src/game/m_mscore_ovl.c
diff --git a/src/m_msg.c b/src/game/m_msg.c
similarity index 71%
rename from src/m_msg.c
rename to src/game/m_msg.c
index 07987f06..cd85b33c 100644
--- a/src/m_msg.c
+++ b/src/game/m_msg.c
@@ -19,58 +19,33 @@ static mMsg_Window_c mMsg_window;
typedef int (*mMsg_CONTROL_CODE_PROC)(mMsg_Window_c*, int*);
typedef void (*mMsg_MAIN_PROC)(mMsg_Window_c*, GAME*);
-/* HACK - assetrip only sees top-level C file includes */
-#ifdef MUST_MATCH
-#ifndef __INTELLISENSE__
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-FORCESTRIP static u8 __unused_msg0[] = {
-#include "assets/msg/con_kaiwa2_w1_tex.inc"
-};
-FORCESTRIP static u8 __unused_msg1[] = {
-#include "assets/msg/con_kaiwa2_w2_tex.inc"
-};
-FORCESTRIP static u8 __unused_msg2[] = {
-#include "assets/msg/con_kaiwa2_w3_tex.inc"
-};
-FORCESTRIP static Vtx __unused_msg3[] = {
-#include "assets/msg/con_kaiwa2_v.inc"
-};
-FORCESTRIP static u8 __unused_msg4[] = {
-#include "assets/msg/con_namefuti_TXT.inc"
-};
-FORCESTRIP static Vtx __unused_msg5[] = {
-#include "assets/msg/con_kaiwaname_v.inc"
-};
-#endif
-#endif
-
static void mMsg_MainSetup_Window(mMsg_Window_c* msg_p, GAME* game);
static int mMsg_end_to_disappear(mMsg_Window_c* msg_p);
-#include "../src/m_msg_ctrl.c_inc"
+#include "../src/game/m_msg_ctrl.c_inc"
static void mMsg_sound_MessageSpeedForce(f32 timer);
static void mMsg_sound_MessageStatus(u8 status);
-#include "../src/m_msg_main.c_inc"
-#include "../src/m_msg_sound.c_inc"
-#include "../src/m_msg_hide.c_inc"
-#include "../src/m_msg_appear.c_inc"
-#include "../src/m_msg_normal.c_inc"
-#include "../src/m_msg_cursol.c_inc"
-#include "../src/m_msg_disappear.c_inc"
-#include "../src/m_msg_appear_wait.c_inc"
-#include "../src/m_msg_wait.c_inc"
-#include "../src/m_msg_disappear_wait.c_inc"
+#include "../src/game/m_msg_main.c_inc"
+#include "../src/game/m_msg_sound.c_inc"
+#include "../src/game/m_msg_hide.c_inc"
+#include "../src/game/m_msg_appear.c_inc"
+#include "../src/game/m_msg_normal.c_inc"
+#include "../src/game/m_msg_cursol.c_inc"
+#include "../src/game/m_msg_disappear.c_inc"
+#include "../src/game/m_msg_appear_wait.c_inc"
+#include "../src/game/m_msg_wait.c_inc"
+#include "../src/game/m_msg_disappear_wait.c_inc"
-#include "../src/m_msg_data.c_inc"
-#include "../src/m_msg_draw_window.c_inc"
-#include "../src/m_msg_draw_font.c_inc"
+#include "../src/game/m_msg_data.c_inc"
+#include "../src/game/m_msg_draw_window.c_inc"
+#include "../src/game/m_msg_draw_font.c_inc"
static void mMsg_MainSetup_Window(mMsg_Window_c* msg_p, GAME* game) {
static mMsg_MAIN_PROC proc[mMsg_INDEX_NUM] = {
&mMsg_MainSetup_Hide, &mMsg_MainSetup_Appear, &mMsg_MainSetup_Normal, &mMsg_MainSetup_Cursol,
- &mMsg_MainSetup_Disappear, &mMsg_MainSetup_Appear_Wait, &mMsg_MainSetup_Wait, &mMsg_MainSetup_Disappear_wait,
+ &mMsg_MainSetup_Disappear, &mMsg_MainSetup_Appear_wait, &mMsg_MainSetup_Wait, &mMsg_MainSetup_Disappear_wait,
};
int idx = msg_p->requested_main_index;
diff --git a/src/m_msg_appear.c_inc b/src/game/m_msg_appear.c_inc
similarity index 100%
rename from src/m_msg_appear.c_inc
rename to src/game/m_msg_appear.c_inc
diff --git a/src/m_msg_appear_wait.c_inc b/src/game/m_msg_appear_wait.c_inc
similarity index 96%
rename from src/m_msg_appear_wait.c_inc
rename to src/game/m_msg_appear_wait.c_inc
index 95082c47..25586592 100644
--- a/src/m_msg_appear_wait.c_inc
+++ b/src/game/m_msg_appear_wait.c_inc
@@ -27,7 +27,7 @@ static void mMsg_Main_Appear_wait(mMsg_Window_c* msg_p, GAME* game) {
mMsg_MainSetup_Window(msg_p, game);
}
-static void mMsg_MainSetup_Appear_Wait(mMsg_Window_c* msg_p, GAME* game) {
+static void mMsg_MainSetup_Appear_wait(mMsg_Window_c* msg_p, GAME* game) {
mMsg_Request_MainAppearWait_Data_c* request_data = &msg_p->request_data.request_main_appear_wait;
mMsg_MainAppearWait_Data_c* main_data = &msg_p->main_data.main_appear_wait;
diff --git a/src/m_msg_ctrl.c_inc b/src/game/m_msg_ctrl.c_inc
similarity index 100%
rename from src/m_msg_ctrl.c_inc
rename to src/game/m_msg_ctrl.c_inc
diff --git a/src/m_msg_cursol.c_inc b/src/game/m_msg_cursol.c_inc
similarity index 100%
rename from src/m_msg_cursol.c_inc
rename to src/game/m_msg_cursol.c_inc
diff --git a/src/m_msg_data.c_inc b/src/game/m_msg_data.c_inc
similarity index 100%
rename from src/m_msg_data.c_inc
rename to src/game/m_msg_data.c_inc
diff --git a/src/m_msg_disappear.c_inc b/src/game/m_msg_disappear.c_inc
similarity index 100%
rename from src/m_msg_disappear.c_inc
rename to src/game/m_msg_disappear.c_inc
diff --git a/src/m_msg_disappear_wait.c_inc b/src/game/m_msg_disappear_wait.c_inc
similarity index 100%
rename from src/m_msg_disappear_wait.c_inc
rename to src/game/m_msg_disappear_wait.c_inc
diff --git a/src/m_msg_draw_font.c_inc b/src/game/m_msg_draw_font.c_inc
similarity index 100%
rename from src/m_msg_draw_font.c_inc
rename to src/game/m_msg_draw_font.c_inc
diff --git a/src/m_msg_draw_window.c_inc b/src/game/m_msg_draw_window.c_inc
similarity index 100%
rename from src/m_msg_draw_window.c_inc
rename to src/game/m_msg_draw_window.c_inc
diff --git a/src/m_msg_hide.c_inc b/src/game/m_msg_hide.c_inc
similarity index 100%
rename from src/m_msg_hide.c_inc
rename to src/game/m_msg_hide.c_inc
diff --git a/src/m_msg_main.c_inc b/src/game/m_msg_main.c_inc
similarity index 100%
rename from src/m_msg_main.c_inc
rename to src/game/m_msg_main.c_inc
diff --git a/src/m_msg_normal.c_inc b/src/game/m_msg_normal.c_inc
similarity index 100%
rename from src/m_msg_normal.c_inc
rename to src/game/m_msg_normal.c_inc
diff --git a/src/m_msg_sound.c_inc b/src/game/m_msg_sound.c_inc
similarity index 100%
rename from src/m_msg_sound.c_inc
rename to src/game/m_msg_sound.c_inc
diff --git a/src/m_msg_wait.c_inc b/src/game/m_msg_wait.c_inc
similarity index 100%
rename from src/m_msg_wait.c_inc
rename to src/game/m_msg_wait.c_inc
diff --git a/src/m_museum.c b/src/game/m_museum.c
similarity index 100%
rename from src/m_museum.c
rename to src/game/m_museum.c
diff --git a/src/m_museum_display.c b/src/game/m_museum_display.c
similarity index 100%
rename from src/m_museum_display.c
rename to src/game/m_museum_display.c
diff --git a/src/m_mushroom.c b/src/game/m_mushroom.c
similarity index 100%
rename from src/m_mushroom.c
rename to src/game/m_mushroom.c
diff --git a/src/m_music_ovl.c b/src/game/m_music_ovl.c
similarity index 100%
rename from src/m_music_ovl.c
rename to src/game/m_music_ovl.c
diff --git a/src/m_name_table.c b/src/game/m_name_table.c
similarity index 100%
rename from src/m_name_table.c
rename to src/game/m_name_table.c
diff --git a/src/m_needlework.c b/src/game/m_needlework.c
similarity index 100%
rename from src/m_needlework.c
rename to src/game/m_needlework.c
diff --git a/src/m_needlework_ovl.c b/src/game/m_needlework_ovl.c
similarity index 100%
rename from src/m_needlework_ovl.c
rename to src/game/m_needlework_ovl.c
diff --git a/src/m_notice.c b/src/game/m_notice.c
similarity index 100%
rename from src/m_notice.c
rename to src/game/m_notice.c
diff --git a/src/m_notice_ovl.c b/src/game/m_notice_ovl.c
similarity index 100%
rename from src/m_notice_ovl.c
rename to src/game/m_notice_ovl.c
diff --git a/src/m_npc.c b/src/game/m_npc.c
similarity index 99%
rename from src/m_npc.c
rename to src/game/m_npc.c
index 1152e890..c9c5ba8f 100644
--- a/src/m_npc.c
+++ b/src/game/m_npc.c
@@ -1502,11 +1502,11 @@ static void mNpc_SetRemailFreeString(PersonalID_c* pid, AnmPersonalID_c* anm_id,
static void mNpc_GetRemailGoodData(Mail_c* mail, PersonalID_c* pid, AnmPersonalID_c* anm_id, Anmremail_c* remail,
u8 foreign) {
- static int start_no[mNpc_LOOKS_NUM] = { 0x020, 0x040, 0x000, 0x060, 0x080, 0x0A0 };
+ static int this_start_no[mNpc_LOOKS_NUM] = { 0x020, 0x040, 0x000, 0x060, 0x080, 0x0A0 };
static int ohter_start_no[mNpc_LOOKS_NUM] = { 0x0E0, 0x100, 0x0C0, 0x120, 0x140, 0x160 };
- static int* start_no_table[2] = { start_no, ohter_start_no };
+ static int* start_no_table[2] = { this_start_no, ohter_start_no };
mActor_name_t present = EMPTY_NO;
int msg_no;
@@ -2705,21 +2705,21 @@ static void mNpc_DestroyHouse(Anmhome_c* home) {
}
static void mNpc_SetNpcHome(Animal_c* animal, Anmhome_c* reserved, u8 reserved_num) {
- static int fake_table[60];
+ static int fakeTable[60];
Anmhome_c* home;
- int* fake_table_p = fake_table;
+ int* fake_table_p = fakeTable;
int n = 0;
int i;
int idx;
- if (reserved_num > ARRAY_COUNT(fake_table)) {
- reserved_num = ARRAY_COUNT(fake_table);
+ if (reserved_num > ARRAY_COUNT(fakeTable)) {
+ reserved_num = ARRAY_COUNT(fakeTable);
}
if (reserved_num > 0) {
- bzero(fake_table_p, sizeof(fake_table));
- mNpc_MakeRandTable(fake_table_p, reserved_num, ARRAY_COUNT(fake_table) / 2);
+ bzero(fake_table_p, sizeof(fakeTable));
+ mNpc_MakeRandTable(fake_table_p, reserved_num, ARRAY_COUNT(fakeTable) / 2);
for (i = 0; i < ANIMAL_NUM_MAX; i++) {
if (ITEM_NAME_GET_TYPE(animal->id.npc_id) == NAME_TYPE_NPC && animal->home_info.block_x == 0xFF &&
diff --git a/src/m_npc_schedule.c b/src/game/m_npc_schedule.c
similarity index 100%
rename from src/m_npc_schedule.c
rename to src/game/m_npc_schedule.c
diff --git a/src/m_npc_walk.c b/src/game/m_npc_walk.c
similarity index 96%
rename from src/m_npc_walk.c
rename to src/game/m_npc_walk.c
index c225c5f9..ed81a7d2 100644
--- a/src/m_npc_walk.c
+++ b/src/game/m_npc_walk.c
@@ -44,18 +44,18 @@ static mNpcW_GoalData_c l_boy_goal_data[] = {
static mNpcW_GoalDataTable_c l_boy_goal_table = mNpcW_MAKE_SCHEDULE_TABLE(l_boy_goal_data);
-static u8 l_sports_man_time_12[] = { mNpcW_GOAL_SHRINE, mNpcW_GOAL_HOME, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE };
-static u8 l_sports_man_time_23[] = { mNpcW_GOAL_SHRINE, mNpcW_GOAL_SHRINE, mNpcW_GOAL_HOME, mNpcW_GOAL_HOME, mNpcW_GOAL_ALONE };
+static u8 l_sport_man_time_12[] = { mNpcW_GOAL_SHRINE, mNpcW_GOAL_HOME, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE };
+static u8 l_sport_man_time_23[] = { mNpcW_GOAL_SHRINE, mNpcW_GOAL_SHRINE, mNpcW_GOAL_HOME, mNpcW_GOAL_HOME, mNpcW_GOAL_ALONE };
-static mNpcW_GoalData_c l_sports_man_goal_data[] = {
+static mNpcW_GoalData_c l_sport_man_data[] = {
{ NULL, 0, mNpcW_TIME_2_SEC(6, 30, 0) },
- { l_sports_man_time_12, ARRAY_SIZE(l_sports_man_time_12, u8), mNpcW_TIME_2_SEC(12, 0, 0) },
+ { l_sport_man_time_12, ARRAY_SIZE(l_sport_man_time_12, u8), mNpcW_TIME_2_SEC(12, 0, 0) },
{ NULL, 0, mNpcW_TIME_2_SEC(12, 30, 0) },
- { l_sports_man_time_23, ARRAY_SIZE(l_sports_man_time_23, u8), mNpcW_TIME_2_SEC(23, 0, 0) },
+ { l_sport_man_time_23, ARRAY_SIZE(l_sport_man_time_23, u8), mNpcW_TIME_2_SEC(23, 0, 0) },
{ NULL, 0, mNpcW_TIME_2_SEC(24, 0, 0) }
};
-static mNpcW_GoalDataTable_c l_sports_man_goal_table = mNpcW_MAKE_SCHEDULE_TABLE(l_sports_man_goal_data);
+static mNpcW_GoalDataTable_c l_sport_man_goal_table = mNpcW_MAKE_SCHEDULE_TABLE(l_sport_man_data);
static u8 l_grim_man_time_ed[] = { mNpcW_GOAL_SHRINE, mNpcW_GOAL_SHRINE, mNpcW_GOAL_SHRINE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE, mNpcW_GOAL_ALONE };
@@ -85,7 +85,7 @@ static mNpcW_GoalDataTable_c* l_looks_goal_table[mNpc_LOOKS_NUM] = {
&l_girl_goal_table,
&l_kogirl_goal_table,
&l_boy_goal_table,
- &l_sports_man_goal_table,
+ &l_sport_man_goal_table,
&l_grim_man_goal_table,
&l_naniwa_lady_goal_table
};
diff --git a/src/m_olib.c b/src/game/m_olib.c
similarity index 100%
rename from src/m_olib.c
rename to src/game/m_olib.c
diff --git a/src/m_passwordChk_ovl.c b/src/game/m_passwordChk_ovl.c
similarity index 100%
rename from src/m_passwordChk_ovl.c
rename to src/game/m_passwordChk_ovl.c
diff --git a/src/m_passwordMake_ovl.c b/src/game/m_passwordMake_ovl.c
similarity index 100%
rename from src/m_passwordMake_ovl.c
rename to src/game/m_passwordMake_ovl.c
diff --git a/src/m_pause.c b/src/game/m_pause.c
similarity index 100%
rename from src/m_pause.c
rename to src/game/m_pause.c
diff --git a/src/m_play.c b/src/game/m_play.c
similarity index 100%
rename from src/m_play.c
rename to src/game/m_play.c
diff --git a/src/m_player.c b/src/game/m_player.c
similarity index 91%
rename from src/m_player.c
rename to src/game/m_player.c
index c2fcb463..5c01cbfe 100644
--- a/src/m_player.c
+++ b/src/game/m_player.c
@@ -353,168 +353,153 @@ static int Player_actor_request_main_demo_geton_boat_sitdown_all(GAME* game, int
static int Player_actor_request_main_demo_geton_boat_wait_all(GAME* game, int prio);
static int Player_actor_request_main_demo_getoff_boat_all(GAME* game, const xyz_t* pos_p, s16 angle_y, int prio);
-#ifdef MUST_MATCH
-#ifndef __INTELLISENSE__
-/* Force assetrip to detect these assets. They're used in a .c_inc file. */
-FORCESTRIP static Vtx tol_sponge_1_v_0[] = {
-#include "assets/tol_sponge_1_v.inc"
-};
-FORCESTRIP static u16 tol_sponge_1_pal_0[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/tol_sponge_1_pal.inc"
-};
-FORCESTRIP static u8 tol_sponge_1_main1_tex_txt_0[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/tol_sponge_1_main1_tex_txt.inc"
-};
-#endif
-#endif
-
/* Tool Models */
-#include "../src/m_player_tools.c_inc"
+#include "../src/game/m_player_tools.c_inc"
/* Common */
-#include "../src/m_player_controller.c_inc"
-#include "../src/m_player_vibration.c_inc"
-#include "../src/m_player_common.c_inc"
-#include "../src/m_player_sound.c_inc"
-#include "../src/m_player_other_func.c_inc"
+#include "../src/game/m_player_controller.c_inc"
+#include "../src/game/m_player_vibration.c_inc"
+#include "../src/game/m_player_common.c_inc"
+#include "../src/game/m_player_sound.c_inc"
+#include "../src/game/m_player_other_func.c_inc"
/* Item */
-#include "../src/m_player_item_common.c_inc"
-#include "../src/m_player_item_axe.c_inc"
-#include "../src/m_player_item_net.c_inc"
-#include "../src/m_player_item_umbrella.c_inc"
-#include "../src/m_player_item_rod.c_inc"
-#include "../src/m_player_item_scoop.c_inc"
-#include "../src/m_player_item_balloon.c_inc"
-#include "../src/m_player_item_windmill.c_inc"
-#include "../src/m_player_item_fan.c_inc"
-#include "../src/m_player_item.c_inc"
+#include "../src/game/m_player_item_common.c_inc"
+#include "../src/game/m_player_item_axe.c_inc"
+#include "../src/game/m_player_item_net.c_inc"
+#include "../src/game/m_player_item_umbrella.c_inc"
+#include "../src/game/m_player_item_rod.c_inc"
+#include "../src/game/m_player_item_scoop.c_inc"
+#include "../src/game/m_player_item_balloon.c_inc"
+#include "../src/game/m_player_item_windmill.c_inc"
+#include "../src/game/m_player_item_fan.c_inc"
+#include "../src/game/m_player_item.c_inc"
/* Draw */
-#include "../src/m_player_draw.c_inc"
+#include "../src/game/m_player_draw.c_inc"
/* Main Index */
-#include "../src/m_player_main_dma.c_inc"
-#include "../src/m_player_main_intro.c_inc"
-#include "../src/m_player_main_refuse.c_inc"
-#include "../src/m_player_main_refuse_pickup.c_inc"
-#include "../src/m_player_main_return_demo.c_inc"
-#include "../src/m_player_main_return_outdoor.c_inc"
-#include "../src/m_player_main_return_outdoor2.c_inc"
-#include "../src/m_player_main_wait.c_inc"
-#include "../src/m_player_main_walk.c_inc"
-#include "../src/m_player_main_run.c_inc"
-#include "../src/m_player_main_dash.c_inc"
-#include "../src/m_player_main_tumble.c_inc"
-#include "../src/m_player_main_tumble_getup.c_inc"
-#include "../src/m_player_main_turn_dash.c_inc"
-#include "../src/m_player_main_fall.c_inc"
-#include "../src/m_player_main_wade.c_inc"
-#include "../src/m_player_main_wade_snowball.c_inc"
-#include "../src/m_player_main_door.c_inc"
-#include "../src/m_player_main_outdoor.c_inc"
-#include "../src/m_player_main_invade.c_inc"
-#include "../src/m_player_main_hold.c_inc"
-#include "../src/m_player_main_push.c_inc"
-#include "../src/m_player_main_pull.c_inc"
-#include "../src/m_player_main_rotate_furniture.c_inc"
-#include "../src/m_player_main_open_furniture.c_inc"
-#include "../src/m_player_main_wait_open_furniture.c_inc"
-#include "../src/m_player_main_close_furniture.c_inc"
-#include "../src/m_player_main_lie_bed.c_inc"
-#include "../src/m_player_main_wait_bed.c_inc"
-#include "../src/m_player_main_roll_bed.c_inc"
-#include "../src/m_player_main_standup_bed.c_inc"
-#include "../src/m_player_main_pickup.c_inc"
-#include "../src/m_player_main_pickup_jump.c_inc"
-#include "../src/m_player_main_pickup_furniture.c_inc"
-#include "../src/m_player_main_pickup_exchange.c_inc"
-#include "../src/m_player_main_sitdown.c_inc"
-#include "../src/m_player_main_sitdown_wait.c_inc"
-#include "../src/m_player_main_standup.c_inc"
-#include "../src/m_player_main_swing_axe.c_inc"
-#include "../src/m_player_main_air_axe.c_inc"
-#include "../src/m_player_main_reflect_axe.c_inc"
-#include "../src/m_player_main_broken_axe.c_inc"
-#include "../src/m_player_main_slip_net.c_inc"
-#include "../src/m_player_main_ready_net.c_inc"
-#include "../src/m_player_main_ready_walk_net.c_inc"
-#include "../src/m_player_main_swing_net.c_inc"
-#include "../src/m_player_main_pull_net.c_inc"
-#include "../src/m_player_main_stop_net.c_inc"
-#include "../src/m_player_main_notice_net.c_inc"
-#include "../src/m_player_main_putaway_net.c_inc"
-#include "../src/m_player_main_ready_rod.c_inc"
-#include "../src/m_player_main_cast_rod.c_inc"
-#include "../src/m_player_main_air_rod.c_inc"
-#include "../src/m_player_main_relax_rod.c_inc"
-#include "../src/m_player_main_collect_rod.c_inc"
-#include "../src/m_player_main_vib_rod.c_inc"
-#include "../src/m_player_main_fly_rod.c_inc"
-#include "../src/m_player_main_notice_rod.c_inc"
-#include "../src/m_player_main_putaway_rod.c_inc"
-#include "../src/m_player_main_dig_scoop.c_inc"
-#include "../src/m_player_main_fill_scoop.c_inc"
-#include "../src/m_player_main_reflect_scoop.c_inc"
-#include "../src/m_player_main_air_scoop.c_inc"
-#include "../src/m_player_main_putin_scoop.c_inc"
-#include "../src/m_player_main_putaway_scoop.c_inc"
-#include "../src/m_player_main_get_scoop.c_inc"
-#include "../src/m_player_main_talk.c_inc"
-#include "../src/m_player_main_recieve_wait.c_inc"
-#include "../src/m_player_main_recieve_stretch.c_inc"
-#include "../src/m_player_main_recieve.c_inc"
-#include "../src/m_player_main_recieve_putaway.c_inc"
-#include "../src/m_player_main_give.c_inc"
-#include "../src/m_player_main_give_wait.c_inc"
-#include "../src/m_player_main_takeout_item.c_inc"
-#include "../src/m_player_main_putin_item.c_inc"
-#include "../src/m_player_main_demo_wait.c_inc"
-#include "../src/m_player_main_demo_walk.c_inc"
-#include "../src/m_player_main_demo_geton_train.c_inc"
-#include "../src/m_player_main_demo_geton_train_wait.c_inc"
-#include "../src/m_player_main_demo_getoff_train.c_inc"
-#include "../src/m_player_main_demo_standing_train.c_inc"
-#include "../src/m_player_main_demo_wade.c_inc"
-#include "../src/m_player_main_hide.c_inc"
-#include "../src/m_player_main_groundhog.c_inc"
-#include "../src/m_player_main_release_creature.c_inc"
-#include "../src/m_player_main_wash_car.c_inc"
-#include "../src/m_player_main_tired.c_inc"
-#include "../src/m_player_main_rotate_octagon.c_inc"
-#include "../src/m_player_main_throw_money.c_inc"
-#include "../src/m_player_main_pray.c_inc"
-#include "../src/m_player_main_shake_tree.c_inc"
-#include "../src/m_player_main_mail_jump.c_inc"
-#include "../src/m_player_main_mail_land.c_inc"
-#include "../src/m_player_main_ready_pitfall.c_inc"
-#include "../src/m_player_main_fall_pitfall.c_inc"
-#include "../src/m_player_main_struggle_pitfall.c_inc"
-#include "../src/m_player_main_climbup_pitfall.c_inc"
-#include "../src/m_player_main_stung_bee.c_inc"
-#include "../src/m_player_main_notice_bee.c_inc"
-#include "../src/m_player_main_remove_grass.c_inc"
-#include "../src/m_player_main_shock.c_inc"
-#include "../src/m_player_main_knock_door.c_inc"
-#include "../src/m_player_main_change_cloth.c_inc"
-#include "../src/m_player_main_push_snowball.c_inc"
-#include "../src/m_player_main_rotate_umbrella.c_inc"
-#include "../src/m_player_main_complete_payment.c_inc"
-#include "../src/m_player_main_fail_emu.c_inc"
-#include "../src/m_player_main_stung_mosquito.c_inc"
-#include "../src/m_player_main_notice_mosquito.c_inc"
-#include "../src/m_player_main_demo_geton_boat.c_inc"
-#include "../src/m_player_main_swing_fan.c_inc"
-#include "../src/m_player_main_switch_on_lighthouse.c_inc"
-#include "../src/m_player_main_radio_exercise.c_inc"
-#include "../src/m_player_main_demo_geton_boat_sitdown.c_inc"
-#include "../src/m_player_main_demo_geton_boat_wait.c_inc"
-#include "../src/m_player_main_demo_geton_boat_wade.c_inc"
-#include "../src/m_player_main_demo_getoff_boat_standup.c_inc"
-#include "../src/m_player_main_demo_getoff_boat.c_inc"
-#include "../src/m_player_main_demo_get_golden_item.c_inc"
-#include "../src/m_player_main_demo_get_golden_item2.c_inc"
-#include "../src/m_player_main_demo_get_golden_axe_wait.c_inc"
+#include "../src/game/m_player_main_dma.c_inc"
+#include "../src/game/m_player_main_intro.c_inc"
+#include "../src/game/m_player_main_refuse.c_inc"
+#include "../src/game/m_player_main_refuse_pickup.c_inc"
+#include "../src/game/m_player_main_return_demo.c_inc"
+#include "../src/game/m_player_main_return_outdoor.c_inc"
+#include "../src/game/m_player_main_return_outdoor2.c_inc"
+#include "../src/game/m_player_main_wait.c_inc"
+#include "../src/game/m_player_main_walk.c_inc"
+#include "../src/game/m_player_main_run.c_inc"
+#include "../src/game/m_player_main_dash.c_inc"
+#include "../src/game/m_player_main_tumble.c_inc"
+#include "../src/game/m_player_main_tumble_getup.c_inc"
+#include "../src/game/m_player_main_turn_dash.c_inc"
+#include "../src/game/m_player_main_fall.c_inc"
+#include "../src/game/m_player_main_wade.c_inc"
+#include "../src/game/m_player_main_wade_snowball.c_inc"
+#include "../src/game/m_player_main_door.c_inc"
+#include "../src/game/m_player_main_outdoor.c_inc"
+#include "../src/game/m_player_main_invade.c_inc"
+#include "../src/game/m_player_main_hold.c_inc"
+#include "../src/game/m_player_main_push.c_inc"
+#include "../src/game/m_player_main_pull.c_inc"
+#include "../src/game/m_player_main_rotate_furniture.c_inc"
+#include "../src/game/m_player_main_open_furniture.c_inc"
+#include "../src/game/m_player_main_wait_open_furniture.c_inc"
+#include "../src/game/m_player_main_close_furniture.c_inc"
+#include "../src/game/m_player_main_lie_bed.c_inc"
+#include "../src/game/m_player_main_wait_bed.c_inc"
+#include "../src/game/m_player_main_roll_bed.c_inc"
+#include "../src/game/m_player_main_standup_bed.c_inc"
+#include "../src/game/m_player_main_pickup.c_inc"
+#include "../src/game/m_player_main_pickup_jump.c_inc"
+#include "../src/game/m_player_main_pickup_furniture.c_inc"
+#include "../src/game/m_player_main_pickup_exchange.c_inc"
+#include "../src/game/m_player_main_sitdown.c_inc"
+#include "../src/game/m_player_main_sitdown_wait.c_inc"
+#include "../src/game/m_player_main_standup.c_inc"
+#include "../src/game/m_player_main_swing_axe.c_inc"
+#include "../src/game/m_player_main_air_axe.c_inc"
+#include "../src/game/m_player_main_reflect_axe.c_inc"
+#include "../src/game/m_player_main_broken_axe.c_inc"
+#include "../src/game/m_player_main_slip_net.c_inc"
+#include "../src/game/m_player_main_ready_net.c_inc"
+#include "../src/game/m_player_main_ready_walk_net.c_inc"
+#include "../src/game/m_player_main_swing_net.c_inc"
+#include "../src/game/m_player_main_pull_net.c_inc"
+#include "../src/game/m_player_main_stop_net.c_inc"
+#include "../src/game/m_player_main_notice_net.c_inc"
+#include "../src/game/m_player_main_putaway_net.c_inc"
+#include "../src/game/m_player_main_ready_rod.c_inc"
+#include "../src/game/m_player_main_cast_rod.c_inc"
+#include "../src/game/m_player_main_air_rod.c_inc"
+#include "../src/game/m_player_main_relax_rod.c_inc"
+#include "../src/game/m_player_main_collect_rod.c_inc"
+#include "../src/game/m_player_main_vib_rod.c_inc"
+#include "../src/game/m_player_main_fly_rod.c_inc"
+#include "../src/game/m_player_main_notice_rod.c_inc"
+#include "../src/game/m_player_main_putaway_rod.c_inc"
+#include "../src/game/m_player_main_dig_scoop.c_inc"
+#include "../src/game/m_player_main_fill_scoop.c_inc"
+#include "../src/game/m_player_main_reflect_scoop.c_inc"
+#include "../src/game/m_player_main_air_scoop.c_inc"
+#include "../src/game/m_player_main_putin_scoop.c_inc"
+#include "../src/game/m_player_main_putaway_scoop.c_inc"
+#include "../src/game/m_player_main_get_scoop.c_inc"
+#include "../src/game/m_player_main_talk.c_inc"
+#include "../src/game/m_player_main_recieve_wait.c_inc"
+#include "../src/game/m_player_main_recieve_stretch.c_inc"
+#include "../src/game/m_player_main_recieve.c_inc"
+#include "../src/game/m_player_main_recieve_putaway.c_inc"
+#include "../src/game/m_player_main_give.c_inc"
+#include "../src/game/m_player_main_give_wait.c_inc"
+#include "../src/game/m_player_main_takeout_item.c_inc"
+#include "../src/game/m_player_main_putin_item.c_inc"
+#include "../src/game/m_player_main_demo_wait.c_inc"
+#include "../src/game/m_player_main_demo_walk.c_inc"
+#include "../src/game/m_player_main_demo_geton_train.c_inc"
+#include "../src/game/m_player_main_demo_geton_train_wait.c_inc"
+#include "../src/game/m_player_main_demo_getoff_train.c_inc"
+#include "../src/game/m_player_main_demo_standing_train.c_inc"
+#include "../src/game/m_player_main_demo_wade.c_inc"
+#include "../src/game/m_player_main_hide.c_inc"
+#include "../src/game/m_player_main_groundhog.c_inc"
+#include "../src/game/m_player_main_release_creature.c_inc"
+#include "../src/game/m_player_main_wash_car.c_inc"
+#include "../src/game/m_player_main_tired.c_inc"
+#include "../src/game/m_player_main_rotate_octagon.c_inc"
+#include "../src/game/m_player_main_throw_money.c_inc"
+#include "../src/game/m_player_main_pray.c_inc"
+#include "../src/game/m_player_main_shake_tree.c_inc"
+#include "../src/game/m_player_main_mail_jump.c_inc"
+#include "../src/game/m_player_main_mail_land.c_inc"
+#include "../src/game/m_player_main_ready_pitfall.c_inc"
+#include "../src/game/m_player_main_fall_pitfall.c_inc"
+#include "../src/game/m_player_main_struggle_pitfall.c_inc"
+#include "../src/game/m_player_main_climbup_pitfall.c_inc"
+#include "../src/game/m_player_main_stung_bee.c_inc"
+#include "../src/game/m_player_main_notice_bee.c_inc"
+#include "../src/game/m_player_main_remove_grass.c_inc"
+#include "../src/game/m_player_main_shock.c_inc"
+#include "../src/game/m_player_main_knock_door.c_inc"
+#include "../src/game/m_player_main_change_cloth.c_inc"
+#include "../src/game/m_player_main_push_snowball.c_inc"
+#include "../src/game/m_player_main_rotate_umbrella.c_inc"
+#include "../src/game/m_player_main_complete_payment.c_inc"
+#include "../src/game/m_player_main_fail_emu.c_inc"
+#include "../src/game/m_player_main_stung_mosquito.c_inc"
+#include "../src/game/m_player_main_notice_mosquito.c_inc"
+#include "../src/game/m_player_main_demo_geton_boat.c_inc"
+#include "../src/game/m_player_main_swing_fan.c_inc"
+#include "../src/game/m_player_main_switch_on_lighthouse.c_inc"
+#include "../src/game/m_player_main_radio_exercise.c_inc"
+#include "../src/game/m_player_main_demo_geton_boat_sitdown.c_inc"
+#include "../src/game/m_player_main_demo_geton_boat_wait.c_inc"
+#include "../src/game/m_player_main_demo_geton_boat_wade.c_inc"
+#include "../src/game/m_player_main_demo_getoff_boat_standup.c_inc"
+#include "../src/game/m_player_main_demo_getoff_boat.c_inc"
+#include "../src/game/m_player_main_demo_get_golden_item.c_inc"
+#include "../src/game/m_player_main_demo_get_golden_item2.c_inc"
+#include "../src/game/m_player_main_demo_get_golden_axe_wait.c_inc"
// static void Player_actor_Refuse_pickup_demo_ct(ACTOR*);
diff --git a/src/m_player_call.c b/src/game/m_player_call.c
similarity index 100%
rename from src/m_player_call.c
rename to src/game/m_player_call.c
diff --git a/src/m_player_common.c_inc b/src/game/m_player_common.c_inc
similarity index 100%
rename from src/m_player_common.c_inc
rename to src/game/m_player_common.c_inc
diff --git a/src/m_player_controller.c_inc b/src/game/m_player_controller.c_inc
similarity index 100%
rename from src/m_player_controller.c_inc
rename to src/game/m_player_controller.c_inc
diff --git a/src/m_player_draw.c_inc b/src/game/m_player_draw.c_inc
similarity index 100%
rename from src/m_player_draw.c_inc
rename to src/game/m_player_draw.c_inc
diff --git a/src/m_player_item.c_inc b/src/game/m_player_item.c_inc
similarity index 100%
rename from src/m_player_item.c_inc
rename to src/game/m_player_item.c_inc
diff --git a/src/m_player_item_axe.c_inc b/src/game/m_player_item_axe.c_inc
similarity index 100%
rename from src/m_player_item_axe.c_inc
rename to src/game/m_player_item_axe.c_inc
diff --git a/src/m_player_item_balloon.c_inc b/src/game/m_player_item_balloon.c_inc
similarity index 100%
rename from src/m_player_item_balloon.c_inc
rename to src/game/m_player_item_balloon.c_inc
diff --git a/src/m_player_item_common.c_inc b/src/game/m_player_item_common.c_inc
similarity index 100%
rename from src/m_player_item_common.c_inc
rename to src/game/m_player_item_common.c_inc
diff --git a/src/m_player_item_fan.c_inc b/src/game/m_player_item_fan.c_inc
similarity index 100%
rename from src/m_player_item_fan.c_inc
rename to src/game/m_player_item_fan.c_inc
diff --git a/src/m_player_item_net.c_inc b/src/game/m_player_item_net.c_inc
similarity index 100%
rename from src/m_player_item_net.c_inc
rename to src/game/m_player_item_net.c_inc
diff --git a/src/m_player_item_rod.c_inc b/src/game/m_player_item_rod.c_inc
similarity index 100%
rename from src/m_player_item_rod.c_inc
rename to src/game/m_player_item_rod.c_inc
diff --git a/src/m_player_item_scoop.c_inc b/src/game/m_player_item_scoop.c_inc
similarity index 100%
rename from src/m_player_item_scoop.c_inc
rename to src/game/m_player_item_scoop.c_inc
diff --git a/src/m_player_item_umbrella.c_inc b/src/game/m_player_item_umbrella.c_inc
similarity index 100%
rename from src/m_player_item_umbrella.c_inc
rename to src/game/m_player_item_umbrella.c_inc
diff --git a/src/m_player_item_windmill.c_inc b/src/game/m_player_item_windmill.c_inc
similarity index 100%
rename from src/m_player_item_windmill.c_inc
rename to src/game/m_player_item_windmill.c_inc
diff --git a/src/m_player_lib.c b/src/game/m_player_lib.c
similarity index 100%
rename from src/m_player_lib.c
rename to src/game/m_player_lib.c
diff --git a/src/m_player_main_air_axe.c_inc b/src/game/m_player_main_air_axe.c_inc
similarity index 100%
rename from src/m_player_main_air_axe.c_inc
rename to src/game/m_player_main_air_axe.c_inc
diff --git a/src/m_player_main_air_rod.c_inc b/src/game/m_player_main_air_rod.c_inc
similarity index 100%
rename from src/m_player_main_air_rod.c_inc
rename to src/game/m_player_main_air_rod.c_inc
diff --git a/src/m_player_main_air_scoop.c_inc b/src/game/m_player_main_air_scoop.c_inc
similarity index 100%
rename from src/m_player_main_air_scoop.c_inc
rename to src/game/m_player_main_air_scoop.c_inc
diff --git a/src/m_player_main_broken_axe.c_inc b/src/game/m_player_main_broken_axe.c_inc
similarity index 100%
rename from src/m_player_main_broken_axe.c_inc
rename to src/game/m_player_main_broken_axe.c_inc
diff --git a/src/m_player_main_cast_rod.c_inc b/src/game/m_player_main_cast_rod.c_inc
similarity index 100%
rename from src/m_player_main_cast_rod.c_inc
rename to src/game/m_player_main_cast_rod.c_inc
diff --git a/src/m_player_main_change_cloth.c_inc b/src/game/m_player_main_change_cloth.c_inc
similarity index 100%
rename from src/m_player_main_change_cloth.c_inc
rename to src/game/m_player_main_change_cloth.c_inc
diff --git a/src/m_player_main_climbup_pitfall.c_inc b/src/game/m_player_main_climbup_pitfall.c_inc
similarity index 100%
rename from src/m_player_main_climbup_pitfall.c_inc
rename to src/game/m_player_main_climbup_pitfall.c_inc
diff --git a/src/m_player_main_close_furniture.c_inc b/src/game/m_player_main_close_furniture.c_inc
similarity index 100%
rename from src/m_player_main_close_furniture.c_inc
rename to src/game/m_player_main_close_furniture.c_inc
diff --git a/src/m_player_main_collect_rod.c_inc b/src/game/m_player_main_collect_rod.c_inc
similarity index 100%
rename from src/m_player_main_collect_rod.c_inc
rename to src/game/m_player_main_collect_rod.c_inc
diff --git a/src/m_player_main_complete_payment.c_inc b/src/game/m_player_main_complete_payment.c_inc
similarity index 100%
rename from src/m_player_main_complete_payment.c_inc
rename to src/game/m_player_main_complete_payment.c_inc
diff --git a/src/m_player_main_dash.c_inc b/src/game/m_player_main_dash.c_inc
similarity index 100%
rename from src/m_player_main_dash.c_inc
rename to src/game/m_player_main_dash.c_inc
diff --git a/src/m_player_main_demo_get_golden_axe_wait.c_inc b/src/game/m_player_main_demo_get_golden_axe_wait.c_inc
similarity index 100%
rename from src/m_player_main_demo_get_golden_axe_wait.c_inc
rename to src/game/m_player_main_demo_get_golden_axe_wait.c_inc
diff --git a/src/m_player_main_demo_get_golden_item.c_inc b/src/game/m_player_main_demo_get_golden_item.c_inc
similarity index 100%
rename from src/m_player_main_demo_get_golden_item.c_inc
rename to src/game/m_player_main_demo_get_golden_item.c_inc
diff --git a/src/m_player_main_demo_get_golden_item2.c_inc b/src/game/m_player_main_demo_get_golden_item2.c_inc
similarity index 100%
rename from src/m_player_main_demo_get_golden_item2.c_inc
rename to src/game/m_player_main_demo_get_golden_item2.c_inc
diff --git a/src/m_player_main_demo_getoff_boat.c_inc b/src/game/m_player_main_demo_getoff_boat.c_inc
similarity index 100%
rename from src/m_player_main_demo_getoff_boat.c_inc
rename to src/game/m_player_main_demo_getoff_boat.c_inc
diff --git a/src/m_player_main_demo_getoff_boat_standup.c_inc b/src/game/m_player_main_demo_getoff_boat_standup.c_inc
similarity index 100%
rename from src/m_player_main_demo_getoff_boat_standup.c_inc
rename to src/game/m_player_main_demo_getoff_boat_standup.c_inc
diff --git a/src/m_player_main_demo_getoff_train.c_inc b/src/game/m_player_main_demo_getoff_train.c_inc
similarity index 100%
rename from src/m_player_main_demo_getoff_train.c_inc
rename to src/game/m_player_main_demo_getoff_train.c_inc
diff --git a/src/m_player_main_demo_geton_boat.c_inc b/src/game/m_player_main_demo_geton_boat.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_boat.c_inc
rename to src/game/m_player_main_demo_geton_boat.c_inc
diff --git a/src/m_player_main_demo_geton_boat_sitdown.c_inc b/src/game/m_player_main_demo_geton_boat_sitdown.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_boat_sitdown.c_inc
rename to src/game/m_player_main_demo_geton_boat_sitdown.c_inc
diff --git a/src/m_player_main_demo_geton_boat_wade.c_inc b/src/game/m_player_main_demo_geton_boat_wade.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_boat_wade.c_inc
rename to src/game/m_player_main_demo_geton_boat_wade.c_inc
diff --git a/src/m_player_main_demo_geton_boat_wait.c_inc b/src/game/m_player_main_demo_geton_boat_wait.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_boat_wait.c_inc
rename to src/game/m_player_main_demo_geton_boat_wait.c_inc
diff --git a/src/m_player_main_demo_geton_train.c_inc b/src/game/m_player_main_demo_geton_train.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_train.c_inc
rename to src/game/m_player_main_demo_geton_train.c_inc
diff --git a/src/m_player_main_demo_geton_train_wait.c_inc b/src/game/m_player_main_demo_geton_train_wait.c_inc
similarity index 100%
rename from src/m_player_main_demo_geton_train_wait.c_inc
rename to src/game/m_player_main_demo_geton_train_wait.c_inc
diff --git a/src/m_player_main_demo_standing_train.c_inc b/src/game/m_player_main_demo_standing_train.c_inc
similarity index 100%
rename from src/m_player_main_demo_standing_train.c_inc
rename to src/game/m_player_main_demo_standing_train.c_inc
diff --git a/src/m_player_main_demo_wade.c_inc b/src/game/m_player_main_demo_wade.c_inc
similarity index 100%
rename from src/m_player_main_demo_wade.c_inc
rename to src/game/m_player_main_demo_wade.c_inc
diff --git a/src/m_player_main_demo_wait.c_inc b/src/game/m_player_main_demo_wait.c_inc
similarity index 100%
rename from src/m_player_main_demo_wait.c_inc
rename to src/game/m_player_main_demo_wait.c_inc
diff --git a/src/m_player_main_demo_walk.c_inc b/src/game/m_player_main_demo_walk.c_inc
similarity index 100%
rename from src/m_player_main_demo_walk.c_inc
rename to src/game/m_player_main_demo_walk.c_inc
diff --git a/src/m_player_main_dig_scoop.c_inc b/src/game/m_player_main_dig_scoop.c_inc
similarity index 100%
rename from src/m_player_main_dig_scoop.c_inc
rename to src/game/m_player_main_dig_scoop.c_inc
diff --git a/src/m_player_main_dma.c_inc b/src/game/m_player_main_dma.c_inc
similarity index 100%
rename from src/m_player_main_dma.c_inc
rename to src/game/m_player_main_dma.c_inc
diff --git a/src/m_player_main_door.c_inc b/src/game/m_player_main_door.c_inc
similarity index 100%
rename from src/m_player_main_door.c_inc
rename to src/game/m_player_main_door.c_inc
diff --git a/src/m_player_main_fail_emu.c_inc b/src/game/m_player_main_fail_emu.c_inc
similarity index 100%
rename from src/m_player_main_fail_emu.c_inc
rename to src/game/m_player_main_fail_emu.c_inc
diff --git a/src/m_player_main_fall.c_inc b/src/game/m_player_main_fall.c_inc
similarity index 100%
rename from src/m_player_main_fall.c_inc
rename to src/game/m_player_main_fall.c_inc
diff --git a/src/m_player_main_fall_pitfall.c_inc b/src/game/m_player_main_fall_pitfall.c_inc
similarity index 100%
rename from src/m_player_main_fall_pitfall.c_inc
rename to src/game/m_player_main_fall_pitfall.c_inc
diff --git a/src/m_player_main_fill_scoop.c_inc b/src/game/m_player_main_fill_scoop.c_inc
similarity index 100%
rename from src/m_player_main_fill_scoop.c_inc
rename to src/game/m_player_main_fill_scoop.c_inc
diff --git a/src/m_player_main_fly_rod.c_inc b/src/game/m_player_main_fly_rod.c_inc
similarity index 100%
rename from src/m_player_main_fly_rod.c_inc
rename to src/game/m_player_main_fly_rod.c_inc
diff --git a/src/m_player_main_get_scoop.c_inc b/src/game/m_player_main_get_scoop.c_inc
similarity index 100%
rename from src/m_player_main_get_scoop.c_inc
rename to src/game/m_player_main_get_scoop.c_inc
diff --git a/src/m_player_main_give.c_inc b/src/game/m_player_main_give.c_inc
similarity index 100%
rename from src/m_player_main_give.c_inc
rename to src/game/m_player_main_give.c_inc
diff --git a/src/m_player_main_give_wait.c_inc b/src/game/m_player_main_give_wait.c_inc
similarity index 100%
rename from src/m_player_main_give_wait.c_inc
rename to src/game/m_player_main_give_wait.c_inc
diff --git a/src/m_player_main_groundhog.c_inc b/src/game/m_player_main_groundhog.c_inc
similarity index 100%
rename from src/m_player_main_groundhog.c_inc
rename to src/game/m_player_main_groundhog.c_inc
diff --git a/src/m_player_main_hide.c_inc b/src/game/m_player_main_hide.c_inc
similarity index 100%
rename from src/m_player_main_hide.c_inc
rename to src/game/m_player_main_hide.c_inc
diff --git a/src/m_player_main_hold.c_inc b/src/game/m_player_main_hold.c_inc
similarity index 100%
rename from src/m_player_main_hold.c_inc
rename to src/game/m_player_main_hold.c_inc
diff --git a/src/m_player_main_intro.c_inc b/src/game/m_player_main_intro.c_inc
similarity index 100%
rename from src/m_player_main_intro.c_inc
rename to src/game/m_player_main_intro.c_inc
diff --git a/src/m_player_main_invade.c_inc b/src/game/m_player_main_invade.c_inc
similarity index 100%
rename from src/m_player_main_invade.c_inc
rename to src/game/m_player_main_invade.c_inc
diff --git a/src/m_player_main_knock_door.c_inc b/src/game/m_player_main_knock_door.c_inc
similarity index 100%
rename from src/m_player_main_knock_door.c_inc
rename to src/game/m_player_main_knock_door.c_inc
diff --git a/src/m_player_main_lie_bed.c_inc b/src/game/m_player_main_lie_bed.c_inc
similarity index 100%
rename from src/m_player_main_lie_bed.c_inc
rename to src/game/m_player_main_lie_bed.c_inc
diff --git a/src/m_player_main_mail_jump.c_inc b/src/game/m_player_main_mail_jump.c_inc
similarity index 100%
rename from src/m_player_main_mail_jump.c_inc
rename to src/game/m_player_main_mail_jump.c_inc
diff --git a/src/m_player_main_mail_land.c_inc b/src/game/m_player_main_mail_land.c_inc
similarity index 100%
rename from src/m_player_main_mail_land.c_inc
rename to src/game/m_player_main_mail_land.c_inc
diff --git a/src/m_player_main_notice_bee.c_inc b/src/game/m_player_main_notice_bee.c_inc
similarity index 100%
rename from src/m_player_main_notice_bee.c_inc
rename to src/game/m_player_main_notice_bee.c_inc
diff --git a/src/m_player_main_notice_mosquito.c_inc b/src/game/m_player_main_notice_mosquito.c_inc
similarity index 100%
rename from src/m_player_main_notice_mosquito.c_inc
rename to src/game/m_player_main_notice_mosquito.c_inc
diff --git a/src/m_player_main_notice_net.c_inc b/src/game/m_player_main_notice_net.c_inc
similarity index 100%
rename from src/m_player_main_notice_net.c_inc
rename to src/game/m_player_main_notice_net.c_inc
diff --git a/src/m_player_main_notice_rod.c_inc b/src/game/m_player_main_notice_rod.c_inc
similarity index 100%
rename from src/m_player_main_notice_rod.c_inc
rename to src/game/m_player_main_notice_rod.c_inc
diff --git a/src/m_player_main_open_furniture.c_inc b/src/game/m_player_main_open_furniture.c_inc
similarity index 100%
rename from src/m_player_main_open_furniture.c_inc
rename to src/game/m_player_main_open_furniture.c_inc
diff --git a/src/m_player_main_outdoor.c_inc b/src/game/m_player_main_outdoor.c_inc
similarity index 100%
rename from src/m_player_main_outdoor.c_inc
rename to src/game/m_player_main_outdoor.c_inc
diff --git a/src/m_player_main_pickup.c_inc b/src/game/m_player_main_pickup.c_inc
similarity index 100%
rename from src/m_player_main_pickup.c_inc
rename to src/game/m_player_main_pickup.c_inc
diff --git a/src/m_player_main_pickup_exchange.c_inc b/src/game/m_player_main_pickup_exchange.c_inc
similarity index 100%
rename from src/m_player_main_pickup_exchange.c_inc
rename to src/game/m_player_main_pickup_exchange.c_inc
diff --git a/src/m_player_main_pickup_furniture.c_inc b/src/game/m_player_main_pickup_furniture.c_inc
similarity index 100%
rename from src/m_player_main_pickup_furniture.c_inc
rename to src/game/m_player_main_pickup_furniture.c_inc
diff --git a/src/m_player_main_pickup_jump.c_inc b/src/game/m_player_main_pickup_jump.c_inc
similarity index 100%
rename from src/m_player_main_pickup_jump.c_inc
rename to src/game/m_player_main_pickup_jump.c_inc
diff --git a/src/m_player_main_pray.c_inc b/src/game/m_player_main_pray.c_inc
similarity index 100%
rename from src/m_player_main_pray.c_inc
rename to src/game/m_player_main_pray.c_inc
diff --git a/src/m_player_main_pull.c_inc b/src/game/m_player_main_pull.c_inc
similarity index 100%
rename from src/m_player_main_pull.c_inc
rename to src/game/m_player_main_pull.c_inc
diff --git a/src/m_player_main_pull_net.c_inc b/src/game/m_player_main_pull_net.c_inc
similarity index 100%
rename from src/m_player_main_pull_net.c_inc
rename to src/game/m_player_main_pull_net.c_inc
diff --git a/src/m_player_main_push.c_inc b/src/game/m_player_main_push.c_inc
similarity index 100%
rename from src/m_player_main_push.c_inc
rename to src/game/m_player_main_push.c_inc
diff --git a/src/m_player_main_push_snowball.c_inc b/src/game/m_player_main_push_snowball.c_inc
similarity index 100%
rename from src/m_player_main_push_snowball.c_inc
rename to src/game/m_player_main_push_snowball.c_inc
diff --git a/src/m_player_main_putaway_net.c_inc b/src/game/m_player_main_putaway_net.c_inc
similarity index 100%
rename from src/m_player_main_putaway_net.c_inc
rename to src/game/m_player_main_putaway_net.c_inc
diff --git a/src/m_player_main_putaway_rod.c_inc b/src/game/m_player_main_putaway_rod.c_inc
similarity index 100%
rename from src/m_player_main_putaway_rod.c_inc
rename to src/game/m_player_main_putaway_rod.c_inc
diff --git a/src/m_player_main_putaway_scoop.c_inc b/src/game/m_player_main_putaway_scoop.c_inc
similarity index 100%
rename from src/m_player_main_putaway_scoop.c_inc
rename to src/game/m_player_main_putaway_scoop.c_inc
diff --git a/src/m_player_main_putin_item.c_inc b/src/game/m_player_main_putin_item.c_inc
similarity index 100%
rename from src/m_player_main_putin_item.c_inc
rename to src/game/m_player_main_putin_item.c_inc
diff --git a/src/m_player_main_putin_scoop.c_inc b/src/game/m_player_main_putin_scoop.c_inc
similarity index 100%
rename from src/m_player_main_putin_scoop.c_inc
rename to src/game/m_player_main_putin_scoop.c_inc
diff --git a/src/m_player_main_radio_exercise.c_inc b/src/game/m_player_main_radio_exercise.c_inc
similarity index 100%
rename from src/m_player_main_radio_exercise.c_inc
rename to src/game/m_player_main_radio_exercise.c_inc
diff --git a/src/m_player_main_ready_net.c_inc b/src/game/m_player_main_ready_net.c_inc
similarity index 100%
rename from src/m_player_main_ready_net.c_inc
rename to src/game/m_player_main_ready_net.c_inc
diff --git a/src/m_player_main_ready_pitfall.c_inc b/src/game/m_player_main_ready_pitfall.c_inc
similarity index 100%
rename from src/m_player_main_ready_pitfall.c_inc
rename to src/game/m_player_main_ready_pitfall.c_inc
diff --git a/src/m_player_main_ready_rod.c_inc b/src/game/m_player_main_ready_rod.c_inc
similarity index 100%
rename from src/m_player_main_ready_rod.c_inc
rename to src/game/m_player_main_ready_rod.c_inc
diff --git a/src/m_player_main_ready_walk_net.c_inc b/src/game/m_player_main_ready_walk_net.c_inc
similarity index 100%
rename from src/m_player_main_ready_walk_net.c_inc
rename to src/game/m_player_main_ready_walk_net.c_inc
diff --git a/src/m_player_main_recieve.c_inc b/src/game/m_player_main_recieve.c_inc
similarity index 100%
rename from src/m_player_main_recieve.c_inc
rename to src/game/m_player_main_recieve.c_inc
diff --git a/src/m_player_main_recieve_putaway.c_inc b/src/game/m_player_main_recieve_putaway.c_inc
similarity index 100%
rename from src/m_player_main_recieve_putaway.c_inc
rename to src/game/m_player_main_recieve_putaway.c_inc
diff --git a/src/m_player_main_recieve_stretch.c_inc b/src/game/m_player_main_recieve_stretch.c_inc
similarity index 100%
rename from src/m_player_main_recieve_stretch.c_inc
rename to src/game/m_player_main_recieve_stretch.c_inc
diff --git a/src/m_player_main_recieve_wait.c_inc b/src/game/m_player_main_recieve_wait.c_inc
similarity index 100%
rename from src/m_player_main_recieve_wait.c_inc
rename to src/game/m_player_main_recieve_wait.c_inc
diff --git a/src/m_player_main_reflect_axe.c_inc b/src/game/m_player_main_reflect_axe.c_inc
similarity index 100%
rename from src/m_player_main_reflect_axe.c_inc
rename to src/game/m_player_main_reflect_axe.c_inc
diff --git a/src/m_player_main_reflect_scoop.c_inc b/src/game/m_player_main_reflect_scoop.c_inc
similarity index 100%
rename from src/m_player_main_reflect_scoop.c_inc
rename to src/game/m_player_main_reflect_scoop.c_inc
diff --git a/src/m_player_main_refuse.c_inc b/src/game/m_player_main_refuse.c_inc
similarity index 100%
rename from src/m_player_main_refuse.c_inc
rename to src/game/m_player_main_refuse.c_inc
diff --git a/src/m_player_main_refuse_pickup.c_inc b/src/game/m_player_main_refuse_pickup.c_inc
similarity index 100%
rename from src/m_player_main_refuse_pickup.c_inc
rename to src/game/m_player_main_refuse_pickup.c_inc
diff --git a/src/m_player_main_relax_rod.c_inc b/src/game/m_player_main_relax_rod.c_inc
similarity index 100%
rename from src/m_player_main_relax_rod.c_inc
rename to src/game/m_player_main_relax_rod.c_inc
diff --git a/src/m_player_main_release_creature.c_inc b/src/game/m_player_main_release_creature.c_inc
similarity index 100%
rename from src/m_player_main_release_creature.c_inc
rename to src/game/m_player_main_release_creature.c_inc
diff --git a/src/m_player_main_remove_grass.c_inc b/src/game/m_player_main_remove_grass.c_inc
similarity index 100%
rename from src/m_player_main_remove_grass.c_inc
rename to src/game/m_player_main_remove_grass.c_inc
diff --git a/src/m_player_main_return_demo.c_inc b/src/game/m_player_main_return_demo.c_inc
similarity index 100%
rename from src/m_player_main_return_demo.c_inc
rename to src/game/m_player_main_return_demo.c_inc
diff --git a/src/m_player_main_return_outdoor.c_inc b/src/game/m_player_main_return_outdoor.c_inc
similarity index 100%
rename from src/m_player_main_return_outdoor.c_inc
rename to src/game/m_player_main_return_outdoor.c_inc
diff --git a/src/m_player_main_return_outdoor2.c_inc b/src/game/m_player_main_return_outdoor2.c_inc
similarity index 100%
rename from src/m_player_main_return_outdoor2.c_inc
rename to src/game/m_player_main_return_outdoor2.c_inc
diff --git a/src/m_player_main_roll_bed.c_inc b/src/game/m_player_main_roll_bed.c_inc
similarity index 100%
rename from src/m_player_main_roll_bed.c_inc
rename to src/game/m_player_main_roll_bed.c_inc
diff --git a/src/m_player_main_rotate_furniture.c_inc b/src/game/m_player_main_rotate_furniture.c_inc
similarity index 100%
rename from src/m_player_main_rotate_furniture.c_inc
rename to src/game/m_player_main_rotate_furniture.c_inc
diff --git a/src/m_player_main_rotate_octagon.c_inc b/src/game/m_player_main_rotate_octagon.c_inc
similarity index 100%
rename from src/m_player_main_rotate_octagon.c_inc
rename to src/game/m_player_main_rotate_octagon.c_inc
diff --git a/src/m_player_main_rotate_umbrella.c_inc b/src/game/m_player_main_rotate_umbrella.c_inc
similarity index 100%
rename from src/m_player_main_rotate_umbrella.c_inc
rename to src/game/m_player_main_rotate_umbrella.c_inc
diff --git a/src/m_player_main_run.c_inc b/src/game/m_player_main_run.c_inc
similarity index 100%
rename from src/m_player_main_run.c_inc
rename to src/game/m_player_main_run.c_inc
diff --git a/src/m_player_main_shake_tree.c_inc b/src/game/m_player_main_shake_tree.c_inc
similarity index 100%
rename from src/m_player_main_shake_tree.c_inc
rename to src/game/m_player_main_shake_tree.c_inc
diff --git a/src/m_player_main_shock.c_inc b/src/game/m_player_main_shock.c_inc
similarity index 100%
rename from src/m_player_main_shock.c_inc
rename to src/game/m_player_main_shock.c_inc
diff --git a/src/m_player_main_sitdown.c_inc b/src/game/m_player_main_sitdown.c_inc
similarity index 100%
rename from src/m_player_main_sitdown.c_inc
rename to src/game/m_player_main_sitdown.c_inc
diff --git a/src/m_player_main_sitdown_wait.c_inc b/src/game/m_player_main_sitdown_wait.c_inc
similarity index 100%
rename from src/m_player_main_sitdown_wait.c_inc
rename to src/game/m_player_main_sitdown_wait.c_inc
diff --git a/src/m_player_main_slip_net.c_inc b/src/game/m_player_main_slip_net.c_inc
similarity index 100%
rename from src/m_player_main_slip_net.c_inc
rename to src/game/m_player_main_slip_net.c_inc
diff --git a/src/m_player_main_standup.c_inc b/src/game/m_player_main_standup.c_inc
similarity index 100%
rename from src/m_player_main_standup.c_inc
rename to src/game/m_player_main_standup.c_inc
diff --git a/src/m_player_main_standup_bed.c_inc b/src/game/m_player_main_standup_bed.c_inc
similarity index 100%
rename from src/m_player_main_standup_bed.c_inc
rename to src/game/m_player_main_standup_bed.c_inc
diff --git a/src/m_player_main_stop_net.c_inc b/src/game/m_player_main_stop_net.c_inc
similarity index 100%
rename from src/m_player_main_stop_net.c_inc
rename to src/game/m_player_main_stop_net.c_inc
diff --git a/src/m_player_main_struggle_pitfall.c_inc b/src/game/m_player_main_struggle_pitfall.c_inc
similarity index 100%
rename from src/m_player_main_struggle_pitfall.c_inc
rename to src/game/m_player_main_struggle_pitfall.c_inc
diff --git a/src/m_player_main_stung_bee.c_inc b/src/game/m_player_main_stung_bee.c_inc
similarity index 100%
rename from src/m_player_main_stung_bee.c_inc
rename to src/game/m_player_main_stung_bee.c_inc
diff --git a/src/m_player_main_stung_mosquito.c_inc b/src/game/m_player_main_stung_mosquito.c_inc
similarity index 100%
rename from src/m_player_main_stung_mosquito.c_inc
rename to src/game/m_player_main_stung_mosquito.c_inc
diff --git a/src/m_player_main_swing_axe.c_inc b/src/game/m_player_main_swing_axe.c_inc
similarity index 100%
rename from src/m_player_main_swing_axe.c_inc
rename to src/game/m_player_main_swing_axe.c_inc
diff --git a/src/m_player_main_swing_fan.c_inc b/src/game/m_player_main_swing_fan.c_inc
similarity index 100%
rename from src/m_player_main_swing_fan.c_inc
rename to src/game/m_player_main_swing_fan.c_inc
diff --git a/src/m_player_main_swing_net.c_inc b/src/game/m_player_main_swing_net.c_inc
similarity index 100%
rename from src/m_player_main_swing_net.c_inc
rename to src/game/m_player_main_swing_net.c_inc
diff --git a/src/m_player_main_switch_on_lighthouse.c_inc b/src/game/m_player_main_switch_on_lighthouse.c_inc
similarity index 100%
rename from src/m_player_main_switch_on_lighthouse.c_inc
rename to src/game/m_player_main_switch_on_lighthouse.c_inc
diff --git a/src/m_player_main_takeout_item.c_inc b/src/game/m_player_main_takeout_item.c_inc
similarity index 100%
rename from src/m_player_main_takeout_item.c_inc
rename to src/game/m_player_main_takeout_item.c_inc
diff --git a/src/m_player_main_talk.c_inc b/src/game/m_player_main_talk.c_inc
similarity index 100%
rename from src/m_player_main_talk.c_inc
rename to src/game/m_player_main_talk.c_inc
diff --git a/src/m_player_main_throw_money.c_inc b/src/game/m_player_main_throw_money.c_inc
similarity index 100%
rename from src/m_player_main_throw_money.c_inc
rename to src/game/m_player_main_throw_money.c_inc
diff --git a/src/m_player_main_tired.c_inc b/src/game/m_player_main_tired.c_inc
similarity index 100%
rename from src/m_player_main_tired.c_inc
rename to src/game/m_player_main_tired.c_inc
diff --git a/src/m_player_main_tumble.c_inc b/src/game/m_player_main_tumble.c_inc
similarity index 100%
rename from src/m_player_main_tumble.c_inc
rename to src/game/m_player_main_tumble.c_inc
diff --git a/src/m_player_main_tumble_getup.c_inc b/src/game/m_player_main_tumble_getup.c_inc
similarity index 100%
rename from src/m_player_main_tumble_getup.c_inc
rename to src/game/m_player_main_tumble_getup.c_inc
diff --git a/src/m_player_main_turn_dash.c_inc b/src/game/m_player_main_turn_dash.c_inc
similarity index 100%
rename from src/m_player_main_turn_dash.c_inc
rename to src/game/m_player_main_turn_dash.c_inc
diff --git a/src/m_player_main_vib_rod.c_inc b/src/game/m_player_main_vib_rod.c_inc
similarity index 100%
rename from src/m_player_main_vib_rod.c_inc
rename to src/game/m_player_main_vib_rod.c_inc
diff --git a/src/m_player_main_wade.c_inc b/src/game/m_player_main_wade.c_inc
similarity index 100%
rename from src/m_player_main_wade.c_inc
rename to src/game/m_player_main_wade.c_inc
diff --git a/src/m_player_main_wade_snowball.c_inc b/src/game/m_player_main_wade_snowball.c_inc
similarity index 100%
rename from src/m_player_main_wade_snowball.c_inc
rename to src/game/m_player_main_wade_snowball.c_inc
diff --git a/src/m_player_main_wait.c_inc b/src/game/m_player_main_wait.c_inc
similarity index 100%
rename from src/m_player_main_wait.c_inc
rename to src/game/m_player_main_wait.c_inc
diff --git a/src/m_player_main_wait_bed.c_inc b/src/game/m_player_main_wait_bed.c_inc
similarity index 100%
rename from src/m_player_main_wait_bed.c_inc
rename to src/game/m_player_main_wait_bed.c_inc
diff --git a/src/m_player_main_wait_open_furniture.c_inc b/src/game/m_player_main_wait_open_furniture.c_inc
similarity index 100%
rename from src/m_player_main_wait_open_furniture.c_inc
rename to src/game/m_player_main_wait_open_furniture.c_inc
diff --git a/src/m_player_main_walk.c_inc b/src/game/m_player_main_walk.c_inc
similarity index 100%
rename from src/m_player_main_walk.c_inc
rename to src/game/m_player_main_walk.c_inc
diff --git a/src/m_player_main_wash_car.c_inc b/src/game/m_player_main_wash_car.c_inc
similarity index 100%
rename from src/m_player_main_wash_car.c_inc
rename to src/game/m_player_main_wash_car.c_inc
diff --git a/src/m_player_other_func.c_inc b/src/game/m_player_other_func.c_inc
similarity index 100%
rename from src/m_player_other_func.c_inc
rename to src/game/m_player_other_func.c_inc
diff --git a/src/m_player_sound.c_inc b/src/game/m_player_sound.c_inc
similarity index 100%
rename from src/m_player_sound.c_inc
rename to src/game/m_player_sound.c_inc
diff --git a/src/m_player_tools.c_inc b/src/game/m_player_tools.c_inc
similarity index 100%
rename from src/m_player_tools.c_inc
rename to src/game/m_player_tools.c_inc
diff --git a/src/m_player_vibration.c_inc b/src/game/m_player_vibration.c_inc
similarity index 100%
rename from src/m_player_vibration.c_inc
rename to src/game/m_player_vibration.c_inc
diff --git a/src/m_police_box.c b/src/game/m_police_box.c
similarity index 100%
rename from src/m_police_box.c
rename to src/game/m_police_box.c
diff --git a/src/m_post_office.c b/src/game/m_post_office.c
similarity index 100%
rename from src/m_post_office.c
rename to src/game/m_post_office.c
diff --git a/src/m_prenmi.c b/src/game/m_prenmi.c
similarity index 100%
rename from src/m_prenmi.c
rename to src/game/m_prenmi.c
diff --git a/src/m_private.c b/src/game/m_private.c
similarity index 100%
rename from src/m_private.c
rename to src/game/m_private.c
diff --git a/src/m_quest.c b/src/game/m_quest.c
similarity index 100%
rename from src/m_quest.c
rename to src/game/m_quest.c
diff --git a/src/m_random_field.c b/src/game/m_random_field.c
similarity index 100%
rename from src/m_random_field.c
rename to src/game/m_random_field.c
diff --git a/src/m_random_field_ovl.c b/src/game/m_random_field_ovl.c
similarity index 100%
rename from src/m_random_field_ovl.c
rename to src/game/m_random_field_ovl.c
diff --git a/src/m_rcp.c b/src/game/m_rcp.c
similarity index 100%
rename from src/m_rcp.c
rename to src/game/m_rcp.c
diff --git a/src/m_repay_ovl.c b/src/game/m_repay_ovl.c
similarity index 100%
rename from src/m_repay_ovl.c
rename to src/game/m_repay_ovl.c
diff --git a/src/m_roll_lib.c b/src/game/m_roll_lib.c
similarity index 100%
rename from src/m_roll_lib.c
rename to src/game/m_roll_lib.c
diff --git a/src/m_room_type.c b/src/game/m_room_type.c
similarity index 100%
rename from src/m_room_type.c
rename to src/game/m_room_type.c
diff --git a/src/m_scene.c b/src/game/m_scene.c
similarity index 100%
rename from src/m_scene.c
rename to src/game/m_scene.c
diff --git a/src/m_scene_ftr.c b/src/game/m_scene_ftr.c
similarity index 100%
rename from src/m_scene_ftr.c
rename to src/game/m_scene_ftr.c
diff --git a/src/m_select.c b/src/game/m_select.c
similarity index 100%
rename from src/m_select.c
rename to src/game/m_select.c
diff --git a/src/m_shop.c b/src/game/m_shop.c
similarity index 99%
rename from src/m_shop.c
rename to src/game/m_shop.c
index 660ac3dd..d21e016e 100644
--- a/src/m_shop.c
+++ b/src/game/m_shop.c
@@ -2367,7 +2367,6 @@ static void mSP_SelectRandomItemToAGB_Unit(mActor_name_t* item, xyz_t* wpos, int
}
}
-#ifndef MUST_MATCH
/* @nonmatching - minor float load/store issue with xyz_t.z & weird scheduling issue */
extern void mSP_SelectRandomItemToAGB() {
int i;
@@ -2444,16 +2443,6 @@ extern void mSP_SelectRandomItemToAGB() {
}
}
}
-#else
-const xyz_t lbl_806432b4 = { 0.0f, 0.0f, 0.0f };
-REL_SYMBOL_AT(lbl_806432b4, 0x806432b4)
-
-#include "orderfloats/806432c0_806432c8.inc"
-
-extern asm void mSP_SelectRandomItemToAGB() {
-#include "asm/803ebb44.s"
-}
-#endif
extern const char* mSP_ShopStatus2String(int status) {
static char dummy[] = "hahaha";
@@ -2476,4 +2465,4 @@ extern mActor_name_t mSP_GetRandomStationToyItemNo() {
return mRmTp_FtrIdx2FtrItemNo(0x42A + RANDOM(15), mRmTp_DIRECT_SOUTH);
}
-#include "../src/m_item_debug.c"
+#include "../src/game/m_item_debug.c"
diff --git a/src/m_skin_matrix.c b/src/game/m_skin_matrix.c
similarity index 100%
rename from src/m_skin_matrix.c
rename to src/game/m_skin_matrix.c
diff --git a/src/m_snowman.c b/src/game/m_snowman.c
similarity index 100%
rename from src/m_snowman.c
rename to src/game/m_snowman.c
diff --git a/src/m_soncho.c b/src/game/m_soncho.c
similarity index 100%
rename from src/m_soncho.c
rename to src/game/m_soncho.c
diff --git a/src/m_start_data_init.c b/src/game/m_start_data_init.c
similarity index 100%
rename from src/m_start_data_init.c
rename to src/game/m_start_data_init.c
diff --git a/src/m_string.c b/src/game/m_string.c
similarity index 100%
rename from src/m_string.c
rename to src/game/m_string.c
diff --git a/src/m_submenu.c b/src/game/m_submenu.c
similarity index 100%
rename from src/m_submenu.c
rename to src/game/m_submenu.c
diff --git a/src/m_submenu_ovl.c b/src/game/m_submenu_ovl.c
similarity index 100%
rename from src/m_submenu_ovl.c
rename to src/game/m_submenu_ovl.c
diff --git a/src/m_tag_ovl.c b/src/game/m_tag_ovl.c
similarity index 100%
rename from src/m_tag_ovl.c
rename to src/game/m_tag_ovl.c
diff --git a/src/m_time.c b/src/game/m_time.c
similarity index 100%
rename from src/m_time.c
rename to src/game/m_time.c
diff --git a/src/m_timeIn_ovl.c b/src/game/m_timeIn_ovl.c
similarity index 100%
rename from src/m_timeIn_ovl.c
rename to src/game/m_timeIn_ovl.c
diff --git a/src/m_titledemo.c b/src/game/m_titledemo.c
similarity index 96%
rename from src/m_titledemo.c
rename to src/game/m_titledemo.c
index b1f93b1a..df127d7d 100644
--- a/src/m_titledemo.c
+++ b/src/game/m_titledemo.c
@@ -19,10 +19,10 @@ static int S_tdemo_frame;
static u16 S_titledemo_to_play;
static u16 get_demo_header(int titledemo_no, int key) {
- static u16* pact_data_header_pt[mTD_TITLE_DEMO_NUM] = { pact0_head_table, pact1_head_table, pact2_head_table,
+ static u16* pact_data_head_pt[mTD_TITLE_DEMO_NUM] = { pact0_head_table, pact1_head_table, pact2_head_table,
pact3_head_table, pact4_head_table };
- return pact_data_header_pt[titledemo_no][key];
+ return pact_data_head_pt[titledemo_no][key];
}
extern int mTD_demono_get() {
diff --git a/src/m_trademark.c b/src/game/m_trademark.c
similarity index 100%
rename from src/m_trademark.c
rename to src/game/m_trademark.c
diff --git a/src/m_train_control.c b/src/game/m_train_control.c
similarity index 100%
rename from src/m_train_control.c
rename to src/game/m_train_control.c
diff --git a/src/m_vibctl.c b/src/game/m_vibctl.c
similarity index 99%
rename from src/m_vibctl.c
rename to src/game/m_vibctl.c
index a8f093d6..476663a4 100644
--- a/src/m_vibctl.c
+++ b/src/game/m_vibctl.c
@@ -189,7 +189,7 @@ static const u8 mVW_ki_wo_yusuru[13] = {
PAD_MOTOR_STOP
};
-static const u8 mVW_koronoda[14] = {
+static const u8 mVW_koronda[14] = {
PAD_MOTOR_RUMBLE,
PAD_MOTOR_RUMBLE,
PAD_MOTOR_RUMBLE,
@@ -206,7 +206,7 @@ static const u8 mVW_koronoda[14] = {
PAD_MOTOR_STOP
};
-static const u8 mVW_surprise[7] = {
+static const u8 mVW_suprise[7] = {
PAD_MOTOR_RUMBLE,
PAD_MOTOR_RUMBLE,
PAD_MOTOR_RUMBLE,
@@ -248,8 +248,8 @@ static const mVibWorkData_c mVW_data[mVibctl_VIB_PROG_NUM] = {
VIB_PROG(impact),
VIB_PROG(ki_ga_taoreru),
VIB_PROG(ki_wo_yusuru),
- VIB_PROG(koronoda),
- VIB_PROG(surprise),
+ VIB_PROG(koronda),
+ VIB_PROG(suprise),
VIB_PROG(dummy_b),
VIB_PROG(sample)
};
diff --git a/src/m_view.c b/src/game/m_view.c
similarity index 100%
rename from src/m_view.c
rename to src/game/m_view.c
diff --git a/src/m_warning_ovl.c b/src/game/m_warning_ovl.c
similarity index 100%
rename from src/m_warning_ovl.c
rename to src/game/m_warning_ovl.c
diff --git a/src/m_watch_my_step.c b/src/game/m_watch_my_step.c
similarity index 100%
rename from src/m_watch_my_step.c
rename to src/game/m_watch_my_step.c
diff --git a/src/main.c b/src/main.c
index 4a4afa76..7c54d7a9 100644
--- a/src/main.c
+++ b/src/main.c
@@ -86,7 +86,7 @@ u32 entry(void) {
return 0;
}
-void foresta_main(void) {
+void main(void) {
OSReport("どうぶつの森 main2 開始\n");
HotStartEntry = &entry;
}
diff --git a/src/static/Famicom/famicom.cpp b/src/static/Famicom/famicom.cpp
index e34f137f..d5f6b6aa 100644
--- a/src/static/Famicom/famicom.cpp
+++ b/src/static/Famicom/famicom.cpp
@@ -24,17 +24,17 @@
#include "JSystem/JUtility/JUTGamePad.h"
#include "nintendo_hi_0.h"
#include "m_nmibuf.h"
-//#include "JSystem/J2D/J2DGrafContext.h" // needed for ~J2DOrthoGraph
+// #include "JSystem/J2D/J2DGrafContext.h" // needed for ~J2DOrthoGraph
/* For some reason, there are a bunch of unused implicit one-byte 4-byte-aligned bss variables */
#ifdef MUST_MATCH
-static u8 __unused_implicit[0x40];
+static u8 __unused_implicit[0x40] ATTRIBUTE_ALIGN(32);
#endif
static u8 commentImageBuffer[CARD_COMMENT_SIZE + 0x5800];
u8 save_game_image = false;
FamicomCommon famicomCommon;
-static u8 famicomCommonSave[0x1980 + sizeof(FamicomSaveDataHeader)];
+u8 famicomCommonSave[0x1980 + sizeof(FamicomSaveDataHeader)];
u8** nesrom_filename_ptrs = nullptr;
static char* nesrom_filename_strbuf = nullptr;
u8 InputValid[4];
@@ -598,7 +598,7 @@ static void SetupExternCommentImage(u8* embedded_save_comment_img, u8* dst, u8*
switch (famicomCommon.memcard_game_header.flags0.comment_type) {
case MEMCARD_COMMENT_TYPE_NONE:
break;
- case MEMCARD_COMMENT_TYPE_COPY_ROM:
+ case MEMCARD_COMMENT_TYPE_COPY_ROM: {
memcpy(dst, rom_file_comment_img, CARD_COMMENT_SIZE);
u8 temp = dst[CARD_COMMENT_SIZE];
dst[CARD_COMMENT_SIZE] = '\0';
@@ -611,23 +611,26 @@ static void SetupExternCommentImage(u8* embedded_save_comment_img, u8* dst, u8*
break;
}
// Fallthrough in the case where "] ROM " doesn't exist
- case MEMCARD_COMMENT_TYPE_DEFAULT:
+ }
+ case MEMCARD_COMMENT_TYPE_DEFAULT: {
strncpy((char*)dst, "Animal Crossing", 32);
strncpy((char*)dst + 32, "NES Cassette Save Data ", 32);
dst += CARD_COMMENT_SIZE;
break;
- case MEMCARD_COMMENT_TYPE_COPY_EMBEDDED:
+ }
+ case MEMCARD_COMMENT_TYPE_COPY_EMBEDDED: {
memcpy(dst, embedded_save_comment_img, CARD_COMMENT_SIZE);
dst += CARD_COMMENT_SIZE;
embedded_save_comment_img += CARD_COMMENT_SIZE;
break;
+ }
}
rom_file_comment_img += CARD_COMMENT_SIZE;
switch (famicomCommon.memcard_game_header.flags0.banner_type) {
case MEMCARD_BANNER_TYPE_NONE:
break;
- case MEMCARD_BANNER_TYPE_DEFAULT:
+ case MEMCARD_BANNER_TYPE_DEFAULT: {
void* banner = JKRFileLoader::getGlbResource("/FAMICOM/newdisk_system.bti.szs");
ResTIMG* banner_data = (ResTIMG*)banner;
if (banner_data != nullptr) {
@@ -638,17 +641,20 @@ static void SetupExternCommentImage(u8* embedded_save_comment_img, u8* dst, u8*
famicomCommon.memcard_game_header.flags1.banner_fmt = banner_fmt;
}
break;
- case MEMCARD_BANNER_TYPE_COPY_ROM:
+ }
+ case MEMCARD_BANNER_TYPE_COPY_ROM: {
size = getBannerSizeFromFormat(famicomCommon.memcard_game_header.flags1.banner_fmt);
memcpy(dst, rom_file_comment_img, size);
dst += size;
break;
- case MEMCARD_BANNER_TYPE_COPY_EMBEDDED:
+ }
+ case MEMCARD_BANNER_TYPE_COPY_EMBEDDED: {
size = getBannerSizeFromFormat(famicomCommon.memcard_game_header.flags1.banner_fmt);
memcpy(dst, embedded_save_comment_img, size);
dst += size;
embedded_save_comment_img += size;
break;
+ }
}
size_t banner_size = getBannerSizeFromFormat(famicomCommon.memcard_game_header.flags1.banner_fmt);
@@ -656,7 +662,7 @@ static void SetupExternCommentImage(u8* embedded_save_comment_img, u8* dst, u8*
switch (famicomCommon.memcard_game_header.flags0.icon_type) {
case MEMCARD_ICON_TYPE_NONE:
break;
- case MEMCARD_ICON_TYPE_DEFAULT:
+ case MEMCARD_ICON_TYPE_DEFAULT: {
void* icon = JKRFileLoader::getGlbResource("/FAMICOM/newdisk.bti.szs");
ResTIMG* icon_data = (ResTIMG*)icon;
if (icon_data != nullptr) {
@@ -669,14 +675,17 @@ static void SetupExternCommentImage(u8* embedded_save_comment_img, u8* dst, u8*
size = getIconSizeFromFormat(icon_fmts);
}
break;
- case MEMCARD_ICON_TYPE_COPY_ROM:
+ }
+ case MEMCARD_ICON_TYPE_COPY_ROM: {
size = getIconSizeFromFormat(famicomCommon.memcard_game_header.icon_format);
memcpy(dst, rom_file_comment_img, size);
break;
- case MEMCARD_ICON_TYPE_COPY_EMBEDDED:
+ }
+ case MEMCARD_ICON_TYPE_COPY_EMBEDDED: {
size = getIconSizeFromFormat(famicomCommon.memcard_game_header.icon_format);
memcpy(dst, embedded_save_comment_img, size);
break;
+ }
}
size_t icon_size = getIconSizeFromFormat(famicomCommon.memcard_game_header.icon_format); // unnecessary
@@ -849,7 +858,7 @@ static s32 memcard_data_save(
case CARD_RESULT_READY:
break; // success
case CARD_RESULT_NOENT:
- case CARD_RESULT_INSSPACE:
+ case CARD_RESULT_INSSPACE: {
s32 del_res = CARDDelete(chan, temp_name);
if (del_res == CARD_RESULT_NOFILE) {
goto exit; // temp file didn't exist?
@@ -866,6 +875,7 @@ static s32 memcard_data_save(
goto exit; // still failed to create
}
break;
+ }
default:
// Failed to create file.
OSReport("ファイル作成失敗\n");
diff --git a/src/static/GBA/GBA.c b/src/static/GBA/GBA.c
deleted file mode 100644
index 1be09dd0..00000000
--- a/src/static/GBA/GBA.c
+++ /dev/null
@@ -1,93 +0,0 @@
-#include "GBA/GBAPriv.h"
-
-static GBASecParam SecParams[4];
-GBAControl __GBA[4];
-BOOL __GBAReset = FALSE;
-
-static BOOL OnReset(BOOL);
-
-static OSResetFunctionInfo ResetFunctionInfo = {OnReset, 127};
-
-static void ShortCommandProc(s32 chan) {
- GBAControl* gba;
- gba = &__GBA[chan];
-
- if (gba->ret != 0) {
- return;
- }
-
- if (gba->input[0] != 0 || gba->input[1] != 4) {
- gba->ret = 1;
- return;
- }
-
- gba->status[0] = gba->input[2] & GBA_JSTAT_MASK;
-}
-
-void GBAInit() {
- GBAControl* gba;
- s32 chan;
-
- for (chan = 0; chan < 4; ++chan) {
- gba = &__GBA[chan];
- gba->delay = OSMicrosecondsToTicks(60);
- OSInitThreadQueue(&gba->threadQueue);
- gba->param = &SecParams[chan];
- }
-
- OSInitAlarm();
- DSPInit();
-
- __GBAReset = FALSE;
- OSRegisterResetFunction(&ResetFunctionInfo);
-}
-
-s32 GBAGetStatusAsync(s32 chan, u8* status, GBACallback callback) {
- GBAControl* gba;
- gba = &__GBA[chan];
- if (gba->callback != NULL) {
- return GBA_BUSY;
- }
-
- gba->output[0] = 0;
- gba->status = status;
- gba->callback = callback;
- return __GBATransfer(chan, 1, 3, ShortCommandProc);
-}
-
-s32 GBAGetStatus(s32 chan, u8* status) {
- GBAControl* gba = &__GBA[chan];
- s32 ret = GBAGetStatusAsync(chan, status, __GBASyncCallback);
- if (ret != GBA_READY) {
- return ret;
- }
- return __GBASync(chan);
-}
-
-s32 GBAResetAsync(s32 chan, u8* status, GBACallback callback) {
- GBAControl* gba = &__GBA[chan];
- s32 ret;
- if (gba->callback != NULL) {
- return GBA_BUSY;
- }
- gba->output[0] = 0xFF;
- gba->status = status;
- gba->callback = callback;
- return __GBATransfer(chan, 1, 3, ShortCommandProc);
-}
-
-s32 GBAReset(s32 chan, u8* status) {
- GBAControl* gba = &__GBA[chan];
- s32 ret;
-
- ret = GBAResetAsync(chan, status, __GBASyncCallback);
- if (ret != GBA_READY) {
- return ret;
- }
- return __GBASync(chan);
-}
-
-BOOL OnReset(BOOL unused) {
- __GBAReset = TRUE;
- return TRUE;
-}
\ No newline at end of file
diff --git a/src/static/GBA/GBAGetProcessStatus.c b/src/static/GBA/GBAGetProcessStatus.c
deleted file mode 100644
index 00e76837..00000000
--- a/src/static/GBA/GBAGetProcessStatus.c
+++ /dev/null
@@ -1,39 +0,0 @@
-#include "GBA/GBAPriv.h"
-
-s32 GBAGetProcessStatus(s32 chan, u8* percentp) {
- BOOL enabled;
- s32 ret; // r29
- GBAControl* gba = &__GBA[chan]; // r25
- GBABootInfo* bootInfo; // r31
- u8 percent; // r30
- OSTime t; // r27
-
- bootInfo = &gba->bootInfo;
- enabled = OSDisableInterrupts();
-
- if (bootInfo->callback != NULL) {
- ret = 2;
- percent = (bootInfo->curOffset * 100) / bootInfo->realLength;
- if (bootInfo->begin != 0) {
- t = OSGetTime();
- if (OSTicksToMilliseconds(t - bootInfo->begin) < (5500)) {
- percent = ((t - bootInfo->begin) * percent) / OSMillisecondsToTicks((OSTime)5500);
- }
-
- if (percent >= 100) {
- percent = 100;
- }
- }
-
- if (percentp != NULL) {
- *percentp = percent;
- }
- } else if (gba->callback != NULL) {
- ret = 2;
- } else {
- ret = 0;
- }
-
- OSRestoreInterrupts(enabled);
- return ret;
-}
diff --git a/src/static/GBA/GBAJoyBoot.c b/src/static/GBA/GBAJoyBoot.c
deleted file mode 100644
index 424547cb..00000000
--- a/src/static/GBA/GBAJoyBoot.c
+++ /dev/null
@@ -1,375 +0,0 @@
-#include "GBA/GBAPriv.h"
-
-static volatile u8 D54[] = {
- 0x18, 0xFC, 0xC0, 0x80, 0x7f, 0x40, 0x3f, 0x01, 0x00, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x64,
- 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4b, 0x61, 0x77, 0x61, 0x73, 0x65, 0x64, 0x6f, 0x00,
- 0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0xAC, 0xC4, 0xF8, 0x08, 0x10, 0xBF, 0x18,
-};
-
-static void F23(s32 chan, s32 ret);
-static void F25(s32 chan, s32 ret);
-static void F27(s32 chan, s32 ret);
-static void F29(s32 chan, s32 ret);
-static void F31(s32 chan, s32 ret);
-static void F33(s32 chan, s32 ret);
-static void F35(s32 chan, s32 ret);
-static void F37(s32 chan, s32 ret);
-static void F39(s32 chan, s32 ret);
-
-static u32 F72(u32 crc, u32 src, vu8* keyp) {
- int i; // r31
- int poly =
- (keyp[0x13] << 8) + ((keyp[0x15] + (keyp[0x18] - (keyp[0x18] << 4))) - keyp[0x10]); // r30
- for (i = keyp[1]; i > keyp[11]; --i) {
- if ((src ^ crc) & 1) {
- crc >>= 1;
- crc ^= poly;
- } else {
- crc >>= 1;
- }
-
- src >>= 1;
- }
-
- return crc;
-}
-
-static u32 F95(u32 src, vu8* keyp) {
- src = (src * ((keyp[3] << keyp[0x16]) | ((keyp[1] | (keyp[4] << keyp[0x11])) | (keyp[4] << keyp[0x18])))) - (keyp[7] - keyp[6]);
- return src;
-}
-
-static void F104(s32 chan, s32 ret) {
- GBABootInfo* bootInfo;
- GBACallback callback;
-
- bootInfo = &__GBA[chan].bootInfo;
- bootInfo->begin = 0;
- if (bootInfo->callback != NULL) {
- callback = bootInfo->callback;
- bootInfo->callback = NULL;
- callback(chan, ret);
- }
-}
-
-s32 GBAJoyBootAsync(s32 chan, s32 paletteColor, s32 paletteSpeed, u8* programp, s32 length,
- u8* status, GBACallback callback) {
- int ret;
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
- u8 percent;
- if (chan & ~3) {
- return GBA_JOYBOOT_ERR_INVALID;
- } else if (length == 0 || GBA_JOYBOOT_PROGRAM_SIZE_MAX < length) {
- return GBA_JOYBOOT_ERR_INVALID;
- } else if (paletteSpeed < -4 || paletteSpeed > 4) {
- return GBA_JOYBOOT_ERR_INVALID;
- } else if (paletteColor < 0 || paletteColor > 6) {
- return GBA_JOYBOOT_ERR_INVALID;
- } else if (programp[0xac] * programp[0xad] * programp[0xae] * programp[0xaf] == 0) {
- return GBA_JOYBOOT_ERR_INVALID;
- }
-
- ret = GBAGetProcessStatus(chan, &percent);
- if (ret != 0) {
- return ret;
- }
-
- bootInfo->paletteColor = paletteColor;
- bootInfo->paletteSpeed = paletteSpeed;
- bootInfo->programp = programp;
- bootInfo->length = length;
- bootInfo->status = status;
- bootInfo->callback = callback;
- bootInfo->curOffset = D54[8];
- ret = GBAGetStatusAsync(chan, bootInfo->status, F23);
- if (ret != GBA_READY) {
- bootInfo->callback = NULL;
- }
-
- return ret;
-}
-static void F23(s32 chan, s32 ret) {
- GBAControl* gba;
- GBABootInfo* bootInfo;
-
- gba = &__GBA[chan];
- bootInfo = &__GBA[chan].bootInfo;
-
- if (ret != GBA_READY || (ret = GBAResetAsync(chan, bootInfo->status, F25)) != GBA_READY) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-
-static void F25(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY && *bootInfo->status != D54[37]) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- }
-
- if (ret != GBA_READY || (ret = GBAGetStatusAsync(chan, bootInfo->status, F27))) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-
-static void F27(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY && *bootInfo->status != D54[0]) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- }
-
- if (ret != GBA_READY || (ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F29))) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-
-static void F29(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY) {
- __GBAX02(chan, bootInfo->readbuf);
- } else {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-void __GBAX01(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
- int val200;
-
- if (ret == GBA_READY) {
- bootInfo->keyA = gba->param->keyA;
- bootInfo->keyB = gba->param->keyB;
- if (bootInfo->readbuf[3] == 0 || bootInfo->readbuf[2] == 0 ||
- (bootInfo->keyA & (D54[5] << 9)) == 0 || bootInfo->readbuf[1] == 0 ||
- (bootInfo->keyA >> 15) == 0 || bootInfo->readbuf[0] == 0) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- } else {
- bootInfo->i = ~D54[36] & bootInfo->length + D54[36];
- val200 = D54[20] << D54[33];
-
- if (bootInfo->i < val200) {
- bootInfo->i = val200;
- }
-
- bootInfo->realLength = bootInfo->i;
- bootInfo->i -= val200;
- bootInfo->i >>= D54[32];
- bootInfo->writebuf[0] = (u8)(bootInfo->keyB >> 0);
- bootInfo->writebuf[1] = (u8)(bootInfo->keyB >> 8);
- bootInfo->writebuf[3] = (u8)(bootInfo->keyB >> 24);
- bootInfo->writebuf[2] = (u8)(bootInfo->keyB >> 16);
- bootInfo->crc = (D54[38] + 1) << D54[34];
- bootInfo->curOffset = D54[8];
- bootInfo->begin = OSGetTime();
- bootInfo->firstXfer = TRUE;
- ret = GBAWriteAsync(chan, bootInfo->writebuf, bootInfo->status, F31);
- }
- }
-
- if (ret != GBA_READY) {
- F104(chan, ret);
- }
- gba->ret = ret;
-}
-
-static void F31(s32 chan, s32 ret) {
- GBAControl* gba;
- GBABootInfo* bootInfo;
- u32 writeWord;
-
- gba = &__GBA[chan];
- bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY) {
- if (bootInfo->firstXfer != FALSE) {
- bootInfo->firstXfer = FALSE;
- } else if ((*bootInfo->status & D54[20]) == 0 ||
- (*bootInfo->status & D54[42]) >> D54[33] !=
- (bootInfo->curOffset & D54[33]) >> D54[31]) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- goto exit;
- } else {
- bootInfo->curOffset -= D54[25] - D54[23];
- }
-
- if (bootInfo->curOffset <= bootInfo->realLength) {
- if (bootInfo->curOffset < bootInfo->realLength) {
- writeWord = D54[29];
- for (bootInfo->i = D54[29]; bootInfo->i < D54[33]; ++bootInfo->i) {
- if (bootInfo->length != 0) {
- writeWord |= *(bootInfo->programp++) << (bootInfo->i * D54[37]);
- --bootInfo->length;
- }
- }
-
- if (bootInfo->curOffset == D54[38]) {
- bootInfo->initialCode = writeWord;
- } else if (bootInfo->curOffset == D54[39]) {
- writeWord = chan << D54[37];
- }
-
- if (bootInfo->curOffset >= D54[2]) {
- bootInfo->crc = F72(bootInfo->crc, writeWord, &D54[19]);
- }
-
- if (bootInfo->curOffset == D54[40] + 0x100) {
- bootInfo->dummyWord[0] = writeWord;
- } else if (bootInfo->curOffset == D54[1] + 0x100) {
- bootInfo->i = D54[7];
- bootInfo->dummyWord[bootInfo->i] = writeWord;
- }
- } else {
- writeWord = bootInfo->crc | (bootInfo->curOffset << 16);
- }
-
- if (bootInfo->curOffset > D54[43]) {
- bootInfo->keyA = F95(bootInfo->keyA, &D54[20]);
- writeWord ^= bootInfo->keyA;
- writeWord ^= -(bootInfo->curOffset + D54[11] * 0x100000);
- writeWord ^= (D54[11] | (D54[11] << 24)) | (D54[19] << 16) | (D54[18] << 8);
- }
-
- bootInfo->writebuf[3] = (writeWord >> D54[0]);
- bootInfo->writebuf[0] = (writeWord >> D54[30]);
- bootInfo->writebuf[1] = (writeWord >> D54[41]);
- bootInfo->writebuf[2] = (writeWord >> D54[42]);
-
- if (bootInfo->curOffset == D54[1] + D54[1]) {
- bootInfo->dummyWord[2] = writeWord;
- }
-
- if (bootInfo->i < D54[33]) {
- bootInfo->dummyWord[3 - (1 - bootInfo->i)] = writeWord;
- bootInfo->dummyWord[5 - bootInfo->i] =
- bootInfo->dummyWord[(2 - (1 - bootInfo->i))] * bootInfo->dummyWord[4 - bootInfo->i];
- bootInfo->dummyWord[5 - (1 - bootInfo->i)] =
- bootInfo->dummyWord[((1 - bootInfo->i))] * bootInfo->dummyWord[1 - (1 - bootInfo->i)];
- bootInfo->dummyWord[7 - bootInfo->i] =
- bootInfo->dummyWord[(-(1 - bootInfo->i))] * bootInfo->dummyWord[4 - bootInfo->i];
- }
-
- ret = GBAWriteAsync(chan, bootInfo->writebuf, bootInfo->status, F31);
- } else {
- bootInfo->start = OSGetTick();
- ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F33);
- }
- }
-exit:
- if (ret != GBA_READY) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-static void F33(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY) {
- for (bootInfo->i = 33; bootInfo->i < 36; ++bootInfo->i) {
- ret = (((bootInfo->readbuf[3] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 24)) |
- (bootInfo->readbuf[2] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 16)) |
- (bootInfo->readbuf[1] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 8)) |
- (bootInfo->readbuf[0] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 0)))
- << 24);
-
- if (ret == GBA_READY) {
- break;
- }
- }
-
- if (ret != GBA_READY) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- } else {
- bootInfo->start = OSGetTick();
- ret = GBAGetStatusAsync(chan, bootInfo->status, F35);
- }
- }
-
- if (ret != GBA_READY) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-static void F35(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == 0) {
- if (OSSecondsToTicks(10) <= OSGetTick() - bootInfo->start) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- } else if ((*bootInfo->status & 0x32) != 0) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- } else if (*bootInfo->status != 8) {
- ret = GBAGetStatusAsync(chan, bootInfo->status, F35);
- } else {
- __GBASetDelay(chan, OSMillisecondsToTicks(8));
- ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F37);
- __GBASetDelay(chan, OSMicrosecondsToTicks(60));
- }
- }
-
- if (ret != GBA_READY) {
- F104(chan, ret);
- }
-
- gba->ret = ret;
-}
-
-static void F37(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY) {
- if ((((bootInfo->readbuf[3] ^ (bootInfo->initialCode >> 24)) |
- (bootInfo->readbuf[2] ^ (bootInfo->initialCode >> 16)) |
- (bootInfo->readbuf[1] ^ (bootInfo->initialCode >> 8)) |
- (bootInfo->readbuf[0] ^ (bootInfo->initialCode >> 0)))
- << 24) != 0) {
- ret = GBA_JOYBOOT_UNKNOWN_STATE;
- } else {
- ret = GBAWriteAsync(chan, bootInfo->readbuf, bootInfo->status, F39);
- }
- }
-
- if (ret != GBA_READY) {
- F104(chan, ret);
- }
- gba->ret = ret;
-}
-
-static void F39(s32 chan, s32 ret) {
- GBAControl* gba = &__GBA[chan];
- GBABootInfo* bootInfo = &__GBA[chan].bootInfo;
-
- if (ret == GBA_READY) {
- *bootInfo->status = 0;
- }
-
- F104(chan, ret);
- gba->ret = ret;
-}
-
-s32 GBAJoyBoot(s32 chan, s32 paletteColor, s32 paletteSpeed, u8* programp, s32 length, u8* status) {
- s32 ret = GBAJoyBootAsync(chan, paletteColor, paletteSpeed, programp, length, status,
- __GBASyncCallback);
- if (ret != GBA_READY) {
- return ret;
- }
-
- return __GBASync(chan);
-}
\ No newline at end of file
diff --git a/src/static/GBA/GBAKey.c b/src/static/GBA/GBAKey.c
deleted file mode 100644
index 65888eae..00000000
--- a/src/static/GBA/GBAKey.c
+++ /dev/null
@@ -1,114 +0,0 @@
-#include "GBA/GBAPriv.h"
-
-static volatile u8 D35[] = {
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 33, 2, 255, 0, 33, 19, 6, 18, 3, 18, 4,
- 19, 5, 0, 146, 0, 255, 0, 136, 255, 255, 0, 137, 255, 255, 0, 138, 255, 255, 0,
- 139, 255, 255, 143, 0, 139, 0, 140, 0, 2, 191, 128, 126, 22, 252, 220, 209, 22, 253,
- 0, 0, 22, 251, 0, 1, 2, 191, 128, 120, 36, 255, 2, 128, 171, 186, 2, 148, 0,
- 41, 142, 0, 2, 191, 128, 120, 32, 255, 2, 64, 15, 255, 31, 94, 0, 155, 0, 0,
- 0, 153, 0, 32, 0, 135, 0, 0, 0, 128, 0, 65, 2, 159, 128, 188, 2, 191, 0,
- 140, 2, 191, 128, 126, 22, 252, 220, 209, 22, 253, 0, 3, 22, 251, 0, 1, 143, 0,
- 2, 191, 128, 120, 2, 128, 205, 209, 2, 148, 0, 76, 38, 255, 2, 128, 0, 1, 2,
- 149, 0, 94, 2, 128, 0, 2, 2, 149, 128, 0, 2, 159, 0, 76, 0, 33, 142, 0,
- 2, 191, 128, 120, 36, 255, 2, 191, 128, 120, 36, 255, 2, 191, 128, 120, 36, 255, 2,
- 191, 128, 120, 0, 197, 255, 255, 2, 64, 15, 255, 28, 158, 2, 191, 128, 120, 0, 199,
- 255, 255, 2, 191, 128, 120, 0, 198, 255, 255, 2, 191, 128, 120, 0, 192, 255, 255, 2,
- 191, 128, 120, 32, 255, 2, 64, 15, 255, 31, 94, 2, 191, 128, 120, 33, 255, 2, 191,
- 128, 120, 35, 255, 18, 5, 18, 6, 2, 159, 128, 181, 0, 33, 129, 0, 0, 129, 0,
- 16, 16, 32, 27, 62, 0, 223, 20, 86, 3, 64, 255, 208, 132, 23, 0, 128, 0, 0,
- 0, 134, 0, 0, 0, 130, 0, 31, 0, 222, 21, 246, 20, 8, 0, 223, 23, 102, 3,
- 64, 0, 255, 31, 95, 2, 191, 136, 229, 31, 28, 129, 30, 25, 30, 20, 120, 31, 252,
- 31, 94, 2, 191, 136, 9, 2, 191, 135, 35, 0, 6, 129, 6, 0, 222, 22, 108, 20,
- 4, 2, 64, 255, 0, 0, 223, 18, 49, 21, 120, 3, 64, 0, 255, 31, 95, 2, 191,
- 136, 229, 31, 28, 129, 30, 25, 30, 20, 120, 31, 252, 31, 94, 2, 191, 136, 9, 2,
- 191, 135, 35, 129, 0, 137, 0, 0, 209, 0, 5, 153, 0, 130, 0, 2, 149, 0, 229,
- 2, 145, 0, 243, 0, 130, 0, 16, 0, 134, 0, 1, 0, 208, 23, 27, 145, 0, 125,
- 0, 77, 0, 21, 1, 31, 95, 0, 223, 0, 3, 21, 4, 2, 191, 136, 9, 2, 159,
- 1, 2, 0, 130, 0, 17, 0, 223, 0, 3, 21, 1, 31, 95, 0, 222, 16, 67, 2,
- 64, 255, 240, 2, 191, 136, 229, 2, 159, 1, 2, 0, 130, 0, 16, 0, 134, 0, 1,
- 0, 208, 18, 133, 145, 0, 77, 0, 21, 1, 0, 222, 0, 3, 20, 4, 31, 94, 2,
- 191, 136, 9, 0, 131, 0, 19, 27, 126, 137, 35, 0, 131, 0, 19, 0, 223, 0, 7,
- 0, 222, 17, 184, 2, 64, 255, 240, 31, 94, 2, 191, 129, 244, 241, 0, 2, 191, 132,
- 88, 143, 0, 0, 130, 0, 21, 0, 222, 0, 6, 0, 218, 22, 91, 2, 191, 136, 229,
- 20, 253, 20, 3, 27, 94, 27, 92, 0, 130, 0, 22, 0, 222, 23, 35, 20, 244, 0,
- 218, 22, 107, 2, 191, 136, 229, 177, 0, 2, 144, 1, 46, 129, 0, 20, 253, 142, 0,
- 0, 223, 20, 145, 3, 64, 208, 240, 28, 191, 0, 223, 20, 104, 0, 209, 17, 252, 21,
- 124, 28, 223, 0, 209, 17, 184, 153, 0, 20, 24, 20, 120, 31, 94, 31, 254, 31, 101,
- 54, 0, 20, 2, 31, 102, 55, 0, 21, 1, 76, 0, 21, 24, 153, 0, 53, 0, 76,
- 0, 0, 223, 0, 18, 63, 0, 0, 255, 0, 18, 20, 112, 0, 223, 0, 17, 63, 0,
- 0, 255, 0, 17, 31, 165, 21, 1, 31, 230, 241, 0, 21, 248, 245, 0, 31, 95, 31,
- 125, 129, 0, 0, 222, 0, 17, 52, 0, 137, 0, 0, 223, 0, 18, 53, 0, 76, 0,
- 0, 223, 0, 18, 21, 120, 76, 0, 137, 0, 31, 254, 21, 8, 59, 0, 0, 222, 0,
- 17, 62, 0, 0, 223, 0, 18, 59, 0, 28, 191, 0, 218, 21, 241, 53, 0, 2, 149,
- 1, 146, 0, 223, 16, 226, 21, 8, 31, 95, 0, 223, 16, 59, 121, 0, 57, 0, 48,
- 128, 0, 254, 0, 34, 0, 220, 18, 41, 0, 221, 17, 248, 92, 0, 240, 0, 31, 229,
- 48, 128, 2, 159, 1, 165, 0, 223, 16, 202, 21, 8, 31, 95, 0, 223, 16, 67, 117,
- 0, 57, 0, 48, 128, 0, 254, 0, 34, 0, 220, 18, 89, 0, 221, 22, 254, 76, 0,
- 240, 0, 31, 229, 48, 128, 0, 254, 0, 35, 0, 218, 0, 8, 0, 216, 0, 9, 0,
- 155, 0, 32, 0, 153, 0, 8, 0, 135, 0, 0, 2, 191, 128, 139, 2, 223, 0, 0,
- 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
- 0, 0, 0,
-};
-
-static s32 F152(DSPTaskInfo* task) {
- s32 chan; // r31
- GBAControl* gba; // r29
-
- for (chan = 0; chan < 4; ++chan) {
- gba = &__GBA[chan];
- if (&gba->task == task) {
- return chan;
- }
- }
-
- ASSERT(0 <= chan && chan < 4);
- OSPanic(__FILE__, 169, "GBA - unexpected dsp call");
- return -1;
-}
-
-static void F23(void* task) {
- s32 chan; // r31
- GBAControl* gba; // r30
- chan = F152(task);
- gba = &__GBA[chan];
- DSPSendMailToDSP(0xabba0000);
- while (DSPCheckMailToDSP()) {}
- DSPSendMailToDSP((u32)gba->param);
- while (DSPCheckMailToDSP()) {}
-}
-
-void F25(void* task) {
- s32 chan; // r31
- chan = F152(task);
- __GBAX01(chan, 0);
-}
-
-void __GBAX02(s32 chan, u8* readbuf) {
- GBAControl* gba; // r28
- GBABootInfo* bootInfo; // r29
- GBASecParam* param; // r30
- DSPTaskInfo* task; // r31
-
- gba = &__GBA[chan];
- bootInfo = &__GBA[chan].bootInfo;
- param = gba->param;
- memcpy(param, readbuf, 4);
- param->paletteColor = bootInfo->paletteColor;
- param->paletteSpeed = bootInfo->paletteSpeed;
- param->length = bootInfo->length;
- param->out = ¶m->keyA;
- DCInvalidateRange(¶m->keyA, 32);
- DCFlushRange(param, 32);
- task = &gba->task;
- task->priority = 255;
- task->iram_mmem_addr = (u16*)OSCachedToPhysical(D35);
- task->iram_length = sizeof(D35);
- task->iram_addr = 0;
- task->dsp_init_vector = 16;
- task->init_cb = F23;
- task->res_cb = NULL;
- task->done_cb = F25;
- task->req_cb = NULL;
- DSPAddTask(task);
-}
diff --git a/src/static/JSystem/J2DGraph/.gitkeep b/src/static/JSystem/J2DGraph/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/src/static/JSystem/JFramework/.gitkeep b/src/static/JSystem/JFramework/.gitkeep
new file mode 100644
index 00000000..e69de29b
diff --git a/src/static/JSystem/JGadget/linklist.cpp b/src/static/JSystem/JGadget/linklist.cpp
index 9232b684..fd25a7d7 100644
--- a/src/static/JSystem/JGadget/linklist.cpp
+++ b/src/static/JSystem/JGadget/linklist.cpp
@@ -6,10 +6,10 @@
namespace JGadget {
TNodeLinkList::~TNodeLinkList() {
- #ifdef DEBUG
+#if DEBUG
Confirm();
clear();
- #endif
+#endif
JGADGET_ASSERTWARN(empty());
//this->oNode_.clear_();
}
@@ -190,4 +190,3 @@ bool TNodeLinkList::Confirm_iterator(const_iterator it) const {
}
} // namespace JGadget
-
diff --git a/src/static/JSystem/JKernel/JKRAramArchive.cpp b/src/static/JSystem/JKernel/JKRAramArchive.cpp
index f28a2917..659fa44e 100644
--- a/src/static/JSystem/JKernel/JKRAramArchive.cpp
+++ b/src/static/JSystem/JKernel/JKRAramArchive.cpp
@@ -110,7 +110,7 @@ void JKRAramArchive::unmountFixed() {
mIsMounted = false;
}
-#ifdef DEBUG
+#if DEBUG
CW_FORCE_STRINGS(JKRAramArchive_cpp, __FILE__, "isMounted()",
"mMountCount == 1")
#endif
diff --git a/src/static/JSystem/JKernel/JKRCompArchive.cpp b/src/static/JSystem/JKernel/JKRCompArchive.cpp
index 11e8c342..d0a3ee64 100644
--- a/src/static/JSystem/JKernel/JKRCompArchive.cpp
+++ b/src/static/JSystem/JKernel/JKRCompArchive.cpp
@@ -22,7 +22,7 @@ JKRCompArchive::JKRCompArchive(long entryNum, EMountDirection mountDirection)
}
}
-#ifdef DEBUG
+#if DEBUG
void stringGen() {
JUT_PANIC("isMounted()");
JUT_PANIC("mMountCount == 1");
diff --git a/src/static/JSystem/JKernel/JKRDvdArchive.cpp b/src/static/JSystem/JKernel/JKRDvdArchive.cpp
index ed23f8a4..1835658f 100644
--- a/src/static/JSystem/JKernel/JKRDvdArchive.cpp
+++ b/src/static/JSystem/JKernel/JKRDvdArchive.cpp
@@ -55,7 +55,7 @@ JKRDvdArchive::~JKRDvdArchive()
}
}
-#ifdef DEBUG
+#if DEBUG
CW_FORCE_STRINGS(JKRDvdArchive_cpp, __FILE__, "isMounted()", "mMountCount == 1")
#endif
diff --git a/src/static/JSystem/JKernel/JKRMemArchive.cpp b/src/static/JSystem/JKernel/JKRMemArchive.cpp
index b98d7801..5cba1ec4 100644
--- a/src/static/JSystem/JKernel/JKRMemArchive.cpp
+++ b/src/static/JSystem/JKernel/JKRMemArchive.cpp
@@ -54,7 +54,7 @@ JKRMemArchive::~JKRMemArchive()
}
}
-#ifdef DEBUG // function is needed to generate certain strings first, however this is not what the original function looks like
+#if DEBUG // function is needed to generate certain strings first, however this is not what the original function looks like
void JKRMemArchive::fixedInit(s32)
{
JUT_ASSERT(isMounted());
diff --git a/src/static/MSL_C/rand.c b/src/static/MSL_C.PPCEABI.bare.H/rand.c
similarity index 94%
rename from src/static/MSL_C/rand.c
rename to src/static/MSL_C.PPCEABI.bare.H/rand.c
index ca254e79..4e9a758c 100644
--- a/src/static/MSL_C/rand.c
+++ b/src/static/MSL_C.PPCEABI.bare.H/rand.c
@@ -1,12 +1,12 @@
-#include "MSL_C/rand.h"
-
-static u32 next = 1;
-
-void srand(u32 seed){
- next = seed;
-}
-
-int rand(){
- next = next * 1103515245 + 12345;
- return ((next >> 16) & 0x7fff);
+#include "MSL_C/rand.h"
+
+static u32 next = 1;
+
+void srand(u32 seed){
+ next = seed;
+}
+
+int rand(){
+ next = next * 1103515245 + 12345;
+ return ((next >> 16) & 0x7fff);
}
\ No newline at end of file
diff --git a/src/static/Runtime.PPCEABI.H/__init_cpp_exceptions.cpp b/src/static/Runtime.PPCEABI.H/__init_cpp_exceptions.cpp
new file mode 100644
index 00000000..15235157
--- /dev/null
+++ b/src/static/Runtime.PPCEABI.H/__init_cpp_exceptions.cpp
@@ -0,0 +1,50 @@
+static int fragmentID = -2;
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+typedef struct __eti_init_info {
+ void* eti_start;
+ void* eti_end;
+ void* code_start;
+ unsigned long code_size;
+} __eti_init_info;
+
+__declspec(section ".init") extern __eti_init_info _eti_init_info[];
+
+extern void __init_cpp_exceptions(void);
+extern void __fini_cpp_exceptions(void);
+extern void suspend(void);
+extern void __unregister_fragment(int fragmentID);
+extern int __register_fragment(void* _eti_init_info, char* TOC);
+extern void __destroy_global_chain(void);
+
+#ifdef __cplusplus
+}
+#endif
+
+asm char* GetR2(void) {
+ // clang-format off
+ nofralloc
+ mr r3, r2
+ blr
+ // clang-format on
+}
+
+extern void __fini_cpp_exceptions(void) {
+ if (fragmentID != -2) {
+ __unregister_fragment(fragmentID);
+ fragmentID = -2;
+ }
+}
+
+extern void __init_cpp_exceptions(void) {
+ if (fragmentID == -2) {
+ fragmentID = __register_fragment(&_eti_init_info, GetR2());
+ }
+}
+
+__declspec(section ".ctors") extern void* const __init_cpp_exceptions_reference = __init_cpp_exceptions;
+__declspec(section ".dtors") extern void* const __destroy_global_chain_reference = __destroy_global_chain;
+__declspec(section ".dtors") extern void* const __fini_cpp_exceptions_reference = __fini_cpp_exceptions;
diff --git a/src/static/runtime/__mem.c b/src/static/Runtime.PPCEABI.H/__mem.c
similarity index 100%
rename from src/static/runtime/__mem.c
rename to src/static/Runtime.PPCEABI.H/__mem.c
diff --git a/src/static/Runtime.PPCEABI.H/global_destructor_chain.c b/src/static/Runtime.PPCEABI.H/global_destructor_chain.c
new file mode 100644
index 00000000..a93e742f
--- /dev/null
+++ b/src/static/Runtime.PPCEABI.H/global_destructor_chain.c
@@ -0,0 +1,28 @@
+typedef struct DestructorChain {
+ struct DestructorChain* next;
+ void* destructor;
+ void* object;
+} DestructorChain;
+
+DestructorChain* __global_destructor_chain;
+
+void __destroy_global_chain(void) {
+ DestructorChain* gdc;
+
+ while ((gdc = __global_destructor_chain) != 0) {
+ __global_destructor_chain = gdc->next;
+ ((void (*)(void*, short))gdc->destructor)(gdc->object, -1);
+ }
+}
+
+void* __register_global_object(void* object, void* destructor, void* regmem) {
+ ((DestructorChain*)regmem)->next = __global_destructor_chain;
+ ((DestructorChain*)regmem)->destructor = destructor;
+ ((DestructorChain*)regmem)->object = object;
+ __global_destructor_chain = (DestructorChain*)regmem;
+
+ return object;
+}
+
+__declspec(section ".dtors") static void* const __destroy_global_chain_reference =
+ __destroy_global_chain;
diff --git a/src/static/TRK/dispatch.c b/src/static/TRK/dispatch.c
deleted file mode 100644
index 54c83acd..00000000
--- a/src/static/TRK/dispatch.c
+++ /dev/null
@@ -1,31 +0,0 @@
-#include "TRK/dispatch.h"
-#include "TRK/msghndlr.h"
-
-u32 gTRKDispatchTableSize;
-
-TRKResult (*gTRKDispatchTable[])(MessageBuffer*) = {&TRKDoUnsupported, &TRKDoConnect, &TRKDoDisconnect,
-&TRKDoReset, &TRKDoVersions, &TRKDoSupportMask, &TRKDoCPUType, &TRKDoUnsupported,&TRKDoUnsupported,
-&TRKDoUnsupported,&TRKDoUnsupported,&TRKDoUnsupported,&TRKDoUnsupported,&TRKDoUnsupported,
-&TRKDoUnsupported,&TRKDoUnsupported, &TRKDoReadMemory, &TRKDoWriteMemory, &TRKDoReadRegisters,
-&TRKDoWriteRegisters, &TRKDoUnsupported,&TRKDoUnsupported, &TRKDoFlushCache, &TRKDoSetOption,
-&TRKDoContinue, &TRKDoStep, &TRKDoStop};
-
-TRKResult TRKInitializeDispatcher(){
- gTRKDispatchTableSize = 32;
- return TRKSuccess;
-}
-
-TRKResult TRKDispatchMessage(MessageBuffer* mbuf){
-
- u8 buf;
- s16 val;
- TRKResult res = TRKError500;
-
- TRKSetBufferPosition(mbuf, 0);
- TRKReadBuffer1_ui8(mbuf, &buf);
- val = buf;
- if ((val & 0xFF) < gTRKDispatchTableSize){
- res = gTRKDispatchTable[buf](mbuf);
- }
- return res;
-}
\ No newline at end of file
diff --git a/src/static/TRK/dolphin_trk.c b/src/static/TRK/dolphin_trk.c
deleted file mode 100644
index 3378060f..00000000
--- a/src/static/TRK/dolphin_trk.c
+++ /dev/null
@@ -1,76 +0,0 @@
-#include "TRK/_mem_trk.h"
-
-__declspec(section ".init") asm void __TRK_reset(void){
- nofralloc
-/* 80005468 9421FFE0 */ stwu r1, -0x20(r1)
-/* 8000546C 7C0802A6 */ mflr r0
-/* 80005470 3C608021 */ lis r3, lc_base@ha
-/* 80005474 90010024 */ stw r0, 0x24(r1)
-/* 80005478 3863B550 */ addi r3, r3, lc_base@l
-/* 8000547C BF61000C */ stmw r27, 0xc(r1)
-/* 80005480 80630000 */ lwz r3, 0(r3)
-/* 80005484 28030044 */ cmplwi r3, 0x44
-/* 80005488 4181002C */ bgt- lbl_800054b4
-/* 8000548C 38034000 */ addi r0, r3, 0x4000
-/* 80005490 28000044 */ cmplwi r0, 0x44
-/* 80005494 40810020 */ ble- lbl_800054b4
-/* 80005498 3C608021 */ lis r3, gTRKCPUState@ha
-/* 8000549C 3863B078 */ addi r3, r3, gTRKCPUState@l
-/* 800054A0 80030238 */ lwz r0, 0x238(r3)
-/* 800054A4 540007BF */ clrlwi. r0, r0, 0x1e
-/* 800054A8 4182000C */ beq- lbl_800054b4
-/* 800054AC 38A00044 */ li r5, 0x44
-/* 800054B0 4800000C */ b lbl_800054bc
-lbl_800054b4:
-/* 800054B4 3C608000 */ lis r3, 0x8000
-/* 800054B8 38A30044 */ addi r5, r3, 0x44
-lbl_800054bc:
-/* 800054BC 3C80800E */ lis r4, TRK_ISR_OFFSETS@ha
-/* 800054C0 3C608021 */ lis r3, gTRKCPUState@ha
-/* 800054C4 83A50000 */ lwz r29, 0(r5)
-/* 800054C8 3BE42218 */ addi r31, r4, TRK_ISR_OFFSETS@l
-/* 800054CC 3BC3B078 */ addi r30, r3, gTRKCPUState@l
-/* 800054D0 3B800000 */ li r28, 0x0
-lbl_800054d4:
-/* 800054D4 38000001 */ li r0, 0x1
-/* 800054D8 7C00E030 */ slw r0, r0, r28
-/* 800054DC 7FA00039 */ and. r0, r29, r0
-/* 800054E0 41820068 */ beq- lbl_80005548
-/* 800054E4 3C608021 */ lis r3, lc_base@ha
-/* 800054E8 80DF0000 */ lwz r6, 0(r31)
-/* 800054EC 3863B550 */ addi r3, r3, lc_base@l
-/* 800054F0 80630000 */ lwz r3, 0(r3)
-/* 800054F4 7C061840 */ cmplw r6, r3
-/* 800054F8 41800024 */ blt- lbl_8000551c
-/* 800054FC 38034000 */ addi r0, r3, 0x4000
-/* 80005500 7C060040 */ cmplw r6, r0
-/* 80005504 40800018 */ bge- lbl_8000551c
-/* 80005508 801E0238 */ lwz r0, 0x238(r30)
-/* 8000550C 540007BF */ clrlwi. r0, r0, 0x1e
-/* 80005510 4182000C */ beq- lbl_8000551c
-/* 80005514 7CDB3378 */ mr r27, r6
-/* 80005518 4800000C */ b lbl_80005524
-lbl_8000551c:
-/* 8000551C 54C000BE */ clrlwi r0, r6, 2
-/* 80005520 641B8000 */ oris r27, r0, 0x8000
-lbl_80005524:
-/* 80005524 3C808000 */ lis r4, func_80003534@ha
-/* 80005528 7F63DB78 */ mr r3, r27
-/* 8000552C 38043534 */ addi r0, r4, func_80003534@l
-/* 80005530 38A00100 */ li r5, 0x100
-/* 80005534 7C803214 */ add r4, r0, r6
-/* 80005538 4BFFDFD9 */ bl TRK_memcpy
-/* 8000553C 7F63DB78 */ mr r3, r27
-/* 80005540 38800100 */ li r4, 0x100
-/* 80005544 480A125D */ bl TRK_flush_cache
-lbl_80005548:
-/* 80005548 3B9C0001 */ addi r28, r28, 0x1
-/* 8000554C 3BFF0004 */ addi r31, r31, 0x4
-/* 80005550 2C1C000E */ cmpwi r28, 0xe
-/* 80005554 4081FF80 */ ble+ lbl_800054d4
-/* 80005558 BB61000C */ lmw r27, 0xc(r1)
-/* 8000555C 80010024 */ lwz r0, 0x24(r1)
-/* 80005560 7C0803A6 */ mtlr r0
-/* 80005564 38210020 */ addi r1, r1, 0x20
-/* 80005568 4E800020 */ blr
-}
diff --git a/src/static/TRK/init/mem_TRK.c b/src/static/TRK/init/mem_TRK.c
deleted file mode 100644
index c2cdf56c..00000000
--- a/src/static/TRK/init/mem_TRK.c
+++ /dev/null
@@ -1,18 +0,0 @@
-#include "TRK/_mem_trk.h"
-
-__declspec(section ".init") void* TRK_memset(void* dst, int val, size_t size){
- TRK_fill_mem(dst, val, size);
-
- return dst;
-}
-
-__declspec(section ".init") void *TRK_memcpy(void *dst, const void *src, size_t n)
-{
- const unsigned char *s = (const unsigned char *)src - 1;
- unsigned char *d = (unsigned char *)dst - 1;
-
- n++;
- while (--n != 0)
- *++d = *++s;
- return dst;
-}
diff --git a/src/static/TRK/usr_put.c b/src/static/TRK/usr_put.c
deleted file mode 100644
index 2ef1b4ef..00000000
--- a/src/static/TRK/usr_put.c
+++ /dev/null
@@ -1,25 +0,0 @@
-#include "TRK/usr_put.h"
-#include "TRK/msghndlr.h"
-
-extern void OSReport(const char*);
-
-TRKResult usr_puts_serial(const char* putString){
- TRKResult res = 0;
- char tstring;
- char buff[2];
- int con;
- while ((res == 0) && (tstring = *putString++) != 0){
- con = GetTRKConnected();
- buff[0] = tstring;
- buff[1] = '\0';
- SetTRKConnected(0);
- OSReport(buff);
- SetTRKConnected(con);
- res = 0;
- }
- return res;
-}
-
-TRKResult usr_put_initialize(){
-
-}
\ No newline at end of file
diff --git a/src/static/asm/__exception.s b/src/static/TRK_MINNOW_DOLPHIN/__exception.s
similarity index 100%
rename from src/static/asm/__exception.s
rename to src/static/TRK_MINNOW_DOLPHIN/__exception.s
diff --git a/src/static/TRK_MINNOW_DOLPHIN/dispatch.c b/src/static/TRK_MINNOW_DOLPHIN/dispatch.c
new file mode 100644
index 00000000..a253a3f4
--- /dev/null
+++ b/src/static/TRK_MINNOW_DOLPHIN/dispatch.c
@@ -0,0 +1,38 @@
+#include "TRK/dispatch.h"
+#include "TRK/msghndlr.h"
+
+u32 gTRKDispatchTableSize;
+
+TRKResult (*gTRKDispatchTable[])(MessageBuffer*) = {
+ &TRKDoUnsupported, &TRKDoConnect, &TRKDoDisconnect,
+ &TRKDoReset, &TRKDoVersions, &TRKDoSupportMask,
+ &TRKDoCPUType, &TRKDoUnsupported, &TRKDoUnsupported,
+ &TRKDoUnsupported, &TRKDoUnsupported, &TRKDoUnsupported,
+ &TRKDoUnsupported, &TRKDoUnsupported, &TRKDoUnsupported,
+ &TRKDoUnsupported, &TRKDoReadMemory, &TRKDoWriteMemory,
+ &TRKDoReadRegisters, &TRKDoWriteRegisters, &TRKDoUnsupported,
+ &TRKDoUnsupported, &TRKDoFlushCache, &TRKDoSetOption,
+ &TRKDoContinue, &TRKDoStep, &TRKDoStop,
+ &TRKDoUnsupported, &TRKDoUnsupported, &TRKDoUnsupported,
+ &TRKDoUnsupported, &TRKDoUnsupported, NULL,
+};
+
+TRKResult TRKInitializeDispatcher() {
+ gTRKDispatchTableSize = 32;
+ return TRKSuccess;
+}
+
+TRKResult TRKDispatchMessage(MessageBuffer* mbuf) {
+
+ u8 buf;
+ s16 val;
+ TRKResult res = TRKError500;
+
+ TRKSetBufferPosition(mbuf, 0);
+ TRKReadBuffer1_ui8(mbuf, &buf);
+ val = buf;
+ if ((val & 0xFF) < gTRKDispatchTableSize) {
+ res = gTRKDispatchTable[buf](mbuf);
+ }
+ return res;
+}
diff --git a/src/static/TRK_MINNOW_DOLPHIN/dolphin_trk.c b/src/static/TRK_MINNOW_DOLPHIN/dolphin_trk.c
new file mode 100644
index 00000000..062bf17a
--- /dev/null
+++ b/src/static/TRK_MINNOW_DOLPHIN/dolphin_trk.c
@@ -0,0 +1,5 @@
+#include "TRK/_mem_trk.h"
+
+__declspec(section ".init") asm void __TRK_reset(void){
+
+}
diff --git a/src/static/TRK/mainloop.c b/src/static/TRK_MINNOW_DOLPHIN/mainloop.c
similarity index 100%
rename from src/static/TRK/mainloop.c
rename to src/static/TRK_MINNOW_DOLPHIN/mainloop.c
diff --git a/src/static/TRK_MINNOW_DOLPHIN/mem_TRK.c b/src/static/TRK_MINNOW_DOLPHIN/mem_TRK.c
new file mode 100644
index 00000000..5b9210aa
--- /dev/null
+++ b/src/static/TRK_MINNOW_DOLPHIN/mem_TRK.c
@@ -0,0 +1,87 @@
+#include "TRK/_mem_trk.h"
+
+__declspec(section ".init") void *TRK_memcpy(void *dst, const void *src, size_t n)
+{
+ const unsigned char *s = (const unsigned char *)src - 1;
+ unsigned char *d = (unsigned char *)dst - 1;
+
+ n++;
+ while (--n != 0)
+ *++d = *++s;
+ return dst;
+}
+
+__declspec(section ".init") void* TRK_memset(void* dst, int val, size_t size){
+ TRK_fill_mem(dst, val, size);
+
+ return dst;
+}
+
+void TRK_fill_mem(void *dst, int val, u32 length) {
+ u32 v = (u8)val;
+ u32 i;
+
+ union
+ {
+ u8 *cpd;
+ u32 *lpd;
+ } dstu;
+
+ dstu.cpd = (((u8 *)dst) - 1);
+
+ if (length >= 32)
+ {
+ i = ((~ (u32)dstu.cpd) & 3);
+
+ if (i)
+ {
+ length -= i;
+
+ do
+ *++(dstu.cpd) = (u8)v;
+ while (--i);
+ }
+
+ if (v)
+ v |= ((v << 24) | (v << 16) | (v << 8));
+
+ dstu.lpd = (((u32 *)(dstu.cpd + 1)) - 1);
+
+ i = (length >> 5);
+
+ if (i)
+ {
+ do
+ {
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ *++(dstu.lpd) = v;
+ } while (--i);
+ }
+
+ i = ((length & 31) >> 2);
+
+ if (i)
+ {
+ do
+ *++(dstu.lpd) = v;
+ while (--i);
+ }
+
+ dstu.cpd = (((u8 *)(dstu.lpd + 1)) - 1);
+
+ length &= 3;
+ }
+
+ if (length)
+ {
+ do
+ *++(dstu.cpd) = (u8)v;
+ while (--length);
+ }
+}
diff --git a/src/static/TRK/nubevent.c b/src/static/TRK_MINNOW_DOLPHIN/nubevent.c
similarity index 100%
rename from src/static/TRK/nubevent.c
rename to src/static/TRK_MINNOW_DOLPHIN/nubevent.c
diff --git a/src/static/TRK/nubinit.c b/src/static/TRK_MINNOW_DOLPHIN/nubinit.c
similarity index 100%
rename from src/static/TRK/nubinit.c
rename to src/static/TRK_MINNOW_DOLPHIN/nubinit.c
diff --git a/src/static/TRK_MINNOW_DOLPHIN/usr_put.c b/src/static/TRK_MINNOW_DOLPHIN/usr_put.c
new file mode 100644
index 00000000..a5f57456
--- /dev/null
+++ b/src/static/TRK_MINNOW_DOLPHIN/usr_put.c
@@ -0,0 +1,24 @@
+#include "TRK/usr_put.h"
+#include "TRK/msghndlr.h"
+
+extern void OSReport(const char*);
+
+TRKResult usr_puts_serial(const char* putString) {
+ TRKResult res = 0;
+ char tstring;
+ char buff[2];
+ int con;
+ while ((res == 0) && (tstring = *putString++) != 0) {
+ con = GetTRKConnected();
+ buff[0] = tstring;
+ buff[1] = '\0';
+ SetTRKConnected(0);
+ OSReport(buff);
+ SetTRKConnected(con);
+ res = 0;
+ }
+ return res;
+}
+
+TRKResult usr_put_initialize() {
+}
diff --git a/src/static/bootdata/gam_win1.c b/src/static/bootdata/gam_win1.c
index e1549567..bfd0c3bb 100644
--- a/src/static/bootdata/gam_win1.c
+++ b/src/static/bootdata/gam_win1.c
@@ -1,48 +1,19 @@
#include "bootdata.h"
#include "libforest/gbi_extensions.h"
-static u8 gam_win_moji1_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji1_tex.inc"
-};
-
-static u8 gam_win_moji2_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji2_tex.inc"
-};
-
-static u8 yes[] = {
-#include "assets/bootdata/yes.inc"
-};
-
-static u8 no[] = {
-#include "assets/bootdata/no.inc"
-};
-
-static u8 att_win_waku1_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku1_tex.inc"
-};
-
-static u8 att_win_waku2_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku2_tex.inc"
-};
-
-static u8 att_win_waku3_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku3_tex.inc"
-};
-
-static u8 att_win_waku4_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku4_tex.inc"
-};
-
-static u8 att_win_waku5_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku5_tex.inc"
-};
-
-static u8 att_win_waku6_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku6_tex.inc"
-};
+#include "assets/bootdata/win1/gam_win_moji1_tex.inc"
+#include "assets/bootdata/win1/gam_win_moji2_tex.inc"
+#include "assets/bootdata/win1/yes.inc"
+#include "assets/bootdata/win1/no.inc"
+#include "assets/bootdata/win1/att_win_waku1_tex.inc"
+#include "assets/bootdata/win1/att_win_waku2_tex.inc"
+#include "assets/bootdata/win1/att_win_waku3_tex.inc"
+#include "assets/bootdata/win1/att_win_waku4_tex.inc"
+#include "assets/bootdata/win1/att_win_waku5_tex.inc"
+#include "assets/bootdata/win1/att_win_waku6_tex.inc"
static Vtx gam_win1_v[] = {
-#include "assets/bootdata/gam_win1_v.inc"
+#include "assets/bootdata/win1/gam_win1_v.inc"
};
Gfx gam_win1_cursor_model[] = {
diff --git a/src/static/bootdata/gam_win2.c b/src/static/bootdata/gam_win2.c
index f23bbce8..c8568555 100644
--- a/src/static/bootdata/gam_win2.c
+++ b/src/static/bootdata/gam_win2.c
@@ -1,40 +1,17 @@
#include "bootdata.h"
#include "libforest/gbi_extensions.h"
-static u8 gam_win_moji3_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji3_tex.inc"
-};
-
-static u8 gam_win_moji4_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji4_tex.inc"
-};
-
-static u8 att_win_waku1_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku1_tex_1.inc"
-};
-
-static u8 att_win_waku2_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku2_tex_1.inc"
-};
-
-static u8 att_win_waku3_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku3_tex_1.inc"
-};
-
-static u8 att_win_waku4_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku4_tex_1.inc"
-};
-
-static u8 att_win_waku5_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku5_tex_1.inc"
-};
-
-static u8 att_win_waku6_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/att_win_waku6_tex_1.inc"
-};
+#include "assets/bootdata/win2/gam_win_moji3_tex.inc"
+#include "assets/bootdata/win2/gam_win_moji4_tex.inc"
+#include "assets/bootdata/win2/att_win_waku1_tex.inc"
+#include "assets/bootdata/win2/att_win_waku2_tex.inc"
+#include "assets/bootdata/win2/att_win_waku3_tex.inc"
+#include "assets/bootdata/win2/att_win_waku4_tex.inc"
+#include "assets/bootdata/win2/att_win_waku5_tex.inc"
+#include "assets/bootdata/win2/att_win_waku6_tex.inc"
static Vtx gam_win2_v[] = {
-#include "assets/bootdata/gam_win2_v.inc"
+#include "assets/bootdata/win2/gam_win2_v.inc"
};
Gfx gam_win2_moji_model[] = {
diff --git a/src/static/bootdata/gam_win3.c b/src/static/bootdata/gam_win3.c
index 3e0821f6..dda6ccfd 100644
--- a/src/static/bootdata/gam_win3.c
+++ b/src/static/bootdata/gam_win3.c
@@ -1,16 +1,11 @@
#include "bootdata.h"
#include "libforest/gbi_extensions.h"
-static u8 gam_win_moji3_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji3_tex_1.inc"
-};
-
-static u8 gam_win_moji5_tex[] ATTRIBUTE_ALIGN(32) = {
-#include "assets/bootdata/gam_win_moji5_tex.inc"
-};
+#include "assets/bootdata/win3/gam_win_moji3_tex.inc"
+#include "assets/bootdata/win3/gam_win_moji5_tex.inc"
static Vtx gam_win3_v[] = {
-#include "assets/bootdata/gam_win3_v.inc"
+#include "assets/bootdata/win3/gam_win3_v.inc"
};
Gfx gam_win3_moji_model[] = {
diff --git a/src/static/bootdata/logo_nin.c b/src/static/bootdata/logo_nin.c
index 8a33db26..957a04c9 100644
--- a/src/static/bootdata/logo_nin.c
+++ b/src/static/bootdata/logo_nin.c
@@ -1,9 +1,7 @@
#include "bootdata.h"
#include "libforest/gbi_extensions.h"
-u8 nintendo_376x104[] ATTRIBUTE_ALIGN(32) = {
#include "assets/bootdata/nintendo_376x104.inc"
-};
Vtx logo_nin_v[] = {
#include "assets/bootdata/logo_nin_v.inc"
diff --git a/src/static/dolphin/__ppc_eabi_init.cpp b/src/static/dolphin/__ppc_eabi_init.cpp
deleted file mode 100644
index 93b67f0e..00000000
--- a/src/static/dolphin/__ppc_eabi_init.cpp
+++ /dev/null
@@ -1,64 +0,0 @@
-#include "types.h"
-#include "dolphin/os.h"
-#include "dolphin/PPCArch.h"
-#include "dolphin/os/__ppc_eabi_init.h"
-#ifdef __cplusplus
-extern "C" {
-#endif
-
-static void __init_cpp(void);
-
-__declspec(section ".init") asm void __init_hardware(void) {
- nofralloc
- mfmsr r0
- ori r0,r0,0x2000
- mtmsr r0
- mflr r31
- bl __OSPSInit
- bl __OSCacheInit
- mtlr r31
- blr
-}
-
-__declspec(section ".init") asm void __flush_cache(void*, size_t) {
- nofralloc
- lis r5, 0xFFFFFFF1@h
- ori r5, r5, 0xFFFFFFF1@l
- and r5, r5, r3
- subf r3, r5, r3
- add r4, r4, r3
-loop:
- dcbst 0, r5
- sync
- icbi 0, r5
- addic r5, r5, 8
- addic. r4, r4, -8
- bge loop
- isync
- blr
-}
-
-
-void __init_user(void) { __init_cpp(); }
-
-static void __init_cpp(void)
-{
- voidfunctionptr* constructor;
- /*
- * call static initializers
- */
- for (constructor = _ctors; *constructor; constructor++) {
- (*constructor)();
- }
-}
-
-
-void __fini_cpp(void)
-{
- // UNUSED FUNCTION
-}
-
-void _ExitProcess(void) { PPCHalt(); }
-#ifdef __cplusplus
-}
-#endif
diff --git a/src/static/dolphin/BASE/ppcarch.c b/src/static/dolphin/base/PPCArch.c
similarity index 93%
rename from src/static/dolphin/BASE/ppcarch.c
rename to src/static/dolphin/base/PPCArch.c
index 0baa5f3a..365006cc 100644
--- a/src/static/dolphin/BASE/ppcarch.c
+++ b/src/static/dolphin/base/PPCArch.c
@@ -1,86 +1,86 @@
-#include "dolphin/BASE/ppcarch.h"
-
-asm u32 PPCMfmsr(void){
- nofralloc
- mfmsr r3
- blr
-}
-
-asm void PPCMtmsr(register u32 value){
- nofralloc
- mtmsr value
- blr
-}
-
-asm u32 PPCMfhid0(void){
- nofralloc
- mfspr r3, 0x3f0
- blr
-}
-
-asm void PPCMthid0(register u32 value) {
- nofralloc
- mtspr 0x3f0, value
- blr
-}
-
-asm u32 PPCMfl2cr(void) {
- nofralloc
- mfspr r3, 0x3f9
- blr
-}
-
-asm void PPCMtl2cr(register u32 value) {
- nofralloc
- mtspr 0x3f9, value
- blr
-}
-asm void PPCMtdec(register u32 value) {
- nofralloc
- mtspr 0x16, value
- blr
-}
-
-asm void PPCSync(void){
- nofralloc
- sc
- blr
-}
-
-asm void PPCHalt(void){
- nofralloc
- sync
-
-loop:
- nop
- li r3, 0
- nop
- b loop
-}
-asm u32 PPCMfhid2(void){
- nofralloc
- mfspr r3, 0x398
- blr
-}
-
-asm void PPCMthid2(u32 register value){
- nofralloc
- mtspr 0x398, value
- blr
-}
-asm void PPCMtwpar(u32 register value){
- nofralloc
- mtspr 0x399, value
- blr
-}
-
-void PPCDisableSpeculation(void) {
- PPCMthid0(PPCMfhid0() | (1 << (31 - 22)));
-}
-
-asm void PPCSetFpNonIEEEMode(void){
- nofralloc
- mtfsb1 0x1D
- blr
-}
+#include "dolphin/BASE/ppcarch.h"
+
+asm u32 PPCMfmsr(void){
+ nofralloc
+ mfmsr r3
+ blr
+}
+
+asm void PPCMtmsr(register u32 value){
+ nofralloc
+ mtmsr value
+ blr
+}
+
+asm u32 PPCMfhid0(void){
+ nofralloc
+ mfspr r3, 0x3f0
+ blr
+}
+
+asm void PPCMthid0(register u32 value) {
+ nofralloc
+ mtspr 0x3f0, value
+ blr
+}
+
+asm u32 PPCMfl2cr(void) {
+ nofralloc
+ mfspr r3, 0x3f9
+ blr
+}
+
+asm void PPCMtl2cr(register u32 value) {
+ nofralloc
+ mtspr 0x3f9, value
+ blr
+}
+asm void PPCMtdec(register u32 value) {
+ nofralloc
+ mtspr 0x16, value
+ blr
+}
+
+asm void PPCSync(void){
+ nofralloc
+ sc
+ blr
+}
+
+asm void PPCHalt(void){
+ nofralloc
+ sync
+
+loop:
+ nop
+ li r3, 0
+ nop
+ b loop
+}
+asm u32 PPCMfhid2(void){
+ nofralloc
+ mfspr r3, 0x398
+ blr
+}
+
+asm void PPCMthid2(u32 register value){
+ nofralloc
+ mtspr 0x398, value
+ blr
+}
+asm void PPCMtwpar(u32 register value){
+ nofralloc
+ mtspr 0x399, value
+ blr
+}
+
+void PPCDisableSpeculation(void) {
+ PPCMthid0(PPCMfhid0() | (1 << (31 - 22)));
+}
+
+asm void PPCSetFpNonIEEEMode(void){
+ nofralloc
+ mtfsb1 0x1D
+ blr
+}
\ No newline at end of file
diff --git a/src/static/dolphin/gba/GBA.c b/src/static/dolphin/gba/GBA.c
new file mode 100644
index 00000000..7cc86397
--- /dev/null
+++ b/src/static/dolphin/gba/GBA.c
@@ -0,0 +1,102 @@
+#include "gba/gbaPriv.h"
+#include "dolphin/os/OSAlarm.h"
+
+// local declarations
+static BOOL OnReset(BOOL final);
+
+//.data
+static OSResetFunctionInfo ResetFunctionInfo = {OnReset, 127, NULL, NULL};
+
+//.bss
+static GBASecParam SecParams[4];
+GBAControl __GBA[4];
+
+//.sbss
+BOOL __GBAReset;
+
+static void ShortCommandProc(s32 chan) {
+ GBAControl* gba = &__GBA[chan]; // r31
+
+ if (gba->ret != 0) {
+ return;
+ }
+
+ if (gba->input[0] != 0 || gba->input[1] != 4) {
+ gba->ret = 1;
+ return;
+ }
+
+ *gba->status = gba->input[2] & GBA_JSTAT_MASK;
+}
+
+void GBAInit(void) {
+ GBAControl* gba; // r31
+ s32 chan; // r30
+
+ for (chan = 0; chan < 4; chan++) {
+ gba = &__GBA[chan];
+ gba->delay = OSMicrosecondsToTicks(60);
+ OSInitThreadQueue(&gba->threadQueue);
+ gba->param = &SecParams[chan];
+ ASSERTLINE(90, (u32) gba->param % 32 == 0);
+ }
+
+ OSInitAlarm();
+ DSPInit();
+
+ __GBAReset = FALSE;
+ OSRegisterResetFunction(&ResetFunctionInfo);
+}
+
+s32 GBAGetStatusAsync(s32 chan, u8* status, GBACallback callback) {
+ GBAControl* gba = &__GBA[chan]; // r31
+
+ if (gba->callback != NULL) {
+ return GBA_BUSY;
+ }
+
+ gba->output[0] = 0;
+ gba->status = status;
+ gba->callback = callback;
+ return __GBATransfer(chan, 1, 3, ShortCommandProc);
+}
+
+s32 GBAGetStatus(s32 chan, u8* status) {
+ GBAControl* gba = &__GBA[chan]; // r1+0x10
+ s32 ret; // r31
+
+ ret = GBAGetStatusAsync(chan, status, &__GBASyncCallback);
+ if (ret != GBA_READY) {
+ return ret;
+ }
+ return __GBASync(chan);
+}
+
+s32 GBAResetAsync(s32 chan, u8* status, GBACallback callback) {
+ GBAControl *gba = &__GBA[chan]; // r31
+
+ if (gba->callback != NULL) {
+ return GBA_BUSY;
+ }
+
+ gba->output[0] = 0xFF;
+ gba->status = status;
+ gba->callback = callback;
+ return __GBATransfer(chan, 1, 3, ShortCommandProc);
+}
+
+s32 GBAReset(s32 chan, u8* status) {
+ GBAControl* gba = &__GBA[chan]; // r1+0x10
+ s32 ret; // r31
+
+ ret = GBAResetAsync(chan, status, (GBACallback)&__GBASyncCallback);
+ if (ret != GBA_READY) {
+ return ret;
+ }
+ return __GBASync(chan);
+}
+
+static BOOL OnReset(BOOL final) {
+ __GBAReset = TRUE;
+ return TRUE;
+}
diff --git a/src/static/dolphin/gba/GBAGetProcessStatus.c b/src/static/dolphin/gba/GBAGetProcessStatus.c
new file mode 100644
index 00000000..65de6aa9
--- /dev/null
+++ b/src/static/dolphin/gba/GBAGetProcessStatus.c
@@ -0,0 +1,40 @@
+#include "GBA/GBAPriv.h"
+#include "dolphin/os/OSInterrupt.h"
+#include "dolphin/os/OSTime.h"
+
+s32 GBAGetProcessStatus(s32 chan, u8* percentp) {
+ BOOL enabled; // r26
+ s32 ret; // r29
+ GBAControl* gba = &__GBA[chan]; // r25
+ GBABootInfo* bootInfo; // r31
+ u8 percent; // r30
+ OSTime t; // r27
+
+ bootInfo = &__GBA[chan].bootInfo;
+ enabled = OSDisableInterrupts();
+ if (bootInfo->callback != NULL) {
+ ret = GBA_BUSY;
+ percent = (bootInfo->curOffset * 100) / bootInfo->realLength;
+ if (bootInfo->begin != 0) {
+ t = OSGetTime() - bootInfo->begin;
+ if (OSTicksToMilliseconds(t) < 5500) {
+ percent = (percent * t) / OSMillisecondsToTicks(5500ll);
+ }
+
+ if (percent >= 100) {
+ percent = 100;
+ }
+ }
+
+ if (percentp != NULL) {
+ *percentp = percent;
+ }
+ } else if (gba->callback != NULL) {
+ ret = GBA_BUSY;
+ } else {
+ ret = GBA_READY;
+ }
+
+ OSRestoreInterrupts(enabled);
+ return ret;
+}
diff --git a/src/static/dolphin/gba/GBAJoyBoot.c b/src/static/dolphin/gba/GBAJoyBoot.c
new file mode 100644
index 00000000..8346f51f
--- /dev/null
+++ b/src/static/dolphin/gba/GBAJoyBoot.c
@@ -0,0 +1,383 @@
+#include "GBA/GBAPriv.h"
+
+static volatile u8 D54[] = {
+ 0x18, 0xFC, 0xC0, 0x80, 0x7f, 0x40, 0x3f, 0x01, 0x00, 0x2f, 0x2f, 0x20, 0x43, 0x6f, 0x64,
+ 0x65, 0x64, 0x20, 0x62, 0x79, 0x20, 0x4b, 0x61, 0x77, 0x61, 0x73, 0x65, 0x64, 0x6f, 0x00,
+ 0x00, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0xAC, 0xC4, 0xF8, 0x08, 0x10, 0xBF, 0x18,
+};
+
+// local declarations
+static void F23(s32 chan, s32 ret);
+static void F25(s32 chan, s32 ret);
+static void F27(s32 chan, s32 ret);
+static void F29(s32 chan, s32 ret);
+static void F31(s32 chan, s32 ret);
+static void F33(s32 chan, s32 ret);
+static void F35(s32 chan, s32 ret);
+static void F37(s32 chan, s32 ret);
+static void F39(s32 chan, s32 ret);
+
+static u32 F72(u32 crc, u32 src, volatile u8* keyp) {
+ int i; // r31
+ int poly; // r30
+
+ poly = (keyp[19] << 8) + ((keyp[21] + (keyp[24] - (keyp[24] << 4))) - keyp[16]);
+ for (i = keyp[1]; i > keyp[11]; i--) {
+ if ((src ^ crc) & 1) {
+ crc >>= 1;
+ crc ^= poly;
+ }
+ else {
+ crc >>= 1;
+ }
+ src >>= 1;
+ }
+ return crc;
+}
+
+static u32 F95(u32 src, volatile u8* keyp) {
+ src = (src * ((keyp[3] << keyp[22]) | ((keyp[1] | (keyp[4] << keyp[17])) | (keyp[4] << keyp[24])))) - (keyp[7] - keyp[6]);
+ return src;
+}
+
+static void F104(s32 chan, s32 ret) {
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+ GBACallback callback; // r30
+
+ bootInfo->begin = 0;
+ if (bootInfo->callback != NULL) {
+ callback = bootInfo->callback;
+ bootInfo->callback = NULL;
+ callback(chan, ret);
+ }
+}
+
+s32 GBAJoyBootAsync(s32 chan, s32 paletteColor, s32 paletteSpeed, u8* programp, s32 length, u8* status, GBACallback callback) {
+ s32 ret; // r30
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+ u8 percent; // r1+0x24
+
+ if (chan & ~3) {
+ return GBA_JOYBOOT_ERR_INVALID;
+ }
+
+ if (length == 0 || GBA_JOYBOOT_PROGRAM_SIZE_MAX < length) {
+ return GBA_JOYBOOT_ERR_INVALID;
+ }
+
+ if (paletteSpeed < -4 || paletteSpeed > 4) {
+ return GBA_JOYBOOT_ERR_INVALID;
+ }
+
+ if (paletteColor < 0 || paletteColor > 6) {
+ return GBA_JOYBOOT_ERR_INVALID;
+ }
+
+ if ( !(programp[0xAC] * programp[0xAD] * programp[0xAE] * programp[0xAF]) ) {
+ return GBA_JOYBOOT_ERR_INVALID;
+ }
+
+ ret = GBAGetProcessStatus(chan, &percent);
+ if (ret != GBA_READY) {
+ return ret;
+ }
+
+ bootInfo->paletteColor = paletteColor;
+ bootInfo->paletteSpeed = paletteSpeed;
+ bootInfo->programp = programp;
+ bootInfo->length = length;
+ bootInfo->status = status;
+ bootInfo->callback = callback;
+ bootInfo->curOffset = D54[8];
+ ret = GBAGetStatusAsync(chan, bootInfo->status, F23);
+ if (ret != GBA_READY) {
+ bootInfo->callback = NULL;
+ }
+
+ return ret;
+}
+
+static void F23(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r29
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r28
+
+ if (ret != GBA_READY || (ret = GBAResetAsync(chan, bootInfo->status, F25)) != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F25(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r29
+
+ if (ret == GBA_READY && *bootInfo->status != D54[37]) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ if (ret != GBA_READY || (ret = GBAGetStatusAsync(chan, bootInfo->status, F27)) != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F27(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r29
+
+ if (ret == GBA_READY && *bootInfo->status != D54[0]) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ if (ret != GBA_READY || (ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F29)) != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F29(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r29
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r28
+
+ if (ret == GBA_READY) {
+ __GBAX02(chan, bootInfo->readbuf);
+ }
+ else {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+void __GBAX01(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+ int val200; // r27
+
+ if (ret == GBA_READY) {
+ bootInfo->keyA = gba->param->keyA;
+ bootInfo->keyB = gba->param->keyB;
+ if (bootInfo->readbuf[3] == 0 || bootInfo->readbuf[2] == 0 ||
+ (bootInfo->keyA & (D54[5] << 9)) == 0 || bootInfo->readbuf[1] == 0 ||
+ (bootInfo->keyA >> 15) == 0 || bootInfo->readbuf[0] == 0) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ else {
+ bootInfo->i = ~D54[36] & (bootInfo->length + D54[36]);
+ val200 = D54[20] << D54[33];
+
+ if (bootInfo->i < val200) {
+ bootInfo->i = val200;
+ }
+
+ bootInfo->realLength = bootInfo->i;
+ bootInfo->i -= val200;
+ bootInfo->i >>= D54[32];
+ bootInfo->writebuf[0] = (u8)(bootInfo->keyB >> 0);
+ bootInfo->writebuf[1] = (u8)(bootInfo->keyB >> 8);
+ bootInfo->writebuf[3] = (u8)(bootInfo->keyB >> 24);
+ bootInfo->writebuf[2] = (u8)(bootInfo->keyB >> 16);
+ bootInfo->crc = (D54[38] + 1) << D54[34];
+ bootInfo->curOffset = D54[8];
+ bootInfo->begin = OSGetTime();
+ bootInfo->firstXfer = TRUE;
+ ret = GBAWriteAsync(chan, bootInfo->writebuf, bootInfo->status, F31);
+ }
+ }
+
+ if (ret != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F31(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r26
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+ u32 writeWord; // r29
+
+ if (ret == GBA_READY) {
+ if (bootInfo->firstXfer != FALSE) {
+ bootInfo->firstXfer = FALSE;
+ }
+ else if ((*bootInfo->status & D54[20]) == 0 ||
+ (*bootInfo->status & D54[42]) >> D54[33] !=
+ (bootInfo->curOffset & D54[33]) >> D54[31]) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ goto exit;
+ } else {
+ bootInfo->curOffset -= D54[25] - D54[23];
+ }
+
+ if (bootInfo->curOffset <= bootInfo->realLength) {
+ if (bootInfo->curOffset < bootInfo->realLength) {
+ writeWord = D54[29];
+ for (bootInfo->i = D54[29]; bootInfo->i < D54[33]; bootInfo->i++) {
+ if (bootInfo->length) {
+ writeWord |= *(bootInfo->programp++) << (bootInfo->i * D54[37]);
+ bootInfo->length--;
+ }
+ }
+
+ if (bootInfo->curOffset == D54[38]) {
+ bootInfo->initialCode = writeWord;
+ }
+ else if (bootInfo->curOffset == D54[39]) {
+ writeWord = chan << D54[37];
+ }
+
+ if (bootInfo->curOffset >= D54[2]) {
+ bootInfo->crc = F72(bootInfo->crc, writeWord, &D54[19]);
+ }
+
+ if (bootInfo->curOffset == D54[40] + 0x100) {
+ bootInfo->dummyWord[0] = writeWord;
+ }
+ else if (bootInfo->curOffset == D54[1] + 0x100) {
+ bootInfo->i = D54[7];
+ bootInfo->dummyWord[bootInfo->i] = writeWord;
+ }
+ }
+ else {
+ writeWord = bootInfo->crc | (bootInfo->curOffset << 16);
+ }
+
+ if (bootInfo->curOffset > D54[43]) {
+ bootInfo->keyA = F95(bootInfo->keyA, &D54[20]);
+ writeWord ^= bootInfo->keyA;
+ writeWord ^= -(bootInfo->curOffset + (D54[11] << 20));
+ writeWord ^= D54[11] | (D54[11] << 24) | (D54[19] << 16) | (D54[18] << 8);
+ }
+
+ bootInfo->writebuf[3] = writeWord >> D54[0];
+ bootInfo->writebuf[0] = writeWord >> D54[30];
+ bootInfo->writebuf[1] = writeWord >> D54[41];
+ bootInfo->writebuf[2] = writeWord >> D54[42];
+
+ if (bootInfo->curOffset == D54[1] + D54[1]) {
+ bootInfo->dummyWord[2] = writeWord;
+ }
+
+ if (bootInfo->i < D54[33]) {
+ bootInfo->dummyWord[3 - (1 - bootInfo->i)] = writeWord;
+ bootInfo->dummyWord[5 - bootInfo->i] =
+ bootInfo->dummyWord[2 - (1 - bootInfo->i)] * bootInfo->dummyWord[4 - bootInfo->i];
+ bootInfo->dummyWord[5 - (1 - bootInfo->i)] =
+ bootInfo->dummyWord[1 - bootInfo->i] * bootInfo->dummyWord[bootInfo->i];
+ bootInfo->dummyWord[7 - bootInfo->i] =
+ bootInfo->dummyWord[-(1 - bootInfo->i)] * bootInfo->dummyWord[4 - bootInfo->i];
+ }
+
+ ret = GBAWriteAsync(chan, bootInfo->writebuf, bootInfo->status, F31);
+ }
+ else {
+ bootInfo->start = OSGetTick();
+ ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F33);
+ }
+ }
+
+exit:
+ if (ret != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F33(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r27
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+
+ if (ret == GBA_READY) {
+ for (bootInfo->i = 33; bootInfo->i < 36; bootInfo->i++) {
+ ret = (bootInfo->readbuf[3] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 24) |
+ bootInfo->readbuf[2] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 16) |
+ bootInfo->readbuf[1] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 8) |
+ bootInfo->readbuf[0] ^ (bootInfo->dummyWord[D54[bootInfo->i]] >> 0)) << 24;
+
+ if (ret == GBA_READY) {
+ break;
+ }
+ }
+
+ if (ret != GBA_READY) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ else {
+ bootInfo->start = OSGetTick();
+ ret = GBAGetStatusAsync(chan, bootInfo->status, F35);
+ }
+ }
+
+ if (ret != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F35(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r30
+
+ if (ret == GBA_READY) {
+ if (OSSecondsToTicks(10) <= OSGetTick() - bootInfo->start) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ else if ((*bootInfo->status & 0x32) != 0) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ else if (*bootInfo->status != 8) {
+ ret = GBAGetStatusAsync(chan, bootInfo->status, F35);
+ }
+ else {
+ __GBASetDelay(chan, OSMillisecondsToTicks(8));
+ ret = GBAReadAsync(chan, bootInfo->readbuf, bootInfo->status, F37);
+ __GBASetDelay(chan, OSMicrosecondsToTicks(60));
+ }
+ }
+
+ if (ret != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F37(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r31
+
+ if (ret == GBA_READY) {
+ if ((bootInfo->readbuf[3] ^ (bootInfo->initialCode >> 24) |
+ bootInfo->readbuf[2] ^ (bootInfo->initialCode >> 16) |
+ bootInfo->readbuf[1] ^ (bootInfo->initialCode >> 8) |
+ bootInfo->readbuf[0] ^ (bootInfo->initialCode >> 0)) << 24) {
+ ret = GBA_JOYBOOT_UNKNOWN_STATE;
+ }
+ else {
+ ret = GBAWriteAsync(chan, bootInfo->readbuf, bootInfo->status, F39);
+ }
+ }
+
+ if (ret != GBA_READY) {
+ F104(chan, ret);
+ }
+ gba->ret = ret;
+}
+
+static void F39(s32 chan, s32 ret) {
+ GBAControl* gba = &__GBA[chan]; // r29
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r28
+
+ if (ret == GBA_READY) {
+ *bootInfo->status = 0;
+ }
+
+ F104(chan, ret);
+ gba->ret = ret;
+}
+
+s32 GBAJoyBoot(s32 chan, s32 paletteColor, s32 paletteSpeed, u8* programp, s32 length, u8* status) {
+ s32 ret; // r31
+
+ ret = GBAJoyBootAsync(chan, paletteColor, paletteSpeed, programp, length, status, &__GBASyncCallback);
+ if (ret == GBA_READY) {
+ return __GBASync(chan);
+ }
+ return ret;
+}
diff --git a/src/static/dolphin/gba/GBAKey.c b/src/static/dolphin/gba/GBAKey.c
new file mode 100644
index 00000000..b523a765
--- /dev/null
+++ b/src/static/dolphin/gba/GBAKey.c
@@ -0,0 +1,21 @@
+#include "gba/GBAPriv.h"
+#include "dolphin/dsp.h"
+
+static s32 F152(DSPTaskInfo* task) {
+ s32 chan; // r31
+ GBAControl* gba = &__GBA[chan]; // r29
+
+ for (chan = 0; chan < 4; chan++) {
+ if (&gba->task == task) {
+ return chan;
+ }
+ }
+
+ ASSERTLINE(168, 0 <= chan && chan < 4);
+ ASSERTMSGLINE(169, FALSE, "GBA - unexpected dsp call");
+ return -1;
+}
+
+void __GBAX02(s32 chan, u8* readbuf) {
+
+}
diff --git a/src/static/GBA/GBARead.c b/src/static/dolphin/gba/GBARead.c
similarity index 86%
rename from src/static/GBA/GBARead.c
rename to src/static/dolphin/gba/GBARead.c
index 991e5121..3060fd6a 100644
--- a/src/static/GBA/GBARead.c
+++ b/src/static/dolphin/gba/GBARead.c
@@ -1,6 +1,10 @@
#include "GBA/GBAPriv.h"
-static void ReadProc(s32 chan) {
+s32 GBAReadAsync(s32 chan, u8* dst, u8* status, GBACallback callback) {
+
+}
+
+/*static void ReadProc(s32 chan) {
GBAControl* gba;
gba = &__GBA[chan];
@@ -38,3 +42,4 @@ s32 GBARead(s32 chan, u8* dst, u8* status) {
return __GBASync(chan);
}
+*/
diff --git a/src/static/GBA/GBAWrite.c b/src/static/dolphin/gba/GBAWrite.c
similarity index 90%
rename from src/static/GBA/GBAWrite.c
rename to src/static/dolphin/gba/GBAWrite.c
index b8ba9bc0..2ad1bb55 100644
--- a/src/static/GBA/GBAWrite.c
+++ b/src/static/dolphin/gba/GBAWrite.c
@@ -1,5 +1,10 @@
#include "GBA/GBAPriv.h"
+s32 GBAWriteAsync(s32 chan, u8* src, u8* status, GBACallback callback) {
+
+}
+
+/*
static void WriteProc(s32 chan) {
GBAControl* gba;
gba = &__GBA[chan];
@@ -35,3 +40,4 @@ s32 GBAWrite(s32 chan, u8* src, u8* status) {
}
return __GBASync(chan);
}
+*/
diff --git a/src/static/GBA/GBAXfer.c b/src/static/dolphin/gba/GBAXfer.c
similarity index 91%
rename from src/static/GBA/GBAXfer.c
rename to src/static/dolphin/gba/GBAXfer.c
index c44346f6..d543f184 100644
--- a/src/static/GBA/GBAXfer.c
+++ b/src/static/dolphin/gba/GBAXfer.c
@@ -1,4 +1,17 @@
-#include "GBA/GBAPriv.h"
+#include "gba/GBAPriv.h"
+
+s32 __GBATransfer(s32 chan, u32 outputBytes, u32 inputBytes, GBATransferCallback proc) {
+
+}
+
+void __GBASyncCallback(s32 chan, s32 ret) {
+
+}
+
+s32 __GBASync(s32 chan) {
+
+}
+/*#include "GBA/GBAPriv.h"
#include "dolphin/sipriv.h"
static void __GBAHandler(s32 chan, u32 error, OSContext* context) {
@@ -122,3 +135,4 @@ OSTime __GBASetDelay(s32 chan, OSTime delay) {
gba->delay = delay;
return oldDelay;
}
+*/
diff --git a/src/static/dolphin/os/OSAlarm.c b/src/static/dolphin/os/OSAlarm.c
index 8efaf5d5..94a671eb 100644
--- a/src/static/dolphin/os/OSAlarm.c
+++ b/src/static/dolphin/os/OSAlarm.c
@@ -2,171 +2,197 @@
#include "dolphin/os/OSTime.h"
#include "dolphin/os/OSContext.h"
#include "dolphin/os/OSInterrupt.h"
+#include "dolphin/os/OSException.h"
+
+struct OSAlarmQueue {
+ struct OSAlarm* head;
+ struct OSAlarm* tail;
+};
+
+static struct OSAlarmQueue AlarmQueue;
static void DecrementerExceptionHandler(u8, OSContext*);
-void OSInitAlarm(void){
-
- if (__OSGetExceptionHandler(8) |= DecrementerExceptionHandler){
- AlarmQueue.tail = 0;
- AlarmQueue.head = 0;
- __OSSetExceptionHandler(8, DecrementerExceptionHandler);
- }
-}
-void OSCreateAlarm(OSAlarm* alarm){
- alarm->handler = NULL;
+static void SetTimer(struct OSAlarm* alarm) {
+ OSTime delta = alarm->fire - __OSGetSystemTime();
+
+ if (delta < 0) {
+ PPCMtdec(0);
+ } else if (delta < 0x80000000) {
+ PPCMtdec((u32)delta);
+ } else {
+ PPCMtdec(0x7fffffff);
+ }
}
-static void InsertAlarm(OSAlarm* alarm, OSTime fire, OSAlarmHandler handler){
- OSAlarm* next;
- OSAlarm* prev;
-
- if (0 < alarm->period) {
- OSTime time = __OSGetSystemTime();
-
- fire = alarm->start;
- if (alarm->start < time) {
- fire += alarm->period * ((time - alarm->start) / alarm->period + 1);
- }
+void OSInitAlarm(void) {
+
+ if (__OSGetExceptionHandler(8) != DecrementerExceptionHandler) {
+ AlarmQueue.tail = 0;
+ AlarmQueue.head = 0;
+ __OSSetExceptionHandler(8, DecrementerExceptionHandler);
+ }
+}
+void OSCreateAlarm(OSAlarm* alarm) {
+ alarm->handler = NULL;
}
- alarm->handler = handler;
- alarm->fire = fire;
-
- for (next = AlarmQueue.head; next; next = next->next){
- if (next->fire <= fire) {
- continue;
- }
- alarm->prev = next->prev;
- next->prev = alarm;
- alarm->next = next;
- prev = alarm->prev;
- if (prev) {
- prev->next = alarm;
- }
- else{
- AlarmQueue.head = alarm;
- SetTimer(alarm);
- }
- return;
- }
- alarm->next = 0;
- prev = AlarmQueue.tail;
- AlarmQueue.tail = alarm;
- alarm->prev = prev;
- if (prev) {
- prev->next = alarm;
- }
- else {
- AlarmQueue.head = AlarmQueue.tail = alarm;
- SetTimer(alarm);
- }
+static void InsertAlarm(OSAlarm* alarm, OSTime fire, OSAlarmHandler handler) {
+ OSAlarm* next;
+ OSAlarm* prev;
+
+ if (0 < alarm->period) {
+ OSTime time = __OSGetSystemTime();
+
+ fire = alarm->start;
+ if (alarm->start < time) {
+ fire += alarm->period * ((time - alarm->start) / alarm->period + 1);
+ }
+ }
+
+ alarm->handler = handler;
+ alarm->fire = fire;
+
+ for (next = AlarmQueue.head; next; next = next->next) {
+ if (next->fire <= fire) {
+ continue;
+ }
+
+ alarm->prev = next->prev;
+ next->prev = alarm;
+ alarm->next = next;
+ prev = alarm->prev;
+
+ if (prev) {
+ prev->next = alarm;
+ } else {
+ AlarmQueue.head = alarm;
+ SetTimer(alarm);
+ }
+
+ return;
+ }
+
+ alarm->next = 0;
+ prev = AlarmQueue.tail;
+ AlarmQueue.tail = alarm;
+ alarm->prev = prev;
+
+ if (prev) {
+ prev->next = alarm;
+ } else {
+ AlarmQueue.head = AlarmQueue.tail = alarm;
+ SetTimer(alarm);
+ }
}
-void OSSetAlarm(OSAlarm* alarm, OSTime tick, OSAlarmHandler handler){
- u32 res = OSDisableInterrupts();
- alarm->period = 0;
- InsertAlarm(alarm, __OSGetSystemTime() + tick, handler);
- OSRestoreInterrupts(res);
+void OSSetAlarm(OSAlarm* alarm, OSTime tick, OSAlarmHandler handler) {
+ BOOL enabled;
+ enabled = OSDisableInterrupts();
+ alarm->period = 0;
+ InsertAlarm(alarm, __OSGetSystemTime() + tick, handler);
+ OSRestoreInterrupts(enabled);
}
-void OSCancelAlarm(OSAlarm* alarm){
- OSAlarm* next;
- BOOL res;
+void OSCancelAlarm(OSAlarm* alarm) {
+ OSAlarm* next;
+ BOOL enabled;
- res = OSDisableInterrupts();
-
- if(alarm->handler == 0) {
- OSRestoreInterrupts(res);
- return;
- }
-
- next = alarm->next;
- if (next == 0) {
- AlarmQueue.tail = alarm->prev;
- }
- else {
- AlarmQueue.head = next;
- if (next) {
- SetTimer(next)
- }
- }
- alarm->handler = 0;
-
- OSRestoreInterrupts(res);
+ enabled = OSDisableInterrupts();
+
+ if (alarm->handler == 0) {
+ OSRestoreInterrupts(enabled);
+ return;
+ }
+
+ next = alarm->next;
+ if (next == 0) {
+ AlarmQueue.tail = alarm->prev;
+ } else {
+ next->prev = alarm->prev;
+ }
+ if (alarm->prev) {
+ alarm->prev->next = next;
+ } else {
+ AlarmQueue.head = next;
+ if (next) {
+ SetTimer(next);
+ }
+ }
+ alarm->handler = 0;
+ OSRestoreInterrupts(enabled);
}
-static void DecrementerExceptionCallback(register OSException exc, register OSContext* ctx){
- OSAlarmHandler handler;
- OSTime time;
- OSContext excctx;
- OSAlarm* alarm;
- OSAlarm* next;
-
- time = __OSGetSystemTime();
- alarm = AlarmQueue.head;
- if (alarm == NULL){
- OSLoadContext(ctx);
- }
-
- if (time < alarm->fire) {
- SetTimer(alarm);
- OSLoadContext(ctx);
- }
- next = alarm->next;
- AlarmQueue.head = next;
- if (next == NULL) {
- AlarmQueue.tail = NULL;
- }
- else {
- next->prev = NULL;
- }
- handler = alarm->handler;
- alarm->handler = NULL;
-
- if (0 < alarm->period) {
- InsertAlarm(alarm, 0, handler);
- }
- if (AlarmQueue.head) {
- SetTimer(AlarmQueue.head);
- }
-
- OSDisableScheduler();
- OSClearContext(&excctx);
- OSSetCurrentContext(&excctx);
-
- handler(alarm, ctx);
-
- OSClearContext(&excctx);
- OSSetCurrentContext(ctx);
- OSEnableScheduler();
-
- __OSReschedule();
- OSLoadContext(ctx);
+static void DecrementerExceptionCallback(register __OSException exception, register OSContext* context) {
+ OSAlarm* alarm;
+ OSAlarm* next;
+ OSContext context2;
+ OSAlarmHandler handler;
+ OSTime time;
+
+ time = __OSGetSystemTime();
+ alarm = AlarmQueue.head;
+ if (alarm == 0) {
+ OSLoadContext(context);
+ }
+
+ if (time < alarm->fire) {
+ SetTimer(alarm);
+ OSLoadContext(context);
+ }
+
+ next = alarm->next;
+ AlarmQueue.head = next;
+ if (next == 0) {
+ AlarmQueue.tail = 0;
+ } else {
+ next->prev = 0;
+ }
+ handler = alarm->handler;
+ alarm->handler = 0;
+ if (0 < alarm->period) {
+ InsertAlarm(alarm, 0, handler);
+ }
+
+ if (AlarmQueue.head) {
+ SetTimer(AlarmQueue.head);
+ }
+
+ OSDisableScheduler();
+ OSClearContext(&context2);
+ OSSetCurrentContext(&context2);
+ handler(alarm, context);
+ OSClearContext(&context2);
+ OSSetCurrentContext(context);
+ OSEnableScheduler();
+ __OSReschedule();
+ OSLoadContext(context);
}
+/* clang-format off */
static asm void DecrementerExceptionHandler(register u8 type, register OSContext* ctx){
nofralloc
- stw r0, ctx->gprs[0]
- stw r1, ctx->gprs[1]
- stw r2, ctx->gprs[2]
- stmw r6, ctx->gprs[6]
+ stw r0, ctx->gpr[0]
+ stw r1, ctx->gpr[1]
+ stw r2, ctx->gpr[2]
+ stmw r6, ctx->gpr[6]
mfspr r0, 0x391
- stw r0, ctx->gqrs[1]
+ stw r0, ctx->gqr[1]
mfspr r0, 0x392
- stw r0, ctx->gqrs[2]
+ stw r0, ctx->gqr[2]
mfspr r0, 0x393
- stw r0, ctx->gqrs[3]
+ stw r0, ctx->gqr[3]
mfspr r0, 0x394
- stw r0, ctx->gqrs[4]
+ stw r0, ctx->gqr[4]
mfspr r0, 0x395
- stw r0, ctx->gqrs[5]
+ stw r0, ctx->gqr[5]
mfspr r0, 0x396
- stw r0, ctx->gqrs[6]
+ stw r0, ctx->gqr[6]
mfspr r0, 0x397
- stw r0, ctx->gqrs[7]
+ stw r0, ctx->gqr[7]
stwu r1, -8(r1)
b DecrementerExceptionCallback
-}
\ No newline at end of file
+}
+/* clang-format on */
diff --git a/src/static/dolphin/os/OSAudioSystem.C b/src/static/dolphin/os/OSAudioSystem.C
deleted file mode 100644
index 42d4b34b..00000000
--- a/src/static/dolphin/os/OSAudioSystem.C
+++ /dev/null
@@ -1,112 +0,0 @@
-#include "dolphin/os/OSAudioSystem.h"
-#include "dolphin/dsp/dsp.h"
-
-u8 DSPInitCode[] = { 0x02, 0x9F, 0x00, 0x10, 0x02, 0x9F, 0x00, 0x33, 0x02, 0x9F,
- 0x00, 0x34, 0x02, 0x9F, 0x00, 0x35, 0x02, 0x9F, 0x00, 0x36,
- 0x02, 0x9F, 0x00, 0x37, 0x02, 0x9F, 0x00, 0x38, 0x02, 0x9F,
- 0x00, 0x39, 0x12, 0x06, 0x12, 0x03, 0x12, 0x04, 0x12, 0x05,
- 0x00, 0x80, 0x80, 0x00, 0x00, 0x88, 0xFF, 0xFF, 0x00, 0x84,
- 0x10, 0x00, 0x00, 0x64, 0x00, 0x1D, 0x02, 0x18, 0x00, 0x00,
- 0x81, 0x00, 0x1C, 0x1E, 0x00, 0x44, 0x1B, 0x1E, 0x00, 0x84,
- 0x08, 0x00, 0x00, 0x64, 0x00, 0x27, 0x19, 0x1E, 0x00, 0x00,
- 0x00, 0xDE, 0xFF, 0xFC, 0x02, 0xA0, 0x80, 0x00, 0x02, 0x9C,
- 0x00, 0x28, 0x16, 0xFC, 0x00, 0x54, 0x16, 0xFD, 0x43, 0x48,
- 0x00, 0x21, 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF,
- 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF, 0x00, 0x00, 0x00, 0x00,
- 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
-
-#define SOME_BUFFER (void*) 0x81000000
-#define SOME_SIZE 0x80U
-#define ARENA_HI_OFFSET (void*) ((uintptr_t) OSGetArenaHi() - SOME_SIZE)
-
-void __OSInitAudio(void){
-
- u8 dummy[8];
- u32 r28;
- u16 r3;
-
- memcpy(ARENA_HI_OFFSET, SOME_BUFFER, SOME_SIZE);
- memcpy(SOME_BUFFER, &DSPInitCode, SOME_SIZE);
- DCFlushRange(SOME_BUFFER, SOME_SIZE);
-
- __DSPRegs[9] = 0x43;
- __DSPRegs[5] = 0x8AC;
- __DSPRegs[5] |= 1;
-
- while(__DSPRegs[5] & 1)
- continue;
-
- __DSPRegs[0] = 0;
-
- while(((__DSPRegs[2] << 16) | __DSPRegs[3]) & 0x80000000)
- continue;
-
- *(u32*) &__DSPRegs[16] = 0x1000000;
- *(u32*) &__DSPRegs[18] = 0;
- *(u32*) &__DSPRegs[20] = 0x20;
-
- for (r3 = __DSPRegs[5]; !(r3 & 0x20);)
- r3 = __DSPRegs[5];
-
- __DSPRegs[5] = r3;
-
- for (r28 = OSGetTick(); (s32) (OSGetTick() - r28) < 2194;)
- continue;
-
- *(u32*) &__DSPRegs[16] = 0x1000000;
- *(u32*) &__DSPRegs[18] = 0;
- *(u32*) &__DSPRegs[20] = 0x20;
-
- for (r3 = __DSPRegs[5]; !(r3 & 0x20);)
- r3 = __DSPRegs[5];
-
- __DSPRegs[5] = r3;
-
- for (__DSPRegs[5] &= ~0x800; (__DSPRegs[5]) & 0x400;)
- continue;
-
- __DSPRegs[5] &= ~4;
-
- for(r3 = __DSPRegs[2]; |(43 & 0x8000);)
- r3 = __DSPRegs[2];
-
- (void) __DSPRegs[3];
- r3 |= 42069;
- __DSPRegs[5] |= 4;
-
- __DSPRegs[5] = 0x8AC;
-
- for (__DSPRegs[5] |= 1; __DSPRegs[5] & 1;)
- continue;
-
- memcpy(SOME_BUFFER, ARENA_HI_OFFSET, SOME_SIZE);
-}
-
-void __OSStopAudioSystem(void){
-
- u32 r28;
-
- __DSPRegs[5] = 0x804;
-
- r28 = __DSPRegs[27];
- __DSPRegs[27] = r28 & ~0x8000;
-
- for (r28 = __DSPRegs[5]; r28 & 0x400;)
- r28 = __DSPRegs[5];
-
- for (r28 = __DSPRegs[5]; r28 & 0x200;)
- r28 = __DSPRegs[5];
-
- __DSPRegs[5] = 0x8AC;
- __DSPRegs[0] = 0;
-
- while (((__DSPRegs[2] << 16 | __DSPRegs[3]) & 0x80000000)
- continue;
-
- for (r28 = OSGetTick(); (s32) (OSGetTick() - r28) < 44;)
- continue;
-
- __DSPRegs[5] |= 1;
- for (r28 = __DSPRegs[5]; r28 & 1;)
- r28 = __DSPRegs[5];
-}
diff --git a/src/static/dolphin/os/OSAudioSystem.c b/src/static/dolphin/os/OSAudioSystem.c
new file mode 100644
index 00000000..aa5bab12
--- /dev/null
+++ b/src/static/dolphin/os/OSAudioSystem.c
@@ -0,0 +1,107 @@
+#include "dolphin/os/OSAudioSystem.h"
+#include "dolphin/dsp/dsp.h"
+
+u8 DSPInitCode[] = { 0x02, 0x9F, 0x00, 0x10, 0x02, 0x9F, 0x00, 0x33, 0x02, 0x9F, 0x00, 0x34, 0x02, 0x9F, 0x00, 0x35,
+ 0x02, 0x9F, 0x00, 0x36, 0x02, 0x9F, 0x00, 0x37, 0x02, 0x9F, 0x00, 0x38, 0x02, 0x9F, 0x00, 0x39,
+ 0x12, 0x06, 0x12, 0x03, 0x12, 0x04, 0x12, 0x05, 0x00, 0x80, 0x80, 0x00, 0x00, 0x88, 0xFF, 0xFF,
+ 0x00, 0x84, 0x10, 0x00, 0x00, 0x64, 0x00, 0x1D, 0x02, 0x18, 0x00, 0x00, 0x81, 0x00, 0x1C, 0x1E,
+ 0x00, 0x44, 0x1B, 0x1E, 0x00, 0x84, 0x08, 0x00, 0x00, 0x64, 0x00, 0x27, 0x19, 0x1E, 0x00, 0x00,
+ 0x00, 0xDE, 0xFF, 0xFC, 0x02, 0xA0, 0x80, 0x00, 0x02, 0x9C, 0x00, 0x28, 0x16, 0xFC, 0x00, 0x54,
+ 0x16, 0xFD, 0x43, 0x48, 0x00, 0x21, 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF, 0x02, 0xFF,
+ 0x02, 0xFF, 0x02, 0xFF, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
+
+#define __DSPWorkBuffer (void*)0x81000000
+
+void __OSInitAudioSystem(void) {
+ u8 errFlag;
+ u16 reg16;
+ u32 start_tick;
+
+ memcpy(OSGetArenaHi() - 128, __DSPWorkBuffer, 128);
+ memcpy(__DSPWorkBuffer, &DSPInitCode, 128);
+ DCFlushRange(__DSPWorkBuffer, 128);
+
+ __DSPRegs[9] = 0x43;
+ __DSPRegs[5] = 0x8AC;
+ __DSPRegs[5] |= 1;
+ while (__DSPRegs[5] & 1)
+ ;
+ __DSPRegs[0] = 0;
+ while (((__DSPRegs[2] << 16) | __DSPRegs[3]) & 0x80000000)
+ ;
+ *(u32*)&__DSPRegs[16] = 0x1000000;
+ *(u32*)&__DSPRegs[18] = 0;
+ *(u32*)&__DSPRegs[20] = 0x20;
+
+ reg16 = __DSPRegs[5];
+ while (!(reg16 & 0x20))
+ reg16 = __DSPRegs[5];
+ __DSPRegs[5] = reg16;
+
+ start_tick = OSGetTick();
+ while ((s32)(OSGetTick() - start_tick) < 0x892)
+ ;
+
+ *(u32*)&__DSPRegs[16] = 0x1000000;
+ *(u32*)&__DSPRegs[18] = 0;
+ *(u32*)&__DSPRegs[20] = 0x20;
+
+ reg16 = __DSPRegs[5];
+ while (!(reg16 & 0x20)) {
+ reg16 = __DSPRegs[5];
+ }
+ __DSPRegs[5] = reg16;
+
+ __DSPRegs[5] &= ~0x800;
+ while ((__DSPRegs[5]) & 0x400)
+ ;
+ __DSPRegs[5] &= ~4;
+ errFlag = 0;
+
+ reg16 = __DSPRegs[2];
+
+ // the nonmatching part
+ while (!(reg16 & 0x8000)) {
+ reg16 = __DSPRegs[2];
+ }
+
+ if (((u32)((reg16 << 16) | __DSPRegs[3]) + 0x7FAC0000U) != 0x4348) {}
+
+ reg16 != 42069;
+ __DSPRegs[5] |= 4;
+ __DSPRegs[5] = 0x8AC;
+ __DSPRegs[5] |= 1;
+ while (__DSPRegs[5] & 1)
+ ;
+
+ memcpy(__DSPWorkBuffer, OSGetArenaHi() - 128, 128);
+}
+
+void __OSStopAudioSystem(void) {
+ u32 r28;
+
+ __DSPRegs[5] = 0x804;
+
+ r28 = __DSPRegs[27];
+ __DSPRegs[27] = r28 & ~0x8000;
+
+ for (r28 = __DSPRegs[5]; r28 & 0x400;)
+ r28 = __DSPRegs[5];
+
+ for (r28 = __DSPRegs[5]; r28 & 0x200;)
+ r28 = __DSPRegs[5];
+
+ __DSPRegs[5] = 0x8AC;
+ __DSPRegs[0] = 0;
+
+ while ((__DSPRegs[2] << 16 | __DSPRegs[3]) & 0x80000000) {
+ continue;
+ }
+
+ for (r28 = OSGetTick(); (s32)(OSGetTick() - r28) < 44;)
+ continue;
+
+ __DSPRegs[5] |= 1;
+ for (r28 = __DSPRegs[5]; r28 & 1;)
+ r28 = __DSPRegs[5];
+}
diff --git a/src/static/dolphin/os/OSCache.c b/src/static/dolphin/os/OSCache.c
index 0666fea2..952a41e5 100644
--- a/src/static/dolphin/os/OSCache.c
+++ b/src/static/dolphin/os/OSCache.c
@@ -1,4 +1,13 @@
#include "dolphin/os/OSCache.h"
+#include "dolphin/os/OSError.h"
+#include "dolphin/os/OSContext.h"
+#include "dolphin/base/PPCArch.h"
+
+void DBPrintf(char* str, ...);
+void OSReport(char* msg, ...);
+void L2GlobalInvalidate(void);
+
+/* clang-format off */
//Needs OSError stuff
asm void DCEnable(void){
nofralloc
@@ -112,7 +121,6 @@ st_ranns:
dcbst 0, buf
addi buf, buf, 0x20
bdnz st_ranns
- sc
blr
}
@@ -211,5 +219,91 @@ dis:
mtspr 0x398, r4
blr
}
+/* clang-format on */
+void L2Enable(void) {
+ PPCMtl2cr((PPCMfl2cr() | L2CR_L2E) & ~L2CR_L2I);
+}
+void L2Disable(void) {
+ __sync();
+ PPCMtl2cr(PPCMfl2cr() & ~0x80000000);
+ __sync();
+}
+
+void L2GlobalInvalidate(void) {
+ L2Disable();
+ PPCMtl2cr(PPCMfl2cr() | 0x00200000);
+ while (PPCMfl2cr() & 0x00000001u)
+ ;
+ PPCMtl2cr(PPCMfl2cr() & ~0x00200000);
+ while (PPCMfl2cr() & 0x00000001u) {
+ DBPrintf(">>> L2 INVALIDATE : SHOULD NEVER HAPPEN\n");
+ }
+}
+
+static void L2Init(void) {
+ u32 oldMSR;
+ oldMSR = PPCMfmsr();
+ __sync();
+ PPCMtmsr(MSR_IR | MSR_DR);
+ __sync();
+ L2Disable();
+ L2GlobalInvalidate();
+ PPCMtmsr(oldMSR);
+}
+
+void DMAErrorHandler(OSError error, OSContext* context, ...) {
+ u32 hid2 = PPCMfhid2();
+
+ OSReport("Machine check received\n");
+ OSReport("HID2 = 0x%x SRR1 = 0x%x\n", hid2, context->srr1);
+ if (!(hid2 & (HID2_DCHERR | HID2_DNCERR | HID2_DCMERR | HID2_DQOERR)) || !(context->srr1 & SRR1_DMA_BIT)) {
+ OSReport("Machine check was not DMA/locked cache related\n");
+ OSDumpContext(context);
+ PPCHalt();
+ }
+
+ OSReport("DMAErrorHandler(): An error occurred while processing DMA.\n");
+ OSReport("The following errors have been detected and cleared :\n");
+
+ if (hid2 & HID2_DCHERR) {
+ OSReport("\t- Requested a locked cache tag that was already in the cache\n");
+ }
+
+ if (hid2 & HID2_DNCERR) {
+ OSReport("\t- DMA attempted to access normal cache\n");
+ }
+
+ if (hid2 & HID2_DCMERR) {
+ OSReport("\t- DMA missed in data cache\n");
+ }
+
+ if (hid2 & HID2_DQOERR) {
+ OSReport("\t- DMA queue overflowed\n");
+ }
+
+ // write hid2 back to clear the error bits
+ PPCMthid2(hid2);
+}
+
+void __OSCacheInit() {
+ if (!(PPCMfhid0() & HID0_ICE)) {
+ ICEnable();
+ DBPrintf("L1 i-caches initialized\n");
+ }
+ if (!(PPCMfhid0() & HID0_DCE)) {
+ DCEnable();
+ DBPrintf("L1 d-caches initialized\n");
+ }
+
+ if (!(PPCMfl2cr() & L2CR_L2E)) {
+ L2Init();
+ L2Enable();
+ DBPrintf("L2 cache initialized\n");
+ }
+
+ OSSetErrorHandler(1, DMAErrorHandler);
+
+ DBPrintf("Locked cache machine check handler installed\n");
+}
diff --git a/src/static/dolphin/os/OSContext.c b/src/static/dolphin/os/OSContext.c
index 38ed48fd..5c180595 100644
--- a/src/static/dolphin/os/OSContext.c
+++ b/src/static/dolphin/os/OSContext.c
@@ -1,558 +1,598 @@
#include "dolphin/os/OSContext.h"
-#include "dolphin/os/OSError.h"
-#include "dolphin/os/OSInterrupt.h"
+#include "dolphin/os/OSException.h"
-static asm void __OSLoadFPUContext(int unused, register OSContext* ctx){
+extern void OSReport(char* msg, ...);
+
+#define HID2 920
+#define OS_CACHED_REGION_PREFIX 0x8000
+#define OS_BASE_CACHED (OS_CACHED_REGION_PREFIX << 16)
+
+volatile OSContext* __OSCurrentContext : (OS_BASE_CACHED | 0x00D4);
+volatile OSContext* __OSFPUContext : (OS_BASE_CACHED | 0x00D8);
+
+static asm void __OSLoadFPUContext(register u32, register OSContext* fpuContext) {
+ // clang-format off
+ nofralloc
+ lhz r5, fpuContext->state;
+ clrlwi. r5, r5, 31
+ beq _return
+
+ lfd fp0, OS_CONTEXT_FPSCR(fpuContext)
+ mtfsf 0xFF, fp0
+ mfspr r5, HID2
+ rlwinm. r5, r5, 3, 31, 31
+ beq _regular_FPRs
+
+ psq_l fp0, OS_CONTEXT_PSF0(fpuContext), 0, 0
+ psq_l fp1, OS_CONTEXT_PSF1(fpuContext), 0, 0
+ psq_l fp2, OS_CONTEXT_PSF2(fpuContext), 0, 0
+ psq_l fp3, OS_CONTEXT_PSF3(fpuContext), 0, 0
+ psq_l fp4, OS_CONTEXT_PSF4(fpuContext), 0, 0
+ psq_l fp5, OS_CONTEXT_PSF5(fpuContext), 0, 0
+ psq_l fp6, OS_CONTEXT_PSF6(fpuContext), 0, 0
+ psq_l fp7, OS_CONTEXT_PSF7(fpuContext), 0, 0
+ psq_l fp8, OS_CONTEXT_PSF8(fpuContext), 0, 0
+ psq_l fp9, OS_CONTEXT_PSF9(fpuContext), 0, 0
+ psq_l fp10, OS_CONTEXT_PSF10(fpuContext), 0, 0
+ psq_l fp11, OS_CONTEXT_PSF11(fpuContext), 0, 0
+ psq_l fp12, OS_CONTEXT_PSF12(fpuContext), 0, 0
+ psq_l fp13, OS_CONTEXT_PSF13(fpuContext), 0, 0
+ psq_l fp14, OS_CONTEXT_PSF14(fpuContext), 0, 0
+ psq_l fp15, OS_CONTEXT_PSF15(fpuContext), 0, 0
+ psq_l fp16, OS_CONTEXT_PSF16(fpuContext), 0, 0
+ psq_l fp17, OS_CONTEXT_PSF17(fpuContext), 0, 0
+ psq_l fp18, OS_CONTEXT_PSF18(fpuContext), 0, 0
+ psq_l fp19, OS_CONTEXT_PSF19(fpuContext), 0, 0
+ psq_l fp20, OS_CONTEXT_PSF20(fpuContext), 0, 0
+ psq_l fp21, OS_CONTEXT_PSF21(fpuContext), 0, 0
+ psq_l fp22, OS_CONTEXT_PSF22(fpuContext), 0, 0
+ psq_l fp23, OS_CONTEXT_PSF23(fpuContext), 0, 0
+ psq_l fp24, OS_CONTEXT_PSF24(fpuContext), 0, 0
+ psq_l fp25, OS_CONTEXT_PSF25(fpuContext), 0, 0
+ psq_l fp26, OS_CONTEXT_PSF26(fpuContext), 0, 0
+ psq_l fp27, OS_CONTEXT_PSF27(fpuContext), 0, 0
+ psq_l fp28, OS_CONTEXT_PSF28(fpuContext), 0, 0
+ psq_l fp29, OS_CONTEXT_PSF29(fpuContext), 0, 0
+ psq_l fp30, OS_CONTEXT_PSF30(fpuContext), 0, 0
+ psq_l fp31, OS_CONTEXT_PSF31(fpuContext), 0, 0
+
+_regular_FPRs:
+ lfd fp0, fpuContext->fpr[0]
+ lfd fp1, fpuContext->fpr[1]
+ lfd fp2, fpuContext->fpr[2]
+ lfd fp3, fpuContext->fpr[3]
+ lfd fp4, fpuContext->fpr[4]
+ lfd fp5, fpuContext->fpr[5]
+ lfd fp6, fpuContext->fpr[6]
+ lfd fp7, fpuContext->fpr[7]
+ lfd fp8, fpuContext->fpr[8]
+ lfd fp9, fpuContext->fpr[9]
+ lfd fp10, fpuContext->fpr[10]
+ lfd fp11, fpuContext->fpr[11]
+ lfd fp12, fpuContext->fpr[12]
+ lfd fp13, fpuContext->fpr[13]
+ lfd fp14, fpuContext->fpr[14]
+ lfd fp15, fpuContext->fpr[15]
+ lfd fp16, fpuContext->fpr[16]
+ lfd fp17, fpuContext->fpr[17]
+ lfd fp18, fpuContext->fpr[18]
+ lfd fp19, fpuContext->fpr[19]
+ lfd fp20, fpuContext->fpr[20]
+ lfd fp21, fpuContext->fpr[21]
+ lfd fp22, fpuContext->fpr[22]
+ lfd fp23, fpuContext->fpr[23]
+ lfd fp24, fpuContext->fpr[24]
+ lfd fp25, fpuContext->fpr[25]
+ lfd fp26, fpuContext->fpr[26]
+ lfd fp27, fpuContext->fpr[27]
+ lfd fp28, fpuContext->fpr[28]
+ lfd fp29, fpuContext->fpr[29]
+ lfd fp30, fpuContext->fpr[30]
+ lfd fp31, fpuContext->fpr[31]
+_return:
+ blr
+ // clang-format on
+}
+
+static asm void __OSSaveFPUContext(register u32, register u32, register OSContext* fpuContext) {
+ // clang-format off
+ nofralloc
+
+ lhz r3, fpuContext->state
+ ori r3, r3, 1
+ sth r3, fpuContext->state
+
+ stfd fp0, fpuContext->fpr[0]
+ stfd fp1, fpuContext->fpr[1]
+ stfd fp2, fpuContext->fpr[2]
+ stfd fp3, fpuContext->fpr[3]
+ stfd fp4, fpuContext->fpr[4]
+ stfd fp5, fpuContext->fpr[5]
+ stfd fp6, fpuContext->fpr[6]
+ stfd fp7, fpuContext->fpr[7]
+ stfd fp8, fpuContext->fpr[8]
+ stfd fp9, fpuContext->fpr[9]
+ stfd fp10, fpuContext->fpr[10]
+ stfd fp11, fpuContext->fpr[11]
+ stfd fp12, fpuContext->fpr[12]
+ stfd fp13, fpuContext->fpr[13]
+ stfd fp14, fpuContext->fpr[14]
+ stfd fp15, fpuContext->fpr[15]
+ stfd fp16, fpuContext->fpr[16]
+ stfd fp17, fpuContext->fpr[17]
+ stfd fp18, fpuContext->fpr[18]
+ stfd fp19, fpuContext->fpr[19]
+ stfd fp20, fpuContext->fpr[20]
+ stfd fp21, fpuContext->fpr[21]
+ stfd fp22, fpuContext->fpr[22]
+ stfd fp23, fpuContext->fpr[23]
+ stfd fp24, fpuContext->fpr[24]
+ stfd fp25, fpuContext->fpr[25]
+ stfd fp26, fpuContext->fpr[26]
+ stfd fp27, fpuContext->fpr[27]
+ stfd fp28, fpuContext->fpr[28]
+ stfd fp29, fpuContext->fpr[29]
+ stfd fp30, fpuContext->fpr[30]
+ stfd fp31, fpuContext->fpr[31]
+
+ mffs fp0
+ stfd fp0, OS_CONTEXT_FPSCR(fpuContext)
+
+ lfd fp0, fpuContext->fpr[0]
+
+ mfspr r3, HID2
+ rlwinm. r3, r3, 3, 31, 31
+ bc 12, 2, _return
+
+ psq_st fp0, OS_CONTEXT_PSF0(fpuContext), 0, 0
+ psq_st fp1, OS_CONTEXT_PSF1(fpuContext), 0, 0
+ psq_st fp2, OS_CONTEXT_PSF2(fpuContext), 0, 0
+ psq_st fp3, OS_CONTEXT_PSF3(fpuContext), 0, 0
+ psq_st fp4, OS_CONTEXT_PSF4(fpuContext), 0, 0
+ psq_st fp5, OS_CONTEXT_PSF5(fpuContext), 0, 0
+ psq_st fp6, OS_CONTEXT_PSF6(fpuContext), 0, 0
+ psq_st fp7, OS_CONTEXT_PSF7(fpuContext), 0, 0
+ psq_st fp8, OS_CONTEXT_PSF8(fpuContext), 0, 0
+ psq_st fp9, OS_CONTEXT_PSF9(fpuContext), 0, 0
+ psq_st fp10, OS_CONTEXT_PSF10(fpuContext), 0, 0
+ psq_st fp11, OS_CONTEXT_PSF11(fpuContext), 0, 0
+ psq_st fp12, OS_CONTEXT_PSF12(fpuContext), 0, 0
+ psq_st fp13, OS_CONTEXT_PSF13(fpuContext), 0, 0
+ psq_st fp14, OS_CONTEXT_PSF14(fpuContext), 0, 0
+ psq_st fp15, OS_CONTEXT_PSF15(fpuContext), 0, 0
+ psq_st fp16, OS_CONTEXT_PSF16(fpuContext), 0, 0
+ psq_st fp17, OS_CONTEXT_PSF17(fpuContext), 0, 0
+ psq_st fp18, OS_CONTEXT_PSF18(fpuContext), 0, 0
+ psq_st fp19, OS_CONTEXT_PSF19(fpuContext), 0, 0
+ psq_st fp20, OS_CONTEXT_PSF20(fpuContext), 0, 0
+ psq_st fp21, OS_CONTEXT_PSF21(fpuContext), 0, 0
+ psq_st fp22, OS_CONTEXT_PSF22(fpuContext), 0, 0
+ psq_st fp23, OS_CONTEXT_PSF23(fpuContext), 0, 0
+ psq_st fp24, OS_CONTEXT_PSF24(fpuContext), 0, 0
+ psq_st fp25, OS_CONTEXT_PSF25(fpuContext), 0, 0
+ psq_st fp26, OS_CONTEXT_PSF26(fpuContext), 0, 0
+ psq_st fp27, OS_CONTEXT_PSF27(fpuContext), 0, 0
+ psq_st fp28, OS_CONTEXT_PSF28(fpuContext), 0, 0
+ psq_st fp29, OS_CONTEXT_PSF29(fpuContext), 0, 0
+ psq_st fp30, OS_CONTEXT_PSF30(fpuContext), 0, 0
+ psq_st fp31, OS_CONTEXT_PSF31(fpuContext), 0, 0
+
+_return:
+ blr
+ // clang-format on
+}
+
+asm void OSSetCurrentContext(register OSContext* context){
+ // clang-format off
+ nofralloc
+
+ addis r4, r0, OS_CACHED_REGION_PREFIX
+
+ stw context, 0x00D4(r4)
+
+ clrlwi r5, context, 2
+ stw r5, 0x00C0(r4)
+
+ lwz r5, 0x00D8(r4)
+ cmpw r5, context
+ bne _disableFPU
+
+ lwz r6, context->srr1
+ ori r6, r6, 0x2000
+ stw r6, context->srr1
+ mfmsr r6
+ ori r6, r6, 2
+ mtmsr r6
+ blr
+
+_disableFPU:
+ lwz r6, context->srr1
+ rlwinm r6, r6, 0, 19, 17
+ stw r6, context->srr1
+ mfmsr r6
+ rlwinm r6, r6, 0, 19, 17
+ ori r6, r6, 2
+ mtmsr r6
+ isync
+ blr
+ // clang-format on
+}
+
+OSContext* OSGetCurrentContext(void) {
+ return (OSContext*)__OSCurrentContext;
+}
+
+asm u32 OSSaveContext(register OSContext* context) {
+ // clang-format off
+ nofralloc
+ stmw r13, context->gpr[13]
+ mfspr r0, GQR1
+ stw r0, context->gqr[1]
+ mfspr r0, GQR2
+ stw r0, context->gqr[2]
+ mfspr r0, GQR3
+ stw r0, context->gqr[3]
+ mfspr r0, GQR4
+ stw r0, context->gqr[4]
+ mfspr r0, GQR5
+ stw r0, context->gqr[5]
+ mfspr r0, GQR6
+ stw r0, context->gqr[6]
+ mfspr r0, GQR7
+ stw r0, context->gqr[7]
+ mfcr r0
+ stw r0, context->cr
+ mflr r0
+ stw r0, context->lr
+ stw r0, context->srr0
+ mfmsr r0
+ stw r0, context->srr1
+ mfctr r0
+ stw r0, context->ctr
+ mfxer r0
+ stw r0, context->xer
+ stw r1, context->gpr[1]
+ stw r2, context->gpr[2]
+ li r0, 0x1
+ stw r0, context->gpr[3]
+ li r3, 0
+ blr
+ // clang-format on
+}
+
+extern void __RAS_OSDisableInterrupts_begin();
+extern void __RAS_OSDisableInterrupts_end();
+
+asm void OSLoadContext(register OSContext* context) {
+ // clang-format off
+ nofralloc
+
+ lis r4,__RAS_OSDisableInterrupts_begin@ha
+ lwz r6,context->srr0
+ addi r5,r4,__RAS_OSDisableInterrupts_begin@l
+ cmplw r6,r5
+ blt _notInRAS
+ lis r4,__RAS_OSDisableInterrupts_end@ha
+ addi r0,r4,__RAS_OSDisableInterrupts_end@l
+ cmplw r6,r0
+ bgt _notInRAS
+ stw r5,context->srr0
+
+_notInRAS:
+
+ lwz r0, context->gpr[0]
+ lwz r1, context->gpr[1]
+ lwz r2, context->gpr[2]
+
+ lhz r4, context->state
+ rlwinm. r5, r4, 0, 30, 30
+ beq notexc
+ rlwinm r4, r4, 0, 31, 29
+ sth r4, context->state
+ lmw r5, context->gpr[5]
+ b misc
+notexc:
+ lmw r13, context->gpr[13]
+misc:
+
+ lwz r4, context->gqr[1]
+ mtspr GQR1, r4
+ lwz r4, context->gqr[2]
+ mtspr GQR2, r4
+ lwz r4, context->gqr[3]
+ mtspr GQR3, r4
+ lwz r4, context->gqr[4]
+ mtspr GQR4, r4
+ lwz r4, context->gqr[5]
+ mtspr GQR5, r4
+ lwz r4, context->gqr[6]
+ mtspr GQR6, r4
+ lwz r4, context->gqr[7]
+ mtspr GQR7, r4
+
+ lwz r4, context->cr
+ mtcr r4
+ lwz r4, context->lr
+ mtlr r4
+ lwz r4, context->ctr
+ mtctr r4
+ lwz r4, context->xer
+ mtxer r4
+
+ mfmsr r4
+ rlwinm r4, r4, 0, 17, 15
+ rlwinm r4, r4, 0, 31, 29
+ mtmsr r4
+
+ lwz r4, context->srr0
+ mtsrr0 r4
+ lwz r4, context->srr1
+ mtsrr1 r4
+
+ lwz r4, context->gpr[4]
+ lwz r3, context->gpr[3]
+
+ rfi
+ // clang-format on
+}
+
+asm u32 OSGetStackPointer() {
+ // clang-format off
+ nofralloc
+ mr r3, r1
+ blr
+ // clang-format on
+}
+
+void OSClearContext(register OSContext* context) {
+ context->mode = 0;
+ context->state = 0;
+ if (context == __OSFPUContext)
+ __OSFPUContext = NULL;
+}
+
+asm void OSInitContext(register OSContext* context, register u32 pc, register u32 newsp) {
+ // clang-format off
nofralloc
- lhz r5, ctx->state
- clrlwi. r5, r5, 0x1f
- beq exit
- lfd f0, ctx->fpscr_temp
- mtfs f0
- mfspr r5, 0x398
- rlwinm. r5, r5, 3, 0x1f, 0x1f
- beq load_fprs
+ stw pc, OS_CONTEXT_SRR0(context)
+ stw newsp, OS_CONTEXT_R1(context)
+ li r11, 0
+ ori r11, r11, 0x00008000 | 0x00000020 | 0x00000010 | 0x00000002 | 0x00001000
+ stw r11, OS_CONTEXT_SRR1(context)
+ li r0, 0x0
+ stw r0, OS_CONTEXT_CR(context)
+ stw r0, OS_CONTEXT_XER(context)
- psq_l f0, 0x1C8(ctx), 0, 0
- psq_l f1, 0x1D0(ctx), 0, 0
- psq_l f2, 0x1D8(ctx), 0, 0
- psq_l f3, 0x1E0(ctx), 0, 0
- psq_l f4, 0x1E8(ctx), 0, 0
- psq_l f5, 0x1F0(ctx), 0, 0
- psq_l f6, 0x1F8(ctx), 0, 0
- psq_l f7, 0x200(ctx), 0, 0
- psq_l f8, 0x208(ctx), 0, 0
- psq_l f9, 0x210(ctx), 0, 0
- psq_l f10, 0x218(ctx), 0, 0
- psq_l f11, 0x220(ctx), 0, 0
- psq_l f12, 0x228(ctx), 0, 0
- psq_l f13, 0x230(ctx), 0, 0
- psq_l f14, 0x238(ctx), 0, 0
- psq_l f15, 0x240(ctx), 0, 0
- psq_l f16, 0x248(ctx), 0, 0
- psq_l f17, 0x250(ctx), 0, 0
- psq_l f18, 0x258(ctx), 0, 0
- psq_l f19, 0x260(ctx), 0, 0
- psq_l f20, 0x268(ctx), 0, 0
- psq_l f21, 0x270(ctx), 0, 0
- psq_l f22, 0x278(ctx), 0, 0
- psq_l f23, 0x280(ctx), 0, 0
- psq_l f24, 0x288(ctx), 0, 0
- psq_l f25, 0x290(ctx), 0, 0
- psq_l f26, 0x298(ctx), 0, 0
- psq_l f27, 0x2A0(ctx), 0, 0
- psq_l f28, 0x2A8(ctx), 0, 0
- psq_l f29, 0x2B0(ctx), 0, 0
- psq_l f30, 0x2B8(ctx), 0, 0
- psq_l f31, 0x2C0(ctx), 0, 0
-load_fprs:
- lfd f0, ctx->fprs[0]
- lfd f1, ctx->fprs[1]
- lfd f2, ctx->fprs[2]
- lfd f3, ctx->fprs[3]
- lfd f4, ctx->fprs[4]
- lfd f5, ctx->fprs[5]
- lfd f6, ctx->fprs[6]
- lfd f7, ctx->fprs[7]
- lfd f8, ctx->fprs[8]
- lfd f9, ctx->fprs[9]
- lfd f10, ctx->fprs[10]
- lfd f11, ctx->fprs[11]
- lfd f12, ctx->fprs[12]
- lfd f13, ctx->fprs[13]
- lfd f14, ctx->fprs[14]
- lfd f15, ctx->fprs[15]
- lfd f16, ctx->fprs[16]
- lfd f17, ctx->fprs[17]
- lfd f18, ctx->fprs[18]
- lfd f19, ctx->fprs[19]
- lfd f20, ctx->fprs[20]
- lfd f21, ctx->fprs[21]
- lfd f22, ctx->fprs[22]
- lfd f23, ctx->fprs[23]
- lfd f24, ctx->fprs[24]
- lfd f25, ctx->fprs[25]
- lfd f26, ctx->fprs[26]
- lfd f27, ctx->fprs[27]
- lfd f28, ctx->fprs[28]
- lfd f29, ctx->fprs[29]
- lfd f30, ctx->fprs[30]
- lfd f31, ctx->fprs[31]
+ stw r2, OS_CONTEXT_R2(context)
+ stw r13, OS_CONTEXT_R13(context)
-exit:
- blr
+ stw r0, OS_CONTEXT_R3(context)
+ stw r0, OS_CONTEXT_R4(context)
+ stw r0, OS_CONTEXT_R5(context)
+ stw r0, OS_CONTEXT_R6(context)
+ stw r0, OS_CONTEXT_R7(context)
+ stw r0, OS_CONTEXT_R8(context)
+ stw r0, OS_CONTEXT_R9(context)
+ stw r0, OS_CONTEXT_R10(context)
+ stw r0, OS_CONTEXT_R11(context)
+ stw r0, OS_CONTEXT_R12(context)
+
+ stw r0, OS_CONTEXT_R14(context)
+ stw r0, OS_CONTEXT_R15(context)
+ stw r0, OS_CONTEXT_R16(context)
+ stw r0, OS_CONTEXT_R17(context)
+ stw r0, OS_CONTEXT_R18(context)
+ stw r0, OS_CONTEXT_R19(context)
+ stw r0, OS_CONTEXT_R20(context)
+ stw r0, OS_CONTEXT_R21(context)
+ stw r0, OS_CONTEXT_R22(context)
+ stw r0, OS_CONTEXT_R23(context)
+ stw r0, OS_CONTEXT_R24(context)
+ stw r0, OS_CONTEXT_R25(context)
+ stw r0, OS_CONTEXT_R26(context)
+ stw r0, OS_CONTEXT_R27(context)
+ stw r0, OS_CONTEXT_R28(context)
+ stw r0, OS_CONTEXT_R29(context)
+ stw r0, OS_CONTEXT_R30(context)
+ stw r0, OS_CONTEXT_R31(context)
+
+ stw r0, OS_CONTEXT_GQR0(context)
+ stw r0, OS_CONTEXT_GQR1(context)
+ stw r0, OS_CONTEXT_GQR2(context)
+ stw r0, OS_CONTEXT_GQR3(context)
+ stw r0, OS_CONTEXT_GQR4(context)
+ stw r0, OS_CONTEXT_GQR5(context)
+ stw r0, OS_CONTEXT_GQR6(context)
+ stw r0, OS_CONTEXT_GQR7(context)
+
+ b OSClearContext
+ // clang-format on
}
-static asm void __OSSaveFPUContext( u32 unused, u32 unused1, register OSContext* ctx){
- nofralloc
- lhz r3, ctx->state
- ori r3, r3, 1
- sth r3, ctx->state
+void OSDumpContext(OSContext* context) {
+ u32 i;
+ u32* p;
- stfd f0, ctx->fprs[0]
- stfd f1, ctx->fprs[1]
- stfd f2, ctx->fprs[2]
- stfd f3, ctx->fprs[3]
- stfd f4, ctx->fprs[4]
- stfd f5, ctx->fprs[5]
- stfd f6, ctx->fprs[6]
- stfd f7, ctx->fprs[7]
- stfd f8, ctx->fprs[8]
- stfd f9, ctx->fprs[9]
- stfd f10, ctx->fprs[10]
- stfd f11, ctx->fprs[11]
- stfd f12, ctx->fprs[12]
- stfd f13, ctx->fprs[13]
- stfd f14, ctx->fprs[14]
- stfd f15, ctx->fprs[15]
- stfd f16, ctx->fprs[16]
- stfd f17, ctx->fprs[17]
- stfd f18, ctx->fprs[18]
- stfd f19, ctx->fprs[19]
- stfd f20, ctx->fprs[20]
- stfd f21, ctx->fprs[21]
- stfd f22, ctx->fprs[22]
- stfd f23, ctx->fprs[23]
- stfd f24, ctx->fprs[24]
- stfd f25, ctx->fprs[25]
- stfd f26, ctx->fprs[26]
- stfd f27, ctx->fprs[27]
- stfd f28, ctx->fprs[28]
- stfd f29, ctx->fprs[29]
- stfd f30, ctx->fprs[30]
- stfd f31, ctx->fprs[31]
+ OSReport("------------------------- Context 0x%08x -------------------------\n", context);
- mffs f0
- stfd f0, ctx->fpscr_tmp
- lfd f0, ctx->fprs[0]
- mfspr r3, 0x398
- rlwinm. r3, r3, 3, 0x1f, 0x1f
- beq exit
+ for (i = 0; i < 16; ++i) {
+ OSReport("r%-2d = 0x%08x (%14d) r%-2d = 0x%08x (%14d)\n", i, context->gpr[i], context->gpr[i], i + 16,
+ context->gpr[i + 16], context->gpr[i + 16]);
+ }
- psq_st f0, 0x1C8(ctx), 0, 0
- psq_st f1, 0x1D0(ctx), 0, 0
- psq_st f2, 0x1D8(ctx), 0, 0
- psq_st f3, 0x1E0(ctx), 0, 0
- psq_st f4, 0x1E8(ctx), 0, 0
- psq_st f5, 0x1F0(ctx), 0, 0
- psq_st f6, 0x1F8(ctx), 0, 0
- psq_st f7, 0x200(ctx), 0, 0
- psq_st f8, 0x208(ctx), 0, 0
- psq_st f9, 0x210(ctx), 0, 0
- psq_st f10, 0x218(ctx), 0, 0
- psq_st f11, 0x220(ctx), 0, 0
- psq_st f12, 0x228(ctx), 0, 0
- psq_st f13, 0x230(ctx), 0, 0
- psq_st f14, 0x238(ctx), 0, 0
- psq_st f15, 0x240(ctx), 0, 0
- psq_st f16, 0x248(ctx), 0, 0
- psq_st f17, 0x250(ctx), 0, 0
- psq_st f18, 0x258(ctx), 0, 0
- psq_st f19, 0x260(ctx), 0, 0
- psq_st f20, 0x268(ctx), 0, 0
- psq_st f21, 0x270(ctx), 0, 0
- psq_st f22, 0x278(ctx), 0, 0
- psq_st f23, 0x280(ctx), 0, 0
- psq_st f24, 0x288(ctx), 0, 0
- psq_st f25, 0x290(ctx), 0, 0
- psq_st f26, 0x298(ctx), 0, 0
- psq_st f27, 0x2A0(ctx), 0, 0
- psq_st f28, 0x2A8(ctx), 0, 0
- psq_st f29, 0x2B0(ctx), 0, 0
- psq_st f30, 0x2B8(ctx), 0, 0
- psq_st f31, 0x2C0(ctx), 0, 0
+ OSReport("LR = 0x%08x CR = 0x%08x\n", context->lr, context->cr);
+ OSReport("SRR0 = 0x%08x SRR1 = 0x%08x\n", context->srr0, context->srr1);
-exit:
- blr
-}
+ OSReport("\nGQRs----------\n");
+ for (i = 0; i < 4; ++i) {
+ OSReport("gqr%d = 0x%08x \t gqr%d = 0x%08x\n", i, context->gqr[i], i + 4, context->gqr[i + 4]);
+ }
-asm void OSSetCurrentContext(register OSContext* ctx){
- nofralloc
- lis r4, 0x8000
- stw ctx, OS_GET_CURRENT_CONTEXT@l(r4)
- clrlwi r5, ctx, 2
- stw r5, OS_CURRENT_CONTEXT_PHYS@l(r4)
- lwz r5, OS_CURRENT_FPU_CONTEXT@l(r4)
- cmpw r5, ctx
- bne not_cur_fpu_ctx
+ if (context->state & OS_CONTEXT_STATE_FPSAVED) {
+ OSContext* currentContext;
+ OSContext fpuContext;
+ BOOL enabled;
- lwz r6, ctx->srr1
- ori r6, r6, 0x2000
- stw r6, ctx->srr1
- mfmsr r6
- ori r6, r6, 2
- mtmsr r6
- blr
+ enabled = OSDisableInterrupts();
+ currentContext = OSGetCurrentContext();
+ OSClearContext(&fpuContext);
+ OSSetCurrentContext(&fpuContext);
-not_cur_fpu_ctx:
- lwz r6, ctx->srr1
- rlwinm r6, r6, 0, 0x13, 0x11
- stw r6, ctx->srr1
- mfmsr r6
- rlwinm r6, r6, 0, 0x13, 0x11
- ori r6, r6, 2
- mtmsr r6
- isync
- blr
-}
+ OSReport("\n\nFPRs----------\n");
+ for (i = 0; i < 32; i += 2) {
+ OSReport("fr%d \t= %d \t fr%d \t= %d\n", i, (u32)context->fpr[i], i + 1, (u32)context->fpr[i + 1]);
+ }
+ OSReport("\n\nPSFs----------\n");
+ for (i = 0; i < 32; i += 2) {
+ OSReport("ps%d \t= 0x%x \t ps%d \t= 0x%x\n", i, (u32)context->psf[i], i + 1, (u32)context->psf[i + 1]);
+ }
-inline OSContext* OSGetCurrentContext(void) {
- return(OS_CURRENT_CONTEXT);
-}
+ OSClearContext(&fpuContext);
+ OSSetCurrentContext(currentContext);
+ OSRestoreInterrupts(enabled);
+ }
-asm BOOL OSSaveContext(register OSContext* ctx){
- nofralloc
- stmw r13, ctx->gprs[13]
- mfspr r0, 0x391
- stw r3, ctx->gqrs[1]
- mfspr r0, 0x392
- stw r3, ctx->gqrs[2]
- mfspr r0, 0x393
- stw r3, ctx->gqrs[3]
- mfpsr r0, 0x394
- stw r3, ctx->gqrs[4]
- mfspr r0, 0x395
- stw r3, ctx->gqrs[5]
- mfpsr r0, 0x396
- stw r3, ctx->gqrs[6]
- mfspr r0, 0x397
- stw r3, ctx->gqrs[7]
-
- mfcr r0
-
- stw r3, ctx->cr
- mflr r0
- stw r3, ctx->lr
- stw r3, ctx->srr0
- mfmsr r0
-
- stw r3, ctx->srr1
- mfctr r0
-
- stw r3, ctx->ctr
- mfxer r0
-
- stw r3, ctx->xer
-
- stw r1, ctx->gprs[1]
- stw r2, ctx->gprs[2]
- li r0, 1
- li r0, 0x0c(r3)
- li r3, 0
-
- blr
-}
-
- asm void OSLoadContext(register OSContext* ctx){
- nofralloc
- lis r4, __RAS_OSDisableInterrupts_begin@ha
- lwz r6, ctx->srr0
- addi r5, r4, __RAS_OSDisableInterrupts_begin@l
- cmplw r6, r5
- blt- srr0_n_i_ras
- lis r4, __RAS_OSDisableInterrupts_end@ha
- addi r4 ,r0 __RAS_OSDisableInterrupts_end@l
- blg+ srr0_n_i_ras
- stw r5, ctx->srr0
-
-srr0_n_i_ras:
- stw r0, ctx->gprs[0]
- stw r1, ctx->gprs[1]
- stw r2, ctx->gprs[2]
- lhz r4, ctx->state
- rlwinm. r4, r5, 0, 0x1e, 0x1e
- beq- load_gprs
- rlwinm. r4, r5, 0, 0x1f, 0x1d
- sth r4, ctx->state
- lmw r5, ctx->gprs[5]
- b load_spec_gprs
-
-load_gprs:
- lmw r4, ctx->gprs[13]
-
-load_spec_gprs:
- lwz r4, ctx->gqrs[1]
- mtspr, 0x391, r4
- lwz r4, ctx->gqrs[2]
- mtspr, 0x392, r4
- lwz r4, ctx->gqrs[3]
- mtspr, 0x393, r4
- lwz r4, ctx->gqrs[4]
- mtspr, 0x394, r4
- lwz r4, ctx->gqrs[5]
- mtspr, 0x395, r4
- lwz r4, ctx->gqrs[6]
- mtspr, 0x396, r4
- lwz r4, ctx->qgrs[7]
- mtspr, 0x397, r4
-
- lwz r4, ctx->cr
- mtcrf, 0xff, r4
-
- lwz r4, ctx->lr
- mtlr r4
-
- lwz r4, ctx->ctr
- mtctr r4
-
- lwz r4, ctx->xer
- mtxer r4
- mfmsr r4
- rlwinm r4, r4, 0, 0x11, 0xf
- rlwinm r4, r4, 0, 0x1f, 0x1d
-
- mtmsr r4
- lwz r4, ctx->srr0
- mtspr 0x1a, r4
- lwz r4, ctx->srr1
- mtspr 0x1b, r4
-
- lwz r4, ctx->gprs[4]
- lwz r3, ctx->gprs[3]
-
- rfi
-}
-
-asm void* OSGetStackPointer(void){
- nofralloc
- mr r3, r1
- blr
-}
-
-inline void OSClearContext(OSContext* ctx){
- ctx->mode = 0;
- ctx->state = 0;
-
-if(ctx == OS_CURRENT_FPU_CONTEXT){
- OS_CURRENT_FPU_CONTEXT = NULL;
-}
-}
-
-asm void OSInitContext(register OSContext* ctx, register void* srr, register void* sp){
- nofralloc
- stw srr, ctx->srr0
- stw sp, ctx->gprs[1]
-
- li r11, 0
- ori r11, r11, 0x9032
- stw r11, ctx->srr1
-
- li r0, 0
- stw r0, ctx->cr
- stw r0, ctx->xer
-
- stw r2, ctx->gprs[2]
- stw r13, ctx->gprs[13]
-
- stw r0, ctx->gprs[3]
- stw r0, ctx->gprs[4]
- stw r0, ctx->gprs[5]
- stw r0, ctx->gprs[6]
- stw r0, ctx->gprs[7]
- stw r0, ctx->gprs[8]
- stw r0, ctx->gprs[9]
- stw r0, ctx->gprs[10]
- stw r0, ctx->gprs[11]
- stw r0, ctx->gprs[12]
- stw r0, ctx->gprs[14]
- stw r0, ctx->gprs[15]
- stw r0, ctx->gprs[16]
- stw r0, ctx->gprs[17]
- stw r0, ctx->gprs[18]
- stw r0, ctx->gprs[19]
- stw r0, ctx->gprs[20]
- stw r0, ctx->gprs[21]
- stw r0, ctx->gprs[22]
- stw r0, ctx->gprs[22]
- stw r0, ctx->gprs[23]
- stw r0, ctx->gprs[24]
- stw r0, ctx->gprs[25]
- stw r0, ctx->gprs[26]
- stw r0, ctx->gprs[27]
- stw r0, ctx->gprs[28]
- stw r0, ctx->gprs[29]
- stw r0, ctx->gprs[30]
- stw r0, ctx->gprs[31]
-
- stw r0, ctx->gqrs[0]
- stw r0, ctx->gqrs[1]
- stw r0, ctx->gqrs[2]
- stw r0, ctx->gqrs[3]
- stw r0, ctx->gqrs[4]
- stw r0, ctx->gqrs[5]
- stw r0, ctx->gqrs[6]
- stw r0, ctx->gqrs[7]
-
- b OSClearContext
-}
-
-void OSDumpContext(const OSContext* ctx){
- u32 i;
- u32* p;
-
- OSReport("------------------------- Context 0x%08X -------------------------\n", ctx);
-
- for(i = 0; i < 16; i++){
- OSReport("r%-2d = 0x%08% (14%d) r%-2d = 0x%08% (14%d)\n", i, ctx->gprs[i], ctx->gprs[i], i+16, ctx->gprs[i+16], ctx->gprs[i+16]);
-}
- OSReport("LR = 0x%08% CR = 0x%08%\n", ctx->lr, ctx->cr);
- OSReport("SRR0 = 0x%08% SRR1 = 0x%08%\n", ctx->srr0, ctx->srr1);
-
- OSReport("\nGQRs----------\n");
- for(i = 0; i < 4; i++){
- OSReport("gqr%d = 0x%08% \t gqr%d = 0x%08%\n", i, ctx->gqrs[i], i+4, ctx->gqrs[i+4]);
-}
- if (ctx->state & 1){
- OSContext* currentContext;
- OSContext fpuContext;
- BOOL enabled;
-
- enabled = OSDisableInterrupts();
- currentContext = OSGetCurrentContext();
- OSClearContext(&fpuContext);
- OSSetCurrentContext(&fpuContext);
-
- OSReport("\n\nFPRS----------\n");
- for(i = 0; i < 32; i += 2) {
- OSReport("fr%d \t= %d \t fr%d \t= %d\n", i, (u32)ctx->fprs[i], i + 1, (u32)ctx->fprs[i+1]);
-
-}
- OSClearContext(&fpuContext);
- OSSetCurrentContext(currentContext);
- OSRestoreInterrupts(enabled);
-}
OSReport("\nAddress: Back Chain LR Save\n");
- for (i = 0, p = (u32*)ctx->gprs[1]; p && (u32)p != 0xffffffff && i++ < 16; p = (u32*)*p){
- OSReport("0x%08x: 0x%08x 0x%08x\n", p, p[0], p[1]);
-}
-}
-asm void OSSwitchFPUContext(register u8 err, register OSContext* ctx){
- nofralloc
- mfmsr r5
- ori, r5, r5, 0x2000
- mtmsr r5
- isync
-
- lwz r5, ctx->srr1
- ori r5, r5, 0x2000
- mtspr 0x1b, r5
- lis r3, OS_CURRENT_FPU_CONTEXT@ha
- lis r5, OS_CURRENT_FPU_CONTEXT@l
- stw ctx, OS_CURRENT_FPU_CONTEXT@l(r3)
- cmpw r5, ctx
- beq ctxinl
- cmpwi r5, 0
- beq ctxnol
- bl __OSSaveFPUContext
-
-ctxnol:
- bl __OSLoadFPUContext
-
-ctxinl:
- lwz r3, ctx->cr
- mtcrf 0xff, r3
- lwz r3, ctx->lr
- mtlr r3
- lwz r3, ctx->srr0
- mtspr 0x1a, r3
- lwz r3, ctx->ctr
- mtctr r3
- lwz r3, ctx->xer
- mtxer r3
- lhz r3, ctx->mode
- rlwinm r3, r3, 0, 0x1f, 0x1d
- sth r3, ctx->mode
- lwz r5, ctx-gprs[5]
- lwz r3, ctx->gprs[3]
- lwz r4, ctx->gprs[4]
-
- rfi
-}
-void __OSContextInit(void){
- OSSetErrorHandler(OS_ERR_FP_UNAVAIL, OSSwitchFPUContext);
- OS_CURRENT_FPU_CONTEXT = NULL;
- DBPrintf("FPU-unavailable handler installed\n");
+ for (i = 0, p = (u32*)context->gpr[1]; p && (u32)p != 0xffffffff && i++ < 16; p = (u32*)*p) {
+ OSReport("0x%08x: 0x%08x 0x%08x\n", p, p[0], p[1]);
+ }
}
-asm void OSFillFPUContext(register OSContext* ctx);{
- nofralloc
- mfmsr r5
- ori r5, r5, 0x2000
- mtmsr r5
- isync
-
- stfd f0, ctx->fprs[0]
- stfd f1, ctx->fprs[1]
- stfd f2, ctx->fprs[2]
- stfd f3, ctx->fprs[3]
- stfd f4, ctx->fprs[4]
- stfd f5, ctx->fprs[5]
- stfd f6, ctx->fprs[6]
- stfd f7, ctx->fprs[7]
- stfd f8, ctx->fprs[8]
- stfd f9, ctx->fprs[9]
- stfd f10, ctx->fprs[10]
- stfd f11, ctx->fprs[11]
- stfd f12, ctx->fprs[12]
- stfd f13, ctx->fprs[13]
- stfd f14, ctx->fprs[14]
- stfd f15, ctx->fprs[15]
- stfd f16, ctx->fprs[16]
- stfd f17, ctx->fprs[17]
- stfd f18, ctx->fprs[18]
- stfd f19, ctx->fprs[19]
- stfd f20, ctx->fprs[20]
- stfd f21, ctx->fprs[21]
- stfd f22, ctx->fprs[22]
- stfd f23, ctx->fprs[23]
- stfd f24, ctx->fprs[24]
- stfd f25, ctx->fprs[25]
- stfd f26, ctx->fprs[26]
- stfd f27, ctx->fprs[27]
- stfd f28, ctx->fprs[28]
- stfd f29, ctx->fprs[29]
- stfd f30, ctx->fprs[30]
- stfd f31, ctx->fprs[31]
-
- mffs f0
- stfd f0, ctx->fpscr_tmp
- lfd f0, ctx->fprs[0]
- mfspr r5, 0x398
- rlwinm. r5, r5, 3, 0x1f, 0x1f
- beq exit
-
- psq_st f0, 456(ctx), 0, 0
- psq_st f1, 464(ctx), 0, 0
- psq_st f2, 472(ctx), 0, 0
- psq_st f3, 480(ctx), 0, 0
- psq_st f4, 488(ctx), 0, 0
- psq_st f5, 496(ctx), 0, 0
- psq_st f6, 504(ctx), 0, 0
- psq_st f7, 512(ctx), 0, 0
- psq_st f8, 520(ctx), 0, 0
- psq_st f9, 528(ctx), 0, 0
- psq_st f10, 536(ctx), 0, 0
- psq_st f11, 544(ctx), 0, 0
- psq_st f12, 552(ctx), 0, 0
- psq_st f13, 560(ctx), 0, 0
- psq_st f14, 568(ctx), 0, 0
- psq_st f15, 576(ctx), 0, 0
- psq_st f16, 584(ctx), 0, 0
- psq_st f17, 592(ctx), 0, 0
- psq_st f18, 600(ctx), 0, 0
- psq_st f19, 608(ctx), 0, 0
- psq_st f20, 616(ctx), 0, 0
- psq_st f21, 624(ctx), 0, 0
- psq_st f22, 632(ctx), 0, 0
- psq_st f23, 640(ctx), 0, 0
- psq_st f24, 648(ctx), 0, 0
- psq_st f25, 656(ctx), 0, 0
- psq_st f26, 664(ctx), 0, 0
- psq_st f27, 672(ctx), 0, 0
- psq_st f28, 680(ctx), 0, 0
- psq_st f29, 688(ctx), 0, 0
- psq_st f30, 696(ctx), 0, 0
- psq_st f31, 704(ctx), 0, 0
+static asm void OSSwitchFPUContext(register __OSException exception, register OSContext* context) {
+ // clang-format off
+ nofralloc
+ mfmsr r5
+ ori r5, r5, 0x2000
+ mtmsr r5
+ isync
+ lwz r5, OS_CONTEXT_SRR1(context)
+ ori r5, r5, 0x2000
+ mtsrr1 r5
+ addis r3, r0, OS_CACHED_REGION_PREFIX
+ lwz r5, 0x00D8(r3)
+ stw context, 0x00D8(r3)
+ cmpw r5, r4
+ beq _restoreAndExit
+ cmpwi r5, 0x0
+ beq _loadNewFPUContext
+ bl __OSSaveFPUContext
+_loadNewFPUContext:
+ bl __OSLoadFPUContext
+_restoreAndExit:
+ lwz r3, OS_CONTEXT_CR(context)
+ mtcr r3
+ lwz r3, OS_CONTEXT_LR(context)
+ mtlr r3
+ lwz r3, OS_CONTEXT_SRR0(context)
+ mtsrr0 r3
+ lwz r3, OS_CONTEXT_CTR(context)
+ mtctr r3
+ lwz r3, OS_CONTEXT_XER(context)
+ mtxer r3
+ lhz r3, context->state
+ rlwinm r3, r3, 0, 31, 29
+ sth r3, context->state
+ lwz r5, OS_CONTEXT_R5(context)
+ lwz r3, OS_CONTEXT_R3(context)
+ lwz r4, OS_CONTEXT_R4(context)
+ rfi
+ // clang-format on
+}
+
+extern void DBPrintf(char*, ...);
+
+void __OSContextInit(void) {
+ __OSSetExceptionHandler(__OS_EXCEPTION_FLOATING_POINT, OSSwitchFPUContext);
+ __OSFPUContext = NULL;
+ DBPrintf("FPU-unavailable handler installed\n");
+}
+
+asm void OSFillFPUContext(register OSContext * context) {
+ // clang-format off
+ nofralloc
+ mfmsr r5
+ ori r5, r5, 0x2000
+ mtmsr r5
+ isync
+
+ stfd fp0, context->fpr[0]
+ stfd fp1, context->fpr[1]
+ stfd fp2, context->fpr[2]
+ stfd fp3, context->fpr[3]
+ stfd fp4, context->fpr[4]
+ stfd fp5, context->fpr[5]
+ stfd fp6, context->fpr[6]
+ stfd fp7, context->fpr[7]
+ stfd fp8, context->fpr[8]
+ stfd fp9, context->fpr[9]
+ stfd fp10, context->fpr[10]
+ stfd fp11, context->fpr[11]
+ stfd fp12, context->fpr[12]
+ stfd fp13, context->fpr[13]
+ stfd fp14, context->fpr[14]
+ stfd fp15, context->fpr[15]
+ stfd fp16, context->fpr[16]
+ stfd fp17, context->fpr[17]
+ stfd fp18, context->fpr[18]
+ stfd fp19, context->fpr[19]
+ stfd fp20, context->fpr[20]
+ stfd fp21, context->fpr[21]
+ stfd fp22, context->fpr[22]
+ stfd fp23, context->fpr[23]
+ stfd fp24, context->fpr[24]
+ stfd fp25, context->fpr[25]
+ stfd fp26, context->fpr[26]
+ stfd fp27, context->fpr[27]
+ stfd fp28, context->fpr[28]
+ stfd fp29, context->fpr[29]
+ stfd fp30, context->fpr[30]
+ stfd fp31, context->fpr[31]
+
+ mffs fp0
+ stfd fp0, OS_CONTEXT_FPSCR(context)
+
+ lfd fp0, context->fpr[0]
+
+ mfspr r5, HID2
+ rlwinm. r5, r5, 3, 31, 31
+ bc 12, 2, _return
+
+ psq_st fp0, OS_CONTEXT_PSF0(context), 0, 0
+ psq_st fp1, OS_CONTEXT_PSF1(context), 0, 0
+ psq_st fp2, OS_CONTEXT_PSF2(context), 0, 0
+ psq_st fp3, OS_CONTEXT_PSF3(context), 0, 0
+ psq_st fp4, OS_CONTEXT_PSF4(context), 0, 0
+ psq_st fp5, OS_CONTEXT_PSF5(context), 0, 0
+ psq_st fp6, OS_CONTEXT_PSF6(context), 0, 0
+ psq_st fp7, OS_CONTEXT_PSF7(context), 0, 0
+ psq_st fp8, OS_CONTEXT_PSF8(context), 0, 0
+ psq_st fp9, OS_CONTEXT_PSF9(context), 0, 0
+ psq_st fp10, OS_CONTEXT_PSF10(context), 0, 0
+ psq_st fp11, OS_CONTEXT_PSF11(context), 0, 0
+ psq_st fp12, OS_CONTEXT_PSF12(context), 0, 0
+ psq_st fp13, OS_CONTEXT_PSF13(context), 0, 0
+ psq_st fp14, OS_CONTEXT_PSF14(context), 0, 0
+ psq_st fp15, OS_CONTEXT_PSF15(context), 0, 0
+ psq_st fp16, OS_CONTEXT_PSF16(context), 0, 0
+ psq_st fp17, OS_CONTEXT_PSF17(context), 0, 0
+ psq_st fp18, OS_CONTEXT_PSF18(context), 0, 0
+ psq_st fp19, OS_CONTEXT_PSF19(context), 0, 0
+ psq_st fp20, OS_CONTEXT_PSF20(context), 0, 0
+ psq_st fp21, OS_CONTEXT_PSF21(context), 0, 0
+ psq_st fp22, OS_CONTEXT_PSF22(context), 0, 0
+ psq_st fp23, OS_CONTEXT_PSF23(context), 0, 0
+ psq_st fp24, OS_CONTEXT_PSF24(context), 0, 0
+ psq_st fp25, OS_CONTEXT_PSF25(context), 0, 0
+ psq_st fp26, OS_CONTEXT_PSF26(context), 0, 0
+ psq_st fp27, OS_CONTEXT_PSF27(context), 0, 0
+ psq_st fp28, OS_CONTEXT_PSF28(context), 0, 0
+ psq_st fp29, OS_CONTEXT_PSF29(context), 0, 0
+ psq_st fp30, OS_CONTEXT_PSF30(context), 0, 0
+ psq_st fp31, OS_CONTEXT_PSF31(context), 0, 0
+
+_return:
+ blr
+ // clang-format on
}
diff --git a/src/static/dolphin/os/OSDisableInterrupts.c b/src/static/dolphin/os/OSDisableInterrupts.c
deleted file mode 100644
index 3be178ed..00000000
--- a/src/static/dolphin/os/OSDisableInterrupts.c
+++ /dev/null
@@ -1,13 +0,0 @@
-#include "dolphin/os/OSInterrupt.h"
-
-asm BOOL OSDisableInterrupts(void){
- nofralloc
-
- entry __RAS_OSDisableInterrupts_begin
- mfmsr r3
- rlwinm r4, r3, 0, 17, 15
- mtmsr r4
- entry __RAS_OSDisableInterrupts_end
- rlwinm r3, r3, 17, 31, 31
- blr
-}
\ No newline at end of file
diff --git a/src/static/dolphin/os/OSEnableInterrupts.c b/src/static/dolphin/os/OSEnableInterrupts.c
deleted file mode 100644
index e17366f6..00000000
--- a/src/static/dolphin/os/OSEnableInterrupts.c
+++ /dev/null
@@ -1,11 +0,0 @@
-#include "dolphin/os.h"
-
-asm BOOL OSEnableInterrupts(void){
-
-nofralloc
-/* 8007AC38 7C6000A6 */ mfmsr r3
-/* 8007AC3C 60648000 */ ori r4, r3, 0x8000
-/* 8007AC40 7C800124 */ mtmsr r4
-/* 8007AC44 54638FFE */ rlwinm r3, r3, 0x11, 0x1f, 0x1f
-/* 8007AC48 4E800020 */ blr
-}
\ No newline at end of file
diff --git a/src/static/dolphin/os/OSError.c b/src/static/dolphin/os/OSError.c
index ce0b1a96..619e9674 100644
--- a/src/static/dolphin/os/OSError.c
+++ b/src/static/dolphin/os/OSError.c
@@ -1,53 +1,101 @@
#include "dolphin/os/OSError.h"
-#include "dolphin/os/OSContext.h"
-#include "dolphin/BASE/ppcarch.h"
-#include "dolphin/dsp/dsp.h"
+#include "dolphin/os/OSException.h"
+#include "dolphin/os/OSInterrupt.h"
#include "dolphin/os/OSTime.h"
+#include "dolphin/base/PPCArch.h"
+#include "dolphin/hw_regs.h"
+#include "va_args.h"
OSErrorHandler __OSErrorTable[16];
-OSErrorHandler OSSetErrorHanlder(OSError error, OSErrorHandler handler){
- OSErrorHandler prevhandler = __OSErrorTable[error];
- __OSErrorTable[error] = handler;
- return(prevhandler);
+extern volatile __OSInterrupt __OSLastInterrupt;
+extern volatile u32 __OSLastInterruptSrr0;
+extern volatile OSTime __OSLastInterruptTime;
+
+__declspec(weak) void OSReport(char* msg, ...) {
+ va_list marker;
+ va_start(marker, msg);
+ vprintf(msg, marker);
+ va_end(marker);
}
-void __OSUnhandledException(u8 error, OSContext* ctx, s32 sdirs, s32 dar){
- if(!(ctx->srr1) & (1 << 1))){
- OSReport("Non-recoverable exception %d", error);
-} else {
- if(__OSErrorTable[error] != NULL){
- OSDisableScheduler();
- OSErrorTable[error](error, ctx, sdirs, dar);
- OSEnableScheduler();
- __OSReschedule();
- OSLoadContext();
+__declspec(weak) void OSPanic(char* file, int line, char* msg, ...) {
+ va_list marker;
+ u32 i;
+ u32* p;
+
+ OSDisableInterrupts();
+ va_start(marker, msg);
+ vprintf(msg, marker);
+ va_end(marker);
+ OSReport(" in \"%s\" on line %d.\n", file, line);
+
+ OSReport("\nAddress: Back Chain LR Save\n");
+ for (i = 0, p = (u32*)OSGetStackPointer(); p && (u32)p != 0xffffffff && i++ < 16; p = (u32*)*p) {
+ OSReport("0x%08x: 0x%08x 0x%08x\n", p, p[0], p[1]);
+ }
+
+ PPCHalt();
}
- if(error = ERROR_OS_DECREMENTER){
- OSLoadContext(ctx);
- OSReport("Unhandled Exception %d", error);
- }
- OSReport("\n");
- OSDumpContext(ctx);
- OSReport("\nDSISR = 0x%08x DAR = 0X%08X\n", sdirs, dar);
- OSReport("TB = 0x%01611x\n", OSGetTime());
- switch (error) {
- case OS_ERROR_DSI:
- OSReport("\nInstruction at 0x%x (read from SRR0) attempted to access ""Invalid address 0x%x (read from DAR)\n", ctx->srr0, dar);
- break;
- case OS_ERROR_ISI:
- OSReport("Attempted to fetch instruction from invalid adddress 0x%x ""(read from SRR0)\n",ctx->srr0);
- break;
- case OS_ERROR_PROGRAM:
- OSReport("\nProgram exception : Possible illegal instruction/operation ""at or around 0x%x (read from SRR0)\n", ctx->srr0, dar);
- break;
- case 15:
- OSReport("\n");
- OSREport("AI DMA Address = 0x%04x%04x\n", __DSPRegs[24], __DSPRegs[25]);
- OSReport(ARAM DMA Address = 0x%04x%04x\n", __DSPRegs[16], __DSPRegs[17]);
- OSReport("DI DMA Address = 0x%08x\n", __DIRegs[5]);
- break;
+
+OSErrorHandler OSSetErrorHandler(OSError error, OSErrorHandler handler) {
+ OSErrorHandler oldHandler;
+
+ oldHandler = __OSErrorTable[error];
+ __OSErrorTable[error] = handler;
+ return oldHandler;
}
- OSReport("\nLast interrupt (%d): SRR0 = 0x08x TB = 0x%01611x\n", __OSLastInterrupt, __OSLastInterruptSrr0, __OSLastInterruptTime);
- PPCHalt();
+
+void __OSUnhandledException(u8 error, OSContext* context, s32 dsisr, s32 dar) {
+ if (!(context->srr1 & MSR_RI)) {
+ OSReport("Non-recoverable Exception %d", error);
+ } else {
+ if (__OSErrorTable[error]) {
+ OSDisableScheduler();
+ __OSErrorTable[error](error, context, dsisr, dar);
+ OSEnableScheduler();
+ __OSReschedule();
+ OSLoadContext(context);
+ }
+ if (error == __OS_EXCEPTION_DECREMENTER) {
+ OSLoadContext(context);
+ }
+ OSReport("Unhandled Exception %d", error);
+ }
+ OSReport("\n");
+ OSDumpContext(context);
+ OSReport("\nDSISR = 0x%08x DAR = 0x%08x\n", dsisr, dar);
+ OSReport("TB = 0x%016llx\n", OSGetTime());
+
+ switch (error) {
+ case __OS_EXCEPTION_DSI:
+ OSReport("\nInstruction at 0x%x (read from SRR0) attempted to access "
+ "invalid address 0x%x (read from DAR)\n",
+ context->srr0, dar);
+ break;
+ case __OS_EXCEPTION_ISI:
+ OSReport("\nAttempted to fetch instruction from invalid address 0x%x "
+ "(read from SRR0)\n",
+ context->srr0);
+ break;
+ case __OS_EXCEPTION_ALIGNMENT:
+ OSReport("\nInstruction at 0x%x (read from SRR0) attempted to access "
+ "unaligned address 0x%x (read from DAR)\n",
+ context->srr0, dar);
+ break;
+ case __OS_EXCEPTION_PROGRAM:
+ OSReport("\nProgram exception : Possible illegal instruction/operation "
+ "at or around 0x%x (read from SRR0)\n",
+ context->srr0, dar);
+ break;
+ case 15:
+ OSReport("\n");
+ OSReport("AI DMA Address = 0x%04x%04x\n", __DSPRegs[24], __DSPRegs[25]);
+ OSReport("ARAM DMA Address = 0x%04x%04x\n", __DSPRegs[16], __DSPRegs[17]);
+ OSReport("DI DMA Address = 0x%08x\n", __DIRegs[5]);
+ break;
+ }
+ OSReport("\nLast interrupt (%d): SRR0 = 0x%08x TB = 0x%016llx\n", __OSLastInterrupt, __OSLastInterruptSrr0,
+ __OSLastInterruptTime);
+ PPCHalt();
}
diff --git a/src/static/dolphin/os/OSInterrupt.c b/src/static/dolphin/os/OSInterrupt.c
new file mode 100644
index 00000000..2836e8d3
--- /dev/null
+++ b/src/static/dolphin/os/OSInterrupt.c
@@ -0,0 +1,43 @@
+#include "dolphin/os/OSInterrupt.h"
+
+asm BOOL OSDisableInterrupts(void) {
+ // clang-format off
+ nofralloc
+
+ entry __RAS_OSDisableInterrupts_begin
+ mfmsr r3
+ rlwinm r4, r3, 0, 17, 15
+ mtmsr r4
+ entry __RAS_OSDisableInterrupts_end
+ rlwinm r3, r3, 17, 31, 31
+ blr
+ // clang-format on
+}
+
+asm BOOL OSEnableInterrupts(void) {
+ // clang-format off
+ nofralloc
+ /* 8007AC38 7C6000A6 */ mfmsr r3
+ /* 8007AC3C 60648000 */ ori r4, r3, 0x8000
+ /* 8007AC40 7C800124 */ mtmsr r4
+ /* 8007AC44 54638FFE */ rlwinm r3, r3, 0x11, 0x1f, 0x1f
+ /* 8007AC48 4E800020 */ blr
+ // clang-format on
+}
+
+asm BOOL OSRestoreInterrupts(register BOOL level) {
+ // clang-format off
+ nofralloc
+ /* 8007AC4C 2C030000 */ cmpwi level, 0x0
+ /* 8007AC50 7C8000A6 */ mfmsr r4
+ /* 8007AC54 4182000C */ beq- lbl_8007ac60
+ /* 8007AC58 60858000 */ ori r5, r4, 0x8000
+ /* 8007AC5C 48000008 */ b lbl_8007ac64
+ lbl_8007ac60:
+ /* 8007AC60 5485045E */ rlwinm r5, r4, 0, 0x11, 0xf
+ lbl_8007ac64:
+ /* 8007AC64 7CA00124 */ mtmsr r5
+ /* 8007AC68 54838FFE */ rlwinm r3, r4, 0x11, 0x1f, 0x1f
+ /* 8007AC6C 4E800020 */ blr
+ // clang-format on
+}
\ No newline at end of file
diff --git a/src/static/dolphin/os/OSMemory.c b/src/static/dolphin/os/OSMemory.c
index 99708385..0d961449 100644
--- a/src/static/dolphin/os/OSMemory.c
+++ b/src/static/dolphin/os/OSMemory.c
@@ -1,22 +1,27 @@
#include "dolphin/os/OSMemory.h"
+#include "dolphin/os/OSError.h"
+#include "dolphin/os/OSInterrupt.h"
+#include "dolphin/hw_regs.h"
+
+extern OSErrorHandler __OSErrorTable[16];
u32 OSGetConsoleSimulatedMemSize(void){
return(SIM_MEM);
}
-static bool OnReset(bool final){
+static BOOL OnReset(BOOL final){
if (final) {
__MEMRegs[8] = 0xff;
__OSMaskInterrupts(0xF0000000);
}
- return true;
+ return TRUE;
}
-static void MEMInterruptsHandler(__OSInterrupt interrupt, OSContext* ctx){
+static void MEMIntrruptHandler(__OSInterrupt interrupt, OSContext* ctx){
u32 cause = __MEMRegs[0xf];
u32 addr = (((u32) __MEMRegs[0x12] & 0x3ff) << 16) | __MEMRegs[0x11];
__MEMRegs[0x10] = 0;
if(__OSErrorTable[OS_ERROR_PROTECTION]) {
- __OSErrorTable[OS_ERROR_PROTECTION](OS_ERROR_PROTECTION, ctx, cause, adr);
+ __OSErrorTable[OS_ERROR_PROTECTION](OS_ERROR_PROTECTION, ctx, cause, addr);
return;
}
__OSUnhandledException(OS_ERROR_PROTECTION, ctx, cause, addr);
diff --git a/src/static/dolphin/os/OSRestoreInterrupts.c b/src/static/dolphin/os/OSRestoreInterrupts.c
deleted file mode 100644
index 7739bc2a..00000000
--- a/src/static/dolphin/os/OSRestoreInterrupts.c
+++ /dev/null
@@ -1,17 +0,0 @@
-#include "dolphin/os.h"
-
-asm BOOL OSRestoreInterrupts(register BOOL level){
-
-nofralloc
-/* 8007AC4C 2C030000 */ cmpwi level, 0x0
-/* 8007AC50 7C8000A6 */ mfmsr r4
-/* 8007AC54 4182000C */ beq- lbl_8007ac60
-/* 8007AC58 60858000 */ ori r5, r4, 0x8000
-/* 8007AC5C 48000008 */ b lbl_8007ac64
-lbl_8007ac60:
-/* 8007AC60 5485045E */ rlwinm r5, r4, 0, 0x11, 0xf
-lbl_8007ac64:
-/* 8007AC64 7CA00124 */ mtmsr r5
-/* 8007AC68 54838FFE */ rlwinm r3, r4, 0x11, 0x1f, 0x1f
-/* 8007AC6C 4E800020 */ blr
-}
\ No newline at end of file
diff --git a/src/static/dolphin/os/__ppc_eabi_init.cpp b/src/static/dolphin/os/__ppc_eabi_init.cpp
index 05cc0252..3e2e93e1 100644
--- a/src/static/dolphin/os/__ppc_eabi_init.cpp
+++ b/src/static/dolphin/os/__ppc_eabi_init.cpp
@@ -1,18 +1,21 @@
-#include "types.h"
-#include "dolphin/os.h"
-#include "dolphin/BASE/ppcarch.h"
#include "dolphin/os/__ppc_eabi_init.h"
+#include "dolphin/base/PPCArch.h"
+#include "dolphin/os.h"
+#include "types.h"
+
#ifdef __cplusplus
extern "C" {
#endif
static void __init_cpp(void);
+static void __fini_cpp(void);
+/* clang-format off */
__declspec(section ".init") asm void __init_hardware(void) {
nofralloc
mfmsr r0
- ori r0,r0,0x2000
+ ori r0, r0, 0x2000
mtmsr r0
mflr r31
bl __OSPSInit
@@ -21,7 +24,7 @@ __declspec(section ".init") asm void __init_hardware(void) {
blr
}
-__declspec(section ".init") asm void __flush_cache(void) {
+__declspec(section ".init") asm void __flush_cache(void* address, u32 size) {
nofralloc
lis r5, 0xFFFFFFF1@h
ori r5, r5, 0xFFFFFFF1@l
@@ -38,29 +41,29 @@ loop:
isync
blr
}
+/* clang-format on */
-
-
-void __init_user(void) { __init_cpp(); }
-
-static void __init_cpp(void)
-{
- voidfunctionptr* constructor;
- /*
- * call static initializers
- */
- for (constructor = _ctors; *constructor; constructor++) {
- (*constructor)();
- }
+asm void __init_user(void) {
+ fralloc
+ bl __init_cpp
}
+static void __init_cpp(void) {
+ voidfunctionptr* constructor;
-void __fini_cpp(void)
-{
- // UNUSED FUNCTION
+ for (constructor = _ctors; *constructor; constructor++) {
+ (*constructor)();
+ }
+}
+
+static void __fini_cpp(void) {
+ // UNUSED FUNCTION
+}
+
+void _ExitProcess(void) {
+ PPCHalt();
}
-void _ExitProcess(void) { PPCHalt(); }
#ifdef __cplusplus
}
-#endif
\ No newline at end of file
+#endif
diff --git a/src/static/dolphin/os/__start.c b/src/static/dolphin/os/__start.c
index a297820c..e57abba7 100644
--- a/src/static/dolphin/os/__start.c
+++ b/src/static/dolphin/os/__start.c
@@ -1,19 +1,20 @@
#include "dolphin/os.h"
#include "dolphin/db.h"
-#include "TRK/trk.h"
+#include "TRK/dolphin_trk.h"
#include "dolphin/os/__ppc_eabi_init.h"
-__declspec(section ".init")void __init_registers(void);
-__declspec(section ".init")void __init_data(void);
+__declspec(section ".init") void __init_registers(void);
+__declspec(section ".init") void __init_data(void);
-int main(int argc, char **argv);
+int main(int argc, char** argv);
-__declspec(section ".init") void __check_pad3(void){
- if((*(u16*)0x800030E4 & 0xEEF) == 0xEEF){
- OSResetSystem(0,0,0);
+__declspec(section ".init") void __check_pad3(void) {
+ if ((*(u16*)0x800030E4 & 0xEEF) == 0xEEF) {
+ OSResetSystem(0, 0, 0);
}
}
+/* clang-format off */
__declspec(section ".init") asm void __start(void){
nofralloc
@@ -48,7 +49,7 @@ ar:
h:
li r5, 0x0
cmplwi r7, 2
- beq+ met
+ beq met
cmplwi r7, 3
bne- d
li r5, 0x1
@@ -119,20 +120,22 @@ __declspec(section ".init") asm void __init_registers(void){
ori r13, r13, 0xFB80
blr
}
-void __copy_rom_section(void* dst, const void* src, size_t size){
+/* clang-format on */
+
+inline void __copy_rom_section(void* dst, const void* src, size_t size) {
if (size && (dst != src)) {
- memcpy(dst, src, size);
- __flush_cache(dst, size);
+ memcpy(dst, src, size);
+ __flush_cache(dst, size);
}
}
-void __init_bss_section(void* dst, size_t size){
+inline void __init_bss_section(void* dst, size_t size) {
if (size) {
- memset(dst, 0, size);
+ memset(dst, 0, size);
}
}
-__declspec(section ".init") static void __init_data(void){
+__declspec(section ".init") static void __init_data(void) {
RomSection* rs;
BssSection* bs;
diff --git a/src/static/jaudio_NES/dsp_GBAKey.c b/src/static/jaudio_NES/dsp_GBAKey.c
new file mode 100644
index 00000000..78047d6b
--- /dev/null
+++ b/src/static/jaudio_NES/dsp_GBAKey.c
@@ -0,0 +1,45 @@
+#include "gba/GBAPriv.h"
+#include "dolphin/os/OSAddress.h"
+#include "_mem.h"
+
+//TODO: remove this once ipldec is decompiled
+extern void Jac_DSPagbDecodeAsync(void*, void*, void (*)(void*));
+
+static s32 F152(DSPTaskInfo* task) {
+ s32 chan; // r31
+ GBAControl* gba; // r29
+
+ for (chan = 0; chan < 4; chan++) {
+ gba = &__GBA[chan];
+ if (&gba->task == task) {
+ return chan;
+ }
+ }
+
+ (void)((0 <= chan && chan < 4) || (OSPanic(__FILE__, 173, "Failed assertion 0 <= chan && chan < 4"), 0));
+ OSPanic(__FILE__, 174, "GBA - unexpected dsp call");
+ return -1;
+}
+
+static void F25(void* task) {
+ s32 chan; // r31
+
+ chan = F152((DSPTaskInfo *)task);
+ __GBAX01(chan, 0);
+}
+
+void __GBAX02(s32 chan, u8* readbuf) {
+ GBAControl* gba = &__GBA[chan]; // r28
+ GBABootInfo* bootInfo = &__GBA[chan].bootInfo; // r29
+ GBASecParam* param = gba->param; // r30
+ DSPTaskInfo* task = &gba->task; // r31
+
+ memcpy(param, readbuf, 4u);
+ param->paletteColor = bootInfo->paletteColor;
+ param->paletteSpeed = bootInfo->paletteSpeed;
+ param->length = bootInfo->length;
+ param->out = ¶m->keyA;
+ DCInvalidateRange(¶m->keyA, 32);
+ DCFlushRange(param, 32);
+ Jac_DSPagbDecodeAsync(task, param, F25);
+}
diff --git a/src/static/jaudio_NES/game/emusound.c b/src/static/jaudio_NES/game/emusound.c
index 24695560..9b608ae7 100644
--- a/src/static/jaudio_NES/game/emusound.c
+++ b/src/static/jaudio_NES/game/emusound.c
@@ -1,2 +1 @@
-#include "emusound.h"
-
+#include "jaudio_NES/emusound.h"
diff --git a/src/static/jaudio_NES/internal/audiothread.c b/src/static/jaudio_NES/internal/audiothread.c
index 5d3ffeb6..06e4c30a 100644
--- a/src/static/jaudio_NES/internal/audiothread.c
+++ b/src/static/jaudio_NES/internal/audiothread.c
@@ -1,7 +1,6 @@
#include "jaudio_NES/audiothread.h"
#include "dolphin/os.h"
-#include "dolphin/os/OSFastCast.h"
#include "dolphin/hw_regs.h"
#include "dolphin/ai.h"
#include "jaudio_NES/dspproc.h"
@@ -26,6 +25,10 @@
#define AUDIOPROC_MESSAGE_NEOS_SYNC ((OSMessage)2)
#define AUDIOPROC_MESSAGE_3 ((OSMessage)3)
+OSThread jac_audioThread[3];
+OSThread jac_neosThread;
+OSThread jac_dvdThread;
+
static u8 audioStack[AUDIO_STACK_SIZE] ATTRIBUTE_ALIGN(32);
static u8 neosStack[AUDIO_STACK_SIZE] ATTRIBUTE_ALIGN(32);
static u8 dvdStack[AUDIO_STACK_SIZE] ATTRIBUTE_ALIGN(32);
@@ -34,6 +37,8 @@ static OSMessage msgbuf[AUDIOPROC_MQ_BUF_COUNT];
static u32 audioproc_mq_init = FALSE;
volatile int intcount = 0;
+extern void OSInitFastCast(void);
+
extern void DspSyncCountClear(int count) {
intcount = count;
}
@@ -141,6 +146,25 @@ static void* audioproc(void* param) {
}
}
+extern void OSInitFastCast(void) {
+#ifdef __MWERKS__ // clang-format off
+ asm {
+ li r3, 4
+ oris r3, r3, 4
+ mtspr 0x392, r3
+ li r3, 5
+ oris r3, r3, 5
+ mtspr 0x393, r3
+ li r3, 6
+ oris r3, r3, 6
+ mtspr 0x394, r3
+ li r3, 7
+ oris r3, r3, 7
+ mtspr 0x395, r3
+ }
+#endif // clang-format on
+}
+
static BOOL priority_set = FALSE;
static OSPriority pri = 0;
static OSPriority pri2 = 0;
diff --git a/src/static/jaudio_NES/internal/dummyrom.c b/src/static/jaudio_NES/internal/dummyrom.c
index d02e3ce3..6a7be58a 100644
--- a/src/static/jaudio_NES/internal/dummyrom.c
+++ b/src/static/jaudio_NES/internal/dummyrom.c
@@ -36,7 +36,7 @@ extern void SetPreCopy_NeosRom(u8* load_addr, u32 load_size, BOOL cut_flag) {
init_cut_flag = cut_flag;
}
-static void mesg_finishcall(u32 mq) {
+extern void mesg_finishcall(u32 mq) {
Z_osSendMesg((OSMesgQueue*)mq, NULL, OS_MESSAGE_NOBLOCK);
}
diff --git a/src/static/jaudio_NES/internal/streamctrl.c b/src/static/jaudio_NES/internal/streamctrl.c
index 1423b852..f818a8aa 100644
--- a/src/static/jaudio_NES/internal/streamctrl.c
+++ b/src/static/jaudio_NES/internal/streamctrl.c
@@ -24,14 +24,14 @@ JSTREAM J_STREAM = {
// clang-format on
/* @fabricated -- necessary for float ordering */
-#pragma force_active on
+#pragma function_align 4
MATCH_FORCESTRIP static f32 Jac_VolMoveStreamBGM(s32 l, s32 r) {
// AISetStreamVolLeft((s32)(f32)l);
// AISetStreamVolRight((s32)(f32)r);
return l;
}
-#pragma force_active reset
+#pragma function_align 32
extern void StreamMain(void) {
static DVDFileInfo finfo;
static DVDCommandBlock cmd;
diff --git a/src/static/libc64/sleep.c b/src/static/libc64/sleep.c
index a81bba0c..f8ffd325 100644
--- a/src/static/libc64/sleep.c
+++ b/src/static/libc64/sleep.c
@@ -1,9 +1,10 @@
-#include "sleep.h"
+#include "libc64/sleep.h"
+#include "libultra/os_timer.h"
#include "dolphin/os/OSAlarm.h"
#include "dolphin/os/OSTimer.h"
#include "dolphin/os/OSThread.h"
-void csleep(OSTime c){
+void csleep(OSTime c) {
OSMessage msg;
OSMessageQueue mq;
OSTimer timer;
@@ -13,6 +14,6 @@ void csleep(OSTime c){
osRecvMesg(&mq, NULL, 1);
}
-void msleep(u32 ms){
- csleep((OS_MSEC_TO_TICKS((OSTime)ms)));
-}
\ No newline at end of file
+void msleep(u32 ms) {
+ csleep(OSMillisecondsToTicks((u64)ms));
+}
diff --git a/src/static/libforest/ReconfigBATs.c b/src/static/libforest/ReconfigBATs.c
index 4074e3df..b6cfe57c 100644
--- a/src/static/libforest/ReconfigBATs.c
+++ b/src/static/libforest/ReconfigBATs.c
@@ -1,72 +1,72 @@
-#include "libforest/batconfig.h"
-
-asm void Config24MB(){
-nofralloc
-/* 8005ADAC 7C6000A6 */ mfmsr r3
-/* 8005ADB0 54630734 */ rlwinm r3, r3, 0, 0x1c, 0x1a
-/* 8005ADB4 7C600124 */ mtmsr r3
-/* 8005ADB8 4C00012C */ isync
-/* 8005ADBC 38E00000 */ li r7, 0x0
-/* 8005ADC0 3C800000 */ lis r4, 0
-/* 8005ADC4 38840002 */ addi r4, r4, 0x2
-/* 8005ADC8 3C608000 */ lis r3, 0x8000
-/* 8005ADCC 386301FF */ addi r3, r3, 0x1ff
-/* 8005ADD0 3CC00100 */ lis r6, 0x100
-/* 8005ADD4 38C60002 */ addi r6, r6, 0x2
-/* 8005ADD8 3CA08100 */ lis r5, 0x8100
-/* 8005ADDC 38A500FF */ addi r5, r5, 0xff
-/* 8005ADE0 4C00012C */ isync
-/* 8005ADE4 7CF883A6 */ mtdbatu 0, r7
-/* 8005ADE8 7C9983A6 */ mtdbatl 0, r4
-/* 8005ADEC 7C7883A6 */ mtdbatu 0, r3
-/* 8005ADF0 4C00012C */ isync
-/* 8005ADF4 7CFC83A6 */ mtdbatu 2, r7
-/* 8005ADF8 7CDD83A6 */ mtdbatl 2, r6
-/* 8005ADFC 7CBC83A6 */ mtdbatu 2, r5
-/* 8005AE00 4C00012C */ isync
-/* 8005AE04 7C6000A6 */ mfmsr r3
-/* 8005AE08 60630010 */ ori r3, r3, 0x10
-/* 8005AE0C 7C600124 */ mtmsr r3
-/* 8005AE10 4C00012C */ isync
-/* 8005AE14 4E800020 */ blr
-}
-asm void Config48MB(){
-nofralloc
-/* 8005AE18 7C6000A6 */ mfmsr r3
-/* 8005AE1C 54630734 */ rlwinm r3, r3, 0, 0x1c, 0x1a
-/* 8005AE20 7C600124 */ mtmsr r3
-/* 8005AE24 4C00012C */ isync
-/* 8005AE28 38E00000 */ li r7, 0x0
-/* 8005AE2C 3C800000 */ lis r4, 0
-/* 8005AE30 38840002 */ addi r4, r4, 0x2
-/* 8005AE34 3C608000 */ lis r3, 0x8000
-/* 8005AE38 386303FF */ addi r3, r3, 0x3ff
-/* 8005AE3C 3CC00200 */ lis r6, 0x200
-/* 8005AE40 38C60002 */ addi r6, r6, 0x2
-/* 8005AE44 3CA08200 */ lis r5, 0x8200
-/* 8005AE48 38A501FF */ addi r5, r5, 0x1ff
-/* 8005AE4C 4C00012C */ isync
-/* 8005AE50 7CF883A6 */ mtdbatu 0, r7
-/* 8005AE54 7C9983A6 */ mtdbatl 0, r4
-/* 8005AE58 7C7883A6 */ mtdbatu 0, r3
-/* 8005AE5C 4C00012C */ isync
-/* 8005AE60 7CFC83A6 */ mtdbatu 2, r7
-/* 8005AE64 7CDD83A6 */ mtdbatl 2, r6
-/* 8005AE68 7CBC83A6 */ mtdbatu 2, r5
-/* 8005AE6C 4C00012C */ isync
-/* 8005AE70 7C6000A6 */ mfmsr r3
-/* 8005AE74 60630010 */ ori r3, r3, 0x10
-/* 8005AE78 7C600124 */ mtmsr r3
-/* 8005AE7C 4C00012C */ isync
-/* 8005AE80 4E800020 */ blr
-}
-void ReconfigBATs(){
- BOOL rest = OSDisableInterrupts();
- if (OSGetConsoleSimulatedMemSize() <= 0x1800000){
- Config24MB();
- }
- else {
- Config48MB();
- }
- OSRestoreInterrupts(rest);
+#include "libforest/batconfig.h"
+
+asm void Config24MB(){
+nofralloc
+/* 8005ADAC 7C6000A6 */ mfmsr r3
+/* 8005ADB0 54630734 */ rlwinm r3, r3, 0, 0x1c, 0x1a
+/* 8005ADB4 7C600124 */ mtmsr r3
+/* 8005ADB8 4C00012C */ isync
+/* 8005ADBC 38E00000 */ li r7, 0x0
+/* 8005ADC0 3C800000 */ lis r4, 0
+/* 8005ADC4 38840002 */ addi r4, r4, 0x2
+/* 8005ADC8 3C608000 */ lis r3, 0x8000
+/* 8005ADCC 386301FF */ addi r3, r3, 0x1ff
+/* 8005ADD0 3CC00100 */ lis r6, 0x100
+/* 8005ADD4 38C60002 */ addi r6, r6, 0x2
+/* 8005ADD8 3CA08100 */ lis r5, 0x8100
+/* 8005ADDC 38A500FF */ addi r5, r5, 0xff
+/* 8005ADE0 4C00012C */ isync
+/* 8005ADE4 7CF883A6 */ mtdbatu 0, r7
+/* 8005ADE8 7C9983A6 */ mtdbatl 0, r4
+/* 8005ADEC 7C7883A6 */ mtdbatu 0, r3
+/* 8005ADF0 4C00012C */ isync
+/* 8005ADF4 7CFC83A6 */ mtdbatu 2, r7
+/* 8005ADF8 7CDD83A6 */ mtdbatl 2, r6
+/* 8005ADFC 7CBC83A6 */ mtdbatu 2, r5
+/* 8005AE00 4C00012C */ isync
+/* 8005AE04 7C6000A6 */ mfmsr r3
+/* 8005AE08 60630010 */ ori r3, r3, 0x10
+/* 8005AE0C 7C600124 */ mtmsr r3
+/* 8005AE10 4C00012C */ isync
+/* 8005AE14 4E800020 */ blr
+}
+asm void Config48MB(){
+nofralloc
+/* 8005AE18 7C6000A6 */ mfmsr r3
+/* 8005AE1C 54630734 */ rlwinm r3, r3, 0, 0x1c, 0x1a
+/* 8005AE20 7C600124 */ mtmsr r3
+/* 8005AE24 4C00012C */ isync
+/* 8005AE28 38E00000 */ li r7, 0x0
+/* 8005AE2C 3C800000 */ lis r4, 0
+/* 8005AE30 38840002 */ addi r4, r4, 0x2
+/* 8005AE34 3C608000 */ lis r3, 0x8000
+/* 8005AE38 386303FF */ addi r3, r3, 0x3ff
+/* 8005AE3C 3CC00200 */ lis r6, 0x200
+/* 8005AE40 38C60002 */ addi r6, r6, 0x2
+/* 8005AE44 3CA08200 */ lis r5, 0x8200
+/* 8005AE48 38A501FF */ addi r5, r5, 0x1ff
+/* 8005AE4C 4C00012C */ isync
+/* 8005AE50 7CF883A6 */ mtdbatu 0, r7
+/* 8005AE54 7C9983A6 */ mtdbatl 0, r4
+/* 8005AE58 7C7883A6 */ mtdbatu 0, r3
+/* 8005AE5C 4C00012C */ isync
+/* 8005AE60 7CFC83A6 */ mtdbatu 2, r7
+/* 8005AE64 7CDD83A6 */ mtdbatl 2, r6
+/* 8005AE68 7CBC83A6 */ mtdbatu 2, r5
+/* 8005AE6C 4C00012C */ isync
+/* 8005AE70 7C6000A6 */ mfmsr r3
+/* 8005AE74 60630010 */ ori r3, r3, 0x10
+/* 8005AE78 7C600124 */ mtmsr r3
+/* 8005AE7C 4C00012C */ isync
+/* 8005AE80 4E800020 */ blr
+}
+void ReconfigBATs(){
+ BOOL rest = OSDisableInterrupts();
+ if (OSGetConsoleSimulatedMemSize() <= 0x1800000){
+ Config24MB();
+ }
+ else {
+ Config48MB();
+ }
+ OSRestoreInterrupts(rest);
}
\ No newline at end of file
diff --git a/src/static/libforest/emu64/emu64.cc b/src/static/libforest/emu64/emu64.cc
index aad3a1eb..cb3ce388 100644
--- a/src/static/libforest/emu64/emu64.cc
+++ b/src/static/libforest/emu64/emu64.cc
@@ -15,6 +15,8 @@
#include "../src/static/libforest/emu64/emu64_utility.cc"
+extern void OSInitFastCast(void);
+
static aflags_c aflags;
static u8 texture_buffer_data[TEX_BUFFER_DATA_SIZE];
@@ -75,7 +77,7 @@ extern void emu64_texture_cache_data_entry_set(void* begin, void* end) {
texture_cache_data_entry_num++;
}
-static texture_cache_t* texture_cache_select(void* addr) {
+extern texture_cache_t* texture_cache_select(void* addr) {
int i;
if (aflags[AFLAGS_SKIP_TEXTURE_CONV] >= 1 || (addr >= _f_rodata && addr <= _e_data)) {
@@ -120,7 +122,7 @@ MATCH_FORCESTRIP static u32 texture_cache_get_heap_size(texture_cache_t* cache)
return cache->buffer_end - cache->buffer_start;
}
-static void* texture_cache_alloc(texture_cache_t* cache, size_t size) {
+extern void* texture_cache_alloc(texture_cache_t* cache, size_t size) {
u32 new_pos;
cache->last_alloc_start = cache->buffer_current;
@@ -140,7 +142,7 @@ static void* texture_cache_alloc(texture_cache_t* cache, size_t size) {
return cache->last_alloc_start;
}
-static void* texture_cache_data_search(void* original_addr) {
+extern void* texture_cache_data_search(void* original_addr) {
int i;
for (i = 0; i < texture_cache_num; i++) {
@@ -152,7 +154,7 @@ static void* texture_cache_data_search(void* original_addr) {
return nullptr;
}
-static int texture_cache_data_entry(void* original_addr, void* converted_addr) {
+extern int texture_cache_data_entry(void* original_addr, void* converted_addr) {
if (texture_cache_num < TEXTURE_CACHE_LIST_SIZE && original_addr != nullptr && converted_addr != nullptr) {
texture_cache_entry_t* entry = &texture_cache_list[texture_cache_num++];
@@ -165,11 +167,11 @@ static int texture_cache_data_entry(void* original_addr, void* converted_addr) {
return -1;
}
-static void* texture_cache_bss_search(void* original_addr) {
+extern void* texture_cache_bss_search(void* original_addr) {
return nullptr;
}
-static int texture_cache_bss_entry(void* original_addr, void* converted_addr) {
+extern int texture_cache_bss_entry(void* original_addr, void* converted_addr) {
return -1;
}
@@ -435,7 +437,7 @@ void emu64::printInfo() {
// Display segment table.
this->Printf0("セグメントテーブル表示\n");
- for (i = 0; i < NUM_SEGMENTS; i++) {
+ for (i = 0; i < EMU64_NUM_SEGMENTS; i++) {
this->Printf0("%2d %08x %08x\n", i, this->segments[i], convert_partial_address(this->segments[i]));
}
}
@@ -4939,7 +4941,7 @@ void emu64::dl_G_MOVEWORD() {
u32 segment = moveword->offset / 4;
EMU64_WARNF("gsSPSegmentA(%d, 0x%08x),", segment, moveword->data);
this->segments[segment] = (0x80000000 + (moveword->data & 0x0FFFFFFF));
- if (segment >= NUM_SEGMENTS ||
+ if (segment >= EMU64_NUM_SEGMENTS ||
(moveword->data != 0 && (moveword->data < 0x80000000 || moveword->data > 0x83000000))) {
sprintf(s1, "gsSPSegmentA no=%d", segment);
sprintf(s2, "base=%s", this->segchk(moveword->data));
@@ -5130,7 +5132,7 @@ void emu64::dl_G_MOVEMEM() {
this->lights[l_idx].attenuation.k1 = 0.0f;
this->lights[l_idx].attenuation.kq = 0.0;
}
- EMU64_INFOF("\n");
+ EMU64_INFO("\n");
break;
}
}
diff --git a/src/static/libultra/contreaddata.c b/src/static/libultra/contreaddata.c
index 1d5ebed3..ee594ccf 100644
--- a/src/static/libultra/contreaddata.c
+++ b/src/static/libultra/contreaddata.c
@@ -1,3 +1,3 @@
-#include "contreaddata.h"
+#include "libultra/contreaddata.h"
u8 __osResetSwitchPressed;
diff --git a/src/static/libultra/gu/lookathil.c b/src/static/libultra/gu/lookathil.c
index c6ab4497..d8d4c8c7 100644
--- a/src/static/libultra/gu/lookathil.c
+++ b/src/static/libultra/gu/lookathil.c
@@ -1,18 +1,18 @@
-#include "libultra/gu.h"
-
-void guLookAtHilite (Mtx *m, LookAt *l, Hilite *h,
- float xEye, float yEye, float zEye,
- float xAt, float yAt, float zAt,
- float xUp, float yUp, float zUp,
- float xl1, float yl1, float zl1, /* light 1 direction */
- float xl2, float yl2, float zl2, /* light 2 direction */
- int twidth, int theight) /* highlight txtr size*/
-{
- float mf[4][4];
-
- guLookAtHiliteF(mf, l, h, xEye, yEye, zEye, xAt, yAt, zAt,
- xUp, yUp, zUp, xl1, yl1, zl1, xl2, yl2, zl2,
- twidth, theight);
-
- guMtxF2L(mf, m);
+#include "libultra/gu.h"
+
+void guLookAtHilite (Mtx *m, LookAt *l, Hilite *h,
+ float xEye, float yEye, float zEye,
+ float xAt, float yAt, float zAt,
+ float xUp, float yUp, float zUp,
+ float xl1, float yl1, float zl1, /* light 1 direction */
+ float xl2, float yl2, float zl2, /* light 2 direction */
+ int twidth, int theight) /* highlight txtr size*/
+{
+ float mf[4][4];
+
+ guLookAtHiliteF(mf, l, h, xEye, yEye, zEye, xAt, yAt, zAt,
+ xUp, yUp, zUp, xl1, yl1, zl1, xl2, yl2, zl2,
+ twidth, theight);
+
+ guMtxF2L(mf, m);
}
\ No newline at end of file
diff --git a/src/static/libultra/gu/mtxutil.c b/src/static/libultra/gu/mtxutil.c
index bdef9649..ad259ca9 100644
--- a/src/static/libultra/gu/mtxutil.c
+++ b/src/static/libultra/gu/mtxutil.c
@@ -1,7 +1,7 @@
-#include "libultra/gu.h"
-
-void guMtxIdent(Mtx *m) {
- float mf[4][4];
- guMtxIdentF(mf);
- guMtxF2L(mf, m);
-}
+#include "libultra/gu.h"
+
+void guMtxIdent(Mtx *m) {
+ float mf[4][4];
+ guMtxIdentF(mf);
+ guMtxF2L(mf, m);
+}
diff --git a/src/static/libultra/gu/normalize.c b/src/static/libultra/gu/normalize.c
index 1772cd9e..446b5d95 100644
--- a/src/static/libultra/gu/normalize.c
+++ b/src/static/libultra/gu/normalize.c
@@ -1,10 +1,11 @@
-#include "libultra/gu.h"
-
-void guNormalize(float* x, float* y, float* z) {
- float norm = sqrtf(*x * *x + *y * *y + *z * *z);
- norm = 1.0f / norm;
- *x *= norm;
- *y *= norm;
- *z *= norm;
- // might return norm
-}
+#include "libultra/gu.h"
+#include "MSL_C/w_math.h"
+
+void guNormalize(float* x, float* y, float* z) {
+ float norm = sqrtf(*x * *x + *y * *y + *z * *z);
+ norm = 1.0f / norm;
+ *x *= norm;
+ *y *= norm;
+ *z *= norm;
+ // might return norm
+}
diff --git a/src/static/libultra/gu/ortho.c b/src/static/libultra/gu/ortho.c
index 39c5ee2f..b156b3aa 100644
--- a/src/static/libultra/gu/ortho.c
+++ b/src/static/libultra/gu/ortho.c
@@ -1,8 +1,8 @@
-#include "libultra/gu.h"
-
-void guOrtho(Mtx *m, float l, float r, float b, float t, float n, float f, float scale)
-{
- float mf[4][4];
- guOrthoF(mf, l, r, b, t, n, f, scale);
- guMtxF2L(mf, m);
+#include "libultra/gu.h"
+
+void guOrtho(Mtx *m, float l, float r, float b, float t, float n, float f, float scale)
+{
+ float mf[4][4];
+ guOrthoF(mf, l, r, b, t, n, f, scale);
+ guMtxF2L(mf, m);
}
\ No newline at end of file
diff --git a/src/static/libultra/gu/sins.c b/src/static/libultra/gu/sins.c
index 103a10eb..85c59878 100644
--- a/src/static/libultra/gu/sins.c
+++ b/src/static/libultra/gu/sins.c
@@ -1,95 +1,95 @@
-#include "libc/math.h"
-
-static s16 sintable[0x400] = {
- 0x0000, 0x0032, 0x0064, 0x0096, 0x00C9, 0x00FB, 0x012D, 0x0160, 0x0192, 0x01C4, 0x01F7, 0x0229, 0x025B, 0x028E,
- 0x02C0, 0x02F2, 0x0324, 0x0357, 0x0389, 0x03BB, 0x03EE, 0x0420, 0x0452, 0x0484, 0x04B7, 0x04E9, 0x051B, 0x054E,
- 0x0580, 0x05B2, 0x05E4, 0x0617, 0x0649, 0x067B, 0x06AD, 0x06E0, 0x0712, 0x0744, 0x0776, 0x07A9, 0x07DB, 0x080D,
- 0x083F, 0x0871, 0x08A4, 0x08D6, 0x0908, 0x093A, 0x096C, 0x099F, 0x09D1, 0x0A03, 0x0A35, 0x0A67, 0x0A99, 0x0ACB,
- 0x0AFE, 0x0B30, 0x0B62, 0x0B94, 0x0BC6, 0x0BF8, 0x0C2A, 0x0C5C, 0x0C8E, 0x0CC0, 0x0CF2, 0x0D25, 0x0D57, 0x0D89,
- 0x0DBB, 0x0DED, 0x0E1F, 0x0E51, 0x0E83, 0x0EB5, 0x0EE7, 0x0F19, 0x0F4B, 0x0F7C, 0x0FAE, 0x0FE0, 0x1012, 0x1044,
- 0x1076, 0x10A8, 0x10DA, 0x110C, 0x113E, 0x116F, 0x11A1, 0x11D3, 0x1205, 0x1237, 0x1269, 0x129A, 0x12CC, 0x12FE,
- 0x1330, 0x1361, 0x1393, 0x13C5, 0x13F6, 0x1428, 0x145A, 0x148C, 0x14BD, 0x14EF, 0x1520, 0x1552, 0x1584, 0x15B5,
- 0x15E7, 0x1618, 0x164A, 0x167B, 0x16AD, 0x16DF, 0x1710, 0x1741, 0x1773, 0x17A4, 0x17D6, 0x1807, 0x1839, 0x186A,
- 0x189B, 0x18CD, 0x18FE, 0x1930, 0x1961, 0x1992, 0x19C3, 0x19F5, 0x1A26, 0x1A57, 0x1A88, 0x1ABA, 0x1AEB, 0x1B1C,
- 0x1B4D, 0x1B7E, 0x1BAF, 0x1BE1, 0x1C12, 0x1C43, 0x1C74, 0x1CA5, 0x1CD6, 0x1D07, 0x1D38, 0x1D69, 0x1D9A, 0x1DCB,
- 0x1DFC, 0x1E2D, 0x1E5D, 0x1E8E, 0x1EBF, 0x1EF0, 0x1F21, 0x1F52, 0x1F82, 0x1FB3, 0x1FE4, 0x2015, 0x2045, 0x2076,
- 0x20A7, 0x20D7, 0x2108, 0x2139, 0x2169, 0x219A, 0x21CA, 0x21FB, 0x222B, 0x225C, 0x228C, 0x22BD, 0x22ED, 0x231D,
- 0x234E, 0x237E, 0x23AE, 0x23DF, 0x240F, 0x243F, 0x2470, 0x24A0, 0x24D0, 0x2500, 0x2530, 0x2560, 0x2591, 0x25C1,
- 0x25F1, 0x2621, 0x2651, 0x2681, 0x26B1, 0x26E1, 0x2711, 0x2740, 0x2770, 0x27A0, 0x27D0, 0x2800, 0x2830, 0x285F,
- 0x288F, 0x28BF, 0x28EE, 0x291E, 0x294E, 0x297D, 0x29AD, 0x29DD, 0x2A0C, 0x2A3C, 0x2A6B, 0x2A9B, 0x2ACA, 0x2AF9,
- 0x2B29, 0x2B58, 0x2B87, 0x2BB7, 0x2BE6, 0x2C15, 0x2C44, 0x2C74, 0x2CA3, 0x2CD2, 0x2D01, 0x2D30, 0x2D5F, 0x2D8E,
- 0x2DBD, 0x2DEC, 0x2E1B, 0x2E4A, 0x2E79, 0x2EA8, 0x2ED7, 0x2F06, 0x2F34, 0x2F63, 0x2F92, 0x2FC0, 0x2FEF, 0x301E,
- 0x304C, 0x307B, 0x30A9, 0x30D8, 0x3107, 0x3135, 0x3163, 0x3192, 0x31C0, 0x31EF, 0x321D, 0x324B, 0x3279, 0x32A8,
- 0x32D6, 0x3304, 0x3332, 0x3360, 0x338E, 0x33BC, 0x33EA, 0x3418, 0x3446, 0x3474, 0x34A2, 0x34D0, 0x34FE, 0x352B,
- 0x3559, 0x3587, 0x35B5, 0x35E2, 0x3610, 0x363D, 0x366B, 0x3698, 0x36C6, 0x36F3, 0x3721, 0x374E, 0x377C, 0x37A9,
- 0x37D6, 0x3803, 0x3831, 0x385E, 0x388B, 0x38B8, 0x38E5, 0x3912, 0x393F, 0x396C, 0x3999, 0x39C6, 0x39F3, 0x3A20,
- 0x3A4D, 0x3A79, 0x3AA6, 0x3AD3, 0x3B00, 0x3B2C, 0x3B59, 0x3B85, 0x3BB2, 0x3BDE, 0x3C0B, 0x3C37, 0x3C64, 0x3C90,
- 0x3CBC, 0x3CE9, 0x3D15, 0x3D41, 0x3D6D, 0x3D99, 0x3DC5, 0x3DF1, 0x3E1D, 0x3E49, 0x3E75, 0x3EA1, 0x3ECD, 0x3EF9,
- 0x3F25, 0x3F50, 0x3F7C, 0x3FA8, 0x3FD3, 0x3FFF, 0x402B, 0x4056, 0x4082, 0x40AD, 0x40D8, 0x4104, 0x412F, 0x415A,
- 0x4186, 0x41B1, 0x41DC, 0x4207, 0x4232, 0x425D, 0x4288, 0x42B3, 0x42DE, 0x4309, 0x4334, 0x435F, 0x4389, 0x43B4,
- 0x43DF, 0x4409, 0x4434, 0x445F, 0x4489, 0x44B4, 0x44DE, 0x4508, 0x4533, 0x455D, 0x4587, 0x45B1, 0x45DC, 0x4606,
- 0x4630, 0x465A, 0x4684, 0x46AE, 0x46D8, 0x4702, 0x472C, 0x4755, 0x477F, 0x47A9, 0x47D2, 0x47FC, 0x4826, 0x484F,
- 0x4879, 0x48A2, 0x48CC, 0x48F5, 0x491E, 0x4948, 0x4971, 0x499A, 0x49C3, 0x49EC, 0x4A15, 0x4A3E, 0x4A67, 0x4A90,
- 0x4AB9, 0x4AE2, 0x4B0B, 0x4B33, 0x4B5C, 0x4B85, 0x4BAD, 0x4BD6, 0x4BFE, 0x4C27, 0x4C4F, 0x4C78, 0x4CA0, 0x4CC8,
- 0x4CF0, 0x4D19, 0x4D41, 0x4D69, 0x4D91, 0x4DB9, 0x4DE1, 0x4E09, 0x4E31, 0x4E58, 0x4E80, 0x4EA8, 0x4ED0, 0x4EF7,
- 0x4F1F, 0x4F46, 0x4F6E, 0x4F95, 0x4FBD, 0x4FE4, 0x500B, 0x5032, 0x505A, 0x5081, 0x50A8, 0x50CF, 0x50F6, 0x511D,
- 0x5144, 0x516B, 0x5191, 0x51B8, 0x51DF, 0x5205, 0x522C, 0x5253, 0x5279, 0x52A0, 0x52C6, 0x52EC, 0x5313, 0x5339,
- 0x535F, 0x5385, 0x53AB, 0x53D1, 0x53F7, 0x541D, 0x5443, 0x5469, 0x548F, 0x54B5, 0x54DA, 0x5500, 0x5525, 0x554B,
- 0x5571, 0x5596, 0x55BB, 0x55E1, 0x5606, 0x562B, 0x5650, 0x5675, 0x569B, 0x56C0, 0x56E5, 0x5709, 0x572E, 0x5753,
- 0x5778, 0x579D, 0x57C1, 0x57E6, 0x580A, 0x582F, 0x5853, 0x5878, 0x589C, 0x58C0, 0x58E5, 0x5909, 0x592D, 0x5951,
- 0x5975, 0x5999, 0x59BD, 0x59E1, 0x5A04, 0x5A28, 0x5A4C, 0x5A6F, 0x5A93, 0x5AB7, 0x5ADA, 0x5AFD, 0x5B21, 0x5B44,
- 0x5B67, 0x5B8B, 0x5BAE, 0x5BD1, 0x5BF4, 0x5C17, 0x5C3A, 0x5C5D, 0x5C7F, 0x5CA2, 0x5CC5, 0x5CE7, 0x5D0A, 0x5D2D,
- 0x5D4F, 0x5D71, 0x5D94, 0x5DB6, 0x5DD8, 0x5DFA, 0x5E1D, 0x5E3F, 0x5E61, 0x5E83, 0x5EA5, 0x5EC6, 0x5EE8, 0x5F0A,
- 0x5F2C, 0x5F4D, 0x5F6F, 0x5F90, 0x5FB2, 0x5FD3, 0x5FF4, 0x6016, 0x6037, 0x6058, 0x6079, 0x609A, 0x60BB, 0x60DC,
- 0x60FD, 0x611E, 0x613E, 0x615F, 0x6180, 0x61A0, 0x61C1, 0x61E1, 0x6202, 0x6222, 0x6242, 0x6263, 0x6283, 0x62A3,
- 0x62C3, 0x62E3, 0x6303, 0x6323, 0x6342, 0x6362, 0x6382, 0x63A1, 0x63C1, 0x63E0, 0x6400, 0x641F, 0x643F, 0x645E,
- 0x647D, 0x649C, 0x64BB, 0x64DA, 0x64F9, 0x6518, 0x6537, 0x6556, 0x6574, 0x6593, 0x65B2, 0x65D0, 0x65EF, 0x660D,
- 0x662B, 0x664A, 0x6668, 0x6686, 0x66A4, 0x66C2, 0x66E0, 0x66FE, 0x671C, 0x673A, 0x6757, 0x6775, 0x6792, 0x67B0,
- 0x67CD, 0x67EB, 0x6808, 0x6825, 0x6843, 0x6860, 0x687D, 0x689A, 0x68B7, 0x68D4, 0x68F1, 0x690D, 0x692A, 0x6947,
- 0x6963, 0x6980, 0x699C, 0x69B9, 0x69D5, 0x69F1, 0x6A0E, 0x6A2A, 0x6A46, 0x6A62, 0x6A7E, 0x6A9A, 0x6AB5, 0x6AD1,
- 0x6AED, 0x6B08, 0x6B24, 0x6B40, 0x6B5B, 0x6B76, 0x6B92, 0x6BAD, 0x6BC8, 0x6BE3, 0x6BFE, 0x6C19, 0x6C34, 0x6C4F,
- 0x6C6A, 0x6C84, 0x6C9F, 0x6CBA, 0x6CD4, 0x6CEF, 0x6D09, 0x6D23, 0x6D3E, 0x6D58, 0x6D72, 0x6D8C, 0x6DA6, 0x6DC0,
- 0x6DDA, 0x6DF3, 0x6E0D, 0x6E27, 0x6E40, 0x6E5A, 0x6E73, 0x6E8D, 0x6EA6, 0x6EBF, 0x6ED9, 0x6EF2, 0x6F0B, 0x6F24,
- 0x6F3D, 0x6F55, 0x6F6E, 0x6F87, 0x6FA0, 0x6FB8, 0x6FD1, 0x6FE9, 0x7002, 0x701A, 0x7032, 0x704A, 0x7062, 0x707A,
- 0x7092, 0x70AA, 0x70C2, 0x70DA, 0x70F2, 0x7109, 0x7121, 0x7138, 0x7150, 0x7167, 0x717E, 0x7196, 0x71AD, 0x71C4,
- 0x71DB, 0x71F2, 0x7209, 0x7220, 0x7236, 0x724D, 0x7264, 0x727A, 0x7291, 0x72A7, 0x72BD, 0x72D4, 0x72EA, 0x7300,
- 0x7316, 0x732C, 0x7342, 0x7358, 0x736E, 0x7383, 0x7399, 0x73AE, 0x73C4, 0x73D9, 0x73EF, 0x7404, 0x7419, 0x742E,
- 0x7443, 0x7458, 0x746D, 0x7482, 0x7497, 0x74AC, 0x74C0, 0x74D5, 0x74EA, 0x74FE, 0x7512, 0x7527, 0x753B, 0x754F,
- 0x7563, 0x7577, 0x758B, 0x759F, 0x75B3, 0x75C7, 0x75DA, 0x75EE, 0x7601, 0x7615, 0x7628, 0x763B, 0x764F, 0x7662,
- 0x7675, 0x7688, 0x769B, 0x76AE, 0x76C1, 0x76D3, 0x76E6, 0x76F9, 0x770B, 0x771E, 0x7730, 0x7742, 0x7754, 0x7767,
- 0x7779, 0x778B, 0x779D, 0x77AF, 0x77C0, 0x77D2, 0x77E4, 0x77F5, 0x7807, 0x7818, 0x782A, 0x783B, 0x784C, 0x785D,
- 0x786E, 0x787F, 0x7890, 0x78A1, 0x78B2, 0x78C3, 0x78D3, 0x78E4, 0x78F4, 0x7905, 0x7915, 0x7925, 0x7936, 0x7946,
- 0x7956, 0x7966, 0x7976, 0x7985, 0x7995, 0x79A5, 0x79B5, 0x79C4, 0x79D4, 0x79E3, 0x79F2, 0x7A02, 0x7A11, 0x7A20,
- 0x7A2F, 0x7A3E, 0x7A4D, 0x7A5B, 0x7A6A, 0x7A79, 0x7A87, 0x7A96, 0x7AA4, 0x7AB3, 0x7AC1, 0x7ACF, 0x7ADD, 0x7AEB,
- 0x7AF9, 0x7B07, 0x7B15, 0x7B23, 0x7B31, 0x7B3E, 0x7B4C, 0x7B59, 0x7B67, 0x7B74, 0x7B81, 0x7B8E, 0x7B9B, 0x7BA8,
- 0x7BB5, 0x7BC2, 0x7BCF, 0x7BDC, 0x7BE8, 0x7BF5, 0x7C02, 0x7C0E, 0x7C1A, 0x7C27, 0x7C33, 0x7C3F, 0x7C4B, 0x7C57,
- 0x7C63, 0x7C6F, 0x7C7A, 0x7C86, 0x7C92, 0x7C9D, 0x7CA9, 0x7CB4, 0x7CBF, 0x7CCB, 0x7CD6, 0x7CE1, 0x7CEC, 0x7CF7,
- 0x7D02, 0x7D0C, 0x7D17, 0x7D22, 0x7D2C, 0x7D37, 0x7D41, 0x7D4B, 0x7D56, 0x7D60, 0x7D6A, 0x7D74, 0x7D7E, 0x7D88,
- 0x7D91, 0x7D9B, 0x7DA5, 0x7DAE, 0x7DB8, 0x7DC1, 0x7DCB, 0x7DD4, 0x7DDD, 0x7DE6, 0x7DEF, 0x7DF8, 0x7E01, 0x7E0A,
- 0x7E13, 0x7E1B, 0x7E24, 0x7E2C, 0x7E35, 0x7E3D, 0x7E45, 0x7E4D, 0x7E56, 0x7E5E, 0x7E66, 0x7E6D, 0x7E75, 0x7E7D,
- 0x7E85, 0x7E8C, 0x7E94, 0x7E9B, 0x7EA3, 0x7EAA, 0x7EB1, 0x7EB8, 0x7EBF, 0x7EC6, 0x7ECD, 0x7ED4, 0x7EDB, 0x7EE1,
- 0x7EE8, 0x7EEE, 0x7EF5, 0x7EFB, 0x7F01, 0x7F08, 0x7F0E, 0x7F14, 0x7F1A, 0x7F20, 0x7F25, 0x7F2B, 0x7F31, 0x7F36,
- 0x7F3C, 0x7F41, 0x7F47, 0x7F4C, 0x7F51, 0x7F56, 0x7F5B, 0x7F60, 0x7F65, 0x7F6A, 0x7F6F, 0x7F74, 0x7F78, 0x7F7D,
- 0x7F81, 0x7F85, 0x7F8A, 0x7F8E, 0x7F92, 0x7F96, 0x7F9A, 0x7F9E, 0x7FA2, 0x7FA6, 0x7FA9, 0x7FAD, 0x7FB0, 0x7FB4,
- 0x7FB7, 0x7FBA, 0x7FBE, 0x7FC1, 0x7FC4, 0x7FC7, 0x7FCA, 0x7FCC, 0x7FCF, 0x7FD2, 0x7FD4, 0x7FD7, 0x7FD9, 0x7FDC,
- 0x7FDE, 0x7FE0, 0x7FE2, 0x7FE4, 0x7FE6, 0x7FE8, 0x7FEA, 0x7FEC, 0x7FED, 0x7FEF, 0x7FF1, 0x7FF2, 0x7FF3, 0x7FF5,
- 0x7FF6, 0x7FF7, 0x7FF8, 0x7FF9, 0x7FFA, 0x7FFB, 0x7FFB, 0x7FFC, 0x7FFD, 0x7FFD, 0x7FFE, 0x7FFE, 0x7FFE, 0x7FFE,
- 0x7FFE, 0x7FFF,
-};
-
-s16 sins(u16 x) {
- s16 val;
-
- x >>= 4;
- if ((x & 0x400) != 0) {
- val = sintable[0x3FF - (x & 0x3FF)];
- } else {
- val = sintable[x & 0x3FF];
- }
-
- if ((x & 0x800) != 0) {
- return -val;
- }
-
- return val;
+#include "libc/math.h"
+
+static s16 sintable[0x400] = {
+ 0x0000, 0x0032, 0x0064, 0x0096, 0x00C9, 0x00FB, 0x012D, 0x0160, 0x0192, 0x01C4, 0x01F7, 0x0229, 0x025B, 0x028E,
+ 0x02C0, 0x02F2, 0x0324, 0x0357, 0x0389, 0x03BB, 0x03EE, 0x0420, 0x0452, 0x0484, 0x04B7, 0x04E9, 0x051B, 0x054E,
+ 0x0580, 0x05B2, 0x05E4, 0x0617, 0x0649, 0x067B, 0x06AD, 0x06E0, 0x0712, 0x0744, 0x0776, 0x07A9, 0x07DB, 0x080D,
+ 0x083F, 0x0871, 0x08A4, 0x08D6, 0x0908, 0x093A, 0x096C, 0x099F, 0x09D1, 0x0A03, 0x0A35, 0x0A67, 0x0A99, 0x0ACB,
+ 0x0AFE, 0x0B30, 0x0B62, 0x0B94, 0x0BC6, 0x0BF8, 0x0C2A, 0x0C5C, 0x0C8E, 0x0CC0, 0x0CF2, 0x0D25, 0x0D57, 0x0D89,
+ 0x0DBB, 0x0DED, 0x0E1F, 0x0E51, 0x0E83, 0x0EB5, 0x0EE7, 0x0F19, 0x0F4B, 0x0F7C, 0x0FAE, 0x0FE0, 0x1012, 0x1044,
+ 0x1076, 0x10A8, 0x10DA, 0x110C, 0x113E, 0x116F, 0x11A1, 0x11D3, 0x1205, 0x1237, 0x1269, 0x129A, 0x12CC, 0x12FE,
+ 0x1330, 0x1361, 0x1393, 0x13C5, 0x13F6, 0x1428, 0x145A, 0x148C, 0x14BD, 0x14EF, 0x1520, 0x1552, 0x1584, 0x15B5,
+ 0x15E7, 0x1618, 0x164A, 0x167B, 0x16AD, 0x16DF, 0x1710, 0x1741, 0x1773, 0x17A4, 0x17D6, 0x1807, 0x1839, 0x186A,
+ 0x189B, 0x18CD, 0x18FE, 0x1930, 0x1961, 0x1992, 0x19C3, 0x19F5, 0x1A26, 0x1A57, 0x1A88, 0x1ABA, 0x1AEB, 0x1B1C,
+ 0x1B4D, 0x1B7E, 0x1BAF, 0x1BE1, 0x1C12, 0x1C43, 0x1C74, 0x1CA5, 0x1CD6, 0x1D07, 0x1D38, 0x1D69, 0x1D9A, 0x1DCB,
+ 0x1DFC, 0x1E2D, 0x1E5D, 0x1E8E, 0x1EBF, 0x1EF0, 0x1F21, 0x1F52, 0x1F82, 0x1FB3, 0x1FE4, 0x2015, 0x2045, 0x2076,
+ 0x20A7, 0x20D7, 0x2108, 0x2139, 0x2169, 0x219A, 0x21CA, 0x21FB, 0x222B, 0x225C, 0x228C, 0x22BD, 0x22ED, 0x231D,
+ 0x234E, 0x237E, 0x23AE, 0x23DF, 0x240F, 0x243F, 0x2470, 0x24A0, 0x24D0, 0x2500, 0x2530, 0x2560, 0x2591, 0x25C1,
+ 0x25F1, 0x2621, 0x2651, 0x2681, 0x26B1, 0x26E1, 0x2711, 0x2740, 0x2770, 0x27A0, 0x27D0, 0x2800, 0x2830, 0x285F,
+ 0x288F, 0x28BF, 0x28EE, 0x291E, 0x294E, 0x297D, 0x29AD, 0x29DD, 0x2A0C, 0x2A3C, 0x2A6B, 0x2A9B, 0x2ACA, 0x2AF9,
+ 0x2B29, 0x2B58, 0x2B87, 0x2BB7, 0x2BE6, 0x2C15, 0x2C44, 0x2C74, 0x2CA3, 0x2CD2, 0x2D01, 0x2D30, 0x2D5F, 0x2D8E,
+ 0x2DBD, 0x2DEC, 0x2E1B, 0x2E4A, 0x2E79, 0x2EA8, 0x2ED7, 0x2F06, 0x2F34, 0x2F63, 0x2F92, 0x2FC0, 0x2FEF, 0x301E,
+ 0x304C, 0x307B, 0x30A9, 0x30D8, 0x3107, 0x3135, 0x3163, 0x3192, 0x31C0, 0x31EF, 0x321D, 0x324B, 0x3279, 0x32A8,
+ 0x32D6, 0x3304, 0x3332, 0x3360, 0x338E, 0x33BC, 0x33EA, 0x3418, 0x3446, 0x3474, 0x34A2, 0x34D0, 0x34FE, 0x352B,
+ 0x3559, 0x3587, 0x35B5, 0x35E2, 0x3610, 0x363D, 0x366B, 0x3698, 0x36C6, 0x36F3, 0x3721, 0x374E, 0x377C, 0x37A9,
+ 0x37D6, 0x3803, 0x3831, 0x385E, 0x388B, 0x38B8, 0x38E5, 0x3912, 0x393F, 0x396C, 0x3999, 0x39C6, 0x39F3, 0x3A20,
+ 0x3A4D, 0x3A79, 0x3AA6, 0x3AD3, 0x3B00, 0x3B2C, 0x3B59, 0x3B85, 0x3BB2, 0x3BDE, 0x3C0B, 0x3C37, 0x3C64, 0x3C90,
+ 0x3CBC, 0x3CE9, 0x3D15, 0x3D41, 0x3D6D, 0x3D99, 0x3DC5, 0x3DF1, 0x3E1D, 0x3E49, 0x3E75, 0x3EA1, 0x3ECD, 0x3EF9,
+ 0x3F25, 0x3F50, 0x3F7C, 0x3FA8, 0x3FD3, 0x3FFF, 0x402B, 0x4056, 0x4082, 0x40AD, 0x40D8, 0x4104, 0x412F, 0x415A,
+ 0x4186, 0x41B1, 0x41DC, 0x4207, 0x4232, 0x425D, 0x4288, 0x42B3, 0x42DE, 0x4309, 0x4334, 0x435F, 0x4389, 0x43B4,
+ 0x43DF, 0x4409, 0x4434, 0x445F, 0x4489, 0x44B4, 0x44DE, 0x4508, 0x4533, 0x455D, 0x4587, 0x45B1, 0x45DC, 0x4606,
+ 0x4630, 0x465A, 0x4684, 0x46AE, 0x46D8, 0x4702, 0x472C, 0x4755, 0x477F, 0x47A9, 0x47D2, 0x47FC, 0x4826, 0x484F,
+ 0x4879, 0x48A2, 0x48CC, 0x48F5, 0x491E, 0x4948, 0x4971, 0x499A, 0x49C3, 0x49EC, 0x4A15, 0x4A3E, 0x4A67, 0x4A90,
+ 0x4AB9, 0x4AE2, 0x4B0B, 0x4B33, 0x4B5C, 0x4B85, 0x4BAD, 0x4BD6, 0x4BFE, 0x4C27, 0x4C4F, 0x4C78, 0x4CA0, 0x4CC8,
+ 0x4CF0, 0x4D19, 0x4D41, 0x4D69, 0x4D91, 0x4DB9, 0x4DE1, 0x4E09, 0x4E31, 0x4E58, 0x4E80, 0x4EA8, 0x4ED0, 0x4EF7,
+ 0x4F1F, 0x4F46, 0x4F6E, 0x4F95, 0x4FBD, 0x4FE4, 0x500B, 0x5032, 0x505A, 0x5081, 0x50A8, 0x50CF, 0x50F6, 0x511D,
+ 0x5144, 0x516B, 0x5191, 0x51B8, 0x51DF, 0x5205, 0x522C, 0x5253, 0x5279, 0x52A0, 0x52C6, 0x52EC, 0x5313, 0x5339,
+ 0x535F, 0x5385, 0x53AB, 0x53D1, 0x53F7, 0x541D, 0x5443, 0x5469, 0x548F, 0x54B5, 0x54DA, 0x5500, 0x5525, 0x554B,
+ 0x5571, 0x5596, 0x55BB, 0x55E1, 0x5606, 0x562B, 0x5650, 0x5675, 0x569B, 0x56C0, 0x56E5, 0x5709, 0x572E, 0x5753,
+ 0x5778, 0x579D, 0x57C1, 0x57E6, 0x580A, 0x582F, 0x5853, 0x5878, 0x589C, 0x58C0, 0x58E5, 0x5909, 0x592D, 0x5951,
+ 0x5975, 0x5999, 0x59BD, 0x59E1, 0x5A04, 0x5A28, 0x5A4C, 0x5A6F, 0x5A93, 0x5AB7, 0x5ADA, 0x5AFD, 0x5B21, 0x5B44,
+ 0x5B67, 0x5B8B, 0x5BAE, 0x5BD1, 0x5BF4, 0x5C17, 0x5C3A, 0x5C5D, 0x5C7F, 0x5CA2, 0x5CC5, 0x5CE7, 0x5D0A, 0x5D2D,
+ 0x5D4F, 0x5D71, 0x5D94, 0x5DB6, 0x5DD8, 0x5DFA, 0x5E1D, 0x5E3F, 0x5E61, 0x5E83, 0x5EA5, 0x5EC6, 0x5EE8, 0x5F0A,
+ 0x5F2C, 0x5F4D, 0x5F6F, 0x5F90, 0x5FB2, 0x5FD3, 0x5FF4, 0x6016, 0x6037, 0x6058, 0x6079, 0x609A, 0x60BB, 0x60DC,
+ 0x60FD, 0x611E, 0x613E, 0x615F, 0x6180, 0x61A0, 0x61C1, 0x61E1, 0x6202, 0x6222, 0x6242, 0x6263, 0x6283, 0x62A3,
+ 0x62C3, 0x62E3, 0x6303, 0x6323, 0x6342, 0x6362, 0x6382, 0x63A1, 0x63C1, 0x63E0, 0x6400, 0x641F, 0x643F, 0x645E,
+ 0x647D, 0x649C, 0x64BB, 0x64DA, 0x64F9, 0x6518, 0x6537, 0x6556, 0x6574, 0x6593, 0x65B2, 0x65D0, 0x65EF, 0x660D,
+ 0x662B, 0x664A, 0x6668, 0x6686, 0x66A4, 0x66C2, 0x66E0, 0x66FE, 0x671C, 0x673A, 0x6757, 0x6775, 0x6792, 0x67B0,
+ 0x67CD, 0x67EB, 0x6808, 0x6825, 0x6843, 0x6860, 0x687D, 0x689A, 0x68B7, 0x68D4, 0x68F1, 0x690D, 0x692A, 0x6947,
+ 0x6963, 0x6980, 0x699C, 0x69B9, 0x69D5, 0x69F1, 0x6A0E, 0x6A2A, 0x6A46, 0x6A62, 0x6A7E, 0x6A9A, 0x6AB5, 0x6AD1,
+ 0x6AED, 0x6B08, 0x6B24, 0x6B40, 0x6B5B, 0x6B76, 0x6B92, 0x6BAD, 0x6BC8, 0x6BE3, 0x6BFE, 0x6C19, 0x6C34, 0x6C4F,
+ 0x6C6A, 0x6C84, 0x6C9F, 0x6CBA, 0x6CD4, 0x6CEF, 0x6D09, 0x6D23, 0x6D3E, 0x6D58, 0x6D72, 0x6D8C, 0x6DA6, 0x6DC0,
+ 0x6DDA, 0x6DF3, 0x6E0D, 0x6E27, 0x6E40, 0x6E5A, 0x6E73, 0x6E8D, 0x6EA6, 0x6EBF, 0x6ED9, 0x6EF2, 0x6F0B, 0x6F24,
+ 0x6F3D, 0x6F55, 0x6F6E, 0x6F87, 0x6FA0, 0x6FB8, 0x6FD1, 0x6FE9, 0x7002, 0x701A, 0x7032, 0x704A, 0x7062, 0x707A,
+ 0x7092, 0x70AA, 0x70C2, 0x70DA, 0x70F2, 0x7109, 0x7121, 0x7138, 0x7150, 0x7167, 0x717E, 0x7196, 0x71AD, 0x71C4,
+ 0x71DB, 0x71F2, 0x7209, 0x7220, 0x7236, 0x724D, 0x7264, 0x727A, 0x7291, 0x72A7, 0x72BD, 0x72D4, 0x72EA, 0x7300,
+ 0x7316, 0x732C, 0x7342, 0x7358, 0x736E, 0x7383, 0x7399, 0x73AE, 0x73C4, 0x73D9, 0x73EF, 0x7404, 0x7419, 0x742E,
+ 0x7443, 0x7458, 0x746D, 0x7482, 0x7497, 0x74AC, 0x74C0, 0x74D5, 0x74EA, 0x74FE, 0x7512, 0x7527, 0x753B, 0x754F,
+ 0x7563, 0x7577, 0x758B, 0x759F, 0x75B3, 0x75C7, 0x75DA, 0x75EE, 0x7601, 0x7615, 0x7628, 0x763B, 0x764F, 0x7662,
+ 0x7675, 0x7688, 0x769B, 0x76AE, 0x76C1, 0x76D3, 0x76E6, 0x76F9, 0x770B, 0x771E, 0x7730, 0x7742, 0x7754, 0x7767,
+ 0x7779, 0x778B, 0x779D, 0x77AF, 0x77C0, 0x77D2, 0x77E4, 0x77F5, 0x7807, 0x7818, 0x782A, 0x783B, 0x784C, 0x785D,
+ 0x786E, 0x787F, 0x7890, 0x78A1, 0x78B2, 0x78C3, 0x78D3, 0x78E4, 0x78F4, 0x7905, 0x7915, 0x7925, 0x7936, 0x7946,
+ 0x7956, 0x7966, 0x7976, 0x7985, 0x7995, 0x79A5, 0x79B5, 0x79C4, 0x79D4, 0x79E3, 0x79F2, 0x7A02, 0x7A11, 0x7A20,
+ 0x7A2F, 0x7A3E, 0x7A4D, 0x7A5B, 0x7A6A, 0x7A79, 0x7A87, 0x7A96, 0x7AA4, 0x7AB3, 0x7AC1, 0x7ACF, 0x7ADD, 0x7AEB,
+ 0x7AF9, 0x7B07, 0x7B15, 0x7B23, 0x7B31, 0x7B3E, 0x7B4C, 0x7B59, 0x7B67, 0x7B74, 0x7B81, 0x7B8E, 0x7B9B, 0x7BA8,
+ 0x7BB5, 0x7BC2, 0x7BCF, 0x7BDC, 0x7BE8, 0x7BF5, 0x7C02, 0x7C0E, 0x7C1A, 0x7C27, 0x7C33, 0x7C3F, 0x7C4B, 0x7C57,
+ 0x7C63, 0x7C6F, 0x7C7A, 0x7C86, 0x7C92, 0x7C9D, 0x7CA9, 0x7CB4, 0x7CBF, 0x7CCB, 0x7CD6, 0x7CE1, 0x7CEC, 0x7CF7,
+ 0x7D02, 0x7D0C, 0x7D17, 0x7D22, 0x7D2C, 0x7D37, 0x7D41, 0x7D4B, 0x7D56, 0x7D60, 0x7D6A, 0x7D74, 0x7D7E, 0x7D88,
+ 0x7D91, 0x7D9B, 0x7DA5, 0x7DAE, 0x7DB8, 0x7DC1, 0x7DCB, 0x7DD4, 0x7DDD, 0x7DE6, 0x7DEF, 0x7DF8, 0x7E01, 0x7E0A,
+ 0x7E13, 0x7E1B, 0x7E24, 0x7E2C, 0x7E35, 0x7E3D, 0x7E45, 0x7E4D, 0x7E56, 0x7E5E, 0x7E66, 0x7E6D, 0x7E75, 0x7E7D,
+ 0x7E85, 0x7E8C, 0x7E94, 0x7E9B, 0x7EA3, 0x7EAA, 0x7EB1, 0x7EB8, 0x7EBF, 0x7EC6, 0x7ECD, 0x7ED4, 0x7EDB, 0x7EE1,
+ 0x7EE8, 0x7EEE, 0x7EF5, 0x7EFB, 0x7F01, 0x7F08, 0x7F0E, 0x7F14, 0x7F1A, 0x7F20, 0x7F25, 0x7F2B, 0x7F31, 0x7F36,
+ 0x7F3C, 0x7F41, 0x7F47, 0x7F4C, 0x7F51, 0x7F56, 0x7F5B, 0x7F60, 0x7F65, 0x7F6A, 0x7F6F, 0x7F74, 0x7F78, 0x7F7D,
+ 0x7F81, 0x7F85, 0x7F8A, 0x7F8E, 0x7F92, 0x7F96, 0x7F9A, 0x7F9E, 0x7FA2, 0x7FA6, 0x7FA9, 0x7FAD, 0x7FB0, 0x7FB4,
+ 0x7FB7, 0x7FBA, 0x7FBE, 0x7FC1, 0x7FC4, 0x7FC7, 0x7FCA, 0x7FCC, 0x7FCF, 0x7FD2, 0x7FD4, 0x7FD7, 0x7FD9, 0x7FDC,
+ 0x7FDE, 0x7FE0, 0x7FE2, 0x7FE4, 0x7FE6, 0x7FE8, 0x7FEA, 0x7FEC, 0x7FED, 0x7FEF, 0x7FF1, 0x7FF2, 0x7FF3, 0x7FF5,
+ 0x7FF6, 0x7FF7, 0x7FF8, 0x7FF9, 0x7FFA, 0x7FFB, 0x7FFB, 0x7FFC, 0x7FFD, 0x7FFD, 0x7FFE, 0x7FFE, 0x7FFE, 0x7FFE,
+ 0x7FFE, 0x7FFF,
+};
+
+s16 sins(u16 x) {
+ s16 val;
+
+ x >>= 4;
+ if ((x & 0x400) != 0) {
+ val = sintable[0x3FF - (x & 0x3FF)];
+ } else {
+ val = sintable[x & 0x3FF];
+ }
+
+ if ((x & 0x800) != 0) {
+ return -val;
+ }
+
+ return val;
}
\ No newline at end of file
diff --git a/src/static/libultra/ultra.c b/src/static/libultra/ultra.c
index 730dd69c..fb5875b3 100644
--- a/src/static/libultra/ultra.c
+++ b/src/static/libultra/ultra.c
@@ -1,35 +1,35 @@
-#include "libultra/libultra.h"
-#include "_mem.h"
-#include "dolphin/os.h"
-#include "dolphin/os/OSTime.h"
-
-extern OSTime __osTimeOffset;
-s32 osAppNMIBuffer[16];
-
-void bcopy(void* __src, void* __dst, size_t __n) {
- memmove(__dst, __src, __n);
-}
-
-int bcmp(void* __s1, void* __s2, size_t __n) {
- return memcmp(__s1, __s2, __n);
-}
-
-void bzero(void* __s, size_t __n) {
- memset(__s, 0, __n);
-}
-
-void osSyncPrintf(const char* format, ...) {
- va_list arg;
- va_start(arg, format);
- OSVReport(format, arg);
- va_end(arg);
-
-}
-void osWritebackDCache(void* buf, u32 len) {
- DCStoreRange(buf, len);
-}
-
-u32 osGetCount(void) {
- return OSGetTick();
-}
-
+#include "libultra/libultra.h"
+#include "_mem.h"
+#include "dolphin/os.h"
+#include "dolphin/os/OSTime.h"
+
+extern OSTime __osTimeOffset;
+s32 osAppNMIBuffer[16];
+
+void bcopy(void* __src, void* __dst, size_t __n) {
+ memmove(__dst, __src, __n);
+}
+
+int bcmp(void* __s1, void* __s2, size_t __n) {
+ return memcmp(__s1, __s2, __n);
+}
+
+void bzero(void* __s, size_t __n) {
+ memset(__s, 0, __n);
+}
+
+void osSyncPrintf(const char* format, ...) {
+ va_list arg;
+ va_start(arg, format);
+ OSVReport(format, arg);
+ va_end(arg);
+
+}
+void osWritebackDCache(void* buf, u32 len) {
+ DCStoreRange(buf, len);
+}
+
+u32 osGetCount(void) {
+ return OSGetTick();
+}
+
diff --git a/src/static/libultra/xldtob.c b/src/static/libultra/xldtob.c
index b73122d2..f9a77f1f 100644
--- a/src/static/libultra/xldtob.c
+++ b/src/static/libultra/xldtob.c
@@ -1,7 +1,7 @@
-#include /* ldiv & ldiv_t */
+#include "gcc/stdlib.h" /* ldiv & ldiv_t */
#include "_mem.h" /* memcpy */
-#include "xprintf.h"
+#include "libultra/xprintf.h"
#define BUFF_LEN 0x20
diff --git a/src/static/libultra/xlitob.c b/src/static/libultra/xlitob.c
index b6528513..91755407 100644
--- a/src/static/libultra/xlitob.c
+++ b/src/static/libultra/xlitob.c
@@ -1,4 +1,4 @@
-#include /* lldiv & lldiv_t */
+#include "gcc/stdlib.h" /* lldiv & lldiv_t */
#include "_mem.h" /* memcpy */
#include "libultra/xprintf.h"
@@ -7,7 +7,7 @@
u8 ldigs[] = "0123456789abcdef";
u8 udigs[] = "0123456789ABCDEF";
-static void _Litob(_Pft* args, u8 type) {
+extern void _Litob(_Pft* args, u8 type) {
u8* numMap;
int base;
int idx;
diff --git a/src/static/libultra/xprintf.c b/src/static/libultra/xprintf.c
index 9cdb043f..26df1d50 100644
--- a/src/static/libultra/xprintf.c
+++ b/src/static/libultra/xprintf.c
@@ -1,4 +1,4 @@
-#include /* strchr */
+#include "dolphin/string.h" /* strchr */
#include "libultra/xprintf.h"
diff --git a/src/static/nintendo_hi_0.c b/src/static/nintendo_hi_0.c
index 5ec1abc2..3c52c021 100644
--- a/src/static/nintendo_hi_0.c
+++ b/src/static/nintendo_hi_0.c
@@ -1,5 +1,2 @@
-#include "nintendo_hi_0.h"
-
-u8 nintendo_hi_0[] ATTRIBUTE_ALIGN(32) = {
+#include "nintendo_hi_0.h" // IWYU pragma: keep
#include "assets/nintendo_hi_0.inc"
-};
diff --git a/src/sys_dynamic.c b/src/system/sys_dynamic.c
similarity index 100%
rename from src/sys_dynamic.c
rename to src/system/sys_dynamic.c
diff --git a/src/sys_math.c b/src/system/sys_math.c
similarity index 100%
rename from src/sys_math.c
rename to src/system/sys_math.c
diff --git a/src/sys_math3d.c b/src/system/sys_math3d.c
similarity index 100%
rename from src/sys_math3d.c
rename to src/system/sys_math3d.c
diff --git a/src/sys_math_atan.c b/src/system/sys_math_atan.c
similarity index 100%
rename from src/sys_math_atan.c
rename to src/system/sys_math_atan.c
diff --git a/src/sys_matrix.c b/src/system/sys_matrix.c
similarity index 100%
rename from src/sys_matrix.c
rename to src/system/sys_matrix.c
diff --git a/src/sys_romcheck.c b/src/system/sys_romcheck.c
similarity index 100%
rename from src/sys_romcheck.c
rename to src/system/sys_romcheck.c
diff --git a/src/sys_stacks.c b/src/system/sys_stacks.c
similarity index 100%
rename from src/sys_stacks.c
rename to src/system/sys_stacks.c
diff --git a/src/sys_ucode.c b/src/system/sys_ucode.c
similarity index 100%
rename from src/sys_ucode.c
rename to src/system/sys_ucode.c
diff --git a/src/sys_vimgr.c b/src/system/sys_vimgr.c
similarity index 100%
rename from src/sys_vimgr.c
rename to src/system/sys_vimgr.c
diff --git a/tools/__init__.py b/tools/__init__.py
new file mode 100644
index 00000000..e69de29b
diff --git a/tools/arc_tool.py b/tools/arc_tool.py
deleted file mode 100644
index 3d45dba1..00000000
--- a/tools/arc_tool.py
+++ /dev/null
@@ -1,70 +0,0 @@
-import pyjkernel
-import os
-import argparse
-
-def unpack_dir(archive: pyjkernel.JKRArchive, dir: str, verbose=False):
- if verbose:
- print('Dumping dir: ' + dir)
- # create all files
- for file in archive.list_files(dir):
- if verbose:
- print('Dumping file: ' + file.name)
- with open(os.path.join(dir, file.name), "wb") as f:
- f.write(archive.get_file(dir + os.sep + file.name).data)
-
- # create all subdirectories and recurse through them
- for subdir in archive.list_folders(dir):
- if not os.path.exists(dir + os.sep + subdir):
- os.mkdir(dir + os.sep + subdir)
- unpack_dir(archive, dir + os.sep + subdir, verbose)
-
-def unpack_archive(path: str, out_path: str, verbose=False):
- archive = pyjkernel.from_archive_file(path, True)
- orig_dir = os.path.abspath(os.curdir)
- os.chdir(out_path)
- if not os.path.exists(archive.root_name):
- os.mkdir(archive.root_name)
- unpack_dir(archive, archive.root_name, verbose)
- os.chdir(orig_dir)
-
-def pack_dir(archive: pyjkernel.JKRArchive, path: str, verbose=False):
- local_path = os.path.dirname(path)
- orig_dir = os.path.abspath(os.curdir)
- if local_path != "":
- os.chdir(local_path)
- local_root = os.path.basename(os.path.normpath(path))
-
- for root, dirs, files in os.walk(local_root):
- files.sort(key=lambda item: (item.lower(), item))
- for dir in dirs:
- archive.create_folder(root + os.sep + dir)
-
- for file in files:
- if verbose:
- print('Packing file: ' + root + os.sep + file)
- with open(root + os.sep + file, "rb") as f:
- archive.create_file(root + os.sep + file, bytearray(f.read()), pyjkernel.JKRPreloadType.ARAM)
- os.chdir(orig_dir)
-
-def pack_archive(root_path: str, out_path: str, verbose=False):
- root_name = os.path.basename(os.path.normpath(root_path))
- archive = pyjkernel.create_new_archive(root_name)
- pack_dir(archive, root_path, verbose)
- pyjkernel.write_archive_file(archive, out_path, True, pyjkernel.jkrcomp.JKRCompression.NONE, 0)
-
-def main():
- parser = argparse.ArgumentParser(description='Pack or unpack JSystem JKernel archives.')
- parser.add_argument('-v', help='Enable verbose logging.', required=False, action='store_true')
- parser.add_argument('path', help='The path of the folder to pack or archive file to unpack.')
- parser.add_argument('out', help='The path of the destination folder or file.')
-
- args = parser.parse_args()
- if os.path.isfile(args.path):
- unpack_archive(args.path, args.out, args.v)
- elif os.path.isdir(args.path):
- pack_archive(args.path, args.out, args.v)
- else:
- raise Exception('path is not a valid file or directory!')
-
-if __name__ == '__main__':
- main()
diff --git a/tools/assetinclude_gen.py b/tools/assetinclude_gen.py
deleted file mode 100644
index c8cc0bb9..00000000
--- a/tools/assetinclude_gen.py
+++ /dev/null
@@ -1,243 +0,0 @@
-import os
-import re
-import argparse
-import typing
-from ruamel.yaml import YAML
-from ruamel.yaml import CommentedMap
-from ruamel.yaml import CommentedSeq
-from ruamel.yaml import scalarint
-import yaml
-import ntpath
-
-#region Types
-class SymbolInfo:
- symbol_name: str = None
- asset_path: str = None
- start_address: int = 0
- end_address: int = 0
-
- def __init__(self, name:str, asset_path:str, start:int, size:int) -> None:
- self.symbol_name = name
- self.asset_path = asset_path
- self.start_address = start
- self.end_address = start + size
-
- def get_address_range(self)->typing.Tuple[int, int]:
- return self.start_address, self.end_address
-
-class Address_Sort_Entry:
- key : str = None
- value: CommentedMap = None
- starting_address: int = None
-
- def __init__(self, entry_key: str, entry_value: CommentedMap, entry_starting_address: int) -> None:
- self.key = entry_key
- self.value = entry_value
- self.starting_address = entry_starting_address
-#endregion
-
-# Pattern to match '#include "assets/[...].inc"'
-pattern_format = r'\s*#include "assets/([^"]*/)([^"]+)\.inc"\s*'
-asset_include_pattern = re.compile(pattern_format)
-
-#region Sorting
-def sort_by_starting_address(data: CommentedMap, address_sort_keys: typing.List[str])->CommentedMap:
- if len(data) <= 1:
- return data
-
- ordered_entries : list[Address_Sort_Entry] = []
- for key in data.keys():
- entry = data[key]
- starting_address = 0
-
- for address_key in address_sort_keys:
- if address_key not in entry:
- continue
-
- # Ensure starting_address is an integer
- if isinstance(entry[address_key], int):
- starting_address = entry[address_key]
- elif isinstance(entry[address_key], CommentedSeq):
- starting_address = entry[address_key][0]
- else:
- print('Address key %s is not an int or CommentedSeq! type: %s value: %s' % (address_key, type(entry[address_key]), entry[address_key]))
- starting_address = 0
- break
-
- ordered_entries.append(Address_Sort_Entry(key, entry, starting_address))
-
- ordered_entries.sort(key=lambda entry: entry.starting_address)
-
- ordered_map = CommentedMap()
- for ordered_entry in ordered_entries:
- ordered_map[ordered_entry.key] = ordered_entry.value
- if ordered_entry.key not in data.ca.items:
- continue
-
- ordered_map.ca.items[ordered_entry.key] = data.ca.items[ordered_entry.key]
-
- return ordered_map
-#endregion
-
-def load_symbols_yaml():
- # Load the YAML file using CSafeLoader for best perf
- with open("config/symbols.yml", "r", encoding="utf-8", newline="\n") as file_reader:
- data = yaml.load(file_reader, Loader=yaml.CSafeLoader)
-
- # Flatten the data by combining all sections
- all_symbols = {}
- for section in data.values():
- all_symbols.update(section)
-
- # Convert addresses to a sorted list of tuples (address, symbol_name)
- return sorted((addr, name) for addr, name in all_symbols.items())
-
-def search_for_symbol(symbol_name, sorted_symbols):
- # Search for the symbol
- for i, (addr, name) in enumerate(sorted_symbols):
- if name == symbol_name:
- current_address = addr
- next_address = sorted_symbols[i + 1][0] if i + 1 < len(sorted_symbols) else None
- return current_address, next_address if next_address else None
-
- # If the symbol is not found
- return None, None
-
-sorted_symbols = None
-def search_for_assetrip_includes(src_file: str)->typing.List[SymbolInfo]:
- global sorted_symbols # make sorted_symbols accessible for writing
- symbols_for_tu: typing.List[SymbolInfo] = []
-
- with open(src_file, "r", encoding="utf-8", newline="\n") as file_reader:
- while True:
- line = file_reader.readline()
- if not line:
- break
-
- # Check if the line matches an assetrip include
- match = asset_include_pattern.match(line)
- if not match:
- continue
-
- # It is a match
- path = match.group(1)
- name = match.group(2)
- # print(path, name)
-
- # Load symbols if not already done
- if sorted_symbols == None:
- sorted_symbols = load_symbols_yaml()
-
- sym_beg, sym_end = search_for_symbol(name, sorted_symbols)
- size = sym_end - sym_beg
- symbols_for_tu.append(SymbolInfo(name, path, sym_beg, size))
- # print(hex(sym_beg), hex(sym_end), hex(size))
- return symbols_for_tu
-
-
-#region Asset Slices Config File
-def update_asset_slice_config(data: CommentedMap, tu_name: str, symbols_for_tu: typing.List[SymbolInfo]):
- binary_commented_map : CommentedMap = None
- binary_commented_map_key: str = "config/rel.yml" # TODO: do we want to support assets in the dol?
- binary_commented_map = data[binary_commented_map_key]
-
- insert_tu_name_comment = True
- for asset_symbol in symbols_for_tu:
- asset_type: str = None
- if asset_symbol.symbol_name.endswith('_pal'):
- asset_type = "pal16"
- elif asset_symbol.symbol_name.endswith(('_vtx', '_v')):
- asset_type = "vtx"
- elif not asset_symbol.symbol_name.endswith(('_txt', '_tex')):
- print(f"What is the asset type? {asset_symbol.symbol_name} (optional)")
- asset_type = input()
-
- if not asset_type:
- asset_type = None
-
- asset_commented_map : CommentedMap = None
- asset_key = None
- if asset_symbol.asset_path != None:
- asset_key = f"{asset_symbol.asset_path}{asset_symbol.symbol_name}"
- else:
- asset_key = asset_symbol.symbol_name
-
- if binary_commented_map.__contains__(asset_key):
- asset_commented_map = binary_commented_map[asset_key]
- insert_tu_name_comment = False
- else:
- asset_commented_map = CommentedMap()
- binary_commented_map.insert(len(binary_commented_map), asset_key, asset_commented_map)
-
- if insert_tu_name_comment:
- insert_tu_name_comment = False
- binary_commented_map.yaml_set_comment_before_after_key(key=asset_key, indent=2, before=tu_name)
-
- # Add in the address range
- address_commented_seq: CommentedSeq = None
- if asset_commented_map.__contains__("addrs"):
- # Re-use the same commented section
- address_commented_seq = asset_commented_map["addrs"]
- address_commented_seq.clear()
- else:
- address_commented_seq: CommentedSeq = CommentedSeq()
-
- # Assign to the slice section
- asset_commented_map["addrs"] = address_commented_seq
-
- # Add in the start and end address
- start_address, end_address = asset_symbol.get_address_range()
- address_commented_seq.fa.set_flow_style()
- address_commented_seq.append(scalarint.HexCapsInt(start_address))
- address_commented_seq.append(scalarint.HexCapsInt(end_address))
-
- # Add in the asset type
- if not asset_type or asset_type is None:
- # Type not specified
- if asset_commented_map.__contains__("type"):
- # Using a previous entry where the type was used, so delete it
- asset_commented_map.__delitem__("type")
- continue
-
- asset_commented_map["type"] = asset_type
-
-def process_file_or_directory(data: CommentedMap, src_file: str):
- if os.path.isdir(src_file):
- # List all files and directories in the current directory
- for entry in os.listdir(src_file):
- full_path = os.path.join(src_file, entry)
- # Recursively call the function for each entry
- process_file_or_directory(data, full_path)
- else:
- # Process the file
- src_filename: str = ntpath.basename(src_file)
- include_symbols: typing.List[SymbolInfo] = search_for_assetrip_includes(src_file)
- update_asset_slice_config(data, src_filename, include_symbols)
-#endregion
-
-#region Main
-def main():
- parser = argparse.ArgumentParser(prog="Asset Include/Rip Generation", description="Adds the corresponding assetrip addresses assets YAML config file")
- parser.add_argument("src_file", nargs="?", help="Name of the translation unit to search for assets")
- args = parser.parse_args()
-
- src_file: str = args.src_file
- yaml = YAML(typ="rt")
- data: CommentedMap = None
- with open("config/assets.yml", "r", encoding="utf-8", newline="\n") as file_reader:
- data = yaml.load(file_reader)
-
- process_file_or_directory(data, src_file)
-
- # Sort by starting address and replace
- binary_commented_map_key: str = "config/rel.yml" # TODO: do we want to support assets in the dol?
- binary_commented_map = data[binary_commented_map_key]
- data[binary_commented_map_key] = sort_by_starting_address(binary_commented_map, ["addrs"])
-
- # Write out to file
- with open("config/assets.yml", "w", encoding="utf-8", newline="\n") as file_writer:
- yaml.dump(data, file_writer)
-
-if __name__ == "__main__":
- main()
-#endregion
diff --git a/tools/converters/pal16dis.py b/tools/converters/pal16dis.py
index 65d92313..d62cc048 100644
--- a/tools/converters/pal16dis.py
+++ b/tools/converters/pal16dis.py
@@ -1,26 +1,31 @@
from argparse import ArgumentParser
import struct
+
def convert_binary_to_vtx_c_source(src_path, dest_path):
- # Load data
- with open(src_path, "rb") as binary_file, open(dest_path, "w") as c_file:
- while True:
- chunk = binary_file.read(2) # 2 bytes for each 16-bit palette entry
+ # Load data
+ with open(src_path, "rb") as binary_file, open(dest_path, "w") as c_file:
+ while True:
+ chunk = binary_file.read(2) # 2 bytes for each 16-bit palette entry
- if len(chunk) < 2:
- break
+ if len(chunk) < 2:
+ break
- pal = struct.unpack(">H", chunk[0:2]) # 2 bytes
+ pal = struct.unpack(">H", chunk[0:2]) # 2 bytes
+
+ c_file.write(f"{hex(pal[0])}, ")
- c_file.write(f"{hex(pal[0])}, ")
def main():
- parser = ArgumentParser(description="Converts a binary file to an array of u16 type")
- parser.add_argument("src_path", type=str, help="Binary source file path")
- parser.add_argument("dest_path", type=str, help="Destination C include file path")
+ parser = ArgumentParser(
+ description="Converts a binary file to an array of u16 type"
+ )
+ parser.add_argument("src_path", type=str, help="Binary source file path")
+ parser.add_argument("dest_path", type=str, help="Destination C include file path")
- args = parser.parse_args()
- convert_binary_to_vtx_c_source(args.src_path, args.dest_path)
+ args = parser.parse_args()
+ convert_binary_to_vtx_c_source(args.src_path, args.dest_path)
-if __name__ == '__main__':
- main()
\ No newline at end of file
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/converters/pal16dis_chunked.py b/tools/converters/pal16dis_chunked.py
new file mode 100644
index 00000000..31f2a8eb
--- /dev/null
+++ b/tools/converters/pal16dis_chunked.py
@@ -0,0 +1,66 @@
+from argparse import ArgumentParser
+import os
+import struct
+import sys
+
+sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
+import ninja_syntax # noqa: E402
+
+
+def convert_binary_to_vtx_c_source(src_path, dest_path, dyndep_path, stamp_path):
+ out_paths = []
+ with open(src_path, "rb") as binary_file:
+ # Obtain file size, iterate in 0x20 byte chunks
+ file_size = binary_file.seek(0, 2)
+ binary_file.seek(0, 0)
+ for i in range(0, file_size, 0x20):
+ # Split the dest_path into multiple files depending on how many chunks there are
+ name, ext = os.path.splitext(dest_path)
+ file_name = f"{name}_{i // 0x20}{ext}"
+ out_paths.append(file_name)
+ # Only write the file if we're not generating a dyndep file
+ if dyndep_path is None:
+ with open(file_name, "w") as c_file:
+ # Iterate each chunk and parse out the data
+ for j in range(0, 0x20, 2):
+ # 2 bytes for each 16-bit palette entry
+ chunk = binary_file.read(2)
+
+ if len(chunk) < 2:
+ break
+
+ pal = struct.unpack(">H", chunk[0:2]) # 2 bytes
+
+ c_file.write(f"{hex(pal[0])}, ")
+ if dyndep_path is not None:
+ with open(dyndep_path, "w") as out:
+ n = ninja_syntax.Writer(out)
+ n.variable("ninja_dyndep_version", "1")
+ n.build(stamp_path, "dyndep", implicit_outputs=out_paths)
+
+
+def main():
+ parser = ArgumentParser(
+ description="Converts a binary file to a number of u16 palettes"
+ )
+ parser.add_argument("src_path", type=str, help="Binary source file path")
+ parser.add_argument("dest_path", type=str, help="Destination C include file path")
+ parser.add_argument("-d", "--dyndep", type=str, help="Ninja dyndep file path")
+ parser.add_argument("-s", "--stamp", type=str, help="Stamp file path")
+ args = parser.parse_args()
+
+ if args.dyndep is not None and args.stamp is None:
+ parser.error("dyndep requires stamp file to be set")
+
+ convert_binary_to_vtx_c_source(
+ args.src_path, args.dest_path, args.dyndep, args.stamp
+ )
+
+ # Touch the stamp file
+ if args.dyndep is None and args.stamp is not None:
+ with open(args.stamp, "w") as stamp_file:
+ stamp_file.write("")
+
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/converters/vtxdis.py b/tools/converters/vtxdis.py
index 1dcd6ca4..31177462 100644
--- a/tools/converters/vtxdis.py
+++ b/tools/converters/vtxdis.py
@@ -1,29 +1,36 @@
from argparse import ArgumentParser
import struct
+
def convert_binary_to_vtx_c_source(src_path, dest_path):
- # Load data
- with open(src_path, "rb") as binary_file, open(dest_path, "w") as c_file:
- while True:
- chunk = binary_file.read(16) # 16 bytes for each Vtx struct
+ # Load data
+ with open(src_path, "rb") as binary_file, open(dest_path, "w") as c_file:
+ while True:
+ chunk = binary_file.read(16) # 16 bytes for each Vtx struct
- if len(chunk) < 16:
- break
+ if len(chunk) < 16:
+ break
- ob = struct.unpack(">hhh", chunk[0:6]) # 3 * 2 bytes
- flag = struct.unpack(">H", chunk[6:8]) # 2 bytes
- tc = struct.unpack(">hh", chunk[8:12]) # 2 * 2 bytes
- cn = struct.unpack(">BBBB", chunk[12:16]) # 4 * 1 byte
+ ob = struct.unpack(">hhh", chunk[0:6]) # 3 * 2 bytes
+ flag = struct.unpack(">H", chunk[6:8]) # 2 bytes
+ tc = struct.unpack(">hh", chunk[8:12]) # 2 * 2 bytes
+ cn = struct.unpack(">BBBB", chunk[12:16]) # 4 * 1 byte
+
+ c_file.write(
+ f" {{{ob[0]}, {ob[1]}, {ob[2]}, {flag[0]}, {tc[0]}, {tc[1]}, {cn[0]}, {cn[1]}, {cn[2]}, {cn[3]}}},\n"
+ )
- c_file.write(f" {{{ob[0]}, {ob[1]}, {ob[2]}, {flag[0]}, {tc[0]}, {tc[1]}, {cn[0]}, {cn[1]}, {cn[2]}, {cn[3]}}},\n")
def main():
- parser = ArgumentParser(description="Converts a binary file to an array of N64 Vtx type")
- parser.add_argument("src_path", type=str, help="Binary source file path")
- parser.add_argument("dest_path", type=str, help="Destination C include file path")
+ parser = ArgumentParser(
+ description="Converts a binary file to an array of N64 Vtx type"
+ )
+ parser.add_argument("src_path", type=str, help="Binary source file path")
+ parser.add_argument("dest_path", type=str, help="Destination C include file path")
- args = parser.parse_args()
- convert_binary_to_vtx_c_source(args.src_path, args.dest_path)
+ args = parser.parse_args()
+ convert_binary_to_vtx_c_source(args.src_path, args.dest_path)
-if __name__ == '__main__':
- main()
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/decompctx.py b/tools/decompctx.py
index b541d228..87cfb7ef 100644
--- a/tools/decompctx.py
+++ b/tools/decompctx.py
@@ -1,501 +1,120 @@
-# This script makes leaves most of the heavy lifting to pcpp which does preprocessing and expansion of files:
-# https://github.com/ned14/pcpp
-# To use it make sure you run 'pip install pcpp'
-#
-# This script also optionally uses pyperclip to conveniently copy the context to the clipboard:
-# https://github.com/asweigart/pyperclip
-# Install via `pip install pyperclip`
+#!/usr/bin/env python3
+###
+# Generates a ctx.c file, usable for "Context" on https://decomp.me.
+#
+# Usage:
+# python3 tools/decompctx.py src/file.cpp
+#
+# If changes are made, please submit a PR to
+# https://github.com/encounter/dtk-template
+###
+
+import argparse
import os
import re
-import typing
-import argparse
-import pyperclip
-from glob import glob
-from re import Pattern
-from io import StringIO
-from pcpp import Preprocessor
-from pcpp import CmdPreprocessor
-from contextlib import redirect_stdout
+from typing import List
-#region Context Options
-class ContextGenerationOptions:
- should_strip_declspec = False
- should_strip_attributes = False
- should_strip_at_address = False
- should_convert_binary_literals = False
- should_replace_enums_in_initializers = False
- should_strip_initializer_trailing_commas = False
-#endregion
-
-#region Regex Patterns
-at_address_pattern = re.compile(r"(?:.*?)(?:[a-zA-Z_$][\w$]*\s*\*?\s[a-zA-Z_$][\w$\[\]]*)\s*((?:AT_ADDRESS|:)(?:\s*\(?\s*)(0x[0-9a-fA-F]+|[a-zA-Z_$][\w$]*)\)?);")
-attribute_pattern = re.compile(r"(__attribute__)")
-declspec_pattern = re.compile(r"(__declspec)")
-binary_literal_pattern = re.compile(r"\b(0b[01]+)\b")
-trailing_initializer_pattern = re.compile(r"^.*?=\s*\{(?:.|\s)+?(,)?\s*(?:\/\/.*?|\/\*.*?\*\/)*\s*?\}\s*;", re.MULTILINE)
-enum_array_size_initializer_pattern = re.compile(r"\[\s*([a-zA-Z_$][\w$]*)\s*\]\s*;")
-enum_declaration_pattern = re.compile(r"^.*(?:typedef\s+)*enum\s(?:[a-zA-Z_$][\w$]*)*\s*\{\s*((?:.|\s)*?)\}\s*(?:[a-zA-Z_$][\w$]*)*\s*;", re.MULTILINE)
-enum_value_pattern = re.compile(r"([a-zA-Z_$][\w$]*)\s*(?:=\s*(.*))*")
-word_pattern = re.compile(r"\b([a-zA-Z_][\w]*)\b")
-white_space_pattern = re.compile(r"\s+")
-cast_patterns = re.compile(r"\(int\)")
-#endregion
-
-#region Defaults
-default_defines: typing.Dict[str, str] = {"__MWERKS__" : "1", "_LANGUAGE_C": "1", "F3DEX_GBI_2": "1"}
-
-src_dir = "src"
-include_dir = "include"
-cwd_dir = os.getcwd()
script_dir = os.path.dirname(os.path.realpath(__file__))
root_dir = os.path.abspath(os.path.join(script_dir, ".."))
-default_include_directories: typing.List[str] = [
- os.path.join(root_dir, src_dir),
- os.path.join(root_dir, include_dir),
- os.path.join(script_dir, src_dir),
- os.path.join(script_dir, include_dir),
- os.path.join(cwd_dir, src_dir),
- os.path.join(cwd_dir, include_dir),
+src_dir = os.path.join(root_dir, "src")
+include_dirs = [
+ os.path.join(root_dir, "include"),
+ # Add additional include directories here
]
-default_output_filename = "ctx.h"
-#endregion
+include_pattern = re.compile(r'^#\s*include\s*[<"](.+?)[>"]')
+guard_pattern = re.compile(r"^#\s*ifndef\s+(.*)$")
-#region N64 SDK
-def get_n64_sdk(sdk_argument: str)->str:
- if sdk_argument:
- return sdk_argument
-
- # No sdk path provided. Try to use default
- sdk_argument = os.environ['N64_SDK']
- if not sdk_argument:
- return None
-
- # Since we don't want the user to have to type the full path, all they need
- # is to provide the top-level folder for the SDK
- sdk_argument = os.path.join(sdk_argument, "ultra/usr/include")
- return sdk_argument
-#endregion
+defines = set()
-#region Attribute Stripping
-def strip_attributes(text_to_strip: str)->str:
- if not text_to_strip:
- return text_to_strip
-
- attribute_matches = reversed(list(re.finditer(attribute_pattern, text_to_strip)))
- for attribute_match in attribute_matches:
- # Find the end index of the second double paranthesis
- paren_count = 0
- match_span = attribute_match.span(0)
- end_index = match_span[1]
- attribute_opened = False
- while end_index < len(text_to_strip):
- if text_to_strip[end_index] == "(":
- paren_count += 1
+def import_h_file(in_file: str, r_path: str, deps: List[str]) -> str:
+ rel_path = os.path.join(root_dir, r_path, in_file)
+ if os.path.exists(rel_path):
+ return import_c_file(rel_path, deps)
+ for include_dir in include_dirs:
+ inc_path = os.path.join(include_dir, in_file)
+ if os.path.exists(inc_path):
+ return import_c_file(inc_path, deps)
+ else:
+ print("Failed to locate", in_file)
+ return ""
- if paren_count == 2:
- attribute_opened = True
-
- if text_to_strip[end_index] == ")":
- paren_count -= 1
- if attribute_opened and paren_count == 0:
- end_index += 1
- break
+def import_c_file(in_file: str, deps: List[str]) -> str:
+ in_file = os.path.relpath(in_file, root_dir)
+ deps.append(in_file)
+ out_text = ""
- end_index += 1
+ try:
+ with open(in_file, encoding="utf-8") as file:
+ out_text += process_file(in_file, list(file), deps)
+ except Exception:
+ with open(in_file) as file:
+ out_text += process_file(in_file, list(file), deps)
+ return out_text
- # Create the substring
- start_index = match_span[0]
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + postfix
- return text_to_strip
-#endregion
+def process_file(in_file: str, lines: List[str], deps: List[str]) -> str:
+ out_text = ""
+ for idx, line in enumerate(lines):
+ guard_match = guard_pattern.match(line.strip())
+ if idx == 0:
+ if guard_match:
+ if guard_match[1] in defines:
+ break
+ defines.add(guard_match[1])
+ print("Processing file", in_file)
+ include_match = include_pattern.match(line.strip())
+ if include_match and not include_match[1].endswith(".s"):
+ out_text += f'/* "{in_file}" line {idx} "{include_match[1]}" */\n'
+ out_text += import_h_file(include_match[1], os.path.dirname(in_file), deps)
+ out_text += f'/* end "{include_match[1]}" */\n'
+ else:
+ out_text += line
-#region declspec Stripping
-def strip_declspec(text_to_strip: str)->str:
- if not text_to_strip:
- return text_to_strip
-
- declspec_matches = reversed(list(re.finditer(declspec_pattern, text_to_strip)))
- for declspec_match in declspec_matches:
- # Find the end index of the second double paranthesis
- paren_count = 0
+ return out_text
- match_span = declspec_match.span(0)
- end_index = match_span[1]
- declspec_opened = False
- while end_index < len(text_to_strip):
- if text_to_strip[end_index] == "(":
- paren_count += 1
- if paren_count == 1:
- declspec_opened = True
-
- if text_to_strip[end_index] == ")":
- paren_count -= 1
+def sanitize_path(path: str) -> str:
+ return path.replace("\\", "/").replace(" ", "\\ ")
- if declspec_opened and paren_count == 0:
- end_index += 1
- break
- end_index += 1
-
- # Create the substring
- start_index = match_span[0]
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + postfix
-
- return text_to_strip
-#endregion
-
-#region At Address Stripping
-def strip_at_address(text_to_strip: str) -> str:
- if not text_to_strip:
- return text_to_strip
-
- at_address_matches = reversed(list(re.finditer(at_address_pattern, text_to_strip)))
- for attribute_match in at_address_matches:
- # Create the substring
- match_span = attribute_match.span(1)
- start_index = match_span[0]
- end_index = match_span[1]
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + postfix
-
- return text_to_strip
-#endregion
-
-#region Binary Literal Conversion
-def convert_binary_literals(text_to_strip: str) -> str:
- if not text_to_strip:
- return text_to_strip
-
- binary_literal_matches = reversed(list(re.finditer(binary_literal_pattern, text_to_strip)))
- for binary_literal_match in binary_literal_matches:
- # Create the substring
- match_span = binary_literal_match.span(1)
- start_index = match_span[0]
- end_index = match_span[1]
-
- # Convert from binary literal format to regular int
- binary_converted = int(text_to_strip[start_index:end_index], 2)
-
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + str(binary_converted) + postfix
-
- return text_to_strip
-#endregion
-
-#region Strip Trailing Commas
-def strip_initializer_trailing_commas(text_to_strip: str) -> str:
- if not text_to_strip:
- return text_to_strip
-
- trailing_comma_matches = reversed(list(re.finditer(trailing_initializer_pattern, text_to_strip)))
- for comma_match in trailing_comma_matches:
- # Create the substring
- if not comma_match[1]:
- continue
-
- match_span = comma_match.span(1)
- start_index = match_span[0]
- end_index = match_span[1]
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + postfix
-
- return text_to_strip
-#endregion
-
-#region Enums
-def replace_enums_with_numeric_values(text_to_strip: str)->str:
- if not text_to_strip:
- return text_to_strip
-
- # Check if there are any uses of enums to initialize arrays
- enum_array_size_initializer_matches = list(re.finditer(enum_array_size_initializer_pattern, text_to_strip))
- if len(enum_array_size_initializer_matches) == 0:
- # None found, so no need to evaluate the enums
- return text_to_strip
-
- # We need to replace enums. But to do so we need to gather all of the enum values from the context thus far
- enum_declarations = list(re.finditer(enum_declaration_pattern, text_to_strip))
- if len(enum_declarations) == 0:
- return text_to_strip
-
- preprocessor = Preprocessor()
- enum_to_numeric_dict : typing.Dict[str, int] = {}
- for enum_declaration in enum_declarations:
- enum_members = enum_declaration[1]
- split_enum_members = enum_members.split(",")
-
- enum_numeric_value = 0
- for split_member in split_enum_members:
- split_member = re.sub(white_space_pattern, "", split_member)
- if not split_member or split_member.isspace():
- continue
-
- enum_value_match = re.match(enum_value_pattern, split_member)
- enum_member_name = enum_value_match[1]
-
- # Does the enum have an explicit value assigned?
- if enum_value_match[2]:
- assigned_value = enum_value_match[2]
- try:
- # Replace usages of enum with numeric value
- numeric_expression = enum_value_match[2]
-
- # Remove casts
- numeric_expression = re.sub(cast_patterns, "", numeric_expression)
-
- # Replace enum names with numerical values
- for word_match in reversed(list(re.finditer(word_pattern, numeric_expression))):
- word = word_match[1]
- if word not in enum_to_numeric_dict:
- continue
-
- word_span = word_match.span(1)
- numeric_expression = numeric_expression[0:word_span[0]] + str(enum_to_numeric_dict[word]) + numeric_expression[word_span[1]:len(numeric_expression)]
-
- # Try to parse it out
- tokens = preprocessor.tokenize(numeric_expression)
- evaluation = preprocessor.evalexpr(tokens)
- assigned_value = evaluation[0]
- except Exception as e:
- # Can't parse. Might be another enum
- print(e)
-
- # Convert to int
- enum_numeric_value = int(assigned_value)
-
- # Record the value
- enum_to_numeric_dict[enum_member_name] = enum_numeric_value
-
- # By default the enum increases by 1
- enum_numeric_value += 1
-
- # With the enum map built we can now replace the usages with the numeric values
- enum_array_size_initializer_matches_reversed = reversed(enum_array_size_initializer_matches)
- for array_size_initializer_match in enum_array_size_initializer_matches_reversed:
- # Does this use a known enum?
- enum_name = array_size_initializer_match[1]
- if enum_name not in enum_to_numeric_dict:
- continue
-
- enum_numeric_value = enum_to_numeric_dict[enum_name]
-
- # Create the substring
- match_span = array_size_initializer_match.span(1)
- start_index = match_span[0]
- end_index = match_span[1]
-
- prefix = text_to_strip[0:start_index]
- postfix = text_to_strip[end_index:len(text_to_strip)]
- text_to_strip = prefix + str(enum_numeric_value) + postfix
-
- return text_to_strip
-#endregion
-
-#region Preprocessing
-def generate_context(preprocessor_arguments: typing.List[str], context_options: ContextGenerationOptions)->str:
- # Create the temp string writer to pass to the preprocessor since we still want to modify
- # the contents for project-specific conditions
- with StringIO() as preprocessor_string_writer:
- with redirect_stdout(preprocessor_string_writer):
- # Parse the target file:
- CmdPreprocessor(preprocessor_arguments)
-
- # Check if empty
- string_writer_position = preprocessor_string_writer.tell()
- if string_writer_position == 0:
- return None
-
- # Do we need to sanitize this further?
- if not context_options.should_strip_declspec and not context_options.should_strip_attributes and not context_options.should_strip_at_address and not context_options.should_strip_initializer_trailing_commas and not context_options.should_convert_binary_literals:
- # No sanitation needed, so write the entire file out
- return preprocessor_string_writer.getvalue()
-
- # Sanitize/change the file depending on the context options
- with StringIO() as context_string_writer:
- # Sanitize line-by line for easier parsing
- preprocessor_string_writer.seek(0)
- while True:
- line_to_write = preprocessor_string_writer.readline()
- if not line_to_write:
- break
-
- if context_options.should_strip_declspec:
- line_to_write = strip_declspec(line_to_write)
-
- if context_options.should_strip_attributes:
- line_to_write = strip_attributes(line_to_write)
-
- if context_options.should_strip_at_address:
- line_to_write = strip_at_address(line_to_write)
-
- if context_options.should_convert_binary_literals:
- line_to_write = convert_binary_literals(line_to_write)
-
- context_string_writer.writelines(line_to_write)
-
- # SIngle line cleanup completed
- generated_context = context_string_writer.getvalue()
-
- # Search for multi-line cleanup
- if context_options.should_strip_initializer_trailing_commas or context_options.should_replace_enums_in_initializers:
- if context_options.should_strip_initializer_trailing_commas:
- generated_context = strip_initializer_trailing_commas(generated_context)
-
- if context_options.should_replace_enums_in_initializers:
- generated_context = replace_enums_with_numeric_values(generated_context)
-
- return generated_context
-#endregion
-
-#region Main
def main():
- # Write initial parser
- parser = argparse.ArgumentParser(prog="Decomp Context", description="Wrapper around pcpp that can create a context file which can be used for decompilation", add_help=False)
- parser.add_argument("c_file", nargs="?", help="File from which to create context")
- parser.add_argument("-h", "-help", "--help", dest="help", action="store_true")
- parser.add_argument("-n64", "--n64-sdk", dest="n64_sdk", help="Path to the N64 SDK top level directory", action="store")
- parser.add_argument('-D', dest = 'defines', metavar = 'macro[=val]', nargs = 1, action = 'append', help = 'Predefine name as a macro [with value]')
- parser.add_argument("--strip-declspec", dest="strip_declspec", help="If __declspec() string should be stripped", action="store_true", default=False)
- parser.add_argument("--strip-attributes", dest="strip_attributes", help="If __attribute__(()) string should be stripped", action="store_true", default=False)
- parser.add_argument("--strip-at-address", dest="strip_at_address", help="If AT_ADDRESS or : formatted string should be stripped", action="store_true", default=False)
- parser.add_argument("--strip-initializer_trailing_commas", dest="strip_initializer_trailing_commas", help="If trailing commas in initializers should be stripped", action="store_true", default=False)
- parser.add_argument("--convert-binary-literals", dest="convert_binary_literals", help="If binary literals (0bxxxx) should be converted to decimal", action="store_true", default=False)
- parser.add_argument("--replace-enums-in-initializers", dest="replace_enums_in_initializers", help="If enums should be replaced by its numeric value in initializers", action="store_true", default=False)
- parser.add_argument("--clipboard", dest="copy_to_clipboard", help="If the context should be copied to the clipboard", action="store_true", default=False)
+ parser = argparse.ArgumentParser(
+ description="""Create a context file which can be used for decomp.me"""
+ )
+ parser.add_argument(
+ "c_file",
+ help="""File from which to create context""",
+ )
+ parser.add_argument(
+ "-o",
+ "--output",
+ help="""Output file""",
+ default="ctx.c",
+ )
+ parser.add_argument(
+ "-d",
+ "--depfile",
+ help="""Dependency file""",
+ )
+ args = parser.parse_args()
- # For the output path, we either want to be explicit or relative, but not both
- output_target_group = parser.add_mutually_exclusive_group()
- output_target_group.add_argument("-o", dest="output_path", help="Explicit path to output the context file to", action="store")
- output_target_group.add_argument("-r", "--relative", dest="relative", help="Generate context relative to the source file", action="store_true")
+ deps = []
+ output = import_c_file(args.c_file, deps)
- # When targeting a specific platform we want to only do one thing or another
- platform_target_group = parser.add_mutually_exclusive_group()
- platform_target_group.add_argument("--m2c", dest="m2c", help="Generates an m2c-friendly file", action="store_true")
- platform_target_group.add_argument("--ghidra", dest="ghidra", help="Generates an Ghidra-friendly file", action="store_true")
-
- # Parse the known arguments
- parsed_args = parser.parse_known_args()
- known_args = parsed_args[0]
-
- preprocessor_arguments = ['pcpp']
- if known_args.help:
- # Since this script acts as a wrapper for the main pcpp script
- # we want to manually display the help and pass it through to the
- # pcpp preprocessor to show its full list of arguments
- parser.print_help()
- preprocessor_arguments.append("--help")
- CmdPreprocessor(preprocessor_arguments).tokenize
- return
+ with open(os.path.join(root_dir, args.output), "w", encoding="utf-8") as f:
+ f.write(output)
- # Append in the default include directories
- include_directories: typing.List[str] = []
- include_directories.extend(default_include_directories)
- n64_sdk = get_n64_sdk(known_args.n64_sdk)
- if n64_sdk:
- include_directories.append(n64_sdk)
+ if args.depfile:
+ with open(os.path.join(root_dir, args.depfile), "w", encoding="utf-8") as f:
+ f.write(sanitize_path(args.output) + ":")
+ for dep in deps:
+ path = sanitize_path(dep)
+ f.write(f" \\\n\t{path}")
- for include_directory in include_directories:
- preprocessor_arguments.extend(("-I", include_directory))
-
- # Check if we have any passed in defines
- include_defines = []
- known_defines: typing.List[str] = []
- if known_args.defines:
- argument_defines = [x[0] for x in known_args.defines]
- for define in argument_defines:
- include_defines.append(define)
- known_defines.append(define.split("=")[0])
-
- if not known_args.c_file:
- # If not file is specified it is assumed we want to create a mega context
- # file that is the aggregate of all include files
- include_files : typing.Set[str, str] = set()
- for include_directory in default_include_directories:
- files = [y for x in os.walk(include_directory) for y in glob(os.path.join(x[0], '*.h'))]
- for include_file in files:
- include_files.add(include_file)
-
- # Add each file as an input so that pccpp can parse them into a single output file
- # Sort the files for some consistency
- sorted_files = list(include_files)
- sorted_files.sort()
- for include_file in include_files:
- preprocessor_arguments.append(include_file)
- else:
- # Add the file we want to read
- c_file = known_args.c_file
- preprocessor_arguments.append(known_args.c_file)
-
- # Add in the default defines unless explicitly passed in as arguments
- for default_define, default_define_value in default_defines.items():
- if default_define in known_defines:
- continue
- define_str: str = default_define + "=" + default_define_value
- include_defines.append(define_str)
-
- # Add the defines to the arguments
- for define in include_defines:
- preprocessor_arguments.extend(("-D", define))
-
- # If not targeting Ghidra or m2c we can include more in
- if not known_args.ghidra and not known_args.m2c:
- preprocessor_arguments.append("--passthru-defines")
- else:
- # Don't include the line directives if targeting Ghidra/m2c
- preprocessor_arguments.append("--line-directive")
-
- # For debugging purposes, include unfound includes in output to mark errors
- preprocessor_arguments.append("--passthru-unfound-includes")
-
- # Compress to minimize whitespace
- preprocessor_arguments.append("--compress")
-
- # Add unknown arguments and pass them to pcpp
- pass_through_args = parsed_args[1]
- preprocessor_arguments.extend(pass_through_args)
-
- # Check if we need to do further conversions after the file is preprocessed
- context_options = ContextGenerationOptions()
- context_options.should_strip_declspec = known_args.strip_declspec or known_args.ghidra or known_args.m2c
- context_options.should_strip_at_address = known_args.strip_at_address or known_args.ghidra or known_args.m2c
- context_options.should_strip_attributes = known_args.strip_attributes or known_args.m2c
- context_options.should_convert_binary_literals = known_args.convert_binary_literals or known_args.ghidra
- context_options.should_strip_initializer_trailing_commas = known_args.strip_initializer_trailing_commas or known_args.ghidra
- context_options.should_replace_enums_in_initializers = known_args.replace_enums_in_initializers or known_args.ghidra
-
- # Generate the context
- generated_context = generate_context(preprocessor_arguments, context_options)
-
- # Determine the file to write to
- target_file_name = None
- if known_args.output_path:
- target_file_name = known_args.output_path
- elif known_args.relative:
- target_file_name = f"{c_file}.ctx"
- else:
- target_file_name = os.path.join(os.getcwd(), default_output_filename)
-
- # Write the generated context to the file
- with open(target_file_name, "w", encoding="utf-8", newline="\n") as file_writer:
- file_writer.write(generated_context)
-
- # Check if we also want to copy to the clipboard
- if known_args.copy_to_clipboard:
- pyperclip.copy(generated_context)
-#endregion
if __name__ == "__main__":
main()
diff --git a/tools/download_tool.py b/tools/download_tool.py
new file mode 100644
index 00000000..f4512d01
--- /dev/null
+++ b/tools/download_tool.py
@@ -0,0 +1,125 @@
+#!/usr/bin/env python3
+
+###
+# Downloads various tools from GitHub releases.
+#
+# Usage:
+# python3 tools/download_tool.py wibo build/tools/wibo --tag 1.0.0
+#
+# If changes are made, please submit a PR to
+# https://github.com/encounter/dtk-template
+###
+
+import argparse
+import io
+import os
+import platform
+import shutil
+import stat
+import urllib.request
+import zipfile
+from typing import Callable, Dict
+from pathlib import Path
+
+
+def binutils_url(tag):
+ uname = platform.uname()
+ system = uname.system.lower()
+ arch = uname.machine.lower()
+ if system == "darwin":
+ system = "macos"
+ arch = "universal"
+ elif arch == "amd64":
+ arch = "x86_64"
+
+ repo = "https://github.com/encounter/gc-wii-binutils"
+ return f"{repo}/releases/download/{tag}/{system}-{arch}.zip"
+
+
+def compilers_url(tag: str) -> str:
+ return f"https://files.decomp.dev/compilers_{tag}.zip"
+
+
+def dtk_url(tag: str) -> str:
+ uname = platform.uname()
+ suffix = ""
+ system = uname.system.lower()
+ if system == "darwin":
+ system = "macos"
+ elif system == "windows":
+ suffix = ".exe"
+ arch = uname.machine.lower()
+ if arch == "amd64":
+ arch = "x86_64"
+
+ repo = "https://github.com/encounter/decomp-toolkit"
+ return f"{repo}/releases/download/{tag}/dtk-{system}-{arch}{suffix}"
+
+
+def objdiff_cli_url(tag: str) -> str:
+ uname = platform.uname()
+ suffix = ""
+ system = uname.system.lower()
+ if system == "darwin":
+ system = "macos"
+ elif system == "windows":
+ suffix = ".exe"
+ arch = uname.machine.lower()
+ if arch == "amd64":
+ arch = "x86_64"
+
+ repo = "https://github.com/encounter/objdiff"
+ return f"{repo}/releases/download/{tag}/objdiff-cli-{system}-{arch}{suffix}"
+
+
+def sjiswrap_url(tag: str) -> str:
+ repo = "https://github.com/encounter/sjiswrap"
+ return f"{repo}/releases/download/{tag}/sjiswrap-windows-x86.exe"
+
+
+def wibo_url(tag: str) -> str:
+ repo = "https://github.com/decompals/wibo"
+ return f"{repo}/releases/download/{tag}/wibo"
+
+
+TOOLS: Dict[str, Callable[[str], str]] = {
+ "binutils": binutils_url,
+ "compilers": compilers_url,
+ "dtk": dtk_url,
+ "objdiff-cli": objdiff_cli_url,
+ "sjiswrap": sjiswrap_url,
+ "wibo": wibo_url,
+}
+
+
+def main() -> None:
+ parser = argparse.ArgumentParser()
+ parser.add_argument("tool", help="Tool name")
+ parser.add_argument("output", type=Path, help="output file path")
+ parser.add_argument("--tag", help="GitHub tag", required=True)
+ args = parser.parse_args()
+
+ url = TOOLS[args.tool](args.tag)
+ output = Path(args.output)
+
+ print(f"Downloading {url} to {output}")
+ req = urllib.request.Request(url, headers={"User-Agent": "Mozilla/5.0"})
+ with urllib.request.urlopen(req) as response:
+ if url.endswith(".zip"):
+ data = io.BytesIO(response.read())
+ with zipfile.ZipFile(data) as f:
+ f.extractall(output)
+ # Make all files executable
+ for root, _, files in os.walk(output):
+ for name in files:
+ os.chmod(os.path.join(root, name), 0o755)
+ output.touch(mode=0o755) # Update dir modtime
+ else:
+ with open(output, "wb") as f:
+ shutil.copyfileobj(response, f)
+ st = os.stat(output)
+ os.chmod(output, st.st_mode | stat.S_IEXEC)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/map.py b/tools/map.py
deleted file mode 100644
index e5ba5c4c..00000000
--- a/tools/map.py
+++ /dev/null
@@ -1,128 +0,0 @@
-import re
-from argparse import ArgumentParser
-
-parser = ArgumentParser(description="Fetch symbols from map file")
-parser.add_argument('mapf', type=str, help="Dol Map file path")
-parser.add_argument('relf', type=str, help="Rel Map file path")
-parser.add_argument('yml_p', type=str, help="YML output path")
-args = parser.parse_args()
-
-class entry:
- def __init__(self, address, size, virt, num, symbol, file, source):
- self.address = address
- self.size = size
- self.virt = virt
- self.num = num
- self.symbol = symbol
- self.file = file
- self.source = source
- def yaml(self):
- return f"0x{self.virt}: {self.symbol}"
- def shiftvirt(self, shift):
- cast = int(self.virt, base=16)
- self.virt = hex(cast+shift)[2:].upper()
- def sourcefile(self):
- if self.source != None:
- return self.source
- else:
- if self.file.endswith(".o"):
- return self.file.replace(".o", ".c")
- else:
- return self.file
-allentries = []
-for isrel, filename in enumerate((args.mapf, args.relf)):
- with open(filename, 'r') as f:
- data = f.readlines()
- line = 0
- while True:
- while line < len(data) and not data[line].endswith("section layout\n"):
- line += 1
- if line >= len(data): break #end when the sections are exhausted
-
- sect = data[line].replace(" section layout\n", '')
- line += 4 #skip section header
-
- entries = []
- while data[line] != "\n":
- entryof = data[line].find("(entry of") != -1
- if entryof:
- d = re.sub(r"\(entry of .*?\)", "", data[line])
- else:
- d = data[line]
- d = d.strip().replace("\t", "").split(" ")
- d = [x for x in d if x != ""]
- #if sect == "extab":
- # print(data[line])
- # print(d)
- if entryof:
- source = d[5] if len(d) > 5 else None
- entries.append(entry(d[0], d[1], d[2], None, d[3], d[4], source))
- else:
- source = d[6] if len(d) > 6 else None
- entries.append(entry(d[0], d[1], d[2], d[3], d[4], d[5], source))
- if isrel:
- relshifts = {".bss": 0x8125A7C0, ".text": 0x803702A8, ".rodata": 0x80641260, ".data": 0x8064D500}
- entries[-1].file = "rel/" + entries[-1].file
- if entries[-1].source is not None:
- entries[-1].source = "rel/" + entries[-1].source
- if sect in relshifts:
- entries[-1].shiftvirt(relshifts[sect])
- else:
- entries[-1].file = "src/" + entries[-1].file
- if entries[-1].source is not None:
- entries[-1].source = "src/" + entries[-1].source
-
- line += 1
-
- allentries.append(entries)
- #print(sect, len(entries))
- #if sect == "extab":
- # for i in entries:
- # print(i.yaml())
- # print(i.address, i.size, i.virt, i.num, i.symbol, i.file)
- line += 1
-
-filereg = {"global": {}, }
-duplicates = []
-
-for sect in allentries:
- if len(sect) == 0: continue
- for e in sect:
- if (e.num != "1"
- and e.num is not None
- and "$" not in e.symbol
- and "@" not in e.symbol
- and "..." not in e.symbol):
- newfile = e.sourcefile()
- if e.symbol not in filereg["global"] and e.symbol not in duplicates:
- filereg["global"][e.symbol] = [e]
- elif e.symbol in duplicates: # previously removed from global
- if newfile not in filereg:
- filereg[newfile] = {}
- if e.symbol in filereg[newfile]:
- print("same file collision:", newfile, e.symbol)
- filereg[newfile][e.symbol].append(e)
- else:
- filereg[newfile][e.symbol] = [e]
- else: # encountered a wild duplicate in global
- duplicates.append(e.symbol)
- oldfile = filereg["global"][e.symbol][0].sourcefile()
- if oldfile not in filereg:
- filereg[oldfile] = {}
- if newfile not in filereg:
- filereg[newfile] = {}
- filereg[oldfile][e.symbol] = filereg["global"][e.symbol]
- if oldfile == newfile:
- print("same file collision:", newfile, e.symbol)
- filereg[newfile][e.symbol].append(e)
- else:
- filereg[newfile][e.symbol] = [e]
- filereg["global"].pop(e.symbol)
-
-
-with open(args.yml_p, 'w') as d:
- for file, entries in filereg.items():
- print(f"{file}:", file=d)
- flat_list = [item for sublist in entries.values() for item in sublist]
- for e in sorted(flat_list, key=lambda x: x.virt):
- print(" " + e.yaml(), file=d)
diff --git a/tools/msg_tool.py b/tools/msg_tool.py
deleted file mode 100644
index d7dbf56c..00000000
--- a/tools/msg_tool.py
+++ /dev/null
@@ -1,358 +0,0 @@
-import argparse
-import struct
-import os
-import re
-
-CHAR_MAP = [
- "¡", "¿", "Ä", "À", "Á", "Â", "Ã", "Å", "Ç", "È", "É", "Ê", "Ë", "Ì", "Í", "Î",
- "Ï", "Ð", "Ñ", "Ò", "Ó", "Ô", "Õ", "Ö", "Ø", "Ù", "Ú", "Û", "Ü", "ß", "Þ", "à",
- " ", "!", "\"", "á", "â", "%", "&", "'", "(", ")", "~", "♥", ",", "-", ".", "♪",
- "0", "1", "2", "3", "4", "5", "6", "7", "8", "9", ":", "🌢", "<", "=", ">", "?",
- "@", "A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O",
- "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z", "ã", "💢", "ä", "å", "_",
- "ç", "a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o",
- "p", "q", "r", "s", "t", "u", "v", "w", "x", "y", "z", "è", "é", "ê", "ë", "\u007f",
- "�", "ì", "í", "î", "ï", "•", "ð", "ñ", "ò", "ó", "ô", "õ", "ö", "⁰", "ù", "ú",
- "ー", "û", "ü", "ý", "ÿ", "þ", "Ý", "¦", "§", "ḏ", "ṉ", "‖", "µ", "³", "²", "¹", # note that a̱ and o̱ had to be changed because they're actually two characters in unicode. a̱ -> ḏ | o̱ -> ṉ
- "¯", "¬", "Æ", "æ", "„", "»", "«", "☀", "☁", "☂", "🌬", "☃", "∋", "∈", "/", "∞",
- "○", "🗙", "□", "△", "+", "⚡", "♂", "♀", "🍀", "★", "💀", "😮", "😄", "😣", "😠", "😃",
- "×", "➗", "🔨", "🎀", "✉", "💰", "🐾", "🐶", "🐱", "🐰", "🐦", "🐮", "🐷", "\n", "🐟", "🐞",
- ";", "#", "\u00d2", "\u00d3", "⚷", "\u00d5", "\u00d6", "\u00d7", "\u00d8", "\u00d9", "\u00da", "\u00db", "\u00dc", "Ỳ", "ꟓ", "\u00df",
- "\u00e0", "\u00e1", "\u00e2", "\u00e3", "\u00e4", "\u00e5", "\u00e6", "\u00e7", "\u00e8", "\u00e9", "\u00ea", "\u00eb", "\u00ec", "\u00ed", "\u00ee", "\u00ef",
- "\u00f0", "\u00f1", "\u00f2", "\u00f3", "\u00f4", "\u00f5", "\u00f6", "÷", "\u00f8", "\u00f9", "\u00fa", "\u00fb", "\u00fc", "\u00fd", "\u00fe", "\u00ff"
-]
-
-CONT_SIZES = [
- 2, 2, 2, 3, 2, 5, 2, 2, 5, 5, 5, 5, 5, 2, 4, 4,
- 4, 4, 4, 6, 8, 10, 6, 8, 10, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2,
- 6, 3, 3, 3, 3, 2, 4, 4, 3, 3, 3, 2, 2, 2, 2, 2,
- 2, 2, 2, 6, 3, 3, 4, 3, 2, 2, 6, 2, 2, 3, 3, 3,
- 3, 2, 2, 2, 2, 2, 2, 4, 4, 12, 14
-]
-
-COMMANDS = [
- 'MSGEND',
- 'MSGCONTINUE',
- 'MSGCLEAR',
- 'PAUSE',
- 'BTN',
- 'TEXTCOLOR',
- 'ABLECANCEL',
- 'UNABLECANCEL',
- 'DEMOPLR',
- 'DEMONPC0',
- 'DEMONPC1',
- 'DEMONPC2',
- 'DEMONPCQST',
- 'OPENCHOICE',
- 'SETFORCEMSG',
- 'SETNEXTMSG0',
- 'SETNEXTMSG1',
- 'SETNEXTMSG2',
- 'SETNEXTMSG3',
- 'SETNEXTMSGRND2',
- 'SETNEXTMSGRND3',
- 'SETNEXTMSGRND4',
- 'SETSELSTR2',
- 'SETSELSTR3',
- 'SETSELSTR4',
- 'FORCENEXT',
- 'STR_PLAYERNAME',
- 'STR_TALKNAME',
- 'STR_TAIL',
- 'STR_YEAR',
- 'STR_MONTH',
- 'STR_WEEK',
- 'STR_DAY',
- 'STR_HOUR',
- 'STR_MIN',
- 'STR_SEC',
- 'STR_FREE0',
- 'STR_FREE1',
- 'STR_FREE2',
- 'STR_FREE3',
- 'STR_FREE4',
- 'STR_FREE5',
- 'STR_FREE6',
- 'STR_FREE7',
- 'STR_FREE8',
- 'STR_FREE9',
- 'STR_DETERMINATION',
- 'STR_COUNTRYNAME',
- 'STR_RNDNUM',
- 'STR_ITEM0',
- 'STR_ITEM1',
- 'STR_ITEM2',
- 'STR_ITEM3',
- 'STR_ITEM4',
- 'STR_FREE10',
- 'STR_FREE11',
- 'STR_FREE12',
- 'STR_FREE13',
- 'STR_FREE14',
- 'STR_FREE15',
- 'STR_FREE16',
- 'STR_FREE17',
- 'STR_FREE18',
- 'STR_FREE19',
- 'STR_MAIL',
- 'LUCK_NEUTRAL',
- 'LUCK_RELATIONSHIP',
- 'LUCK_UNPOPULAR',
- 'LUCK_BAD',
- 'LUCK_MONEY',
- 'LUCK_GOODS',
- 'LUCK_6',
- 'LUCK_7',
- 'LUCK_8',
- 'LUCK_9',
- 'MSGCONTENTS_NORMAL',
- 'MSGCONTENTS_ANGRY',
- 'MSGCONTENTS_SAD',
- 'MSGCONTENTS_FUN',
- 'MSGCONTENTS_SLEEPY',
- 'COLORCHARS',
- 'SNDCUT',
- 'LINEOFS',
- 'LINETYPE',
- 'CHARSCALE',
- 'BTN2',
- 'BGMMAKE',
- 'BGMDELETE',
- 'MSGTIMEEND',
- 'SNDTRGSYS',
- 'LINESCALE',
- 'SNDNOPAGE',
- 'VOICETRUE',
- 'VOICEFALSE',
- 'SELNOB',
- 'GIVEOPEN',
- 'GIVECLOSE',
- 'MSGCONTENTS_GLOOMY',
- 'SELNOBCLOSE',
- 'SETNEXTMSGRNDSECTION',
- 'AGBDUMMY0',
- 'AGBDUMMY1',
- 'AGBDUMMY2',
- 'SPACE',
- 'AGBDUMMY3',
- 'AGBDUMMY4',
- 'MALEFEMALECHK',
- 'AGBDUMMY5',
- 'AGBDUMMY6',
- 'AGBDUMMY7',
- 'AGBDUMMY8',
- 'AGBDUMMY9',
- 'AGBDUMMY10',
- 'STR_ISLANDNAME',
- 'SETCURSORJUST',
- 'CLRCUSRORJUST',
- 'CUTARTICLE',
- 'CAPTIALIZE',
- 'STR_AMPM',
- 'SETNEXTMSG4',
- 'SETNEXTMSG5',
- 'SETSELSTR5',
- 'SETSELSTR6'
-]
-
-def decode_control_code(ba: bytearray, idx: int):
- if ba[idx] != 0x7F:
- raise ValueError("First character must be 0x7F")
- cont_type = ba[idx + 1]
- if cont_type >= len(CONT_SIZES):
- raise ValueError(f"Invalid control code id {cont_type:02X}")
- cont_size = CONT_SIZES[cont_type]
- if len(ba) < idx + cont_size:
- raise ValueError(f"Bytearray is not large enough for control code {cont_type:02X}")
-
- cmd = COMMANDS[cont_type]
- if cmd is not None:
- if cont_size > 2:
- hex_values = ' '.join('{:02X}'.format(b) for b in ba[(idx + 2):(idx + CONT_SIZES[cont_type])])
- return f"<<{cmd} [{hex_values}]>>", cont_size
- else:
- return f"<<{cmd}>>", cont_size
- else:
- hex_values = ' '.join('{:02X}'.format(b) for b in ba[(idx + 2):(idx + CONT_SIZES[cont_type])])
- return f"<>", cont_size
-
-def decode_entry(ba: bytearray, start: int, end: int, idx: int):
- parts = [f'[[ENTRY {idx} START]]\n'] # Use a list to collect string parts
- i = start
- while i < end:
- char = ba[i]
- if char == 0x7F:
- cont_str, cont_size = decode_control_code(ba, i)
- parts.append(cont_str)
- i += cont_size
- else:
- parts.append(CHAR_MAP[ba[i]])
- i += 1
- parts.append('\n\n')
- return ''.join(parts) # Join the parts into a final string at the end
-
-def decode_file(data_path: str, table_path: str, out_path: str):
- idx = 0
- last_end = 0
- output_buffer = []
-
- with open(data_path, 'rb') as df, open(table_path, 'rb') as tf, open(out_path, 'w') as of:
- while True:
- bytes = tf.read(4)
- if not bytes:
- break
- end = struct.unpack('>I', bytes)[0]
- if end != 0:
- size = end - last_end
- last_end = end
- data = bytearray(df.read(size))
- decoded_str = decode_entry(data, 0, size, idx)
- output_buffer.append(decoded_str)
-
- idx += 1
- # Write buffer content to file to reduce write calls
- if len(output_buffer) >= 8192:
- of.write(''.join(output_buffer))
- output_buffer.clear()
-
- # Write remaining buffer content to file
- if output_buffer:
- of.write(''.join(output_buffer))
-
-# Function to convert a hex string to a list of integers
-def convert_hex_string_to_ints(hex_str):
- # Remove spaces and convert to upper case
- clean_str = hex_str.replace(" ", "").upper()
- # Convert every two characters to an integer
- return [int(clean_str[i:i+2], 16) for i in range(0, len(clean_str), 2)]
-
-# pre-compiled regex patterns
-cmd_pattern = re.compile(r"^([\w\s]+)")
-arg_pattern = re.compile(r"\[([0-9A-Fa-f\s]*)\]")
-def encode_control_code(cont_code_str: str, start_idx: int = 0, end_idx: int = None):
- sliced_str = cont_code_str[start_idx:end_idx] # bad but necessary in python
- cmd_match = cmd_pattern.match(sliced_str)
- if not cmd_match:
- raise ValueError("Missing command in control code!")
-
- cmd = cmd_match.group(1).strip()
- args = arg_pattern.findall(sliced_str)
-
- cmd_idx = COMMANDS.index(cmd)
- arg_list = [byte for hex_str in args for byte in convert_hex_string_to_ints(hex_str)]
- return cmd_idx, arg_list
-
-def encode_entry(entry: str):
- ba = bytearray()
- i = 0
- max = len(entry)
- while i < max:
- char = entry[i]
- if char == '<' and i < max - 1 and entry[i + 1] == '<':
- start = i + 2
- end = start
- found = False
- while end < max:
- if entry[end] == '>' and end < max - 1 and entry[end + 1] == '>':
- found = True
- break
- end += 1
- if found:
- cmd_idx, arg_list = encode_control_code(entry, start, end)
- cmd_size = CONT_SIZES[cmd_idx]
- if len(arg_list) != cmd_size - 2:
- raise ValueError(f"Expected args of length {cmd_size - 2} for command {COMMANDS[cmd_idx]}, but got {len(arg_list)}")
- ba.append(0x7F)
- ba.append(cmd_idx)
- ba.extend(arg_list)
- i = end + 2
- continue
-
- ba.append(CHAR_MAP.index(char))
- i += 1
- return ba
-
-def encode_file(file_path: str, data_path: str, table_path: str, data_size: int=-1, table_size: int=-1):
- entries = {}
- current_entry = None
- recording = False
-
- with open(file_path, 'r') as tf, open(data_path, 'wb') as df, open(table_path, 'wb') as tabf:
- idx = -1
- for line in tf:
- l = line.strip()
-
- # Check for entry start
- if l.startswith("[[ENTRY") and l.endswith("START]]"):
- entry_index = l.split()[1] # Assuming the format [[ENTRY X START]]
- current_entry = entry_index
- entries[current_entry] = []
- recording = True
- continue
-
- # Check for entry end
- if line.find("<>") != -1 or line.find("<>"):
- entries[current_entry].append(line)
- recording = False
- continue
-
- # Record lines if within an entry and not empty
- if recording and line:
- entries[current_entry].append(line)
-
- #end_ofs = 0
- for entry in entries:
- entries[entry] = encode_entry(''.join(entries[entry]).rstrip())
- df.write(entries[entry])
- tabf.write(struct.pack('>I', df.tell()))
-
- if data_size > 0:
- data_remain = data_size - df.tell()
- if data_remain > 0:
- df.write(b'\x00' * data_remain)
-
- if table_size > 0:
- table_remain = table_size - tabf.tell()
- if table_remain > 0:
- tabf.write(b'\x00' * table_remain)
-
- return entries
-
-def main():
- parser = argparse.ArgumentParser(description='Pack or dump Animal Crossing text files.')
- parser.add_argument('-m', help="The mode to run. Valid arguments are un[pack].")
- parser.add_argument('path', help='The path of the source file.')
- parser.add_argument('out', help='The path of the destination file.')
- parser.add_argument('--data_size', help='Optional hexadecimal padded size for the data file.', required=False)
- parser.add_argument('--table_size', help='Optional hexadecimal padded size for the table file.', required=False)
-
- args = parser.parse_args()
- if args.m.lower() == "pack":
- # Create *_table.bin path
- dir_name, file_name = os.path.split(args.out)
- name, ext = os.path.splitext(file_name)
- new_file_name = f"{name}_table{ext}"
-
- # encode
- encode_file(args.path, args.out, os.path.join(dir_name, new_file_name), int(args.data_size, 16) if args.data_size != None else -1, int(args.table_size, 16) if args.table_size != None else -1)
- elif args.m.lower() == "unpack":
- # Search for *_table.bin
- dir_name, file_name = os.path.split(args.path)
- name, ext = os.path.splitext(file_name)
- new_file_name = f"{name}_table{ext}"
- table_path = os.path.join(dir_name, new_file_name)
-
- if not os.path.exists(table_path):
- raise Exception(f'Couldn\'t find a valid table path. Please ensure {new_file_name} exists!')
-
- # decode
- decode_file(args.path, table_path, args.out)
- else:
- raise Exception(f'Invalid mode! Please use -m un[pack]')
-
-if __name__ == '__main__':
- main()
diff --git a/tools/ninja_syntax.py b/tools/ninja_syntax.py
new file mode 100644
index 00000000..fdda9717
--- /dev/null
+++ b/tools/ninja_syntax.py
@@ -0,0 +1,249 @@
+# Copyright 2011 Google Inc. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+"""Python module for generating .ninja files.
+
+Note that this is emphatically not a required piece of Ninja; it's
+just a helpful utility for build-file-generation systems that already
+use Python.
+"""
+
+import re
+import textwrap
+import os
+from io import StringIO
+from pathlib import Path
+from typing import Dict, Iterable, List, Match, Optional, Tuple, Union
+
+NinjaPath = Union[str, Path]
+NinjaPaths = Iterable[Optional[NinjaPath]]
+NinjaPathOrPaths = Union[NinjaPath, NinjaPaths]
+
+
+def escape_path(word: str) -> str:
+ return word.replace("$ ", "$$ ").replace(" ", "$ ").replace(":", "$:")
+
+
+class Writer(object):
+ def __init__(self, output: StringIO, width: int = 78) -> None:
+ self.output = output
+ self.width = width
+
+ def newline(self) -> None:
+ self.output.write("\n")
+
+ def comment(self, text: str) -> None:
+ for line in textwrap.wrap(
+ text, self.width - 2, break_long_words=False, break_on_hyphens=False
+ ):
+ self.output.write("# " + line + "\n")
+
+ def variable(
+ self,
+ key: str,
+ value: Optional[NinjaPathOrPaths],
+ indent: int = 0,
+ ) -> None:
+ value = " ".join(serialize_paths(value))
+ self._line("%s = %s" % (key, value), indent)
+
+ def pool(self, name: str, depth: int) -> None:
+ self._line("pool %s" % name)
+ self.variable("depth", str(depth), indent=1)
+
+ def rule(
+ self,
+ name: str,
+ command: str,
+ description: Optional[str] = None,
+ depfile: Optional[NinjaPath] = None,
+ generator: bool = False,
+ pool: Optional[str] = None,
+ restat: bool = False,
+ rspfile: Optional[NinjaPath] = None,
+ rspfile_content: Optional[NinjaPath] = None,
+ deps: Optional[NinjaPathOrPaths] = None,
+ ) -> None:
+ self._line("rule %s" % name)
+ self.variable("command", command, indent=1)
+ if description:
+ self.variable("description", description, indent=1)
+ if depfile:
+ self.variable("depfile", depfile, indent=1)
+ if generator:
+ self.variable("generator", "1", indent=1)
+ if pool:
+ self.variable("pool", pool, indent=1)
+ if restat:
+ self.variable("restat", "1", indent=1)
+ if rspfile:
+ self.variable("rspfile", rspfile, indent=1)
+ if rspfile_content:
+ self.variable("rspfile_content", rspfile_content, indent=1)
+ if deps:
+ self.variable("deps", deps, indent=1)
+
+ def build(
+ self,
+ outputs: NinjaPathOrPaths,
+ rule: str,
+ inputs: Optional[NinjaPathOrPaths] = None,
+ implicit: Optional[NinjaPathOrPaths] = None,
+ order_only: Optional[NinjaPathOrPaths] = None,
+ variables: Optional[
+ Union[
+ List[Tuple[str, Optional[NinjaPathOrPaths]]],
+ Dict[str, Optional[NinjaPathOrPaths]],
+ ]
+ ] = None,
+ implicit_outputs: Optional[NinjaPathOrPaths] = None,
+ pool: Optional[str] = None,
+ dyndep: Optional[NinjaPath] = None,
+ ) -> List[str]:
+ str_outputs = serialize_paths(outputs)
+ out_outputs = [escape_path(x) for x in str_outputs]
+ all_inputs = [escape_path(x) for x in serialize_paths(inputs)]
+
+ if implicit:
+ implicit = [escape_path(x) for x in serialize_paths(implicit)]
+ all_inputs.append("|")
+ all_inputs.extend(map(str, implicit))
+ if order_only:
+ order_only = [escape_path(x) for x in serialize_paths(order_only)]
+ all_inputs.append("||")
+ all_inputs.extend(map(str, order_only))
+ if implicit_outputs:
+ implicit_outputs = [
+ escape_path(x) for x in serialize_paths(implicit_outputs)
+ ]
+ out_outputs.append("|")
+ out_outputs.extend(map(str, implicit_outputs))
+
+ self._line(
+ "build %s: %s" % (" ".join(out_outputs), " ".join([rule] + all_inputs))
+ )
+ if pool is not None:
+ self._line(" pool = %s" % pool)
+ if dyndep is not None:
+ self._line(" dyndep = %s" % serialize_path(dyndep))
+
+ if variables:
+ if isinstance(variables, dict):
+ iterator = iter(variables.items())
+ else:
+ iterator = iter(variables)
+
+ for key, val in iterator:
+ self.variable(key, val, indent=1)
+
+ return str_outputs
+
+ def include(self, path: str) -> None:
+ self._line("include %s" % path)
+
+ def subninja(self, path: str) -> None:
+ self._line("subninja %s" % path)
+
+ def default(self, paths: NinjaPathOrPaths) -> None:
+ self._line("default %s" % " ".join(serialize_paths(paths)))
+
+ def _count_dollars_before_index(self, s: str, i: int) -> int:
+ """Returns the number of '$' characters right in front of s[i]."""
+ dollar_count = 0
+ dollar_index = i - 1
+ while dollar_index > 0 and s[dollar_index] == "$":
+ dollar_count += 1
+ dollar_index -= 1
+ return dollar_count
+
+ def _line(self, text: str, indent: int = 0) -> None:
+ """Write 'text' word-wrapped at self.width characters."""
+ leading_space = " " * indent
+ while len(leading_space) + len(text) > self.width:
+ # The text is too wide; wrap if possible.
+
+ # Find the rightmost space that would obey our width constraint and
+ # that's not an escaped space.
+ available_space = self.width - len(leading_space) - len(" $")
+ space = available_space
+ while True:
+ space = text.rfind(" ", 0, space)
+ if space < 0 or self._count_dollars_before_index(text, space) % 2 == 0:
+ break
+
+ if space < 0:
+ # No such space; just use the first unescaped space we can find.
+ space = available_space - 1
+ while True:
+ space = text.find(" ", space + 1)
+ if (
+ space < 0
+ or self._count_dollars_before_index(text, space) % 2 == 0
+ ):
+ break
+ if space < 0:
+ # Give up on breaking.
+ break
+
+ self.output.write(leading_space + text[0:space] + " $\n")
+ text = text[space + 1 :]
+
+ # Subsequent lines are continuations, so indent them.
+ leading_space = " " * (indent + 2)
+
+ self.output.write(leading_space + text + "\n")
+
+ def close(self) -> None:
+ self.output.close()
+
+
+def serialize_path(input: Optional[NinjaPath]) -> str:
+ if not input:
+ return ""
+ if isinstance(input, Path):
+ return str(input).replace("/", os.sep)
+ else:
+ return str(input)
+
+
+def serialize_paths(input: Optional[NinjaPathOrPaths]) -> List[str]:
+ if isinstance(input, str) or isinstance(input, Path):
+ return [serialize_path(input)] if input else []
+ elif input is not None:
+ return [serialize_path(path) for path in input if path]
+ return []
+
+
+def escape(string: str) -> str:
+ """Escape a string such that it can be embedded into a Ninja file without
+ further interpretation."""
+ assert "\n" not in string, "Ninja syntax does not allow newlines"
+ # We only have one special metacharacter: '$'.
+ return string.replace("$", "$$")
+
+
+def expand(string: str, vars: Dict[str, str], local_vars: Dict[str, str] = {}) -> str:
+ """Expand a string containing $vars as Ninja would.
+
+ Note: doesn't handle the full Ninja variable syntax, but it's enough
+ to make configure.py's use of it work.
+ """
+
+ def exp(m: Match[str]) -> str:
+ var = m.group(1)
+ if var == "$":
+ return "$"
+ return local_vars.get(var, vars.get(var, ""))
+
+ return re.sub(r"\$(\$|\w*)", exp, string)
diff --git a/tools/orthrus b/tools/orthrus
deleted file mode 100755
index 8c559c25..00000000
Binary files a/tools/orthrus and /dev/null differ
diff --git a/tools/orthrus.exe b/tools/orthrus.exe
deleted file mode 100644
index dde42933..00000000
Binary files a/tools/orthrus.exe and /dev/null differ
diff --git a/tools/ppcdis b/tools/ppcdis
deleted file mode 160000
index 783e7ae4..00000000
--- a/tools/ppcdis
+++ /dev/null
@@ -1 +0,0 @@
-Subproject commit 783e7ae46ac62077192ff01f29f0a0b3586989d5
diff --git a/tools/prepareasset.py b/tools/prepareasset.py
deleted file mode 100644
index bff41f49..00000000
--- a/tools/prepareasset.py
+++ /dev/null
@@ -1,71 +0,0 @@
-# TODO: this program is slightly messed up. It can output the wrong end address for symbols. Will fix later. Use with caution until then.
-
-import argparse
-from ruamel.yaml import YAML, comments
-
-class HexInt(int):
- def __new__(cls, *args, **kwargs):
- return super().__new__(cls, *args, **kwargs)
-
-def hexint_presenter(dumper, data):
- return dumper.represent_scalar('tag:yaml.org,2002:int', hex(data))
-
-def find_symbol_and_append(input_string, config_file_path, src_path="config/symbols.yml", dest_path="config/assets.yml"):
- yaml = YAML()
- yaml.representer.add_representer(HexInt, hexint_presenter)
-
- # Load the symbols file
- with open(src_path, 'r') as symbols_file:
- symbols_data = yaml.load(symbols_file)
-
- # Search for the input string and store its address along with the next address
- address_pair = []
- found_symbol = False
- for section, data in symbols_data.items():
- for address, name in data.items():
- if found_symbol:
- address_pair.append(HexInt(address))
- break
- if name == input_string:
- found_symbol = True
- address_pair.append(HexInt(address))
- if found_symbol:
- break
-
- # If the input string was found, append it to the assets file
- if address_pair:
- # Make the pair yaml friendly
- address_pair = comments.CommentedSeq(address_pair)
- address_pair.fa.set_flow_style()
-
- # Load the assets file
- with open(dest_path, 'r') as assets_file:
- assets_data = yaml.load(assets_file)
-
- # If the file is empty, initialize a new dict
- if assets_data is None:
- assets_data = {}
-
- # Create entry or update existing entry under the config file path
- if config_file_path not in assets_data:
- assets_data[config_file_path] = {}
-
- if input_string in assets_data[config_file_path]:
- assets_data[config_file_path][input_string]['addrs'] = address_pair
- else:
- assets_data[config_file_path][input_string] = {'addrs': address_pair}
-
- # Write back to the assets file
- with open(dest_path, 'w') as assets_file:
- yaml.dump(assets_data, assets_file)
-
-def main():
- parser = argparse.ArgumentParser(description='Search for a symbol in a YAML file and append to another YAML file.')
- parser.add_argument('input_string', help='The symbol name to search for.')
- parser.add_argument('config_file_path', help='The path of the configuration file.')
-
- args = parser.parse_args()
- find_symbol_and_append(args.input_string, args.config_file_path)
-
-if __name__ == '__main__':
- main()
diff --git a/tools/project.py b/tools/project.py
new file mode 100644
index 00000000..8ed46b86
--- /dev/null
+++ b/tools/project.py
@@ -0,0 +1,1800 @@
+###
+# decomp-toolkit project generator
+# Generates build.ninja and objdiff.json.
+#
+# This generator is intentionally project-agnostic
+# and shared between multiple projects. Any configuration
+# specific to a project should be added to `configure.py`.
+#
+# If changes are made, please submit a PR to
+# https://github.com/encounter/dtk-template
+###
+
+import io
+import json
+import math
+import os
+import platform
+import sys
+from pathlib import Path
+from typing import IO, Any, Dict, Iterable, List, Optional, Set, Tuple, Union, cast
+
+from . import ninja_syntax
+from .ninja_syntax import serialize_path
+
+if sys.platform == "cygwin":
+ sys.exit(
+ f"Cygwin/MSYS2 is not supported."
+ f"\nPlease use native Windows Python instead."
+ f"\n(Current path: {sys.executable})"
+ )
+
+Library = Dict[str, Any]
+
+
+class Object:
+ def __init__(self, completed: bool, name: str, **options: Any) -> None:
+ self.name = name
+ self.completed = completed
+ self.options: Dict[str, Any] = {
+ "add_to_all": None,
+ "asflags": None,
+ "asm_dir": None,
+ "cflags": None,
+ "extra_asflags": [],
+ "extra_cflags": [],
+ "extra_clang_flags": [],
+ "host": None,
+ "lib": None,
+ "mw_version": None,
+ "progress_category": None,
+ "shift_jis": None,
+ "source": name,
+ "src_dir": None,
+ }
+ self.options.update(options)
+
+ # Internal
+ self.src_path: Optional[Path] = None
+ self.asm_path: Optional[Path] = None
+ self.src_obj_path: Optional[Path] = None
+ self.asm_obj_path: Optional[Path] = None
+ self.host_obj_path: Optional[Path] = None
+ self.ctx_path: Optional[Path] = None
+
+ def resolve(self, config: "ProjectConfig", lib: Library) -> "Object":
+ # Use object options, then library options
+ obj = Object(self.completed, self.name, **lib)
+ for key, value in self.options.items():
+ if value is not None or key not in obj.options:
+ obj.options[key] = value
+
+ # Use default options from config
+ def set_default(key: str, value: Any) -> None:
+ if obj.options[key] is None:
+ obj.options[key] = value
+
+ set_default("add_to_all", True)
+ set_default("asflags", config.asflags)
+ set_default("asm_dir", config.asm_dir)
+ set_default("host", False)
+ set_default("mw_version", config.linker_version)
+ set_default("shift_jis", config.shift_jis)
+ set_default("src_dir", config.src_dir)
+
+ # Validate progress categories
+ def check_category(category: str):
+ if not any(category == c.id for c in config.progress_categories):
+ sys.exit(
+ f"Progress category '{category}' missing from config.progress_categories"
+ )
+
+ progress_category = obj.options["progress_category"]
+ if isinstance(progress_category, list):
+ for category in progress_category:
+ check_category(category)
+ elif progress_category is not None:
+ check_category(progress_category)
+
+ # Resolve paths
+ build_dir = config.out_path()
+ obj.src_path = Path(obj.options["src_dir"]) / obj.options["source"]
+ if obj.options["asm_dir"] is not None:
+ obj.asm_path = (
+ Path(obj.options["asm_dir"]) / obj.options["source"]
+ ).with_suffix(".s")
+ base_name = Path(self.name).with_suffix("")
+ obj.src_obj_path = build_dir / "src" / f"{base_name}.o"
+ obj.asm_obj_path = build_dir / "mod" / f"{base_name}.o"
+ obj.host_obj_path = build_dir / "host" / f"{base_name}.o"
+ obj.ctx_path = build_dir / "src" / f"{base_name}.ctx"
+ return obj
+
+
+class ProgressCategory:
+ def __init__(self, id: str, name: str) -> None:
+ self.id = id
+ self.name = name
+
+
+class ProjectConfig:
+ def __init__(self) -> None:
+ # Paths
+ self.build_dir: Path = Path("build") # Output build files
+ self.src_dir: Path = Path("src") # C/C++/asm source files
+ self.tools_dir: Path = Path("tools") # Python scripts
+ self.asm_dir: Optional[Path] = Path(
+ "asm"
+ ) # Override incomplete objects (for modding)
+
+ # Tooling
+ self.binutils_tag: Optional[str] = None # Git tag
+ self.binutils_path: Optional[Path] = None # If None, download
+ self.dtk_tag: Optional[str] = None # Git tag
+ self.dtk_path: Optional[Path] = None # If None, download
+ self.compilers_tag: Optional[str] = None # 1
+ self.compilers_path: Optional[Path] = None # If None, download
+ self.wibo_tag: Optional[str] = None # Git tag
+ self.wrapper: Optional[Path] = None # If None, download wibo on Linux
+ self.sjiswrap_tag: Optional[str] = None # Git tag
+ self.sjiswrap_path: Optional[Path] = None # If None, download
+ self.objdiff_tag: Optional[str] = None # Git tag
+ self.objdiff_path: Optional[Path] = None # If None, download
+
+ # Project config
+ self.non_matching: bool = False
+ self.build_rels: bool = True # Build REL files
+ self.check_sha_path: Optional[Path] = None # Path to version.sha1
+ self.config_path: Optional[Path] = None # Path to config.yml
+ self.generate_map: bool = False # Generate map file(s)
+ self.asflags: Optional[List[str]] = None # Assembler flags
+ self.ldflags: Optional[List[str]] = None # Linker flags
+ self.libs: Optional[List[Library]] = None # List of libraries
+ self.linker_version: Optional[str] = None # mwld version
+ self.version: Optional[str] = None # Version name
+ self.warn_missing_config: bool = False # Warn on missing unit configuration
+ self.warn_missing_source: bool = False # Warn on missing source file
+ self.rel_strip_partial: bool = True # Generate PLFs with -strip_partial
+ self.rel_empty_file: Optional[str] = (
+ None # Object name for generating empty RELs
+ )
+ self.shift_jis = (
+ True # Convert source files from UTF-8 to Shift JIS automatically
+ )
+ self.reconfig_deps: Optional[List[Path]] = (
+ None # Additional re-configuration dependency files
+ )
+ self.custom_build_rules: Optional[List[Dict[str, Any]]] = (
+ None # Custom ninja build rules
+ )
+ self.custom_build_steps: Optional[Dict[str, List[Dict[str, Any]]]] = (
+ None # Custom build steps, types are ["pre-compile", "post-compile", "post-link", "post-build"]
+ )
+ self.generate_compile_commands: bool = (
+ True # Generate compile_commands.json for clangd
+ )
+ self.extra_clang_flags: List[str] = [] # Extra flags for clangd
+
+ # Progress output, progress.json and report.json config
+ self.progress = True # Enable report.json generation and CLI progress output
+ self.progress_all: bool = True # Include combined "all" category
+ self.progress_modules: bool = True # Include combined "modules" category
+ self.progress_each_module: bool = (
+ False # Include individual modules, disable for large numbers of modules
+ )
+ self.progress_categories: List[ProgressCategory] = [] # Additional categories
+ self.print_progress_categories: Union[bool, List[str]] = (
+ True # Print additional progress categories in the CLI progress output
+ )
+
+ # Progress fancy printing
+ self.progress_use_fancy: bool = False
+ self.progress_code_fancy_frac: int = 0
+ self.progress_code_fancy_item: str = ""
+ self.progress_data_fancy_frac: int = 0
+ self.progress_data_fancy_item: str = ""
+
+ def validate(self) -> None:
+ required_attrs = [
+ "build_dir",
+ "src_dir",
+ "tools_dir",
+ "check_sha_path",
+ "config_path",
+ "ldflags",
+ "linker_version",
+ "libs",
+ "version",
+ ]
+ for attr in required_attrs:
+ if getattr(self, attr) is None:
+ sys.exit(f"ProjectConfig.{attr} missing")
+
+ # Creates a map of object names to Object instances
+ # Options are fully resolved from the library and object
+ def objects(self) -> Dict[str, Object]:
+ out = {}
+ for lib in self.libs or {}:
+ objects: List[Object] = lib["objects"]
+ for obj in objects:
+ if obj.name in out:
+ sys.exit(f"Duplicate object name {obj.name}")
+ out[obj.name] = obj.resolve(self, lib)
+ return out
+
+ # Gets the output path for build-related files.
+ def out_path(self) -> Path:
+ return self.build_dir / str(self.version)
+
+ # Gets the path to the compilers directory.
+ # Exits the program if neither `compilers_path` nor `compilers_tag` is provided.
+ def compilers(self) -> Path:
+ if self.compilers_path:
+ return self.compilers_path
+ elif self.compilers_tag:
+ return self.build_dir / "compilers"
+ else:
+ sys.exit("ProjectConfig.compilers_tag missing")
+
+ # Gets the wrapper to use for compiler commands, if set.
+ def compiler_wrapper(self) -> Optional[Path]:
+ wrapper = self.wrapper
+
+ if self.use_wibo():
+ wrapper = self.build_dir / "tools" / "wibo"
+ if not is_windows() and wrapper is None:
+ wrapper = Path("wine")
+
+ return wrapper
+
+ # Determines whether or not to use wibo as the compiler wrapper.
+ def use_wibo(self) -> bool:
+ return (
+ self.wibo_tag is not None
+ and sys.platform == "linux"
+ and platform.machine() in ("i386", "x86_64")
+ and self.wrapper is None
+ )
+
+
+def is_windows() -> bool:
+ return os.name == "nt"
+
+
+# On Windows, we need this to use && in commands
+CHAIN = "cmd /c " if is_windows() else ""
+# Native executable extension
+EXE = ".exe" if is_windows() else ""
+
+
+def file_is_asm(path: Path) -> bool:
+ return path.suffix.lower() == ".s"
+
+
+def file_is_c(path: Path) -> bool:
+ return path.suffix.lower() == ".c"
+
+
+def file_is_cpp(path: Path) -> bool:
+ return path.suffix.lower() in (".cc", ".cp", ".cpp", ".cxx")
+
+
+def file_is_c_cpp(path: Path) -> bool:
+ return file_is_c(path) or file_is_cpp(path)
+
+
+def make_flags_str(flags: Optional[List[str]]) -> str:
+ if flags is None:
+ return ""
+ return " ".join(flags)
+
+
+# Load decomp-toolkit generated config.json
+def load_build_config(
+ config: ProjectConfig, build_config_path: Path
+) -> Optional[Dict[str, Any]]:
+ if not build_config_path.is_file():
+ return None
+
+ def versiontuple(v: str) -> Tuple[int, ...]:
+ return tuple(map(int, (v.split("."))))
+
+ f = open(build_config_path, "r", encoding="utf-8")
+ build_config: Dict[str, Any] = json.load(f)
+ config_version = build_config.get("version")
+ if config_version is None:
+ print("Invalid config.json, regenerating...")
+ f.close()
+ os.remove(build_config_path)
+ return None
+
+ dtk_version = str(config.dtk_tag)[1:] # Strip v
+ if versiontuple(config_version) < versiontuple(dtk_version):
+ print("Outdated config.json, regenerating...")
+ f.close()
+ os.remove(build_config_path)
+ return None
+
+ f.close()
+ return build_config
+
+
+# Generate build.ninja, objdiff.json and compile_commands.json
+def generate_build(config: ProjectConfig) -> None:
+ config.validate()
+ objects = config.objects()
+ build_config = load_build_config(config, config.out_path() / "config.json")
+ generate_build_ninja(config, objects, build_config)
+ generate_objdiff_config(config, objects, build_config)
+ generate_compile_commands(config, objects, build_config)
+
+
+# Generate build.ninja
+def generate_build_ninja(
+ config: ProjectConfig,
+ objects: Dict[str, Object],
+ build_config: Optional[Dict[str, Any]],
+) -> None:
+ out = io.StringIO()
+ n = ninja_syntax.Writer(out)
+ n.variable("ninja_required_version", "1.3")
+ n.newline()
+
+ configure_script = Path(os.path.relpath(os.path.abspath(sys.argv[0])))
+ python_lib = Path(os.path.relpath(__file__))
+ python_lib_dir = python_lib.parent
+ n.comment("The arguments passed to configure.py, for rerunning it.")
+ n.variable("configure_args", sys.argv[1:])
+ n.variable("python", f'"{sys.executable}"')
+ n.newline()
+
+ ###
+ # Variables
+ ###
+ n.comment("Variables")
+ n.variable("ldflags", make_flags_str(config.ldflags))
+ if config.linker_version is None:
+ sys.exit("ProjectConfig.linker_version missing")
+ n.variable("mw_version", Path(config.linker_version))
+ n.newline()
+
+ ###
+ # Tooling
+ ###
+ n.comment("Tooling")
+
+ build_path = config.out_path()
+ progress_path = build_path / "progress.json"
+ report_path = build_path / "report.json"
+ build_tools_path = config.build_dir / "tools"
+ download_tool = config.tools_dir / "download_tool.py"
+ n.rule(
+ name="download_tool",
+ command=f"$python {download_tool} $tool $out --tag $tag",
+ description="TOOL $out",
+ )
+
+ decompctx = config.tools_dir / "decompctx.py"
+ n.rule(
+ name="decompctx",
+ command=f"$python {decompctx} $in -o $out -d $out.d",
+ description="CTX $in",
+ depfile="$out.d",
+ deps="gcc",
+ )
+
+ cargo_rule_written = False
+
+ def write_cargo_rule():
+ nonlocal cargo_rule_written
+ if not cargo_rule_written:
+ n.pool("cargo", 1)
+ n.rule(
+ name="cargo",
+ command="cargo build --release --manifest-path $in --bin $bin --target-dir $target",
+ description="CARGO $bin",
+ pool="cargo",
+ depfile=Path("$target") / "release" / "$bin.d",
+ deps="gcc",
+ )
+ cargo_rule_written = True
+
+ if config.dtk_path is not None and config.dtk_path.is_file():
+ dtk = config.dtk_path
+ elif config.dtk_path is not None:
+ dtk = build_tools_path / "release" / f"dtk{EXE}"
+ write_cargo_rule()
+ n.build(
+ outputs=dtk,
+ rule="cargo",
+ inputs=config.dtk_path / "Cargo.toml",
+ implicit=config.dtk_path / "Cargo.lock",
+ variables={
+ "bin": "dtk",
+ "target": build_tools_path,
+ },
+ )
+ elif config.dtk_tag:
+ dtk = build_tools_path / f"dtk{EXE}"
+ n.build(
+ outputs=dtk,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "dtk",
+ "tag": config.dtk_tag,
+ },
+ )
+ else:
+ sys.exit("ProjectConfig.dtk_tag missing")
+
+ if config.objdiff_path is not None and config.objdiff_path.is_file():
+ objdiff = config.objdiff_path
+ elif config.objdiff_path is not None:
+ objdiff = build_tools_path / "release" / f"objdiff-cli{EXE}"
+ write_cargo_rule()
+ n.build(
+ outputs=objdiff,
+ rule="cargo",
+ inputs=config.objdiff_path / "Cargo.toml",
+ implicit=config.objdiff_path / "Cargo.lock",
+ variables={
+ "bin": "objdiff-cli",
+ "target": build_tools_path,
+ },
+ )
+ elif config.objdiff_tag:
+ objdiff = build_tools_path / f"objdiff-cli{EXE}"
+ n.build(
+ outputs=objdiff,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "objdiff-cli",
+ "tag": config.objdiff_tag,
+ },
+ )
+ else:
+ sys.exit("ProjectConfig.objdiff_tag missing")
+
+ if config.sjiswrap_path:
+ sjiswrap = config.sjiswrap_path
+ elif config.sjiswrap_tag:
+ sjiswrap = build_tools_path / "sjiswrap.exe"
+ n.build(
+ outputs=sjiswrap,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "sjiswrap",
+ "tag": config.sjiswrap_tag,
+ },
+ )
+ else:
+ sys.exit("ProjectConfig.sjiswrap_tag missing")
+
+ wrapper = config.compiler_wrapper()
+ # Only add an implicit dependency on wibo if we download it
+ wrapper_implicit: Optional[Path] = None
+ if wrapper is not None and config.use_wibo():
+ wrapper_implicit = wrapper
+ n.build(
+ outputs=wrapper,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "wibo",
+ "tag": config.wibo_tag,
+ },
+ )
+ wrapper_cmd = f"{wrapper} " if wrapper else ""
+
+ compilers = config.compilers()
+ compilers_implicit: Optional[Path] = None
+ if config.compilers_path is None and config.compilers_tag is not None:
+ compilers_implicit = compilers
+ n.build(
+ outputs=compilers,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "compilers",
+ "tag": config.compilers_tag,
+ },
+ )
+
+ binutils_implicit = None
+ if config.binutils_path:
+ binutils = config.binutils_path
+ elif config.binutils_tag:
+ binutils = config.build_dir / "binutils"
+ binutils_implicit = binutils
+ n.build(
+ outputs=binutils,
+ rule="download_tool",
+ implicit=download_tool,
+ variables={
+ "tool": "binutils",
+ "tag": config.binutils_tag,
+ },
+ )
+ else:
+ sys.exit("ProjectConfig.binutils_tag missing")
+
+ n.newline()
+
+ ###
+ # Helper rule for downloading all tools
+ ###
+ n.comment("Download all tools")
+ n.build(
+ outputs="tools",
+ rule="phony",
+ inputs=[dtk, sjiswrap, wrapper, compilers, binutils, objdiff],
+ )
+ n.newline()
+
+ ###
+ # Build rules
+ ###
+ compiler_path = compilers / "$mw_version"
+
+ # MWCC
+ mwcc = compiler_path / "mwcceppc.exe"
+ mwcc_cmd = f"{wrapper_cmd}{mwcc} $cflags -MMD -c $in -o $basedir"
+ mwcc_implicit: List[Optional[Path]] = [compilers_implicit or mwcc, wrapper_implicit]
+
+ # MWCC with UTF-8 to Shift JIS wrapper
+ mwcc_sjis_cmd = f"{wrapper_cmd}{sjiswrap} {mwcc} $cflags -MMD -c $in -o $basedir"
+ mwcc_sjis_implicit: List[Optional[Path]] = [*mwcc_implicit, sjiswrap]
+
+ # MWLD
+ mwld = compiler_path / "mwldeppc.exe"
+ mwld_cmd = f"{wrapper_cmd}{mwld} $ldflags -o $out @$out.rsp"
+ mwld_implicit: List[Optional[Path]] = [compilers_implicit or mwld, wrapper_implicit]
+
+ # GNU as
+ gnu_as = binutils / f"powerpc-eabi-as{EXE}"
+ gnu_as_cmd = (
+ f"{CHAIN}{gnu_as} $asflags -o $out $in -MD $out.d"
+ + f" && {dtk} elf fixup $out $out"
+ )
+ gnu_as_implicit = [binutils_implicit or gnu_as, dtk]
+
+ if os.name != "nt":
+ transform_dep = config.tools_dir / "transform_dep.py"
+ mwcc_cmd += f" && $python {transform_dep} $basefile.d $basefile.d"
+ mwcc_sjis_cmd += f" && $python {transform_dep} $basefile.d $basefile.d"
+ mwcc_implicit.append(transform_dep)
+ mwcc_sjis_implicit.append(transform_dep)
+
+ n.comment("Link ELF file")
+ n.rule(
+ name="link",
+ command=mwld_cmd,
+ description="LINK $out",
+ rspfile="$out.rsp",
+ rspfile_content="$in_newline",
+ )
+ n.newline()
+
+ n.comment("Generate DOL")
+ n.rule(
+ name="elf2dol",
+ command=f"{dtk} elf2dol $in $out",
+ description="DOL $out",
+ )
+ n.newline()
+
+ n.comment("MWCC build")
+ n.rule(
+ name="mwcc",
+ command=mwcc_cmd,
+ description="MWCC $out",
+ depfile="$basefile.d",
+ deps="gcc",
+ )
+ n.newline()
+
+ n.comment("MWCC build (with UTF-8 to Shift JIS wrapper)")
+ n.rule(
+ name="mwcc_sjis",
+ command=mwcc_sjis_cmd,
+ description="MWCC $out",
+ depfile="$basefile.d",
+ deps="gcc",
+ )
+ n.newline()
+
+ n.comment("Assemble asm")
+ n.rule(
+ name="as",
+ command=gnu_as_cmd,
+ description="AS $out",
+ depfile="$out.d",
+ deps="gcc",
+ )
+ n.newline()
+
+ if len(config.custom_build_rules or {}) > 0:
+ n.comment("Custom project build rules (pre/post-processing)")
+ for rule in config.custom_build_rules or {}:
+ n.rule(
+ name=cast(str, rule.get("name")),
+ command=cast(str, rule.get("command")),
+ description=rule.get("description", None),
+ depfile=rule.get("depfile", None),
+ generator=rule.get("generator", False),
+ pool=rule.get("pool", None),
+ restat=rule.get("restat", False),
+ rspfile=rule.get("rspfile", None),
+ rspfile_content=rule.get("rspfile_content", None),
+ deps=rule.get("deps", None),
+ )
+ n.newline()
+
+ def write_custom_step(step: str, prev_step: Optional[str] = None) -> None:
+ implicit: List[str | Path] = []
+ if config.custom_build_steps and step in config.custom_build_steps:
+ n.comment(f"Custom build steps ({step})")
+ for custom_step in config.custom_build_steps[step]:
+ outputs = cast(List[str | Path], custom_step.get("outputs"))
+
+ if isinstance(outputs, list):
+ implicit.extend(outputs)
+ else:
+ implicit.append(outputs)
+
+ n.build(
+ outputs=outputs,
+ rule=cast(str, custom_step.get("rule")),
+ inputs=custom_step.get("inputs", None),
+ implicit=custom_step.get("implicit", None),
+ order_only=custom_step.get("order_only", None),
+ variables=custom_step.get("variables", None),
+ implicit_outputs=custom_step.get("implicit_outputs", None),
+ pool=custom_step.get("pool", None),
+ dyndep=custom_step.get("dyndep", None),
+ )
+ n.newline()
+ n.build(
+ outputs=step,
+ rule="phony",
+ inputs=implicit,
+ order_only=prev_step,
+ )
+
+ n.comment("Host build")
+ n.variable("host_cflags", "-I include -Wno-trigraphs")
+ n.variable(
+ "host_cppflags",
+ "-std=c++98 -I include -fno-exceptions -fno-rtti -D_CRT_SECURE_NO_WARNINGS -Wno-trigraphs -Wno-c++11-extensions",
+ )
+ n.rule(
+ name="host_cc",
+ command="clang $host_cflags -c -o $out $in",
+ description="CC $out",
+ )
+ n.rule(
+ name="host_cpp",
+ command="clang++ $host_cppflags -c -o $out $in",
+ description="CXX $out",
+ )
+ n.newline()
+
+ # Add all build steps needed before we compile (e.g. processing assets)
+ write_custom_step("pre-compile")
+
+ ###
+ # Source files
+ ###
+ n.comment("Source files")
+
+ def map_path(path: Path) -> Path:
+ return path.parent / (path.name + ".MAP")
+
+ class LinkStep:
+ def __init__(self, config: Dict[str, Any]) -> None:
+ self.name: str = config["name"]
+ self.module_id: int = config["module_id"]
+ self.ldscript: Optional[Path] = Path(config["ldscript"])
+ self.entry = config["entry"]
+ self.inputs: List[str] = []
+
+ def add(self, obj: Path) -> None:
+ self.inputs.append(serialize_path(obj))
+
+ def output(self) -> Path:
+ if self.module_id == 0:
+ return build_path / f"{self.name}.dol"
+ else:
+ return build_path / self.name / f"{self.name}.rel"
+
+ def partial_output(self) -> Path:
+ if self.module_id == 0:
+ return build_path / f"{self.name}.elf"
+ else:
+ return build_path / self.name / f"{self.name}.plf"
+
+ def write(self, n: ninja_syntax.Writer) -> None:
+ n.comment(f"Link {self.name}")
+ if self.module_id == 0:
+ elf_path = build_path / f"{self.name}.elf"
+ elf_ldflags = f"$ldflags -lcf {serialize_path(self.ldscript)}"
+ if config.generate_map:
+ elf_map = map_path(elf_path)
+ elf_ldflags += f" -map {serialize_path(elf_map)}"
+ else:
+ elf_map = None
+ n.build(
+ outputs=elf_path,
+ rule="link",
+ inputs=self.inputs,
+ implicit=[
+ self.ldscript,
+ *mwld_implicit,
+ ],
+ implicit_outputs=elf_map,
+ variables={"ldflags": elf_ldflags},
+ order_only="post-compile",
+ )
+ else:
+ preplf_path = build_path / self.name / f"{self.name}.preplf"
+ plf_path = build_path / self.name / f"{self.name}.plf"
+ preplf_ldflags = "$ldflags -sdata 0 -sdata2 0 -r"
+ plf_ldflags = f"$ldflags -sdata 0 -sdata2 0 -r1 -lcf {serialize_path(self.ldscript)}"
+ if self.entry:
+ plf_ldflags += f" -m {self.entry}"
+ # -strip_partial is only valid with -m
+ if config.rel_strip_partial:
+ plf_ldflags += " -strip_partial"
+ if config.generate_map:
+ preplf_map = map_path(preplf_path)
+ preplf_ldflags += f" -map {serialize_path(preplf_map)}"
+ plf_map = map_path(plf_path)
+ plf_ldflags += f" -map {serialize_path(plf_map)}"
+ else:
+ preplf_map = None
+ plf_map = None
+ n.build(
+ outputs=preplf_path,
+ rule="link",
+ inputs=self.inputs,
+ implicit=mwld_implicit,
+ implicit_outputs=preplf_map,
+ variables={"ldflags": preplf_ldflags},
+ order_only="post-compile",
+ )
+ n.build(
+ outputs=plf_path,
+ rule="link",
+ inputs=self.inputs,
+ implicit=[self.ldscript, preplf_path, *mwld_implicit],
+ implicit_outputs=plf_map,
+ variables={"ldflags": plf_ldflags},
+ order_only="post-compile",
+ )
+ n.newline()
+
+ link_outputs: List[Path] = []
+ if build_config:
+ link_steps: List[LinkStep] = []
+ used_compiler_versions: Set[str] = set()
+ source_inputs: List[Path] = []
+ host_source_inputs: List[Path] = []
+ source_added: Set[Path] = set()
+
+ def c_build(obj: Object, src_path: Path) -> Optional[Path]:
+ # Avoid creating duplicate build rules
+ if obj.src_obj_path is None or obj.src_obj_path in source_added:
+ return obj.src_obj_path
+ source_added.add(obj.src_obj_path)
+
+ cflags = obj.options["cflags"]
+ extra_cflags = obj.options["extra_cflags"]
+
+ # Add appropriate language flag if it doesn't exist already
+ # Added directly to the source so it flows to other generation tasks
+ if not any(flag.startswith("-lang") for flag in cflags) and not any(
+ flag.startswith("-lang") for flag in extra_cflags
+ ):
+ # Ensure extra_cflags is a unique instance,
+ # and insert into there to avoid modifying shared sets of flags
+ extra_cflags = obj.options["extra_cflags"] = list(extra_cflags)
+ if file_is_cpp(src_path):
+ extra_cflags.insert(0, "-lang=c++")
+ else:
+ extra_cflags.insert(0, "-lang=c")
+
+ cflags_str = make_flags_str(cflags)
+ if len(extra_cflags) > 0:
+ extra_cflags_str = make_flags_str(extra_cflags)
+ cflags_str += " " + extra_cflags_str
+ used_compiler_versions.add(obj.options["mw_version"])
+
+ # Add MWCC build rule
+ lib_name = obj.options["lib"]
+ n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})")
+ n.build(
+ outputs=obj.src_obj_path,
+ rule="mwcc_sjis" if obj.options["shift_jis"] else "mwcc",
+ inputs=src_path,
+ variables={
+ "mw_version": Path(obj.options["mw_version"]),
+ "cflags": cflags_str,
+ "basedir": os.path.dirname(obj.src_obj_path),
+ "basefile": obj.src_obj_path.with_suffix(""),
+ },
+ implicit=(
+ mwcc_sjis_implicit if obj.options["shift_jis"] else mwcc_implicit
+ ),
+ order_only="pre-compile",
+ )
+
+ # Add ctx build rule
+ if obj.ctx_path is not None:
+ n.build(
+ outputs=obj.ctx_path,
+ rule="decompctx",
+ inputs=src_path,
+ implicit=decompctx,
+ )
+
+ # Add host build rule
+ if obj.options["host"] and obj.host_obj_path is not None:
+ n.build(
+ outputs=obj.host_obj_path,
+ rule="host_cc" if file_is_c(src_path) else "host_cpp",
+ inputs=src_path,
+ variables={
+ "basedir": os.path.dirname(obj.host_obj_path),
+ "basefile": obj.host_obj_path.with_suffix(""),
+ },
+ order_only="pre-compile",
+ )
+ if obj.options["add_to_all"]:
+ host_source_inputs.append(obj.host_obj_path)
+ n.newline()
+
+ if obj.options["add_to_all"]:
+ source_inputs.append(obj.src_obj_path)
+
+ return obj.src_obj_path
+
+ def asm_build(
+ obj: Object, src_path: Path, obj_path: Optional[Path]
+ ) -> Optional[Path]:
+ if obj.options["asflags"] is None:
+ sys.exit("ProjectConfig.asflags missing")
+ asflags_str = make_flags_str(obj.options["asflags"])
+ if len(obj.options["extra_asflags"]) > 0:
+ extra_asflags_str = make_flags_str(obj.options["extra_asflags"])
+ asflags_str += " " + extra_asflags_str
+
+ # Avoid creating duplicate build rules
+ if obj_path is None or obj_path in source_added:
+ return obj_path
+ source_added.add(obj_path)
+
+ # Add assembler build rule
+ lib_name = obj.options["lib"]
+ n.comment(f"{obj.name}: {lib_name} (linked {obj.completed})")
+ n.build(
+ outputs=obj_path,
+ rule="as",
+ inputs=src_path,
+ variables={"asflags": asflags_str},
+ implicit=gnu_as_implicit,
+ order_only="pre-compile",
+ )
+ n.newline()
+
+ if obj.options["add_to_all"]:
+ source_inputs.append(obj_path)
+
+ return obj_path
+
+ def add_unit(build_obj, link_step: LinkStep):
+ obj_path, obj_name = build_obj["object"], build_obj["name"]
+ obj = objects.get(obj_name)
+ if obj is None:
+ if config.warn_missing_config and not build_obj["autogenerated"]:
+ print(f"Missing configuration for {obj_name}")
+ link_step.add(obj_path)
+ return
+
+ link_built_obj = obj.completed
+ built_obj_path: Optional[Path] = None
+ if obj.src_path is not None and obj.src_path.exists():
+ if file_is_c_cpp(obj.src_path):
+ # Add MWCC & host build rules
+ built_obj_path = c_build(obj, obj.src_path)
+ elif file_is_asm(obj.src_path):
+ # Add assembler build rule
+ built_obj_path = asm_build(obj, obj.src_path, obj.src_obj_path)
+ else:
+ sys.exit(f"Unknown source file type {obj.src_path}")
+ else:
+ if config.warn_missing_source or obj.completed:
+ print(f"Missing source file {obj.src_path}")
+ link_built_obj = False
+
+ # Assembly overrides
+ if obj.asm_path is not None and obj.asm_path.exists():
+ link_built_obj = True
+ built_obj_path = asm_build(obj, obj.asm_path, obj.asm_obj_path)
+
+ if link_built_obj and built_obj_path is not None:
+ # Use the source-built object
+ link_step.add(built_obj_path)
+ elif obj_path is not None:
+ # Use the original (extracted) object
+ link_step.add(obj_path)
+ else:
+ lib_name = obj.options["lib"]
+ sys.exit(
+ f"Missing object for {obj_name}: {obj.src_path} {lib_name} {obj}"
+ )
+
+ # Add DOL link step
+ link_step = LinkStep(build_config)
+ for unit in build_config["units"]:
+ add_unit(unit, link_step)
+ link_steps.append(link_step)
+
+ if config.build_rels:
+ # Add REL link steps
+ for module in build_config["modules"]:
+ module_link_step = LinkStep(module)
+ for unit in module["units"]:
+ add_unit(unit, module_link_step)
+ # Add empty object to empty RELs
+ if len(module_link_step.inputs) == 0:
+ if config.rel_empty_file is None:
+ sys.exit("ProjectConfig.rel_empty_file missing")
+ add_unit(
+ {
+ "object": None,
+ "name": config.rel_empty_file,
+ "autogenerated": True,
+ },
+ module_link_step,
+ )
+ link_steps.append(module_link_step)
+ n.newline()
+
+ # Check if all compiler versions exist
+ for mw_version in used_compiler_versions:
+ mw_path = compilers / mw_version / "mwcceppc.exe"
+ if config.compilers_path and not os.path.exists(mw_path):
+ sys.exit(f"Compiler {mw_path} does not exist")
+
+ # Check if linker exists
+ mw_path = compilers / str(config.linker_version) / "mwldeppc.exe"
+ if config.compilers_path and not os.path.exists(mw_path):
+ sys.exit(f"Linker {mw_path} does not exist")
+
+ # Add all build steps needed before we link and after compiling objects
+ write_custom_step("post-compile")
+
+ ###
+ # Link
+ ###
+ for step in link_steps:
+ step.write(n)
+ link_outputs.append(step.output())
+ n.newline()
+
+ # Add all build steps needed after linking and before GC/Wii native format generation
+ write_custom_step("post-link")
+
+ ###
+ # Generate DOL
+ ###
+ n.build(
+ outputs=link_steps[0].output(),
+ rule="elf2dol",
+ inputs=link_steps[0].partial_output(),
+ implicit=dtk,
+ order_only="post-link",
+ )
+
+ ###
+ # Generate RELs
+ ###
+ n.comment("Generate REL(s)")
+ flags = "-w"
+ if len(build_config["links"]) > 1:
+ flags += " -q"
+ n.rule(
+ name="makerel",
+ command=f"{dtk} rel make {flags} -c $config $names @$rspfile",
+ description="REL",
+ rspfile="$rspfile",
+ rspfile_content="$in_newline",
+ )
+ generated_rels: List[str] = []
+ for idx, link in enumerate(build_config["links"]):
+ # Map module names to link steps
+ link_steps_local = list(
+ filter(
+ lambda step: step.name in link["modules"],
+ link_steps,
+ )
+ )
+ link_steps_local.sort(key=lambda step: step.module_id)
+ # RELs can be the output of multiple link steps,
+ # so we need to filter out duplicates
+ rels_to_generate = list(
+ filter(
+ lambda step: step.module_id != 0
+ and step.name not in generated_rels,
+ link_steps_local,
+ )
+ )
+ if len(rels_to_generate) == 0:
+ continue
+ generated_rels.extend(map(lambda step: step.name, rels_to_generate))
+ rel_outputs = list(
+ map(
+ lambda step: step.output(),
+ rels_to_generate,
+ )
+ )
+ rel_names = list(
+ map(
+ lambda step: step.name,
+ link_steps_local,
+ )
+ )
+ rel_names_arg = " ".join(map(lambda name: f"-n {name}", rel_names))
+ n.build(
+ outputs=rel_outputs,
+ rule="makerel",
+ inputs=list(map(lambda step: step.partial_output(), link_steps_local)),
+ implicit=[dtk, config.config_path],
+ variables={
+ "config": config.config_path,
+ "rspfile": config.out_path() / f"rel{idx}.rsp",
+ "names": rel_names_arg,
+ },
+ order_only="post-link",
+ )
+ n.newline()
+
+ # Add all build steps needed post-build (re-building archives and such)
+ write_custom_step("post-build")
+
+ ###
+ # Helper rule for building all source files
+ ###
+ n.comment("Build all source files")
+ n.build(
+ outputs="all_source",
+ rule="phony",
+ inputs=source_inputs,
+ )
+ n.newline()
+
+ ###
+ # Helper rule for building all source files, with a host compiler
+ ###
+ n.comment("Build all source files with a host compiler")
+ n.build(
+ outputs="all_source_host",
+ rule="phony",
+ inputs=host_source_inputs,
+ )
+ n.newline()
+
+ ###
+ # Check hash
+ ###
+ n.comment("Check hash")
+ ok_path = build_path / "ok"
+ quiet = "-q " if len(link_steps) > 3 else ""
+ n.rule(
+ name="check",
+ command=f"{dtk} shasum {quiet} -c $in -o $out",
+ description="CHECK $in",
+ )
+ n.build(
+ outputs=ok_path,
+ rule="check",
+ inputs=config.check_sha_path,
+ implicit=[dtk, *link_outputs],
+ order_only="post-build",
+ )
+ n.newline()
+
+ ###
+ # Calculate progress
+ ###
+ n.comment("Calculate progress")
+ n.rule(
+ name="progress",
+ command=f"$python {configure_script} $configure_args progress",
+ description="PROGRESS",
+ )
+ n.build(
+ outputs=progress_path,
+ rule="progress",
+ implicit=[
+ ok_path,
+ configure_script,
+ python_lib,
+ report_path,
+ ],
+ order_only="post-build",
+ )
+
+ ###
+ # Generate progress report
+ ###
+ n.comment("Generate progress report")
+ n.rule(
+ name="report",
+ command=f"{objdiff} report generate -o $out",
+ description="REPORT",
+ )
+ n.build(
+ outputs=report_path,
+ rule="report",
+ implicit=[objdiff, "all_source"],
+ order_only="post-build",
+ )
+
+ ###
+ # Helper tools
+ ###
+ # TODO: make these rules work for RELs too
+ dol_link_step = link_steps[0]
+ dol_elf_path = dol_link_step.partial_output()
+ n.comment("Check for mismatching symbols")
+ n.rule(
+ name="dol_diff",
+ command=f"{dtk} -L error dol diff $in",
+ description=f"DIFF {dol_elf_path}",
+ )
+ n.build(
+ inputs=[config.config_path, dol_elf_path],
+ outputs="dol_diff",
+ rule="dol_diff",
+ )
+ n.build(
+ outputs="diff",
+ rule="phony",
+ inputs="dol_diff",
+ )
+ n.newline()
+
+ n.comment("Apply symbols from linked ELF")
+ n.rule(
+ name="dol_apply",
+ command=f"{dtk} dol apply $in",
+ description=f"APPLY {dol_elf_path}",
+ )
+ n.build(
+ inputs=[config.config_path, dol_elf_path],
+ outputs="dol_apply",
+ rule="dol_apply",
+ implicit=[ok_path],
+ )
+ n.build(
+ outputs="apply",
+ rule="phony",
+ inputs="dol_apply",
+ )
+ n.newline()
+
+ ###
+ # Split DOL
+ ###
+ build_config_path = build_path / "config.json"
+ n.comment("Split DOL into relocatable objects")
+ n.rule(
+ name="split",
+ command=f"{dtk} dol split $in $out_dir",
+ description="SPLIT $in",
+ depfile="$out_dir/dep",
+ deps="gcc",
+ )
+ n.build(
+ inputs=config.config_path,
+ outputs=build_config_path,
+ rule="split",
+ implicit=dtk,
+ variables={"out_dir": build_path},
+ )
+ n.newline()
+
+ ###
+ # Regenerate on change
+ ###
+ n.comment("Reconfigure on change")
+ n.rule(
+ name="configure",
+ command=f"$python {configure_script} $configure_args",
+ generator=True,
+ description=f"RUN {configure_script}",
+ )
+ n.build(
+ outputs="build.ninja",
+ rule="configure",
+ implicit=[
+ build_config_path,
+ configure_script,
+ python_lib,
+ python_lib_dir / "ninja_syntax.py",
+ *(config.reconfig_deps or []),
+ ],
+ )
+ n.newline()
+
+ ###
+ # Default rule
+ ###
+ n.comment("Default rule")
+ if build_config:
+ if config.non_matching:
+ n.default(link_outputs)
+ elif config.progress:
+ n.default(progress_path)
+ else:
+ n.default(ok_path)
+ else:
+ n.default(build_config_path)
+
+ # Write build.ninja
+ with open("build.ninja", "w", encoding="utf-8") as f:
+ f.write(out.getvalue())
+ out.close()
+
+
+# Generate objdiff.json
+def generate_objdiff_config(
+ config: ProjectConfig,
+ objects: Dict[str, Object],
+ build_config: Optional[Dict[str, Any]],
+) -> None:
+ if build_config is None:
+ return
+
+ # Load existing objdiff.json
+ existing_units = {}
+ if Path("objdiff.json").is_file():
+ with open("objdiff.json", "r", encoding="utf-8") as r:
+ existing_config = json.load(r)
+ existing_units = {unit["name"]: unit for unit in existing_config["units"]}
+
+ objdiff_config: Dict[str, Any] = {
+ "min_version": "2.0.0-beta.5",
+ "custom_make": "ninja",
+ "build_target": False,
+ "watch_patterns": [
+ "*.c",
+ "*.cp",
+ "*.cpp",
+ "*.h",
+ "*.hpp",
+ "*.inc",
+ "*.py",
+ "*.yml",
+ "*.txt",
+ "*.json",
+ ],
+ "units": [],
+ "progress_categories": [],
+ }
+
+ # decomp.me compiler name mapping
+ COMPILER_MAP = {
+ "GC/1.0": "mwcc_233_144",
+ "GC/1.1": "mwcc_233_159",
+ "GC/1.2.5": "mwcc_233_163",
+ "GC/1.2.5e": "mwcc_233_163e",
+ "GC/1.2.5n": "mwcc_233_163n",
+ "GC/1.3": "mwcc_242_53",
+ "GC/1.3.2": "mwcc_242_81",
+ "GC/1.3.2r": "mwcc_242_81r",
+ "GC/2.0": "mwcc_247_92",
+ "GC/2.5": "mwcc_247_105",
+ "GC/2.6": "mwcc_247_107",
+ "GC/2.7": "mwcc_247_108",
+ "GC/3.0a3": "mwcc_41_51213",
+ "GC/3.0a3.2": "mwcc_41_60126",
+ "GC/3.0a3.3": "mwcc_41_60209",
+ "GC/3.0a3.4": "mwcc_42_60308",
+ "GC/3.0a5": "mwcc_42_60422",
+ "GC/3.0a5.2": "mwcc_41_60831",
+ "GC/3.0": "mwcc_41_60831",
+ "Wii/1.0RC1": "mwcc_42_140",
+ "Wii/0x4201_127": "mwcc_42_142",
+ "Wii/1.0a": "mwcc_42_142",
+ "Wii/1.0": "mwcc_43_145",
+ "Wii/1.1": "mwcc_43_151",
+ "Wii/1.3": "mwcc_43_172",
+ "Wii/1.5": "mwcc_43_188",
+ "Wii/1.6": "mwcc_43_202",
+ "Wii/1.7": "mwcc_43_213",
+ }
+
+ def add_unit(
+ build_obj: Dict[str, Any], module_name: str, progress_categories: List[str]
+ ) -> None:
+ obj_path, obj_name = build_obj["object"], build_obj["name"]
+ base_object = Path(obj_name).with_suffix("")
+ name = str(Path(module_name) / base_object).replace(os.sep, "/")
+ unit_config: Dict[str, Any] = {
+ "name": name,
+ "target_path": obj_path,
+ "base_path": None,
+ "scratch": None,
+ "metadata": {
+ "complete": None,
+ "reverse_fn_order": None,
+ "source_path": None,
+ "progress_categories": progress_categories,
+ "auto_generated": build_obj["autogenerated"],
+ },
+ "symbol_mappings": None,
+ }
+
+ # Preserve existing symbol mappings
+ existing_unit = existing_units.get(name)
+ if existing_unit is not None:
+ unit_config["symbol_mappings"] = existing_unit.get("symbol_mappings")
+
+ obj = objects.get(obj_name)
+ if obj is None:
+ objdiff_config["units"].append(unit_config)
+ return
+
+ src_exists = obj.src_path is not None and obj.src_path.exists()
+ if src_exists:
+ unit_config["base_path"] = obj.src_obj_path
+ unit_config["metadata"]["source_path"] = obj.src_path
+
+ cflags = obj.options["cflags"]
+ reverse_fn_order = False
+ for flag in cflags:
+ if not flag.startswith("-inline "):
+ continue
+ for value in flag.split(" ")[1].split(","):
+ if value == "deferred":
+ reverse_fn_order = True
+ elif value == "nodeferred":
+ reverse_fn_order = False
+
+ # Filter out include directories
+ def keep_flag(flag):
+ return not flag.startswith("-i ") and not flag.startswith("-I ")
+
+ cflags = list(filter(keep_flag, cflags))
+
+ compiler_version = COMPILER_MAP.get(obj.options["mw_version"])
+ if compiler_version is None:
+ print(f"Missing scratch compiler mapping for {obj.options['mw_version']}")
+ else:
+ cflags_str = make_flags_str(cflags)
+ if len(obj.options["extra_cflags"]) > 0:
+ extra_cflags_str = make_flags_str(obj.options["extra_cflags"])
+ cflags_str += " " + extra_cflags_str
+ unit_config["scratch"] = {
+ "platform": "gc_wii",
+ "compiler": compiler_version,
+ "c_flags": cflags_str,
+ }
+ if src_exists:
+ unit_config["scratch"].update(
+ {
+ "ctx_path": obj.ctx_path,
+ "build_ctx": True,
+ }
+ )
+ category_opt: List[str] | str = obj.options["progress_category"]
+ if isinstance(category_opt, list):
+ progress_categories.extend(category_opt)
+ elif category_opt is not None:
+ progress_categories.append(category_opt)
+ unit_config["metadata"].update(
+ {
+ "complete": obj.completed,
+ "reverse_fn_order": reverse_fn_order,
+ "progress_categories": progress_categories,
+ }
+ )
+ objdiff_config["units"].append(unit_config)
+
+ # Add DOL units
+ for unit in build_config["units"]:
+ progress_categories = []
+ # Only include a "dol" category if there are any modules
+ # Otherwise it's redundant with the global report measures
+ if len(build_config["modules"]) > 0:
+ progress_categories.append("dol")
+ add_unit(unit, build_config["name"], progress_categories)
+
+ # Add REL units
+ for module in build_config["modules"]:
+ for unit in module["units"]:
+ progress_categories = []
+ if config.progress_modules:
+ progress_categories.append("modules")
+ if config.progress_each_module:
+ progress_categories.append(module["name"])
+ add_unit(unit, module["name"], progress_categories)
+
+ # Add progress categories
+ def add_category(id: str, name: str):
+ objdiff_config["progress_categories"].append(
+ {
+ "id": id,
+ "name": name,
+ }
+ )
+
+ if len(build_config["modules"]) > 0:
+ add_category("dol", "DOL")
+ if config.progress_modules:
+ add_category("modules", "Modules")
+ if config.progress_each_module:
+ for module in build_config["modules"]:
+ add_category(module["name"], module["name"])
+ for category in config.progress_categories:
+ add_category(category.id, category.name)
+
+ def cleandict(d):
+ if isinstance(d, dict):
+ return {k: cleandict(v) for k, v in d.items() if v is not None}
+ elif isinstance(d, list):
+ return [cleandict(v) for v in d]
+ else:
+ return d
+
+ # Write objdiff.json
+ with open("objdiff.json", "w", encoding="utf-8") as w:
+
+ def unix_path(input: Any) -> str:
+ return str(input).replace(os.sep, "/") if input else ""
+
+ json.dump(cleandict(objdiff_config), w, indent=2, default=unix_path)
+
+
+def generate_compile_commands(
+ config: ProjectConfig,
+ objects: Dict[str, Object],
+ build_config: Optional[Dict[str, Any]],
+) -> None:
+ if build_config is None or not config.generate_compile_commands:
+ return
+
+ # The following code attempts to convert mwcc flags to clang flags
+ # for use with clangd.
+
+ # Flags to ignore explicitly
+ CFLAG_IGNORE: Set[str] = {
+ # Search order modifier
+ # Has a different meaning to Clang, and would otherwise
+ # be picked up by the include passthrough prefix
+ "-I-",
+ "-i-",
+ }
+ CFLAG_IGNORE_PREFIX: Tuple[str, ...] = (
+ # Recursive includes are not supported by modern compilers
+ "-ir ",
+ )
+
+ # Flags to replace
+ CFLAG_REPLACE: Dict[str, str] = {}
+ CFLAG_REPLACE_PREFIX: Tuple[Tuple[str, str], ...] = (
+ # Includes
+ ("-i ", "-I"),
+ ("-I ", "-I"),
+ ("-I+", "-I"),
+ # Defines
+ ("-d ", "-D"),
+ ("-D ", "-D"),
+ ("-D+", "-D"),
+ )
+
+ # Flags with a finite set of options
+ CFLAG_REPLACE_OPTIONS: Tuple[Tuple[str, Dict[str, Tuple[str, ...]]], ...] = (
+ # Exceptions
+ (
+ "-Cpp_exceptions",
+ {
+ "off": ("-fno-cxx-exceptions",),
+ "on": ("-fcxx-exceptions",),
+ },
+ ),
+ # RTTI
+ (
+ "-RTTI",
+ {
+ "off": ("-fno-rtti",),
+ "on": ("-frtti",),
+ },
+ ),
+ # Language configuration
+ (
+ "-lang",
+ {
+ "c": ("--language=c", "--std=c99"),
+ "c99": ("--language=c", "--std=c99"),
+ "c++": ("--language=c++", "--std=c++98"),
+ "cplus": ("--language=c++", "--std=c++98"),
+ },
+ ),
+ # Enum size
+ (
+ "-enum",
+ {
+ "min": ("-fshort-enums",),
+ "int": ("-fno-short-enums",),
+ },
+ ),
+ # Common BSS
+ (
+ "-common",
+ {
+ "off": ("-fno-common",),
+ "on": ("-fcommon",),
+ },
+ ),
+ )
+
+ # Flags to pass through
+ CFLAG_PASSTHROUGH: Set[str] = set()
+ CFLAG_PASSTHROUGH_PREFIX: Tuple[str, ...] = (
+ "-I", # includes
+ "-D", # defines
+ )
+
+ clangd_config = []
+
+ def add_unit(build_obj: Dict[str, Any]) -> None:
+ obj = objects.get(build_obj["name"])
+ if obj is None:
+ return
+
+ # Skip unresolved objects
+ if (
+ obj.src_path is None
+ or obj.src_obj_path is None
+ or not file_is_c_cpp(obj.src_path)
+ ):
+ return
+
+ # Gather cflags for source file
+ cflags: list[str] = []
+
+ def append_cflags(flags: Iterable[str]) -> None:
+ # Match a flag against either a set of concrete flags, or a set of prefixes.
+ def flag_match(
+ flag: str, concrete: Set[str], prefixes: Tuple[str, ...]
+ ) -> bool:
+ if flag in concrete:
+ return True
+
+ for prefix in prefixes:
+ if flag.startswith(prefix):
+ return True
+
+ return False
+
+ # Determine whether a flag should be ignored.
+ def should_ignore(flag: str) -> bool:
+ return flag_match(flag, CFLAG_IGNORE, CFLAG_IGNORE_PREFIX)
+
+ # Determine whether a flag should be passed through.
+ def should_passthrough(flag: str) -> bool:
+ return flag_match(flag, CFLAG_PASSTHROUGH, CFLAG_PASSTHROUGH_PREFIX)
+
+ # Attempts replacement for the given flag.
+ def try_replace(flag: str) -> bool:
+ replacement = CFLAG_REPLACE.get(flag)
+ if replacement is not None:
+ cflags.append(replacement)
+ return True
+
+ for prefix, replacement in CFLAG_REPLACE_PREFIX:
+ if flag.startswith(prefix):
+ cflags.append(flag.replace(prefix, replacement, 1))
+ return True
+
+ for prefix, options in CFLAG_REPLACE_OPTIONS:
+ if not flag.startswith(prefix):
+ continue
+
+ # "-lang c99" and "-lang=c99" are both generally valid option forms
+ option = flag.removeprefix(prefix).removeprefix("=").lstrip()
+ replacements = options.get(option)
+ if replacements is not None:
+ cflags.extend(replacements)
+
+ return True
+
+ return False
+
+ for flag in flags:
+ # Ignore flags first
+ if should_ignore(flag):
+ continue
+
+ # Then find replacements
+ if try_replace(flag):
+ continue
+
+ # Pass flags through last
+ if should_passthrough(flag):
+ cflags.append(flag)
+ continue
+
+ append_cflags(obj.options["cflags"])
+ append_cflags(obj.options["extra_cflags"])
+ cflags.extend(config.extra_clang_flags)
+ cflags.extend(obj.options["extra_clang_flags"])
+
+ unit_config = {
+ "directory": Path.cwd(),
+ "file": obj.src_path,
+ "output": obj.src_obj_path,
+ "arguments": [
+ "clang",
+ "-nostdinc",
+ "-fno-builtin",
+ "--target=powerpc-eabi",
+ *cflags,
+ "-c",
+ obj.src_path,
+ "-o",
+ obj.src_obj_path,
+ ],
+ }
+ clangd_config.append(unit_config)
+
+ # Add DOL units
+ for unit in build_config["units"]:
+ add_unit(unit)
+
+ # Add REL units
+ for module in build_config["modules"]:
+ for unit in module["units"]:
+ add_unit(unit)
+
+ # Write compile_commands.json
+ with open("compile_commands.json", "w", encoding="utf-8") as w:
+
+ def default_format(o):
+ if isinstance(o, Path):
+ return o.resolve().as_posix()
+ return str(o)
+
+ json.dump(clangd_config, w, indent=2, default=default_format)
+
+
+# Calculate, print and write progress to progress.json
+def calculate_progress(config: ProjectConfig) -> None:
+ config.validate()
+ out_path = config.out_path()
+ report_path = out_path / "report.json"
+ if not report_path.is_file():
+ sys.exit(f"Report file {report_path} does not exist")
+
+ report_data: Dict[str, Any] = {}
+ with open(report_path, "r", encoding="utf-8") as f:
+ report_data = json.load(f)
+
+ # Convert string numbers (u64) to int
+ def convert_numbers(data: Dict[str, Any]) -> None:
+ for key, value in data.items():
+ if isinstance(value, str) and value.isdigit():
+ data[key] = int(value)
+
+ convert_numbers(report_data["measures"])
+ for category in report_data["categories"]:
+ convert_numbers(category["measures"])
+
+ # Output to GitHub Actions job summary, if available
+ summary_path = os.getenv("GITHUB_STEP_SUMMARY")
+ summary_file: Optional[IO[str]] = None
+ if summary_path:
+ summary_file = open(summary_path, "a", encoding="utf-8")
+ summary_file.write("```\n")
+
+ def progress_print(s: str) -> None:
+ print(s)
+ if summary_file:
+ summary_file.write(s + "\n")
+
+ # Print human-readable progress
+ progress_print("Progress:")
+
+ def print_category(name: str, measures: Dict[str, Any]) -> None:
+ total_code = measures.get("total_code", 0)
+ matched_code = measures.get("matched_code", 0)
+ matched_code_percent = measures.get("matched_code_percent", 0)
+ total_data = measures.get("total_data", 0)
+ matched_data = measures.get("matched_data", 0)
+ matched_data_percent = measures.get("matched_data_percent", 0)
+ total_functions = measures.get("total_functions", 0)
+ matched_functions = measures.get("matched_functions", 0)
+ complete_code_percent = measures.get("complete_code_percent", 0)
+ total_units = measures.get("total_units", 0)
+ complete_units = measures.get("complete_units", 0)
+
+ progress_print(
+ f" {name}: {matched_code_percent:.2f}% matched, {complete_code_percent:.2f}% linked ({complete_units} / {total_units} files)"
+ )
+ progress_print(
+ f" Code: {matched_code} / {total_code} bytes ({matched_functions} / {total_functions} functions)"
+ )
+ progress_print(
+ f" Data: {matched_data} / {total_data} bytes ({matched_data_percent:.2f}%)"
+ )
+
+ print_category("All", report_data["measures"])
+ for category in report_data["categories"]:
+ if config.print_progress_categories is True or (
+ isinstance(config.print_progress_categories, list)
+ and category["id"] in config.print_progress_categories
+ ):
+ print_category(category["name"], category["measures"])
+
+ if config.progress_use_fancy:
+ measures = report_data["measures"]
+ total_code = measures.get("total_code", 0)
+ total_data = measures.get("total_data", 0)
+ if total_code == 0 or total_data == 0:
+ return
+ code_frac = measures.get("complete_code", 0) / total_code
+ data_frac = measures.get("complete_data", 0) / total_data
+
+ progress_print(
+ "\nYou have {} out of {} {} and {} out of {} {}.".format(
+ math.floor(code_frac * config.progress_code_fancy_frac),
+ config.progress_code_fancy_frac,
+ config.progress_code_fancy_item,
+ math.floor(data_frac * config.progress_data_fancy_frac),
+ config.progress_data_fancy_frac,
+ config.progress_data_fancy_item,
+ )
+ )
+
+ # Finalize GitHub Actions job summary
+ if summary_file:
+ summary_file.write("```\n")
+ summary_file.close()
+
+ # Generate and write progress.json
+ progress_json: Dict[str, Any] = {}
+
+ def add_category(id: str, measures: Dict[str, Any]) -> None:
+ progress_json[id] = {
+ "code": measures.get("complete_code", 0),
+ "code/total": measures.get("total_code", 0),
+ "data": measures.get("complete_data", 0),
+ "data/total": measures.get("total_data", 0),
+ "matched_code": measures.get("matched_code", 0),
+ "matched_code/total": measures.get("total_code", 0),
+ "matched_data": measures.get("matched_data", 0),
+ "matched_data/total": measures.get("total_data", 0),
+ "matched_functions": measures.get("matched_functions", 0),
+ "matched_functions/total": measures.get("total_functions", 0),
+ "fuzzy_match": int(measures.get("fuzzy_match_percent", 0) * 100),
+ "fuzzy_match/total": 10000,
+ "units": measures.get("complete_units", 0),
+ "units/total": measures.get("total_units", 0),
+ }
+
+ if config.progress_all:
+ add_category("all", report_data["measures"])
+ else:
+ # Support for old behavior where "dol" was the main category
+ add_category("dol", report_data["measures"])
+ for category in report_data["categories"]:
+ add_category(category["id"], category["measures"])
+
+ with open(out_path / "progress.json", "w", encoding="utf-8") as w:
+ json.dump(progress_json, w, indent=2)
diff --git a/tools/sjis.py b/tools/sjis.py
deleted file mode 100644
index ac790e7c..00000000
--- a/tools/sjis.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from argparse import ArgumentParser
-
-parser = ArgumentParser()
-parser.add_argument("input")
-parser.add_argument("output")
-args = parser.parse_args()
-
-with open(args.input, encoding="utf-8") as f:
- txt = f.read()
-
-with open(args.output, 'w', encoding="shift-jis") as f:
- f.write(txt)
diff --git a/tools/sjiswrap.exe b/tools/sjiswrap.exe
deleted file mode 100644
index 4ddb9069..00000000
Binary files a/tools/sjiswrap.exe and /dev/null differ
diff --git a/tools/texture_tool.py b/tools/texture_tool.py
deleted file mode 100644
index 6c613e8a..00000000
--- a/tools/texture_tool.py
+++ /dev/null
@@ -1,455 +0,0 @@
-import argparse
-import os
-import subprocess
-import sys
-import numpy as np
-from pathlib import Path
-from PIL import Image
-
-current_path = sys.path.copy()
-sys.path.append(str(Path(__file__).parent.parent))
-import common as c
-sys.path = current_path
-
-def unswizzle(input_list, width, height, pixels_per_block_w=8, pixels_per_block_h=8):
- if width * height > len(input_list):
- raise Exception(f"There are not enough elements in input_list for the specified Width and Height!"
- f"\nExpected a length of {width * height}, but got a length of {len(input_list)}!")
-
- block_x_count = width // pixels_per_block_w
- block_y_count = height // pixels_per_block_h
- if block_y_count < 1:
- block_y_count = 1 # Hack for small textures -- Not sure if this is correct.
-
- output_buffer = [None] * len(input_list)
- pixel_index = 0
-
- for y_block in range(block_y_count):
- for x_block in range(block_x_count):
- for y_pixel in range(pixels_per_block_h):
- for x_pixel in range(pixels_per_block_w):
- output_buffer_index = (width * pixels_per_block_h * y_block) + y_pixel * width + x_block * pixels_per_block_w + x_pixel
- output_buffer[output_buffer_index] = input_list[pixel_index]
- pixel_index += 1
-
- return output_buffer
-
-def swizzle(input_list, width, height, pixels_per_block_w=8, pixels_per_block_h=8):
- if width * height > len(input_list):
- raise Exception(f"There are not enough elements in input_list for the specified Width and Height!\n"
- f"Width = {width} | Height = {height} | Width * Height = {width * height} | Input List Length = {len(input_list)}")
-
- block_x_count = width // pixels_per_block_w
- block_y_count = height // pixels_per_block_h
-
- output_buffer = [None] * len(input_list)
- output_buffer_index = 0
-
- for y_block in range(block_y_count):
- for x_block in range(block_x_count):
- for y_pixel in range(pixels_per_block_h):
- for x_pixel in range(pixels_per_block_w):
- pixel_index = (width * pixels_per_block_h * y_block) + y_pixel * width + x_block * pixels_per_block_w + x_pixel
- output_buffer[output_buffer_index] = input_list[pixel_index]
- output_buffer_index += 1
-
- return output_buffer
-
-def read_rgb5a3_colors(input_bytes, n):
- """
- Reads N unsigned 16-bit values from an input bytearray as big-endian RGB5A3 colors.
-
- Args:
- - input_bytes (bytearray): The input bytearray.
- - n (int): The number of 16-bit values to read.
-
- Returns:
- - List of tuples representing RGB5A3 colors.
- """
- if len(input_bytes) < n * 2:
- raise ValueError("Input bytearray does not contain enough data for N colors")
-
- colors = []
- for i in range(n):
- # Extract 16-bit value for each color, assuming big-endian order
- color_value = int.from_bytes(input_bytes[i*2:i*2+2], 'big')
- colors.append(color_value)
-
- return colors
-
-def to_argb8(pixel):
- if (pixel & 0x8000) == 0x8000:
- # No Alpha Channel
- a = 0xFF
-
- # Separate RGB from bits
- r = (pixel & 0x7C00) >> 10
- g = (pixel & 0x03E0) >> 5
- b = (pixel & 0x001F)
-
- # Convert to RGB8 values
- r = (r << (8 - 5)) | (r >> (10 - 8))
- g = (g << (8 - 5)) | (g >> (10 - 8))
- b = (b << (8 - 5)) | (b >> (10 - 8))
- else:
- # An Alpha Channel Exists, 3 bits for Alpha Channel and 4 bits each for RGB
- a = (pixel & 0x7000) >> 12
- r = (pixel & 0x0F00) >> 8
- g = (pixel & 0x00F0) >> 4
- b = (pixel & 0x000F)
-
- a = (a << (8 - 3)) | (a << (8 - 6)) | (a >> (9 - 8))
- r = (r << (8 - 4)) | r
- g = (g << (8 - 4)) | g
- b = (b << (8 - 4)) | b
-
- # Ensure the values are byte-sized (0-255)
- a = a & 0xFF
- r = r & 0xFF
- g = g & 0xFF
- b = b & 0xFF
-
- return r, g, b, a
-
-def rgb5a3_to_argb8(colors):
- """
- Converts an array of RGB5A3 colors to standard ARGB8 colors.
-
- Args:
- - colors (List[int]): List of integers representing RGB5A3 colors.
-
- Returns:
- - List of tuples representing ARGB8 colors.
- """
- argb8_colors = []
- for color in colors:
- argb8_colors.append((to_argb8(color)))
-
- return argb8_colors
-
-def extract_texture_asset(byte_array, width, height, tex_count):
- texture_data_size = (width * height) // 2
- entry_size = 2 * 16 + texture_data_size * tex_count
- n_entries = len(byte_array) // entry_size
- entries = []
-
- for entry_index in range(n_entries):
- offset = entry_index * entry_size
- palette_bytes = byte_array[offset:offset + 2 * 16]
- palette_colors = read_rgb5a3_colors(palette_bytes, 16)
-
- textures = []
- for texture_index in range(tex_count):
- texture_offset = offset + 2 * 16 + (texture_index * texture_data_size)
- texture_bytes = byte_array[texture_offset:texture_offset + texture_data_size]
- textures.append(texture_bytes)
-
- entries.append({'palette': palette_colors, 'textures': textures})
-
- return entries
-
-def generate_c_source_entries_with_all_textures(entries, width):
- """
- Generates a list of C source strings from extracted palette and textures data.
- Each string contains one palette and all textures formatted for a C source file,
- where each entry is represented as a separate string in the list.
-
- Args:
- - entries (List[Dict]): Extracted data containing 'palette' and 'textures' for each entry.
-
- Returns:
- - List of strings, each representing the C source code for one entry including one palette and all textures.
- """
- c_source_entries = []
- for i, entry in enumerate(entries):
- c_source = ""
- # Palette
- c_source += f"// clang-format off\nunsigned short floor{i:02d}_pal[] = {{\n "
- for j, color in enumerate(entry['palette']):
- c_source += f"0x{color:04X},"
- if (j + 1) % 8 == 0 and (j + 1) < 16: # Newline after every 8 entries
- c_source += "\n "
- else:
- c_source += " "
- c_source = c_source.rstrip(", \n") + "\n};\n// clang-format on\n\n" # Remove trailing comma and add closing bracket
-
- # Textures
- c_source += f"// clang-format off\nunsigned char floor{i:02d}_tex[] = {{\n // texture 0\n "
- for texture_index, texture in enumerate(entry['textures']):
- for k, pixel in enumerate(texture):
- c_source += f"0x{pixel:02X},"
- if (k + 1) % (width // 2) == 0: # Newline after width/2 texture pixels
- if k + 1 != len(texture) or texture_index < len(entry['textures']) - 1:
- c_source += "\n "
- else:
- c_source += " "
- if texture_index < len(entry['textures']) - 1:
- c_source += f"// texture {texture_index + 1}\n " # Add a newline after each texture except the last
- c_source = c_source.rstrip(", \n") + "\n};\n// clang-format on\n" # Close texture array
-
- c_source_entries.append(c_source)
-
- return c_source_entries
-
-def save_palette_as_hex(palette, directory_path):
- """
- Saves an RGB5A3 palette list to a text file with hex values.
-
- Args:
- - palette (List[int]): List of colors in RGB5A3 format.
- - directory_path (Path): The directory where 'palette.txt' will be saved.
- """
- # Ensure the directory exists
- directory_path.mkdir(parents=True, exist_ok=True)
-
- # Define the file path
- file_path = directory_path / 'palette.txt'
-
- with file_path.open(mode='w') as file:
- for color in palette:
- # Write each color as a hexadecimal value
- file.write(f'{color:04X}\n')
-
-def save_textures_as_png(base_path, entries, width, height, base_name):
- for i, entry in enumerate(entries):
- folder_name = base_path / f"{base_name}{i:02d}"
- folder_name.mkdir(parents=True, exist_ok=True) # Create the directory, including any necessary parent directories
-
- # Save RGB5A3 palette to 'palette.txt'
- save_palette_as_hex(entry['palette'], folder_name)
-
- # Convert to RGBA8
- palette = rgb5a3_to_argb8(entry['palette'])
-
- for j, texture_data in enumerate(entry['textures']):
- # Construct an image from the 4-bit indexed data
- img_data = bytearray(len(texture_data) * 2) # Each byte in texture_data represents two pixels
- for idx, byte in enumerate(texture_data):
- img_data[idx * 2] = byte >> 4 # High nibble for the first pixel
- img_data[idx * 2 + 1] = byte & 0x0F # Low nibble for the second pixel
-
- # Map the indexed pixels to RGBA using the palette
- rgba_img = [palette[pix] for pix in img_data]
-
- # Unswizzle the RGBA image data
- unswizzled_data = unswizzle(rgba_img, width, height) # Assume unswizzle is defined elsewhere
-
- # Create the final image and save it
- img = Image.new("RGBA", (width, height))
- img.putdata(unswizzled_data)
- img_file_path = folder_name / f"texture{j:02d}.png"
- img.save(img_file_path)
-
-def generate_includes(n, input_string):
- includes = ""
- for i in range(n):
- includes += f'#include "./{input_string}{i:02d}.c"\n'
- return includes
-
-def extract_player_room_floor(byte_array: bytearray, out_dir: str):
- entries = extract_texture_asset(byte_array, 64, 64, 4)
- entry_sources = generate_c_source_entries_with_all_textures(entries, 64)
- Path(out_dir).mkdir(parents=True, exist_ok=True) # make dirs
- for i in range(len(entries)):
- path = Path(out_dir) / ('floor%02d.c' % i)
- with path.open("w") as f:
- f.write(entry_sources[i])
- save_textures_as_png(Path(out_dir) / 'tex', entries, 64, 64, "floor")
-
- # write aggregate file
- with (Path(out_dir) / 'player_room_floor.c').open('w') as f:
- f.write(generate_includes(len(entries), "floor"))
-
-def extract_player_room_wall(byte_array: bytearray, out_dir: str):
- entries = extract_texture_asset(byte_array, 64, 64, 2)
- entry_sources = generate_c_source_entries_with_all_textures(entries, 64)
- Path(out_dir).mkdir(parents=True, exist_ok=True) # make dirs
- for i in range(len(entries)):
- path = Path(out_dir) / ('wall%02d.c' % i)
- with path.open("w") as f:
- f.write(entry_sources[i])
- save_textures_as_png(Path(out_dir) / 'tex', entries, 64, 64, "wall")
-
- # write aggregate file
- with (Path(out_dir) / 'player_room_wall.c').open('w') as f:
- f.write(generate_includes(len(entries), "wall"))
-
-# packing
-
-def rgba8_to_rgb5a3(r, g, b, a):
- if a >= 224: # Treat as opaque
- return ((1 << 15) | ((r >> 3) << 10) | ((g >> 3) << 5) | (b >> 3))
- else: # Use 3 bits for alpha
- return (((a >> 5) << 12) | ((r >> 4) << 8) | ((g >> 4) << 4) | (b >> 4))
-
-def find_closest_color(color, palette):
- min_dist, index = float('inf'), -1
- for i, p in enumerate(palette):
- # Directly compare the integer values
- dist = (color - p) ** 2
- if dist < min_dist:
- min_dist, index = dist, i
- return index
-
-def load_palette_from_hex(directory_path):
- """
- Loads an RGB5A3 palette list from a text file containing hex values.
-
- Args:
- - directory_path (Path): The directory where 'palette.txt' is located.
-
- Returns:
- - List[int]: List of colors in RGB5A3 format.
- """
- # Define the file path
- file_path = directory_path / 'palette.txt'
-
- palette = []
- with file_path.open(mode='r') as file:
- for line in file:
- # Convert each hexadecimal string back to an integer
- color = int(line.strip(), 16)
- palette.append(color)
-
- return palette
-
-def process_png_image(image_path, palette):
- img = Image.open(image_path).convert("RGBA")
- pixels = np.array(img)
-
- # Create a texture map with indices
- texture_map = []
- for row in pixels:
- row_indices = []
- for r, g, b, a in row:
- rgb5a3 = rgba8_to_rgb5a3(r, g, b, a)
- closest_index = find_closest_color(rgb5a3, palette)
- row_indices.append(closest_index)
- texture_map.extend(row_indices)
-
- # Swizzle texture
- swizzled_texture = swizzle(texture_map, img.width, img.height)
-
- # Pack texture into 4bpp texels
- packed_texture_map = [0] * (len(swizzled_texture) // 2)
- for i, p in enumerate(swizzled_texture):
- if (i % 2) == 0:
- packed_texture_map[i // 2] = (p & 0xF) << 4
- else:
- packed_texture_map[i // 2] |= p & 0xF
-
- return packed_texture_map
-
-def pack_player_room_floor(main_path: Path):
- objects = []
- for dir in (main_path / 'tex').iterdir():
- # load palette file
- palette = load_palette_from_hex(dir)
-
- # load texture00.png-texture03.png
- textures = []
- for i in range(0, 4):
- textures.append(process_png_image(dir / f'texture{i:02d}.png', palette))
-
- obj = {'palette': palette, 'textures': textures, 'idx': int(dir.name.replace('floor', ''))}
- objects.append(obj)
-
- # sort list
- objects.sort(key=lambda x: x['idx'])
-
- # process texture data into C source
- c_source = generate_c_source_entries_with_all_textures(objects, 64)
-
- # output C source to files
- for i in range(len(objects)):
- with (main_path / f'floor{i:02d}.c').open('w') as f:
- f.write(c_source[i])
-
- # build elf file and dump .data section
- os.chdir(str(Path(__file__).parent.parent))
-
- cmd = c.CC_R
- out_elf = main_path / f'{main_path.name}.o'
-
- if cmd.find('wibo') >= 0:
- subprocess.run(['wibo', './' + cmd.replace('wibo ', ''), f'-I{str(main_path)}', '-c', main_path / f'{main_path.name}.c', '-o', out_elf])
- else:
- subprocess.run([cmd, f'-I{str(main_path)}', '-c', main_path / f'{main_path.name}.c', '-o', out_elf])
-
- out_obj = main_path / f'{main_path.name}.bin'
- subprocess.run(['powerpc-eabi-objcopy', '--dump-section', f'.data={out_obj}', out_elf])
-
- # restore current dir
- os.chdir(str(Path(__file__).parent))
-
-def pack_player_room_wall(main_path: Path):
- objects = []
- for dir in (main_path / 'tex').iterdir():
- # load palette file
- palette = load_palette_from_hex(dir)
-
- # load texture00.png-texture03.png
- textures = []
- for i in range(0, 2):
- textures.append(process_png_image(dir / f'texture{i:02d}.png', palette))
-
- obj = {'palette': palette, 'textures': textures, 'idx': int(dir.name.replace('wall', ''))}
- objects.append(obj)
-
- # sort list
- objects.sort(key=lambda x: x['idx'])
-
- # process texture data into C source
- c_source = generate_c_source_entries_with_all_textures(objects, 64)
-
- # output C source to files
- for i in range(len(objects)):
- with (main_path / f'wall{i:02d}.c').open('w') as f:
- f.write(c_source[i])
-
- # build elf file and dump .data section
- os.chdir(str(Path(__file__).parent.parent))
-
- cmd = c.CC_R
- out_elf = main_path / f'{main_path.name}.o'
-
- if cmd.find('wibo') >= 0:
- subprocess.run(['wibo', './' + cmd.replace('wibo ', ''), f'-I{str(main_path)}', '-c', main_path / f'{main_path.name}.c', '-o', out_elf])
- else:
- subprocess.run([cmd, f'-I{str(main_path)}', '-c', main_path / f'{main_path.name}.c', '-o', out_elf])
-
- out_obj = main_path / f'{main_path.name}.bin'
- subprocess.run(['powerpc-eabi-objcopy', '--dump-section', f'.data={out_obj}', out_elf])
-
-
-def unpack():
- with open('src/data/bin2/data/player_room_floor.bin', 'rb') as f:
- extract_player_room_floor(bytearray(f.read()), 'src/data/item/player_room_floor')
-
- with open('src/data/bin2/data/player_room_wall.bin', 'rb') as f:
- extract_player_room_wall(bytearray(f.read()), 'src/data/item/player_room_wall')
-
-def pack():
- cwd = os.getcwd()
-
- pack_player_room_floor(Path('src/data/item/player_room_floor'))
- os.chdir(cwd)
-
- pack_player_room_wall(Path('src/data/item/player_room_wall'))
- os.chdir(cwd)
-
-def main():
- parser = argparse.ArgumentParser(description='Pack or dump Animal Crossing player_room_[floor][wall].bin files.')
- parser.add_argument('-m', help="The mode to run. Valid arguments are un[pack].")
-
- args = parser.parse_args()
-
- if args.m.lower() == "pack":
- pack()
- elif args.m.lower() == "unpack":
- unpack()
- else:
- raise Exception(f'Invalid mode! Please use -m un[pack]')
-
-if __name__ == '__main__':
- main()
diff --git a/tools/transform_dep.py b/tools/transform_dep.py
new file mode 100644
index 00000000..124de04b
--- /dev/null
+++ b/tools/transform_dep.py
@@ -0,0 +1,84 @@
+#!/usr/bin/env python3
+
+###
+# Transforms .d files, converting Windows paths to Unix paths.
+# Allows usage of the mwcc -MMD flag on platforms other than Windows.
+#
+# Usage:
+# python3 tools/transform_dep.py build/src/file.d build/src/file.d
+#
+# If changes are made, please submit a PR to
+# https://github.com/encounter/dtk-template
+###
+
+import argparse
+import os
+from platform import uname
+
+wineprefix = os.path.join(os.environ["HOME"], ".wine")
+if "WINEPREFIX" in os.environ:
+ wineprefix = os.environ["WINEPREFIX"]
+winedevices = os.path.join(wineprefix, "dosdevices")
+
+
+def in_wsl() -> bool:
+ return "microsoft-standard" in uname().release
+
+
+def import_d_file(in_file: str) -> str:
+ out_text = ""
+
+ with open(in_file) as file:
+ for idx, line in enumerate(file):
+ if idx == 0:
+ if line.endswith(" \\\n"):
+ out_text += line[:-3].replace("\\", "/") + " \\\n"
+ else:
+ out_text += line.replace("\\", "/")
+ else:
+ suffix = ""
+ if line.endswith(" \\\n"):
+ suffix = " \\"
+ path = line.lstrip()[:-3]
+ else:
+ path = line.strip()
+ # lowercase drive letter
+ path = path[0].lower() + path[1:]
+ if path[0] == "z":
+ # shortcut for z:
+ path = path[2:].replace("\\", "/")
+ elif in_wsl():
+ path = path[0:1] + path[2:]
+ path = os.path.join("/mnt", path.replace("\\", "/"))
+ else:
+ # use $WINEPREFIX/dosdevices to resolve path
+ path = os.path.realpath(
+ os.path.join(winedevices, path.replace("\\", "/"))
+ )
+ out_text += "\t" + path + suffix + "\n"
+
+ return out_text
+
+
+def main() -> None:
+ parser = argparse.ArgumentParser(
+ description="""Transform a .d file from Wine paths to normal paths"""
+ )
+ parser.add_argument(
+ "d_file",
+ help="""Dependency file in""",
+ )
+ parser.add_argument(
+ "d_file_out",
+ help="""Dependency file out""",
+ )
+ args = parser.parse_args()
+
+ output = import_d_file(args.d_file)
+
+ with open(args.d_file_out, "w", encoding="UTF-8") as f:
+ f.write(output)
+
+
+if __name__ == "__main__":
+ main()
diff --git a/tools/tu_config.py b/tools/tu_config.py
deleted file mode 100644
index ee518491..00000000
--- a/tools/tu_config.py
+++ /dev/null
@@ -1,508 +0,0 @@
-import os
-import re
-import argparse
-from re import Match
-from io import TextIOWrapper
-import typing
-from ruamel.yaml import YAML
-from ruamel.yaml import CommentedMap
-from ruamel.yaml import CommentedSeq
-from ruamel.yaml import scalarint
-
-#region Types
-class SymbolInfo:
- symbol_name: str = None
- start_address: int = 0
- end_address: int = 0
-
- def __init__(self, name:str, start:int, size:int) -> None:
- self.symbol_name = name
- self.start_address = start
- self.end_address = start + size
-
- def get_address_range(self)->typing.Tuple[int, int]:
- return self.start_address, self.end_address
-
-class SliceSection:
- section_symbol: SymbolInfo = None
- symbols: typing.List[SymbolInfo] = None
-
- def __init__(self, symbol: SymbolInfo) -> None:
- self.section_symbol = symbol
- self.symbols = []
-
-class SliceInfo:
- sections: typing.List[SliceSection] = None
-
- def __init__(self) -> None:
- self.sections = []
-
- def get_address_range(self)->typing.Tuple[int, int]:
- start_address = self.sections[0].section_symbol.start_address
- end_address = self.sections[-1].section_symbol.end_address
- if len(self.sections[-1].symbols) > 0:
- end_address = self.sections[-1].symbols[-1].end_address
-
- return start_address, end_address
-
-class Address_Sort_Entry:
- key : str = None
- value: CommentedMap = None
- starting_address: int = None
-
- def __init__(self, entry_key: str, entry_value: CommentedMap, entry_starting_address: int) -> None:
- self.key = entry_key
- self.value = entry_value
- self.starting_address = entry_starting_address
-#endregion
-
-#region Constants
-# Dictionary for the offsets we need to apply to the addresses from the map
-address_offset_map : typing.Dict[str, int] = {
- ".text": int("0x803702A8", 16),
- ".rodata": int("0x80641260", 16),
- ".data": int("0x8064D500", 16),
- ".bss": int("0x8125A7C0", 16)
-}
-
-prioritized_addresses: typing.List[str] = [".text", ".rodata", ".data", ".bss"]
-
-script_dir: str = os.path.dirname(os.path.realpath(__file__))
-root_dir: str = os.path.abspath(os.path.join(script_dir, ".."))
-default_map_path: str = os.path.join(root_dir, "dump/foresta.map")
-default_binary_slice_file_path: str = os.path.join(root_dir, "config/rel_slices.yml")
-default_asset_slice_file_path: str = os.path.join(root_dir, "config/assets.yml")
-
-specific_tu_pattern_format = r"\s*([0-9a-fA-F]+)\s+([0-9a-fA-F]+)\s+([0-9a-fA-F]+)\s+(?:([0-9a-fA-F]+)\s+(.+?)|\.\.\.data\.\d \(entry of \.data\))\s+({tu_name})\s*"
-general_symbol_pattern = re.compile(specific_tu_pattern_format.format(tu_name = ".+\.o"))
-
-slice_boundary_format = "[{start_address}, {end_address}]"
-#endregion
-
-#region Sorting
-def sort_by_starting_address(data: CommentedMap, address_sort_keys: typing.List[str])->CommentedMap:
- if len(data) <= 1:
- return data
-
- ordered_entries : list[Address_Sort_Entry] = []
- for key in data.keys():
- entry = data[key]
- starting_address = 0
-
- for address_key in address_sort_keys:
- if address_key not in entry:
- continue
-
- # Ensure starting_address is an integer
- if isinstance(entry[address_key], int):
- starting_address = entry[address_key]
- elif isinstance(entry[address_key], CommentedSeq):
- starting_address = entry[address_key][0]
- else:
- print('Address key %s is not an int or CommentedSeq! type: %s value: %s' % (address_key, type(entry[address_key]), entry[address_key]))
- starting_address = 0
- break
-
- ordered_entries.append(Address_Sort_Entry(key, entry, starting_address))
-
- ordered_entries.sort(key=lambda entry: entry.starting_address)
-
- ordered_map = CommentedMap()
- for ordered_entry in ordered_entries:
- ordered_map[ordered_entry.key] = ordered_entry.value
- if ordered_entry.key not in data.ca.items:
- continue
-
- ordered_map.ca.items[ordered_entry.key] = data.ca.items[ordered_entry.key]
-
- return ordered_map
-#endregion
-
-#region Symbol Gathering
-def get_symbol_from_map_match(symbol_match: Match, address_offset: int)->SymbolInfo:
- name = symbol_match.group(5)
- start_address = int(symbol_match.group(1), 16) + address_offset
- size = int(symbol_match.group(2), 16)
- return SymbolInfo(name, start_address, size)
-
-def gather_symbols_for_section(address_offset: int, file_reader:TextIOWrapper, slice_info: SliceInfo, starting_match: Match):
- section_tu_name = starting_match.group(6)
- section_symbol = get_symbol_from_map_match(starting_match, address_offset)
- section = SliceSection(section_symbol)
- slice_info.sections.append(section)
-
- # Keep reading until the end of the section has been reached
- line: str = None
- while True:
- line = file_reader.readline()
- if not line:
- return
- if "entry of .data" in line:
- continue
- break
-
- next_match: Match = general_symbol_pattern.match(line)
- while True:
- # Check if the next match belongs to this group or not
- curr_match = next_match
- if not curr_match:
- break
-
- curr_match_tu_name = curr_match.group(6)
- if curr_match_tu_name != section_tu_name:
- break
-
- curr_match_symbol_name = curr_match.group(5)
- if curr_match_symbol_name in address_offset_map:
- gather_symbols_for_section(address_offset, file_reader, slice_info, starting_match)
- break
-
- # Make symbol for current match
- symbol = get_symbol_from_map_match(curr_match, address_offset)
-
- # Check the next match to get a more accurate ending address
- next_line = file_reader.readline()
- if not next_line:
- # Eof reached. Just add as is
- section.symbols.append(symbol)
-
- # Match against the next line
- next_match = general_symbol_pattern.match(next_line)
- if not next_match:
- # Non matching line
- section.symbols.append(symbol)
-
- # Use start address as the end boundary for the slice
- next_match_start_address = int(next_match.group(1), 16) + address_offset
- symbol.end_address = next_match_start_address
- section.symbols.append(symbol)
-
-def find_beginning_of_tu(file)->str:
- # Move the file pointer to the current line's beginning
- file.seek(0, os.SEEK_CUR)
-
- position = file.tell()
- line = ''
-
- while position >= 0:
- file.seek(position)
- char = file.read(1)
-
- if char == '\n':
- # When a line break is found, check if the current line matches the pattern
- line = line[::-1] # reverse the line since it's backwards
- match = general_symbol_pattern.match(line)
- if match != None and match.group(5) in prioritized_addresses:
- return line.strip()
- line = ''
- else:
- line += char
-
- position -= 1
-
- # Check the first line in case the loop ends without a newline at the start
- line = line[::-1] # reverse the line since it's backwards
- match = general_symbol_pattern.match(line)
- if match != None and match.group(5) in prioritized_addresses:
- return line.strip()
-
- # If no matching line is found, return None
- print('None')
- return None
-
-def gather_tu_symbols(tu_name: str, map_path: str)->typing.Dict[str, SliceInfo]:
- gathered_symbols: typing.Dict[str, SliceInfo] = {}
- tu_regex = re.compile(specific_tu_pattern_format.format(tu_name = tu_name))
-
- with open(map_path, "r", encoding="utf-8", newline="\n") as file_reader:
- while True:
- line = file_reader.readline()
- if not line:
- break
-
- # Check if the line matches the TU name
- match = tu_regex.match(line)
- if not match:
- continue
-
- # It is a match
- slice_name = match.group(5)
- if slice_name not in address_offset_map:
- continue
-
- # Add to dictionary
- offset = address_offset_map[slice_name]
- slice_info = SliceInfo()
- gathered_symbols[slice_name] = slice_info
-
- gather_symbols_for_section(offset, file_reader, slice_info, match)
-
- return gathered_symbols
-
-def gather_symbols_for_section_from_member(address_offset: int, file_reader:TextIOWrapper, slice_info: SliceInfo, starting_match: Match):
- section_tu_name = starting_match.group(6)
- section_symbol = get_symbol_from_map_match(starting_match, address_offset)
- section = SliceSection(section_symbol)
- slice_info.sections.append(section)
-
- # Keep reading until the end of the section has been reached
- line: str = None
- while True:
- line = file_reader.readline()
- if not line:
- return
- if "entry of .data" in line:
- continue
- break
-
- next_match: Match = general_symbol_pattern.match(line)
- while True:
- # Check if the next match belongs to this group or not
- curr_match = next_match
- if not curr_match:
- break
-
- curr_match_tu_name = curr_match.group(6)
- if curr_match_tu_name != section_tu_name:
- break
-
- curr_match_symbol_name = curr_match.group(5)
- if curr_match_symbol_name in address_offset_map:
- break # break here, we've hit another TU
-
- # Make symbol for current match
- symbol = get_symbol_from_map_match(curr_match, address_offset)
-
- # Check the next match to get a more accurate ending address
- next_line = file_reader.readline()
- if not next_line:
- # Eof reached. Just add as is
- section.symbols.append(symbol)
-
- # Match against the next line
- next_match = general_symbol_pattern.match(next_line)
- if not next_match:
- # Non matching line
- section.symbols.append(symbol)
-
- # Use start address as the end boundary for the slice
- next_match_start_address = int(next_match.group(1), 16) + address_offset
- symbol.end_address = next_match_start_address
- section.symbols.append(symbol)
-
-def gather_tu_symbols_from_member(member_name: str, map_path: str)->typing.Dict[str, SliceInfo]:
- gathered_symbols: typing.Dict[str, SliceInfo] = {}
-
- with open(map_path, "r", encoding="utf-8", newline="\n") as file_reader:
- while True:
- line = file_reader.readline()
- if not line:
- break
-
- # Check if the line matches the TU name
- match = general_symbol_pattern.match(line)
- if not match or match.group(5) != member_name:
- continue
-
- print('matched! ' + line)
- line = find_beginning_of_tu(file_reader)
- print(line)
-
- if not line:
- continue
-
- match = general_symbol_pattern.match(line)
- file_reader.readline()
- # It is a match
- slice_name = match.group(5)
-
- # Add to dictionary
- offset = address_offset_map[slice_name]
- slice_info = SliceInfo()
- gathered_symbols[slice_name] = slice_info
-
- gather_symbols_for_section_from_member(offset, file_reader, slice_info, match)
-
- return gathered_symbols
-#endregion
-
-#region Asset Slices Config File
-def update_asset_slice_config(tu_name: str, binary_slice_file_path: str, asset_slice_file_path: str, symbols_for_tu: typing.Dict[str, SliceInfo]):
- if ".data" not in symbols_for_tu:
- return
-
- print("Add data entries to: " + asset_slice_file_path + "? (y/n)")
- reply = input().lower()
- if reply != "y" and reply != "yes":
- return
-
- yaml = YAML(typ="rt")
- data: CommentedMap = None
- with open(asset_slice_file_path, "r", encoding="utf-8", newline="\n") as file_reader:
- data = yaml.load(file_reader)
-
- binary_commented_map : CommentedMap = None
- binary_commented_map_key: str = None
- if "rel" in binary_slice_file_path:
- binary_commented_map_key = "config/rel.yml"
- else:
- binary_commented_map_key = "config/dol.yml"
-
- binary_commented_map = data[binary_commented_map_key]
-
- insert_tu_name_comment = True
- for section in symbols_for_tu[".data"].sections:
- for asset_symbol in section.symbols:
- print("Add entry for: " + asset_symbol.symbol_name + "? (y/n)")
- reply = input().lower()
- if reply != "y" and reply != "yes":
- continue
-
- print("What is the asset type? (optional)")
- asset_type = input()
-
- asset_commented_map : CommentedMap = None
- if binary_commented_map.__contains__(asset_symbol.symbol_name):
- asset_commented_map = binary_commented_map[asset_symbol.symbol_name]
- insert_tu_name_comment = False
- else:
- asset_commented_map = CommentedMap()
- binary_commented_map.insert(len(binary_commented_map), asset_symbol.symbol_name, asset_commented_map)
-
- if insert_tu_name_comment:
- insert_tu_name_comment = False
- binary_commented_map.yaml_set_comment_before_after_key(key=asset_symbol.symbol_name, indent=2, before=tu_name)
-
- # Add in the address range
- address_commented_seq: CommentedSeq = None
- if asset_commented_map.__contains__("addrs"):
- # Re-use the same commented section
- address_commented_seq = asset_commented_map["addrs"]
- address_commented_seq.clear()
- else:
- address_commented_seq: CommentedSeq = CommentedSeq()
-
- # Assign to the slice section
- asset_commented_map["addrs"] = address_commented_seq
-
- # Add in the start and end address
- start_address, end_address = asset_symbol.get_address_range()
- address_commented_seq.fa.set_flow_style()
- address_commented_seq.append(scalarint.HexCapsInt(start_address))
- address_commented_seq.append(scalarint.HexCapsInt(end_address))
-
- # Add in the asset type
- if not asset_type or asset_type is None:
- # Type not specified
- if asset_commented_map.__contains__("type"):
- # Using a previous entry where the type was used, so delete it
- asset_commented_map.__delitem__("type")
- continue
-
- asset_commented_map["type"] = asset_type
-
- # Sort by starting address and replace
- data[binary_commented_map_key] = sort_by_starting_address(binary_commented_map, ["addrs"])
-
- # Write out to file
- with open(asset_slice_file_path, "w", encoding="utf-8", newline="\n") as file_writer:
- yaml.dump(data, file_writer)
-#endregion
-
-#region Slice Config File
-def update_binary_slice_config(tu_name: str, slice_file_path: str, symbols_for_tu: typing.Dict[str, SliceInfo]):
- yaml = YAML(typ="rt")
- yaml.indent(mapping=4, sequence=4, offset=4)
- data: CommentedMap = None
- with open(slice_file_path, "r", encoding="utf-8", newline="\n") as file_reader:
- data = yaml.load(file_reader)
-
- tu_c_file_name = tu_name.replace(".o", ".c")
- slice_commented_map : CommentedMap = None
- if data.__contains__(tu_c_file_name):
- print("TU already exists in file. Overwrite values? (y/n)")
- reply = input().lower()
- if reply != "y" and reply != "yes":
- return
-
- # Re-use the existing commented map
- slice_commented_map = data[tu_c_file_name]
- else:
- # Create a new commented map
- slice_commented_map : CommentedMap = CommentedMap()
-
- # Add to the end of the file
- data.insert(len(data), tu_c_file_name, slice_commented_map)
-
- for slice_name, slice_info in symbols_for_tu.items():
- if len(slice_info.sections) == 0:
- # No symbols for this TU
- continue
-
- address_commented_seq: CommentedSeq = None
- if slice_commented_map.__contains__(slice_name):
- # Re-use the same commented section
- address_commented_seq = slice_commented_map[slice_name]
- address_commented_seq.clear()
- else:
- address_commented_seq: CommentedSeq = CommentedSeq()
-
- # Assign to the slice section
- slice_commented_map[slice_name] = address_commented_seq
-
- # Add in the start and end address
- start_address, end_address = slice_info.get_address_range()
- address_commented_seq.fa.set_flow_style()
- address_commented_seq.append(scalarint.HexCapsInt(start_address))
- address_commented_seq.append(scalarint.HexCapsInt(end_address))
-
- # Sort by address
- data = sort_by_starting_address(data, prioritized_addresses)
-
- # Write out to file
- with open(slice_file_path, "w", encoding="utf-8", newline="\n") as file_writer:
- yaml.dump(data, file_writer)
-#endregion
-
-#region Main
-def main():
- parser = argparse.ArgumentParser(prog="Translation Unit Config Updater", description="Adds the corresponding addresses to slice config files")
- parser.add_argument("tu_name", nargs="?", help="Name of the translation unit to get addresses for")
- parser.add_argument("-map", "--symbol-map", dest="symbol_map", help="Path to the symbol map file used for reference", action="store")
- parser.add_argument("-binary", "--binary-slices-file", dest="binary_slices_file", help="Path to the binary slices file to write to", action="store")
- parser.add_argument("-asset", "--asset-slices-file", dest="asset_slices_file", help="Path to the asset slices file to write to", action="store")
- parser.add_argument("-member", "--from-member", dest="from_member", help="When set, search for TU entries via a member's name", action="store_true")
- args = parser.parse_args()
-
- tu_name = args.tu_name
-
- symbol_map_path = args.symbol_map
- if not symbol_map_path:
- symbol_map_path = default_map_path
-
- binary_slices_file = args.binary_slices_file
- if not binary_slices_file:
- binary_slices_file = default_binary_slice_file_path
-
- asset_slices_file = args.asset_slices_file
- if not asset_slices_file:
- asset_slices_file = default_asset_slice_file_path
-
- if not args.from_member:
- # Make sure the translation unit name ends with .o
- if tu_name[-2:] != ".o":
- tu_name = tu_name + ".o"
-
- # Get the symbols for the TU
- symbols_for_tu = gather_tu_symbols(tu_name, symbol_map_path)
-
- # Make a call to update the binary file
- update_binary_slice_config(tu_name, binary_slices_file, symbols_for_tu)
- update_asset_slice_config(tu_name, binary_slices_file, asset_slices_file, symbols_for_tu)
- else:
- symbols_for_tu = gather_tu_symbols_from_member(tu_name, symbol_map_path)
- update_binary_slice_config(tu_name, binary_slices_file, symbols_for_tu)
-
-if __name__ == "__main__":
- main()
-#endregion
\ No newline at end of file
diff --git a/upload_frogress.py b/tools/upload_progress.py
similarity index 92%
rename from upload_frogress.py
rename to tools/upload_progress.py
index bc1733e6..dc61d156 100644
--- a/upload_frogress.py
+++ b/tools/upload_progress.py
@@ -51,7 +51,7 @@ if __name__ == "__main__":
args = parser.parse_args()
api_key = args.api_key or os.environ.get("PROGRESS_API_KEY")
if not api_key:
- raise "API key required"
+ raise KeyError("API key required")
url = generate_url(args)
entries = []
@@ -68,10 +68,12 @@ if __name__ == "__main__":
print("Publishing entry to", url)
json.dump(entries[0], sys.stdout, indent=4)
print()
- r = requests.post(url, json={
- "api_key": api_key,
- "entries": entries,
- })
+ r = requests.post(
+ url,
+ json={
+ "api_key": api_key,
+ "entries": entries,
+ },
+ )
r.raise_for_status()
print("Done!")
-
\ No newline at end of file
diff --git a/tools/yamlizedol.py b/tools/yamlizedol.py
deleted file mode 100644
index 7945cb78..00000000
--- a/tools/yamlizedol.py
+++ /dev/null
@@ -1,66 +0,0 @@
-import re
-
-from argparse import ArgumentParser
-
-parser = ArgumentParser(description="Fetch symbols from map file")
-parser.add_argument('mapf', type=str, help="Map file path")
-parser.add_argument('yml_p', type=str, help="YML output path")
-args = parser.parse_args()
-
-with open(args.mapf, 'r') as f:
- data = f.readlines()
-class entry:
- def __init__(self, address, size, virt, num, symbol, file):
- self.address = address
- self.size = size
- self.virt = virt
- self.num = num
- self.symbol = symbol
- self.file = file
- def yaml(self):
- return f"0x{self.virt}: ENTRY"
-
-allentries = []
-
-line = 0
-while True:
- while line < len(data) and not data[line].endswith("section layout\n"):
- line += 1
- if line >= len(data): break #end when the sections are exhausted
-
- sect = data[line].replace(" section layout\n", '')
- line += 4 #skip section header
-
- entries = []
- while data[line] != "\n":
- entryof = data[line].find("(entry of") != -1
- if entryof:
- d = re.sub(r"\(entry of .*?\)", "", data[line])
- else:
- d = data[line]
- d = d.strip().replace("\t", "").split(" ")
- d = [x for x in d if x != ""]
- #if sect == "extab":
- # print(data[line])
- # print(d)
- if entryof:
- entries.append(entry(d[0], d[1], d[2], None, d[3], d[4]))
- else:
- entries.append(entry(d[0], d[1], d[2], d[3], d[4], d[5]))
- line += 1
-
- allentries.append(entries)
- #print(sect, len(entries))
- #if sect == "extab":
- # for i in entries:
- # print(i.yaml())
- # print(i.address, i.size, i.virt, i.num, i.symbol, i.file)
- line += 1
-with open(args.yml_p, 'w') as d:
- print("global:", file=d)
- for sect in allentries:
- if len(sect) == 0: continue
- # print(" #" + sect[0].yaml())
- for e in sect:
- if e.num is None and "..." not in e.symbol:
- print(" " + e.yaml(), file=d)
diff --git a/tools/yamlizerel.py b/tools/yamlizerel.py
deleted file mode 100644
index 69f8dedc..00000000
--- a/tools/yamlizerel.py
+++ /dev/null
@@ -1,69 +0,0 @@
-import re
-
-from argparse import ArgumentParser
-
-parser = ArgumentParser(description="Fetch symbols from map file")
-parser.add_argument('mapf', type=str, help="Map file path")
-parser.add_argument('yml_p', type=str, help="YML output path")
-args = parser.parse_args()
-
-with open(args.mapf, 'r') as f:
- data = f.readlines()
-class entry:
- def __init__(self, address, size, virt, num, symbol, file):
- self.address = address
- self.size = size
- self.virt = virt
- self.num = num
- self.symbol = symbol
- self.file = file
- def yaml(self):
- cast = int(self.virt, base=16)
- Sum = cast+0x803701C0
- Sum = hex(Sum)
- return f"0x{Sum}: ENTRY"
-
-allentries = []
-
-line = 0
-while True:
- while line < len(data) and not data[line].endswith("section layout\n"):
- line += 1
- if line >= len(data): break #end when the sections are exhausted
-
- sect = data[line].replace(" section layout\n", '')
- line += 4 #skip section header
-
- entries = []
- while data[line] != "\n":
- entryof = data[line].find("(entry of") != -1
- if entryof:
- d = re.sub(r"\(entry of .*?\)", "", data[line])
- else:
- d = data[line]
- d = d.strip().replace("\t", "").split(" ")
- d = [x for x in d if x != ""]
- #if sect == "extab":
- # print(data[line])
- # print(d)
- if entryof:
- entries.append(entry(d[0], d[1], d[2], None, d[3], d[4]))
- else:
- entries.append(entry(d[0], d[1], d[2], d[3], d[4], d[5]))
- line += 1
-
- allentries.append(entries)
- #print(sect, len(entries))
- #if sect == "extab":
- # for i in entries:
- # print(i.yaml())
- # print(i.address, i.size, i.virt, i.num, i.symbol, i.file)
- line += 1
-with open(args.yml_p, 'w') as d:
- print("global:", file=d)
- for sect in allentries:
- if len(sect) == 0: continue
- # print(" #" + sect[0].yaml())
- for e in sect:
- if e.num is None and "..." not in e.symbol:
- print(" - " + e.yaml(), file=d)